Index: dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.resx
===================================================================
diff -u -r411 -r421
--- dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.resx (.../Resources.resx) (revision 411)
+++ dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.resx (.../Resources.resx) (revision 421)
@@ -138,4 +138,7 @@
No valid calculation performed
+
+ Could not read DGeoStability output file because it has no valid content
+
\ No newline at end of file
Index: dam failuremechanisms/damMacroStability/trunk/src/Tests/Deltares.DamMacroStability.CalculatorTests/DGeoStabilityResultReaderTests.cs
===================================================================
diff -u -r411 -r421
--- dam failuremechanisms/damMacroStability/trunk/src/Tests/Deltares.DamMacroStability.CalculatorTests/DGeoStabilityResultReaderTests.cs (.../DGeoStabilityResultReaderTests.cs) (revision 411)
+++ dam failuremechanisms/damMacroStability/trunk/src/Tests/Deltares.DamMacroStability.CalculatorTests/DGeoStabilityResultReaderTests.cs (.../DGeoStabilityResultReaderTests.cs) (revision 421)
@@ -12,580 +12,596 @@
[TestFixture]
public class DGeoStabilityResultReaderTests
{
-
private const string TestFolder = @"..\..\Tests\Files";
private const string TestFile = @"zuivering Gendt result.std";
- // private const string TestFileWithZonePlot = @"..\..\..\data\dam\mstabfiles\damWithZonePlotEnabled.std";
+ private const string TestFileWithZonePlot = @"damWithZonePlotEnabled.std";
- private DGeoStabilityResultReader reader;
+ [Test]
+ public void TestReadSafetyFactor()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string expectedFileName = Path.Combine(TestFolder, TestFile);
+ var result = DGeoStabilityResultReader.ExtractStabilityResults(expectedFileName);
+ Assert.GreaterOrEqual(1.276, result.zone1.SafetyFactor);
+ }
- [TestFixtureSetUp]
- public void FixtureSetup()
+ [Test]
+ public void TestCanParseStringContentWhenSafetyFactorIsInFirstColumn()
{
- reader = new DGeoStabilityResultReader();
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]" +
+ @"[MODEL]" + Environment.NewLine +
+ @" 1 : Bishop" + Environment.NewLine;
+
+ var result = DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ Assert.AreEqual(1.276, result.zone1.SafetyFactor, 0.001);
}
+
+ [Test]
+ public void CanParseStringContentWhenSafetyFactorIsInOtherColumn()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]" +
+ @"[MODEL]" + Environment.NewLine +
+ @" 1 : Bishop" + Environment.NewLine;
+
+ var result = DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ Assert.AreEqual(21.971, result.zone1.SafetyFactor, 0.001);
+ }
+
+ [Test]
+ public void CanParseFileContentsStability()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string fileName = Path.Combine(TestFolder, TestFile);
+ var contents = DGeoStabilityResultReader.GetFileContents(fileName);
+ var result = DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ Assert.AreEqual(1.276, result.zone1.SafetyFactor, 0.001);
+ Assert.AreEqual(26.091, result.zone1.CircleSurfacePointRightXCoordinate, 0.001);
+ }
+
+ [Test]
+ public void ValidateIfFileContentsHasZonePlotEnabled()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string fileName = Path.Combine(TestFolder, TestFileWithZonePlot);
+ var contents = DGeoStabilityResultReader.GetFileContents(fileName);
+ var result = DGeoStabilityResultReader.ParseHasZonePlotEnabled(contents);
+ Assert.IsTrue(result);
+ }
+ [Test]
+ public void FileContentsHasZonePlotZone1a()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string fileName = Path.Combine(TestFolder, TestFileWithZonePlot);
+ var contents = DGeoStabilityResultReader.GetFileContents(fileName);
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone? actualStabilityZone1a =
+ DGeoStabilityResultReader.GetZoneStability1a(contents);
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone expectedStabilityZone1a =
+ new DGeoStabilityResultReader.DGeoStabilityResultsSingleZone();
+ expectedStabilityZone1a.SafetyFactor = 1.104;
+ expectedStabilityZone1a.CircleSurfacePointLeftXCoordinate = 35.401;
+ expectedStabilityZone1a.CircleSurfacePointRightXCoordinate = 54.764;
+
+ Assert.IsNotNull(actualStabilityZone1a);
+ Assert.AreEqual(expectedStabilityZone1a.SafetyFactor, actualStabilityZone1a.Value.SafetyFactor);
+ Assert.AreEqual(expectedStabilityZone1a.CircleSurfacePointRightXCoordinate,
+ actualStabilityZone1a.Value.CircleSurfacePointRightXCoordinate);
+ }
+
+ [Test]
+ public void FileContentsHasZonePlotDisabled()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string zonePlotOff = @"[MODEL]" + Environment.NewLine +
+ @" 1 : Bishop" + Environment.NewLine +
+ @" 1 : C phi" + Environment.NewLine +
+ @" 0 : Probabilistic off" + Environment.NewLine +
+ @" 1 : Mean" + Environment.NewLine +
+ @" 0 : Geotextiles off" + Environment.NewLine +
+ @" 0 : Nails off" + Environment.NewLine +
+ @" 0 : Zone plot on" + Environment.NewLine +
+ @" 0 : Local measurements" + Environment.NewLine +
+ @"[END OF MODEL]" + Environment.NewLine;
+
+ bool actualZonePlot = DGeoStabilityResultReader.ParseHasZonePlotEnabled(zonePlotOff);
+ bool expectedZonePlot = false;
+
+ Assert.AreEqual(actualZonePlot, expectedZonePlot);
+ }
+
+ [Test]
+ public void FileContentsHasZonePlotZone1b()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string testWithZonePlot1b = @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Zone number" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.234 35 46.429 7.714 11.357 17.810 24.310 2 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[MODEL]" + Environment.NewLine +
+ @" 1 : Bishop" + Environment.NewLine;
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone? actualStabilityZone1b =
+ DGeoStabilityResultReader.GetZoneStability1b(testWithZonePlot1b);
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone expectedStabilityZone1b =
+ new DGeoStabilityResultReader.DGeoStabilityResultsSingleZone();
+ expectedStabilityZone1b.SafetyFactor = 1.234;
+ expectedStabilityZone1b.CircleSurfacePointLeftXCoordinate = 17.810;
+ expectedStabilityZone1b.CircleSurfacePointRightXCoordinate = 24.310;
+
+ Assert.IsNotNull(actualStabilityZone1b);
+ Assert.AreEqual(expectedStabilityZone1b.SafetyFactor, actualStabilityZone1b.Value.SafetyFactor);
+ Assert.AreEqual(expectedStabilityZone1b.CircleSurfacePointRightXCoordinate,
+ actualStabilityZone1b.Value.CircleSurfacePointRightXCoordinate);
+ }
+
+
[Test]
- public void ReadSafetyFactor()
+ public void FileContentsHasNoZonePlotZone1b()
{
- string expectedFileName = Path.Combine(TestFolder, TestFile);
- var result = reader.ExtractStabilityResults(expectedFileName);
- Assert.GreaterOrEqual(1.276, result.zone1.SafetyFactor);
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone? actualStabilityZone1b =
+ DGeoStabilityResultReader.GetZoneStability1b(TestFileWithZonePlot);
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone? expectedStabilityZone1b = null;
+
+ Assert.AreEqual(actualStabilityZone1b, expectedStabilityZone1b);
}
+
+ [Test]
+ public void FileContentsHasZonePlotZone1bAndZone2b()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string testWithZonePlot1bAnd2b = @"[MODEL]" + Environment.NewLine +
+ @" 1 : Bishop" + Environment.NewLine +
+ @" 1 : C phi" + Environment.NewLine +
+ @" 0 : Probabilistic off" + Environment.NewLine +
+ @" 1 : Mean" + Environment.NewLine +
+ @" 0 : Geotextiles off" + Environment.NewLine +
+ @" 0 : Nails off" + Environment.NewLine +
+ @" 1 : Zone plot on" + Environment.NewLine +
+ @" 0 : Local measurements" + Environment.NewLine +
+ @"[END OF MODEL]" + Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Zone number" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.234 35 46.429 7.714 11.357 17.810 24.310 2 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Zone number" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.345 35 46.429 7.714 11.357 19.810 26.310 4 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine;
+ DGeoStabilityResultReader.DGeoStabilityResults actualMStabResults =
+ DGeoStabilityResultReader.GetDGeoStabilityResults(testWithZonePlot1bAnd2b);
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone expectedStabilityZone1 =
+ new DGeoStabilityResultReader.DGeoStabilityResultsSingleZone();
+ DGeoStabilityResultReader.DGeoStabilityResultsSingleZone expectedStabilityZone2 =
+ new DGeoStabilityResultReader.DGeoStabilityResultsSingleZone();
+ expectedStabilityZone1.SafetyFactor = 1.234;
+ expectedStabilityZone1.CircleSurfacePointLeftXCoordinate = 17.810;
+ expectedStabilityZone1.CircleSurfacePointRightXCoordinate = 24.310;
+ expectedStabilityZone2.SafetyFactor = 1.345;
+ expectedStabilityZone2.CircleSurfacePointLeftXCoordinate = 19.810;
+ expectedStabilityZone2.CircleSurfacePointRightXCoordinate = 26.310;
+
+ Assert.IsNotNull(actualMStabResults);
+ Assert.AreEqual(expectedStabilityZone1.SafetyFactor, actualMStabResults.zone1.SafetyFactor);
+ Assert.AreEqual(expectedStabilityZone1.CircleSurfacePointRightXCoordinate,
+ actualMStabResults.zone1.CircleSurfacePointRightXCoordinate);
+ Assert.IsNotNull(actualMStabResults.zone2);
+ Assert.AreEqual(expectedStabilityZone2.SafetyFactor, actualMStabResults.zone2.Value.SafetyFactor);
+ Assert.AreEqual(expectedStabilityZone2.CircleSurfacePointRightXCoordinate,
+ actualMStabResults.zone2.Value.CircleSurfacePointRightXCoordinate);
+ }
+
+ [Test]
+ public void CanParseFileHasStabilityFactorZone()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ string fileName = Path.Combine(TestFolder, TestFileWithZonePlot);
+ var contents = DGeoStabilityResultReader.GetFileContents(fileName);
+ var result = DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ Assert.AreEqual(1.104, result.zone1.SafetyFactor, 0.001);
+ }
+
+ [Test]
+ public void CanParseStringContentForPositiveBeta()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Beta" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 17.810 1.1 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+
+ var beta = DGeoStabilityResultReader.GetBeta(contents);
+ Assert.AreEqual(1.1, beta, 0.001);
+ }
+
+ [Test]
+ public void CanParseStringContentForNegativeBeta()
+ {
+ // expected results are based on test in 'https://repos.deltares.nl/repos/dam/dam classic' revision 230
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Beta" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 17.810 -1.1 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+
+ var beta = DGeoStabilityResultReader.GetBeta(contents);
+ Assert.AreEqual(-1.1, beta, 0.001);
+ }
+ #region Exceptions
+
+ [Test]
+ [ExpectedException(typeof(ArgumentException))]
+ public void ThrowsExceptionWhenFileHasNoContent()
+ {
+ DGeoStabilityResultReader.GetDGeoStabilityResults("");
+ }
+
+ [Test]
+ [ExpectedException(typeof(ArgumentException))]
+ public void ThrowsExceptionWhenFileHasContentIsNull()
+ {
+ DGeoStabilityResultReader.GetDGeoStabilityResults(null);
+ }
+
+ [Test]
+ [ExpectedException(typeof(ArgumentException))]
+ public void ThrowsExceptionWhenFileContainsOnlySpaces()
+ {
+ DGeoStabilityResultReader.GetDGeoStabilityResults(" ");
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfDumpsHeaderNotFoundInContent()
+ {
+ var contents = " 8.30 " + Environment.NewLine;
+ contents += " [Dumps] " + Environment.NewLine;
+ contents += " test ";
+ contents += "[Data]" + Environment.NewLine;
+ contents += " 1.276 35 18.216 21.971 12.907 Design level";
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfDumpHeaderNotFoundInContent()
+ {
+ var contents = " 8.30 " + Environment.NewLine;
+ contents += " test ";
+ contents += "[Data]" + Environment.NewLine;
+ contents += " 1.276 35 18.216 21.971 12.907 Design level";
- // [Test]
- // public void CanParseStringContentWhenSafetyFactorIsInFirstColumn()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]" +
- // @"[MODEL]" + Environment.NewLine +
- // @" 1 : Bishop" + Environment.NewLine;
- //
- // var result = StabilityServiceFileParser.GetMStabResults(contents);
- // Assert.AreEqual(1.276, result.zone1.safetyFactor, 0.001);
- // }
- //
- // [Test]
- // public void CanParseStringContentWhenSafetyFactorIsInOtherColumn()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]" +
- // @"[MODEL]" + Environment.NewLine +
- // @" 1 : Bishop" + Environment.NewLine;
- //
- // var result = StabilityServiceFileParser.GetMStabResults(contents);
- // Assert.AreEqual(21.971, result.zone1.safetyFactor, 0.001);
- // }
- //
- // [Test]
- // public void CanParseFileContentsStability()
- // {
- // var contents = StabilityServiceFileParser.GetFileContents(TestFile);
- // var result = StabilityServiceFileParser.GetMStabResults(contents);
- // Assert.AreEqual(1.276, result.zone1.safetyFactor, 0.001);
- // Assert.AreEqual(26.091, result.zone1.circleSurfacePointRightXCoordinate, 0.001);
- // }
- //
- // [Test]
- // public void ValidateIfFileContentsHasZonePlotEnabled()
- // {
- // var contents = StabilityServiceFileParser.GetFileContents(TestFileWithZonePlot);
- // var result = StabilityServiceFileParser.ParseHasZonePlotEnabled(contents);
- // Assert.IsTrue(result);
- // }
- // [Test]
- // public void FileContentsHasZonePlotZone1a()
- // {
- // var contents = StabilityServiceFileParser.GetFileContents(TestFileWithZonePlot);
- // MStabResultsSingleZone? actualStabilityZone1a = StabilityServiceFileParser.GetZoneStability1a(contents);
- // MStabResultsSingleZone expectedStabilityZone1a = new MStabResultsSingleZone();
- // expectedStabilityZone1a.safetyFactor = 1.104;
- // expectedStabilityZone1a.circleSurfacePointLeftXCoordinate = 35.401;
- // expectedStabilityZone1a.circleSurfacePointRightXCoordinate = 54.764;
- //
- // Assert.IsNotNull(actualStabilityZone1a);
- // Assert.AreEqual(expectedStabilityZone1a.safetyFactor, actualStabilityZone1a.Value.safetyFactor);
- // Assert.AreEqual(expectedStabilityZone1a.circleSurfacePointRightXCoordinate, actualStabilityZone1a.Value.circleSurfacePointRightXCoordinate);
- // }
- //
- // [Test]
- // public void FileContentsHasZonePlotDisabled()
- // {
- // string zonePlotOff = @"[MODEL]" + Environment.NewLine +
- // @" 1 : Bishop" + Environment.NewLine +
- // @" 1 : C phi" + Environment.NewLine +
- // @" 0 : Probabilistic off" + Environment.NewLine +
- // @" 1 : Mean" + Environment.NewLine +
- // @" 0 : Geotextiles off" + Environment.NewLine +
- // @" 0 : Nails off" + Environment.NewLine +
- // @" 0 : Zone plot on" + Environment.NewLine +
- // @" 0 : Local measurements" + Environment.NewLine +
- // @"[END OF MODEL]" + Environment.NewLine;
- //
- // bool actualZonePlot = StabilityServiceFileParser.ParseHasZonePlotEnabled(zonePlotOff);
- // bool expectedZonePlot = false;
- //
- // Assert.AreEqual(actualZonePlot, expectedZonePlot);
- // }
- //
- // [Test]
- // public void FileContentsHasZonePlotZone1b()
- // {
- // string testWithZonePlot1b = @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Zone number" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.234 35 46.429 7.714 11.357 17.810 24.310 2 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[MODEL]" + Environment.NewLine +
- // @" 1 : Bishop" + Environment.NewLine;
- //
- // MStabResultsSingleZone? actualStabilityZone1b = StabilityServiceFileParser.GetZoneStability1b(testWithZonePlot1b);
- // MStabResultsSingleZone expectedStabilityZone1b = new MStabResultsSingleZone();
- // expectedStabilityZone1b.safetyFactor = 1.234;
- // expectedStabilityZone1b.circleSurfacePointLeftXCoordinate = 17.810;
- // expectedStabilityZone1b.circleSurfacePointRightXCoordinate = 24.310;
- //
- // Assert.IsNotNull(actualStabilityZone1b);
- // Assert.AreEqual(expectedStabilityZone1b.safetyFactor, actualStabilityZone1b.Value.safetyFactor);
- // Assert.AreEqual(expectedStabilityZone1b.circleSurfacePointRightXCoordinate, actualStabilityZone1b.Value.circleSurfacePointRightXCoordinate);
- // }
- //
- //
- // [Test]
- // public void FileContentsHasNoZonePlotZone1b()
- // {
- // var contents = StabilityServiceFileParser.GetFileContents(TestFileWithZonePlot);
- // MStabResultsSingleZone? actualStabilityZone1b = StabilityServiceFileParser.GetZoneStability1b(TestFileWithZonePlot);
- // MStabResultsSingleZone? expectedStabilityZone1b = null;
- //
- // Assert.AreEqual(actualStabilityZone1b, expectedStabilityZone1b);
- // }
- //
- // [Test]
- // public void FileContentsHasZonePlotZone1bAndZone2b()
- // {
- // string testWithZonePlot1bAnd2b = @"[MODEL]" + Environment.NewLine +
- // @" 1 : Bishop" + Environment.NewLine +
- // @" 1 : C phi" + Environment.NewLine +
- // @" 0 : Probabilistic off" + Environment.NewLine +
- // @" 1 : Mean" + Environment.NewLine +
- // @" 0 : Geotextiles off" + Environment.NewLine +
- // @" 0 : Nails off" + Environment.NewLine +
- // @" 1 : Zone plot on" + Environment.NewLine +
- // @" 0 : Local measurements" + Environment.NewLine +
- // @"[END OF MODEL]" + Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Zone number" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.234 35 46.429 7.714 11.357 17.810 24.310 2 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Zone number" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.345 35 46.429 7.714 11.357 19.810 26.310 4 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine;
- //
- // MStabResults actualMStabResults = StabilityServiceFileParser.GetMStabResults(testWithZonePlot1bAnd2b);
- // MStabResultsSingleZone expectedStabilityZone1 = new MStabResultsSingleZone();
- // MStabResultsSingleZone expectedStabilityZone2 = new MStabResultsSingleZone();
- // expectedStabilityZone1.safetyFactor = 1.234;
- // expectedStabilityZone1.circleSurfacePointLeftXCoordinate = 17.810;
- // expectedStabilityZone1.circleSurfacePointRightXCoordinate = 24.310;
- // expectedStabilityZone2.safetyFactor = 1.345;
- // expectedStabilityZone2.circleSurfacePointLeftXCoordinate = 19.810;
- // expectedStabilityZone2.circleSurfacePointRightXCoordinate = 26.310;
- //
- // Assert.IsNotNull(actualMStabResults);
- // Assert.AreEqual(expectedStabilityZone1.safetyFactor, actualMStabResults.zone1.safetyFactor);
- // Assert.AreEqual(expectedStabilityZone1.circleSurfacePointRightXCoordinate, actualMStabResults.zone1.circleSurfacePointRightXCoordinate);
- // Assert.IsNotNull(actualMStabResults.zone2);
- // Assert.AreEqual(expectedStabilityZone2.safetyFactor, actualMStabResults.zone2.Value.safetyFactor);
- // Assert.AreEqual(expectedStabilityZone2.circleSurfacePointRightXCoordinate, actualMStabResults.zone2.Value.circleSurfacePointRightXCoordinate);
- // }
- //
- // [Test]
- // public void CanParseFileHasStabilityFactorZone()
- // {
- // var contents = StabilityServiceFileParser.GetFileContents(TestFileWithZonePlot);
- // var result = StabilityServiceFileParser.GetMStabResults(contents);
- // Assert.AreEqual(1.104, result.zone1.safetyFactor, 0.001);
- // }
- //
- // [Test]
- // public void CanParseStringContentForPositiveBeta()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Beta" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 17.810 1.1 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // var beta = StabilityServiceFileParser.GetBeta(contents);
- // Assert.AreEqual(1.1, beta, 0.001);
- // }
- //
- // [Test]
- // public void CanParseStringContentForNegativeBeta()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Beta" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 17.810 -1.1 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // var beta = StabilityServiceFileParser.GetBeta(contents);
- // Assert.AreEqual(-1.1, beta, 0.001);
- // }
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfDataHeaderNotFoundInContent()
+ {
+ var contents = " 8.30 " + Environment.NewLine;
+ contents += "[Dump]" + Environment.NewLine;
+ contents += " test ";
+ contents += "[iets]" + Environment.NewLine;
+ contents += " 1.276 35 18.216 21.971 12.907 Design level";
- // #region Exceptions
- //
- // [Test]
- // [ExpectedException(typeof(ArgumentException))]
- // public void ThrowsExceptionWhenFileHasNoContent()
- // {
- // StabilityServiceFileParser.GetMStabResults("");
- // }
- //
- // [Test]
- // [ExpectedException(typeof(ArgumentException))]
- // public void ThrowsExceptionWhenFileHasContentIsNull()
- // {
- // StabilityServiceFileParser.GetMStabResults(null);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(ArgumentException))]
- // public void ThrowsExceptionWhenFileContainsOnlySpaces()
- // {
- // StabilityServiceFileParser.GetMStabResults(" ");
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfDumpsHeaderNotFoundInContent()
- // {
- // var contents = " 8.30 " + Environment.NewLine;
- // contents += " [Dumps] " + Environment.NewLine;
- // contents += " test ";
- // contents += "[Data]" + Environment.NewLine;
- // contents += " 1.276 35 18.216 21.971 12.907 Design level";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfDumpHeaderNotFoundInContent()
- // {
- // var contents = " 8.30 " + Environment.NewLine;
- // contents += " test ";
- // contents += "[Data]" + Environment.NewLine;
- // contents += " 1.276 35 18.216 21.971 12.907 Design level";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfDataHeaderNotFoundInContent()
- // {
- // var contents = " 8.30 " + Environment.NewLine;
- // contents += "[Dump]" + Environment.NewLine;
- // contents += " test ";
- // contents += "[iets]" + Environment.NewLine;
- // contents += " 1.276 35 18.216 21.971 12.907 Design level";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfStabilityColumnNotFound()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // //@"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfExitPointXCoordinateColumnNotFound()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfStabilityColumnCouldntBeParsed()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor " +
- // @"Number of slices " +
- // @"X-Centrepoint " +
- // @"Y-Centrepoint " +
- // @"Radius " +
- // @"X coordinate left surface" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name " +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfExitPointXCoordinateColumnCouldntBeParsed()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor " +
- // @"Number of slices " +
- // @"X-Centrepoint " +
- // @"Y-Centrepoint " +
- // @"Radius " +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name " +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // StabilityServiceFileParser.GetMStabResults(contents);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(ArgumentException))]
- // public void ThrowIfOuputFileNameEmpty()
- // {
- // StabilityServiceFileParser.GetFileContents("");
- // }
- //
- // [Test]
- // [ExpectedException(typeof(ArgumentException))]
- // public void ThrowIfOuputFileNameIsNull()
- // {
- // StabilityServiceFileParser.GetFileContents(null);
- // }
- //
- // [Test]
- // [ExpectedException(typeof(ArgumentException))]
- // public void ThrowIfOuputFileNameContainsSpaces()
- // {
- // StabilityServiceFileParser.GetFileContents("");
- // }
- //
- // [Test]
- // [ExpectedException(typeof(FileNotFoundException))]
- // public void ThrowIfOuputFileNotFound()
- // {
- // StabilityServiceFileParser.GetFileContents("test.std");
- // }
- //
- // [Test]
- // [ExpectedException(typeof(StabilityFileParseException))]
- // public void ThrowIfBetaColumnNotFound()
- // {
- // var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
- // @"[End of CircleResults]" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dumps]" + Environment.NewLine +
- // @" 1 : number of dumps in file" + Environment.NewLine +
- // Environment.NewLine +
- // @"[Dump]" + Environment.NewLine +
- // @"[Dump Header]" + Environment.NewLine +
- // @"[Column Indication]" + Environment.NewLine +
- // @"Stability factor" + Environment.NewLine +
- // @"Number of slices" + Environment.NewLine +
- // @"X-Centrepoint" + Environment.NewLine +
- // @"Y-Centrepoint" + Environment.NewLine +
- // @"Radius" + Environment.NewLine +
- // @"X coordinate right surface" + Environment.NewLine +
- // @"Dump name" + Environment.NewLine +
- // @"[End of Column Indication]" + Environment.NewLine +
- // @"[Data]" + Environment.NewLine +
- // @" 1.276 35 18.216 21.971 12.907 17.810 Design level" + Environment.NewLine +
- // @"[End of Data]" + Environment.NewLine +
- // @"[End Of Dump Header]" + Environment.NewLine +
- // @"[SliceGeometry]" + Environment.NewLine +
- // @"[Column Indication]";
- //
- // StabilityServiceFileParser.GetBeta(contents);
- // }
- //
- // #endregion
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfStabilityColumnNotFound()
+ {
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ //@"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfExitPointXCoordinateColumnNotFound()
+ {
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ // @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfStabilityColumnCouldntBeParsed()
+ {
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor " +
+ @"Number of slices " +
+ @"X-Centrepoint " +
+ @"Y-Centrepoint " +
+ @"Radius " +
+ @"X coordinate left surface" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name " +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfExitPointXCoordinateColumnCouldntBeParsed()
+ {
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor " +
+ @"Number of slices " +
+ @"X-Centrepoint " +
+ @"Y-Centrepoint " +
+ @"Radius " +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name " +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+
+ DGeoStabilityResultReader.GetDGeoStabilityResults(contents);
+ }
+
+ [Test]
+ [ExpectedException(typeof(ArgumentException))]
+ public void ThrowIfOuputFileNameEmpty()
+ {
+ DGeoStabilityResultReader.GetFileContents("");
+ }
+
+ [Test]
+ [ExpectedException(typeof(ArgumentException))]
+ public void ThrowIfOuputFileNameIsNull()
+ {
+ DGeoStabilityResultReader.GetFileContents(null);
+ }
+
+ [Test]
+ [ExpectedException(typeof(ArgumentException))]
+ public void ThrowIfOuputFileNameContainsSpaces()
+ {
+ DGeoStabilityResultReader.GetFileContents("");
+ }
+
+ [Test]
+ [ExpectedException(typeof(FileNotFoundException))]
+ public void ThrowIfOuputFileNotFound()
+ {
+ DGeoStabilityResultReader.GetFileContents("test.std");
+ }
+
+ [Test]
+ [ExpectedException(typeof(DGeoStabilityResultReaderException))]
+ public void ThrowIfBetaColumnNotFound()
+ {
+ var contents = @" 28.237 28.850 23.786 2.324 " + Environment.NewLine +
+ @"[End of CircleResults]" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dumps]" + Environment.NewLine +
+ @" 1 : number of dumps in file" + Environment.NewLine +
+ Environment.NewLine +
+ @"[Dump]" + Environment.NewLine +
+ @"[Dump Header]" + Environment.NewLine +
+ @"[Column Indication]" + Environment.NewLine +
+ @"Stability factor" + Environment.NewLine +
+ @"Number of slices" + Environment.NewLine +
+ @"X-Centrepoint" + Environment.NewLine +
+ @"Y-Centrepoint" + Environment.NewLine +
+ @"Radius" + Environment.NewLine +
+ @"X coordinate right surface" + Environment.NewLine +
+ @"Dump name" + Environment.NewLine +
+ @"[End of Column Indication]" + Environment.NewLine +
+ @"[Data]" + Environment.NewLine +
+ @" 1.276 35 18.216 21.971 12.907 17.810 Design level" + Environment.NewLine +
+ @"[End of Data]" + Environment.NewLine +
+ @"[End Of Dump Header]" + Environment.NewLine +
+ @"[SliceGeometry]" + Environment.NewLine +
+ @"[Column Indication]";
+
+ DGeoStabilityResultReader.GetBeta(contents);
+ }
+
+ #endregion
+
}
}
Index: dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/DGeoStabilityResultReader.cs
===================================================================
diff -u -r411 -r421
--- dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/DGeoStabilityResultReader.cs (.../DGeoStabilityResultReader.cs) (revision 411)
+++ dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/DGeoStabilityResultReader.cs (.../DGeoStabilityResultReader.cs) (revision 421)
@@ -3,9 +3,7 @@
using System.Globalization;
using System.IO;
using System.Linq;
-using System.Text;
using System.Text.RegularExpressions;
-using System.Threading.Tasks;
using Deltares.DamMacroStability.Calculator.Properties;
namespace Deltares.DamMacroStability.Calculator
@@ -14,7 +12,7 @@
///
/// Read results from DGeoStability output file
///
- public class DGeoStabilityResultReader
+ public static class DGeoStabilityResultReader
{
enum StabilityZone { stabilityZone1a = 1, stabilityZone1b = 2, stabilityZone2a = 3, stabilityZone2b = 4, stabilityZone3a = 5, stabilityZone3b = 6 };
@@ -63,7 +61,7 @@
///
/// The project file to process
/// The DGeoStability calculation results
- public DGeoStabilityResults ExtractStabilityResults(string projectFileName)
+ public static DGeoStabilityResults ExtractStabilityResults(string projectFileName)
{
if (string.IsNullOrEmpty(projectFileName) || projectFileName.Trim() == "")
{
@@ -476,7 +474,7 @@
///
/// The file to parse
/// The error messages
- private string[] ParseDGeoStabilityErrorFile(string outputFile)
+ private static string[] ParseDGeoStabilityErrorFile(string outputFile)
{
string errorFile = outputFile.Replace(".std", ".err");
@@ -503,6 +501,56 @@
return new string[0];
}
}
+ public static DGeoStabilityResultsSingleZone? GetZoneStability1a(string fileContent)
+ {
+ return ParseZoneResults(fileContent, (int)StabilityZone.stabilityZone1a);
+ }
+ public static DGeoStabilityResultsSingleZone? GetZoneStability1b(string fileContent)
+ {
+ return ParseZoneResults(fileContent, (int)StabilityZone.stabilityZone1b);
+ }
+
+ public static double GetBeta(string fileContent)
+ {
+ if (string.IsNullOrEmpty(fileContent) || fileContent.Trim() == "")
+ {
+ throw new ArgumentException(string.Format(
+ Resources.DGeoStabilityResultReader_GetBeta_OutputFileHasNoContent, fileContent));
+ }
+
+ if (ParseHasZonePlotEnabled(fileContent))
+ {
+ return GetBetaWithZones(fileContent);
+ }
+ else
+ {
+ return GetBetaNoZones(fileContent);
+ }
+
+ }
+
+ public static double GetBetaNoZones(string fileContent)
+ {
+ return GetColumnValueNoZones(fileContent, "Beta");
+ }
+
+ public static double GetBetaWithZones(string fileContent)
+ {
+ DGeoStabilityResults mStabResults = new DGeoStabilityResults();
+ DGeoStabilityResultsSingleZone? zoneResults1 = GetDGeoStabilityResultsSingleZoneFrom(fileContent,
+ StabilityZone.stabilityZone1a, StabilityZone.stabilityZone1b);
+ if (zoneResults1 != null)
+ {
+ mStabResults.zone1 = zoneResults1.Value;
+ }
+ else
+ {
+ throw new DGeoStabilityResultReaderException("Stabilityzone 1a or 1b should exist");
+ }
+ //mStabResults.zone2 = GetMStabResultsSingleZoneFrom(fileContent, StabilityZone.stabilityZone2a, StabilityZone.stabilityZone2b);
+ return mStabResults.zone1.Beta;
+ }
+
}
}
Index: dam failuremechanisms/damMacroStability/trunk/src/Tests/Files/damWithZonePlotEnabled.std
===================================================================
diff -u
--- dam failuremechanisms/damMacroStability/trunk/src/Tests/Files/damWithZonePlotEnabled.std (revision 0)
+++ dam failuremechanisms/damMacroStability/trunk/src/Tests/Files/damWithZonePlotEnabled.std (revision 421)
@@ -0,0 +1,3811 @@
+Dump file for D-Geo Stability : Stability of earth slopes.
+==============================================================================
+COMPANY :
+LICENSE :
+DATE : 2-12-2010
+TIME : 16:53:36
+FILENAME : D:\DelphiWin32Projects\trunk\data\DGeoStability\Examples\Tutorial-8.std
+CREATED BY : D-Geo Stability version 10.1.1.2
+========================== BEGINNING OF DATA ==========================
+[Input Data]
+[VERSION]
+Soil=1001
+Geometry=1000
+StressCurve=1000
+BondStressDiagram=1000
+D-Geo Stability=1003
+[END OF VERSION]
+
+[SOIL COLLECTION]
+ 11 = number of items
+[SOIL]
+Soft Clay
+SoilColor=16575398
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=14.00
+SoilGamWet=14.00
+SoilRestSlope=0
+SoilCohesion=8.00
+SoilPhi=20.00
+SoilDilatancy=20.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Medium Clay
+SoilColor=11141025
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=17.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Stiff Clay
+SoilColor=2763429
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Peat
+SoilColor=7077877
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=12.00
+SoilGamWet=12.00
+SoilRestSlope=1
+SoilCohesion=5.00
+SoilPhi=15.00
+SoilDilatancy=15.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loose Sand
+SoilColor=42495
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=17.00
+SoilGamWet=19.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Berm Sand
+SoilColor=15728396
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=19.50
+SoilGamWet=21.00
+SoilRestSlope=0
+SoilCohesion=2.00
+SoilPhi=32.00
+SoilDilatancy=32.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Sand
+SoilColor=851951
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=1
+SoilCohesion=0.00
+SoilPhi=29.00
+SoilDilatancy=29.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Gravel
+SoilColor=5244889
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=18.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Loam
+SoilColor=13407356
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=20.00
+SoilGamWet=20.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Muck
+SoilColor=4163021
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=11.00
+SoilGamWet=11.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[SOIL]
+Undetermined
+SoilColor=16777215
+SoilSoilType=2
+SoilUseSoilType=0
+SoilExcessPorePressure=0.00
+SoilPorePressureFactor=1.00
+SoilGamDry=0.00
+SoilGamWet=0.00
+SoilRestSlope=0
+SoilCohesion=0.00
+SoilPhi=0.00
+SoilDilatancy=0.00
+SoilCuTop=0.00
+SoilCuBottom=0.00
+SoilCuGradient=0.00
+SoilStressTableName=
+SoilBondStressTableName=
+SoilMatStrengthType=0
+SoilProbInputValues=0
+SoilRatioCuPc=0.22
+SoilPc=0.00E+00
+SoilPOP=10.00
+SoilRheologicalCoefficient=0.00
+xCoorSoilPc=-100.000
+yCoorSoilPc=-100.000
+IsPopCalculated=0
+SoilIsAquifer=0
+SoilUseProbDefaults=1
+SoilStdCohesion=0.00
+SoilStdPhi=0.00
+SoilStdRatioCuPc=0.00
+SoilStdRatioCuPcPassive=0.00
+SoilStdRatioCuPcActive=0.00
+SoilStdCu=0.00
+SoilStdCuTop=0.00
+SoilStdCuGradient=0.00
+SoilStdPn=0.20
+SoilDistCohesion=3
+SoilDistPhi=3
+SoilDistStressTable=3
+SoilDistRatioCuPc=3
+SoilDistRatioCuPcPassive=3
+SoilDistRatioCuPcActive=3
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+SoilDistPn=3
+SoilCorrelationCPhi=0.00
+SoilRatioCuPcPassive=0.00
+SoilRatioCuPcActive=0.00
+SoilCuPassiveTop=0.00
+SoilCuPassiveBottom=0.00
+SoilCuActiveTop=0.00
+SoilCuActiveBottom=0.00
+SoilUniformRatioCuPc=1
+SoilUniformCu=1
+SoilDesignPartialCohesion=0.00
+SoilDesignStdCohesion=0.00
+SoilDesignPartialPhi=0.00
+SoilDesignStdPhi=0.00
+SoilDesignPartialStressTable=0.00
+SoilDesignStdStressTable=0.00
+SoilDesignPartialRatioCuPc=0.00
+SoilDesignStdRatioCuPc=0.00
+SoilDesignPartialCu=0.00
+SoilDesignStdCu=0.00
+SoilDesignPartialPOP=1.10
+SoilDesignStdPOP=-1.65
+SoilDesignPartialRRatio=1.00
+SoilDesignStdRRatio=0.00
+SoilSoilGroup=0
+SoilStdPOP=0.00
+SoilDistPOP=2
+SoilHorFluctScaleCoh=50.00
+SoilVertFluctScaleCoh=0.25
+SoilNumberOfTestsCoh=1
+SoilVarianceRatioCoh=0.75
+SoilHorFluctScalePhi=50.00
+SoilVertFluctScalePhi=0.25
+SoilNumberOfTestsPhi=1
+SoilVarianceRatioPhi=0.75
+SoilRRatio=1.0000000
+SoilDistCu=3
+SoilDistCuTop=3
+SoilDistCuGradient=3
+[END OF SOIL]
+[END OF SOIL COLLECTION]
+
+[GEOMETRY DATA]
+[ACCURACY]
+ 0.0010
+[END OF ACCURACY]
+
+[POINTS]
+ 21 - Number of geometry points -
+ 1 0.000 -6.000 0.000
+ 2 75.000 -6.000 0.000
+ 3 0.000 -4.000 0.000
+ 4 75.000 -4.000 0.000
+ 5 0.000 -2.000 0.000
+ 6 75.000 -2.000 0.000
+ 7 0.000 0.000 0.000
+ 8 17.000 0.000 0.000
+ 9 34.500 5.000 0.000
+ 10 40.500 5.000 0.000
+ 11 50.500 0.000 0.000
+ 12 58.500 0.000 0.000
+ 13 59.500 -2.000 0.000
+ 14 60.500 -2.000 0.000
+ 15 61.500 0.000 0.000
+ 16 75.000 0.000 0.000
+ 17 0.000 4.000 0.000
+ 18 75.000 -0.250 0.000
+ 19 35.000 4.000 0.000
+ 20 42.000 3.250 0.000
+ 21 49.500 -0.250 0.000
+[END OF POINTS]
+
+[CURVES]
+ 16 - Number of curves -
+ 1 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 1 2
+ 2 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 3 4
+ 3 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 5 6
+ 4 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 7 8
+ 5 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 8 9
+ 6 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 9 10
+ 7 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 10 11
+ 8 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 11 12
+ 9 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 12 13
+ 10 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 13 14
+ 11 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 14 15
+ 12 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 15 16
+ 13 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 17 19
+ 14 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 19 20
+ 15 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 20 21
+ 16 - Curve number
+ 2 - number of points on curve, next line(s) are pointnumbers
+ 21 18
+[END OF CURVES]
+
+[BOUNDARIES]
+ 4 - Number of boundaries -
+ 0 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 1
+ 1 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 2
+ 2 - Boundary number
+ 1 - number of curves on boundary, next line(s) are curvenumbers
+ 3
+ 3 - Boundary number
+ 9 - number of curves on boundary, next line(s) are curvenumbers
+ 4 5 6 7 8 9 10 11 12
+[END OF BOUNDARIES]
+
+[USE PROBABILISTIC DEFAULTS BOUNDARIES]
+ 4 - Number of boundaries -
+ 1
+ 1
+ 1
+ 1
+[END OF USE PROBABILISTIC DEFAULTS BOUNDARIES]
+
+[STDV BOUNDARIES]
+ 4 - Number of boundaries -
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+ 0.00000000000000E+0000
+[END OF STDV BOUNDARIES]
+
+[DISTRIBUTION BOUNDARIES]
+ 4 - Number of boundaries -
+ 0
+ 0
+ 0
+ 0
+[END OF DISTRIBUTION BOUNDARIES]
+
+[PIEZO LINES]
+ 1 - Number of piezometric level lines -
+ 1 - PlLine number
+ 4 - number of curves on PlLine, next line(s) are curvenumbers
+ 13 14 15 16
+[END OF PIEZO LINES]
+
+[PHREATIC LINE]
+ 1 - Number of the piezometric level line acting as phreatic line -
+[END OF PHREATIC LINE]
+
+[WORLD CO-ORDINATES]
+ 0.000 - X world 1 -
+ 0.000 - Y world 1 -
+ 0.000 - X world 2 -
+ 0.000 - Y world 2 -
+[END OF WORLD CO-ORDINATES]
+
+[LAYERS]
+ 3 - Number of layers -
+ 1 - Layer number, next line is material of layer
+ Sand
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 1 - Boundarynumber at top of layer
+ 0 - Boundarynumber at bottom of layer
+ 2 - Layer number, next line is material of layer
+ Peat
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 2 - Boundarynumber at top of layer
+ 1 - Boundarynumber at bottom of layer
+ 3 - Layer number, next line is material of layer
+ Soft Clay
+ 1 - Piezometric level line at top of layer
+ 1 - Piezometric level line at bottom of layer
+ 3 - Boundarynumber at top of layer
+ 2 - Boundarynumber at bottom of layer
+[END OF LAYERS]
+
+[LAYERLOADS]
+ - Layers which are loads -
+
+[END OF LAYERLOADS]
+
+[END OF GEOMETRY DATA]
+[RUN IDENTIFICATION TITLES]
+Tutorial 8 for MStab
+Zone Plot model
+
+[MODEL]
+ 1 : Bishop
+ 1 : C phi
+ 0 : Probabilistic off
+ 1 : Mean
+ 0 : Geotextiles off
+ 0 : Nails off
+ 1 : Zone plot on
+ 0 : Local measurements
+[END OF MODEL]
+[MSEEPNET]
+ Use potential file
+ 0 : Do not use water net of MSeep file
+ 0 : Do not make negative pressures 0
+[UNIT WEIGHT WATER]
+ 9.81 : Unit weight water
+[DEGREE OF CONSOLIDATION]
+ 3 Number of layers
+ 3 100
+ 2 100 100
+ 1 100 100 100
+ 0 capillary water not included
+[degree Temporary loads]
+ 100 100 100
+ 0 capillary water not included
+[degree Free water(Cu)]
+ 100 100 100
+[degree earth quake]
+ 100 100 100
+[CIRCLES]
+ 43.000 51.000 8 X-direction
+ 6.000 9.000 8 Y-direction
+ -1.500 -4.500 8 Tangent lines
+ 0.000 0.000 0 no fixed point used
+[SPENCER SLIP DATA]
+ 0 Number of points
+[SPENCER SLIP DATA 2]
+ 0 Number of points
+[SPENCER SLIP INTERVAL]
+ 2 : Slip spencer interval
+[LINE LOADS]
+ 0 = number of items
+[UNIFORM LOADS ]
+ 0 = number of items
+[TREE ON SLOPE]
+0.00 = WindForce
+0.00 = XCoordinate
+0.00 = YCoordinate
+10.00 = width of root zone
+0.0 = AngleOfDistribution
+[END OF TREE ON SLOPE]
+[EARTH QUAKE]
+ 0.000 = horizontal acceleration
+ 0.000 = vertical acceleration
+ 0.000 = free water moment factor
+[SIGMA-TAU CURVES]
+ 0 = number of items
+[END OF SIGMA-TAU CURVES]
+[BOND STRESS DIAGRAMS]
+ 0 = number of items
+[END OF BOND STRESS DIAGRAMS]
+[MINIMAL REQUIRED CIRCLE DEPTH]
+ 0.00 [m]
+[Slip Circle Selection]
+IsMinXEntryUsed=0
+IsMaxXEntryUsed=0
+XEntryMin=0.00
+XEntryMax=0.00
+[End of Slip Circle Selection]
+[START VALUE SAFETY FACTOR]
+ 1.000 [-]
+[REFERENCE LEVEL CU]
+ 3
+[LIFT SLIP DATA]
+ 0.000 0.000 1 X-direction Left
+ 0.000 0.000 1 Y-direction Left
+ 0.000 0.000 1 X-direction Right
+ 0.000 0.000 1 Y-direction Right
+ 0.000 0.000 1 Y-direction tangent lines
+ 0 Automatic grid calculation (1)
+[EXTERNAL WATER LEVELS]
+ 0 = No water data used
+ 0.00 = Design level
+ 0.30 = Decimate height
+ 1 norm = 1/10000
+ 1 = number of items
+Water data (1)
+ 1 = Phreatic line
+ 0.00 = Level
+ Piezo lines
+ 3 - Number of layers
+ 0 0 = Pl-top and pl-bottom
+ 0 0 = Pl-top and pl-bottom
+ 0 0 = Pl-top and pl-bottom
+[MODEL FACTOR]
+ 1.00 = Limit value stability factor
+ 0.08 = Standard deviation for limit value stability factor
+ 0.00 = Reference standard deviation for degree of consolidation
+ 100.00 = Length of the section
+ 0 = Use contribution of end section
+ 0.00 = Lateral stress ratio
+ 0.25 = Coefficient of variation contribution edge of section
+[CALCULATION OPTIONS]
+MoveCalculationGrid=1
+ProbCalculationType=2
+SearchMethod=0
+[END OF CALCULATION OPTIONS]
+[PROBABILISTIC DEFAULTS]
+CohesionVariationTotal=0.25
+CohesionDesignPartial=1.25
+CohesionDesignStdDev=-1.65
+CohesionDistribution=3
+PhiVariationTotal=0.15
+PhiDesignPartial=1.10
+PhiDesignStdDev=-1.65
+PhiDistribution=3
+StressTableVariationTotal=0.20
+StressTableDesignPartial=1.15
+StressTableDesignStdDev=-1.65
+StressTableDistribution=3
+RatioCuPcVariationTotal=0.25
+RatioCuPcDesignPartial=1.15
+RatioCuPcDesignStdDev=-1.65
+RatioCuPcDistribution=3
+CuVariationTotal=0.25
+CuDesignPartial=1.15
+CuDesignStdDev=-1.65
+CuDistribution=3
+POPVariationTotal=0.10
+POPDesignPartial=1.10
+POPDesignStdDev=-1.65
+POPDistribution=3
+CompressionRatioVariationTotal=0.25
+CompressionRatioDesignPartial=1.00
+CompressionRatioDesignStdDev=0.00
+CompressionRatioDistribution=3
+ConsolidationCoefTotalStdDev=0.20
+ConsolidationCoefDesignPartial=1.00
+ConsolidationCoefDesignStdDev=1.65
+ConsolidationCoefDistribution=2
+HydraulicPressureTotalStdDev=0.50
+HydraulicPressureDesignPartial=1.00
+HydraulicPressureDesignStdDev=1.65
+HydraulicPressureDistribution=3
+LimitValueBishopMean=1.00
+LimitValueBishopStdDev=0.08
+LimitValueBishopDistribution=3
+LimitValueVanMean=0.95
+LimitValueVanStdDev=0.08
+LimitValueVanDistribution=3
+[END OF PROBABILISTIC DEFAULTS]
+[NEWZONE PLOT DATA]
+ 4.00 = Diketable Height [m]
+ 32.00 = X co-ordinate indicating start of zone [m]
+ 36.00 = Boundary of M.H.W influence at X [m]
+ -3.00 = Boundary of M.H.W influence at Y [m]
+ 1.19 = Required safety in zone 1a
+ 1.11 = Required safety in zone 1b
+ 1.05 = Required safety in zone 2a
+ 1.02 = Required safety in zone 2b
+ 52.00 = Left side minimum road [m]
+ 55.00 = Right side minimum road [m]
+ 0.93 = Required safety in zone 3a
+ 0.90 = Required safety in zone 3b
+ 1 Stability calculation at right side
+ 0.50 = Remolding reduction factor
+ 0.80 = Schematization reduction factor
+ 1 Overtopping condition less or equal 0.1 l/m/s
+[HORIZONTAL BALANCE]
+HorizontalBalanceXLeft=0.000
+HorizontalBalanceXRight=0.000
+HorizontalBalanceYTop=0.00
+HorizontalBalanceYBottom=0.00
+HorizontalBalanceNYInterval=1
+[END OF HORIZONTAL BALANCE]
+[REQUESTED CIRCLE SLICES]
+ 30 = number of slices
+[REQUESTED LIFT SLICES]
+ 50 = number of slices
+[REQUESTED SPENCER SLICES]
+ 50 = number of slices
+[SOIL RESISTANCE]
+SoilResistanceDowelAction=1
+SoilResistancePullOut=1
+[END OF SOIL RESISTANCE]
+[GENETIC ALGORITHM OPTIONS BISHOP]
+PopulationCount=30
+GenerationCount=30
+EliteCount=2
+MutationRate=0.200
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS BISHOP]
+[GENETIC ALGORITHM OPTIONS LIFTVAN]
+PopulationCount=40
+GenerationCount=40
+EliteCount=2
+MutationRate=0.250
+CrossOverScatterFraction=1.000
+CrossOverSinglePointFraction=0.000
+CrossOverDoublePointFraction=0.000
+MutationJumpFraction=1.000
+MutationCreepFraction=0.000
+MutationInverseFraction=0.000
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS LIFTVAN]
+[GENETIC ALGORITHM OPTIONS SPENCER]
+PopulationCount=50
+GenerationCount=50
+EliteCount=2
+MutationRate=0.300
+CrossOverScatterFraction=0.000
+CrossOverSinglePointFraction=0.700
+CrossOverDoublePointFraction=0.300
+MutationJumpFraction=0.000
+MutationCreepFraction=0.900
+MutationInverseFraction=0.100
+MutationCreepReduction=0.050
+[END OF GENETIC ALGORITHM OPTIONS SPENCER]
+[MODEL SPECIAL]
+IsAlternativeStrength=0
+[END OF MODEL SPECIAL]
+[NAIL TYPE DEFAULTS]
+NailTypeLengthNail=0.00
+NailTypeDiameterNail=0.00
+NailTypeDiameterGrout=0.00
+NailTypeYieldForceNail=0.00
+NailTypePlasticMomentNail=0.00
+NailTypeBendingStiffnessNail=0.00E+00
+NailTypeUseFacingOrBearingPlate=0
+[END OF NAIL TYPE DEFAULTS]
+[End of Input Data]
+
+[RestProfile]
+ 5
+ 32.00000 4.00000
+ 35.00000 4.00000
+ 47.00000 -2.00000
+ 55.00000 -4.00000
+ 63.00000 -6.00000
+[ZONE RESULTS]
+[Column Indication]
+X-Centrepoint
+Y-Centrepoint
+Radius
+Stability factor
+Zone number
+Entry point circle
+Rotated angle in radians
+Rotated safety
+[End of Column Indication]
+[Data]
+ 43.000 6.000 10.500 1.489 3 32.613 0.000573 1.489
+ 43.000 6.000 10.500 1.489 3 32.613 0.000573 1.489
+ 43.000 6.000 10.071 1.378 3 33.029 0.000573 1.378
+ 43.000 6.000 10.071 1.378 3 33.029 0.000573 1.378
+ 43.000 6.000 9.643 1.361 3 33.445 0.000573 1.361
+ 43.000 6.000 9.643 1.361 3 33.445 0.000573 1.361
+ 43.000 6.000 9.214 1.433 3 33.862 0.000573 1.433
+ 43.000 6.000 9.214 1.433 3 33.862 0.000573 1.433
+ 43.000 6.000 8.786 1.520 3 34.279 0.000573 1.520
+ 43.000 6.000 8.786 1.520 3 34.279 0.000573 1.520
+ 43.000 6.000 8.357 1.640 3 34.703 0.000573 1.640
+ 43.000 6.000 8.357 1.640 3 34.703 0.000573 1.640
+ 43.000 6.000 7.929 1.870 3 35.135 0.000573 1.870
+ 43.000 6.000 7.929 1.870 3 35.135 0.000573 1.870
+ 43.000 6.000 7.500 1.914 3 35.567 0.000573 1.914
+ 43.000 6.000 7.500 1.914 3 35.567 0.000573 1.914
+ 43.000 6.429 10.929 1.475 3 32.269 0.000573 1.475
+ 43.000 6.429 10.929 1.475 5 32.269 0.000000 1.475
+ 43.000 6.429 10.929 1.475 3 32.269 0.000573 1.475
+ 43.000 6.429 10.500 1.365 3 32.682 0.000573 1.365
+ 43.000 6.429 10.500 1.365 3 32.682 0.000573 1.365
+ 43.000 6.429 10.071 1.342 3 33.096 0.000573 1.342
+ 43.000 6.429 10.071 1.342 3 33.096 0.000573 1.342
+ 43.000 6.429 9.643 1.406 3 33.510 0.000573 1.406
+ 43.000 6.429 9.643 1.406 3 33.510 0.000573 1.406
+ 43.000 6.429 9.214 1.491 3 33.924 0.000573 1.491
+ 43.000 6.429 9.214 1.491 3 33.924 0.000573 1.491
+ 43.000 6.429 8.786 1.608 3 34.339 0.000573 1.608
+ 43.000 6.429 8.786 1.608 3 34.339 0.000573 1.608
+ 43.000 6.429 8.357 1.835 3 34.766 0.000573 1.835
+ 43.000 6.429 8.357 1.835 3 34.766 0.000573 1.835
+ 43.000 6.429 7.929 1.877 3 35.201 0.000573 1.877
+ 43.000 6.429 7.929 1.877 3 35.201 0.000573 1.877
+ 43.000 6.857 11.357 1.469 1 31.942 0.000000 1.469
+ 43.000 6.857 11.357 1.469 5 31.942 0.000000 1.469
+ 43.000 6.857 11.357 1.469 1 31.942 0.000000 1.469
+ 43.000 6.857 10.929 1.354 3 32.354 0.000573 1.354
+ 43.000 6.857 10.929 1.354 3 32.354 0.000573 1.354
+ 43.000 6.857 10.500 1.329 3 32.767 0.000573 1.329
+ 43.000 6.857 10.500 1.329 3 32.767 0.000573 1.329
+ 43.000 6.857 10.071 1.384 3 33.180 0.000573 1.384
+ 43.000 6.857 10.071 1.384 3 33.180 0.000573 1.384
+ 43.000 6.857 9.643 1.467 3 33.592 0.000573 1.467
+ 43.000 6.857 9.643 1.467 3 33.592 0.000573 1.467
+ 43.000 6.857 9.214 1.581 3 34.005 0.000573 1.581
+ 43.000 6.857 9.214 1.581 3 34.005 0.000573 1.581
+ 43.000 6.857 8.786 1.803 3 34.418 0.000573 1.803
+ 43.000 6.857 8.786 1.803 3 34.418 0.000573 1.803
+ 43.000 6.857 8.357 1.846 3 34.852 0.000573 1.846
+ 43.000 6.857 8.357 1.846 3 34.852 0.000573 1.846
+ 43.000 7.286 11.786 1.464 1 31.631 0.000000 1.464
+ 43.000 7.286 11.786 1.464 5 31.631 0.000000 1.464
+ 43.000 7.286 11.786 1.464 1 31.631 0.000000 1.464
+ 43.000 7.286 11.357 1.348 3 32.043 0.000573 1.348
+ 43.000 7.286 11.357 1.348 3 32.043 0.000573 1.348
+ 43.000 7.286 10.929 1.319 3 32.455 0.000573 1.319
+ 43.000 7.286 10.929 1.319 3 32.455 0.000573 1.319
+ 43.000 7.286 10.500 1.369 3 32.867 0.000573 1.369
+ 43.000 7.286 10.500 1.369 3 32.867 0.000573 1.369
+ 43.000 7.286 10.071 1.450 3 33.279 0.000573 1.450
+ 43.000 7.286 10.071 1.450 3 33.279 0.000573 1.450
+ 43.000 7.286 9.643 1.562 3 33.691 0.000573 1.562
+ 43.000 7.286 9.643 1.562 3 33.691 0.000573 1.562
+ 43.000 7.286 9.214 1.780 3 34.103 0.000573 1.780
+ 43.000 7.286 9.214 1.780 3 34.103 0.000573 1.780
+ 43.000 7.286 8.786 1.823 3 34.517 0.000573 1.823
+ 43.000 7.286 8.786 1.823 3 34.517 0.000573 1.823
+ 43.000 7.714 12.214 1.463 1 31.334 0.000000 1.463
+ 43.000 7.714 12.214 1.463 5 31.334 0.000000 1.463
+ 43.000 7.714 12.214 1.463 1 31.334 0.000000 1.463
+ 43.000 7.714 11.786 1.345 1 31.746 0.000000 1.345
+ 43.000 7.714 11.786 1.345 1 31.746 0.000000 1.345
+ 43.000 7.714 11.357 1.314 3 32.159 0.000573 1.314
+ 43.000 7.714 11.357 1.314 3 32.159 0.000573 1.314
+ 43.000 7.714 10.929 1.361 3 32.571 0.000573 1.361
+ 43.000 7.714 10.929 1.361 3 32.571 0.000573 1.361
+ 43.000 7.714 10.500 1.435 3 32.983 0.000573 1.435
+ 43.000 7.714 10.500 1.435 3 32.983 0.000573 1.435
+ 43.000 7.714 10.071 1.545 3 33.395 0.000573 1.545
+ 43.000 7.714 10.071 1.545 3 33.395 0.000573 1.545
+ 43.000 7.714 9.643 1.762 3 33.807 0.000573 1.762
+ 43.000 7.714 9.643 1.762 3 33.807 0.000573 1.762
+ 43.000 7.714 9.214 1.802 3 34.220 0.000573 1.802
+ 43.000 7.714 9.214 1.802 3 34.220 0.000573 1.802
+ 43.000 8.143 12.643 1.465 1 31.050 0.000000 1.465
+ 43.000 8.143 12.643 1.465 5 31.050 0.000000 1.465
+ 43.000 8.143 12.643 1.465 1 31.050 0.000000 1.465
+ 43.000 8.143 12.214 1.343 1 31.463 0.000000 1.343
+ 43.000 8.143 12.214 1.343 5 31.463 0.000000 1.343
+ 43.000 8.143 12.214 1.343 1 31.463 0.000000 1.343
+ 43.000 8.143 11.786 1.311 1 31.876 0.000000 1.311
+ 43.000 8.143 11.786 1.311 1 31.876 0.000000 1.311
+ 43.000 8.143 11.357 1.355 3 32.289 0.000573 1.355
+ 43.000 8.143 11.357 1.355 3 32.289 0.000573 1.355
+ 43.000 8.143 10.929 1.425 3 32.701 0.000573 1.425
+ 43.000 8.143 10.929 1.425 3 32.701 0.000573 1.425
+ 43.000 8.143 10.500 1.533 3 33.114 0.000573 1.533
+ 43.000 8.143 10.500 1.533 3 33.114 0.000573 1.533
+ 43.000 8.143 10.071 1.748 3 33.527 0.000573 1.748
+ 43.000 8.143 10.071 1.748 3 33.527 0.000573 1.748
+ 43.000 8.143 9.643 1.787 3 33.940 0.000573 1.787
+ 43.000 8.143 9.643 1.787 3 33.940 0.000573 1.787
+ 43.000 8.571 13.071 1.467 1 30.778 0.000000 1.467
+ 43.000 8.571 13.071 1.467 5 30.778 0.000000 1.467
+ 43.000 8.571 13.071 1.467 1 30.778 0.000000 1.467
+ 43.000 8.571 12.643 1.345 1 31.191 0.000000 1.345
+ 43.000 8.571 12.643 1.345 5 31.191 0.000000 1.345
+ 43.000 8.571 12.643 1.345 1 31.191 0.000000 1.345
+ 43.000 8.571 12.214 1.310 1 31.605 0.000000 1.310
+ 43.000 8.571 12.214 1.310 1 31.605 0.000000 1.310
+ 43.000 8.571 11.786 1.352 3 32.019 0.000573 1.352
+ 43.000 8.571 11.786 1.352 3 32.019 0.000573 1.352
+ 43.000 8.571 11.357 1.416 3 32.433 0.000573 1.416
+ 43.000 8.571 11.357 1.416 3 32.433 0.000573 1.416
+ 43.000 8.571 10.929 1.525 3 32.847 0.000573 1.525
+ 43.000 8.571 10.929 1.525 3 32.847 0.000573 1.525
+ 43.000 8.571 10.500 1.740 3 33.261 0.000573 1.740
+ 43.000 8.571 10.500 1.740 3 33.261 0.000573 1.740
+ 43.000 8.571 10.071 1.777 3 33.676 0.000573 1.777
+ 43.000 8.571 10.071 1.777 3 33.676 0.000573 1.777
+ 43.000 9.000 13.500 1.471 1 30.516 0.000000 1.471
+ 43.000 9.000 13.500 1.471 5 30.516 0.000000 1.471
+ 43.000 9.000 13.500 1.471 1 30.516 0.000000 1.471
+ 43.000 9.000 13.071 1.347 1 30.931 0.000000 1.347
+ 43.000 9.000 13.071 1.347 5 30.931 0.000000 1.347
+ 43.000 9.000 13.071 1.347 1 30.931 0.000000 1.347
+ 43.000 9.000 12.643 1.311 1 31.346 0.000000 1.311
+ 43.000 9.000 12.643 1.311 1 31.346 0.000000 1.311
+ 43.000 9.000 12.214 1.351 1 31.761 0.000000 1.351
+ 43.000 9.000 12.214 1.351 1 31.761 0.000000 1.351
+ 43.000 9.000 11.786 1.412 3 32.176 0.000573 1.412
+ 43.000 9.000 11.786 1.412 3 32.176 0.000573 1.412
+ 43.000 9.000 11.357 1.520 3 32.592 0.000573 1.520
+ 43.000 9.000 11.357 1.520 3 32.592 0.000573 1.520
+ 43.000 9.000 10.929 1.734 3 33.008 0.000573 1.734
+ 43.000 9.000 10.929 1.734 3 33.008 0.000573 1.734
+ 43.000 9.000 10.500 1.770 3 33.424 0.000573 1.770
+ 43.000 9.000 10.500 1.770 3 33.424 0.000573 1.770
+ 44.143 6.000 10.500 1.332 3 33.714 0.000573 1.332
+ 44.143 6.000 10.500 1.332 5 33.714 0.000000 1.332
+ 44.143 6.000 10.500 1.332 3 33.714 0.000573 1.332
+ 44.143 6.000 10.071 1.233 3 34.132 0.000573 1.233
+ 44.143 6.000 10.071 1.233 5 34.132 0.000000 1.233
+ 44.143 6.000 10.071 1.233 3 34.132 0.000573 1.233
+ 44.143 6.000 9.643 1.213 3 34.552 0.000573 1.213
+ 44.143 6.000 9.643 1.213 3 34.552 0.000573 1.213
+ 44.143 6.000 9.214 1.258 3 34.983 0.000573 1.258
+ 44.143 6.000 9.214 1.258 3 34.983 0.000573 1.258
+ 44.143 6.000 8.786 1.322 3 35.414 0.000573 1.322
+ 44.143 6.000 8.786 1.322 3 35.414 0.000573 1.322
+ 44.143 6.000 8.357 1.427 3 35.846 0.000573 1.427
+ 44.143 6.000 8.357 1.427 3 35.846 0.000573 1.427
+ 44.143 6.000 7.929 1.628 4 36.278 0.000573 1.628
+ 44.143 6.000 7.929 1.628 4 36.278 0.000573 1.628
+ 44.143 6.000 7.500 1.662 4 36.710 0.000573 1.662
+ 44.143 6.000 7.500 1.662 4 36.710 0.000573 1.662
+ 44.143 6.429 10.929 1.322 3 33.356 0.000573 1.322
+ 44.143 6.429 10.929 1.322 5 33.356 0.000000 1.322
+ 44.143 6.429 10.929 1.322 3 33.356 0.000573 1.322
+ 44.143 6.429 10.500 1.226 3 33.771 0.000573 1.226
+ 44.143 6.429 10.500 1.226 5 33.771 0.000000 1.226
+ 44.143 6.429 10.500 1.226 3 33.771 0.000573 1.226
+ 44.143 6.429 10.071 1.201 3 34.187 0.000573 1.201
+ 44.143 6.429 10.071 1.201 3 34.187 0.000573 1.201
+ 44.143 6.429 9.643 1.244 3 34.606 0.000573 1.244
+ 44.143 6.429 9.643 1.244 3 34.606 0.000573 1.244
+ 44.143 6.429 9.214 1.305 3 35.040 0.000573 1.305
+ 44.143 6.429 9.214 1.305 3 35.040 0.000573 1.305
+ 44.143 6.429 8.786 1.405 3 35.474 0.000573 1.405
+ 44.143 6.429 8.786 1.405 3 35.474 0.000573 1.405
+ 44.143 6.429 8.357 1.603 3 35.909 0.000573 1.603
+ 44.143 6.429 8.357 1.603 3 35.909 0.000573 1.603
+ 44.143 6.429 7.929 1.637 4 36.344 0.000573 1.637
+ 44.143 6.429 7.929 1.637 4 36.344 0.000573 1.637
+ 44.143 6.857 11.357 1.317 3 33.017 0.000573 1.317
+ 44.143 6.857 11.357 1.317 5 33.017 0.000000 1.317
+ 44.143 6.857 11.357 1.317 3 33.017 0.000573 1.317
+ 44.143 6.857 10.929 1.219 3 33.430 0.000573 1.219
+ 44.143 6.857 10.929 1.219 5 33.430 0.000000 1.219
+ 44.143 6.857 10.929 1.219 3 33.430 0.000573 1.219
+ 44.143 6.857 10.500 1.194 3 33.844 0.000573 1.194
+ 44.143 6.857 10.500 1.194 5 33.844 0.000000 1.194
+ 44.143 6.857 10.500 1.194 3 33.844 0.000573 1.194
+ 44.143 6.857 10.071 1.233 3 34.257 0.000573 1.233
+ 44.143 6.857 10.071 1.233 3 34.257 0.000573 1.233
+ 44.143 6.857 9.643 1.291 3 34.681 0.000573 1.291
+ 44.143 6.857 9.643 1.291 3 34.681 0.000573 1.291
+ 44.143 6.857 9.214 1.385 3 35.118 0.000573 1.385
+ 44.143 6.857 9.214 1.385 3 35.118 0.000573 1.385
+ 44.143 6.857 8.786 1.583 3 35.556 0.000573 1.583
+ 44.143 6.857 8.786 1.583 3 35.556 0.000573 1.583
+ 44.143 6.857 8.357 1.617 3 35.995 0.000573 1.617
+ 44.143 6.857 8.357 1.617 3 35.995 0.000573 1.617
+ 44.143 7.286 11.786 1.317 3 32.695 0.000573 1.317
+ 44.143 7.286 11.786 1.317 5 32.695 0.000000 1.317
+ 44.143 7.286 11.786 1.317 3 32.695 0.000573 1.317
+ 44.143 7.286 11.357 1.217 3 33.107 0.000573 1.217
+ 44.143 7.286 11.357 1.217 5 33.107 0.000000 1.217
+ 44.143 7.286 11.357 1.217 3 33.107 0.000573 1.217
+ 44.143 7.286 10.929 1.188 5 33.520 0.000000 1.188
+ 44.143 7.286 10.929 1.188 1 33.520 -3.918339 0.643
+ 44.143 7.286 10.500 1.225 3 33.932 0.000573 1.225
+ 44.143 7.286 10.500 1.225 3 33.932 0.000573 1.225
+ 44.143 7.286 10.071 1.280 3 34.345 0.000573 1.280
+ 44.143 7.286 10.071 1.280 3 34.345 0.000573 1.280
+ 44.143 7.286 9.643 1.369 3 34.775 0.000573 1.369
+ 44.143 7.286 9.643 1.369 3 34.775 0.000573 1.369
+ 44.143 7.286 9.214 1.567 3 35.217 0.000573 1.567
+ 44.143 7.286 9.214 1.567 3 35.217 0.000573 1.567
+ 44.143 7.286 8.786 1.602 3 35.660 0.000573 1.602
+ 44.143 7.286 8.786 1.602 3 35.660 0.000573 1.602
+ 44.143 7.714 12.214 1.318 3 32.388 0.000573 1.318
+ 44.143 7.714 12.214 1.318 5 32.388 0.000000 1.318
+ 44.143 7.714 12.214 1.318 3 32.388 0.000573 1.318
+ 44.143 7.714 11.786 1.216 3 32.800 0.000573 1.216
+ 44.143 7.714 11.786 1.216 5 32.800 0.000000 1.216
+ 44.143 7.714 11.786 1.216 3 32.800 0.000573 1.216
+ 44.143 7.714 11.357 1.186 5 33.212 0.000000 1.186
+ 44.143 7.714 11.357 1.186 1 33.212 -3.342054 0.632
+ 44.143 7.714 10.929 1.221 3 33.624 0.000573 1.221
+ 44.143 7.714 10.929 1.221 3 33.624 0.000573 1.221
+ 44.143 7.714 10.500 1.273 3 34.036 0.000573 1.273
+ 44.143 7.714 10.500 1.273 3 34.036 0.000573 1.273
+ 44.143 7.714 10.071 1.358 3 34.448 0.000573 1.358
+ 44.143 7.714 10.071 1.358 3 34.448 0.000573 1.358
+ 44.143 7.714 9.643 1.553 3 34.890 0.000573 1.553
+ 44.143 7.714 9.643 1.553 3 34.890 0.000573 1.553
+ 44.143 7.714 9.214 1.589 3 35.337 0.000573 1.589
+ 44.143 7.714 9.214 1.589 3 35.337 0.000573 1.589
+ 44.143 8.143 12.643 1.320 3 32.094 0.000573 1.320
+ 44.143 8.143 12.643 1.320 5 32.094 0.000000 1.320
+ 44.143 8.143 12.643 1.320 3 32.094 0.000573 1.320
+ 44.143 8.143 12.214 1.218 3 32.506 0.000573 1.218
+ 44.143 8.143 12.214 1.218 5 32.506 0.000000 1.218
+ 44.143 8.143 12.214 1.218 3 32.506 0.000573 1.218
+ 44.143 8.143 11.786 1.186 5 32.919 0.000000 1.186
+ 44.143 8.143 11.786 1.186 1 32.919 -2.821792 0.601
+ 44.143 8.143 11.357 1.218 3 33.331 0.000573 1.218
+ 44.143 8.143 11.357 1.218 5 33.331 0.000000 1.218
+ 44.143 8.143 11.357 1.218 3 33.331 0.000573 1.218
+ 44.143 8.143 10.929 1.269 3 33.743 0.000573 1.269
+ 44.143 8.143 10.929 1.269 3 33.743 0.000573 1.269
+ 44.143 8.143 10.500 1.351 3 34.156 0.000573 1.351
+ 44.143 8.143 10.500 1.351 3 34.156 0.000573 1.351
+ 44.143 8.143 10.071 1.543 3 34.574 0.000573 1.543
+ 44.143 8.143 10.071 1.543 3 34.574 0.000573 1.543
+ 44.143 8.143 9.643 1.580 3 35.027 0.000573 1.580
+ 44.143 8.143 9.643 1.580 3 35.027 0.000573 1.580
+ 44.143 8.571 13.071 1.325 1 31.813 0.000000 1.325
+ 44.143 8.571 13.071 1.325 5 31.813 0.000000 1.325
+ 44.143 8.571 13.071 1.325 1 31.813 0.000000 1.325
+ 44.143 8.571 12.643 1.220 3 32.226 0.000573 1.220
+ 44.143 8.571 12.643 1.220 5 32.226 0.000000 1.220
+ 44.143 8.571 12.643 1.220 3 32.226 0.000573 1.220
+ 44.143 8.571 12.214 1.188 5 32.638 0.000000 1.188
+ 44.143 8.571 12.214 1.188 1 32.638 -2.349250 0.576
+ 44.143 8.571 11.786 1.219 3 33.051 0.000573 1.219
+ 44.143 8.571 11.786 1.219 5 33.051 0.000000 1.219
+ 44.143 8.571 11.786 1.219 3 33.051 0.000573 1.219
+ 44.143 8.571 11.357 1.266 3 33.464 0.000573 1.266
+ 44.143 8.571 11.357 1.266 3 33.464 0.000573 1.266
+ 44.143 8.571 10.929 1.347 3 33.878 0.000573 1.347
+ 44.143 8.571 10.929 1.347 3 33.878 0.000573 1.347
+ 44.143 8.571 10.500 1.533 3 34.291 0.000573 1.533
+ 44.143 8.571 10.500 1.533 3 34.291 0.000573 1.533
+ 44.143 8.571 10.071 1.572 3 34.726 0.000573 1.572
+ 44.143 8.571 10.071 1.572 3 34.726 0.000573 1.572
+ 44.143 9.000 13.500 1.331 1 31.542 0.000000 1.331
+ 44.143 9.000 13.500 1.331 5 31.542 0.000000 1.331
+ 44.143 9.000 13.500 1.331 1 31.542 0.000000 1.331
+ 44.143 9.000 13.071 1.225 1 31.956 0.000000 1.225
+ 44.143 9.000 13.071 1.225 5 31.956 0.000000 1.225
+ 44.143 9.000 13.071 1.225 1 31.956 0.000000 1.225
+ 44.143 9.000 12.643 1.191 3 32.370 0.000573 1.191
+ 44.143 9.000 12.643 1.191 5 32.370 0.000000 1.191
+ 44.143 9.000 12.643 1.191 3 32.370 0.000573 1.191
+ 44.143 9.000 12.214 1.220 3 32.784 0.000573 1.220
+ 44.143 9.000 12.214 1.220 5 32.784 0.000000 1.220
+ 44.143 9.000 12.214 1.220 3 32.784 0.000573 1.220
+ 44.143 9.000 11.786 1.267 3 33.198 0.000573 1.267
+ 44.143 9.000 11.786 1.267 3 33.198 0.000573 1.267
+ 44.143 9.000 11.357 1.345 3 33.612 0.000573 1.345
+ 44.143 9.000 11.357 1.345 3 33.612 0.000573 1.345
+ 44.143 9.000 10.929 1.527 3 34.027 0.000573 1.527
+ 44.143 9.000 10.929 1.527 3 34.027 0.000573 1.527
+ 44.143 9.000 10.500 1.567 3 34.442 0.000573 1.567
+ 44.143 9.000 10.500 1.567 3 34.442 0.000573 1.567
+ 45.286 6.000 10.500 1.247 3 34.833 0.000573 1.247
+ 45.286 6.000 10.500 1.247 5 34.833 0.000000 1.247
+ 45.286 6.000 10.500 1.247 3 34.833 0.000573 1.247
+ 45.286 6.000 10.071 1.161 5 35.264 0.000000 1.161
+ 45.286 6.000 10.071 1.161 1 35.264 -7.108077 0.880
+ 45.286 6.000 9.643 1.139 5 35.695 0.000000 1.139
+ 45.286 6.000 9.643 1.139 1 35.695 -8.976236 1.031
+ 45.286 6.000 9.214 1.169 5 36.126 0.000000 1.169
+ 45.286 6.000 9.214 1.169 3 36.126 0.000000 1.486
+ 45.286 6.000 8.786 1.215 4 36.557 0.000573 1.215
+ 45.286 6.000 8.786 1.215 4 36.557 0.000573 1.215
+ 45.286 6.000 8.357 1.288 4 36.989 0.000573 1.288
+ 45.286 6.000 8.357 1.288 4 36.989 0.000573 1.288
+ 45.286 6.000 7.929 1.459 4 37.420 0.000573 1.459
+ 45.286 6.000 7.929 1.459 4 37.420 0.000573 1.459
+ 45.286 6.000 7.500 1.497 4 37.853 0.000573 1.497
+ 45.286 6.000 7.500 1.497 4 37.853 0.000573 1.497
+ 45.286 6.429 10.929 1.239 3 34.453 0.000573 1.239
+ 45.286 6.429 10.929 1.239 5 34.453 0.000000 1.239
+ 45.286 6.429 10.929 1.239 3 34.453 0.000573 1.239
+ 45.286 6.429 10.500 1.155 5 34.883 0.000000 1.155
+ 45.286 6.429 10.500 1.155 1 34.883 -5.778112 0.737
+ 45.286 6.429 10.071 1.133 5 35.316 0.000000 1.133
+ 45.286 6.429 10.071 1.133 1 35.316 -7.533439 0.891
+ 45.286 6.429 9.643 1.162 5 35.749 0.000000 1.162
+ 45.286 6.429 9.643 1.162 1 35.749 -9.526424 1.129
+ 45.286 6.429 9.214 1.207 4 36.183 0.000573 1.207
+ 45.286 6.429 9.214 1.207 4 36.183 0.000573 1.207
+ 45.286 6.429 8.786 1.277 4 36.617 0.000573 1.277
+ 45.286 6.429 8.786 1.277 4 36.617 0.000573 1.277
+ 45.286 6.429 8.357 1.443 4 37.052 0.000573 1.443
+ 45.286 6.429 8.357 1.443 4 37.052 0.000573 1.443
+ 45.286 6.429 7.929 1.475 4 37.487 0.000573 1.475
+ 45.286 6.429 7.929 1.475 4 37.487 0.000573 1.475
+ 45.286 6.857 11.357 1.235 3 34.101 0.000573 1.235
+ 45.286 6.857 11.357 1.235 5 34.101 0.000000 1.235
+ 45.286 6.857 11.357 1.235 3 34.101 0.000573 1.235
+ 45.286 6.857 10.929 1.151 5 34.516 0.000000 1.151
+ 45.286 6.857 10.929 1.151 1 34.516 -5.371381 0.701
+ 45.286 6.857 10.500 1.129 5 34.951 0.000000 1.129
+ 45.286 6.857 10.500 1.129 1 34.951 -6.205897 0.748
+ 45.286 6.857 10.071 1.157 5 35.387 0.000000 1.157
+ 45.286 6.857 10.071 1.157 1 35.387 -8.081885 0.893
+ 45.286 6.857 9.643 1.200 3 35.823 0.000573 1.200
+ 45.286 6.857 9.643 1.200 5 35.823 0.000000 1.200
+ 45.286 6.857 9.643 1.200 3 35.823 0.000573 1.200
+ 45.286 6.857 9.214 1.269 4 36.261 0.000573 1.269
+ 45.286 6.857 9.214 1.269 4 36.261 0.000573 1.269
+ 45.286 6.857 8.786 1.431 4 36.699 0.000573 1.431
+ 45.286 6.857 8.786 1.431 4 36.699 0.000573 1.431
+ 45.286 6.857 8.357 1.459 4 37.138 0.000573 1.459
+ 45.286 6.857 8.357 1.459 4 37.138 0.000573 1.459
+ 45.286 7.286 11.786 1.233 3 33.767 0.000573 1.233
+ 45.286 7.286 11.786 1.233 5 33.767 0.000000 1.233
+ 45.286 7.286 11.786 1.233 3 33.767 0.000573 1.233
+ 45.286 7.286 11.357 1.148 5 34.180 0.000000 1.148
+ 45.286 7.286 11.357 1.148 1 34.180 -4.734917 0.654
+ 45.286 7.286 10.929 1.126 5 34.599 0.000000 1.126
+ 45.286 7.286 10.929 1.126 1 34.599 -5.424300 0.684
+ 45.286 7.286 10.500 1.154 5 35.038 0.000000 1.154
+ 45.286 7.286 10.500 1.154 1 35.038 -6.749320 0.799
+ 45.286 7.286 10.071 1.196 3 35.477 0.000573 1.196
+ 45.286 7.286 10.071 1.196 5 35.477 0.000000 1.196
+ 45.286 7.286 10.071 1.196 3 35.477 0.000573 1.196
+ 45.286 7.286 9.643 1.264 3 35.918 0.000573 1.264
+ 45.286 7.286 9.643 1.264 3 35.918 0.000573 1.264
+ 45.286 7.286 9.214 1.424 4 36.359 0.000573 1.424
+ 45.286 7.286 9.214 1.424 4 36.359 0.000573 1.424
+ 45.286 7.286 8.786 1.447 4 36.803 0.000573 1.447
+ 45.286 7.286 8.786 1.447 4 36.803 0.000573 1.447
+ 45.286 7.714 12.214 1.234 3 33.449 0.000573 1.234
+ 45.286 7.714 12.214 1.234 5 33.449 0.000000 1.234
+ 45.286 7.714 12.214 1.234 3 33.449 0.000573 1.234
+ 45.286 7.714 11.786 1.147 5 33.862 0.000000 1.147
+ 45.286 7.714 11.786 1.147 1 33.862 -4.141952 0.616
+ 45.286 7.714 11.357 1.124 5 34.274 0.000000 1.124
+ 45.286 7.714 11.357 1.124 1 34.274 -4.926277 0.649
+ 45.286 7.714 10.929 1.152 5 34.700 0.000000 1.152
+ 45.286 7.714 10.929 1.152 1 34.700 -5.514240 0.693
+ 45.286 7.714 10.500 1.194 3 35.143 0.000573 1.194
+ 45.286 7.714 10.500 1.194 5 35.143 0.000000 1.194
+ 45.286 7.714 10.500 1.194 3 35.143 0.000573 1.194
+ 45.286 7.714 10.071 1.261 3 35.587 0.000573 1.261
+ 45.286 7.714 10.071 1.261 3 35.587 0.000573 1.261
+ 45.286 7.714 9.643 1.419 4 36.033 0.000573 1.419
+ 45.286 7.714 9.643 1.419 4 36.033 0.000573 1.419
+ 45.286 7.714 9.214 1.438 4 36.480 0.000573 1.438
+ 45.286 7.714 9.214 1.438 4 36.480 0.000573 1.438
+ 45.286 8.143 12.643 1.234 3 33.146 0.000573 1.234
+ 45.286 8.143 12.643 1.234 5 33.146 0.000000 1.234
+ 45.286 8.143 12.643 1.234 3 33.146 0.000573 1.234
+ 45.286 8.143 12.214 1.148 5 33.558 0.000000 1.148
+ 45.286 8.143 12.214 1.148 1 33.558 -3.605458 0.619
+ 45.286 8.143 11.786 1.124 5 33.970 0.000000 1.124
+ 45.286 8.143 11.786 1.124 1 33.970 -4.348431 0.613
+ 45.286 8.143 11.357 1.151 5 34.382 0.000000 1.151
+ 45.286 8.143 11.357 1.151 1 34.382 -5.151651 0.667
+ 45.286 8.143 10.929 1.193 3 34.819 0.000573 1.193
+ 45.286 8.143 10.929 1.193 5 34.819 0.000000 1.193
+ 45.286 8.143 10.929 1.193 3 34.819 0.000573 1.193
+ 45.286 8.143 10.500 1.260 3 35.267 0.000573 1.260
+ 45.286 8.143 10.500 1.260 3 35.267 0.000573 1.260
+ 45.286 8.143 10.071 1.417 3 35.717 0.000573 1.417
+ 45.286 8.143 10.071 1.417 3 35.717 0.000573 1.417
+ 45.286 8.143 9.643 1.431 4 36.169 0.000573 1.431
+ 45.286 8.143 9.643 1.431 4 36.169 0.000573 1.431
+ 45.286 8.571 13.071 1.238 3 32.855 0.000573 1.238
+ 45.286 8.571 13.071 1.238 5 32.855 0.000000 1.238
+ 45.286 8.571 13.071 1.238 3 32.855 0.000573 1.238
+ 45.286 8.571 12.643 1.150 5 33.267 0.000000 1.150
+ 45.286 8.571 12.643 1.150 1 33.267 -3.117203 0.593
+ 45.286 8.571 12.214 1.125 5 33.679 0.000000 1.125
+ 45.286 8.571 12.214 1.125 1 33.679 -3.824023 0.585
+ 45.286 8.571 11.786 1.151 5 34.092 0.000000 1.151
+ 45.286 8.571 11.786 1.151 1 34.092 -4.587063 0.639
+ 45.286 8.571 11.357 1.193 3 34.505 0.000573 1.193
+ 45.286 8.571 11.357 1.193 5 34.505 0.000000 1.193
+ 45.286 8.571 11.357 1.193 3 34.505 0.000573 1.193
+ 45.286 8.571 10.929 1.260 3 34.957 0.000573 1.260
+ 45.286 8.571 10.929 1.260 5 34.957 0.000000 1.260
+ 45.286 8.571 10.929 1.260 3 34.957 0.000573 1.260
+ 45.286 8.571 10.500 1.416 3 35.412 0.000573 1.416
+ 45.286 8.571 10.500 1.416 3 35.412 0.000573 1.416
+ 45.286 8.571 10.071 1.429 3 35.869 0.000573 1.429
+ 45.286 8.571 10.071 1.429 3 35.869 0.000573 1.429
+ 45.286 9.000 13.500 1.242 3 32.576 0.000573 1.242
+ 45.286 9.000 13.500 1.242 5 32.576 0.000000 1.242
+ 45.286 9.000 13.500 1.242 3 32.576 0.000573 1.242
+ 45.286 9.000 13.071 1.154 5 32.989 0.000000 1.154
+ 45.286 9.000 13.071 1.154 1 32.989 -2.670545 0.572
+ 45.286 9.000 12.643 1.129 5 33.402 0.000000 1.129
+ 45.286 9.000 12.643 1.129 1 33.402 -3.345484 0.588
+ 45.286 9.000 12.214 1.153 5 33.815 0.000000 1.153
+ 45.286 9.000 12.214 1.153 1 33.815 -4.073219 0.611
+ 45.286 9.000 11.786 1.193 3 34.228 0.000573 1.193
+ 45.286 9.000 11.786 1.193 5 34.228 0.000000 1.193
+ 45.286 9.000 11.786 1.193 3 34.228 0.000573 1.193
+ 45.286 9.000 11.357 1.261 3 34.656 0.000573 1.261
+ 45.286 9.000 11.357 1.261 5 34.656 0.000000 1.261
+ 45.286 9.000 11.357 1.261 3 34.656 0.000573 1.261
+ 45.286 9.000 10.929 1.418 3 35.115 0.000573 1.418
+ 45.286 9.000 10.929 1.418 3 35.115 0.000573 1.418
+ 45.286 9.000 10.500 1.430 3 35.577 0.000573 1.430
+ 45.286 9.000 10.500 1.430 3 35.577 0.000573 1.430
+ 46.429 6.000 10.500 1.209 3 35.976 0.000573 1.209
+ 46.429 6.000 10.500 1.209 5 35.976 0.000000 1.209
+ 46.429 6.000 10.500 1.209 3 35.976 0.000573 1.209
+ 46.429 6.000 10.071 1.131 5 36.407 0.000000 1.131
+ 46.429 6.000 10.071 1.131 3 36.407 0.000000 1.391
+ 46.429 6.000 9.643 1.113 5 36.838 0.000000 1.113
+ 46.429 6.000 9.643 1.113 3 36.838 0.000000 1.946
+ 46.429 6.000 9.214 1.139 5 37.269 0.000000 1.139
+ 46.429 6.000 9.214 1.139 3 37.269 0.000000 3.873
+ 46.429 6.000 8.786 1.175 4 37.700 -18.652440 1.175
+ 46.429 6.000 8.786 1.175 6 37.700 0.000000 1.175
+ 46.429 6.000 8.786 1.175 4 37.700 -18.652440 1.175
+ 46.429 6.000 8.357 1.240 4 38.131 0.000573 1.240
+ 46.429 6.000 8.357 1.240 6 38.131 0.000000 1.240
+ 46.429 6.000 8.357 1.240 4 38.131 0.000573 1.240
+ 46.429 6.000 7.929 1.400 4 38.563 0.000573 1.400
+ 46.429 6.000 7.929 1.400 4 38.563 0.000573 1.400
+ 46.429 6.000 7.500 1.417 4 38.996 0.000573 1.417
+ 46.429 6.000 7.500 1.417 4 38.996 0.000573 1.417
+ 46.429 6.429 10.929 1.203 3 35.594 0.000573 1.203
+ 46.429 6.429 10.929 1.203 5 35.594 0.000000 1.203
+ 46.429 6.429 10.929 1.203 3 35.594 0.000573 1.203
+ 46.429 6.429 10.500 1.126 5 36.026 0.000000 1.126
+ 46.429 6.429 10.500 1.126 1 36.026 -9.534088 1.048
+ 46.429 6.429 10.071 1.109 5 36.459 0.000000 1.109
+ 46.429 6.429 10.071 1.109 3 36.459 0.000000 1.504
+ 46.429 6.429 9.643 1.134 5 36.892 0.000000 1.134
+ 46.429 6.429 9.643 1.134 3 36.892 0.000000 2.341
+ 46.429 6.429 9.214 1.169 4 37.326 -16.741060 1.169
+ 46.429 6.429 9.214 1.169 6 37.326 0.000000 1.169
+ 46.429 6.429 9.214 1.169 4 37.326 -16.741060 1.169
+ 46.429 6.429 8.786 1.232 4 37.760 0.000573 1.232
+ 46.429 6.429 8.786 1.232 6 37.760 0.000000 1.232
+ 46.429 6.429 8.786 1.232 4 37.760 0.000573 1.232
+ 46.429 6.429 8.357 1.387 4 38.194 0.000573 1.387
+ 46.429 6.429 8.357 1.387 4 38.194 0.000573 1.387
+ 46.429 6.429 7.929 1.399 4 38.630 0.000573 1.399
+ 46.429 6.429 7.929 1.399 4 38.630 0.000573 1.399
+ 46.429 6.857 11.357 1.199 3 35.224 0.000573 1.199
+ 46.429 6.857 11.357 1.199 5 35.224 0.000000 1.199
+ 46.429 6.857 11.357 1.199 3 35.224 0.000573 1.199
+ 46.429 6.857 10.929 1.123 5 35.659 0.000000 1.123
+ 46.429 6.857 10.929 1.123 1 35.659 -8.199330 0.947
+ 46.429 6.857 10.500 1.106 5 36.094 0.000000 1.106
+ 46.429 6.857 10.500 1.106 1 36.094 -10.145928 1.123
+ 46.429 6.857 10.071 1.130 5 36.530 0.000000 1.130
+ 46.429 6.857 10.071 1.130 3 36.530 0.000000 1.510
+ 46.429 6.857 9.643 1.165 4 36.966 -14.990463 1.165
+ 46.429 6.857 9.643 1.165 6 36.966 0.000000 1.165
+ 46.429 6.857 9.643 1.165 4 36.966 -14.990463 1.165
+ 46.429 6.857 9.214 1.226 4 37.403 0.000573 1.226
+ 46.429 6.857 9.214 1.226 6 37.403 0.000000 1.226
+ 46.429 6.857 9.214 1.226 4 37.403 0.000573 1.226
+ 46.429 6.857 8.786 1.378 4 37.841 0.000573 1.378
+ 46.429 6.857 8.786 1.378 4 37.841 0.000573 1.378
+ 46.429 6.857 8.357 1.387 4 38.280 0.000573 1.387
+ 46.429 6.857 8.357 1.387 4 38.280 0.000573 1.387
+ 46.429 7.286 11.786 1.196 3 34.867 0.000573 1.196
+ 46.429 7.286 11.786 1.196 5 34.867 0.000000 1.196
+ 46.429 7.286 11.786 1.196 3 34.867 0.000573 1.196
+ 46.429 7.286 11.357 1.122 5 35.304 0.000000 1.122
+ 46.429 7.286 11.357 1.122 1 35.304 -6.961086 0.800
+ 46.429 7.286 10.929 1.104 5 35.742 0.000000 1.104
+ 46.429 7.286 10.929 1.104 1 35.742 -8.803879 0.909
+ 46.429 7.286 10.500 1.129 5 36.180 0.000000 1.129
+ 46.429 7.286 10.500 1.129 1 36.180 -10.915904 1.139
+ 46.429 7.286 10.071 1.163 4 36.620 -13.378316 1.163
+ 46.429 7.286 10.071 1.163 6 36.620 0.000000 1.163
+ 46.429 7.286 10.071 1.163 4 36.620 -13.378316 1.163
+ 46.429 7.286 9.643 1.222 4 37.061 0.000573 1.222
+ 46.429 7.286 9.643 1.222 6 37.061 0.000000 1.222
+ 46.429 7.286 9.643 1.222 4 37.061 0.000573 1.222
+ 46.429 7.286 9.214 1.372 4 37.502 0.000573 1.372
+ 46.429 7.286 9.214 1.372 6 37.502 0.000000 1.372
+ 46.429 7.286 9.214 1.372 4 37.502 0.000573 1.372
+ 46.429 7.286 8.786 1.380 4 37.945 0.000573 1.380
+ 46.429 7.286 8.786 1.380 4 37.945 0.000573 1.380
+ 46.429 7.714 12.214 1.194 3 34.520 0.000573 1.194
+ 46.429 7.714 12.214 1.194 5 34.520 0.000000 1.194
+ 46.429 7.714 12.214 1.194 3 34.520 0.000573 1.194
+ 46.429 7.714 11.786 1.121 5 34.960 0.000000 1.121
+ 46.429 7.714 11.786 1.121 1 34.960 -5.807651 0.698
+ 46.429 7.714 11.357 1.104 5 35.401 0.000000 1.104
+ 46.429 7.714 11.357 1.104 1 35.401 -7.556314 0.773
+ 46.429 7.714 10.929 1.128 5 35.842 0.000000 1.128
+ 46.429 7.714 10.929 1.128 1 35.842 -9.557538 1.011
+ 46.429 7.714 10.500 1.162 4 36.285 -11.886514 1.162
+ 46.429 7.714 10.500 1.162 6 36.285 0.000000 1.162
+ 46.429 7.714 10.500 1.162 4 36.285 -11.886514 1.162
+ 46.429 7.714 10.071 1.221 4 36.730 0.000573 1.221
+ 46.429 7.714 10.071 1.221 6 36.730 0.000000 1.221
+ 46.429 7.714 10.071 1.221 4 36.730 0.000573 1.221
+ 46.429 7.714 9.643 1.369 4 37.176 0.000573 1.369
+ 46.429 7.714 9.643 1.369 6 37.176 0.000000 1.369
+ 46.429 7.714 9.643 1.369 4 37.176 0.000573 1.369
+ 46.429 7.714 9.214 1.376 4 37.623 0.000573 1.376
+ 46.429 7.714 9.214 1.376 4 37.623 0.000573 1.376
+ 46.429 8.143 12.643 1.193 3 34.205 0.000573 1.193
+ 46.429 8.143 12.643 1.193 5 34.205 0.000000 1.193
+ 46.429 8.143 12.643 1.193 3 34.205 0.000573 1.193
+ 46.429 8.143 12.214 1.121 5 34.626 0.000000 1.121
+ 46.429 8.143 12.214 1.121 1 34.626 -4.916498 0.637
+ 46.429 8.143 11.786 1.104 5 35.070 0.000000 1.104
+ 46.429 8.143 11.786 1.104 1 35.070 -6.392097 0.726
+ 46.429 8.143 11.357 1.129 5 35.515 0.000000 1.129
+ 46.429 8.143 11.357 1.129 1 35.515 -8.292454 0.854
+ 46.429 8.143 10.929 1.163 5 35.962 0.000000 1.163
+ 46.429 8.143 10.929 1.163 1 35.962 -10.500181 1.119
+ 46.429 8.143 10.500 1.221 4 36.410 0.000573 1.221
+ 46.429 8.143 10.500 1.221 6 36.410 0.000000 1.221
+ 46.429 8.143 10.500 1.221 4 36.410 0.000573 1.221
+ 46.429 8.143 10.071 1.368 4 36.860 0.000573 1.368
+ 46.429 8.143 10.071 1.368 6 36.860 0.000000 1.368
+ 46.429 8.143 10.071 1.368 4 36.860 0.000573 1.368
+ 46.429 8.143 9.643 1.374 4 37.312 0.000573 1.374
+ 46.429 8.143 9.643 1.374 4 37.312 0.000573 1.374
+ 46.429 8.571 13.071 1.193 3 33.904 0.000573 1.193
+ 46.429 8.571 13.071 1.193 5 33.904 0.000000 1.193
+ 46.429 8.571 13.071 1.193 3 33.904 0.000573 1.193
+ 46.429 8.571 12.643 1.121 5 34.316 0.000000 1.121
+ 46.429 8.571 12.643 1.121 1 34.316 -4.540536 0.615
+ 46.429 8.571 12.214 1.105 5 34.748 0.000000 1.105
+ 46.429 8.571 12.214 1.105 1 34.748 -5.301892 0.648
+ 46.429 8.571 11.786 1.130 5 35.197 0.000000 1.130
+ 46.429 8.571 11.786 1.130 1 35.197 -7.109966 0.746
+ 46.429 8.571 11.357 1.164 5 35.648 0.000000 1.164
+ 46.429 8.571 11.357 1.164 1 35.648 -9.206955 0.938
+ 46.429 8.571 10.929 1.222 4 36.100 0.000573 1.222
+ 46.429 8.571 10.929 1.222 6 36.100 0.000000 1.222
+ 46.429 8.571 10.929 1.222 4 36.100 0.000573 1.222
+ 46.429 8.571 10.500 1.369 4 36.555 0.000573 1.369
+ 46.429 8.571 10.500 1.369 6 36.555 0.000000 1.369
+ 46.429 8.571 10.500 1.369 4 36.555 0.000573 1.369
+ 46.429 8.571 10.071 1.374 4 37.012 0.000573 1.374
+ 46.429 8.571 10.071 1.374 4 37.012 0.000573 1.374
+ 46.429 9.000 13.500 1.196 3 33.616 0.000573 1.196
+ 46.429 9.000 13.500 1.196 5 33.616 0.000000 1.196
+ 46.429 9.000 13.500 1.196 3 33.616 0.000573 1.196
+ 46.429 9.000 13.071 1.122 5 34.028 0.000000 1.122
+ 46.429 9.000 13.071 1.122 1 34.028 -4.048913 0.589
+ 46.429 9.000 12.643 1.107 5 34.441 0.000000 1.107
+ 46.429 9.000 12.643 1.107 1 34.441 -4.770731 0.618
+ 46.429 9.000 12.214 1.132 5 34.888 0.000000 1.132
+ 46.429 9.000 12.214 1.132 1 34.888 -6.001065 0.705
+ 46.429 9.000 11.786 1.167 5 35.342 0.000000 1.167
+ 46.429 9.000 11.786 1.167 1 35.342 -7.996458 0.815
+ 46.429 9.000 11.357 1.225 3 35.799 0.000573 1.225
+ 46.429 9.000 11.357 1.225 5 35.799 0.000000 1.225
+ 46.429 9.000 11.357 1.225 3 35.799 0.000573 1.225
+ 46.429 9.000 10.929 1.372 4 36.258 0.000573 1.372
+ 46.429 9.000 10.929 1.372 6 36.258 0.000000 1.372
+ 46.429 9.000 10.929 1.372 4 36.258 0.000573 1.372
+ 46.429 9.000 10.500 1.376 4 36.720 0.000573 1.376
+ 46.429 9.000 10.500 1.376 4 36.720 0.000573 1.376
+ 47.571 6.000 10.500 1.202 3 37.119 0.000573 1.202
+ 47.571 6.000 10.500 1.202 5 37.119 0.000000 1.202
+ 47.571 6.000 10.500 1.202 3 37.119 0.000573 1.202
+ 47.571 6.000 10.071 1.141 5 37.550 0.000000 1.141
+ 47.571 6.000 10.071 1.141 3 37.550 0.000000 4.393
+ 47.571 6.000 9.643 1.132 5 37.981 0.000000 1.132
+ 47.571 6.000 9.643 1.132 3 37.981 0.000000 30.938
+ 47.571 6.000 9.214 1.159 5 38.412 0.000000 1.159
+ 47.571 6.000 9.214 1.159 3 38.412 0.000000 3.175
+ 47.571 6.000 8.786 1.202 4 38.843 0.000573 1.202
+ 47.571 6.000 8.786 1.202 6 38.843 0.000000 1.202
+ 47.571 6.000 8.786 1.202 4 38.843 0.000573 1.202
+ 47.571 6.000 8.357 1.271 4 39.274 0.000573 1.271
+ 47.571 6.000 8.357 1.271 6 39.274 0.000000 1.271
+ 47.571 6.000 8.357 1.271 4 39.274 0.000573 1.271
+ 47.571 6.000 7.929 1.445 4 39.706 0.000573 1.445
+ 47.571 6.000 7.929 1.445 6 39.706 0.000000 1.445
+ 47.571 6.000 7.929 1.445 4 39.706 0.000573 1.445
+ 47.571 6.000 7.500 1.475 4 40.138 0.000573 1.475
+ 47.571 6.000 7.500 1.475 6 40.138 0.000000 1.475
+ 47.571 6.000 7.500 1.475 4 40.138 0.000573 1.475
+ 47.571 6.429 10.929 1.195 3 36.737 0.000573 1.195
+ 47.571 6.429 10.929 1.195 5 36.737 0.000000 1.195
+ 47.571 6.429 10.929 1.195 3 36.737 0.000573 1.195
+ 47.571 6.429 10.500 1.135 5 37.169 0.000000 1.135
+ 47.571 6.429 10.500 1.135 3 37.169 0.000000 2.078
+ 47.571 6.429 10.071 1.124 5 37.602 0.000000 1.124
+ 47.571 6.429 10.071 1.124 3 37.602 0.000000 4.191
+ 47.571 6.429 9.643 1.152 5 38.035 0.000000 1.152
+ 47.571 6.429 9.643 1.152 3 38.035 0.000000 28.169
+ 47.571 6.429 9.214 1.191 4 38.469 0.000573 1.191
+ 47.571 6.429 9.214 1.191 6 38.469 0.000000 1.191
+ 47.571 6.429 9.214 1.191 4 38.469 0.000573 1.191
+ 47.571 6.429 8.786 1.256 4 38.903 0.000573 1.256
+ 47.571 6.429 8.786 1.256 6 38.903 0.000000 1.256
+ 47.571 6.429 8.786 1.256 4 38.903 0.000573 1.256
+ 47.571 6.429 8.357 1.423 4 39.337 0.000573 1.423
+ 47.571 6.429 8.357 1.423 6 39.337 0.000000 1.423
+ 47.571 6.429 8.357 1.423 4 39.337 0.000573 1.423
+ 47.571 6.429 7.929 1.447 4 39.773 0.000573 1.447
+ 47.571 6.429 7.929 1.447 6 39.773 0.000000 1.447
+ 47.571 6.429 7.929 1.447 4 39.773 0.000573 1.447
+ 47.571 6.857 11.357 1.190 5 36.367 0.000000 1.190
+ 47.571 6.857 11.357 1.190 3 36.367 0.000000 1.346
+ 47.571 6.857 10.929 1.129 5 36.802 0.000000 1.129
+ 47.571 6.857 10.929 1.129 3 36.802 0.000000 1.727
+ 47.571 6.857 10.500 1.120 5 37.237 0.000000 1.120
+ 47.571 6.857 10.500 1.120 3 37.237 0.000000 2.711
+ 47.571 6.857 10.071 1.146 5 37.673 0.000000 1.146
+ 47.571 6.857 10.071 1.146 3 37.673 0.000000 8.566
+ 47.571 6.857 9.643 1.185 4 38.109 -20.330975 1.185
+ 47.571 6.857 9.643 1.185 6 38.109 0.000000 1.185
+ 47.571 6.857 9.643 1.185 4 38.109 -20.330975 1.185
+ 47.571 6.857 9.214 1.247 4 38.546 0.000573 1.247
+ 47.571 6.857 9.214 1.247 6 38.546 0.000000 1.247
+ 47.571 6.857 9.214 1.247 4 38.546 0.000573 1.247
+ 47.571 6.857 8.786 1.407 4 38.984 0.000573 1.407
+ 47.571 6.857 8.786 1.407 6 38.984 0.000000 1.407
+ 47.571 6.857 8.786 1.407 4 38.984 0.000573 1.407
+ 47.571 6.857 8.357 1.427 4 39.423 0.000573 1.427
+ 47.571 6.857 8.357 1.427 6 39.423 0.000000 1.427
+ 47.571 6.857 8.357 1.427 4 39.423 0.000573 1.427
+ 47.571 7.286 11.786 1.186 5 36.009 0.000000 1.186
+ 47.571 7.286 11.786 1.186 1 36.009 -8.836220 1.066
+ 47.571 7.286 11.357 1.126 5 36.447 0.000000 1.126
+ 47.571 7.286 11.357 1.126 3 36.447 0.000000 1.267
+ 47.571 7.286 10.929 1.116 5 36.885 0.000000 1.116
+ 47.571 7.286 10.929 1.116 3 36.885 0.000000 1.688
+ 47.571 7.286 10.500 1.142 5 37.323 0.000000 1.142
+ 47.571 7.286 10.500 1.142 3 37.323 0.000000 2.881
+ 47.571 7.286 10.071 1.179 4 37.763 -18.531528 1.179
+ 47.571 7.286 10.071 1.179 6 37.763 0.000000 1.179
+ 47.571 7.286 10.071 1.179 4 37.763 -18.531528 1.179
+ 47.571 7.286 9.643 1.240 4 38.203 0.000573 1.240
+ 47.571 7.286 9.643 1.240 6 38.203 0.000000 1.240
+ 47.571 7.286 9.643 1.240 4 38.203 0.000573 1.240
+ 47.571 7.286 9.214 1.397 4 38.645 0.000573 1.397
+ 47.571 7.286 9.214 1.397 6 38.645 0.000000 1.397
+ 47.571 7.286 9.214 1.397 4 38.645 0.000573 1.397
+ 47.571 7.286 8.786 1.410 4 39.088 0.000573 1.410
+ 47.571 7.286 8.786 1.410 6 39.088 0.000000 1.410
+ 47.571 7.286 8.786 1.410 4 39.088 0.000573 1.410
+ 47.571 7.714 12.214 1.183 5 35.663 0.000000 1.183
+ 47.571 7.714 12.214 1.183 1 35.663 -7.673201 0.976
+ 47.571 7.714 11.786 1.125 5 36.103 0.000000 1.125
+ 47.571 7.714 11.786 1.125 1 36.103 -9.488053 1.016
+ 47.571 7.714 11.357 1.115 5 36.543 0.000000 1.115
+ 47.571 7.714 11.357 1.115 3 36.543 0.000000 1.251
+ 47.571 7.714 10.929 1.140 5 36.985 0.000000 1.140
+ 47.571 7.714 10.929 1.140 3 36.985 0.000000 1.784
+ 47.571 7.714 10.500 1.177 4 37.428 -16.865536 1.177
+ 47.571 7.714 10.500 1.177 6 37.428 0.000000 1.177
+ 47.571 7.714 10.500 1.177 4 37.428 -16.865536 1.177
+ 47.571 7.714 10.071 1.236 4 37.873 0.000573 1.236
+ 47.571 7.714 10.071 1.236 6 37.873 0.000000 1.236
+ 47.571 7.714 10.071 1.236 4 37.873 0.000573 1.236
+ 47.571 7.714 9.643 1.389 4 38.318 0.000573 1.389
+ 47.571 7.714 9.643 1.389 6 38.318 0.000000 1.389
+ 47.571 7.714 9.643 1.389 4 38.318 0.000573 1.389
+ 47.571 7.714 9.214 1.400 4 38.766 0.000573 1.400
+ 47.571 7.714 9.214 1.400 6 38.766 0.000000 1.400
+ 47.571 7.714 9.214 1.400 4 38.766 0.000573 1.400
+ 47.571 8.143 12.643 1.182 5 35.325 0.000000 1.182
+ 47.571 8.143 12.643 1.182 1 35.325 -6.583318 0.839
+ 47.571 8.143 12.214 1.124 5 35.768 0.000000 1.124
+ 47.571 8.143 12.214 1.124 1 35.768 -8.312637 0.856
+ 47.571 8.143 11.786 1.114 5 36.212 0.000000 1.114
+ 47.571 8.143 11.786 1.114 1 36.212 -10.288526 1.131
+ 47.571 8.143 11.357 1.139 5 36.658 0.000000 1.139
+ 47.571 8.143 11.357 1.139 3 36.658 0.000000 1.516
+ 47.571 8.143 10.929 1.176 4 37.105 -15.316757 1.176
+ 47.571 8.143 10.929 1.176 6 37.105 0.000000 1.176
+ 47.571 8.143 10.929 1.176 4 37.105 -15.316757 1.176
+ 47.571 8.143 10.500 1.234 4 37.553 0.000573 1.234
+ 47.571 8.143 10.500 1.234 6 37.553 0.000000 1.234
+ 47.571 8.143 10.500 1.234 4 37.553 0.000573 1.234
+ 47.571 8.143 10.071 1.385 4 38.003 0.000573 1.385
+ 47.571 8.143 10.071 1.385 6 38.003 0.000000 1.385
+ 47.571 8.143 10.071 1.385 4 38.003 0.000573 1.385
+ 47.571 8.143 9.643 1.395 4 38.455 0.000573 1.395
+ 47.571 8.143 9.643 1.395 6 38.455 0.000000 1.395
+ 47.571 8.143 9.643 1.395 4 38.455 0.000573 1.395
+ 47.571 8.571 13.071 1.180 5 34.997 0.000000 1.180
+ 47.571 8.571 13.071 1.180 1 34.997 -5.558827 0.741
+ 47.571 8.571 12.643 1.124 5 35.443 0.000000 1.124
+ 47.571 8.571 12.643 1.124 1 35.443 -7.209511 0.821
+ 47.571 8.571 12.214 1.114 5 35.891 0.000000 1.114
+ 47.571 8.571 12.214 1.114 1 35.891 -9.093031 0.942
+ 47.571 8.571 11.786 1.139 5 36.340 0.000000 1.139
+ 47.571 8.571 11.786 1.139 1 36.340 -11.278154 1.188
+ 47.571 8.571 11.357 1.175 4 36.790 -13.871652 1.175
+ 47.571 8.571 11.357 1.175 6 36.790 0.000000 1.175
+ 47.571 8.571 11.357 1.175 4 36.790 -13.871652 1.175
+ 47.571 8.571 10.929 1.234 4 37.243 0.000573 1.234
+ 47.571 8.571 10.929 1.234 6 37.243 0.000000 1.234
+ 47.571 8.571 10.929 1.234 4 37.243 0.000573 1.234
+ 47.571 8.571 10.500 1.383 4 37.697 0.000573 1.383
+ 47.571 8.571 10.500 1.383 6 37.697 0.000000 1.383
+ 47.571 8.571 10.500 1.383 4 37.697 0.000573 1.383
+ 47.571 8.571 10.071 1.391 4 38.154 0.000573 1.391
+ 47.571 8.571 10.071 1.391 6 38.154 0.000000 1.391
+ 47.571 8.571 10.071 1.391 4 38.154 0.000573 1.391
+ 47.571 9.000 13.500 1.181 5 34.678 0.000000 1.181
+ 47.571 9.000 13.500 1.181 1 34.678 -4.593115 0.668
+ 47.571 9.000 13.071 1.125 5 35.127 0.000000 1.125
+ 47.571 9.000 13.071 1.125 1 35.127 -6.171213 0.727
+ 47.571 9.000 12.643 1.115 5 35.578 0.000000 1.115
+ 47.571 9.000 12.643 1.115 1 35.578 -7.969587 0.815
+ 47.571 9.000 12.214 1.141 5 36.031 0.000000 1.141
+ 47.571 9.000 12.214 1.141 1 36.031 -10.052450 0.988
+ 47.571 9.000 11.786 1.177 4 36.485 -12.518820 1.177
+ 47.571 9.000 11.786 1.177 6 36.485 0.000000 1.177
+ 47.571 9.000 11.786 1.177 4 36.485 -12.518820 1.177
+ 47.571 9.000 11.357 1.234 4 36.942 0.000573 1.234
+ 47.571 9.000 11.357 1.234 6 36.942 0.000000 1.234
+ 47.571 9.000 11.357 1.234 4 36.942 0.000573 1.234
+ 47.571 9.000 10.929 1.383 4 37.401 0.000573 1.383
+ 47.571 9.000 10.929 1.383 6 37.401 0.000000 1.383
+ 47.571 9.000 10.929 1.383 4 37.401 0.000573 1.383
+ 47.571 9.000 10.500 1.391 4 37.863 0.000573 1.391
+ 47.571 9.000 10.500 1.391 6 37.863 0.000000 1.391
+ 47.571 9.000 10.500 1.391 4 37.863 0.000573 1.391
+ 48.714 6.000 10.500 1.236 3 38.262 0.000573 1.236
+ 48.714 6.000 10.500 1.236 5 38.262 0.000000 1.236
+ 48.714 6.000 10.500 1.236 3 38.262 0.000573 1.236
+ 48.714 6.000 10.071 1.193 3 38.693 0.000573 1.193
+ 48.714 6.000 10.071 1.193 5 38.693 0.000000 1.193
+ 48.714 6.000 10.071 1.193 3 38.693 0.000573 1.193
+ 48.714 6.000 9.643 1.201 3 39.123 0.000573 1.201
+ 48.714 6.000 9.643 1.201 5 39.123 0.000000 1.201
+ 48.714 6.000 9.643 1.201 3 39.123 0.000573 1.201
+ 48.714 6.000 9.214 1.242 3 39.554 0.000573 1.242
+ 48.714 6.000 9.214 1.242 5 39.554 0.000000 1.242
+ 48.714 6.000 9.214 1.242 3 39.554 0.000573 1.242
+ 48.714 6.000 8.786 1.305 4 39.986 0.000573 1.305
+ 48.714 6.000 8.786 1.305 6 39.986 0.000000 1.305
+ 48.714 6.000 8.786 1.305 4 39.986 0.000573 1.305
+ 48.714 6.000 8.357 1.401 4 40.417 0.000573 1.401
+ 48.714 6.000 8.357 1.401 6 40.417 0.000000 1.401
+ 48.714 6.000 8.357 1.401 4 40.417 0.000573 1.401
+ 48.714 6.000 7.929 1.618 4 40.875 0.000573 1.618
+ 48.714 6.000 7.929 1.618 6 40.875 0.000000 1.618
+ 48.714 6.000 7.929 1.618 4 40.875 0.000573 1.618
+ 48.714 6.000 7.500 1.676 4 41.351 0.000000 1.676
+ 48.714 6.000 7.500 1.676 6 41.351 0.000000 1.676
+ 48.714 6.000 7.500 1.676 4 41.351 0.000000 1.676
+ 48.714 6.429 10.929 1.225 3 37.879 0.000573 1.225
+ 48.714 6.429 10.929 1.225 5 37.879 0.000000 1.225
+ 48.714 6.429 10.929 1.225 3 37.879 0.000573 1.225
+ 48.714 6.429 10.500 1.180 5 38.312 0.000000 1.180
+ 48.714 6.429 10.500 1.180 3 38.312 0.000000 10.423
+ 48.714 6.429 10.071 1.186 5 38.745 0.000000 1.186
+ 48.714 6.429 10.071 1.186 3 38.745 0.000000 2.588
+ 48.714 6.429 9.643 1.226 3 39.178 0.000573 1.226
+ 48.714 6.429 9.643 1.226 5 39.178 0.000000 1.226
+ 48.714 6.429 9.643 1.226 3 39.178 0.000573 1.226
+ 48.714 6.429 9.214 1.284 4 39.611 0.000573 1.284
+ 48.714 6.429 9.214 1.284 6 39.611 0.000000 1.284
+ 48.714 6.429 9.214 1.284 4 39.611 0.000573 1.284
+ 48.714 6.429 8.786 1.373 4 40.045 0.000573 1.373
+ 48.714 6.429 8.786 1.373 6 40.045 0.000000 1.373
+ 48.714 6.429 8.786 1.373 4 40.045 0.000573 1.373
+ 48.714 6.429 8.357 1.581 4 40.480 0.000573 1.581
+ 48.714 6.429 8.357 1.581 6 40.480 0.000000 1.581
+ 48.714 6.429 8.357 1.581 4 40.480 0.000573 1.581
+ 48.714 6.429 7.929 1.638 4 40.961 0.000000 1.638
+ 48.714 6.429 7.929 1.638 6 40.961 0.000000 1.638
+ 48.714 6.429 7.929 1.638 4 40.961 0.000000 1.638
+ 48.714 6.857 11.357 1.216 3 37.510 0.000573 1.216
+ 48.714 6.857 11.357 1.216 5 37.510 0.000000 1.216
+ 48.714 6.857 11.357 1.216 3 37.510 0.000573 1.216
+ 48.714 6.857 10.929 1.171 5 37.945 0.000000 1.171
+ 48.714 6.857 10.929 1.171 3 37.945 0.000000 46.326
+ 48.714 6.857 10.500 1.176 5 38.380 0.000000 1.176
+ 48.714 6.857 10.500 1.176 3 38.380 0.000000 8.294
+ 48.714 6.857 10.071 1.212 3 38.816 0.000573 1.212
+ 48.714 6.857 10.071 1.212 5 38.816 0.000000 1.212
+ 48.714 6.857 10.071 1.212 3 38.816 0.000573 1.212
+ 48.714 6.857 9.643 1.265 4 39.252 0.000573 1.265
+ 48.714 6.857 9.643 1.265 6 39.252 0.000000 1.265
+ 48.714 6.857 9.643 1.265 4 39.252 0.000573 1.265
+ 48.714 6.857 9.214 1.351 4 39.689 0.000573 1.351
+ 48.714 6.857 9.214 1.351 6 39.689 0.000000 1.351
+ 48.714 6.857 9.214 1.351 4 39.689 0.000573 1.351
+ 48.714 6.857 8.786 1.545 4 40.127 0.000573 1.545
+ 48.714 6.857 8.786 1.545 6 40.127 0.000000 1.545
+ 48.714 6.857 8.786 1.545 4 40.127 0.000573 1.545
+ 48.714 6.857 8.357 1.599 4 40.575 0.000000 1.599
+ 48.714 6.857 8.357 1.599 6 40.575 0.000000 1.599
+ 48.714 6.857 8.357 1.599 4 40.575 0.000000 1.599
+ 48.714 7.286 11.786 1.208 3 37.152 0.000573 1.208
+ 48.714 7.286 11.786 1.208 5 37.152 0.000000 1.208
+ 48.714 7.286 11.786 1.208 3 37.152 0.000573 1.208
+ 48.714 7.286 11.357 1.165 5 37.590 0.000000 1.165
+ 48.714 7.286 11.357 1.165 3 37.590 0.000000 3.962
+ 48.714 7.286 10.929 1.167 5 38.027 0.000000 1.167
+ 48.714 7.286 10.929 1.167 3 38.027 0.000000 116.446
+ 48.714 7.286 10.500 1.202 3 38.466 0.000573 1.202
+ 48.714 7.286 10.500 1.202 5 38.466 0.000000 1.202
+ 48.714 7.286 10.500 1.202 3 38.466 0.000573 1.202
+ 48.714 7.286 10.071 1.252 4 38.906 0.000573 1.252
+ 48.714 7.286 10.071 1.252 6 38.906 0.000000 1.252
+ 48.714 7.286 10.071 1.252 4 38.906 0.000573 1.252
+ 48.714 7.286 9.643 1.332 4 39.346 0.000573 1.332
+ 48.714 7.286 9.643 1.332 6 39.346 0.000000 1.332
+ 48.714 7.286 9.643 1.332 4 39.346 0.000573 1.332
+ 48.714 7.286 9.214 1.519 4 39.788 0.000573 1.519
+ 48.714 7.286 9.214 1.519 6 39.788 0.000000 1.519
+ 48.714 7.286 9.214 1.519 4 39.788 0.000573 1.519
+ 48.714 7.286 8.786 1.564 4 40.231 0.000000 1.564
+ 48.714 7.286 8.786 1.564 6 40.231 0.000000 1.564
+ 48.714 7.286 8.786 1.564 4 40.231 0.000000 1.564
+ 48.714 7.714 12.214 1.203 3 36.805 0.000573 1.203
+ 48.714 7.714 12.214 1.203 5 36.805 0.000000 1.203
+ 48.714 7.714 12.214 1.203 3 36.805 0.000573 1.203
+ 48.714 7.714 11.786 1.159 5 37.245 0.000000 1.159
+ 48.714 7.714 11.786 1.159 3 37.245 0.000000 2.137
+ 48.714 7.714 11.357 1.162 5 37.686 0.000000 1.162
+ 48.714 7.714 11.357 1.162 3 37.686 0.000000 4.608
+ 48.714 7.714 10.929 1.194 3 38.128 0.000573 1.194
+ 48.714 7.714 10.929 1.194 5 38.128 0.000000 1.194
+ 48.714 7.714 10.929 1.194 3 38.128 0.000573 1.194
+ 48.714 7.714 10.500 1.243 4 38.571 0.000573 1.243
+ 48.714 7.714 10.500 1.243 6 38.571 0.000000 1.243
+ 48.714 7.714 10.500 1.243 4 38.571 0.000573 1.243
+ 48.714 7.714 10.071 1.319 4 39.016 0.000573 1.319
+ 48.714 7.714 10.071 1.319 6 39.016 0.000000 1.319
+ 48.714 7.714 10.071 1.319 4 39.016 0.000573 1.319
+ 48.714 7.714 9.643 1.498 4 39.461 0.000573 1.498
+ 48.714 7.714 9.643 1.498 6 39.461 0.000000 1.498
+ 48.714 7.714 9.643 1.498 4 39.461 0.000573 1.498
+ 48.714 7.714 9.214 1.536 4 39.909 0.000000 1.536
+ 48.714 7.714 9.214 1.536 6 39.909 0.000000 1.536
+ 48.714 7.714 9.214 1.536 4 39.909 0.000000 1.536
+ 48.714 8.143 12.643 1.199 3 36.468 0.000573 1.199
+ 48.714 8.143 12.643 1.199 5 36.468 0.000000 1.199
+ 48.714 8.143 12.643 1.199 3 36.468 0.000573 1.199
+ 48.714 8.143 12.214 1.155 5 36.911 0.000000 1.155
+ 48.714 8.143 12.214 1.155 3 36.911 0.000000 1.882
+ 48.714 8.143 11.786 1.157 5 37.355 0.000000 1.157
+ 48.714 8.143 11.786 1.157 3 37.355 0.000000 2.338
+ 48.714 8.143 11.357 1.189 5 37.801 0.000000 1.189
+ 48.714 8.143 11.357 1.189 3 37.801 0.000000 6.539
+ 48.714 8.143 10.929 1.236 4 38.247 0.000573 1.236
+ 48.714 8.143 10.929 1.236 6 38.247 0.000000 1.236
+ 48.714 8.143 10.929 1.236 4 38.247 0.000573 1.236
+ 48.714 8.143 10.500 1.309 4 38.696 0.000573 1.309
+ 48.714 8.143 10.500 1.309 6 38.696 0.000000 1.309
+ 48.714 8.143 10.500 1.309 4 38.696 0.000573 1.309
+ 48.714 8.143 10.071 1.480 4 39.146 0.000573 1.480
+ 48.714 8.143 10.071 1.480 6 39.146 0.000000 1.480
+ 48.714 8.143 10.071 1.480 4 39.146 0.000573 1.480
+ 48.714 8.143 9.643 1.515 4 39.598 0.000000 1.515
+ 48.714 8.143 9.643 1.515 6 39.598 0.000000 1.515
+ 48.714 8.143 9.643 1.515 4 39.598 0.000000 1.515
+ 48.714 8.571 13.071 1.193 3 36.140 0.000573 1.193
+ 48.714 8.571 13.071 1.193 5 36.140 0.000000 1.193
+ 48.714 8.571 13.071 1.193 3 36.140 0.000573 1.193
+ 48.714 8.571 12.643 1.153 5 36.586 0.000000 1.153
+ 48.714 8.571 12.643 1.153 3 36.586 0.000000 1.399
+ 48.714 8.571 12.214 1.154 5 37.034 0.000000 1.154
+ 48.714 8.571 12.214 1.154 3 37.034 0.000000 1.985
+ 48.714 8.571 11.786 1.186 5 37.483 0.000000 1.186
+ 48.714 8.571 11.786 1.186 3 37.483 0.000000 2.816
+ 48.714 8.571 11.357 1.231 4 37.933 0.000573 1.231
+ 48.714 8.571 11.357 1.231 6 37.933 0.000000 1.231
+ 48.714 8.571 11.357 1.231 4 37.933 0.000573 1.231
+ 48.714 8.571 10.929 1.302 4 38.386 0.000573 1.302
+ 48.714 8.571 10.929 1.302 6 38.386 0.000000 1.302
+ 48.714 8.571 10.929 1.302 4 38.386 0.000573 1.302
+ 48.714 8.571 10.500 1.469 4 38.840 0.000573 1.469
+ 48.714 8.571 10.500 1.469 6 38.840 0.000000 1.469
+ 48.714 8.571 10.500 1.469 4 38.840 0.000573 1.469
+ 48.714 8.571 10.071 1.500 4 39.297 0.000000 1.500
+ 48.714 8.571 10.071 1.500 6 39.297 0.000000 1.500
+ 48.714 8.571 10.071 1.500 4 39.297 0.000000 1.500
+ 48.714 9.000 13.500 1.183 5 35.820 0.000000 1.183
+ 48.714 9.000 13.500 1.183 1 35.820 -7.974160 0.952
+ 48.714 9.000 13.071 1.151 5 36.270 0.000000 1.151
+ 48.714 9.000 13.071 1.151 1 36.270 -9.842851 1.126
+ 48.714 9.000 12.643 1.153 5 36.721 0.000000 1.153
+ 48.714 9.000 12.643 1.153 3 36.721 0.000000 1.460
+ 48.714 9.000 12.214 1.183 5 37.174 0.000000 1.183
+ 48.714 9.000 12.214 1.183 3 37.174 0.000000 2.297
+ 48.714 9.000 11.786 1.228 4 37.628 0.000573 1.228
+ 48.714 9.000 11.786 1.228 6 37.628 0.000000 1.228
+ 48.714 9.000 11.786 1.228 4 37.628 0.000573 1.228
+ 48.714 9.000 11.357 1.297 4 38.085 0.000573 1.297
+ 48.714 9.000 11.357 1.297 6 38.085 0.000000 1.297
+ 48.714 9.000 11.357 1.297 4 38.085 0.000573 1.297
+ 48.714 9.000 10.929 1.461 4 38.544 0.000573 1.461
+ 48.714 9.000 10.929 1.461 6 38.544 0.000000 1.461
+ 48.714 9.000 10.929 1.461 4 38.544 0.000573 1.461
+ 48.714 9.000 10.500 1.488 4 39.006 0.000000 1.488
+ 48.714 9.000 10.500 1.488 6 39.006 0.000000 1.488
+ 48.714 9.000 10.500 1.488 4 39.006 0.000000 1.488
+ 49.857 6.000 10.500 1.328 3 39.405 0.000573 1.328
+ 49.857 6.000 10.500 1.328 5 39.405 0.000000 1.328
+ 49.857 6.000 10.500 1.328 3 39.405 0.000573 1.328
+ 49.857 6.000 10.071 1.303 3 39.835 0.000573 1.303
+ 49.857 6.000 10.071 1.303 5 39.835 0.000000 1.303
+ 49.857 6.000 10.071 1.303 3 39.835 0.000573 1.303
+ 49.857 6.000 9.643 1.347 3 40.266 0.000573 1.347
+ 49.857 6.000 9.643 1.347 5 40.266 0.000000 1.347
+ 49.857 6.000 9.643 1.347 3 40.266 0.000573 1.347
+ 49.857 6.000 9.214 1.422 3 40.709 0.000573 1.422
+ 49.857 6.000 9.214 1.422 5 40.709 0.000000 1.422
+ 49.857 6.000 9.214 1.422 3 40.709 0.000573 1.422
+ 49.857 6.000 8.786 1.518 4 41.174 0.000573 1.518
+ 49.857 6.000 8.786 1.518 6 41.174 0.000000 1.518
+ 49.857 6.000 8.786 1.518 4 41.174 0.000573 1.518
+ 49.857 6.000 8.357 1.660 4 41.650 0.000000 1.660
+ 49.857 6.000 8.357 1.660 6 41.650 0.000000 1.660
+ 49.857 6.000 8.357 1.660 4 41.650 0.000000 1.660
+ 49.857 6.000 7.929 1.948 4 42.140 0.000000 1.948
+ 49.857 6.000 7.929 1.948 6 42.140 0.000000 1.948
+ 49.857 6.000 7.929 1.948 4 42.140 0.000000 1.948
+ 49.857 6.000 7.500 2.066 4 42.650 0.000000 2.066
+ 49.857 6.000 7.500 2.066 6 42.650 0.000000 2.066
+ 49.857 6.000 7.500 2.066 4 42.650 0.000000 2.066
+ 49.857 6.429 10.929 1.297 3 39.022 0.000573 1.297
+ 49.857 6.429 10.929 1.297 5 39.022 0.000000 1.297
+ 49.857 6.429 10.929 1.297 3 39.022 0.000573 1.297
+ 49.857 6.429 10.500 1.280 3 39.455 0.000573 1.280
+ 49.857 6.429 10.500 1.280 5 39.455 0.000000 1.280
+ 49.857 6.429 10.500 1.280 3 39.455 0.000573 1.280
+ 49.857 6.429 10.071 1.317 3 39.888 0.000573 1.317
+ 49.857 6.429 10.071 1.317 5 39.888 0.000000 1.317
+ 49.857 6.429 10.071 1.317 3 39.888 0.000573 1.317
+ 49.857 6.429 9.643 1.383 3 40.321 0.000573 1.383
+ 49.857 6.429 9.643 1.383 5 40.321 0.000000 1.383
+ 49.857 6.429 9.643 1.383 3 40.321 0.000573 1.383
+ 49.857 6.429 9.214 1.480 4 40.777 0.000573 1.480
+ 49.857 6.429 9.214 1.480 6 40.777 0.000000 1.480
+ 49.857 6.429 9.214 1.480 4 40.777 0.000573 1.480
+ 49.857 6.429 8.786 1.614 4 41.260 0.000000 1.614
+ 49.857 6.429 8.786 1.614 6 41.260 0.000000 1.614
+ 49.857 6.429 8.786 1.614 4 41.260 0.000000 1.614
+ 49.857 6.429 8.357 1.888 4 41.757 0.000000 1.888
+ 49.857 6.429 8.357 1.888 6 41.757 0.000000 1.888
+ 49.857 6.429 8.357 1.888 4 41.757 0.000000 1.888
+ 49.857 6.429 7.929 2.005 4 42.274 0.000000 2.005
+ 49.857 6.429 7.929 2.005 6 42.274 0.000000 2.005
+ 49.857 6.429 7.929 2.005 4 42.274 0.000000 2.005
+ 49.857 6.857 11.357 1.264 3 38.653 0.000573 1.264
+ 49.857 6.857 11.357 1.264 5 38.653 0.000000 1.264
+ 49.857 6.857 11.357 1.264 3 38.653 0.000573 1.264
+ 49.857 6.857 10.929 1.258 3 39.088 0.000573 1.258
+ 49.857 6.857 10.929 1.258 5 39.088 0.000000 1.258
+ 49.857 6.857 10.929 1.258 3 39.088 0.000573 1.258
+ 49.857 6.857 10.500 1.294 3 39.523 0.000573 1.294
+ 49.857 6.857 10.500 1.294 5 39.523 0.000000 1.294
+ 49.857 6.857 10.500 1.294 3 39.523 0.000573 1.294
+ 49.857 6.857 10.071 1.355 3 39.958 0.000573 1.355
+ 49.857 6.857 10.071 1.355 5 39.958 0.000000 1.355
+ 49.857 6.857 10.071 1.355 3 39.958 0.000573 1.355
+ 49.857 6.857 9.643 1.442 4 40.395 0.000573 1.442
+ 49.857 6.857 9.643 1.442 6 40.395 0.000000 1.442
+ 49.857 6.857 9.643 1.442 4 40.395 0.000573 1.442
+ 49.857 6.857 9.214 1.575 4 40.872 0.000573 1.575
+ 49.857 6.857 9.214 1.575 6 40.872 0.000000 1.575
+ 49.857 6.857 9.214 1.575 4 40.872 0.000573 1.575
+ 49.857 6.857 8.786 1.838 4 41.377 0.000000 1.838
+ 49.857 6.857 8.786 1.838 6 41.377 0.000000 1.838
+ 49.857 6.857 8.786 1.838 4 41.377 0.000000 1.838
+ 49.857 6.857 8.357 1.946 4 41.901 0.000000 1.946
+ 49.857 6.857 8.357 1.946 6 41.901 0.000000 1.946
+ 49.857 6.857 8.357 1.946 4 41.901 0.000000 1.946
+ 49.857 7.286 11.786 1.237 3 38.295 0.000573 1.237
+ 49.857 7.286 11.786 1.237 5 38.295 0.000000 1.237
+ 49.857 7.286 11.786 1.237 3 38.295 0.000573 1.237
+ 49.857 7.286 11.357 1.239 3 38.732 0.000573 1.239
+ 49.857 7.286 11.357 1.239 5 38.732 0.000000 1.239
+ 49.857 7.286 11.357 1.239 3 38.732 0.000573 1.239
+ 49.857 7.286 10.929 1.274 3 39.170 0.000573 1.274
+ 49.857 7.286 10.929 1.274 5 39.170 0.000000 1.274
+ 49.857 7.286 10.929 1.274 3 39.170 0.000573 1.274
+ 49.857 7.286 10.500 1.330 3 39.609 0.000573 1.330
+ 49.857 7.286 10.500 1.330 5 39.609 0.000000 1.330
+ 49.857 7.286 10.500 1.330 3 39.609 0.000573 1.330
+ 49.857 7.286 10.071 1.411 4 40.049 0.000573 1.411
+ 49.857 7.286 10.071 1.411 6 40.049 0.000000 1.411
+ 49.857 7.286 10.071 1.411 4 40.049 0.000573 1.411
+ 49.857 7.286 9.643 1.540 4 40.489 0.000573 1.540
+ 49.857 7.286 9.643 1.540 6 40.489 0.000000 1.540
+ 49.857 7.286 9.643 1.540 4 40.489 0.000573 1.540
+ 49.857 7.286 9.214 1.793 4 40.998 0.000000 1.793
+ 49.857 7.286 9.214 1.793 6 40.998 0.000000 1.793
+ 49.857 7.286 9.214 1.793 4 40.998 0.000000 1.793
+ 49.857 7.286 8.786 1.896 4 41.530 0.000000 1.896
+ 49.857 7.286 8.786 1.896 6 41.530 0.000000 1.896
+ 49.857 7.286 8.786 1.896 4 41.530 0.000000 1.896
+ 49.857 7.714 12.214 1.211 3 37.948 0.000573 1.211
+ 49.857 7.714 12.214 1.211 5 37.948 0.000000 1.211
+ 49.857 7.714 12.214 1.211 3 37.948 0.000573 1.211
+ 49.857 7.714 11.786 1.215 3 38.388 0.000573 1.215
+ 49.857 7.714 11.786 1.215 5 38.388 0.000000 1.215
+ 49.857 7.714 11.786 1.215 3 38.388 0.000573 1.215
+ 49.857 7.714 11.357 1.259 3 38.829 0.000573 1.259
+ 49.857 7.714 11.357 1.259 5 38.829 0.000000 1.259
+ 49.857 7.714 11.357 1.259 3 38.829 0.000573 1.259
+ 49.857 7.714 10.929 1.312 3 39.271 0.000573 1.312
+ 49.857 7.714 10.929 1.312 5 39.271 0.000000 1.312
+ 49.857 7.714 10.929 1.312 3 39.271 0.000573 1.312
+ 49.857 7.714 10.500 1.386 4 39.714 0.000573 1.386
+ 49.857 7.714 10.500 1.386 6 39.714 0.000000 1.386
+ 49.857 7.714 10.500 1.386 4 39.714 0.000573 1.386
+ 49.857 7.714 10.071 1.501 4 40.158 0.000573 1.501
+ 49.857 7.714 10.071 1.501 6 40.158 0.000000 1.501
+ 49.857 7.714 10.071 1.501 4 40.158 0.000573 1.501
+ 49.857 7.714 9.643 1.748 4 40.622 0.000000 1.748
+ 49.857 7.714 9.643 1.748 6 40.622 0.000000 1.748
+ 49.857 7.714 9.643 1.748 4 40.622 0.000000 1.748
+ 49.857 7.714 9.214 1.846 4 41.160 0.000000 1.846
+ 49.857 7.714 9.214 1.846 6 41.160 0.000000 1.846
+ 49.857 7.714 9.214 1.846 4 41.160 0.000000 1.846
+ 49.857 8.143 12.643 1.191 3 37.611 0.000573 1.191
+ 49.857 8.143 12.643 1.191 5 37.611 0.000000 1.191
+ 49.857 8.143 12.643 1.191 3 37.611 0.000573 1.191
+ 49.857 8.143 12.214 1.194 3 38.054 0.000573 1.194
+ 49.857 8.143 12.214 1.194 5 38.054 0.000000 1.194
+ 49.857 8.143 12.214 1.194 3 38.054 0.000573 1.194
+ 49.857 8.143 11.786 1.246 3 38.498 0.000573 1.246
+ 49.857 8.143 11.786 1.246 5 38.498 0.000000 1.246
+ 49.857 8.143 11.786 1.246 3 38.498 0.000573 1.246
+ 49.857 8.143 11.357 1.295 3 38.944 0.000573 1.295
+ 49.857 8.143 11.357 1.295 5 38.944 0.000000 1.295
+ 49.857 8.143 11.357 1.295 3 38.944 0.000573 1.295
+ 49.857 8.143 10.929 1.366 4 39.390 0.000573 1.366
+ 49.857 8.143 10.929 1.366 6 39.390 0.000000 1.366
+ 49.857 8.143 10.929 1.366 4 39.390 0.000573 1.366
+ 49.857 8.143 10.500 1.476 4 39.839 0.000573 1.476
+ 49.857 8.143 10.500 1.476 6 39.839 0.000000 1.476
+ 49.857 8.143 10.500 1.476 4 39.839 0.000573 1.476
+ 49.857 8.143 10.071 1.708 4 40.289 0.000000 1.708
+ 49.857 8.143 10.071 1.708 6 40.289 0.000000 1.708
+ 49.857 8.143 10.071 1.708 4 40.289 0.000000 1.708
+ 49.857 8.143 9.643 1.804 4 40.793 0.000000 1.804
+ 49.857 8.143 9.643 1.804 6 40.793 0.000000 1.804
+ 49.857 8.143 9.643 1.804 4 40.793 0.000000 1.804
+ 49.857 8.571 13.071 1.173 5 37.283 0.000000 1.173
+ 49.857 8.571 13.071 1.173 3 37.283 0.000000 2.158
+ 49.857 8.571 12.643 1.174 5 37.729 0.000000 1.174
+ 49.857 8.571 12.643 1.174 3 37.729 0.000000 3.605
+ 49.857 8.571 12.214 1.234 3 38.177 0.000573 1.234
+ 49.857 8.571 12.214 1.234 5 38.177 0.000000 1.234
+ 49.857 8.571 12.214 1.234 3 38.177 0.000573 1.234
+ 49.857 8.571 11.786 1.283 3 38.626 0.000573 1.283
+ 49.857 8.571 11.786 1.283 5 38.626 0.000000 1.283
+ 49.857 8.571 11.786 1.283 3 38.626 0.000573 1.283
+ 49.857 8.571 11.357 1.349 4 39.076 0.000573 1.349
+ 49.857 8.571 11.357 1.349 6 39.076 0.000000 1.349
+ 49.857 8.571 11.357 1.349 4 39.076 0.000573 1.349
+ 49.857 8.571 10.929 1.453 4 39.529 0.000573 1.453
+ 49.857 8.571 10.929 1.453 6 39.529 0.000000 1.453
+ 49.857 8.571 10.929 1.453 4 39.529 0.000573 1.453
+ 49.857 8.571 10.500 1.673 4 39.983 0.000000 1.673
+ 49.857 8.571 10.500 1.673 6 39.983 0.000000 1.673
+ 49.857 8.571 10.500 1.673 4 39.983 0.000000 1.673
+ 49.857 8.571 10.071 1.763 4 40.440 0.000000 1.763
+ 49.857 8.571 10.071 1.763 6 40.440 0.000000 1.763
+ 49.857 8.571 10.071 1.763 4 40.440 0.000000 1.763
+ 49.857 9.000 13.500 1.156 5 36.963 0.000000 1.156
+ 49.857 9.000 13.500 1.156 3 36.963 0.000000 1.556
+ 49.857 9.000 13.071 1.157 5 37.413 0.000000 1.157
+ 49.857 9.000 13.071 1.157 3 37.413 0.000000 2.124
+ 49.857 9.000 12.643 1.217 3 37.864 0.000573 1.217
+ 49.857 9.000 12.643 1.217 5 37.864 0.000000 1.217
+ 49.857 9.000 12.643 1.217 3 37.864 0.000573 1.217
+ 49.857 9.000 12.214 1.274 3 38.316 0.000573 1.274
+ 49.857 9.000 12.214 1.274 5 38.316 0.000000 1.274
+ 49.857 9.000 12.214 1.274 3 38.316 0.000573 1.274
+ 49.857 9.000 11.786 1.337 4 38.771 0.000573 1.337
+ 49.857 9.000 11.786 1.337 6 38.771 0.000000 1.337
+ 49.857 9.000 11.786 1.337 4 38.771 0.000573 1.337
+ 49.857 9.000 11.357 1.433 4 39.228 0.000573 1.433
+ 49.857 9.000 11.357 1.433 6 39.228 0.000000 1.433
+ 49.857 9.000 11.357 1.433 4 39.228 0.000573 1.433
+ 49.857 9.000 10.929 1.645 4 39.687 0.000000 1.645
+ 49.857 9.000 10.929 1.645 6 39.687 0.000000 1.645
+ 49.857 9.000 10.929 1.645 4 39.687 0.000000 1.645
+ 49.857 9.000 10.500 1.725 4 40.149 0.000000 1.725
+ 49.857 9.000 10.500 1.725 6 40.149 0.000000 1.725
+ 49.857 9.000 10.500 1.725 4 40.149 0.000000 1.725
+ 51.000 6.000 10.500 1.407 3 40.550 0.000573 1.407
+ 51.000 6.000 10.500 1.407 5 40.550 0.000000 1.407
+ 51.000 6.000 10.500 1.407 3 40.550 0.000573 1.407
+ 51.000 6.000 10.071 1.457 3 41.007 0.000573 1.457
+ 51.000 6.000 10.071 1.457 5 41.007 0.000000 1.457
+ 51.000 6.000 10.071 1.457 3 41.007 0.000573 1.457
+ 51.000 6.000 9.643 1.602 3 41.472 0.000573 1.602
+ 51.000 6.000 9.643 1.602 5 41.472 0.000000 1.602
+ 51.000 6.000 9.643 1.602 3 41.472 0.000573 1.602
+ 51.000 6.000 9.214 1.725 3 41.948 0.000573 1.725
+ 51.000 6.000 9.214 1.725 5 41.948 0.000000 1.725
+ 51.000 6.000 9.214 1.725 3 41.948 0.000573 1.725
+ 51.000 6.000 8.786 1.881 4 42.438 0.000573 1.881
+ 51.000 6.000 8.786 1.881 6 42.438 0.000000 1.881
+ 51.000 6.000 8.786 1.881 4 42.438 0.000573 1.881
+ 51.000 6.000 8.357 2.109 4 42.944 0.000000 2.109
+ 51.000 6.000 8.357 2.109 6 42.944 0.000000 2.109
+ 51.000 6.000 8.357 2.109 4 42.944 0.000000 2.109
+ 51.000 6.000 7.929 2.545 4 43.471 0.000000 2.545
+ 51.000 6.000 7.929 2.545 6 43.471 0.000000 2.545
+ 51.000 6.000 7.929 2.545 4 43.471 0.000000 2.545
+ 51.000 6.000 7.500 2.800 4 44.028 0.000000 2.800
+ 51.000 6.000 7.500 2.800 6 44.028 0.000000 2.800
+ 51.000 6.000 7.500 2.800 4 44.028 0.000000 2.800
+ 51.000 6.429 10.929 1.347 3 40.165 0.000573 1.347
+ 51.000 6.429 10.929 1.347 5 40.165 0.000000 1.347
+ 51.000 6.429 10.929 1.347 3 40.165 0.000573 1.347
+ 51.000 6.429 10.500 1.397 3 40.605 0.000573 1.397
+ 51.000 6.429 10.500 1.397 5 40.605 0.000000 1.397
+ 51.000 6.429 10.500 1.397 3 40.605 0.000573 1.397
+ 51.000 6.429 10.071 1.539 3 41.076 0.000573 1.539
+ 51.000 6.429 10.071 1.539 5 41.076 0.000000 1.539
+ 51.000 6.429 10.071 1.539 3 41.076 0.000573 1.539
+ 51.000 6.429 9.643 1.668 3 41.558 0.000573 1.668
+ 51.000 6.429 9.643 1.668 5 41.558 0.000000 1.668
+ 51.000 6.429 9.643 1.668 3 41.558 0.000573 1.668
+ 51.000 6.429 9.214 1.817 4 42.054 0.000573 1.817
+ 51.000 6.429 9.214 1.817 6 42.054 0.000000 1.817
+ 51.000 6.429 9.214 1.817 4 42.054 0.000573 1.817
+ 51.000 6.429 8.786 2.033 4 42.566 0.000000 2.033
+ 51.000 6.429 8.786 2.033 6 42.566 0.000000 2.033
+ 51.000 6.429 8.786 2.033 4 42.566 0.000000 2.033
+ 51.000 6.429 8.357 2.448 4 43.101 0.000000 2.448
+ 51.000 6.429 8.357 2.448 6 43.101 0.000000 2.448
+ 51.000 6.429 8.357 2.448 4 43.101 0.000000 2.448
+ 51.000 6.429 7.929 2.688 4 43.666 0.000000 2.688
+ 51.000 6.429 7.929 2.688 6 43.666 0.000000 2.688
+ 51.000 6.429 7.929 2.688 4 43.666 0.000000 2.688
+ 51.000 6.857 11.357 1.296 3 39.796 0.000573 1.296
+ 51.000 6.857 11.357 1.296 5 39.796 0.000000 1.296
+ 51.000 6.857 11.357 1.296 3 39.796 0.000573 1.296
+ 51.000 6.857 10.929 1.338 3 40.230 0.000573 1.338
+ 51.000 6.857 10.929 1.338 5 40.230 0.000000 1.338
+ 51.000 6.857 10.929 1.338 3 40.230 0.000573 1.338
+ 51.000 6.857 10.500 1.476 3 40.682 0.000573 1.476
+ 51.000 6.857 10.500 1.476 5 40.682 0.000000 1.476
+ 51.000 6.857 10.500 1.476 3 40.682 0.000573 1.476
+ 51.000 6.857 10.071 1.617 3 41.170 0.000573 1.617
+ 51.000 6.857 10.071 1.617 5 41.170 0.000000 1.617
+ 51.000 6.857 10.071 1.617 3 41.170 0.000573 1.617
+ 51.000 6.857 9.643 1.758 4 41.672 0.000573 1.758
+ 51.000 6.857 9.643 1.758 6 41.672 0.000000 1.758
+ 51.000 6.857 9.643 1.758 4 41.672 0.000573 1.758
+ 51.000 6.857 9.214 1.966 4 42.191 0.000000 1.966
+ 51.000 6.857 9.214 1.966 6 42.191 0.000000 1.966
+ 51.000 6.857 9.214 1.966 4 42.191 0.000000 1.966
+ 51.000 6.857 8.786 2.356 4 42.733 0.000000 2.356
+ 51.000 6.857 8.786 2.356 6 42.733 0.000000 2.356
+ 51.000 6.857 8.786 2.356 4 42.733 0.000000 2.356
+ 51.000 6.857 8.357 2.587 4 43.305 0.000000 2.587
+ 51.000 6.857 8.357 2.587 6 43.305 0.000000 2.587
+ 51.000 6.857 8.357 2.587 4 43.305 0.000000 2.587
+ 51.000 7.286 11.786 1.256 3 39.438 0.000573 1.256
+ 51.000 7.286 11.786 1.256 5 39.438 0.000000 1.256
+ 51.000 7.286 11.786 1.256 3 39.438 0.000573 1.256
+ 51.000 7.286 11.357 1.291 3 39.875 0.000573 1.291
+ 51.000 7.286 11.357 1.291 5 39.875 0.000000 1.291
+ 51.000 7.286 11.357 1.291 3 39.875 0.000573 1.291
+ 51.000 7.286 10.929 1.417 3 40.313 0.000573 1.417
+ 51.000 7.286 10.929 1.417 5 40.313 0.000000 1.417
+ 51.000 7.286 10.929 1.417 3 40.313 0.000573 1.417
+ 51.000 7.286 10.500 1.569 3 40.785 0.000573 1.569
+ 51.000 7.286 10.500 1.569 5 40.785 0.000000 1.569
+ 51.000 7.286 10.500 1.569 3 40.785 0.000573 1.569
+ 51.000 7.286 10.071 1.706 4 41.292 0.000573 1.706
+ 51.000 7.286 10.071 1.706 6 41.292 0.000000 1.706
+ 51.000 7.286 10.071 1.706 4 41.292 0.000573 1.706
+ 51.000 7.286 9.643 1.902 4 41.818 0.000000 1.902
+ 51.000 7.286 9.643 1.902 6 41.818 0.000000 1.902
+ 51.000 7.286 9.643 1.902 4 41.818 0.000000 1.902
+ 51.000 7.286 9.214 2.277 4 42.366 0.000000 2.277
+ 51.000 7.286 9.214 2.277 6 42.366 0.000000 2.277
+ 51.000 7.286 9.214 2.277 4 42.366 0.000000 2.277
+ 51.000 7.286 8.786 2.495 4 42.945 0.000000 2.495
+ 51.000 7.286 8.786 2.495 6 42.945 0.000000 2.495
+ 51.000 7.286 8.786 2.495 4 42.945 0.000000 2.495
+ 51.000 7.714 12.214 1.219 3 39.091 0.000573 1.219
+ 51.000 7.714 12.214 1.219 5 39.091 0.000000 1.219
+ 51.000 7.714 12.214 1.219 3 39.091 0.000573 1.219
+ 51.000 7.714 11.786 1.250 3 39.531 0.000573 1.250
+ 51.000 7.714 11.786 1.250 5 39.531 0.000000 1.250
+ 51.000 7.714 11.786 1.250 3 39.531 0.000573 1.250
+ 51.000 7.714 11.357 1.369 3 39.972 0.000573 1.369
+ 51.000 7.714 11.357 1.369 5 39.972 0.000000 1.369
+ 51.000 7.714 11.357 1.369 3 39.972 0.000573 1.369
+ 51.000 7.714 10.929 1.514 3 40.414 0.000573 1.514
+ 51.000 7.714 10.929 1.514 5 40.414 0.000000 1.514
+ 51.000 7.714 10.929 1.514 3 40.414 0.000573 1.514
+ 51.000 7.714 10.500 1.661 4 40.915 0.000573 1.661
+ 51.000 7.714 10.500 1.661 6 40.915 0.000000 1.661
+ 51.000 7.714 10.500 1.661 4 40.915 0.000573 1.661
+ 51.000 7.714 10.071 1.848 4 41.446 0.000000 1.848
+ 51.000 7.714 10.071 1.848 6 41.446 0.000000 1.848
+ 51.000 7.714 10.071 1.848 4 41.446 0.000000 1.848
+ 51.000 7.714 9.643 2.205 4 42.001 0.000000 2.205
+ 51.000 7.714 9.643 2.205 6 42.001 0.000000 2.205
+ 51.000 7.714 9.643 2.205 4 42.001 0.000000 2.205
+ 51.000 7.714 9.214 2.412 4 42.587 0.000000 2.412
+ 51.000 7.714 9.214 2.412 6 42.587 0.000000 2.412
+ 51.000 7.714 9.214 2.412 4 42.587 0.000000 2.412
+ 51.000 8.143 12.643 1.189 5 38.754 0.000000 1.189
+ 51.000 8.143 12.643 1.189 3 38.754 0.000000 14.577
+ 51.000 8.143 12.214 1.215 3 39.197 0.000573 1.215
+ 51.000 8.143 12.214 1.215 5 39.197 0.000000 1.215
+ 51.000 8.143 12.214 1.215 3 39.197 0.000573 1.215
+ 51.000 8.143 11.786 1.326 3 39.641 0.000573 1.326
+ 51.000 8.143 11.786 1.326 5 39.641 0.000000 1.326
+ 51.000 8.143 11.786 1.326 3 39.641 0.000573 1.326
+ 51.000 8.143 11.357 1.461 3 40.086 0.000573 1.461
+ 51.000 8.143 11.357 1.461 5 40.086 0.000000 1.461
+ 51.000 8.143 11.357 1.461 3 40.086 0.000573 1.461
+ 51.000 8.143 10.929 1.619 4 40.539 0.000573 1.619
+ 51.000 8.143 10.929 1.619 6 40.539 0.000000 1.619
+ 51.000 8.143 10.929 1.619 4 40.539 0.000573 1.619
+ 51.000 8.143 10.500 1.797 4 41.076 0.000000 1.797
+ 51.000 8.143 10.500 1.797 6 41.076 0.000000 1.797
+ 51.000 8.143 10.500 1.797 4 41.076 0.000000 1.797
+ 51.000 8.143 10.071 2.139 4 41.637 0.000000 2.139
+ 51.000 8.143 10.071 2.139 6 41.637 0.000000 2.139
+ 51.000 8.143 10.071 2.139 4 41.637 0.000000 2.139
+ 51.000 8.143 9.643 2.335 4 42.229 0.000000 2.335
+ 51.000 8.143 9.643 2.335 6 42.229 0.000000 2.335
+ 51.000 8.143 9.643 2.335 4 42.229 0.000000 2.335
+ 51.000 8.571 13.071 1.163 5 38.426 0.000000 1.163
+ 51.000 8.571 13.071 1.163 3 38.426 0.000000 6.573
+ 51.000 8.571 12.643 1.186 5 38.872 0.000000 1.186
+ 51.000 8.571 12.643 1.186 3 38.872 0.000000 6.283
+ 51.000 8.571 12.214 1.290 3 39.320 0.000573 1.290
+ 51.000 8.571 12.214 1.290 5 39.320 0.000000 1.290
+ 51.000 8.571 12.214 1.290 3 39.320 0.000573 1.290
+ 51.000 8.571 11.786 1.418 3 39.768 0.000573 1.418
+ 51.000 8.571 11.786 1.418 5 39.768 0.000000 1.418
+ 51.000 8.571 11.786 1.418 3 39.768 0.000573 1.418
+ 51.000 8.571 11.357 1.576 4 40.219 0.000573 1.576
+ 51.000 8.571 11.357 1.576 6 40.219 0.000000 1.576
+ 51.000 8.571 11.357 1.576 4 40.219 0.000573 1.576
+ 51.000 8.571 10.929 1.749 4 40.708 0.000000 1.749
+ 51.000 8.571 10.929 1.749 6 40.708 0.000000 1.749
+ 51.000 8.571 10.929 1.749 4 40.708 0.000000 1.749
+ 51.000 8.571 10.500 2.078 4 41.275 0.000000 2.078
+ 51.000 8.571 10.500 2.078 6 41.275 0.000000 2.078
+ 51.000 8.571 10.500 2.078 4 41.275 0.000000 2.078
+ 51.000 8.571 10.071 2.264 4 41.873 0.000000 2.264
+ 51.000 8.571 10.071 2.264 6 41.873 0.000000 2.264
+ 51.000 8.571 10.071 2.264 4 41.873 0.000000 2.264
+ 51.000 9.000 13.500 1.142 5 38.106 0.000000 1.142
+ 51.000 9.000 13.500 1.142 3 38.106 0.000000 2.789
+ 51.000 9.000 13.071 1.160 5 38.556 0.000000 1.160
+ 51.000 9.000 13.071 1.160 3 38.556 0.000000 19.395
+ 51.000 9.000 12.643 1.259 3 39.007 0.000573 1.259
+ 51.000 9.000 12.643 1.259 5 39.007 0.000000 1.259
+ 51.000 9.000 12.643 1.259 3 39.007 0.000573 1.259
+ 51.000 9.000 12.214 1.381 3 39.459 0.000573 1.381
+ 51.000 9.000 12.214 1.381 5 39.459 0.000000 1.381
+ 51.000 9.000 12.214 1.381 3 39.459 0.000573 1.381
+ 51.000 9.000 11.786 1.535 4 39.914 0.000573 1.535
+ 51.000 9.000 11.786 1.535 6 39.914 0.000000 1.535
+ 51.000 9.000 11.786 1.535 4 39.914 0.000573 1.535
+ 51.000 9.000 11.357 1.706 4 40.371 0.000000 1.706
+ 51.000 9.000 11.357 1.706 6 40.371 0.000000 1.706
+ 51.000 9.000 11.357 1.706 4 40.371 0.000000 1.706
+ 51.000 9.000 10.929 2.022 4 40.914 0.000000 2.022
+ 51.000 9.000 10.929 2.022 6 40.914 0.000000 2.022
+ 51.000 9.000 10.929 2.022 4 40.914 0.000000 2.022
+ 51.000 9.000 10.500 2.200 4 41.517 0.000000 2.200
+ 51.000 9.000 10.500 2.200 6 41.517 0.000000 2.200
+ 51.000 9.000 10.500 2.200 4 41.517 0.000000 2.200
+[End of Data]
+[END OF ZONE RESULTS]
+[CircleResults]
+ -1.500 -4.500 8
+8 8
+ 46.429 7.714 11.357 1.104
+ 43.000 6.000 9.643 1.361
+ 43.000 6.429 10.071 1.342
+ 43.000 6.857 10.500 1.329
+ 43.000 7.286 10.929 1.319
+ 43.000 7.714 11.357 1.314
+ 43.000 8.143 11.786 1.311
+ 43.000 8.571 12.214 1.310
+ 43.000 9.000 12.643 1.311
+ 44.143 6.000 9.643 1.213
+ 44.143 6.429 10.071 1.201
+ 44.143 6.857 10.500 1.194
+ 44.143 7.286 10.929 1.188
+ 44.143 7.714 11.357 1.186
+ 44.143 8.143 11.786 1.186
+ 44.143 8.571 12.214 1.188
+ 44.143 9.000 12.643 1.191
+ 45.286 6.000 9.643 1.139
+ 45.286 6.429 10.071 1.133
+ 45.286 6.857 10.500 1.129
+ 45.286 7.286 10.929 1.126
+ 45.286 7.714 11.357 1.124
+ 45.286 8.143 11.786 1.124
+ 45.286 8.571 12.214 1.125
+ 45.286 9.000 12.643 1.129
+ 46.429 6.000 9.643 1.113
+ 46.429 6.429 10.071 1.109
+ 46.429 6.857 10.500 1.106
+ 46.429 7.286 10.929 1.104
+ 46.429 7.714 11.357 1.104
+ 46.429 8.143 11.786 1.104
+ 46.429 8.571 12.214 1.105
+ 46.429 9.000 12.643 1.107
+ 47.571 6.000 9.643 1.132
+ 47.571 6.429 10.071 1.124
+ 47.571 6.857 10.500 1.120
+ 47.571 7.286 10.929 1.116
+ 47.571 7.714 11.357 1.115
+ 47.571 8.143 11.786 1.114
+ 47.571 8.571 12.214 1.114
+ 47.571 9.000 12.643 1.115
+ 48.714 6.000 10.071 1.193
+ 48.714 6.429 10.500 1.180
+ 48.714 6.857 10.929 1.171
+ 48.714 7.286 11.357 1.165
+ 48.714 7.714 11.786 1.159
+ 48.714 8.143 12.214 1.155
+ 48.714 8.571 12.643 1.153
+ 48.714 9.000 13.071 1.151
+ 49.857 6.000 10.071 1.303
+ 49.857 6.429 10.500 1.280
+ 49.857 6.857 10.929 1.258
+ 49.857 7.286 11.786 1.237
+ 49.857 7.714 12.214 1.211
+ 49.857 8.143 12.643 1.191
+ 49.857 8.571 13.071 1.173
+ 49.857 9.000 13.500 1.156
+ 51.000 6.000 10.500 1.407
+ 51.000 6.429 10.929 1.347
+ 51.000 6.857 11.357 1.296
+ 51.000 7.286 11.786 1.256
+ 51.000 7.714 12.214 1.219
+ 51.000 8.143 12.643 1.189
+ 51.000 8.571 13.071 1.163
+ 51.000 9.000 13.500 1.142
+[End of CircleResults]
+
+[Dumps]
+ 6 : number of dumps in file
+
+[Dump]
+[Dump Header]
+[Column Indication]
+Stability factor
+Number of slices
+X-Centrepoint
+Y-Centrepoint
+Radius
+X coordinate left surface
+X coordinate right surface
+Zone number
+Dump name
+[End of Column Indication]
+[Data]
+ 1.104 35 46.429 7.714 11.357 35.401 54.764 0 Design level
+[End of Data]
+[End Of Dump Header]
+[SliceGeometry]
+[Column Indication]
+xRight
+xLeft
+yBottomRight
+YBottomLeft
+yTopRight
+YTopLeft
+[End of Column Indication]
+[Data]
+ 35.723 35.401 3.923 5.000 5.000 5.000
+ 36.320 35.723 2.537 3.923 5.000 5.000
+ 36.917 36.320 1.508 2.537 5.000 5.000
+ 37.514 36.917 0.677 1.508 5.000 5.000
+ 38.112 37.514 -0.020 0.677 5.000 5.000
+ 38.709 38.112 -0.616 -0.020 5.000 5.000
+ 39.306 38.709 -1.132 -0.616 5.000 5.000
+ 39.903 39.306 -1.581 -1.132 5.000 5.000
+ 40.500 39.903 -1.973 -1.581 5.000 5.000
+ 40.545 40.500 -2.000 -1.973 4.978 5.000
+ 41.030 40.545 -2.278 -2.000 4.735 4.978
+ 41.515 41.030 -2.525 -2.278 4.493 4.735
+ 42.000 41.515 -2.744 -2.525 4.250 4.493
+ 42.625 42.000 -2.987 -2.744 3.938 4.250
+ 43.250 42.625 -3.189 -2.987 3.625 3.938
+ 43.875 43.250 -3.352 -3.189 3.313 3.625
+ 44.500 43.875 -3.478 -3.352 3.000 3.313
+ 45.125 44.500 -3.568 -3.478 2.688 3.000
+ 45.750 45.125 -3.623 -3.568 2.375 2.688
+ 46.375 45.750 -3.643 -3.623 2.063 2.375
+ 47.000 46.375 -3.628 -3.643 1.750 2.063
+ 47.625 47.000 -3.580 -3.628 1.438 1.750
+ 48.250 47.625 -3.496 -3.580 1.125 1.438
+ 48.875 48.250 -3.376 -3.496 0.813 1.125
+ 49.500 48.875 -3.220 -3.376 0.500 0.813
+ 50.000 49.500 -3.067 -3.220 0.250 0.500
+ 50.500 50.000 -2.888 -3.067 0.000 0.250
+ 51.104 50.500 -2.636 -2.888 0.000 0.000
+ 51.708 51.104 -2.341 -2.636 0.000 0.000
+ 52.312 51.708 -2.000 -2.341 0.000 0.000
+ 52.865 52.312 -1.643 -2.000 0.000 0.000
+ 53.419 52.865 -1.237 -1.643 0.000 0.000
+ 53.972 53.419 -0.776 -1.237 0.000 0.000
+ 54.525 53.972 -0.250 -0.776 0.000 0.000
+ 54.764 54.525 0.000 -0.250 0.000 0.000
+[End of Data]
+[End of SliceGeometry]
+[strength and Loads]
+[Column Indication]
+CohBottom
+PhiBottom
+Cu
+K0
+PoreOnSurface
+YFrea
+HPoreOnSurface
+VPoreOnSurface
+Weight
+ExternalLoad
+PseudoFactor
+[End of Column Indication]
+[Data]
+ 8.000 20.000 0.000 0.000 0.000 3.940 0.000 -0.000 2.433 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.891 0.000 -0.000 14.799 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.827 0.000 -0.000 24.892 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.763 0.000 -0.000 32.666 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.699 0.000 -0.000 39.050 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.635 0.000 -0.000 44.453 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.571 0.000 -0.000 49.101 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.507 0.000 -0.000 53.136 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.443 0.000 -0.000 56.651 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.408 -0.000 -0.000 4.387 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.380 -0.000 -0.000 47.365 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.328 -0.000 -0.000 47.246 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.276 -0.000 -0.000 46.955 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.104 -0.000 -0.000 59.811 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.813 -0.000 -0.000 58.746 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.521 -0.000 -0.000 57.380 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.229 -0.000 -0.000 55.730 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.938 -0.000 -0.000 53.804 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.646 -0.000 -0.000 51.612 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.354 -0.000 -0.000 49.159 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.063 -0.000 -0.000 46.447 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.771 -0.000 -0.000 43.476 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.479 -0.000 -0.000 40.244 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.188 -0.000 -0.000 36.747 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.104 -0.000 -0.000 32.977 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 23.484 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 20.739 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 22.437 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 20.455 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 18.150 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 14.106 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 11.151 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 7.795 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 3.973 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 0.417 0.000 0.000
+[End of Data]
+[End of Strength and Loads]
+[Stresses]
+[Column Indication]
+TotalStress
+EffectiveStress
+HydrostaticPore
+AanpasPore
+PnLinePore
+ShearStress
+NormalStress
+PreLoadStress
+POP
+LoadStress
+SigmaAlfa
+WaterLoadStress
+TotalPore
+[End of Column Indication]
+[Data]
+ 7.542 7.542 0.000 0.000 0.000 4.634 -7.936 0.000 0.000 0.000 0.000 0.000 0.000
+ 24.784 18.301 6.483 0.000 6.483 7.527 0.834 0.000 0.000 0.000 0.000 0.000 6.483
+ 41.688 23.988 17.700 0.000 17.700 9.669 7.324 0.000 0.000 0.000 0.000 0.000 17.700
+ 54.706 28.512 26.194 0.000 26.194 11.418 12.626 0.000 0.000 0.000 0.000 0.000 26.194
+ 65.397 32.339 33.058 0.000 33.058 12.941 17.242 0.000 0.000 0.000 0.000 0.000 33.058
+ 74.446 35.675 38.771 0.000 38.771 14.310 21.389 0.000 0.000 0.000 0.000 0.000 38.771
+ 82.231 38.632 43.599 0.000 43.599 15.562 25.185 0.000 0.000 0.000 0.000 0.000 43.599
+ 88.988 41.282 47.705 0.000 47.705 16.722 28.701 0.000 0.000 0.000 0.000 0.000 47.705
+ 94.875 43.672 51.203 0.000 51.203 17.807 31.989 0.000 0.000 0.000 0.000 0.000 51.203
+ 97.651 44.730 52.921 0.000 52.921 18.329 33.571 0.000 0.000 0.000 0.000 0.000 52.921
+ 97.654 43.515 54.139 0.000 54.139 13.259 35.924 0.000 0.000 0.000 0.000 0.000 54.139
+ 97.408 41.204 56.204 0.000 56.204 12.939 34.609 0.000 0.000 0.000 0.000 0.000 56.204
+ 96.810 38.829 57.981 0.000 57.981 12.585 33.149 0.000 0.000 0.000 0.000 0.000 57.981
+ 95.698 37.136 58.562 0.000 58.562 12.383 32.318 0.000 0.000 0.000 0.000 0.000 58.562
+ 93.993 36.110 57.884 0.000 57.884 12.335 32.123 0.000 0.000 0.000 0.000 0.000 57.884
+ 91.809 34.996 56.813 0.000 56.813 12.256 31.798 0.000 0.000 0.000 0.000 0.000 56.813
+ 89.167 33.798 55.369 0.000 55.369 12.148 31.352 0.000 0.000 0.000 0.000 0.000 55.369
+ 86.087 32.521 53.566 0.000 53.566 12.012 30.793 0.000 0.000 0.000 0.000 0.000 53.566
+ 82.580 31.165 51.414 0.000 51.414 11.851 30.127 0.000 0.000 0.000 0.000 0.000 51.414
+ 78.654 29.734 48.921 0.000 48.921 11.664 29.357 0.000 0.000 0.000 0.000 0.000 48.921
+ 74.315 28.226 46.088 0.000 46.088 11.452 28.488 0.000 0.000 0.000 0.000 0.000 46.088
+ 69.561 26.644 42.918 0.000 42.918 11.217 27.520 0.000 0.000 0.000 0.000 0.000 42.918
+ 64.391 24.985 39.406 0.000 39.406 10.958 26.454 0.000 0.000 0.000 0.000 0.000 39.406
+ 58.795 23.248 35.547 0.000 35.547 10.676 25.291 0.000 0.000 0.000 0.000 0.000 35.547
+ 52.763 21.432 31.331 0.000 31.331 10.370 24.030 0.000 0.000 0.000 0.000 0.000 31.331
+ 46.968 18.586 28.382 0.000 28.382 9.773 21.576 0.000 0.000 0.000 0.000 0.000 28.382
+ 41.478 14.723 26.755 0.000 26.755 8.880 17.897 0.000 0.000 0.000 0.000 0.000 26.755
+ 37.143 12.501 24.642 0.000 24.642 8.423 16.018 0.000 0.000 0.000 0.000 0.000 24.642
+ 33.861 11.902 21.959 0.000 21.959 8.422 16.011 0.000 0.000 0.000 0.000 0.000 21.959
+ 30.047 11.206 18.841 0.000 18.841 8.408 15.954 0.000 0.000 0.000 0.000 0.000 18.841
+ 25.498 10.084 15.414 0.000 15.414 13.445 18.770 0.000 0.000 0.000 0.000 0.000 15.414
+ 20.156 8.485 11.671 0.000 11.671 13.201 18.031 0.000 0.000 0.000 0.000 0.000 11.671
+ 14.089 6.669 7.420 0.000 7.420 12.415 15.646 0.000 0.000 0.000 0.000 0.000 7.420
+ 7.181 4.602 2.579 0.000 2.579 11.519 12.931 0.000 0.000 0.000 0.000 0.000 2.579
+ 1.750 1.750 0.000 0.000 0.000 10.283 9.185 0.000 0.000 0.000 0.000 0.000 0.000
+[End of Data]
+[End of Stresses]
+[End of Dump]
+
+[Dump]
+[Dump Header]
+[Column Indication]
+Stability factor
+Number of slices
+X-Centrepoint
+Y-Centrepoint
+Radius
+X coordinate left surface
+X coordinate right surface
+Zone number
+Rotated safety
+Rotated angle in radians
+Dump name
+[End of Column Indication]
+[Data]
+ 1.104 35 46.429 7.714 11.357 35.401 54.764 1 0.773 -0.132 Design level
+[End of Data]
+[End Of Dump Header]
+[SliceGeometry]
+[Column Indication]
+xRight
+xLeft
+yBottomRight
+YBottomLeft
+yTopRight
+YTopLeft
+[End of Column Indication]
+[Data]
+ 35.723 35.401 3.923 5.000 5.000 5.000
+ 36.320 35.723 2.537 3.923 5.000 5.000
+ 36.917 36.320 1.508 2.537 5.000 5.000
+ 37.514 36.917 0.677 1.508 5.000 5.000
+ 38.112 37.514 -0.020 0.677 5.000 5.000
+ 38.709 38.112 -0.616 -0.020 5.000 5.000
+ 39.306 38.709 -1.132 -0.616 5.000 5.000
+ 39.903 39.306 -1.581 -1.132 5.000 5.000
+ 40.500 39.903 -1.973 -1.581 5.000 5.000
+ 40.545 40.500 -2.000 -1.973 4.978 5.000
+ 41.030 40.545 -2.278 -2.000 4.735 4.978
+ 41.515 41.030 -2.525 -2.278 4.493 4.735
+ 42.000 41.515 -2.744 -2.525 4.250 4.493
+ 42.625 42.000 -2.987 -2.744 3.938 4.250
+ 43.250 42.625 -3.189 -2.987 3.625 3.938
+ 43.875 43.250 -3.352 -3.189 3.313 3.625
+ 44.500 43.875 -3.478 -3.352 3.000 3.313
+ 45.125 44.500 -3.568 -3.478 2.688 3.000
+ 45.750 45.125 -3.623 -3.568 2.375 2.688
+ 46.375 45.750 -3.643 -3.623 2.063 2.375
+ 47.000 46.375 -3.628 -3.643 1.750 2.063
+ 47.625 47.000 -3.580 -3.628 1.438 1.750
+ 48.250 47.625 -3.496 -3.580 1.125 1.438
+ 48.875 48.250 -3.376 -3.496 0.813 1.125
+ 49.500 48.875 -3.220 -3.376 0.500 0.813
+ 50.000 49.500 -3.067 -3.220 0.250 0.500
+ 50.500 50.000 -2.888 -3.067 0.000 0.250
+ 51.104 50.500 -2.636 -2.888 0.000 0.000
+ 51.708 51.104 -2.341 -2.636 0.000 0.000
+ 52.312 51.708 -2.000 -2.341 0.000 0.000
+ 52.865 52.312 -1.643 -2.000 0.000 0.000
+ 53.419 52.865 -1.237 -1.643 0.000 0.000
+ 53.972 53.419 -0.776 -1.237 0.000 0.000
+ 54.525 53.972 -0.250 -0.776 0.000 0.000
+ 54.764 54.525 0.000 -0.250 0.000 0.000
+[End of Data]
+[End of SliceGeometry]
+[strength and Loads]
+[Column Indication]
+CohBottom
+PhiBottom
+Cu
+K0
+PoreOnSurface
+YFrea
+HPoreOnSurface
+VPoreOnSurface
+Weight
+ExternalLoad
+PseudoFactor
+[End of Column Indication]
+[Data]
+ 8.000 20.000 0.000 0.000 0.000 3.940 0.000 -0.000 2.433 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.891 0.000 -0.000 14.799 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.827 0.000 -0.000 24.892 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.763 0.000 -0.000 32.666 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.699 0.000 -0.000 39.050 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.635 0.000 -0.000 44.453 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.571 0.000 -0.000 49.101 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.507 0.000 -0.000 53.136 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.443 0.000 -0.000 56.651 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.408 -0.000 -0.000 4.387 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.380 -0.000 -0.000 47.365 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.328 -0.000 -0.000 47.246 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.276 -0.000 -0.000 46.955 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.104 -0.000 -0.000 59.811 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.813 -0.000 -0.000 58.746 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.521 -0.000 -0.000 57.380 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.229 -0.000 -0.000 55.730 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.938 -0.000 -0.000 53.804 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.646 -0.000 -0.000 51.612 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.354 -0.000 -0.000 49.159 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.063 -0.000 -0.000 46.447 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.771 -0.000 -0.000 43.476 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.479 -0.000 -0.000 40.244 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.188 -0.000 -0.000 36.747 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.104 -0.000 -0.000 32.977 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 23.484 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 20.739 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 22.437 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 20.455 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 18.150 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 14.106 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 11.151 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 7.795 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 3.973 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 0.417 0.000 0.000
+[End of Data]
+[End of Strength and Loads]
+[Stresses]
+[Column Indication]
+TotalStress
+EffectiveStress
+HydrostaticPore
+AanpasPore
+PnLinePore
+ShearStress
+NormalStress
+PreLoadStress
+POP
+LoadStress
+SigmaAlfa
+WaterLoadStress
+TotalPore
+[End of Column Indication]
+[Data]
+ 7.542 7.542 0.000 0.000 0.000 4.634 -7.936 0.000 0.000 0.000 0.000 0.000 0.000
+ 24.784 18.301 6.483 0.000 6.483 7.527 0.834 0.000 0.000 0.000 0.000 0.000 6.483
+ 41.688 23.988 17.700 0.000 17.700 9.669 7.324 0.000 0.000 0.000 0.000 0.000 17.700
+ 54.706 28.512 26.194 0.000 26.194 11.418 12.626 0.000 0.000 0.000 0.000 0.000 26.194
+ 65.397 32.339 33.058 0.000 33.058 12.941 17.242 0.000 0.000 0.000 0.000 0.000 33.058
+ 74.446 35.675 38.771 0.000 38.771 14.310 21.389 0.000 0.000 0.000 0.000 0.000 38.771
+ 82.231 38.632 43.599 0.000 43.599 15.562 25.185 0.000 0.000 0.000 0.000 0.000 43.599
+ 88.988 41.282 47.705 0.000 47.705 16.722 28.701 0.000 0.000 0.000 0.000 0.000 47.705
+ 94.875 43.672 51.203 0.000 51.203 17.807 31.989 0.000 0.000 0.000 0.000 0.000 51.203
+ 97.651 44.730 52.921 0.000 52.921 18.329 33.571 0.000 0.000 0.000 0.000 0.000 52.921
+ 97.654 43.515 54.139 0.000 54.139 13.259 35.924 0.000 0.000 0.000 0.000 0.000 54.139
+ 97.408 41.204 56.204 0.000 56.204 12.939 34.609 0.000 0.000 0.000 0.000 0.000 56.204
+ 96.810 38.829 57.981 0.000 57.981 12.585 33.149 0.000 0.000 0.000 0.000 0.000 57.981
+ 95.698 37.136 58.562 0.000 58.562 12.383 32.318 0.000 0.000 0.000 0.000 0.000 58.562
+ 93.993 36.110 57.884 0.000 57.884 12.335 32.123 0.000 0.000 0.000 0.000 0.000 57.884
+ 91.809 34.996 56.813 0.000 56.813 12.256 31.798 0.000 0.000 0.000 0.000 0.000 56.813
+ 89.167 33.798 55.369 0.000 55.369 12.148 31.352 0.000 0.000 0.000 0.000 0.000 55.369
+ 86.087 32.521 53.566 0.000 53.566 12.012 30.793 0.000 0.000 0.000 0.000 0.000 53.566
+ 82.580 31.165 51.414 0.000 51.414 11.851 30.127 0.000 0.000 0.000 0.000 0.000 51.414
+ 78.654 29.734 48.921 0.000 48.921 11.664 29.357 0.000 0.000 0.000 0.000 0.000 48.921
+ 74.315 28.226 46.088 0.000 46.088 11.452 28.488 0.000 0.000 0.000 0.000 0.000 46.088
+ 69.561 26.644 42.918 0.000 42.918 11.217 27.520 0.000 0.000 0.000 0.000 0.000 42.918
+ 64.391 24.985 39.406 0.000 39.406 10.958 26.454 0.000 0.000 0.000 0.000 0.000 39.406
+ 58.795 23.248 35.547 0.000 35.547 10.676 25.291 0.000 0.000 0.000 0.000 0.000 35.547
+ 52.763 21.432 31.331 0.000 31.331 10.370 24.030 0.000 0.000 0.000 0.000 0.000 31.331
+ 46.968 18.586 28.382 0.000 28.382 9.773 21.576 0.000 0.000 0.000 0.000 0.000 28.382
+ 41.478 14.723 26.755 0.000 26.755 8.880 17.897 0.000 0.000 0.000 0.000 0.000 26.755
+ 37.143 12.501 24.642 0.000 24.642 8.423 16.018 0.000 0.000 0.000 0.000 0.000 24.642
+ 33.861 11.902 21.959 0.000 21.959 8.422 16.011 0.000 0.000 0.000 0.000 0.000 21.959
+ 30.047 11.206 18.841 0.000 18.841 8.408 15.954 0.000 0.000 0.000 0.000 0.000 18.841
+ 25.498 10.084 15.414 0.000 15.414 13.445 18.770 0.000 0.000 0.000 0.000 0.000 15.414
+ 20.156 8.485 11.671 0.000 11.671 13.201 18.031 0.000 0.000 0.000 0.000 0.000 11.671
+ 14.089 6.669 7.420 0.000 7.420 12.415 15.646 0.000 0.000 0.000 0.000 0.000 7.420
+ 7.181 4.602 2.579 0.000 2.579 11.519 12.931 0.000 0.000 0.000 0.000 0.000 2.579
+ 1.750 1.750 0.000 0.000 0.000 10.283 9.185 0.000 0.000 0.000 0.000 0.000 0.000
+[End of Data]
+[End of Stresses]
+[End of Dump]
+
+[Dump]
+[Dump Header]
+[Column Indication]
+Stability factor
+Number of slices
+X-Centrepoint
+Y-Centrepoint
+Radius
+X coordinate left surface
+X coordinate right surface
+Zone number
+Rotated safety
+Rotated angle in radians
+Dump name
+[End of Column Indication]
+[Data]
+ 1.109 34 46.429 6.429 10.071 36.459 54.181 3 1.504 -0.202 Design level
+[End of Data]
+[End Of Dump Header]
+[SliceGeometry]
+[Column Indication]
+xRight
+xLeft
+yBottomRight
+YBottomLeft
+yTopRight
+YTopLeft
+[End of Column Indication]
+[Data]
+ 36.701 36.459 3.818 5.000 5.000 5.000
+ 37.244 36.701 2.296 3.818 5.000 5.000
+ 37.787 37.244 1.256 2.296 5.000 5.000
+ 38.329 37.787 0.442 1.256 5.000 5.000
+ 38.872 38.329 -0.230 0.442 5.000 5.000
+ 39.415 38.872 -0.799 -0.230 5.000 5.000
+ 39.957 39.415 -1.289 -0.799 5.000 5.000
+ 40.500 39.957 -1.713 -1.289 5.000 5.000
+ 40.916 40.500 -2.000 -1.713 4.792 5.000
+ 41.458 40.916 -2.331 -2.000 4.521 4.792
+ 42.000 41.458 -2.617 -2.331 4.250 4.521
+ 42.577 42.000 -2.877 -2.617 3.962 4.250
+ 43.154 42.577 -3.096 -2.877 3.673 3.962
+ 43.731 43.154 -3.275 -3.096 3.385 3.673
+ 44.308 43.731 -3.417 -3.275 3.096 3.385
+ 44.885 44.308 -3.524 -3.417 2.808 3.096
+ 45.462 44.885 -3.596 -3.524 2.519 2.808
+ 46.038 45.462 -3.635 -3.596 2.231 2.519
+ 46.615 46.038 -3.641 -3.635 1.942 2.231
+ 47.192 46.615 -3.614 -3.641 1.654 1.942
+ 47.769 47.192 -3.553 -3.614 1.365 1.654
+ 48.346 47.769 -3.459 -3.553 1.077 1.365
+ 48.923 48.346 -3.329 -3.459 0.788 1.077
+ 49.500 48.923 -3.163 -3.329 0.500 0.788
+ 50.000 49.500 -2.988 -3.163 0.250 0.500
+ 50.500 50.000 -2.783 -2.988 0.000 0.250
+ 50.981 50.500 -2.555 -2.783 0.000 0.000
+ 51.461 50.981 -2.295 -2.555 0.000 0.000
+ 51.942 51.461 -2.000 -2.295 0.000 0.000
+ 52.448 51.942 -1.646 -2.000 0.000 0.000
+ 52.954 52.448 -1.243 -1.646 0.000 0.000
+ 53.461 52.954 -0.781 -1.243 0.000 0.000
+ 53.967 53.461 -0.250 -0.781 0.000 0.000
+ 54.181 53.967 0.000 -0.250 0.000 0.000
+[End of Data]
+[End of SliceGeometry]
+[strength and Loads]
+[Column Indication]
+CohBottom
+PhiBottom
+Cu
+K0
+PoreOnSurface
+YFrea
+HPoreOnSurface
+VPoreOnSurface
+Weight
+ExternalLoad
+PseudoFactor
+[End of Column Indication]
+[Data]
+ 8.000 20.000 0.000 0.000 0.000 3.831 0.000 -0.000 2.007 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.789 0.000 -0.000 14.763 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.730 0.000 -0.000 24.492 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.672 0.000 -0.000 31.534 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.614 0.000 -0.000 37.179 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.556 0.000 -0.000 41.894 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.498 0.000 -0.000 45.916 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.440 0.000 -0.000 49.388 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.388 -0.000 -0.000 39.289 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.337 -0.000 -0.000 51.605 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.279 -0.000 -0.000 51.554 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.115 -0.000 -0.000 54.488 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.846 -0.000 -0.000 53.815 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.577 -0.000 -0.000 52.861 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.308 -0.000 -0.000 51.644 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.038 -0.000 -0.000 50.176 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.769 -0.000 -0.000 48.467 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.500 -0.000 -0.000 46.523 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.231 -0.000 -0.000 44.348 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.962 -0.000 -0.000 41.944 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.692 -0.000 -0.000 39.310 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.423 -0.000 -0.000 36.443 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.154 -0.000 -0.000 33.337 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.115 -0.000 -0.000 29.984 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 23.079 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 20.190 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 17.314 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 15.908 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 14.306 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 12.925 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 10.240 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 7.175 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 3.656 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 0.375 0.000 0.000
+[End of Data]
+[End of Strength and Loads]
+[Stresses]
+[Column Indication]
+TotalStress
+EffectiveStress
+HydrostaticPore
+AanpasPore
+PnLinePore
+ShearStress
+NormalStress
+PreLoadStress
+POP
+LoadStress
+SigmaAlfa
+WaterLoadStress
+TotalPore
+[End of Column Indication]
+[Data]
+ 8.276 8.276 0.000 0.000 0.000 3.820 -10.349 0.000 0.000 0.000 0.000 0.000 0.000
+ 27.205 20.026 7.179 0.000 7.179 7.181 -0.113 0.000 0.000 0.000 0.000 0.000 7.179
+ 45.135 25.962 19.173 0.000 19.173 9.664 7.448 0.000 0.000 0.000 0.000 0.000 19.173
+ 58.111 30.416 27.695 0.000 27.695 11.528 13.122 0.000 0.000 0.000 0.000 0.000 27.695
+ 68.513 34.099 34.413 0.000 34.413 13.093 17.889 0.000 0.000 0.000 0.000 0.000 34.413
+ 77.202 37.270 39.931 0.000 39.931 14.471 22.086 0.000 0.000 0.000 0.000 0.000 39.931
+ 84.615 40.059 44.556 0.000 44.556 15.717 25.878 0.000 0.000 0.000 0.000 0.000 44.556
+ 91.012 42.544 48.468 0.000 48.468 16.861 29.361 0.000 0.000 0.000 0.000 0.000 48.468
+ 94.537 43.084 51.453 0.000 51.453 17.418 31.057 0.000 0.000 0.000 0.000 0.000 51.453
+ 95.177 41.198 53.979 0.000 53.979 12.612 33.505 0.000 0.000 0.000 0.000 0.000 53.979
+ 95.084 38.648 56.436 0.000 56.436 12.287 32.161 0.000 0.000 0.000 0.000 0.000 56.436
+ 94.446 36.935 57.511 0.000 57.511 12.119 31.467 0.000 0.000 0.000 0.000 0.000 57.511
+ 93.279 36.062 57.218 0.000 57.218 12.121 31.475 0.000 0.000 0.000 0.000 0.000 57.218
+ 91.626 35.100 56.526 0.000 56.526 12.090 31.345 0.000 0.000 0.000 0.000 0.000 56.526
+ 89.516 34.054 55.462 0.000 55.462 12.028 31.090 0.000 0.000 0.000 0.000 0.000 55.462
+ 86.972 32.930 54.042 0.000 54.042 11.939 30.720 0.000 0.000 0.000 0.000 0.000 54.042
+ 84.009 31.729 52.280 0.000 52.280 11.823 30.243 0.000 0.000 0.000 0.000 0.000 52.280
+ 80.640 30.454 50.186 0.000 50.186 11.683 29.664 0.000 0.000 0.000 0.000 0.000 50.186
+ 76.870 29.105 47.765 0.000 47.765 11.520 28.989 0.000 0.000 0.000 0.000 0.000 47.765
+ 72.703 27.685 45.018 0.000 45.018 11.334 28.220 0.000 0.000 0.000 0.000 0.000 45.018
+ 68.137 26.191 41.946 0.000 41.946 11.126 27.360 0.000 0.000 0.000 0.000 0.000 41.946
+ 63.167 24.624 38.543 0.000 38.543 10.897 26.411 0.000 0.000 0.000 0.000 0.000 38.543
+ 57.784 22.981 34.803 0.000 34.803 10.646 25.372 0.000 0.000 0.000 0.000 0.000 34.803
+ 51.972 21.260 30.712 0.000 30.712 10.373 24.244 0.000 0.000 0.000 0.000 0.000 30.712
+ 46.159 18.438 27.720 0.000 27.720 9.797 21.862 0.000 0.000 0.000 0.000 0.000 27.720
+ 40.379 14.522 25.857 0.000 25.857 8.906 18.176 0.000 0.000 0.000 0.000 0.000 25.857
+ 36.032 12.298 23.734 0.000 23.734 8.453 16.305 0.000 0.000 0.000 0.000 0.000 23.734
+ 33.106 11.764 21.341 0.000 21.341 8.463 16.345 0.000 0.000 0.000 0.000 0.000 21.341
+ 29.773 11.156 18.617 0.000 18.617 8.467 16.362 0.000 0.000 0.000 0.000 0.000 18.617
+ 25.523 10.091 15.432 0.000 15.432 13.669 19.643 0.000 0.000 0.000 0.000 0.000 15.432
+ 20.222 8.505 11.717 0.000 11.717 13.135 18.016 0.000 0.000 0.000 0.000 0.000 11.717
+ 14.168 6.693 7.475 0.000 7.475 12.354 15.639 0.000 0.000 0.000 0.000 0.000 7.475
+ 7.219 4.613 2.606 0.000 2.606 11.458 12.910 0.000 0.000 0.000 0.000 0.000 2.606
+ 1.750 1.750 0.000 0.000 0.000 10.225 9.154 0.000 0.000 0.000 0.000 0.000 0.000
+[End of Data]
+[End of Stresses]
+[End of Dump]
+
+[Dump]
+[Dump Header]
+[Column Indication]
+Stability factor
+Number of slices
+X-Centrepoint
+Y-Centrepoint
+Radius
+X coordinate left surface
+X coordinate right surface
+Zone number
+Dump name
+[End of Column Indication]
+[Data]
+ 1.162 34 46.429 7.714 10.500 36.285 53.552 4 Design level
+[End of Data]
+[End Of Dump Header]
+[SliceGeometry]
+[Column Indication]
+xRight
+xLeft
+yBottomRight
+YBottomLeft
+yTopRight
+YTopLeft
+[End of Column Indication]
+[Data]
+ 36.677 36.285 3.820 5.000 5.000 5.000
+ 37.223 36.677 2.663 3.820 5.000 5.000
+ 37.770 37.223 1.775 2.663 5.000 5.000
+ 38.316 37.770 1.049 1.775 5.000 5.000
+ 38.862 38.316 0.435 1.049 5.000 5.000
+ 39.408 38.862 -0.093 0.435 5.000 5.000
+ 39.954 39.408 -0.552 -0.093 5.000 5.000
+ 40.500 39.954 -0.952 -0.552 5.000 5.000
+ 41.000 40.500 -1.274 -0.952 4.750 5.000
+ 41.500 41.000 -1.557 -1.274 4.500 4.750
+ 42.000 41.500 -1.806 -1.557 4.250 4.500
+ 42.443 42.000 -2.000 -1.806 4.028 4.250
+ 42.986 42.443 -2.205 -2.000 3.757 4.028
+ 43.529 42.986 -2.377 -2.205 3.486 3.757
+ 44.072 43.529 -2.518 -2.377 3.214 3.486
+ 44.615 44.072 -2.628 -2.518 2.943 3.214
+ 45.157 44.615 -2.708 -2.628 2.671 2.943
+ 45.700 45.157 -2.760 -2.708 2.400 2.671
+ 46.243 45.700 -2.784 -2.760 2.128 2.400
+ 46.786 46.243 -2.780 -2.784 1.857 2.128
+ 47.329 46.786 -2.747 -2.780 1.586 1.857
+ 47.872 47.329 -2.686 -2.747 1.314 1.586
+ 48.414 47.872 -2.596 -2.686 1.043 1.314
+ 48.957 48.414 -2.477 -2.596 0.771 1.043
+ 49.500 48.957 -2.326 -2.477 0.500 0.771
+ 49.957 49.500 -2.175 -2.326 0.272 0.500
+ 50.414 49.957 -2.000 -2.175 0.043 0.272
+ 50.500 50.414 -1.964 -2.000 0.000 0.043
+ 51.054 50.500 -1.712 -1.964 0.000 0.000
+ 51.608 51.054 -1.419 -1.712 0.000 0.000
+ 52.163 51.608 -1.082 -1.419 0.000 0.000
+ 52.717 52.163 -0.694 -1.082 0.000 0.000
+ 53.271 52.717 -0.250 -0.694 0.000 0.000
+ 53.552 53.271 0.000 -0.250 0.000 0.000
+[End of Data]
+[End of SliceGeometry]
+[strength and Loads]
+[Column Indication]
+CohBottom
+PhiBottom
+Cu
+K0
+PoreOnSurface
+YFrea
+HPoreOnSurface
+VPoreOnSurface
+Weight
+ExternalLoad
+PseudoFactor
+[End of Column Indication]
+[Data]
+ 8.000 20.000 0.000 0.000 0.000 3.841 0.000 -0.000 3.236 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.791 0.000 -0.000 13.443 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.733 0.000 -0.000 21.260 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.674 0.000 -0.000 27.431 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.616 0.000 -0.000 32.556 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.557 0.000 -0.000 36.922 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.498 0.000 -0.000 40.693 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.440 0.000 -0.000 43.975 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.384 -0.000 -0.000 41.914 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.330 -0.000 -0.000 42.282 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.277 -0.000 -0.000 42.396 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.147 -0.000 -0.000 37.497 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.916 -0.000 -0.000 45.450 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.663 -0.000 -0.000 44.617 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.410 -0.000 -0.000 43.572 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.157 -0.000 -0.000 42.325 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.903 -0.000 -0.000 40.883 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.650 -0.000 -0.000 39.253 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.397 -0.000 -0.000 37.436 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.143 -0.000 -0.000 35.436 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.890 -0.000 -0.000 33.253 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.637 -0.000 -0.000 30.886 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.383 -0.000 -0.000 28.332 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.130 -0.000 -0.000 25.587 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.123 -0.000 -0.000 22.646 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 16.637 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 14.281 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 2.416 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 14.262 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 12.147 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 9.702 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 6.891 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 3.664 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 0.491 0.000 0.000
+[End of Data]
+[End of Strength and Loads]
+[Stresses]
+[Column Indication]
+TotalStress
+EffectiveStress
+HydrostaticPore
+AanpasPore
+PnLinePore
+ShearStress
+NormalStress
+PreLoadStress
+POP
+LoadStress
+SigmaAlfa
+WaterLoadStress
+TotalPore
+[End of Column Indication]
+[Data]
+ 8.258 8.258 0.000 0.000 0.000 4.877 -6.423 0.000 0.000 0.000 0.000 0.000 0.000
+ 24.617 19.227 5.389 0.000 5.389 7.761 2.780 0.000 0.000 0.000 0.000 0.000 5.389
+ 38.931 24.086 14.846 0.000 14.846 9.566 8.536 0.000 0.000 0.000 0.000 0.000 14.846
+ 50.232 28.042 22.190 0.000 22.190 11.065 13.318 0.000 0.000 0.000 0.000 0.000 22.190
+ 59.616 31.424 28.192 0.000 28.192 12.378 17.507 0.000 0.000 0.000 0.000 0.000 28.192
+ 67.611 34.391 33.220 0.000 33.220 13.561 21.279 0.000 0.000 0.000 0.000 0.000 33.220
+ 74.516 37.032 37.485 0.000 37.485 14.644 24.736 0.000 0.000 0.000 0.000 0.000 37.485
+ 80.526 39.404 41.122 0.000 41.122 15.649 27.941 0.000 0.000 0.000 0.000 0.000 41.122
+ 83.828 39.716 44.112 0.000 44.112 16.094 29.362 0.000 0.000 0.000 0.000 0.000 44.112
+ 84.565 38.009 46.555 0.000 46.555 15.966 28.953 0.000 0.000 0.000 0.000 0.000 46.555
+ 84.793 36.151 48.642 0.000 48.642 15.762 28.302 0.000 0.000 0.000 0.000 0.000 48.642
+ 84.591 35.054 49.537 0.000 49.537 15.723 28.177 0.000 0.000 0.000 0.000 0.000 49.537
+ 83.729 34.491 49.238 0.000 49.238 11.281 30.224 0.000 0.000 0.000 0.000 0.000 49.238
+ 82.194 33.590 48.604 0.000 48.604 11.236 30.029 0.000 0.000 0.000 0.000 0.000 48.604
+ 80.269 32.617 47.651 0.000 47.651 11.167 29.729 0.000 0.000 0.000 0.000 0.000 47.651
+ 77.972 31.577 46.395 0.000 46.395 11.075 29.332 0.000 0.000 0.000 0.000 0.000 46.395
+ 75.316 30.471 44.845 0.000 44.845 10.962 28.842 0.000 0.000 0.000 0.000 0.000 44.845
+ 72.312 29.301 43.010 0.000 43.010 10.829 28.265 0.000 0.000 0.000 0.000 0.000 43.010
+ 68.966 28.069 40.896 0.000 40.896 10.677 27.604 0.000 0.000 0.000 0.000 0.000 40.896
+ 65.281 26.776 38.505 0.000 38.505 10.505 26.862 0.000 0.000 0.000 0.000 0.000 38.505
+ 61.259 25.420 35.839 0.000 35.839 10.316 26.039 0.000 0.000 0.000 0.000 0.000 35.839
+ 56.898 24.003 32.895 0.000 32.895 10.108 25.139 0.000 0.000 0.000 0.000 0.000 32.895
+ 52.193 22.523 29.670 0.000 29.670 9.882 24.159 0.000 0.000 0.000 0.000 0.000 29.670
+ 47.137 20.979 26.158 0.000 26.158 9.638 23.102 0.000 0.000 0.000 0.000 0.000 26.158
+ 41.719 19.369 22.349 0.000 22.349 9.375 21.964 0.000 0.000 0.000 0.000 0.000 22.349
+ 36.410 16.782 19.628 0.000 19.628 8.856 19.715 0.000 0.000 0.000 0.000 0.000 19.628
+ 31.253 13.226 18.027 0.000 18.027 8.073 16.320 0.000 0.000 0.000 0.000 0.000 18.027
+ 28.051 11.059 16.992 0.000 16.992 11.908 16.006 0.000 0.000 0.000 0.000 0.000 16.992
+ 25.733 10.154 15.579 0.000 15.579 11.750 15.503 0.000 0.000 0.000 0.000 0.000 15.579
+ 21.917 9.012 12.905 0.000 12.905 11.643 15.164 0.000 0.000 0.000 0.000 0.000 12.905
+ 17.506 7.692 9.814 0.000 9.814 11.495 14.689 0.000 0.000 0.000 0.000 0.000 9.814
+ 12.434 6.174 6.260 0.000 6.260 11.301 14.070 0.000 0.000 0.000 0.000 0.000 6.260
+ 6.611 4.431 2.180 0.000 2.180 10.756 12.331 0.000 0.000 0.000 0.000 0.000 2.180
+ 1.750 1.750 0.000 0.000 0.000 9.664 8.848 0.000 0.000 0.000 0.000 0.000 0.000
+[End of Data]
+[End of Stresses]
+[End of Dump]
+
+[Dump]
+[Dump Header]
+[Column Indication]
+Stability factor
+Number of slices
+X-Centrepoint
+Y-Centrepoint
+Radius
+X coordinate left surface
+X coordinate right surface
+Zone number
+Dump name
+[End of Column Indication]
+[Data]
+ 1.104 35 46.429 7.714 11.357 35.401 54.764 5 Design level
+[End of Data]
+[End Of Dump Header]
+[SliceGeometry]
+[Column Indication]
+xRight
+xLeft
+yBottomRight
+YBottomLeft
+yTopRight
+YTopLeft
+[End of Column Indication]
+[Data]
+ 35.723 35.401 3.923 5.000 5.000 5.000
+ 36.320 35.723 2.537 3.923 5.000 5.000
+ 36.917 36.320 1.508 2.537 5.000 5.000
+ 37.514 36.917 0.677 1.508 5.000 5.000
+ 38.112 37.514 -0.020 0.677 5.000 5.000
+ 38.709 38.112 -0.616 -0.020 5.000 5.000
+ 39.306 38.709 -1.132 -0.616 5.000 5.000
+ 39.903 39.306 -1.581 -1.132 5.000 5.000
+ 40.500 39.903 -1.973 -1.581 5.000 5.000
+ 40.545 40.500 -2.000 -1.973 4.978 5.000
+ 41.030 40.545 -2.278 -2.000 4.735 4.978
+ 41.515 41.030 -2.525 -2.278 4.493 4.735
+ 42.000 41.515 -2.744 -2.525 4.250 4.493
+ 42.625 42.000 -2.987 -2.744 3.938 4.250
+ 43.250 42.625 -3.189 -2.987 3.625 3.938
+ 43.875 43.250 -3.352 -3.189 3.313 3.625
+ 44.500 43.875 -3.478 -3.352 3.000 3.313
+ 45.125 44.500 -3.568 -3.478 2.688 3.000
+ 45.750 45.125 -3.623 -3.568 2.375 2.688
+ 46.375 45.750 -3.643 -3.623 2.063 2.375
+ 47.000 46.375 -3.628 -3.643 1.750 2.063
+ 47.625 47.000 -3.580 -3.628 1.438 1.750
+ 48.250 47.625 -3.496 -3.580 1.125 1.438
+ 48.875 48.250 -3.376 -3.496 0.813 1.125
+ 49.500 48.875 -3.220 -3.376 0.500 0.813
+ 50.000 49.500 -3.067 -3.220 0.250 0.500
+ 50.500 50.000 -2.888 -3.067 0.000 0.250
+ 51.104 50.500 -2.636 -2.888 0.000 0.000
+ 51.708 51.104 -2.341 -2.636 0.000 0.000
+ 52.312 51.708 -2.000 -2.341 0.000 0.000
+ 52.865 52.312 -1.643 -2.000 0.000 0.000
+ 53.419 52.865 -1.237 -1.643 0.000 0.000
+ 53.972 53.419 -0.776 -1.237 0.000 0.000
+ 54.525 53.972 -0.250 -0.776 0.000 0.000
+ 54.764 54.525 0.000 -0.250 0.000 0.000
+[End of Data]
+[End of SliceGeometry]
+[strength and Loads]
+[Column Indication]
+CohBottom
+PhiBottom
+Cu
+K0
+PoreOnSurface
+YFrea
+HPoreOnSurface
+VPoreOnSurface
+Weight
+ExternalLoad
+PseudoFactor
+[End of Column Indication]
+[Data]
+ 8.000 20.000 0.000 0.000 0.000 3.940 0.000 -0.000 2.433 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.891 0.000 -0.000 14.799 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.827 0.000 -0.000 24.892 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.763 0.000 -0.000 32.666 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.699 0.000 -0.000 39.050 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.635 0.000 -0.000 44.453 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.571 0.000 -0.000 49.101 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.507 0.000 -0.000 53.136 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.443 0.000 -0.000 56.651 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.408 -0.000 -0.000 4.387 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.380 -0.000 -0.000 47.365 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.328 -0.000 -0.000 47.246 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.276 -0.000 -0.000 46.955 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 3.104 -0.000 -0.000 59.811 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.813 -0.000 -0.000 58.746 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.521 -0.000 -0.000 57.380 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.229 -0.000 -0.000 55.730 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.938 -0.000 -0.000 53.804 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.646 -0.000 -0.000 51.612 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.354 -0.000 -0.000 49.159 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.063 -0.000 -0.000 46.447 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.771 -0.000 -0.000 43.476 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.479 -0.000 -0.000 40.244 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.188 -0.000 -0.000 36.747 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.104 -0.000 -0.000 32.977 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 23.484 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 20.739 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 22.437 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 20.455 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 0.000 -0.000 18.150 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 14.106 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 11.151 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 7.795 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 3.973 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 0.417 0.000 0.000
+[End of Data]
+[End of Strength and Loads]
+[Stresses]
+[Column Indication]
+TotalStress
+EffectiveStress
+HydrostaticPore
+AanpasPore
+PnLinePore
+ShearStress
+NormalStress
+PreLoadStress
+POP
+LoadStress
+SigmaAlfa
+WaterLoadStress
+TotalPore
+[End of Column Indication]
+[Data]
+ 7.542 7.542 0.000 0.000 0.000 4.634 -7.936 0.000 0.000 0.000 0.000 0.000 0.000
+ 24.784 18.301 6.483 0.000 6.483 7.527 0.834 0.000 0.000 0.000 0.000 0.000 6.483
+ 41.688 23.988 17.700 0.000 17.700 9.669 7.324 0.000 0.000 0.000 0.000 0.000 17.700
+ 54.706 28.512 26.194 0.000 26.194 11.418 12.626 0.000 0.000 0.000 0.000 0.000 26.194
+ 65.397 32.339 33.058 0.000 33.058 12.941 17.242 0.000 0.000 0.000 0.000 0.000 33.058
+ 74.446 35.675 38.771 0.000 38.771 14.310 21.389 0.000 0.000 0.000 0.000 0.000 38.771
+ 82.231 38.632 43.599 0.000 43.599 15.562 25.185 0.000 0.000 0.000 0.000 0.000 43.599
+ 88.988 41.282 47.705 0.000 47.705 16.722 28.701 0.000 0.000 0.000 0.000 0.000 47.705
+ 94.875 43.672 51.203 0.000 51.203 17.807 31.989 0.000 0.000 0.000 0.000 0.000 51.203
+ 97.651 44.730 52.921 0.000 52.921 18.329 33.571 0.000 0.000 0.000 0.000 0.000 52.921
+ 97.654 43.515 54.139 0.000 54.139 13.259 35.924 0.000 0.000 0.000 0.000 0.000 54.139
+ 97.408 41.204 56.204 0.000 56.204 12.939 34.609 0.000 0.000 0.000 0.000 0.000 56.204
+ 96.810 38.829 57.981 0.000 57.981 12.585 33.149 0.000 0.000 0.000 0.000 0.000 57.981
+ 95.698 37.136 58.562 0.000 58.562 12.383 32.318 0.000 0.000 0.000 0.000 0.000 58.562
+ 93.993 36.110 57.884 0.000 57.884 12.335 32.123 0.000 0.000 0.000 0.000 0.000 57.884
+ 91.809 34.996 56.813 0.000 56.813 12.256 31.798 0.000 0.000 0.000 0.000 0.000 56.813
+ 89.167 33.798 55.369 0.000 55.369 12.148 31.352 0.000 0.000 0.000 0.000 0.000 55.369
+ 86.087 32.521 53.566 0.000 53.566 12.012 30.793 0.000 0.000 0.000 0.000 0.000 53.566
+ 82.580 31.165 51.414 0.000 51.414 11.851 30.127 0.000 0.000 0.000 0.000 0.000 51.414
+ 78.654 29.734 48.921 0.000 48.921 11.664 29.357 0.000 0.000 0.000 0.000 0.000 48.921
+ 74.315 28.226 46.088 0.000 46.088 11.452 28.488 0.000 0.000 0.000 0.000 0.000 46.088
+ 69.561 26.644 42.918 0.000 42.918 11.217 27.520 0.000 0.000 0.000 0.000 0.000 42.918
+ 64.391 24.985 39.406 0.000 39.406 10.958 26.454 0.000 0.000 0.000 0.000 0.000 39.406
+ 58.795 23.248 35.547 0.000 35.547 10.676 25.291 0.000 0.000 0.000 0.000 0.000 35.547
+ 52.763 21.432 31.331 0.000 31.331 10.370 24.030 0.000 0.000 0.000 0.000 0.000 31.331
+ 46.968 18.586 28.382 0.000 28.382 9.773 21.576 0.000 0.000 0.000 0.000 0.000 28.382
+ 41.478 14.723 26.755 0.000 26.755 8.880 17.897 0.000 0.000 0.000 0.000 0.000 26.755
+ 37.143 12.501 24.642 0.000 24.642 8.423 16.018 0.000 0.000 0.000 0.000 0.000 24.642
+ 33.861 11.902 21.959 0.000 21.959 8.422 16.011 0.000 0.000 0.000 0.000 0.000 21.959
+ 30.047 11.206 18.841 0.000 18.841 8.408 15.954 0.000 0.000 0.000 0.000 0.000 18.841
+ 25.498 10.084 15.414 0.000 15.414 13.445 18.770 0.000 0.000 0.000 0.000 0.000 15.414
+ 20.156 8.485 11.671 0.000 11.671 13.201 18.031 0.000 0.000 0.000 0.000 0.000 11.671
+ 14.089 6.669 7.420 0.000 7.420 12.415 15.646 0.000 0.000 0.000 0.000 0.000 7.420
+ 7.181 4.602 2.579 0.000 2.579 11.519 12.931 0.000 0.000 0.000 0.000 0.000 2.579
+ 1.750 1.750 0.000 0.000 0.000 10.283 9.185 0.000 0.000 0.000 0.000 0.000 0.000
+[End of Data]
+[End of Stresses]
+[End of Dump]
+
+[Dump]
+[Dump Header]
+[Column Indication]
+Stability factor
+Number of slices
+X-Centrepoint
+Y-Centrepoint
+Radius
+X coordinate left surface
+X coordinate right surface
+Zone number
+Dump name
+[End of Column Indication]
+[Data]
+ 1.162 34 46.429 7.714 10.500 36.285 53.552 6 Design level
+[End of Data]
+[End Of Dump Header]
+[SliceGeometry]
+[Column Indication]
+xRight
+xLeft
+yBottomRight
+YBottomLeft
+yTopRight
+YTopLeft
+[End of Column Indication]
+[Data]
+ 36.677 36.285 3.820 5.000 5.000 5.000
+ 37.223 36.677 2.663 3.820 5.000 5.000
+ 37.770 37.223 1.775 2.663 5.000 5.000
+ 38.316 37.770 1.049 1.775 5.000 5.000
+ 38.862 38.316 0.435 1.049 5.000 5.000
+ 39.408 38.862 -0.093 0.435 5.000 5.000
+ 39.954 39.408 -0.552 -0.093 5.000 5.000
+ 40.500 39.954 -0.952 -0.552 5.000 5.000
+ 41.000 40.500 -1.274 -0.952 4.750 5.000
+ 41.500 41.000 -1.557 -1.274 4.500 4.750
+ 42.000 41.500 -1.806 -1.557 4.250 4.500
+ 42.443 42.000 -2.000 -1.806 4.028 4.250
+ 42.986 42.443 -2.205 -2.000 3.757 4.028
+ 43.529 42.986 -2.377 -2.205 3.486 3.757
+ 44.072 43.529 -2.518 -2.377 3.214 3.486
+ 44.615 44.072 -2.628 -2.518 2.943 3.214
+ 45.157 44.615 -2.708 -2.628 2.671 2.943
+ 45.700 45.157 -2.760 -2.708 2.400 2.671
+ 46.243 45.700 -2.784 -2.760 2.128 2.400
+ 46.786 46.243 -2.780 -2.784 1.857 2.128
+ 47.329 46.786 -2.747 -2.780 1.586 1.857
+ 47.872 47.329 -2.686 -2.747 1.314 1.586
+ 48.414 47.872 -2.596 -2.686 1.043 1.314
+ 48.957 48.414 -2.477 -2.596 0.771 1.043
+ 49.500 48.957 -2.326 -2.477 0.500 0.771
+ 49.957 49.500 -2.175 -2.326 0.272 0.500
+ 50.414 49.957 -2.000 -2.175 0.043 0.272
+ 50.500 50.414 -1.964 -2.000 0.000 0.043
+ 51.054 50.500 -1.712 -1.964 0.000 0.000
+ 51.608 51.054 -1.419 -1.712 0.000 0.000
+ 52.163 51.608 -1.082 -1.419 0.000 0.000
+ 52.717 52.163 -0.694 -1.082 0.000 0.000
+ 53.271 52.717 -0.250 -0.694 0.000 0.000
+ 53.552 53.271 0.000 -0.250 0.000 0.000
+[End of Data]
+[End of SliceGeometry]
+[strength and Loads]
+[Column Indication]
+CohBottom
+PhiBottom
+Cu
+K0
+PoreOnSurface
+YFrea
+HPoreOnSurface
+VPoreOnSurface
+Weight
+ExternalLoad
+PseudoFactor
+[End of Column Indication]
+[Data]
+ 8.000 20.000 0.000 0.000 0.000 3.841 0.000 -0.000 3.236 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.791 0.000 -0.000 13.443 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.733 0.000 -0.000 21.260 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.674 0.000 -0.000 27.431 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.616 0.000 -0.000 32.556 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.557 0.000 -0.000 36.922 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.498 0.000 -0.000 40.693 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.440 0.000 -0.000 43.975 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.384 -0.000 -0.000 41.914 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.330 -0.000 -0.000 42.282 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.277 -0.000 -0.000 42.396 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 3.147 -0.000 -0.000 37.497 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.916 -0.000 -0.000 45.450 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.663 -0.000 -0.000 44.617 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.410 -0.000 -0.000 43.572 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 2.157 -0.000 -0.000 42.325 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.903 -0.000 -0.000 40.883 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.650 -0.000 -0.000 39.253 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.397 -0.000 -0.000 37.436 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 1.143 -0.000 -0.000 35.436 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.890 -0.000 -0.000 33.253 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.637 -0.000 -0.000 30.886 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.383 -0.000 -0.000 28.332 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 0.130 -0.000 -0.000 25.587 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.123 -0.000 -0.000 22.646 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 16.637 0.000 0.000
+ 5.000 15.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 14.281 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 -0.000 -0.000 2.416 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 14.262 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 12.147 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 9.702 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 6.891 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 3.664 0.000 0.000
+ 8.000 20.000 0.000 0.000 0.000 -0.250 0.000 -0.000 0.491 0.000 0.000
+[End of Data]
+[End of Strength and Loads]
+[Stresses]
+[Column Indication]
+TotalStress
+EffectiveStress
+HydrostaticPore
+AanpasPore
+PnLinePore
+ShearStress
+NormalStress
+PreLoadStress
+POP
+LoadStress
+SigmaAlfa
+WaterLoadStress
+TotalPore
+[End of Column Indication]
+[Data]
+ 8.258 8.258 0.000 0.000 0.000 4.877 -6.423 0.000 0.000 0.000 0.000 0.000 0.000
+ 24.617 19.227 5.389 0.000 5.389 7.761 2.780 0.000 0.000 0.000 0.000 0.000 5.389
+ 38.931 24.086 14.846 0.000 14.846 9.566 8.536 0.000 0.000 0.000 0.000 0.000 14.846
+ 50.232 28.042 22.190 0.000 22.190 11.065 13.318 0.000 0.000 0.000 0.000 0.000 22.190
+ 59.616 31.424 28.192 0.000 28.192 12.378 17.507 0.000 0.000 0.000 0.000 0.000 28.192
+ 67.611 34.391 33.220 0.000 33.220 13.561 21.279 0.000 0.000 0.000 0.000 0.000 33.220
+ 74.516 37.032 37.485 0.000 37.485 14.644 24.736 0.000 0.000 0.000 0.000 0.000 37.485
+ 80.526 39.404 41.122 0.000 41.122 15.649 27.941 0.000 0.000 0.000 0.000 0.000 41.122
+ 83.828 39.716 44.112 0.000 44.112 16.094 29.362 0.000 0.000 0.000 0.000 0.000 44.112
+ 84.565 38.009 46.555 0.000 46.555 15.966 28.953 0.000 0.000 0.000 0.000 0.000 46.555
+ 84.793 36.151 48.642 0.000 48.642 15.762 28.302 0.000 0.000 0.000 0.000 0.000 48.642
+ 84.591 35.054 49.537 0.000 49.537 15.723 28.177 0.000 0.000 0.000 0.000 0.000 49.537
+ 83.729 34.491 49.238 0.000 49.238 11.281 30.224 0.000 0.000 0.000 0.000 0.000 49.238
+ 82.194 33.590 48.604 0.000 48.604 11.236 30.029 0.000 0.000 0.000 0.000 0.000 48.604
+ 80.269 32.617 47.651 0.000 47.651 11.167 29.729 0.000 0.000 0.000 0.000 0.000 47.651
+ 77.972 31.577 46.395 0.000 46.395 11.075 29.332 0.000 0.000 0.000 0.000 0.000 46.395
+ 75.316 30.471 44.845 0.000 44.845 10.962 28.842 0.000 0.000 0.000 0.000 0.000 44.845
+ 72.312 29.301 43.010 0.000 43.010 10.829 28.265 0.000 0.000 0.000 0.000 0.000 43.010
+ 68.966 28.069 40.896 0.000 40.896 10.677 27.604 0.000 0.000 0.000 0.000 0.000 40.896
+ 65.281 26.776 38.505 0.000 38.505 10.505 26.862 0.000 0.000 0.000 0.000 0.000 38.505
+ 61.259 25.420 35.839 0.000 35.839 10.316 26.039 0.000 0.000 0.000 0.000 0.000 35.839
+ 56.898 24.003 32.895 0.000 32.895 10.108 25.139 0.000 0.000 0.000 0.000 0.000 32.895
+ 52.193 22.523 29.670 0.000 29.670 9.882 24.159 0.000 0.000 0.000 0.000 0.000 29.670
+ 47.137 20.979 26.158 0.000 26.158 9.638 23.102 0.000 0.000 0.000 0.000 0.000 26.158
+ 41.719 19.369 22.349 0.000 22.349 9.375 21.964 0.000 0.000 0.000 0.000 0.000 22.349
+ 36.410 16.782 19.628 0.000 19.628 8.856 19.715 0.000 0.000 0.000 0.000 0.000 19.628
+ 31.253 13.226 18.027 0.000 18.027 8.073 16.320 0.000 0.000 0.000 0.000 0.000 18.027
+ 28.051 11.059 16.992 0.000 16.992 11.908 16.006 0.000 0.000 0.000 0.000 0.000 16.992
+ 25.733 10.154 15.579 0.000 15.579 11.750 15.503 0.000 0.000 0.000 0.000 0.000 15.579
+ 21.917 9.012 12.905 0.000 12.905 11.643 15.164 0.000 0.000 0.000 0.000 0.000 12.905
+ 17.506 7.692 9.814 0.000 9.814 11.495 14.689 0.000 0.000 0.000 0.000 0.000 9.814
+ 12.434 6.174 6.260 0.000 6.260 11.301 14.070 0.000 0.000 0.000 0.000 0.000 6.260
+ 6.611 4.431 2.180 0.000 2.180 10.756 12.331 0.000 0.000 0.000 0.000 0.000 2.180
+ 1.750 1.750 0.000 0.000 0.000 9.664 8.848 0.000 0.000 0.000 0.000 0.000 0.000
+[End of Data]
+[End of Stresses]
+[End of Dump]
+
+[CALCULATION TIME]
+00:00:00
+[END OF CALCULATION TIME]
+
+[End of Dump File]
Index: dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.nl-NL.resx
===================================================================
diff -u -r411 -r421
--- dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.nl-NL.resx (.../Resources.nl-NL.resx) (revision 411)
+++ dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.nl-NL.resx (.../Resources.nl-NL.resx) (revision 421)
@@ -127,14 +127,17 @@
Project '{0}' niet gevonden
- Kon geen veiligheidsfactor afleiden
+ Kan geen veiligheidsfactor afleiden
Project filenaam '{0}' is niet geldig
Projectfile '{0}' niet gevonden
+
+ Kan DGeoStability uitvoerfile niet lezen omdat het geen geldige inhoud heeft
+
Geen geldige berekening uitgevoerd
Index: dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.Designer.cs
===================================================================
diff -u -r411 -r421
--- dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 411)
+++ dam failuremechanisms/damMacroStability/trunk/src/Deltares.DamMacroStability.Calculator/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 421)
@@ -115,6 +115,15 @@
}
///
+ /// Looks up a localized string similar to Could not read DGeoStability output file because it has no valid content.
+ ///
+ internal static string DGeoStabilityResultReader_GetBeta_OutputFileHasNoContent {
+ get {
+ return ResourceManager.GetString("DGeoStabilityResultReader_GetBeta_OutputFileHasNoContent", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to No valid calculation performed.
///
internal static string DGeoStabilityResultReader_ParseResultsFromOutputFile_No_valid_calculation_performed {