diff --git a/EDP/Frame9Model.tcl b/EDP/Frame9Model.tcl new file mode 100644 index 00000000..2560876a --- /dev/null +++ b/EDP/Frame9Model.tcl @@ -0,0 +1,37 @@ +#units kip, in + +# variable parameter +pset w 2200.0 +pset k 1600.0 + + +# constants +set g 386.1; +set b 1800. +set d 1800. +set h 1440. +set numStory 9 +set bW 20000.0; # building Weight + +# derived parameters +set sH [expr $h/(1.*$numStory)]; # story Height +set fM [expr $w/$g]; # floor translational mass +set sM 1.0e-3; # floor rotational mass + +# build model +model Basic -ndm 3 -ndf 6 +node 1 0. 0. 0. +fix 1 1 1 1 1 1 1 +set E 29000. +set A 1e4 +set I [expr $k*$sH*$sH*$sH/(12.*$E)] +geomTransf Linear 1 0 1 0 +set G 1e4 +set J 1e8 + +for {set i 1; set j 2} {$i <= $numStory} {incr i 1; incr j 1} { + node $j 0. 0. [expr $i*$sH] -mass $fM $fM $fM $sM $sM $sM + fix $j 0 0 1 1 1 0 + element elasticBeamColumn $i $i $j $A $E $G $J $I $I 1 +} + diff --git a/EDP/HydroEDP_Selection.cpp b/EDP/HydroEDP_Selection.cpp index b8a586c8..4947c69f 100644 --- a/EDP/HydroEDP_Selection.cpp +++ b/EDP/HydroEDP_Selection.cpp @@ -65,8 +65,9 @@ UPDATES, ENHANCEMENTS, OR MODIFICATIONS. #include #include #include "EDP/StandardHydroEDP.h" -#include "EDP/StandardTsunamiEDP.h" -#include "EDP/StandardStormSurgeEDP.h" +// #include "EDP/StandardTsunamiEDP.h" +// #include "EDP/StandardStormSurgeEDP.h" +#include "SurrogateEDP.h" #include @@ -90,8 +91,9 @@ HydroEDP_Selection::HydroEDP_Selection(QWidget *parent) edpSelection->addItem(tr("Standard Earthquake")); edpSelection->addItem(tr("Standard Wind")); edpSelection->addItem(tr("Standard Hydro")); - edpSelection->addItem(tr("Standard Tsunami")); - edpSelection->addItem(tr("Standard Storm Surge")); + // edpSelection->addItem(tr("Standard Tsunami")); + // edpSelection->addItem(tr("Standard Storm Surge")); + edpSelection->addItem(tr("None (only for surrogate)")); edpSelection->addItem(tr("User Defined")); edpSelection->setObjectName("EDPSelectionComboBox"); @@ -100,9 +102,10 @@ HydroEDP_Selection::HydroEDP_Selection(QWidget *parent) edpSelection->setItemData(1, "Common earthquake engineering demand parameters (EDPs).", Qt::ToolTipRole); edpSelection->setItemData(2, "Common wind engineering demand parameters (EDPs).", Qt::ToolTipRole); edpSelection->setItemData(3, "Common hydrodynamic engineering demand parameters (EDPs).", Qt::ToolTipRole); - edpSelection->setItemData(4, "A tsunami event with measurement of established tsunami demand parameters (EDPs) for coastal structures (e.g. residential, commercial).", Qt::ToolTipRole); - edpSelection->setItemData(5, "A hurricane storm surge event with measurement of established hydrodynamic storm surge demand parameters (EDPs) for affected structures (e.g. residential, commercial).", Qt::ToolTipRole); - edpSelection->setItemData(6, "User-defined selection of engineering demand parameters (EDPs) for custom workflows.", Qt::ToolTipRole); + // edpSelection->setItemData(4, "A tsunami event with measurement of established tsunami demand parameters (EDPs) for coastal structures (e.g. residential, commercial).", Qt::ToolTipRole); + // edpSelection->setItemData(5, "A hurricane storm surge event with measurement of established hydrodynamic storm surge demand parameters (EDPs) for affected structures (e.g. residential, commercial).", Qt::ToolTipRole); + edpSelection->setItemData(4, "No EDPs will be generated, only surrogate data will be used.", Qt::ToolTipRole); + edpSelection->setItemData(5, "User-defined selection of engineering demand parameters (EDPs) for custom workflows.", Qt::ToolTipRole); theSelectionLayout->addWidget(label); theSelectionLayout->addWidget(edpSelection); theSelectionLayout->addStretch(); @@ -122,21 +125,32 @@ HydroEDP_Selection::HydroEDP_Selection(QWidget *parent) theStandardEarthquakeEDPs = new StandardEarthquakeEDP(); theStandardWindEDPs = new StandardWindEDP(); theStandardHydroEDPs = new StandardHydroEDP(); - theStandardTsunamiEDPs = new StandardTsunamiEDP(); - theStandardStormSurgeEDPs = new StandardStormSurgeEDP(); + // theStandardTsunamiEDPs = new StandardTsunamiEDP(); + // theStandardStormSurgeEDPs = new StandardStormSurgeEDP(); + // theSurrogateEDPs = new SurrogateEDP(); theUserDefinedEDPs = new UserDefinedEDP(); theStackedWidget->addWidget(theStandardEDPs); theStackedWidget->addWidget(theStandardEarthquakeEDPs); theStackedWidget->addWidget(theStandardWindEDPs); theStackedWidget->addWidget(theStandardHydroEDPs); - theStackedWidget->addWidget(theStandardTsunamiEDPs); - theStackedWidget->addWidget(theStandardStormSurgeEDPs); + // theStackedWidget->addWidget(theStandardTsunamiEDPs); + // theStackedWidget->addWidget(theStandardStormSurgeEDPs); theStackedWidget->addWidget(theUserDefinedEDPs); - theStackedWidget->setCurrentIndex(0); + + SurrogateEDP * theSurrogateEDPs_tmp = SurrogateEDP::getInstance(); + theSurrogateEDPs = theSurrogateEDPs_tmp; + + connect(theSurrogateEDPs_tmp, &SurrogateEDP::surrogateSelected, [=](){ + edpSelection->setCurrentIndex(4); + }); + theStackedWidget->addWidget(theSurrogateEDPs); + + layout->addWidget(theStackedWidget); this->setLayout(layout); + theStackedWidget->setCurrentIndex(0); theCurrentEDP=theStandardEDPs; connect(edpSelection, SIGNAL(currentIndexChanged(QString)), this, @@ -191,17 +205,23 @@ void HydroEDP_Selection::edpSelectionChanged(const QString &arg1) theCurrentEDP = theStandardHydroEDPs; } - else if(arg1 == "Standard Tsunami" || arg1 == "StandardTsunamiEDP") { + // else if(arg1 == "Standard Tsunami" || arg1 == "StandardTsunamiEDP") { + // theStackedWidget->setCurrentIndex(4); + // theCurrentEDP = theStandardTsunamiEDPs; + // } + + // else if(arg1 == "Standard Storm Surge" || arg1 == "StandardStormSurgeEDP") { + // theStackedWidget->setCurrentIndex(5); + // theCurrentEDP = theStandardStormSurgeEDPs; + // } + + else if (arg1 == "None (only for surrogate)" || arg1 == "SurrogateEDP") { theStackedWidget->setCurrentIndex(4); - theCurrentEDP = theStandardTsunamiEDPs; + theCurrentEDP = theSurrogateEDPs; } - else if(arg1 == "Standard Storm Surge" || arg1 == "StandardStormSurgeEDP") { - theStackedWidget->setCurrentIndex(5); - theCurrentEDP = theStandardStormSurgeEDPs; - } else if(arg1 == "User Defined" || arg1 == "UserDefinedEDP") { - theStackedWidget->setCurrentIndex(6); + theStackedWidget->setCurrentIndex(5); theCurrentEDP = theUserDefinedEDPs; } else { @@ -253,17 +273,21 @@ HydroEDP_Selection::inputAppDataFromJSON(QJsonObject &jsonObject) (type == QString("StandardHydroEDP")) || (type == QString("Standard Hydro"))) { index = 3; } - else if ((type == QString("StandardTsunamiEDP")) || - (type == QString("Standard Tsunami EDPs")) || (type == QString("Standard Tsunami"))) { + // else if ((type == QString("StandardTsunamiEDP")) || + // (type == QString("Standard Tsunami EDPs")) || (type == QString("Standard Tsunami"))) { + // index = 4; + // } + // else if ((type == QString("StandardStormSurgeEDP")) || + // (type == QString("Standard Storm Surge EDPs") || (type == QString("Standard Storm Surge")))) { + // index = 5; + // } + else if ((type == QString("SurrogateEDP")) || + (type == QString("Surrogate EDPs")) || (type == QString("Surrogate")) || (type == QString("None (only for surrogate)"))) { index = 4; - } - else if ((type == QString("StandardStormSurgeEDP")) || - (type == QString("Standard Storm Surge EDPs") || (type == QString("Standard Storm Surge")))) { - index = 5; - } + } else if ((type == QString("UserDefinedEDP")) || (type == QString("User Defined EDPs")) || (type == QString("User Defined"))) { - index = 6; + index = 5; } else { errorMessage("HydroEDP_Selection - no valid type found"); diff --git a/EDP/HydroEDP_Selection.h b/EDP/HydroEDP_Selection.h index 468073b5..54c63632 100644 --- a/EDP/HydroEDP_Selection.h +++ b/EDP/HydroEDP_Selection.h @@ -54,8 +54,10 @@ class QStackedWidget; // class StandardWindEDP; // class StandardEarthquakeEDP; // class StandardEDP; +// #include // class UserDefinedEDP; class UserDefinedApplication; + //class RandomVariablesContainer; class HydroEDP_Selection : public SimCenterAppWidget @@ -90,10 +92,10 @@ public slots: SimCenterAppWidget *theStandardEarthquakeEDPs; SimCenterAppWidget *theStandardWindEDPs; SimCenterAppWidget *theStandardHydroEDPs; - SimCenterAppWidget *theStandardTsunamiEDPs; - SimCenterAppWidget *theStandardStormSurgeEDPs; + // SimCenterAppWidget *theStandardTsunamiEDPs; + // SimCenterAppWidget *theStandardStormSurgeEDPs; + SimCenterAppWidget *theSurrogateEDPs; SimCenterAppWidget *theUserDefinedEDPs; - //RandomVariablesContainer *theRandomVariables; }; diff --git a/EDP/StandardHydroEDP.cpp b/EDP/StandardHydroEDP.cpp index b6bc2173..dc4476d5 100644 --- a/EDP/StandardHydroEDP.cpp +++ b/EDP/StandardHydroEDP.cpp @@ -42,6 +42,22 @@ UPDATES, ENHANCEMENTS, OR MODIFICATIONS. #include // #include +#include "SimCenterPreferences.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include #include #include @@ -63,6 +79,7 @@ UPDATES, ENHANCEMENTS, OR MODIFICATIONS. #include #include #include + using namespace std; #include @@ -86,10 +103,15 @@ StandardHydroEDP::StandardHydroEDP(QWidget *parent) QGridLayout *scriptLayout = new QGridLayout(); // add stuff to enter Additional Input - QLabel *labelAI = new QLabel("Additional Input"); + QLabel *labelAI = new QLabel("Additional Input / Recorder Script"); additionalInputLE = new QLineEdit; // Set the background text to (Optional) - additionalInputLE->setPlaceholderText("(Optional)"); + additionalInputLE->setPlaceholderText("(Optional. Check-in HydroUQ/Examples/EDP for example additional input scripts, e.g. OpenSees recorder tcl scripts.)"); + + QFileInfo fileAI(SimCenterPreferences::getInstance()->getAppDir() + QDir::separator() + "Examples" + QDir::separator() + "EDP" + QDir::separator() + "StandardHydroEDP_FrameRecorder.tcl"); + additionalInputLE->setText(fileAI.absoluteFilePath()); + additionalInputLE->setReadOnly(true); + additionalInputLE->setToolTip("This file is used to set-up the recorders / sensors / probes in the output of the structural response simulation, FEM, after the UQ workflow completes. Often it is a tcl script that contains the OpenSees recorder commands."); QPushButton *chooseAdditionalInputButton = new QPushButton(); chooseAdditionalInputButton->setText(tr("Choose")); @@ -99,11 +121,15 @@ StandardHydroEDP::StandardHydroEDP(QWidget *parent) scriptLayout->addWidget(chooseAdditionalInputButton, 0, 4); // add stuff to enter processing script - QLabel *labelPS = new QLabel("Processing Script"); + QLabel *labelPS = new QLabel("Post-Processing / EDP Extractor Script"); processingScriptLE = new QLineEdit; - processingScriptLE->setText("StandardHydroEDP_PostProcess.py"); + // Set the background text to (Optional) + processingScriptLE->setPlaceholderText("(Required. Check-in HydroUQ/Examples/EDP for example post-processing scripts, e.g. OpenSees post-processing tcl scripts.)"); + + QFileInfo fileLE(SimCenterPreferences::getInstance()->getAppDir() + QDir::separator() + "Examples" + QDir::separator() + "EDP" + QDir::separator() + "StandardHydroEDP_FramePost.tcl"); + processingScriptLE->setText(fileLE.absoluteFilePath()); processingScriptLE->setReadOnly(true); - processingScriptLE->setToolTip("This script is used to process the output of the event simulation, EVT, to extract the Engineering Demand Parameters (EDPs) into a results.out file."); + processingScriptLE->setToolTip("This script is used to process the output of the structural response simulation, FEM, to extract the Engineering Demand Parameters (EDPs) into a file for analysis, results.out, after the UQ workflow completes."); QPushButton *chooseProcessingScriptButton = new QPushButton(); @@ -179,30 +205,47 @@ StandardHydroEDP::StandardHydroEDP(QWidget *parent) edp->setLayout(edpLayout); edpLayout->addStretch(); // make QStrings for EDP input - QString edp1 = "max_force"; // max force on the structure or component - QString edp2 = "max_pressure"; // max pressure on the structure or component - QString edp3 = "total_impulse"; // total impulse on the structure or component, integral of force-time series + + QString edp1 = "peak-floor-displacement_1_1"; + // QString edp2 = "peak-interstory-drift"; + QString edp3 = "peak-floor-acceleration_1_1"; + // QString edp4 = "root-mean-square-acceleration"; + QString edp5 = "peak-floor-force_1_1"; // max force on the structure or component + QString edp6 = "peak-floor-pressure_1_1"; // max pressure on the structure or component + + // QString edp1 = "Disp"; + // QString edp2 = "RMSA"; + // QString edp3 = "Force"; + // QString edp4 = "Pressure"; + + // QString edp7 = "total_floor_impulse"; // total impulse on the structure or component, integral of force-time series + // QString edp10 = "max_interstory_drift"; // interstory drift, i.e. max relative displacement of floor n+1 vs floor n... + // QString edp11 = "max_roof_drift"; // roof drift, i.e. max relative displacement of top floor to ground + + // QString edp1 = "max_force"; // max force on the structure or component + // QString edp2 = "max_pressure"; // max pressure on the structure or component + // QString edp3 = "total_impulse"; // total impulse on the structure or component, integral of force-time series + // QString edp10 = "max_interstory_drift"; // interstory drift, i.e. max relative displacement of floor n+1 vs floor n... + // QString edp11 = "max_roof_drift"; // roof drift, i.e. max relative displacement of top floor to ground // QString edp4 = "max_wave_velocity"; // max wave velocity at a characteristic location near the structure // QString edp5 = "max_wave_height"; // max wave elevation at a characteristic location near the structure // QString edp6 = "average_wave_velocity"; // average wave elevation at a characteristic location near the structure // QString edp7 = "average_wave_height"; // average wave elevation at a characteristic location near the structure // QString edp8 = "total_wave_duration"; // wave duration based on exceeding a threshold of some variable at a characteristic location near the structure // QString edp9 = "total_wave_momentum_flux"; // wave momentum flux based at a characteristic location near the structure - QString edp10 = "max_interstory_drift"; // interstory drift, i.e. max relative displacement of floor n+1 vs floor n... - QString edp11 = "max_roof_drift"; // roof drift, i.e. max relative displacement of top floor to ground // QString edp12 = "max_abs_acceleration"; // absolute maximum of acceleration // QString edp13 = "max_rel_disp"; // floor relative displacement this->addEDP(edp1); - this->addEDP(edp2); + // this->addEDP(edp2); this->addEDP(edp3); - // this->addEDP(edp4); - // this->addEDP(edp5); - // this->addEDP(edp6); + // this->addEDP(edp4); + this->addEDP(edp5); + this->addEDP(edp6); // this->addEDP(edp7); // this->addEDP(edp8); - this->addEDP(edp10); - this->addEDP(edp11); + // this->addEDP(edp10); + // this->addEDP(edp11); sa->setWidget(edp); layout->addWidget(sa); @@ -282,12 +325,14 @@ StandardHydroEDP::outputToJSON(QJsonObject &jsonObject) QFileInfo fileInfoPS(fileName); if (fileInfoPS.exists()) { - jsonObject["fileNameAI"]= fileInfoPS.fileName(); - jsonObject["filePathAI"]=fileInfoPS.path(); + jsonObject["fileNameAI"] = fileInfoPS.fileName(); + jsonObject["filePathAI"] = fileInfoPS.path(); } else { this->errorMessage("StandardHydroEDP :: additional script does not exist"); } + } else { + this->errorMessage("StandardHydroEDP :: no additional script"); } @@ -336,11 +381,11 @@ StandardHydroEDP::inputFromJSON(QJsonObject &jsonObject) processingScriptLE->setText(QDir(filePath).filePath(fileName)); } else { - this->errorMessage("StandardHydroEDP ::inputFromJSON no filePathPS exists"); + this->errorMessage("StandardHydroEDP ::inputFromJSON no filefilePathPS exists"); } } else { - this->errorMessage("StandardHydroEDP ::inputFromJSON no NamePS exists"); + this->errorMessage("StandardHydroEDP ::inputFromJSON no fileNamePS exists"); } if (jsonObject.contains("fileNameAI")) { @@ -356,8 +401,10 @@ StandardHydroEDP::inputFromJSON(QJsonObject &jsonObject) } else { this->errorMessage("StandardHydroEDP ::inputFromJSON no filePathAI exists"); } - } + } else { + this->errorMessage("StandardHydroEDP ::inputFromJSON no fileNameAI exists"); + } if (jsonObject.contains("EDP")) { @@ -430,7 +477,7 @@ StandardHydroEDP::copyFiles(QString &dirName) { } } else { - this->errorMessage(QString("ERROR: copyFiles: no processing script")); + this->errorMessage(QString("ERROR: copyFiles: failed to copy post-procesing script in EDP tab:") + filename); return false; } @@ -438,7 +485,7 @@ StandardHydroEDP::copyFiles(QString &dirName) { if (!filename.isEmpty()) { if (this->copyFile(filename, dirName) == false) { - this->errorMessage(QString("ERROR: copyFiles: failed to copy") + filename); + this->errorMessage(QString("ERROR: copyFiles: failed to copy additional input script in EDP tab:") + filename); return false; } } diff --git a/EDP/StandardHydroEDP.h b/EDP/StandardHydroEDP.h index 3f3a7e11..74f8fd48 100644 --- a/EDP/StandardHydroEDP.h +++ b/EDP/StandardHydroEDP.h @@ -45,7 +45,7 @@ UPDATES, ENHANCEMENTS, OR MODIFICATIONS. #include #include #include - +class QLineEdit; class EDP; // class InputWidgetParameters; diff --git a/EDP/StandardHydroEDP_FramePost.tcl b/EDP/StandardHydroEDP_FramePost.tcl new file mode 100644 index 00000000..92e35256 --- /dev/null +++ b/EDP/StandardHydroEDP_FramePost.tcl @@ -0,0 +1,56 @@ + +set dispIn [open disp.out r] +while { [gets $dispIn data] >= 0 } { + set maxDisp $data +} +set accelIn [open accel.out r] +while { [gets $accelIn data] >= 0 } { + set maxAccel $data +} +set forceIn [open forces.out r] +while { [gets $forceIn data] >= 0 } { + set maxForce $data +} +set pressureIn [open pressures.out r] +while { [gets $pressureIn data] >= 0 } { + set maxPressure $data +} + + +# create file handler to write results to output & list into which we will put results +set resultFile [open results.out w] +set results [] + +# for each quanity in list of QoI passed +# output data + +foreach edp $listQoI { + set splitEDP [split $edp "_"] + set response [lindex $splitEDP 0] + set tag [lindex $splitEDP 1] + if {[llength $splitEDP] == 2} { + set dof 1 + } else { + set dof [lindex $splitEDP 2] + } + + if {$response == "peak-floor-displacement"} { + set nodeDisp [lindex $maxDisp [expr (($tag-1)*2)+$dof-1]] + lappend results $nodeDisp + } elseif {$response == "peak-floor-acceleration"} { + set nodeAccel [lindex $maxAccel [expr (($tag-1)*2)+$dof-1]] + lappend results $nodeAccel + } elseif {$response == "peak-floor-force"} { + set eleForce [lindex $maxForce [expr (($tag-1)*6)+$dof-1]] + lappend results $eleForce + } elseif {$response == "peak-floor-pressure"} { + set elePressure [lindex $maxPressure [expr (($tag-1)*6)+$dof-1]] + lappend results $elePressure + } else { + lappend results 0.0 + } +} + +# send results to output file & close the file +puts $resultFile $results +close $resultFile diff --git a/EDP/StandardHydroEDP_FrameRecorder.tcl b/EDP/StandardHydroEDP_FrameRecorder.tcl new file mode 100644 index 00000000..a69ebbb2 --- /dev/null +++ b/EDP/StandardHydroEDP_FrameRecorder.tcl @@ -0,0 +1,7 @@ +set numNode [llength [getNodeTags]] +set numEle [llength [getEleTags]] + +recorder EnvelopeNode -file disp.out -nodeRange 1 $numNode -dof 1 2 disp +recorder NodeRMS -file accel.out -nodeRange 1 $numNode -dof 1 2 accel +recorder EnvelopeElement -file forces.out -eleRange 1 $numEle forces +recorder EnvelopeElement -file pressures.out -eleRange 1 $numEle forces \ No newline at end of file diff --git a/EVENTS/HydroEventSelection.cpp b/EVENTS/HydroEventSelection.cpp index c946af50..95839d84 100644 --- a/EVENTS/HydroEventSelection.cpp +++ b/EVENTS/HydroEventSelection.cpp @@ -424,7 +424,11 @@ void HydroEventSelection::eventSelectionChanged(const QString &arg1) return; } - +void +HydroEventSelection::replyEventType(void) +{ + emit typeEVT("Hydro"); // used in surrogate +} void HydroEventSelection::sendStatusMessage(QString message) { diff --git a/EVENTS/HydroEventSelection.h b/EVENTS/HydroEventSelection.h index 703edd09..b93a3ac4 100644 --- a/EVENTS/HydroEventSelection.h +++ b/EVENTS/HydroEventSelection.h @@ -94,6 +94,7 @@ class HydroEventSelection : public SimCenterAppWidget void statusMessage(QString message); void errorMessage(QString message); void fatalMessage(QString message); + void typeEVT(QString type); public slots: void eventSelectionChanged(int arg1); @@ -101,6 +102,7 @@ public slots: void sendStatusMessage(QString message); // WE-UQ void sendErrorMessage(QString message); // WE-UQ void sendFatalMessage(QString message); // WE-UQ + void replyEventType(void); private: QComboBox *eventSelection; diff --git a/EVENTS/MPM/GeometryAI.cpp b/EVENTS/MPM/GeometryAI.cpp index 574686f2..735ef3cb 100644 --- a/EVENTS/MPM/GeometryAI.cpp +++ b/EVENTS/MPM/GeometryAI.cpp @@ -327,9 +327,9 @@ GeometryAI::showImage(QString &text) text = text.replace(" ", ""); QString ext = ".png"; - QString plotPath = QDir::cleanPath("/home/justinbonus/SimCenter/point-e/point_e/examples/output") + QDir::separator() + QString plotPath = SimCenterPreferences::getInstance()->getLocalWorkDir() + QDir::separator() + textPrompt->text() - + ext; + + ext; // Temp hard-code, to be in SimCenterBackendApplications/modules/tools if(QFileInfo::exists(plotPath)) { diff --git a/Examples/EDP/Frame9Model.tcl b/Examples/EDP/Frame9Model.tcl new file mode 100644 index 00000000..2560876a --- /dev/null +++ b/Examples/EDP/Frame9Model.tcl @@ -0,0 +1,37 @@ +#units kip, in + +# variable parameter +pset w 2200.0 +pset k 1600.0 + + +# constants +set g 386.1; +set b 1800. +set d 1800. +set h 1440. +set numStory 9 +set bW 20000.0; # building Weight + +# derived parameters +set sH [expr $h/(1.*$numStory)]; # story Height +set fM [expr $w/$g]; # floor translational mass +set sM 1.0e-3; # floor rotational mass + +# build model +model Basic -ndm 3 -ndf 6 +node 1 0. 0. 0. +fix 1 1 1 1 1 1 1 +set E 29000. +set A 1e4 +set I [expr $k*$sH*$sH*$sH/(12.*$E)] +geomTransf Linear 1 0 1 0 +set G 1e4 +set J 1e8 + +for {set i 1; set j 2} {$i <= $numStory} {incr i 1; incr j 1} { + node $j 0. 0. [expr $i*$sH] -mass $fM $fM $fM $sM $sM $sM + fix $j 0 0 1 1 1 0 + element elasticBeamColumn $i $i $j $A $E $G $J $I $I 1 +} + diff --git a/Examples/EDP/StandardHydroEDP_FramePost.tcl b/Examples/EDP/StandardHydroEDP_FramePost.tcl new file mode 100644 index 00000000..92e35256 --- /dev/null +++ b/Examples/EDP/StandardHydroEDP_FramePost.tcl @@ -0,0 +1,56 @@ + +set dispIn [open disp.out r] +while { [gets $dispIn data] >= 0 } { + set maxDisp $data +} +set accelIn [open accel.out r] +while { [gets $accelIn data] >= 0 } { + set maxAccel $data +} +set forceIn [open forces.out r] +while { [gets $forceIn data] >= 0 } { + set maxForce $data +} +set pressureIn [open pressures.out r] +while { [gets $pressureIn data] >= 0 } { + set maxPressure $data +} + + +# create file handler to write results to output & list into which we will put results +set resultFile [open results.out w] +set results [] + +# for each quanity in list of QoI passed +# output data + +foreach edp $listQoI { + set splitEDP [split $edp "_"] + set response [lindex $splitEDP 0] + set tag [lindex $splitEDP 1] + if {[llength $splitEDP] == 2} { + set dof 1 + } else { + set dof [lindex $splitEDP 2] + } + + if {$response == "peak-floor-displacement"} { + set nodeDisp [lindex $maxDisp [expr (($tag-1)*2)+$dof-1]] + lappend results $nodeDisp + } elseif {$response == "peak-floor-acceleration"} { + set nodeAccel [lindex $maxAccel [expr (($tag-1)*2)+$dof-1]] + lappend results $nodeAccel + } elseif {$response == "peak-floor-force"} { + set eleForce [lindex $maxForce [expr (($tag-1)*6)+$dof-1]] + lappend results $eleForce + } elseif {$response == "peak-floor-pressure"} { + set elePressure [lindex $maxPressure [expr (($tag-1)*6)+$dof-1]] + lappend results $elePressure + } else { + lappend results 0.0 + } +} + +# send results to output file & close the file +puts $resultFile $results +close $resultFile diff --git a/Examples/EDP/StandardHydroEDP_FrameRecorder.tcl b/Examples/EDP/StandardHydroEDP_FrameRecorder.tcl new file mode 100644 index 00000000..a69ebbb2 --- /dev/null +++ b/Examples/EDP/StandardHydroEDP_FrameRecorder.tcl @@ -0,0 +1,7 @@ +set numNode [llength [getNodeTags]] +set numEle [llength [getEleTags]] + +recorder EnvelopeNode -file disp.out -nodeRange 1 $numNode -dof 1 2 disp +recorder NodeRMS -file accel.out -nodeRange 1 $numNode -dof 1 2 accel +recorder EnvelopeElement -file forces.out -eleRange 1 $numEle forces +recorder EnvelopeElement -file pressures.out -eleRange 1 $numEle forces \ No newline at end of file diff --git a/Examples/hdro-0005/data/hdro-0005_GP_MonteCarlo_Comparison_2024.09.30.csv b/Examples/hdro-0005/data/hdro-0005_GP_MonteCarlo_Comparison_2024.09.30.csv new file mode 100644 index 00000000..92eff0d5 --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_GP_MonteCarlo_Comparison_2024.09.30.csv @@ -0,0 +1,1001 @@ +Run #, fc, fy, E, 1-PFA-1-1, 1-RMSA-1-1, 1-PFD-1-1, 1-PID-1-1,,,,,,,, fc, fy, E, 1-PFA-1-1, 1-RMSA-1-1, 1-PFD-1-1, 1-PID-1-1 +1,5.26905,63.2124,27183.4,12.1453,0.128758,0.034762,0.000241404,,,,,,,,5.46494,69.285,32532.9,12.7199,0.13765,0.0337731,0.000234535 +2,6.08635,61.1019,33579.6,12.0571,0.126169,0.0327765,0.000227614,,,,,,,,6.89707,58.7763,25316.5,11.7033,0.120703,0.0326354,0.000226634 +3,6.042,55.1805,30178.1,11.9085,0.125579,0.0332489,0.000230896,,,,,,,,5.84268,62.6472,33309.5,12.2348,0.130199,0.033138,0.000230125 +4,4.79928,57.9057,32497,12.1994,0.129737,0.0347782,0.000241513,,,,,,,,3.78904,58.7472,24714.7,12.6883,0.138202,0.0375177,0.00026054 +5,6.31936,51.1734,29916.3,12.6562,0.136355,0.0328926,0.000228421,,,,,,,,6.05847,68.1934,28541.5,12.2234,0.130209,0.0334162,0.000232057 +6,4.63387,65.7357,27764.9,12.2003,0.129942,0.0356736,0.00024773,,,,,,,,6.35028,59.3551,33497.3,11.7176,0.120698,0.0324159,0.00022511 +7,6.33515,54.2575,26186.4,12.2652,0.130237,0.0333228,0.000231409,,,,,,,,6.26353,66.9938,32554.5,12.4371,0.133471,0.032645,0.000226702 +8,5.48489,59.1384,34894,12.3815,0.131562,0.0334607,0.000232367,,,,,,,,5.56864,48.4761,31324.1,12.0929,0.128295,0.0337743,0.000234544 +9,6.52043,67.4757,30043.5,12.2856,0.130598,0.0326008,0.000226395,,,,,,,,7.8615,57.0804,31507.3,11.8789,0.12354,0.0306865,0.000213101 +10,6.78601,62.0512,31949.9,12.1723,0.127894,0.0320217,0.000222373,,,,,,,,5.84297,55.5586,33754.2,11.8049,0.122804,0.0330837,0.000229748 +11,5.20094,58.4262,32540.4,12.6162,0.136113,0.0341692,0.000237286,,,,,,,,5.36973,64.6006,26028.9,12.2242,0.129559,0.03475,0.00024132 +12,5.16093,57.3731,32773.8,12.5257,0.134816,0.0341986,0.000237489,,,,,,,,5.82914,59.1467,28189.2,12.3138,0.130073,0.0337897,0.000234651 +13,6.42878,58.4003,34732,12.5004,0.132938,0.0321765,0.000223447,,,,,,,,5.31882,55.0451,31712.7,11.7396,0.122757,0.0340904,0.000236739 +14,5.29109,63.2526,31939.3,12.0702,0.128703,0.0341128,0.000236895,,,,,,,,6.91102,60.8859,25884.2,12.1486,0.128148,0.0325493,0.000226036 +15,4.9751,56.8598,32872.7,12.2046,0.129868,0.034463,0.000239325,,,,,,,,5.68938,62.8941,32852.4,12.3456,0.130335,0.0334108,0.000232019 +16,6.05878,57.8309,30513,12.3364,0.131975,0.0331844,0.000230447,,,,,,,,6.61244,60.5182,33471.4,11.8063,0.121738,0.0320674,0.00022269 +17,6.62215,58.8265,27429.8,12.2295,0.129886,0.0327716,0.000227581,,,,,,,,7.66114,53.5285,30136.6,12.5882,0.13446,0.0310843,0.000215863 +18,6.89903,62.0284,28849.9,12.4694,0.133663,0.0322287,0.00022381,,,,,,,,5.7616,58.9524,35567.5,11.8418,0.123286,0.0329782,0.000229015 +19,5.3022,61.2476,27373.1,12.1505,0.12893,0.0346867,0.000240881,,,,,,,,5.87429,60.3694,27135.5,11.8507,0.124361,0.0338565,0.000235115 +20,5.25202,45.8313,32983.4,12.2484,0.130385,0.0340374,0.000236368,,,,,,,,5.20411,54.9095,32857.8,11.7841,0.123515,0.0341136,0.0002369 +21,7.10524,56.9585,27209.7,12.2455,0.129638,0.032143,0.000223214,,,,,,,,5.23898,64.0623,33775.4,12.6914,0.137287,0.0339458,0.000235734 +22,6.95314,57.3033,30345.7,12.2996,0.130469,0.0319844,0.000222115,,,,,,,,6.25371,61.0737,29456.3,12.7243,0.136923,0.0330293,0.00022937 +23,6.19829,59.5777,25718.6,12.0877,0.127464,0.0335757,0.000233165,,,,,,,,6.05036,67.1445,33545.2,12.6017,0.13444,0.0328203,0.000227919 +24,6.74725,71.2287,32381.2,12.3189,0.130727,0.0320236,0.000222386,,,,,,,,5.86992,57.8695,28160.9,12.1712,0.129556,0.0337342,0.000234265 +25,6.12577,58.6109,28162.2,12.1738,0.128692,0.0333774,0.000231787,,,,,,,,6.31422,65.2099,26568,11.7347,0.121891,0.0332956,0.000231219 +26,6.32964,57.7201,26243.6,12.0918,0.127478,0.0333236,0.000231415,,,,,,,,6.95674,68.7449,28875.9,12.004,0.125241,0.0321387,0.000223185 +27,6.93857,58.9349,27884,12.4414,0.133205,0.0322878,0.000224221,,,,,,,,6.43444,60.5788,32032.4,12.6524,0.134976,0.0324737,0.000225512 +28,5.13109,62.8456,30718.1,12.4767,0.133653,0.0345084,0.000239642,,,,,,,,5.98956,53.4496,31137.8,11.9556,0.125371,0.0331957,0.000230526 +29,5.77441,51.9559,26575.7,12.2348,0.130205,0.034084,0.000236695,,,,,,,,5.35172,67.4278,31265.6,12.3381,0.130772,0.0340989,0.000236798 +30,5.78665,70.4941,31007.6,12.2486,0.130156,0.03351,0.000232708,,,,,,,,6.98655,57.6518,32150.2,11.8139,0.121607,0.0317256,0.000220316 +31,5.89726,62.2864,24971.3,12.4473,0.133156,0.0341075,0.000236857,,,,,,,,5.86973,48.6977,23196.5,12.5924,0.135793,0.0343654,0.000238649 +32,6.02964,64.0391,29923.1,12.0105,0.127579,0.0332977,0.000231233,,,,,,,,5.5587,59.2154,32049.9,12.4225,0.132004,0.0336978,0.000234013 +33,5.62029,64.9339,30301.2,12.4471,0.133192,0.0338381,0.000234987,,,,,,,,5.6158,60.6145,33575,11.7694,0.122588,0.0334265,0.000232129 +34,7.04561,62.3044,27157.9,12.3417,0.131262,0.0322287,0.000223807,,,,,,,,4.98494,61.3122,30945.4,12.1679,0.128539,0.0346891,0.000240896 +35,5.43927,62.9336,30029.9,11.8834,0.124736,0.0341378,0.000237068,,,,,,,,6.30502,53.4985,35429.5,12.3712,0.131885,0.0322515,0.000223969 +36,4.90065,55.0826,29934.3,12.4346,0.133728,0.0349622,0.000242792,,,,,,,,6.06117,67.8071,31489.3,12.629,0.135189,0.0330525,0.000229532 +37,5.76293,62.5432,30143.8,11.3903,0.116892,0.0336513,0.000233689,,,,,,,,6.48887,58.129,28896.8,12.314,0.131335,0.0327703,0.000227572 +38,5.25925,48.2684,29111,12.2548,0.130619,0.0345244,0.000239758,,,,,,,,5.01282,58.4438,28835.1,12.3982,0.132731,0.034925,0.000242534 +39,5.73608,58.8715,35650.6,12.3475,0.131207,0.0330138,0.000229263,,,,,,,,6.05406,62.3492,31058,12.3168,0.131688,0.0331148,0.000229964 +40,4.50315,62.9216,26955.1,12.1802,0.129874,0.0359962,0.000249973,,,,,,,,6.0224,54.1639,31802.3,12.1915,0.12935,0.0330689,0.000229645 +41,6.66369,55.2916,27553.9,12.3339,0.130807,0.0326997,0.000227082,,,,,,,,5.46494,64.0623,33775.4,12.3663,0.130895,0.0336178,0.000233457 +42,5.79668,57.2397,29796,12.1497,0.128006,0.033646,0.000233653,,,,,,,,6.89707,61.0737,29456.3,12.5429,0.134889,0.0321513,0.000223273 +43,5.55517,61.2779,24765.7,12.2272,0.129762,0.0346449,0.000240591,,,,,,,,5.84268,67.1445,33545.2,11.795,0.122673,0.0331094,0.000229926 +44,6.88363,55.6095,25391.2,12.1939,0.128507,0.0326548,0.000226771,,,,,,,,3.78904,57.8695,28160.9,11.5433,0.120227,0.0370013,0.000256953 +45,6.12816,59.5565,30585.4,12.3454,0.131859,0.0330783,0.00022971,,,,,,,,6.05847,65.2099,26568,12.281,0.129363,0.0336608,0.000233756 +46,6.47805,50.935,26716.6,12.2273,0.12949,0.0330571,0.000229563,,,,,,,,6.35028,68.7449,28875.9,12.6129,0.134799,0.0329647,0.000228922 +47,5.10864,61.699,34340.1,12.4097,0.132474,0.0340758,0.000236638,,,,,,,,6.26353,60.5788,32032.4,12.3619,0.132153,0.032707,0.000227132 +48,5.39526,54.8287,34432.4,12.3521,0.131744,0.0336465,0.000233658,,,,,,,,5.56864,53.4496,31137.8,12.4303,0.132236,0.0337977,0.000234706 +49,6.18876,65.1789,32099,12.5008,0.134091,0.032812,0.000227861,,,,,,,,7.8615,67.4278,31265.6,12.4494,0.131507,0.0307124,0.00021328 +50,6.41742,62.8089,37488.4,12.4211,0.132039,0.0318754,0.000221358,,,,,,,,5.84297,57.6518,32150.2,12.1408,0.128584,0.033279,0.000231104 +51,6.38667,68.7681,27260.8,12.4628,0.133234,0.0331193,0.000229994,,,,,,,,5.36973,48.6977,23196.5,12.026,0.126574,0.0351261,0.000243931 +52,5.94359,63.5672,35906,12.6273,0.13498,0.032696,0.000227055,,,,,,,,5.82914,59.2154,32049.9,12.2826,0.131221,0.0333109,0.000231325 +53,4.55864,55.5862,30186.2,12.2087,0.13016,0.0354615,0.000246254,,,,,,,,5.31882,60.6145,33575,12.1046,0.128583,0.0338545,0.0002351 +54,6.48561,58.4973,30125.8,11.944,0.12412,0.0326387,0.000226658,,,,,,,,6.91102,61.3122,30945.4,12.7577,0.136252,0.0319616,0.000221956 +55,5.8254,53.3853,33953.1,12.4263,0.133222,0.0330942,0.000229821,,,,,,,,5.68938,53.4985,35429.5,12.2664,0.130745,0.0330958,0.000229832 +56,5.333,53.2039,29943.4,12.4465,0.133641,0.0343064,0.00023824,,,,,,,,6.61244,67.8071,31489.3,11.912,0.123749,0.0322967,0.000224283 +57,5.8307,59.9942,31960.5,12.0613,0.127334,0.0333297,0.000231456,,,,,,,,7.66114,58.129,28896.8,11.9566,0.123604,0.0312201,0.000216806 +58,5.69047,58.4049,32348.9,12.3693,0.132116,0.0334815,0.00023251,,,,,,,,5.7616,58.4438,28835.1,12.1735,0.12968,0.0338067,0.000234768 +59,5.46291,59.4918,33852.3,12.523,0.134245,0.0336214,0.000233482,,,,,,,,5.87429,62.3492,31058,11.7483,0.122185,0.0333686,0.000231726 +60,5.82735,57.3911,31664.8,12.1572,0.129329,0.0333708,0.000231741,,,,,,,,5.20411,54.1639,31802.3,11.6378,0.121221,0.0342487,0.000237838 +61,6.01686,62.3501,30785.5,11.8322,0.123138,0.0332103,0.000230627,,,,,,,,5.23898,69.285,33775.4,12.6914,0.137287,0.0339458,0.000235734 +62,6.22778,61.9109,33007,12.1122,0.127459,0.0326503,0.000226738,,,,,,,,6.25371,58.7763,29456.3,12.7243,0.136923,0.0330293,0.00022937 +63,5.9768,48.4439,29254.2,12.3626,0.131595,0.0334549,0.000232328,,,,,,,,6.05036,62.6472,33545.2,12.6017,0.13444,0.0328203,0.000227919 +64,6.43584,58.9246,37167.8,12.5727,0.135061,0.0318877,0.000221441,,,,,,,,5.86992,58.7472,28160.9,12.1712,0.129556,0.0337342,0.000234265 +65,6.19294,58.2571,30498.5,12.3964,0.132555,0.0329983,0.000229155,,,,,,,,6.31422,68.1934,26568,11.7347,0.121891,0.0332956,0.000231219 +66,4.94804,53.7963,34411.1,11.8865,0.125054,0.0343045,0.000238227,,,,,,,,6.95674,59.3551,28875.9,12.004,0.125241,0.0321387,0.000223185 +67,5.93254,70.1439,28862.9,12.3034,0.130548,0.0335667,0.000233103,,,,,,,,6.43444,66.9938,32032.4,12.6524,0.134976,0.0324737,0.000225512 +68,5.23114,57.0686,27389,12.2975,0.131208,0.0347928,0.000241618,,,,,,,,5.98956,48.4761,31137.8,11.9556,0.125371,0.0331957,0.000230526 +69,5.56985,73.2414,32826.3,12.3031,0.13069,0.0335955,0.000233301,,,,,,,,5.35172,57.0804,31265.6,12.3381,0.130772,0.0340989,0.000236798 +70,5.72356,62.3308,29435.8,11.6025,0.120528,0.0337968,0.0002347,,,,,,,,6.98655,55.5586,32150.2,11.8139,0.121607,0.0317256,0.000220316 +71,5.91976,59.197,30556.6,12.0773,0.127441,0.0333757,0.000231776,,,,,,,,5.86973,64.6006,23196.5,12.5924,0.135793,0.0343654,0.000238649 +72,4.96133,50.1091,29881.2,12.4573,0.133851,0.034876,0.000242195,,,,,,,,5.5587,59.1467,32049.9,12.4225,0.132004,0.0336978,0.000234013 +73,5.89946,61.4355,29201.7,11.8859,0.123589,0.0335722,0.000233139,,,,,,,,5.6158,55.0451,33575,11.7694,0.122588,0.0334265,0.000232129 +74,5.83556,62.6033,29223.5,11.7175,0.122161,0.0336614,0.000233759,,,,,,,,4.98494,60.8859,30945.4,12.1679,0.128539,0.0346891,0.000240896 +75,6.11173,57.9298,33182.1,12.4738,0.132576,0.0327889,0.000227701,,,,,,,,6.30502,62.8941,35429.5,12.3712,0.131885,0.0322515,0.000223969 +76,5.6068,53.9289,30972.4,12.3904,0.132137,0.0337733,0.000234537,,,,,,,,6.06117,60.5182,31489.3,12.629,0.135189,0.0330525,0.000229532 +77,5.17839,66.8926,28410.8,12.1389,0.128478,0.0347385,0.00024124,,,,,,,,6.48887,53.5285,28896.8,12.314,0.131335,0.0327703,0.000227572 +78,5.87947,62.1415,30239.5,11.3392,0.115792,0.0334722,0.000232446,,,,,,,,5.01282,58.9524,28835.1,12.3982,0.132731,0.034925,0.000242534 +79,5.63739,63.7238,27948.6,12.0407,0.127624,0.034111,0.000236882,,,,,,,,6.05406,60.3694,31058,12.3168,0.131688,0.0331148,0.000229964 +80,5.58819,65.3083,29326.2,12.39,0.132577,0.0340082,0.000236168,,,,,,,,6.0224,54.9095,31802.3,12.1915,0.12935,0.0330689,0.000229645 +81,5.95574,51.3406,28290.9,12.3849,0.131063,0.0336044,0.000233365,,,,,,,,5.23898,64.0623,32532.9,11.7092,0.122268,0.0341036,0.00023683 +82,5.67429,59.4138,29660.2,12.0783,0.127548,0.0338402,0.000235001,,,,,,,,6.25371,61.0737,25316.5,12.3376,0.130296,0.0335359,0.000232888 +83,6.11666,63.4287,30200.1,12.2987,0.130864,0.0331412,0.000230147,,,,,,,,6.05036,67.1445,33309.5,11.8398,0.123112,0.0328485,0.000228115 +84,4.95512,62.5758,26045.2,12.2133,0.129997,0.0354,0.000245835,,,,,,,,5.86992,57.8695,24714.7,12.1778,0.128121,0.0341701,0.000237293 +85,5.93051,64.2589,32087,12.1793,0.129184,0.0331734,0.00023037,,,,,,,,6.31422,65.2099,28541.5,12.0161,0.126196,0.0330554,0.000229551 +86,6.06499,61.6017,29981.2,11.8844,0.12354,0.0332406,0.000230837,,,,,,,,6.95674,68.7449,33497.3,12.5327,0.134088,0.0316126,0.000219532 +87,5.3089,65.0806,31164.1,11.9069,0.125174,0.0341855,0.0002374,,,,,,,,6.43444,60.5788,32554.5,11.9106,0.123811,0.0324124,0.000225086 +88,5.67109,68.5933,29689.8,12.4373,0.132505,0.0338411,0.000235008,,,,,,,,5.98956,53.4496,31324.1,11.8317,0.123333,0.033173,0.000230368 +89,5.2182,53.8976,35014.9,12.2673,0.130535,0.0338299,0.000234933,,,,,,,,5.35172,67.4278,31507.3,12.3896,0.131708,0.0340681,0.000236584 +90,6.44383,63.7876,31081,12.5897,0.133606,0.0325828,0.00022627,,,,,,,,6.98655,57.6518,33754.2,11.7501,0.122074,0.0315452,0.000219064 +91,5.13558,58.6783,24268.8,12.251,0.130755,0.0353574,0.000245541,,,,,,,,5.86973,48.6977,26028.9,11.8347,0.124244,0.034003,0.000236132 +92,4.74905,47.6625,31425.7,12.2108,0.13013,0.0349972,0.000243028,,,,,,,,5.5587,59.2154,28189.2,12.2504,0.129351,0.0341861,0.000237403 +93,6.21693,66.9064,31495.5,12.5228,0.133579,0.0328452,0.000228092,,,,,,,,5.6158,60.6145,31712.7,11.9873,0.126409,0.0336575,0.000233733 +94,6.34445,44.988,30546.2,12.2617,0.130285,0.0327825,0.000227659,,,,,,,,4.98494,61.3122,25884.2,12.4698,0.134471,0.0353641,0.000245584 +95,7.11512,59.0433,29355.8,12.3343,0.131025,0.0318839,0.000221416,,,,,,,,6.30502,53.4985,32852.4,12.5962,0.134047,0.0325531,0.000226063 +96,5.53703,53.2611,28542.4,12.4598,0.133591,0.0341833,0.000237386,,,,,,,,6.06117,67.8071,33471.4,11.9325,0.124564,0.0328142,0.000227876 +97,6.98079,57.6174,31445.6,12.1886,0.128653,0.0318227,0.000220991,,,,,,,,6.48887,58.129,30136.6,11.7345,0.121187,0.032623,0.000226549 +98,5.73079,59.8036,28204.5,11.6183,0.120422,0.0339414,0.000235704,,,,,,,,5.01282,58.4438,35567.5,12.1292,0.129219,0.0340502,0.00023646 +99,6.25441,64.7141,33770,12.2931,0.130374,0.0325238,0.00022586,,,,,,,,6.05406,62.3492,27135.5,12.5901,0.135028,0.0335965,0.000233309 +100,5.4687,56.4726,33150.6,12.5652,0.134962,0.0337006,0.000234032,,,,,,,,6.0224,54.1639,32857.8,12.6208,0.134919,0.0329415,0.00022876 +101,5.71895,55.5088,32791,12.5895,0.134717,0.0333864,0.00023185,,,,,,,,,,,,,, +102,6.62537,53.3107,31055.4,12.6068,0.136171,0.0323397,0.000224582,,,,,,,,,,,,,, +103,5.77313,58.2108,29892.5,12.242,0.129376,0.0336679,0.000233805,,,,,,,,,,,,,, +104,5.25086,62.7383,30271.6,12.4478,0.133226,0.0343867,0.000238797,,,,,,,,,,,,,, +105,5.66782,64.6142,31684.5,12.316,0.13086,0.0335964,0.000233308,,,,,,,,,,,,,, +106,5.92852,65.7166,34971.9,12.4407,0.132601,0.0328281,0.000227973,,,,,,,,,,,,,, +107,6.82102,52.9508,28631.3,12.2771,0.129823,0.0323589,0.000224714,,,,,,,,,,,,,, +108,6.95916,56.3989,31141.9,12.2381,0.129649,0.0318856,0.000221428,,,,,,,,,,,,,, +109,7.1853,49.4253,32585.1,12.2457,0.129471,0.0314281,0.00021826,,,,,,,,,,,,,, +110,5.9419,72.4948,29495.8,12.2724,0.130147,0.0334748,0.000232466,,,,,,,,,,,,,, +111,6.99459,63.704,31071.8,12.0237,0.125263,0.0318469,0.00022116,,,,,,,,,,,,,, +112,5.06547,69.3559,32492.3,12.317,0.131003,0.034377,0.000238729,,,,,,,,,,,,,, +113,5.78366,64.5655,26154.2,12.5299,0.134692,0.0341241,0.000236973,,,,,,,,,,,,,, +114,5.76754,53.8396,29834.5,12.444,0.132616,0.0336832,0.000233912,,,,,,,,,,,,,, +115,6.2387,50.7513,29994.2,12.6479,0.136314,0.0329954,0.000229135,,,,,,,,,,,,,, +116,5.86238,51.1078,29555.5,12.4382,0.132467,0.0335814,0.000233205,,,,,,,,,,,,,, +117,6.18572,51.5894,29842.6,12.4942,0.133958,0.0330877,0.000229776,,,,,,,,,,,,,, +118,6.57331,56.5721,25309.1,12.3411,0.131235,0.0330942,0.000229823,,,,,,,,,,,,,, +119,5.20684,59.6933,29482.1,12.5381,0.135069,0.0345552,0.000239968,,,,,,,,,,,,,, +120,6.48093,53.6134,28922.9,12.1868,0.128106,0.0327881,0.000227696,,,,,,,,,,,,,, +121,5.43164,59.0196,23232.6,12.2398,0.130274,0.0350362,0.00024331,,,,,,,,,,,,,, +122,6.26958,55.9512,26346,12.2197,0.129604,0.0333963,0.000231919,,,,,,,,,,,,,, +123,5.44866,65.488,26436.8,11.9043,0.125582,0.0345876,0.000240191,,,,,,,,,,,,,, +124,5.14058,56.6187,33599.4,12.3477,0.132087,0.0341231,0.000236966,,,,,,,,,,,,,, +125,5.62506,61.1289,27850,11.7823,0.123464,0.0341418,0.000237096,,,,,,,,,,,,,, +126,6.43012,57.1252,26815.1,12.2099,0.129358,0.0331123,0.000229947,,,,,,,,,,,,,, +127,6.34872,53.2331,27758.9,12.2915,0.13006,0.0331119,0.000229944,,,,,,,,,,,,,, +128,6.5665,61.5023,33609.5,12.1831,0.128189,0.0321225,0.000223071,,,,,,,,,,,,,, +129,6.90372,50.2507,27240.7,12.214,0.129049,0.0324097,0.000225065,,,,,,,,,,,,,, +130,7.44226,67.258,29050.8,12.3848,0.131559,0.0314922,0.000218698,,,,,,,,,,,,,, +131,5.00649,61.7807,26681.1,12.216,0.129956,0.0352335,0.000244679,,,,,,,,,,,,,, +132,6.39257,70.8792,29700.1,12.2712,0.130285,0.0328172,0.000227898,,,,,,,,,,,,,, +133,5.94816,60.4992,29930.1,11.9171,0.123762,0.0334124,0.00023203,,,,,,,,,,,,,, +134,6.21356,56.8236,25556.7,12.1945,0.129273,0.0335738,0.000233153,,,,,,,,,,,,,, +135,5.95788,60.58,27006.6,12.0979,0.128075,0.0337617,0.000234456,,,,,,,,,,,,,, +136,4.86739,58.3601,34273.8,12.0483,0.127394,0.0344429,0.000239188,,,,,,,,,,,,,, +137,6.11317,65.055,31599.4,12.6577,0.135933,0.0329768,0.000229005,,,,,,,,,,,,,, +138,6.38976,67.7024,35262.1,12.3744,0.131359,0.0321674,0.000223386,,,,,,,,,,,,,, +139,6.39374,50.9141,28764.5,12.55,0.13397,0.0329277,0.000228665,,,,,,,,,,,,,, +140,6.73881,71.1455,25958.1,12.2583,0.129845,0.0327867,0.000227681,,,,,,,,,,,,,, +141,5.88825,54.0871,29386.6,12.199,0.128628,0.0335652,0.000233092,,,,,,,,,,,,,, +142,6.45216,56.2019,29619.8,12.0124,0.125761,0.0327446,0.000227394,,,,,,,,,,,,,, +143,5.90969,53.0667,28038.3,12.3642,0.130998,0.0337023,0.000234044,,,,,,,,,,,,,, +144,6.45109,62.4197,26361.6,11.8902,0.124266,0.033138,0.000230123,,,,,,,,,,,,,, +145,5.58012,56.5044,29132.2,11.8535,0.124628,0.0340446,0.000236422,,,,,,,,,,,,,, +146,5.96576,68.2666,29903.2,12.3324,0.131528,0.0333907,0.00023188,,,,,,,,,,,,,, +147,5.96811,72.1953,25768.1,12.2779,0.130397,0.0339022,0.000235438,,,,,,,,,,,,,, +148,5.57891,58.6265,30461.5,12.5313,0.134942,0.0338781,0.000235265,,,,,,,,,,,,,, +149,5.74695,57.8,27361.8,11.7308,0.123124,0.0340245,0.000236281,,,,,,,,,,,,,, +150,6.62076,67.166,31180.1,12.3192,0.130838,0.0323314,0.000224524,,,,,,,,,,,,,, +151,6.10713,60.0321,29167.3,12.6987,0.134795,0.0332805,0.000231115,,,,,,,,,,,,,, +152,6.94497,55.3757,28806.2,12.2504,0.129642,0.0321723,0.000223419,,,,,,,,,,,,,, +153,4.82854,61.8179,27514.2,12.2143,0.130066,0.0353995,0.000245832,,,,,,,,,,,,,, +154,6.19991,71.6375,31190.4,12.2215,0.129378,0.0329054,0.00022851,,,,,,,,,,,,,, +155,5.62239,54.0543,33206.8,12.5095,0.133751,0.0334728,0.00023245,,,,,,,,,,,,,, +156,6.31069,58.5721,30528.7,12.2201,0.129361,0.0328312,0.000227995,,,,,,,,,,,,,, +157,5.90173,57.4295,30878,12.045,0.127887,0.0333618,0.000231679,,,,,,,,,,,,,, +158,6.06258,60.5542,27672.1,11.881,0.124496,0.033528,0.000232833,,,,,,,,,,,,,, +159,5.40018,63.656,28363.3,12.0333,0.12736,0.0344101,0.000238959,,,,,,,,,,,,,, +160,5.37857,52.7878,36288.5,12.3474,0.131612,0.0334404,0.00023223,,,,,,,,,,,,,, +161,4.33217,73.6515,29266.1,12.1604,0.12936,0.0359528,0.000249625,,,,,,,,,,,,,, +162,6.29009,57.5858,30488.5,12.2314,0.129566,0.0328645,0.000228226,,,,,,,,,,,,,, +163,6.93748,71.3356,29362,12.2453,0.12942,0.032118,0.000223043,,,,,,,,,,,,,, +164,5.78847,56.1454,35542.6,12.3736,0.131768,0.0329538,0.000228847,,,,,,,,,,,,,, +165,5.57142,64.7887,30351.2,12.3151,0.131214,0.033903,0.000235438,,,,,,,,,,,,,, +166,5.8445,65.4473,24698.7,12.3862,0.13226,0.0342203,0.00023764,,,,,,,,,,,,,, +167,6.91226,63.1035,33414.1,12.3062,0.130205,0.0316896,0.000220063,,,,,,,,,,,,,, +168,6.63748,63.7667,34368.4,12.3233,0.130542,0.0319413,0.000221813,,,,,,,,,,,,,, +169,5.71026,56.2334,27628.4,11.85,0.125349,0.0340445,0.00023642,,,,,,,,,,,,,, +170,6,63.739,28087.7,12.3342,0.131996,0.0335662,0.000233098,,,,,,,,,,,,,, +171,6.986,49.0638,26974.7,12.1981,0.12898,0.0323296,0.000224508,,,,,,,,,,,,,, +172,5.62387,63.8414,28773.2,11.9971,0.126959,0.034026,0.000236291,,,,,,,,,,,,,, +173,6.59092,58.5779,25228.2,12.3936,0.131836,0.0330794,0.000229719,,,,,,,,,,,,,, +174,5.44762,70.0935,31271.1,12.3793,0.131311,0.0339678,0.000235887,,,,,,,,,,,,,, +175,5.23476,54.7798,29393.1,12.4979,0.134729,0.0345248,0.000239757,,,,,,,,,,,,,, +176,6.36884,69.2533,31519,12.2628,0.129884,0.0326335,0.000226622,,,,,,,,,,,,,, +177,5.74346,65.0332,31049.3,12.4793,0.133294,0.0335667,0.000233102,,,,,,,,,,,,,, +178,6.81948,56.9498,27858.4,12.314,0.131037,0.0324514,0.000225357,,,,,,,,,,,,,, +179,6.29296,55.2663,31642.4,12.3796,0.13215,0.0327228,0.000227242,,,,,,,,,,,,,, +180,6.1593,54.8582,28996.9,11.7415,0.122416,0.0332276,0.000230748,,,,,,,,,,,,,, +181,6.04366,57.6428,30403.4,12.3252,0.131713,0.0332191,0.000230688,,,,,,,,,,,,,, +182,5.9064,54.9647,30419.2,11.9846,0.126571,0.0334116,0.000232025,,,,,,,,,,,,,, +183,5.58219,60.0072,25002.4,12.1533,0.12853,0.0345732,0.000240092,,,,,,,,,,,,,, +184,6.84353,56.3241,28687.1,12.2507,0.129784,0.0323221,0.000224459,,,,,,,,,,,,,, +185,6.33985,62.371,29808.7,12.533,0.1331,0.0328771,0.000228313,,,,,,,,,,,,,, +186,6.04565,67.0542,33701.6,12.3242,0.130984,0.0328182,0.000227904,,,,,,,,,,,,,, +187,5.6541,59.5288,32834.1,12.4065,0.132908,0.0334735,0.000232455,,,,,,,,,,,,,, +188,5.99501,62.7464,30033,11.5699,0.119726,0.0333333,0.00023148,,,,,,,,,,,,,, +189,5.01826,67.1836,31612.3,12.405,0.131651,0.0345619,0.000240014,,,,,,,,,,,,,, +190,6.06867,53.9725,30365.1,12.0238,0.127391,0.0331885,0.000230476,,,,,,,,,,,,,, +191,6.37496,56.0423,32523.7,12.3421,0.131128,0.0325066,0.00022574,,,,,,,,,,,,,, +192,5.18848,47.8552,28719,12.2345,0.130371,0.0346825,0.000240857,,,,,,,,,,,,,, +193,5.49206,61.0188,27058.4,12.0275,0.1271,0.0344415,0.000239177,,,,,,,,,,,,,, +194,6.095,58.3453,29489.3,12.6753,0.135575,0.0332583,0.00023096,,,,,,,,,,,,,, +195,6.59424,60.3603,28995.7,12.0552,0.126542,0.0326239,0.000226555,,,,,,,,,,,,,, +196,6.24771,57.2027,28210.8,12.2172,0.129673,0.0331989,0.000230548,,,,,,,,,,,,,, +197,6.42679,50.4883,28739.7,12.5309,0.133764,0.0328849,0.000228367,,,,,,,,,,,,,, +198,6.81533,64.6378,32854.9,12.3483,0.130985,0.0318796,0.000221385,,,,,,,,,,,,,, +199,5.22463,60.7107,33334.8,12.5327,0.134634,0.034033,0.00023634,,,,,,,,,,,,,, +200,4.93493,54.57,31717.9,12.3201,0.131718,0.0346743,0.000240791,,,,,,,,,,,,,, +201,5.57259,74.5403,32053.9,12.2871,0.130464,0.0336878,0.000233941,,,,,,,,,,,,,, +202,5.45749,58.5155,29731.6,12.4969,0.134842,0.034149,0.000237146,,,,,,,,,,,,,, +203,6.03122,67.7811,29709.3,12.34,0.131834,0.0333216,0.0002314,,,,,,,,,,,,,, +204,7.6954,64.7225,31429.6,12.2387,0.129006,0.0309095,0.000214654,,,,,,,,,,,,,, +205,6.14462,67.0429,28553.3,12.3412,0.132211,0.0333027,0.000231268,,,,,,,,,,,,,, +206,6.5933,68.0203,26628.4,12.3099,0.130728,0.0329075,0.000228521,,,,,,,,,,,,,, +207,5.84135,53.5311,32004.8,12.4942,0.133569,0.0333092,0.000231314,,,,,,,,,,,,,, +208,6.0344,59.8926,28843,12.5263,0.132484,0.0334236,0.000232108,,,,,,,,,,,,,, +209,6.64775,64.5025,31815.9,12.316,0.130157,0.0322212,0.000223759,,,,,,,,,,,,,, +210,5.52033,56.1903,29278.4,12.0393,0.127577,0.034114,0.000236904,,,,,,,,,,,,,, +211,6.53453,68.4019,30897.8,12.278,0.130249,0.032481,0.000225562,,,,,,,,,,,,,, +212,6.22489,58.6901,31920.5,12.4714,0.134168,0.0327834,0.000227663,,,,,,,,,,,,,, +213,5.40748,51.6784,33427.8,12.3129,0.131168,0.0337544,0.000234405,,,,,,,,,,,,,, +214,6.6994,59.3814,34758.3,12.3222,0.130464,0.0318155,0.000220938,,,,,,,,,,,,,, +215,5.88341,71.7983,27517.8,12.2903,0.130407,0.0338054,0.000234763,,,,,,,,,,,,,, +216,6.86911,51.018,36058.1,12.3447,0.130931,0.0314473,0.000218395,,,,,,,,,,,,,, +217,6.8751,60.5271,30220.8,12.2682,0.129848,0.0321022,0.000222933,,,,,,,,,,,,,, +218,6.54343,59.982,30537.2,11.9305,0.123925,0.0325113,0.000225773,,,,,,,,,,,,,, +219,5.67941,67.4956,31927.6,12.5362,0.133516,0.0335496,0.000232983,,,,,,,,,,,,,, +220,6.75186,54.7225,29043.4,12.1483,0.127949,0.0324041,0.000225029,,,,,,,,,,,,,, +221,6.41895,61.4007,28796.9,12.1284,0.127216,0.0328889,0.000228395,,,,,,,,,,,,,, +222,5.89133,61.6903,32630.8,11.9522,0.125154,0.0331623,0.000230293,,,,,,,,,,,,,, +223,5.88352,42.0755,34388.7,12.271,0.130415,0.032961,0.00022889,,,,,,,,,,,,,, +224,5.96454,55.4294,31785,12.3798,0.132609,0.0331622,0.000230293,,,,,,,,,,,,,, +225,6.22879,58.3275,28475.3,12.4316,0.1326,0.0331933,0.000230509,,,,,,,,,,,,,, +226,6.96716,65.1124,27052,12.2751,0.130073,0.0323464,0.000224623,,,,,,,,,,,,,, +227,5.95682,57.7249,27714.5,11.7188,0.122325,0.0336747,0.000233852,,,,,,,,,,,,,, +228,6.18788,59.9678,25147.2,12.2007,0.129249,0.0336617,0.000233762,,,,,,,,,,,,,, +229,6.2678,66.946,27328.5,12.4126,0.13239,0.0332784,0.000231099,,,,,,,,,,,,,, +230,5.95476,58.1672,30212.6,12.3395,0.131289,0.0333683,0.000231724,,,,,,,,,,,,,, +231,5.45775,48.7588,28458.8,12.241,0.13031,0.0343116,0.00023828,,,,,,,,,,,,,, +232,6.58032,63.8807,30795.8,12.264,0.128941,0.0324309,0.000225215,,,,,,,,,,,,,, +233,5.79945,68.7467,31441.5,12.3517,0.131553,0.0334381,0.000232209,,,,,,,,,,,,,, +234,6.61183,62.1995,25422.2,12.1902,0.128755,0.0330269,0.000229351,,,,,,,,,,,,,, +235,6.35571,59.9437,24854.6,12.1759,0.128767,0.0334574,0.000232343,,,,,,,,,,,,,, +236,6.82554,61.0374,30067.8,12.2402,0.12942,0.0321859,0.000223514,,,,,,,,,,,,,, +237,6.6271,66.0597,28625.6,12.1267,0.12805,0.0326228,0.000226546,,,,,,,,,,,,,, +238,5.96271,66.0698,28388.8,12.3065,0.131618,0.0335823,0.00023321,,,,,,,,,,,,,, +239,5.92666,57.6355,29398.3,12.3144,0.130041,0.0335088,0.0002327,,,,,,,,,,,,,, +240,5.80825,75.3214,30966.5,12.277,0.130238,0.0334841,0.000232528,,,,,,,,,,,,,, +241,6.07795,60.1868,34645.7,12.0665,0.126302,0.0326612,0.000226814,,,,,,,,,,,,,, +242,6.60182,58.4675,33518.2,12.067,0.1261,0.032086,0.000222818,,,,,,,,,,,,,, +243,5.88707,63.0264,33376.5,12.0913,0.12754,0.0330777,0.000229706,,,,,,,,,,,,,, +244,5.78231,64.1844,29232.6,12.0635,0.127998,0.0337372,0.000234285,,,,,,,,,,,,,, +245,6.01629,64.6826,34592.3,12.3837,0.131641,0.0327523,0.000227446,,,,,,,,,,,,,, +246,5.66115,57.2632,35777.3,12.3631,0.131596,0.0331032,0.000229885,,,,,,,,,,,,,, +247,5.1018,78.1759,30628.1,12.2273,0.129814,0.034566,0.000240016,,,,,,,,,,,,,, +248,5.71159,66.6542,27944.1,12.2388,0.130084,0.0340025,0.000236128,,,,,,,,,,,,,, +249,6.01065,63.3837,31285.9,12.2323,0.129298,0.0331581,0.000230264,,,,,,,,,,,,,, +250,5.87187,60.4386,35876.6,12.3031,0.130342,0.0327982,0.000227765,,,,,,,,,,,,,, +251,6.44178,61.7299,26703.9,11.7729,0.122613,0.0331095,0.000229926,,,,,,,,,,,,,, +252,5.81713,63.402,28726.6,12.0106,0.127006,0.0337501,0.000234375,,,,,,,,,,,,,, +253,6.33694,63.2456,32650.8,12.3333,0.131291,0.0325433,0.000225995,,,,,,,,,,,,,, +254,6.25074,50.8656,27200.7,12.04,0.127152,0.0333181,0.000231376,,,,,,,,,,,,,, +255,5.76092,62.7136,27803.5,12.1869,0.129643,0.0339481,0.00023575,,,,,,,,,,,,,, +256,5.2927,59.267,32959.5,12.703,0.13745,0.0339807,0.000235977,,,,,,,,,,,,,, +257,7.13407,66.1437,31535.1,12.2088,0.128394,0.0316126,0.000219532,,,,,,,,,,,,,, +258,5.41225,61.413,25106.6,12.2393,0.130248,0.0348174,0.000241788,,,,,,,,,,,,,, +259,5.8027,56.3909,30603.6,12.0309,0.127235,0.0335369,0.000232895,,,,,,,,,,,,,, +260,6.27239,52.7201,33337.2,12.3878,0.132575,0.0325503,0.000226044,,,,,,,,,,,,,, +261,5.64211,50.0482,34076,12.3218,0.131292,0.0333377,0.000231511,,,,,,,,,,,,,, +262,5.31861,66.1029,26128.4,11.85,0.124807,0.0348255,0.000241844,,,,,,,,,,,,,, +263,6.23317,57.8053,25062,12.2048,0.129384,0.0336071,0.000233384,,,,,,,,,,,,,, +264,6.37801,54.1614,28701.8,12.1414,0.127685,0.0329571,0.000228869,,,,,,,,,,,,,, +265,6.01377,60.0577,32240.9,12.0979,0.127429,0.0330379,0.00022943,,,,,,,,,,,,,, +266,5.07508,58.8902,22219.8,12.2325,0.130618,0.035733,0.000248156,,,,,,,,,,,,,, +267,5.541,61.1417,23434.9,12.2436,0.130144,0.0348415,0.000241956,,,,,,,,,,,,,, +268,5.41639,64.3611,26234.1,12.0362,0.127413,0.0346629,0.000240715,,,,,,,,,,,,,, +269,6.08036,63.6643,30312.1,12.222,0.129608,0.0331786,0.000230406,,,,,,,,,,,,,, +270,7.25598,55.1241,31999.3,12.0198,0.126139,0.0314037,0.000218081,,,,,,,,,,,,,, +271,7.1995,58.2441,33033.8,12.2174,0.128925,0.0313615,0.000217783,,,,,,,,,,,,,, +272,5.65751,60.6434,31002.9,11.8426,0.123792,0.0336962,0.000234001,,,,,,,,,,,,,, +273,6.5033,57.8896,28018.4,12.3076,0.130965,0.0328653,0.000228232,,,,,,,,,,,,,, +274,5.63013,47.9551,28030.2,12.2403,0.130225,0.0341111,0.000236887,,,,,,,,,,,,,, +275,6.17989,63.5763,34248.6,12.2234,0.129011,0.0325689,0.000226173,,,,,,,,,,,,,, +276,5.03586,63.5411,29090.6,12.2644,0.130521,0.0348663,0.000242129,,,,,,,,,,,,,, +277,5.18516,69.8265,34048.6,12.3159,0.131077,0.0340006,0.000236114,,,,,,,,,,,,,, +278,6.30674,54.7607,26302.3,12.2585,0.130154,0.0333488,0.00023159,,,,,,,,,,,,,, +279,4.87738,58.7325,29213.8,12.2711,0.130987,0.0350941,0.00024371,,,,,,,,,,,,,, +280,6.32385,57.4474,26101.7,12.127,0.128046,0.0333492,0.000231593,,,,,,,,,,,,,, +281,6.4034,62.781,32737.2,12.3163,0.13077,0.0324429,0.000225298,,,,,,,,,,,,,, +282,6.98709,47.4508,31466.3,12.2507,0.129687,0.0318111,0.000220917,,,,,,,,,,,,,, +283,6.19624,61.9939,27734.3,12.0217,0.127393,0.0333299,0.000231457,,,,,,,,,,,,,, +284,5.61947,60.6146,23569.5,12.2259,0.129548,0.0347043,0.000241003,,,,,,,,,,,,,, +285,6.32549,69.4963,36899.3,12.399,0.131695,0.032064,0.000222676,,,,,,,,,,,,,, +286,4.96966,53.7472,31340.9,12.3943,0.13291,0.034671,0.000240769,,,,,,,,,,,,,, +287,5.92086,70.0072,27477.2,12.3253,0.130899,0.0337563,0.00023442,,,,,,,,,,,,,, +288,4.60626,60.5205,22651.2,12.1932,0.130246,0.0364345,0.000253029,,,,,,,,,,,,,, +289,4.89216,64.2122,31017,12.321,0.131114,0.0348315,0.000241886,,,,,,,,,,,,,, +290,6.26398,63.1786,28091.8,12.1727,0.129663,0.0331906,0.000230489,,,,,,,,,,,,,, +291,5.38673,63.9924,27317.6,12.0626,0.127702,0.0345661,0.000240043,,,,,,,,,,,,,, +292,5.75018,65.7684,29533,12.5549,0.135205,0.0337461,0.000234347,,,,,,,,,,,,,, +293,5.6762,72.425,32340.3,12.2994,0.130632,0.0335032,0.000232661,,,,,,,,,,,,,, +294,5.59315,59.8659,27789.3,11.5994,0.12055,0.0341967,0.000237477,,,,,,,,,,,,,, +295,6.40077,54.0581,28929.9,12.1249,0.127396,0.0328981,0.000228459,,,,,,,,,,,,,, +296,6.46375,57.4737,32259.1,12.1328,0.127619,0.0324172,0.00022512,,,,,,,,,,,,,, +297,7.00777,67.3837,31307.6,12.3754,0.131448,0.0318028,0.000220853,,,,,,,,,,,,,, +298,6.67245,55.3564,24604.6,12.3112,0.130793,0.0330407,0.000229453,,,,,,,,,,,,,, +299,5.27223,53.8688,33880.5,12.2975,0.13102,0.0338942,0.000235376,,,,,,,,,,,,,, +300,5.98434,46.6725,32664.5,12.3243,0.131094,0.0330281,0.00022936,,,,,,,,,,,,,, +301,5.40117,56.7509,27448.4,12.2563,0.130632,0.0345273,0.000239774,,,,,,,,,,,,,, +302,6.73258,56.8899,27569.5,12.3035,0.130899,0.0326036,0.000226414,,,,,,,,,,,,,, +303,7.21204,59.9336,30814.2,12.2282,0.129001,0.0315926,0.000219394,,,,,,,,,,,,,, +304,5.9111,56.7183,33978.2,12.4595,0.132673,0.0329715,0.000228969,,,,,,,,,,,,,, +305,5.90862,52.3663,26500.3,12.2098,0.129749,0.0338969,0.000235395,,,,,,,,,,,,,, +306,5.62834,53.3793,26755.7,12.2846,0.131226,0.0342771,0.000238036,,,,,,,,,,,,,, +307,5.50542,66.4018,31125,12.4779,0.132519,0.0339017,0.000235429,,,,,,,,,,,,,, +308,6.54947,64.3536,29550.1,11.9463,0.124811,0.0326195,0.000226524,,,,,,,,,,,,,, +309,5.83776,56.002,32575.7,12.5261,0.134083,0.0332444,0.000230864,,,,,,,,,,,,,, +310,5.76,71.9585,34858.6,12.3441,0.131166,0.0330763,0.000229697,,,,,,,,,,,,,, +311,4.74097,56.4218,28823.6,12.2281,0.130421,0.0353596,0.000245553,,,,,,,,,,,,,, +312,5.48155,55.957,28240.3,11.9763,0.126857,0.0343045,0.000238227,,,,,,,,,,,,,, +313,5.7786,59.3643,37950.4,12.4171,0.132326,0.0326803,0.000226943,,,,,,,,,,,,,, +314,5.60277,61.4656,28245.3,11.7655,0.123338,0.0341243,0.000236974,,,,,,,,,,,,,, +315,4.92159,66.7858,29646.5,12.2683,0.130413,0.034968,0.000242834,,,,,,,,,,,,,, +316,5.60886,62.8341,31156.5,11.8209,0.123502,0.0337473,0.000234356,,,,,,,,,,,,,, +317,6.10969,55.01,26399.1,12.1662,0.129014,0.0336184,0.000233461,,,,,,,,,,,,,, +318,5.51566,57.7703,23516.2,12.2183,0.129694,0.0348694,0.00024215,,,,,,,,,,,,,, +319,5.7757,63.8611,32725.4,12.17,0.128969,0.033314,0.000231347,,,,,,,,,,,,,, +320,5.42217,61.554,34018,12.4703,0.133077,0.0336594,0.000233746,,,,,,,,,,,,,, +321,6.84099,65.3577,32530.4,12.3833,0.131607,0.0318828,0.000221408,,,,,,,,,,,,,, +322,6.27205,52.4134,27303.2,12.1357,0.128232,0.0332754,0.000231079,,,,,,,,,,,,,, +323,5.29959,55.6495,25920.7,12.5315,0.134775,0.0348821,0.000242237,,,,,,,,,,,,,, +324,5.51744,60.2784,32701.7,12.5264,0.134607,0.0336862,0.000233932,,,,,,,,,,,,,, +325,6.7352,52.487,25647.3,12.0622,0.126593,0.0328283,0.000227976,,,,,,,,,,,,,, +326,7.08374,56.1139,29411,12.2575,0.129627,0.0319189,0.000221659,,,,,,,,,,,,,, +327,5.74885,60.2939,36008.5,12.3621,0.131339,0.0329528,0.000228839,,,,,,,,,,,,,, +328,6.42348,52.4705,30831.6,12.458,0.1337,0.0326401,0.000226668,,,,,,,,,,,,,, +329,6.20907,66.4839,30613.9,12.6604,0.13548,0.032962,0.000228902,,,,,,,,,,,,,, +330,5.85561,57.983,32204,12.3038,0.131289,0.0332646,0.000231004,,,,,,,,,,,,,, +331,5.9157,55.9048,35725.4,12.4033,0.132118,0.0327558,0.000227472,,,,,,,,,,,,,, +332,6.42463,70.6531,31347.4,12.1658,0.128266,0.0325775,0.000226233,,,,,,,,,,,,,, +333,5.46973,62.0571,30632,12.0012,0.126313,0.0340163,0.000236224,,,,,,,,,,,,,, +334,5.97038,51.2172,29751.4,12.3718,0.131787,0.0334028,0.000231965,,,,,,,,,,,,,, +335,6.07642,69.005,25019.9,12.3321,0.131194,0.033839,0.000234993,,,,,,,,,,,,,, +336,5.6108,58.3099,24933.2,12.0529,0.127039,0.034539,0.000239855,,,,,,,,,,,,,, +337,6.44657,58.703,29768.7,12.0416,0.125583,0.0327346,0.000227324,,,,,,,,,,,,,, +338,5.15188,61.9331,35229.3,12.4327,0.132713,0.0338997,0.000235415,,,,,,,,,,,,,, +339,6.43794,59.6566,32246.6,12.1794,0.128796,0.0324536,0.000225372,,,,,,,,,,,,,, +340,5.5192,63.9422,30708.6,11.9374,0.125691,0.0339342,0.000235654,,,,,,,,,,,,,, +341,5.56212,63.7739,29681.1,11.912,0.125309,0.0340014,0.000236121,,,,,,,,,,,,,, +342,6.16223,50.7202,24108.1,12.2441,0.130248,0.0338285,0.000234921,,,,,,,,,,,,,, +343,5.17389,71.3871,32696.2,12.2952,0.130753,0.0341896,0.000237426,,,,,,,,,,,,,, +344,6.76957,65.8393,33509.6,12.3709,0.13143,0.0318653,0.000221285,,,,,,,,,,,,,, +345,7.56178,68.6797,30981.4,12.246,0.129138,0.0311259,0.00021616,,,,,,,,,,,,,, +346,5.52995,61.6516,31372.9,12.1948,0.129187,0.0338347,0.000234963,,,,,,,,,,,,,, +347,6.10316,57.7041,29366.5,12.4945,0.13325,0.0332617,0.000230984,,,,,,,,,,,,,, +348,7.27086,65.567,30825.4,12.0475,0.125621,0.0315151,0.000218857,,,,,,,,,,,,,, +349,5.98314,72.7909,29335.4,12.2745,0.130181,0.0334358,0.000232195,,,,,,,,,,,,,, +350,6.28207,50.2291,24895.7,12.2361,0.130047,0.0335574,0.000233037,,,,,,,,,,,,,, +351,5.71429,67.4328,33194.2,12.2926,0.130686,0.0333436,0.000231553,,,,,,,,,,,,,, +352,5.6044,54.3412,31253.6,12.4212,0.132493,0.0337416,0.000234317,,,,,,,,,,,,,, +353,6.0245,58.4533,33546.8,12.3983,0.131453,0.0328658,0.000228235,,,,,,,,,,,,,, +354,4.27284,66.8506,32681.9,12.2062,0.130027,0.0355723,0.000247034,,,,,,,,,,,,,, +355,5.13803,65.0146,23044.5,12.3033,0.131757,0.0355204,0.00024667,,,,,,,,,,,,,, +356,5.75503,68.4798,26646.7,12.2175,0.129671,0.0341035,0.000236831,,,,,,,,,,,,,, +357,6.89124,66.6432,32952.7,12.4278,0.132382,0.031769,0.000220617,,,,,,,,,,,,,, +358,5.97922,69.4036,28349.7,12.3256,0.130993,0.0335634,0.00023308,,,,,,,,,,,,,, +359,6.91579,48.0713,26068.8,12.2008,0.129157,0.0325307,0.000225903,,,,,,,,,,,,,, +360,5.82258,67.9046,32921.9,12.3104,0.130876,0.0332237,0.00023072,,,,,,,,,,,,,, +361,5.84273,63.6154,29470.5,11.7879,0.123784,0.0336203,0.000233473,,,,,,,,,,,,,, +362,6.24283,61.3777,31392.2,12.6951,0.138036,0.0328218,0.000227929,,,,,,,,,,,,,, +363,6.64119,54.4796,28264.6,12.2633,0.12928,0.0326462,0.00022671,,,,,,,,,,,,,, +364,6.36987,58.9067,31221.8,12.2324,0.130141,0.0326672,0.000226856,,,,,,,,,,,,,, +365,5.87414,66.2302,27877.7,12.3124,0.131242,0.0337739,0.00023454,,,,,,,,,,,,,, +366,5.54713,62.3179,32015.1,12.2606,0.130613,0.0337292,0.00023423,,,,,,,,,,,,,, +367,6.25819,55.9885,28301.5,12.0567,0.127126,0.0331731,0.000230369,,,,,,,,,,,,,, +368,5.50042,61.5812,27275.1,11.9991,0.126739,0.0344009,0.000238895,,,,,,,,,,,,,, +369,6.45903,56.4385,31708.9,12.2498,0.129718,0.0324882,0.000225612,,,,,,,,,,,,,, +370,6.80915,55.765,26797.8,12.2083,0.129051,0.0325902,0.000226322,,,,,,,,,,,,,, +371,5.72938,59.2155,26759.9,11.9366,0.126012,0.034127,0.000236993,,,,,,,,,,,,,, +372,6.55622,59.8196,30992.1,11.9751,0.124858,0.0324405,0.000225282,,,,,,,,,,,,,, +373,5.24525,66.7161,27163.9,12.0249,0.127055,0.0348009,0.000241672,,,,,,,,,,,,,, +374,5.34351,67.7563,30942.6,12.37,0.130112,0.0341627,0.000237241,,,,,,,,,,,,,, +375,5.86422,52.2128,31653.7,12.478,0.133294,0.0333199,0.000231388,,,,,,,,,,,,,, +376,6.08502,63.4083,28592.5,12.41,0.13324,0.0333824,0.000231821,,,,,,,,,,,,,, +377,5.84947,59.862,25761.3,12.2203,0.129993,0.0340772,0.000236647,,,,,,,,,,,,,, +378,6.13597,68.0972,30440,12.3675,0.131743,0.033085,0.000229757,,,,,,,,,,,,,, +379,6.10127,65.8809,26418.2,12.4186,0.132518,0.0336282,0.000233528,,,,,,,,,,,,,, +380,6.39857,59.5928,31021.7,12.2059,0.129544,0.0326517,0.000226748,,,,,,,,,,,,,, +381,5.27714,60.2467,30868.9,12.9832,0.141273,0.0342705,0.00023799,,,,,,,,,,,,,, +382,7.32256,66.9608,30764.2,12.1926,0.128208,0.0314552,0.000218442,,,,,,,,,,,,,, +383,5.76646,48.6384,31210.1,12.4777,0.133169,0.0335138,0.000232735,,,,,,,,,,,,,, +384,6.60563,66.3363,25627.1,12.2711,0.130143,0.0330109,0.000229237,,,,,,,,,,,,,, +385,6.48628,49.5523,31832.2,12.338,0.131723,0.0324367,0.000225255,,,,,,,,,,,,,, +386,6.01049,64.0902,31509.7,12.3836,0.131865,0.0331312,0.000230077,,,,,,,,,,,,,, +387,5.34799,58.589,29961.1,12.7854,0.139124,0.0342819,0.000238069,,,,,,,,,,,,,, +388,7.53913,67.2883,31400,12.2444,0.129089,0.0311089,0.000216039,,,,,,,,,,,,,, +389,6.45365,61.4559,23879.7,12.2679,0.130321,0.033438,0.000232207,,,,,,,,,,,,,, +390,6.18473,55.2344,34519,12.6596,0.135679,0.0325304,0.000225906,,,,,,,,,,,,,, +391,6.88023,62.5661,34318.3,12.3238,0.130473,0.0316294,0.000219644,,,,,,,,,,,,,, +392,5.71442,60.6749,27660.4,11.8459,0.124307,0.0340344,0.000236349,,,,,,,,,,,,,, +393,5.09134,63.1171,32550.4,12.1979,0.129615,0.0343307,0.000238408,,,,,,,,,,,,,, +394,6.083,61.051,27987.9,12.0792,0.127234,0.0334598,0.000232359,,,,,,,,,,,,,, +395,5.81123,61.7481,33107.8,12.1499,0.128785,0.0332169,0.000230673,,,,,,,,,,,,,, +396,6.49381,62.9547,30613.2,12.3363,0.129904,0.0325698,0.00022618,,,,,,,,,,,,,, +397,5.32712,48.1418,24538.3,12.2073,0.130103,0.0350228,0.00024321,,,,,,,,,,,,,, +398,5.22944,57.4236,31475.8,12.6381,0.136494,0.0342634,0.00023794,,,,,,,,,,,,,, +399,5.61508,67.8306,27929,12.2108,0.129443,0.0341464,0.000237128,,,,,,,,,,,,,, +400,5.89371,65.3961,27815.3,12.3415,0.13184,0.0337534,0.000234398,,,,,,,,,,,,,, +401,6.05039,60.9035,28130.5,12.1258,0.127591,0.0334887,0.00023256,,,,,,,,,,,,,, +402,5.42597,60.5908,33643,12.5225,0.134233,0.0337008,0.000234033,,,,,,,,,,,,,, +403,5.8311,58.0676,31122.6,12.0282,0.127473,0.0334322,0.000232168,,,,,,,,,,,,,, +404,5.70446,55.2557,35443.6,12.3644,0.131748,0.033083,0.000229745,,,,,,,,,,,,,, +405,4.88797,62.1618,32214.5,12.2009,0.129364,0.0346803,0.000240835,,,,,,,,,,,,,, +406,5.79318,51.8861,31289.9,12.4625,0.133028,0.0334657,0.000232401,,,,,,,,,,,,,, +407,5.72475,59.4447,33864.1,12.358,0.131955,0.0332466,0.00023088,,,,,,,,,,,,,, +408,6.5603,57.8369,28225.8,12.2774,0.13041,0.0327619,0.000227514,,,,,,,,,,,,,, +409,5.83505,49.7089,24670.2,12.2359,0.130254,0.0342377,0.000237759,,,,,,,,,,,,,, +410,5.03472,64.7382,28334.1,12.2121,0.129697,0.0349685,0.000242838,,,,,,,,,,,,,, +411,7.23002,60.4774,29300.5,12.3018,0.13039,0.0317396,0.000220414,,,,,,,,,,,,,, +412,6.30044,61.9717,29509,12.6102,0.133981,0.0329679,0.000228943,,,,,,,,,,,,,, +413,7.00307,61.8871,32216.8,12.1875,0.128168,0.0317063,0.000220181,,,,,,,,,,,,,, +414,5.87789,57.8786,32885.3,12.4262,0.132721,0.0331502,0.000230209,,,,,,,,,,,,,, +415,5.75741,58.5515,26779.4,11.8683,0.125098,0.0340832,0.000236688,,,,,,,,,,,,,, +416,5.78593,54.9858,29194.5,12.2914,0.130201,0.0337366,0.000234282,,,,,,,,,,,,,, +417,4.97839,70.334,32122.3,12.284,0.130679,0.0345558,0.00023997,,,,,,,,,,,,,, +418,5.55818,60.2209,28188.4,11.5935,0.120536,0.0341974,0.000237482,,,,,,,,,,,,,, +419,4.64928,52.3223,31383.6,12.2301,0.130423,0.0351576,0.00024414,,,,,,,,,,,,,, +420,6.66593,54.8646,29598.6,12.1356,0.127949,0.0324553,0.000225385,,,,,,,,,,,,,, +421,5.21685,62.9695,28691.1,12.211,0.1298,0.0346434,0.00024058,,,,,,,,,,,,,, +422,6.26194,55.3996,26722.6,12.2287,0.129727,0.0333608,0.000231673,,,,,,,,,,,,,, +423,4.71924,49.2483,27532.9,12.1772,0.129799,0.0355699,0.00024701,,,,,,,,,,,,,, +424,6.97113,61.805,33072.8,12.2589,0.129406,0.0316514,0.000219799,,,,,,,,,,,,,, +425,5.6975,57.1859,28316.1,11.5218,0.119667,0.033976,0.000235944,,,,,,,,,,,,,, +426,6.14283,54.3933,26032,12.2136,0.12969,0.0336163,0.000233448,,,,,,,,,,,,,, +427,5.93199,61.871,25989,12.7715,0.138417,0.0339274,0.000235606,,,,,,,,,,,,,, +428,6.29862,65.4387,27442.3,12.2337,0.130161,0.033221,0.0002307,,,,,,,,,,,,,, +429,5.99161,65.2014,28755.8,12.2625,0.131737,0.0334955,0.000232607,,,,,,,,,,,,,, +430,6.38256,56.8863,25891.1,12.1921,0.129053,0.0332918,0.000231194,,,,,,,,,,,,,, +431,6.517,57.9246,30048.8,11.976,0.124774,0.0326049,0.000226423,,,,,,,,,,,,,, +432,6.20345,54.4952,26280.3,12.222,0.129735,0.0334986,0.00023263,,,,,,,,,,,,,, +433,6.25264,56.3556,32388.5,12.4596,0.133163,0.0326896,0.000227011,,,,,,,,,,,,,, +434,6.24183,48.9839,23982.1,12.2365,0.130128,0.0337288,0.000234227,,,,,,,,,,,,,, +435,6.69618,55.0372,28116.8,12.2603,0.129532,0.0325886,0.00022631,,,,,,,,,,,,,, +436,5.51387,69.5943,28915.5,12.219,0.128954,0.0341699,0.000237291,,,,,,,,,,,,,, +437,5.35754,53.4939,27572.2,12.289,0.131189,0.0345769,0.000240119,,,,,,,,,,,,,, +438,7.01655,55.1131,32324.4,11.8775,0.124221,0.0316766,0.000219976,,,,,,,,,,,,,, +439,5.65627,46.1334,28833.7,12.2313,0.130086,0.0339706,0.000235914,,,,,,,,,,,,,, +440,6.10475,51.7462,26586.2,12.1539,0.128833,0.0336022,0.000233349,,,,,,,,,,,,,, +441,6.48196,65.599,27731,12.1517,0.128668,0.0329295,0.000228675,,,,,,,,,,,,,, +442,6.33264,65.2003,29066.2,12.308,0.131891,0.0329764,0.000229002,,,,,,,,,,,,,, +443,6.43347,68.2103,28858.6,12.3208,0.131772,0.0328614,0.000228204,,,,,,,,,,,,,, +444,6.70685,60.7487,33835.6,12.1778,0.128038,0.0319107,0.0002216,,,,,,,,,,,,,, +445,5.74565,58.6512,34615.7,12.3471,0.13135,0.0331256,0.00023004,,,,,,,,,,,,,, +446,5.42339,61.218,29719,12.2316,0.130482,0.034201,0.000237508,,,,,,,,,,,,,, +447,5.86027,68.3726,27918.9,12.3093,0.13076,0.0337888,0.000234645,,,,,,,,,,,,,, +448,5.67676,60.023,27704.9,11.6739,0.121673,0.0340841,0.000236695,,,,,,,,,,,,,, +449,7.19261,55.4616,32168.1,11.9464,0.1251,0.0314664,0.000218515,,,,,,,,,,,,,, +450,5.8188,61.0778,29821.7,11.6286,0.12003,0.033611,0.000233409,,,,,,,,,,,,,, +451,5.9608,51.9964,21783,12.2517,0.130582,0.0344217,0.000239042,,,,,,,,,,,,,, +452,6.55527,64.4427,39242.3,12.4508,0.132396,0.0314981,0.000218752,,,,,,,,,,,,,, +453,6.66763,64.0478,29454.7,11.9492,0.12491,0.0324699,0.000225485,,,,,,,,,,,,,, +454,5.0123,59.7304,23196,12.2352,0.130649,0.0356988,0.000247915,,,,,,,,,,,,,, +455,6.04707,69.6918,28143.1,12.3522,0.131432,0.0334919,0.000232583,,,,,,,,,,,,,, +456,6.49753,61.8331,26505.7,11.833,0.123293,0.0330555,0.000229551,,,,,,,,,,,,,, +457,5.38563,61.7918,28433.4,12.052,0.127724,0.0344228,0.000239048,,,,,,,,,,,,,, +458,5.50145,55.7144,34126.1,12.4114,0.13257,0.033532,0.000232862,,,,,,,,,,,,,, +459,6.36143,57.3182,34225.7,12.6463,0.135008,0.0323256,0.000224483,,,,,,,,,,,,,, +460,5.68548,59.9012,32032.7,12.2453,0.13026,0.0335278,0.000232832,,,,,,,,,,,,,, +461,6.36763,46.4482,30093.1,12.3336,0.131529,0.0328047,0.000227811,,,,,,,,,,,,,, +462,6.17303,57.353,28012.8,12.0756,0.127583,0.0333286,0.000231449,,,,,,,,,,,,,, +463,5.5348,57.4056,26454,12.415,0.133063,0.0344557,0.000239276,,,,,,,,,,,,,, +464,5.97825,60.1633,33813.4,12.2019,0.128868,0.032898,0.000228458,,,,,,,,,,,,,, +465,6.18063,64.1744,31862.1,12.5931,0.135373,0.0328515,0.000228136,,,,,,,,,,,,,, +466,5.24014,49.4332,33481.8,12.2767,0.130751,0.0339916,0.00023605,,,,,,,,,,,,,, +467,6.07452,62.4283,32315.1,11.9703,0.125625,0.0329443,0.00022878,,,,,,,,,,,,,, +468,6.56958,55.497,28436.6,12.1419,0.127648,0.032724,0.000227251,,,,,,,,,,,,,, +469,5.14482,59.2234,28515.8,12.271,0.130892,0.0347759,0.000241501,,,,,,,,,,,,,, +470,5.41878,66.8185,29129.5,12.1263,0.127963,0.0342835,0.00023808,,,,,,,,,,,,,, +471,5.02358,64.8263,31573.5,12.294,0.1304,0.0345589,0.000239993,,,,,,,,,,,,,, +472,6.86012,56.1592,38497.6,12.4276,0.132098,0.0311892,0.000216599,,,,,,,,,,,,,, +473,6.4603,63.2689,26217.1,12.0351,0.126528,0.0331427,0.000230155,,,,,,,,,,,,,, +474,6.10013,54.737,29640.2,11.7763,0.123294,0.0332326,0.000230782,,,,,,,,,,,,,, +475,7.16597,65.2355,34335.3,12.3299,0.13047,0.0312603,0.000217078,,,,,,,,,,,,,, +476,5.02502,56.6349,31737.8,12.402,0.132972,0.0345354,0.000239828,,,,,,,,,,,,,, +477,6.30913,57.4928,27899,12.2917,0.130851,0.0331505,0.000230212,,,,,,,,,,,,,, +478,5.93497,62.397,29443.1,11.654,0.12088,0.0334914,0.000232578,,,,,,,,,,,,,, +479,5.42962,62.2718,30136.8,11.9957,0.126404,0.0341384,0.000237072,,,,,,,,,,,,,, +480,7.02138,59.3962,25254,12.5263,0.133777,0.0324835,0.000225578,,,,,,,,,,,,,, +481,4.91618,65.8051,31774.7,12.3239,0.130958,0.0346951,0.000240939,,,,,,,,,,,,,, +482,6.58645,52.2064,27985.3,12.5343,0.133045,0.0327545,0.000227462,,,,,,,,,,,,,, +483,5.59396,58.22,30052.7,12.3996,0.132911,0.0339078,0.000235471,,,,,,,,,,,,,, +484,4.80848,55.3432,29153,12.2763,0.131174,0.0352095,0.00024451,,,,,,,,,,,,,, +485,5.41493,66.5915,31322.5,12.3026,0.129635,0.0340091,0.000236175,,,,,,,,,,,,,, +486,4.7729,63.4888,30639.1,12.2583,0.130555,0.035065,0.000243508,,,,,,,,,,,,,, +487,6.53945,63.0195,33693.7,12.2831,0.129933,0.0321488,0.000223254,,,,,,,,,,,,,, +488,4.90941,63.4728,29523.7,12.2692,0.130672,0.0350031,0.000243079,,,,,,,,,,,,,, +489,5.83902,59.1422,32401.7,12.2442,0.130269,0.0332639,0.000230999,,,,,,,,,,,,,, +490,5.85098,61.1081,28665.3,11.987,0.125417,0.0337088,0.000234088,,,,,,,,,,,,,, +491,5.78134,77.2385,28560.3,12.2487,0.129894,0.0338224,0.000234883,,,,,,,,,,,,,, +492,5.37135,68.9668,32458,12.4285,0.131997,0.0339292,0.00023562,,,,,,,,,,,,,, +493,5.36987,70.4128,35947.2,12.3531,0.13148,0.0334951,0.000232602,,,,,,,,,,,,,, +494,5.70375,69.4773,25606.1,12.2351,0.130012,0.0343127,0.000238284,,,,,,,,,,,,,, +495,6.68091,55.7515,31645.1,12.3722,0.131889,0.0321967,0.000223589,,,,,,,,,,,,,, +496,5.48641,53.7156,28600.5,12.3737,0.132485,0.034251,0.000237855,,,,,,,,,,,,,, +497,6.60667,58.7683,32131.3,11.8984,0.123489,0.0322397,0.000223887,,,,,,,,,,,,,, +498,6.40796,62.5182,26487.2,11.8818,0.124325,0.0331834,0.000230438,,,,,,,,,,,,,, +499,6.71106,66.6851,26205.1,12.2688,0.130055,0.0327954,0.00022774,,,,,,,,,,,,,, +500,5.35424,58.0525,27287.6,12.237,0.130188,0.0346191,0.000240411,,,,,,,,,,,,,, +501,5.65284,54.693,32513,12.6068,0.13488,0.033515,0.000232743,,,,,,,,,,,,,, +502,6.45537,71.049,28509.2,12.3222,0.131511,0.0328729,0.000228285,,,,,,,,,,,,,, +503,5.51086,58.7479,30304.8,12.6819,0.137421,0.0339974,0.000236094,,,,,,,,,,,,,, +504,5.64806,57.8609,33012,12.4789,0.133617,0.0334602,0.000232362,,,,,,,,,,,,,, +505,5.58396,57.5671,27383.4,11.9081,0.125638,0.0342624,0.000237934,,,,,,,,,,,,,, +506,6.34791,64.8965,25337,12.2653,0.130173,0.0334092,0.000232005,,,,,,,,,,,,,, +507,6.05609,52.8937,21719.9,12.2517,0.130535,0.0342878,0.000238113,,,,,,,,,,,,,, +508,5.9505,59.6344,30778.4,11.9758,0.126035,0.0333049,0.000231284,,,,,,,,,,,,,, +509,6.01892,60.8173,29851.3,11.9806,0.124545,0.0333216,0.0002314,,,,,,,,,,,,,, +510,6.17675,65.9306,30423.1,12.7097,0.136531,0.03303,0.000229375,,,,,,,,,,,,,, +511,5.29531,54.67,26560.4,12.4543,0.133613,0.0348041,0.000241696,,,,,,,,,,,,,, +512,5.80217,57.3309,25265.2,11.8647,0.1247,0.0342104,0.000237572,,,,,,,,,,,,,, +513,5.49024,54.3774,27840.9,12.2654,0.131124,0.034343,0.000238494,,,,,,,,,,,,,, +514,6.67698,59.714,27290.5,12.2169,0.129651,0.0327128,0.000227172,,,,,,,,,,,,,, +515,6.30392,61.1539,33164.9,12.1911,0.128556,0.0325277,0.000225886,,,,,,,,,,,,,, +516,6.50049,63.8428,29189.2,11.861,0.123546,0.0327295,0.000227288,,,,,,,,,,,,,, +517,6.32202,67.9718,31155.5,12.3743,0.131445,0.0327409,0.000227367,,,,,,,,,,,,,, +518,5.57626,60.3038,29418.2,11.9599,0.126533,0.034014,0.000236208,,,,,,,,,,,,,, +519,6.18193,60.0864,27020.1,11.8123,0.123718,0.0334381,0.000232209,,,,,,,,,,,,,, +520,6.05188,59.7225,32438.6,12.1877,0.128723,0.0329609,0.000228895,,,,,,,,,,,,,, +521,5.28467,69.8851,28050.8,12.1899,0.129246,0.0346246,0.000240447,,,,,,,,,,,,,, +522,6.47004,64.021,32675.2,12.3448,0.130973,0.0323601,0.000224723,,,,,,,,,,,,,, +523,5.52634,59.4052,33998.2,12.4539,0.133099,0.0335122,0.000232724,,,,,,,,,,,,,, +524,6.15089,56.231,30662.7,12.235,0.130458,0.0330371,0.000229425,,,,,,,,,,,,,, +525,6.30538,56.9872,34165,12.691,0.135613,0.0324083,0.000225057,,,,,,,,,,,,,, +526,6.58889,60.8791,29812.2,11.92,0.123792,0.0325348,0.000225937,,,,,,,,,,,,,, +527,6.13315,68.7193,31456.7,12.2916,0.130621,0.0329662,0.000228932,,,,,,,,,,,,,, +528,6.04018,51.9303,32801.4,12.4245,0.13319,0.0329336,0.000228705,,,,,,,,,,,,,, +529,5.55286,60.0741,33242.5,12.4742,0.133816,0.0335679,0.000233111,,,,,,,,,,,,,, +530,5.46565,61.9873,24728.8,12.2412,0.130225,0.0347857,0.000241569,,,,,,,,,,,,,, +531,6.44876,61.3386,32226.5,12.3262,0.131106,0.0324413,0.000225287,,,,,,,,,,,,,, +532,7.3533,66.463,30701.8,12.1718,0.127842,0.0314227,0.000218216,,,,,,,,,,,,,, +533,6.12193,70.5141,33287.7,12.3253,0.130831,0.0327624,0.000227517,,,,,,,,,,,,,, +534,5.65944,69.3182,33568.9,12.3097,0.130852,0.0333755,0.000231774,,,,,,,,,,,,,, +535,6.02201,43.7354,27337.6,12.376,0.132128,0.0336276,0.000233531,,,,,,,,,,,,,, +536,6.50871,57.1634,25574.4,12.261,0.130013,0.0331526,0.000230228,,,,,,,,,,,,,, +537,5.4984,37.484,26652.5,12.1402,0.129028,0.0344829,0.000239507,,,,,,,,,,,,,, +538,6.1632,55.9295,27633,11.9872,0.126236,0.0333892,0.00023187,,,,,,,,,,,,,, +539,6.09353,59.063,31299.8,12.3425,0.132524,0.0330403,0.000229446,,,,,,,,,,,,,, +540,6.24042,74.8788,26923.9,12.2602,0.129973,0.0333663,0.000231721,,,,,,,,,,,,,, +541,5.25539,66.5871,33130.8,12.2969,0.130773,0.0340138,0.000236207,,,,,,,,,,,,,, +542,5.34374,57.9733,35365.8,12.3628,0.131656,0.0336045,0.000233367,,,,,,,,,,,,,, +543,6.92048,60.2267,29565.8,12.401,0.132288,0.0321172,0.000223037,,,,,,,,,,,,,, +544,5.90459,76.0839,25939.7,12.2453,0.129923,0.033973,0.000235938,,,,,,,,,,,,,, +545,5.64927,56.258,30449.6,12.2716,0.13066,0.0337773,0.000234565,,,,,,,,,,,,,, +546,6.31597,53.5946,31845.4,12.3745,0.132163,0.0326672,0.000226855,,,,,,,,,,,,,, +547,6.06725,59.5419,32035,12.2641,0.130483,0.0329882,0.000229084,,,,,,,,,,,,,, +548,5.75163,59.4706,29973.6,12.1247,0.127824,0.0336888,0.00023395,,,,,,,,,,,,,, +549,5.85576,66.3147,29231,12.3995,0.133022,0.0336313,0.000233551,,,,,,,,,,,,,, +550,5.28673,58.194,22970.1,12.242,0.130577,0.0352964,0.000245118,,,,,,,,,,,,,, +551,6.71879,57.9576,31315.5,12.1248,0.127386,0.0321842,0.000223502,,,,,,,,,,,,,, +552,6.34399,62.9824,27597.9,11.8944,0.125538,0.0331382,0.000230125,,,,,,,,,,,,,, +553,6.52535,52.2923,27038.1,12.4429,0.132073,0.0329524,0.000228836,,,,,,,,,,,,,, +554,6.02309,64.4637,29027.2,12.2063,0.131302,0.033417,0.000232062,,,,,,,,,,,,,, +555,5.63273,58.0211,35507.3,12.3569,0.131422,0.0331759,0.00023039,,,,,,,,,,,,,, +556,6.02796,57.0935,27686.7,11.7667,0.123072,0.0335758,0.000233165,,,,,,,,,,,,,, +557,7.74967,61.9521,30498.7,12.2358,0.129046,0.0309427,0.000214885,,,,,,,,,,,,,, +558,4.70836,58.9946,32723.2,12.1905,0.129527,0.0348874,0.000242271,,,,,,,,,,,,,, +559,5.52819,56.6044,26897,12.3997,0.13293,0.0344083,0.000238947,,,,,,,,,,,,,, +560,6.74199,66.5475,26886.2,12.2649,0.129988,0.0326718,0.000226883,,,,,,,,,,,,,, +561,7.09117,63.5071,28782.7,12.3492,0.131256,0.0319808,0.000222088,,,,,,,,,,,,,, +562,6.65794,62.6149,33121.6,12.228,0.128909,0.032057,0.000222617,,,,,,,,,,,,,, +563,5.67186,62.1054,29738,11.4788,0.118631,0.0338339,0.000234958,,,,,,,,,,,,,, +564,5.66816,59.0809,28532.2,11.4267,0.11752,0.0339916,0.000236053,,,,,,,,,,,,,, +565,6.03725,55.6834,26800.2,12.0261,0.127074,0.0336727,0.000233839,,,,,,,,,,,,,, +566,6.37314,47.2368,28310.6,12.3924,0.132172,0.0330111,0.000229243,,,,,,,,,,,,,, +567,6.75593,71.5157,30924.9,12.2309,0.129233,0.0321797,0.000223471,,,,,,,,,,,,,, +568,5.69114,55.1532,28149.7,12.1398,0.129353,0.0340064,0.000236156,,,,,,,,,,,,,, +569,6.05786,58.1103,36607.5,12.3375,0.13095,0.0324574,0.000225398,,,,,,,,,,,,,, +570,6.27894,61.5482,39595.5,12.4638,0.132744,0.0318191,0.000220965,,,,,,,,,,,,,, +571,6.33821,51.6181,37035.9,12.3877,0.131782,0.0320314,0.000222445,,,,,,,,,,,,,, +572,4.99835,51.2628,35596.2,12.2772,0.1308,0.0340782,0.00023666,,,,,,,,,,,,,, +573,6.5195,53.6945,32428.9,12.3631,0.131695,0.0323222,0.00022446,,,,,,,,,,,,,, +574,6.14225,42.9358,36466.8,12.3181,0.13093,0.0323592,0.000224721,,,,,,,,,,,,,, +575,5.92603,62.6757,31855.8,11.9326,0.124918,0.0332078,0.00023061,,,,,,,,,,,,,, +576,5.94043,53.6468,29035.2,12.179,0.128067,0.033534,0.000232876,,,,,,,,,,,,,, +577,6.58309,65.5053,22356.9,12.2707,0.13038,0.033442,0.00023222,,,,,,,,,,,,,, +578,5.3139,62.1869,28936.2,12.1876,0.129642,0.0344652,0.000239342,,,,,,,,,,,,,, +579,6.24528,63.5249,33935.1,12.2175,0.129003,0.0325168,0.000225811,,,,,,,,,,,,,, +580,6.65484,57.4921,25701.7,12.4099,0.132158,0.0329332,0.000228704,,,,,,,,,,,,,, +581,6.57704,59.1834,23403.9,12.2991,0.130806,0.033321,0.000231398,,,,,,,,,,,,,, +582,6.71593,61.1928,32273.1,12.0618,0.126048,0.0320776,0.000222761,,,,,,,,,,,,,, +583,6.43985,53.7766,31669.9,12.4185,0.132809,0.0325188,0.000225825,,,,,,,,,,,,,, +584,6.25577,60.2047,26904.5,11.8098,0.123599,0.0333473,0.000231578,,,,,,,,,,,,,, +585,6.17126,65.6152,26331.6,12.3814,0.131953,0.0335385,0.000232905,,,,,,,,,,,,,, +586,6.40539,63.3376,31728.8,12.6006,0.134631,0.0325588,0.000226103,,,,,,,,,,,,,, +587,5.70917,65.3552,26849.6,12.28,0.130946,0.0341453,0.00023712,,,,,,,,,,,,,, +588,5.73948,61.2072,27702.7,11.97,0.126204,0.0339922,0.000236057,,,,,,,,,,,,,, +589,5.53171,64.5342,30647,12.1316,0.128533,0.0339237,0.000235581,,,,,,,,,,,,,, +590,6.35322,63.5983,33650.3,12.2694,0.129899,0.0324039,0.000225026,,,,,,,,,,,,,, +591,5.69951,57.0279,28480.3,11.5609,0.120138,0.0339522,0.00023578,,,,,,,,,,,,,, +592,4.76584,58.0976,29376,12.2448,0.130626,0.0352458,0.000244763,,,,,,,,,,,,,, +593,5.73256,64.4831,31776.3,12.2994,0.130624,0.0334922,0.000232585,,,,,,,,,,,,,, +594,6.12892,61.2268,30567.9,12.2014,0.129156,0.0330793,0.000229717,,,,,,,,,,,,,, +595,5.71744,58.1241,33529.2,12.4182,0.132712,0.0332979,0.000231236,,,,,,,,,,,,,, +596,5.79812,53.2912,29099.9,12.6879,0.135629,0.0337308,0.000234243,,,,,,,,,,,,,, +597,6.37597,51.0924,29144.4,12.6375,0.135388,0.0329068,0.000228519,,,,,,,,,,,,,, +598,6.08875,61.7689,32841,11.9136,0.124108,0.0328615,0.000228204,,,,,,,,,,,,,, +599,5.61689,73.4564,27960.4,12.2744,0.130136,0.0341396,0.000237082,,,,,,,,,,,,,, +600,5.38922,65.413,32069.4,11.9706,0.126143,0.0339521,0.000235779,,,,,,,,,,,,,, +601,6.05479,63.0458,34453.6,12.2194,0.128966,0.0327158,0.000227193,,,,,,,,,,,,,, +602,6.09192,61.064,31986.6,12.1218,0.128175,0.0329597,0.000228886,,,,,,,,,,,,,, +603,6.80717,57.2818,30409.2,12.2982,0.130496,0.032171,0.000223411,,,,,,,,,,,,,, +604,5.64469,50.9982,27900.6,12.3569,0.131762,0.0341063,0.000236851,,,,,,,,,,,,,, +605,6.68729,54.5774,32192.9,12.3396,0.131351,0.0321249,0.00022309,,,,,,,,,,,,,, +606,6.03171,53.554,25785.7,12.2085,0.129721,0.0338077,0.000234776,,,,,,,,,,,,,, +607,6.85455,55.2177,29006.9,12.22,0.12919,0.0322701,0.000224098,,,,,,,,,,,,,, +608,5.98805,60.9511,29665.7,11.9534,0.124053,0.0333882,0.000231862,,,,,,,,,,,,,, +609,5.54423,68.5464,25491,12.0362,0.127385,0.0345667,0.000240047,,,,,,,,,,,,,, +610,6.69541,56.7007,28426.7,12.2108,0.129168,0.0325531,0.000226064,,,,,,,,,,,,,, +611,6.79347,66.2602,30002.1,12.2359,0.129506,0.0322364,0.000223864,,,,,,,,,,,,,, +612,5.47379,60.929,27091.1,12.0278,0.12709,0.0344646,0.000239338,,,,,,,,,,,,,, +613,6.4151,56.1386,30393.1,12.1385,0.127939,0.0327036,0.000227109,,,,,,,,,,,,,, +614,6.12539,67.6009,29079.7,12.3286,0.131962,0.0332655,0.00023101,,,,,,,,,,,,,, +615,5.31714,53.1839,30254.5,12.4673,0.133971,0.03429,0.000238126,,,,,,,,,,,,,, +616,4.84272,52.5267,28000.1,12.2284,0.130453,0.0353116,0.000245219,,,,,,,,,,,,,, +617,6.63214,58.721,32276.6,11.8762,0.123051,0.0321888,0.000223533,,,,,,,,,,,,,, +618,6.15679,57.1445,32908,12.5249,0.133688,0.0327595,0.000227496,,,,,,,,,,,,,, +619,5.53966,59.9164,28895.9,11.7561,0.123298,0.0341343,0.000237044,,,,,,,,,,,,,, +620,5.80973,60.8512,30458.5,11.5596,0.119192,0.0335449,0.00023295,,,,,,,,,,,,,, +621,6.76762,57.9997,27676.6,12.3458,0.131737,0.0325432,0.000225995,,,,,,,,,,,,,, +622,7.0238,62.4994,29570.6,12.3054,0.130489,0.0319796,0.000222081,,,,,,,,,,,,,, +623,5.21114,67.3334,28586.5,12.1083,0.127931,0.0346658,0.000240734,,,,,,,,,,,,,, +624,6.07384,57.5393,32618.3,12.5177,0.133959,0.0329088,0.000228533,,,,,,,,,,,,,, +625,6.14733,59.8174,36195.8,12.0588,0.126256,0.0323844,0.000224891,,,,,,,,,,,,,, +626,5.38238,62.6252,30803.4,12.2577,0.130644,0.034123,0.000236966,,,,,,,,,,,,,, +627,5.83387,54.2459,29303.5,12.3619,0.13099,0.0336538,0.000233707,,,,,,,,,,,,,, +628,6.78174,63.8137,30245.7,12.156,0.127927,0.0322238,0.000223777,,,,,,,,,,,,,, +629,5.24427,50.5886,30385.4,12.3962,0.132738,0.0343817,0.000238764,,,,,,,,,,,,,, +630,6.22363,59.1114,28791.5,12.6354,0.134946,0.0331621,0.000230292,,,,,,,,,,,,,, +631,6.04919,70.8614,30853.2,12.2005,0.129476,0.0331566,0.000230254,,,,,,,,,,,,,, +632,5.15544,64.7654,32043.3,12.0435,0.127324,0.0343005,0.000238199,,,,,,,,,,,,,, +633,5.90536,58.3851,31408.8,12.0886,0.128465,0.0332916,0.000231191,,,,,,,,,,,,,, +634,6.93172,55.4681,28450.7,12.2566,0.129782,0.0322312,0.000223828,,,,,,,,,,,,,, +635,5.26276,68.1857,27072.4,12.0292,0.127213,0.0347863,0.00024157,,,,,,,,,,,,,, +636,7.03108,55.634,31764.4,12.0023,0.126081,0.0317208,0.000220283,,,,,,,,,,,,,, +637,5.7771,57.0585,31415.4,12.1196,0.12866,0.0334731,0.000232452,,,,,,,,,,,,,, +638,5.16791,62.7056,28284.3,12.2147,0.129845,0.0347711,0.000241468,,,,,,,,,,,,,, +639,5.85196,51.8226,36303.4,12.3663,0.131729,0.0327749,0.000227605,,,,,,,,,,,,,, +640,5.05203,63.3551,25547.1,12.2179,0.130089,0.0353154,0.000245247,,,,,,,,,,,,,, +641,6.32718,50.3121,26375.6,12.118,0.128356,0.0333109,0.000231325,,,,,,,,,,,,,, +642,6.92447,61.5339,28397.5,12.5465,0.135016,0.0322471,0.000223937,,,,,,,,,,,,,, +643,5.49573,52.1717,27144.6,12.2761,0.130942,0.0344247,0.000239062,,,,,,,,,,,,,, +644,6.12335,60.6995,28733.8,12.5944,0.133568,0.0333107,0.000231324,,,,,,,,,,,,,, +645,5.63885,49.3485,35328,12.3284,0.131299,0.0331893,0.000230481,,,,,,,,,,,,,, +646,5.98588,60.1277,30230.5,12.004,0.125515,0.0333219,0.000231402,,,,,,,,,,,,,, +647,7.41769,62.8706,31235.5,12.144,0.127368,0.0312815,0.000217233,,,,,,,,,,,,,, +648,6.3796,60.3929,33240.1,12.1967,0.128509,0.0324162,0.000225112,,,,,,,,,,,,,, +649,6.67581,50.563,29969.8,12.3904,0.13229,0.0323984,0.000224989,,,,,,,,,,,,,, +650,5.97426,49.8261,27109.5,12.2579,0.130238,0.033725,0.000234202,,,,,,,,,,,,,, +651,6.28335,67.6349,30151.4,12.4067,0.132342,0.0329144,0.000228572,,,,,,,,,,,,,, +652,6.40098,53.111,29755.4,12.3061,0.130678,0.032799,0.000227771,,,,,,,,,,,,,, +653,6.27618,59.4306,31828.6,12.4802,0.13466,0.0327237,0.000227248,,,,,,,,,,,,,, +654,5.86814,60.3656,30114.3,11.8207,0.122744,0.0335039,0.000232666,,,,,,,,,,,,,, +655,7.36151,56.301,28710.7,12.2179,0.12889,0.0316351,0.000219687,,,,,,,,,,,,,, +656,6.27817,49.9984,24128.5,12.2406,0.130153,0.0336582,0.000233738,,,,,,,,,,,,,, +657,6.06376,57.5971,34698.9,12.4879,0.132557,0.0326744,0.000226905,,,,,,,,,,,,,, +658,6.06999,60.8443,29828,12.1483,0.126995,0.0332522,0.000230918,,,,,,,,,,,,,, +659,5.77001,53.1273,35138.7,12.3671,0.132045,0.0330282,0.000229364,,,,,,,,,,,,,, +660,5.35149,51.7119,29054.6,12.3262,0.131638,0.0343935,0.000238846,,,,,,,,,,,,,, +661,5.69443,70.7232,31800.1,12.3075,0.130773,0.0335439,0.000232944,,,,,,,,,,,,,, +662,5.99609,67.9504,29865.7,12.3433,0.131768,0.0333523,0.000231613,,,,,,,,,,,,,, +663,4.55462,64.3753,25515,12.1804,0.129954,0.0361147,0.000250791,,,,,,,,,,,,,, +664,5.99837,56.0248,31328.2,12.2364,0.130836,0.0331702,0.000230348,,,,,,,,,,,,,, +665,6.88686,51.8664,30519,12.3786,0.132001,0.0320522,0.000222585,,,,,,,,,,,,,, +666,6.19153,59.6065,30533,12.411,0.132791,0.0329961,0.00022914,,,,,,,,,,,,,, +667,6.86733,65.3339,26394.8,12.2636,0.12993,0.0325588,0.000226096,,,,,,,,,,,,,, +668,6.68414,68.4707,30752.8,12.2798,0.130306,0.0322959,0.000224277,,,,,,,,,,,,,, +669,5.82887,62.3778,28493.7,12.0114,0.126582,0.0337623,0.00023446,,,,,,,,,,,,,, +670,5.86527,50.1328,25868.7,12.2423,0.130264,0.0340402,0.00023639,,,,,,,,,,,,,, +671,6.6604,55.6019,29121.9,12.0436,0.126257,0.0325188,0.000225826,,,,,,,,,,,,,, +672,6.2039,64.116,29170.8,12.5458,0.136096,0.0331438,0.000230164,,,,,,,,,,,,,, +673,6.41191,51.4055,35636.3,12.3628,0.131416,0.0320943,0.000222881,,,,,,,,,,,,,, +674,6.17421,55.0289,30561,12.1471,0.129063,0.0330169,0.000229284,,,,,,,,,,,,,, +675,6.72333,52.7572,28072.8,12.4197,0.131567,0.0325568,0.000226088,,,,,,,,,,,,,, +676,5.49321,65.6538,24049.1,12.2667,0.130731,0.0348334,0.000241899,,,,,,,,,,,,,, +677,6.11588,55.5546,30735.1,12.1705,0.129607,0.0330773,0.000229704,,,,,,,,,,,,,, +678,5.59763,60.7713,32376.2,12.3925,0.132557,0.0336113,0.000233411,,,,,,,,,,,,,, +679,6.57187,64.1545,29626.2,11.9343,0.12453,0.0325799,0.000226249,,,,,,,,,,,,,, +680,5.91296,60.8741,25662.8,12.5087,0.134266,0.0339965,0.000236087,,,,,,,,,,,,,, +681,4.93681,50.4145,29347.1,12.4058,0.133091,0.0349846,0.000242949,,,,,,,,,,,,,, +682,5.44311,53.0057,32594.7,12.3903,0.132186,0.0338073,0.000234772,,,,,,,,,,,,,, +683,6.54776,71.9792,26110.6,12.2756,0.130147,0.0330331,0.000229398,,,,,,,,,,,,,, +684,5.88971,60.6314,24836.7,12.2777,0.13025,0.0341358,0.000237054,,,,,,,,,,,,,, +685,6.64482,56.3744,33783,12.2657,0.129566,0.0319985,0.000222211,,,,,,,,,,,,,, +686,7.23873,53.8134,30596.8,12.1907,0.128491,0.0315823,0.000219322,,,,,,,,,,,,,, +687,6.78832,63.0726,30657.8,12.1696,0.127962,0.0321673,0.000223385,,,,,,,,,,,,,, +688,6.52914,66.0006,25851.4,12.2734,0.130176,0.0330906,0.000229792,,,,,,,,,,,,,, +689,6.23468,63.9008,31908.2,12.612,0.13561,0.0327714,0.000227579,,,,,,,,,,,,,, +690,4.98335,52.6508,31063.7,12.4396,0.13358,0.0346866,0.000240877,,,,,,,,,,,,,, +691,6.22188,65.5422,28496.9,12.3397,0.132671,0.0332005,0.000230558,,,,,,,,,,,,,, +692,6.28558,50.3601,30022,12.6921,0.137028,0.0329268,0.000228658,,,,,,,,,,,,,, +693,6.29428,58.7773,29633.1,12.4315,0.131641,0.0329615,0.000228899,,,,,,,,,,,,,, +694,6.13108,44.6069,27542.3,12.5416,0.134476,0.0334461,0.000232268,,,,,,,,,,,,,, +695,6.30212,72.6203,30888.1,12.2096,0.129,0.0328001,0.00022778,,,,,,,,,,,,,, +696,7.15933,59.6181,31891,12.2298,0.129034,0.0315403,0.000219028,,,,,,,,,,,,,, +697,6.07111,59.2891,31625.3,12.307,0.1317,0.0330322,0.00022939,,,,,,,,,,,,,, +698,6.90501,68.8579,28605.5,12.2362,0.129412,0.032249,0.00022395,,,,,,,,,,,,,, +699,5.55014,46.6096,29456.5,12.2347,0.130155,0.0340473,0.000236446,,,,,,,,,,,,,, +700,5.40976,61.2887,30841,12.5846,0.135113,0.0340779,0.000236652,,,,,,,,,,,,,, +701,5.22112,52.5806,34516.3,12.2712,0.130616,0.0338885,0.000235338,,,,,,,,,,,,,, +702,5.8755,63.303,28967.7,11.9291,0.12581,0.0336357,0.000233581,,,,,,,,,,,,,, +703,6.72054,69.5594,29728.7,12.2524,0.129833,0.0323662,0.000224766,,,,,,,,,,,,,, +704,6.70415,64.296,30738.8,12.2101,0.1286,0.0322706,0.000224102,,,,,,,,,,,,,, +705,6.13663,63.9334,33222.7,12.1283,0.128073,0.0327498,0.000227429,,,,,,,,,,,,,, +706,6.76267,54.0147,32112.1,12.3129,0.131041,0.032034,0.000222459,,,,,,,,,,,,,, +707,5.81996,72.9467,27610.3,12.2759,0.130205,0.033886,0.000235324,,,,,,,,,,,,,, +708,5.56301,66.2933,33088.2,12.3005,0.130776,0.0335726,0.000233143,,,,,,,,,,,,,, +709,6.64941,52.5724,33278.4,12.3049,0.130551,0.0320502,0.000222572,,,,,,,,,,,,,, +710,6.20788,54.311,27002.5,12.1787,0.128983,0.0334032,0.000231968,,,,,,,,,,,,,, +711,5.52292,57.6839,28053.9,11.5925,0.120708,0.034267,0.000237966,,,,,,,,,,,,,, +712,6.00448,73.7945,33721.9,12.325,0.130777,0.0328728,0.000228284,,,,,,,,,,,,,, +713,6.21323,64.2802,29775.6,12.6196,0.136732,0.0330573,0.000229564,,,,,,,,,,,,,, +714,6.52335,52.0762,28976.8,12.4133,0.131666,0.0327233,0.000227245,,,,,,,,,,,,,, +715,5.94923,51.4873,30280.8,12.3484,0.13174,0.0333677,0.000231721,,,,,,,,,,,,,, +716,5.36286,63.0863,32305.3,12.1376,0.129494,0.0339609,0.000235839,,,,,,,,,,,,,, +717,6.14742,60.953,30919.6,12.3615,0.132361,0.033011,0.000229243,,,,,,,,,,,,,, +718,5.06763,57.524,27492.7,12.2533,0.130653,0.0350299,0.000243265,,,,,,,,,,,,,, +719,5.95256,64.083,29260.3,11.9766,0.127427,0.0334889,0.000232561,,,,,,,,,,,,,, +720,5.84636,56.7817,30910.7,12.004,0.127162,0.0334366,0.000232198,,,,,,,,,,,,,, +721,4.8461,56.5546,30477.9,12.3568,0.132433,0.0349738,0.000242872,,,,,,,,,,,,,, +722,6.47563,68.2845,32450.4,12.3642,0.131678,0.0323788,0.000224853,,,,,,,,,,,,,, +723,5.50852,53.4587,30816.5,12.3926,0.132368,0.033936,0.000235668,,,,,,,,,,,,,, +724,5.76477,64.9146,28174.5,12.2171,0.130111,0.0338956,0.000235386,,,,,,,,,,,,,, +725,5.92351,62.6689,27459.4,12.4484,0.133556,0.0337548,0.000234407,,,,,,,,,,,,,, +726,6.23638,66.135,30379.9,12.6775,0.136002,0.0329522,0.000228834,,,,,,,,,,,,,, +727,4.45976,64.5998,32560.8,12.2033,0.129804,0.0352941,0.000245099,,,,,,,,,,,,,, +728,5.18352,50.6369,32466.7,12.275,0.130783,0.0342044,0.000237529,,,,,,,,,,,,,, +729,6.29589,64.5729,33025.2,12.3044,0.130875,0.0325551,0.000226077,,,,,,,,,,,,,, +730,6.0079,52.6133,34565.3,12.4067,0.133009,0.0327671,0.000227549,,,,,,,,,,,,,, +731,5.4833,72.2885,27621.3,12.2666,0.130059,0.0343817,0.000238761,,,,,,,,,,,,,, +732,6.11967,58.4363,32409.9,12.444,0.132973,0.0328703,0.000228266,,,,,,,,,,,,,, +733,5.8772,57.5471,25977.3,11.8674,0.125049,0.034009,0.000236174,,,,,,,,,,,,,, +734,5.80712,67.6644,33050.8,12.301,0.130771,0.0332298,0.000230762,,,,,,,,,,,,,, +735,6.59703,60.7567,31882.5,12.0683,0.126328,0.0322815,0.000224178,,,,,,,,,,,,,, +736,7.6435,68.3313,28105.8,12.3128,0.130386,0.0313391,0.000217636,,,,,,,,,,,,,, +737,7.27958,58.0276,32933.7,12.2242,0.12901,0.0312703,0.00021715,,,,,,,,,,,,,, +738,5.43916,65.1254,27802.9,12.0419,0.127432,0.0344243,0.000239058,,,,,,,,,,,,,, +739,5.86099,66.7978,19772.5,12.2829,0.13104,0.034841,0.000241903,,,,,,,,,,,,,, +740,6.00658,61.32,29180.4,12.1775,0.127402,0.0334216,0.000232094,,,,,,,,,,,,,, +741,6.77798,69.9513,33917,12.3583,0.131163,0.031808,0.000220888,,,,,,,,,,,,,, +742,5.85828,60.6827,27252.2,12.1094,0.128286,0.0338756,0.000235246,,,,,,,,,,,,,, +743,5.61231,65.9476,26256.8,12.0569,0.127732,0.0343652,0.000238648,,,,,,,,,,,,,, +744,5.55967,57.0874,33675.9,12.4871,0.133703,0.0335044,0.00023267,,,,,,,,,,,,,, +745,6.16832,59.7452,23914.3,12.2357,0.129921,0.0338444,0.000235031,,,,,,,,,,,,,, +746,6.26047,66.1795,29540.9,12.442,0.134036,0.0330197,0.000229303,,,,,,,,,,,,,, +747,5.65129,64.124,29798.6,12.0811,0.127859,0.0338563,0.000235113,,,,,,,,,,,,,, +748,5.28273,62.0214,30679.7,12.6661,0.136613,0.0342865,0.000238101,,,,,,,,,,,,,, +749,5.9448,64.4093,30100.8,12.0145,0.127168,0.0333963,0.000231918,,,,,,,,,,,,,, +750,6.35848,62.7616,24451.5,12.2489,0.130003,0.0335033,0.000232659,,,,,,,,,,,,,, +751,5.66454,64.2451,26876.3,12.3082,0.131487,0.0342079,0.000237555,,,,,,,,,,,,,, +752,5.68386,49.6719,24510.4,12.231,0.130261,0.0344838,0.000239468,,,,,,,,,,,,,, +753,6.06087,56.9359,30768.9,12.2324,0.130753,0.0331504,0.000230211,,,,,,,,,,,,,, +754,5.90327,62.1299,29859.6,11.4087,0.116914,0.0334852,0.000232536,,,,,,,,,,,,,, +755,7.04027,58.2854,28346,12.3747,0.131882,0.0320985,0.000222906,,,,,,,,,,,,,, +756,5.99936,57.0213,30728.2,12.1479,0.129497,0.0332419,0.000230847,,,,,,,,,,,,,, +757,5.9895,54.4207,35150.8,12.4445,0.132973,0.0327227,0.000227241,,,,,,,,,,,,,, +758,6.56472,66.2015,31216.6,12.3434,0.130843,0.0324027,0.000225019,,,,,,,,,,,,,, +759,5.04255,67.5442,31967.8,12.3738,0.131373,0.0344791,0.000239439,,,,,,,,,,,,,, +760,6.22087,70.2505,28109.1,12.3964,0.132446,0.0332492,0.000230898,,,,,,,,,,,,,, +761,6.69212,54.6248,29611.5,12.1818,0.128732,0.0324183,0.000225128,,,,,,,,,,,,,, +762,6.72732,56.0775,36865.7,12.4899,0.133439,0.0315411,0.000219036,,,,,,,,,,,,,, +763,6.21574,54.9486,22835.9,12.2142,0.129835,0.0339108,0.000235496,,,,,,,,,,,,,, +764,5.94699,58.2652,26616.6,11.846,0.124421,0.0338264,0.000234906,,,,,,,,,,,,,, +765,6.49118,55.7313,30131.3,12.1174,0.127628,0.0326304,0.000226601,,,,,,,,,,,,,, +766,5.58982,65.5151,30961.1,12.5186,0.133829,0.0337995,0.000234718,,,,,,,,,,,,,, +767,5.79463,56.7447,28196.4,11.6686,0.121908,0.0338493,0.000235065,,,,,,,,,,,,,, +768,5.57462,50.779,28906.2,12.3796,0.132079,0.0340814,0.000236679,,,,,,,,,,,,,, +769,6.53624,63.9737,32752.1,12.324,0.130551,0.0322621,0.000224042,,,,,,,,,,,,,, +770,6.63856,60.3456,25459.2,12.3044,0.130354,0.0329851,0.000229062,,,,,,,,,,,,,, +771,6.61791,51.5603,30329.3,12.477,0.133905,0.0324347,0.000225241,,,,,,,,,,,,,, +772,6.65356,59.3456,27504.5,12.2408,0.130092,0.0327195,0.000227219,,,,,,,,,,,,,, +773,5.71978,54.4583,30745.3,12.271,0.130444,0.0336384,0.000233601,,,,,,,,,,,,,, +774,5.32568,58.1523,35797.8,12.354,0.131526,0.0335768,0.000233175,,,,,,,,,,,,,, +775,6.09768,57.7528,30472.8,12.373,0.132463,0.0331346,0.000230102,,,,,,,,,,,,,, +776,5.72711,59.781,29515.4,12.0027,0.12594,0.0337817,0.000234595,,,,,,,,,,,,,, +777,6.57928,57.2204,27972.3,12.2781,0.130404,0.032766,0.000227542,,,,,,,,,,,,,, +778,5.96176,57.0076,25812.2,11.9687,0.126349,0.0339062,0.00023546,,,,,,,,,,,,,, +779,6.38501,67.8037,28252.2,12.3607,0.132379,0.0330016,0.000229177,,,,,,,,,,,,,, +780,6.43444,52.0562,28883.2,12.4655,0.132472,0.0328571,0.000228174,,,,,,,,,,,,,, +781,5.79253,59.3077,32104.3,12.1846,0.129428,0.0333663,0.00023171,,,,,,,,,,,,,, +782,5.09873,60.2616,32160.2,12.4447,0.133241,0.03437,0.000238681,,,,,,,,,,,,,, +783,6.19001,60.7335,27861.9,12.0462,0.127239,0.0333231,0.00023141,,,,,,,,,,,,,, +784,4.78359,62.4536,27651.1,12.2114,0.130035,0.0354516,0.000246194,,,,,,,,,,,,,, +785,5.88526,61.2669,36413.2,12.4071,0.131886,0.0327159,0.000227193,,,,,,,,,,,,,, +786,6.31804,64.2201,35070.3,12.3244,0.130449,0.0322856,0.000224206,,,,,,,,,,,,,, +787,6.286,62.9047,30874.3,12.9015,0.139108,0.032824,0.000227945,,,,,,,,,,,,,, +788,5.66435,54.1128,31366.6,12.4198,0.132385,0.0336409,0.000233617,,,,,,,,,,,,,, +789,6.11375,63.1926,33260.2,12.0358,0.126336,0.0327768,0.000227617,,,,,,,,,,,,,, +790,6.27534,59.7641,27224.9,11.9027,0.125135,0.0332803,0.000231113,,,,,,,,,,,,,, +791,5.72156,60.9842,28568.4,11.7746,0.122933,0.0339089,0.000235478,,,,,,,,,,,,,, +792,5.36747,58.1466,36559.8,12.3666,0.131755,0.0334228,0.000232106,,,,,,,,,,,,,, +793,6.13397,70.9689,26536.2,12.3858,0.131653,0.0335664,0.000233103,,,,,,,,,,,,,, +794,6.26348,61.3143,32644.7,12.2434,0.129904,0.0326443,0.000226696,,,,,,,,,,,,,, +795,5.33167,63.6905,29948.3,12.1299,0.128371,0.0343078,0.000238249,,,,,,,,,,,,,, +796,6.03467,56.3111,27418.4,11.8362,0.12421,0.0335995,0.00023333,,,,,,,,,,,,,, +797,6.1402,49.1735,37656.1,12.382,0.131778,0.0322242,0.000223783,,,,,,,,,,,,,, +798,5.81612,52.3962,23755.5,12.2429,0.130383,0.0343835,0.000238774,,,,,,,,,,,,,, +799,6.31125,56.09,31105.2,12.2929,0.130732,0.0327616,0.000227512,,,,,,,,,,,,,, +800,3.99525,65.1369,30576.4,12.1461,0.129403,0.0363155,0.000252189,,,,,,,,,,,,,, +801,6.07873,63.2935,24348.4,12.308,0.131043,0.0339203,0.000235556,,,,,,,,,,,,,, +802,6.4136,58.8548,30361.6,12.0071,0.12533,0.0327094,0.000227149,,,,,,,,,,,,,, +803,5.9697,60.4149,31618,11.9726,0.125829,0.0331753,0.000230384,,,,,,,,,,,,,, +804,6.17793,62.1788,31985.6,12.3622,0.132298,0.0328405,0.000228059,,,,,,,,,,,,,, +805,6.46901,65.0001,24236.4,12.269,0.130283,0.0333724,0.000231747,,,,,,,,,,,,,, +806,5.50716,59.2988,28574.4,11.5886,0.120549,0.0342236,0.000237664,,,,,,,,,,,,,, +807,6.39638,74.1874,31239.1,12.2458,0.129568,0.0326289,0.00022659,,,,,,,,,,,,,, +808,6.33146,55.5298,29695.6,12.0486,0.126737,0.0329023,0.000228489,,,,,,,,,,,,,, +809,6.16684,62.801,29016.3,12.6137,0.135477,0.0332147,0.000230657,,,,,,,,,,,,,, +810,6.61568,60.6489,31583.2,12.059,0.126131,0.0322913,0.000224245,,,,,,,,,,,,,, +811,4.40876,69.7689,32974.7,12.2224,0.130143,0.0353184,0.000245269,,,,,,,,,,,,,, +812,5.98654,61.1714,29320.7,12.0819,0.125942,0.0334329,0.000232172,,,,,,,,,,,,,, +813,5.47189,63.2266,35433.3,12.4475,0.132478,0.0334128,0.000232033,,,,,,,,,,,,,, +814,5.60522,53.0251,30370.9,12.4064,0.132449,0.0338512,0.000235079,,,,,,,,,,,,,, +815,6.02018,64.8748,23831,12.3138,0.13116,0.0340718,0.000236607,,,,,,,,,,,,,, +816,5.56636,52.6732,29601.1,12.4932,0.133748,0.0340052,0.000236149,,,,,,,,,,,,,, +817,5.64024,48.3638,29316.4,12.2654,0.130494,0.033933,0.00023565,,,,,,,,,,,,,, +818,6.16472,54.8897,25435.4,12.2307,0.129938,0.0336591,0.000233745,,,,,,,,,,,,,, +819,6.08211,60.3294,28222.9,12.2003,0.128538,0.033432,0.000232166,,,,,,,,,,,,,, +820,5.74108,52.8523,29425.6,12.6783,0.13582,0.0337726,0.000234533,,,,,,,,,,,,,, +821,5.31123,63.1324,30009.6,12.2274,0.129881,0.0343303,0.000238406,,,,,,,,,,,,,, +822,6.75451,61.8527,28811.8,12.2396,0.129985,0.0324276,0.000225192,,,,,,,,,,,,,, +823,7.47242,64.8461,33307.1,12.284,0.129689,0.0309855,0.00021517,,,,,,,,,,,,,, +824,6.48883,64.9628,27081.5,12.1567,0.128611,0.0329982,0.000229152,,,,,,,,,,,,,, +825,5.53465,69.197,37366.2,12.392,0.131958,0.0330878,0.000229773,,,,,,,,,,,,,, +826,6.47207,56.0649,29408.2,11.9926,0.12543,0.0327424,0.000227379,,,,,,,,,,,,,, +827,6.32036,56.4887,29157.6,12.1273,0.127884,0.0329824,0.000229045,,,,,,,,,,,,,, +828,6.3895,61.7116,26464,11.7887,0.122809,0.0332122,0.000230639,,,,,,,,,,,,,, +829,6.95587,61.5097,25065.9,12.4226,0.132293,0.0325948,0.000226349,,,,,,,,,,,,,, +830,5.39747,63.3721,28650.2,12.0301,0.127308,0.0343771,0.00023873,,,,,,,,,,,,,, +831,5.93808,63.1612,30267.7,11.5761,0.119774,0.0333852,0.000231842,,,,,,,,,,,,,, +832,6.74492,56.4508,29875.3,12.2393,0.129628,0.0323163,0.00022442,,,,,,,,,,,,,, +833,6.05325,65.2757,31692.8,12.5389,0.134432,0.0330491,0.000229507,,,,,,,,,,,,,, +834,7.14934,60.1037,30430.1,12.2425,0.129286,0.0317173,0.000220259,,,,,,,,,,,,,, +835,7.49272,53.6676,35195.7,12.2989,0.130006,0.0307538,0.000213565,,,,,,,,,,,,,, +836,5.12636,67.3018,32331,12.3283,0.130757,0.0343068,0.000238242,,,,,,,,,,,,,, +837,6.51199,56.7932,34148.3,12.4684,0.132594,0.0321329,0.000223144,,,,,,,,,,,,,, +838,5.7576,46.8472,33810.3,12.2977,0.130829,0.0332071,0.000230601,,,,,,,,,,,,,, +839,5.89495,60.3795,28326.2,12.015,0.12575,0.0336876,0.000233942,,,,,,,,,,,,,, +840,6.03881,60.912,25196.1,12.3734,0.131993,0.0338716,0.000235219,,,,,,,,,,,,,, +841,6.09898,62.4848,31257.9,12.3582,0.131522,0.0330377,0.000229428,,,,,,,,,,,,,, +842,5.11593,54.3547,30951.6,12.5786,0.135967,0.0345009,0.000239589,,,,,,,,,,,,,, +843,6.28874,59.484,27467.2,12.0325,0.127153,0.0332318,0.000230776,,,,,,,,,,,,,, +844,5.1972,52.1123,32074.6,12.3074,0.13129,0.0342344,0.000237738,,,,,,,,,,,,,, +845,6.41011,69.0539,32897.8,12.3606,0.131575,0.0324151,0.000225105,,,,,,,,,,,,,, +846,6.09634,53.9506,33733.8,12.4845,0.13413,0.0327444,0.000227391,,,,,,,,,,,,,, +847,6.79972,61.669,33406.9,12.2092,0.128572,0.0318374,0.000221091,,,,,,,,,,,,,, +848,7.07093,59.1642,27782.8,12.3782,0.131958,0.0321226,0.000223072,,,,,,,,,,,,,, +849,5.374,62.8779,28370.6,12.0556,0.127706,0.0344484,0.000239225,,,,,,,,,,,,,, +850,6.23197,56.8468,32476.8,12.4796,0.133393,0.0327074,0.000227135,,,,,,,,,,,,,, +851,6.11919,61.4747,30671.4,12.1846,0.128934,0.0330804,0.000229725,,,,,,,,,,,,,, +852,5.47715,57.7433,34802.1,12.3912,0.132072,0.0334831,0.000232523,,,,,,,,,,,,,, +853,5.75304,58.4821,26056.6,11.9175,0.125845,0.0341818,0.000237374,,,,,,,,,,,,,, +854,6.04345,59.6515,30292.8,12.242,0.129467,0.0332329,0.000230784,,,,,,,,,,,,,, +855,5.86749,48.8684,26013.3,12.2564,0.130469,0.0340186,0.00023624,,,,,,,,,,,,,, +856,5.1196,55.4259,26737.7,12.3507,0.132253,0.0350504,0.000243407,,,,,,,,,,,,,, +857,4.85363,63.9671,31754.3,12.2523,0.130172,0.034793,0.000241619,,,,,,,,,,,,,, +858,5.11134,62.5267,28380.9,12.2335,0.130138,0.0348447,0.000241979,,,,,,,,,,,,,, +859,5.63102,67.4021,27824.7,12.1956,0.129338,0.0341362,0.000237057,,,,,,,,,,,,,, +860,6.55338,70.1926,28746.9,12.2958,0.131062,0.0327094,0.000227149,,,,,,,,,,,,,, +861,5.09348,64.9834,34102.1,12.4091,0.132575,0.0341285,0.000237004,,,,,,,,,,,,,, +862,6.00281,55.3155,28872.7,11.6193,0.120344,0.0334649,0.000232396,,,,,,,,,,,,,, +863,6.34192,68.9331,30062.1,12.3041,0.130838,0.0328439,0.000228083,,,,,,,,,,,,,, +864,7.12742,49.946,26315.3,12.1437,0.12806,0.0322165,0.000223722,,,,,,,,,,,,,, +865,5.78988,55.8147,28988,12.0149,0.126268,0.0337568,0.000234422,,,,,,,,,,,,,, +866,6.21928,65.9705,23675.5,12.2834,0.130629,0.0338006,0.000234722,,,,,,,,,,,,,, +867,5.77191,57.1398,26860,11.8748,0.125484,0.0340516,0.000236469,,,,,,,,,,,,,, +868,6.60097,61.6275,31562.3,12.1834,0.128027,0.0323135,0.0002244,,,,,,,,,,,,,, +869,6.54564,57.6673,31098.9,12.0588,0.126353,0.0324423,0.000225294,,,,,,,,,,,,,, +870,5.3923,53.3422,27586.9,12.2891,0.131202,0.0345226,0.000239742,,,,,,,,,,,,,, +871,5.73565,66.0255,24402.9,12.3954,0.132433,0.0344205,0.000239031,,,,,,,,,,,,,, +872,5.58679,66.7424,31357.4,12.6424,0.134828,0.0337542,0.000234404,,,,,,,,,,,,,, +873,6.68741,47.3023,30859.8,12.281,0.130523,0.0322788,0.00022416,,,,,,,,,,,,,, +874,6.35024,69.1774,29246.3,12.325,0.131629,0.0329303,0.000228682,,,,,,,,,,,,,, +875,7.87837,62.2509,31542.6,12.2259,0.1288,0.0306701,0.000212992,,,,,,,,,,,,,, +876,5.91474,56.682,26934.1,11.8388,0.124648,0.0338334,0.000234954,,,,,,,,,,,,,, +877,7.37546,74.3867,28955.2,12.2254,0.128912,0.0315892,0.000219377,,,,,,,,,,,,,, +878,6.363,55.0602,28527.1,12.1049,0.127351,0.032999,0.000229161,,,,,,,,,,,,,, +879,4.99332,54.6154,31114.5,12.4722,0.134244,0.0346648,0.000240726,,,,,,,,,,,,,, +880,5.93524,61.6377,30171.8,11.4322,0.116937,0.0334011,0.000231951,,,,,,,,,,,,,, +881,5.46088,55.8265,26670.4,12.5835,0.135508,0.0345387,0.000239852,,,,,,,,,,,,,, +882,6.15648,62.2389,30159.3,12.314,0.130447,0.0330903,0.000229793,,,,,,,,,,,,,, +883,5.88133,54.5528,34032.9,12.4516,0.133343,0.0330064,0.000229211,,,,,,,,,,,,,, +884,6.17057,64.3299,32186.1,12.4151,0.13305,0.0328267,0.000227963,,,,,,,,,,,,,, +885,5.4055,60.1102,34199.2,12.4919,0.133437,0.0336609,0.000233757,,,,,,,,,,,,,, +886,5.92209,67.2079,34829.1,12.3741,0.131669,0.0328541,0.000228153,,,,,,,,,,,,,, +887,6.47452,54.1864,34577.9,12.4727,0.133005,0.0321332,0.000223147,,,,,,,,,,,,,, +888,5.99255,66.4354,33141.3,12.2853,0.130663,0.032959,0.000228882,,,,,,,,,,,,,, +889,6.42029,65.2467,31137.2,12.5683,0.133402,0.0326083,0.000226447,,,,,,,,,,,,,, +890,5.85296,61.3538,30193.3,11.438,0.117144,0.0335158,0.000232748,,,,,,,,,,,,,, +891,5.68192,45.5069,29588.4,12.235,0.130102,0.0338379,0.000234993,,,,,,,,,,,,,, +892,6.50703,58.082,22591.1,12.1705,0.129076,0.0335207,0.000232785,,,,,,,,,,,,,, +893,6.08911,69.1255,28273.5,12.3624,0.131742,0.0334158,0.000232055,,,,,,,,,,,,,, +894,7.07861,62.654,27350.8,12.3408,0.131221,0.0321623,0.000223346,,,,,,,,,,,,,, +895,5.44503,58.9639,31264.8,12.794,0.138431,0.0339723,0.000235918,,,,,,,,,,,,,, +896,6.15327,56.6723,31743.4,12.483,0.134165,0.0329037,0.000228498,,,,,,,,,,,,,, +897,6.29217,60.1391,26948.4,11.814,0.123631,0.0332904,0.000231183,,,,,,,,,,,,,, +898,6.46223,51.7837,33363.5,12.3291,0.131126,0.0322904,0.000224239,,,,,,,,,,,,,, +899,5.80437,55.8426,24197,12.1311,0.128346,0.0343443,0.000238503,,,,,,,,,,,,,, +900,6.35965,55.1958,29668.6,12.0396,0.126528,0.0328665,0.00022824,,,,,,,,,,,,,, +901,5.17007,56.2854,26159.4,12.4204,0.133273,0.0350496,0.000243401,,,,,,,,,,,,,, +902,6.35353,49.8468,30086.6,12.6695,0.136852,0.032825,0.000227951,,,,,,,,,,,,,, +903,7.05269,56.5806,34945.7,12.3216,0.130479,0.031337,0.000217612,,,,,,,,,,,,,, +904,4.81574,71.6664,31484.7,12.2423,0.130236,0.0348872,0.000242267,,,,,,,,,,,,,, +905,6.38196,62.2262,31552.7,12.6787,0.136642,0.0326115,0.000226469,,,,,,,,,,,,,, +906,5.69602,67.1128,31869.6,12.5434,0.133694,0.033533,0.000232868,,,,,,,,,,,,,, +907,6.61085,56.6533,31901.4,12.1769,0.128369,0.0322608,0.000224034,,,,,,,,,,,,,, +908,6.46682,67.8843,31086.6,12.3228,0.1308,0.0325508,0.000226047,,,,,,,,,,,,,, +909,5.84706,59.0658,29097.9,12.2123,0.128051,0.0336604,0.000233753,,,,,,,,,,,,,, +910,6.56166,73.1349,31804.8,12.2673,0.130072,0.0323382,0.000224571,,,,,,,,,,,,,, +911,6.25199,59.2536,28945.3,12.6526,0.13499,0.0331036,0.000229886,,,,,,,,,,,,,, +912,6.01294,65.6984,32141.7,12.37,0.132279,0.0330511,0.000229522,,,,,,,,,,,,,, +913,6.54032,62.0982,38086.1,12.4351,0.132262,0.0316471,0.000219774,,,,,,,,,,,,,, +914,4.58639,59.5176,31946.9,12.2191,0.130118,0.0351794,0.000244298,,,,,,,,,,,,,, +915,5.3235,65.7895,24806.5,12.1145,0.128659,0.0349933,0.000243009,,,,,,,,,,,,,, +916,5.26425,55.8895,31502.1,12.5594,0.135353,0.0342084,0.000237558,,,,,,,,,,,,,, +917,6.52884,68.8435,30933.3,12.2564,0.129881,0.0324845,0.000225587,,,,,,,,,,,,,, +918,6.19505,58.2947,33438,12.4453,0.131892,0.032644,0.000226694,,,,,,,,,,,,,, +919,6.13926,53.4269,34775.7,12.4667,0.133454,0.0325621,0.000226126,,,,,,,,,,,,,, +920,6.85898,59.8347,35038.9,12.3415,0.130774,0.031576,0.000219273,,,,,,,,,,,,,, +921,5.69322,67.5551,25312.5,12.2431,0.130251,0.0343663,0.000238655,,,,,,,,,,,,,, +922,6.51101,45.7074,30322.2,12.2714,0.130439,0.0325806,0.000226256,,,,,,,,,,,,,, +923,5.70622,51.3767,34094.7,12.3512,0.131877,0.0332447,0.000230865,,,,,,,,,,,,,, +924,5.16361,60.8042,29788,12.5536,0.135037,0.0345805,0.000240144,,,,,,,,,,,,,, +925,6.23085,69.7045,31695.8,12.2595,0.12997,0.0328021,0.000227792,,,,,,,,,,,,,, +926,5.45485,66.3717,26985.8,11.9178,0.12571,0.0345067,0.00023963,,,,,,,,,,,,,, +927,4.40532,64.6536,32293.3,12.2082,0.129979,0.0354158,0.000245944,,,,,,,,,,,,,, +928,5.63542,47.0482,34473.6,12.3001,0.130907,0.0332986,0.000231236,,,,,,,,,,,,,, +929,6.75905,68.6245,27186.1,12.2633,0.129991,0.032613,0.000226475,,,,,,,,,,,,,, +930,5.55167,60.4518,28402.6,11.6499,0.121509,0.0341796,0.000237359,,,,,,,,,,,,,, +931,5.73299,65.8499,33469,12.2191,0.129907,0.0332834,0.000231134,,,,,,,,,,,,,, +932,5.34035,64.5131,34279.2,12.5442,0.134625,0.0337451,0.000234341,,,,,,,,,,,,,, +933,5.0852,52.932,27933.3,12.2601,0.130814,0.0349442,0.00024267,,,,,,,,,,,,,, +934,6.36583,66.3859,29987.7,12.4339,0.132806,0.0328198,0.000227915,,,,,,,,,,,,,, +935,5.6813,53.9925,30688.9,12.3406,0.131425,0.033701,0.000234035,,,,,,,,,,,,,, +936,5.68759,62.4648,29291,11.6726,0.121772,0.0338673,0.000235189,,,,,,,,,,,,,, +937,5.47965,48.5952,29073.2,12.2491,0.13039,0.0342002,0.000237507,,,,,,,,,,,,,, +938,6.02663,56.8116,30258.5,12.1724,0.129441,0.0332608,0.000230978,,,,,,,,,,,,,, +939,5.8133,54.2182,28662.4,12.4623,0.132597,0.0337636,0.00023447,,,,,,,,,,,,,, +940,6.20581,54.1492,30107.5,12.0754,0.127887,0.0330275,0.000229358,,,,,,,,,,,,,, +941,5.45104,54.8094,29760,12.3991,0.132936,0.0341548,0.000237187,,,,,,,,,,,,,, +942,4.68738,52.8701,30695.3,12.2598,0.130892,0.0351908,0.000244373,,,,,,,,,,,,,, +943,6.31392,61.9165,33913.5,12.157,0.127874,0.0324262,0.000225181,,,,,,,,,,,,,, +944,5.59632,58.792,24363.6,12.1182,0.127632,0.0346352,0.000240523,,,,,,,,,,,,,, +945,5.20617,54.2851,29581.8,12.5456,0.135471,0.0345433,0.000239885,,,,,,,,,,,,,, +946,7.29311,47.7478,26527.6,12.1929,0.12892,0.0319714,0.000222018,,,,,,,,,,,,,, +947,7.30463,60.9716,30333.5,12.2118,0.128691,0.0315267,0.000218936,,,,,,,,,,,,,, +948,5.37695,70.6457,26601.2,12.1476,0.128705,0.0346746,0.000240794,,,,,,,,,,,,,, +949,6.00569,55.8591,29285.9,11.7298,0.122139,0.0334098,0.000232013,,,,,,,,,,,,,, +950,6.14919,59.1008,31201.9,12.419,0.133827,0.0329744,0.000228989,,,,,,,,,,,,,, +951,6.51367,64.8173,29531.5,12.0331,0.126357,0.0326707,0.00022688,,,,,,,,,,,,,, +952,5.91836,56.9206,36714.6,12.386,0.131839,0.0326348,0.000226631,,,,,,,,,,,,,, +953,6.71008,54.6486,32365.5,12.2834,0.130388,0.0320747,0.000222741,,,,,,,,,,,,,, +954,5.87049,54.5149,30205,12.0711,0.127554,0.0334893,0.000232565,,,,,,,,,,,,,, +955,5.81502,66.5293,32603.2,12.3244,0.131134,0.0332733,0.000231064,,,,,,,,,,,,,, +956,6.53167,63.0006,28469,11.7639,0.122358,0.0327724,0.000227585,,,,,,,,,,,,,, +957,6.16082,58.6416,33320.3,12.3937,0.131194,0.0327049,0.000227117,,,,,,,,,,,,,, +958,6.79662,57.2505,28153.7,12.3169,0.131085,0.0324477,0.000225332,,,,,,,,,,,,,, +959,5.97565,61.3899,27116.4,12.2587,0.13062,0.0337223,0.000234182,,,,,,,,,,,,,, +960,5.64628,56.5221,32766.4,12.5508,0.134297,0.033493,0.000232591,,,,,,,,,,,,,, +961,5.73878,51.5026,35103.5,12.3502,0.131762,0.0330762,0.000229696,,,,,,,,,,,,,, +962,6.63423,75.8828,34919.9,12.334,0.130579,0.031883,0.000221414,,,,,,,,,,,,,, +963,5.97177,61.0122,32806.3,11.9556,0.124863,0.0330283,0.000229363,,,,,,,,,,,,,, +964,6.77526,59.2451,29475.7,12.2907,0.130436,0.032322,0.00022446,,,,,,,,,,,,,, +965,6.21135,53.0924,33384.6,12.4193,0.133226,0.0326281,0.000226583,,,,,,,,,,,,,, +966,5.33682,60.4236,25834.4,12.2629,0.130653,0.0348365,0.000241921,,,,,,,,,,,,,, +967,6.83573,63.6237,25734.3,12.2755,0.13014,0.03268,0.000226939,,,,,,,,,,,,,, +968,5.04734,55.693,31597.1,12.4371,0.133597,0.0345201,0.000239722,,,,,,,,,,,,,, +969,6.15491,54.9097,33062,12.5083,0.13416,0.0327438,0.000227387,,,,,,,,,,,,,, +970,5.54662,65.6566,27402.6,12.051,0.127602,0.0343155,0.000238302,,,,,,,,,,,,,, +971,5.35595,49.5956,33631,12.2883,0.130858,0.0338037,0.000234746,,,,,,,,,,,,,, +972,6.50185,68.1436,35297.5,12.3528,0.130979,0.0320142,0.000222323,,,,,,,,,,,,,, +973,5.70105,52.2494,36152.3,12.3599,0.131693,0.0330022,0.000229184,,,,,,,,,,,,,, +974,5.43323,60.7892,28065.2,11.9025,0.125326,0.0343992,0.000238884,,,,,,,,,,,,,, +975,5.19211,58.9843,24593.7,12.2582,0.130785,0.0352252,0.000244622,,,,,,,,,,,,,, +976,7.10054,58.9486,21083.5,12.2516,0.130062,0.0328696,0.000228266,,,,,,,,,,,,,, +977,6.10818,58.8485,31032.2,12.3553,0.132683,0.0330521,0.000229529,,,,,,,,,,,,,, +978,6.26612,59.6691,34175.9,12.2457,0.128838,0.0324602,0.000225417,,,,,,,,,,,,,, +979,7.06381,58.8088,31038.7,12.2442,0.129391,0.0317601,0.000220557,,,,,,,,,,,,,, +980,5.56661,62.0798,28614.5,11.8182,0.124334,0.0341305,0.000237017,,,,,,,,,,,,,, +981,7.14197,51.2796,33464.3,12.2164,0.129021,0.0313863,0.000217966,,,,,,,,,,,,,, +982,5.82416,44.2415,32152.7,12.2618,0.130337,0.0333157,0.00023136,,,,,,,,,,,,,, +983,6.85074,64.4284,28646.7,12.2591,0.129957,0.0323171,0.000224423,,,,,,,,,,,,,, +984,5.60011,68.0487,28958.2,12.3244,0.130825,0.0340374,0.000236371,,,,,,,,,,,,,, +985,4.67114,59.3319,34671.3,12.1833,0.1294,0.0346874,0.000240887,,,,,,,,,,,,,, +986,6.496,78.5996,31183.3,12.2803,0.129969,0.0324996,0.000225692,,,,,,,,,,,,,, +987,5.27548,61.5914,27748.1,12.1583,0.129072,0.0346781,0.000240821,,,,,,,,,,,,,, +988,5.93969,59.0098,30906.1,12.0529,0.127597,0.0333046,0.000231281,,,,,,,,,,,,,, +989,5.07914,60.5575,32934.9,12.3778,0.132205,0.0342994,0.00023819,,,,,,,,,,,,,, +990,5.98073,60.4926,25158.3,12.3368,0.131388,0.0339611,0.000235841,,,,,,,,,,,,,, +991,6.83362,55.7878,30081.9,12.3562,0.131634,0.0321735,0.000223428,,,,,,,,,,,,,, +992,5.06144,67.1096,31566.4,12.4161,0.131577,0.0345029,0.000239604,,,,,,,,,,,,,, +993,6.80351,58.5362,28885.9,12.3686,0.131898,0.0323528,0.000224673,,,,,,,,,,,,,, +994,5.89572,48.93,25371.7,12.2435,0.130306,0.0340586,0.000236516,,,,,,,,,,,,,, +995,6.82817,60.1753,29901.4,12.2835,0.130207,0.0322016,0.000223623,,,,,,,,,,,,,, +996,6.24668,63.4521,31530,12.8146,0.138249,0.0328,0.000227778,,,,,,,,,,,,,, +997,5.30672,67.0134,27133.3,11.9725,0.126385,0.0347113,0.00024105,,,,,,,,,,,,,, +998,6.20123,53.464,28679.7,12.0499,0.126598,0.0332072,0.000230606,,,,,,,,,,,,,, +999,5.43664,65.9048,26829.6,11.9057,0.125557,0.0345545,0.000239962,,,,,,,,,,,,,, +1000,5.36103,52.8247,33747.7,12.3174,0.131246,0.0337817,0.000234595,,,,,,,,,,,,,, diff --git a/Examples/hdro-0005/data/hdro-0005_GP_QoIs_n1000.txt b/Examples/hdro-0005/data/hdro-0005_GP_QoIs_n1000.txt new file mode 100644 index 00000000..90b765b7 --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_GP_QoIs_n1000.txt @@ -0,0 +1,1001 @@ +% 1-PFA-1-1 1-RMSA-1-1 1-PFD-1-1 1-PID-1-1 +12.1453 0.128758 0.034762 0.000241404 +12.0571 0.126169 0.0327765 0.000227614 +11.9085 0.125579 0.0332489 0.000230896 +12.1994 0.129737 0.0347782 0.000241513 +12.6562 0.136355 0.0328926 0.000228421 +12.2003 0.129942 0.0356736 0.00024773 +12.2652 0.130237 0.0333228 0.000231409 +12.3815 0.131562 0.0334607 0.000232367 +12.2856 0.130598 0.0326008 0.000226395 +12.1723 0.127894 0.0320217 0.000222373 +12.6162 0.136113 0.0341692 0.000237286 +12.5257 0.134816 0.0341986 0.000237489 +12.5004 0.132938 0.0321765 0.000223447 +12.0702 0.128703 0.0341128 0.000236895 +12.2046 0.129868 0.034463 0.000239325 +12.3364 0.131975 0.0331844 0.000230447 +12.2295 0.129886 0.0327716 0.000227581 +12.4694 0.133663 0.0322287 0.00022381 +12.1505 0.12893 0.0346867 0.000240881 +12.2484 0.130385 0.0340374 0.000236368 +12.2455 0.129638 0.032143 0.000223214 +12.2996 0.130469 0.0319844 0.000222115 +12.0877 0.127464 0.0335757 0.000233165 +12.3189 0.130727 0.0320236 0.000222386 +12.1738 0.128692 0.0333774 0.000231787 +12.0918 0.127478 0.0333236 0.000231415 +12.4414 0.133205 0.0322878 0.000224221 +12.4767 0.133653 0.0345084 0.000239642 +12.2348 0.130205 0.034084 0.000236695 +12.2486 0.130156 0.03351 0.000232708 +12.4473 0.133156 0.0341075 0.000236857 +12.0105 0.127579 0.0332977 0.000231233 +12.4471 0.133192 0.0338381 0.000234987 +12.3417 0.131262 0.0322287 0.000223807 +11.8834 0.124736 0.0341378 0.000237068 +12.4346 0.133728 0.0349622 0.000242792 +11.3903 0.116892 0.0336513 0.000233689 +12.2548 0.130619 0.0345244 0.000239758 +12.3475 0.131207 0.0330138 0.000229263 +12.1802 0.129874 0.0359962 0.000249973 +12.3339 0.130807 0.0326997 0.000227082 +12.1497 0.128006 0.033646 0.000233653 +12.2272 0.129762 0.0346449 0.000240591 +12.1939 0.128507 0.0326548 0.000226771 +12.3454 0.131859 0.0330783 0.00022971 +12.2273 0.12949 0.0330571 0.000229563 +12.4097 0.132474 0.0340758 0.000236638 +12.3521 0.131744 0.0336465 0.000233658 +12.5008 0.134091 0.032812 0.000227861 +12.4211 0.132039 0.0318754 0.000221358 +12.4628 0.133234 0.0331193 0.000229994 +12.6273 0.13498 0.032696 0.000227055 +12.2087 0.13016 0.0354615 0.000246254 +11.944 0.12412 0.0326387 0.000226658 +12.4263 0.133222 0.0330942 0.000229821 +12.4465 0.133641 0.0343064 0.00023824 +12.0613 0.127334 0.0333297 0.000231456 +12.3693 0.132116 0.0334815 0.00023251 +12.523 0.134245 0.0336214 0.000233482 +12.1572 0.129329 0.0333708 0.000231741 +11.8322 0.123138 0.0332103 0.000230627 +12.1122 0.127459 0.0326503 0.000226738 +12.3626 0.131595 0.0334549 0.000232328 +12.5727 0.135061 0.0318877 0.000221441 +12.3964 0.132555 0.0329983 0.000229155 +11.8865 0.125054 0.0343045 0.000238227 +12.3034 0.130548 0.0335667 0.000233103 +12.2975 0.131208 0.0347928 0.000241618 +12.3031 0.13069 0.0335955 0.000233301 +11.6025 0.120528 0.0337968 0.0002347 +12.0773 0.127441 0.0333757 0.000231776 +12.4573 0.133851 0.034876 0.000242195 +11.8859 0.123589 0.0335722 0.000233139 +11.7175 0.122161 0.0336614 0.000233759 +12.4738 0.132576 0.0327889 0.000227701 +12.3904 0.132137 0.0337733 0.000234537 +12.1389 0.128478 0.0347385 0.00024124 +11.3392 0.115792 0.0334722 0.000232446 +12.0407 0.127624 0.034111 0.000236882 +12.39 0.132577 0.0340082 0.000236168 +12.3849 0.131063 0.0336044 0.000233365 +12.0783 0.127548 0.0338402 0.000235001 +12.2987 0.130864 0.0331412 0.000230147 +12.2133 0.129997 0.0354 0.000245835 +12.1793 0.129184 0.0331734 0.00023037 +11.8844 0.12354 0.0332406 0.000230837 +11.9069 0.125174 0.0341855 0.0002374 +12.4373 0.132505 0.0338411 0.000235008 +12.2673 0.130535 0.0338299 0.000234933 +12.5897 0.133606 0.0325828 0.00022627 +12.251 0.130755 0.0353574 0.000245541 +12.2108 0.13013 0.0349972 0.000243028 +12.5228 0.133579 0.0328452 0.000228092 +12.2617 0.130285 0.0327825 0.000227659 +12.3343 0.131025 0.0318839 0.000221416 +12.4598 0.133591 0.0341833 0.000237386 +12.1886 0.128653 0.0318227 0.000220991 +11.6183 0.120422 0.0339414 0.000235704 +12.2931 0.130374 0.0325238 0.00022586 +12.5652 0.134962 0.0337006 0.000234032 +12.5895 0.134717 0.0333864 0.00023185 +12.6068 0.136171 0.0323397 0.000224582 +12.242 0.129376 0.0336679 0.000233805 +12.4478 0.133226 0.0343867 0.000238797 +12.316 0.13086 0.0335964 0.000233308 +12.4407 0.132601 0.0328281 0.000227973 +12.2771 0.129823 0.0323589 0.000224714 +12.2381 0.129649 0.0318856 0.000221428 +12.2457 0.129471 0.0314281 0.00021826 +12.2724 0.130147 0.0334748 0.000232466 +12.0237 0.125263 0.0318469 0.00022116 +12.317 0.131003 0.034377 0.000238729 +12.5299 0.134692 0.0341241 0.000236973 +12.444 0.132616 0.0336832 0.000233912 +12.6479 0.136314 0.0329954 0.000229135 +12.4382 0.132467 0.0335814 0.000233205 +12.4942 0.133958 0.0330877 0.000229776 +12.3411 0.131235 0.0330942 0.000229823 +12.5381 0.135069 0.0345552 0.000239968 +12.1868 0.128106 0.0327881 0.000227696 +12.2398 0.130274 0.0350362 0.00024331 +12.2197 0.129604 0.0333963 0.000231919 +11.9043 0.125582 0.0345876 0.000240191 +12.3477 0.132087 0.0341231 0.000236966 +11.7823 0.123464 0.0341418 0.000237096 +12.2099 0.129358 0.0331123 0.000229947 +12.2915 0.13006 0.0331119 0.000229944 +12.1831 0.128189 0.0321225 0.000223071 +12.214 0.129049 0.0324097 0.000225065 +12.3848 0.131559 0.0314922 0.000218698 +12.216 0.129956 0.0352335 0.000244679 +12.2712 0.130285 0.0328172 0.000227898 +11.9171 0.123762 0.0334124 0.00023203 +12.1945 0.129273 0.0335738 0.000233153 +12.0979 0.128075 0.0337617 0.000234456 +12.0483 0.127394 0.0344429 0.000239188 +12.6577 0.135933 0.0329768 0.000229005 +12.3744 0.131359 0.0321674 0.000223386 +12.55 0.13397 0.0329277 0.000228665 +12.2583 0.129845 0.0327867 0.000227681 +12.199 0.128628 0.0335652 0.000233092 +12.0124 0.125761 0.0327446 0.000227394 +12.3642 0.130998 0.0337023 0.000234044 +11.8902 0.124266 0.033138 0.000230123 +11.8535 0.124628 0.0340446 0.000236422 +12.3324 0.131528 0.0333907 0.00023188 +12.2779 0.130397 0.0339022 0.000235438 +12.5313 0.134942 0.0338781 0.000235265 +11.7308 0.123124 0.0340245 0.000236281 +12.3192 0.130838 0.0323314 0.000224524 +12.6987 0.134795 0.0332805 0.000231115 +12.2504 0.129642 0.0321723 0.000223419 +12.2143 0.130066 0.0353995 0.000245832 +12.2215 0.129378 0.0329054 0.00022851 +12.5095 0.133751 0.0334728 0.00023245 +12.2201 0.129361 0.0328312 0.000227995 +12.045 0.127887 0.0333618 0.000231679 +11.881 0.124496 0.033528 0.000232833 +12.0333 0.12736 0.0344101 0.000238959 +12.3474 0.131612 0.0334404 0.00023223 +12.1604 0.12936 0.0359528 0.000249625 +12.2314 0.129566 0.0328645 0.000228226 +12.2453 0.12942 0.032118 0.000223043 +12.3736 0.131768 0.0329538 0.000228847 +12.3151 0.131214 0.033903 0.000235438 +12.3862 0.13226 0.0342203 0.00023764 +12.3062 0.130205 0.0316896 0.000220063 +12.3233 0.130542 0.0319413 0.000221813 +11.85 0.125349 0.0340445 0.00023642 +12.3342 0.131996 0.0335662 0.000233098 +12.1981 0.12898 0.0323296 0.000224508 +11.9971 0.126959 0.034026 0.000236291 +12.3936 0.131836 0.0330794 0.000229719 +12.3793 0.131311 0.0339678 0.000235887 +12.4979 0.134729 0.0345248 0.000239757 +12.2628 0.129884 0.0326335 0.000226622 +12.4793 0.133294 0.0335667 0.000233102 +12.314 0.131037 0.0324514 0.000225357 +12.3796 0.13215 0.0327228 0.000227242 +11.7415 0.122416 0.0332276 0.000230748 +12.3252 0.131713 0.0332191 0.000230688 +11.9846 0.126571 0.0334116 0.000232025 +12.1533 0.12853 0.0345732 0.000240092 +12.2507 0.129784 0.0323221 0.000224459 +12.533 0.1331 0.0328771 0.000228313 +12.3242 0.130984 0.0328182 0.000227904 +12.4065 0.132908 0.0334735 0.000232455 +11.5699 0.119726 0.0333333 0.00023148 +12.405 0.131651 0.0345619 0.000240014 +12.0238 0.127391 0.0331885 0.000230476 +12.3421 0.131128 0.0325066 0.00022574 +12.2345 0.130371 0.0346825 0.000240857 +12.0275 0.1271 0.0344415 0.000239177 +12.6753 0.135575 0.0332583 0.00023096 +12.0552 0.126542 0.0326239 0.000226555 +12.2172 0.129673 0.0331989 0.000230548 +12.5309 0.133764 0.0328849 0.000228367 +12.3483 0.130985 0.0318796 0.000221385 +12.5327 0.134634 0.034033 0.00023634 +12.3201 0.131718 0.0346743 0.000240791 +12.2871 0.130464 0.0336878 0.000233941 +12.4969 0.134842 0.034149 0.000237146 +12.34 0.131834 0.0333216 0.0002314 +12.2387 0.129006 0.0309095 0.000214654 +12.3412 0.132211 0.0333027 0.000231268 +12.3099 0.130728 0.0329075 0.000228521 +12.4942 0.133569 0.0333092 0.000231314 +12.5263 0.132484 0.0334236 0.000232108 +12.316 0.130157 0.0322212 0.000223759 +12.0393 0.127577 0.034114 0.000236904 +12.278 0.130249 0.032481 0.000225562 +12.4714 0.134168 0.0327834 0.000227663 +12.3129 0.131168 0.0337544 0.000234405 +12.3222 0.130464 0.0318155 0.000220938 +12.2903 0.130407 0.0338054 0.000234763 +12.3447 0.130931 0.0314473 0.000218395 +12.2682 0.129848 0.0321022 0.000222933 +11.9305 0.123925 0.0325113 0.000225773 +12.5362 0.133516 0.0335496 0.000232983 +12.1483 0.127949 0.0324041 0.000225029 +12.1284 0.127216 0.0328889 0.000228395 +11.9522 0.125154 0.0331623 0.000230293 +12.271 0.130415 0.032961 0.00022889 +12.3798 0.132609 0.0331622 0.000230293 +12.4316 0.1326 0.0331933 0.000230509 +12.2751 0.130073 0.0323464 0.000224623 +11.7188 0.122325 0.0336747 0.000233852 +12.2007 0.129249 0.0336617 0.000233762 +12.4126 0.13239 0.0332784 0.000231099 +12.3395 0.131289 0.0333683 0.000231724 +12.241 0.13031 0.0343116 0.00023828 +12.264 0.128941 0.0324309 0.000225215 +12.3517 0.131553 0.0334381 0.000232209 +12.1902 0.128755 0.0330269 0.000229351 +12.1759 0.128767 0.0334574 0.000232343 +12.2402 0.12942 0.0321859 0.000223514 +12.1267 0.12805 0.0326228 0.000226546 +12.3065 0.131618 0.0335823 0.00023321 +12.3144 0.130041 0.0335088 0.0002327 +12.277 0.130238 0.0334841 0.000232528 +12.0665 0.126302 0.0326612 0.000226814 +12.067 0.1261 0.032086 0.000222818 +12.0913 0.12754 0.0330777 0.000229706 +12.0635 0.127998 0.0337372 0.000234285 +12.3837 0.131641 0.0327523 0.000227446 +12.3631 0.131596 0.0331032 0.000229885 +12.2273 0.129814 0.034566 0.000240016 +12.2388 0.130084 0.0340025 0.000236128 +12.2323 0.129298 0.0331581 0.000230264 +12.3031 0.130342 0.0327982 0.000227765 +11.7729 0.122613 0.0331095 0.000229926 +12.0106 0.127006 0.0337501 0.000234375 +12.3333 0.131291 0.0325433 0.000225995 +12.04 0.127152 0.0333181 0.000231376 +12.1869 0.129643 0.0339481 0.00023575 +12.703 0.13745 0.0339807 0.000235977 +12.2088 0.128394 0.0316126 0.000219532 +12.2393 0.130248 0.0348174 0.000241788 +12.0309 0.127235 0.0335369 0.000232895 +12.3878 0.132575 0.0325503 0.000226044 +12.3218 0.131292 0.0333377 0.000231511 +11.85 0.124807 0.0348255 0.000241844 +12.2048 0.129384 0.0336071 0.000233384 +12.1414 0.127685 0.0329571 0.000228869 +12.0979 0.127429 0.0330379 0.00022943 +12.2325 0.130618 0.035733 0.000248156 +12.2436 0.130144 0.0348415 0.000241956 +12.0362 0.127413 0.0346629 0.000240715 +12.222 0.129608 0.0331786 0.000230406 +12.0198 0.126139 0.0314037 0.000218081 +12.2174 0.128925 0.0313615 0.000217783 +11.8426 0.123792 0.0336962 0.000234001 +12.3076 0.130965 0.0328653 0.000228232 +12.2403 0.130225 0.0341111 0.000236887 +12.2234 0.129011 0.0325689 0.000226173 +12.2644 0.130521 0.0348663 0.000242129 +12.3159 0.131077 0.0340006 0.000236114 +12.2585 0.130154 0.0333488 0.00023159 +12.2711 0.130987 0.0350941 0.00024371 +12.127 0.128046 0.0333492 0.000231593 +12.3163 0.13077 0.0324429 0.000225298 +12.2507 0.129687 0.0318111 0.000220917 +12.0217 0.127393 0.0333299 0.000231457 +12.2259 0.129548 0.0347043 0.000241003 +12.399 0.131695 0.032064 0.000222676 +12.3943 0.13291 0.034671 0.000240769 +12.3253 0.130899 0.0337563 0.00023442 +12.1932 0.130246 0.0364345 0.000253029 +12.321 0.131114 0.0348315 0.000241886 +12.1727 0.129663 0.0331906 0.000230489 +12.0626 0.127702 0.0345661 0.000240043 +12.5549 0.135205 0.0337461 0.000234347 +12.2994 0.130632 0.0335032 0.000232661 +11.5994 0.12055 0.0341967 0.000237477 +12.1249 0.127396 0.0328981 0.000228459 +12.1328 0.127619 0.0324172 0.00022512 +12.3754 0.131448 0.0318028 0.000220853 +12.3112 0.130793 0.0330407 0.000229453 +12.2975 0.13102 0.0338942 0.000235376 +12.3243 0.131094 0.0330281 0.00022936 +12.2563 0.130632 0.0345273 0.000239774 +12.3035 0.130899 0.0326036 0.000226414 +12.2282 0.129001 0.0315926 0.000219394 +12.4595 0.132673 0.0329715 0.000228969 +12.2098 0.129749 0.0338969 0.000235395 +12.2846 0.131226 0.0342771 0.000238036 +12.4779 0.132519 0.0339017 0.000235429 +11.9463 0.124811 0.0326195 0.000226524 +12.5261 0.134083 0.0332444 0.000230864 +12.3441 0.131166 0.0330763 0.000229697 +12.2281 0.130421 0.0353596 0.000245553 +11.9763 0.126857 0.0343045 0.000238227 +12.4171 0.132326 0.0326803 0.000226943 +11.7655 0.123338 0.0341243 0.000236974 +12.2683 0.130413 0.034968 0.000242834 +11.8209 0.123502 0.0337473 0.000234356 +12.1662 0.129014 0.0336184 0.000233461 +12.2183 0.129694 0.0348694 0.00024215 +12.17 0.128969 0.033314 0.000231347 +12.4703 0.133077 0.0336594 0.000233746 +12.3833 0.131607 0.0318828 0.000221408 +12.1357 0.128232 0.0332754 0.000231079 +12.5315 0.134775 0.0348821 0.000242237 +12.5264 0.134607 0.0336862 0.000233932 +12.0622 0.126593 0.0328283 0.000227976 +12.2575 0.129627 0.0319189 0.000221659 +12.3621 0.131339 0.0329528 0.000228839 +12.458 0.1337 0.0326401 0.000226668 +12.6604 0.13548 0.032962 0.000228902 +12.3038 0.131289 0.0332646 0.000231004 +12.4033 0.132118 0.0327558 0.000227472 +12.1658 0.128266 0.0325775 0.000226233 +12.0012 0.126313 0.0340163 0.000236224 +12.3718 0.131787 0.0334028 0.000231965 +12.3321 0.131194 0.033839 0.000234993 +12.0529 0.127039 0.034539 0.000239855 +12.0416 0.125583 0.0327346 0.000227324 +12.4327 0.132713 0.0338997 0.000235415 +12.1794 0.128796 0.0324536 0.000225372 +11.9374 0.125691 0.0339342 0.000235654 +11.912 0.125309 0.0340014 0.000236121 +12.2441 0.130248 0.0338285 0.000234921 +12.2952 0.130753 0.0341896 0.000237426 +12.3709 0.13143 0.0318653 0.000221285 +12.246 0.129138 0.0311259 0.00021616 +12.1948 0.129187 0.0338347 0.000234963 +12.4945 0.13325 0.0332617 0.000230984 +12.0475 0.125621 0.0315151 0.000218857 +12.2745 0.130181 0.0334358 0.000232195 +12.2361 0.130047 0.0335574 0.000233037 +12.2926 0.130686 0.0333436 0.000231553 +12.4212 0.132493 0.0337416 0.000234317 +12.3983 0.131453 0.0328658 0.000228235 +12.2062 0.130027 0.0355723 0.000247034 +12.3033 0.131757 0.0355204 0.00024667 +12.2175 0.129671 0.0341035 0.000236831 +12.4278 0.132382 0.031769 0.000220617 +12.3256 0.130993 0.0335634 0.00023308 +12.2008 0.129157 0.0325307 0.000225903 +12.3104 0.130876 0.0332237 0.00023072 +11.7879 0.123784 0.0336203 0.000233473 +12.6951 0.138036 0.0328218 0.000227929 +12.2633 0.12928 0.0326462 0.00022671 +12.2324 0.130141 0.0326672 0.000226856 +12.3124 0.131242 0.0337739 0.00023454 +12.2606 0.130613 0.0337292 0.00023423 +12.0567 0.127126 0.0331731 0.000230369 +11.9991 0.126739 0.0344009 0.000238895 +12.2498 0.129718 0.0324882 0.000225612 +12.2083 0.129051 0.0325902 0.000226322 +11.9366 0.126012 0.034127 0.000236993 +11.9751 0.124858 0.0324405 0.000225282 +12.0249 0.127055 0.0348009 0.000241672 +12.37 0.130112 0.0341627 0.000237241 +12.478 0.133294 0.0333199 0.000231388 +12.41 0.13324 0.0333824 0.000231821 +12.2203 0.129993 0.0340772 0.000236647 +12.3675 0.131743 0.033085 0.000229757 +12.4186 0.132518 0.0336282 0.000233528 +12.2059 0.129544 0.0326517 0.000226748 +12.9832 0.141273 0.0342705 0.00023799 +12.1926 0.128208 0.0314552 0.000218442 +12.4777 0.133169 0.0335138 0.000232735 +12.2711 0.130143 0.0330109 0.000229237 +12.338 0.131723 0.0324367 0.000225255 +12.3836 0.131865 0.0331312 0.000230077 +12.7854 0.139124 0.0342819 0.000238069 +12.2444 0.129089 0.0311089 0.000216039 +12.2679 0.130321 0.033438 0.000232207 +12.6596 0.135679 0.0325304 0.000225906 +12.3238 0.130473 0.0316294 0.000219644 +11.8459 0.124307 0.0340344 0.000236349 +12.1979 0.129615 0.0343307 0.000238408 +12.0792 0.127234 0.0334598 0.000232359 +12.1499 0.128785 0.0332169 0.000230673 +12.3363 0.129904 0.0325698 0.00022618 +12.2073 0.130103 0.0350228 0.00024321 +12.6381 0.136494 0.0342634 0.00023794 +12.2108 0.129443 0.0341464 0.000237128 +12.3415 0.13184 0.0337534 0.000234398 +12.1258 0.127591 0.0334887 0.00023256 +12.5225 0.134233 0.0337008 0.000234033 +12.0282 0.127473 0.0334322 0.000232168 +12.3644 0.131748 0.033083 0.000229745 +12.2009 0.129364 0.0346803 0.000240835 +12.4625 0.133028 0.0334657 0.000232401 +12.358 0.131955 0.0332466 0.00023088 +12.2774 0.13041 0.0327619 0.000227514 +12.2359 0.130254 0.0342377 0.000237759 +12.2121 0.129697 0.0349685 0.000242838 +12.3018 0.13039 0.0317396 0.000220414 +12.6102 0.133981 0.0329679 0.000228943 +12.1875 0.128168 0.0317063 0.000220181 +12.4262 0.132721 0.0331502 0.000230209 +11.8683 0.125098 0.0340832 0.000236688 +12.2914 0.130201 0.0337366 0.000234282 +12.284 0.130679 0.0345558 0.00023997 +11.5935 0.120536 0.0341974 0.000237482 +12.2301 0.130423 0.0351576 0.00024414 +12.1356 0.127949 0.0324553 0.000225385 +12.211 0.1298 0.0346434 0.00024058 +12.2287 0.129727 0.0333608 0.000231673 +12.1772 0.129799 0.0355699 0.00024701 +12.2589 0.129406 0.0316514 0.000219799 +11.5218 0.119667 0.033976 0.000235944 +12.2136 0.12969 0.0336163 0.000233448 +12.7715 0.138417 0.0339274 0.000235606 +12.2337 0.130161 0.033221 0.0002307 +12.2625 0.131737 0.0334955 0.000232607 +12.1921 0.129053 0.0332918 0.000231194 +11.976 0.124774 0.0326049 0.000226423 +12.222 0.129735 0.0334986 0.00023263 +12.4596 0.133163 0.0326896 0.000227011 +12.2365 0.130128 0.0337288 0.000234227 +12.2603 0.129532 0.0325886 0.00022631 +12.219 0.128954 0.0341699 0.000237291 +12.289 0.131189 0.0345769 0.000240119 +11.8775 0.124221 0.0316766 0.000219976 +12.2313 0.130086 0.0339706 0.000235914 +12.1539 0.128833 0.0336022 0.000233349 +12.1517 0.128668 0.0329295 0.000228675 +12.308 0.131891 0.0329764 0.000229002 +12.3208 0.131772 0.0328614 0.000228204 +12.1778 0.128038 0.0319107 0.0002216 +12.3471 0.13135 0.0331256 0.00023004 +12.2316 0.130482 0.034201 0.000237508 +12.3093 0.13076 0.0337888 0.000234645 +11.6739 0.121673 0.0340841 0.000236695 +11.9464 0.1251 0.0314664 0.000218515 +11.6286 0.12003 0.033611 0.000233409 +12.2517 0.130582 0.0344217 0.000239042 +12.4508 0.132396 0.0314981 0.000218752 +11.9492 0.12491 0.0324699 0.000225485 +12.2352 0.130649 0.0356988 0.000247915 +12.3522 0.131432 0.0334919 0.000232583 +11.833 0.123293 0.0330555 0.000229551 +12.052 0.127724 0.0344228 0.000239048 +12.4114 0.13257 0.033532 0.000232862 +12.6463 0.135008 0.0323256 0.000224483 +12.2453 0.13026 0.0335278 0.000232832 +12.3336 0.131529 0.0328047 0.000227811 +12.0756 0.127583 0.0333286 0.000231449 +12.415 0.133063 0.0344557 0.000239276 +12.2019 0.128868 0.032898 0.000228458 +12.5931 0.135373 0.0328515 0.000228136 +12.2767 0.130751 0.0339916 0.00023605 +11.9703 0.125625 0.0329443 0.00022878 +12.1419 0.127648 0.032724 0.000227251 +12.271 0.130892 0.0347759 0.000241501 +12.1263 0.127963 0.0342835 0.00023808 +12.294 0.1304 0.0345589 0.000239993 +12.4276 0.132098 0.0311892 0.000216599 +12.0351 0.126528 0.0331427 0.000230155 +11.7763 0.123294 0.0332326 0.000230782 +12.3299 0.13047 0.0312603 0.000217078 +12.402 0.132972 0.0345354 0.000239828 +12.2917 0.130851 0.0331505 0.000230212 +11.654 0.12088 0.0334914 0.000232578 +11.9957 0.126404 0.0341384 0.000237072 +12.5263 0.133777 0.0324835 0.000225578 +12.3239 0.130958 0.0346951 0.000240939 +12.5343 0.133045 0.0327545 0.000227462 +12.3996 0.132911 0.0339078 0.000235471 +12.2763 0.131174 0.0352095 0.00024451 +12.3026 0.129635 0.0340091 0.000236175 +12.2583 0.130555 0.035065 0.000243508 +12.2831 0.129933 0.0321488 0.000223254 +12.2692 0.130672 0.0350031 0.000243079 +12.2442 0.130269 0.0332639 0.000230999 +11.987 0.125417 0.0337088 0.000234088 +12.2487 0.129894 0.0338224 0.000234883 +12.4285 0.131997 0.0339292 0.00023562 +12.3531 0.13148 0.0334951 0.000232602 +12.2351 0.130012 0.0343127 0.000238284 +12.3722 0.131889 0.0321967 0.000223589 +12.3737 0.132485 0.034251 0.000237855 +11.8984 0.123489 0.0322397 0.000223887 +11.8818 0.124325 0.0331834 0.000230438 +12.2688 0.130055 0.0327954 0.00022774 +12.237 0.130188 0.0346191 0.000240411 +12.6068 0.13488 0.033515 0.000232743 +12.3222 0.131511 0.0328729 0.000228285 +12.6819 0.137421 0.0339974 0.000236094 +12.4789 0.133617 0.0334602 0.000232362 +11.9081 0.125638 0.0342624 0.000237934 +12.2653 0.130173 0.0334092 0.000232005 +12.2517 0.130535 0.0342878 0.000238113 +11.9758 0.126035 0.0333049 0.000231284 +11.9806 0.124545 0.0333216 0.0002314 +12.7097 0.136531 0.03303 0.000229375 +12.4543 0.133613 0.0348041 0.000241696 +11.8647 0.1247 0.0342104 0.000237572 +12.2654 0.131124 0.034343 0.000238494 +12.2169 0.129651 0.0327128 0.000227172 +12.1911 0.128556 0.0325277 0.000225886 +11.861 0.123546 0.0327295 0.000227288 +12.3743 0.131445 0.0327409 0.000227367 +11.9599 0.126533 0.034014 0.000236208 +11.8123 0.123718 0.0334381 0.000232209 +12.1877 0.128723 0.0329609 0.000228895 +12.1899 0.129246 0.0346246 0.000240447 +12.3448 0.130973 0.0323601 0.000224723 +12.4539 0.133099 0.0335122 0.000232724 +12.235 0.130458 0.0330371 0.000229425 +12.691 0.135613 0.0324083 0.000225057 +11.92 0.123792 0.0325348 0.000225937 +12.2916 0.130621 0.0329662 0.000228932 +12.4245 0.13319 0.0329336 0.000228705 +12.4742 0.133816 0.0335679 0.000233111 +12.2412 0.130225 0.0347857 0.000241569 +12.3262 0.131106 0.0324413 0.000225287 +12.1718 0.127842 0.0314227 0.000218216 +12.3253 0.130831 0.0327624 0.000227517 +12.3097 0.130852 0.0333755 0.000231774 +12.376 0.132128 0.0336276 0.000233531 +12.261 0.130013 0.0331526 0.000230228 +12.1402 0.129028 0.0344829 0.000239507 +11.9872 0.126236 0.0333892 0.00023187 +12.3425 0.132524 0.0330403 0.000229446 +12.2602 0.129973 0.0333663 0.000231721 +12.2969 0.130773 0.0340138 0.000236207 +12.3628 0.131656 0.0336045 0.000233367 +12.401 0.132288 0.0321172 0.000223037 +12.2453 0.129923 0.033973 0.000235938 +12.2716 0.13066 0.0337773 0.000234565 +12.3745 0.132163 0.0326672 0.000226855 +12.2641 0.130483 0.0329882 0.000229084 +12.1247 0.127824 0.0336888 0.00023395 +12.3995 0.133022 0.0336313 0.000233551 +12.242 0.130577 0.0352964 0.000245118 +12.1248 0.127386 0.0321842 0.000223502 +11.8944 0.125538 0.0331382 0.000230125 +12.4429 0.132073 0.0329524 0.000228836 +12.2063 0.131302 0.033417 0.000232062 +12.3569 0.131422 0.0331759 0.00023039 +11.7667 0.123072 0.0335758 0.000233165 +12.2358 0.129046 0.0309427 0.000214885 +12.1905 0.129527 0.0348874 0.000242271 +12.3997 0.13293 0.0344083 0.000238947 +12.2649 0.129988 0.0326718 0.000226883 +12.3492 0.131256 0.0319808 0.000222088 +12.228 0.128909 0.032057 0.000222617 +11.4788 0.118631 0.0338339 0.000234958 +11.4267 0.11752 0.0339916 0.000236053 +12.0261 0.127074 0.0336727 0.000233839 +12.3924 0.132172 0.0330111 0.000229243 +12.2309 0.129233 0.0321797 0.000223471 +12.1398 0.129353 0.0340064 0.000236156 +12.3375 0.13095 0.0324574 0.000225398 +12.4638 0.132744 0.0318191 0.000220965 +12.3877 0.131782 0.0320314 0.000222445 +12.2772 0.1308 0.0340782 0.00023666 +12.3631 0.131695 0.0323222 0.00022446 +12.3181 0.13093 0.0323592 0.000224721 +11.9326 0.124918 0.0332078 0.00023061 +12.179 0.128067 0.033534 0.000232876 +12.2707 0.13038 0.033442 0.00023222 +12.1876 0.129642 0.0344652 0.000239342 +12.2175 0.129003 0.0325168 0.000225811 +12.4099 0.132158 0.0329332 0.000228704 +12.2991 0.130806 0.033321 0.000231398 +12.0618 0.126048 0.0320776 0.000222761 +12.4185 0.132809 0.0325188 0.000225825 +11.8098 0.123599 0.0333473 0.000231578 +12.3814 0.131953 0.0335385 0.000232905 +12.6006 0.134631 0.0325588 0.000226103 +12.28 0.130946 0.0341453 0.00023712 +11.97 0.126204 0.0339922 0.000236057 +12.1316 0.128533 0.0339237 0.000235581 +12.2694 0.129899 0.0324039 0.000225026 +11.5609 0.120138 0.0339522 0.00023578 +12.2448 0.130626 0.0352458 0.000244763 +12.2994 0.130624 0.0334922 0.000232585 +12.2014 0.129156 0.0330793 0.000229717 +12.4182 0.132712 0.0332979 0.000231236 +12.6879 0.135629 0.0337308 0.000234243 +12.6375 0.135388 0.0329068 0.000228519 +11.9136 0.124108 0.0328615 0.000228204 +12.2744 0.130136 0.0341396 0.000237082 +11.9706 0.126143 0.0339521 0.000235779 +12.2194 0.128966 0.0327158 0.000227193 +12.1218 0.128175 0.0329597 0.000228886 +12.2982 0.130496 0.032171 0.000223411 +12.3569 0.131762 0.0341063 0.000236851 +12.3396 0.131351 0.0321249 0.00022309 +12.2085 0.129721 0.0338077 0.000234776 +12.22 0.12919 0.0322701 0.000224098 +11.9534 0.124053 0.0333882 0.000231862 +12.0362 0.127385 0.0345667 0.000240047 +12.2108 0.129168 0.0325531 0.000226064 +12.2359 0.129506 0.0322364 0.000223864 +12.0278 0.12709 0.0344646 0.000239338 +12.1385 0.127939 0.0327036 0.000227109 +12.3286 0.131962 0.0332655 0.00023101 +12.4673 0.133971 0.03429 0.000238126 +12.2284 0.130453 0.0353116 0.000245219 +11.8762 0.123051 0.0321888 0.000223533 +12.5249 0.133688 0.0327595 0.000227496 +11.7561 0.123298 0.0341343 0.000237044 +11.5596 0.119192 0.0335449 0.00023295 +12.3458 0.131737 0.0325432 0.000225995 +12.3054 0.130489 0.0319796 0.000222081 +12.1083 0.127931 0.0346658 0.000240734 +12.5177 0.133959 0.0329088 0.000228533 +12.0588 0.126256 0.0323844 0.000224891 +12.2577 0.130644 0.034123 0.000236966 +12.3619 0.13099 0.0336538 0.000233707 +12.156 0.127927 0.0322238 0.000223777 +12.3962 0.132738 0.0343817 0.000238764 +12.6354 0.134946 0.0331621 0.000230292 +12.2005 0.129476 0.0331566 0.000230254 +12.0435 0.127324 0.0343005 0.000238199 +12.0886 0.128465 0.0332916 0.000231191 +12.2566 0.129782 0.0322312 0.000223828 +12.0292 0.127213 0.0347863 0.00024157 +12.0023 0.126081 0.0317208 0.000220283 +12.1196 0.12866 0.0334731 0.000232452 +12.2147 0.129845 0.0347711 0.000241468 +12.3663 0.131729 0.0327749 0.000227605 +12.2179 0.130089 0.0353154 0.000245247 +12.118 0.128356 0.0333109 0.000231325 +12.5465 0.135016 0.0322471 0.000223937 +12.2761 0.130942 0.0344247 0.000239062 +12.5944 0.133568 0.0333107 0.000231324 +12.3284 0.131299 0.0331893 0.000230481 +12.004 0.125515 0.0333219 0.000231402 +12.144 0.127368 0.0312815 0.000217233 +12.1967 0.128509 0.0324162 0.000225112 +12.3904 0.13229 0.0323984 0.000224989 +12.2579 0.130238 0.033725 0.000234202 +12.4067 0.132342 0.0329144 0.000228572 +12.3061 0.130678 0.032799 0.000227771 +12.4802 0.13466 0.0327237 0.000227248 +11.8207 0.122744 0.0335039 0.000232666 +12.2179 0.12889 0.0316351 0.000219687 +12.2406 0.130153 0.0336582 0.000233738 +12.4879 0.132557 0.0326744 0.000226905 +12.1483 0.126995 0.0332522 0.000230918 +12.3671 0.132045 0.0330282 0.000229364 +12.3262 0.131638 0.0343935 0.000238846 +12.3075 0.130773 0.0335439 0.000232944 +12.3433 0.131768 0.0333523 0.000231613 +12.1804 0.129954 0.0361147 0.000250791 +12.2364 0.130836 0.0331702 0.000230348 +12.3786 0.132001 0.0320522 0.000222585 +12.411 0.132791 0.0329961 0.00022914 +12.2636 0.12993 0.0325588 0.000226096 +12.2798 0.130306 0.0322959 0.000224277 +12.0114 0.126582 0.0337623 0.00023446 +12.2423 0.130264 0.0340402 0.00023639 +12.0436 0.126257 0.0325188 0.000225826 +12.5458 0.136096 0.0331438 0.000230164 +12.3628 0.131416 0.0320943 0.000222881 +12.1471 0.129063 0.0330169 0.000229284 +12.4197 0.131567 0.0325568 0.000226088 +12.2667 0.130731 0.0348334 0.000241899 +12.1705 0.129607 0.0330773 0.000229704 +12.3925 0.132557 0.0336113 0.000233411 +11.9343 0.12453 0.0325799 0.000226249 +12.5087 0.134266 0.0339965 0.000236087 +12.4058 0.133091 0.0349846 0.000242949 +12.3903 0.132186 0.0338073 0.000234772 +12.2756 0.130147 0.0330331 0.000229398 +12.2777 0.13025 0.0341358 0.000237054 +12.2657 0.129566 0.0319985 0.000222211 +12.1907 0.128491 0.0315823 0.000219322 +12.1696 0.127962 0.0321673 0.000223385 +12.2734 0.130176 0.0330906 0.000229792 +12.612 0.13561 0.0327714 0.000227579 +12.4396 0.13358 0.0346866 0.000240877 +12.3397 0.132671 0.0332005 0.000230558 +12.6921 0.137028 0.0329268 0.000228658 +12.4315 0.131641 0.0329615 0.000228899 +12.5416 0.134476 0.0334461 0.000232268 +12.2096 0.129 0.0328001 0.00022778 +12.2298 0.129034 0.0315403 0.000219028 +12.307 0.1317 0.0330322 0.00022939 +12.2362 0.129412 0.032249 0.00022395 +12.2347 0.130155 0.0340473 0.000236446 +12.5846 0.135113 0.0340779 0.000236652 +12.2712 0.130616 0.0338885 0.000235338 +11.9291 0.12581 0.0336357 0.000233581 +12.2524 0.129833 0.0323662 0.000224766 +12.2101 0.1286 0.0322706 0.000224102 +12.1283 0.128073 0.0327498 0.000227429 +12.3129 0.131041 0.032034 0.000222459 +12.2759 0.130205 0.033886 0.000235324 +12.3005 0.130776 0.0335726 0.000233143 +12.3049 0.130551 0.0320502 0.000222572 +12.1787 0.128983 0.0334032 0.000231968 +11.5925 0.120708 0.034267 0.000237966 +12.325 0.130777 0.0328728 0.000228284 +12.6196 0.136732 0.0330573 0.000229564 +12.4133 0.131666 0.0327233 0.000227245 +12.3484 0.13174 0.0333677 0.000231721 +12.1376 0.129494 0.0339609 0.000235839 +12.3615 0.132361 0.033011 0.000229243 +12.2533 0.130653 0.0350299 0.000243265 +11.9766 0.127427 0.0334889 0.000232561 +12.004 0.127162 0.0334366 0.000232198 +12.3568 0.132433 0.0349738 0.000242872 +12.3642 0.131678 0.0323788 0.000224853 +12.3926 0.132368 0.033936 0.000235668 +12.2171 0.130111 0.0338956 0.000235386 +12.4484 0.133556 0.0337548 0.000234407 +12.6775 0.136002 0.0329522 0.000228834 +12.2033 0.129804 0.0352941 0.000245099 +12.275 0.130783 0.0342044 0.000237529 +12.3044 0.130875 0.0325551 0.000226077 +12.4067 0.133009 0.0327671 0.000227549 +12.2666 0.130059 0.0343817 0.000238761 +12.444 0.132973 0.0328703 0.000228266 +11.8674 0.125049 0.034009 0.000236174 +12.301 0.130771 0.0332298 0.000230762 +12.0683 0.126328 0.0322815 0.000224178 +12.3128 0.130386 0.0313391 0.000217636 +12.2242 0.12901 0.0312703 0.00021715 +12.0419 0.127432 0.0344243 0.000239058 +12.2829 0.13104 0.034841 0.000241903 +12.1775 0.127402 0.0334216 0.000232094 +12.3583 0.131163 0.031808 0.000220888 +12.1094 0.128286 0.0338756 0.000235246 +12.0569 0.127732 0.0343652 0.000238648 +12.4871 0.133703 0.0335044 0.00023267 +12.2357 0.129921 0.0338444 0.000235031 +12.442 0.134036 0.0330197 0.000229303 +12.0811 0.127859 0.0338563 0.000235113 +12.6661 0.136613 0.0342865 0.000238101 +12.0145 0.127168 0.0333963 0.000231918 +12.2489 0.130003 0.0335033 0.000232659 +12.3082 0.131487 0.0342079 0.000237555 +12.231 0.130261 0.0344838 0.000239468 +12.2324 0.130753 0.0331504 0.000230211 +11.4087 0.116914 0.0334852 0.000232536 +12.3747 0.131882 0.0320985 0.000222906 +12.1479 0.129497 0.0332419 0.000230847 +12.4445 0.132973 0.0327227 0.000227241 +12.3434 0.130843 0.0324027 0.000225019 +12.3738 0.131373 0.0344791 0.000239439 +12.3964 0.132446 0.0332492 0.000230898 +12.1818 0.128732 0.0324183 0.000225128 +12.4899 0.133439 0.0315411 0.000219036 +12.2142 0.129835 0.0339108 0.000235496 +11.846 0.124421 0.0338264 0.000234906 +12.1174 0.127628 0.0326304 0.000226601 +12.5186 0.133829 0.0337995 0.000234718 +11.6686 0.121908 0.0338493 0.000235065 +12.3796 0.132079 0.0340814 0.000236679 +12.324 0.130551 0.0322621 0.000224042 +12.3044 0.130354 0.0329851 0.000229062 +12.477 0.133905 0.0324347 0.000225241 +12.2408 0.130092 0.0327195 0.000227219 +12.271 0.130444 0.0336384 0.000233601 +12.354 0.131526 0.0335768 0.000233175 +12.373 0.132463 0.0331346 0.000230102 +12.0027 0.12594 0.0337817 0.000234595 +12.2781 0.130404 0.032766 0.000227542 +11.9687 0.126349 0.0339062 0.00023546 +12.3607 0.132379 0.0330016 0.000229177 +12.4655 0.132472 0.0328571 0.000228174 +12.1846 0.129428 0.0333663 0.00023171 +12.4447 0.133241 0.03437 0.000238681 +12.0462 0.127239 0.0333231 0.00023141 +12.2114 0.130035 0.0354516 0.000246194 +12.4071 0.131886 0.0327159 0.000227193 +12.3244 0.130449 0.0322856 0.000224206 +12.9015 0.139108 0.032824 0.000227945 +12.4198 0.132385 0.0336409 0.000233617 +12.0358 0.126336 0.0327768 0.000227617 +11.9027 0.125135 0.0332803 0.000231113 +11.7746 0.122933 0.0339089 0.000235478 +12.3666 0.131755 0.0334228 0.000232106 +12.3858 0.131653 0.0335664 0.000233103 +12.2434 0.129904 0.0326443 0.000226696 +12.1299 0.128371 0.0343078 0.000238249 +11.8362 0.12421 0.0335995 0.00023333 +12.382 0.131778 0.0322242 0.000223783 +12.2429 0.130383 0.0343835 0.000238774 +12.2929 0.130732 0.0327616 0.000227512 +12.1461 0.129403 0.0363155 0.000252189 +12.308 0.131043 0.0339203 0.000235556 +12.0071 0.12533 0.0327094 0.000227149 +11.9726 0.125829 0.0331753 0.000230384 +12.3622 0.132298 0.0328405 0.000228059 +12.269 0.130283 0.0333724 0.000231747 +11.5886 0.120549 0.0342236 0.000237664 +12.2458 0.129568 0.0326289 0.00022659 +12.0486 0.126737 0.0329023 0.000228489 +12.6137 0.135477 0.0332147 0.000230657 +12.059 0.126131 0.0322913 0.000224245 +12.2224 0.130143 0.0353184 0.000245269 +12.0819 0.125942 0.0334329 0.000232172 +12.4475 0.132478 0.0334128 0.000232033 +12.4064 0.132449 0.0338512 0.000235079 +12.3138 0.13116 0.0340718 0.000236607 +12.4932 0.133748 0.0340052 0.000236149 +12.2654 0.130494 0.033933 0.00023565 +12.2307 0.129938 0.0336591 0.000233745 +12.2003 0.128538 0.033432 0.000232166 +12.6783 0.13582 0.0337726 0.000234533 +12.2274 0.129881 0.0343303 0.000238406 +12.2396 0.129985 0.0324276 0.000225192 +12.284 0.129689 0.0309855 0.00021517 +12.1567 0.128611 0.0329982 0.000229152 +12.392 0.131958 0.0330878 0.000229773 +11.9926 0.12543 0.0327424 0.000227379 +12.1273 0.127884 0.0329824 0.000229045 +11.7887 0.122809 0.0332122 0.000230639 +12.4226 0.132293 0.0325948 0.000226349 +12.0301 0.127308 0.0343771 0.00023873 +11.5761 0.119774 0.0333852 0.000231842 +12.2393 0.129628 0.0323163 0.00022442 +12.5389 0.134432 0.0330491 0.000229507 +12.2425 0.129286 0.0317173 0.000220259 +12.2989 0.130006 0.0307538 0.000213565 +12.3283 0.130757 0.0343068 0.000238242 +12.4684 0.132594 0.0321329 0.000223144 +12.2977 0.130829 0.0332071 0.000230601 +12.015 0.12575 0.0336876 0.000233942 +12.3734 0.131993 0.0338716 0.000235219 +12.3582 0.131522 0.0330377 0.000229428 +12.5786 0.135967 0.0345009 0.000239589 +12.0325 0.127153 0.0332318 0.000230776 +12.3074 0.13129 0.0342344 0.000237738 +12.3606 0.131575 0.0324151 0.000225105 +12.4845 0.13413 0.0327444 0.000227391 +12.2092 0.128572 0.0318374 0.000221091 +12.3782 0.131958 0.0321226 0.000223072 +12.0556 0.127706 0.0344484 0.000239225 +12.4796 0.133393 0.0327074 0.000227135 +12.1846 0.128934 0.0330804 0.000229725 +12.3912 0.132072 0.0334831 0.000232523 +11.9175 0.125845 0.0341818 0.000237374 +12.242 0.129467 0.0332329 0.000230784 +12.2564 0.130469 0.0340186 0.00023624 +12.3507 0.132253 0.0350504 0.000243407 +12.2523 0.130172 0.034793 0.000241619 +12.2335 0.130138 0.0348447 0.000241979 +12.1956 0.129338 0.0341362 0.000237057 +12.2958 0.131062 0.0327094 0.000227149 +12.4091 0.132575 0.0341285 0.000237004 +11.6193 0.120344 0.0334649 0.000232396 +12.3041 0.130838 0.0328439 0.000228083 +12.1437 0.12806 0.0322165 0.000223722 +12.0149 0.126268 0.0337568 0.000234422 +12.2834 0.130629 0.0338006 0.000234722 +11.8748 0.125484 0.0340516 0.000236469 +12.1834 0.128027 0.0323135 0.0002244 +12.0588 0.126353 0.0324423 0.000225294 +12.2891 0.131202 0.0345226 0.000239742 +12.3954 0.132433 0.0344205 0.000239031 +12.6424 0.134828 0.0337542 0.000234404 +12.281 0.130523 0.0322788 0.00022416 +12.325 0.131629 0.0329303 0.000228682 +12.2259 0.1288 0.0306701 0.000212992 +11.8388 0.124648 0.0338334 0.000234954 +12.2254 0.128912 0.0315892 0.000219377 +12.1049 0.127351 0.032999 0.000229161 +12.4722 0.134244 0.0346648 0.000240726 +11.4322 0.116937 0.0334011 0.000231951 +12.5835 0.135508 0.0345387 0.000239852 +12.314 0.130447 0.0330903 0.000229793 +12.4516 0.133343 0.0330064 0.000229211 +12.4151 0.13305 0.0328267 0.000227963 +12.4919 0.133437 0.0336609 0.000233757 +12.3741 0.131669 0.0328541 0.000228153 +12.4727 0.133005 0.0321332 0.000223147 +12.2853 0.130663 0.032959 0.000228882 +12.5683 0.133402 0.0326083 0.000226447 +11.438 0.117144 0.0335158 0.000232748 +12.235 0.130102 0.0338379 0.000234993 +12.1705 0.129076 0.0335207 0.000232785 +12.3624 0.131742 0.0334158 0.000232055 +12.3408 0.131221 0.0321623 0.000223346 +12.794 0.138431 0.0339723 0.000235918 +12.483 0.134165 0.0329037 0.000228498 +11.814 0.123631 0.0332904 0.000231183 +12.3291 0.131126 0.0322904 0.000224239 +12.1311 0.128346 0.0343443 0.000238503 +12.0396 0.126528 0.0328665 0.00022824 +12.4204 0.133273 0.0350496 0.000243401 +12.6695 0.136852 0.032825 0.000227951 +12.3216 0.130479 0.031337 0.000217612 +12.2423 0.130236 0.0348872 0.000242267 +12.6787 0.136642 0.0326115 0.000226469 +12.5434 0.133694 0.033533 0.000232868 +12.1769 0.128369 0.0322608 0.000224034 +12.3228 0.1308 0.0325508 0.000226047 +12.2123 0.128051 0.0336604 0.000233753 +12.2673 0.130072 0.0323382 0.000224571 +12.6526 0.13499 0.0331036 0.000229886 +12.37 0.132279 0.0330511 0.000229522 +12.4351 0.132262 0.0316471 0.000219774 +12.2191 0.130118 0.0351794 0.000244298 +12.1145 0.128659 0.0349933 0.000243009 +12.5594 0.135353 0.0342084 0.000237558 +12.2564 0.129881 0.0324845 0.000225587 +12.4453 0.131892 0.032644 0.000226694 +12.4667 0.133454 0.0325621 0.000226126 +12.3415 0.130774 0.031576 0.000219273 +12.2431 0.130251 0.0343663 0.000238655 +12.2714 0.130439 0.0325806 0.000226256 +12.3512 0.131877 0.0332447 0.000230865 +12.5536 0.135037 0.0345805 0.000240144 +12.2595 0.12997 0.0328021 0.000227792 +11.9178 0.12571 0.0345067 0.00023963 +12.2082 0.129979 0.0354158 0.000245944 +12.3001 0.130907 0.0332986 0.000231236 +12.2633 0.129991 0.032613 0.000226475 +11.6499 0.121509 0.0341796 0.000237359 +12.2191 0.129907 0.0332834 0.000231134 +12.5442 0.134625 0.0337451 0.000234341 +12.2601 0.130814 0.0349442 0.00024267 +12.4339 0.132806 0.0328198 0.000227915 +12.3406 0.131425 0.033701 0.000234035 +11.6726 0.121772 0.0338673 0.000235189 +12.2491 0.13039 0.0342002 0.000237507 +12.1724 0.129441 0.0332608 0.000230978 +12.4623 0.132597 0.0337636 0.00023447 +12.0754 0.127887 0.0330275 0.000229358 +12.3991 0.132936 0.0341548 0.000237187 +12.2598 0.130892 0.0351908 0.000244373 +12.157 0.127874 0.0324262 0.000225181 +12.1182 0.127632 0.0346352 0.000240523 +12.5456 0.135471 0.0345433 0.000239885 +12.1929 0.12892 0.0319714 0.000222018 +12.2118 0.128691 0.0315267 0.000218936 +12.1476 0.128705 0.0346746 0.000240794 +11.7298 0.122139 0.0334098 0.000232013 +12.419 0.133827 0.0329744 0.000228989 +12.0331 0.126357 0.0326707 0.00022688 +12.386 0.131839 0.0326348 0.000226631 +12.2834 0.130388 0.0320747 0.000222741 +12.0711 0.127554 0.0334893 0.000232565 +12.3244 0.131134 0.0332733 0.000231064 +11.7639 0.122358 0.0327724 0.000227585 +12.3937 0.131194 0.0327049 0.000227117 +12.3169 0.131085 0.0324477 0.000225332 +12.2587 0.13062 0.0337223 0.000234182 +12.5508 0.134297 0.033493 0.000232591 +12.3502 0.131762 0.0330762 0.000229696 +12.334 0.130579 0.031883 0.000221414 +11.9556 0.124863 0.0330283 0.000229363 +12.2907 0.130436 0.032322 0.00022446 +12.4193 0.133226 0.0326281 0.000226583 +12.2629 0.130653 0.0348365 0.000241921 +12.2755 0.13014 0.03268 0.000226939 +12.4371 0.133597 0.0345201 0.000239722 +12.5083 0.13416 0.0327438 0.000227387 +12.051 0.127602 0.0343155 0.000238302 +12.2883 0.130858 0.0338037 0.000234746 +12.3528 0.130979 0.0320142 0.000222323 +12.3599 0.131693 0.0330022 0.000229184 +11.9025 0.125326 0.0343992 0.000238884 +12.2582 0.130785 0.0352252 0.000244622 +12.2516 0.130062 0.0328696 0.000228266 +12.3553 0.132683 0.0330521 0.000229529 +12.2457 0.128838 0.0324602 0.000225417 +12.2442 0.129391 0.0317601 0.000220557 +11.8182 0.124334 0.0341305 0.000237017 +12.2164 0.129021 0.0313863 0.000217966 +12.2618 0.130337 0.0333157 0.00023136 +12.2591 0.129957 0.0323171 0.000224423 +12.3244 0.130825 0.0340374 0.000236371 +12.1833 0.1294 0.0346874 0.000240887 +12.2803 0.129969 0.0324996 0.000225692 +12.1583 0.129072 0.0346781 0.000240821 +12.0529 0.127597 0.0333046 0.000231281 +12.3778 0.132205 0.0342994 0.00023819 +12.3368 0.131388 0.0339611 0.000235841 +12.3562 0.131634 0.0321735 0.000223428 +12.4161 0.131577 0.0345029 0.000239604 +12.3686 0.131898 0.0323528 0.000224673 +12.2435 0.130306 0.0340586 0.000236516 +12.2835 0.130207 0.0322016 0.000223623 +12.8146 0.138249 0.0328 0.000227778 +11.9725 0.126385 0.0347113 0.00024105 +12.0499 0.126598 0.0332072 0.000230606 +11.9057 0.125557 0.0345545 0.000239962 +12.3174 0.131246 0.0337817 0.000234595 diff --git a/Examples/hdro-0005/data/hdro-0005_GP_RVs_n1000.txt b/Examples/hdro-0005/data/hdro-0005_GP_RVs_n1000.txt new file mode 100644 index 00000000..7dcc72fc --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_GP_RVs_n1000.txt @@ -0,0 +1,1001 @@ +% fc fy E +5.26905 63.2124 27183.4 +6.08635 61.1019 33579.6 +6.042 55.1805 30178.1 +4.79928 57.9057 32497 +6.31936 51.1734 29916.3 +4.63387 65.7357 27764.9 +6.33515 54.2575 26186.4 +5.48489 59.1384 34894 +6.52043 67.4757 30043.5 +6.78601 62.0512 31949.9 +5.20094 58.4262 32540.4 +5.16093 57.3731 32773.8 +6.42878 58.4003 34732 +5.29109 63.2526 31939.3 +4.9751 56.8598 32872.7 +6.05878 57.8309 30513 +6.62215 58.8265 27429.8 +6.89903 62.0284 28849.9 +5.3022 61.2476 27373.1 +5.25202 45.8313 32983.4 +7.10524 56.9585 27209.7 +6.95314 57.3033 30345.7 +6.19829 59.5777 25718.6 +6.74725 71.2287 32381.2 +6.12577 58.6109 28162.2 +6.32964 57.7201 26243.6 +6.93857 58.9349 27884 +5.13109 62.8456 30718.1 +5.77441 51.9559 26575.7 +5.78665 70.4941 31007.6 +5.89726 62.2864 24971.3 +6.02964 64.0391 29923.1 +5.62029 64.9339 30301.2 +7.04561 62.3044 27157.9 +5.43927 62.9336 30029.9 +4.90065 55.0826 29934.3 +5.76293 62.5432 30143.8 +5.25925 48.2684 29111 +5.73608 58.8715 35650.6 +4.50315 62.9216 26955.1 +6.66369 55.2916 27553.9 +5.79668 57.2397 29796 +5.55517 61.2779 24765.7 +6.88363 55.6095 25391.2 +6.12816 59.5565 30585.4 +6.47805 50.935 26716.6 +5.10864 61.699 34340.1 +5.39526 54.8287 34432.4 +6.18876 65.1789 32099 +6.41742 62.8089 37488.4 +6.38667 68.7681 27260.8 +5.94359 63.5672 35906 +4.55864 55.5862 30186.2 +6.48561 58.4973 30125.8 +5.8254 53.3853 33953.1 +5.333 53.2039 29943.4 +5.8307 59.9942 31960.5 +5.69047 58.4049 32348.9 +5.46291 59.4918 33852.3 +5.82735 57.3911 31664.8 +6.01686 62.3501 30785.5 +6.22778 61.9109 33007 +5.9768 48.4439 29254.2 +6.43584 58.9246 37167.8 +6.19294 58.2571 30498.5 +4.94804 53.7963 34411.1 +5.93254 70.1439 28862.9 +5.23114 57.0686 27389 +5.56985 73.2414 32826.3 +5.72356 62.3308 29435.8 +5.91976 59.197 30556.6 +4.96133 50.1091 29881.2 +5.89946 61.4355 29201.7 +5.83556 62.6033 29223.5 +6.11173 57.9298 33182.1 +5.6068 53.9289 30972.4 +5.17839 66.8926 28410.8 +5.87947 62.1415 30239.5 +5.63739 63.7238 27948.6 +5.58819 65.3083 29326.2 +5.95574 51.3406 28290.9 +5.67429 59.4138 29660.2 +6.11666 63.4287 30200.1 +4.95512 62.5758 26045.2 +5.93051 64.2589 32087 +6.06499 61.6017 29981.2 +5.3089 65.0806 31164.1 +5.67109 68.5933 29689.8 +5.2182 53.8976 35014.9 +6.44383 63.7876 31081 +5.13558 58.6783 24268.8 +4.74905 47.6625 31425.7 +6.21693 66.9064 31495.5 +6.34445 44.988 30546.2 +7.11512 59.0433 29355.8 +5.53703 53.2611 28542.4 +6.98079 57.6174 31445.6 +5.73079 59.8036 28204.5 +6.25441 64.7141 33770 +5.4687 56.4726 33150.6 +5.71895 55.5088 32791 +6.62537 53.3107 31055.4 +5.77313 58.2108 29892.5 +5.25086 62.7383 30271.6 +5.66782 64.6142 31684.5 +5.92852 65.7166 34971.9 +6.82102 52.9508 28631.3 +6.95916 56.3989 31141.9 +7.1853 49.4253 32585.1 +5.9419 72.4948 29495.8 +6.99459 63.704 31071.8 +5.06547 69.3559 32492.3 +5.78366 64.5655 26154.2 +5.76754 53.8396 29834.5 +6.2387 50.7513 29994.2 +5.86238 51.1078 29555.5 +6.18572 51.5894 29842.6 +6.57331 56.5721 25309.1 +5.20684 59.6933 29482.1 +6.48093 53.6134 28922.9 +5.43164 59.0196 23232.6 +6.26958 55.9512 26346 +5.44866 65.488 26436.8 +5.14058 56.6187 33599.4 +5.62506 61.1289 27850 +6.43012 57.1252 26815.1 +6.34872 53.2331 27758.9 +6.5665 61.5023 33609.5 +6.90372 50.2507 27240.7 +7.44226 67.258 29050.8 +5.00649 61.7807 26681.1 +6.39257 70.8792 29700.1 +5.94816 60.4992 29930.1 +6.21356 56.8236 25556.7 +5.95788 60.58 27006.6 +4.86739 58.3601 34273.8 +6.11317 65.055 31599.4 +6.38976 67.7024 35262.1 +6.39374 50.9141 28764.5 +6.73881 71.1455 25958.1 +5.88825 54.0871 29386.6 +6.45216 56.2019 29619.8 +5.90969 53.0667 28038.3 +6.45109 62.4197 26361.6 +5.58012 56.5044 29132.2 +5.96576 68.2666 29903.2 +5.96811 72.1953 25768.1 +5.57891 58.6265 30461.5 +5.74695 57.8 27361.8 +6.62076 67.166 31180.1 +6.10713 60.0321 29167.3 +6.94497 55.3757 28806.2 +4.82854 61.8179 27514.2 +6.19991 71.6375 31190.4 +5.62239 54.0543 33206.8 +6.31069 58.5721 30528.7 +5.90173 57.4295 30878 +6.06258 60.5542 27672.1 +5.40018 63.656 28363.3 +5.37857 52.7878 36288.5 +4.33217 73.6515 29266.1 +6.29009 57.5858 30488.5 +6.93748 71.3356 29362 +5.78847 56.1454 35542.6 +5.57142 64.7887 30351.2 +5.8445 65.4473 24698.7 +6.91226 63.1035 33414.1 +6.63748 63.7667 34368.4 +5.71026 56.2334 27628.4 +6 63.739 28087.7 +6.986 49.0638 26974.7 +5.62387 63.8414 28773.2 +6.59092 58.5779 25228.2 +5.44762 70.0935 31271.1 +5.23476 54.7798 29393.1 +6.36884 69.2533 31519 +5.74346 65.0332 31049.3 +6.81948 56.9498 27858.4 +6.29296 55.2663 31642.4 +6.1593 54.8582 28996.9 +6.04366 57.6428 30403.4 +5.9064 54.9647 30419.2 +5.58219 60.0072 25002.4 +6.84353 56.3241 28687.1 +6.33985 62.371 29808.7 +6.04565 67.0542 33701.6 +5.6541 59.5288 32834.1 +5.99501 62.7464 30033 +5.01826 67.1836 31612.3 +6.06867 53.9725 30365.1 +6.37496 56.0423 32523.7 +5.18848 47.8552 28719 +5.49206 61.0188 27058.4 +6.095 58.3453 29489.3 +6.59424 60.3603 28995.7 +6.24771 57.2027 28210.8 +6.42679 50.4883 28739.7 +6.81533 64.6378 32854.9 +5.22463 60.7107 33334.8 +4.93493 54.57 31717.9 +5.57259 74.5403 32053.9 +5.45749 58.5155 29731.6 +6.03122 67.7811 29709.3 +7.6954 64.7225 31429.6 +6.14462 67.0429 28553.3 +6.5933 68.0203 26628.4 +5.84135 53.5311 32004.8 +6.0344 59.8926 28843 +6.64775 64.5025 31815.9 +5.52033 56.1903 29278.4 +6.53453 68.4019 30897.8 +6.22489 58.6901 31920.5 +5.40748 51.6784 33427.8 +6.6994 59.3814 34758.3 +5.88341 71.7983 27517.8 +6.86911 51.018 36058.1 +6.8751 60.5271 30220.8 +6.54343 59.982 30537.2 +5.67941 67.4956 31927.6 +6.75186 54.7225 29043.4 +6.41895 61.4007 28796.9 +5.89133 61.6903 32630.8 +5.88352 42.0755 34388.7 +5.96454 55.4294 31785 +6.22879 58.3275 28475.3 +6.96716 65.1124 27052 +5.95682 57.7249 27714.5 +6.18788 59.9678 25147.2 +6.2678 66.946 27328.5 +5.95476 58.1672 30212.6 +5.45775 48.7588 28458.8 +6.58032 63.8807 30795.8 +5.79945 68.7467 31441.5 +6.61183 62.1995 25422.2 +6.35571 59.9437 24854.6 +6.82554 61.0374 30067.8 +6.6271 66.0597 28625.6 +5.96271 66.0698 28388.8 +5.92666 57.6355 29398.3 +5.80825 75.3214 30966.5 +6.07795 60.1868 34645.7 +6.60182 58.4675 33518.2 +5.88707 63.0264 33376.5 +5.78231 64.1844 29232.6 +6.01629 64.6826 34592.3 +5.66115 57.2632 35777.3 +5.1018 78.1759 30628.1 +5.71159 66.6542 27944.1 +6.01065 63.3837 31285.9 +5.87187 60.4386 35876.6 +6.44178 61.7299 26703.9 +5.81713 63.402 28726.6 +6.33694 63.2456 32650.8 +6.25074 50.8656 27200.7 +5.76092 62.7136 27803.5 +5.2927 59.267 32959.5 +7.13407 66.1437 31535.1 +5.41225 61.413 25106.6 +5.8027 56.3909 30603.6 +6.27239 52.7201 33337.2 +5.64211 50.0482 34076 +5.31861 66.1029 26128.4 +6.23317 57.8053 25062 +6.37801 54.1614 28701.8 +6.01377 60.0577 32240.9 +5.07508 58.8902 22219.8 +5.541 61.1417 23434.9 +5.41639 64.3611 26234.1 +6.08036 63.6643 30312.1 +7.25598 55.1241 31999.3 +7.1995 58.2441 33033.8 +5.65751 60.6434 31002.9 +6.5033 57.8896 28018.4 +5.63013 47.9551 28030.2 +6.17989 63.5763 34248.6 +5.03586 63.5411 29090.6 +5.18516 69.8265 34048.6 +6.30674 54.7607 26302.3 +4.87738 58.7325 29213.8 +6.32385 57.4474 26101.7 +6.4034 62.781 32737.2 +6.98709 47.4508 31466.3 +6.19624 61.9939 27734.3 +5.61947 60.6146 23569.5 +6.32549 69.4963 36899.3 +4.96966 53.7472 31340.9 +5.92086 70.0072 27477.2 +4.60626 60.5205 22651.2 +4.89216 64.2122 31017 +6.26398 63.1786 28091.8 +5.38673 63.9924 27317.6 +5.75018 65.7684 29533 +5.6762 72.425 32340.3 +5.59315 59.8659 27789.3 +6.40077 54.0581 28929.9 +6.46375 57.4737 32259.1 +7.00777 67.3837 31307.6 +6.67245 55.3564 24604.6 +5.27223 53.8688 33880.5 +5.98434 46.6725 32664.5 +5.40117 56.7509 27448.4 +6.73258 56.8899 27569.5 +7.21204 59.9336 30814.2 +5.9111 56.7183 33978.2 +5.90862 52.3663 26500.3 +5.62834 53.3793 26755.7 +5.50542 66.4018 31125 +6.54947 64.3536 29550.1 +5.83776 56.002 32575.7 +5.76 71.9585 34858.6 +4.74097 56.4218 28823.6 +5.48155 55.957 28240.3 +5.7786 59.3643 37950.4 +5.60277 61.4656 28245.3 +4.92159 66.7858 29646.5 +5.60886 62.8341 31156.5 +6.10969 55.01 26399.1 +5.51566 57.7703 23516.2 +5.7757 63.8611 32725.4 +5.42217 61.554 34018 +6.84099 65.3577 32530.4 +6.27205 52.4134 27303.2 +5.29959 55.6495 25920.7 +5.51744 60.2784 32701.7 +6.7352 52.487 25647.3 +7.08374 56.1139 29411 +5.74885 60.2939 36008.5 +6.42348 52.4705 30831.6 +6.20907 66.4839 30613.9 +5.85561 57.983 32204 +5.9157 55.9048 35725.4 +6.42463 70.6531 31347.4 +5.46973 62.0571 30632 +5.97038 51.2172 29751.4 +6.07642 69.005 25019.9 +5.6108 58.3099 24933.2 +6.44657 58.703 29768.7 +5.15188 61.9331 35229.3 +6.43794 59.6566 32246.6 +5.5192 63.9422 30708.6 +5.56212 63.7739 29681.1 +6.16223 50.7202 24108.1 +5.17389 71.3871 32696.2 +6.76957 65.8393 33509.6 +7.56178 68.6797 30981.4 +5.52995 61.6516 31372.9 +6.10316 57.7041 29366.5 +7.27086 65.567 30825.4 +5.98314 72.7909 29335.4 +6.28207 50.2291 24895.7 +5.71429 67.4328 33194.2 +5.6044 54.3412 31253.6 +6.0245 58.4533 33546.8 +4.27284 66.8506 32681.9 +5.13803 65.0146 23044.5 +5.75503 68.4798 26646.7 +6.89124 66.6432 32952.7 +5.97922 69.4036 28349.7 +6.91579 48.0713 26068.8 +5.82258 67.9046 32921.9 +5.84273 63.6154 29470.5 +6.24283 61.3777 31392.2 +6.64119 54.4796 28264.6 +6.36987 58.9067 31221.8 +5.87414 66.2302 27877.7 +5.54713 62.3179 32015.1 +6.25819 55.9885 28301.5 +5.50042 61.5812 27275.1 +6.45903 56.4385 31708.9 +6.80915 55.765 26797.8 +5.72938 59.2155 26759.9 +6.55622 59.8196 30992.1 +5.24525 66.7161 27163.9 +5.34351 67.7563 30942.6 +5.86422 52.2128 31653.7 +6.08502 63.4083 28592.5 +5.84947 59.862 25761.3 +6.13597 68.0972 30440 +6.10127 65.8809 26418.2 +6.39857 59.5928 31021.7 +5.27714 60.2467 30868.9 +7.32256 66.9608 30764.2 +5.76646 48.6384 31210.1 +6.60563 66.3363 25627.1 +6.48628 49.5523 31832.2 +6.01049 64.0902 31509.7 +5.34799 58.589 29961.1 +7.53913 67.2883 31400 +6.45365 61.4559 23879.7 +6.18473 55.2344 34519 +6.88023 62.5661 34318.3 +5.71442 60.6749 27660.4 +5.09134 63.1171 32550.4 +6.083 61.051 27987.9 +5.81123 61.7481 33107.8 +6.49381 62.9547 30613.2 +5.32712 48.1418 24538.3 +5.22944 57.4236 31475.8 +5.61508 67.8306 27929 +5.89371 65.3961 27815.3 +6.05039 60.9035 28130.5 +5.42597 60.5908 33643 +5.8311 58.0676 31122.6 +5.70446 55.2557 35443.6 +4.88797 62.1618 32214.5 +5.79318 51.8861 31289.9 +5.72475 59.4447 33864.1 +6.5603 57.8369 28225.8 +5.83505 49.7089 24670.2 +5.03472 64.7382 28334.1 +7.23002 60.4774 29300.5 +6.30044 61.9717 29509 +7.00307 61.8871 32216.8 +5.87789 57.8786 32885.3 +5.75741 58.5515 26779.4 +5.78593 54.9858 29194.5 +4.97839 70.334 32122.3 +5.55818 60.2209 28188.4 +4.64928 52.3223 31383.6 +6.66593 54.8646 29598.6 +5.21685 62.9695 28691.1 +6.26194 55.3996 26722.6 +4.71924 49.2483 27532.9 +6.97113 61.805 33072.8 +5.6975 57.1859 28316.1 +6.14283 54.3933 26032 +5.93199 61.871 25989 +6.29862 65.4387 27442.3 +5.99161 65.2014 28755.8 +6.38256 56.8863 25891.1 +6.517 57.9246 30048.8 +6.20345 54.4952 26280.3 +6.25264 56.3556 32388.5 +6.24183 48.9839 23982.1 +6.69618 55.0372 28116.8 +5.51387 69.5943 28915.5 +5.35754 53.4939 27572.2 +7.01655 55.1131 32324.4 +5.65627 46.1334 28833.7 +6.10475 51.7462 26586.2 +6.48196 65.599 27731 +6.33264 65.2003 29066.2 +6.43347 68.2103 28858.6 +6.70685 60.7487 33835.6 +5.74565 58.6512 34615.7 +5.42339 61.218 29719 +5.86027 68.3726 27918.9 +5.67676 60.023 27704.9 +7.19261 55.4616 32168.1 +5.8188 61.0778 29821.7 +5.9608 51.9964 21783 +6.55527 64.4427 39242.3 +6.66763 64.0478 29454.7 +5.0123 59.7304 23196 +6.04707 69.6918 28143.1 +6.49753 61.8331 26505.7 +5.38563 61.7918 28433.4 +5.50145 55.7144 34126.1 +6.36143 57.3182 34225.7 +5.68548 59.9012 32032.7 +6.36763 46.4482 30093.1 +6.17303 57.353 28012.8 +5.5348 57.4056 26454 +5.97825 60.1633 33813.4 +6.18063 64.1744 31862.1 +5.24014 49.4332 33481.8 +6.07452 62.4283 32315.1 +6.56958 55.497 28436.6 +5.14482 59.2234 28515.8 +5.41878 66.8185 29129.5 +5.02358 64.8263 31573.5 +6.86012 56.1592 38497.6 +6.4603 63.2689 26217.1 +6.10013 54.737 29640.2 +7.16597 65.2355 34335.3 +5.02502 56.6349 31737.8 +6.30913 57.4928 27899 +5.93497 62.397 29443.1 +5.42962 62.2718 30136.8 +7.02138 59.3962 25254 +4.91618 65.8051 31774.7 +6.58645 52.2064 27985.3 +5.59396 58.22 30052.7 +4.80848 55.3432 29153 +5.41493 66.5915 31322.5 +4.7729 63.4888 30639.1 +6.53945 63.0195 33693.7 +4.90941 63.4728 29523.7 +5.83902 59.1422 32401.7 +5.85098 61.1081 28665.3 +5.78134 77.2385 28560.3 +5.37135 68.9668 32458 +5.36987 70.4128 35947.2 +5.70375 69.4773 25606.1 +6.68091 55.7515 31645.1 +5.48641 53.7156 28600.5 +6.60667 58.7683 32131.3 +6.40796 62.5182 26487.2 +6.71106 66.6851 26205.1 +5.35424 58.0525 27287.6 +5.65284 54.693 32513 +6.45537 71.049 28509.2 +5.51086 58.7479 30304.8 +5.64806 57.8609 33012 +5.58396 57.5671 27383.4 +6.34791 64.8965 25337 +6.05609 52.8937 21719.9 +5.9505 59.6344 30778.4 +6.01892 60.8173 29851.3 +6.17675 65.9306 30423.1 +5.29531 54.67 26560.4 +5.80217 57.3309 25265.2 +5.49024 54.3774 27840.9 +6.67698 59.714 27290.5 +6.30392 61.1539 33164.9 +6.50049 63.8428 29189.2 +6.32202 67.9718 31155.5 +5.57626 60.3038 29418.2 +6.18193 60.0864 27020.1 +6.05188 59.7225 32438.6 +5.28467 69.8851 28050.8 +6.47004 64.021 32675.2 +5.52634 59.4052 33998.2 +6.15089 56.231 30662.7 +6.30538 56.9872 34165 +6.58889 60.8791 29812.2 +6.13315 68.7193 31456.7 +6.04018 51.9303 32801.4 +5.55286 60.0741 33242.5 +5.46565 61.9873 24728.8 +6.44876 61.3386 32226.5 +7.3533 66.463 30701.8 +6.12193 70.5141 33287.7 +5.65944 69.3182 33568.9 +6.02201 43.7354 27337.6 +6.50871 57.1634 25574.4 +5.4984 37.484 26652.5 +6.1632 55.9295 27633 +6.09353 59.063 31299.8 +6.24042 74.8788 26923.9 +5.25539 66.5871 33130.8 +5.34374 57.9733 35365.8 +6.92048 60.2267 29565.8 +5.90459 76.0839 25939.7 +5.64927 56.258 30449.6 +6.31597 53.5946 31845.4 +6.06725 59.5419 32035 +5.75163 59.4706 29973.6 +5.85576 66.3147 29231 +5.28673 58.194 22970.1 +6.71879 57.9576 31315.5 +6.34399 62.9824 27597.9 +6.52535 52.2923 27038.1 +6.02309 64.4637 29027.2 +5.63273 58.0211 35507.3 +6.02796 57.0935 27686.7 +7.74967 61.9521 30498.7 +4.70836 58.9946 32723.2 +5.52819 56.6044 26897 +6.74199 66.5475 26886.2 +7.09117 63.5071 28782.7 +6.65794 62.6149 33121.6 +5.67186 62.1054 29738 +5.66816 59.0809 28532.2 +6.03725 55.6834 26800.2 +6.37314 47.2368 28310.6 +6.75593 71.5157 30924.9 +5.69114 55.1532 28149.7 +6.05786 58.1103 36607.5 +6.27894 61.5482 39595.5 +6.33821 51.6181 37035.9 +4.99835 51.2628 35596.2 +6.5195 53.6945 32428.9 +6.14225 42.9358 36466.8 +5.92603 62.6757 31855.8 +5.94043 53.6468 29035.2 +6.58309 65.5053 22356.9 +5.3139 62.1869 28936.2 +6.24528 63.5249 33935.1 +6.65484 57.4921 25701.7 +6.57704 59.1834 23403.9 +6.71593 61.1928 32273.1 +6.43985 53.7766 31669.9 +6.25577 60.2047 26904.5 +6.17126 65.6152 26331.6 +6.40539 63.3376 31728.8 +5.70917 65.3552 26849.6 +5.73948 61.2072 27702.7 +5.53171 64.5342 30647 +6.35322 63.5983 33650.3 +5.69951 57.0279 28480.3 +4.76584 58.0976 29376 +5.73256 64.4831 31776.3 +6.12892 61.2268 30567.9 +5.71744 58.1241 33529.2 +5.79812 53.2912 29099.9 +6.37597 51.0924 29144.4 +6.08875 61.7689 32841 +5.61689 73.4564 27960.4 +5.38922 65.413 32069.4 +6.05479 63.0458 34453.6 +6.09192 61.064 31986.6 +6.80717 57.2818 30409.2 +5.64469 50.9982 27900.6 +6.68729 54.5774 32192.9 +6.03171 53.554 25785.7 +6.85455 55.2177 29006.9 +5.98805 60.9511 29665.7 +5.54423 68.5464 25491 +6.69541 56.7007 28426.7 +6.79347 66.2602 30002.1 +5.47379 60.929 27091.1 +6.4151 56.1386 30393.1 +6.12539 67.6009 29079.7 +5.31714 53.1839 30254.5 +4.84272 52.5267 28000.1 +6.63214 58.721 32276.6 +6.15679 57.1445 32908 +5.53966 59.9164 28895.9 +5.80973 60.8512 30458.5 +6.76762 57.9997 27676.6 +7.0238 62.4994 29570.6 +5.21114 67.3334 28586.5 +6.07384 57.5393 32618.3 +6.14733 59.8174 36195.8 +5.38238 62.6252 30803.4 +5.83387 54.2459 29303.5 +6.78174 63.8137 30245.7 +5.24427 50.5886 30385.4 +6.22363 59.1114 28791.5 +6.04919 70.8614 30853.2 +5.15544 64.7654 32043.3 +5.90536 58.3851 31408.8 +6.93172 55.4681 28450.7 +5.26276 68.1857 27072.4 +7.03108 55.634 31764.4 +5.7771 57.0585 31415.4 +5.16791 62.7056 28284.3 +5.85196 51.8226 36303.4 +5.05203 63.3551 25547.1 +6.32718 50.3121 26375.6 +6.92447 61.5339 28397.5 +5.49573 52.1717 27144.6 +6.12335 60.6995 28733.8 +5.63885 49.3485 35328 +5.98588 60.1277 30230.5 +7.41769 62.8706 31235.5 +6.3796 60.3929 33240.1 +6.67581 50.563 29969.8 +5.97426 49.8261 27109.5 +6.28335 67.6349 30151.4 +6.40098 53.111 29755.4 +6.27618 59.4306 31828.6 +5.86814 60.3656 30114.3 +7.36151 56.301 28710.7 +6.27817 49.9984 24128.5 +6.06376 57.5971 34698.9 +6.06999 60.8443 29828 +5.77001 53.1273 35138.7 +5.35149 51.7119 29054.6 +5.69443 70.7232 31800.1 +5.99609 67.9504 29865.7 +4.55462 64.3753 25515 +5.99837 56.0248 31328.2 +6.88686 51.8664 30519 +6.19153 59.6065 30533 +6.86733 65.3339 26394.8 +6.68414 68.4707 30752.8 +5.82887 62.3778 28493.7 +5.86527 50.1328 25868.7 +6.6604 55.6019 29121.9 +6.2039 64.116 29170.8 +6.41191 51.4055 35636.3 +6.17421 55.0289 30561 +6.72333 52.7572 28072.8 +5.49321 65.6538 24049.1 +6.11588 55.5546 30735.1 +5.59763 60.7713 32376.2 +6.57187 64.1545 29626.2 +5.91296 60.8741 25662.8 +4.93681 50.4145 29347.1 +5.44311 53.0057 32594.7 +6.54776 71.9792 26110.6 +5.88971 60.6314 24836.7 +6.64482 56.3744 33783 +7.23873 53.8134 30596.8 +6.78832 63.0726 30657.8 +6.52914 66.0006 25851.4 +6.23468 63.9008 31908.2 +4.98335 52.6508 31063.7 +6.22188 65.5422 28496.9 +6.28558 50.3601 30022 +6.29428 58.7773 29633.1 +6.13108 44.6069 27542.3 +6.30212 72.6203 30888.1 +7.15933 59.6181 31891 +6.07111 59.2891 31625.3 +6.90501 68.8579 28605.5 +5.55014 46.6096 29456.5 +5.40976 61.2887 30841 +5.22112 52.5806 34516.3 +5.8755 63.303 28967.7 +6.72054 69.5594 29728.7 +6.70415 64.296 30738.8 +6.13663 63.9334 33222.7 +6.76267 54.0147 32112.1 +5.81996 72.9467 27610.3 +5.56301 66.2933 33088.2 +6.64941 52.5724 33278.4 +6.20788 54.311 27002.5 +5.52292 57.6839 28053.9 +6.00448 73.7945 33721.9 +6.21323 64.2802 29775.6 +6.52335 52.0762 28976.8 +5.94923 51.4873 30280.8 +5.36286 63.0863 32305.3 +6.14742 60.953 30919.6 +5.06763 57.524 27492.7 +5.95256 64.083 29260.3 +5.84636 56.7817 30910.7 +4.8461 56.5546 30477.9 +6.47563 68.2845 32450.4 +5.50852 53.4587 30816.5 +5.76477 64.9146 28174.5 +5.92351 62.6689 27459.4 +6.23638 66.135 30379.9 +4.45976 64.5998 32560.8 +5.18352 50.6369 32466.7 +6.29589 64.5729 33025.2 +6.0079 52.6133 34565.3 +5.4833 72.2885 27621.3 +6.11967 58.4363 32409.9 +5.8772 57.5471 25977.3 +5.80712 67.6644 33050.8 +6.59703 60.7567 31882.5 +7.6435 68.3313 28105.8 +7.27958 58.0276 32933.7 +5.43916 65.1254 27802.9 +5.86099 66.7978 19772.5 +6.00658 61.32 29180.4 +6.77798 69.9513 33917 +5.85828 60.6827 27252.2 +5.61231 65.9476 26256.8 +5.55967 57.0874 33675.9 +6.16832 59.7452 23914.3 +6.26047 66.1795 29540.9 +5.65129 64.124 29798.6 +5.28273 62.0214 30679.7 +5.9448 64.4093 30100.8 +6.35848 62.7616 24451.5 +5.66454 64.2451 26876.3 +5.68386 49.6719 24510.4 +6.06087 56.9359 30768.9 +5.90327 62.1299 29859.6 +7.04027 58.2854 28346 +5.99936 57.0213 30728.2 +5.9895 54.4207 35150.8 +6.56472 66.2015 31216.6 +5.04255 67.5442 31967.8 +6.22087 70.2505 28109.1 +6.69212 54.6248 29611.5 +6.72732 56.0775 36865.7 +6.21574 54.9486 22835.9 +5.94699 58.2652 26616.6 +6.49118 55.7313 30131.3 +5.58982 65.5151 30961.1 +5.79463 56.7447 28196.4 +5.57462 50.779 28906.2 +6.53624 63.9737 32752.1 +6.63856 60.3456 25459.2 +6.61791 51.5603 30329.3 +6.65356 59.3456 27504.5 +5.71978 54.4583 30745.3 +5.32568 58.1523 35797.8 +6.09768 57.7528 30472.8 +5.72711 59.781 29515.4 +6.57928 57.2204 27972.3 +5.96176 57.0076 25812.2 +6.38501 67.8037 28252.2 +6.43444 52.0562 28883.2 +5.79253 59.3077 32104.3 +5.09873 60.2616 32160.2 +6.19001 60.7335 27861.9 +4.78359 62.4536 27651.1 +5.88526 61.2669 36413.2 +6.31804 64.2201 35070.3 +6.286 62.9047 30874.3 +5.66435 54.1128 31366.6 +6.11375 63.1926 33260.2 +6.27534 59.7641 27224.9 +5.72156 60.9842 28568.4 +5.36747 58.1466 36559.8 +6.13397 70.9689 26536.2 +6.26348 61.3143 32644.7 +5.33167 63.6905 29948.3 +6.03467 56.3111 27418.4 +6.1402 49.1735 37656.1 +5.81612 52.3962 23755.5 +6.31125 56.09 31105.2 +3.99525 65.1369 30576.4 +6.07873 63.2935 24348.4 +6.4136 58.8548 30361.6 +5.9697 60.4149 31618 +6.17793 62.1788 31985.6 +6.46901 65.0001 24236.4 +5.50716 59.2988 28574.4 +6.39638 74.1874 31239.1 +6.33146 55.5298 29695.6 +6.16684 62.801 29016.3 +6.61568 60.6489 31583.2 +4.40876 69.7689 32974.7 +5.98654 61.1714 29320.7 +5.47189 63.2266 35433.3 +5.60522 53.0251 30370.9 +6.02018 64.8748 23831 +5.56636 52.6732 29601.1 +5.64024 48.3638 29316.4 +6.16472 54.8897 25435.4 +6.08211 60.3294 28222.9 +5.74108 52.8523 29425.6 +5.31123 63.1324 30009.6 +6.75451 61.8527 28811.8 +7.47242 64.8461 33307.1 +6.48883 64.9628 27081.5 +5.53465 69.197 37366.2 +6.47207 56.0649 29408.2 +6.32036 56.4887 29157.6 +6.3895 61.7116 26464 +6.95587 61.5097 25065.9 +5.39747 63.3721 28650.2 +5.93808 63.1612 30267.7 +6.74492 56.4508 29875.3 +6.05325 65.2757 31692.8 +7.14934 60.1037 30430.1 +7.49272 53.6676 35195.7 +5.12636 67.3018 32331 +6.51199 56.7932 34148.3 +5.7576 46.8472 33810.3 +5.89495 60.3795 28326.2 +6.03881 60.912 25196.1 +6.09898 62.4848 31257.9 +5.11593 54.3547 30951.6 +6.28874 59.484 27467.2 +5.1972 52.1123 32074.6 +6.41011 69.0539 32897.8 +6.09634 53.9506 33733.8 +6.79972 61.669 33406.9 +7.07093 59.1642 27782.8 +5.374 62.8779 28370.6 +6.23197 56.8468 32476.8 +6.11919 61.4747 30671.4 +5.47715 57.7433 34802.1 +5.75304 58.4821 26056.6 +6.04345 59.6515 30292.8 +5.86749 48.8684 26013.3 +5.1196 55.4259 26737.7 +4.85363 63.9671 31754.3 +5.11134 62.5267 28380.9 +5.63102 67.4021 27824.7 +6.55338 70.1926 28746.9 +5.09348 64.9834 34102.1 +6.00281 55.3155 28872.7 +6.34192 68.9331 30062.1 +7.12742 49.946 26315.3 +5.78988 55.8147 28988 +6.21928 65.9705 23675.5 +5.77191 57.1398 26860 +6.60097 61.6275 31562.3 +6.54564 57.6673 31098.9 +5.3923 53.3422 27586.9 +5.73565 66.0255 24402.9 +5.58679 66.7424 31357.4 +6.68741 47.3023 30859.8 +6.35024 69.1774 29246.3 +7.87837 62.2509 31542.6 +5.91474 56.682 26934.1 +7.37546 74.3867 28955.2 +6.363 55.0602 28527.1 +4.99332 54.6154 31114.5 +5.93524 61.6377 30171.8 +5.46088 55.8265 26670.4 +6.15648 62.2389 30159.3 +5.88133 54.5528 34032.9 +6.17057 64.3299 32186.1 +5.4055 60.1102 34199.2 +5.92209 67.2079 34829.1 +6.47452 54.1864 34577.9 +5.99255 66.4354 33141.3 +6.42029 65.2467 31137.2 +5.85296 61.3538 30193.3 +5.68192 45.5069 29588.4 +6.50703 58.082 22591.1 +6.08911 69.1255 28273.5 +7.07861 62.654 27350.8 +5.44503 58.9639 31264.8 +6.15327 56.6723 31743.4 +6.29217 60.1391 26948.4 +6.46223 51.7837 33363.5 +5.80437 55.8426 24197 +6.35965 55.1958 29668.6 +5.17007 56.2854 26159.4 +6.35353 49.8468 30086.6 +7.05269 56.5806 34945.7 +4.81574 71.6664 31484.7 +6.38196 62.2262 31552.7 +5.69602 67.1128 31869.6 +6.61085 56.6533 31901.4 +6.46682 67.8843 31086.6 +5.84706 59.0658 29097.9 +6.56166 73.1349 31804.8 +6.25199 59.2536 28945.3 +6.01294 65.6984 32141.7 +6.54032 62.0982 38086.1 +4.58639 59.5176 31946.9 +5.3235 65.7895 24806.5 +5.26425 55.8895 31502.1 +6.52884 68.8435 30933.3 +6.19505 58.2947 33438 +6.13926 53.4269 34775.7 +6.85898 59.8347 35038.9 +5.69322 67.5551 25312.5 +6.51101 45.7074 30322.2 +5.70622 51.3767 34094.7 +5.16361 60.8042 29788 +6.23085 69.7045 31695.8 +5.45485 66.3717 26985.8 +4.40532 64.6536 32293.3 +5.63542 47.0482 34473.6 +6.75905 68.6245 27186.1 +5.55167 60.4518 28402.6 +5.73299 65.8499 33469 +5.34035 64.5131 34279.2 +5.0852 52.932 27933.3 +6.36583 66.3859 29987.7 +5.6813 53.9925 30688.9 +5.68759 62.4648 29291 +5.47965 48.5952 29073.2 +6.02663 56.8116 30258.5 +5.8133 54.2182 28662.4 +6.20581 54.1492 30107.5 +5.45104 54.8094 29760 +4.68738 52.8701 30695.3 +6.31392 61.9165 33913.5 +5.59632 58.792 24363.6 +5.20617 54.2851 29581.8 +7.29311 47.7478 26527.6 +7.30463 60.9716 30333.5 +5.37695 70.6457 26601.2 +6.00569 55.8591 29285.9 +6.14919 59.1008 31201.9 +6.51367 64.8173 29531.5 +5.91836 56.9206 36714.6 +6.71008 54.6486 32365.5 +5.87049 54.5149 30205 +5.81502 66.5293 32603.2 +6.53167 63.0006 28469 +6.16082 58.6416 33320.3 +6.79662 57.2505 28153.7 +5.97565 61.3899 27116.4 +5.64628 56.5221 32766.4 +5.73878 51.5026 35103.5 +6.63423 75.8828 34919.9 +5.97177 61.0122 32806.3 +6.77526 59.2451 29475.7 +6.21135 53.0924 33384.6 +5.33682 60.4236 25834.4 +6.83573 63.6237 25734.3 +5.04734 55.693 31597.1 +6.15491 54.9097 33062 +5.54662 65.6566 27402.6 +5.35595 49.5956 33631 +6.50185 68.1436 35297.5 +5.70105 52.2494 36152.3 +5.43323 60.7892 28065.2 +5.19211 58.9843 24593.7 +7.10054 58.9486 21083.5 +6.10818 58.8485 31032.2 +6.26612 59.6691 34175.9 +7.06381 58.8088 31038.7 +5.56661 62.0798 28614.5 +7.14197 51.2796 33464.3 +5.82416 44.2415 32152.7 +6.85074 64.4284 28646.7 +5.60011 68.0487 28958.2 +4.67114 59.3319 34671.3 +6.496 78.5996 31183.3 +5.27548 61.5914 27748.1 +5.93969 59.0098 30906.1 +5.07914 60.5575 32934.9 +5.98073 60.4926 25158.3 +6.83362 55.7878 30081.9 +5.06144 67.1096 31566.4 +6.80351 58.5362 28885.9 +5.89572 48.93 25371.7 +6.82817 60.1753 29901.4 +6.24668 63.4521 31530 +5.30672 67.0134 27133.3 +6.20123 53.464 28679.7 +5.43664 65.9048 26829.6 +5.36103 52.8247 33747.7 diff --git a/Examples/hdro-0005/data/hdro-0005_GP_Table_RES_n1000.csv b/Examples/hdro-0005/data/hdro-0005_GP_Table_RES_n1000.csv new file mode 100644 index 00000000..09ce1e10 --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_GP_Table_RES_n1000.csv @@ -0,0 +1,1001 @@ +Run #, fc, fy, E, 1-PFA-1-1, 1-RMSA-1-1, 1-PFD-1-1, 1-PID-1-1 +1, 5.26905, 63.2124, 27183.4, 12.1453, 0.128758, 0.034762, 0.000241404 +2, 6.08635, 61.1019, 33579.6, 12.0571, 0.126169, 0.0327765, 0.000227614 +3, 6.042, 55.1805, 30178.1, 11.9085, 0.125579, 0.0332489, 0.000230896 +4, 4.79928, 57.9057, 32497, 12.1994, 0.129737, 0.0347782, 0.000241513 +5, 6.31936, 51.1734, 29916.3, 12.6562, 0.136355, 0.0328926, 0.000228421 +6, 4.63387, 65.7357, 27764.9, 12.2003, 0.129942, 0.0356736, 0.00024773 +7, 6.33515, 54.2575, 26186.4, 12.2652, 0.130237, 0.0333228, 0.000231409 +8, 5.48489, 59.1384, 34894, 12.3815, 0.131562, 0.0334607, 0.000232367 +9, 6.52043, 67.4757, 30043.5, 12.2856, 0.130598, 0.0326008, 0.000226395 +10, 6.78601, 62.0512, 31949.9, 12.1723, 0.127894, 0.0320217, 0.000222373 +11, 5.20094, 58.4262, 32540.4, 12.6162, 0.136113, 0.0341692, 0.000237286 +12, 5.16093, 57.3731, 32773.8, 12.5257, 0.134816, 0.0341986, 0.000237489 +13, 6.42878, 58.4003, 34732, 12.5004, 0.132938, 0.0321765, 0.000223447 +14, 5.29109, 63.2526, 31939.3, 12.0702, 0.128703, 0.0341128, 0.000236895 +15, 4.9751, 56.8598, 32872.7, 12.2046, 0.129868, 0.034463, 0.000239325 +16, 6.05878, 57.8309, 30513, 12.3364, 0.131975, 0.0331844, 0.000230447 +17, 6.62215, 58.8265, 27429.8, 12.2295, 0.129886, 0.0327716, 0.000227581 +18, 6.89903, 62.0284, 28849.9, 12.4694, 0.133663, 0.0322287, 0.00022381 +19, 5.3022, 61.2476, 27373.1, 12.1505, 0.12893, 0.0346867, 0.000240881 +20, 5.25202, 45.8313, 32983.4, 12.2484, 0.130385, 0.0340374, 0.000236368 +21, 7.10524, 56.9585, 27209.7, 12.2455, 0.129638, 0.032143, 0.000223214 +22, 6.95314, 57.3033, 30345.7, 12.2996, 0.130469, 0.0319844, 0.000222115 +23, 6.19829, 59.5777, 25718.6, 12.0877, 0.127464, 0.0335757, 0.000233165 +24, 6.74725, 71.2287, 32381.2, 12.3189, 0.130727, 0.0320236, 0.000222386 +25, 6.12577, 58.6109, 28162.2, 12.1738, 0.128692, 0.0333774, 0.000231787 +26, 6.32964, 57.7201, 26243.6, 12.0918, 0.127478, 0.0333236, 0.000231415 +27, 6.93857, 58.9349, 27884, 12.4414, 0.133205, 0.0322878, 0.000224221 +28, 5.13109, 62.8456, 30718.1, 12.4767, 0.133653, 0.0345084, 0.000239642 +29, 5.77441, 51.9559, 26575.7, 12.2348, 0.130205, 0.034084, 0.000236695 +30, 5.78665, 70.4941, 31007.6, 12.2486, 0.130156, 0.03351, 0.000232708 +31, 5.89726, 62.2864, 24971.3, 12.4473, 0.133156, 0.0341075, 0.000236857 +32, 6.02964, 64.0391, 29923.1, 12.0105, 0.127579, 0.0332977, 0.000231233 +33, 5.62029, 64.9339, 30301.2, 12.4471, 0.133192, 0.0338381, 0.000234987 +34, 7.04561, 62.3044, 27157.9, 12.3417, 0.131262, 0.0322287, 0.000223807 +35, 5.43927, 62.9336, 30029.9, 11.8834, 0.124736, 0.0341378, 0.000237068 +36, 4.90065, 55.0826, 29934.3, 12.4346, 0.133728, 0.0349622, 0.000242792 +37, 5.76293, 62.5432, 30143.8, 11.3903, 0.116892, 0.0336513, 0.000233689 +38, 5.25925, 48.2684, 29111, 12.2548, 0.130619, 0.0345244, 0.000239758 +39, 5.73608, 58.8715, 35650.6, 12.3475, 0.131207, 0.0330138, 0.000229263 +40, 4.50315, 62.9216, 26955.1, 12.1802, 0.129874, 0.0359962, 0.000249973 +41, 6.66369, 55.2916, 27553.9, 12.3339, 0.130807, 0.0326997, 0.000227082 +42, 5.79668, 57.2397, 29796, 12.1497, 0.128006, 0.033646, 0.000233653 +43, 5.55517, 61.2779, 24765.7, 12.2272, 0.129762, 0.0346449, 0.000240591 +44, 6.88363, 55.6095, 25391.2, 12.1939, 0.128507, 0.0326548, 0.000226771 +45, 6.12816, 59.5565, 30585.4, 12.3454, 0.131859, 0.0330783, 0.00022971 +46, 6.47805, 50.935, 26716.6, 12.2273, 0.12949, 0.0330571, 0.000229563 +47, 5.10864, 61.699, 34340.1, 12.4097, 0.132474, 0.0340758, 0.000236638 +48, 5.39526, 54.8287, 34432.4, 12.3521, 0.131744, 0.0336465, 0.000233658 +49, 6.18876, 65.1789, 32099, 12.5008, 0.134091, 0.032812, 0.000227861 +50, 6.41742, 62.8089, 37488.4, 12.4211, 0.132039, 0.0318754, 0.000221358 +51, 6.38667, 68.7681, 27260.8, 12.4628, 0.133234, 0.0331193, 0.000229994 +52, 5.94359, 63.5672, 35906, 12.6273, 0.13498, 0.032696, 0.000227055 +53, 4.55864, 55.5862, 30186.2, 12.2087, 0.13016, 0.0354615, 0.000246254 +54, 6.48561, 58.4973, 30125.8, 11.944, 0.12412, 0.0326387, 0.000226658 +55, 5.8254, 53.3853, 33953.1, 12.4263, 0.133222, 0.0330942, 0.000229821 +56, 5.333, 53.2039, 29943.4, 12.4465, 0.133641, 0.0343064, 0.00023824 +57, 5.8307, 59.9942, 31960.5, 12.0613, 0.127334, 0.0333297, 0.000231456 +58, 5.69047, 58.4049, 32348.9, 12.3693, 0.132116, 0.0334815, 0.00023251 +59, 5.46291, 59.4918, 33852.3, 12.523, 0.134245, 0.0336214, 0.000233482 +60, 5.82735, 57.3911, 31664.8, 12.1572, 0.129329, 0.0333708, 0.000231741 +61, 6.01686, 62.3501, 30785.5, 11.8322, 0.123138, 0.0332103, 0.000230627 +62, 6.22778, 61.9109, 33007, 12.1122, 0.127459, 0.0326503, 0.000226738 +63, 5.9768, 48.4439, 29254.2, 12.3626, 0.131595, 0.0334549, 0.000232328 +64, 6.43584, 58.9246, 37167.8, 12.5727, 0.135061, 0.0318877, 0.000221441 +65, 6.19294, 58.2571, 30498.5, 12.3964, 0.132555, 0.0329983, 0.000229155 +66, 4.94804, 53.7963, 34411.1, 11.8865, 0.125054, 0.0343045, 0.000238227 +67, 5.93254, 70.1439, 28862.9, 12.3034, 0.130548, 0.0335667, 0.000233103 +68, 5.23114, 57.0686, 27389, 12.2975, 0.131208, 0.0347928, 0.000241618 +69, 5.56985, 73.2414, 32826.3, 12.3031, 0.13069, 0.0335955, 0.000233301 +70, 5.72356, 62.3308, 29435.8, 11.6025, 0.120528, 0.0337968, 0.0002347 +71, 5.91976, 59.197, 30556.6, 12.0773, 0.127441, 0.0333757, 0.000231776 +72, 4.96133, 50.1091, 29881.2, 12.4573, 0.133851, 0.034876, 0.000242195 +73, 5.89946, 61.4355, 29201.7, 11.8859, 0.123589, 0.0335722, 0.000233139 +74, 5.83556, 62.6033, 29223.5, 11.7175, 0.122161, 0.0336614, 0.000233759 +75, 6.11173, 57.9298, 33182.1, 12.4738, 0.132576, 0.0327889, 0.000227701 +76, 5.6068, 53.9289, 30972.4, 12.3904, 0.132137, 0.0337733, 0.000234537 +77, 5.17839, 66.8926, 28410.8, 12.1389, 0.128478, 0.0347385, 0.00024124 +78, 5.87947, 62.1415, 30239.5, 11.3392, 0.115792, 0.0334722, 0.000232446 +79, 5.63739, 63.7238, 27948.6, 12.0407, 0.127624, 0.034111, 0.000236882 +80, 5.58819, 65.3083, 29326.2, 12.39, 0.132577, 0.0340082, 0.000236168 +81, 5.95574, 51.3406, 28290.9, 12.3849, 0.131063, 0.0336044, 0.000233365 +82, 5.67429, 59.4138, 29660.2, 12.0783, 0.127548, 0.0338402, 0.000235001 +83, 6.11666, 63.4287, 30200.1, 12.2987, 0.130864, 0.0331412, 0.000230147 +84, 4.95512, 62.5758, 26045.2, 12.2133, 0.129997, 0.0354, 0.000245835 +85, 5.93051, 64.2589, 32087, 12.1793, 0.129184, 0.0331734, 0.00023037 +86, 6.06499, 61.6017, 29981.2, 11.8844, 0.12354, 0.0332406, 0.000230837 +87, 5.3089, 65.0806, 31164.1, 11.9069, 0.125174, 0.0341855, 0.0002374 +88, 5.67109, 68.5933, 29689.8, 12.4373, 0.132505, 0.0338411, 0.000235008 +89, 5.2182, 53.8976, 35014.9, 12.2673, 0.130535, 0.0338299, 0.000234933 +90, 6.44383, 63.7876, 31081, 12.5897, 0.133606, 0.0325828, 0.00022627 +91, 5.13558, 58.6783, 24268.8, 12.251, 0.130755, 0.0353574, 0.000245541 +92, 4.74905, 47.6625, 31425.7, 12.2108, 0.13013, 0.0349972, 0.000243028 +93, 6.21693, 66.9064, 31495.5, 12.5228, 0.133579, 0.0328452, 0.000228092 +94, 6.34445, 44.988, 30546.2, 12.2617, 0.130285, 0.0327825, 0.000227659 +95, 7.11512, 59.0433, 29355.8, 12.3343, 0.131025, 0.0318839, 0.000221416 +96, 5.53703, 53.2611, 28542.4, 12.4598, 0.133591, 0.0341833, 0.000237386 +97, 6.98079, 57.6174, 31445.6, 12.1886, 0.128653, 0.0318227, 0.000220991 +98, 5.73079, 59.8036, 28204.5, 11.6183, 0.120422, 0.0339414, 0.000235704 +99, 6.25441, 64.7141, 33770, 12.2931, 0.130374, 0.0325238, 0.00022586 +100, 5.4687, 56.4726, 33150.6, 12.5652, 0.134962, 0.0337006, 0.000234032 +101, 5.71895, 55.5088, 32791, 12.5895, 0.134717, 0.0333864, 0.00023185 +102, 6.62537, 53.3107, 31055.4, 12.6068, 0.136171, 0.0323397, 0.000224582 +103, 5.77313, 58.2108, 29892.5, 12.242, 0.129376, 0.0336679, 0.000233805 +104, 5.25086, 62.7383, 30271.6, 12.4478, 0.133226, 0.0343867, 0.000238797 +105, 5.66782, 64.6142, 31684.5, 12.316, 0.13086, 0.0335964, 0.000233308 +106, 5.92852, 65.7166, 34971.9, 12.4407, 0.132601, 0.0328281, 0.000227973 +107, 6.82102, 52.9508, 28631.3, 12.2771, 0.129823, 0.0323589, 0.000224714 +108, 6.95916, 56.3989, 31141.9, 12.2381, 0.129649, 0.0318856, 0.000221428 +109, 7.1853, 49.4253, 32585.1, 12.2457, 0.129471, 0.0314281, 0.00021826 +110, 5.9419, 72.4948, 29495.8, 12.2724, 0.130147, 0.0334748, 0.000232466 +111, 6.99459, 63.704, 31071.8, 12.0237, 0.125263, 0.0318469, 0.00022116 +112, 5.06547, 69.3559, 32492.3, 12.317, 0.131003, 0.034377, 0.000238729 +113, 5.78366, 64.5655, 26154.2, 12.5299, 0.134692, 0.0341241, 0.000236973 +114, 5.76754, 53.8396, 29834.5, 12.444, 0.132616, 0.0336832, 0.000233912 +115, 6.2387, 50.7513, 29994.2, 12.6479, 0.136314, 0.0329954, 0.000229135 +116, 5.86238, 51.1078, 29555.5, 12.4382, 0.132467, 0.0335814, 0.000233205 +117, 6.18572, 51.5894, 29842.6, 12.4942, 0.133958, 0.0330877, 0.000229776 +118, 6.57331, 56.5721, 25309.1, 12.3411, 0.131235, 0.0330942, 0.000229823 +119, 5.20684, 59.6933, 29482.1, 12.5381, 0.135069, 0.0345552, 0.000239968 +120, 6.48093, 53.6134, 28922.9, 12.1868, 0.128106, 0.0327881, 0.000227696 +121, 5.43164, 59.0196, 23232.6, 12.2398, 0.130274, 0.0350362, 0.00024331 +122, 6.26958, 55.9512, 26346, 12.2197, 0.129604, 0.0333963, 0.000231919 +123, 5.44866, 65.488, 26436.8, 11.9043, 0.125582, 0.0345876, 0.000240191 +124, 5.14058, 56.6187, 33599.4, 12.3477, 0.132087, 0.0341231, 0.000236966 +125, 5.62506, 61.1289, 27850, 11.7823, 0.123464, 0.0341418, 0.000237096 +126, 6.43012, 57.1252, 26815.1, 12.2099, 0.129358, 0.0331123, 0.000229947 +127, 6.34872, 53.2331, 27758.9, 12.2915, 0.13006, 0.0331119, 0.000229944 +128, 6.5665, 61.5023, 33609.5, 12.1831, 0.128189, 0.0321225, 0.000223071 +129, 6.90372, 50.2507, 27240.7, 12.214, 0.129049, 0.0324097, 0.000225065 +130, 7.44226, 67.258, 29050.8, 12.3848, 0.131559, 0.0314922, 0.000218698 +131, 5.00649, 61.7807, 26681.1, 12.216, 0.129956, 0.0352335, 0.000244679 +132, 6.39257, 70.8792, 29700.1, 12.2712, 0.130285, 0.0328172, 0.000227898 +133, 5.94816, 60.4992, 29930.1, 11.9171, 0.123762, 0.0334124, 0.00023203 +134, 6.21356, 56.8236, 25556.7, 12.1945, 0.129273, 0.0335738, 0.000233153 +135, 5.95788, 60.58, 27006.6, 12.0979, 0.128075, 0.0337617, 0.000234456 +136, 4.86739, 58.3601, 34273.8, 12.0483, 0.127394, 0.0344429, 0.000239188 +137, 6.11317, 65.055, 31599.4, 12.6577, 0.135933, 0.0329768, 0.000229005 +138, 6.38976, 67.7024, 35262.1, 12.3744, 0.131359, 0.0321674, 0.000223386 +139, 6.39374, 50.9141, 28764.5, 12.55, 0.13397, 0.0329277, 0.000228665 +140, 6.73881, 71.1455, 25958.1, 12.2583, 0.129845, 0.0327867, 0.000227681 +141, 5.88825, 54.0871, 29386.6, 12.199, 0.128628, 0.0335652, 0.000233092 +142, 6.45216, 56.2019, 29619.8, 12.0124, 0.125761, 0.0327446, 0.000227394 +143, 5.90969, 53.0667, 28038.3, 12.3642, 0.130998, 0.0337023, 0.000234044 +144, 6.45109, 62.4197, 26361.6, 11.8902, 0.124266, 0.033138, 0.000230123 +145, 5.58012, 56.5044, 29132.2, 11.8535, 0.124628, 0.0340446, 0.000236422 +146, 5.96576, 68.2666, 29903.2, 12.3324, 0.131528, 0.0333907, 0.00023188 +147, 5.96811, 72.1953, 25768.1, 12.2779, 0.130397, 0.0339022, 0.000235438 +148, 5.57891, 58.6265, 30461.5, 12.5313, 0.134942, 0.0338781, 0.000235265 +149, 5.74695, 57.8, 27361.8, 11.7308, 0.123124, 0.0340245, 0.000236281 +150, 6.62076, 67.166, 31180.1, 12.3192, 0.130838, 0.0323314, 0.000224524 +151, 6.10713, 60.0321, 29167.3, 12.6987, 0.134795, 0.0332805, 0.000231115 +152, 6.94497, 55.3757, 28806.2, 12.2504, 0.129642, 0.0321723, 0.000223419 +153, 4.82854, 61.8179, 27514.2, 12.2143, 0.130066, 0.0353995, 0.000245832 +154, 6.19991, 71.6375, 31190.4, 12.2215, 0.129378, 0.0329054, 0.00022851 +155, 5.62239, 54.0543, 33206.8, 12.5095, 0.133751, 0.0334728, 0.00023245 +156, 6.31069, 58.5721, 30528.7, 12.2201, 0.129361, 0.0328312, 0.000227995 +157, 5.90173, 57.4295, 30878, 12.045, 0.127887, 0.0333618, 0.000231679 +158, 6.06258, 60.5542, 27672.1, 11.881, 0.124496, 0.033528, 0.000232833 +159, 5.40018, 63.656, 28363.3, 12.0333, 0.12736, 0.0344101, 0.000238959 +160, 5.37857, 52.7878, 36288.5, 12.3474, 0.131612, 0.0334404, 0.00023223 +161, 4.33217, 73.6515, 29266.1, 12.1604, 0.12936, 0.0359528, 0.000249625 +162, 6.29009, 57.5858, 30488.5, 12.2314, 0.129566, 0.0328645, 0.000228226 +163, 6.93748, 71.3356, 29362, 12.2453, 0.12942, 0.032118, 0.000223043 +164, 5.78847, 56.1454, 35542.6, 12.3736, 0.131768, 0.0329538, 0.000228847 +165, 5.57142, 64.7887, 30351.2, 12.3151, 0.131214, 0.033903, 0.000235438 +166, 5.8445, 65.4473, 24698.7, 12.3862, 0.13226, 0.0342203, 0.00023764 +167, 6.91226, 63.1035, 33414.1, 12.3062, 0.130205, 0.0316896, 0.000220063 +168, 6.63748, 63.7667, 34368.4, 12.3233, 0.130542, 0.0319413, 0.000221813 +169, 5.71026, 56.2334, 27628.4, 11.85, 0.125349, 0.0340445, 0.00023642 +170, 6, 63.739, 28087.7, 12.3342, 0.131996, 0.0335662, 0.000233098 +171, 6.986, 49.0638, 26974.7, 12.1981, 0.12898, 0.0323296, 0.000224508 +172, 5.62387, 63.8414, 28773.2, 11.9971, 0.126959, 0.034026, 0.000236291 +173, 6.59092, 58.5779, 25228.2, 12.3936, 0.131836, 0.0330794, 0.000229719 +174, 5.44762, 70.0935, 31271.1, 12.3793, 0.131311, 0.0339678, 0.000235887 +175, 5.23476, 54.7798, 29393.1, 12.4979, 0.134729, 0.0345248, 0.000239757 +176, 6.36884, 69.2533, 31519, 12.2628, 0.129884, 0.0326335, 0.000226622 +177, 5.74346, 65.0332, 31049.3, 12.4793, 0.133294, 0.0335667, 0.000233102 +178, 6.81948, 56.9498, 27858.4, 12.314, 0.131037, 0.0324514, 0.000225357 +179, 6.29296, 55.2663, 31642.4, 12.3796, 0.13215, 0.0327228, 0.000227242 +180, 6.1593, 54.8582, 28996.9, 11.7415, 0.122416, 0.0332276, 0.000230748 +181, 6.04366, 57.6428, 30403.4, 12.3252, 0.131713, 0.0332191, 0.000230688 +182, 5.9064, 54.9647, 30419.2, 11.9846, 0.126571, 0.0334116, 0.000232025 +183, 5.58219, 60.0072, 25002.4, 12.1533, 0.12853, 0.0345732, 0.000240092 +184, 6.84353, 56.3241, 28687.1, 12.2507, 0.129784, 0.0323221, 0.000224459 +185, 6.33985, 62.371, 29808.7, 12.533, 0.1331, 0.0328771, 0.000228313 +186, 6.04565, 67.0542, 33701.6, 12.3242, 0.130984, 0.0328182, 0.000227904 +187, 5.6541, 59.5288, 32834.1, 12.4065, 0.132908, 0.0334735, 0.000232455 +188, 5.99501, 62.7464, 30033, 11.5699, 0.119726, 0.0333333, 0.00023148 +189, 5.01826, 67.1836, 31612.3, 12.405, 0.131651, 0.0345619, 0.000240014 +190, 6.06867, 53.9725, 30365.1, 12.0238, 0.127391, 0.0331885, 0.000230476 +191, 6.37496, 56.0423, 32523.7, 12.3421, 0.131128, 0.0325066, 0.00022574 +192, 5.18848, 47.8552, 28719, 12.2345, 0.130371, 0.0346825, 0.000240857 +193, 5.49206, 61.0188, 27058.4, 12.0275, 0.1271, 0.0344415, 0.000239177 +194, 6.095, 58.3453, 29489.3, 12.6753, 0.135575, 0.0332583, 0.00023096 +195, 6.59424, 60.3603, 28995.7, 12.0552, 0.126542, 0.0326239, 0.000226555 +196, 6.24771, 57.2027, 28210.8, 12.2172, 0.129673, 0.0331989, 0.000230548 +197, 6.42679, 50.4883, 28739.7, 12.5309, 0.133764, 0.0328849, 0.000228367 +198, 6.81533, 64.6378, 32854.9, 12.3483, 0.130985, 0.0318796, 0.000221385 +199, 5.22463, 60.7107, 33334.8, 12.5327, 0.134634, 0.034033, 0.00023634 +200, 4.93493, 54.57, 31717.9, 12.3201, 0.131718, 0.0346743, 0.000240791 +201, 5.57259, 74.5403, 32053.9, 12.2871, 0.130464, 0.0336878, 0.000233941 +202, 5.45749, 58.5155, 29731.6, 12.4969, 0.134842, 0.034149, 0.000237146 +203, 6.03122, 67.7811, 29709.3, 12.34, 0.131834, 0.0333216, 0.0002314 +204, 7.6954, 64.7225, 31429.6, 12.2387, 0.129006, 0.0309095, 0.000214654 +205, 6.14462, 67.0429, 28553.3, 12.3412, 0.132211, 0.0333027, 0.000231268 +206, 6.5933, 68.0203, 26628.4, 12.3099, 0.130728, 0.0329075, 0.000228521 +207, 5.84135, 53.5311, 32004.8, 12.4942, 0.133569, 0.0333092, 0.000231314 +208, 6.0344, 59.8926, 28843, 12.5263, 0.132484, 0.0334236, 0.000232108 +209, 6.64775, 64.5025, 31815.9, 12.316, 0.130157, 0.0322212, 0.000223759 +210, 5.52033, 56.1903, 29278.4, 12.0393, 0.127577, 0.034114, 0.000236904 +211, 6.53453, 68.4019, 30897.8, 12.278, 0.130249, 0.032481, 0.000225562 +212, 6.22489, 58.6901, 31920.5, 12.4714, 0.134168, 0.0327834, 0.000227663 +213, 5.40748, 51.6784, 33427.8, 12.3129, 0.131168, 0.0337544, 0.000234405 +214, 6.6994, 59.3814, 34758.3, 12.3222, 0.130464, 0.0318155, 0.000220938 +215, 5.88341, 71.7983, 27517.8, 12.2903, 0.130407, 0.0338054, 0.000234763 +216, 6.86911, 51.018, 36058.1, 12.3447, 0.130931, 0.0314473, 0.000218395 +217, 6.8751, 60.5271, 30220.8, 12.2682, 0.129848, 0.0321022, 0.000222933 +218, 6.54343, 59.982, 30537.2, 11.9305, 0.123925, 0.0325113, 0.000225773 +219, 5.67941, 67.4956, 31927.6, 12.5362, 0.133516, 0.0335496, 0.000232983 +220, 6.75186, 54.7225, 29043.4, 12.1483, 0.127949, 0.0324041, 0.000225029 +221, 6.41895, 61.4007, 28796.9, 12.1284, 0.127216, 0.0328889, 0.000228395 +222, 5.89133, 61.6903, 32630.8, 11.9522, 0.125154, 0.0331623, 0.000230293 +223, 5.88352, 42.0755, 34388.7, 12.271, 0.130415, 0.032961, 0.00022889 +224, 5.96454, 55.4294, 31785, 12.3798, 0.132609, 0.0331622, 0.000230293 +225, 6.22879, 58.3275, 28475.3, 12.4316, 0.1326, 0.0331933, 0.000230509 +226, 6.96716, 65.1124, 27052, 12.2751, 0.130073, 0.0323464, 0.000224623 +227, 5.95682, 57.7249, 27714.5, 11.7188, 0.122325, 0.0336747, 0.000233852 +228, 6.18788, 59.9678, 25147.2, 12.2007, 0.129249, 0.0336617, 0.000233762 +229, 6.2678, 66.946, 27328.5, 12.4126, 0.13239, 0.0332784, 0.000231099 +230, 5.95476, 58.1672, 30212.6, 12.3395, 0.131289, 0.0333683, 0.000231724 +231, 5.45775, 48.7588, 28458.8, 12.241, 0.13031, 0.0343116, 0.00023828 +232, 6.58032, 63.8807, 30795.8, 12.264, 0.128941, 0.0324309, 0.000225215 +233, 5.79945, 68.7467, 31441.5, 12.3517, 0.131553, 0.0334381, 0.000232209 +234, 6.61183, 62.1995, 25422.2, 12.1902, 0.128755, 0.0330269, 0.000229351 +235, 6.35571, 59.9437, 24854.6, 12.1759, 0.128767, 0.0334574, 0.000232343 +236, 6.82554, 61.0374, 30067.8, 12.2402, 0.12942, 0.0321859, 0.000223514 +237, 6.6271, 66.0597, 28625.6, 12.1267, 0.12805, 0.0326228, 0.000226546 +238, 5.96271, 66.0698, 28388.8, 12.3065, 0.131618, 0.0335823, 0.00023321 +239, 5.92666, 57.6355, 29398.3, 12.3144, 0.130041, 0.0335088, 0.0002327 +240, 5.80825, 75.3214, 30966.5, 12.277, 0.130238, 0.0334841, 0.000232528 +241, 6.07795, 60.1868, 34645.7, 12.0665, 0.126302, 0.0326612, 0.000226814 +242, 6.60182, 58.4675, 33518.2, 12.067, 0.1261, 0.032086, 0.000222818 +243, 5.88707, 63.0264, 33376.5, 12.0913, 0.12754, 0.0330777, 0.000229706 +244, 5.78231, 64.1844, 29232.6, 12.0635, 0.127998, 0.0337372, 0.000234285 +245, 6.01629, 64.6826, 34592.3, 12.3837, 0.131641, 0.0327523, 0.000227446 +246, 5.66115, 57.2632, 35777.3, 12.3631, 0.131596, 0.0331032, 0.000229885 +247, 5.1018, 78.1759, 30628.1, 12.2273, 0.129814, 0.034566, 0.000240016 +248, 5.71159, 66.6542, 27944.1, 12.2388, 0.130084, 0.0340025, 0.000236128 +249, 6.01065, 63.3837, 31285.9, 12.2323, 0.129298, 0.0331581, 0.000230264 +250, 5.87187, 60.4386, 35876.6, 12.3031, 0.130342, 0.0327982, 0.000227765 +251, 6.44178, 61.7299, 26703.9, 11.7729, 0.122613, 0.0331095, 0.000229926 +252, 5.81713, 63.402, 28726.6, 12.0106, 0.127006, 0.0337501, 0.000234375 +253, 6.33694, 63.2456, 32650.8, 12.3333, 0.131291, 0.0325433, 0.000225995 +254, 6.25074, 50.8656, 27200.7, 12.04, 0.127152, 0.0333181, 0.000231376 +255, 5.76092, 62.7136, 27803.5, 12.1869, 0.129643, 0.0339481, 0.00023575 +256, 5.2927, 59.267, 32959.5, 12.703, 0.13745, 0.0339807, 0.000235977 +257, 7.13407, 66.1437, 31535.1, 12.2088, 0.128394, 0.0316126, 0.000219532 +258, 5.41225, 61.413, 25106.6, 12.2393, 0.130248, 0.0348174, 0.000241788 +259, 5.8027, 56.3909, 30603.6, 12.0309, 0.127235, 0.0335369, 0.000232895 +260, 6.27239, 52.7201, 33337.2, 12.3878, 0.132575, 0.0325503, 0.000226044 +261, 5.64211, 50.0482, 34076, 12.3218, 0.131292, 0.0333377, 0.000231511 +262, 5.31861, 66.1029, 26128.4, 11.85, 0.124807, 0.0348255, 0.000241844 +263, 6.23317, 57.8053, 25062, 12.2048, 0.129384, 0.0336071, 0.000233384 +264, 6.37801, 54.1614, 28701.8, 12.1414, 0.127685, 0.0329571, 0.000228869 +265, 6.01377, 60.0577, 32240.9, 12.0979, 0.127429, 0.0330379, 0.00022943 +266, 5.07508, 58.8902, 22219.8, 12.2325, 0.130618, 0.035733, 0.000248156 +267, 5.541, 61.1417, 23434.9, 12.2436, 0.130144, 0.0348415, 0.000241956 +268, 5.41639, 64.3611, 26234.1, 12.0362, 0.127413, 0.0346629, 0.000240715 +269, 6.08036, 63.6643, 30312.1, 12.222, 0.129608, 0.0331786, 0.000230406 +270, 7.25598, 55.1241, 31999.3, 12.0198, 0.126139, 0.0314037, 0.000218081 +271, 7.1995, 58.2441, 33033.8, 12.2174, 0.128925, 0.0313615, 0.000217783 +272, 5.65751, 60.6434, 31002.9, 11.8426, 0.123792, 0.0336962, 0.000234001 +273, 6.5033, 57.8896, 28018.4, 12.3076, 0.130965, 0.0328653, 0.000228232 +274, 5.63013, 47.9551, 28030.2, 12.2403, 0.130225, 0.0341111, 0.000236887 +275, 6.17989, 63.5763, 34248.6, 12.2234, 0.129011, 0.0325689, 0.000226173 +276, 5.03586, 63.5411, 29090.6, 12.2644, 0.130521, 0.0348663, 0.000242129 +277, 5.18516, 69.8265, 34048.6, 12.3159, 0.131077, 0.0340006, 0.000236114 +278, 6.30674, 54.7607, 26302.3, 12.2585, 0.130154, 0.0333488, 0.00023159 +279, 4.87738, 58.7325, 29213.8, 12.2711, 0.130987, 0.0350941, 0.00024371 +280, 6.32385, 57.4474, 26101.7, 12.127, 0.128046, 0.0333492, 0.000231593 +281, 6.4034, 62.781, 32737.2, 12.3163, 0.13077, 0.0324429, 0.000225298 +282, 6.98709, 47.4508, 31466.3, 12.2507, 0.129687, 0.0318111, 0.000220917 +283, 6.19624, 61.9939, 27734.3, 12.0217, 0.127393, 0.0333299, 0.000231457 +284, 5.61947, 60.6146, 23569.5, 12.2259, 0.129548, 0.0347043, 0.000241003 +285, 6.32549, 69.4963, 36899.3, 12.399, 0.131695, 0.032064, 0.000222676 +286, 4.96966, 53.7472, 31340.9, 12.3943, 0.13291, 0.034671, 0.000240769 +287, 5.92086, 70.0072, 27477.2, 12.3253, 0.130899, 0.0337563, 0.00023442 +288, 4.60626, 60.5205, 22651.2, 12.1932, 0.130246, 0.0364345, 0.000253029 +289, 4.89216, 64.2122, 31017, 12.321, 0.131114, 0.0348315, 0.000241886 +290, 6.26398, 63.1786, 28091.8, 12.1727, 0.129663, 0.0331906, 0.000230489 +291, 5.38673, 63.9924, 27317.6, 12.0626, 0.127702, 0.0345661, 0.000240043 +292, 5.75018, 65.7684, 29533, 12.5549, 0.135205, 0.0337461, 0.000234347 +293, 5.6762, 72.425, 32340.3, 12.2994, 0.130632, 0.0335032, 0.000232661 +294, 5.59315, 59.8659, 27789.3, 11.5994, 0.12055, 0.0341967, 0.000237477 +295, 6.40077, 54.0581, 28929.9, 12.1249, 0.127396, 0.0328981, 0.000228459 +296, 6.46375, 57.4737, 32259.1, 12.1328, 0.127619, 0.0324172, 0.00022512 +297, 7.00777, 67.3837, 31307.6, 12.3754, 0.131448, 0.0318028, 0.000220853 +298, 6.67245, 55.3564, 24604.6, 12.3112, 0.130793, 0.0330407, 0.000229453 +299, 5.27223, 53.8688, 33880.5, 12.2975, 0.13102, 0.0338942, 0.000235376 +300, 5.98434, 46.6725, 32664.5, 12.3243, 0.131094, 0.0330281, 0.00022936 +301, 5.40117, 56.7509, 27448.4, 12.2563, 0.130632, 0.0345273, 0.000239774 +302, 6.73258, 56.8899, 27569.5, 12.3035, 0.130899, 0.0326036, 0.000226414 +303, 7.21204, 59.9336, 30814.2, 12.2282, 0.129001, 0.0315926, 0.000219394 +304, 5.9111, 56.7183, 33978.2, 12.4595, 0.132673, 0.0329715, 0.000228969 +305, 5.90862, 52.3663, 26500.3, 12.2098, 0.129749, 0.0338969, 0.000235395 +306, 5.62834, 53.3793, 26755.7, 12.2846, 0.131226, 0.0342771, 0.000238036 +307, 5.50542, 66.4018, 31125, 12.4779, 0.132519, 0.0339017, 0.000235429 +308, 6.54947, 64.3536, 29550.1, 11.9463, 0.124811, 0.0326195, 0.000226524 +309, 5.83776, 56.002, 32575.7, 12.5261, 0.134083, 0.0332444, 0.000230864 +310, 5.76, 71.9585, 34858.6, 12.3441, 0.131166, 0.0330763, 0.000229697 +311, 4.74097, 56.4218, 28823.6, 12.2281, 0.130421, 0.0353596, 0.000245553 +312, 5.48155, 55.957, 28240.3, 11.9763, 0.126857, 0.0343045, 0.000238227 +313, 5.7786, 59.3643, 37950.4, 12.4171, 0.132326, 0.0326803, 0.000226943 +314, 5.60277, 61.4656, 28245.3, 11.7655, 0.123338, 0.0341243, 0.000236974 +315, 4.92159, 66.7858, 29646.5, 12.2683, 0.130413, 0.034968, 0.000242834 +316, 5.60886, 62.8341, 31156.5, 11.8209, 0.123502, 0.0337473, 0.000234356 +317, 6.10969, 55.01, 26399.1, 12.1662, 0.129014, 0.0336184, 0.000233461 +318, 5.51566, 57.7703, 23516.2, 12.2183, 0.129694, 0.0348694, 0.00024215 +319, 5.7757, 63.8611, 32725.4, 12.17, 0.128969, 0.033314, 0.000231347 +320, 5.42217, 61.554, 34018, 12.4703, 0.133077, 0.0336594, 0.000233746 +321, 6.84099, 65.3577, 32530.4, 12.3833, 0.131607, 0.0318828, 0.000221408 +322, 6.27205, 52.4134, 27303.2, 12.1357, 0.128232, 0.0332754, 0.000231079 +323, 5.29959, 55.6495, 25920.7, 12.5315, 0.134775, 0.0348821, 0.000242237 +324, 5.51744, 60.2784, 32701.7, 12.5264, 0.134607, 0.0336862, 0.000233932 +325, 6.7352, 52.487, 25647.3, 12.0622, 0.126593, 0.0328283, 0.000227976 +326, 7.08374, 56.1139, 29411, 12.2575, 0.129627, 0.0319189, 0.000221659 +327, 5.74885, 60.2939, 36008.5, 12.3621, 0.131339, 0.0329528, 0.000228839 +328, 6.42348, 52.4705, 30831.6, 12.458, 0.1337, 0.0326401, 0.000226668 +329, 6.20907, 66.4839, 30613.9, 12.6604, 0.13548, 0.032962, 0.000228902 +330, 5.85561, 57.983, 32204, 12.3038, 0.131289, 0.0332646, 0.000231004 +331, 5.9157, 55.9048, 35725.4, 12.4033, 0.132118, 0.0327558, 0.000227472 +332, 6.42463, 70.6531, 31347.4, 12.1658, 0.128266, 0.0325775, 0.000226233 +333, 5.46973, 62.0571, 30632, 12.0012, 0.126313, 0.0340163, 0.000236224 +334, 5.97038, 51.2172, 29751.4, 12.3718, 0.131787, 0.0334028, 0.000231965 +335, 6.07642, 69.005, 25019.9, 12.3321, 0.131194, 0.033839, 0.000234993 +336, 5.6108, 58.3099, 24933.2, 12.0529, 0.127039, 0.034539, 0.000239855 +337, 6.44657, 58.703, 29768.7, 12.0416, 0.125583, 0.0327346, 0.000227324 +338, 5.15188, 61.9331, 35229.3, 12.4327, 0.132713, 0.0338997, 0.000235415 +339, 6.43794, 59.6566, 32246.6, 12.1794, 0.128796, 0.0324536, 0.000225372 +340, 5.5192, 63.9422, 30708.6, 11.9374, 0.125691, 0.0339342, 0.000235654 +341, 5.56212, 63.7739, 29681.1, 11.912, 0.125309, 0.0340014, 0.000236121 +342, 6.16223, 50.7202, 24108.1, 12.2441, 0.130248, 0.0338285, 0.000234921 +343, 5.17389, 71.3871, 32696.2, 12.2952, 0.130753, 0.0341896, 0.000237426 +344, 6.76957, 65.8393, 33509.6, 12.3709, 0.13143, 0.0318653, 0.000221285 +345, 7.56178, 68.6797, 30981.4, 12.246, 0.129138, 0.0311259, 0.00021616 +346, 5.52995, 61.6516, 31372.9, 12.1948, 0.129187, 0.0338347, 0.000234963 +347, 6.10316, 57.7041, 29366.5, 12.4945, 0.13325, 0.0332617, 0.000230984 +348, 7.27086, 65.567, 30825.4, 12.0475, 0.125621, 0.0315151, 0.000218857 +349, 5.98314, 72.7909, 29335.4, 12.2745, 0.130181, 0.0334358, 0.000232195 +350, 6.28207, 50.2291, 24895.7, 12.2361, 0.130047, 0.0335574, 0.000233037 +351, 5.71429, 67.4328, 33194.2, 12.2926, 0.130686, 0.0333436, 0.000231553 +352, 5.6044, 54.3412, 31253.6, 12.4212, 0.132493, 0.0337416, 0.000234317 +353, 6.0245, 58.4533, 33546.8, 12.3983, 0.131453, 0.0328658, 0.000228235 +354, 4.27284, 66.8506, 32681.9, 12.2062, 0.130027, 0.0355723, 0.000247034 +355, 5.13803, 65.0146, 23044.5, 12.3033, 0.131757, 0.0355204, 0.00024667 +356, 5.75503, 68.4798, 26646.7, 12.2175, 0.129671, 0.0341035, 0.000236831 +357, 6.89124, 66.6432, 32952.7, 12.4278, 0.132382, 0.031769, 0.000220617 +358, 5.97922, 69.4036, 28349.7, 12.3256, 0.130993, 0.0335634, 0.00023308 +359, 6.91579, 48.0713, 26068.8, 12.2008, 0.129157, 0.0325307, 0.000225903 +360, 5.82258, 67.9046, 32921.9, 12.3104, 0.130876, 0.0332237, 0.00023072 +361, 5.84273, 63.6154, 29470.5, 11.7879, 0.123784, 0.0336203, 0.000233473 +362, 6.24283, 61.3777, 31392.2, 12.6951, 0.138036, 0.0328218, 0.000227929 +363, 6.64119, 54.4796, 28264.6, 12.2633, 0.12928, 0.0326462, 0.00022671 +364, 6.36987, 58.9067, 31221.8, 12.2324, 0.130141, 0.0326672, 0.000226856 +365, 5.87414, 66.2302, 27877.7, 12.3124, 0.131242, 0.0337739, 0.00023454 +366, 5.54713, 62.3179, 32015.1, 12.2606, 0.130613, 0.0337292, 0.00023423 +367, 6.25819, 55.9885, 28301.5, 12.0567, 0.127126, 0.0331731, 0.000230369 +368, 5.50042, 61.5812, 27275.1, 11.9991, 0.126739, 0.0344009, 0.000238895 +369, 6.45903, 56.4385, 31708.9, 12.2498, 0.129718, 0.0324882, 0.000225612 +370, 6.80915, 55.765, 26797.8, 12.2083, 0.129051, 0.0325902, 0.000226322 +371, 5.72938, 59.2155, 26759.9, 11.9366, 0.126012, 0.034127, 0.000236993 +372, 6.55622, 59.8196, 30992.1, 11.9751, 0.124858, 0.0324405, 0.000225282 +373, 5.24525, 66.7161, 27163.9, 12.0249, 0.127055, 0.0348009, 0.000241672 +374, 5.34351, 67.7563, 30942.6, 12.37, 0.130112, 0.0341627, 0.000237241 +375, 5.86422, 52.2128, 31653.7, 12.478, 0.133294, 0.0333199, 0.000231388 +376, 6.08502, 63.4083, 28592.5, 12.41, 0.13324, 0.0333824, 0.000231821 +377, 5.84947, 59.862, 25761.3, 12.2203, 0.129993, 0.0340772, 0.000236647 +378, 6.13597, 68.0972, 30440, 12.3675, 0.131743, 0.033085, 0.000229757 +379, 6.10127, 65.8809, 26418.2, 12.4186, 0.132518, 0.0336282, 0.000233528 +380, 6.39857, 59.5928, 31021.7, 12.2059, 0.129544, 0.0326517, 0.000226748 +381, 5.27714, 60.2467, 30868.9, 12.9832, 0.141273, 0.0342705, 0.00023799 +382, 7.32256, 66.9608, 30764.2, 12.1926, 0.128208, 0.0314552, 0.000218442 +383, 5.76646, 48.6384, 31210.1, 12.4777, 0.133169, 0.0335138, 0.000232735 +384, 6.60563, 66.3363, 25627.1, 12.2711, 0.130143, 0.0330109, 0.000229237 +385, 6.48628, 49.5523, 31832.2, 12.338, 0.131723, 0.0324367, 0.000225255 +386, 6.01049, 64.0902, 31509.7, 12.3836, 0.131865, 0.0331312, 0.000230077 +387, 5.34799, 58.589, 29961.1, 12.7854, 0.139124, 0.0342819, 0.000238069 +388, 7.53913, 67.2883, 31400, 12.2444, 0.129089, 0.0311089, 0.000216039 +389, 6.45365, 61.4559, 23879.7, 12.2679, 0.130321, 0.033438, 0.000232207 +390, 6.18473, 55.2344, 34519, 12.6596, 0.135679, 0.0325304, 0.000225906 +391, 6.88023, 62.5661, 34318.3, 12.3238, 0.130473, 0.0316294, 0.000219644 +392, 5.71442, 60.6749, 27660.4, 11.8459, 0.124307, 0.0340344, 0.000236349 +393, 5.09134, 63.1171, 32550.4, 12.1979, 0.129615, 0.0343307, 0.000238408 +394, 6.083, 61.051, 27987.9, 12.0792, 0.127234, 0.0334598, 0.000232359 +395, 5.81123, 61.7481, 33107.8, 12.1499, 0.128785, 0.0332169, 0.000230673 +396, 6.49381, 62.9547, 30613.2, 12.3363, 0.129904, 0.0325698, 0.00022618 +397, 5.32712, 48.1418, 24538.3, 12.2073, 0.130103, 0.0350228, 0.00024321 +398, 5.22944, 57.4236, 31475.8, 12.6381, 0.136494, 0.0342634, 0.00023794 +399, 5.61508, 67.8306, 27929, 12.2108, 0.129443, 0.0341464, 0.000237128 +400, 5.89371, 65.3961, 27815.3, 12.3415, 0.13184, 0.0337534, 0.000234398 +401, 6.05039, 60.9035, 28130.5, 12.1258, 0.127591, 0.0334887, 0.00023256 +402, 5.42597, 60.5908, 33643, 12.5225, 0.134233, 0.0337008, 0.000234033 +403, 5.8311, 58.0676, 31122.6, 12.0282, 0.127473, 0.0334322, 0.000232168 +404, 5.70446, 55.2557, 35443.6, 12.3644, 0.131748, 0.033083, 0.000229745 +405, 4.88797, 62.1618, 32214.5, 12.2009, 0.129364, 0.0346803, 0.000240835 +406, 5.79318, 51.8861, 31289.9, 12.4625, 0.133028, 0.0334657, 0.000232401 +407, 5.72475, 59.4447, 33864.1, 12.358, 0.131955, 0.0332466, 0.00023088 +408, 6.5603, 57.8369, 28225.8, 12.2774, 0.13041, 0.0327619, 0.000227514 +409, 5.83505, 49.7089, 24670.2, 12.2359, 0.130254, 0.0342377, 0.000237759 +410, 5.03472, 64.7382, 28334.1, 12.2121, 0.129697, 0.0349685, 0.000242838 +411, 7.23002, 60.4774, 29300.5, 12.3018, 0.13039, 0.0317396, 0.000220414 +412, 6.30044, 61.9717, 29509, 12.6102, 0.133981, 0.0329679, 0.000228943 +413, 7.00307, 61.8871, 32216.8, 12.1875, 0.128168, 0.0317063, 0.000220181 +414, 5.87789, 57.8786, 32885.3, 12.4262, 0.132721, 0.0331502, 0.000230209 +415, 5.75741, 58.5515, 26779.4, 11.8683, 0.125098, 0.0340832, 0.000236688 +416, 5.78593, 54.9858, 29194.5, 12.2914, 0.130201, 0.0337366, 0.000234282 +417, 4.97839, 70.334, 32122.3, 12.284, 0.130679, 0.0345558, 0.00023997 +418, 5.55818, 60.2209, 28188.4, 11.5935, 0.120536, 0.0341974, 0.000237482 +419, 4.64928, 52.3223, 31383.6, 12.2301, 0.130423, 0.0351576, 0.00024414 +420, 6.66593, 54.8646, 29598.6, 12.1356, 0.127949, 0.0324553, 0.000225385 +421, 5.21685, 62.9695, 28691.1, 12.211, 0.1298, 0.0346434, 0.00024058 +422, 6.26194, 55.3996, 26722.6, 12.2287, 0.129727, 0.0333608, 0.000231673 +423, 4.71924, 49.2483, 27532.9, 12.1772, 0.129799, 0.0355699, 0.00024701 +424, 6.97113, 61.805, 33072.8, 12.2589, 0.129406, 0.0316514, 0.000219799 +425, 5.6975, 57.1859, 28316.1, 11.5218, 0.119667, 0.033976, 0.000235944 +426, 6.14283, 54.3933, 26032, 12.2136, 0.12969, 0.0336163, 0.000233448 +427, 5.93199, 61.871, 25989, 12.7715, 0.138417, 0.0339274, 0.000235606 +428, 6.29862, 65.4387, 27442.3, 12.2337, 0.130161, 0.033221, 0.0002307 +429, 5.99161, 65.2014, 28755.8, 12.2625, 0.131737, 0.0334955, 0.000232607 +430, 6.38256, 56.8863, 25891.1, 12.1921, 0.129053, 0.0332918, 0.000231194 +431, 6.517, 57.9246, 30048.8, 11.976, 0.124774, 0.0326049, 0.000226423 +432, 6.20345, 54.4952, 26280.3, 12.222, 0.129735, 0.0334986, 0.00023263 +433, 6.25264, 56.3556, 32388.5, 12.4596, 0.133163, 0.0326896, 0.000227011 +434, 6.24183, 48.9839, 23982.1, 12.2365, 0.130128, 0.0337288, 0.000234227 +435, 6.69618, 55.0372, 28116.8, 12.2603, 0.129532, 0.0325886, 0.00022631 +436, 5.51387, 69.5943, 28915.5, 12.219, 0.128954, 0.0341699, 0.000237291 +437, 5.35754, 53.4939, 27572.2, 12.289, 0.131189, 0.0345769, 0.000240119 +438, 7.01655, 55.1131, 32324.4, 11.8775, 0.124221, 0.0316766, 0.000219976 +439, 5.65627, 46.1334, 28833.7, 12.2313, 0.130086, 0.0339706, 0.000235914 +440, 6.10475, 51.7462, 26586.2, 12.1539, 0.128833, 0.0336022, 0.000233349 +441, 6.48196, 65.599, 27731, 12.1517, 0.128668, 0.0329295, 0.000228675 +442, 6.33264, 65.2003, 29066.2, 12.308, 0.131891, 0.0329764, 0.000229002 +443, 6.43347, 68.2103, 28858.6, 12.3208, 0.131772, 0.0328614, 0.000228204 +444, 6.70685, 60.7487, 33835.6, 12.1778, 0.128038, 0.0319107, 0.0002216 +445, 5.74565, 58.6512, 34615.7, 12.3471, 0.13135, 0.0331256, 0.00023004 +446, 5.42339, 61.218, 29719, 12.2316, 0.130482, 0.034201, 0.000237508 +447, 5.86027, 68.3726, 27918.9, 12.3093, 0.13076, 0.0337888, 0.000234645 +448, 5.67676, 60.023, 27704.9, 11.6739, 0.121673, 0.0340841, 0.000236695 +449, 7.19261, 55.4616, 32168.1, 11.9464, 0.1251, 0.0314664, 0.000218515 +450, 5.8188, 61.0778, 29821.7, 11.6286, 0.12003, 0.033611, 0.000233409 +451, 5.9608, 51.9964, 21783, 12.2517, 0.130582, 0.0344217, 0.000239042 +452, 6.55527, 64.4427, 39242.3, 12.4508, 0.132396, 0.0314981, 0.000218752 +453, 6.66763, 64.0478, 29454.7, 11.9492, 0.12491, 0.0324699, 0.000225485 +454, 5.0123, 59.7304, 23196, 12.2352, 0.130649, 0.0356988, 0.000247915 +455, 6.04707, 69.6918, 28143.1, 12.3522, 0.131432, 0.0334919, 0.000232583 +456, 6.49753, 61.8331, 26505.7, 11.833, 0.123293, 0.0330555, 0.000229551 +457, 5.38563, 61.7918, 28433.4, 12.052, 0.127724, 0.0344228, 0.000239048 +458, 5.50145, 55.7144, 34126.1, 12.4114, 0.13257, 0.033532, 0.000232862 +459, 6.36143, 57.3182, 34225.7, 12.6463, 0.135008, 0.0323256, 0.000224483 +460, 5.68548, 59.9012, 32032.7, 12.2453, 0.13026, 0.0335278, 0.000232832 +461, 6.36763, 46.4482, 30093.1, 12.3336, 0.131529, 0.0328047, 0.000227811 +462, 6.17303, 57.353, 28012.8, 12.0756, 0.127583, 0.0333286, 0.000231449 +463, 5.5348, 57.4056, 26454, 12.415, 0.133063, 0.0344557, 0.000239276 +464, 5.97825, 60.1633, 33813.4, 12.2019, 0.128868, 0.032898, 0.000228458 +465, 6.18063, 64.1744, 31862.1, 12.5931, 0.135373, 0.0328515, 0.000228136 +466, 5.24014, 49.4332, 33481.8, 12.2767, 0.130751, 0.0339916, 0.00023605 +467, 6.07452, 62.4283, 32315.1, 11.9703, 0.125625, 0.0329443, 0.00022878 +468, 6.56958, 55.497, 28436.6, 12.1419, 0.127648, 0.032724, 0.000227251 +469, 5.14482, 59.2234, 28515.8, 12.271, 0.130892, 0.0347759, 0.000241501 +470, 5.41878, 66.8185, 29129.5, 12.1263, 0.127963, 0.0342835, 0.00023808 +471, 5.02358, 64.8263, 31573.5, 12.294, 0.1304, 0.0345589, 0.000239993 +472, 6.86012, 56.1592, 38497.6, 12.4276, 0.132098, 0.0311892, 0.000216599 +473, 6.4603, 63.2689, 26217.1, 12.0351, 0.126528, 0.0331427, 0.000230155 +474, 6.10013, 54.737, 29640.2, 11.7763, 0.123294, 0.0332326, 0.000230782 +475, 7.16597, 65.2355, 34335.3, 12.3299, 0.13047, 0.0312603, 0.000217078 +476, 5.02502, 56.6349, 31737.8, 12.402, 0.132972, 0.0345354, 0.000239828 +477, 6.30913, 57.4928, 27899, 12.2917, 0.130851, 0.0331505, 0.000230212 +478, 5.93497, 62.397, 29443.1, 11.654, 0.12088, 0.0334914, 0.000232578 +479, 5.42962, 62.2718, 30136.8, 11.9957, 0.126404, 0.0341384, 0.000237072 +480, 7.02138, 59.3962, 25254, 12.5263, 0.133777, 0.0324835, 0.000225578 +481, 4.91618, 65.8051, 31774.7, 12.3239, 0.130958, 0.0346951, 0.000240939 +482, 6.58645, 52.2064, 27985.3, 12.5343, 0.133045, 0.0327545, 0.000227462 +483, 5.59396, 58.22, 30052.7, 12.3996, 0.132911, 0.0339078, 0.000235471 +484, 4.80848, 55.3432, 29153, 12.2763, 0.131174, 0.0352095, 0.00024451 +485, 5.41493, 66.5915, 31322.5, 12.3026, 0.129635, 0.0340091, 0.000236175 +486, 4.7729, 63.4888, 30639.1, 12.2583, 0.130555, 0.035065, 0.000243508 +487, 6.53945, 63.0195, 33693.7, 12.2831, 0.129933, 0.0321488, 0.000223254 +488, 4.90941, 63.4728, 29523.7, 12.2692, 0.130672, 0.0350031, 0.000243079 +489, 5.83902, 59.1422, 32401.7, 12.2442, 0.130269, 0.0332639, 0.000230999 +490, 5.85098, 61.1081, 28665.3, 11.987, 0.125417, 0.0337088, 0.000234088 +491, 5.78134, 77.2385, 28560.3, 12.2487, 0.129894, 0.0338224, 0.000234883 +492, 5.37135, 68.9668, 32458, 12.4285, 0.131997, 0.0339292, 0.00023562 +493, 5.36987, 70.4128, 35947.2, 12.3531, 0.13148, 0.0334951, 0.000232602 +494, 5.70375, 69.4773, 25606.1, 12.2351, 0.130012, 0.0343127, 0.000238284 +495, 6.68091, 55.7515, 31645.1, 12.3722, 0.131889, 0.0321967, 0.000223589 +496, 5.48641, 53.7156, 28600.5, 12.3737, 0.132485, 0.034251, 0.000237855 +497, 6.60667, 58.7683, 32131.3, 11.8984, 0.123489, 0.0322397, 0.000223887 +498, 6.40796, 62.5182, 26487.2, 11.8818, 0.124325, 0.0331834, 0.000230438 +499, 6.71106, 66.6851, 26205.1, 12.2688, 0.130055, 0.0327954, 0.00022774 +500, 5.35424, 58.0525, 27287.6, 12.237, 0.130188, 0.0346191, 0.000240411 +501, 5.65284, 54.693, 32513, 12.6068, 0.13488, 0.033515, 0.000232743 +502, 6.45537, 71.049, 28509.2, 12.3222, 0.131511, 0.0328729, 0.000228285 +503, 5.51086, 58.7479, 30304.8, 12.6819, 0.137421, 0.0339974, 0.000236094 +504, 5.64806, 57.8609, 33012, 12.4789, 0.133617, 0.0334602, 0.000232362 +505, 5.58396, 57.5671, 27383.4, 11.9081, 0.125638, 0.0342624, 0.000237934 +506, 6.34791, 64.8965, 25337, 12.2653, 0.130173, 0.0334092, 0.000232005 +507, 6.05609, 52.8937, 21719.9, 12.2517, 0.130535, 0.0342878, 0.000238113 +508, 5.9505, 59.6344, 30778.4, 11.9758, 0.126035, 0.0333049, 0.000231284 +509, 6.01892, 60.8173, 29851.3, 11.9806, 0.124545, 0.0333216, 0.0002314 +510, 6.17675, 65.9306, 30423.1, 12.7097, 0.136531, 0.03303, 0.000229375 +511, 5.29531, 54.67, 26560.4, 12.4543, 0.133613, 0.0348041, 0.000241696 +512, 5.80217, 57.3309, 25265.2, 11.8647, 0.1247, 0.0342104, 0.000237572 +513, 5.49024, 54.3774, 27840.9, 12.2654, 0.131124, 0.034343, 0.000238494 +514, 6.67698, 59.714, 27290.5, 12.2169, 0.129651, 0.0327128, 0.000227172 +515, 6.30392, 61.1539, 33164.9, 12.1911, 0.128556, 0.0325277, 0.000225886 +516, 6.50049, 63.8428, 29189.2, 11.861, 0.123546, 0.0327295, 0.000227288 +517, 6.32202, 67.9718, 31155.5, 12.3743, 0.131445, 0.0327409, 0.000227367 +518, 5.57626, 60.3038, 29418.2, 11.9599, 0.126533, 0.034014, 0.000236208 +519, 6.18193, 60.0864, 27020.1, 11.8123, 0.123718, 0.0334381, 0.000232209 +520, 6.05188, 59.7225, 32438.6, 12.1877, 0.128723, 0.0329609, 0.000228895 +521, 5.28467, 69.8851, 28050.8, 12.1899, 0.129246, 0.0346246, 0.000240447 +522, 6.47004, 64.021, 32675.2, 12.3448, 0.130973, 0.0323601, 0.000224723 +523, 5.52634, 59.4052, 33998.2, 12.4539, 0.133099, 0.0335122, 0.000232724 +524, 6.15089, 56.231, 30662.7, 12.235, 0.130458, 0.0330371, 0.000229425 +525, 6.30538, 56.9872, 34165, 12.691, 0.135613, 0.0324083, 0.000225057 +526, 6.58889, 60.8791, 29812.2, 11.92, 0.123792, 0.0325348, 0.000225937 +527, 6.13315, 68.7193, 31456.7, 12.2916, 0.130621, 0.0329662, 0.000228932 +528, 6.04018, 51.9303, 32801.4, 12.4245, 0.13319, 0.0329336, 0.000228705 +529, 5.55286, 60.0741, 33242.5, 12.4742, 0.133816, 0.0335679, 0.000233111 +530, 5.46565, 61.9873, 24728.8, 12.2412, 0.130225, 0.0347857, 0.000241569 +531, 6.44876, 61.3386, 32226.5, 12.3262, 0.131106, 0.0324413, 0.000225287 +532, 7.3533, 66.463, 30701.8, 12.1718, 0.127842, 0.0314227, 0.000218216 +533, 6.12193, 70.5141, 33287.7, 12.3253, 0.130831, 0.0327624, 0.000227517 +534, 5.65944, 69.3182, 33568.9, 12.3097, 0.130852, 0.0333755, 0.000231774 +535, 6.02201, 43.7354, 27337.6, 12.376, 0.132128, 0.0336276, 0.000233531 +536, 6.50871, 57.1634, 25574.4, 12.261, 0.130013, 0.0331526, 0.000230228 +537, 5.4984, 37.484, 26652.5, 12.1402, 0.129028, 0.0344829, 0.000239507 +538, 6.1632, 55.9295, 27633, 11.9872, 0.126236, 0.0333892, 0.00023187 +539, 6.09353, 59.063, 31299.8, 12.3425, 0.132524, 0.0330403, 0.000229446 +540, 6.24042, 74.8788, 26923.9, 12.2602, 0.129973, 0.0333663, 0.000231721 +541, 5.25539, 66.5871, 33130.8, 12.2969, 0.130773, 0.0340138, 0.000236207 +542, 5.34374, 57.9733, 35365.8, 12.3628, 0.131656, 0.0336045, 0.000233367 +543, 6.92048, 60.2267, 29565.8, 12.401, 0.132288, 0.0321172, 0.000223037 +544, 5.90459, 76.0839, 25939.7, 12.2453, 0.129923, 0.033973, 0.000235938 +545, 5.64927, 56.258, 30449.6, 12.2716, 0.13066, 0.0337773, 0.000234565 +546, 6.31597, 53.5946, 31845.4, 12.3745, 0.132163, 0.0326672, 0.000226855 +547, 6.06725, 59.5419, 32035, 12.2641, 0.130483, 0.0329882, 0.000229084 +548, 5.75163, 59.4706, 29973.6, 12.1247, 0.127824, 0.0336888, 0.00023395 +549, 5.85576, 66.3147, 29231, 12.3995, 0.133022, 0.0336313, 0.000233551 +550, 5.28673, 58.194, 22970.1, 12.242, 0.130577, 0.0352964, 0.000245118 +551, 6.71879, 57.9576, 31315.5, 12.1248, 0.127386, 0.0321842, 0.000223502 +552, 6.34399, 62.9824, 27597.9, 11.8944, 0.125538, 0.0331382, 0.000230125 +553, 6.52535, 52.2923, 27038.1, 12.4429, 0.132073, 0.0329524, 0.000228836 +554, 6.02309, 64.4637, 29027.2, 12.2063, 0.131302, 0.033417, 0.000232062 +555, 5.63273, 58.0211, 35507.3, 12.3569, 0.131422, 0.0331759, 0.00023039 +556, 6.02796, 57.0935, 27686.7, 11.7667, 0.123072, 0.0335758, 0.000233165 +557, 7.74967, 61.9521, 30498.7, 12.2358, 0.129046, 0.0309427, 0.000214885 +558, 4.70836, 58.9946, 32723.2, 12.1905, 0.129527, 0.0348874, 0.000242271 +559, 5.52819, 56.6044, 26897, 12.3997, 0.13293, 0.0344083, 0.000238947 +560, 6.74199, 66.5475, 26886.2, 12.2649, 0.129988, 0.0326718, 0.000226883 +561, 7.09117, 63.5071, 28782.7, 12.3492, 0.131256, 0.0319808, 0.000222088 +562, 6.65794, 62.6149, 33121.6, 12.228, 0.128909, 0.032057, 0.000222617 +563, 5.67186, 62.1054, 29738, 11.4788, 0.118631, 0.0338339, 0.000234958 +564, 5.66816, 59.0809, 28532.2, 11.4267, 0.11752, 0.0339916, 0.000236053 +565, 6.03725, 55.6834, 26800.2, 12.0261, 0.127074, 0.0336727, 0.000233839 +566, 6.37314, 47.2368, 28310.6, 12.3924, 0.132172, 0.0330111, 0.000229243 +567, 6.75593, 71.5157, 30924.9, 12.2309, 0.129233, 0.0321797, 0.000223471 +568, 5.69114, 55.1532, 28149.7, 12.1398, 0.129353, 0.0340064, 0.000236156 +569, 6.05786, 58.1103, 36607.5, 12.3375, 0.13095, 0.0324574, 0.000225398 +570, 6.27894, 61.5482, 39595.5, 12.4638, 0.132744, 0.0318191, 0.000220965 +571, 6.33821, 51.6181, 37035.9, 12.3877, 0.131782, 0.0320314, 0.000222445 +572, 4.99835, 51.2628, 35596.2, 12.2772, 0.1308, 0.0340782, 0.00023666 +573, 6.5195, 53.6945, 32428.9, 12.3631, 0.131695, 0.0323222, 0.00022446 +574, 6.14225, 42.9358, 36466.8, 12.3181, 0.13093, 0.0323592, 0.000224721 +575, 5.92603, 62.6757, 31855.8, 11.9326, 0.124918, 0.0332078, 0.00023061 +576, 5.94043, 53.6468, 29035.2, 12.179, 0.128067, 0.033534, 0.000232876 +577, 6.58309, 65.5053, 22356.9, 12.2707, 0.13038, 0.033442, 0.00023222 +578, 5.3139, 62.1869, 28936.2, 12.1876, 0.129642, 0.0344652, 0.000239342 +579, 6.24528, 63.5249, 33935.1, 12.2175, 0.129003, 0.0325168, 0.000225811 +580, 6.65484, 57.4921, 25701.7, 12.4099, 0.132158, 0.0329332, 0.000228704 +581, 6.57704, 59.1834, 23403.9, 12.2991, 0.130806, 0.033321, 0.000231398 +582, 6.71593, 61.1928, 32273.1, 12.0618, 0.126048, 0.0320776, 0.000222761 +583, 6.43985, 53.7766, 31669.9, 12.4185, 0.132809, 0.0325188, 0.000225825 +584, 6.25577, 60.2047, 26904.5, 11.8098, 0.123599, 0.0333473, 0.000231578 +585, 6.17126, 65.6152, 26331.6, 12.3814, 0.131953, 0.0335385, 0.000232905 +586, 6.40539, 63.3376, 31728.8, 12.6006, 0.134631, 0.0325588, 0.000226103 +587, 5.70917, 65.3552, 26849.6, 12.28, 0.130946, 0.0341453, 0.00023712 +588, 5.73948, 61.2072, 27702.7, 11.97, 0.126204, 0.0339922, 0.000236057 +589, 5.53171, 64.5342, 30647, 12.1316, 0.128533, 0.0339237, 0.000235581 +590, 6.35322, 63.5983, 33650.3, 12.2694, 0.129899, 0.0324039, 0.000225026 +591, 5.69951, 57.0279, 28480.3, 11.5609, 0.120138, 0.0339522, 0.00023578 +592, 4.76584, 58.0976, 29376, 12.2448, 0.130626, 0.0352458, 0.000244763 +593, 5.73256, 64.4831, 31776.3, 12.2994, 0.130624, 0.0334922, 0.000232585 +594, 6.12892, 61.2268, 30567.9, 12.2014, 0.129156, 0.0330793, 0.000229717 +595, 5.71744, 58.1241, 33529.2, 12.4182, 0.132712, 0.0332979, 0.000231236 +596, 5.79812, 53.2912, 29099.9, 12.6879, 0.135629, 0.0337308, 0.000234243 +597, 6.37597, 51.0924, 29144.4, 12.6375, 0.135388, 0.0329068, 0.000228519 +598, 6.08875, 61.7689, 32841, 11.9136, 0.124108, 0.0328615, 0.000228204 +599, 5.61689, 73.4564, 27960.4, 12.2744, 0.130136, 0.0341396, 0.000237082 +600, 5.38922, 65.413, 32069.4, 11.9706, 0.126143, 0.0339521, 0.000235779 +601, 6.05479, 63.0458, 34453.6, 12.2194, 0.128966, 0.0327158, 0.000227193 +602, 6.09192, 61.064, 31986.6, 12.1218, 0.128175, 0.0329597, 0.000228886 +603, 6.80717, 57.2818, 30409.2, 12.2982, 0.130496, 0.032171, 0.000223411 +604, 5.64469, 50.9982, 27900.6, 12.3569, 0.131762, 0.0341063, 0.000236851 +605, 6.68729, 54.5774, 32192.9, 12.3396, 0.131351, 0.0321249, 0.00022309 +606, 6.03171, 53.554, 25785.7, 12.2085, 0.129721, 0.0338077, 0.000234776 +607, 6.85455, 55.2177, 29006.9, 12.22, 0.12919, 0.0322701, 0.000224098 +608, 5.98805, 60.9511, 29665.7, 11.9534, 0.124053, 0.0333882, 0.000231862 +609, 5.54423, 68.5464, 25491, 12.0362, 0.127385, 0.0345667, 0.000240047 +610, 6.69541, 56.7007, 28426.7, 12.2108, 0.129168, 0.0325531, 0.000226064 +611, 6.79347, 66.2602, 30002.1, 12.2359, 0.129506, 0.0322364, 0.000223864 +612, 5.47379, 60.929, 27091.1, 12.0278, 0.12709, 0.0344646, 0.000239338 +613, 6.4151, 56.1386, 30393.1, 12.1385, 0.127939, 0.0327036, 0.000227109 +614, 6.12539, 67.6009, 29079.7, 12.3286, 0.131962, 0.0332655, 0.00023101 +615, 5.31714, 53.1839, 30254.5, 12.4673, 0.133971, 0.03429, 0.000238126 +616, 4.84272, 52.5267, 28000.1, 12.2284, 0.130453, 0.0353116, 0.000245219 +617, 6.63214, 58.721, 32276.6, 11.8762, 0.123051, 0.0321888, 0.000223533 +618, 6.15679, 57.1445, 32908, 12.5249, 0.133688, 0.0327595, 0.000227496 +619, 5.53966, 59.9164, 28895.9, 11.7561, 0.123298, 0.0341343, 0.000237044 +620, 5.80973, 60.8512, 30458.5, 11.5596, 0.119192, 0.0335449, 0.00023295 +621, 6.76762, 57.9997, 27676.6, 12.3458, 0.131737, 0.0325432, 0.000225995 +622, 7.0238, 62.4994, 29570.6, 12.3054, 0.130489, 0.0319796, 0.000222081 +623, 5.21114, 67.3334, 28586.5, 12.1083, 0.127931, 0.0346658, 0.000240734 +624, 6.07384, 57.5393, 32618.3, 12.5177, 0.133959, 0.0329088, 0.000228533 +625, 6.14733, 59.8174, 36195.8, 12.0588, 0.126256, 0.0323844, 0.000224891 +626, 5.38238, 62.6252, 30803.4, 12.2577, 0.130644, 0.034123, 0.000236966 +627, 5.83387, 54.2459, 29303.5, 12.3619, 0.13099, 0.0336538, 0.000233707 +628, 6.78174, 63.8137, 30245.7, 12.156, 0.127927, 0.0322238, 0.000223777 +629, 5.24427, 50.5886, 30385.4, 12.3962, 0.132738, 0.0343817, 0.000238764 +630, 6.22363, 59.1114, 28791.5, 12.6354, 0.134946, 0.0331621, 0.000230292 +631, 6.04919, 70.8614, 30853.2, 12.2005, 0.129476, 0.0331566, 0.000230254 +632, 5.15544, 64.7654, 32043.3, 12.0435, 0.127324, 0.0343005, 0.000238199 +633, 5.90536, 58.3851, 31408.8, 12.0886, 0.128465, 0.0332916, 0.000231191 +634, 6.93172, 55.4681, 28450.7, 12.2566, 0.129782, 0.0322312, 0.000223828 +635, 5.26276, 68.1857, 27072.4, 12.0292, 0.127213, 0.0347863, 0.00024157 +636, 7.03108, 55.634, 31764.4, 12.0023, 0.126081, 0.0317208, 0.000220283 +637, 5.7771, 57.0585, 31415.4, 12.1196, 0.12866, 0.0334731, 0.000232452 +638, 5.16791, 62.7056, 28284.3, 12.2147, 0.129845, 0.0347711, 0.000241468 +639, 5.85196, 51.8226, 36303.4, 12.3663, 0.131729, 0.0327749, 0.000227605 +640, 5.05203, 63.3551, 25547.1, 12.2179, 0.130089, 0.0353154, 0.000245247 +641, 6.32718, 50.3121, 26375.6, 12.118, 0.128356, 0.0333109, 0.000231325 +642, 6.92447, 61.5339, 28397.5, 12.5465, 0.135016, 0.0322471, 0.000223937 +643, 5.49573, 52.1717, 27144.6, 12.2761, 0.130942, 0.0344247, 0.000239062 +644, 6.12335, 60.6995, 28733.8, 12.5944, 0.133568, 0.0333107, 0.000231324 +645, 5.63885, 49.3485, 35328, 12.3284, 0.131299, 0.0331893, 0.000230481 +646, 5.98588, 60.1277, 30230.5, 12.004, 0.125515, 0.0333219, 0.000231402 +647, 7.41769, 62.8706, 31235.5, 12.144, 0.127368, 0.0312815, 0.000217233 +648, 6.3796, 60.3929, 33240.1, 12.1967, 0.128509, 0.0324162, 0.000225112 +649, 6.67581, 50.563, 29969.8, 12.3904, 0.13229, 0.0323984, 0.000224989 +650, 5.97426, 49.8261, 27109.5, 12.2579, 0.130238, 0.033725, 0.000234202 +651, 6.28335, 67.6349, 30151.4, 12.4067, 0.132342, 0.0329144, 0.000228572 +652, 6.40098, 53.111, 29755.4, 12.3061, 0.130678, 0.032799, 0.000227771 +653, 6.27618, 59.4306, 31828.6, 12.4802, 0.13466, 0.0327237, 0.000227248 +654, 5.86814, 60.3656, 30114.3, 11.8207, 0.122744, 0.0335039, 0.000232666 +655, 7.36151, 56.301, 28710.7, 12.2179, 0.12889, 0.0316351, 0.000219687 +656, 6.27817, 49.9984, 24128.5, 12.2406, 0.130153, 0.0336582, 0.000233738 +657, 6.06376, 57.5971, 34698.9, 12.4879, 0.132557, 0.0326744, 0.000226905 +658, 6.06999, 60.8443, 29828, 12.1483, 0.126995, 0.0332522, 0.000230918 +659, 5.77001, 53.1273, 35138.7, 12.3671, 0.132045, 0.0330282, 0.000229364 +660, 5.35149, 51.7119, 29054.6, 12.3262, 0.131638, 0.0343935, 0.000238846 +661, 5.69443, 70.7232, 31800.1, 12.3075, 0.130773, 0.0335439, 0.000232944 +662, 5.99609, 67.9504, 29865.7, 12.3433, 0.131768, 0.0333523, 0.000231613 +663, 4.55462, 64.3753, 25515, 12.1804, 0.129954, 0.0361147, 0.000250791 +664, 5.99837, 56.0248, 31328.2, 12.2364, 0.130836, 0.0331702, 0.000230348 +665, 6.88686, 51.8664, 30519, 12.3786, 0.132001, 0.0320522, 0.000222585 +666, 6.19153, 59.6065, 30533, 12.411, 0.132791, 0.0329961, 0.00022914 +667, 6.86733, 65.3339, 26394.8, 12.2636, 0.12993, 0.0325588, 0.000226096 +668, 6.68414, 68.4707, 30752.8, 12.2798, 0.130306, 0.0322959, 0.000224277 +669, 5.82887, 62.3778, 28493.7, 12.0114, 0.126582, 0.0337623, 0.00023446 +670, 5.86527, 50.1328, 25868.7, 12.2423, 0.130264, 0.0340402, 0.00023639 +671, 6.6604, 55.6019, 29121.9, 12.0436, 0.126257, 0.0325188, 0.000225826 +672, 6.2039, 64.116, 29170.8, 12.5458, 0.136096, 0.0331438, 0.000230164 +673, 6.41191, 51.4055, 35636.3, 12.3628, 0.131416, 0.0320943, 0.000222881 +674, 6.17421, 55.0289, 30561, 12.1471, 0.129063, 0.0330169, 0.000229284 +675, 6.72333, 52.7572, 28072.8, 12.4197, 0.131567, 0.0325568, 0.000226088 +676, 5.49321, 65.6538, 24049.1, 12.2667, 0.130731, 0.0348334, 0.000241899 +677, 6.11588, 55.5546, 30735.1, 12.1705, 0.129607, 0.0330773, 0.000229704 +678, 5.59763, 60.7713, 32376.2, 12.3925, 0.132557, 0.0336113, 0.000233411 +679, 6.57187, 64.1545, 29626.2, 11.9343, 0.12453, 0.0325799, 0.000226249 +680, 5.91296, 60.8741, 25662.8, 12.5087, 0.134266, 0.0339965, 0.000236087 +681, 4.93681, 50.4145, 29347.1, 12.4058, 0.133091, 0.0349846, 0.000242949 +682, 5.44311, 53.0057, 32594.7, 12.3903, 0.132186, 0.0338073, 0.000234772 +683, 6.54776, 71.9792, 26110.6, 12.2756, 0.130147, 0.0330331, 0.000229398 +684, 5.88971, 60.6314, 24836.7, 12.2777, 0.13025, 0.0341358, 0.000237054 +685, 6.64482, 56.3744, 33783, 12.2657, 0.129566, 0.0319985, 0.000222211 +686, 7.23873, 53.8134, 30596.8, 12.1907, 0.128491, 0.0315823, 0.000219322 +687, 6.78832, 63.0726, 30657.8, 12.1696, 0.127962, 0.0321673, 0.000223385 +688, 6.52914, 66.0006, 25851.4, 12.2734, 0.130176, 0.0330906, 0.000229792 +689, 6.23468, 63.9008, 31908.2, 12.612, 0.13561, 0.0327714, 0.000227579 +690, 4.98335, 52.6508, 31063.7, 12.4396, 0.13358, 0.0346866, 0.000240877 +691, 6.22188, 65.5422, 28496.9, 12.3397, 0.132671, 0.0332005, 0.000230558 +692, 6.28558, 50.3601, 30022, 12.6921, 0.137028, 0.0329268, 0.000228658 +693, 6.29428, 58.7773, 29633.1, 12.4315, 0.131641, 0.0329615, 0.000228899 +694, 6.13108, 44.6069, 27542.3, 12.5416, 0.134476, 0.0334461, 0.000232268 +695, 6.30212, 72.6203, 30888.1, 12.2096, 0.129, 0.0328001, 0.00022778 +696, 7.15933, 59.6181, 31891, 12.2298, 0.129034, 0.0315403, 0.000219028 +697, 6.07111, 59.2891, 31625.3, 12.307, 0.1317, 0.0330322, 0.00022939 +698, 6.90501, 68.8579, 28605.5, 12.2362, 0.129412, 0.032249, 0.00022395 +699, 5.55014, 46.6096, 29456.5, 12.2347, 0.130155, 0.0340473, 0.000236446 +700, 5.40976, 61.2887, 30841, 12.5846, 0.135113, 0.0340779, 0.000236652 +701, 5.22112, 52.5806, 34516.3, 12.2712, 0.130616, 0.0338885, 0.000235338 +702, 5.8755, 63.303, 28967.7, 11.9291, 0.12581, 0.0336357, 0.000233581 +703, 6.72054, 69.5594, 29728.7, 12.2524, 0.129833, 0.0323662, 0.000224766 +704, 6.70415, 64.296, 30738.8, 12.2101, 0.1286, 0.0322706, 0.000224102 +705, 6.13663, 63.9334, 33222.7, 12.1283, 0.128073, 0.0327498, 0.000227429 +706, 6.76267, 54.0147, 32112.1, 12.3129, 0.131041, 0.032034, 0.000222459 +707, 5.81996, 72.9467, 27610.3, 12.2759, 0.130205, 0.033886, 0.000235324 +708, 5.56301, 66.2933, 33088.2, 12.3005, 0.130776, 0.0335726, 0.000233143 +709, 6.64941, 52.5724, 33278.4, 12.3049, 0.130551, 0.0320502, 0.000222572 +710, 6.20788, 54.311, 27002.5, 12.1787, 0.128983, 0.0334032, 0.000231968 +711, 5.52292, 57.6839, 28053.9, 11.5925, 0.120708, 0.034267, 0.000237966 +712, 6.00448, 73.7945, 33721.9, 12.325, 0.130777, 0.0328728, 0.000228284 +713, 6.21323, 64.2802, 29775.6, 12.6196, 0.136732, 0.0330573, 0.000229564 +714, 6.52335, 52.0762, 28976.8, 12.4133, 0.131666, 0.0327233, 0.000227245 +715, 5.94923, 51.4873, 30280.8, 12.3484, 0.13174, 0.0333677, 0.000231721 +716, 5.36286, 63.0863, 32305.3, 12.1376, 0.129494, 0.0339609, 0.000235839 +717, 6.14742, 60.953, 30919.6, 12.3615, 0.132361, 0.033011, 0.000229243 +718, 5.06763, 57.524, 27492.7, 12.2533, 0.130653, 0.0350299, 0.000243265 +719, 5.95256, 64.083, 29260.3, 11.9766, 0.127427, 0.0334889, 0.000232561 +720, 5.84636, 56.7817, 30910.7, 12.004, 0.127162, 0.0334366, 0.000232198 +721, 4.8461, 56.5546, 30477.9, 12.3568, 0.132433, 0.0349738, 0.000242872 +722, 6.47563, 68.2845, 32450.4, 12.3642, 0.131678, 0.0323788, 0.000224853 +723, 5.50852, 53.4587, 30816.5, 12.3926, 0.132368, 0.033936, 0.000235668 +724, 5.76477, 64.9146, 28174.5, 12.2171, 0.130111, 0.0338956, 0.000235386 +725, 5.92351, 62.6689, 27459.4, 12.4484, 0.133556, 0.0337548, 0.000234407 +726, 6.23638, 66.135, 30379.9, 12.6775, 0.136002, 0.0329522, 0.000228834 +727, 4.45976, 64.5998, 32560.8, 12.2033, 0.129804, 0.0352941, 0.000245099 +728, 5.18352, 50.6369, 32466.7, 12.275, 0.130783, 0.0342044, 0.000237529 +729, 6.29589, 64.5729, 33025.2, 12.3044, 0.130875, 0.0325551, 0.000226077 +730, 6.0079, 52.6133, 34565.3, 12.4067, 0.133009, 0.0327671, 0.000227549 +731, 5.4833, 72.2885, 27621.3, 12.2666, 0.130059, 0.0343817, 0.000238761 +732, 6.11967, 58.4363, 32409.9, 12.444, 0.132973, 0.0328703, 0.000228266 +733, 5.8772, 57.5471, 25977.3, 11.8674, 0.125049, 0.034009, 0.000236174 +734, 5.80712, 67.6644, 33050.8, 12.301, 0.130771, 0.0332298, 0.000230762 +735, 6.59703, 60.7567, 31882.5, 12.0683, 0.126328, 0.0322815, 0.000224178 +736, 7.6435, 68.3313, 28105.8, 12.3128, 0.130386, 0.0313391, 0.000217636 +737, 7.27958, 58.0276, 32933.7, 12.2242, 0.12901, 0.0312703, 0.00021715 +738, 5.43916, 65.1254, 27802.9, 12.0419, 0.127432, 0.0344243, 0.000239058 +739, 5.86099, 66.7978, 19772.5, 12.2829, 0.13104, 0.034841, 0.000241903 +740, 6.00658, 61.32, 29180.4, 12.1775, 0.127402, 0.0334216, 0.000232094 +741, 6.77798, 69.9513, 33917, 12.3583, 0.131163, 0.031808, 0.000220888 +742, 5.85828, 60.6827, 27252.2, 12.1094, 0.128286, 0.0338756, 0.000235246 +743, 5.61231, 65.9476, 26256.8, 12.0569, 0.127732, 0.0343652, 0.000238648 +744, 5.55967, 57.0874, 33675.9, 12.4871, 0.133703, 0.0335044, 0.00023267 +745, 6.16832, 59.7452, 23914.3, 12.2357, 0.129921, 0.0338444, 0.000235031 +746, 6.26047, 66.1795, 29540.9, 12.442, 0.134036, 0.0330197, 0.000229303 +747, 5.65129, 64.124, 29798.6, 12.0811, 0.127859, 0.0338563, 0.000235113 +748, 5.28273, 62.0214, 30679.7, 12.6661, 0.136613, 0.0342865, 0.000238101 +749, 5.9448, 64.4093, 30100.8, 12.0145, 0.127168, 0.0333963, 0.000231918 +750, 6.35848, 62.7616, 24451.5, 12.2489, 0.130003, 0.0335033, 0.000232659 +751, 5.66454, 64.2451, 26876.3, 12.3082, 0.131487, 0.0342079, 0.000237555 +752, 5.68386, 49.6719, 24510.4, 12.231, 0.130261, 0.0344838, 0.000239468 +753, 6.06087, 56.9359, 30768.9, 12.2324, 0.130753, 0.0331504, 0.000230211 +754, 5.90327, 62.1299, 29859.6, 11.4087, 0.116914, 0.0334852, 0.000232536 +755, 7.04027, 58.2854, 28346, 12.3747, 0.131882, 0.0320985, 0.000222906 +756, 5.99936, 57.0213, 30728.2, 12.1479, 0.129497, 0.0332419, 0.000230847 +757, 5.9895, 54.4207, 35150.8, 12.4445, 0.132973, 0.0327227, 0.000227241 +758, 6.56472, 66.2015, 31216.6, 12.3434, 0.130843, 0.0324027, 0.000225019 +759, 5.04255, 67.5442, 31967.8, 12.3738, 0.131373, 0.0344791, 0.000239439 +760, 6.22087, 70.2505, 28109.1, 12.3964, 0.132446, 0.0332492, 0.000230898 +761, 6.69212, 54.6248, 29611.5, 12.1818, 0.128732, 0.0324183, 0.000225128 +762, 6.72732, 56.0775, 36865.7, 12.4899, 0.133439, 0.0315411, 0.000219036 +763, 6.21574, 54.9486, 22835.9, 12.2142, 0.129835, 0.0339108, 0.000235496 +764, 5.94699, 58.2652, 26616.6, 11.846, 0.124421, 0.0338264, 0.000234906 +765, 6.49118, 55.7313, 30131.3, 12.1174, 0.127628, 0.0326304, 0.000226601 +766, 5.58982, 65.5151, 30961.1, 12.5186, 0.133829, 0.0337995, 0.000234718 +767, 5.79463, 56.7447, 28196.4, 11.6686, 0.121908, 0.0338493, 0.000235065 +768, 5.57462, 50.779, 28906.2, 12.3796, 0.132079, 0.0340814, 0.000236679 +769, 6.53624, 63.9737, 32752.1, 12.324, 0.130551, 0.0322621, 0.000224042 +770, 6.63856, 60.3456, 25459.2, 12.3044, 0.130354, 0.0329851, 0.000229062 +771, 6.61791, 51.5603, 30329.3, 12.477, 0.133905, 0.0324347, 0.000225241 +772, 6.65356, 59.3456, 27504.5, 12.2408, 0.130092, 0.0327195, 0.000227219 +773, 5.71978, 54.4583, 30745.3, 12.271, 0.130444, 0.0336384, 0.000233601 +774, 5.32568, 58.1523, 35797.8, 12.354, 0.131526, 0.0335768, 0.000233175 +775, 6.09768, 57.7528, 30472.8, 12.373, 0.132463, 0.0331346, 0.000230102 +776, 5.72711, 59.781, 29515.4, 12.0027, 0.12594, 0.0337817, 0.000234595 +777, 6.57928, 57.2204, 27972.3, 12.2781, 0.130404, 0.032766, 0.000227542 +778, 5.96176, 57.0076, 25812.2, 11.9687, 0.126349, 0.0339062, 0.00023546 +779, 6.38501, 67.8037, 28252.2, 12.3607, 0.132379, 0.0330016, 0.000229177 +780, 6.43444, 52.0562, 28883.2, 12.4655, 0.132472, 0.0328571, 0.000228174 +781, 5.79253, 59.3077, 32104.3, 12.1846, 0.129428, 0.0333663, 0.00023171 +782, 5.09873, 60.2616, 32160.2, 12.4447, 0.133241, 0.03437, 0.000238681 +783, 6.19001, 60.7335, 27861.9, 12.0462, 0.127239, 0.0333231, 0.00023141 +784, 4.78359, 62.4536, 27651.1, 12.2114, 0.130035, 0.0354516, 0.000246194 +785, 5.88526, 61.2669, 36413.2, 12.4071, 0.131886, 0.0327159, 0.000227193 +786, 6.31804, 64.2201, 35070.3, 12.3244, 0.130449, 0.0322856, 0.000224206 +787, 6.286, 62.9047, 30874.3, 12.9015, 0.139108, 0.032824, 0.000227945 +788, 5.66435, 54.1128, 31366.6, 12.4198, 0.132385, 0.0336409, 0.000233617 +789, 6.11375, 63.1926, 33260.2, 12.0358, 0.126336, 0.0327768, 0.000227617 +790, 6.27534, 59.7641, 27224.9, 11.9027, 0.125135, 0.0332803, 0.000231113 +791, 5.72156, 60.9842, 28568.4, 11.7746, 0.122933, 0.0339089, 0.000235478 +792, 5.36747, 58.1466, 36559.8, 12.3666, 0.131755, 0.0334228, 0.000232106 +793, 6.13397, 70.9689, 26536.2, 12.3858, 0.131653, 0.0335664, 0.000233103 +794, 6.26348, 61.3143, 32644.7, 12.2434, 0.129904, 0.0326443, 0.000226696 +795, 5.33167, 63.6905, 29948.3, 12.1299, 0.128371, 0.0343078, 0.000238249 +796, 6.03467, 56.3111, 27418.4, 11.8362, 0.12421, 0.0335995, 0.00023333 +797, 6.1402, 49.1735, 37656.1, 12.382, 0.131778, 0.0322242, 0.000223783 +798, 5.81612, 52.3962, 23755.5, 12.2429, 0.130383, 0.0343835, 0.000238774 +799, 6.31125, 56.09, 31105.2, 12.2929, 0.130732, 0.0327616, 0.000227512 +800, 3.99525, 65.1369, 30576.4, 12.1461, 0.129403, 0.0363155, 0.000252189 +801, 6.07873, 63.2935, 24348.4, 12.308, 0.131043, 0.0339203, 0.000235556 +802, 6.4136, 58.8548, 30361.6, 12.0071, 0.12533, 0.0327094, 0.000227149 +803, 5.9697, 60.4149, 31618, 11.9726, 0.125829, 0.0331753, 0.000230384 +804, 6.17793, 62.1788, 31985.6, 12.3622, 0.132298, 0.0328405, 0.000228059 +805, 6.46901, 65.0001, 24236.4, 12.269, 0.130283, 0.0333724, 0.000231747 +806, 5.50716, 59.2988, 28574.4, 11.5886, 0.120549, 0.0342236, 0.000237664 +807, 6.39638, 74.1874, 31239.1, 12.2458, 0.129568, 0.0326289, 0.00022659 +808, 6.33146, 55.5298, 29695.6, 12.0486, 0.126737, 0.0329023, 0.000228489 +809, 6.16684, 62.801, 29016.3, 12.6137, 0.135477, 0.0332147, 0.000230657 +810, 6.61568, 60.6489, 31583.2, 12.059, 0.126131, 0.0322913, 0.000224245 +811, 4.40876, 69.7689, 32974.7, 12.2224, 0.130143, 0.0353184, 0.000245269 +812, 5.98654, 61.1714, 29320.7, 12.0819, 0.125942, 0.0334329, 0.000232172 +813, 5.47189, 63.2266, 35433.3, 12.4475, 0.132478, 0.0334128, 0.000232033 +814, 5.60522, 53.0251, 30370.9, 12.4064, 0.132449, 0.0338512, 0.000235079 +815, 6.02018, 64.8748, 23831, 12.3138, 0.13116, 0.0340718, 0.000236607 +816, 5.56636, 52.6732, 29601.1, 12.4932, 0.133748, 0.0340052, 0.000236149 +817, 5.64024, 48.3638, 29316.4, 12.2654, 0.130494, 0.033933, 0.00023565 +818, 6.16472, 54.8897, 25435.4, 12.2307, 0.129938, 0.0336591, 0.000233745 +819, 6.08211, 60.3294, 28222.9, 12.2003, 0.128538, 0.033432, 0.000232166 +820, 5.74108, 52.8523, 29425.6, 12.6783, 0.13582, 0.0337726, 0.000234533 +821, 5.31123, 63.1324, 30009.6, 12.2274, 0.129881, 0.0343303, 0.000238406 +822, 6.75451, 61.8527, 28811.8, 12.2396, 0.129985, 0.0324276, 0.000225192 +823, 7.47242, 64.8461, 33307.1, 12.284, 0.129689, 0.0309855, 0.00021517 +824, 6.48883, 64.9628, 27081.5, 12.1567, 0.128611, 0.0329982, 0.000229152 +825, 5.53465, 69.197, 37366.2, 12.392, 0.131958, 0.0330878, 0.000229773 +826, 6.47207, 56.0649, 29408.2, 11.9926, 0.12543, 0.0327424, 0.000227379 +827, 6.32036, 56.4887, 29157.6, 12.1273, 0.127884, 0.0329824, 0.000229045 +828, 6.3895, 61.7116, 26464, 11.7887, 0.122809, 0.0332122, 0.000230639 +829, 6.95587, 61.5097, 25065.9, 12.4226, 0.132293, 0.0325948, 0.000226349 +830, 5.39747, 63.3721, 28650.2, 12.0301, 0.127308, 0.0343771, 0.00023873 +831, 5.93808, 63.1612, 30267.7, 11.5761, 0.119774, 0.0333852, 0.000231842 +832, 6.74492, 56.4508, 29875.3, 12.2393, 0.129628, 0.0323163, 0.00022442 +833, 6.05325, 65.2757, 31692.8, 12.5389, 0.134432, 0.0330491, 0.000229507 +834, 7.14934, 60.1037, 30430.1, 12.2425, 0.129286, 0.0317173, 0.000220259 +835, 7.49272, 53.6676, 35195.7, 12.2989, 0.130006, 0.0307538, 0.000213565 +836, 5.12636, 67.3018, 32331, 12.3283, 0.130757, 0.0343068, 0.000238242 +837, 6.51199, 56.7932, 34148.3, 12.4684, 0.132594, 0.0321329, 0.000223144 +838, 5.7576, 46.8472, 33810.3, 12.2977, 0.130829, 0.0332071, 0.000230601 +839, 5.89495, 60.3795, 28326.2, 12.015, 0.12575, 0.0336876, 0.000233942 +840, 6.03881, 60.912, 25196.1, 12.3734, 0.131993, 0.0338716, 0.000235219 +841, 6.09898, 62.4848, 31257.9, 12.3582, 0.131522, 0.0330377, 0.000229428 +842, 5.11593, 54.3547, 30951.6, 12.5786, 0.135967, 0.0345009, 0.000239589 +843, 6.28874, 59.484, 27467.2, 12.0325, 0.127153, 0.0332318, 0.000230776 +844, 5.1972, 52.1123, 32074.6, 12.3074, 0.13129, 0.0342344, 0.000237738 +845, 6.41011, 69.0539, 32897.8, 12.3606, 0.131575, 0.0324151, 0.000225105 +846, 6.09634, 53.9506, 33733.8, 12.4845, 0.13413, 0.0327444, 0.000227391 +847, 6.79972, 61.669, 33406.9, 12.2092, 0.128572, 0.0318374, 0.000221091 +848, 7.07093, 59.1642, 27782.8, 12.3782, 0.131958, 0.0321226, 0.000223072 +849, 5.374, 62.8779, 28370.6, 12.0556, 0.127706, 0.0344484, 0.000239225 +850, 6.23197, 56.8468, 32476.8, 12.4796, 0.133393, 0.0327074, 0.000227135 +851, 6.11919, 61.4747, 30671.4, 12.1846, 0.128934, 0.0330804, 0.000229725 +852, 5.47715, 57.7433, 34802.1, 12.3912, 0.132072, 0.0334831, 0.000232523 +853, 5.75304, 58.4821, 26056.6, 11.9175, 0.125845, 0.0341818, 0.000237374 +854, 6.04345, 59.6515, 30292.8, 12.242, 0.129467, 0.0332329, 0.000230784 +855, 5.86749, 48.8684, 26013.3, 12.2564, 0.130469, 0.0340186, 0.00023624 +856, 5.1196, 55.4259, 26737.7, 12.3507, 0.132253, 0.0350504, 0.000243407 +857, 4.85363, 63.9671, 31754.3, 12.2523, 0.130172, 0.034793, 0.000241619 +858, 5.11134, 62.5267, 28380.9, 12.2335, 0.130138, 0.0348447, 0.000241979 +859, 5.63102, 67.4021, 27824.7, 12.1956, 0.129338, 0.0341362, 0.000237057 +860, 6.55338, 70.1926, 28746.9, 12.2958, 0.131062, 0.0327094, 0.000227149 +861, 5.09348, 64.9834, 34102.1, 12.4091, 0.132575, 0.0341285, 0.000237004 +862, 6.00281, 55.3155, 28872.7, 11.6193, 0.120344, 0.0334649, 0.000232396 +863, 6.34192, 68.9331, 30062.1, 12.3041, 0.130838, 0.0328439, 0.000228083 +864, 7.12742, 49.946, 26315.3, 12.1437, 0.12806, 0.0322165, 0.000223722 +865, 5.78988, 55.8147, 28988, 12.0149, 0.126268, 0.0337568, 0.000234422 +866, 6.21928, 65.9705, 23675.5, 12.2834, 0.130629, 0.0338006, 0.000234722 +867, 5.77191, 57.1398, 26860, 11.8748, 0.125484, 0.0340516, 0.000236469 +868, 6.60097, 61.6275, 31562.3, 12.1834, 0.128027, 0.0323135, 0.0002244 +869, 6.54564, 57.6673, 31098.9, 12.0588, 0.126353, 0.0324423, 0.000225294 +870, 5.3923, 53.3422, 27586.9, 12.2891, 0.131202, 0.0345226, 0.000239742 +871, 5.73565, 66.0255, 24402.9, 12.3954, 0.132433, 0.0344205, 0.000239031 +872, 5.58679, 66.7424, 31357.4, 12.6424, 0.134828, 0.0337542, 0.000234404 +873, 6.68741, 47.3023, 30859.8, 12.281, 0.130523, 0.0322788, 0.00022416 +874, 6.35024, 69.1774, 29246.3, 12.325, 0.131629, 0.0329303, 0.000228682 +875, 7.87837, 62.2509, 31542.6, 12.2259, 0.1288, 0.0306701, 0.000212992 +876, 5.91474, 56.682, 26934.1, 11.8388, 0.124648, 0.0338334, 0.000234954 +877, 7.37546, 74.3867, 28955.2, 12.2254, 0.128912, 0.0315892, 0.000219377 +878, 6.363, 55.0602, 28527.1, 12.1049, 0.127351, 0.032999, 0.000229161 +879, 4.99332, 54.6154, 31114.5, 12.4722, 0.134244, 0.0346648, 0.000240726 +880, 5.93524, 61.6377, 30171.8, 11.4322, 0.116937, 0.0334011, 0.000231951 +881, 5.46088, 55.8265, 26670.4, 12.5835, 0.135508, 0.0345387, 0.000239852 +882, 6.15648, 62.2389, 30159.3, 12.314, 0.130447, 0.0330903, 0.000229793 +883, 5.88133, 54.5528, 34032.9, 12.4516, 0.133343, 0.0330064, 0.000229211 +884, 6.17057, 64.3299, 32186.1, 12.4151, 0.13305, 0.0328267, 0.000227963 +885, 5.4055, 60.1102, 34199.2, 12.4919, 0.133437, 0.0336609, 0.000233757 +886, 5.92209, 67.2079, 34829.1, 12.3741, 0.131669, 0.0328541, 0.000228153 +887, 6.47452, 54.1864, 34577.9, 12.4727, 0.133005, 0.0321332, 0.000223147 +888, 5.99255, 66.4354, 33141.3, 12.2853, 0.130663, 0.032959, 0.000228882 +889, 6.42029, 65.2467, 31137.2, 12.5683, 0.133402, 0.0326083, 0.000226447 +890, 5.85296, 61.3538, 30193.3, 11.438, 0.117144, 0.0335158, 0.000232748 +891, 5.68192, 45.5069, 29588.4, 12.235, 0.130102, 0.0338379, 0.000234993 +892, 6.50703, 58.082, 22591.1, 12.1705, 0.129076, 0.0335207, 0.000232785 +893, 6.08911, 69.1255, 28273.5, 12.3624, 0.131742, 0.0334158, 0.000232055 +894, 7.07861, 62.654, 27350.8, 12.3408, 0.131221, 0.0321623, 0.000223346 +895, 5.44503, 58.9639, 31264.8, 12.794, 0.138431, 0.0339723, 0.000235918 +896, 6.15327, 56.6723, 31743.4, 12.483, 0.134165, 0.0329037, 0.000228498 +897, 6.29217, 60.1391, 26948.4, 11.814, 0.123631, 0.0332904, 0.000231183 +898, 6.46223, 51.7837, 33363.5, 12.3291, 0.131126, 0.0322904, 0.000224239 +899, 5.80437, 55.8426, 24197, 12.1311, 0.128346, 0.0343443, 0.000238503 +900, 6.35965, 55.1958, 29668.6, 12.0396, 0.126528, 0.0328665, 0.00022824 +901, 5.17007, 56.2854, 26159.4, 12.4204, 0.133273, 0.0350496, 0.000243401 +902, 6.35353, 49.8468, 30086.6, 12.6695, 0.136852, 0.032825, 0.000227951 +903, 7.05269, 56.5806, 34945.7, 12.3216, 0.130479, 0.031337, 0.000217612 +904, 4.81574, 71.6664, 31484.7, 12.2423, 0.130236, 0.0348872, 0.000242267 +905, 6.38196, 62.2262, 31552.7, 12.6787, 0.136642, 0.0326115, 0.000226469 +906, 5.69602, 67.1128, 31869.6, 12.5434, 0.133694, 0.033533, 0.000232868 +907, 6.61085, 56.6533, 31901.4, 12.1769, 0.128369, 0.0322608, 0.000224034 +908, 6.46682, 67.8843, 31086.6, 12.3228, 0.1308, 0.0325508, 0.000226047 +909, 5.84706, 59.0658, 29097.9, 12.2123, 0.128051, 0.0336604, 0.000233753 +910, 6.56166, 73.1349, 31804.8, 12.2673, 0.130072, 0.0323382, 0.000224571 +911, 6.25199, 59.2536, 28945.3, 12.6526, 0.13499, 0.0331036, 0.000229886 +912, 6.01294, 65.6984, 32141.7, 12.37, 0.132279, 0.0330511, 0.000229522 +913, 6.54032, 62.0982, 38086.1, 12.4351, 0.132262, 0.0316471, 0.000219774 +914, 4.58639, 59.5176, 31946.9, 12.2191, 0.130118, 0.0351794, 0.000244298 +915, 5.3235, 65.7895, 24806.5, 12.1145, 0.128659, 0.0349933, 0.000243009 +916, 5.26425, 55.8895, 31502.1, 12.5594, 0.135353, 0.0342084, 0.000237558 +917, 6.52884, 68.8435, 30933.3, 12.2564, 0.129881, 0.0324845, 0.000225587 +918, 6.19505, 58.2947, 33438, 12.4453, 0.131892, 0.032644, 0.000226694 +919, 6.13926, 53.4269, 34775.7, 12.4667, 0.133454, 0.0325621, 0.000226126 +920, 6.85898, 59.8347, 35038.9, 12.3415, 0.130774, 0.031576, 0.000219273 +921, 5.69322, 67.5551, 25312.5, 12.2431, 0.130251, 0.0343663, 0.000238655 +922, 6.51101, 45.7074, 30322.2, 12.2714, 0.130439, 0.0325806, 0.000226256 +923, 5.70622, 51.3767, 34094.7, 12.3512, 0.131877, 0.0332447, 0.000230865 +924, 5.16361, 60.8042, 29788, 12.5536, 0.135037, 0.0345805, 0.000240144 +925, 6.23085, 69.7045, 31695.8, 12.2595, 0.12997, 0.0328021, 0.000227792 +926, 5.45485, 66.3717, 26985.8, 11.9178, 0.12571, 0.0345067, 0.00023963 +927, 4.40532, 64.6536, 32293.3, 12.2082, 0.129979, 0.0354158, 0.000245944 +928, 5.63542, 47.0482, 34473.6, 12.3001, 0.130907, 0.0332986, 0.000231236 +929, 6.75905, 68.6245, 27186.1, 12.2633, 0.129991, 0.032613, 0.000226475 +930, 5.55167, 60.4518, 28402.6, 11.6499, 0.121509, 0.0341796, 0.000237359 +931, 5.73299, 65.8499, 33469, 12.2191, 0.129907, 0.0332834, 0.000231134 +932, 5.34035, 64.5131, 34279.2, 12.5442, 0.134625, 0.0337451, 0.000234341 +933, 5.0852, 52.932, 27933.3, 12.2601, 0.130814, 0.0349442, 0.00024267 +934, 6.36583, 66.3859, 29987.7, 12.4339, 0.132806, 0.0328198, 0.000227915 +935, 5.6813, 53.9925, 30688.9, 12.3406, 0.131425, 0.033701, 0.000234035 +936, 5.68759, 62.4648, 29291, 11.6726, 0.121772, 0.0338673, 0.000235189 +937, 5.47965, 48.5952, 29073.2, 12.2491, 0.13039, 0.0342002, 0.000237507 +938, 6.02663, 56.8116, 30258.5, 12.1724, 0.129441, 0.0332608, 0.000230978 +939, 5.8133, 54.2182, 28662.4, 12.4623, 0.132597, 0.0337636, 0.00023447 +940, 6.20581, 54.1492, 30107.5, 12.0754, 0.127887, 0.0330275, 0.000229358 +941, 5.45104, 54.8094, 29760, 12.3991, 0.132936, 0.0341548, 0.000237187 +942, 4.68738, 52.8701, 30695.3, 12.2598, 0.130892, 0.0351908, 0.000244373 +943, 6.31392, 61.9165, 33913.5, 12.157, 0.127874, 0.0324262, 0.000225181 +944, 5.59632, 58.792, 24363.6, 12.1182, 0.127632, 0.0346352, 0.000240523 +945, 5.20617, 54.2851, 29581.8, 12.5456, 0.135471, 0.0345433, 0.000239885 +946, 7.29311, 47.7478, 26527.6, 12.1929, 0.12892, 0.0319714, 0.000222018 +947, 7.30463, 60.9716, 30333.5, 12.2118, 0.128691, 0.0315267, 0.000218936 +948, 5.37695, 70.6457, 26601.2, 12.1476, 0.128705, 0.0346746, 0.000240794 +949, 6.00569, 55.8591, 29285.9, 11.7298, 0.122139, 0.0334098, 0.000232013 +950, 6.14919, 59.1008, 31201.9, 12.419, 0.133827, 0.0329744, 0.000228989 +951, 6.51367, 64.8173, 29531.5, 12.0331, 0.126357, 0.0326707, 0.00022688 +952, 5.91836, 56.9206, 36714.6, 12.386, 0.131839, 0.0326348, 0.000226631 +953, 6.71008, 54.6486, 32365.5, 12.2834, 0.130388, 0.0320747, 0.000222741 +954, 5.87049, 54.5149, 30205, 12.0711, 0.127554, 0.0334893, 0.000232565 +955, 5.81502, 66.5293, 32603.2, 12.3244, 0.131134, 0.0332733, 0.000231064 +956, 6.53167, 63.0006, 28469, 11.7639, 0.122358, 0.0327724, 0.000227585 +957, 6.16082, 58.6416, 33320.3, 12.3937, 0.131194, 0.0327049, 0.000227117 +958, 6.79662, 57.2505, 28153.7, 12.3169, 0.131085, 0.0324477, 0.000225332 +959, 5.97565, 61.3899, 27116.4, 12.2587, 0.13062, 0.0337223, 0.000234182 +960, 5.64628, 56.5221, 32766.4, 12.5508, 0.134297, 0.033493, 0.000232591 +961, 5.73878, 51.5026, 35103.5, 12.3502, 0.131762, 0.0330762, 0.000229696 +962, 6.63423, 75.8828, 34919.9, 12.334, 0.130579, 0.031883, 0.000221414 +963, 5.97177, 61.0122, 32806.3, 11.9556, 0.124863, 0.0330283, 0.000229363 +964, 6.77526, 59.2451, 29475.7, 12.2907, 0.130436, 0.032322, 0.00022446 +965, 6.21135, 53.0924, 33384.6, 12.4193, 0.133226, 0.0326281, 0.000226583 +966, 5.33682, 60.4236, 25834.4, 12.2629, 0.130653, 0.0348365, 0.000241921 +967, 6.83573, 63.6237, 25734.3, 12.2755, 0.13014, 0.03268, 0.000226939 +968, 5.04734, 55.693, 31597.1, 12.4371, 0.133597, 0.0345201, 0.000239722 +969, 6.15491, 54.9097, 33062, 12.5083, 0.13416, 0.0327438, 0.000227387 +970, 5.54662, 65.6566, 27402.6, 12.051, 0.127602, 0.0343155, 0.000238302 +971, 5.35595, 49.5956, 33631, 12.2883, 0.130858, 0.0338037, 0.000234746 +972, 6.50185, 68.1436, 35297.5, 12.3528, 0.130979, 0.0320142, 0.000222323 +973, 5.70105, 52.2494, 36152.3, 12.3599, 0.131693, 0.0330022, 0.000229184 +974, 5.43323, 60.7892, 28065.2, 11.9025, 0.125326, 0.0343992, 0.000238884 +975, 5.19211, 58.9843, 24593.7, 12.2582, 0.130785, 0.0352252, 0.000244622 +976, 7.10054, 58.9486, 21083.5, 12.2516, 0.130062, 0.0328696, 0.000228266 +977, 6.10818, 58.8485, 31032.2, 12.3553, 0.132683, 0.0330521, 0.000229529 +978, 6.26612, 59.6691, 34175.9, 12.2457, 0.128838, 0.0324602, 0.000225417 +979, 7.06381, 58.8088, 31038.7, 12.2442, 0.129391, 0.0317601, 0.000220557 +980, 5.56661, 62.0798, 28614.5, 11.8182, 0.124334, 0.0341305, 0.000237017 +981, 7.14197, 51.2796, 33464.3, 12.2164, 0.129021, 0.0313863, 0.000217966 +982, 5.82416, 44.2415, 32152.7, 12.2618, 0.130337, 0.0333157, 0.00023136 +983, 6.85074, 64.4284, 28646.7, 12.2591, 0.129957, 0.0323171, 0.000224423 +984, 5.60011, 68.0487, 28958.2, 12.3244, 0.130825, 0.0340374, 0.000236371 +985, 4.67114, 59.3319, 34671.3, 12.1833, 0.1294, 0.0346874, 0.000240887 +986, 6.496, 78.5996, 31183.3, 12.2803, 0.129969, 0.0324996, 0.000225692 +987, 5.27548, 61.5914, 27748.1, 12.1583, 0.129072, 0.0346781, 0.000240821 +988, 5.93969, 59.0098, 30906.1, 12.0529, 0.127597, 0.0333046, 0.000231281 +989, 5.07914, 60.5575, 32934.9, 12.3778, 0.132205, 0.0342994, 0.00023819 +990, 5.98073, 60.4926, 25158.3, 12.3368, 0.131388, 0.0339611, 0.000235841 +991, 6.83362, 55.7878, 30081.9, 12.3562, 0.131634, 0.0321735, 0.000223428 +992, 5.06144, 67.1096, 31566.4, 12.4161, 0.131577, 0.0345029, 0.000239604 +993, 6.80351, 58.5362, 28885.9, 12.3686, 0.131898, 0.0323528, 0.000224673 +994, 5.89572, 48.93, 25371.7, 12.2435, 0.130306, 0.0340586, 0.000236516 +995, 6.82817, 60.1753, 29901.4, 12.2835, 0.130207, 0.0322016, 0.000223623 +996, 6.24668, 63.4521, 31530, 12.8146, 0.138249, 0.0328, 0.000227778 +997, 5.30672, 67.0134, 27133.3, 11.9725, 0.126385, 0.0347113, 0.00024105 +998, 6.20123, 53.464, 28679.7, 12.0499, 0.126598, 0.0332072, 0.000230606 +999, 5.43664, 65.9048, 26829.6, 11.9057, 0.125557, 0.0345545, 0.000239962 +1000, 5.36103, 52.8247, 33747.7, 12.3174, 0.131246, 0.0337817, 0.000234595 diff --git a/Examples/hdro-0005/data/hdro-0005_MonteCarlo_QoIs_n100.txt b/Examples/hdro-0005/data/hdro-0005_MonteCarlo_QoIs_n100.txt new file mode 100644 index 00000000..001f5246 --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_MonteCarlo_QoIs_n100.txt @@ -0,0 +1,101 @@ +% 1-PFA-1-1 1-RMSA-1-1 1-PFD-1-1 1-PID-1-1 +12.7199 0.13765 0.0337731 0.000234535 +11.7033 0.120703 0.0326354 0.000226634 +12.2348 0.130199 0.033138 0.000230125 +12.6883 0.138202 0.0375177 0.00026054 +12.2234 0.130209 0.0334162 0.000232057 +11.7176 0.120698 0.0324159 0.00022511 +12.4371 0.133471 0.032645 0.000226702 +12.0929 0.128295 0.0337743 0.000234544 +11.8789 0.12354 0.0306865 0.000213101 +11.8049 0.122804 0.0330837 0.000229748 +12.2242 0.129559 0.03475 0.00024132 +12.3138 0.130073 0.0337897 0.000234651 +11.7396 0.122757 0.0340904 0.000236739 +12.1486 0.128148 0.0325493 0.000226036 +12.3456 0.130335 0.0334108 0.000232019 +11.8063 0.121738 0.0320674 0.00022269 +12.5882 0.13446 0.0310843 0.000215863 +11.8418 0.123286 0.0329782 0.000229015 +11.8507 0.124361 0.0338565 0.000235115 +11.7841 0.123515 0.0341136 0.0002369 +12.6914 0.137287 0.0339458 0.000235734 +12.7243 0.136923 0.0330293 0.00022937 +12.6017 0.13444 0.0328203 0.000227919 +12.1712 0.129556 0.0337342 0.000234265 +11.7347 0.121891 0.0332956 0.000231219 +12.004 0.125241 0.0321387 0.000223185 +12.6524 0.134976 0.0324737 0.000225512 +11.9556 0.125371 0.0331957 0.000230526 +12.3381 0.130772 0.0340989 0.000236798 +11.8139 0.121607 0.0317256 0.000220316 +12.5924 0.135793 0.0343654 0.000238649 +12.4225 0.132004 0.0336978 0.000234013 +11.7694 0.122588 0.0334265 0.000232129 +12.1679 0.128539 0.0346891 0.000240896 +12.3712 0.131885 0.0322515 0.000223969 +12.629 0.135189 0.0330525 0.000229532 +12.314 0.131335 0.0327703 0.000227572 +12.3982 0.132731 0.034925 0.000242534 +12.3168 0.131688 0.0331148 0.000229964 +12.1915 0.12935 0.0330689 0.000229645 +12.3663 0.130895 0.0336178 0.000233457 +12.5429 0.134889 0.0321513 0.000223273 +11.795 0.122673 0.0331094 0.000229926 +11.5433 0.120227 0.0370013 0.000256953 +12.281 0.129363 0.0336608 0.000233756 +12.6129 0.134799 0.0329647 0.000228922 +12.3619 0.132153 0.032707 0.000227132 +12.4303 0.132236 0.0337977 0.000234706 +12.4494 0.131507 0.0307124 0.00021328 +12.1408 0.128584 0.033279 0.000231104 +12.026 0.126574 0.0351261 0.000243931 +12.2826 0.131221 0.0333109 0.000231325 +12.1046 0.128583 0.0338545 0.0002351 +12.7577 0.136252 0.0319616 0.000221956 +12.2664 0.130745 0.0330958 0.000229832 +11.912 0.123749 0.0322967 0.000224283 +11.9566 0.123604 0.0312201 0.000216806 +12.1735 0.12968 0.0338067 0.000234768 +11.7483 0.122185 0.0333686 0.000231726 +11.6378 0.121221 0.0342487 0.000237838 +12.6914 0.137287 0.0339458 0.000235734 +12.7243 0.136923 0.0330293 0.00022937 +12.6017 0.13444 0.0328203 0.000227919 +12.1712 0.129556 0.0337342 0.000234265 +11.7347 0.121891 0.0332956 0.000231219 +12.004 0.125241 0.0321387 0.000223185 +12.6524 0.134976 0.0324737 0.000225512 +11.9556 0.125371 0.0331957 0.000230526 +12.3381 0.130772 0.0340989 0.000236798 +11.8139 0.121607 0.0317256 0.000220316 +12.5924 0.135793 0.0343654 0.000238649 +12.4225 0.132004 0.0336978 0.000234013 +11.7694 0.122588 0.0334265 0.000232129 +12.1679 0.128539 0.0346891 0.000240896 +12.3712 0.131885 0.0322515 0.000223969 +12.629 0.135189 0.0330525 0.000229532 +12.314 0.131335 0.0327703 0.000227572 +12.3982 0.132731 0.034925 0.000242534 +12.3168 0.131688 0.0331148 0.000229964 +12.1915 0.12935 0.0330689 0.000229645 +11.7092 0.122268 0.0341036 0.00023683 +12.3376 0.130296 0.0335359 0.000232888 +11.8398 0.123112 0.0328485 0.000228115 +12.1778 0.128121 0.0341701 0.000237293 +12.0161 0.126196 0.0330554 0.000229551 +12.5327 0.134088 0.0316126 0.000219532 +11.9106 0.123811 0.0324124 0.000225086 +11.8317 0.123333 0.033173 0.000230368 +12.3896 0.131708 0.0340681 0.000236584 +11.7501 0.122074 0.0315452 0.000219064 +11.8347 0.124244 0.034003 0.000236132 +12.2504 0.129351 0.0341861 0.000237403 +11.9873 0.126409 0.0336575 0.000233733 +12.4698 0.134471 0.0353641 0.000245584 +12.5962 0.134047 0.0325531 0.000226063 +11.9325 0.124564 0.0328142 0.000227876 +11.7345 0.121187 0.032623 0.000226549 +12.1292 0.129219 0.0340502 0.00023646 +12.5901 0.135028 0.0335965 0.000233309 +12.6208 0.134919 0.0329415 0.00022876 diff --git a/Examples/hdro-0005/data/hdro-0005_MonteCarlo_RVs_n100.txt b/Examples/hdro-0005/data/hdro-0005_MonteCarlo_RVs_n100.txt new file mode 100644 index 00000000..69617272 --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_MonteCarlo_RVs_n100.txt @@ -0,0 +1,101 @@ +% fc fy E +5.46494 69.285 32532.9 +6.89707 58.7763 25316.5 +5.84268 62.6472 33309.5 +3.78904 58.7472 24714.7 +6.05847 68.1934 28541.5 +6.35028 59.3551 33497.3 +6.26353 66.9938 32554.5 +5.56864 48.4761 31324.1 +7.8615 57.0804 31507.3 +5.84297 55.5586 33754.2 +5.36973 64.6006 26028.9 +5.82914 59.1467 28189.2 +5.31882 55.0451 31712.7 +6.91102 60.8859 25884.2 +5.68938 62.8941 32852.4 +6.61244 60.5182 33471.4 +7.66114 53.5285 30136.6 +5.7616 58.9524 35567.5 +5.87429 60.3694 27135.5 +5.20411 54.9095 32857.8 +5.23898 64.0623 33775.4 +6.25371 61.0737 29456.3 +6.05036 67.1445 33545.2 +5.86992 57.8695 28160.9 +6.31422 65.2099 26568 +6.95674 68.7449 28875.9 +6.43444 60.5788 32032.4 +5.98956 53.4496 31137.8 +5.35172 67.4278 31265.6 +6.98655 57.6518 32150.2 +5.86973 48.6977 23196.5 +5.5587 59.2154 32049.9 +5.6158 60.6145 33575 +4.98494 61.3122 30945.4 +6.30502 53.4985 35429.5 +6.06117 67.8071 31489.3 +6.48887 58.129 28896.8 +5.01282 58.4438 28835.1 +6.05406 62.3492 31058 +6.0224 54.1639 31802.3 +5.46494 64.0623 33775.4 +6.89707 61.0737 29456.3 +5.84268 67.1445 33545.2 +3.78904 57.8695 28160.9 +6.05847 65.2099 26568 +6.35028 68.7449 28875.9 +6.26353 60.5788 32032.4 +5.56864 53.4496 31137.8 +7.8615 67.4278 31265.6 +5.84297 57.6518 32150.2 +5.36973 48.6977 23196.5 +5.82914 59.2154 32049.9 +5.31882 60.6145 33575 +6.91102 61.3122 30945.4 +5.68938 53.4985 35429.5 +6.61244 67.8071 31489.3 +7.66114 58.129 28896.8 +5.7616 58.4438 28835.1 +5.87429 62.3492 31058 +5.20411 54.1639 31802.3 +5.23898 69.285 33775.4 +6.25371 58.7763 29456.3 +6.05036 62.6472 33545.2 +5.86992 58.7472 28160.9 +6.31422 68.1934 26568 +6.95674 59.3551 28875.9 +6.43444 66.9938 32032.4 +5.98956 48.4761 31137.8 +5.35172 57.0804 31265.6 +6.98655 55.5586 32150.2 +5.86973 64.6006 23196.5 +5.5587 59.1467 32049.9 +5.6158 55.0451 33575 +4.98494 60.8859 30945.4 +6.30502 62.8941 35429.5 +6.06117 60.5182 31489.3 +6.48887 53.5285 28896.8 +5.01282 58.9524 28835.1 +6.05406 60.3694 31058 +6.0224 54.9095 31802.3 +5.23898 64.0623 32532.9 +6.25371 61.0737 25316.5 +6.05036 67.1445 33309.5 +5.86992 57.8695 24714.7 +6.31422 65.2099 28541.5 +6.95674 68.7449 33497.3 +6.43444 60.5788 32554.5 +5.98956 53.4496 31324.1 +5.35172 67.4278 31507.3 +6.98655 57.6518 33754.2 +5.86973 48.6977 26028.9 +5.5587 59.2154 28189.2 +5.6158 60.6145 31712.7 +4.98494 61.3122 25884.2 +6.30502 53.4985 32852.4 +6.06117 67.8071 33471.4 +6.48887 58.129 30136.6 +5.01282 58.4438 35567.5 +6.05406 62.3492 27135.5 +6.0224 54.1639 32857.8 diff --git a/Examples/hdro-0005/data/hdro-0005_MonteCarlo_Table_RES_n100.csv b/Examples/hdro-0005/data/hdro-0005_MonteCarlo_Table_RES_n100.csv new file mode 100644 index 00000000..fc9e2fe2 --- /dev/null +++ b/Examples/hdro-0005/data/hdro-0005_MonteCarlo_Table_RES_n100.csv @@ -0,0 +1,101 @@ +Run #, fc, fy, E, 1-PFA-1-1, 1-RMSA-1-1, 1-PFD-1-1, 1-PID-1-1 +1, 5.46494, 69.285, 32532.9, 12.7199, 0.13765, 0.0337731, 0.000234535 +2, 6.89707, 58.7763, 25316.5, 11.7033, 0.120703, 0.0326354, 0.000226634 +3, 5.84268, 62.6472, 33309.5, 12.2348, 0.130199, 0.033138, 0.000230125 +4, 3.78904, 58.7472, 24714.7, 12.6883, 0.138202, 0.0375177, 0.00026054 +5, 6.05847, 68.1934, 28541.5, 12.2234, 0.130209, 0.0334162, 0.000232057 +6, 6.35028, 59.3551, 33497.3, 11.7176, 0.120698, 0.0324159, 0.00022511 +7, 6.26353, 66.9938, 32554.5, 12.4371, 0.133471, 0.032645, 0.000226702 +8, 5.56864, 48.4761, 31324.1, 12.0929, 0.128295, 0.0337743, 0.000234544 +9, 7.8615, 57.0804, 31507.3, 11.8789, 0.12354, 0.0306865, 0.000213101 +10, 5.84297, 55.5586, 33754.2, 11.8049, 0.122804, 0.0330837, 0.000229748 +11, 5.36973, 64.6006, 26028.9, 12.2242, 0.129559, 0.03475, 0.00024132 +12, 5.82914, 59.1467, 28189.2, 12.3138, 0.130073, 0.0337897, 0.000234651 +13, 5.31882, 55.0451, 31712.7, 11.7396, 0.122757, 0.0340904, 0.000236739 +14, 6.91102, 60.8859, 25884.2, 12.1486, 0.128148, 0.0325493, 0.000226036 +15, 5.68938, 62.8941, 32852.4, 12.3456, 0.130335, 0.0334108, 0.000232019 +16, 6.61244, 60.5182, 33471.4, 11.8063, 0.121738, 0.0320674, 0.00022269 +17, 7.66114, 53.5285, 30136.6, 12.5882, 0.13446, 0.0310843, 0.000215863 +18, 5.7616, 58.9524, 35567.5, 11.8418, 0.123286, 0.0329782, 0.000229015 +19, 5.87429, 60.3694, 27135.5, 11.8507, 0.124361, 0.0338565, 0.000235115 +20, 5.20411, 54.9095, 32857.8, 11.7841, 0.123515, 0.0341136, 0.0002369 +21, 5.23898, 64.0623, 33775.4, 12.6914, 0.137287, 0.0339458, 0.000235734 +22, 6.25371, 61.0737, 29456.3, 12.7243, 0.136923, 0.0330293, 0.00022937 +23, 6.05036, 67.1445, 33545.2, 12.6017, 0.13444, 0.0328203, 0.000227919 +24, 5.86992, 57.8695, 28160.9, 12.1712, 0.129556, 0.0337342, 0.000234265 +25, 6.31422, 65.2099, 26568, 11.7347, 0.121891, 0.0332956, 0.000231219 +26, 6.95674, 68.7449, 28875.9, 12.004, 0.125241, 0.0321387, 0.000223185 +27, 6.43444, 60.5788, 32032.4, 12.6524, 0.134976, 0.0324737, 0.000225512 +28, 5.98956, 53.4496, 31137.8, 11.9556, 0.125371, 0.0331957, 0.000230526 +29, 5.35172, 67.4278, 31265.6, 12.3381, 0.130772, 0.0340989, 0.000236798 +30, 6.98655, 57.6518, 32150.2, 11.8139, 0.121607, 0.0317256, 0.000220316 +31, 5.86973, 48.6977, 23196.5, 12.5924, 0.135793, 0.0343654, 0.000238649 +32, 5.5587, 59.2154, 32049.9, 12.4225, 0.132004, 0.0336978, 0.000234013 +33, 5.6158, 60.6145, 33575, 11.7694, 0.122588, 0.0334265, 0.000232129 +34, 4.98494, 61.3122, 30945.4, 12.1679, 0.128539, 0.0346891, 0.000240896 +35, 6.30502, 53.4985, 35429.5, 12.3712, 0.131885, 0.0322515, 0.000223969 +36, 6.06117, 67.8071, 31489.3, 12.629, 0.135189, 0.0330525, 0.000229532 +37, 6.48887, 58.129, 28896.8, 12.314, 0.131335, 0.0327703, 0.000227572 +38, 5.01282, 58.4438, 28835.1, 12.3982, 0.132731, 0.034925, 0.000242534 +39, 6.05406, 62.3492, 31058, 12.3168, 0.131688, 0.0331148, 0.000229964 +40, 6.0224, 54.1639, 31802.3, 12.1915, 0.12935, 0.0330689, 0.000229645 +41, 5.46494, 64.0623, 33775.4, 12.3663, 0.130895, 0.0336178, 0.000233457 +42, 6.89707, 61.0737, 29456.3, 12.5429, 0.134889, 0.0321513, 0.000223273 +43, 5.84268, 67.1445, 33545.2, 11.795, 0.122673, 0.0331094, 0.000229926 +44, 3.78904, 57.8695, 28160.9, 11.5433, 0.120227, 0.0370013, 0.000256953 +45, 6.05847, 65.2099, 26568, 12.281, 0.129363, 0.0336608, 0.000233756 +46, 6.35028, 68.7449, 28875.9, 12.6129, 0.134799, 0.0329647, 0.000228922 +47, 6.26353, 60.5788, 32032.4, 12.3619, 0.132153, 0.032707, 0.000227132 +48, 5.56864, 53.4496, 31137.8, 12.4303, 0.132236, 0.0337977, 0.000234706 +49, 7.8615, 67.4278, 31265.6, 12.4494, 0.131507, 0.0307124, 0.00021328 +50, 5.84297, 57.6518, 32150.2, 12.1408, 0.128584, 0.033279, 0.000231104 +51, 5.36973, 48.6977, 23196.5, 12.026, 0.126574, 0.0351261, 0.000243931 +52, 5.82914, 59.2154, 32049.9, 12.2826, 0.131221, 0.0333109, 0.000231325 +53, 5.31882, 60.6145, 33575, 12.1046, 0.128583, 0.0338545, 0.0002351 +54, 6.91102, 61.3122, 30945.4, 12.7577, 0.136252, 0.0319616, 0.000221956 +55, 5.68938, 53.4985, 35429.5, 12.2664, 0.130745, 0.0330958, 0.000229832 +56, 6.61244, 67.8071, 31489.3, 11.912, 0.123749, 0.0322967, 0.000224283 +57, 7.66114, 58.129, 28896.8, 11.9566, 0.123604, 0.0312201, 0.000216806 +58, 5.7616, 58.4438, 28835.1, 12.1735, 0.12968, 0.0338067, 0.000234768 +59, 5.87429, 62.3492, 31058, 11.7483, 0.122185, 0.0333686, 0.000231726 +60, 5.20411, 54.1639, 31802.3, 11.6378, 0.121221, 0.0342487, 0.000237838 +61, 5.23898, 69.285, 33775.4, 12.6914, 0.137287, 0.0339458, 0.000235734 +62, 6.25371, 58.7763, 29456.3, 12.7243, 0.136923, 0.0330293, 0.00022937 +63, 6.05036, 62.6472, 33545.2, 12.6017, 0.13444, 0.0328203, 0.000227919 +64, 5.86992, 58.7472, 28160.9, 12.1712, 0.129556, 0.0337342, 0.000234265 +65, 6.31422, 68.1934, 26568, 11.7347, 0.121891, 0.0332956, 0.000231219 +66, 6.95674, 59.3551, 28875.9, 12.004, 0.125241, 0.0321387, 0.000223185 +67, 6.43444, 66.9938, 32032.4, 12.6524, 0.134976, 0.0324737, 0.000225512 +68, 5.98956, 48.4761, 31137.8, 11.9556, 0.125371, 0.0331957, 0.000230526 +69, 5.35172, 57.0804, 31265.6, 12.3381, 0.130772, 0.0340989, 0.000236798 +70, 6.98655, 55.5586, 32150.2, 11.8139, 0.121607, 0.0317256, 0.000220316 +71, 5.86973, 64.6006, 23196.5, 12.5924, 0.135793, 0.0343654, 0.000238649 +72, 5.5587, 59.1467, 32049.9, 12.4225, 0.132004, 0.0336978, 0.000234013 +73, 5.6158, 55.0451, 33575, 11.7694, 0.122588, 0.0334265, 0.000232129 +74, 4.98494, 60.8859, 30945.4, 12.1679, 0.128539, 0.0346891, 0.000240896 +75, 6.30502, 62.8941, 35429.5, 12.3712, 0.131885, 0.0322515, 0.000223969 +76, 6.06117, 60.5182, 31489.3, 12.629, 0.135189, 0.0330525, 0.000229532 +77, 6.48887, 53.5285, 28896.8, 12.314, 0.131335, 0.0327703, 0.000227572 +78, 5.01282, 58.9524, 28835.1, 12.3982, 0.132731, 0.034925, 0.000242534 +79, 6.05406, 60.3694, 31058, 12.3168, 0.131688, 0.0331148, 0.000229964 +80, 6.0224, 54.9095, 31802.3, 12.1915, 0.12935, 0.0330689, 0.000229645 +81, 5.23898, 64.0623, 32532.9, 11.7092, 0.122268, 0.0341036, 0.00023683 +82, 6.25371, 61.0737, 25316.5, 12.3376, 0.130296, 0.0335359, 0.000232888 +83, 6.05036, 67.1445, 33309.5, 11.8398, 0.123112, 0.0328485, 0.000228115 +84, 5.86992, 57.8695, 24714.7, 12.1778, 0.128121, 0.0341701, 0.000237293 +85, 6.31422, 65.2099, 28541.5, 12.0161, 0.126196, 0.0330554, 0.000229551 +86, 6.95674, 68.7449, 33497.3, 12.5327, 0.134088, 0.0316126, 0.000219532 +87, 6.43444, 60.5788, 32554.5, 11.9106, 0.123811, 0.0324124, 0.000225086 +88, 5.98956, 53.4496, 31324.1, 11.8317, 0.123333, 0.033173, 0.000230368 +89, 5.35172, 67.4278, 31507.3, 12.3896, 0.131708, 0.0340681, 0.000236584 +90, 6.98655, 57.6518, 33754.2, 11.7501, 0.122074, 0.0315452, 0.000219064 +91, 5.86973, 48.6977, 26028.9, 11.8347, 0.124244, 0.034003, 0.000236132 +92, 5.5587, 59.2154, 28189.2, 12.2504, 0.129351, 0.0341861, 0.000237403 +93, 5.6158, 60.6145, 31712.7, 11.9873, 0.126409, 0.0336575, 0.000233733 +94, 4.98494, 61.3122, 25884.2, 12.4698, 0.134471, 0.0353641, 0.000245584 +95, 6.30502, 53.4985, 32852.4, 12.5962, 0.134047, 0.0325531, 0.000226063 +96, 6.06117, 67.8071, 33471.4, 11.9325, 0.124564, 0.0328142, 0.000227876 +97, 6.48887, 58.129, 30136.6, 11.7345, 0.121187, 0.032623, 0.000226549 +98, 5.01282, 58.4438, 35567.5, 12.1292, 0.129219, 0.0340502, 0.00023646 +99, 6.05406, 62.3492, 27135.5, 12.5901, 0.135028, 0.0335965, 0.000233309 +100, 6.0224, 54.1639, 32857.8, 12.6208, 0.134919, 0.0329415, 0.00022876 diff --git a/WorkflowAppHydroUQ.cpp b/WorkflowAppHydroUQ.cpp index 109ee3be..4a6c0c81 100644 --- a/WorkflowAppHydroUQ.cpp +++ b/WorkflowAppHydroUQ.cpp @@ -146,6 +146,7 @@ WorkflowAppHydroUQ::WorkflowAppHydroUQ(RemoteService *theService, QWidget *paren // theEventSelection = new HydroEventSelection(theRVs, theGI); theAnalysisSelection = new FEA_Selection(true); theUQ_Selection = new UQ_EngineSelection(ForwardReliabilitySensitivity); // ForwardReliabilitySensitivitySurrogate + theUQ_Selection = new UQ_EngineSelection(ForwardReliabilitySensitivitySurrogate); // ForwardReliabilitySensitivitySurrogate theEDP_Selection = new HydroEDP_Selection(theRVs); theResults = theUQ_Selection->getResults(); @@ -211,11 +212,11 @@ WorkflowAppHydroUQ::WorkflowAppHydroUQ(RemoteService *theService, QWidget *paren connect(theService, SIGNAL(closeDialog()), this, SLOT(runComplete())); connect(theJobManager, SIGNAL(closeDialog()), this, SLOT(runComplete())); - /** + // /** // KZ connect queryEVT and the reply connect(theUQ_Selection, SIGNAL(queryEVT()), theEventSelection, SLOT(replyEventType())); connect(theEventSelection, SIGNAL(typeEVT(QString)), theUQ_Selection, SLOT(setEventType(QString))); - **/ + // **/ //