diff --git a/ApplicationLibCode/Commands/CMakeLists_files.cmake b/ApplicationLibCode/Commands/CMakeLists_files.cmake index 73ca084ac9..f21ead654b 100644 --- a/ApplicationLibCode/Commands/CMakeLists_files.cmake +++ b/ApplicationLibCode/Commands/CMakeLists_files.cmake @@ -86,6 +86,8 @@ set(SOURCE_GROUP_HEADER_FILES ${CMAKE_CURRENT_LIST_DIR}/RicRenameSummaryCaseFeature.h ${CMAKE_CURRENT_LIST_DIR}/RicImportPressureDepthDataFeature.h ${CMAKE_CURRENT_LIST_DIR}/RicReloadPressureDepthDataFeature.h + ${CMAKE_CURRENT_LIST_DIR}/RicImportRevealSummaryCaseFeature.h + ${CMAKE_CURRENT_LIST_DIR}/RicImportStimPlanSummaryCaseFeature.h ) set(SOURCE_GROUP_SOURCE_FILES @@ -175,6 +177,8 @@ set(SOURCE_GROUP_SOURCE_FILES ${CMAKE_CURRENT_LIST_DIR}/RicRenameSummaryCaseFeature.cpp ${CMAKE_CURRENT_LIST_DIR}/RicImportPressureDepthDataFeature.cpp ${CMAKE_CURRENT_LIST_DIR}/RicReloadPressureDepthDataFeature.cpp + ${CMAKE_CURRENT_LIST_DIR}/RicImportRevealSummaryCaseFeature.cpp + ${CMAKE_CURRENT_LIST_DIR}/RicImportStimPlanSummaryCaseFeature.cpp ) if(RESINSIGHT_USE_QT_CHARTS) diff --git a/ApplicationLibCode/Commands/RicImportRevealSummaryCaseFeature.cpp b/ApplicationLibCode/Commands/RicImportRevealSummaryCaseFeature.cpp new file mode 100644 index 0000000000..cc4df009c8 --- /dev/null +++ b/ApplicationLibCode/Commands/RicImportRevealSummaryCaseFeature.cpp @@ -0,0 +1,79 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RicImportRevealSummaryCaseFeature.h" + +#include "RiaApplication.h" + +#include "RimCsvSummaryCase.h" +#include "RimOilField.h" +#include "RimProject.h" +#include "RimSummaryCaseCollection.h" +#include "RimSummaryCaseMainCollection.h" + +#include "RiuFileDialogTools.h" + +#include + +CAF_CMD_SOURCE_INIT( RicImportRevealSummaryCaseFeature, "RicImportRevealSummaryCaseFeature" ); + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +bool RicImportRevealSummaryCaseFeature::isCommandEnabled() +{ + return true; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RicImportRevealSummaryCaseFeature::onActionTriggered( bool isChecked ) +{ + RiaApplication* app = RiaApplication::instance(); + RimProject* project = app->project(); + + RimSummaryCaseMainCollection* sumCaseColl = project->activeOilField() ? project->activeOilField()->summaryCaseMainCollection() : nullptr; + if ( !sumCaseColl ) return; + + QString pattern = "Reveal Summary Files (*.csv)"; + QString defaultDir = app->lastUsedDialogDirectory( "SUMMARY_CASE_DIR" ); + QStringList filePaths = RiuFileDialogTools::getOpenFileNames( nullptr, "Import Data File", defaultDir, pattern ); + for ( const QString& filePath : filePaths ) + { + auto newSumCase = new RimCsvSummaryCase(); + + newSumCase->setSummaryHeaderFileName( filePath ); + newSumCase->updateOptionSensitivity(); + project->assignCaseIdToSummaryCase( newSumCase ); + + sumCaseColl->addCase( newSumCase ); + } + + sumCaseColl->loadAllSummaryCaseData(); + sumCaseColl->updateConnectedEditors(); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RicImportRevealSummaryCaseFeature::setupActionLook( QAction* actionToSetup ) +{ + actionToSetup->setIcon( QIcon( ":/SummaryCase.svg" ) ); + actionToSetup->setText( "Import Reveal Summary Case" ); +} diff --git a/ApplicationLibCode/Commands/RicImportRevealSummaryCaseFeature.h b/ApplicationLibCode/Commands/RicImportRevealSummaryCaseFeature.h new file mode 100644 index 0000000000..a241245a0b --- /dev/null +++ b/ApplicationLibCode/Commands/RicImportRevealSummaryCaseFeature.h @@ -0,0 +1,34 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "cafCmdFeature.h" + +//================================================================================================== +/// +//================================================================================================== +class RicImportRevealSummaryCaseFeature : public caf::CmdFeature +{ + CAF_CMD_HEADER_INIT; + +protected: + bool isCommandEnabled() override; + void onActionTriggered( bool isChecked ) override; + void setupActionLook( QAction* actionToSetup ) override; +}; diff --git a/ApplicationLibCode/Commands/RicImportStimPlanSummaryCaseFeature.cpp b/ApplicationLibCode/Commands/RicImportStimPlanSummaryCaseFeature.cpp new file mode 100644 index 0000000000..41054cf8a0 --- /dev/null +++ b/ApplicationLibCode/Commands/RicImportStimPlanSummaryCaseFeature.cpp @@ -0,0 +1,79 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RicImportStimPlanSummaryCaseFeature.h" + +#include "RiaApplication.h" + +#include "RimCsvSummaryCase.h" +#include "RimOilField.h" +#include "RimProject.h" +#include "RimSummaryCaseCollection.h" +#include "RimSummaryCaseMainCollection.h" + +#include "RiuFileDialogTools.h" + +#include + +CAF_CMD_SOURCE_INIT( RicImportStimPlanSummaryCaseFeature, "RicImportStimPlanSummaryCaseFeature" ); + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +bool RicImportStimPlanSummaryCaseFeature::isCommandEnabled() +{ + return true; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RicImportStimPlanSummaryCaseFeature::onActionTriggered( bool isChecked ) +{ + RiaApplication* app = RiaApplication::instance(); + RimProject* project = app->project(); + + RimSummaryCaseMainCollection* sumCaseColl = project->activeOilField() ? project->activeOilField()->summaryCaseMainCollection() : nullptr; + if ( !sumCaseColl ) return; + + QString pattern = "StimPlan Summary Files (*.csv)"; + QString defaultDir = app->lastUsedDialogDirectory( "SUMMARY_CASE_DIR" ); + QStringList filePaths = RiuFileDialogTools::getOpenFileNames( nullptr, "Import Data File", defaultDir, pattern ); + for ( const QString& filePath : filePaths ) + { + auto newSumCase = new RimCsvSummaryCase(); + newSumCase->setFileType( RimCsvSummaryCase::FileType::STIMPLAN ); + newSumCase->setSummaryHeaderFileName( filePath ); + newSumCase->updateOptionSensitivity(); + project->assignCaseIdToSummaryCase( newSumCase ); + + sumCaseColl->addCase( newSumCase ); + } + + sumCaseColl->loadAllSummaryCaseData(); + sumCaseColl->updateConnectedEditors(); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RicImportStimPlanSummaryCaseFeature::setupActionLook( QAction* actionToSetup ) +{ + actionToSetup->setIcon( QIcon( ":/SummaryCase.svg" ) ); + actionToSetup->setText( "Import StimPlan Summary Case" ); +} diff --git a/ApplicationLibCode/Commands/RicImportStimPlanSummaryCaseFeature.h b/ApplicationLibCode/Commands/RicImportStimPlanSummaryCaseFeature.h new file mode 100644 index 0000000000..7ff082f1af --- /dev/null +++ b/ApplicationLibCode/Commands/RicImportStimPlanSummaryCaseFeature.h @@ -0,0 +1,34 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "cafCmdFeature.h" + +//================================================================================================== +/// +//================================================================================================== +class RicImportStimPlanSummaryCaseFeature : public caf::CmdFeature +{ + CAF_CMD_HEADER_INIT; + +protected: + bool isCommandEnabled() override; + void onActionTriggered( bool isChecked ) override; + void setupActionLook( QAction* actionToSetup ) override; +}; diff --git a/ApplicationLibCode/Commands/SummaryPlotCommands/RicPasteAsciiDataToSummaryPlotFeatureUi.h b/ApplicationLibCode/Commands/SummaryPlotCommands/RicPasteAsciiDataToSummaryPlotFeatureUi.h index eaf5621d78..bbf780ec55 100644 --- a/ApplicationLibCode/Commands/SummaryPlotCommands/RicPasteAsciiDataToSummaryPlotFeatureUi.h +++ b/ApplicationLibCode/Commands/SummaryPlotCommands/RicPasteAsciiDataToSummaryPlotFeatureUi.h @@ -18,6 +18,7 @@ #pragma once +#include "RifEclipseSummaryAddress.h" #include "RimPlotCurve.h" #include "RifCsvUserDataParser.h" @@ -41,6 +42,7 @@ public: : useCustomDateTimeFormat( false ) , assumeNumericDataColumns( false ) , curveSymbolSkipDistance( 0.0f ) + , defaultCategory( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_INVALID ) { } @@ -57,7 +59,10 @@ public: QString cellSeparator; QString timeSeriesColumnName; - bool assumeNumericDataColumns; + QDateTime startDateTime; + bool assumeNumericDataColumns; + + RifEclipseSummaryAddress::SummaryVarCategory defaultCategory; RiuQwtPlotCurveDefines::LineStyleEnum curveLineStyle; RiuPlotCurveSymbol::PointSymbolEnum curveSymbol; diff --git a/ApplicationLibCode/FileInterface/CMakeLists_files.cmake b/ApplicationLibCode/FileInterface/CMakeLists_files.cmake index 158452a9d3..09b160fa89 100644 --- a/ApplicationLibCode/FileInterface/CMakeLists_files.cmake +++ b/ApplicationLibCode/FileInterface/CMakeLists_files.cmake @@ -78,6 +78,10 @@ set(SOURCE_GROUP_HEADER_FILES ${CMAKE_CURRENT_LIST_DIR}/RifPressureDepthTextFileReader.h ${CMAKE_CURRENT_LIST_DIR}/RifReaderPressureDepthData.h ${CMAKE_CURRENT_LIST_DIR}/RifOpmGridTools.h + ${CMAKE_CURRENT_LIST_DIR}/RifCsvSummaryReader.h + ${CMAKE_CURRENT_LIST_DIR}/RifRevealSummaryCsvReader.h + ${CMAKE_CURRENT_LIST_DIR}/RifRevealCsvSectionSummaryReader.h + ${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader.h ) set(SOURCE_GROUP_SOURCE_FILES @@ -157,6 +161,10 @@ set(SOURCE_GROUP_SOURCE_FILES ${CMAKE_CURRENT_LIST_DIR}/RifPressureDepthTextFileReader.cpp ${CMAKE_CURRENT_LIST_DIR}/RifReaderPressureDepthData.cpp ${CMAKE_CURRENT_LIST_DIR}/RifOpmGridTools.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifCsvSummaryReader.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifRevealCsvSummaryReader.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifRevealCsvSectionSummaryReader.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader.cpp ) list(APPEND CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES}) diff --git a/ApplicationLibCode/FileInterface/RifCsvSummaryReader.cpp b/ApplicationLibCode/FileInterface/RifCsvSummaryReader.cpp new file mode 100644 index 0000000000..bffa4a918b --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifCsvSummaryReader.cpp @@ -0,0 +1,147 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RifCsvSummaryReader.h" + +#include "RiaDateStringParser.h" +#include "RiaLogging.h" +#include "RiaQDateTimeTools.h" + +#include "RifCsvUserDataParser.h" +#include "RifEclipseUserDataKeywordTools.h" +#include "RifEclipseUserDataParserTools.h" + +#include "cafUtils.h" + +#include +#include +#include + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifCsvSummaryReader::RifCsvSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifCsvSummaryReader::~RifCsvSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +bool RifCsvSummaryReader::values( const RifEclipseSummaryAddress& resultAddress, std::vector* values ) const +{ + auto search = m_mapFromAddressToResultIndex.find( resultAddress ); + if ( search != m_mapFromAddressToResultIndex.end() ) + { + size_t columnIndex = search->second; + + const Column* ci = m_parser->columnInfo( columnIndex ); + if ( !ci ) return false; + + values->clear(); + values->reserve( ci->values.size() ); + for ( double val : ci->values ) + { + values->push_back( val ); + } + } + + return true; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +std::vector RifCsvSummaryReader::timeSteps( const RifEclipseSummaryAddress& resultAddress ) const +{ + // First, check whether date time values exist for the current address + auto search = m_mapFromAddressToResultIndex.find( resultAddress ); + if ( search != m_mapFromAddressToResultIndex.end() ) + { + size_t index = m_mapFromAddressToResultIndex.at( resultAddress ); + if ( !m_parser->tableData().columnInfos()[index].dateTimeValues.empty() ) + { + return m_parser->tableData().columnInfos()[index].dateTimeValues; + } + } + + // Then check for a separate date time column + int index = m_parser->tableData().dateTimeColumnIndex(); + if ( index >= 0 ) + { + return m_parser->tableData().columnInfos()[index].dateTimeValues; + } + + return {}; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +std::string RifCsvSummaryReader::unitName( const RifEclipseSummaryAddress& resultAddress ) const +{ + auto search = m_mapFromAddressToResultIndex.find( resultAddress ); + if ( search != m_mapFromAddressToResultIndex.end() ) + { + size_t columnIndex = search->second; + + const Column* ci = m_parser->columnInfo( columnIndex ); + if ( ci ) + { + return ci->unitName; + } + } + + return ""; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RiaDefines::EclipseUnitSystem RifCsvSummaryReader::unitSystem() const +{ + return RiaDefines::EclipseUnitSystem::UNITS_UNKNOWN; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RifCsvSummaryReader::buildTimeStepsAndMappings() +{ + auto tableData = m_parser->tableData(); + + for ( size_t columnIndex = 0; columnIndex < tableData.columnInfos().size(); columnIndex++ ) + { + const Column& ci = tableData.columnInfos()[columnIndex]; + if ( ci.dataType == Column::NUMERIC ) + { + RifEclipseSummaryAddress sumAddress = ci.summaryAddress; + + m_allResultAddresses.insert( sumAddress ); + if ( sumAddress.isErrorResult() ) m_allErrorAddresses.insert( sumAddress ); + + m_mapFromAddressToResultIndex[sumAddress] = columnIndex; + } + } +} diff --git a/ApplicationLibCode/FileInterface/RifCsvSummaryReader.h b/ApplicationLibCode/FileInterface/RifCsvSummaryReader.h new file mode 100644 index 0000000000..1a844bf917 --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifCsvSummaryReader.h @@ -0,0 +1,56 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "RifSummaryReaderInterface.h" + +#include +#include +#include + +class QString; + +class RifCsvUserDataParser; +class RifEclipseSummaryAddress; + +//================================================================================================== +// +// +//================================================================================================== +class RifCsvSummaryReader : public RifSummaryReaderInterface +{ +public: + RifCsvSummaryReader(); + ~RifCsvSummaryReader() override; + + std::vector timeSteps( const RifEclipseSummaryAddress& resultAddress ) const override; + + bool values( const RifEclipseSummaryAddress& resultAddress, std::vector* values ) const override; + + std::string unitName( const RifEclipseSummaryAddress& resultAddress ) const override; + + RiaDefines::EclipseUnitSystem unitSystem() const override; + +protected: + void buildTimeStepsAndMappings(); + + std::unique_ptr m_parser; + + std::map m_mapFromAddressToResultIndex; +}; diff --git a/ApplicationLibCode/FileInterface/RifCsvUserDataParser.cpp b/ApplicationLibCode/FileInterface/RifCsvUserDataParser.cpp index f9fffaa360..510c50b950 100644 --- a/ApplicationLibCode/FileInterface/RifCsvUserDataParser.cpp +++ b/ApplicationLibCode/FileInterface/RifCsvUserDataParser.cpp @@ -18,6 +18,7 @@ #include "RifCsvUserDataParser.h" +#include "RifEclipseSummaryAddress.h" #include "RifEclipseUserDataKeywordTools.h" #include "RifEclipseUserDataParserTools.h" #include "RifFileParseTools.h" @@ -276,7 +277,9 @@ QStringList RifCsvUserDataParser::timeColumnPreviewData( int lineCount, const As RifCsvUserDataParser::CsvLayout RifCsvUserDataParser::determineCsvLayout() { QTextStream* dataStream = openDataStream(); - QString firstLine; + if ( !dataStream ) return LineBased; + + QString firstLine; QStringList headers; while ( !dataStream->atEnd() ) @@ -309,7 +312,19 @@ bool RifCsvUserDataParser::parseColumnInfo( QTextStream* dataStream, const Ascii while ( !headerFound ) { QString line = dataStream->readLine(); - if ( line.trimmed().isEmpty() ) continue; + if ( line.trimmed().isEmpty() ) + { + if ( !headerFound && dataStream->atEnd() ) + { + // Handle empty stream + return false; + } + else + { + // Empty lines are skipped. + continue; + } + } QStringList columnHeaders = RifFileParseTools::splitLineAndTrim( line, parseOptions.cellSeparator ); @@ -317,8 +332,9 @@ bool RifCsvUserDataParser::parseColumnInfo( QTextStream* dataStream, const Ascii QStringList unitTexts; QStringList names; - auto startOfLineWithDataValues = dataStream->pos(); - bool hasDataValues = false; + auto startOfLineWithDataValues = dataStream->pos(); + bool hasDataValues = false; + QString nameFromData; while ( !hasDataValues ) { QString candidateLine = dataStream->readLine(); @@ -327,7 +343,14 @@ bool RifCsvUserDataParser::parseColumnInfo( QTextStream* dataStream, const Ascii for ( const auto& text : candidateColumnHeaders ) { if ( RiaStdStringTools::isNumber( text.toStdString(), parseOptions.locale.decimalPoint().toLatin1() ) ) + { hasDataValues = true; + } + else if ( nameFromData.isEmpty() ) + { + // Keep the first non-number data field as a possible name. + nameFromData = text; + } } if ( !hasDataValues && candidateColumnHeaders.size() == columnHeaders.size() ) @@ -353,6 +376,23 @@ bool RifCsvUserDataParser::parseColumnInfo( QTextStream* dataStream, const Ascii { QString colName = RiaTextStringTools::trimAndRemoveDoubleSpaces( columnHeaders[iCol] ); + QString unit; + + // Check if unit is part of the column name in parentheses, e.g. "VECTOR (unit)". + QRegExp exp( "\\((.*)\\)" ); + if ( exp.indexIn( colName ) >= 0 ) + { + // "VECTOR (unit)" ==> "(unit)" + QString fullCapture = exp.cap( 0 ); + // "VECTOR (unit)" ==> "unit" + QString unitCapture = exp.cap( 1 ); + + unit = unitCapture; + + // Remove unit from name + colName = RiaTextStringTools::trimAndRemoveDoubleSpaces( colName.remove( fullCapture ) ); + } + if ( iCol < names.size() ) { QString name = RiaTextStringTools::trimAndRemoveDoubleSpaces( names[iCol] ); @@ -363,12 +403,17 @@ bool RifCsvUserDataParser::parseColumnInfo( QTextStream* dataStream, const Ascii } } - QString unit; if ( iCol < unitTexts.size() ) unit = unitTexts[iCol]; RifEclipseSummaryAddress addr = RifEclipseSummaryAddress::fromEclipseTextAddressParseErrorTokens( colName.toStdString() ); - Column col = Column::createColumnInfoFromCsvData( addr, unit.toStdString() ); + // Create address of a give category if provided + if ( parseOptions.defaultCategory == RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL ) + addr = RifEclipseSummaryAddress::wellAddress( colName.toStdString(), nameFromData.toStdString() ); + else if ( parseOptions.defaultCategory == RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_FIELD ) + addr = RifEclipseSummaryAddress::fieldAddress( colName.toStdString() ); + + Column col = Column::createColumnInfoFromCsvData( addr, unit.toStdString() ); columnInfoList->push_back( col ); } @@ -484,20 +529,22 @@ bool RifCsvUserDataParser::parseColumnBasedData( const AsciiDataParseOptions& pa } else if ( col.dataType == Column::DATETIME ) { - QDateTime dt; - dt = tryParseDateTime( colData.toStdString(), parseOptions.dateTimeFormat ); + QDateTime dt = tryParseDateTime( colData.toStdString(), parseOptions.dateTimeFormat ); - if ( !dt.isValid() && !parseOptions.useCustomDateTimeFormat ) + // Try to match date format only + if ( !dt.isValid() && parseOptions.dateFormat != parseOptions.dateTimeFormat ) { - // Try to match date format only - if ( parseOptions.dateFormat != parseOptions.dateTimeFormat ) - { - dt = tryParseDateTime( colData.toStdString(), parseOptions.dateFormat ); - } - if ( !dt.isValid() && !parseOptions.fallbackDateTimeFormat.isEmpty() ) - { - dt = tryParseDateTime( colData.toStdString(), parseOptions.fallbackDateTimeFormat ); - } + dt = tryParseDateTime( colData.toStdString(), parseOptions.dateFormat ); + } + if ( !dt.isValid() && !parseOptions.fallbackDateTimeFormat.isEmpty() ) + { + dt = tryParseDateTime( colData.toStdString(), parseOptions.fallbackDateTimeFormat ); + } + + if ( !dt.isValid() && parseOptions.startDateTime.isValid() ) + { + double minutes = colData.toDouble(); + dt = parseOptions.startDateTime.addSecs( minutes * 60 ); } if ( !dt.isValid() ) @@ -532,7 +579,12 @@ bool RifCsvUserDataParser::parseColumnBasedData( const AsciiDataParseOptions& pa //-------------------------------------------------------------------------------------------------- bool RifCsvUserDataParser::parseLineBasedData() { - QTextStream* dataStream = openDataStream(); + QTextStream* dataStream = openDataStream(); + if ( !dataStream ) + { + return false; + } + std::map>> addressesAndData; std::vector colIndexes; diff --git a/ApplicationLibCode/FileInterface/RifRevealCsvSectionSummaryReader.cpp b/ApplicationLibCode/FileInterface/RifRevealCsvSectionSummaryReader.cpp new file mode 100644 index 0000000000..1b3f0c7941 --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifRevealCsvSectionSummaryReader.cpp @@ -0,0 +1,78 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RifRevealCsvSectionSummaryReader.h" + +#include "RiaDateStringParser.h" +#include "RiaLogging.h" +#include "RiaQDateTimeTools.h" + +#include "RifCsvUserDataParser.h" +#include "RifEclipseUserDataKeywordTools.h" +#include "RifEclipseUserDataParserTools.h" + +#include "SummaryPlotCommands/RicPasteAsciiDataToSummaryPlotFeatureUi.h" + +#include "cafUtils.h" + +#include +#include +#include + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifRevealCsvSectionSummaryReader::RifRevealCsvSectionSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifRevealCsvSectionSummaryReader::~RifRevealCsvSectionSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +bool RifRevealCsvSectionSummaryReader::parse( const QString& text, RifEclipseSummaryAddress::SummaryVarCategory defaultCategory, QString* errorText ) +{ + m_allResultAddresses.clear(); + m_mapFromAddressToResultIndex.clear(); + + AsciiDataParseOptions parseOptions; + parseOptions.useCustomDateTimeFormat = true; + parseOptions.dateTimeFormat = "dd.MM.yyyy hh:mm:ss"; + parseOptions.fallbackDateTimeFormat = "dd.MM.yyyy"; + parseOptions.cellSeparator = ","; + parseOptions.decimalSeparator = "."; + parseOptions.timeSeriesColumnName = "Date"; + parseOptions.defaultCategory = defaultCategory; + + m_parser = std::unique_ptr( new RifCsvUserDataPastedTextParser( text, errorText ) ); + if ( !m_parser->parse( parseOptions ) ) + { + RiaLogging::error( QString( "Failed to parse file" ) ); + return false; + } + + buildTimeStepsAndMappings(); + + return true; +} diff --git a/ApplicationLibCode/FileInterface/RifRevealCsvSectionSummaryReader.h b/ApplicationLibCode/FileInterface/RifRevealCsvSectionSummaryReader.h new file mode 100644 index 0000000000..66bfefcf7a --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifRevealCsvSectionSummaryReader.h @@ -0,0 +1,39 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "RifCsvSummaryReader.h" + +class QString; + +class RifCsvUserDataParser; +class RifEclipseSummaryAddress; + +//================================================================================================== +// +// +//================================================================================================== +class RifRevealCsvSectionSummaryReader : public RifCsvSummaryReader +{ +public: + RifRevealCsvSectionSummaryReader(); + ~RifRevealCsvSectionSummaryReader() override; + + bool parse( const QString& fileName, RifEclipseSummaryAddress::SummaryVarCategory defaultCategory, QString* errorText = nullptr ); +}; diff --git a/ApplicationLibCode/FileInterface/RifRevealCsvSummaryReader.cpp b/ApplicationLibCode/FileInterface/RifRevealCsvSummaryReader.cpp new file mode 100644 index 0000000000..b393a17205 --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifRevealCsvSummaryReader.cpp @@ -0,0 +1,83 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RifRevealCsvSummaryReader.h" + +#include "RifCsvUserDataParser.h" +#include "RifRevealCsvSectionSummaryReader.h" + +#include +#include +#include + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifRevealCsvSummaryReader::RifRevealCsvSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifRevealCsvSummaryReader::~RifRevealCsvSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +std::pair RifRevealCsvSummaryReader::parse( const QString& fileName, QString* errorText ) +{ + QFile file( fileName ); + + if ( !file.open( QFile::ReadOnly | QFile::Text ) ) return std::make_pair( false, "" ); + + QTextStream in( &file ); + + // Skip first line + QString caseName = in.readLine().trimmed(); + + // Split files on strange header line (starts with ",Date"). + QString fileContents = in.readAll(); + QStringList parts = fileContents.split( ",Date", QString::SkipEmptyParts ); + + // Parse each section separately + bool isFirst = true; + for ( auto p : parts ) + { + p.prepend( "Name,Date" ); + cvf::ref sectionReader = new RifRevealCsvSectionSummaryReader; + + // The first part is field data, and the rest is well data + auto defaultCategory = isFirst ? RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_FIELD + : RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL; + + QString errorMessage; + if ( !sectionReader->parse( p, defaultCategory, &errorMessage ) ) + { + return std::make_pair( false, "" ); + } + + addReader( sectionReader.p() ); + + isFirst = false; + } + + return std::make_pair( true, caseName ); +} diff --git a/ApplicationLibCode/FileInterface/RifRevealCsvSummaryReader.h b/ApplicationLibCode/FileInterface/RifRevealCsvSummaryReader.h new file mode 100644 index 0000000000..21f2eef2c1 --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifRevealCsvSummaryReader.h @@ -0,0 +1,36 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "RifMultipleSummaryReaders.h" + +class QString; + +//================================================================================================== +// +// +//================================================================================================== +class RifRevealCsvSummaryReader : public RifMultipleSummaryReaders +{ +public: + RifRevealCsvSummaryReader(); + ~RifRevealCsvSummaryReader() override; + + std::pair parse( const QString& fileName, QString* errorText = nullptr ); +}; diff --git a/ApplicationLibCode/FileInterface/RifStimPlanCsvSummaryReader.cpp b/ApplicationLibCode/FileInterface/RifStimPlanCsvSummaryReader.cpp new file mode 100644 index 0000000000..ea898bb4f6 --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifStimPlanCsvSummaryReader.cpp @@ -0,0 +1,90 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RifStimPlanCsvSummaryReader.h" + +#include "RiaDateStringParser.h" +#include "RiaLogging.h" +#include "RiaQDateTimeTools.h" + +#include "RifCsvUserDataParser.h" +#include "RifEclipseUserDataKeywordTools.h" +#include "RifEclipseUserDataParserTools.h" + +#include "SummaryPlotCommands/RicPasteAsciiDataToSummaryPlotFeatureUi.h" + +#include "cafUtils.h" + +#include +#include +#include + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifStimPlanCsvSummaryReader::RifStimPlanCsvSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifStimPlanCsvSummaryReader::~RifStimPlanCsvSummaryReader() +{ +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +std::pair RifStimPlanCsvSummaryReader::parse( const QString& fileName, const QDateTime& startDateTime, QString* errorText ) +{ + m_allResultAddresses.clear(); + m_mapFromAddressToResultIndex.clear(); + + QFile file( fileName ); + + if ( !file.open( QFile::ReadOnly | QFile::Text ) ) return std::make_pair( false, "" ); + + QTextStream in( &file ); + + // Read case name from first line + QString caseName = in.readLine().trimmed(); + + // Split files on strange header line (starts with ",Date"). + QString fileContents = in.readAll(); + + AsciiDataParseOptions parseOptions; + parseOptions.useCustomDateTimeFormat = true; + parseOptions.dateTimeFormat = "m.zzz"; + parseOptions.cellSeparator = ","; + parseOptions.decimalSeparator = "."; + parseOptions.timeSeriesColumnName = "Time"; + parseOptions.startDateTime = startDateTime; + + m_parser = std::unique_ptr( new RifCsvUserDataPastedTextParser( fileContents, errorText ) ); + + if ( !m_parser->parse( parseOptions ) ) + { + RiaLogging::error( QString( "Failed to parse file" ) ); + return std::make_pair( false, "" ); + } + + buildTimeStepsAndMappings(); + + return std::make_pair( true, caseName ); +} diff --git a/ApplicationLibCode/FileInterface/RifStimPlanCsvSummaryReader.h b/ApplicationLibCode/FileInterface/RifStimPlanCsvSummaryReader.h new file mode 100644 index 0000000000..235f2cbc1b --- /dev/null +++ b/ApplicationLibCode/FileInterface/RifStimPlanCsvSummaryReader.h @@ -0,0 +1,39 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "RifCsvSummaryReader.h" + +class QString; + +class RifCsvUserDataParser; +class RifEclipseSummaryAddress; + +//================================================================================================== +// +// +//================================================================================================== +class RifStimPlanCsvSummaryReader : public RifCsvSummaryReader +{ +public: + RifStimPlanCsvSummaryReader(); + ~RifStimPlanCsvSummaryReader() override; + + std::pair parse( const QString& fileName, const QDateTime& startDateTime, QString* errorText = nullptr ); +}; diff --git a/ApplicationLibCode/ProjectDataModel/RimContextCommandBuilder.cpp b/ApplicationLibCode/ProjectDataModel/RimContextCommandBuilder.cpp index 2eb2974e52..b1b02c845c 100644 --- a/ApplicationLibCode/ProjectDataModel/RimContextCommandBuilder.cpp +++ b/ApplicationLibCode/ProjectDataModel/RimContextCommandBuilder.cpp @@ -756,6 +756,8 @@ caf::CmdFeatureMenuBuilder RimContextCommandBuilder::commandsFromSelection() else if ( dynamic_cast( firstUiItem ) ) { menuBuilder << "RicImportSummaryCaseFeature"; + menuBuilder << "RicImportRevealSummaryCaseFeature"; + menuBuilder << "RicImportStimPlanSummaryCaseFeature"; menuBuilder << "RicImportSummaryCasesFeature"; menuBuilder << "RicImportSummaryGroupFeature"; menuBuilder << "RicImportEnsembleFeature"; diff --git a/ApplicationLibCode/ProjectDataModel/Summary/CMakeLists_files.cmake b/ApplicationLibCode/ProjectDataModel/Summary/CMakeLists_files.cmake index 62ecf3b06b..42a227536f 100644 --- a/ApplicationLibCode/ProjectDataModel/Summary/CMakeLists_files.cmake +++ b/ApplicationLibCode/ProjectDataModel/Summary/CMakeLists_files.cmake @@ -46,6 +46,7 @@ set(SOURCE_GROUP_HEADER_FILES ${CMAKE_CURRENT_LIST_DIR}/RimEnsembleCurveInfoTextProvider.h ${CMAKE_CURRENT_LIST_DIR}/RimSummaryAddressModifier.h ${CMAKE_CURRENT_LIST_DIR}/RimRftCase.h + ${CMAKE_CURRENT_LIST_DIR}/RimCsvSummaryCase.h ) set(SOURCE_GROUP_SOURCE_FILES @@ -96,6 +97,7 @@ set(SOURCE_GROUP_SOURCE_FILES ${CMAKE_CURRENT_LIST_DIR}/RimEnsembleCurveInfoTextProvider.cpp ${CMAKE_CURRENT_LIST_DIR}/RimSummaryAddressModifier.cpp ${CMAKE_CURRENT_LIST_DIR}/RimRftCase.cpp + ${CMAKE_CURRENT_LIST_DIR}/RimCsvSummaryCase.cpp ) list(APPEND CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES}) diff --git a/ApplicationLibCode/ProjectDataModel/Summary/RimCsvSummaryCase.cpp b/ApplicationLibCode/ProjectDataModel/Summary/RimCsvSummaryCase.cpp new file mode 100644 index 0000000000..6c5e3c2b12 --- /dev/null +++ b/ApplicationLibCode/ProjectDataModel/Summary/RimCsvSummaryCase.cpp @@ -0,0 +1,136 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#include "RimCsvSummaryCase.h" + +#include "RiaLogging.h" + +#include "RifRevealCsvSummaryReader.h" +#include "RifStimPlanCsvSummaryReader.h" +#include "RifSummaryReaderInterface.h" + +#include "RimTools.h" + +#include "cafPdmUiTextEditor.h" +#include "cafUtils.h" + +#include + +CAF_PDM_SOURCE_INIT( RimCsvSummaryCase, "CsvSummaryCase" ); + +namespace caf +{ +template <> +void caf::AppEnum::setUp() +{ + addItem( RimCsvSummaryCase::FileType::REVEAL, "REVEAL", "Reveal" ); + addItem( RimCsvSummaryCase::FileType::STIMPLAN, "STIMPLAN", "StimPlan" ); + + setDefault( RimCsvSummaryCase::FileType::REVEAL ); +} +} // namespace caf + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RimCsvSummaryCase::RimCsvSummaryCase() +{ + CAF_PDM_InitFieldNoDefault( &m_fileType, "FileType", "File Type" ); + CAF_PDM_InitField( &m_startDate, "StartDate", QDateTime::currentDateTime(), "Start Date" ); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +QString RimCsvSummaryCase::caseName() const +{ + QFileInfo caseFileName( this->summaryHeaderFilename() ); + return caseFileName.completeBaseName(); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RimCsvSummaryCase::createSummaryReaderInterface() +{ + m_summaryReader = nullptr; + + if ( caf::Utils::fileExists( this->summaryHeaderFilename() ) ) + { + if ( m_fileType == FileType::REVEAL ) + { + auto reader = new RifRevealCsvSummaryReader; + QString errorMessage; + if ( auto [ok, caseName] = reader->parse( summaryHeaderFilename(), &errorMessage ); ok ) + { + m_summaryReader = reader; + m_displayName = caseName; + } + else + { + RiaLogging::error( "Failed to read Reveal summary file" ); + RiaLogging::error( errorMessage ); + } + } + else if ( m_fileType == FileType::STIMPLAN ) + { + auto reader = new RifStimPlanCsvSummaryReader; + QString errorMessage; + if ( auto [ok, caseName] = reader->parse( summaryHeaderFilename(), m_startDate, &errorMessage ); ok ) + { + m_summaryReader = reader; + m_displayName = caseName; + } + else + { + RiaLogging::error( "Failed to read StimPlan summary file" ); + RiaLogging::error( errorMessage ); + } + } + } +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +RifSummaryReaderInterface* RimCsvSummaryCase::summaryReader() +{ + if ( m_summaryReader.isNull() ) + { + createSummaryReaderInterface(); + } + return m_summaryReader.p(); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RimCsvSummaryCase::setFileType( FileType fileType ) +{ + m_fileType = fileType; +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +void RimCsvSummaryCase::defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) +{ + RimSummaryCase::defineUiOrdering( uiConfigName, uiOrdering ); + + if ( m_fileType == FileType::STIMPLAN ) uiOrdering.add( &m_startDate ); +} diff --git a/ApplicationLibCode/ProjectDataModel/Summary/RimCsvSummaryCase.h b/ApplicationLibCode/ProjectDataModel/Summary/RimCsvSummaryCase.h new file mode 100644 index 0000000000..a275f17b37 --- /dev/null +++ b/ApplicationLibCode/ProjectDataModel/Summary/RimCsvSummaryCase.h @@ -0,0 +1,59 @@ +///////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023- Equinor ASA +// +// ResInsight is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY +// WARRANTY; without even the implied warranty of MERCHANTABILITY or +// FITNESS FOR A PARTICULAR PURPOSE. +// +// See the GNU General Public License at +// for more details. +// +///////////////////////////////////////////////////////////////////////////////// + +#pragma once + +#include "RimSummaryCase.h" + +#include "cafPdmField.h" +#include "cafPdmObject.h" +#include "cvfObject.h" + +#include + +//================================================================================================== +// +//================================================================================================== +class RimCsvSummaryCase : public RimSummaryCase +{ + CAF_PDM_HEADER_INIT; + +public: + enum class FileType + { + REVEAL, + STIMPLAN + }; + + RimCsvSummaryCase(); + + QString caseName() const override; + + void setFileType( FileType fileType ); + + void createSummaryReaderInterface() override; + RifSummaryReaderInterface* summaryReader() override; + +protected: + void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; + +private: + cvf::ref m_summaryReader; + caf::PdmField> m_fileType; + caf::PdmField m_startDate; +}; diff --git a/ApplicationLibCode/UnitTests/CMakeLists_files.cmake b/ApplicationLibCode/UnitTests/CMakeLists_files.cmake index 9ee459a01c..c8023af2ef 100644 --- a/ApplicationLibCode/UnitTests/CMakeLists_files.cmake +++ b/ApplicationLibCode/UnitTests/CMakeLists_files.cmake @@ -86,6 +86,9 @@ set(SOURCE_GROUP_SOURCE_FILES ${CMAKE_CURRENT_LIST_DIR}/RiaSummaryStringTools-Test.cpp ${CMAKE_CURRENT_LIST_DIR}/RiaVariableMapper-Test.cpp ${CMAKE_CURRENT_LIST_DIR}/RifPressureDepthTextFileReader-Test.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifRevealCsvSectionSummaryReader-Test.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifRevealCsvSummaryReader-Test.cpp + ${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader-Test.cpp ) if(RESINSIGHT_ENABLE_GRPC) diff --git a/ApplicationLibCode/UnitTests/RifRevealCsvSectionSummaryReader-Test.cpp b/ApplicationLibCode/UnitTests/RifRevealCsvSectionSummaryReader-Test.cpp new file mode 100644 index 0000000000..9ddbc54a0c --- /dev/null +++ b/ApplicationLibCode/UnitTests/RifRevealCsvSectionSummaryReader-Test.cpp @@ -0,0 +1,51 @@ +#include "gtest/gtest.h" + +#include "RiaTestDataDirectory.h" + +#include "RifRevealCsvSectionSummaryReader.h" + +#include +#include + +static const QString CASE_REAL_TEST_DATA_DIRECTORY_04 = QString( "%1/RifRevealCsvSectionSummaryReader/" ).arg( TEST_DATA_DIR ); + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +TEST( RifRevealCsvSectionSummaryReaderTest, ExpectedText ) +{ + QString fileName = CASE_REAL_TEST_DATA_DIRECTORY_04 + "i1.csv"; + + QFile file( fileName ); + + EXPECT_TRUE( file.open( QFile::ReadOnly | QFile::Text ) ); + + QTextStream in( &file ); + + QString fileContents = in.readAll(); + + QString errorMessage; + RifRevealCsvSectionSummaryReader reader; + + bool isOk = reader.parse( fileContents, RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL, &errorMessage ); + ASSERT_TRUE( isOk ); + + EXPECT_TRUE( errorMessage.isEmpty() ); + + ASSERT_EQ( 40u, reader.allResultAddresses().size() ); + EXPECT_EQ( 0u, reader.allErrorAddresses().size() ); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +TEST( RifRevealCsvSectionSummaryReaderTest, EmptyText ) +{ + RifRevealCsvSectionSummaryReader reader; + + QString fileContents = ""; + QString errorMessage; + + bool isOk = reader.parse( fileContents, RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_MISC, &errorMessage ); + ASSERT_FALSE( isOk ); +} diff --git a/ApplicationLibCode/UnitTests/RifRevealCsvSummaryReader-Test.cpp b/ApplicationLibCode/UnitTests/RifRevealCsvSummaryReader-Test.cpp new file mode 100644 index 0000000000..6a6bec122b --- /dev/null +++ b/ApplicationLibCode/UnitTests/RifRevealCsvSummaryReader-Test.cpp @@ -0,0 +1,44 @@ +#include "gtest/gtest.h" + +#include "RiaTestDataDirectory.h" + +#include "RifRevealCsvSummaryReader.h" + +#include +#include + +static const QString CASE_REAL_TEST_DATA_DIRECTORY_05 = QString( "%1/RifRevealCsvSectionSummaryReader/" ).arg( TEST_DATA_DIR ); + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +TEST( RifRevealCsvSummaryReaderTest, ExpectedText ) +{ + QString fileName = CASE_REAL_TEST_DATA_DIRECTORY_05 + "welldata.csv"; + + QString errorMessage; + RifRevealCsvSummaryReader reader; + auto [isOk, caseName] = reader.parse( fileName, &errorMessage ); + ASSERT_TRUE( isOk ); + ASSERT_EQ( std::string( "Clean water 60degC 3000Sm3" ), caseName.toStdString() ); + + EXPECT_TRUE( errorMessage.isEmpty() ); + + ASSERT_EQ( 115u, reader.allResultAddresses().size() ); + EXPECT_EQ( 0u, reader.allErrorAddresses().size() ); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +TEST( RifRevealCsvSummaryReaderTest, EmptyText ) +{ + RifRevealCsvSummaryReader reader; + + QString fileName = "/tmp/this/file/does/not/exist.12345"; + QString errorMessage; + + auto [isOk, caseName] = reader.parse( fileName, &errorMessage ); + ASSERT_FALSE( isOk ); + ASSERT_TRUE( caseName.isEmpty() ); +} diff --git a/ApplicationLibCode/UnitTests/RifStimPlanCsvSummaryReader-Test.cpp b/ApplicationLibCode/UnitTests/RifStimPlanCsvSummaryReader-Test.cpp new file mode 100644 index 0000000000..6df7d120f6 --- /dev/null +++ b/ApplicationLibCode/UnitTests/RifStimPlanCsvSummaryReader-Test.cpp @@ -0,0 +1,45 @@ +#include "gtest/gtest.h" + +#include "RiaTestDataDirectory.h" + +#include "RifStimPlanCsvSummaryReader.h" + +#include +#include +#include + +static const QString CASE_REAL_TEST_DATA_DIRECTORY_05 = QString( "%1/RifStimPlanCsvSummaryReader/" ).arg( TEST_DATA_DIR ); + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +TEST( RifStimPlanCsvSummaryReaderTest, ExpectedText ) +{ + QString fileName = CASE_REAL_TEST_DATA_DIRECTORY_05 + "data_vs_time.csv"; + + QString errorMessage; + QDateTime startDateTime = QDateTime::currentDateTime(); + RifStimPlanCsvSummaryReader reader; + auto [isOk, caseName] = reader.parse( fileName, startDateTime, &errorMessage ); + EXPECT_TRUE( isOk ); + EXPECT_EQ( std::string( "[Frac 1]" ), caseName.toStdString() ); + EXPECT_TRUE( errorMessage.isEmpty() ); + + ASSERT_EQ( 14u, reader.allResultAddresses().size() ); + EXPECT_EQ( 0u, reader.allErrorAddresses().size() ); +} + +//-------------------------------------------------------------------------------------------------- +/// +//-------------------------------------------------------------------------------------------------- +TEST( RifStimPlanCsvSummaryReaderTest, EmptyText ) +{ + QString fileName = "/tmp/this/file/does/not/exist.12345"; + QString errorMessage; + QDateTime startDateTime = QDateTime::currentDateTime(); + + RifStimPlanCsvSummaryReader reader; + auto [isOk, caseName] = reader.parse( fileName, startDateTime, &errorMessage ); + ASSERT_FALSE( isOk ); + ASSERT_TRUE( caseName.isEmpty() ); +} diff --git a/ApplicationLibCode/UnitTests/TestData/RifRevealCsvSectionSummaryReader/i1.csv b/ApplicationLibCode/UnitTests/TestData/RifRevealCsvSectionSummaryReader/i1.csv new file mode 100644 index 0000000000..91229e3a51 --- /dev/null +++ b/ApplicationLibCode/UnitTests/TestData/RifRevealCsvSectionSummaryReader/i1.csv @@ -0,0 +1,200 @@ +,Date,BottomHolePressure (BARa),SandfacePressureRef|BottomHolePressureRef (BARa),DrainageRegionPressureRef|DrainageRegionPressure (BARa),LiquidProductivityIndex (Sm3/day/bar),GasProductivityIndex (Sm3/day/bar),ProductivityIndexResCond (Rm3/day/bar),WellIndexResCond (Rm3/day/bar),BottomHoleTemperature (deg C),LiquidInjected (Sm3/day),WaterInjected (Sm3/day),OilInjected (Sm3/day),GasInjected (1000Sm3/d),FracLiquidInjected (Sm3/day),FracWaterInjected (Sm3/day),FracOilInjected (Sm3/day),FracGasInjected (1000Sm3/d),GOR (Sm3/Sm3),WaterCut (fraction),WaterGasRatio (Sm3/Sm3),CGR (Sm3/Sm3),HallIntegral (Bar.d),HallVoidageDerivative (Bar.d),HallWaterDerivative (Bar.d),HallGasDerivative (Bar.d),WaterBreakthroughTime (days),GasBreakthroughTime (days),TransitTime (days),CumLiquidProduced (Sm3),CumWaterProduced (Sm3),CumOilProduced (Sm3),CumGasProduced (MSm3),CumLiquidInjected (Sm3),CumWaterInjected (Sm3),CumOilInjected (Sm3),CumGasInjected (MSm3),CumHeatInjected (kJ),DownholeRate (rm3/day),VoidageRate (rm3/day),CumVoidage (rm3),NPV (MMUS$), +I1,17.01.1996 21:57:52,342.387,344,296.335,62.9375,0,62.9357,479.156,60,2999.87,2999.87,0,0,2385.85,2385.85,0,0,0,0,0,0,958.84,608.647,608.647,0,866.481,1e+06,882.06,0,0,0,0,50743.2,50743.2,0,0,1.66011e+10,2999.99,3000,50745.6,-0.318462, +I1,26.01.1996 14:46:20,355.5,357.12,297.171,50.0411,0,50.0396,230.353,60,2999.87,2999.87,0,0,1604.74,1604.74,0,0,0,0,0,0,1480.41,1256.83,1256.83,0,839.555,1e+06,853.089,0,0,0,0,76843,76843,0,0,2.54737e+10,2999.99,3000,76846.5,-0.481717, +I1,02.02.1996 14:48:37,358.255,359.881,297.432,48.037,0,48.0355,206.685,60,2999.87,2999.87,0,0,1410.97,1410.97,0,0,0,0,0,0,1917.65,1809.49,1809.49,0,822.455,1e+06,848.211,0,0,0,0,97846.8,97846.8,0,0,3.26478e+10,2999.99,3000,97851.3,-0.612827, +I1,12.02.1996 14:48:37,353.196,354.829,297.442,52.2746,0,52.2731,313.931,60,2999.87,2999.87,0,0,1846.86,1846.86,0,0,0,0,0,0,2491.52,2145.95,2145.95,0,827.83,1e+06,853.264,0,0,0,0,127845,127845,0,0,4.27626e+10,2999.99,3000,127851,-0.79967, +I1,21.02.1996 07:33:14,356.201,357.839,297.47,49.6923,0,49.6908,276.715,60,2999.87,2999.87,0,0,1630.51,1630.51,0,0,0,0,0,0,3016.59,2827.16,2827.16,0,812.547,1e+06,853.525,0,0,0,0,153937,153937,0,0,5.167e+10,2999.99,3000,153944,-0.961784, +I1,01.03.1996 03:26:06,358.333,359.977,297.622,48.109,0,48.1076,249.261,60,2999.87,2999.87,0,0,1456.78,1456.78,0,0,0,0,0,0,3567.08,3467.73,3467.73,0,812.107,1e+06,852.58,0,0,0,0,180421,180421,0,0,6.0701e+10,2999.99,3000,180429,-1.12596, +I1,11.03.1996 03:26:06,358.291,359.943,297.738,48.2254,0,48.224,259.757,60,2999.87,2999.87,0,0,1484.97,1484.97,0,0,0,0,0,0,4189.14,4044.27,4044.27,0,798.188,1e+06,856.518,0,0,0,0,210420,210420,0,0,7.0926e+10,2999.99,3000,210429,-1.31146, +I1,21.03.1996 03:26:06,354.798,356.456,297.809,51.1515,0,51.1499,358.585,60,2999.87,2999.87,0,0,1825.53,1825.53,0,0,0,0,0,0,4775.6,4400.39,4400.39,0,799.664,1e+06,855.747,0,0,0,0,240418,240418,0,0,8.11442e+10,2999.99,3000,240429,-1.49649, +I1,31.03.1996 03:26:06,358.759,360.426,297.969,48.031,0,48.0295,252.759,60,2999.87,2999.87,0,0,1494.46,1494.46,0,0,0,0,0,0,5400.17,5311.66,5311.66,0,800.405,1e+06,858.736,0,0,0,0,270417,270417,0,0,9.1386e+10,2999.99,3000,270429,-1.68103, +I1,10.04.1996 03:26:06,354.894,356.568,298.002,51.2224,0,51.2209,349.948,60,2999.87,2999.87,0,0,1844.16,1844.16,0,0,0,0,0,0,5985.83,5566.97,5566.97,0,785.436,1e+06,864.679,0,0,0,0,300416,300416,0,0,1.01554e+11,2999.99,3000,300429,-1.86509, +I1,20.04.1996 03:26:06,359.465,361.146,298.221,47.6735,0,47.672,246.343,60,2999.87,2999.87,0,0,1479.25,1479.25,0,0,0,0,0,0,6615.08,6611.17,6611.17,0,770.211,1e+06,861.058,0,0,0,0,330414,330414,0,0,1.11797e+11,2999.99,3000,330429,-2.04866, +I1,30.04.1996 03:26:06,349.607,351.295,298.199,56.4989,0,56.4972,685.8,60,2999.87,2999.87,0,0,2327.59,2327.59,0,0,0,0,0,0,7146.04,6109.8,6109.8,0,788.137,1e+06,868.091,0,0,0,0,360413,360413,0,0,1.21815e+11,2999.99,3000,360429,-2.23177, +I1,10.05.1996 03:26:06,352.996,354.691,297.911,52.8335,0,52.8319,426.882,60,2999.87,2999.87,0,0,2011.94,2011.94,0,0,0,0,0,0,7713.84,7101.8,7101.8,0,771.048,1e+06,872.819,0,0,0,0,390411,390411,0,0,1.31884e+11,2999.99,3000,390429,-2.41439, +I1,20.05.1996 03:26:06,351.174,352.875,296.532,53.2426,0,53.241,445.305,60,2999.87,2999.87,0,0,2049.91,2049.91,0,0,0,0,0,0,8277.27,7610.94,7610.94,0,772.921,1e+06,875.745,0,0,0,0,420410,420410,0,0,1.41918e+11,2999.99,3000,420429,-2.59654, +I1,30.05.1996 03:26:06,348.798,350.506,294.931,53.9789,0,53.9773,478.829,60,2999.87,2999.87,0,0,2111.78,2111.78,0,0,0,0,0,0,8833.02,8063.11,8063.11,0,754.803,1e+06,880.672,0,0,0,0,450409,450409,0,0,1.51899e+11,2999.99,3000,450429,-2.77821, +I1,09.06.1996 03:26:06,347.973,349.688,293.584,53.4699,0,53.4683,454.975,60,2999.87,2999.87,0,0,2074.04,2074.04,0,0,0,0,0,0,9394.06,8701.11,8701.11,0,759.575,1e+06,885.391,0,0,0,0,480407,480407,0,0,1.61877e+11,2999.99,3000,480429,-2.95941, +I1,19.06.1996 03:26:06,346.415,348.136,292.165,53.5967,0,53.5951,457.567,60,2999.87,2999.87,0,0,2085.55,2085.55,0,0,0,0,0,0,9953.77,9240.42,9240.42,0,760.384,1e+06,888.319,0,0,0,0,510406,510406,0,0,1.71823e+11,2999.99,3000,510429,-3.14014, +I1,29.06.1996 03:26:06,345.319,347.048,290.738,53.2748,0,53.2732,444.795,60,2999.87,2999.87,0,0,2064.97,2064.97,0,0,0,0,0,0,10516.9,9859.5,9859.51,0,761.663,1e+06,891.326,0,0,0,0,540404,540404,0,0,1.81765e+11,2999.99,3000,540429,-3.32039, +I1,13.07.1996 16:48:00,351.465,353.203,290.146,47.5733,0,47.572,261.559,60,2999.87,2999.87,0,0,1565.27,1565.27,0,0,0,0,0,0,11382.3,12074.4,12074.4,0,736.462,1e+06,886.121,0,0,0,0,584073,584073,0,0,1.96444e+11,2999.99,3000,584100,-3.58195, +I1,23.07.1996 16:48:00,351.274,353.019,290.354,47.8715,0,47.8701,269.904,60,2999.87,2999.87,0,0,1612.91,1612.91,0,0,0,0,0,0,12009,12511.6,12511.6,0,734.16,1e+06,884.92,0,0,0,0,614072,614072,0,0,2.06658e+11,2999.99,3000,614100,-3.76106, +I1,02.08.1996 16:48:00,352.367,354.119,290.531,47.1764,0,47.175,256.419,60,2999.87,2999.87,0,0,1546.84,1546.84,0,0,0,0,0,0,12644.9,13331.9,13331.9,0,735.058,1e+06,887.102,0,0,0,0,644070,644070,0,0,2.16883e+11,2999.99,3000,644100,-3.9397, +I1,12.08.1996 16:48:00,343.559,345.318,290.299,54.524,0,54.5224,578.412,60,2999.87,2999.87,0,0,2252.3,2252.3,0,0,0,0,0,0,13195.1,12085.6,12085.6,0,742.062,1e+06,898.986,0,0,0,0,674069,674069,0,0,2.26821e+11,2999.99,3000,674100,-4.11787, +I1,22.08.1996 16:48:00,344.546,346.312,288.994,52.3365,0,52.335,442.545,60,2999.87,2999.87,0,0,2070.67,2070.67,0,0,0,0,0,0,13768.3,13164,13164.1,0,723.627,1e+06,902.791,0,0,0,0,704067,704067,0,0,2.36828e+11,2999.99,3000,704100,-4.29558, +I1,01.09.1996 16:48:00,341.045,342.817,286.703,53.4602,0,53.4587,481.394,60,2999.86,2999.86,0,0,2137.42,2137.42,0,0,0,0,0,0,14329.4,13448.6,13448.6,0,727.617,1e+06,910.789,0,0,0,0,734066,734066,0,0,2.46693e+11,2999.99,3000,734100,-4.47282, +I1,11.09.1996 16:48:00,340.002,341.781,284.505,52.3755,0,52.374,419.377,60,2999.86,2999.86,0,0,2041.4,2041.4,0,0,0,0,0,0,14902.2,14299.9,14299.9,0,728.271,1e+06,916.046,0,0,0,0,764064,764064,0,0,2.56556e+11,2999.99,3000,764100,-4.64961, +I1,21.09.1996 16:48:00,347.422,349.208,285.08,46.7794,0,46.778,261.102,60,2999.86,2999.86,0,0,1563.3,1563.3,0,0,0,0,0,0,15543.4,16652,16652,0,701.979,1e+06,904.143,0,0,0,0,794063,794063,0,0,2.6678e+11,2999.99,3000,794100,-4.82593, +I1,01.10.1996 16:48:00,347.823,349.616,285.342,46.6726,0,46.6713,260.62,60,2999.86,2999.86,0,0,1571.85,1571.85,0,0,0,0,0,0,16186.2,17332.9,17332.9,0,679.274,1e+06,902.844,0,0,0,0,824062,824062,0,0,2.7701e+11,2999.99,3000,824100,-5.00179, +I1,11.10.1996 16:48:00,348.221,350.021,285.574,46.5478,0,46.5465,260.659,60,2999.86,2999.86,0,0,1571.6,1571.6,0,0,0,0,0,0,16830.6,18023.9,18023.9,0,699.819,1e+06,904.682,0,0,0,0,854060,854060,0,0,2.87241e+11,2999.99,3000,854100,-5.1772, +I1,21.10.1996 16:48:00,348.543,350.35,285.761,46.4457,0,46.4444,261.699,60,2999.86,2999.86,0,0,1574.59,1574.59,0,0,0,0,0,0,17476.5,18709.5,18709.5,0,702.316,1e+06,909.017,0,0,0,0,884059,884059,0,0,2.97471e+11,2999.99,3000,884100,-5.35214, +I1,31.10.1996 16:48:00,349.042,350.856,285.996,46.2512,0,46.2499,260.318,60,2999.86,2999.86,0,0,1566.91,1566.91,0,0,0,0,0,0,18125.1,19436.8,19436.8,0,681.911,1e+06,910.608,0,0,0,0,914057,914057,0,0,3.07706e+11,2999.99,3000,914100,-5.52664, +I1,10.11.1996 16:48:00,348.601,350.421,286.145,46.6715,0,46.6701,272.536,60,2999.86,2999.86,0,0,1627.95,1627.95,0,0,0,0,0,0,18767.9,19904.6,19904.6,0,682.43,1e+06,912.878,0,0,0,0,944056,944056,0,0,3.17919e+11,2999.99,3000,944100,-5.70067, +I1,20.11.1996 16:48:00,339.851,341.678,283.662,51.7073,0,51.7058,444.236,60,2999.86,2999.86,0,0,2081.98,2081.98,0,0,0,0,0,0,19348.1,18546.3,18546.3,0,693.086,1e+06,925.455,0,0,0,0,974055,974055,0,0,3.27786e+11,2999.99,3000,974100,-5.87426, +I1,30.11.1996 16:48:00,337.213,339.047,281.009,51.6879,0,51.6864,430.974,60,2999.86,2999.86,0,0,2068.98,2068.98,0,0,0,0,0,0,19928.4,19133.7,19133.7,0,675.776,1e+06,932.199,0,0,0,0,1.00405e+06,1.00405e+06,0,0,3.37592e+11,2999.99,3000,1.0041e+06,-6.04739, +I1,10.12.1996 16:48:00,345.454,347.295,281.748,45.7668,0,45.7655,255.828,60,2999.86,2999.86,0,0,1555.64,1555.64,0,0,0,0,0,0,20583.9,22264.6,22264.6,0,660.181,1e+06,917.256,0,0,0,0,1.03405e+06,1.03405e+06,0,0,3.47808e+11,2999.99,3000,1.0341e+06,-6.22007, +I1,20.12.1996 16:48:00,345.178,347.025,281.947,46.096,0,46.0947,265.745,60,2999.86,2999.86,0,0,1608.87,1608.87,0,0,0,0,0,0,21234.7,22756.4,22756.5,0,665.781,1e+06,919.141,0,0,0,0,1.06405e+06,1.06405e+06,0,0,3.58e+11,2999.99,3000,1.0641e+06,-6.3923, +I1,30.12.1996 16:48:00,346.504,348.359,282.214,45.3532,0,45.3519,251.212,60,2999.86,2999.86,0,0,1538.82,1538.82,0,0,0,0,0,0,21896.1,23790.6,23790.7,0,666.851,1e+06,920.975,0,0,0,0,1.09405e+06,1.09405e+06,0,0,3.68216e+11,2999.99,3000,1.0941e+06,-6.56408, +I1,07.01.1997 07:12:00,345.911,347.771,281.543,45.2961,0,45.2948,252.011,60,2999.86,2999.86,0,0,1531.41,1531.41,0,0,0,0,0,0,22380.3,24550.5,24550.5,0,648.532,1e+06,916.438,0,0,0,0,1.11685e+06,1.11685e+06,0,0,3.75861e+11,2999.99,3000,1.1169e+06,-6.69433, +I1,23.01.1997 16:48:00,344.829,346.701,280.764,45.4964,0,45.4951,239.889,60,2999.86,2999.86,0,0,1535.35,1535.35,0,0,0,0,0,0,23461.3,25298.3,25298.3,0,650.094,1e+06,923.195,0,0,0,0,1.16605e+06,1.16605e+06,0,0,3.92433e+11,2999.99,3000,1.1661e+06,-6.97453, +I1,02.02.1997 16:48:00,344.598,346.475,280.047,45.1591,0,45.1578,231.875,60,2999.86,2999.86,0,0,1508.64,1508.64,0,0,0,0,0,0,24125.5,26151.6,26151.6,0,651.443,1e+06,927.305,0,0,0,0,1.19604e+06,1.19604e+06,0,0,4.02508e+11,2999.99,3000,1.1961e+06,-7.14479, +I1,12.02.1997 16:48:00,344.006,345.891,279.309,45.0554,0,45.0541,231.516,60,2999.86,2999.86,0,0,1512.34,1512.34,0,0,0,0,0,0,24791.4,26877.6,26877.6,0,631.905,1e+06,928.171,0,0,0,0,1.22604e+06,1.22604e+06,0,0,4.12583e+11,2999.99,3000,1.2261e+06,-7.31461, +I1,22.02.1997 16:48:00,343.255,345.146,278.44,44.971,0,44.9697,229.868,60,2999.86,2999.86,0,0,1515.57,1515.57,0,0,0,0,0,0,25458.4,27595.2,27595.2,0,631.895,1e+06,921.242,0,0,0,0,1.25604e+06,1.25604e+06,0,0,4.2265e+11,2999.99,3000,1.2561e+06,-7.48399, +I1,04.03.1997 16:48:00,342.606,344.504,277.651,44.8726,0,44.8714,230.264,60,2999.86,2999.86,0,0,1517.17,1517.17,0,0,0,0,0,0,26127,28324.2,28324.2,0,632.736,1e+06,924.314,0,0,0,0,1.28604e+06,1.28604e+06,0,0,4.32709e+11,2999.99,3000,1.2861e+06,-7.65293, +I1,14.03.1997 16:48:00,341.93,343.835,276.976,44.8685,0,44.8673,233.609,60,2999.86,2999.86,0,0,1539.04,1539.04,0,0,0,0,0,0,26795.5,28995.4,28995.5,0,614.098,1e+06,926.384,0,0,0,0,1.31604e+06,1.31604e+06,0,0,4.42778e+11,2999.99,3000,1.3161e+06,-7.82142, +I1,24.03.1997 16:48:00,341.682,343.594,276.264,44.5546,0,44.5534,225.75,60,2999.86,2999.86,0,0,1512.63,1512.63,0,0,0,0,0,0,27468.8,29873,29873.1,0,613.695,1e+06,927.32,0,0,0,0,1.34604e+06,1.34604e+06,0,0,4.5284e+11,2999.99,3000,1.3461e+06,-7.98948, +I1,03.04.1997 16:48:00,341.414,343.332,275.868,44.4661,0,44.4649,225.91,60,2999.86,2999.86,0,0,1535.48,1535.48,0,0,0,0,0,0,28143.5,30607.2,30607.2,0,612.758,1e+06,926.114,0,0,0,0,1.37604e+06,1.37604e+06,0,0,4.62939e+11,2999.99,3000,1.3761e+06,-8.1571, +I1,13.04.1997 16:48:00,341.186,343.111,275.305,44.2419,0,44.2407,218.029,60,2999.86,2999.86,0,0,1512.97,1512.97,0,0,0,0,0,0,28821.5,31440.3,31440.4,0,614.254,1e+06,921.954,0,0,0,0,1.40603e+06,1.40603e+06,0,0,4.73019e+11,2999.99,3000,1.4061e+06,-8.32428, +I1,23.04.1997 16:48:00,340.88,342.812,274.895,44.1692,0,44.1679,220.209,60,2999.86,2999.86,0,0,1527.99,1527.99,0,0,0,0,0,0,29500.7,32171.3,32171.4,0,585.324,1e+06,921.772,0,0,0,0,1.43603e+06,1.43603e+06,0,0,4.83112e+11,2999.99,3000,1.4361e+06,-8.49103, +I1,03.05.1997 16:48:00,341.21,343.149,274.847,43.9204,0,43.9192,219.466,60,2999.86,2999.86,0,0,1525.73,1525.73,0,0,0,0,0,0,30183.7,33036.6,33036.6,0,593.447,1e+06,921.526,0,0,0,0,1.46603e+06,1.46603e+06,0,0,4.93237e+11,2999.99,3000,1.4661e+06,-8.65734, +I1,13.05.1997 16:48:00,341.245,343.191,274.459,43.6459,0,43.6447,214.046,60,2999.86,2999.86,0,0,1502.78,1502.78,0,0,0,0,0,0,30871.1,33931.7,33931.8,0,594.545,1e+06,923.745,0,0,0,0,1.49603e+06,1.49603e+06,0,0,5.03351e+11,2999.99,3000,1.4961e+06,-8.82322, +I1,23.05.1997 16:48:00,341.224,343.177,274.31,43.5605,0,43.5593,215.614,60,2999.86,2999.86,0,0,1514.84,1514.84,0,0,0,0,0,0,31559.7,34686.9,34687,0,565.363,1e+06,923.569,0,0,0,0,1.52603e+06,1.52603e+06,0,0,5.13479e+11,2999.99,3000,1.5261e+06,-8.98866, +I1,02.06.1997 16:48:00,341.465,343.425,274.113,43.281,0,43.2798,211.197,60,2999.86,2999.86,0,0,1491.88,1491.88,0,0,0,0,0,0,32252.8,35604.1,35604.1,0,575.014,1e+06,914.191,0,0,0,0,1.55603e+06,1.55603e+06,0,0,5.23602e+11,2999.99,3000,1.5561e+06,-9.15368, +I1,12.06.1997 16:48:00,341.525,343.492,273.908,43.1116,0,43.1104,209.292,60,2999.86,2999.86,0,0,1488.42,1488.42,0,0,0,0,0,0,32948.7,36439.8,36439.9,0,574.885,1e+06,916.041,0,0,0,0,1.58603e+06,1.58603e+06,0,0,5.33731e+11,2999.99,3000,1.5861e+06,-9.31826, +I1,22.06.1997 16:48:00,341.432,343.406,273.844,43.1248,0,43.1236,214.125,60,2999.86,2999.86,0,0,1521.44,1521.44,0,0,0,0,0,0,33644.3,37124.3,37124.4,0,556.758,1e+06,915.85,0,0,0,0,1.61602e+06,1.61602e+06,0,0,5.43886e+11,2999.99,3000,1.6161e+06,-9.48242, +I1,02.07.1997 16:48:00,341.493,343.475,273.363,42.7869,0,42.7858,203.904,60,2999.86,2999.86,0,0,1477.48,1477.48,0,0,0,0,0,0,34345.4,38118.6,38118.6,0,553.798,1e+06,917.428,0,0,0,0,1.64602e+06,1.64602e+06,0,0,5.54014e+11,2999.99,3000,1.6461e+06,-9.64614, +I1,12.07.1997 16:48:00,341.316,343.305,273.047,42.6978,0,42.6966,205.555,60,2999.86,2999.86,0,0,1487.81,1487.81,0,0,0,0,0,0,35048,38900.8,38900.9,0,533.966,1e+06,907.933,0,0,0,0,1.67602e+06,1.67602e+06,0,0,5.64155e+11,2999.99,3000,1.6761e+06,-9.80945, +I1,22.07.1997 16:48:00,341.298,343.294,272.901,42.6161,0,42.6149,206.819,60,2999.86,2999.86,0,0,1496.03,1496.03,0,0,0,0,0,0,35751.9,39679.3,39679.3,0,556.479,1e+06,908.589,0,0,0,0,1.70602e+06,1.70602e+06,0,0,5.74299e+11,2999.99,3000,1.7061e+06,-9.97232, +I1,01.08.1997 16:48:00,341.511,343.515,272.829,42.4388,0,42.4377,203.696,60,2999.86,2999.86,0,0,1481.12,1481.12,0,0,0,0,0,0,36458.8,40551.9,40552,0,520.819,1e+06,910.926,0,0,0,0,1.73602e+06,1.73602e+06,0,0,5.84433e+11,2999.99,3000,1.7361e+06,-10.1348, +I1,11.08.1997 16:48:00,341.687,343.698,273.047,42.4599,0,42.4588,208.621,60,2999.86,2999.86,0,0,1512.68,1512.68,0,0,0,0,0,0,37165.3,41238.3,41238.4,0,536.965,1e+06,910.033,0,0,0,0,1.76602e+06,1.76602e+06,0,0,5.94591e+11,2999.99,3000,1.7661e+06,-10.2968, +I1,21.08.1997 16:48:00,341.971,343.99,272.839,42.1619,0,42.1608,199.514,60,2999.86,2999.86,0,0,1471.74,1471.74,0,0,0,0,0,0,37876.8,42241.3,42241.4,0,537.945,1e+06,903.65,0,0,0,0,1.79602e+06,1.79602e+06,0,0,6.0472e+11,2999.99,3000,1.7961e+06,-10.4584, +I1,31.08.1997 16:48:00,342.053,344.08,272.846,42.1129,0,42.1118,201.185,60,2999.86,2999.86,0,0,1482.64,1482.64,0,0,0,0,0,0,38589.1,43002.8,43002.9,0,516.809,1e+06,902.666,0,0,0,0,1.82601e+06,1.82601e+06,0,0,6.14857e+11,2999.99,3000,1.8261e+06,-10.6196, +I1,10.09.1997 16:48:00,342.134,344.17,272.831,42.0509,0,42.0498,202.306,60,2999.86,2999.86,0,0,1489.84,1489.84,0,0,0,0,0,0,39302.5,43779.6,43779.7,0,518.758,1e+06,904.176,0,0,0,0,1.85601e+06,1.85601e+06,0,0,6.24995e+11,2999.99,3000,1.8561e+06,-10.7804, +I1,20.09.1997 16:48:00,342.142,344.185,272.683,41.9548,0,41.9536,202.393,60,2999.86,2999.86,0,0,1490.6,1490.6,0,0,0,0,0,0,40017.6,44595,44595,0,518.687,1e+06,904.227,0,0,0,0,1.88601e+06,1.88601e+06,0,0,6.35132e+11,2999.99,3000,1.8861e+06,-10.9407, +I1,30.09.1997 16:48:00,342.177,344.228,272.584,41.8718,0,41.8706,202.405,60,2999.86,2999.86,0,0,1490.71,1490.71,0,0,0,0,0,0,40734,45399.9,45399.9,0,487.193,1e+06,897.184,0,0,0,0,1.91601e+06,1.91601e+06,0,0,6.45268e+11,2999.99,3000,1.9161e+06,-11.1006, +I1,10.10.1997 16:48:00,342.035,344.094,272.287,41.7766,0,41.7754,202.41,60,2999.86,2999.86,0,0,1490.74,1490.74,0,0,0,0,0,0,41452.1,46221.4,46221.4,0,499.922,1e+06,895.343,0,0,0,0,1.94601e+06,1.94601e+06,0,0,6.55404e+11,2999.99,3000,1.9461e+06,-11.2601, +I1,20.10.1997 16:48:00,341.959,344.027,272.079,41.6952,0,41.694,202.411,60,2999.86,2999.86,0,0,1490.67,1490.67,0,0,0,0,0,0,42171.5,47031.1,47031.2,0,499.725,1e+06,897.676,0,0,0,0,1.97601e+06,1.97601e+06,0,0,6.6554e+11,2999.99,3000,1.9761e+06,-11.4192, +I1,30.10.1997 16:48:00,342.032,344.107,272.023,41.6157,0,41.6146,202.412,60,2999.86,2999.86,0,0,1490.64,1490.64,0,0,0,0,0,0,42892.4,47841.8,47841.8,0,482.777,1e+06,899.355,0,0,0,0,2.006e+06,2.006e+06,0,0,6.75677e+11,2999.99,3000,2.0061e+06,-11.5779, +I1,09.11.1997 16:48:00,341.917,344.001,271.772,41.5328,0,41.5317,202.415,60,2999.86,2999.86,0,0,1490.68,1490.68,0,0,0,0,0,0,43614.7,48659.6,48659.6,0,463.204,1e+06,888.158,0,0,0,0,2.036e+06,2.036e+06,0,0,6.85813e+11,2999.99,3000,2.0361e+06,-11.7362, +I1,19.11.1997 16:48:00,341.859,343.95,271.611,41.4693,0,41.4681,202.416,60,2999.86,2999.86,0,0,1490.63,1490.63,0,0,0,0,0,0,44338.1,49457.5,49457.6,0,480.771,1e+06,889.735,0,0,0,0,2.066e+06,2.066e+06,0,0,6.95949e+11,2999.99,3000,2.0661e+06,-11.894, +I1,29.11.1997 16:48:00,341.789,343.888,271.316,41.3361,0,41.335,200.567,60,2999.86,2999.86,0,0,1480.8,1480.8,0,0,0,0,0,0,45063.8,50342.6,50342.6,0,480.325,1e+06,891.687,0,0,0,0,2.096e+06,2.096e+06,0,0,7.06088e+11,2999.99,3000,2.0961e+06,-12.0515, +I1,09.12.1997 16:48:00,341.882,343.99,271.275,41.2551,0,41.2539,201.182,60,2999.86,2999.86,0,0,1481.24,1481.24,0,0,0,0,0,0,45790.9,51168.7,51168.7,0,462.764,1e+06,883.51,0,0,0,0,2.126e+06,2.126e+06,0,0,7.16235e+11,2999.98,3000,2.1261e+06,-12.2085, +I1,19.12.1997 16:48:00,341.568,343.684,270.935,41.2356,0,41.2344,198.762,60,2999.86,2999.86,0,0,1478.07,1478.07,0,0,0,0,0,0,46518.4,51920.3,51920.4,0,463.067,1e+06,884.474,0,0,0,0,2.156e+06,2.156e+06,0,0,7.26373e+11,2999.99,3000,2.1561e+06,-12.3651, +I1,29.12.1997 16:48:00,342.083,344.207,271.087,41.027,0,41.0258,197.009,60,2999.86,2999.86,0,0,1463.55,1463.55,0,0,0,0,0,0,47249.6,52915.5,52915.6,0,459.224,1e+06,884.432,0,0,0,0,2.186e+06,2.186e+06,0,0,7.36526e+11,2999.98,3000,2.1861e+06,-12.5214, +I1,08.01.1998 16:48:00,341.949,344.081,271.026,41.0632,0,41.062,196.738,60,2999.86,2999.86,0,0,1468.96,1468.96,0,0,0,0,0,0,47980.2,53599.5,53599.5,0,441.033,1e+06,887.286,0,0,0,0,2.21599e+06,2.21599e+06,0,0,7.4666e+11,2999.98,3000,2.2161e+06,-12.6772, +I1,18.01.1998 16:48:00,342.143,344.283,270.931,40.8969,0,40.8958,194.638,60,2999.86,2999.86,0,0,1453.65,1453.65,0,0,0,0,0,0,48713.7,54550.8,54550.9,0,443.875,1e+06,876.064,0,0,0,0,2.24599e+06,2.24599e+06,0,0,7.56808e+11,2999.98,3000,2.2461e+06,-12.8326, +I1,28.01.1998 16:48:00,341.969,344.116,270.872,40.9569,0,40.9557,194.008,60,2999.86,2999.86,0,0,1463.82,1463.82,0,0,0,0,0,0,49446.1,55203.5,55203.5,0,414.22,1e+06,880.065,0,0,0,0,2.27599e+06,2.27599e+06,0,0,7.66942e+11,2999.98,3000,2.2761e+06,-12.9876, +I1,07.02.1998 16:48:00,341.729,343.885,270.676,40.977,0,40.9759,193.291,60,2999.86,2999.86,0,0,1468.22,1468.22,0,0,0,0,0,0,50178.2,55908.4,55908.4,0,426.818,1e+06,881.683,0,0,0,0,2.30599e+06,2.30599e+06,0,0,7.77068e+11,2999.98,3000,2.3061e+06,-13.1422, +I1,17.02.1998 16:48:00,341.598,343.76,270.382,40.8822,0,40.881,192.558,60,2999.86,2999.86,0,0,1462.1,1462.1,0,0,0,0,0,0,50912,56771.9,56772,0,425.133,1e+06,870.151,0,0,0,0,2.33599e+06,2.33599e+06,0,0,7.872e+11,2999.98,3000,2.3361e+06,-13.2963, +I1,27.02.1998 16:48:00,341.069,343.239,270.313,41.1358,0,41.1347,199.678,60,2999.86,2999.86,0,0,1512.36,1512.36,0,0,0,0,0,0,51641.3,57151.2,57151.2,0,400.64,1e+06,873.577,0,0,0,0,2.36599e+06,2.36599e+06,0,0,7.97341e+11,2999.98,3000,2.3661e+06,-13.4501, +I1,09.03.1998 16:48:00,340.709,342.887,269.598,40.9321,0,40.931,190.643,60,2999.86,2999.86,0,0,1460.19,1460.19,0,0,0,0,0,0,52374.1,58168.4,58168.5,0,408.629,1e+06,876.422,0,0,0,0,2.39599e+06,2.39599e+06,0,0,8.07433e+11,2999.98,3000,2.3961e+06,-13.6035, +I1,19.03.1998 16:48:00,340.27,342.455,269.077,40.8824,0,40.8812,190.792,60,2999.86,2999.86,0,0,1458.88,1458.88,0,0,0,0,0,0,53107.9,58973,58973.1,0,407.195,1e+06,877.936,0,0,0,0,2.42598e+06,2.42598e+06,0,0,8.17536e+11,2999.98,3000,2.4261e+06,-13.7565, +I1,29.03.1998 16:48:00,339.699,341.892,268.607,40.9345,0,40.9334,190.539,60,2999.86,2999.86,0,0,1466.63,1466.63,0,0,0,0,0,0,53840.8,59630.7,59630.8,0,383.064,1e+06,869.839,0,0,0,0,2.45598e+06,2.45598e+06,0,0,8.2763e+11,2999.98,3000,2.4561e+06,-13.9091, +I1,08.04.1998 16:48:00,338.688,340.888,267.741,41.0115,0,41.0104,191.74,60,2999.86,2999.86,0,0,1472.66,1472.66,0,0,0,0,0,0,54572.2,60250.3,60250.3,0,383.299,1e+06,871.379,0,0,0,0,2.48598e+06,2.48598e+06,0,0,8.37707e+11,2999.98,3000,2.4861e+06,-14.0613, +I1,18.04.1998 16:48:00,337.519,339.726,266.934,41.2111,0,41.21,193.935,60,2999.86,2999.86,0,0,1502.52,1502.52,0,0,0,0,0,0,55300.2,60686.4,60686.5,0,389.429,1e+06,874.676,0,0,0,0,2.51598e+06,2.51598e+06,0,0,8.47777e+11,2999.98,3000,2.5161e+06,-14.2131, +I1,28.04.1998 16:48:00,336.459,338.674,265.61,41.0583,0,41.0572,189.039,60,2999.86,2999.86,0,0,1464.98,1464.98,0,0,0,0,0,0,56030.8,61642.9,61642.9,0,361.259,1e+06,868.837,0,0,0,0,2.54598e+06,2.54598e+06,0,0,8.57828e+11,2999.98,3000,2.5461e+06,-14.3645, +I1,08.05.1998 16:48:00,335.81,338.033,264.982,41.0654,0,41.0643,190.945,60,2999.86,2999.86,0,0,1476.41,1476.41,0,0,0,0,0,0,56761.3,62362.7,62362.8,0,372.413,1e+06,867.298,0,0,0,0,2.57598e+06,2.57598e+06,0,0,8.67896e+11,2999.98,3000,2.5761e+06,-14.5155, +I1,18.05.1998 16:48:00,337.075,339.304,265.538,40.6674,0,40.6663,189.243,60,2999.86,2999.86,0,0,1457.78,1457.78,0,0,0,0,0,0,57499,63710.8,63710.9,0,369.924,1e+06,865.304,0,0,0,0,2.60598e+06,2.60598e+06,0,0,8.78066e+11,2999.98,3000,2.6061e+06,-14.6661, +I1,28.05.1998 16:48:00,337.297,339.532,265.558,40.5527,0,40.5516,185.571,60,2999.86,2999.86,0,0,1431.34,1431.34,0,0,0,0,0,0,58238.7,64630.6,64630.7,0,341.322,1e+06,857.359,0,0,0,0,2.63597e+06,2.63597e+06,0,0,8.88218e+11,2999.98,3000,2.6361e+06,-14.8163, +I1,07.06.1998 16:48:00,337.374,339.615,265.69,40.5798,0,40.5787,186.938,60,2999.86,2999.86,0,0,1440.48,1440.48,0,0,0,0,0,0,58978,65326.8,65326.9,0,337.886,1e+06,858.471,0,0,0,0,2.66597e+06,2.66597e+06,0,0,8.98382e+11,2999.98,3000,2.6661e+06,-14.9661, +I1,17.06.1998 16:48:00,337.216,339.462,265.571,40.5984,0,40.5973,187.151,60,2999.86,2999.86,0,0,1442.21,1442.21,0,0,0,0,0,0,59716.9,66035.8,66035.9,0,343.361,1e+06,859.217,0,0,0,0,2.69597e+06,2.69597e+06,0,0,9.08546e+11,2999.98,3000,2.6961e+06,-15.1156, +I1,27.06.1998 16:48:00,337.029,339.279,265.418,40.6153,0,40.6142,187.162,60,2999.86,2999.86,0,0,1442.32,1442.32,0,0,0,0,0,0,60455.5,66746.9,66747,0,335.264,1e+06,851.412,0,0,0,0,2.72597e+06,2.72597e+06,0,0,9.18709e+11,2999.98,3000,2.7261e+06,-15.2646, +I1,07.07.1998 16:48:00,336.832,339.087,265.208,40.605,0,40.604,185.046,60,2999.86,2999.86,0,0,1435,1435,0,0,0,0,0,0,61194.3,67502.5,67502.6,0,333.695,1e+06,853.724,0,0,0,0,2.75597e+06,2.75597e+06,0,0,9.28866e+11,2999.98,3000,2.7561e+06,-15.4133, +I1,17.07.1998 16:48:00,336.36,338.618,264.902,40.6947,0,40.6936,183.998,60,2999.86,2999.86,0,0,1438.31,1438.31,0,0,0,0,0,0,61931.4,68090.9,68091,0,333.079,1e+06,856.638,0,0,0,0,2.78597e+06,2.78597e+06,0,0,9.39006e+11,2999.98,3000,2.7861e+06,-15.5616, +I1,27.07.1998 16:48:00,335.577,337.839,264.509,40.9093,0,40.9082,187.479,60,2999.86,2999.86,0,0,1469.67,1469.67,0,0,0,0,0,0,62664.7,68467.1,68467.2,0,317.534,1e+06,859.801,0,0,0,0,2.81597e+06,2.81597e+06,0,0,9.4914e+11,2999.98,3000,2.8161e+06,-15.7094, +I1,06.08.1998 16:48:00,335.451,337.716,264.081,40.74,0,40.7389,183.179,60,2999.86,2999.86,0,0,1436.07,1436.07,0,0,0,0,0,0,63401.1,69488,69488.1,0,315.539,1e+06,850.561,0,0,0,0,2.84596e+06,2.84596e+06,0,0,9.59261e+11,2999.98,3000,2.8461e+06,-15.8569, +I1,16.08.1998 16:48:00,334.713,336.98,263.411,40.776,0,40.7749,184.483,60,2999.86,2999.86,0,0,1443.28,1443.28,0,0,0,0,0,0,64136.7,70162.4,70162.5,0,315.01,1e+06,853.185,0,0,0,0,2.87596e+06,2.87596e+06,0,0,9.69394e+11,2999.98,3000,2.8761e+06,-16.0041, +I1,26.08.1998 16:48:00,334.257,336.527,263.029,40.8155,0,40.8144,184.692,60,2999.86,2999.86,0,0,1444.78,1444.78,0,0,0,0,0,0,64871.7,70829.4,70829.5,0,299.183,1e+06,855.903,0,0,0,0,2.90596e+06,2.90596e+06,0,0,9.79527e+11,2999.98,3000,2.9061e+06,-16.1508, +I1,05.09.1998 16:48:00,333.346,335.618,262.355,40.9463,0,40.9452,184.258,60,2999.86,2999.86,0,0,1457.56,1457.56,0,0,0,0,0,0,65604.4,71335.7,71335.8,0,297.53,1e+06,847.785,0,0,0,0,2.93596e+06,2.93596e+06,0,0,9.89645e+11,2999.98,3000,2.9361e+06,-16.2971, +I1,15.09.1998 16:48:00,332.434,334.707,261.389,40.9156,0,40.9145,181.93,60,2999.86,2999.86,0,0,1441.62,1441.62,0,0,0,0,0,0,66337.5,72122.5,72122.7,0,296.946,1e+06,850.426,0,0,0,0,2.96596e+06,2.96596e+06,0,0,9.99743e+11,2999.98,3000,2.9661e+06,-16.4431, +I1,25.09.1998 16:48:00,331.511,333.787,260.474,40.9184,0,40.9174,182.73,60,2999.86,2999.86,0,0,1445.92,1445.92,0,0,0,0,0,0,67070.7,72850.6,72850.7,0,281.284,1e+06,853.28,0,0,0,0,2.99596e+06,2.99596e+06,0,0,1.00986e+12,2999.98,3000,2.9961e+06,-16.5887, +I1,05.10.1998 16:48:00,330.718,332.996,259.65,40.9,0,40.899,182.604,60,2999.86,2999.86,0,0,1443.88,1443.88,0,0,0,0,0,0,67804.1,73616.8,73616.9,0,279.205,1e+06,844.037,0,0,0,0,3.02596e+06,3.02596e+06,0,0,1.01997e+12,2999.98,3000,3.0261e+06,-16.7339, +I1,15.10.1998 16:48:00,329.916,332.195,258.849,40.9,0,40.899,182.403,60,2999.86,2999.86,0,0,1441.33,1441.33,0,0,0,0,0,0,68537.6,74350.3,74350.4,0,278.57,1e+06,845.985,0,0,0,0,3.05595e+06,3.05595e+06,0,0,1.0301e+12,2999.98,3000,3.0561e+06,-16.8787, +I1,25.10.1998 16:48:00,329.235,331.515,258.13,40.8782,0,40.8771,182.21,60,2999.86,2999.86,0,0,1438.86,1438.86,0,0,0,0,0,0,69271.4,75123.9,75124,0,261.954,1e+06,847.636,0,0,0,0,3.08595e+06,3.08595e+06,0,0,1.04023e+12,2999.98,3000,3.0861e+06,-17.0232, +I1,04.11.1998 16:48:00,328.695,330.976,257.656,40.9147,0,40.9136,183.856,60,2999.86,2999.86,0,0,1450.17,1450.17,0,0,0,0,0,0,70004.6,75790.1,75790.2,0,242.038,1e+06,838.906,0,0,0,0,3.11595e+06,3.11595e+06,0,0,1.05038e+12,2999.98,3000,3.1161e+06,-17.1673, +I1,14.11.1998 16:48:00,327.644,329.926,256.575,40.8972,0,40.8962,180.263,60,2999.86,2999.86,0,0,1425.87,1425.87,0,0,0,0,0,0,70738.2,76556,76556.1,0,260.539,1e+06,843.373,0,0,0,0,3.14595e+06,3.14595e+06,0,0,1.06048e+12,2999.98,3000,3.1461e+06,-17.311, +I1,24.11.1998 16:48:00,326.685,328.967,255.621,40.8999,0,40.8989,181.001,60,2999.85,2999.85,0,0,1430.02,1430.02,0,0,0,0,0,0,71471.6,77284.4,77284.5,0,244.41,1e+06,845.225,0,0,0,0,3.17595e+06,3.17595e+06,0,0,1.0706e+12,2999.98,3000,3.1761e+06,-17.4543, +I1,04.12.1998 16:48:00,325.92,328.203,254.847,40.8945,0,40.8934,181.296,60,2999.85,2999.85,0,0,1430.88,1430.88,0,0,0,0,0,0,72205.2,78028.2,78028.3,0,242.632,1e+06,836.738,0,0,0,0,3.20595e+06,3.20595e+06,0,0,1.08073e+12,2999.98,3000,3.2061e+06,-17.5972, +I1,14.12.1998 16:48:00,325.188,327.472,254.098,40.8842,0,40.8832,181.162,60,2999.85,2999.85,0,0,1428.87,1428.87,0,0,0,0,0,0,72938.9,78781.5,78781.7,0,241.658,1e+06,838.845,0,0,0,0,3.23594e+06,3.23594e+06,0,0,1.09087e+12,2999.98,3000,3.2361e+06,-17.7398, +I1,24.12.1998 16:48:00,324.48,326.764,253.363,40.8691,0,40.8681,180.981,60,2999.85,2999.85,0,0,1426.4,1426.4,0,0,0,0,0,0,73672.9,79544.6,79544.8,0,225.853,1e+06,840.404,0,0,0,0,3.26594e+06,3.26594e+06,0,0,1.10101e+12,2999.98,3000,3.2661e+06,-17.882, +I1,03.01.1999 16:48:00,323.821,326.106,252.688,40.8599,0,40.8589,180.841,60,2999.85,2999.85,0,0,1424.49,1424.49,0,0,0,0,0,0,74407.1,80296.7,80296.9,0,220.926,1e+06,832.583,0,0,0,0,3.29594e+06,3.29594e+06,0,0,1.11116e+12,2999.98,3000,3.2961e+06,-18.0239, +I1,13.01.1999 16:48:00,323.14,325.426,251.976,40.8426,0,40.8416,180.693,60,2999.85,2999.85,0,0,1422.46,1422.46,0,0,0,0,0,0,75141.6,81065.2,81065.4,0,209.344,1e+06,834.655,0,0,0,0,3.32594e+06,3.32594e+06,0,0,1.12131e+12,2999.98,3000,3.3261e+06,-18.1653, +I1,23.01.1999 16:48:00,322.544,324.83,251.371,40.8369,0,40.8359,180.527,60,2999.85,2999.85,0,0,1420.18,1420.18,0,0,0,0,0,0,75876.2,81811.2,81811.4,0,204.837,1e+06,836.506,0,0,0,0,3.35594e+06,3.35594e+06,0,0,1.13146e+12,2999.98,3000,3.3561e+06,-18.3064, +I1,02.02.1999 16:48:00,321.793,324.079,250.606,40.8289,0,40.8278,180.384,60,2999.85,2999.85,0,0,1418.19,1418.19,0,0,0,0,0,0,76610.9,82562,82562.2,0,206.798,1e+06,839.142,0,0,0,0,3.38594e+06,3.38594e+06,0,0,1.14162e+12,2999.98,3000,3.3861e+06,-18.4472, +I1,12.02.1999 16:48:00,321.288,323.575,250.057,40.8044,0,40.8034,180.204,60,2999.85,2999.85,0,0,1415.67,1415.67,0,0,0,0,0,0,77346.1,83346.7,83346.9,0,185.622,1e+06,830.562,0,0,0,0,3.41594e+06,3.41594e+06,0,0,1.15179e+12,2999.98,3000,3.4161e+06,-18.5875, +I1,22.02.1999 16:48:00,320.883,323.171,249.652,40.804,0,40.803,180.084,60,2999.85,2999.85,0,0,1414,1414,0,0,0,0,0,0,78081.3,84082.6,84082.9,0,171.227,1e+06,833.264,0,0,0,0,3.44593e+06,3.44593e+06,0,0,1.16196e+12,2999.98,3000,3.4461e+06,-18.7275, +I1,04.03.1999 16:48:00,320.522,322.81,249.291,40.8036,0,40.8026,179.995,60,2999.85,2999.85,0,0,1412.74,1412.74,0,0,0,0,0,0,78816.5,84818.7,84818.9,0,188.669,1e+06,835.685,0,0,0,0,3.47593e+06,3.47593e+06,0,0,1.17214e+12,2999.98,3000,3.4761e+06,-18.8672, +I1,14.03.1999 16:48:00,319.972,322.26,248.652,40.7544,0,40.7534,178.282,60,2999.85,2999.85,0,0,1398.2,1398.2,0,0,0,0,0,0,79552.6,85657.1,85657.3,0,173.302,1e+06,827.21,0,0,0,0,3.50593e+06,3.50593e+06,0,0,1.1823e+12,2999.98,3000,3.5061e+06,-19.0064, +I1,24.03.1999 16:48:00,319.713,322.002,248.347,40.7283,0,40.7273,178.946,60,2999.85,2999.85,0,0,1400.63,1400.63,0,0,0,0,0,0,80289.1,86448.7,86448.9,0,171.35,1e+06,830.232,0,0,0,0,3.53593e+06,3.53593e+06,0,0,1.19248e+12,2999.98,3000,3.5361e+06,-19.1453, +I1,03.04.1999 16:48:00,319.048,321.337,247.811,40.7997,0,40.7987,178.814,60,2999.85,2999.85,0,0,1404.43,1404.43,0,0,0,0,0,0,81024.4,87032.6,87032.9,0,171.247,1e+06,833.698,0,0,0,0,3.56593e+06,3.56593e+06,0,0,1.20265e+12,2999.98,3000,3.5661e+06,-19.2839, +I1,13.04.1999 16:48:00,318.574,320.864,247.323,40.7913,0,40.7903,179.103,60,2999.85,2999.85,0,0,1405.68,1405.68,0,0,0,0,0,0,81759.8,87785.9,87786.2,0,137.931,1e+06,824.3,0,0,0,0,3.59593e+06,3.59593e+06,0,0,1.21283e+12,2999.98,3000,3.5961e+06,-19.4221, +I1,23.04.1999 16:48:00,318.027,320.317,246.819,40.8152,0,40.8142,179.051,60,2999.85,2999.85,0,0,1405.15,1405.15,0,0,0,0,0,0,82494.8,88469.5,88469.8,0,136.099,1e+06,824.693,0,0,0,0,3.62592e+06,3.62592e+06,0,0,1.22301e+12,2999.98,3000,3.6261e+06,-19.5599, +I1,03.05.1999 16:48:00,317.628,319.919,246.378,40.7916,0,40.7906,178.935,60,2999.85,2999.85,0,0,1403.51,1403.51,0,0,0,0,0,0,83230.2,89256.1,89256.4,0,153.084,1e+06,831.442,0,0,0,0,3.65592e+06,3.65592e+06,0,0,1.23319e+12,2999.98,3000,3.6561e+06,-19.6974, +I1,13.05.1999 16:48:00,317.171,319.464,245.922,40.7912,0,40.7902,178.848,60,2999.85,2999.85,0,0,1402.24,1402.24,0,0,0,0,0,0,83965.6,89992.4,89992.6,0,120.805,1e+06,822.229,0,0,0,0,3.68592e+06,3.68592e+06,0,0,1.24338e+12,2999.98,3000,3.6861e+06,-19.8345, +I1,23.05.1999 16:48:00,317.228,319.52,245.951,40.7762,0,40.7752,178.75,60,2999.85,2999.85,0,0,1400.82,1400.82,0,0,0,0,0,0,84701.3,90761.3,90761.6,0,136.755,1e+06,822.268,0,0,0,0,3.71592e+06,3.71592e+06,0,0,1.25357e+12,2999.98,3000,3.7161e+06,-19.9712, +I1,02.06.1999 16:48:00,316.712,319.004,245.465,40.7926,0,40.7916,178.776,60,2999.85,2999.85,0,0,1401.2,1401.2,0,0,0,0,0,0,85436.7,91460,91460.3,0,122.257,1e+06,829.477,0,0,0,0,3.74592e+06,3.74592e+06,0,0,1.26376e+12,2999.98,3000,3.7461e+06,-20.1076, +I1,12.06.1999 16:48:00,316.148,318.441,244.876,40.7783,0,40.7773,178.673,60,2999.85,2999.85,0,0,1399.71,1399.71,0,0,0,0,0,0,86172.3,92227.8,92228.1,0,120.721,1e+06,820.424,0,0,0,0,3.77592e+06,3.77592e+06,0,0,1.27395e+12,2999.98,3000,3.7761e+06,-20.2437, +I1,22.06.1999 16:48:00,315.781,318.075,244.505,40.7754,0,40.7744,178.55,60,2999.85,2999.85,0,0,1397.92,1397.92,0,0,0,0,0,0,86908,92970.1,92970.4,0,118.091,1e+06,821.887,0,0,0,0,3.80592e+06,3.80592e+06,0,0,1.28415e+12,2999.98,3000,3.8061e+06,-20.3793, +I1,02.07.1999 16:48:00,315.418,317.711,244.131,40.7696,0,40.7686,178.473,60,2999.85,2999.85,0,0,1396.8,1396.8,0,0,0,0,0,0,87643.8,93719.1,93719.4,0,95.7631,1e+06,815.561,0,0,0,0,3.83591e+06,3.83591e+06,0,0,1.29434e+12,2999.98,3000,3.8361e+06,-20.5147, +I1,12.07.1999 16:48:00,315.018,317.313,243.744,40.7762,0,40.7752,178.4,60,2999.85,2999.85,0,0,1395.74,1395.74,0,0,0,0,0,0,88379.5,94439.5,94439.8,0,87.0927,1e+06,818.4,0,0,0,0,3.86591e+06,3.86591e+06,0,0,1.30455e+12,2999.98,3000,3.8661e+06,-20.6496, +I1,22.07.1999 16:48:00,314.709,317.004,243.406,40.7597,0,40.7587,178.319,60,2999.85,2999.85,0,0,1394.56,1394.56,0,0,0,0,0,0,89115.5,95213.8,95214.1,0,96.8907,1e+06,820.65,0,0,0,0,3.89591e+06,3.89591e+06,0,0,1.31475e+12,2999.98,3000,3.8961e+06,-20.7843, +I1,01.08.1999 16:48:00,314.323,316.619,243.026,40.7627,0,40.7617,178.259,60,2999.85,2999.85,0,0,1393.69,1393.69,0,0,0,0,0,0,89851.4,95942.8,95943.1,0,72.8234,1e+06,814.407,0,0,0,0,3.92591e+06,3.92591e+06,0,0,1.32496e+12,2999.98,3000,3.9261e+06,-20.9185, +I1,11.08.1999 16:48:00,313.981,316.277,242.666,40.7527,0,40.7517,178.183,60,2999.85,2999.85,0,0,1392.57,1392.57,0,0,0,0,0,0,90587.6,96702.4,96702.7,0,71.4587,1e+06,816.794,0,0,0,0,3.95591e+06,3.95591e+06,0,0,1.33517e+12,2999.98,3000,3.9561e+06,-21.0525, +I1,21.08.1999 16:48:00,313.641,315.937,242.319,40.7485,0,40.7475,178.116,60,2999.85,2999.85,0,0,1391.59,1391.59,0,0,0,0,0,0,91323.7,97448.6,97448.9,0,61.3878,1e+06,820.422,0,0,0,0,3.98591e+06,3.98591e+06,0,0,1.34538e+12,2999.98,3000,3.9861e+06,-21.186, +I1,31.08.1999 16:48:00,313.278,315.575,241.966,40.7542,0,40.7532,178.05,60,2999.85,2999.85,0,0,1390.62,1390.62,0,0,0,0,0,0,92059.8,98171,98171.4,0,58.0777,1e+06,812.337,0,0,0,0,4.0159e+06,4.0159e+06,0,0,1.3556e+12,2999.98,3000,4.0161e+06,-21.3193, +I1,10.09.1999 16:48:00,313.293,315.59,241.945,40.7337,0,40.7327,177.979,60,2999.85,2999.85,0,0,1389.58,1389.58,0,0,0,0,0,0,92796.3,98956.9,98957.2,0,70.7657,1e+06,813.203,0,0,0,0,4.0459e+06,4.0459e+06,0,0,1.36582e+12,2999.98,3000,4.0461e+06,-21.4522, +I1,20.09.1999 16:48:00,313.249,315.547,241.96,40.7658,0,40.7648,177.996,60,2999.85,2999.85,0,0,1389.84,1389.84,0,0,0,0,0,0,93532.2,99614.9,99615.2,0,45.5824,1e+06,821.094,0,0,0,0,4.0759e+06,4.0759e+06,0,0,1.37604e+12,2999.98,3000,4.0761e+06,-21.5847, +I1,30.09.1999 16:48:00,312.831,315.129,241.542,40.7659,0,40.7649,178.006,60,2999.85,2999.85,0,0,1389.98,1389.98,0,0,0,0,0,0,94268,100350,100351,0,43.7149,1e+06,812.79,0,0,0,0,4.1059e+06,4.1059e+06,0,0,1.38625e+12,2999.98,3000,4.1061e+06,-21.7169, +I1,10.10.1999 16:48:00,312.817,315.116,241.538,40.7711,0,40.7701,177.928,60,2999.85,2999.85,0,0,1388.83,1388.83,0,0,0,0,0,0,95003.8,101074,101074,0,36.3435,1e+06,815.213,0,0,0,0,4.1359e+06,4.1359e+06,0,0,1.39647e+12,2999.98,3000,4.1361e+06,-21.8487, +I1,20.10.1999 16:48:00,312.8,315.1,241.535,40.7783,0,40.7773,177.937,60,2999.85,2999.85,0,0,1388.97,1388.97,0,0,0,0,0,0,95739.5,101791,101792,0,31.9761,1e+06,810.249,0,0,0,0,4.1659e+06,4.1659e+06,0,0,1.40669e+12,2999.98,3000,4.1661e+06,-21.9802, +I1,30.10.1999 16:48:00,312.344,314.644,241.088,40.7833,0,40.7823,177.953,60,2999.85,2999.85,0,0,1389.2,1389.2,0,0,0,0,0,0,96475,102514,102515,0,31.3597,1e+06,813.69,0,0,0,0,4.19589e+06,4.19589e+06,0,0,1.41691e+12,2999.98,3000,4.1961e+06,-22.1114, +I1,09.11.1999 16:48:00,312.334,314.634,241.074,40.7813,0,40.7803,177.866,60,2999.85,2999.85,0,0,1387.91,1387.91,0,0,0,0,0,0,97210.6,103255,103255,0,21.9075,1e+06,816.775,0,0,0,0,4.22589e+06,4.22589e+06,0,0,1.42713e+12,2999.98,3000,4.2261e+06,-22.2422, +I1,19.11.1999 16:48:00,311.837,314.138,240.581,40.7826,0,40.7817,177.875,60,2999.85,2999.85,0,0,1388.06,1388.06,0,0,0,0,0,0,97946.2,103987,103987,0,20.9247,1e+06,811.73,0,0,0,0,4.25589e+06,4.25589e+06,0,0,1.43736e+12,2999.98,3000,4.2561e+06,-22.3727, +I1,29.11.1999 16:48:00,311.762,314.063,240.517,40.789,0,40.788,177.778,60,2999.85,2999.85,0,0,1386.62,1386.62,0,0,0,0,0,0,98681.6,104706,104707,0,14.6096,1e+06,815.817,0,0,0,0,4.28589e+06,4.28589e+06,0,0,1.44758e+12,2999.98,3000,4.2861e+06,-22.5028, +I1,09.12.1999 16:48:00,311.662,313.964,240.431,40.7961,0,40.7952,177.763,60,2999.85,2999.85,0,0,1386.41,1386.41,0,0,0,0,0,0,99417,105423,105424,0,12.6424,1e+06,819.539,0,0,0,0,4.31589e+06,4.31589e+06,0,0,1.45781e+12,2999.98,3000,4.3161e+06,-22.6326, +I1,19.12.1999 16:48:00,311.501,313.804,240.258,40.7889,0,40.7879,177.757,60,2999.85,2999.85,0,0,1386.31,1386.31,0,0,0,0,0,0,100152,106178,106178,0,7.74416,1e+06,812.173,0,0,0,0,4.34589e+06,4.34589e+06,0,0,1.46803e+12,2999.98,3000,4.3461e+06,-22.7621, +I1,29.12.1999 16:48:00,311.263,313.566,240.034,40.7967,0,40.7957,177.738,60,2999.85,2999.85,0,0,1386.02,1386.02,0,0,0,0,0,0,100888,106893,106893,0,6.60504,1e+06,814.942,0,0,0,0,4.37589e+06,4.37589e+06,0,0,1.47826e+12,2999.98,3000,4.3761e+06,-22.8912, +I1,08.01.2000 16:48:00,311.192,313.495,239.972,40.8017,0,40.8007,177.699,60,2999.85,2999.85,0,0,1385.46,1385.46,0,0,0,0,0,0,101623,107615,107615,0,6.39406,1e+06,812.248,0,0,0,0,4.40588e+06,4.40588e+06,0,0,1.48849e+12,2999.98,3000,4.4061e+06,-23.02, +I1,18.01.2000 16:48:00,311.043,313.346,239.837,40.8093,0,40.8083,177.695,60,2999.85,2999.85,0,0,1385.4,1385.4,0,0,0,0,0,0,102358,108330,108330,0,2.70656,1e+06,816.118,0,0,0,0,4.43588e+06,4.43588e+06,0,0,1.49872e+12,2999.98,3000,4.4361e+06,-23.1484, +I1,28.01.2000 16:48:00,310.489,312.793,239.275,40.8044,0,40.8034,177.678,60,2999.85,2999.85,0,0,1385.15,1385.15,0,0,0,0,0,0,103093,109078,109078,0,1,1e+06,818.039,0,0,0,0,4.46588e+06,4.46588e+06,0,0,1.50895e+12,2999.98,3000,4.4661e+06,-23.2765, +I1,07.02.2000 16:48:00,310.413,312.718,239.206,40.8079,0,40.8069,177.568,60,2999.85,2999.85,0,0,1383.51,1383.51,0,0,0,0,0,0,103828,109804,109804,0,1,1e+06,815.704,0,0,0,0,4.49588e+06,4.49588e+06,0,0,1.51918e+12,2999.98,3000,4.4961e+06,-23.4043, +I1,17.02.2000 16:48:00,310.327,312.632,239.137,40.8174,0,40.8164,177.559,60,2999.85,2999.85,0,0,1383.38,1383.38,0,0,0,0,0,0,104563,110513,110513,0,1,1e+06,806.571,0,0,0,0,4.52588e+06,4.52588e+06,0,0,1.52942e+12,2999.98,3000,4.5261e+06,-23.5317, +I1,27.02.2000 16:48:00,310.091,312.396,238.892,40.8122,0,40.8112,177.555,60,2999.85,2999.85,0,0,1383.32,1383.32,0,0,0,0,0,0,105298,111262,111263,0,1,1e+06,799.421,0,0,0,0,4.55588e+06,4.55588e+06,0,0,1.53965e+12,2999.98,3000,4.5561e+06,-23.6589, +I1,08.03.2000 16:48:00,310.011,312.316,238.826,40.8196,0,40.8187,177.518,60,2999.85,2999.85,0,0,1382.77,1382.77,0,0,0,0,0,0,106033,111977,111977,0,1,1e+06,800.273,0,0,0,0,4.58587e+06,4.58587e+06,0,0,1.54989e+12,2999.98,3000,4.5861e+06,-23.7856, +I1,18.03.2000 16:48:00,309.102,311.408,237.928,40.8254,0,40.8244,177.516,60,2999.85,2999.85,0,0,1382.75,1382.75,0,0,0,0,0,0,106768,112696,112696,0,1,1e+06,774.381,0,0,0,0,4.61587e+06,4.61587e+06,0,0,1.56012e+12,2999.98,3000,4.6161e+06,-23.9121, +I1,28.03.2000 16:48:00,309.134,311.44,237.899,40.7914,0,40.7904,177.328,60,2999.85,2999.85,0,0,1379.93,1379.93,0,0,0,0,0,0,107503,113525,113526,0,1,1e+06,762.626,0,0,0,0,4.64587e+06,4.64587e+06,0,0,1.57037e+12,2999.98,3000,4.6461e+06,-24.0382, +I1,07.04.2000 16:48:00,309.065,311.372,237.838,40.7953,0,40.7944,177.338,60,2999.85,2999.85,0,0,1380.09,1380.09,0,0,0,0,0,0,108239,114250,114250,0,1,1e+06,752.286,0,0,0,0,4.67587e+06,4.67587e+06,0,0,1.58061e+12,2999.98,3000,4.6761e+06,-24.164, +I1,17.04.2000 16:48:00,308.563,310.87,237.353,40.805,0,40.804,177.34,60,2999.85,2999.85,0,0,1380.12,1380.12,0,0,0,0,0,0,108974,114958,114958,0,1,1e+06,750.901,0,0,0,0,4.70587e+06,4.70587e+06,0,0,1.59085e+12,2999.98,3000,4.7061e+06,-24.2895, +I1,27.04.2000 16:48:00,308.411,310.718,237.169,40.7868,0,40.7858,177.244,60,2999.85,2999.85,0,0,1378.68,1378.68,0,0,0,0,0,0,109709,115744,115745,0,1,1e+06,723.47,0,0,0,0,4.73587e+06,4.73587e+06,0,0,1.6011e+12,2999.98,3000,4.7361e+06,-24.4146, +I1,07.05.2000 16:48:00,308.226,310.534,236.995,40.7929,0,40.7919,177.22,60,2999.85,2999.85,0,0,1378.32,1378.32,0,0,0,0,0,0,110445,116463,116463,0,1,1e+06,723.235,0,0,0,0,4.76587e+06,4.76587e+06,0,0,1.61135e+12,2999.98,3000,4.7661e+06,-24.5394, +I1,17.05.2000 16:48:00,307.835,310.143,236.613,40.7977,0,40.7968,177.193,60,2999.85,2999.85,0,0,1377.92,1377.92,0,0,0,0,0,0,111180,117184,117184,0,1,1e+06,717.368,0,0,0,0,4.79586e+06,4.79586e+06,0,0,1.62159e+12,2999.98,3000,4.7961e+06,-24.6639, +I1,27.05.2000 16:48:00,307.67,309.979,236.432,40.7887,0,40.7877,177.121,60,2999.85,2999.85,0,0,1376.82,1376.82,0,0,0,0,0,0,111916,117946,117946,0,1,1e+06,716.896,0,0,0,0,4.82586e+06,4.82586e+06,0,0,1.63184e+12,2999.98,3000,4.8261e+06,-24.7881, +I1,06.06.2000 16:48:00,307.538,309.847,236.305,40.791,0,40.7901,177.095,60,2999.85,2999.85,0,0,1376.44,1376.44,0,0,0,0,0,0,112651,118674,118675,0,1,1e+06,716.994,0,0,0,0,4.85586e+06,4.85586e+06,0,0,1.6421e+12,2999.98,3000,4.8561e+06,-24.9119, +I1,16.06.2000 16:48:00,307.424,309.734,236.198,40.7946,0,40.7936,177.08,60,2999.85,2999.85,0,0,1376.21,1376.21,0,0,0,0,0,0,113386,119399,119400,0,1,1e+06,716.965,0,0,0,0,4.88586e+06,4.88586e+06,0,0,1.65235e+12,2999.98,3000,4.8861e+06,-25.0354, +I1,26.06.2000 16:48:00,307.256,309.565,236.045,40.8027,0,40.8018,177.07,60,2999.85,2999.85,0,0,1376.06,1376.06,0,0,0,0,0,0,114122,120111,120111,0,1,1e+06,717.386,0,0,0,0,4.91586e+06,4.91586e+06,0,0,1.6626e+12,2999.98,3000,4.9161e+06,-25.1586, +I1,06.07.2000 16:48:00,307.125,309.435,235.925,40.8086,0,40.8077,177.048,60,2999.85,2999.85,0,0,1375.72,1375.72,0,0,0,0,0,0,114857,120828,120829,0,1,1e+06,717.652,0,0,0,0,4.94586e+06,4.94586e+06,0,0,1.67286e+12,2999.98,3000,4.9461e+06,-25.2815, +I1,16.07.2000 16:48:00,306.975,309.286,235.783,40.8128,0,40.8118,177.033,60,2999.85,2999.85,0,0,1375.49,1375.49,0,0,0,0,0,0,115592,121551,121551,0,1,1e+06,713.327,0,0,0,0,4.97585e+06,4.97585e+06,0,0,1.68311e+12,2999.98,3000,4.9761e+06,-25.4041, +I1,26.07.2000 16:48:00,306.856,309.167,235.671,40.8168,0,40.8159,177.014,60,2999.85,2999.85,0,0,1375.21,1375.21,0,0,0,0,0,0,116327,122274,122274,0,1,1e+06,713.681,0,0,0,0,5.00585e+06,5.00585e+06,0,0,1.69337e+12,2999.98,3000,5.0061e+06,-25.5263, +I1,05.08.2000 16:48:00,306.77,309.081,235.592,40.8204,0,40.8195,177.002,60,2999.85,2999.85,0,0,1375.03,1375.03,0,0,0,0,0,0,117062,122998,122998,0,1,1e+06,709.553,0,0,0,0,5.03585e+06,5.03585e+06,0,0,1.70362e+12,2999.98,3000,5.0361e+06,-25.6482, +I1,15.08.2000 16:48:00,306.617,308.929,235.456,40.8296,0,40.8286,176.997,60,2999.85,2999.85,0,0,1374.96,1374.96,0,0,0,0,0,0,117796,123705,123705,0,1,1e+06,706.924,0,0,0,0,5.06585e+06,5.06585e+06,0,0,1.71388e+12,2999.98,3000,5.0661e+06,-25.7698, +I1,25.08.2000 16:48:00,306.534,308.846,235.378,40.8319,0,40.8309,176.978,60,2999.85,2999.85,0,0,1374.67,1374.67,0,0,0,0,0,0,118531,124433,124433,0,1,1e+06,707.098,0,0,0,0,5.09585e+06,5.09585e+06,0,0,1.72413e+12,2999.98,3000,5.0961e+06,-25.8911, +I1,04.09.2000 16:48:00,306.409,308.721,235.267,40.8397,0,40.8387,176.974,60,2999.85,2999.85,0,0,1374.61,1374.61,0,0,0,0,0,0,119265,125144,125144,0,1,1e+06,706.75,0,0,0,0,5.12585e+06,5.12585e+06,0,0,1.73439e+12,2999.98,3000,5.1261e+06,-26.0121, +I1,14.09.2000 16:48:00,306.327,308.64,235.192,40.843,0,40.8421,176.961,60,2999.85,2999.85,0,0,1374.41,1374.41,0,0,0,0,0,0,120000,125868,125868,0,1,1e+06,706.72,0,0,0,0,5.15584e+06,5.15584e+06,0,0,1.74465e+12,2999.98,3000,5.1561e+06,-26.1327, +I1,24.09.2000 16:48:00,306.19,308.503,235.074,40.8535,0,40.8525,176.957,60,2999.85,2999.85,0,0,1374.36,1374.36,0,0,0,0,0,0,120734,126570,126570,0,1,1e+06,707.219,0,0,0,0,5.18584e+06,5.18584e+06,0,0,1.75491e+12,2999.98,3000,5.1861e+06,-26.253, +I1,04.10.2000 16:48:00,306.152,308.465,235.034,40.8525,0,40.8515,176.942,60,2999.85,2999.85,0,0,1374.12,1374.12,0,0,0,0,0,0,121469,127307,127308,0,1,1e+06,707.076,0,0,0,0,5.21584e+06,5.21584e+06,0,0,1.76516e+12,2999.98,3000,5.2161e+06,-26.3731, +I1,14.10.2000 16:48:00,306.042,308.356,234.942,40.8621,0,40.8612,176.947,60,2999.85,2999.85,0,0,1374.21,1374.21,0,0,0,0,0,0,122203,128011,128012,0,1,1e+06,707.549,0,0,0,0,5.24584e+06,5.24584e+06,0,0,1.77542e+12,2999.98,3000,5.2461e+06,-26.4928, +I1,24.10.2000 16:48:00,305.959,308.273,234.867,40.8663,0,40.8653,176.938,60,2999.85,2999.85,0,0,1374.07,1374.07,0,0,0,0,0,0,122937,128732,128733,0,1,1e+06,706.91,0,0,0,0,5.27584e+06,5.27584e+06,0,0,1.78568e+12,2999.98,3000,5.2761e+06,-26.6122, +I1,03.11.2000 16:48:00,305.876,308.19,234.797,40.8735,0,40.8726,176.934,60,2999.85,2999.85,0,0,1374.02,1374.02,0,0,0,0,0,0,123671,129444,129444,0,1,1e+06,704.31,0,0,0,0,5.30584e+06,5.30584e+06,0,0,1.79594e+12,2999.98,3000,5.3061e+06,-26.7313, +I1,13.11.2000 16:48:00,305.778,308.093,234.713,40.8809,0,40.88,176.93,60,2999.85,2999.85,0,0,1373.96,1373.96,0,0,0,0,0,0,124405,130154,130154,0,1,1e+06,705.154,0,0,0,0,5.33584e+06,5.33584e+06,0,0,1.8062e+12,2999.98,3000,5.3361e+06,-26.85, +I1,23.11.2000 16:48:00,305.683,307.998,234.634,40.8899,0,40.8889,176.923,60,2999.85,2999.85,0,0,1373.86,1373.86,0,0,0,0,0,0,125138,130859,130860,0,1,1e+06,705.954,0,0,0,0,5.36583e+06,5.36583e+06,0,0,1.81646e+12,2999.98,3000,5.3661e+06,-26.9685, +I1,03.12.2000 16:48:00,305.623,307.939,234.58,40.8928,0,40.8918,176.917,60,2999.85,2999.85,0,0,1373.76,1373.76,0,0,0,0,0,0,125872,131584,131584,0,1,1e+06,703.724,0,0,0,0,5.39583e+06,5.39583e+06,0,0,1.82672e+12,2999.98,3000,5.3961e+06,-27.0867, +I1,13.12.2000 16:48:00,305.552,307.868,234.522,40.8997,0,40.8987,176.918,60,2999.85,2999.85,0,0,1373.78,1373.78,0,0,0,0,0,0,126605,132295,132295,0,1,1e+06,704.39,0,0,0,0,5.42583e+06,5.42583e+06,0,0,1.83697e+12,2999.98,3000,5.4261e+06,-27.2045, +I1,23.12.2000 16:48:00,305.49,307.806,234.469,40.9053,0,40.9043,176.918,60,2999.85,2999.85,0,0,1373.78,1373.78,0,0,0,0,0,0,127339,133010,133010,0,1,1e+06,704.995,0,0,0,0,5.45583e+06,5.45583e+06,0,0,1.84723e+12,2999.98,3000,5.4561e+06,-27.3221, +I1,02.01.2001 16:48:00,305.451,307.767,234.436,40.9081,0,40.9071,176.919,60,2999.85,2999.85,0,0,1373.79,1373.79,0,0,0,0,0,0,128072,133734,133735,0,1,1e+06,702.902,0,0,0,0,5.48583e+06,5.48583e+06,0,0,1.85749e+12,2999.98,3000,5.4861e+06,-27.4393, +I1,12.01.2001 16:48:00,305.355,307.672,234.361,40.9194,0,40.9184,176.925,60,2999.85,2999.85,0,0,1373.89,1373.89,0,0,0,0,0,0,128805,134430,134431,0,1,1e+06,703.851,0,0,0,0,5.51583e+06,5.51583e+06,0,0,1.86775e+12,2999.98,3000,5.5161e+06,-27.5562, +I1,22.01.2001 16:48:00,305.295,307.613,234.311,40.9247,0,40.9237,176.919,60,2999.85,2999.85,0,0,1373.81,1373.81,0,0,0,0,0,0,129538,135146,135146,0,1,1e+06,704.516,0,0,0,0,5.54582e+06,5.54582e+06,0,0,1.87801e+12,2999.98,3000,5.5461e+06,-27.6728, +I1,01.02.2001 16:48:00,305.257,307.575,234.28,40.9283,0,40.9274,176.921,60,2999.85,2999.85,0,0,1373.83,1373.83,0,0,0,0,0,0,130271,135867,135867,0,1,1e+06,704.949,0,0,0,0,5.57582e+06,5.57582e+06,0,0,1.88827e+12,2999.98,3000,5.5761e+06,-27.7892, +I1,11.02.2001 16:48:00,305.18,307.498,234.22,40.9377,0,40.9367,176.927,60,2999.85,2999.85,0,0,1373.93,1373.93,0,0,0,0,0,0,131004,136569,136569,0,1,1e+06,703.672,0,0,0,0,5.60582e+06,5.60582e+06,0,0,1.89853e+12,2999.98,3000,5.6061e+06,-27.9052, +I1,21.02.2001 16:48:00,305.129,307.447,234.179,40.9432,0,40.9422,176.925,60,2999.85,2999.85,0,0,1373.9,1373.9,0,0,0,0,0,0,131736,137283,137283,0,1,1e+06,704.311,0,0,0,0,5.63582e+06,5.63582e+06,0,0,1.90879e+12,2999.98,3000,5.6361e+06,-28.0209, +I1,03.03.2001 16:48:00,305.073,307.392,234.136,40.9502,0,40.9493,176.929,60,2999.85,2999.85,0,0,1373.96,1373.96,0,0,0,0,0,0,132469,137992,137992,0,1,1e+06,704.991,0,0,0,0,5.66582e+06,5.66582e+06,0,0,1.91905e+12,2999.98,3000,5.6661e+06,-28.1363, +I1,13.03.2001 16:48:00,305.02,307.339,234.095,40.9567,0,40.9557,176.932,60,2999.85,2999.85,0,0,1374,1374,0,0,0,0,0,0,133201,138703,138703,0,1,1e+06,705.671,0,0,0,0,5.69582e+06,5.69582e+06,0,0,1.9293e+12,2999.98,3000,5.6961e+06,-28.2514, +I1,23.03.2001 16:48:00,304.992,307.311,234.074,40.9603,0,40.9594,176.935,60,2999.85,2999.85,0,0,1374.06,1374.06,0,0,0,0,0,0,133934,139423,139423,0,1,1e+06,704.303,0,0,0,0,5.72582e+06,5.72582e+06,0,0,1.93956e+12,2999.98,3000,5.7261e+06,-28.3662, +I1,02.04.2001 16:48:00,304.927,307.246,234.024,40.9691,0,40.9682,176.944,60,2999.85,2999.85,0,0,1374.2,1374.2,0,0,0,0,0,0,134666,140125,140125,0,1,1e+06,705.118,0,0,0,0,5.75581e+06,5.75581e+06,0,0,1.94982e+12,2999.98,3000,5.7561e+06,-28.4808, +I1,12.04.2001 16:48:00,304.875,307.195,233.984,40.9754,0,40.9745,176.945,60,2999.85,2999.85,0,0,1374.21,1374.21,0,0,0,0,0,0,135398,140836,140836,0,1,1e+06,705.507,0,0,0,0,5.78581e+06,5.78581e+06,0,0,1.96008e+12,2999.98,3000,5.7861e+06,-28.595, +I1,22.04.2001 16:48:00,304.837,307.157,233.955,40.9807,0,40.9797,176.949,60,2999.85,2999.85,0,0,1374.27,1374.27,0,0,0,0,0,0,136130,141550,141550,0,1,1e+06,705.905,0,0,0,0,5.81581e+06,5.81581e+06,0,0,1.97034e+12,2999.98,3000,5.8161e+06,-28.7089, +I1,02.05.2001 16:48:00,304.785,307.105,233.917,40.9879,0,40.9869,176.956,60,2999.85,2999.85,0,0,1374.37,1374.37,0,0,0,0,0,0,136862,142256,142257,0,1,1e+06,706.483,0,0,0,0,5.84581e+06,5.84581e+06,0,0,1.98059e+12,2999.98,3000,5.8461e+06,-28.8225, +I1,12.05.2001 16:48:00,304.746,307.068,233.889,40.9936,0,40.9926,176.96,60,2999.85,2999.85,0,0,1374.44,1374.44,0,0,0,0,0,0,137594,142969,142969,0,1,1e+06,706.933,0,0,0,0,5.87581e+06,5.87581e+06,0,0,1.99085e+12,2999.98,3000,5.8761e+06,-28.9358, +I1,22.05.2001 16:48:00,304.697,307.019,233.852,41.0002,0,40.9993,176.967,60,2999.85,2999.85,0,0,1374.54,1374.54,0,0,0,0,0,0,138326,143677,143677,0,1,1e+06,707.528,0,0,0,0,5.90581e+06,5.90581e+06,0,0,2.00111e+12,2999.98,3000,5.9061e+06,-29.0489, +I1,01.06.2001 16:48:00,304.653,306.975,233.82,41.0066,0,41.0057,176.972,60,2999.85,2999.85,0,0,1374.61,1374.61,0,0,0,0,0,0,139057,144386,144386,0,1,1e+06,708.103,0,0,0,0,5.9358e+06,5.9358e+06,0,0,2.01137e+12,2999.98,3000,5.9361e+06,-29.1616, +I1,11.06.2001 16:48:00,304.612,306.935,233.789,41.012,0,41.011,176.977,60,2999.85,2999.85,0,0,1374.7,1374.7,0,0,0,0,0,0,139789,145099,145099,0,1,1e+06,708.658,0,0,0,0,5.9658e+06,5.9658e+06,0,0,2.02162e+12,2999.98,3000,5.9661e+06,-29.2741, +I1,21.06.2001 16:48:00,304.566,306.889,233.756,41.0191,0,41.0182,176.983,60,2999.85,2999.85,0,0,1374.79,1374.79,0,0,0,0,0,0,140520,145805,145805,0,1,1e+06,709.267,0,0,0,0,5.9958e+06,5.9958e+06,0,0,2.03188e+12,2999.98,3000,5.9961e+06,-29.3862, diff --git a/ApplicationLibCode/UnitTests/TestData/RifRevealCsvSectionSummaryReader/welldata.csv b/ApplicationLibCode/UnitTests/TestData/RifRevealCsvSectionSummaryReader/welldata.csv new file mode 100644 index 0000000000..b8cda0e076 --- /dev/null +++ b/ApplicationLibCode/UnitTests/TestData/RifRevealCsvSectionSummaryReader/welldata.csv @@ -0,0 +1,607 @@ +Clean water 60degC 3000Sm3 +,Date,LiquidProduced (Sm3/day),WaterProduced (Sm3/day),OilProduced (Sm3/day),GasProduced (1000Sm3/d),GOR (Sm3/Sm3),WaterCut (fraction),WaterGasRatio (Sm3/Sm3),CGR (Sm3/Sm3),CumLiquidProduced (Sm3),CumWaterProduced (Sm3),CumOilProduced (Sm3),CumGasProduced (MSm3),LiquidInjected (Sm3/day),WaterInjected (Sm3/day),OilInjected (Sm3/day),GasInjected (1000Sm3/d),CumLiquidInjected (Sm3),CumWaterInjected (Sm3),CumOilInjected (Sm3),CumGasInjected (MSm3),CumHeatInjected (kJ),FracLiquidProduced (Sm3/day),FracWaterProduced (Sm3/day),FracOilProduced (Sm3/day),FracGasProduced (1000Sm3/d),FracLiquidInjected (Sm3/day),FracWaterInjected (Sm3/day),FracOilInjected (Sm3/day),FracGasInjected (1000Sm3/d),DownholeRate (rm3/day),VoidageRate (rm3/day),CumVoidage (rm3),GasLiftRate (1000Sm3/d),DiluentRate (Sm3/day),JetRate (Sm3/day),SurfactantRate (Kg/day),NPV (MMUS$), +Clean water 60degC 3000Sm3,17.01.1996 21:57:52,2400.15,0.000175827,2400.15,4.25328e-13,1.772e-13,7.32567e-08,413410,5.6433e+12,40611,0.00281238,40610.9,7.19664e-15,2999.87,2999.87,0,0,50743.2,50743.2,0,0,1.05347e+10,0,0,0,0,2385.85,2385.85,0,0,-10.2269,0,0,0,0,0,0,14.9739, +Clean water 60degC 3000Sm3,26.01.1996 14:46:20,2399.4,0.000175703,2399.4,4.25195e-13,1.772e-13,7.32278e-08,413247,5.6433e+12,61486.5,0.00434104,61486.5,1.0896e-14,2999.87,2999.87,0,0,76843,76843,0,0,1.6289e+10,0,0,0,0,1604.74,1604.74,0,0,-9.60547,0,0,0,0,0,0,22.6453, +Clean water 60degC 3000Sm3,02.02.1996 14:48:37,2399.21,0.000174265,2399.21,4.25161e-13,1.772e-13,7.26345e-08,409898,5.6433e+12,78284.7,0.00556117,78284.7,1.38728e-14,2999.87,2999.87,0,0,97846.8,97846.8,0,0,2.09539e+10,0,0,0,0,1410.97,1410.97,0,0,-9.42349,0,0,0,0,0,0,28.8056, +Clean water 60degC 3000Sm3,12.02.1996 14:48:37,2399.17,0.000172309,2399.17,4.25155e-13,1.772e-13,7.182e-08,405302,5.6433e+12,102276,0.00728426,102276,1.81243e-14,2999.87,2999.87,0,0,127845,127845,0,0,2.74848e+10,0,0,0,0,1846.86,1846.86,0,0,-9.39399,0,0,0,0,0,0,37.5846, +Clean water 60degC 3000Sm3,21.02.1996 07:33:14,2399.17,0.000171398,2399.17,4.25154e-13,1.772e-13,7.14408e-08,403162,5.6433e+12,123143,0.00877502,123143,2.18222e-14,2999.87,2999.87,0,0,153937,153937,0,0,3.32751e+10,0,0,0,0,1630.51,1630.51,0,0,-9.4415,0,0,0,0,0,0,45.2015, +Clean water 60degC 3000Sm3,01.03.1996 03:26:06,2399.12,0.000170482,2399.12,4.25146e-13,1.772e-13,7.10601e-08,401013,5.6433e+12,144324,0.0102801,144324,2.55755e-14,2999.87,2999.87,0,0,180421,180421,0,0,3.91423e+10,0,0,0,0,1456.78,1456.78,0,0,-9.41107,0,0,0,0,0,0,52.9152, +Clean water 60degC 3000Sm3,11.03.1996 03:26:06,2399.1,0.000169511,2399.1,4.25142e-13,1.772e-13,7.06562e-08,398734,5.6433e+12,168315,0.0119752,168315,2.9827e-14,2999.87,2999.87,0,0,210420,210420,0,0,4.57835e+10,0,0,0,0,1484.97,1484.97,0,0,-9.40051,0,0,0,0,0,0,61.631, +Clean water 60degC 3000Sm3,21.03.1996 03:26:06,2399.09,0.000168655,2399.09,4.2514e-13,1.772e-13,7.02996e-08,396722,5.6433e+12,192306,0.0136617,192305,3.40784e-14,2999.87,2999.87,0,0,240418,240418,0,0,5.24181e+10,0,0,0,0,1825.53,1825.53,0,0,-9.39306,0,0,0,0,0,0,70.3241, +Clean water 60degC 3000Sm3,31.03.1996 03:26:06,2399.08,0.000168119,2399.08,4.25138e-13,1.772e-13,7.00767e-08,395464,5.6433e+12,216296,0.0153429,216296,3.83297e-14,2999.87,2999.87,0,0,270417,270417,0,0,5.90762e+10,0,0,0,0,1494.46,1494.46,0,0,-9.40952,0,0,0,0,0,0,78.9944, +Clean water 60degC 3000Sm3,10.04.1996 03:26:06,2399.06,0.000167455,2399.06,4.25134e-13,1.772e-13,6.98002e-08,393904,5.6433e+12,240287,0.0170175,240287,4.25811e-14,2999.87,2999.87,0,0,300416,300416,0,0,6.56601e+10,0,0,0,0,1844.16,1844.16,0,0,-9.39088,0,0,0,0,0,0,87.6421, +Clean water 60degC 3000Sm3,20.04.1996 03:26:06,2399.05,0.000167202,2399.05,4.25133e-13,1.772e-13,6.9695e-08,393310,5.6433e+12,264277,0.0186895,264277,4.68324e-14,2999.87,2999.87,0,0,330414,330414,0,0,7.232e+10,0,0,0,0,1479.25,1479.25,0,0,-9.42101,0,0,0,0,0,0,96.2673, +Clean water 60degC 3000Sm3,30.04.1996 03:26:06,2399.02,0.000166613,2399.02,4.25129e-13,1.772e-13,6.94504e-08,391930,5.6433e+12,288267,0.0203556,288267,5.10837e-14,2999.87,2999.87,0,0,360413,360413,0,0,7.87539e+10,0,0,0,0,2327.59,2327.59,0,0,-9.38871,0,0,0,0,0,0,104.87, +Clean water 60degC 3000Sm3,10.05.1996 03:26:06,2399.02,0.000167217,2399.02,4.25128e-13,1.772e-13,6.97023e-08,393351,5.6433e+12,312258,0.0220278,312258,5.5335e-14,2999.87,2999.87,0,0,390411,390411,0,0,8.52396e+10,0,0,0,0,2011.94,2011.94,0,0,-9.50082,0,0,0,0,0,0,113.45, +Clean water 60degC 3000Sm3,20.05.1996 03:26:06,2398.92,0.000170697,2398.92,4.25111e-13,1.772e-13,7.11557e-08,401553,5.6433e+12,336247,0.0237348,336247,5.95861e-14,2999.87,2999.87,0,0,420410,420410,0,0,9.169e+10,0,0,0,0,2049.91,2049.91,0,0,-9.77565,0,0,0,0,0,0,122.007, +Clean water 60degC 3000Sm3,30.05.1996 03:26:06,2398.6,0.000174781,2398.6,4.25054e-13,1.772e-13,7.28681e-08,411217,5.6433e+12,360233,0.0254826,360233,6.38366e-14,2999.87,2999.87,0,0,450409,450409,0,0,9.80882e+10,0,0,0,0,2111.78,2111.78,0,0,-9.82565,0,0,0,0,0,0,130.541, +Clean water 60degC 3000Sm3,09.06.1996 03:26:06,2398.23,0.000178479,2398.23,4.24988e-13,1.772e-13,7.4421e-08,419980,5.6433e+12,384215,0.0272674,384215,6.80865e-14,2999.87,2999.87,0,0,480407,480407,0,0,1.04484e+11,0,0,0,0,2074.04,2074.04,0,0,-9.77596,0,0,0,0,0,0,139.052, +Clean water 60degC 3000Sm3,19.06.1996 03:26:06,2397.89,0.0001823,2397.89,4.24929e-13,1.772e-13,7.60252e-08,429033,5.6433e+12,408194,0.0290904,408194,7.23358e-14,2999.87,2999.87,0,0,510406,510406,0,0,1.10848e+11,0,0,0,0,2085.55,2085.55,0,0,-9.78031,0,0,0,0,0,0,147.539, +Clean water 60degC 3000Sm3,29.06.1996 03:26:06,2397.55,0.000186431,2397.55,4.24868e-13,1.772e-13,7.77591e-08,438818,5.6433e+12,432169,0.0309547,432169,7.65845e-14,2999.87,2999.87,0,0,540404,540404,0,0,1.17209e+11,0,0,0,0,2064.97,2064.97,0,0,-9.80298,0,0,0,0,0,0,156.002, +Clean water 60degC 3000Sm3,13.07.1996 16:48:00,2396.94,0.000189993,2396.94,4.24759e-13,1.772e-13,7.92651e-08,447317,5.6433e+12,467062,0.0337064,467062,8.27679e-14,2999.87,2999.87,0,0,584073,584073,0,0,1.26676e+11,0,0,0,0,1565.27,1565.27,0,0,-9.44647,0,0,0,0,0,0,168.28, +Clean water 60degC 3000Sm3,23.07.1996 16:48:00,2396.88,0.000190185,2396.88,4.24749e-13,1.772e-13,7.9347e-08,447779,5.6433e+12,491031,0.0356082,491031,8.70154e-14,2999.87,2999.87,0,0,614072,614072,0,0,1.33309e+11,0,0,0,0,1612.91,1612.91,0,0,-9.42504,0,0,0,0,0,0,176.688, +Clean water 60degC 3000Sm3,02.08.1996 16:48:00,2396.84,0.000190104,2396.84,4.24742e-13,1.772e-13,7.93141e-08,447593,5.6433e+12,515000,0.0375092,515000,9.12628e-14,2999.87,2999.87,0,0,644070,644070,0,0,1.39954e+11,0,0,0,0,1546.84,1546.84,0,0,-9.40579,0,0,0,0,0,0,185.073, +Clean water 60degC 3000Sm3,12.08.1996 16:48:00,2396.82,0.000189805,2396.82,4.24739e-13,1.772e-13,7.91901e-08,446893,5.6433e+12,538968,0.0394073,538968,9.55102e-14,2999.87,2999.87,0,0,674069,674069,0,0,1.46311e+11,0,0,0,0,2252.3,2252.3,0,0,-9.38095,0,0,0,0,0,0,193.436, +Clean water 60degC 3000Sm3,22.08.1996 16:48:00,2396.81,0.000193528,2396.81,4.24737e-13,1.772e-13,8.07439e-08,455662,5.6433e+12,562936,0.0413426,562936,9.97575e-14,2999.87,2999.87,0,0,704067,704067,0,0,1.52738e+11,0,0,0,0,2070.67,2070.67,0,0,-9.76602,0,0,0,0,0,0,201.777, +Clean water 60degC 3000Sm3,01.09.1996 16:48:00,2396.48,0.000199231,2396.48,4.24679e-13,1.772e-13,8.31349e-08,469155,5.6433e+12,586901,0.0433349,586901,1.04004e-13,2999.86,2999.86,0,0,734066,734066,0,0,1.59023e+11,0,0,0,0,2137.42,2137.42,0,0,-9.95452,0,0,0,0,0,0,210.096, +Clean water 60degC 3000Sm3,11.09.1996 16:48:00,2395.99,0.00020637,2395.99,4.24592e-13,1.772e-13,8.61311e-08,486064,5.6433e+12,610861,0.0453986,610860,1.0825e-13,2999.86,2999.86,0,0,764064,764064,0,0,1.65307e+11,0,0,0,0,2041.4,2041.4,0,0,-10.0061,0,0,0,0,0,0,218.391, +Clean water 60degC 3000Sm3,21.09.1996 16:48:00,2395.46,0.000207501,2395.46,4.24497e-13,1.772e-13,8.66228e-08,488838,5.6433e+12,634815,0.0474736,634815,1.12495e-13,2999.86,2999.86,0,0,794063,794063,0,0,1.71953e+11,0,0,0,0,1563.3,1563.3,0,0,-9.48467,0,0,0,0,0,0,226.662, +Clean water 60degC 3000Sm3,01.10.1996 16:48:00,2395.37,0.000207452,2395.37,4.24481e-13,1.772e-13,8.66054e-08,488740,5.6433e+12,658769,0.0495481,658769,1.1674e-13,2999.86,2999.86,0,0,824062,824062,0,0,1.78605e+11,0,0,0,0,1571.85,1571.85,0,0,-9.41076,0,0,0,0,0,0,234.912, +Clean water 60degC 3000Sm3,11.10.1996 16:48:00,2395.33,0.000207405,2395.33,4.24475e-13,1.772e-13,8.65871e-08,488637,5.6433e+12,682722,0.0516221,682722,1.20985e-13,2999.86,2999.86,0,0,854060,854060,0,0,1.85258e+11,0,0,0,0,1571.6,1571.6,0,0,-9.40579,0,0,0,0,0,0,243.14, +Clean water 60degC 3000Sm3,21.10.1996 16:48:00,2395.31,0.00020721,2395.31,4.24471e-13,1.772e-13,8.65064e-08,488181,5.6433e+12,706675,0.0536942,706675,1.25229e-13,2999.86,2999.86,0,0,884059,884059,0,0,1.9191e+11,0,0,0,0,1574.59,1574.59,0,0,-9.39368,0,0,0,0,0,0,251.347, +Clean water 60degC 3000Sm3,31.10.1996 16:48:00,2395.29,0.000207283,2395.29,4.24468e-13,1.772e-13,8.65378e-08,488359,5.6433e+12,730628,0.055767,730628,1.29474e-13,2999.86,2999.86,0,0,914057,914057,0,0,1.98567e+11,0,0,0,0,1566.91,1566.91,0,0,-9.40517,0,0,0,0,0,0,259.532, +Clean water 60degC 3000Sm3,10.11.1996 16:48:00,2395.27,0.000207195,2395.27,4.24463e-13,1.772e-13,8.65019e-08,488156,5.6433e+12,754581,0.057839,754581,1.33719e-13,2999.86,2999.86,0,0,944056,944056,0,0,2.05202e+11,0,0,0,0,1627.95,1627.95,0,0,-9.39554,0,0,0,0,0,0,267.695, +Clean water 60degC 3000Sm3,20.11.1996 16:48:00,2395.25,0.000213041,2395.25,4.2446e-13,1.772e-13,8.89431e-08,501933,5.6433e+12,778533,0.0599694,778533,1.37963e-13,2999.86,2999.86,0,0,974055,974055,0,0,2.11491e+11,0,0,0,0,2081.98,2081.98,0,0,-9.88123,0,0,0,0,0,0,275.838, +Clean water 60degC 3000Sm3,30.11.1996 16:48:00,2394.82,0.000221833,2394.82,4.24383e-13,1.772e-13,9.26304e-08,522741,5.6433e+12,802481,0.0621877,802481,1.42207e-13,2999.86,2999.86,0,0,1.00405e+06,1.00405e+06,0,0,2.1772e+11,0,0,0,0,2068.98,2068.98,0,0,-10.0893,0,0,0,0,0,0,283.957, +Clean water 60degC 3000Sm3,10.12.1996 16:48:00,2394.21,0.000223141,2394.21,4.24275e-13,1.772e-13,9.32005e-08,525958,5.6433e+12,826423,0.0644191,826423,1.4645e-13,2999.86,2999.86,0,0,1.03405e+06,1.03405e+06,0,0,2.24359e+11,0,0,0,0,1555.64,1555.64,0,0,-9.50082,0,0,0,0,0,0,292.053, +Clean water 60degC 3000Sm3,20.12.1996 16:48:00,2394.09,0.00022309,2394.09,4.24255e-13,1.772e-13,9.31837e-08,525864,5.6433e+12,850364,0.06665,850364,1.50693e-13,2999.86,2999.86,0,0,1.06405e+06,1.06405e+06,0,0,2.30974e+11,0,0,0,0,1608.87,1608.87,0,0,-9.41324,0,0,0,0,0,0,300.128, +Clean water 60degC 3000Sm3,30.12.1996 16:48:00,2394.05,0.000223074,2394.05,4.24248e-13,1.772e-13,9.31783e-08,525833,5.6433e+12,874305,0.0688808,874304,1.54935e-13,2999.86,2999.86,0,0,1.09405e+06,1.09405e+06,0,0,2.37614e+11,0,0,0,0,1538.82,1538.82,0,0,-9.41045,0,0,0,0,0,0,308.182, +Clean water 60degC 3000Sm3,07.01.1997 07:12:00,2393.87,0.000225359,2393.87,4.24215e-13,1.772e-13,9.41401e-08,531261,5.6433e+12,892498,0.0705893,892498,1.58159e-13,2999.86,2999.86,0,0,1.11685e+06,1.11685e+06,0,0,2.42542e+11,0,0,0,0,1531.41,1531.41,0,0,-9.38654,0,0,0,0,0,0,314.288, +Clean water 60degC 3000Sm3,23.01.1997 16:48:00,2393.82,0.000228597,2393.82,4.24206e-13,1.772e-13,9.5495e-08,538907,5.6433e+12,931757,0.0743176,931757,1.65116e-13,2999.86,2999.86,0,0,1.16605e+06,1.16605e+06,0,0,2.53249e+11,0,0,0,0,1535.35,1535.35,0,0,-9.63497,0,0,0,0,0,0,327.424, +Clean water 60degC 3000Sm3,02.02.1997 16:48:00,2393.59,0.000232138,2393.59,4.24166e-13,1.772e-13,9.69834e-08,547307,5.6433e+12,955693,0.076639,955693,1.69358e-13,2999.86,2999.86,0,0,1.19604e+06,1.19604e+06,0,0,2.59749e+11,0,0,0,0,1508.64,1508.64,0,0,-9.65298,0,0,0,0,0,0,335.404, +Clean water 60degC 3000Sm3,12.02.1997 16:48:00,2393.35,0.000235813,2393.35,4.24123e-13,1.772e-13,9.85288e-08,556028,5.6433e+12,979626,0.0789971,979626,1.73599e-13,2999.86,2999.86,0,0,1.22604e+06,1.22604e+06,0,0,2.66249e+11,0,0,0,0,1512.34,1512.34,0,0,-9.65951,0,0,0,0,0,0,343.364, +Clean water 60degC 3000Sm3,22.02.1997 16:48:00,2393.1,0.00023987,2393.1,4.24079e-13,1.772e-13,1.00234e-07,565652,5.6433e+12,1.00356e+06,0.0813958,1.00356e+06,1.7784e-13,2999.86,2999.86,0,0,1.25604e+06,1.25604e+06,0,0,2.72741e+11,0,0,0,0,1515.57,1515.57,0,0,-9.68435,0,0,0,0,0,0,351.302, +Clean water 60degC 3000Sm3,04.03.1997 16:48:00,2392.83,0.000243851,2392.83,4.2403e-13,1.772e-13,1.01909e-07,575104,5.6433e+12,1.02749e+06,0.0838343,1.02749e+06,1.8208e-13,2999.86,2999.86,0,0,1.28604e+06,1.28604e+06,0,0,2.79225e+11,0,0,0,0,1517.17,1517.17,0,0,-9.67193,0,0,0,0,0,0,359.218, +Clean water 60degC 3000Sm3,14.03.1997 16:48:00,2392.56,0.000247543,2392.56,4.23984e-13,1.772e-13,1.03464e-07,583876,5.6433e+12,1.05141e+06,0.0863097,1.05141e+06,1.8632e-13,2999.86,2999.86,0,0,1.31604e+06,1.31604e+06,0,0,2.8572e+11,0,0,0,0,1539.04,1539.04,0,0,-9.64895,0,0,0,0,0,0,367.112, +Clean water 60degC 3000Sm3,24.03.1997 16:48:00,2392.32,0.000251336,2392.32,4.2394e-13,1.772e-13,1.0506e-07,592884,5.6433e+12,1.07533e+06,0.0888231,1.07533e+06,1.90559e-13,2999.86,2999.86,0,0,1.34604e+06,1.34604e+06,0,0,2.92209e+11,0,0,0,0,1512.63,1512.63,0,0,-9.65392,0,0,0,0,0,0,374.986, +Clean water 60degC 3000Sm3,03.04.1997 16:48:00,2392.07,0.000254468,2392.07,4.23896e-13,1.772e-13,1.0638e-07,600333,5.6433e+12,1.09925e+06,0.0913678,1.09925e+06,1.94798e-13,2999.86,2999.86,0,0,1.37604e+06,1.37604e+06,0,0,2.98735e+11,0,0,0,0,1535.48,1535.48,0,0,-9.60019,0,0,0,0,0,0,382.837, +Clean water 60degC 3000Sm3,13.04.1997 16:48:00,2391.86,0.000257657,2391.86,4.23859e-13,1.772e-13,1.07722e-07,607910,5.6433e+12,1.12317e+06,0.0939443,1.12317e+06,1.99037e-13,2999.86,2999.86,0,0,1.40603e+06,1.40603e+06,0,0,3.05242e+11,0,0,0,0,1512.97,1512.97,0,0,-9.60485,0,0,0,0,0,0,390.668, +Clean water 60degC 3000Sm3,23.04.1997 16:48:00,2391.65,0.000260662,2391.65,4.23822e-13,1.772e-13,1.08988e-07,615054,5.6433e+12,1.14709e+06,0.096551,1.14709e+06,2.03275e-13,2999.86,2999.86,0,0,1.43603e+06,1.43603e+06,0,0,3.11762e+11,0,0,0,0,1527.99,1527.99,0,0,-9.58963,0,0,0,0,0,0,398.478, +Clean water 60degC 3000Sm3,03.05.1997 16:48:00,2391.45,0.000262712,2391.45,4.23786e-13,1.772e-13,1.09855e-07,619943,5.6433e+12,1.171e+06,0.0991781,1.171e+06,2.07513e-13,2999.86,2999.86,0,0,1.46603e+06,1.46603e+06,0,0,3.18315e+11,0,0,0,0,1525.73,1525.73,0,0,-9.51665,0,0,0,0,0,0,406.266, +Clean water 60degC 3000Sm3,13.05.1997 16:48:00,2391.31,0.000265603,2391.31,4.23762e-13,1.772e-13,1.1107e-07,626801,5.6433e+12,1.19492e+06,0.101834,1.19492e+06,2.11751e-13,2999.86,2999.86,0,0,1.49603e+06,1.49603e+06,0,0,3.24857e+11,0,0,0,0,1502.78,1502.78,0,0,-9.58218,0,0,0,0,0,0,414.034, +Clean water 60degC 3000Sm3,23.05.1997 16:48:00,2391.11,0.000267919,2391.11,4.23727e-13,1.772e-13,1.12048e-07,632319,5.6433e+12,1.21883e+06,0.104513,1.21883e+06,2.15988e-13,2999.86,2999.86,0,0,1.52603e+06,1.52603e+06,0,0,3.31413e+11,0,0,0,0,1514.84,1514.84,0,0,-9.53436,0,0,0,0,0,0,421.781, +Clean water 60degC 3000Sm3,02.06.1997 16:48:00,2390.96,0.000270096,2390.96,4.237e-13,1.772e-13,1.12965e-07,637497,5.6433e+12,1.24274e+06,0.107214,1.24274e+06,2.20225e-13,2999.86,2999.86,0,0,1.55603e+06,1.55603e+06,0,0,3.37965e+11,0,0,0,0,1491.88,1491.88,0,0,-9.5269,0,0,0,0,0,0,429.507, +Clean water 60degC 3000Sm3,12.06.1997 16:48:00,2390.81,0.00027257,2390.81,4.23673e-13,1.772e-13,1.14007e-07,643378,5.6433e+12,1.26665e+06,0.10994,1.26665e+06,2.24462e-13,2999.86,2999.86,0,0,1.58603e+06,1.58603e+06,0,0,3.44522e+11,0,0,0,0,1488.42,1488.42,0,0,-9.54336,0,0,0,0,0,0,437.213, +Clean water 60degC 3000Sm3,22.06.1997 16:48:00,2390.65,0.000274922,2390.65,4.23644e-13,1.772e-13,1.14999e-07,648975,5.6433e+12,1.29055e+06,0.112689,1.29055e+06,2.28698e-13,2999.86,2999.86,0,0,1.61602e+06,1.61602e+06,0,0,3.51106e+11,0,0,0,0,1521.44,1521.44,0,0,-9.53405,0,0,0,0,0,0,444.898, +Clean water 60degC 3000Sm3,02.07.1997 16:48:00,2390.49,0.000278171,2390.49,4.23617e-13,1.772e-13,1.16366e-07,656687,5.6433e+12,1.31446e+06,0.115471,1.31446e+06,2.32934e-13,2999.86,2999.86,0,0,1.64602e+06,1.64602e+06,0,0,3.57664e+11,0,0,0,0,1477.48,1477.48,0,0,-9.60361,0,0,0,0,0,0,452.562, +Clean water 60degC 3000Sm3,12.07.1997 16:48:00,2390.28,0.000281072,2390.28,4.2358e-13,1.772e-13,1.1759e-07,663593,5.6433e+12,1.33836e+06,0.118282,1.33836e+06,2.3717e-13,2999.86,2999.86,0,0,1.67602e+06,1.67602e+06,0,0,3.64234e+11,0,0,0,0,1487.81,1487.81,0,0,-9.57814,0,0,0,0,0,0,460.206, +Clean water 60degC 3000Sm3,22.07.1997 16:48:00,2390.09,0.00028358,2390.09,4.23546e-13,1.772e-13,1.18648e-07,669568,5.6433e+12,1.36226e+06,0.121117,1.36226e+06,2.41405e-13,2999.86,2999.86,0,0,1.70602e+06,1.70602e+06,0,0,3.70807e+11,0,0,0,0,1496.03,1496.03,0,0,-9.54398,0,0,0,0,0,0,467.829, +Clean water 60degC 3000Sm3,01.08.1997 16:48:00,2389.93,0.000285451,2389.93,4.23517e-13,1.772e-13,1.19439e-07,674032,5.6433e+12,1.38616e+06,0.123972,1.38616e+06,2.45641e-13,2999.86,2999.86,0,0,1.73602e+06,1.73602e+06,0,0,3.77371e+11,0,0,0,0,1481.12,1481.12,0,0,-9.49678,0,0,0,0,0,0,475.432, +Clean water 60degC 3000Sm3,11.08.1997 16:48:00,2389.8,0.000286811,2389.8,4.23494e-13,1.772e-13,1.20015e-07,677280,5.6433e+12,1.41006e+06,0.12684,1.41006e+06,2.49876e-13,2999.86,2999.86,0,0,1.76602e+06,1.76602e+06,0,0,3.83959e+11,0,0,0,0,1512.68,1512.68,0,0,-9.45827,0,0,0,0,0,0,483.015, +Clean water 60degC 3000Sm3,21.08.1997 16:48:00,2389.71,0.000289214,2389.71,4.23478e-13,1.772e-13,1.21025e-07,682979,5.6433e+12,1.43395e+06,0.129732,1.43395e+06,2.5411e-13,2999.86,2999.86,0,0,1.79602e+06,1.79602e+06,0,0,3.90519e+11,0,0,0,0,1471.74,1471.74,0,0,-9.5387,0,0,0,0,0,0,490.577, +Clean water 60degC 3000Sm3,31.08.1997 16:48:00,2389.55,0.000291232,2389.55,4.2345e-13,1.772e-13,1.21878e-07,687791,5.6433e+12,1.45785e+06,0.132644,1.45785e+06,2.58345e-13,2999.86,2999.86,0,0,1.82601e+06,1.82601e+06,0,0,3.97087e+11,0,0,0,0,1482.64,1482.64,0,0,-9.50672,0,0,0,0,0,0,498.12, +Clean water 60degC 3000Sm3,10.09.1997 16:48:00,2389.42,0.000293189,2389.42,4.23427e-13,1.772e-13,1.22703e-07,692451,5.6433e+12,1.48174e+06,0.135576,1.48174e+06,2.62579e-13,2999.86,2999.86,0,0,1.85601e+06,1.85601e+06,0,0,4.03656e+11,0,0,0,0,1489.84,1489.84,0,0,-9.50858,0,0,0,0,0,0,505.642, +Clean water 60degC 3000Sm3,20.09.1997 16:48:00,2389.29,0.000295872,2389.29,4.23403e-13,1.772e-13,1.23833e-07,698826,5.6433e+12,1.50564e+06,0.138535,1.50564e+06,2.66813e-13,2999.86,2999.86,0,0,1.88601e+06,1.88601e+06,0,0,4.10223e+11,0,0,0,0,1490.6,1490.6,0,0,-9.56137,0,0,0,0,0,0,513.144, +Clean water 60degC 3000Sm3,30.09.1997 16:48:00,2389.12,0.000298244,2389.12,4.23373e-13,1.772e-13,1.24835e-07,704479,5.6433e+12,1.52953e+06,0.141517,1.52953e+06,2.71047e-13,2999.86,2999.86,0,0,1.91601e+06,1.91601e+06,0,0,4.16791e+11,0,0,0,0,1490.71,1490.71,0,0,-9.54057,0,0,0,0,0,0,520.626, +Clean water 60degC 3000Sm3,10.10.1997 16:48:00,2388.97,0.000301504,2388.97,4.23347e-13,1.772e-13,1.26207e-07,712223,5.6433e+12,1.55342e+06,0.144533,1.55342e+06,2.7528e-13,2999.86,2999.86,0,0,1.94601e+06,1.94601e+06,0,0,4.23358e+11,0,0,0,0,1490.74,1490.74,0,0,-9.6123,0,0,0,0,0,0,528.088, +Clean water 60degC 3000Sm3,20.10.1997 16:48:00,2388.76,0.000304276,2388.76,4.2331e-13,1.772e-13,1.27378e-07,718832,5.6433e+12,1.57731e+06,0.147575,1.57731e+06,2.79513e-13,2999.86,2999.86,0,0,1.97601e+06,1.97601e+06,0,0,4.29926e+11,0,0,0,0,1490.67,1490.67,0,0,-9.57938,0,0,0,0,0,0,535.53, +Clean water 60degC 3000Sm3,30.10.1997 16:48:00,2388.59,0.000306646,2388.59,4.23279e-13,1.772e-13,1.2838e-07,724485,5.6433e+12,1.60119e+06,0.150642,1.60119e+06,2.83746e-13,2999.86,2999.86,0,0,2.006e+06,2.006e+06,0,0,4.36495e+11,0,0,0,0,1490.64,1490.64,0,0,-9.55144,0,0,0,0,0,0,542.953, +Clean water 60degC 3000Sm3,09.11.1997 16:48:00,2388.44,0.000309779,2388.44,4.23254e-13,1.772e-13,1.29699e-07,731932,5.6433e+12,1.62508e+06,0.153739,1.62508e+06,2.87979e-13,2999.86,2999.86,0,0,2.036e+06,2.036e+06,0,0,4.43063e+11,0,0,0,0,1490.68,1490.68,0,0,-9.62317,0,0,0,0,0,0,550.355, +Clean water 60degC 3000Sm3,19.11.1997 16:48:00,2388.24,0.000312334,2388.24,4.23218e-13,1.772e-13,1.3078e-07,738029,5.6433e+12,1.64896e+06,0.156863,1.64896e+06,2.92211e-13,2999.86,2999.86,0,0,2.066e+06,2.066e+06,0,0,4.49632e+11,0,0,0,0,1490.63,1490.63,0,0,-9.59181,0,0,0,0,0,0,557.737, +Clean water 60degC 3000Sm3,29.11.1997 16:48:00,2388.08,0.000315456,2388.08,4.23189e-13,1.772e-13,1.32096e-07,745459,5.6433e+12,1.67284e+06,0.160017,1.67284e+06,2.96443e-13,2999.86,2999.86,0,0,2.096e+06,2.096e+06,0,0,4.56204e+11,0,0,0,0,1480.8,1480.8,0,0,-9.65174,0,0,0,0,0,0,565.1, +Clean water 60degC 3000Sm3,09.12.1997 16:48:00,2387.88,0.000317942,2387.88,4.23153e-13,1.772e-13,1.33148e-07,751396,5.6433e+12,1.69672e+06,0.163197,1.69672e+06,3.00674e-13,2999.86,2999.86,0,0,2.126e+06,2.126e+06,0,0,4.62783e+11,0,0,0,0,1481.24,1481.24,0,0,-9.60858,0,0,0,0,0,0,572.443, +Clean water 60degC 3000Sm3,19.12.1997 16:48:00,2387.72,0.000320471,2387.72,4.23126e-13,1.772e-13,1.34216e-07,757422,5.6433e+12,1.72059e+06,0.166401,1.72059e+06,3.04906e-13,2999.86,2999.86,0,0,2.156e+06,2.156e+06,0,0,4.69354e+11,0,0,0,0,1478.07,1478.07,0,0,-9.62721,0,0,0,0,0,0,579.766, +Clean water 60degC 3000Sm3,29.12.1997 16:48:00,2387.56,0.000322887,2387.56,4.23097e-13,1.772e-13,1.35237e-07,763184,5.6433e+12,1.74447e+06,0.16963,1.74447e+06,3.09137e-13,2999.86,2999.86,0,0,2.186e+06,2.186e+06,0,0,4.75941e+11,0,0,0,0,1463.55,1463.55,0,0,-9.61976,0,0,0,0,0,0,587.07, +Clean water 60degC 3000Sm3,08.01.1998 16:48:00,2387.42,0.000325203,2387.42,4.23072e-13,1.772e-13,1.36216e-07,768705,5.6433e+12,1.76834e+06,0.172882,1.76834e+06,3.13367e-13,2999.86,2999.86,0,0,2.21599e+06,2.21599e+06,0,0,4.82509e+11,0,0,0,0,1468.96,1468.96,0,0,-9.63497,0,0,0,0,0,0,594.354, +Clean water 60degC 3000Sm3,18.01.1998 16:48:00,2387.28,0.000327793,2387.28,4.23048e-13,1.772e-13,1.37308e-07,774871,5.6433e+12,1.79222e+06,0.17616,1.79222e+06,3.17598e-13,2999.86,2999.86,0,0,2.24599e+06,2.24599e+06,0,0,4.89091e+11,0,0,0,0,1453.65,1453.65,0,0,-9.67845,0,0,0,0,0,0,601.618, +Clean water 60degC 3000Sm3,28.01.1998 16:48:00,2387.12,0.000330101,2387.12,4.23019e-13,1.772e-13,1.38284e-07,780380,5.6433e+12,1.81609e+06,0.179461,1.81609e+06,3.21828e-13,2999.86,2999.86,0,0,2.27599e+06,2.27599e+06,0,0,4.95659e+11,0,0,0,0,1463.82,1463.82,0,0,-9.67224,0,0,0,0,0,0,608.864, +Clean water 60degC 3000Sm3,07.02.1998 16:48:00,2386.98,0.000332762,2386.98,4.22994e-13,1.772e-13,1.39407e-07,786715,5.6433e+12,1.83996e+06,0.182789,1.83996e+06,3.26058e-13,2999.86,2999.86,0,0,2.30599e+06,2.30599e+06,0,0,5.0222e+11,0,0,0,0,1468.22,1468.22,0,0,-9.7272,0,0,0,0,0,0,616.09, +Clean water 60degC 3000Sm3,17.02.1998 16:48:00,2386.81,0.000336257,2386.81,4.22965e-13,1.772e-13,1.40881e-07,795036,5.6433e+12,1.86383e+06,0.186151,1.86383e+06,3.30288e-13,2999.86,2999.86,0,0,2.33599e+06,2.33599e+06,0,0,5.08786e+11,0,0,0,0,1462.1,1462.1,0,0,-9.8185,0,0,0,0,0,0,623.296, +Clean water 60degC 3000Sm3,27.02.1998 16:48:00,2386.6,0.000338794,2386.6,4.22926e-13,1.772e-13,1.41957e-07,801105,5.6433e+12,1.88769e+06,0.189539,1.88769e+06,3.34517e-13,2999.86,2999.86,0,0,2.36599e+06,2.36599e+06,0,0,5.15362e+11,0,0,0,0,1512.36,1512.36,0,0,-9.76323,0,0,0,0,0,0,630.483, +Clean water 60degC 3000Sm3,09.03.1998 16:48:00,2386.45,0.00034266,2386.45,4.229e-13,1.772e-13,1.43586e-07,810299,5.6433e+12,1.91156e+06,0.192966,1.91156e+06,3.38746e-13,2999.86,2999.86,0,0,2.39599e+06,2.39599e+06,0,0,5.2189e+11,0,0,0,0,1460.19,1460.19,0,0,-9.90918,0,0,0,0,0,0,637.651, +Clean water 60degC 3000Sm3,19.03.1998 16:48:00,2386.2,0.000346608,2386.2,4.22855e-13,1.772e-13,1.45256e-07,819721,5.6433e+12,1.93542e+06,0.196432,1.93542e+06,3.42974e-13,2999.86,2999.86,0,0,2.42598e+06,2.42598e+06,0,0,5.28428e+11,0,0,0,0,1458.88,1458.88,0,0,-9.94024,0,0,0,0,0,0,644.8, +Clean water 60degC 3000Sm3,29.03.1998 16:48:00,2385.95,0.000350286,2385.94,4.22811e-13,1.772e-13,1.46812e-07,828507,5.6433e+12,1.95928e+06,0.199935,1.95928e+06,3.47203e-13,2999.86,2999.86,0,0,2.45598e+06,2.45598e+06,0,0,5.34957e+11,0,0,0,0,1466.63,1466.63,0,0,-9.94955,0,0,0,0,0,0,651.929, +Clean water 60degC 3000Sm3,08.04.1998 16:48:00,2385.71,0.00035492,2385.71,4.2277e-13,1.772e-13,1.48769e-07,839548,5.6433e+12,1.98314e+06,0.203484,1.98313e+06,3.5143e-13,2999.86,2999.86,0,0,2.48598e+06,2.48598e+06,0,0,5.41471e+11,0,0,0,0,1472.66,1472.66,0,0,-10.0694,0,0,0,0,0,0,659.039, +Clean water 60degC 3000Sm3,18.04.1998 16:48:00,2385.41,0.000359348,2385.41,4.22716e-13,1.772e-13,1.50644e-07,850129,5.6433e+12,2.00699e+06,0.207078,2.00699e+06,3.55657e-13,2999.86,2999.86,0,0,2.51598e+06,2.51598e+06,0,0,5.47978e+11,0,0,0,0,1502.52,1502.52,0,0,-10.0834,0,0,0,0,0,0,666.129, +Clean water 60degC 3000Sm3,28.04.1998 16:48:00,2385.12,0.000364858,2385.12,4.22665e-13,1.772e-13,1.52973e-07,863270,5.6433e+12,2.03084e+06,0.210726,2.03084e+06,3.59884e-13,2999.86,2999.86,0,0,2.54598e+06,2.54598e+06,0,0,5.54466e+11,0,0,0,0,1464.98,1464.98,0,0,-10.211,0,0,0,0,0,0,673.2, +Clean water 60degC 3000Sm3,08.05.1998 16:48:00,2384.76,0.000369664,2384.76,4.22601e-13,1.772e-13,1.55011e-07,874774,5.6433e+12,2.05469e+06,0.214423,2.05469e+06,3.6411e-13,2999.86,2999.86,0,0,2.57598e+06,2.57598e+06,0,0,5.60972e+11,0,0,0,0,1476.41,1476.41,0,0,-10.1831,0,0,0,0,0,0,680.252, +Clean water 60degC 3000Sm3,18.05.1998 16:48:00,2384.45,0.000371745,2384.45,4.22547e-13,1.772e-13,1.55904e-07,879812,5.6433e+12,2.07853e+06,0.21814,2.07853e+06,3.68336e-13,2999.86,2999.86,0,0,2.60598e+06,2.60598e+06,0,0,5.6758e+11,0,0,0,0,1457.78,1457.78,0,0,-9.99024,0,0,0,0,0,0,687.284, +Clean water 60degC 3000Sm3,28.05.1998 16:48:00,2384.35,0.000373885,2384.35,4.22528e-13,1.772e-13,1.56808e-07,884915,5.6433e+12,2.10238e+06,0.221879,2.10238e+06,3.72561e-13,2999.86,2999.86,0,0,2.63597e+06,2.63597e+06,0,0,5.7417e+11,0,0,0,0,1431.34,1431.34,0,0,-10.0492,0,0,0,0,0,0,694.298, +Clean water 60degC 3000Sm3,07.06.1998 16:48:00,2384.23,0.000375892,2384.23,4.22507e-13,1.772e-13,1.57658e-07,889711,5.6433e+12,2.12622e+06,0.225638,2.12622e+06,3.76786e-13,2999.86,2999.86,0,0,2.66597e+06,2.66597e+06,0,0,5.80773e+11,0,0,0,0,1440.48,1440.48,0,0,-10.0822,0,0,0,0,0,0,701.293, +Clean water 60degC 3000Sm3,17.06.1998 16:48:00,2384.12,0.000378735,2384.12,4.22487e-13,1.772e-13,1.58857e-07,896480,5.6433e+12,2.15006e+06,0.229425,2.15006e+06,3.81011e-13,2999.86,2999.86,0,0,2.69597e+06,2.69597e+06,0,0,5.87375e+11,0,0,0,0,1442.21,1442.21,0,0,-10.2011,0,0,0,0,0,0,708.269, +Clean water 60degC 3000Sm3,27.06.1998 16:48:00,2383.95,0.000381369,2383.95,4.22458e-13,1.772e-13,1.59973e-07,902778,5.6433e+12,2.1739e+06,0.233239,2.1739e+06,3.85235e-13,2999.86,2999.86,0,0,2.72597e+06,2.72597e+06,0,0,5.93978e+11,0,0,0,0,1442.32,1442.32,0,0,-10.2356,0,0,0,0,0,0,715.227, +Clean water 60degC 3000Sm3,07.07.1998 16:48:00,2383.8,0.000384067,2383.8,4.22431e-13,1.772e-13,1.61115e-07,909222,5.6433e+12,2.19774e+06,0.23708,2.19774e+06,3.8946e-13,2999.86,2999.86,0,0,2.75597e+06,2.75597e+06,0,0,6.00574e+11,0,0,0,0,1435,1435,0,0,-10.2918,0,0,0,0,0,0,722.166, +Clean water 60degC 3000Sm3,17.07.1998 16:48:00,2383.65,0.000386684,2383.65,4.22404e-13,1.772e-13,1.62224e-07,915477,5.6433e+12,2.22157e+06,0.240947,2.22157e+06,3.93684e-13,2999.86,2999.86,0,0,2.78597e+06,2.78597e+06,0,0,6.07153e+11,0,0,0,0,1438.31,1438.31,0,0,-10.334,0,0,0,0,0,0,729.087, +Clean water 60degC 3000Sm3,27.07.1998 16:48:00,2383.5,0.000390047,2383.5,4.22377e-13,1.772e-13,1.63645e-07,923497,5.6433e+12,2.24541e+06,0.244847,2.24541e+06,3.97907e-13,2999.86,2999.86,0,0,2.81597e+06,2.81597e+06,0,0,6.13726e+11,0,0,0,0,1469.67,1469.67,0,0,-10.4474,0,0,0,0,0,0,735.989, +Clean water 60degC 3000Sm3,06.08.1998 16:48:00,2383.3,0.000393703,2383.3,4.22342e-13,1.772e-13,1.65193e-07,932231,5.6433e+12,2.26924e+06,0.248784,2.26924e+06,4.02131e-13,2999.86,2999.86,0,0,2.84596e+06,2.84596e+06,0,0,6.20288e+11,0,0,0,0,1436.07,1436.07,0,0,-10.5312,0,0,0,0,0,0,742.872, +Clean water 60degC 3000Sm3,16.08.1998 16:48:00,2383.09,0.000397697,2383.08,4.22304e-13,1.772e-13,1.66883e-07,941772,5.6433e+12,2.29307e+06,0.252761,2.29307e+06,4.06354e-13,2999.86,2999.86,0,0,2.87596e+06,2.87596e+06,0,0,6.26861e+11,0,0,0,0,1443.28,1443.28,0,0,-10.6231,0,0,0,0,0,0,749.737, +Clean water 60degC 3000Sm3,26.08.1998 16:48:00,2382.84,0.000401063,2382.84,4.22261e-13,1.772e-13,1.68313e-07,949841,5.6433e+12,2.3169e+06,0.256772,2.3169e+06,4.10577e-13,2999.86,2999.86,0,0,2.90596e+06,2.90596e+06,0,0,6.33434e+11,0,0,0,0,1444.78,1444.78,0,0,-10.6262,0,0,0,0,0,0,756.584, +Clean water 60degC 3000Sm3,05.09.1998 16:48:00,2382.65,0.000405173,2382.65,4.22228e-13,1.772e-13,1.70051e-07,959650,5.6433e+12,2.34073e+06,0.260823,2.34073e+06,4.14799e-13,2999.86,2999.86,0,0,2.93596e+06,2.93596e+06,0,0,6.39993e+11,0,0,0,0,1457.56,1457.56,0,0,-10.7591,0,0,0,0,0,0,763.412, +Clean water 60degC 3000Sm3,15.09.1998 16:48:00,2382.41,0.000410116,2382.41,4.22185e-13,1.772e-13,1.72143e-07,971455,5.6433e+12,2.36455e+06,0.264924,2.36455e+06,4.19021e-13,2999.86,2999.86,0,0,2.96596e+06,2.96596e+06,0,0,6.46533e+11,0,0,0,0,1441.62,1441.62,0,0,-10.8989,0,0,0,0,0,0,770.221, +Clean water 60degC 3000Sm3,25.09.1998 16:48:00,2382.11,0.000415064,2382.11,4.22132e-13,1.772e-13,1.74242e-07,983300,5.6433e+12,2.38837e+06,0.269075,2.38837e+06,4.23242e-13,2999.86,2999.86,0,0,2.99596e+06,2.99596e+06,0,0,6.53087e+11,0,0,0,0,1445.92,1445.92,0,0,-10.9691,0,0,0,0,0,0,777.012, +Clean water 60degC 3000Sm3,05.10.1998 16:48:00,2381.81,0.000420149,2381.81,4.22079e-13,1.772e-13,1.76399e-07,995471,5.6433e+12,2.41219e+06,0.273277,2.41219e+06,4.27463e-13,2999.86,2999.86,0,0,3.02596e+06,3.02596e+06,0,0,6.59647e+11,0,0,0,0,1443.88,1443.88,0,0,-11.0511,0,0,0,0,0,0,783.784, +Clean water 60degC 3000Sm3,15.10.1998 16:48:00,2381.52,0.000424866,2381.52,4.22026e-13,1.772e-13,1.78402e-07,1.00677e+06,5.6433e+12,2.43601e+06,0.277525,2.436e+06,4.31683e-13,2999.86,2999.86,0,0,3.05595e+06,3.05595e+06,0,0,6.66214e+11,0,0,0,0,1441.33,1441.33,0,0,-11.1026,0,0,0,0,0,0,790.538, +Clean water 60degC 3000Sm3,25.10.1998 16:48:00,2381.24,0.000429531,2381.24,4.21978e-13,1.772e-13,1.80381e-07,1.01794e+06,5.6433e+12,2.45982e+06,0.281821,2.45982e+06,4.35903e-13,2999.86,2999.86,0,0,3.08595e+06,3.08595e+06,0,0,6.72786e+11,0,0,0,0,1438.86,1438.86,0,0,-11.1802,0,0,0,0,0,0,797.274, +Clean water 60degC 3000Sm3,04.11.1998 16:48:00,2380.97,0.000433381,2380.97,4.2193e-13,1.772e-13,1.82018e-07,1.02718e+06,5.6433e+12,2.48363e+06,0.286154,2.48363e+06,4.40122e-13,2999.86,2999.86,0,0,3.11595e+06,3.11595e+06,0,0,6.79379e+11,0,0,0,0,1450.17,1450.17,0,0,-11.192,0,0,0,0,0,0,803.991, +Clean water 60degC 3000Sm3,14.11.1998 16:48:00,2380.76,0.000438142,2380.76,4.21893e-13,1.772e-13,1.84034e-07,1.03856e+06,5.6433e+12,2.50743e+06,0.290536,2.50743e+06,4.44341e-13,2999.86,2999.86,0,0,3.14595e+06,3.14595e+06,0,0,6.8593e+11,0,0,0,0,1425.87,1425.87,0,0,-11.3569,0,0,0,0,0,0,810.69, +Clean water 60degC 3000Sm3,24.11.1998 16:48:00,2380.48,0.000443254,2380.48,4.21842e-13,1.772e-13,1.86204e-07,1.0508e+06,5.6433e+12,2.53124e+06,0.294968,2.53124e+06,4.48559e-13,2999.85,2999.85,0,0,3.17595e+06,3.17595e+06,0,0,6.92494e+11,0,0,0,0,1430.02,1430.02,0,0,-11.4579,0,0,0,0,0,0,817.37, +Clean water 60degC 3000Sm3,04.12.1998 16:48:00,2380.18,0.00044806,2380.18,4.21789e-13,1.772e-13,1.88247e-07,1.06233e+06,5.6433e+12,2.55504e+06,0.299449,2.55504e+06,4.52777e-13,2999.85,2999.85,0,0,3.20595e+06,3.20595e+06,0,0,6.99068e+11,0,0,0,0,1430.88,1430.88,0,0,-11.5088,0,0,0,0,0,0,824.033, +Clean water 60degC 3000Sm3,14.12.1998 16:48:00,2379.9,0.000452678,2379.9,4.2174e-13,1.772e-13,1.90209e-07,1.0734e+06,5.6433e+12,2.57884e+06,0.303976,2.57884e+06,4.56995e-13,2999.85,2999.85,0,0,3.23594e+06,3.23594e+06,0,0,7.05648e+11,0,0,0,0,1428.87,1428.87,0,0,-11.5818,0,0,0,0,0,0,830.677, +Clean water 60degC 3000Sm3,24.12.1998 16:48:00,2379.64,0.000457195,2379.64,4.21694e-13,1.772e-13,1.92128e-07,1.08423e+06,5.6433e+12,2.60264e+06,0.308548,2.60264e+06,4.61212e-13,2999.85,2999.85,0,0,3.26594e+06,3.26594e+06,0,0,7.12235e+11,0,0,0,0,1426.4,1426.4,0,0,-11.6619,0,0,0,0,0,0,837.303, +Clean water 60degC 3000Sm3,03.01.1999 16:48:00,2379.39,0.000461454,2379.39,4.21649e-13,1.772e-13,1.93938e-07,1.09445e+06,5.6433e+12,2.62643e+06,0.313162,2.62643e+06,4.65428e-13,2999.85,2999.85,0,0,3.29594e+06,3.29594e+06,0,0,7.18826e+11,0,0,0,0,1424.49,1424.49,0,0,-11.7296,0,0,0,0,0,0,843.912, +Clean water 60degC 3000Sm3,13.01.1999 16:48:00,2379.16,0.000465989,2379.16,4.21608e-13,1.772e-13,1.95863e-07,1.10531e+06,5.6433e+12,2.65022e+06,0.317822,2.65022e+06,4.69644e-13,2999.85,2999.85,0,0,3.32594e+06,3.32594e+06,0,0,7.25422e+11,0,0,0,0,1422.46,1422.46,0,0,-11.8448,0,0,0,0,0,0,850.502, +Clean water 60degC 3000Sm3,23.01.1999 16:48:00,2378.91,0.000469846,2378.91,4.21564e-13,1.772e-13,1.97505e-07,1.11458e+06,5.6433e+12,2.67401e+06,0.32252,2.67401e+06,4.7386e-13,2999.85,2999.85,0,0,3.35594e+06,3.35594e+06,0,0,7.32025e+11,0,0,0,0,1420.18,1420.18,0,0,-11.8821,0,0,0,0,0,0,857.074, +Clean water 60degC 3000Sm3,02.02.1999 16:48:00,2378.71,0.000473784,2378.71,4.21528e-13,1.772e-13,1.99177e-07,1.12402e+06,5.6433e+12,2.6978e+06,0.327258,2.6978e+06,4.78075e-13,2999.85,2999.85,0,0,3.38594e+06,3.38594e+06,0,0,7.38633e+11,0,0,0,0,1418.19,1418.19,0,0,-11.9824,0,0,0,0,0,0,863.629, +Clean water 60degC 3000Sm3,12.02.1999 16:48:00,2378.49,0.000478,2378.49,4.2149e-13,1.772e-13,2.00968e-07,1.13412e+06,5.6433e+12,2.72158e+06,0.332038,2.72158e+06,4.8229e-13,2999.85,2999.85,0,0,3.41594e+06,3.41594e+06,0,0,7.45247e+11,0,0,0,0,1415.67,1415.67,0,0,-12.088,0,0,0,0,0,0,870.166, +Clean water 60degC 3000Sm3,22.02.1999 16:48:00,2378.27,0.000481492,2378.27,4.21451e-13,1.772e-13,2.02455e-07,1.14251e+06,5.6433e+12,2.74537e+06,0.336853,2.74537e+06,4.86505e-13,2999.85,2999.85,0,0,3.44593e+06,3.44593e+06,0,0,7.51866e+11,0,0,0,0,1414,1414,0,0,-12.1318,0,0,0,0,0,0,876.686, +Clean water 60degC 3000Sm3,04.03.1999 16:48:00,2378.11,0.000484603,2378.11,4.21422e-13,1.772e-13,2.03777e-07,1.14997e+06,5.6433e+12,2.76915e+06,0.341699,2.76915e+06,4.90719e-13,2999.85,2999.85,0,0,3.47593e+06,3.47593e+06,0,0,7.58488e+11,0,0,0,0,1412.74,1412.74,0,0,-12.2094,0,0,0,0,0,0,883.188, +Clean water 60degC 3000Sm3,14.03.1999 16:48:00,2377.97,0.00048869,2377.97,4.21397e-13,1.772e-13,2.05508e-07,1.15974e+06,5.6433e+12,2.79293e+06,0.346586,2.79293e+06,4.94933e-13,2999.85,2999.85,0,0,3.50593e+06,3.50593e+06,0,0,7.65098e+11,0,0,0,0,1398.2,1398.2,0,0,-12.3976,0,0,0,0,0,0,889.672, +Clean water 60degC 3000Sm3,24.03.1999 16:48:00,2377.76,0.000491868,2377.76,4.2136e-13,1.772e-13,2.06862e-07,1.16739e+06,5.6433e+12,2.8167e+06,0.351505,2.8167e+06,4.99146e-13,2999.85,2999.85,0,0,3.53593e+06,3.53593e+06,0,0,7.71731e+11,0,0,0,0,1400.63,1400.63,0,0,-12.4265,0,0,0,0,0,0,896.14, +Clean water 60degC 3000Sm3,03.04.1999 16:48:00,2377.62,0.000495363,2377.62,4.21335e-13,1.772e-13,2.08344e-07,1.17575e+06,5.6433e+12,2.84048e+06,0.356458,2.84048e+06,5.0336e-13,2999.85,2999.85,0,0,3.56593e+06,3.56593e+06,0,0,7.7835e+11,0,0,0,0,1404.43,1404.43,0,0,-12.5659,0,0,0,0,0,0,902.59, +Clean water 60degC 3000Sm3,13.04.1999 16:48:00,2377.45,0.000499241,2377.45,4.21306e-13,1.772e-13,2.0999e-07,1.18504e+06,5.6433e+12,2.86425e+06,0.361451,2.86425e+06,5.07573e-13,2999.85,2999.85,0,0,3.59593e+06,3.59593e+06,0,0,7.84977e+11,0,0,0,0,1405.68,1405.68,0,0,-12.7072,0,0,0,0,0,0,909.022, +Clean water 60degC 3000Sm3,23.04.1999 16:48:00,2377.27,0.000502369,2377.27,4.21273e-13,1.772e-13,2.11322e-07,1.19255e+06,5.6433e+12,2.88803e+06,0.366474,2.88803e+06,5.11786e-13,2999.85,2999.85,0,0,3.62592e+06,3.62592e+06,0,0,7.91604e+11,0,0,0,0,1405.15,1405.15,0,0,-12.7581,0,0,0,0,0,0,915.438, +Clean water 60degC 3000Sm3,03.05.1999 16:48:00,2377.13,0.000506291,2377.13,4.21249e-13,1.772e-13,2.12984e-07,1.20193e+06,5.6433e+12,2.9118e+06,0.371537,2.9118e+06,5.15998e-13,2999.85,2999.85,0,0,3.65592e+06,3.65592e+06,0,0,7.98236e+11,0,0,0,0,1403.51,1403.51,0,0,-12.9345,0,0,0,0,0,0,921.836, +Clean water 60degC 3000Sm3,13.05.1999 16:48:00,2376.95,0.000509662,2376.95,4.21217e-13,1.772e-13,2.14419e-07,1.21003e+06,5.6433e+12,2.93557e+06,0.376634,2.93557e+06,5.2021e-13,2999.85,2999.85,0,0,3.68592e+06,3.68592e+06,0,0,8.04871e+11,0,0,0,0,1402.24,1402.24,0,0,-13.0122,0,0,0,0,0,0,928.217, +Clean water 60degC 3000Sm3,23.05.1999 16:48:00,2376.8,0.000511703,2376.8,4.2119e-13,1.772e-13,2.15291e-07,1.21495e+06,5.6433e+12,2.95934e+06,0.381751,2.95934e+06,5.24422e-13,2999.85,2999.85,0,0,3.71592e+06,3.71592e+06,0,0,8.1151e+11,0,0,0,0,1400.82,1400.82,0,0,-13.0143,0,0,0,0,0,0,934.581, +Clean water 60degC 3000Sm3,02.06.1999 16:48:00,2376.74,0.000515385,2376.74,4.2118e-13,1.772e-13,2.16845e-07,1.22372e+06,5.6433e+12,2.9831e+06,0.386905,2.9831e+06,5.28634e-13,2999.85,2999.85,0,0,3.74592e+06,3.74592e+06,0,0,8.18148e+11,0,0,0,0,1401.2,1401.2,0,0,-13.2749,0,0,0,0,0,0,940.929, +Clean water 60degC 3000Sm3,12.06.1999 16:48:00,2376.59,0.00051882,2376.59,4.21153e-13,1.772e-13,2.18305e-07,1.23196e+06,5.6433e+12,3.00687e+06,0.392093,3.00687e+06,5.32846e-13,2999.85,2999.85,0,0,3.77592e+06,3.77592e+06,0,0,8.2479e+11,0,0,0,0,1399.71,1399.71,0,0,-13.3873,0,0,0,0,0,0,947.259, +Clean water 60degC 3000Sm3,22.06.1999 16:48:00,2376.42,0.000522212,2376.42,4.21124e-13,1.772e-13,2.19747e-07,1.2401e+06,5.6433e+12,3.03063e+06,0.397315,3.03063e+06,5.37057e-13,2999.85,2999.85,0,0,3.80592e+06,3.80592e+06,0,0,8.31437e+11,0,0,0,0,1397.92,1397.92,0,0,-13.4888,0,0,0,0,0,0,953.572, +Clean water 60degC 3000Sm3,02.07.1999 16:48:00,2376.29,0.00052578,2376.29,4.211e-13,1.772e-13,2.21261e-07,1.24864e+06,5.6433e+12,3.0544e+06,0.402573,3.0544e+06,5.41268e-13,2999.85,2999.85,0,0,3.83591e+06,3.83591e+06,0,0,8.38087e+11,0,0,0,0,1396.8,1396.8,0,0,-13.6422,0,0,0,0,0,0,959.869, +Clean water 60degC 3000Sm3,12.07.1999 16:48:00,2376.15,0.000528763,2376.15,4.21075e-13,1.772e-13,2.22529e-07,1.2558e+06,5.6433e+12,3.07816e+06,0.407861,3.07816e+06,5.45478e-13,2999.85,2999.85,0,0,3.86591e+06,3.86591e+06,0,0,8.4474e+11,0,0,0,0,1395.74,1395.74,0,0,-13.736,0,0,0,0,0,0,966.149, +Clean water 60degC 3000Sm3,22.07.1999 16:48:00,2376.04,0.00053223,2376.04,4.21056e-13,1.772e-13,2.23999e-07,1.26409e+06,5.6433e+12,3.10192e+06,0.413183,3.10192e+06,5.49689e-13,2999.85,2999.85,0,0,3.89591e+06,3.89591e+06,0,0,8.51396e+11,0,0,0,0,1394.56,1394.56,0,0,-13.9078,0,0,0,0,0,0,972.412, +Clean water 60degC 3000Sm3,01.08.1999 16:48:00,2375.9,0.000535384,2375.9,4.21032e-13,1.772e-13,2.25339e-07,1.27166e+06,5.6433e+12,3.12568e+06,0.418537,3.12568e+06,5.53899e-13,2999.85,2999.85,0,0,3.92591e+06,3.92591e+06,0,0,8.58054e+11,0,0,0,0,1393.69,1393.69,0,0,-14.022,0,0,0,0,0,0,978.659, +Clean water 60degC 3000Sm3,11.08.1999 16:48:00,2375.79,0.000538744,2375.79,4.21011e-13,1.772e-13,2.26764e-07,1.2797e+06,5.6433e+12,3.14943e+06,0.423924,3.14943e+06,5.58109e-13,2999.85,2999.85,0,0,3.95591e+06,3.95591e+06,0,0,8.64716e+11,0,0,0,0,1392.57,1392.57,0,0,-14.1786,0,0,0,0,0,0,984.888, +Clean water 60degC 3000Sm3,21.08.1999 16:48:00,2375.66,0.000541843,2375.66,4.20989e-13,1.772e-13,2.28081e-07,1.28713e+06,5.6433e+12,3.17319e+06,0.429343,3.17319e+06,5.62319e-13,2999.85,2999.85,0,0,3.98591e+06,3.98591e+06,0,0,8.7138e+11,0,0,0,0,1391.59,1391.59,0,0,-14.299,0,0,0,0,0,0,991.102, +Clean water 60degC 3000Sm3,31.08.1999 16:48:00,2375.55,0.00054489,2375.55,4.20969e-13,1.772e-13,2.29374e-07,1.29443e+06,5.6433e+12,3.19695e+06,0.434791,3.19695e+06,5.66529e-13,2999.85,2999.85,0,0,4.0159e+06,4.0159e+06,0,0,8.78047e+11,0,0,0,0,1390.62,1390.62,0,0,-14.4338,0,0,0,0,0,0,997.299, +Clean water 60degC 3000Sm3,10.09.1999 16:48:00,2375.45,0.000546968,2375.45,4.20951e-13,1.772e-13,2.30259e-07,1.29942e+06,5.6433e+12,3.2207e+06,0.440261,3.2207e+06,5.70739e-13,2999.85,2999.85,0,0,4.0459e+06,4.0459e+06,0,0,8.84717e+11,0,0,0,0,1389.58,1389.58,0,0,-14.4975,0,0,0,0,0,0,1003.48, +Clean water 60degC 3000Sm3,20.09.1999 16:48:00,2375.41,0.000549039,2375.41,4.20944e-13,1.772e-13,2.31135e-07,1.30436e+06,5.6433e+12,3.24445e+06,0.445752,3.24445e+06,5.74948e-13,2999.85,2999.85,0,0,4.0759e+06,4.0759e+06,0,0,8.91386e+11,0,0,0,0,1389.84,1389.84,0,0,-14.6279,0,0,0,0,0,0,1009.64, +Clean water 60degC 3000Sm3,30.09.1999 16:48:00,2375.39,0.000552561,2375.39,4.20941e-13,1.772e-13,2.32619e-07,1.31274e+06,5.6433e+12,3.26821e+06,0.451277,3.26821e+06,5.79157e-13,2999.85,2999.85,0,0,4.1059e+06,4.1059e+06,0,0,8.98055e+11,0,0,0,0,1389.98,1389.98,0,0,-14.8996,0,0,0,0,0,0,1015.79, +Clean water 60degC 3000Sm3,10.10.1999 16:48:00,2375.28,0.00055587,2375.28,4.2092e-13,1.772e-13,2.34023e-07,1.32066e+06,5.6433e+12,3.29196e+06,0.456836,3.29196e+06,5.83367e-13,2999.85,2999.85,0,0,4.1359e+06,4.1359e+06,0,0,9.04727e+11,0,0,0,0,1388.83,1388.83,0,0,-14.9493,0,0,0,0,0,0,1021.92, +Clean water 60degC 3000Sm3,20.10.1999 16:48:00,2375.25,0.000562763,2375.25,4.20916e-13,1.772e-13,2.36928e-07,1.33705e+06,5.6433e+12,3.31571e+06,0.462463,3.31571e+06,5.87576e-13,2999.85,2999.85,0,0,4.1659e+06,4.1659e+06,0,0,9.11399e+11,0,0,0,0,1388.97,1388.97,0,0,-15.1164,0,0,0,0,0,0,1028.04, +Clean water 60degC 3000Sm3,30.10.1999 16:48:00,2375.23,0.000585511,2375.23,4.20912e-13,1.772e-13,2.46507e-07,1.39111e+06,5.6433e+12,3.33947e+06,0.468318,3.33947e+06,5.91785e-13,2999.85,2999.85,0,0,4.19589e+06,4.19589e+06,0,0,9.1807e+11,0,0,0,0,1389.2,1389.2,0,0,-15.4071,0,0,0,0,0,0,1034.14, +Clean water 60degC 3000Sm3,09.11.1999 16:48:00,2375.11,0.000667083,2375.11,4.2089e-13,1.772e-13,2.80865e-07,1.585e+06,5.6433e+12,3.36322e+06,0.474989,3.36322e+06,5.95994e-13,2999.85,2999.85,0,0,4.22589e+06,4.22589e+06,0,0,9.24745e+11,0,0,0,0,1387.91,1387.91,0,0,-15.4729,0,0,0,0,0,0,1040.22, +Clean water 60degC 3000Sm3,19.11.1999 16:48:00,2375.08,0.00099179,2375.08,4.20885e-13,1.772e-13,4.17582e-07,2.35654e+06,5.6433e+12,3.38697e+06,0.484907,3.38697e+06,6.00203e-13,2999.85,2999.85,0,0,4.25589e+06,4.25589e+06,0,0,9.31419e+11,0,0,0,0,1388.06,1388.06,0,0,-15.7645,0,0,0,0,0,0,1046.29, +Clean water 60degC 3000Sm3,29.11.1999 16:48:00,2374.95,0.00224318,2374.95,4.20863e-13,1.772e-13,9.44514e-07,5.33018e+06,5.6433e+12,3.41072e+06,0.507339,3.41072e+06,6.04411e-13,2999.85,2999.85,0,0,4.28589e+06,4.28589e+06,0,0,9.38097e+11,0,0,0,0,1386.62,1386.62,0,0,-15.8462,0,0,0,0,0,0,1052.34, +Clean water 60degC 3000Sm3,09.12.1999 16:48:00,2374.92,0.0074709,2374.92,4.20857e-13,1.772e-13,3.14574e-06,1.77524e+07,5.6433e+12,3.43447e+06,0.582048,3.43447e+06,6.0862e-13,2999.85,2999.85,0,0,4.31589e+06,4.31589e+06,0,0,9.44776e+11,0,0,0,0,1386.41,1386.41,0,0,-16.0378,0,0,0,0,0,0,1058.38, +Clean water 60degC 3000Sm3,19.12.1999 16:48:00,2374.9,0.0272755,2374.88,4.2085e-13,1.772e-13,1.14849e-05,6.48134e+07,5.6433e+12,3.45822e+06,0.854802,3.45821e+06,6.12828e-13,2999.85,2999.85,0,0,4.34589e+06,4.34589e+06,0,0,9.51455e+11,0,0,0,0,1386.31,1386.31,0,0,-16.3049,0,0,0,0,0,0,1064.4, +Clean water 60degC 3000Sm3,29.12.1999 16:48:00,2374.86,0.108213,2374.75,4.20827e-13,1.772e-13,4.55661e-05,2.57155e+08,5.6433e+12,3.48196e+06,1.93693,3.48196e+06,6.17037e-13,2999.85,2999.85,0,0,4.37589e+06,4.37589e+06,0,0,9.58135e+11,0,0,0,0,1386.02,1386.02,0,0,-16.521,0,0,0,0,0,0,1070.4, +Clean water 60degC 3000Sm3,08.01.2000 16:48:00,2374.87,0.398666,2374.47,4.20777e-13,1.772e-13,0.000167869,9.47494e+08,5.6433e+12,3.50571e+06,5.92359,3.50571e+06,6.21244e-13,2999.85,2999.85,0,0,4.40588e+06,4.40588e+06,0,0,9.64815e+11,0,0,0,0,1385.46,1385.46,0,0,-16.771,0,0,0,0,0,0,1076.39, +Clean water 60degC 3000Sm3,18.01.2000 16:48:00,2375.07,1.53301,2373.54,4.20613e-13,1.772e-13,0.000645457,3.64486e+09,5.6433e+12,3.52946e+06,21.2536,3.52944e+06,6.25451e-13,2999.85,2999.85,0,0,4.43588e+06,4.43588e+06,0,0,9.71493e+11,0,0,0,0,1385.4,1385.4,0,0,-17.1011,0,0,0,0,0,0,1082.36, +Clean water 60degC 3000Sm3,28.01.2000 16:48:00,2375.85,5.40289,2370.45,4.20065e-13,1.772e-13,0.00227408,1.28626e+10,5.6433e+12,3.55322e+06,75.2824,3.55315e+06,6.29651e-13,2999.85,2999.85,0,0,4.46588e+06,4.46588e+06,0,0,9.78163e+11,0,0,0,0,1385.15,1385.15,0,0,-17.6517,0,0,0,0,0,0,1088.3, +Clean water 60degC 3000Sm3,07.02.2000 16:48:00,2378.79,20.174,2358.61,4.17968e-13,1.772e-13,0.00848081,4.82691e+10,5.6433e+12,3.57701e+06,277.022,3.57673e+06,6.33831e-13,2999.85,2999.85,0,0,4.49588e+06,4.49588e+06,0,0,9.84805e+11,0,0,0,0,1383.51,1383.51,0,0,-17.9759,0,0,0,0,0,0,1094.2, +Clean water 60degC 3000Sm3,17.02.2000 16:48:00,2387.84,63.6369,2324.21,4.1187e-13,1.772e-13,0.0266504,1.54514e+11,5.6433e+12,3.60089e+06,913.39,3.59997e+06,6.3795e-13,2999.85,2999.85,0,0,4.52588e+06,4.52588e+06,0,0,9.9135e+11,0,0,0,0,1383.38,1383.38,0,0,-18.5013,0,0,0,0,0,0,1100, +Clean water 60degC 3000Sm3,27.02.2000 16:48:00,2406.45,152.994,2253.46,3.99333e-13,1.772e-13,0.0635764,3.83139e+11,5.6433e+12,3.62495e+06,2443.32,3.62251e+06,6.41943e-13,2999.85,2999.85,0,0,4.55588e+06,4.55588e+06,0,0,9.97695e+11,0,0,0,0,1383.32,1383.32,0,0,-18.8426,0,0,0,0,0,0,1105.59, +Clean water 60degC 3000Sm3,08.03.2000 16:48:00,2432.94,280.305,2152.64,3.81467e-13,1.772e-13,0.115212,7.3484e+11,5.6433e+12,3.64928e+06,5246.37,3.64404e+06,6.45758e-13,2999.85,2999.85,0,0,4.58587e+06,4.58587e+06,0,0,1.00376e+12,0,0,0,0,1382.77,1382.77,0,0,-18.7417,0,0,0,0,0,0,1110.91, +Clean water 60degC 3000Sm3,18.03.2000 16:48:00,2461.6,417.785,2043.82,3.62183e-13,1.772e-13,0.169721,1.15357e+12,5.6433e+12,3.6739e+06,9424.21,3.66447e+06,6.49379e-13,2999.85,2999.85,0,0,4.61587e+06,4.61587e+06,0,0,1.00951e+12,0,0,0,0,1382.75,1382.75,0,0,-18.5871,0,0,0,0,0,0,1115.94, +Clean water 60degC 3000Sm3,28.03.2000 16:48:00,2488.62,548.104,1940.52,3.43877e-13,1.772e-13,0.220244,1.59396e+12,5.6433e+12,3.69878e+06,14905.2,3.68388e+06,6.52818e-13,2999.85,2999.85,0,0,4.64587e+06,4.64587e+06,0,0,1.01498e+12,0,0,0,0,1379.93,1379.93,0,0,-17.8967,0,0,0,0,0,0,1120.68, +Clean water 60degC 3000Sm3,07.04.2000 16:48:00,2513.19,665.931,1847.26,3.27351e-13,1.772e-13,0.264975,2.03439e+12,5.6433e+12,3.72392e+06,21564.5,3.70235e+06,6.56092e-13,2999.85,2999.85,0,0,4.67587e+06,4.67587e+06,0,0,1.02019e+12,0,0,0,0,1380.09,1380.09,0,0,-17.3421,0,0,0,0,0,0,1125.18, +Clean water 60degC 3000Sm3,17.04.2000 16:48:00,2535.51,772.994,1762.52,3.12334e-13,1.772e-13,0.304867,2.475e+12,5.6433e+12,3.74927e+06,29294.5,3.71998e+06,6.59215e-13,2999.85,2999.85,0,0,4.70587e+06,4.70587e+06,0,0,1.02515e+12,0,0,0,0,1380.12,1380.12,0,0,-16.8104,0,0,0,0,0,0,1129.44, +Clean water 60degC 3000Sm3,27.04.2000 16:48:00,2556.06,871.802,1684.26,2.98466e-13,1.772e-13,0.341072,2.92107e+12,5.6433e+12,3.77483e+06,38012.5,3.73682e+06,6.622e-13,2999.85,2999.85,0,0,4.73587e+06,4.73587e+06,0,0,1.0299e+12,0,0,0,0,1378.68,1378.68,0,0,-16.1847,0,0,0,0,0,0,1133.5, +Clean water 60degC 3000Sm3,07.05.2000 16:48:00,2575.28,964.079,1611.2,2.8552e-13,1.772e-13,0.374359,3.37672e+12,5.6433e+12,3.80058e+06,47653.2,3.75293e+06,6.65055e-13,2999.85,2999.85,0,0,4.76587e+06,4.76587e+06,0,0,1.03445e+12,0,0,0,0,1378.32,1378.32,0,0,-15.5745,0,0,0,0,0,0,1137.35, +Clean water 60degC 3000Sm3,17.05.2000 16:48:00,2593.14,1049.74,1543.41,2.73506e-13,1.772e-13,0.404812,3.83824e+12,5.6433e+12,3.82652e+06,58150.6,3.76837e+06,6.6779e-13,2999.85,2999.85,0,0,4.79586e+06,4.79586e+06,0,0,1.0388e+12,0,0,0,0,1377.92,1377.92,0,0,-15.0524,0,0,0,0,0,0,1141.03, +Clean water 60degC 3000Sm3,27.05.2000 16:48:00,2609.9,1130.22,1479.68,2.62212e-13,1.772e-13,0.433051,4.31051e+12,5.6433e+12,3.85261e+06,69452.8,3.78316e+06,6.70412e-13,2999.85,2999.85,0,0,4.82586e+06,4.82586e+06,0,0,1.04298e+12,0,0,0,0,1376.82,1376.82,0,0,-14.4897,0,0,0,0,0,0,1144.53, +Clean water 60degC 3000Sm3,06.06.2000 16:48:00,2625.13,1203.3,1421.82,2.5196e-13,1.772e-13,0.458379,4.77599e+12,5.6433e+12,3.87887e+06,81485.8,3.79738e+06,6.72932e-13,2999.85,2999.85,0,0,4.85586e+06,4.85586e+06,0,0,1.04699e+12,0,0,0,0,1376.44,1376.44,0,0,-13.9637,0,0,0,0,0,0,1147.88, +Clean water 60degC 3000Sm3,16.06.2000 16:48:00,2639.64,1272.88,1366.76,2.42202e-13,1.772e-13,0.482219,5.25571e+12,5.6433e+12,3.90526e+06,94214.6,3.81105e+06,6.75354e-13,2999.85,2999.85,0,0,4.88586e+06,4.88586e+06,0,0,1.05085e+12,0,0,0,0,1376.21,1376.21,0,0,-13.4808,0,0,0,0,0,0,1151.08, +Clean water 60degC 3000Sm3,26.06.2000 16:48:00,2653.56,1339.6,1313.96,2.32845e-13,1.772e-13,0.504832,5.75343e+12,5.6433e+12,3.9318e+06,107611,3.82419e+06,6.77682e-13,2999.85,2999.85,0,0,4.91586e+06,4.91586e+06,0,0,1.05456e+12,0,0,0,0,1376.06,1376.06,0,0,-13.0075,0,0,0,0,0,0,1154.14, +Clean water 60degC 3000Sm3,06.07.2000 16:48:00,2666.94,1403.75,1263.19,2.23848e-13,1.772e-13,0.526353,6.27127e+12,5.6433e+12,3.95847e+06,121648,3.83682e+06,6.79921e-13,2999.85,2999.85,0,0,4.94586e+06,4.94586e+06,0,0,1.05812e+12,0,0,0,0,1375.72,1375.72,0,0,-12.5476,0,0,0,0,0,0,1157.06, +Clean water 60degC 3000Sm3,16.07.2000 16:48:00,2679.13,1462.21,1216.93,2.15651e-13,1.772e-13,0.545776,6.78074e+12,5.6433e+12,3.98526e+06,136270,3.84899e+06,6.82077e-13,2999.85,2999.85,0,0,4.97585e+06,4.97585e+06,0,0,1.06156e+12,0,0,0,0,1375.49,1375.49,0,0,-12.1209,0,0,0,0,0,0,1159.86, +Clean water 60degC 3000Sm3,26.07.2000 16:48:00,2690.82,1518.22,1172.6,2.07795e-13,1.772e-13,0.564222,7.30664e+12,5.6433e+12,4.01217e+06,151452,3.86071e+06,6.84155e-13,2999.85,2999.85,0,0,5.00585e+06,5.00585e+06,0,0,1.06487e+12,0,0,0,0,1375.21,1375.21,0,0,-11.7119,0,0,0,0,0,0,1162.55, +Clean water 60degC 3000Sm3,05.08.2000 16:48:00,2701.6,1569.88,1131.71,2.0055e-13,1.772e-13,0.581095,7.82824e+12,5.6433e+12,4.03918e+06,167151,3.87203e+06,6.86161e-13,2999.85,2999.85,0,0,5.03585e+06,5.03585e+06,0,0,1.06807e+12,0,0,0,0,1375.03,1375.03,0,0,-11.3324,0,0,0,0,0,0,1165.12, +Clean water 60degC 3000Sm3,15.08.2000 16:48:00,2711.91,1619.31,1092.6,1.93618e-13,1.772e-13,0.597112,8.3638e+12,5.6433e+12,4.0663e+06,183344,3.88296e+06,6.88097e-13,2999.85,2999.85,0,0,5.06585e+06,5.06585e+06,0,0,1.07116e+12,0,0,0,0,1374.96,1374.96,0,0,-10.9576,0,0,0,0,0,0,1167.59, +Clean water 60degC 3000Sm3,25.08.2000 16:48:00,2721.64,1665.96,1055.68,1.87076e-13,1.772e-13,0.612116,8.90564e+12,5.6433e+12,4.09352e+06,200004,3.89351e+06,6.89968e-13,2999.85,2999.85,0,0,5.09585e+06,5.09585e+06,0,0,1.07414e+12,0,0,0,0,1374.67,1374.67,0,0,-10.6098,0,0,0,0,0,0,1169.96, +Clean water 60degC 3000Sm3,04.09.2000 16:48:00,2730.91,1710.43,1020.49,1.80839e-13,1.772e-13,0.626321,9.45869e+12,5.6433e+12,4.12083e+06,217108,3.90372e+06,6.91776e-13,2999.85,2999.85,0,0,5.12585e+06,5.12585e+06,0,0,1.07702e+12,0,0,0,0,1374.61,1374.61,0,0,-10.2613,0,0,0,0,0,0,1172.24, +Clean water 60degC 3000Sm3,14.09.2000 16:48:00,2739.67,1752.41,987.259,1.74951e-13,1.772e-13,0.639643,1.0017e+13,5.6433e+12,4.14822e+06,234632,3.91359e+06,6.93525e-13,2999.85,2999.85,0,0,5.15584e+06,5.15584e+06,0,0,1.07981e+12,0,0,0,0,1374.41,1374.41,0,0,-9.93496,0,0,0,0,0,0,1174.43, +Clean water 60degC 3000Sm3,24.09.2000 16:48:00,2747.76,1791.16,956.593,1.69517e-13,1.772e-13,0.651864,1.05667e+13,5.6433e+12,4.1757e+06,252544,3.92316e+06,6.95221e-13,2999.85,2999.85,0,0,5.18584e+06,5.18584e+06,0,0,1.08252e+12,0,0,0,0,1374.36,1374.36,0,0,-9.62317,0,0,0,0,0,0,1176.54, +Clean water 60degC 3000Sm3,04.10.2000 16:48:00,2755.44,1827.97,927.467,1.64356e-13,1.772e-13,0.663405,1.11225e+13,5.6433e+12,4.20326e+06,270823,3.93243e+06,6.96864e-13,2999.85,2999.85,0,0,5.21584e+06,5.21584e+06,0,0,1.08514e+12,0,0,0,0,1374.12,1374.12,0,0,-9.33592,0,0,0,0,0,0,1178.58, +Clean water 60degC 3000Sm3,14.10.2000 16:48:00,2762.64,1862.51,900.132,1.59512e-13,1.772e-13,0.674177,1.16768e+13,5.6433e+12,4.23088e+06,289448,3.94143e+06,6.98459e-13,2999.85,2999.85,0,0,5.24584e+06,5.24584e+06,0,0,1.08768e+12,0,0,0,0,1374.21,1374.21,0,0,-9.05363,0,0,0,0,0,0,1180.54, +Clean water 60degC 3000Sm3,24.10.2000 16:48:00,2769.58,1895.77,873.808,1.54847e-13,1.772e-13,0.684498,1.22434e+13,5.6433e+12,4.25858e+06,308406,3.95017e+06,7.00008e-13,2999.85,2999.85,0,0,5.27584e+06,5.27584e+06,0,0,1.09015e+12,0,0,0,0,1374.07,1374.07,0,0,-8.78625,0,0,0,0,0,0,1182.43, +Clean water 60degC 3000Sm3,03.11.2000 16:48:00,2775.9,1926.06,849.839,1.50599e-13,1.772e-13,0.693851,1.27899e+13,5.6433e+12,4.28634e+06,327667,3.95867e+06,7.01514e-13,2999.85,2999.85,0,0,5.30584e+06,5.30584e+06,0,0,1.09256e+12,0,0,0,0,1374.02,1374.02,0,0,-8.5403,0,0,0,0,0,0,1184.26, +Clean water 60degC 3000Sm3,13.11.2000 16:48:00,2782.13,1955.93,826.204,1.46411e-13,1.772e-13,0.703032,1.33598e+13,5.6433e+12,4.31416e+06,347226,3.96693e+06,7.02978e-13,2999.85,2999.85,0,0,5.33584e+06,5.33584e+06,0,0,1.09489e+12,0,0,0,0,1373.96,1373.96,0,0,-8.29497,0,0,0,0,0,0,1186.03, +Clean water 60degC 3000Sm3,23.11.2000 16:48:00,2788,1984.04,803.958,1.42469e-13,1.772e-13,0.711636,1.39267e+13,5.6433e+12,4.34204e+06,367066,3.97497e+06,7.04403e-13,2999.85,2999.85,0,0,5.36583e+06,5.36583e+06,0,0,1.09717e+12,0,0,0,0,1373.86,1373.86,0,0,-8.06455,0,0,0,0,0,0,1187.73, +Clean water 60degC 3000Sm3,03.12.2000 16:48:00,2793.6,2010.91,782.691,1.387e-13,1.772e-13,0.719827,1.44989e+13,5.6433e+12,4.36997e+06,387175,3.9828e+06,7.0579e-13,2999.85,2999.85,0,0,5.39583e+06,5.39583e+06,0,0,1.09938e+12,0,0,0,0,1373.76,1373.76,0,0,-7.84685,0,0,0,0,0,0,1189.39, +Clean water 60degC 3000Sm3,13.12.2000 16:48:00,2798.97,2036.63,762.341,1.35094e-13,1.772e-13,0.727635,1.50763e+13,5.6433e+12,4.39796e+06,407542,3.99042e+06,7.0714e-13,2999.85,2999.85,0,0,5.42583e+06,5.42583e+06,0,0,1.10154e+12,0,0,0,0,1373.78,1373.78,0,0,-7.63568,0,0,0,0,0,0,1190.99, +Clean water 60degC 3000Sm3,23.12.2000 16:48:00,2804.25,2061.94,742.306,1.31543e-13,1.772e-13,0.735293,1.56757e+13,5.6433e+12,4.42601e+06,428161,3.99784e+06,7.08456e-13,2999.85,2999.85,0,0,5.45583e+06,5.45583e+06,0,0,1.10364e+12,0,0,0,0,1373.78,1373.78,0,0,-7.42917,0,0,0,0,0,0,1192.53, +Clean water 60degC 3000Sm3,02.01.2001 16:48:00,2809.33,2086.29,723.043,1.2813e-13,1.772e-13,0.742628,1.62833e+13,5.6433e+12,4.4541e+06,449024,4.00508e+06,7.09737e-13,2999.85,2999.85,0,0,5.48583e+06,5.48583e+06,0,0,1.10568e+12,0,0,0,0,1373.79,1373.79,0,0,-7.23228,0,0,0,0,0,0,1194.03, +Clean water 60degC 3000Sm3,12.01.2001 16:48:00,2814.23,2109.8,704.436,1.24832e-13,1.772e-13,0.749688,1.69018e+13,5.6433e+12,4.48224e+06,470122,4.01212e+06,7.10986e-13,2999.85,2999.85,0,0,5.51583e+06,5.51583e+06,0,0,1.10767e+12,0,0,0,0,1373.89,1373.89,0,0,-7.0354,0,0,0,0,0,0,1195.48, +Clean water 60degC 3000Sm3,22.01.2001 16:48:00,2819,2132.66,686.348,1.21627e-13,1.772e-13,0.756528,1.75351e+13,5.6433e+12,4.51043e+06,491448,4.01898e+06,7.12202e-13,2999.85,2999.85,0,0,5.54582e+06,5.54582e+06,0,0,1.10961e+12,0,0,0,0,1373.81,1373.81,0,0,-6.85,0,0,0,0,0,0,1196.88, +Clean water 60degC 3000Sm3,01.02.2001 16:48:00,2823.62,2154.81,668.817,1.1852e-13,1.772e-13,0.763135,1.81817e+13,5.6433e+12,4.53867e+06,512996,4.02567e+06,7.13387e-13,2999.85,2999.85,0,0,5.57582e+06,5.57582e+06,0,0,1.11151e+12,0,0,0,0,1373.83,1373.83,0,0,-6.67144,0,0,0,0,0,0,1198.23, +Clean water 60degC 3000Sm3,11.02.2001 16:48:00,2828.13,2176.42,651.714,1.1549e-13,1.772e-13,0.76956,1.8846e+13,5.6433e+12,4.56695e+06,534760,4.03219e+06,7.14542e-13,2999.85,2999.85,0,0,5.60582e+06,5.60582e+06,0,0,1.11335e+12,0,0,0,0,1373.93,1373.93,0,0,-6.49101,0,0,0,0,0,0,1199.55, +Clean water 60degC 3000Sm3,21.02.2001 16:48:00,2832.56,2197.63,634.928,1.12515e-13,1.772e-13,0.775846,1.95327e+13,5.6433e+12,4.59527e+06,556737,4.03854e+06,7.15667e-13,2999.85,2999.85,0,0,5.63582e+06,5.63582e+06,0,0,1.11514e+12,0,0,0,0,1373.9,1373.9,0,0,-6.31835,0,0,0,0,0,0,1200.82, +Clean water 60degC 3000Sm3,03.03.2001 16:48:00,2836.75,2217.75,619.009,1.09694e-13,1.772e-13,0.78179,2.02184e+13,5.6433e+12,4.62364e+06,578914,4.04473e+06,7.16764e-13,2999.85,2999.85,0,0,5.66582e+06,5.66582e+06,0,0,1.11689e+12,0,0,0,0,1373.96,1373.96,0,0,-6.15345,0,0,0,0,0,0,1202.04, +Clean water 60degC 3000Sm3,13.03.2001 16:48:00,2840.82,2237.23,603.589,1.06961e-13,1.772e-13,0.78753,2.09171e+13,5.6433e+12,4.65205e+06,601286,4.05076e+06,7.17834e-13,2999.85,2999.85,0,0,5.69582e+06,5.69582e+06,0,0,1.1186e+12,0,0,0,0,1374,1374,0,0,-5.99445,0,0,0,0,0,0,1203.23, +Clean water 60degC 3000Sm3,23.03.2001 16:48:00,2844.68,2255.73,588.953,1.04368e-13,1.772e-13,0.792963,2.16142e+13,5.6433e+12,4.6805e+06,623844,4.05665e+06,7.18877e-13,2999.85,2999.85,0,0,5.72582e+06,5.72582e+06,0,0,1.12027e+12,0,0,0,0,1374.06,1374.06,0,0,-5.84539,0,0,0,0,0,0,1204.38, +Clean water 60degC 3000Sm3,02.04.2001 16:48:00,2848.39,2273.5,574.886,1.01875e-13,1.772e-13,0.798171,2.23175e+13,5.6433e+12,4.70898e+06,646578,4.0624e+06,7.19896e-13,2999.85,2999.85,0,0,5.75581e+06,5.75581e+06,0,0,1.12189e+12,0,0,0,0,1374.2,1374.2,0,0,-5.69726,0,0,0,0,0,0,1205.5, +Clean water 60degC 3000Sm3,12.04.2001 16:48:00,2852.04,2291.02,561.019,9.94176e-14,1.772e-13,0.803292,2.30454e+13,5.6433e+12,4.7375e+06,669489,4.06801e+06,7.2089e-13,2999.85,2999.85,0,0,5.78581e+06,5.78581e+06,0,0,1.12348e+12,0,0,0,0,1374.21,1374.21,0,0,-5.5541,0,0,0,0,0,0,1206.58, +Clean water 60degC 3000Sm3,22.04.2001 16:48:00,2855.48,2307.5,547.979,9.71068e-14,1.772e-13,0.808096,2.37636e+13,5.6433e+12,4.76606e+06,692564,4.07349e+06,7.21861e-13,2999.85,2999.85,0,0,5.81581e+06,5.81581e+06,0,0,1.12503e+12,0,0,0,0,1374.27,1374.27,0,0,-5.42056,0,0,0,0,0,0,1207.63, +Clean water 60degC 3000Sm3,02.05.2001 16:48:00,2858.77,2323.27,535.497,9.48949e-14,1.772e-13,0.812683,2.44837e+13,5.6433e+12,4.79464e+06,715796,4.07885e+06,7.2281e-13,2999.85,2999.85,0,0,5.84581e+06,5.84581e+06,0,0,1.12654e+12,0,0,0,0,1374.37,1374.37,0,0,-5.28951,0,0,0,0,0,0,1208.64, +Clean water 60degC 3000Sm3,12.05.2001 16:48:00,2861.87,2338.12,523.747,9.28127e-14,1.772e-13,0.816991,2.51929e+13,5.6433e+12,4.82326e+06,739177,4.08408e+06,7.23738e-13,2999.85,2999.85,0,0,5.87581e+06,5.87581e+06,0,0,1.12802e+12,0,0,0,0,1374.44,1374.44,0,0,-5.1684,0,0,0,0,0,0,1209.63, +Clean water 60degC 3000Sm3,22.05.2001 16:48:00,2864.77,2352.03,512.74,9.08621e-14,1.772e-13,0.821019,2.58868e+13,5.6433e+12,4.85191e+06,762698,4.08921e+06,7.24647e-13,2999.85,2999.85,0,0,5.90581e+06,5.90581e+06,0,0,1.12947e+12,0,0,0,0,1374.54,1374.54,0,0,-5.05319,0,0,0,0,0,0,1210.59, +Clean water 60degC 3000Sm3,01.06.2001 16:48:00,2867.5,2365.14,502.363,8.90233e-14,1.772e-13,0.824808,2.65688e+13,5.6433e+12,4.88058e+06,786349,4.09424e+06,7.25537e-13,2999.85,2999.85,0,0,5.9358e+06,5.9358e+06,0,0,1.13089e+12,0,0,0,0,1374.61,1374.61,0,0,-4.94481,0,0,0,0,0,0,1211.52, +Clean water 60degC 3000Sm3,11.06.2001 16:48:00,2870.08,2377.49,492.586,8.72908e-14,1.772e-13,0.828372,2.72377e+13,5.6433e+12,4.90929e+06,810124,4.09916e+06,7.2641e-13,2999.85,2999.85,0,0,5.9658e+06,5.9658e+06,0,0,1.13228e+12,0,0,0,0,1374.7,1374.7,0,0,-4.84295,0,0,0,0,0,0,1212.42, +Clean water 60degC 3000Sm3,21.06.2001 16:48:00,2872.58,2389.46,483.119,8.5613e-14,1.772e-13,0.831817,2.79112e+13,5.6433e+12,4.93801e+06,834018,4.10399e+06,7.27266e-13,2999.85,2999.85,0,0,5.9958e+06,5.9958e+06,0,0,1.13364e+12,0,0,0,0,1374.79,1374.79,0,0,-4.74358,0,0,0,0,0,0,1213.3, +Clean water 60degC 3000Sm3,23.06.2001,2872.9,2391.01,481.888,8.5395e-14,1.772e-13,0.832264,2.80007e+13,5.6433e+12,4.94175e+06,837127,4.10462e+06,7.27377e-13,2999.85,2999.85,0,0,5.9997e+06,5.9997e+06,0,0,1.13382e+12,0,0,0,0,1374.87,1374.87,0,0,-4.73178,0,0,0,0,0,0,1213.42, +Clean water 60degC 3000Sm3,23.06.2001,2872.9,2391.01,481.888,8.5395e-14,1.772e-13,0.832264,2.80007e+13,5.6433e+12,4.94175e+06,837127,4.10462e+06,7.27377e-13,2999.85,2999.85,0,0,5.9997e+06,5.9997e+06,0,0,1.13382e+12,0,0,0,0,1374.87,1374.87,0,0,-4.73178,0,0,0,0,0,0,1213.42, +,Date,BottomHolePressure (BARa),SandfacePressureRef|BottomHolePressureRef (BARa),DrainageRegionPressureRef|DrainageRegionPressure (BARa),LiquidProductivityIndex (Sm3/day/bar),GasProductivityIndex (Sm3/day/bar),ProductivityIndexResCond (Rm3/day/bar),WellIndexResCond (Rm3/day/bar),BottomHoleTemperature (deg C),LiquidProduced (Sm3/day),WaterProduced (Sm3/day),OilProduced (Sm3/day),GasProduced (1000Sm3/d),FracLiquidProduced (Sm3/day),FracWaterProduced (Sm3/day),FracOilProduced (Sm3/day),FracGasProduced (1000Sm3/d),GOR (Sm3/Sm3),WaterCut (fraction),WaterGasRatio (Sm3/Sm3),CGR (Sm3/Sm3),Salinity (ppm),HallIntegral (Bar.d),HallVoidageDerivative (Bar.d),WaterBreakthroughTime (days),GasBreakthroughTime (days),CumLiquidProduced (Sm3),CumWaterProduced (Sm3),CumOilProduced (Sm3),CumGasProduced (MSm3),CumLiquidInjected (Sm3),CumWaterInjected (Sm3),CumOilInjected (Sm3),CumGasInjected (MSm3),CumHeatInjected (kJ),DownholeRate (rm3/day),VoidageRate (rm3/day),CumVoidage (rm3),NPV (MMUS$), +P1,17.01.1996 21:57:52,214.97,216.565,256.721,59.7716,0,74.7044,401.559,60,2400.15,0.000175827,2400.15,4.25328e-13,0,0,0,0,1.772e-13,7.32567e-08,0,0,72526.2,661.845,512.762,866.481,1e+06,40611,0.00281238,40610.9,7.19664e-15,0,0,0,0,-6.06637e+09,-3010.22,-3000,-50745.6,15.2924, +P1,26.01.1996 14:46:20,213.847,215.442,255.862,59.3617,0,74.2152,401.559,60,2399.4,0.000175703,2399.4,4.25195e-13,0,0,0,0,1.772e-13,7.32278e-08,0,0,72526.2,1013.51,847.418,839.555,1e+06,61486.5,0.00434104,61486.5,1.0896e-14,0,0,0,0,-9.1847e+09,-3009.59,-3000,-76846.5,23.127, +P1,02.02.1996 14:48:37,213.641,215.236,255.702,59.2897,0,74.1311,401.559,60,2399.21,0.000174265,2399.21,4.25161e-13,0,0,0,0,1.772e-13,7.26345e-08,0,0,72526.2,1296.84,1172.52,822.455,1e+06,78284.7,0.00556117,78284.7,1.38728e-14,0,0,0,0,-1.1694e+10,-3009.41,-3000,-97851.3,29.4185, +P1,12.02.1996 14:48:37,213.585,215.18,255.677,59.2441,0,74.0752,401.559,60,2399.17,0.000172309,2399.17,4.25155e-13,0,0,0,0,1.772e-13,7.182e-08,0,0,72526.2,1701.8,1514.34,827.83,1e+06,102276,0.00728426,102276,1.81243e-14,0,0,0,0,-1.52778e+10,-3009.38,-3000,-127851,38.3842, +P1,21.02.1996 07:33:14,213.39,214.985,255.465,59.2686,0,74.106,401.559,60,2399.17,0.000171398,2399.17,4.25154e-13,0,0,0,0,1.772e-13,7.14408e-08,0,0,72526.2,2053.88,1895.71,812.547,1e+06,123143,0.00877502,123143,2.18222e-14,0,0,0,0,-1.83949e+10,-3009.43,-3000,-153944,46.1633, +P1,01.03.1996 03:26:06,213.287,214.882,255.373,59.251,0,74.0854,401.559,60,2399.12,0.000170482,2399.12,4.25146e-13,0,0,0,0,1.772e-13,7.10601e-08,0,0,72526.2,2411.35,2251.78,812.107,1e+06,144324,0.0102801,144324,2.55755e-14,0,0,0,0,-2.15587e+10,-3009.4,-3000,-180429,54.0411, +P1,11.03.1996 03:26:06,213.233,214.828,255.313,59.2588,0,74.0958,401.559,60,2399.1,0.000169511,2399.1,4.25142e-13,0,0,0,0,1.772e-13,7.06562e-08,0,0,72526.2,2816.2,2632.14,798.188,1e+06,168315,0.0119752,168315,2.9827e-14,0,0,0,0,-2.51424e+10,-3009.39,-3000,-210429,62.9425, +P1,21.03.1996 03:26:06,213.2,214.795,255.269,59.2735,0,74.1146,401.559,60,2399.09,0.000168655,2399.09,4.2514e-13,0,0,0,0,1.772e-13,7.02996e-08,0,0,72526.2,3220.95,3036.91,799.664,1e+06,192306,0.0136617,192305,3.40784e-14,0,0,0,0,-2.87261e+10,-3009.38,-3000,-240429,71.8205, +P1,31.03.1996 03:26:06,213.097,214.692,255.182,59.2511,0,74.0869,401.559,60,2399.08,0.000168119,2399.08,4.25138e-13,0,0,0,0,1.772e-13,7.00767e-08,0,0,72526.2,3625.85,3443.48,800.405,1e+06,216296,0.0153429,216296,3.83297e-14,0,0,0,0,-3.23098e+10,-3009.4,-3000,-270429,80.6754, +P1,10.04.1996 03:26:06,213.075,214.67,255.147,59.2697,0,74.1108,401.559,60,2399.06,0.000167455,2399.06,4.25134e-13,0,0,0,0,1.772e-13,6.98002e-08,0,0,72526.2,4030.62,3847.55,785.436,1e+06,240287,0.0170175,240287,4.25811e-14,0,0,0,0,-3.58934e+10,-3009.38,-3000,-300429,89.5072, +P1,20.04.1996 03:26:06,212.933,214.528,255.033,59.2292,0,74.0603,401.559,60,2399.05,0.000167202,2399.05,4.25133e-13,0,0,0,0,1.772e-13,6.9695e-08,0,0,72526.2,4435.66,4255.56,770.211,1e+06,264277,0.0186895,264277,4.68324e-14,0,0,0,0,-3.94771e+10,-3009.41,-3000,-330429,98.3159, +P1,30.04.1996 03:26:06,212.933,214.528,255.025,59.2395,0,74.0741,401.559,60,2399.02,0.000166613,2399.02,4.25129e-13,0,0,0,0,1.772e-13,6.94505e-08,0,0,72526.2,4840.63,4660.02,788.137,1e+06,288267,0.0203556,288267,5.10837e-14,0,0,0,0,-4.30607e+10,-3009.38,-3000,-360429,107.102, +P1,10.05.1996 03:26:06,212.523,214.118,254.585,59.2831,0,74.1286,401.559,60,2399.02,0.000167217,2399.02,4.25128e-13,0,0,0,0,1.772e-13,6.97023e-08,0,0,72526.2,5245.3,5061.5,771.048,1e+06,312258,0.0220278,312258,5.5335e-14,0,0,0,0,-4.66443e+10,-3009.49,-3000,-390429,115.864, +P1,20.05.1996 03:26:06,211.093,212.687,253.129,59.3174,0,74.1745,401.559,60,2398.92,0.000170697,2398.92,4.25111e-13,0,0,0,0,1.772e-13,7.11557e-08,0,0,72526.2,5649.72,5462.98,772.921,1e+06,336247,0.0237348,336247,5.95861e-14,0,0,0,0,-5.02277e+10,-3009.76,-3000,-420429,124.604, +P1,30.05.1996 03:26:06,209.452,211.047,251.465,59.3449,0,74.2189,401.559,60,2398.6,0.000174781,2398.6,4.25054e-13,0,0,0,0,1.772e-13,7.28681e-08,0,0,72526.2,6053.9,5864.07,754.803,1e+06,360233,0.0254826,360233,6.38366e-14,0,0,0,0,-5.38107e+10,-3009.81,-3000,-450429,133.32, +P1,09.06.1996 03:26:06,207.961,209.555,249.959,59.3564,0,74.2448,401.559,60,2398.23,0.000178479,2398.23,4.24988e-13,0,0,0,0,1.772e-13,7.4421e-08,0,0,72526.2,6457.94,6266.21,759.575,1e+06,384215,0.0272674,384215,6.80865e-14,0,0,0,0,-5.73931e+10,-3009.76,-3000,-480429,142.011, +P1,19.06.1996 03:26:06,206.435,208.029,248.416,59.3732,0,74.2761,401.559,60,2397.89,0.0001823,2397.89,4.24929e-13,0,0,0,0,1.772e-13,7.60252e-08,0,0,72526.2,6861.81,6667.57,760.384,1e+06,408194,0.0290904,408194,7.23358e-14,0,0,0,0,-6.0975e+10,-3009.77,-3000,-510429,150.679, +P1,29.06.1996 03:26:06,204.805,206.399,246.787,59.3636,0,74.2748,401.559,60,2397.55,0.000186431,2397.55,4.24868e-13,0,0,0,0,1.772e-13,7.77591e-08,0,0,72526.2,7265.69,7071.68,761.663,1e+06,432169,0.0309547,432169,7.65845e-14,0,0,0,0,-6.45564e+10,-3009.79,-3000,-540429,159.323, +P1,13.07.1996 16:48:00,203.321,204.915,245.387,59.2236,0,74.1186,401.559,60,2396.94,0.000189993,2396.94,4.24759e-13,0,0,0,0,1.772e-13,7.92651e-08,0,0,72526.2,7854.35,7749.8,736.462,1e+06,467062,0.0337064,467062,8.27679e-14,0,0,0,0,-6.97687e+10,-3009.43,-3000,-584100,171.862, +P1,23.07.1996 16:48:00,203.13,204.724,245.231,59.1713,0,74.0549,401.559,60,2396.88,0.000190185,2396.88,4.24749e-13,0,0,0,0,1.772e-13,7.9347e-08,0,0,72526.2,8259.42,8087.65,734.16,1e+06,491031,0.0356082,491031,8.70154e-14,0,0,0,0,-7.3349e+10,-3009.41,-3000,-614100,180.449, +P1,02.08.1996 16:48:00,203.043,204.637,245.14,59.1768,0,74.0629,401.559,60,2396.84,0.000190104,2396.84,4.24742e-13,0,0,0,0,1.772e-13,7.93141e-08,0,0,72526.2,8664.46,8491.89,735.058,1e+06,515000,0.0375092,515000,9.12628e-14,0,0,0,0,-7.69294e+10,-3009.39,-3000,-644100,189.012, +P1,12.08.1996 16:48:00,203.039,204.633,245.082,59.2554,0,74.1619,401.559,60,2396.82,0.000189805,2396.82,4.24739e-13,0,0,0,0,1.772e-13,7.91901e-08,0,0,72526.2,9068.95,8885.12,742.062,1e+06,538968,0.0394073,538968,9.55102e-14,0,0,0,0,-8.05097e+10,-3009.37,-3000,-674100,197.554, +P1,22.08.1996 16:48:00,201.595,203.189,243.608,59.2979,0,74.2155,401.559,60,2396.81,0.000193528,2396.81,4.24737e-13,0,0,0,0,1.772e-13,8.07439e-08,0,0,72526.2,9473.15,9282.97,723.627,1e+06,562936,0.0413426,562936,9.97575e-14,0,0,0,0,-8.409e+10,-3009.75,-3000,-704100,206.073, +P1,01.09.1996 16:48:00,199.437,201.03,241.404,59.3574,0,74.3001,401.559,60,2396.48,0.000199231,2396.48,4.24679e-13,0,0,0,0,1.772e-13,8.31349e-08,0,0,72526.2,9876.88,9676.19,727.617,1e+06,586901,0.0433349,586901,1.04004e-13,0,0,0,0,-8.76698e+10,-3009.94,-3000,-734100,214.569, +P1,11.09.1996 16:48:00,197.039,198.632,238.997,59.3583,0,74.3164,401.559,60,2395.99,0.00020637,2395.99,4.24592e-13,0,0,0,0,1.772e-13,8.61311e-08,0,0,72526.2,10280.5,10077.8,728.271,1e+06,610861,0.0453986,610860,1.0825e-13,0,0,0,0,-9.12489e+10,-3009.99,-3000,-764100,223.04, +P1,21.09.1996 16:48:00,196.508,198.1,238.574,59.1849,0,74.1159,401.559,60,2395.46,0.000207501,2395.46,4.24497e-13,0,0,0,0,1.772e-13,8.66228e-08,0,0,72526.2,10685.3,10509.8,701.979,1e+06,634815,0.0474736,634815,1.12495e-13,0,0,0,0,-9.48271e+10,-3009.47,-3000,-794100,231.488, +P1,01.10.1996 16:48:00,196.35,197.942,238.431,59.1605,0,74.0882,401.559,60,2395.37,0.000207452,2395.37,4.24481e-13,0,0,0,0,1.772e-13,8.66054e-08,0,0,72526.2,11090.2,10918.7,679.274,1e+06,658769,0.0495481,658769,1.1674e-13,0,0,0,0,-9.84053e+10,-3009.4,-3000,-824100,239.914, +P1,11.10.1996 16:48:00,196.223,197.816,238.327,59.1281,0,74.0485,401.559,60,2395.33,0.000207405,2395.33,4.24475e-13,0,0,0,0,1.772e-13,8.65871e-08,0,0,72526.2,11495.3,11329.7,699.819,1e+06,682722,0.0516221,682722,1.20985e-13,0,0,0,0,-1.01983e+11,-3009.39,-3000,-854100,248.317, +P1,21.10.1996 16:48:00,196.163,197.755,238.245,59.1589,0,74.0879,401.559,60,2395.31,0.00020721,2395.31,4.24471e-13,0,0,0,0,1.772e-13,8.65064e-08,0,0,72526.2,11900.2,11728.6,702.316,1e+06,706675,0.0536942,706675,1.25229e-13,0,0,0,0,-1.05561e+11,-3009.38,-3000,-884100,256.699, +P1,31.10.1996 16:48:00,196.039,197.632,238.141,59.1289,0,74.0509,401.559,60,2395.29,0.000207283,2395.29,4.24468e-13,0,0,0,0,1.772e-13,8.65378e-08,0,0,72526.2,12305.3,12139.6,681.911,1e+06,730628,0.055767,730628,1.29474e-13,0,0,0,0,-1.09139e+11,-3009.39,-3000,-914100,265.058, +P1,10.11.1996 16:48:00,195.97,197.562,238.051,59.1599,0,74.0904,401.559,60,2395.27,0.000207195,2395.27,4.24463e-13,0,0,0,0,1.772e-13,8.65019e-08,0,0,72526.2,12710.1,12538.1,682.43,1e+06,754581,0.057839,754581,1.33719e-13,0,0,0,0,-1.12717e+11,-3009.38,-3000,-944100,273.396, +P1,20.11.1996 16:48:00,194.126,195.719,236.097,59.3207,0,74.2924,401.559,60,2395.25,0.000213041,2395.25,4.2446e-13,0,0,0,0,1.772e-13,8.89431e-08,0,0,72526.2,13113.9,12907.8,693.086,1e+06,778533,0.0599694,778533,1.37963e-13,0,0,0,0,-1.16295e+11,-3009.87,-3000,-974100,281.712, +P1,30.11.1996 16:48:00,191.417,193.008,233.348,59.367,0,74.3638,401.559,60,2394.82,0.000221833,2394.82,4.24383e-13,0,0,0,0,1.772e-13,9.26305e-08,0,0,72526.2,13517.3,13298.8,675.776,1e+06,802481,0.0621877,802481,1.42207e-13,0,0,0,0,-1.19873e+11,-3010.08,-3000,-1.0041e+06,290.005, +P1,10.12.1996 16:48:00,190.783,192.375,232.83,59.1819,0,74.1508,401.559,60,2394.21,0.000223141,2394.21,4.24275e-13,0,0,0,0,1.772e-13,9.32005e-08,0,0,72526.2,13921.9,13741.6,660.181,1e+06,826423,0.0644191,826423,1.4645e-13,0,0,0,0,-1.23449e+11,-3009.49,-3000,-1.0341e+06,298.274, +P1,20.12.1996 16:48:00,190.579,192.171,232.646,59.1504,0,74.1149,401.559,60,2394.09,0.00022309,2394.09,4.24255e-13,0,0,0,0,1.772e-13,9.31837e-08,0,0,72526.2,14326.6,14153,665.781,1e+06,850364,0.06665,850364,1.50693e-13,0,0,0,0,-1.27025e+11,-3009.4,-3000,-1.0641e+06,306.521, +P1,30.12.1996 16:48:00,190.405,191.997,232.476,59.1422,0,74.106,401.559,60,2394.05,0.000223074,2394.05,4.24248e-13,0,0,0,0,1.772e-13,9.31783e-08,0,0,72526.2,14731.4,14559.6,666.851,1e+06,874305,0.0688808,874304,1.54935e-13,0,0,0,0,-1.30601e+11,-3009.4,-3000,-1.0941e+06,314.746, +P1,07.01.1997 07:12:00,189.651,191.242,231.695,59.1764,0,74.1546,401.559,60,2393.87,0.000225359,2393.87,4.24215e-13,0,0,0,0,1.772e-13,9.41401e-08,0,0,72526.2,15038.6,14995.8,648.532,1e+06,892498,0.0705893,892498,1.58159e-13,0,0,0,0,-1.33319e+11,-3009.37,-3000,-1.1169e+06,320.983, +P1,23.01.1997 16:48:00,188.529,190.121,230.558,59.1988,0,74.1842,401.559,60,2393.82,0.000228597,2393.82,4.24206e-13,0,0,0,0,1.772e-13,9.5495e-08,0,0,72526.2,15701.8,15514.7,650.094,1e+06,931757,0.0743176,931757,1.65116e-13,0,0,0,0,-1.39184e+11,-3009.62,-3000,-1.1661e+06,334.398, +P1,02.02.1997 16:48:00,187.435,189.026,229.464,59.1919,0,74.1825,401.559,60,2393.59,0.000232138,2393.59,4.24166e-13,0,0,0,0,1.772e-13,9.69834e-08,0,0,72526.2,16106.2,15919.5,651.443,1e+06,955693,0.076639,955693,1.69358e-13,0,0,0,0,-1.42759e+11,-3009.64,-3000,-1.1961e+06,342.549, +P1,12.02.1997 16:48:00,186.315,187.906,228.342,59.1887,0,74.1861,401.559,60,2393.35,0.000235813,2393.35,4.24123e-13,0,0,0,0,1.772e-13,9.85288e-08,0,0,72526.2,16510.5,16323.1,631.905,1e+06,979626,0.0789971,979626,1.73599e-13,0,0,0,0,-1.46334e+11,-3009.65,-3000,-1.2261e+06,350.678, +P1,22.02.1997 16:48:00,185.099,186.69,227.112,59.2036,0,74.2124,401.559,60,2393.1,0.00023987,2393.1,4.24079e-13,0,0,0,0,1.772e-13,1.00234e-07,0,0,72526.2,16914.8,16721.6,631.895,1e+06,1.00356e+06,0.0813958,1.00356e+06,1.7784e-13,0,0,0,0,-1.49909e+11,-3009.67,-3000,-1.2561e+06,358.786, +P1,04.03.1997 16:48:00,183.91,185.501,225.926,59.1914,0,74.2056,401.559,60,2392.83,0.000243851,2392.83,4.2403e-13,0,0,0,0,1.772e-13,1.01909e-07,0,0,72526.2,17319,17127.4,632.736,1e+06,1.02749e+06,0.0838343,1.02749e+06,1.8208e-13,0,0,0,0,-1.53483e+11,-3009.66,-3000,-1.2861e+06,366.871, +P1,14.03.1997 16:48:00,182.804,184.395,224.818,59.1873,0,74.2085,401.559,60,2392.56,0.000247543,2392.56,4.23984e-13,0,0,0,0,1.772e-13,1.03464e-07,0,0,72526.2,17723.2,17530.9,614.098,1e+06,1.05141e+06,0.0863097,1.05141e+06,1.8632e-13,0,0,0,0,-1.57057e+11,-3009.64,-3000,-1.3161e+06,374.934, +P1,24.03.1997 16:48:00,181.676,183.266,223.683,59.191,0,74.2208,401.559,60,2392.32,0.000251336,2392.32,4.2394e-13,0,0,0,0,1.772e-13,1.0506e-07,0,0,72526.2,18127.4,17932.2,613.695,1e+06,1.07533e+06,0.0888231,1.07533e+06,1.90559e-13,0,0,0,0,-1.60631e+11,-3009.64,-3000,-1.3461e+06,382.975, +P1,03.04.1997 16:48:00,180.731,182.321,222.746,59.1726,0,74.2056,401.559,60,2392.07,0.000254468,2392.07,4.23896e-13,0,0,0,0,1.772e-13,1.0638e-07,0,0,72526.2,18531.7,18340.2,612.758,1e+06,1.09925e+06,0.0913678,1.09925e+06,1.94798e-13,0,0,0,0,-1.64204e+11,-3009.59,-3000,-1.3761e+06,390.994, +P1,13.04.1997 16:48:00,179.774,181.364,221.79,59.1669,0,74.2048,401.559,60,2391.86,0.000257657,2391.86,4.23859e-13,0,0,0,0,1.772e-13,1.07722e-07,0,0,72526.2,18935.9,18744.6,614.254,1e+06,1.12317e+06,0.0939443,1.12317e+06,1.99037e-13,0,0,0,0,-1.67777e+11,-3009.59,-3000,-1.4061e+06,398.992, +P1,23.04.1997 16:48:00,178.871,180.46,220.885,59.1629,0,74.2064,401.559,60,2391.65,0.000260662,2391.65,4.23822e-13,0,0,0,0,1.772e-13,1.08988e-07,0,0,72526.2,19340.2,19148.5,585.324,1e+06,1.14709e+06,0.096551,1.14709e+06,2.03275e-13,0,0,0,0,-1.71349e+11,-3009.58,-3000,-1.4361e+06,406.969, +P1,03.05.1997 16:48:00,178.228,179.817,220.26,59.1322,0,74.1741,401.559,60,2391.45,0.000262712,2391.45,4.23786e-13,0,0,0,0,1.772e-13,1.09855e-07,0,0,72526.2,19744.6,19561.3,593.447,1e+06,1.171e+06,0.0991781,1.171e+06,2.07513e-13,0,0,0,0,-1.74922e+11,-3009.5,-3000,-1.4661e+06,414.924, +P1,13.05.1997 16:48:00,177.363,178.952,219.38,59.1502,0,74.2009,401.559,60,2391.31,0.000265603,2391.31,4.23762e-13,0,0,0,0,1.772e-13,1.1107e-07,0,0,72526.2,20148.9,19958.5,594.545,1e+06,1.19492e+06,0.101834,1.19492e+06,2.11751e-13,0,0,0,0,-1.78494e+11,-3009.57,-3000,-1.4961e+06,422.857, +P1,23.05.1997 16:48:00,176.654,178.244,218.688,59.1214,0,74.1709,401.559,60,2391.11,0.000267919,2391.11,4.23727e-13,0,0,0,0,1.772e-13,1.12048e-07,0,0,72526.2,20553.3,20371,565.363,1e+06,1.21883e+06,0.104513,1.21883e+06,2.15988e-13,0,0,0,0,-1.82066e+11,-3009.52,-3000,-1.5261e+06,430.77, +P1,02.06.1997 16:48:00,175.986,177.576,218.003,59.1425,0,74.2021,401.559,60,2390.96,0.000270096,2390.96,4.237e-13,0,0,0,0,1.772e-13,1.12965e-07,0,0,72526.2,20957.6,20766.8,575.014,1e+06,1.24274e+06,0.107214,1.24274e+06,2.20225e-13,0,0,0,0,-1.85637e+11,-3009.51,-3000,-1.5561e+06,438.661, +P1,12.06.1997 16:48:00,175.24,176.83,217.259,59.1361,0,74.1988,401.559,60,2390.81,0.00027257,2390.81,4.23673e-13,0,0,0,0,1.772e-13,1.14007e-07,0,0,72526.2,21361.9,21172,574.885,1e+06,1.26665e+06,0.10994,1.26665e+06,2.24462e-13,0,0,0,0,-1.89208e+11,-3009.53,-3000,-1.5861e+06,446.531, +P1,22.06.1997 16:48:00,174.529,176.119,216.563,59.1104,0,74.1716,401.559,60,2390.65,0.000274922,2390.65,4.23644e-13,0,0,0,0,1.772e-13,1.14999e-07,0,0,72526.2,21766.3,21584.2,556.758,1e+06,1.29055e+06,0.112689,1.29055e+06,2.28698e-13,0,0,0,0,-1.9278e+11,-3009.52,-3000,-1.6161e+06,454.38, +P1,02.07.1997 16:48:00,173.579,175.17,215.617,59.1019,0,74.1656,401.559,60,2390.49,0.000278171,2390.49,4.23617e-13,0,0,0,0,1.772e-13,1.16366e-07,0,0,72526.2,22170.8,21990.4,553.798,1e+06,1.31446e+06,0.115471,1.31446e+06,2.32934e-13,0,0,0,0,-1.9635e+11,-3009.59,-3000,-1.6461e+06,462.208, +P1,12.07.1997 16:48:00,172.723,174.314,214.748,59.1157,0,74.1895,401.559,60,2390.28,0.000281072,2390.28,4.2358e-13,0,0,0,0,1.772e-13,1.1759e-07,0,0,72526.2,22575.1,22387.7,533.966,1e+06,1.33836e+06,0.118282,1.33836e+06,2.3717e-13,0,0,0,0,-1.99921e+11,-3009.56,-3000,-1.6761e+06,470.015, +P1,22.07.1997 16:48:00,171.974,173.566,214.004,59.105,0,74.182,401.559,60,2390.09,0.00028358,2390.09,4.23546e-13,0,0,0,0,1.772e-13,1.18648e-07,0,0,72526.2,22979.5,22794.3,556.479,1e+06,1.36226e+06,0.121117,1.36226e+06,2.41405e-13,0,0,0,0,-2.03491e+11,-3009.53,-3000,-1.7061e+06,477.802, +P1,01.08.1997 16:48:00,171.4,172.994,213.432,59.1003,0,74.1813,401.559,60,2389.93,0.000285451,2389.93,4.23517e-13,0,0,0,0,1.772e-13,1.19439e-07,0,0,72526.2,23383.9,23199,520.819,1e+06,1.38616e+06,0.123972,1.38616e+06,2.45641e-13,0,0,0,0,-2.07061e+11,-3009.48,-3000,-1.7361e+06,485.567, +P1,11.08.1997 16:48:00,170.965,172.56,213.011,59.079,0,74.1585,401.559,60,2389.8,0.000286811,2389.8,4.23494e-13,0,0,0,0,1.772e-13,1.20015e-07,0,0,72526.2,23788.4,23610.6,536.965,1e+06,1.41006e+06,0.12684,1.41006e+06,2.49876e-13,0,0,0,0,-2.10631e+11,-3009.44,-3000,-1.7661e+06,493.311, +P1,21.08.1997 16:48:00,170.252,171.848,212.289,59.0921,0,74.1777,401.559,60,2389.71,0.000289214,2389.71,4.23478e-13,0,0,0,0,1.772e-13,1.21025e-07,0,0,72526.2,24192.8,24008.9,537.945,1e+06,1.43395e+06,0.129732,1.43395e+06,2.5411e-13,0,0,0,0,-2.14201e+11,-3009.52,-3000,-1.7961e+06,501.036, +P1,31.08.1997 16:48:00,169.642,171.241,211.705,59.0531,0,74.1337,401.559,60,2389.55,0.000291232,2389.55,4.2345e-13,0,0,0,0,1.772e-13,1.21878e-07,0,0,72526.2,24597.4,24427.8,516.809,1e+06,1.45785e+06,0.132644,1.45785e+06,2.58345e-13,0,0,0,0,-2.1777e+11,-3009.49,-3000,-1.8261e+06,508.739, +P1,10.09.1997 16:48:00,169.051,170.651,211.112,59.0549,0,74.14,401.559,60,2389.42,0.000293189,2389.42,4.23427e-13,0,0,0,0,1.772e-13,1.22703e-07,0,0,72526.2,25002.1,24830.4,518.758,1e+06,1.48174e+06,0.135576,1.48174e+06,2.62579e-13,0,0,0,0,-2.21339e+11,-3009.49,-3000,-1.8561e+06,516.422, +P1,20.09.1997 16:48:00,168.265,169.867,210.336,59.0398,0,74.1251,401.559,60,2389.29,0.000295872,2389.29,4.23403e-13,0,0,0,0,1.772e-13,1.23833e-07,0,0,72526.2,25406.7,25240,518.687,1e+06,1.50564e+06,0.138535,1.50564e+06,2.66813e-13,0,0,0,0,-2.24908e+11,-3009.55,-3000,-1.8861e+06,524.085, +P1,30.09.1997 16:48:00,167.563,169.167,209.658,59.0028,0,74.084,401.559,60,2389.12,0.000298244,2389.12,4.23373e-13,0,0,0,0,1.772e-13,1.24835e-07,0,0,72526.2,25811.7,25659,487.193,1e+06,1.52953e+06,0.141517,1.52953e+06,2.71047e-13,0,0,0,0,-2.28477e+11,-3009.53,-3000,-1.9161e+06,531.727, +P1,10.10.1997 16:48:00,166.624,168.23,208.733,58.9825,0,74.0631,401.559,60,2388.97,0.000301504,2388.97,4.23347e-13,0,0,0,0,1.772e-13,1.26207e-07,0,0,72526.2,26216.7,26071.3,499.922,1e+06,1.55342e+06,0.144533,1.55342e+06,2.7528e-13,0,0,0,0,-2.32046e+11,-3009.6,-3000,-1.9461e+06,539.349, +P1,20.10.1997 16:48:00,165.815,167.424,207.936,58.9638,0,74.046,401.559,60,2388.76,0.000304276,2388.76,4.2331e-13,0,0,0,0,1.772e-13,1.27378e-07,0,0,72526.2,26621.8,26482.4,499.725,1e+06,1.57731e+06,0.147575,1.57731e+06,2.79513e-13,0,0,0,0,-2.35614e+11,-3009.56,-3000,-1.9761e+06,546.95, +P1,30.10.1997 16:48:00,165.117,166.728,207.279,58.9036,0,73.9758,401.559,60,2388.59,0.000306646,2388.59,4.23279e-13,0,0,0,0,1.772e-13,1.2838e-07,0,0,72526.2,27027.3,26913.1,482.777,1e+06,1.60119e+06,0.150642,1.60119e+06,2.83746e-13,0,0,0,0,-2.39182e+11,-3009.54,-3000,-2.0061e+06,554.53, +P1,09.11.1997 16:48:00,164.201,165.815,206.378,58.8819,0,73.9531,401.559,60,2388.44,0.000309779,2388.44,4.23254e-13,0,0,0,0,1.772e-13,1.29699e-07,0,0,72526.2,27433,27327,463.204,1e+06,1.62508e+06,0.153739,1.62508e+06,2.87979e-13,0,0,0,0,-2.4275e+11,-3009.61,-3000,-2.0361e+06,562.091, +P1,19.11.1997 16:48:00,163.421,165.038,205.627,58.8401,0,73.9067,401.559,60,2388.24,0.000312334,2388.24,4.23218e-13,0,0,0,0,1.772e-13,1.3078e-07,0,0,72526.2,27838.8,27750,480.771,1e+06,1.64896e+06,0.156863,1.64896e+06,2.92211e-13,0,0,0,0,-2.46317e+11,-3009.58,-3000,-2.0661e+06,569.631, +P1,29.11.1997 16:48:00,162.467,164.087,204.712,58.7839,0,73.8412,401.559,60,2388.08,0.000315456,2388.08,4.23189e-13,0,0,0,0,1.772e-13,1.32096e-07,0,0,72526.2,28245.1,28180.9,480.325,1e+06,1.67284e+06,0.160017,1.67284e+06,2.96443e-13,0,0,0,0,-2.49885e+11,-3009.64,-3000,-2.0961e+06,577.151, +P1,09.12.1997 16:48:00,161.722,163.346,204.02,58.7072,0,73.7512,401.558,60,2387.88,0.000317942,2387.88,4.23153e-13,0,0,0,0,1.772e-13,1.33148e-07,0,0,72526.2,28651.8,28622,462.764,1e+06,1.69672e+06,0.163197,1.69672e+06,3.00674e-13,0,0,0,0,-2.53452e+11,-3009.59,-3000,-2.1261e+06,584.651, +P1,19.12.1997 16:48:00,160.974,162.602,203.272,58.7083,0,73.7572,401.558,60,2387.72,0.000320471,2387.72,4.23126e-13,0,0,0,0,1.772e-13,1.34216e-07,0,0,72526.2,29058.5,29026.4,463.067,1e+06,1.72059e+06,0.166401,1.72059e+06,3.04906e-13,0,0,0,0,-2.57018e+11,-3009.61,-3000,-2.1561e+06,592.131, +P1,29.12.1997 16:48:00,160.265,161.896,202.636,58.6054,0,73.633,401.558,60,2387.56,0.000322887,2387.56,4.23097e-13,0,0,0,0,1.772e-13,1.35237e-07,0,0,72526.2,29465.9,29482.8,459.224,1e+06,1.74447e+06,0.16963,1.74447e+06,3.09137e-13,0,0,0,0,-2.60585e+11,-3009.6,-3000,-2.1861e+06,599.591, +P1,08.01.1998 16:48:00,159.585,161.22,202.007,58.535,0,73.5489,401.558,60,2387.42,0.000325203,2387.42,4.23072e-13,0,0,0,0,1.772e-13,1.36216e-07,0,0,72526.2,29873.8,29924.4,441.033,1e+06,1.76834e+06,0.172882,1.76834e+06,3.13367e-13,0,0,0,0,-2.64151e+11,-3009.62,-3000,-2.2161e+06,607.031, +P1,18.01.1998 16:48:00,158.811,160.451,201.273,58.4807,0,73.485,401.558,60,2387.28,0.000327793,2387.28,4.23048e-13,0,0,0,0,1.772e-13,1.37308e-07,0,0,72526.2,30282,30358.6,443.875,1e+06,1.79222e+06,0.17616,1.79222e+06,3.17598e-13,0,0,0,0,-2.67717e+11,-3009.66,-3000,-2.2461e+06,614.451, +P1,28.01.1998 16:48:00,158.112,159.756,200.644,58.3809,0,73.3645,401.558,60,2387.12,0.000330101,2387.12,4.23019e-13,0,0,0,0,1.772e-13,1.38284e-07,0,0,72526.2,30690.9,30817.3,414.22,1e+06,1.81609e+06,0.179461,1.81609e+06,3.21828e-13,0,0,0,0,-2.71283e+11,-3009.66,-3000,-2.2761e+06,621.851, +P1,07.02.1998 16:48:00,157.298,158.947,199.888,58.3036,0,73.2716,401.558,60,2386.98,0.000332762,2386.98,4.22994e-13,0,0,0,0,1.772e-13,1.39407e-07,0,0,72526.2,31100.3,31265.8,426.818,1e+06,1.83996e+06,0.182789,1.83996e+06,3.26058e-13,0,0,0,0,-2.74849e+11,-3009.71,-3000,-2.3061e+06,629.232, +P1,17.02.1998 16:48:00,156.23,157.884,198.904,58.1861,0,73.129,401.558,60,2386.81,0.000336257,2386.81,4.22965e-13,0,0,0,0,1.772e-13,1.40881e-07,0,0,72526.2,31510.5,31737,425.133,1e+06,1.86383e+06,0.186151,1.86383e+06,3.30288e-13,0,0,0,0,-2.78414e+11,-3009.8,-3000,-2.3361e+06,636.593, +P1,27.02.1998 16:48:00,155.459,157.117,198.221,58.0624,0,72.9802,401.558,60,2386.6,0.000338794,2386.6,4.22926e-13,0,0,0,0,1.772e-13,1.41957e-07,0,0,72526.2,31921.6,32212.8,400.64,1e+06,1.88769e+06,0.189539,1.88769e+06,3.34517e-13,0,0,0,0,-2.81979e+11,-3009.75,-3000,-2.3661e+06,643.934, +P1,09.03.1998 16:48:00,154.269,155.934,197.085,57.9922,0,72.8965,401.558,60,2386.45,0.00034266,2386.45,4.229e-13,0,0,0,0,1.772e-13,1.43586e-07,0,0,72526.2,32333.1,32661.3,408.629,1e+06,1.91156e+06,0.192966,1.91156e+06,3.38746e-13,0,0,0,0,-2.85544e+11,-3009.89,-3000,-2.3961e+06,651.255, +P1,19.03.1998 16:48:00,153.04,154.709,195.946,57.865,0,72.7443,401.558,60,2386.2,0.000346608,2386.2,4.22855e-13,0,0,0,0,1.772e-13,1.45256e-07,0,0,72526.2,32745.4,33142,407.195,1e+06,1.93542e+06,0.196432,1.93542e+06,3.42974e-13,0,0,0,0,-2.89108e+11,-3009.93,-3000,-2.4261e+06,658.556, +P1,29.03.1998 16:48:00,151.887,153.561,194.896,57.7217,0,72.5718,401.558,60,2385.95,0.000350286,2385.94,4.22811e-13,0,0,0,0,1.772e-13,1.46812e-07,0,0,72526.2,33158.8,33634.1,383.064,1e+06,1.95928e+06,0.199935,1.95928e+06,3.47203e-13,0,0,0,0,-2.92672e+11,-3009.93,-3000,-2.4561e+06,665.838, +P1,08.04.1998 16:48:00,150.428,152.109,193.521,57.6087,0,72.4367,401.558,60,2385.71,0.00035492,2385.71,4.2277e-13,0,0,0,0,1.772e-13,1.48769e-07,0,0,72526.2,33572.9,34111,383.299,1e+06,1.98314e+06,0.203484,1.98313e+06,3.5143e-13,0,0,0,0,-2.96236e+11,-3010.05,-3000,-2.4861e+06,673.1, +P1,18.04.1998 16:48:00,149.026,150.712,192.207,57.4858,0,72.2914,401.558,60,2385.41,0.000359348,2385.41,4.22716e-13,0,0,0,0,1.772e-13,1.50644e-07,0,0,72526.2,33987.9,34594.5,389.429,1e+06,2.00699e+06,0.207078,2.00699e+06,3.55657e-13,0,0,0,0,-2.99799e+11,-3010.07,-3000,-2.5161e+06,680.342, +P1,28.04.1998 16:48:00,147.279,148.971,190.549,57.3659,0,72.1493,401.558,60,2385.12,0.000364858,2385.12,4.22665e-13,0,0,0,0,1.772e-13,1.52973e-07,0,0,72526.2,34403.6,35078.4,361.259,1e+06,2.03084e+06,0.210726,2.03084e+06,3.59884e-13,0,0,0,0,-3.03362e+11,-3010.2,-3000,-2.5461e+06,687.565, +P1,08.05.1998 16:48:00,145.748,147.446,189.163,57.1651,0,71.9077,401.558,60,2384.76,0.000369664,2384.76,4.22601e-13,0,0,0,0,1.772e-13,1.55011e-07,0,0,72526.2,34820.8,35613.4,372.413,1e+06,2.05469e+06,0.214423,2.05469e+06,3.6411e-13,0,0,0,0,-3.06924e+11,-3010.17,-3000,-2.5761e+06,694.768, +P1,18.05.1998 16:48:00,145.07,146.775,188.676,56.9069,0,71.5922,401.558,60,2384.45,0.000371745,2384.45,4.22547e-13,0,0,0,0,1.772e-13,1.55904e-07,0,0,72526.2,35239.8,36189.4,369.924,1e+06,2.07853e+06,0.21814,2.07853e+06,3.68336e-13,0,0,0,0,-3.10486e+11,-3009.97,-3000,-2.6061e+06,701.95, +P1,28.05.1998 16:48:00,144.381,146.092,188.134,56.713,0,71.3514,401.558,60,2384.35,0.000373885,2384.35,4.22528e-13,0,0,0,0,1.772e-13,1.56808e-07,0,0,72526.2,35660.2,36732,341.322,1e+06,2.10238e+06,0.221879,2.10238e+06,3.72561e-13,0,0,0,0,-3.14048e+11,-3010.03,-3000,-2.6361e+06,709.114, +P1,07.06.1998 16:48:00,143.73,145.449,187.635,56.5177,0,71.1092,401.558,60,2384.23,0.000375892,2384.23,4.22507e-13,0,0,0,0,1.772e-13,1.57658e-07,0,0,72526.2,36082.1,37278.9,337.886,1e+06,2.12622e+06,0.225638,2.12622e+06,3.76786e-13,0,0,0,0,-3.17609e+11,-3010.07,-3000,-2.6661e+06,716.259, +P1,17.06.1998 16:48:00,142.817,144.542,186.893,56.2947,0,70.8319,401.558,60,2384.12,0.000378735,2384.12,4.22487e-13,0,0,0,0,1.772e-13,1.58857e-07,0,0,72526.2,36505.6,37848.4,343.361,1e+06,2.15006e+06,0.229425,2.15006e+06,3.81011e-13,0,0,0,0,-3.21171e+11,-3010.19,-3000,-2.6961e+06,723.385, +P1,27.06.1998 16:48:00,141.964,143.696,186.209,56.0765,0,70.5623,401.558,60,2383.95,0.000381369,2383.95,4.22458e-13,0,0,0,0,1.772e-13,1.59973e-07,0,0,72526.2,36930.7,38418.2,335.264,1e+06,2.1739e+06,0.233239,2.1739e+06,3.85235e-13,0,0,0,0,-3.24732e+11,-3010.22,-3000,-2.7261e+06,730.492, +P1,07.07.1998 16:48:00,141.091,142.831,185.499,55.8691,0,70.3056,401.558,60,2383.8,0.000384067,2383.8,4.22431e-13,0,0,0,0,1.772e-13,1.61115e-07,0,0,72526.2,37357.4,38985.1,333.695,1e+06,2.19774e+06,0.23708,2.19774e+06,3.8946e-13,0,0,0,0,-3.28293e+11,-3010.28,-3000,-2.7561e+06,737.579, +P1,17.07.1998 16:48:00,140.242,141.989,184.807,55.6696,0,70.0591,401.558,60,2383.65,0.000386684,2383.65,4.22404e-13,0,0,0,0,1.772e-13,1.62224e-07,0,0,72526.2,37785.6,39550.4,333.079,1e+06,2.22157e+06,0.240947,2.22157e+06,3.93684e-13,0,0,0,0,-3.31853e+11,-3010.32,-3000,-2.7861e+06,744.648, +P1,27.07.1998 16:48:00,139.159,140.914,183.911,55.4337,0,69.7668,401.558,60,2383.5,0.000390047,2383.5,4.22377e-13,0,0,0,0,1.772e-13,1.63645e-07,0,0,72526.2,38215.6,40146.1,317.534,1e+06,2.24541e+06,0.244847,2.24541e+06,3.97907e-13,0,0,0,0,-3.35414e+11,-3010.43,-3000,-2.8161e+06,751.698, +P1,06.08.1998 16:48:00,137.98,139.744,182.939,55.1753,0,69.4473,401.558,60,2383.3,0.000393703,2383.3,4.22342e-13,0,0,0,0,1.772e-13,1.65193e-07,0,0,72526.2,38647.5,40762.8,315.539,1e+06,2.26924e+06,0.248784,2.26924e+06,4.02131e-13,0,0,0,0,-3.38974e+11,-3010.52,-3000,-2.8461e+06,758.729, +P1,16.08.1998 16:48:00,136.695,138.466,181.841,54.9417,0,69.1595,401.558,60,2383.09,0.000397697,2383.08,4.22304e-13,0,0,0,0,1.772e-13,1.66883e-07,0,0,72526.2,39081.3,41366.1,315.01,1e+06,2.29307e+06,0.252761,2.29307e+06,4.06354e-13,0,0,0,0,-3.42534e+11,-3010.61,-3000,-2.8761e+06,765.741, +P1,26.08.1998 16:48:00,135.604,137.384,180.977,54.6617,0,68.8139,401.558,60,2382.84,0.000401063,2382.84,4.22261e-13,0,0,0,0,1.772e-13,1.68313e-07,0,0,72526.2,39517.2,42009.8,299.183,1e+06,2.3169e+06,0.256772,2.3169e+06,4.10577e-13,0,0,0,0,-3.46093e+11,-3010.61,-3000,-2.9061e+06,772.735, +P1,05.09.1998 16:48:00,134.283,136.071,179.872,54.3973,0,68.4866,401.558,60,2382.65,0.000405173,2382.65,4.22228e-13,0,0,0,0,1.772e-13,1.70051e-07,0,0,72526.2,39955.2,42648.6,297.53,1e+06,2.34073e+06,0.260823,2.34073e+06,4.14799e-13,0,0,0,0,-3.49652e+11,-3010.74,-3000,-2.9361e+06,779.709, +P1,15.09.1998 16:48:00,132.697,134.493,178.507,54.1277,0,68.1541,401.558,60,2382.41,0.000410116,2382.41,4.22185e-13,0,0,0,0,1.772e-13,1.72143e-07,0,0,72526.2,40395.3,43296.8,296.946,1e+06,2.36455e+06,0.264924,2.36455e+06,4.19021e-13,0,0,0,0,-3.53211e+11,-3010.88,-3000,-2.9661e+06,786.664, +P1,25.09.1998 16:48:00,131.106,132.911,177.145,53.852,0,67.8154,401.558,60,2382.11,0.000415064,2382.11,4.22132e-13,0,0,0,0,1.772e-13,1.74242e-07,0,0,72526.2,40837.7,43955.4,281.284,1e+06,2.38837e+06,0.269075,2.38837e+06,4.23242e-13,0,0,0,0,-3.56769e+11,-3010.95,-3000,-2.9961e+06,793.601, +P1,05.10.1998 16:48:00,129.473,131.287,175.789,53.521,0,67.4071,401.558,60,2381.81,0.000420149,2381.81,4.22079e-13,0,0,0,0,1.772e-13,1.76399e-07,0,0,72526.2,41282.7,44666.7,279.205,1e+06,2.41219e+06,0.273277,2.41219e+06,4.27463e-13,0,0,0,0,-3.60327e+11,-3011.04,-3000,-3.0261e+06,800.518, +P1,15.10.1998 16:48:00,127.955,129.776,174.543,53.1982,0,67.0089,401.558,60,2381.52,0.000424866,2381.52,4.22026e-13,0,0,0,0,1.772e-13,1.78402e-07,0,0,72526.2,41730.4,45379.8,278.57,1e+06,2.43601e+06,0.277525,2.436e+06,4.31683e-13,0,0,0,0,-3.63885e+11,-3011.09,-3000,-3.0561e+06,807.417, +P1,25.10.1998 16:48:00,126.454,128.285,173.321,52.8742,0,66.6085,401.558,60,2381.24,0.000429531,2381.24,4.21978e-13,0,0,0,0,1.772e-13,1.80381e-07,0,0,72526.2,42180.7,46103,261.954,1e+06,2.45982e+06,0.281821,2.45982e+06,4.35903e-13,0,0,0,0,-3.67442e+11,-3011.16,-3000,-3.0861e+06,814.297, +P1,04.11.1998 16:48:00,125.208,127.047,172.364,52.5403,0,66.1953,401.558,60,2380.97,0.000433381,2380.97,4.2193e-13,0,0,0,0,1.772e-13,1.82018e-07,0,0,72526.2,42633.9,46843.9,242.038,1e+06,2.48363e+06,0.286154,2.48363e+06,4.40122e-13,0,0,0,0,-3.70998e+11,-3011.18,-3000,-3.1161e+06,821.158, +P1,14.11.1998 16:48:00,123.68,125.527,171.086,52.2567,0,65.8437,401.558,60,2380.76,0.000438142,2380.76,4.21893e-13,0,0,0,0,1.772e-13,1.84034e-07,0,0,72526.2,43089.5,47549.6,260.539,1e+06,2.50743e+06,0.290536,2.50743e+06,4.44341e-13,0,0,0,0,-3.74555e+11,-3011.34,-3000,-3.1461e+06,828.001, +P1,24.11.1998 16:48:00,122.038,123.894,169.726,51.9393,0,65.4517,401.558,60,2380.48,0.000443254,2380.48,4.21842e-13,0,0,0,0,1.772e-13,1.86204e-07,0,0,72526.2,43547.8,48292.7,244.41,1e+06,2.53124e+06,0.294968,2.53124e+06,4.48559e-13,0,0,0,0,-3.7811e+11,-3011.44,-3000,-3.1761e+06,834.825, +P1,04.12.1998 16:48:00,120.492,122.356,168.502,51.5786,0,65.0055,401.558,60,2380.18,0.00044806,2380.18,4.21789e-13,0,0,0,0,1.772e-13,1.88247e-07,0,0,72526.2,44009.3,49085.7,242.632,1e+06,2.55504e+06,0.299449,2.55504e+06,4.52777e-13,0,0,0,0,-3.81666e+11,-3011.49,-3000,-3.2061e+06,841.63, +P1,14.12.1998 16:48:00,119.006,120.878,167.338,51.2251,0,64.5673,401.558,60,2379.9,0.000452678,2379.9,4.2174e-13,0,0,0,0,1.772e-13,1.90209e-07,0,0,72526.2,44473.9,49883.4,241.658,1e+06,2.57884e+06,0.303976,2.57884e+06,4.56995e-13,0,0,0,0,-3.85221e+11,-3011.57,-3000,-3.2361e+06,848.417, +P1,24.12.1998 16:48:00,117.551,119.433,166.209,50.8727,0,64.1302,401.558,60,2379.64,0.000457195,2379.64,4.21694e-13,0,0,0,0,1.772e-13,1.92128e-07,0,0,72526.2,44941.6,50691.2,225.853,1e+06,2.60264e+06,0.308548,2.60264e+06,4.61212e-13,0,0,0,0,-3.88776e+11,-3011.65,-3000,-3.2661e+06,855.185, +P1,03.01.1999 16:48:00,116.178,118.068,165.164,50.522,0,63.6948,401.558,60,2379.39,0.000461454,2379.39,4.21649e-13,0,0,0,0,1.772e-13,1.93938e-07,0,0,72526.2,45412.6,51508.7,220.926,1e+06,2.62643e+06,0.313162,2.62643e+06,4.65428e-13,0,0,0,0,-3.9233e+11,-3011.71,-3000,-3.2961e+06,861.935, +P1,13.01.1999 16:48:00,114.72,116.618,164.053,50.156,0,63.2395,401.558,60,2379.16,0.000465989,2379.16,4.21608e-13,0,0,0,0,1.772e-13,1.95863e-07,0,0,72526.2,45887,52353.9,209.344,1e+06,2.65022e+06,0.317822,2.65022e+06,4.69644e-13,0,0,0,0,-3.95884e+11,-3011.83,-3000,-3.3261e+06,868.667, +P1,23.01.1999 16:48:00,113.472,115.38,163.142,49.8066,0,62.8056,401.558,60,2378.91,0.000469846,2378.91,4.21564e-13,0,0,0,0,1.772e-13,1.97505e-07,0,0,72526.2,46364.6,53193.2,204.837,1e+06,2.67401e+06,0.32252,2.67401e+06,4.7386e-13,0,0,0,0,-3.99437e+11,-3011.87,-3000,-3.3561e+06,875.381, +P1,02.02.1999 16:48:00,112.202,114.117,162.164,49.5086,0,62.4351,401.558,60,2378.71,0.000473784,2378.71,4.21528e-13,0,0,0,0,1.772e-13,1.99177e-07,0,0,72526.2,46845.1,53989.3,206.798,1e+06,2.6978e+06,0.327258,2.6978e+06,4.78075e-13,0,0,0,0,-4.02991e+11,-3011.97,-3000,-3.3861e+06,882.076, +P1,12.02.1999 16:48:00,110.844,112.768,161.192,49.1179,0,61.9481,401.558,60,2378.49,0.000478,2378.49,4.2149e-13,0,0,0,0,1.772e-13,2.00968e-07,0,0,72526.2,47329.3,54898,185.622,1e+06,2.72158e+06,0.332038,2.72158e+06,4.8229e-13,0,0,0,0,-4.06543e+11,-3012.07,-3000,-3.4161e+06,888.754, +P1,22.02.1999 16:48:00,109.712,111.645,160.461,48.7189,0,61.4505,401.558,60,2378.27,0.000481492,2378.27,4.21451e-13,0,0,0,0,1.772e-13,2.02455e-07,0,0,72526.2,47817.5,55830.7,171.227,1e+06,2.74537e+06,0.336853,2.74537e+06,4.86505e-13,0,0,0,0,-4.10096e+11,-3012.12,-3000,-3.4461e+06,895.413, +P1,04.03.1999 16:48:00,108.702,110.643,159.821,48.3576,0,60.9989,401.558,60,2378.11,0.000484603,2378.11,4.21422e-13,0,0,0,0,1.772e-13,2.03777e-07,0,0,72526.2,48309.2,56735.8,188.669,1e+06,2.76915e+06,0.341699,2.76915e+06,4.90719e-13,0,0,0,0,-4.13648e+11,-3012.19,-3000,-3.4761e+06,902.055, +P1,14.03.1999 16:48:00,107.389,109.34,158.893,47.988,0,60.5363,401.558,60,2377.97,0.00048869,2377.97,4.21397e-13,0,0,0,0,1.772e-13,2.05508e-07,0,0,72526.2,48804.8,57664.9,173.302,1e+06,2.79293e+06,0.346586,2.79293e+06,4.94933e-13,0,0,0,0,-4.17201e+11,-3012.38,-3000,-3.5061e+06,908.679, +P1,24.03.1999 16:48:00,106.357,108.316,158.264,47.6038,0,60.0569,401.558,60,2377.76,0.000491868,2377.76,4.2136e-13,0,0,0,0,1.772e-13,2.06862e-07,0,0,72526.2,49304.3,58624.7,171.35,1e+06,2.8167e+06,0.351505,2.8167e+06,4.99146e-13,0,0,0,0,-4.20752e+11,-3012.41,-3000,-3.5361e+06,915.285, +P1,03.04.1999 16:48:00,105.229,107.197,157.522,47.245,0,59.6078,401.558,60,2377.62,0.000495363,2377.62,4.21335e-13,0,0,0,0,1.772e-13,2.08344e-07,0,0,72526.2,49807.5,59569.7,171.247,1e+06,2.84048e+06,0.356458,2.84048e+06,5.0336e-13,0,0,0,0,-4.24304e+11,-3012.55,-3000,-3.5661e+06,921.873, +P1,13.04.1999 16:48:00,103.981,105.958,156.691,46.8618,0,59.1284,401.557,60,2377.45,0.000499241,2377.45,4.21306e-13,0,0,0,0,1.772e-13,2.0999e-07,0,0,72526.2,50314.8,60560,137.931,1e+06,2.86425e+06,0.361451,2.86425e+06,5.07573e-13,0,0,0,0,-4.27855e+11,-3012.69,-3000,-3.5961e+06,928.444, +P1,23.04.1999 16:48:00,102.965,104.95,156.062,46.5112,0,58.6906,401.557,60,2377.27,0.000502369,2377.27,4.21273e-13,0,0,0,0,1.772e-13,2.11322e-07,0,0,72526.2,50826,61522.8,136.099,1e+06,2.88803e+06,0.366474,2.88803e+06,5.11786e-13,0,0,0,0,-4.31406e+11,-3012.74,-3000,-3.6261e+06,934.998, +P1,03.05.1999 16:48:00,101.705,103.699,155.251,46.1113,0,58.1894,401.557,60,2377.13,0.000506291,2377.13,4.21249e-13,0,0,0,0,1.772e-13,2.12984e-07,0,0,72526.2,51341.5,62568.3,153.084,1e+06,2.9118e+06,0.371537,2.9118e+06,5.15998e-13,0,0,0,0,-4.34957e+11,-3012.92,-3000,-3.6561e+06,941.533, +P1,13.05.1999 16:48:00,100.615,102.618,154.587,45.7379,0,57.7225,401.557,60,2376.95,0.000509662,2376.95,4.21217e-13,0,0,0,0,1.772e-13,2.14419e-07,0,0,72526.2,51861.2,63594,120.805,1e+06,2.93557e+06,0.376634,2.93557e+06,5.2021e-13,0,0,0,0,-4.38508e+11,-3013,-3000,-3.6861e+06,948.052, +P1,23.05.1999 16:48:00,99.9407,101.951,154.336,45.3718,0,57.2642,401.557,60,2376.8,0.000511703,2376.8,4.2119e-13,0,0,0,0,1.772e-13,2.15291e-07,0,0,72526.2,52385,64626.9,136.755,1e+06,2.95934e+06,0.381751,2.95934e+06,5.24422e-13,0,0,0,0,-4.42058e+11,-3013,-3000,-3.7161e+06,954.552, +P1,02.06.1999 16:48:00,98.7613,100.781,153.63,44.9725,0,56.7615,401.557,60,2376.74,0.000515385,2376.74,4.2118e-13,0,0,0,0,1.772e-13,2.16845e-07,0,0,72526.2,52913.5,65727.7,122.257,1e+06,2.9831e+06,0.386905,2.9831e+06,5.28634e-13,0,0,0,0,-4.45609e+11,-3013.26,-3000,-3.7461e+06,961.036, +P1,12.06.1999 16:48:00,97.6514,99.6802,152.898,44.6576,0,56.3677,401.557,60,2376.59,0.00051882,2376.59,4.21153e-13,0,0,0,0,1.772e-13,2.18305e-07,0,0,72526.2,53445.7,66719.1,120.721,1e+06,3.00687e+06,0.392093,3.00687e+06,5.32846e-13,0,0,0,0,-4.49159e+11,-3013.37,-3000,-3.7761e+06,967.503, +P1,22.06.1999 16:48:00,96.5556,98.5925,152.3,44.2478,0,55.8543,401.557,60,2376.42,0.000522212,2376.42,4.21124e-13,0,0,0,0,1.772e-13,2.19747e-07,0,0,72526.2,53982.8,67869.4,118.091,1e+06,3.03063e+06,0.397315,3.03063e+06,5.37057e-13,0,0,0,0,-4.52709e+11,-3013.47,-3000,-3.8061e+06,973.952, +P1,02.07.1999 16:48:00,95.4082,97.4538,151.67,43.8298,0,55.3298,401.557,60,2376.29,0.00052578,2376.29,4.211e-13,0,0,0,0,1.772e-13,2.21261e-07,0,0,72526.2,54524.9,69055,95.7631,1e+06,3.0544e+06,0.402573,3.0544e+06,5.41268e-13,0,0,0,0,-4.56258e+11,-3013.63,-3000,-3.8361e+06,980.384, +P1,12.07.1999 16:48:00,94.4426,96.4975,151.17,43.4614,0,54.8679,401.557,60,2376.15,0.000528763,2376.15,4.21075e-13,0,0,0,0,1.772e-13,2.22529e-07,0,0,72526.2,55071.6,70183,87.0927,1e+06,3.07816e+06,0.407861,3.07816e+06,5.45478e-13,0,0,0,0,-4.59808e+11,-3013.72,-3000,-3.8661e+06,986.798, +P1,22.07.1999 16:48:00,93.329,95.3919,150.563,43.0671,0,54.3727,401.557,60,2376.04,0.00053223,2376.04,4.21056e-13,0,0,0,0,1.772e-13,2.23999e-07,0,0,72526.2,55623.3,71374,96.8907,1e+06,3.10192e+06,0.413183,3.10192e+06,5.49689e-13,0,0,0,0,-4.63357e+11,-3013.89,-3000,-3.8961e+06,993.196, +P1,01.08.1999 16:48:00,92.3114,94.384,150.043,42.6868,0,53.8957,401.557,60,2375.9,0.000535384,2375.9,4.21032e-13,0,0,0,0,1.772e-13,2.25339e-07,0,0,72526.2,56179.9,72562.2,72.8234,1e+06,3.12568e+06,0.418537,3.12568e+06,5.53899e-13,0,0,0,0,-4.66906e+11,-3014,-3000,-3.9261e+06,999.577, +P1,11.08.1999 16:48:00,91.2319,93.3125,149.475,42.3023,0,53.4128,401.557,60,2375.79,0.000538744,2375.79,4.21011e-13,0,0,0,0,1.772e-13,2.26764e-07,0,0,72526.2,56741.6,73779.8,71.4587,1e+06,3.14943e+06,0.423924,3.14943e+06,5.58109e-13,0,0,0,0,-4.70455e+11,-3014.16,-3000,-3.9561e+06,1005.94, +P1,21.08.1999 16:48:00,90.232,92.3211,148.977,41.9313,0,52.9472,401.557,60,2375.66,0.000541843,2375.66,4.20989e-13,0,0,0,0,1.772e-13,2.28081e-07,0,0,72526.2,57308.1,74995.3,61.3878,1e+06,3.17319e+06,0.429343,3.17319e+06,5.62319e-13,0,0,0,0,-4.74004e+11,-3014.28,-3000,-3.9861e+06,1012.29, +P1,31.08.1999 16:48:00,89.2514,91.3499,148.53,41.5454,0,52.4623,401.557,60,2375.55,0.00054489,2375.55,4.20969e-13,0,0,0,0,1.772e-13,2.29374e-07,0,0,72526.2,57879.9,76260.1,58.0777,1e+06,3.19695e+06,0.434791,3.19695e+06,5.66529e-13,0,0,0,0,-4.77552e+11,-3014.42,-3000,-4.0161e+06,1018.62, +P1,10.09.1999 16:48:00,88.5763,90.6831,148.341,41.1988,0,52.0269,401.557,60,2375.45,0.000546968,2375.45,4.20951e-13,0,0,0,0,1.772e-13,2.30259e-07,0,0,72526.2,58456.5,77475,70.7657,1e+06,3.2207e+06,0.440261,3.2207e+06,5.70739e-13,0,0,0,0,-4.81101e+11,-3014.48,-3000,-4.0461e+06,1024.93, +P1,20.09.1999 16:48:00,87.923,90.0388,148.274,40.7896,0,51.511,401.557,60,2375.41,0.000549039,2375.41,4.20944e-13,0,0,0,0,1.772e-13,2.31135e-07,0,0,72526.2,59038.9,78833.2,45.5824,1e+06,3.24445e+06,0.445752,3.24445e+06,5.74948e-13,0,0,0,0,-4.84649e+11,-3014.61,-3000,-4.0761e+06,1031.23, +P1,30.09.1999 16:48:00,86.8871,89.012,147.741,40.4468,0,51.0784,401.557,60,2375.39,0.000552561,2375.39,4.20941e-13,0,0,0,0,1.772e-13,2.32619e-07,0,0,72526.2,59626.1,80088.3,43.7149,1e+06,3.26821e+06,0.451277,3.26821e+06,5.79157e-13,0,0,0,0,-4.88197e+11,-3014.88,-3000,-4.1061e+06,1037.51, +P1,10.10.1999 16:48:00,86.175,88.3082,147.635,40.0372,0,50.5637,401.557,60,2375.28,0.00055587,2375.28,4.2092e-13,0,0,0,0,1.772e-13,2.34023e-07,0,0,72526.2,60219.4,81496.8,36.3435,1e+06,3.29196e+06,0.456836,3.29196e+06,5.83367e-13,0,0,0,0,-4.91745e+11,-3014.93,-3000,-4.1361e+06,1043.77, +P1,20.10.1999 16:48:00,85.4729,87.6153,147.536,39.6402,0,50.0628,401.557,60,2375.25,0.000562763,2375.25,4.20916e-13,0,0,0,0,1.772e-13,2.36928e-07,0,0,72526.2,60818.6,82911.4,31.9761,1e+06,3.31571e+06,0.462463,3.31571e+06,5.87576e-13,0,0,0,0,-4.95293e+11,-3015.1,-3000,-4.1661e+06,1050.02, +P1,30.10.1999 16:48:00,84.3369,86.4875,146.977,39.2668,0,49.5917,401.557,60,2375.23,0.000585511,2375.23,4.20912e-13,0,0,0,0,1.772e-13,2.46507e-07,0,0,72526.2,61423.5,84303.8,31.3597,1e+06,3.33947e+06,0.468318,3.33947e+06,5.91785e-13,0,0,0,0,-4.98841e+11,-3015.39,-3000,-4.1961e+06,1056.25, +P1,09.11.1999 16:48:00,83.5416,85.7007,146.852,38.8401,0,49.0554,401.557,60,2375.11,0.000667083,2375.11,4.2089e-13,0,0,0,0,1.772e-13,2.80865e-07,0,0,72526.2,62035,85837,21.9075,1e+06,3.36322e+06,0.474989,3.36322e+06,5.95994e-13,0,0,0,0,-5.02389e+11,-3015.46,-3000,-4.2261e+06,1062.46, +P1,19.11.1999 16:48:00,82.3759,84.5447,146.284,38.4692,0,48.5875,401.555,60,2375.08,0.00099179,2375.08,4.20885e-13,0,0,0,0,1.772e-13,4.17582e-07,0,0,72526.2,62652.4,87281,20.9247,1e+06,3.38697e+06,0.484907,3.38697e+06,6.00203e-13,0,0,0,0,-5.05937e+11,-3015.75,-3000,-4.2561e+06,1068.66, +P1,29.11.1999 16:48:00,81.5156,83.6924,146.146,38.0273,0,48.0319,401.548,60,2374.95,0.00224318,2374.95,4.20863e-13,0,0,0,0,1.772e-13,9.44514e-07,0,0,72526.2,63277,88915.3,14.6096,1e+06,3.41072e+06,0.507339,3.41072e+06,6.04411e-13,0,0,0,0,-5.09485e+11,-3015.83,-3000,-4.2861e+06,1074.84, +P1,09.12.1999 16:48:00,80.6934,82.8796,146.04,37.6015,0,47.4947,401.519,60,2374.92,0.0074709,2374.92,4.20857e-13,0,0,0,0,1.772e-13,3.14574e-06,0,0,72526.2,63908.6,90552.5,12.6424,1e+06,3.43447e+06,0.582048,3.43447e+06,6.0862e-13,0,0,0,0,-5.13032e+11,-3016.02,-3000,-4.3161e+06,1081.01, +P1,19.12.1999 16:48:00,79.6334,81.8281,145.759,37.1481,0,46.9224,401.411,60,2374.9,0.0272755,2374.88,4.2085e-13,0,0,0,0,1.772e-13,1.14849e-05,0,0,72526.2,64547.9,92296.3,7.74416,1e+06,3.45822e+06,0.854802,3.45821e+06,6.12828e-13,0,0,0,0,-5.1658e+11,-3016.29,-3000,-4.3461e+06,1087.16, +P1,29.12.1999 16:48:00,78.5717,80.7753,145.525,36.6777,0,46.3291,400.969,60,2374.86,0.108213,2374.75,4.20827e-13,0,0,0,0,1.772e-13,4.55661e-05,0,0,72526.2,65195.4,94125.8,6.60504,1e+06,3.48196e+06,1.93693,3.48196e+06,6.17037e-13,0,0,0,0,-5.20128e+11,-3016.5,-3000,-4.3761e+06,1093.29, +P1,08.01.2000 16:48:00,77.4133,79.626,145.396,36.1085,0,45.6099,399.388,60,2374.87,0.398666,2374.47,4.20777e-13,0,0,0,0,1.772e-13,0.000167869,0,0,72526.2,65853.1,96267.7,6.39406,1e+06,3.50571e+06,5.92359,3.50571e+06,6.21244e-13,0,0,0,0,-5.23676e+11,-3016.75,-3000,-4.4061e+06,1099.41, +P1,18.01.2000 16:48:00,75.9776,78.1986,145.271,35.4105,0,44.7244,393.321,60,2375.07,1.53301,2373.54,4.20613e-13,0,0,0,0,1.772e-13,0.000645457,0,0,72526.2,66523.8,98844.4,2.70656,1e+06,3.52946e+06,21.2536,3.52944e+06,6.25451e-13,0,0,0,0,-5.27227e+11,-3017.08,-3000,-4.4361e+06,1105.51, +P1,28.01.2000 16:48:00,73.436,75.6658,144.63,34.4503,0,43.4973,374.026,60,2375.85,5.40289,2370.45,4.20065e-13,0,0,0,0,1.772e-13,0.00227408,0,0,72526.2,67213.4,102322,1,1e+06,3.55322e+06,75.2824,3.55315e+06,6.29651e-13,0,0,0,0,-5.30786e+11,-3017.63,-3000,-4.4661e+06,1111.58, +P1,07.02.2000 16:48:00,70.3012,72.5401,144.609,33.0072,0,41.6238,330.439,60,2378.79,20.174,2358.61,4.17968e-13,0,0,0,0,1.772e-13,0.00848081,0,0,72526.2,67934.1,107649,1,1e+06,3.57701e+06,277.022,3.57673e+06,6.33831e-13,0,0,0,0,-5.34378e+11,-3017.96,-3000,-4.4961e+06,1117.61, +P1,17.02.2000 16:48:00,65.2102,67.4573,144.535,30.9797,0,38.9189,264.77,60,2387.84,63.6369,2324.21,4.1187e-13,0,0,0,0,1.772e-13,0.0266504,0,0,72526.2,68704.9,115901,1,1e+06,3.60089e+06,913.39,3.59997e+06,6.3795e-13,0,0,0,0,-5.38068e+11,-3018.48,-3000,-4.5261e+06,1123.53, +P1,27.02.2000 16:48:00,58.6659,60.9214,144.324,28.8536,0,35.9677,207.723,60,2406.45,152.994,2253.46,3.99333e-13,0,0,0,0,1.772e-13,0.0635764,0,0,72526.2,69538.9,126245,1,1e+06,3.62495e+06,2443.32,3.62251e+06,6.41943e-13,0,0,0,0,-5.41957e+11,-3018.83,-3000,-4.5561e+06,1129.25, +P1,08.03.2000 16:48:00,52.2176,54.4816,144.317,27.0821,0,33.3918,168.732,60,2432.94,280.305,2152.64,3.81467e-13,0,0,0,0,1.772e-13,0.115212,0,0,72526.2,70437.3,136882,1,1e+06,3.64928e+06,5246.37,3.64404e+06,6.45758e-13,0,0,0,0,-5.46131e+11,-3018.72,-3000,-4.5861e+06,1134.7, +P1,18.03.2000 16:48:00,45.9594,48.2304,143.512,25.8349,0,31.4831,144.632,60,2461.6,417.785,2043.82,3.62183e-13,0,0,0,0,1.772e-13,0.169721,0,0,72526.2,71390.1,146134,1,1e+06,3.6739e+06,9424.21,3.66447e+06,6.49379e-13,0,0,0,0,-5.50613e+11,-3018.57,-3000,-4.6161e+06,1139.85, +P1,28.03.2000 16:48:00,41.8064,44.0846,143.516,25.0286,0,30.1694,130.456,60,2488.62,548.104,1940.52,3.43877e-13,0,0,0,0,1.772e-13,0.220244,0,0,72526.2,72384.4,153491,1,1e+06,3.69878e+06,14905.2,3.68388e+06,6.52818e-13,0,0,0,0,-5.55386e+11,-3017.88,-3000,-4.6461e+06,1144.72, +P1,07.04.2000 16:48:00,38.9082,41.1926,143.512,24.5621,0,29.3177,122.415,60,2513.19,665.931,1847.26,3.27351e-13,0,0,0,0,1.772e-13,0.264975,0,0,72526.2,73407.6,158974,1,1e+06,3.72392e+06,21564.5,3.70235e+06,6.56092e-13,0,0,0,0,-5.60422e+11,-3017.32,-3000,-4.6761e+06,1149.34, +P1,17.04.2000 16:48:00,36.5955,38.8858,143.183,24.3105,0,28.7619,117.35,60,2535.51,772.994,1762.52,3.12334e-13,0,0,0,0,1.772e-13,0.304867,0,0,72526.2,74450.6,163089,1,1e+06,3.74927e+06,29294.5,3.71998e+06,6.59215e-13,0,0,0,0,-5.65698e+11,-3016.79,-3000,-4.7061e+06,1153.73, +P1,27.04.2000 16:48:00,34.9573,37.2532,143.05,24.1601,0,28.3541,114.096,60,2556.06,871.802,1684.26,2.98466e-13,0,0,0,0,1.772e-13,0.341072,0,0,72526.2,75508.5,166492,1,1e+06,3.77483e+06,38012.5,3.73682e+06,6.622e-13,0,0,0,0,-5.71195e+11,-3016.17,-3000,-4.7361e+06,1157.91, +P1,07.05.2000 16:48:00,33.8287,36.1295,143.039,24.0885,0,28.0591,111.811,60,2575.28,964.079,1611.2,2.8552e-13,0,0,0,0,1.772e-13,0.374359,0,0,72526.2,76577.6,169312,1,1e+06,3.80058e+06,47653.2,3.75293e+06,6.65055e-13,0,0,0,0,-5.76899e+11,-3015.56,-3000,-4.7661e+06,1161.89, +P1,17.05.2000 16:48:00,32.7272,35.0328,142.796,24.0632,0,27.8366,110.246,60,2593.14,1049.74,1543.41,2.73506e-13,0,0,0,0,1.772e-13,0.404812,0,0,72526.2,77655.3,171742,1,1e+06,3.82652e+06,58150.6,3.76837e+06,6.6779e-13,0,0,0,0,-5.82794e+11,-3015.04,-3000,-4.7961e+06,1165.69, +P1,27.05.2000 16:48:00,31.8943,34.2053,142.718,24.0516,0,27.6446,109.113,60,2609.9,1130.22,1479.68,2.62212e-13,0,0,0,0,1.772e-13,0.433051,0,0,72526.2,78740.4,174021,1,1e+06,3.85261e+06,69452.8,3.78316e+06,6.70412e-13,0,0,0,0,-5.88869e+11,-3014.47,-3000,-4.8261e+06,1169.32, +P1,06.06.2000 16:48:00,31.3857,33.701,142.732,24.0768,0,27.513,108.321,60,2625.13,1203.3,1421.82,2.5196e-13,0,0,0,0,1.772e-13,0.458379,0,0,72526.2,79830.7,175943,1,1e+06,3.87887e+06,81485.8,3.79738e+06,6.72932e-13,0,0,0,0,-5.95107e+11,-3013.95,-3000,-4.8561e+06,1172.79, +P1,16.06.2000 16:48:00,30.9507,33.2696,142.746,24.1115,0,27.4011,107.882,60,2639.64,1272.88,1366.76,2.42202e-13,0,0,0,0,1.772e-13,0.482219,0,0,72526.2,80925.5,177757,1,1e+06,3.90526e+06,94214.6,3.81105e+06,6.75354e-13,0,0,0,0,-6.01502e+11,-3013.46,-3000,-4.8861e+06,1176.12, +P1,26.06.2000 16:48:00,30.6549,32.9777,142.773,24.1682,0,27.3216,107.778,60,2653.56,1339.6,1313.96,2.32845e-13,0,0,0,0,1.772e-13,0.504832,0,0,72526.2,82023.4,179372,1,1e+06,3.9318e+06,107611,3.82419e+06,6.77682e-13,0,0,0,0,-6.08045e+11,-3012.99,-3000,-4.9161e+06,1179.3, +P1,06.07.2000 16:48:00,30.4019,32.7282,142.792,24.231,0,27.255,107.734,60,2666.94,1403.75,1263.19,2.23848e-13,0,0,0,0,1.772e-13,0.526353,0,0,72526.2,83124.1,180911,1,1e+06,3.95847e+06,121648,3.83682e+06,6.79921e-13,0,0,0,0,-6.14732e+11,-3012.53,-3000,-4.9461e+06,1182.35, +P1,16.07.2000 16:48:00,30.2276,32.5577,142.814,24.2991,0,27.2072,107.835,60,2679.13,1462.21,1216.93,2.15651e-13,0,0,0,0,1.772e-13,0.545776,0,0,72526.2,84226.6,182331,1,1e+06,3.98526e+06,136270,3.84899e+06,6.82077e-13,0,0,0,0,-6.2155e+11,-3012.1,-3000,-4.9761e+06,1185.27, +P1,26.07.2000 16:48:00,30.0923,32.4258,142.834,24.3717,0,27.17,108.096,60,2690.82,1518.22,1172.6,2.07795e-13,0,0,0,0,1.772e-13,0.564222,0,0,72526.2,85330.7,183685,1,1e+06,4.01217e+06,151452,3.86071e+06,6.84155e-13,0,0,0,0,-6.28493e+11,-3011.69,-3000,-5.0061e+06,1188.07, +P1,05.08.2000 16:48:00,30.0443,32.3812,142.85,24.4557,0,27.1549,108.593,60,2701.6,1569.88,1131.71,2.0055e-13,0,0,0,0,1.772e-13,0.581095,0,0,72526.2,86435.4,184892,1,1e+06,4.03918e+06,167151,3.87203e+06,6.86161e-13,0,0,0,0,-6.35552e+11,-3011.31,-3000,-5.0361e+06,1190.77, +P1,15.08.2000 16:48:00,30.0698,32.4101,142.886,24.5476,0,27.1533,109.052,60,2711.91,1619.31,1092.6,1.93618e-13,0,0,0,0,1.772e-13,0.597112,0,0,72526.2,87540.2,186007,1,1e+06,4.0663e+06,183344,3.88296e+06,6.88097e-13,0,0,0,0,-6.42721e+11,-3010.94,-3000,-5.0661e+06,1193.36, +P1,25.08.2000 16:48:00,30.0594,32.4029,142.906,24.6296,0,27.1467,109.5,60,2721.64,1665.96,1055.68,1.87076e-13,0,0,0,0,1.772e-13,0.612116,0,0,72526.2,88645.2,187158,1,1e+06,4.09352e+06,200004,3.89351e+06,6.89968e-13,0,0,0,0,-6.49995e+11,-3010.59,-3000,-5.0961e+06,1195.85, +P1,04.09.2000 16:48:00,30.1948,32.5414,142.939,24.7371,0,27.1725,110.096,60,2730.91,1710.43,1020.49,1.80839e-13,0,0,0,0,1.772e-13,0.626321,0,0,72526.2,89749.2,188084,1,1e+06,4.12083e+06,217108,3.90372e+06,6.91776e-13,0,0,0,0,-6.57368e+11,-3010.24,-3000,-5.1261e+06,1198.26, +P1,14.09.2000 16:48:00,30.3089,32.6583,142.963,24.8374,0,27.1955,110.647,60,2739.67,1752.41,987.259,1.74951e-13,0,0,0,0,1.772e-13,0.639643,0,0,72526.2,90852.2,189028,1,1e+06,4.14822e+06,234632,3.91359e+06,6.93525e-13,0,0,0,0,-6.64835e+11,-3009.92,-3000,-5.1561e+06,1200.57, +P1,24.09.2000 16:48:00,30.4894,32.8411,143.006,24.9423,0,27.2299,111.139,60,2747.76,1791.16,956.593,1.69517e-13,0,0,0,0,1.772e-13,0.651864,0,0,72526.2,91953.8,189890,1,1e+06,4.1757e+06,252544,3.92316e+06,6.95221e-13,0,0,0,0,-6.72389e+11,-3009.61,-3000,-5.1861e+06,1202.8, +P1,04.10.2000 16:48:00,30.6416,32.9951,143.019,25.044,0,27.2648,111.785,60,2755.44,1827.97,927.467,1.64356e-13,0,0,0,0,1.772e-13,0.663405,0,0,72526.2,93054.1,190748,1,1e+06,4.20326e+06,270823,3.93243e+06,6.96864e-13,0,0,0,0,-6.80025e+11,-3009.32,-3000,-5.2161e+06,1204.95, +P1,14.10.2000 16:48:00,30.9131,33.2695,143.06,25.1628,0,27.3227,112.507,60,2762.64,1862.51,900.132,1.59512e-13,0,0,0,0,1.772e-13,0.674177,0,0,72526.2,94152,191441,1,1e+06,4.23088e+06,289448,3.94143e+06,6.98459e-13,0,0,0,0,-6.87738e+11,-3009.04,-3000,-5.2461e+06,1207.03, +P1,24.10.2000 16:48:00,31.1716,33.5301,143.094,25.2782,0,27.3792,113.244,60,2769.58,1895.77,873.808,1.54847e-13,0,0,0,0,1.772e-13,0.684498,0,0,72526.2,95247.6,192142,1,1e+06,4.25858e+06,308406,3.95017e+06,7.00008e-13,0,0,0,0,-6.95526e+11,-3008.77,-3000,-5.2761e+06,1209.04, +P1,03.11.2000 16:48:00,31.4482,33.8088,143.13,25.3922,0,27.4401,114.022,60,2775.9,1926.06,849.839,1.50599e-13,0,0,0,0,1.772e-13,0.693851,0,0,72526.2,96340.8,192809,1,1e+06,4.28634e+06,327667,3.95867e+06,7.01514e-13,0,0,0,0,-7.03382e+11,-3008.52,-3000,-5.3061e+06,1210.99, +P1,13.11.2000 16:48:00,31.7586,34.122,143.175,25.5118,0,27.5076,114.823,60,2782.13,1955.93,826.204,1.46411e-13,0,0,0,0,1.772e-13,0.703032,0,0,72526.2,97431.4,193426,1,1e+06,4.31416e+06,347226,3.96693e+06,7.02978e-13,0,0,0,0,-7.11304e+11,-3008.28,-3000,-5.3361e+06,1212.88, +P1,23.11.2000 16:48:00,32.0616,34.4269,143.22,25.6266,0,27.5732,115.59,60,2788,1984.04,803.958,1.42469e-13,0,0,0,0,1.772e-13,0.711636,0,0,72526.2,98519.3,194054,1,1e+06,4.34204e+06,367066,3.97497e+06,7.04403e-13,0,0,0,0,-7.1929e+11,-3008.05,-3000,-5.3661e+06,1214.7, +P1,03.12.2000 16:48:00,32.3336,34.7008,143.251,25.7357,0,27.635,116.324,60,2793.6,2010.91,782.691,1.387e-13,0,0,0,0,1.772e-13,0.719827,0,0,72526.2,99604.8,194705,1,1e+06,4.36997e+06,387175,3.9828e+06,7.0579e-13,0,0,0,0,-7.27335e+11,-3007.83,-3000,-5.3961e+06,1216.47, +P1,13.12.2000 16:48:00,32.6278,34.9967,143.288,25.8466,0,27.7009,117.116,60,2798.97,2036.63,762.341,1.35094e-13,0,0,0,0,1.772e-13,0.727635,0,0,72526.2,100688,195325,1,1e+06,4.39796e+06,407542,3.99042e+06,7.0714e-13,0,0,0,0,-7.35438e+11,-3007.62,-3000,-5.4261e+06,1218.19, +P1,23.12.2000 16:48:00,32.9223,35.2933,143.324,25.9578,0,27.7678,117.971,60,2804.25,2061.94,742.306,1.31543e-13,0,0,0,0,1.772e-13,0.735293,0,0,72526.2,101768,195935,1,1e+06,4.42601e+06,428161,3.99784e+06,7.08456e-13,0,0,0,0,-7.43598e+11,-3007.41,-3000,-5.4561e+06,1219.85, +P1,02.01.2001 16:48:00,33.1877,35.5604,143.347,26.0637,0,27.8306,118.798,60,2809.33,2086.29,723.043,1.2813e-13,0,0,0,0,1.772e-13,0.742628,0,0,72526.2,102846,196570,1,1e+06,4.4541e+06,449024,4.00508e+06,7.09737e-13,0,0,0,0,-7.51812e+11,-3007.22,-3000,-5.4861e+06,1221.47, +P1,12.01.2001 16:48:00,33.5194,35.8943,143.405,26.1763,0,27.9022,119.611,60,2814.23,2109.8,704.436,1.24832e-13,0,0,0,0,1.772e-13,0.749688,0,0,72526.2,103921,197142,1,1e+06,4.48224e+06,470122,4.01212e+06,7.10986e-13,0,0,0,0,-7.60078e+11,-3007.02,-3000,-5.5161e+06,1223.03, +P1,22.01.2001 16:48:00,33.8139,36.1901,143.446,26.2829,0,27.9683,120.434,60,2819,2132.66,686.348,1.21627e-13,0,0,0,0,1.772e-13,0.756528,0,0,72526.2,104994,197748,1,1e+06,4.51043e+06,491448,4.01898e+06,7.12202e-13,0,0,0,0,-7.68396e+11,-3006.83,-3000,-5.5461e+06,1224.55, +P1,01.02.2001 16:48:00,34.0868,36.465,143.474,26.3869,0,28.033,121.322,60,2823.62,2154.81,668.817,1.1852e-13,0,0,0,0,1.772e-13,0.763135,0,0,72526.2,106064,198361,1,1e+06,4.53867e+06,512996,4.02567e+06,7.13387e-13,0,0,0,0,-7.76764e+11,-3006.65,-3000,-5.5761e+06,1226.02, +P1,11.02.2001 16:48:00,34.4317,36.8115,143.525,26.5021,0,28.1105,122.241,60,2828.13,2176.42,651.714,1.1549e-13,0,0,0,0,1.772e-13,0.76956,0,0,72526.2,107131,198882,1,1e+06,4.56695e+06,534760,4.03219e+06,7.14542e-13,0,0,0,0,-7.85179e+11,-3006.47,-3000,-5.6061e+06,1227.45, +P1,21.02.2001 16:48:00,34.7459,37.1272,143.565,26.6124,0,28.1834,123.171,60,2832.56,2197.63,634.928,1.12515e-13,0,0,0,0,1.772e-13,0.775846,0,0,72526.2,108195,199432,1,1e+06,4.59527e+06,556737,4.03854e+06,7.15667e-13,0,0,0,0,-7.93643e+11,-3006.3,-3000,-5.6361e+06,1228.84, +P1,03.03.2001 16:48:00,35.0677,37.4504,143.608,26.7222,0,28.2579,124.121,60,2836.75,2217.75,619.009,1.09694e-13,0,0,0,0,1.772e-13,0.78179,0,0,72526.2,109257,199968,1,1e+06,4.62364e+06,578914,4.04473e+06,7.16764e-13,0,0,0,0,-8.02151e+11,-3006.14,-3000,-5.6661e+06,1230.18, +P1,13.03.2001 16:48:00,35.3883,37.7729,143.651,26.8312,0,28.3325,125.082,60,2840.82,2237.23,603.589,1.06961e-13,0,0,0,0,1.772e-13,0.78753,0,0,72526.2,110316,200500,1,1e+06,4.65205e+06,601286,4.05076e+06,7.17834e-13,0,0,0,0,-8.10703e+11,-3005.98,-3000,-5.6961e+06,1231.48, +P1,23.03.2001 16:48:00,35.6719,38.0586,143.675,26.9341,0,28.4026,125.976,60,2844.68,2255.73,588.953,1.04368e-13,0,0,0,0,1.772e-13,0.792963,0,0,72526.2,111372,201061,1,1e+06,4.6805e+06,623844,4.05665e+06,7.18877e-13,0,0,0,0,-8.19296e+11,-3005.83,-3000,-5.7261e+06,1232.75, +P1,02.04.2001 16:48:00,36.0032,38.3919,143.724,27.0419,0,28.4792,126.882,60,2848.39,2273.5,574.886,1.01875e-13,0,0,0,0,1.772e-13,0.798171,0,0,72526.2,112425,201574,1,1e+06,4.70898e+06,646578,4.0624e+06,7.19896e-13,0,0,0,0,-8.27929e+11,-3005.68,-3000,-5.7561e+06,1233.98, +P1,12.04.2001 16:48:00,36.3242,38.7151,143.768,27.1487,0,28.555,127.842,60,2852.04,2291.02,561.019,9.94176e-14,0,0,0,0,1.772e-13,0.803292,0,0,72526.2,113476,202089,1,1e+06,4.7375e+06,669489,4.06801e+06,7.2089e-13,0,0,0,0,-8.36601e+11,-3005.54,-3000,-5.7861e+06,1235.17, +P1,22.04.2001 16:48:00,36.6208,39.0136,143.801,27.2503,0,28.6273,128.782,60,2855.48,2307.5,547.979,9.71068e-14,0,0,0,0,1.772e-13,0.808096,0,0,72526.2,114523,202626,1,1e+06,4.76606e+06,692564,4.07349e+06,7.21861e-13,0,0,0,0,-8.4531e+11,-3005.4,-3000,-5.8161e+06,1236.34, +P1,02.05.2001 16:48:00,36.9458,39.3405,143.843,27.356,0,28.7054,129.69,60,2858.77,2323.27,535.497,9.48949e-14,0,0,0,0,1.772e-13,0.812683,0,0,72526.2,115568,203121,1,1e+06,4.79464e+06,715796,4.07885e+06,7.2281e-13,0,0,0,0,-8.54054e+11,-3005.27,-3000,-5.8461e+06,1237.46, +P1,12.05.2001 16:48:00,37.231,39.6279,143.876,27.4526,0,28.7755,130.539,60,2861.87,2338.12,523.747,9.28127e-14,0,0,0,0,1.772e-13,0.816991,0,0,72526.2,116611,203668,1,1e+06,4.82326e+06,739177,4.08408e+06,7.23738e-13,0,0,0,0,-8.62832e+11,-3005.15,-3000,-5.8761e+06,1238.56, +P1,22.05.2001 16:48:00,37.5275,39.9263,143.915,27.5487,0,28.847,131.337,60,2864.77,2352.03,512.74,9.08621e-14,0,0,0,0,1.772e-13,0.821019,0,0,72526.2,117651,204203,1,1e+06,4.85191e+06,762698,4.08921e+06,7.24647e-13,0,0,0,0,-8.71641e+11,-3005.04,-3000,-5.9061e+06,1239.63, +P1,01.06.2001 16:48:00,37.8095,40.2107,143.952,27.6408,0,28.9158,132.098,60,2867.5,2365.14,502.363,8.90233e-14,0,0,0,0,1.772e-13,0.824808,0,0,72526.2,118688,204755,1,1e+06,4.88058e+06,786349,4.09424e+06,7.25537e-13,0,0,0,0,-8.80479e+11,-3004.93,-3000,-5.9361e+06,1240.68, +P1,11.06.2001 16:48:00,38.0835,40.4865,143.987,27.7302,0,28.9833,132.841,60,2870.08,2377.49,492.586,8.72908e-14,0,0,0,0,1.772e-13,0.828372,0,0,72526.2,119723,205313,1,1e+06,4.90929e+06,810124,4.09916e+06,7.2641e-13,0,0,0,0,-8.89344e+11,-3004.83,-3000,-5.9661e+06,1241.7, +P1,21.06.2001 16:48:00,38.3632,40.7679,144.023,27.8201,0,29.052,133.613,60,2872.58,2389.46,483.119,8.5613e-14,0,0,0,0,1.772e-13,0.831817,0,0,72526.2,120756,205860,1,1e+06,4.93801e+06,834018,4.10399e+06,7.27266e-13,0,0,0,0,-8.98237e+11,-3004.73,-3000,-5.9961e+06,1242.69, +P1,23.06.2001,38.4095,40.8143,144.029,27.8342,0,29.0634,133.714,60,2872.9,2391.01,481.888,8.5395e-14,0,0,0,0,1.772e-13,0.832264,0,0,72526.2,120890,206363,1,1e+06,4.94175e+06,837127,4.10462e+06,7.27377e-13,0,0,0,0,-8.99393e+11,-3004.71,-3000,-6e+06,1242.82, +P1,23.06.2001,38.4095,40.8143,144.029,27.8342,0,29.0634,133.714,60,2872.9,2391.01,481.888,8.5395e-14,0,0,0,0,1.772e-13,0.832264,0,0,72526.2,120890,206363,1,1e+06,4.94175e+06,837127,4.10462e+06,7.27377e-13,0,0,0,0,-8.99393e+11,-3004.71,-3000,-6e+06,1242.82, +,Date,BottomHolePressure (BARa),SandfacePressureRef|BottomHolePressureRef (BARa),DrainageRegionPressureRef|DrainageRegionPressure (BARa),LiquidProductivityIndex (Sm3/day/bar),GasProductivityIndex (Sm3/day/bar),ProductivityIndexResCond (Rm3/day/bar),WellIndexResCond (Rm3/day/bar),BottomHoleTemperature (deg C),LiquidInjected (Sm3/day),WaterInjected (Sm3/day),OilInjected (Sm3/day),GasInjected (1000Sm3/d),FracLiquidInjected (Sm3/day),FracWaterInjected (Sm3/day),FracOilInjected (Sm3/day),FracGasInjected (1000Sm3/d),GOR (Sm3/Sm3),WaterCut (fraction),WaterGasRatio (Sm3/Sm3),CGR (Sm3/Sm3),HallIntegral (Bar.d),HallVoidageDerivative (Bar.d),HallWaterDerivative (Bar.d),HallGasDerivative (Bar.d),WaterBreakthroughTime (days),GasBreakthroughTime (days),TransitTime (days),CumLiquidProduced (Sm3),CumWaterProduced (Sm3),CumOilProduced (Sm3),CumGasProduced (MSm3),CumLiquidInjected (Sm3),CumWaterInjected (Sm3),CumOilInjected (Sm3),CumGasInjected (MSm3),CumHeatInjected (kJ),DownholeRate (rm3/day),VoidageRate (rm3/day),CumVoidage (rm3),NPV (MMUS$), +I1,17.01.1996 21:57:52,342.387,344,296.335,62.9375,0,62.9357,479.156,60,2999.87,2999.87,0,0,2385.85,2385.85,0,0,0,0,0,0,958.84,608.647,608.647,0,866.481,1e+06,882.06,0,0,0,0,50743.2,50743.2,0,0,1.66011e+10,2999.99,3000,50745.6,-0.318462, +I1,26.01.1996 14:46:20,355.5,357.12,297.171,50.0411,0,50.0396,230.353,60,2999.87,2999.87,0,0,1604.74,1604.74,0,0,0,0,0,0,1480.41,1256.83,1256.83,0,839.555,1e+06,853.089,0,0,0,0,76843,76843,0,0,2.54737e+10,2999.99,3000,76846.5,-0.481717, +I1,02.02.1996 14:48:37,358.255,359.881,297.432,48.037,0,48.0355,206.685,60,2999.87,2999.87,0,0,1410.97,1410.97,0,0,0,0,0,0,1917.65,1809.49,1809.49,0,822.455,1e+06,848.211,0,0,0,0,97846.8,97846.8,0,0,3.26478e+10,2999.99,3000,97851.3,-0.612827, +I1,12.02.1996 14:48:37,353.196,354.829,297.442,52.2746,0,52.2731,313.931,60,2999.87,2999.87,0,0,1846.86,1846.86,0,0,0,0,0,0,2491.52,2145.95,2145.95,0,827.83,1e+06,853.264,0,0,0,0,127845,127845,0,0,4.27626e+10,2999.99,3000,127851,-0.79967, +I1,21.02.1996 07:33:14,356.201,357.839,297.47,49.6923,0,49.6908,276.715,60,2999.87,2999.87,0,0,1630.51,1630.51,0,0,0,0,0,0,3016.59,2827.16,2827.16,0,812.547,1e+06,853.525,0,0,0,0,153937,153937,0,0,5.167e+10,2999.99,3000,153944,-0.961784, +I1,01.03.1996 03:26:06,358.333,359.977,297.622,48.109,0,48.1076,249.261,60,2999.87,2999.87,0,0,1456.78,1456.78,0,0,0,0,0,0,3567.08,3467.73,3467.73,0,812.107,1e+06,852.58,0,0,0,0,180421,180421,0,0,6.0701e+10,2999.99,3000,180429,-1.12596, +I1,11.03.1996 03:26:06,358.291,359.943,297.738,48.2254,0,48.224,259.757,60,2999.87,2999.87,0,0,1484.97,1484.97,0,0,0,0,0,0,4189.14,4044.27,4044.27,0,798.188,1e+06,856.518,0,0,0,0,210420,210420,0,0,7.0926e+10,2999.99,3000,210429,-1.31146, +I1,21.03.1996 03:26:06,354.798,356.456,297.809,51.1515,0,51.1499,358.585,60,2999.87,2999.87,0,0,1825.53,1825.53,0,0,0,0,0,0,4775.6,4400.39,4400.39,0,799.664,1e+06,855.747,0,0,0,0,240418,240418,0,0,8.11442e+10,2999.99,3000,240429,-1.49649, +I1,31.03.1996 03:26:06,358.759,360.426,297.969,48.031,0,48.0295,252.759,60,2999.87,2999.87,0,0,1494.46,1494.46,0,0,0,0,0,0,5400.17,5311.66,5311.66,0,800.405,1e+06,858.736,0,0,0,0,270417,270417,0,0,9.1386e+10,2999.99,3000,270429,-1.68103, +I1,10.04.1996 03:26:06,354.894,356.568,298.002,51.2224,0,51.2209,349.948,60,2999.87,2999.87,0,0,1844.16,1844.16,0,0,0,0,0,0,5985.83,5566.97,5566.97,0,785.436,1e+06,864.679,0,0,0,0,300416,300416,0,0,1.01554e+11,2999.99,3000,300429,-1.86509, +I1,20.04.1996 03:26:06,359.465,361.146,298.221,47.6735,0,47.672,246.343,60,2999.87,2999.87,0,0,1479.25,1479.25,0,0,0,0,0,0,6615.08,6611.17,6611.17,0,770.211,1e+06,861.058,0,0,0,0,330414,330414,0,0,1.11797e+11,2999.99,3000,330429,-2.04866, +I1,30.04.1996 03:26:06,349.607,351.295,298.199,56.4989,0,56.4972,685.8,60,2999.87,2999.87,0,0,2327.59,2327.59,0,0,0,0,0,0,7146.04,6109.8,6109.8,0,788.137,1e+06,868.091,0,0,0,0,360413,360413,0,0,1.21815e+11,2999.99,3000,360429,-2.23177, +I1,10.05.1996 03:26:06,352.996,354.691,297.911,52.8335,0,52.8319,426.882,60,2999.87,2999.87,0,0,2011.94,2011.94,0,0,0,0,0,0,7713.84,7101.8,7101.8,0,771.048,1e+06,872.819,0,0,0,0,390411,390411,0,0,1.31884e+11,2999.99,3000,390429,-2.41439, +I1,20.05.1996 03:26:06,351.174,352.875,296.532,53.2426,0,53.241,445.305,60,2999.87,2999.87,0,0,2049.91,2049.91,0,0,0,0,0,0,8277.27,7610.94,7610.94,0,772.921,1e+06,875.745,0,0,0,0,420410,420410,0,0,1.41918e+11,2999.99,3000,420429,-2.59654, +I1,30.05.1996 03:26:06,348.798,350.506,294.931,53.9789,0,53.9773,478.829,60,2999.87,2999.87,0,0,2111.78,2111.78,0,0,0,0,0,0,8833.02,8063.11,8063.11,0,754.803,1e+06,880.672,0,0,0,0,450409,450409,0,0,1.51899e+11,2999.99,3000,450429,-2.77821, +I1,09.06.1996 03:26:06,347.973,349.688,293.584,53.4699,0,53.4683,454.975,60,2999.87,2999.87,0,0,2074.04,2074.04,0,0,0,0,0,0,9394.06,8701.11,8701.11,0,759.575,1e+06,885.391,0,0,0,0,480407,480407,0,0,1.61877e+11,2999.99,3000,480429,-2.95941, +I1,19.06.1996 03:26:06,346.415,348.136,292.165,53.5967,0,53.5951,457.567,60,2999.87,2999.87,0,0,2085.55,2085.55,0,0,0,0,0,0,9953.77,9240.42,9240.42,0,760.384,1e+06,888.319,0,0,0,0,510406,510406,0,0,1.71823e+11,2999.99,3000,510429,-3.14014, +I1,29.06.1996 03:26:06,345.319,347.048,290.738,53.2748,0,53.2732,444.795,60,2999.87,2999.87,0,0,2064.97,2064.97,0,0,0,0,0,0,10516.9,9859.5,9859.51,0,761.663,1e+06,891.326,0,0,0,0,540404,540404,0,0,1.81765e+11,2999.99,3000,540429,-3.32039, +I1,13.07.1996 16:48:00,351.465,353.203,290.146,47.5733,0,47.572,261.559,60,2999.87,2999.87,0,0,1565.27,1565.27,0,0,0,0,0,0,11382.3,12074.4,12074.4,0,736.462,1e+06,886.121,0,0,0,0,584073,584073,0,0,1.96444e+11,2999.99,3000,584100,-3.58195, +I1,23.07.1996 16:48:00,351.274,353.019,290.354,47.8715,0,47.8701,269.904,60,2999.87,2999.87,0,0,1612.91,1612.91,0,0,0,0,0,0,12009,12511.6,12511.6,0,734.16,1e+06,884.92,0,0,0,0,614072,614072,0,0,2.06658e+11,2999.99,3000,614100,-3.76106, +I1,02.08.1996 16:48:00,352.367,354.119,290.531,47.1764,0,47.175,256.419,60,2999.87,2999.87,0,0,1546.84,1546.84,0,0,0,0,0,0,12644.9,13331.9,13331.9,0,735.058,1e+06,887.102,0,0,0,0,644070,644070,0,0,2.16883e+11,2999.99,3000,644100,-3.9397, +I1,12.08.1996 16:48:00,343.559,345.318,290.299,54.524,0,54.5224,578.412,60,2999.87,2999.87,0,0,2252.3,2252.3,0,0,0,0,0,0,13195.1,12085.6,12085.6,0,742.062,1e+06,898.986,0,0,0,0,674069,674069,0,0,2.26821e+11,2999.99,3000,674100,-4.11787, +I1,22.08.1996 16:48:00,344.546,346.312,288.994,52.3365,0,52.335,442.545,60,2999.87,2999.87,0,0,2070.67,2070.67,0,0,0,0,0,0,13768.3,13164,13164.1,0,723.627,1e+06,902.791,0,0,0,0,704067,704067,0,0,2.36828e+11,2999.99,3000,704100,-4.29558, +I1,01.09.1996 16:48:00,341.045,342.817,286.703,53.4602,0,53.4587,481.394,60,2999.86,2999.86,0,0,2137.42,2137.42,0,0,0,0,0,0,14329.4,13448.6,13448.6,0,727.617,1e+06,910.789,0,0,0,0,734066,734066,0,0,2.46693e+11,2999.99,3000,734100,-4.47282, +I1,11.09.1996 16:48:00,340.002,341.781,284.505,52.3755,0,52.374,419.377,60,2999.86,2999.86,0,0,2041.4,2041.4,0,0,0,0,0,0,14902.2,14299.9,14299.9,0,728.271,1e+06,916.046,0,0,0,0,764064,764064,0,0,2.56556e+11,2999.99,3000,764100,-4.64961, +I1,21.09.1996 16:48:00,347.422,349.208,285.08,46.7794,0,46.778,261.102,60,2999.86,2999.86,0,0,1563.3,1563.3,0,0,0,0,0,0,15543.4,16652,16652,0,701.979,1e+06,904.143,0,0,0,0,794063,794063,0,0,2.6678e+11,2999.99,3000,794100,-4.82593, +I1,01.10.1996 16:48:00,347.823,349.616,285.342,46.6726,0,46.6713,260.62,60,2999.86,2999.86,0,0,1571.85,1571.85,0,0,0,0,0,0,16186.2,17332.9,17332.9,0,679.274,1e+06,902.844,0,0,0,0,824062,824062,0,0,2.7701e+11,2999.99,3000,824100,-5.00179, +I1,11.10.1996 16:48:00,348.221,350.021,285.574,46.5478,0,46.5465,260.659,60,2999.86,2999.86,0,0,1571.6,1571.6,0,0,0,0,0,0,16830.6,18023.9,18023.9,0,699.819,1e+06,904.682,0,0,0,0,854060,854060,0,0,2.87241e+11,2999.99,3000,854100,-5.1772, +I1,21.10.1996 16:48:00,348.543,350.35,285.761,46.4457,0,46.4444,261.699,60,2999.86,2999.86,0,0,1574.59,1574.59,0,0,0,0,0,0,17476.5,18709.5,18709.5,0,702.316,1e+06,909.017,0,0,0,0,884059,884059,0,0,2.97471e+11,2999.99,3000,884100,-5.35214, +I1,31.10.1996 16:48:00,349.042,350.856,285.996,46.2512,0,46.2499,260.318,60,2999.86,2999.86,0,0,1566.91,1566.91,0,0,0,0,0,0,18125.1,19436.8,19436.8,0,681.911,1e+06,910.608,0,0,0,0,914057,914057,0,0,3.07706e+11,2999.99,3000,914100,-5.52664, +I1,10.11.1996 16:48:00,348.601,350.421,286.145,46.6715,0,46.6701,272.536,60,2999.86,2999.86,0,0,1627.95,1627.95,0,0,0,0,0,0,18767.9,19904.6,19904.6,0,682.43,1e+06,912.878,0,0,0,0,944056,944056,0,0,3.17919e+11,2999.99,3000,944100,-5.70067, +I1,20.11.1996 16:48:00,339.851,341.678,283.662,51.7073,0,51.7058,444.236,60,2999.86,2999.86,0,0,2081.98,2081.98,0,0,0,0,0,0,19348.1,18546.3,18546.3,0,693.086,1e+06,925.455,0,0,0,0,974055,974055,0,0,3.27786e+11,2999.99,3000,974100,-5.87426, +I1,30.11.1996 16:48:00,337.213,339.047,281.009,51.6879,0,51.6864,430.974,60,2999.86,2999.86,0,0,2068.98,2068.98,0,0,0,0,0,0,19928.4,19133.7,19133.7,0,675.776,1e+06,932.199,0,0,0,0,1.00405e+06,1.00405e+06,0,0,3.37592e+11,2999.99,3000,1.0041e+06,-6.04739, +I1,10.12.1996 16:48:00,345.454,347.295,281.748,45.7668,0,45.7655,255.828,60,2999.86,2999.86,0,0,1555.64,1555.64,0,0,0,0,0,0,20583.9,22264.6,22264.6,0,660.181,1e+06,917.256,0,0,0,0,1.03405e+06,1.03405e+06,0,0,3.47808e+11,2999.99,3000,1.0341e+06,-6.22007, +I1,20.12.1996 16:48:00,345.178,347.025,281.947,46.096,0,46.0947,265.745,60,2999.86,2999.86,0,0,1608.87,1608.87,0,0,0,0,0,0,21234.7,22756.4,22756.5,0,665.781,1e+06,919.141,0,0,0,0,1.06405e+06,1.06405e+06,0,0,3.58e+11,2999.99,3000,1.0641e+06,-6.3923, +I1,30.12.1996 16:48:00,346.504,348.359,282.214,45.3532,0,45.3519,251.212,60,2999.86,2999.86,0,0,1538.82,1538.82,0,0,0,0,0,0,21896.1,23790.6,23790.7,0,666.851,1e+06,920.975,0,0,0,0,1.09405e+06,1.09405e+06,0,0,3.68216e+11,2999.99,3000,1.0941e+06,-6.56408, +I1,07.01.1997 07:12:00,345.911,347.771,281.543,45.2961,0,45.2948,252.011,60,2999.86,2999.86,0,0,1531.41,1531.41,0,0,0,0,0,0,22380.3,24550.5,24550.5,0,648.532,1e+06,916.438,0,0,0,0,1.11685e+06,1.11685e+06,0,0,3.75861e+11,2999.99,3000,1.1169e+06,-6.69433, +I1,23.01.1997 16:48:00,344.829,346.701,280.764,45.4964,0,45.4951,239.889,60,2999.86,2999.86,0,0,1535.35,1535.35,0,0,0,0,0,0,23461.3,25298.3,25298.3,0,650.094,1e+06,923.195,0,0,0,0,1.16605e+06,1.16605e+06,0,0,3.92433e+11,2999.99,3000,1.1661e+06,-6.97453, +I1,02.02.1997 16:48:00,344.598,346.475,280.047,45.1591,0,45.1578,231.875,60,2999.86,2999.86,0,0,1508.64,1508.64,0,0,0,0,0,0,24125.5,26151.6,26151.6,0,651.443,1e+06,927.305,0,0,0,0,1.19604e+06,1.19604e+06,0,0,4.02508e+11,2999.99,3000,1.1961e+06,-7.14479, +I1,12.02.1997 16:48:00,344.006,345.891,279.309,45.0554,0,45.0541,231.516,60,2999.86,2999.86,0,0,1512.34,1512.34,0,0,0,0,0,0,24791.4,26877.6,26877.6,0,631.905,1e+06,928.171,0,0,0,0,1.22604e+06,1.22604e+06,0,0,4.12583e+11,2999.99,3000,1.2261e+06,-7.31461, +I1,22.02.1997 16:48:00,343.255,345.146,278.44,44.971,0,44.9697,229.868,60,2999.86,2999.86,0,0,1515.57,1515.57,0,0,0,0,0,0,25458.4,27595.2,27595.2,0,631.895,1e+06,921.242,0,0,0,0,1.25604e+06,1.25604e+06,0,0,4.2265e+11,2999.99,3000,1.2561e+06,-7.48399, +I1,04.03.1997 16:48:00,342.606,344.504,277.651,44.8726,0,44.8714,230.264,60,2999.86,2999.86,0,0,1517.17,1517.17,0,0,0,0,0,0,26127,28324.2,28324.2,0,632.736,1e+06,924.314,0,0,0,0,1.28604e+06,1.28604e+06,0,0,4.32709e+11,2999.99,3000,1.2861e+06,-7.65293, +I1,14.03.1997 16:48:00,341.93,343.835,276.976,44.8685,0,44.8673,233.609,60,2999.86,2999.86,0,0,1539.04,1539.04,0,0,0,0,0,0,26795.5,28995.4,28995.5,0,614.098,1e+06,926.384,0,0,0,0,1.31604e+06,1.31604e+06,0,0,4.42778e+11,2999.99,3000,1.3161e+06,-7.82142, +I1,24.03.1997 16:48:00,341.682,343.594,276.264,44.5546,0,44.5534,225.75,60,2999.86,2999.86,0,0,1512.63,1512.63,0,0,0,0,0,0,27468.8,29873,29873.1,0,613.695,1e+06,927.32,0,0,0,0,1.34604e+06,1.34604e+06,0,0,4.5284e+11,2999.99,3000,1.3461e+06,-7.98948, +I1,03.04.1997 16:48:00,341.414,343.332,275.868,44.4661,0,44.4649,225.91,60,2999.86,2999.86,0,0,1535.48,1535.48,0,0,0,0,0,0,28143.5,30607.2,30607.2,0,612.758,1e+06,926.114,0,0,0,0,1.37604e+06,1.37604e+06,0,0,4.62939e+11,2999.99,3000,1.3761e+06,-8.1571, +I1,13.04.1997 16:48:00,341.186,343.111,275.305,44.2419,0,44.2407,218.029,60,2999.86,2999.86,0,0,1512.97,1512.97,0,0,0,0,0,0,28821.5,31440.3,31440.4,0,614.254,1e+06,921.954,0,0,0,0,1.40603e+06,1.40603e+06,0,0,4.73019e+11,2999.99,3000,1.4061e+06,-8.32428, +I1,23.04.1997 16:48:00,340.88,342.812,274.895,44.1692,0,44.1679,220.209,60,2999.86,2999.86,0,0,1527.99,1527.99,0,0,0,0,0,0,29500.7,32171.3,32171.4,0,585.324,1e+06,921.772,0,0,0,0,1.43603e+06,1.43603e+06,0,0,4.83112e+11,2999.99,3000,1.4361e+06,-8.49103, +I1,03.05.1997 16:48:00,341.21,343.149,274.847,43.9204,0,43.9192,219.466,60,2999.86,2999.86,0,0,1525.73,1525.73,0,0,0,0,0,0,30183.7,33036.6,33036.6,0,593.447,1e+06,921.526,0,0,0,0,1.46603e+06,1.46603e+06,0,0,4.93237e+11,2999.99,3000,1.4661e+06,-8.65734, +I1,13.05.1997 16:48:00,341.245,343.191,274.459,43.6459,0,43.6447,214.046,60,2999.86,2999.86,0,0,1502.78,1502.78,0,0,0,0,0,0,30871.1,33931.7,33931.8,0,594.545,1e+06,923.745,0,0,0,0,1.49603e+06,1.49603e+06,0,0,5.03351e+11,2999.99,3000,1.4961e+06,-8.82322, +I1,23.05.1997 16:48:00,341.224,343.177,274.31,43.5605,0,43.5593,215.614,60,2999.86,2999.86,0,0,1514.84,1514.84,0,0,0,0,0,0,31559.7,34686.9,34687,0,565.363,1e+06,923.569,0,0,0,0,1.52603e+06,1.52603e+06,0,0,5.13479e+11,2999.99,3000,1.5261e+06,-8.98866, +I1,02.06.1997 16:48:00,341.465,343.425,274.113,43.281,0,43.2798,211.197,60,2999.86,2999.86,0,0,1491.88,1491.88,0,0,0,0,0,0,32252.8,35604.1,35604.1,0,575.014,1e+06,914.191,0,0,0,0,1.55603e+06,1.55603e+06,0,0,5.23602e+11,2999.99,3000,1.5561e+06,-9.15368, +I1,12.06.1997 16:48:00,341.525,343.492,273.908,43.1116,0,43.1104,209.292,60,2999.86,2999.86,0,0,1488.42,1488.42,0,0,0,0,0,0,32948.7,36439.8,36439.9,0,574.885,1e+06,916.041,0,0,0,0,1.58603e+06,1.58603e+06,0,0,5.33731e+11,2999.99,3000,1.5861e+06,-9.31826, +I1,22.06.1997 16:48:00,341.432,343.406,273.844,43.1248,0,43.1236,214.125,60,2999.86,2999.86,0,0,1521.44,1521.44,0,0,0,0,0,0,33644.3,37124.3,37124.4,0,556.758,1e+06,915.85,0,0,0,0,1.61602e+06,1.61602e+06,0,0,5.43886e+11,2999.99,3000,1.6161e+06,-9.48242, +I1,02.07.1997 16:48:00,341.493,343.475,273.363,42.7869,0,42.7858,203.904,60,2999.86,2999.86,0,0,1477.48,1477.48,0,0,0,0,0,0,34345.4,38118.6,38118.6,0,553.798,1e+06,917.428,0,0,0,0,1.64602e+06,1.64602e+06,0,0,5.54014e+11,2999.99,3000,1.6461e+06,-9.64614, +I1,12.07.1997 16:48:00,341.316,343.305,273.047,42.6978,0,42.6966,205.555,60,2999.86,2999.86,0,0,1487.81,1487.81,0,0,0,0,0,0,35048,38900.8,38900.9,0,533.966,1e+06,907.933,0,0,0,0,1.67602e+06,1.67602e+06,0,0,5.64155e+11,2999.99,3000,1.6761e+06,-9.80945, +I1,22.07.1997 16:48:00,341.298,343.294,272.901,42.6161,0,42.6149,206.819,60,2999.86,2999.86,0,0,1496.03,1496.03,0,0,0,0,0,0,35751.9,39679.3,39679.3,0,556.479,1e+06,908.589,0,0,0,0,1.70602e+06,1.70602e+06,0,0,5.74299e+11,2999.99,3000,1.7061e+06,-9.97232, +I1,01.08.1997 16:48:00,341.511,343.515,272.829,42.4388,0,42.4377,203.696,60,2999.86,2999.86,0,0,1481.12,1481.12,0,0,0,0,0,0,36458.8,40551.9,40552,0,520.819,1e+06,910.926,0,0,0,0,1.73602e+06,1.73602e+06,0,0,5.84433e+11,2999.99,3000,1.7361e+06,-10.1348, +I1,11.08.1997 16:48:00,341.687,343.698,273.047,42.4599,0,42.4588,208.621,60,2999.86,2999.86,0,0,1512.68,1512.68,0,0,0,0,0,0,37165.3,41238.3,41238.4,0,536.965,1e+06,910.033,0,0,0,0,1.76602e+06,1.76602e+06,0,0,5.94591e+11,2999.99,3000,1.7661e+06,-10.2968, +I1,21.08.1997 16:48:00,341.971,343.99,272.839,42.1619,0,42.1608,199.514,60,2999.86,2999.86,0,0,1471.74,1471.74,0,0,0,0,0,0,37876.8,42241.3,42241.4,0,537.945,1e+06,903.65,0,0,0,0,1.79602e+06,1.79602e+06,0,0,6.0472e+11,2999.99,3000,1.7961e+06,-10.4584, +I1,31.08.1997 16:48:00,342.053,344.08,272.846,42.1129,0,42.1118,201.185,60,2999.86,2999.86,0,0,1482.64,1482.64,0,0,0,0,0,0,38589.1,43002.8,43002.9,0,516.809,1e+06,902.666,0,0,0,0,1.82601e+06,1.82601e+06,0,0,6.14857e+11,2999.99,3000,1.8261e+06,-10.6196, +I1,10.09.1997 16:48:00,342.134,344.17,272.831,42.0509,0,42.0498,202.306,60,2999.86,2999.86,0,0,1489.84,1489.84,0,0,0,0,0,0,39302.5,43779.6,43779.7,0,518.758,1e+06,904.176,0,0,0,0,1.85601e+06,1.85601e+06,0,0,6.24995e+11,2999.99,3000,1.8561e+06,-10.7804, +I1,20.09.1997 16:48:00,342.142,344.185,272.683,41.9548,0,41.9536,202.393,60,2999.86,2999.86,0,0,1490.6,1490.6,0,0,0,0,0,0,40017.6,44595,44595,0,518.687,1e+06,904.227,0,0,0,0,1.88601e+06,1.88601e+06,0,0,6.35132e+11,2999.99,3000,1.8861e+06,-10.9407, +I1,30.09.1997 16:48:00,342.177,344.228,272.584,41.8718,0,41.8706,202.405,60,2999.86,2999.86,0,0,1490.71,1490.71,0,0,0,0,0,0,40734,45399.9,45399.9,0,487.193,1e+06,897.184,0,0,0,0,1.91601e+06,1.91601e+06,0,0,6.45268e+11,2999.99,3000,1.9161e+06,-11.1006, +I1,10.10.1997 16:48:00,342.035,344.094,272.287,41.7766,0,41.7754,202.41,60,2999.86,2999.86,0,0,1490.74,1490.74,0,0,0,0,0,0,41452.1,46221.4,46221.4,0,499.922,1e+06,895.343,0,0,0,0,1.94601e+06,1.94601e+06,0,0,6.55404e+11,2999.99,3000,1.9461e+06,-11.2601, +I1,20.10.1997 16:48:00,341.959,344.027,272.079,41.6952,0,41.694,202.411,60,2999.86,2999.86,0,0,1490.67,1490.67,0,0,0,0,0,0,42171.5,47031.1,47031.2,0,499.725,1e+06,897.676,0,0,0,0,1.97601e+06,1.97601e+06,0,0,6.6554e+11,2999.99,3000,1.9761e+06,-11.4192, +I1,30.10.1997 16:48:00,342.032,344.107,272.023,41.6157,0,41.6146,202.412,60,2999.86,2999.86,0,0,1490.64,1490.64,0,0,0,0,0,0,42892.4,47841.8,47841.8,0,482.777,1e+06,899.355,0,0,0,0,2.006e+06,2.006e+06,0,0,6.75677e+11,2999.99,3000,2.0061e+06,-11.5779, +I1,09.11.1997 16:48:00,341.917,344.001,271.772,41.5328,0,41.5317,202.415,60,2999.86,2999.86,0,0,1490.68,1490.68,0,0,0,0,0,0,43614.7,48659.6,48659.6,0,463.204,1e+06,888.158,0,0,0,0,2.036e+06,2.036e+06,0,0,6.85813e+11,2999.99,3000,2.0361e+06,-11.7362, +I1,19.11.1997 16:48:00,341.859,343.95,271.611,41.4693,0,41.4681,202.416,60,2999.86,2999.86,0,0,1490.63,1490.63,0,0,0,0,0,0,44338.1,49457.5,49457.6,0,480.771,1e+06,889.735,0,0,0,0,2.066e+06,2.066e+06,0,0,6.95949e+11,2999.99,3000,2.0661e+06,-11.894, +I1,29.11.1997 16:48:00,341.789,343.888,271.316,41.3361,0,41.335,200.567,60,2999.86,2999.86,0,0,1480.8,1480.8,0,0,0,0,0,0,45063.8,50342.6,50342.6,0,480.325,1e+06,891.687,0,0,0,0,2.096e+06,2.096e+06,0,0,7.06088e+11,2999.99,3000,2.0961e+06,-12.0515, +I1,09.12.1997 16:48:00,341.882,343.99,271.275,41.2551,0,41.2539,201.182,60,2999.86,2999.86,0,0,1481.24,1481.24,0,0,0,0,0,0,45790.9,51168.7,51168.7,0,462.764,1e+06,883.51,0,0,0,0,2.126e+06,2.126e+06,0,0,7.16235e+11,2999.98,3000,2.1261e+06,-12.2085, +I1,19.12.1997 16:48:00,341.568,343.684,270.935,41.2356,0,41.2344,198.762,60,2999.86,2999.86,0,0,1478.07,1478.07,0,0,0,0,0,0,46518.4,51920.3,51920.4,0,463.067,1e+06,884.474,0,0,0,0,2.156e+06,2.156e+06,0,0,7.26373e+11,2999.99,3000,2.1561e+06,-12.3651, +I1,29.12.1997 16:48:00,342.083,344.207,271.087,41.027,0,41.0258,197.009,60,2999.86,2999.86,0,0,1463.55,1463.55,0,0,0,0,0,0,47249.6,52915.5,52915.6,0,459.224,1e+06,884.432,0,0,0,0,2.186e+06,2.186e+06,0,0,7.36526e+11,2999.98,3000,2.1861e+06,-12.5214, +I1,08.01.1998 16:48:00,341.949,344.081,271.026,41.0632,0,41.062,196.738,60,2999.86,2999.86,0,0,1468.96,1468.96,0,0,0,0,0,0,47980.2,53599.5,53599.5,0,441.033,1e+06,887.286,0,0,0,0,2.21599e+06,2.21599e+06,0,0,7.4666e+11,2999.98,3000,2.2161e+06,-12.6772, +I1,18.01.1998 16:48:00,342.143,344.283,270.931,40.8969,0,40.8958,194.638,60,2999.86,2999.86,0,0,1453.65,1453.65,0,0,0,0,0,0,48713.7,54550.8,54550.9,0,443.875,1e+06,876.064,0,0,0,0,2.24599e+06,2.24599e+06,0,0,7.56808e+11,2999.98,3000,2.2461e+06,-12.8326, +I1,28.01.1998 16:48:00,341.969,344.116,270.872,40.9569,0,40.9557,194.008,60,2999.86,2999.86,0,0,1463.82,1463.82,0,0,0,0,0,0,49446.1,55203.5,55203.5,0,414.22,1e+06,880.065,0,0,0,0,2.27599e+06,2.27599e+06,0,0,7.66942e+11,2999.98,3000,2.2761e+06,-12.9876, +I1,07.02.1998 16:48:00,341.729,343.885,270.676,40.977,0,40.9759,193.291,60,2999.86,2999.86,0,0,1468.22,1468.22,0,0,0,0,0,0,50178.2,55908.4,55908.4,0,426.818,1e+06,881.683,0,0,0,0,2.30599e+06,2.30599e+06,0,0,7.77068e+11,2999.98,3000,2.3061e+06,-13.1422, +I1,17.02.1998 16:48:00,341.598,343.76,270.382,40.8822,0,40.881,192.558,60,2999.86,2999.86,0,0,1462.1,1462.1,0,0,0,0,0,0,50912,56771.9,56772,0,425.133,1e+06,870.151,0,0,0,0,2.33599e+06,2.33599e+06,0,0,7.872e+11,2999.98,3000,2.3361e+06,-13.2963, +I1,27.02.1998 16:48:00,341.069,343.239,270.313,41.1358,0,41.1347,199.678,60,2999.86,2999.86,0,0,1512.36,1512.36,0,0,0,0,0,0,51641.3,57151.2,57151.2,0,400.64,1e+06,873.577,0,0,0,0,2.36599e+06,2.36599e+06,0,0,7.97341e+11,2999.98,3000,2.3661e+06,-13.4501, +I1,09.03.1998 16:48:00,340.709,342.887,269.598,40.9321,0,40.931,190.643,60,2999.86,2999.86,0,0,1460.19,1460.19,0,0,0,0,0,0,52374.1,58168.4,58168.5,0,408.629,1e+06,876.422,0,0,0,0,2.39599e+06,2.39599e+06,0,0,8.07433e+11,2999.98,3000,2.3961e+06,-13.6035, +I1,19.03.1998 16:48:00,340.27,342.455,269.077,40.8824,0,40.8812,190.792,60,2999.86,2999.86,0,0,1458.88,1458.88,0,0,0,0,0,0,53107.9,58973,58973.1,0,407.195,1e+06,877.936,0,0,0,0,2.42598e+06,2.42598e+06,0,0,8.17536e+11,2999.98,3000,2.4261e+06,-13.7565, +I1,29.03.1998 16:48:00,339.699,341.892,268.607,40.9345,0,40.9334,190.539,60,2999.86,2999.86,0,0,1466.63,1466.63,0,0,0,0,0,0,53840.8,59630.7,59630.8,0,383.064,1e+06,869.839,0,0,0,0,2.45598e+06,2.45598e+06,0,0,8.2763e+11,2999.98,3000,2.4561e+06,-13.9091, +I1,08.04.1998 16:48:00,338.688,340.888,267.741,41.0115,0,41.0104,191.74,60,2999.86,2999.86,0,0,1472.66,1472.66,0,0,0,0,0,0,54572.2,60250.3,60250.3,0,383.299,1e+06,871.379,0,0,0,0,2.48598e+06,2.48598e+06,0,0,8.37707e+11,2999.98,3000,2.4861e+06,-14.0613, +I1,18.04.1998 16:48:00,337.519,339.726,266.934,41.2111,0,41.21,193.935,60,2999.86,2999.86,0,0,1502.52,1502.52,0,0,0,0,0,0,55300.2,60686.4,60686.5,0,389.429,1e+06,874.676,0,0,0,0,2.51598e+06,2.51598e+06,0,0,8.47777e+11,2999.98,3000,2.5161e+06,-14.2131, +I1,28.04.1998 16:48:00,336.459,338.674,265.61,41.0583,0,41.0572,189.039,60,2999.86,2999.86,0,0,1464.98,1464.98,0,0,0,0,0,0,56030.8,61642.9,61642.9,0,361.259,1e+06,868.837,0,0,0,0,2.54598e+06,2.54598e+06,0,0,8.57828e+11,2999.98,3000,2.5461e+06,-14.3645, +I1,08.05.1998 16:48:00,335.81,338.033,264.982,41.0654,0,41.0643,190.945,60,2999.86,2999.86,0,0,1476.41,1476.41,0,0,0,0,0,0,56761.3,62362.7,62362.8,0,372.413,1e+06,867.298,0,0,0,0,2.57598e+06,2.57598e+06,0,0,8.67896e+11,2999.98,3000,2.5761e+06,-14.5155, +I1,18.05.1998 16:48:00,337.075,339.304,265.538,40.6674,0,40.6663,189.243,60,2999.86,2999.86,0,0,1457.78,1457.78,0,0,0,0,0,0,57499,63710.8,63710.9,0,369.924,1e+06,865.304,0,0,0,0,2.60598e+06,2.60598e+06,0,0,8.78066e+11,2999.98,3000,2.6061e+06,-14.6661, +I1,28.05.1998 16:48:00,337.297,339.532,265.558,40.5527,0,40.5516,185.571,60,2999.86,2999.86,0,0,1431.34,1431.34,0,0,0,0,0,0,58238.7,64630.6,64630.7,0,341.322,1e+06,857.359,0,0,0,0,2.63597e+06,2.63597e+06,0,0,8.88218e+11,2999.98,3000,2.6361e+06,-14.8163, +I1,07.06.1998 16:48:00,337.374,339.615,265.69,40.5798,0,40.5787,186.938,60,2999.86,2999.86,0,0,1440.48,1440.48,0,0,0,0,0,0,58978,65326.8,65326.9,0,337.886,1e+06,858.471,0,0,0,0,2.66597e+06,2.66597e+06,0,0,8.98382e+11,2999.98,3000,2.6661e+06,-14.9661, +I1,17.06.1998 16:48:00,337.216,339.462,265.571,40.5984,0,40.5973,187.151,60,2999.86,2999.86,0,0,1442.21,1442.21,0,0,0,0,0,0,59716.9,66035.8,66035.9,0,343.361,1e+06,859.217,0,0,0,0,2.69597e+06,2.69597e+06,0,0,9.08546e+11,2999.98,3000,2.6961e+06,-15.1156, +I1,27.06.1998 16:48:00,337.029,339.279,265.418,40.6153,0,40.6142,187.162,60,2999.86,2999.86,0,0,1442.32,1442.32,0,0,0,0,0,0,60455.5,66746.9,66747,0,335.264,1e+06,851.412,0,0,0,0,2.72597e+06,2.72597e+06,0,0,9.18709e+11,2999.98,3000,2.7261e+06,-15.2646, +I1,07.07.1998 16:48:00,336.832,339.087,265.208,40.605,0,40.604,185.046,60,2999.86,2999.86,0,0,1435,1435,0,0,0,0,0,0,61194.3,67502.5,67502.6,0,333.695,1e+06,853.724,0,0,0,0,2.75597e+06,2.75597e+06,0,0,9.28866e+11,2999.98,3000,2.7561e+06,-15.4133, +I1,17.07.1998 16:48:00,336.36,338.618,264.902,40.6947,0,40.6936,183.998,60,2999.86,2999.86,0,0,1438.31,1438.31,0,0,0,0,0,0,61931.4,68090.9,68091,0,333.079,1e+06,856.638,0,0,0,0,2.78597e+06,2.78597e+06,0,0,9.39006e+11,2999.98,3000,2.7861e+06,-15.5616, +I1,27.07.1998 16:48:00,335.577,337.839,264.509,40.9093,0,40.9082,187.479,60,2999.86,2999.86,0,0,1469.67,1469.67,0,0,0,0,0,0,62664.7,68467.1,68467.2,0,317.534,1e+06,859.801,0,0,0,0,2.81597e+06,2.81597e+06,0,0,9.4914e+11,2999.98,3000,2.8161e+06,-15.7094, +I1,06.08.1998 16:48:00,335.451,337.716,264.081,40.74,0,40.7389,183.179,60,2999.86,2999.86,0,0,1436.07,1436.07,0,0,0,0,0,0,63401.1,69488,69488.1,0,315.539,1e+06,850.561,0,0,0,0,2.84596e+06,2.84596e+06,0,0,9.59261e+11,2999.98,3000,2.8461e+06,-15.8569, +I1,16.08.1998 16:48:00,334.713,336.98,263.411,40.776,0,40.7749,184.483,60,2999.86,2999.86,0,0,1443.28,1443.28,0,0,0,0,0,0,64136.7,70162.4,70162.5,0,315.01,1e+06,853.185,0,0,0,0,2.87596e+06,2.87596e+06,0,0,9.69394e+11,2999.98,3000,2.8761e+06,-16.0041, +I1,26.08.1998 16:48:00,334.257,336.527,263.029,40.8155,0,40.8144,184.692,60,2999.86,2999.86,0,0,1444.78,1444.78,0,0,0,0,0,0,64871.7,70829.4,70829.5,0,299.183,1e+06,855.903,0,0,0,0,2.90596e+06,2.90596e+06,0,0,9.79527e+11,2999.98,3000,2.9061e+06,-16.1508, +I1,05.09.1998 16:48:00,333.346,335.618,262.355,40.9463,0,40.9452,184.258,60,2999.86,2999.86,0,0,1457.56,1457.56,0,0,0,0,0,0,65604.4,71335.7,71335.8,0,297.53,1e+06,847.785,0,0,0,0,2.93596e+06,2.93596e+06,0,0,9.89645e+11,2999.98,3000,2.9361e+06,-16.2971, +I1,15.09.1998 16:48:00,332.434,334.707,261.389,40.9156,0,40.9145,181.93,60,2999.86,2999.86,0,0,1441.62,1441.62,0,0,0,0,0,0,66337.5,72122.5,72122.7,0,296.946,1e+06,850.426,0,0,0,0,2.96596e+06,2.96596e+06,0,0,9.99743e+11,2999.98,3000,2.9661e+06,-16.4431, +I1,25.09.1998 16:48:00,331.511,333.787,260.474,40.9184,0,40.9174,182.73,60,2999.86,2999.86,0,0,1445.92,1445.92,0,0,0,0,0,0,67070.7,72850.6,72850.7,0,281.284,1e+06,853.28,0,0,0,0,2.99596e+06,2.99596e+06,0,0,1.00986e+12,2999.98,3000,2.9961e+06,-16.5887, +I1,05.10.1998 16:48:00,330.718,332.996,259.65,40.9,0,40.899,182.604,60,2999.86,2999.86,0,0,1443.88,1443.88,0,0,0,0,0,0,67804.1,73616.8,73616.9,0,279.205,1e+06,844.037,0,0,0,0,3.02596e+06,3.02596e+06,0,0,1.01997e+12,2999.98,3000,3.0261e+06,-16.7339, +I1,15.10.1998 16:48:00,329.916,332.195,258.849,40.9,0,40.899,182.403,60,2999.86,2999.86,0,0,1441.33,1441.33,0,0,0,0,0,0,68537.6,74350.3,74350.4,0,278.57,1e+06,845.985,0,0,0,0,3.05595e+06,3.05595e+06,0,0,1.0301e+12,2999.98,3000,3.0561e+06,-16.8787, +I1,25.10.1998 16:48:00,329.235,331.515,258.13,40.8782,0,40.8771,182.21,60,2999.86,2999.86,0,0,1438.86,1438.86,0,0,0,0,0,0,69271.4,75123.9,75124,0,261.954,1e+06,847.636,0,0,0,0,3.08595e+06,3.08595e+06,0,0,1.04023e+12,2999.98,3000,3.0861e+06,-17.0232, +I1,04.11.1998 16:48:00,328.695,330.976,257.656,40.9147,0,40.9136,183.856,60,2999.86,2999.86,0,0,1450.17,1450.17,0,0,0,0,0,0,70004.6,75790.1,75790.2,0,242.038,1e+06,838.906,0,0,0,0,3.11595e+06,3.11595e+06,0,0,1.05038e+12,2999.98,3000,3.1161e+06,-17.1673, +I1,14.11.1998 16:48:00,327.644,329.926,256.575,40.8972,0,40.8962,180.263,60,2999.86,2999.86,0,0,1425.87,1425.87,0,0,0,0,0,0,70738.2,76556,76556.1,0,260.539,1e+06,843.373,0,0,0,0,3.14595e+06,3.14595e+06,0,0,1.06048e+12,2999.98,3000,3.1461e+06,-17.311, +I1,24.11.1998 16:48:00,326.685,328.967,255.621,40.8999,0,40.8989,181.001,60,2999.85,2999.85,0,0,1430.02,1430.02,0,0,0,0,0,0,71471.6,77284.4,77284.5,0,244.41,1e+06,845.225,0,0,0,0,3.17595e+06,3.17595e+06,0,0,1.0706e+12,2999.98,3000,3.1761e+06,-17.4543, +I1,04.12.1998 16:48:00,325.92,328.203,254.847,40.8945,0,40.8934,181.296,60,2999.85,2999.85,0,0,1430.88,1430.88,0,0,0,0,0,0,72205.2,78028.2,78028.3,0,242.632,1e+06,836.738,0,0,0,0,3.20595e+06,3.20595e+06,0,0,1.08073e+12,2999.98,3000,3.2061e+06,-17.5972, +I1,14.12.1998 16:48:00,325.188,327.472,254.098,40.8842,0,40.8832,181.162,60,2999.85,2999.85,0,0,1428.87,1428.87,0,0,0,0,0,0,72938.9,78781.5,78781.7,0,241.658,1e+06,838.845,0,0,0,0,3.23594e+06,3.23594e+06,0,0,1.09087e+12,2999.98,3000,3.2361e+06,-17.7398, +I1,24.12.1998 16:48:00,324.48,326.764,253.363,40.8691,0,40.8681,180.981,60,2999.85,2999.85,0,0,1426.4,1426.4,0,0,0,0,0,0,73672.9,79544.6,79544.8,0,225.853,1e+06,840.404,0,0,0,0,3.26594e+06,3.26594e+06,0,0,1.10101e+12,2999.98,3000,3.2661e+06,-17.882, +I1,03.01.1999 16:48:00,323.821,326.106,252.688,40.8599,0,40.8589,180.841,60,2999.85,2999.85,0,0,1424.49,1424.49,0,0,0,0,0,0,74407.1,80296.7,80296.9,0,220.926,1e+06,832.583,0,0,0,0,3.29594e+06,3.29594e+06,0,0,1.11116e+12,2999.98,3000,3.2961e+06,-18.0239, +I1,13.01.1999 16:48:00,323.14,325.426,251.976,40.8426,0,40.8416,180.693,60,2999.85,2999.85,0,0,1422.46,1422.46,0,0,0,0,0,0,75141.6,81065.2,81065.4,0,209.344,1e+06,834.655,0,0,0,0,3.32594e+06,3.32594e+06,0,0,1.12131e+12,2999.98,3000,3.3261e+06,-18.1653, +I1,23.01.1999 16:48:00,322.544,324.83,251.371,40.8369,0,40.8359,180.527,60,2999.85,2999.85,0,0,1420.18,1420.18,0,0,0,0,0,0,75876.2,81811.2,81811.4,0,204.837,1e+06,836.506,0,0,0,0,3.35594e+06,3.35594e+06,0,0,1.13146e+12,2999.98,3000,3.3561e+06,-18.3064, +I1,02.02.1999 16:48:00,321.793,324.079,250.606,40.8289,0,40.8278,180.384,60,2999.85,2999.85,0,0,1418.19,1418.19,0,0,0,0,0,0,76610.9,82562,82562.2,0,206.798,1e+06,839.142,0,0,0,0,3.38594e+06,3.38594e+06,0,0,1.14162e+12,2999.98,3000,3.3861e+06,-18.4472, +I1,12.02.1999 16:48:00,321.288,323.575,250.057,40.8044,0,40.8034,180.204,60,2999.85,2999.85,0,0,1415.67,1415.67,0,0,0,0,0,0,77346.1,83346.7,83346.9,0,185.622,1e+06,830.562,0,0,0,0,3.41594e+06,3.41594e+06,0,0,1.15179e+12,2999.98,3000,3.4161e+06,-18.5875, +I1,22.02.1999 16:48:00,320.883,323.171,249.652,40.804,0,40.803,180.084,60,2999.85,2999.85,0,0,1414,1414,0,0,0,0,0,0,78081.3,84082.6,84082.9,0,171.227,1e+06,833.264,0,0,0,0,3.44593e+06,3.44593e+06,0,0,1.16196e+12,2999.98,3000,3.4461e+06,-18.7275, +I1,04.03.1999 16:48:00,320.522,322.81,249.291,40.8036,0,40.8026,179.995,60,2999.85,2999.85,0,0,1412.74,1412.74,0,0,0,0,0,0,78816.5,84818.7,84818.9,0,188.669,1e+06,835.685,0,0,0,0,3.47593e+06,3.47593e+06,0,0,1.17214e+12,2999.98,3000,3.4761e+06,-18.8672, +I1,14.03.1999 16:48:00,319.972,322.26,248.652,40.7544,0,40.7534,178.282,60,2999.85,2999.85,0,0,1398.2,1398.2,0,0,0,0,0,0,79552.6,85657.1,85657.3,0,173.302,1e+06,827.21,0,0,0,0,3.50593e+06,3.50593e+06,0,0,1.1823e+12,2999.98,3000,3.5061e+06,-19.0064, +I1,24.03.1999 16:48:00,319.713,322.002,248.347,40.7283,0,40.7273,178.946,60,2999.85,2999.85,0,0,1400.63,1400.63,0,0,0,0,0,0,80289.1,86448.7,86448.9,0,171.35,1e+06,830.232,0,0,0,0,3.53593e+06,3.53593e+06,0,0,1.19248e+12,2999.98,3000,3.5361e+06,-19.1453, +I1,03.04.1999 16:48:00,319.048,321.337,247.811,40.7997,0,40.7987,178.814,60,2999.85,2999.85,0,0,1404.43,1404.43,0,0,0,0,0,0,81024.4,87032.6,87032.9,0,171.247,1e+06,833.698,0,0,0,0,3.56593e+06,3.56593e+06,0,0,1.20265e+12,2999.98,3000,3.5661e+06,-19.2839, +I1,13.04.1999 16:48:00,318.574,320.864,247.323,40.7913,0,40.7903,179.103,60,2999.85,2999.85,0,0,1405.68,1405.68,0,0,0,0,0,0,81759.8,87785.9,87786.2,0,137.931,1e+06,824.3,0,0,0,0,3.59593e+06,3.59593e+06,0,0,1.21283e+12,2999.98,3000,3.5961e+06,-19.4221, +I1,23.04.1999 16:48:00,318.027,320.317,246.819,40.8152,0,40.8142,179.051,60,2999.85,2999.85,0,0,1405.15,1405.15,0,0,0,0,0,0,82494.8,88469.5,88469.8,0,136.099,1e+06,824.693,0,0,0,0,3.62592e+06,3.62592e+06,0,0,1.22301e+12,2999.98,3000,3.6261e+06,-19.5599, +I1,03.05.1999 16:48:00,317.628,319.919,246.378,40.7916,0,40.7906,178.935,60,2999.85,2999.85,0,0,1403.51,1403.51,0,0,0,0,0,0,83230.2,89256.1,89256.4,0,153.084,1e+06,831.442,0,0,0,0,3.65592e+06,3.65592e+06,0,0,1.23319e+12,2999.98,3000,3.6561e+06,-19.6974, +I1,13.05.1999 16:48:00,317.171,319.464,245.922,40.7912,0,40.7902,178.848,60,2999.85,2999.85,0,0,1402.24,1402.24,0,0,0,0,0,0,83965.6,89992.4,89992.6,0,120.805,1e+06,822.229,0,0,0,0,3.68592e+06,3.68592e+06,0,0,1.24338e+12,2999.98,3000,3.6861e+06,-19.8345, +I1,23.05.1999 16:48:00,317.228,319.52,245.951,40.7762,0,40.7752,178.75,60,2999.85,2999.85,0,0,1400.82,1400.82,0,0,0,0,0,0,84701.3,90761.3,90761.6,0,136.755,1e+06,822.268,0,0,0,0,3.71592e+06,3.71592e+06,0,0,1.25357e+12,2999.98,3000,3.7161e+06,-19.9712, +I1,02.06.1999 16:48:00,316.712,319.004,245.465,40.7926,0,40.7916,178.776,60,2999.85,2999.85,0,0,1401.2,1401.2,0,0,0,0,0,0,85436.7,91460,91460.3,0,122.257,1e+06,829.477,0,0,0,0,3.74592e+06,3.74592e+06,0,0,1.26376e+12,2999.98,3000,3.7461e+06,-20.1076, +I1,12.06.1999 16:48:00,316.148,318.441,244.876,40.7783,0,40.7773,178.673,60,2999.85,2999.85,0,0,1399.71,1399.71,0,0,0,0,0,0,86172.3,92227.8,92228.1,0,120.721,1e+06,820.424,0,0,0,0,3.77592e+06,3.77592e+06,0,0,1.27395e+12,2999.98,3000,3.7761e+06,-20.2437, +I1,22.06.1999 16:48:00,315.781,318.075,244.505,40.7754,0,40.7744,178.55,60,2999.85,2999.85,0,0,1397.92,1397.92,0,0,0,0,0,0,86908,92970.1,92970.4,0,118.091,1e+06,821.887,0,0,0,0,3.80592e+06,3.80592e+06,0,0,1.28415e+12,2999.98,3000,3.8061e+06,-20.3793, +I1,02.07.1999 16:48:00,315.418,317.711,244.131,40.7696,0,40.7686,178.473,60,2999.85,2999.85,0,0,1396.8,1396.8,0,0,0,0,0,0,87643.8,93719.1,93719.4,0,95.7631,1e+06,815.561,0,0,0,0,3.83591e+06,3.83591e+06,0,0,1.29434e+12,2999.98,3000,3.8361e+06,-20.5147, +I1,12.07.1999 16:48:00,315.018,317.313,243.744,40.7762,0,40.7752,178.4,60,2999.85,2999.85,0,0,1395.74,1395.74,0,0,0,0,0,0,88379.5,94439.5,94439.8,0,87.0927,1e+06,818.4,0,0,0,0,3.86591e+06,3.86591e+06,0,0,1.30455e+12,2999.98,3000,3.8661e+06,-20.6496, +I1,22.07.1999 16:48:00,314.709,317.004,243.406,40.7597,0,40.7587,178.319,60,2999.85,2999.85,0,0,1394.56,1394.56,0,0,0,0,0,0,89115.5,95213.8,95214.1,0,96.8907,1e+06,820.65,0,0,0,0,3.89591e+06,3.89591e+06,0,0,1.31475e+12,2999.98,3000,3.8961e+06,-20.7843, +I1,01.08.1999 16:48:00,314.323,316.619,243.026,40.7627,0,40.7617,178.259,60,2999.85,2999.85,0,0,1393.69,1393.69,0,0,0,0,0,0,89851.4,95942.8,95943.1,0,72.8234,1e+06,814.407,0,0,0,0,3.92591e+06,3.92591e+06,0,0,1.32496e+12,2999.98,3000,3.9261e+06,-20.9185, +I1,11.08.1999 16:48:00,313.981,316.277,242.666,40.7527,0,40.7517,178.183,60,2999.85,2999.85,0,0,1392.57,1392.57,0,0,0,0,0,0,90587.6,96702.4,96702.7,0,71.4587,1e+06,816.794,0,0,0,0,3.95591e+06,3.95591e+06,0,0,1.33517e+12,2999.98,3000,3.9561e+06,-21.0525, +I1,21.08.1999 16:48:00,313.641,315.937,242.319,40.7485,0,40.7475,178.116,60,2999.85,2999.85,0,0,1391.59,1391.59,0,0,0,0,0,0,91323.7,97448.6,97448.9,0,61.3878,1e+06,820.422,0,0,0,0,3.98591e+06,3.98591e+06,0,0,1.34538e+12,2999.98,3000,3.9861e+06,-21.186, +I1,31.08.1999 16:48:00,313.278,315.575,241.966,40.7542,0,40.7532,178.05,60,2999.85,2999.85,0,0,1390.62,1390.62,0,0,0,0,0,0,92059.8,98171,98171.4,0,58.0777,1e+06,812.337,0,0,0,0,4.0159e+06,4.0159e+06,0,0,1.3556e+12,2999.98,3000,4.0161e+06,-21.3193, +I1,10.09.1999 16:48:00,313.293,315.59,241.945,40.7337,0,40.7327,177.979,60,2999.85,2999.85,0,0,1389.58,1389.58,0,0,0,0,0,0,92796.3,98956.9,98957.2,0,70.7657,1e+06,813.203,0,0,0,0,4.0459e+06,4.0459e+06,0,0,1.36582e+12,2999.98,3000,4.0461e+06,-21.4522, +I1,20.09.1999 16:48:00,313.249,315.547,241.96,40.7658,0,40.7648,177.996,60,2999.85,2999.85,0,0,1389.84,1389.84,0,0,0,0,0,0,93532.2,99614.9,99615.2,0,45.5824,1e+06,821.094,0,0,0,0,4.0759e+06,4.0759e+06,0,0,1.37604e+12,2999.98,3000,4.0761e+06,-21.5847, +I1,30.09.1999 16:48:00,312.831,315.129,241.542,40.7659,0,40.7649,178.006,60,2999.85,2999.85,0,0,1389.98,1389.98,0,0,0,0,0,0,94268,100350,100351,0,43.7149,1e+06,812.79,0,0,0,0,4.1059e+06,4.1059e+06,0,0,1.38625e+12,2999.98,3000,4.1061e+06,-21.7169, +I1,10.10.1999 16:48:00,312.817,315.116,241.538,40.7711,0,40.7701,177.928,60,2999.85,2999.85,0,0,1388.83,1388.83,0,0,0,0,0,0,95003.8,101074,101074,0,36.3435,1e+06,815.213,0,0,0,0,4.1359e+06,4.1359e+06,0,0,1.39647e+12,2999.98,3000,4.1361e+06,-21.8487, +I1,20.10.1999 16:48:00,312.8,315.1,241.535,40.7783,0,40.7773,177.937,60,2999.85,2999.85,0,0,1388.97,1388.97,0,0,0,0,0,0,95739.5,101791,101792,0,31.9761,1e+06,810.249,0,0,0,0,4.1659e+06,4.1659e+06,0,0,1.40669e+12,2999.98,3000,4.1661e+06,-21.9802, +I1,30.10.1999 16:48:00,312.344,314.644,241.088,40.7833,0,40.7823,177.953,60,2999.85,2999.85,0,0,1389.2,1389.2,0,0,0,0,0,0,96475,102514,102515,0,31.3597,1e+06,813.69,0,0,0,0,4.19589e+06,4.19589e+06,0,0,1.41691e+12,2999.98,3000,4.1961e+06,-22.1114, +I1,09.11.1999 16:48:00,312.334,314.634,241.074,40.7813,0,40.7803,177.866,60,2999.85,2999.85,0,0,1387.91,1387.91,0,0,0,0,0,0,97210.6,103255,103255,0,21.9075,1e+06,816.775,0,0,0,0,4.22589e+06,4.22589e+06,0,0,1.42713e+12,2999.98,3000,4.2261e+06,-22.2422, +I1,19.11.1999 16:48:00,311.837,314.138,240.581,40.7826,0,40.7817,177.875,60,2999.85,2999.85,0,0,1388.06,1388.06,0,0,0,0,0,0,97946.2,103987,103987,0,20.9247,1e+06,811.73,0,0,0,0,4.25589e+06,4.25589e+06,0,0,1.43736e+12,2999.98,3000,4.2561e+06,-22.3727, +I1,29.11.1999 16:48:00,311.762,314.063,240.517,40.789,0,40.788,177.778,60,2999.85,2999.85,0,0,1386.62,1386.62,0,0,0,0,0,0,98681.6,104706,104707,0,14.6096,1e+06,815.817,0,0,0,0,4.28589e+06,4.28589e+06,0,0,1.44758e+12,2999.98,3000,4.2861e+06,-22.5028, +I1,09.12.1999 16:48:00,311.662,313.964,240.431,40.7961,0,40.7952,177.763,60,2999.85,2999.85,0,0,1386.41,1386.41,0,0,0,0,0,0,99417,105423,105424,0,12.6424,1e+06,819.539,0,0,0,0,4.31589e+06,4.31589e+06,0,0,1.45781e+12,2999.98,3000,4.3161e+06,-22.6326, +I1,19.12.1999 16:48:00,311.501,313.804,240.258,40.7889,0,40.7879,177.757,60,2999.85,2999.85,0,0,1386.31,1386.31,0,0,0,0,0,0,100152,106178,106178,0,7.74416,1e+06,812.173,0,0,0,0,4.34589e+06,4.34589e+06,0,0,1.46803e+12,2999.98,3000,4.3461e+06,-22.7621, +I1,29.12.1999 16:48:00,311.263,313.566,240.034,40.7967,0,40.7957,177.738,60,2999.85,2999.85,0,0,1386.02,1386.02,0,0,0,0,0,0,100888,106893,106893,0,6.60504,1e+06,814.942,0,0,0,0,4.37589e+06,4.37589e+06,0,0,1.47826e+12,2999.98,3000,4.3761e+06,-22.8912, +I1,08.01.2000 16:48:00,311.192,313.495,239.972,40.8017,0,40.8007,177.699,60,2999.85,2999.85,0,0,1385.46,1385.46,0,0,0,0,0,0,101623,107615,107615,0,6.39406,1e+06,812.248,0,0,0,0,4.40588e+06,4.40588e+06,0,0,1.48849e+12,2999.98,3000,4.4061e+06,-23.02, +I1,18.01.2000 16:48:00,311.043,313.346,239.837,40.8093,0,40.8083,177.695,60,2999.85,2999.85,0,0,1385.4,1385.4,0,0,0,0,0,0,102358,108330,108330,0,2.70656,1e+06,816.118,0,0,0,0,4.43588e+06,4.43588e+06,0,0,1.49872e+12,2999.98,3000,4.4361e+06,-23.1484, +I1,28.01.2000 16:48:00,310.489,312.793,239.275,40.8044,0,40.8034,177.678,60,2999.85,2999.85,0,0,1385.15,1385.15,0,0,0,0,0,0,103093,109078,109078,0,1,1e+06,818.039,0,0,0,0,4.46588e+06,4.46588e+06,0,0,1.50895e+12,2999.98,3000,4.4661e+06,-23.2765, +I1,07.02.2000 16:48:00,310.413,312.718,239.206,40.8079,0,40.8069,177.568,60,2999.85,2999.85,0,0,1383.51,1383.51,0,0,0,0,0,0,103828,109804,109804,0,1,1e+06,815.704,0,0,0,0,4.49588e+06,4.49588e+06,0,0,1.51918e+12,2999.98,3000,4.4961e+06,-23.4043, +I1,17.02.2000 16:48:00,310.327,312.632,239.137,40.8174,0,40.8164,177.559,60,2999.85,2999.85,0,0,1383.38,1383.38,0,0,0,0,0,0,104563,110513,110513,0,1,1e+06,806.571,0,0,0,0,4.52588e+06,4.52588e+06,0,0,1.52942e+12,2999.98,3000,4.5261e+06,-23.5317, +I1,27.02.2000 16:48:00,310.091,312.396,238.892,40.8122,0,40.8112,177.555,60,2999.85,2999.85,0,0,1383.32,1383.32,0,0,0,0,0,0,105298,111262,111263,0,1,1e+06,799.421,0,0,0,0,4.55588e+06,4.55588e+06,0,0,1.53965e+12,2999.98,3000,4.5561e+06,-23.6589, +I1,08.03.2000 16:48:00,310.011,312.316,238.826,40.8196,0,40.8187,177.518,60,2999.85,2999.85,0,0,1382.77,1382.77,0,0,0,0,0,0,106033,111977,111977,0,1,1e+06,800.273,0,0,0,0,4.58587e+06,4.58587e+06,0,0,1.54989e+12,2999.98,3000,4.5861e+06,-23.7856, +I1,18.03.2000 16:48:00,309.102,311.408,237.928,40.8254,0,40.8244,177.516,60,2999.85,2999.85,0,0,1382.75,1382.75,0,0,0,0,0,0,106768,112696,112696,0,1,1e+06,774.381,0,0,0,0,4.61587e+06,4.61587e+06,0,0,1.56012e+12,2999.98,3000,4.6161e+06,-23.9121, +I1,28.03.2000 16:48:00,309.134,311.44,237.899,40.7914,0,40.7904,177.328,60,2999.85,2999.85,0,0,1379.93,1379.93,0,0,0,0,0,0,107503,113525,113526,0,1,1e+06,762.626,0,0,0,0,4.64587e+06,4.64587e+06,0,0,1.57037e+12,2999.98,3000,4.6461e+06,-24.0382, +I1,07.04.2000 16:48:00,309.065,311.372,237.838,40.7953,0,40.7944,177.338,60,2999.85,2999.85,0,0,1380.09,1380.09,0,0,0,0,0,0,108239,114250,114250,0,1,1e+06,752.286,0,0,0,0,4.67587e+06,4.67587e+06,0,0,1.58061e+12,2999.98,3000,4.6761e+06,-24.164, +I1,17.04.2000 16:48:00,308.563,310.87,237.353,40.805,0,40.804,177.34,60,2999.85,2999.85,0,0,1380.12,1380.12,0,0,0,0,0,0,108974,114958,114958,0,1,1e+06,750.901,0,0,0,0,4.70587e+06,4.70587e+06,0,0,1.59085e+12,2999.98,3000,4.7061e+06,-24.2895, +I1,27.04.2000 16:48:00,308.411,310.718,237.169,40.7868,0,40.7858,177.244,60,2999.85,2999.85,0,0,1378.68,1378.68,0,0,0,0,0,0,109709,115744,115745,0,1,1e+06,723.47,0,0,0,0,4.73587e+06,4.73587e+06,0,0,1.6011e+12,2999.98,3000,4.7361e+06,-24.4146, +I1,07.05.2000 16:48:00,308.226,310.534,236.995,40.7929,0,40.7919,177.22,60,2999.85,2999.85,0,0,1378.32,1378.32,0,0,0,0,0,0,110445,116463,116463,0,1,1e+06,723.235,0,0,0,0,4.76587e+06,4.76587e+06,0,0,1.61135e+12,2999.98,3000,4.7661e+06,-24.5394, +I1,17.05.2000 16:48:00,307.835,310.143,236.613,40.7977,0,40.7968,177.193,60,2999.85,2999.85,0,0,1377.92,1377.92,0,0,0,0,0,0,111180,117184,117184,0,1,1e+06,717.368,0,0,0,0,4.79586e+06,4.79586e+06,0,0,1.62159e+12,2999.98,3000,4.7961e+06,-24.6639, +I1,27.05.2000 16:48:00,307.67,309.979,236.432,40.7887,0,40.7877,177.121,60,2999.85,2999.85,0,0,1376.82,1376.82,0,0,0,0,0,0,111916,117946,117946,0,1,1e+06,716.896,0,0,0,0,4.82586e+06,4.82586e+06,0,0,1.63184e+12,2999.98,3000,4.8261e+06,-24.7881, +I1,06.06.2000 16:48:00,307.538,309.847,236.305,40.791,0,40.7901,177.095,60,2999.85,2999.85,0,0,1376.44,1376.44,0,0,0,0,0,0,112651,118674,118675,0,1,1e+06,716.994,0,0,0,0,4.85586e+06,4.85586e+06,0,0,1.6421e+12,2999.98,3000,4.8561e+06,-24.9119, +I1,16.06.2000 16:48:00,307.424,309.734,236.198,40.7946,0,40.7936,177.08,60,2999.85,2999.85,0,0,1376.21,1376.21,0,0,0,0,0,0,113386,119399,119400,0,1,1e+06,716.965,0,0,0,0,4.88586e+06,4.88586e+06,0,0,1.65235e+12,2999.98,3000,4.8861e+06,-25.0354, +I1,26.06.2000 16:48:00,307.256,309.565,236.045,40.8027,0,40.8018,177.07,60,2999.85,2999.85,0,0,1376.06,1376.06,0,0,0,0,0,0,114122,120111,120111,0,1,1e+06,717.386,0,0,0,0,4.91586e+06,4.91586e+06,0,0,1.6626e+12,2999.98,3000,4.9161e+06,-25.1586, +I1,06.07.2000 16:48:00,307.125,309.435,235.925,40.8086,0,40.8077,177.048,60,2999.85,2999.85,0,0,1375.72,1375.72,0,0,0,0,0,0,114857,120828,120829,0,1,1e+06,717.652,0,0,0,0,4.94586e+06,4.94586e+06,0,0,1.67286e+12,2999.98,3000,4.9461e+06,-25.2815, +I1,16.07.2000 16:48:00,306.975,309.286,235.783,40.8128,0,40.8118,177.033,60,2999.85,2999.85,0,0,1375.49,1375.49,0,0,0,0,0,0,115592,121551,121551,0,1,1e+06,713.327,0,0,0,0,4.97585e+06,4.97585e+06,0,0,1.68311e+12,2999.98,3000,4.9761e+06,-25.4041, +I1,26.07.2000 16:48:00,306.856,309.167,235.671,40.8168,0,40.8159,177.014,60,2999.85,2999.85,0,0,1375.21,1375.21,0,0,0,0,0,0,116327,122274,122274,0,1,1e+06,713.681,0,0,0,0,5.00585e+06,5.00585e+06,0,0,1.69337e+12,2999.98,3000,5.0061e+06,-25.5263, +I1,05.08.2000 16:48:00,306.77,309.081,235.592,40.8204,0,40.8195,177.002,60,2999.85,2999.85,0,0,1375.03,1375.03,0,0,0,0,0,0,117062,122998,122998,0,1,1e+06,709.553,0,0,0,0,5.03585e+06,5.03585e+06,0,0,1.70362e+12,2999.98,3000,5.0361e+06,-25.6482, +I1,15.08.2000 16:48:00,306.617,308.929,235.456,40.8296,0,40.8286,176.997,60,2999.85,2999.85,0,0,1374.96,1374.96,0,0,0,0,0,0,117796,123705,123705,0,1,1e+06,706.924,0,0,0,0,5.06585e+06,5.06585e+06,0,0,1.71388e+12,2999.98,3000,5.0661e+06,-25.7698, +I1,25.08.2000 16:48:00,306.534,308.846,235.378,40.8319,0,40.8309,176.978,60,2999.85,2999.85,0,0,1374.67,1374.67,0,0,0,0,0,0,118531,124433,124433,0,1,1e+06,707.098,0,0,0,0,5.09585e+06,5.09585e+06,0,0,1.72413e+12,2999.98,3000,5.0961e+06,-25.8911, +I1,04.09.2000 16:48:00,306.409,308.721,235.267,40.8397,0,40.8387,176.974,60,2999.85,2999.85,0,0,1374.61,1374.61,0,0,0,0,0,0,119265,125144,125144,0,1,1e+06,706.75,0,0,0,0,5.12585e+06,5.12585e+06,0,0,1.73439e+12,2999.98,3000,5.1261e+06,-26.0121, +I1,14.09.2000 16:48:00,306.327,308.64,235.192,40.843,0,40.8421,176.961,60,2999.85,2999.85,0,0,1374.41,1374.41,0,0,0,0,0,0,120000,125868,125868,0,1,1e+06,706.72,0,0,0,0,5.15584e+06,5.15584e+06,0,0,1.74465e+12,2999.98,3000,5.1561e+06,-26.1327, +I1,24.09.2000 16:48:00,306.19,308.503,235.074,40.8535,0,40.8525,176.957,60,2999.85,2999.85,0,0,1374.36,1374.36,0,0,0,0,0,0,120734,126570,126570,0,1,1e+06,707.219,0,0,0,0,5.18584e+06,5.18584e+06,0,0,1.75491e+12,2999.98,3000,5.1861e+06,-26.253, +I1,04.10.2000 16:48:00,306.152,308.465,235.034,40.8525,0,40.8515,176.942,60,2999.85,2999.85,0,0,1374.12,1374.12,0,0,0,0,0,0,121469,127307,127308,0,1,1e+06,707.076,0,0,0,0,5.21584e+06,5.21584e+06,0,0,1.76516e+12,2999.98,3000,5.2161e+06,-26.3731, +I1,14.10.2000 16:48:00,306.042,308.356,234.942,40.8621,0,40.8612,176.947,60,2999.85,2999.85,0,0,1374.21,1374.21,0,0,0,0,0,0,122203,128011,128012,0,1,1e+06,707.549,0,0,0,0,5.24584e+06,5.24584e+06,0,0,1.77542e+12,2999.98,3000,5.2461e+06,-26.4928, +I1,24.10.2000 16:48:00,305.959,308.273,234.867,40.8663,0,40.8653,176.938,60,2999.85,2999.85,0,0,1374.07,1374.07,0,0,0,0,0,0,122937,128732,128733,0,1,1e+06,706.91,0,0,0,0,5.27584e+06,5.27584e+06,0,0,1.78568e+12,2999.98,3000,5.2761e+06,-26.6122, +I1,03.11.2000 16:48:00,305.876,308.19,234.797,40.8735,0,40.8726,176.934,60,2999.85,2999.85,0,0,1374.02,1374.02,0,0,0,0,0,0,123671,129444,129444,0,1,1e+06,704.31,0,0,0,0,5.30584e+06,5.30584e+06,0,0,1.79594e+12,2999.98,3000,5.3061e+06,-26.7313, +I1,13.11.2000 16:48:00,305.778,308.093,234.713,40.8809,0,40.88,176.93,60,2999.85,2999.85,0,0,1373.96,1373.96,0,0,0,0,0,0,124405,130154,130154,0,1,1e+06,705.154,0,0,0,0,5.33584e+06,5.33584e+06,0,0,1.8062e+12,2999.98,3000,5.3361e+06,-26.85, +I1,23.11.2000 16:48:00,305.683,307.998,234.634,40.8899,0,40.8889,176.923,60,2999.85,2999.85,0,0,1373.86,1373.86,0,0,0,0,0,0,125138,130859,130860,0,1,1e+06,705.954,0,0,0,0,5.36583e+06,5.36583e+06,0,0,1.81646e+12,2999.98,3000,5.3661e+06,-26.9685, +I1,03.12.2000 16:48:00,305.623,307.939,234.58,40.8928,0,40.8918,176.917,60,2999.85,2999.85,0,0,1373.76,1373.76,0,0,0,0,0,0,125872,131584,131584,0,1,1e+06,703.724,0,0,0,0,5.39583e+06,5.39583e+06,0,0,1.82672e+12,2999.98,3000,5.3961e+06,-27.0867, +I1,13.12.2000 16:48:00,305.552,307.868,234.522,40.8997,0,40.8987,176.918,60,2999.85,2999.85,0,0,1373.78,1373.78,0,0,0,0,0,0,126605,132295,132295,0,1,1e+06,704.39,0,0,0,0,5.42583e+06,5.42583e+06,0,0,1.83697e+12,2999.98,3000,5.4261e+06,-27.2045, +I1,23.12.2000 16:48:00,305.49,307.806,234.469,40.9053,0,40.9043,176.918,60,2999.85,2999.85,0,0,1373.78,1373.78,0,0,0,0,0,0,127339,133010,133010,0,1,1e+06,704.995,0,0,0,0,5.45583e+06,5.45583e+06,0,0,1.84723e+12,2999.98,3000,5.4561e+06,-27.3221, +I1,02.01.2001 16:48:00,305.451,307.767,234.436,40.9081,0,40.9071,176.919,60,2999.85,2999.85,0,0,1373.79,1373.79,0,0,0,0,0,0,128072,133734,133735,0,1,1e+06,702.902,0,0,0,0,5.48583e+06,5.48583e+06,0,0,1.85749e+12,2999.98,3000,5.4861e+06,-27.4393, +I1,12.01.2001 16:48:00,305.355,307.672,234.361,40.9194,0,40.9184,176.925,60,2999.85,2999.85,0,0,1373.89,1373.89,0,0,0,0,0,0,128805,134430,134431,0,1,1e+06,703.851,0,0,0,0,5.51583e+06,5.51583e+06,0,0,1.86775e+12,2999.98,3000,5.5161e+06,-27.5562, +I1,22.01.2001 16:48:00,305.295,307.613,234.311,40.9247,0,40.9237,176.919,60,2999.85,2999.85,0,0,1373.81,1373.81,0,0,0,0,0,0,129538,135146,135146,0,1,1e+06,704.516,0,0,0,0,5.54582e+06,5.54582e+06,0,0,1.87801e+12,2999.98,3000,5.5461e+06,-27.6728, +I1,01.02.2001 16:48:00,305.257,307.575,234.28,40.9283,0,40.9274,176.921,60,2999.85,2999.85,0,0,1373.83,1373.83,0,0,0,0,0,0,130271,135867,135867,0,1,1e+06,704.949,0,0,0,0,5.57582e+06,5.57582e+06,0,0,1.88827e+12,2999.98,3000,5.5761e+06,-27.7892, +I1,11.02.2001 16:48:00,305.18,307.498,234.22,40.9377,0,40.9367,176.927,60,2999.85,2999.85,0,0,1373.93,1373.93,0,0,0,0,0,0,131004,136569,136569,0,1,1e+06,703.672,0,0,0,0,5.60582e+06,5.60582e+06,0,0,1.89853e+12,2999.98,3000,5.6061e+06,-27.9052, +I1,21.02.2001 16:48:00,305.129,307.447,234.179,40.9432,0,40.9422,176.925,60,2999.85,2999.85,0,0,1373.9,1373.9,0,0,0,0,0,0,131736,137283,137283,0,1,1e+06,704.311,0,0,0,0,5.63582e+06,5.63582e+06,0,0,1.90879e+12,2999.98,3000,5.6361e+06,-28.0209, +I1,03.03.2001 16:48:00,305.073,307.392,234.136,40.9502,0,40.9493,176.929,60,2999.85,2999.85,0,0,1373.96,1373.96,0,0,0,0,0,0,132469,137992,137992,0,1,1e+06,704.991,0,0,0,0,5.66582e+06,5.66582e+06,0,0,1.91905e+12,2999.98,3000,5.6661e+06,-28.1363, +I1,13.03.2001 16:48:00,305.02,307.339,234.095,40.9567,0,40.9557,176.932,60,2999.85,2999.85,0,0,1374,1374,0,0,0,0,0,0,133201,138703,138703,0,1,1e+06,705.671,0,0,0,0,5.69582e+06,5.69582e+06,0,0,1.9293e+12,2999.98,3000,5.6961e+06,-28.2514, +I1,23.03.2001 16:48:00,304.992,307.311,234.074,40.9603,0,40.9594,176.935,60,2999.85,2999.85,0,0,1374.06,1374.06,0,0,0,0,0,0,133934,139423,139423,0,1,1e+06,704.303,0,0,0,0,5.72582e+06,5.72582e+06,0,0,1.93956e+12,2999.98,3000,5.7261e+06,-28.3662, +I1,02.04.2001 16:48:00,304.927,307.246,234.024,40.9691,0,40.9682,176.944,60,2999.85,2999.85,0,0,1374.2,1374.2,0,0,0,0,0,0,134666,140125,140125,0,1,1e+06,705.118,0,0,0,0,5.75581e+06,5.75581e+06,0,0,1.94982e+12,2999.98,3000,5.7561e+06,-28.4808, +I1,12.04.2001 16:48:00,304.875,307.195,233.984,40.9754,0,40.9745,176.945,60,2999.85,2999.85,0,0,1374.21,1374.21,0,0,0,0,0,0,135398,140836,140836,0,1,1e+06,705.507,0,0,0,0,5.78581e+06,5.78581e+06,0,0,1.96008e+12,2999.98,3000,5.7861e+06,-28.595, +I1,22.04.2001 16:48:00,304.837,307.157,233.955,40.9807,0,40.9797,176.949,60,2999.85,2999.85,0,0,1374.27,1374.27,0,0,0,0,0,0,136130,141550,141550,0,1,1e+06,705.905,0,0,0,0,5.81581e+06,5.81581e+06,0,0,1.97034e+12,2999.98,3000,5.8161e+06,-28.7089, +I1,02.05.2001 16:48:00,304.785,307.105,233.917,40.9879,0,40.9869,176.956,60,2999.85,2999.85,0,0,1374.37,1374.37,0,0,0,0,0,0,136862,142256,142257,0,1,1e+06,706.483,0,0,0,0,5.84581e+06,5.84581e+06,0,0,1.98059e+12,2999.98,3000,5.8461e+06,-28.8225, +I1,12.05.2001 16:48:00,304.746,307.068,233.889,40.9936,0,40.9926,176.96,60,2999.85,2999.85,0,0,1374.44,1374.44,0,0,0,0,0,0,137594,142969,142969,0,1,1e+06,706.933,0,0,0,0,5.87581e+06,5.87581e+06,0,0,1.99085e+12,2999.98,3000,5.8761e+06,-28.9358, +I1,22.05.2001 16:48:00,304.697,307.019,233.852,41.0002,0,40.9993,176.967,60,2999.85,2999.85,0,0,1374.54,1374.54,0,0,0,0,0,0,138326,143677,143677,0,1,1e+06,707.528,0,0,0,0,5.90581e+06,5.90581e+06,0,0,2.00111e+12,2999.98,3000,5.9061e+06,-29.0489, +I1,01.06.2001 16:48:00,304.653,306.975,233.82,41.0066,0,41.0057,176.972,60,2999.85,2999.85,0,0,1374.61,1374.61,0,0,0,0,0,0,139057,144386,144386,0,1,1e+06,708.103,0,0,0,0,5.9358e+06,5.9358e+06,0,0,2.01137e+12,2999.98,3000,5.9361e+06,-29.1616, +I1,11.06.2001 16:48:00,304.612,306.935,233.789,41.012,0,41.011,176.977,60,2999.85,2999.85,0,0,1374.7,1374.7,0,0,0,0,0,0,139789,145099,145099,0,1,1e+06,708.658,0,0,0,0,5.9658e+06,5.9658e+06,0,0,2.02162e+12,2999.98,3000,5.9661e+06,-29.2741, +I1,21.06.2001 16:48:00,304.566,306.889,233.756,41.0191,0,41.0182,176.983,60,2999.85,2999.85,0,0,1374.79,1374.79,0,0,0,0,0,0,140520,145805,145805,0,1,1e+06,709.267,0,0,0,0,5.9958e+06,5.9958e+06,0,0,2.03188e+12,2999.98,3000,5.9961e+06,-29.3862, +I1,23.06.2001,304.56,306.883,233.751,41.0197,0,41.0188,176.988,60,2999.85,2999.85,0,0,1374.87,1374.87,0,0,0,0,0,0,140615,146216,146217,0,1,1e+06,709.375,0,0,0,0,5.9997e+06,5.9997e+06,0,0,2.03321e+12,2999.98,3000,6e+06,-29.4008, +I1,23.06.2001,304.56,306.883,233.751,41.0197,0,41.0188,176.988,60,2999.85,2999.85,0,0,1374.87,1374.87,0,0,0,0,0,0,140615,146216,146217,0,1,1e+06,709.375,0,0,0,0,5.9997e+06,5.9997e+06,0,0,2.03321e+12,2999.98,3000,6e+06,-29.4008, diff --git a/ApplicationLibCode/UnitTests/TestData/RifStimPlanCsvSummaryReader/data_vs_time.csv b/ApplicationLibCode/UnitTests/TestData/RifStimPlanCsvSummaryReader/data_vs_time.csv new file mode 100644 index 0000000000..499d12c201 --- /dev/null +++ b/ApplicationLibCode/UnitTests/TestData/RifStimPlanCsvSummaryReader/data_vs_time.csv @@ -0,0 +1,9 @@ +[Frac 1] +Time,BHP,Net Pressure,Pump Rate,Loss Rate,Concentration,Slurry Volume,Efficiency,Overall Efficiency,Penetration,Height,Average Width,Temperature,Acid Penetration,Incremental Fluid Efficiency, +min,bar,bar,lpm,lpm,kg/m^3,m^3,,,m,m,cm,C,m,, +.058,4000.1111,1258.1111,7000.9434,33.5712,.0000,.1111,.1111,.4000,.40,.0000,5.1481,152.0,.0000,2.02323, +.6456,900.2222,15.2222,8000.9995,444.6655,.0000,2.2222,.2222,.8000,28.90,.0000,.3939,1900.5711,.0000,.9232, +3.7614,910.3333,13.3333,9000.0000,8998.5279,.0000,33.3333,.3333,.7000,767.0775,.0000,.4793,123.9269,.0000,.2323, +5.0634,923.4444,13.4444,10000.9995,3444.0707,.0000,44.4,.44444,.8000,645.7691,.0000,.5324,198.9573,.0000,.45455, +8.6245,1000.5555,12.5555,11111.0005,5555.2145,.0000,55.555,.5555,.9000,644.3925,.0000,.5683,1104.0959,.0000,.4545, +