From 4a03f7dffa98ebf4b7f28b5a0ffd08cea153160e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Sun, 15 Jan 2023 22:33:08 +0100 Subject: [PATCH 01/58] be consistent with Exact_integer --- .../CGAL/Number_types/internal/Exact_type_selector.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index b8263c891f6..cdc3aea33df 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -93,8 +93,12 @@ struct Exact_ring_selector : Exact_field_selector < T > { }; template <> struct Exact_ring_selector -#ifdef CGAL_HAS_MPZF +#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) +{ typedef boost::multiprecision::cpp_int Type; }; +#elif CGAL_HAS_MPZF { typedef Mpzf Type; }; + #elif defined(CGAL_USE_BOOST_MP) +{ typedef boost::multiprecision::cpp_int Type; }; #elif defined(CGAL_HAS_THREADS) || !defined(CGAL_USE_GMP) { typedef MP_Float Type; }; #else From 1ecb48e8bb88e3d8c2b50ea71fb7c5bc5a8bc9d3 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 11:34:27 +0100 Subject: [PATCH 02/58] resolve conflict --- .../internal/Exact_type_selector.h | 1 + Number_types/include/CGAL/cpp_float.h | 399 ++++++++++++++++++ 2 files changed, 400 insertions(+) create mode 100644 Number_types/include/CGAL/cpp_float.h diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index cdc3aea33df..4fc3a4e95a1 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -25,6 +25,7 @@ #include #include +# include #ifdef CGAL_USE_GMP # include # include diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h new file mode 100644 index 00000000000..b3885c0e922 --- /dev/null +++ b/Number_types/include/CGAL/cpp_float.h @@ -0,0 +1,399 @@ +// Copyright (c) 2023 GeometryFactory (France). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org) +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// +// Author(s) : Andreas Fabri + +#ifndef CGAL_CPP_FLOAT_H +#define CGAL_CPP_FLOAT_H + + +#include +#include +#include +#include + +namespace CGAL { + + +namespace internal { + // Only used with an argument known not to be 0. + inline int low_bit (boost::uint64_t x) { +#if defined(_MSC_VER) + unsigned long ret; + _BitScanForward64(&ret, x); + return (int)ret; +#elif defined(__xlC__) + return __cnttz8 (x); +#else + // Assume long long is 64 bits + return __builtin_ctzll (x); +#endif + } + inline int high_bit (boost::uint64_t x) { +#if defined(_MSC_VER) + unsigned long ret; + _BitScanReverse64(&ret, x); + return (int)ret; // AF: was 63 - (int)ret; The others have to be changed too +#elif defined(__xlC__) + // Macro supposedly not defined on z/OS. + return __cntlz8 (x); +#else + return __builtin_clzll (x); +#endif + } + +} // namespace internal + +#if 0 // needs C++20 + template + void fmt(const T& t) + { + std::cout << std::format("{:b}", t) << std::endl; + } +#endif + +class cpp_float { + + boost::multiprecision::cpp_int man; + int exp; /* The number man (an integer) * 2 ^ exp */ + +public: + cpp_float() + : man(), exp() + {} + + cpp_float(int i) + : man(i),exp(0) + {} + + cpp_float(const boost::multiprecision::cpp_int& man, int exp) + : man(man),exp(exp) + {} + + + cpp_float(double d) + { + std::cout << "\ndouble = " << d << std::endl; + using boost::uint64_t; + union { +#ifdef CGAL_LITTLE_ENDIAN + struct { uint64_t man:52; uint64_t exp:11; uint64_t sig:1; } s; +#else /* CGAL_BIG_ENDIAN */ + //WARNING: untested! + struct { uint64_t sig:1; uint64_t exp:11; uint64_t man:52; } s; +#endif + double d; + } u; + u.d = d; + + uint64_t m; + uint64_t dexp = u.s.exp; + CGAL_assertion_msg(dexp != 2047, "Creating an cpp_float from infinity or NaN."); + if (dexp == 0) { + if (d == 0) { exp=0; return; } + else { // denormal number + m = u.s.man; + ++dexp; + } + } else { + m = (1LL << 52) | u.s.man; + } + + + int idexp = (int)dexp; + idexp -= 1023; + + std::cout << "m = " << m << std::endl; + std::cout << "idexp = " << idexp << std::endl; + + int shifted = internal::low_bit(m); + + m >>= shifted; + + int nbits = internal::high_bit(m); + std::cout << "nbits = " << nbits << std::endl; + + exp = idexp - nbits; + if(u.s.sig){ + m = -m; + } + std::cout << "m = " << m << " * 2^" << exp << std::endl; + // fmt(m); + man = boost::multiprecision::cpp_int(m); + } + + friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) + { + return os << m.man << " * 2 ^ " << m.exp << " ( " << to_double(m) << ") "; + } + + friend cpp_float operator-(cpp_float const&x) + { + return cpp_float(-x.man,x.exp); + } + + cpp_float& operator*=(const cpp_float& other) + { + man *= other.man; + exp += other.exp; + return *this; + } + + cpp_float operator+=(const cpp_float& other) + { + int shift = exp - other.exp; + if(shift > 0){ + man <<= shift; + man += other.man; + exp = other.exp; + }else if(shift < 0){ + boost::multiprecision::cpp_int cpy(other.man); + cpy << shift; + man += cpy; + }else{ + man += other.man; + } + return *this; + } + + cpp_float operator-=(const cpp_float& other) + { + int shift = exp - other.exp; + if(shift > 0){ + man <<= shift; + man -= other.man; + exp = other.exp; + }else if(shift < 0){ + boost::multiprecision::cpp_int cpy(other.man); + cpy << shift; + man -= cpy; + }else{ + man -= other.man; + } + return *this; + } + + bool positive() const + { + return is_positive(man); + } + + + friend bool operator<(const cpp_float& a, const cpp_float& b) + { + cpp_float d(b); + d -= a; + return d.positive(); + } + + friend bool operator>(cpp_float const&a, cpp_float const&b){ + return b=(cpp_float const&a, cpp_float const&b){ + return !(ab); + } + + + friend bool operator==(cpp_float const&a, cpp_float const&b){ + int shift = a.exp - b.exp; + if(shift > 0){ + boost::multiprecision::cpp_int ac(a.man); + ac <<= shift; + return ac == b.man; + }else if(shift < 0){ + boost::multiprecision::cpp_int bc(b.man); + bc <<= shift; + return a.man == bc; + } + return a.man==b.man; + } + + Comparison_result compare(const cpp_float& other) const + { + if(*this < other) return SMALLER; + if(*this > other) return LARGER; + return EQUAL; + } + + friend bool operator!=(cpp_float const&a, cpp_float const&b){ + return !(a==b); + } + + friend double to_double(const cpp_float const&a) + { + if(a.exp == 0){ + return to_double(a.man); + } + if(a.exp > 0){ + boost::multiprecision::cpp_int as(a.man); + as <<= a.exp; + return to_double(as); + } + boost::multiprecision::cpp_int pow(1); + pow <<= -a.exp; + boost::multiprecision::cpp_rational rat(a.man, pow); + return to_double(rat); + } + + friend std::pair to_interval() + { + assert(false); + double zero(0); + return std::make_pair(zero,zero); + } + + + bool is_zero () const { + assert(false); + return man==0 && exp == 0; + } + + + bool is_one () const { + assert(false); + return true; + // return exp==0 && size==1 && data()[0]==1; + } + + + CGAL::Sign sign () const + { + return CGAL::sign(man); + } + +}; + + cpp_float operator+(const cpp_float& a, const cpp_float&b){ + cpp_float ret(a); + return ret += b; + } + + cpp_float operator-(const cpp_float& a, const cpp_float&b){ + cpp_float ret(a); + return ret -= b; + } + + cpp_float operator*(const cpp_float& a, const cpp_float&b){ + cpp_float ret(a); + return ret *= b; + } + + + template <> struct Algebraic_structure_traits< cpp_float > + : public Algebraic_structure_traits_base< cpp_float, Integral_domain_without_division_tag > { + typedef Tag_true Is_exact; + typedef Tag_false Is_numerical_sensitive; + + struct Is_zero + : public CGAL::cpp98::unary_function< Type, bool > { + bool operator()( const Type& x ) const { + return x.is_zero(); + } + }; + + struct Is_one + : public CGAL::cpp98::unary_function< Type, bool > { + bool operator()( const Type& x ) const { + assert(false); + return false; // x.is_one(); + } + }; + + struct Gcd + : public CGAL::cpp98::binary_function< Type, Type, Type > { + Type operator()( + const Type& x, + const Type& y ) const { + assert(false); + return Type(); // cpp_float_gcd(x, y); + } + }; + + struct Square + : public CGAL::cpp98::unary_function< Type, Type > { + Type operator()( const Type& x ) const { + return x*x ; // cpp_float_square(x); + } + }; + + struct Integral_division + : public CGAL::cpp98::binary_function< Type, Type, Type > { + Type operator()( + const Type& x, + const Type& y ) const { + assert(false); + return Type(); // x / y; + } + }; + + struct Sqrt + : public CGAL::cpp98::unary_function< Type, Type > { + Type operator()( const Type& x) const { + assert(false); + return Type(); // cpp_float_sqrt(x); + } + }; + + struct Is_square + : public CGAL::cpp98::binary_function< Type, Type&, bool > { + bool operator()( const Type& x, Type& y ) const { + // TODO: avoid doing 2 calls. + assert(false); + return true; + } + bool operator()( const Type& x) const { + assert(false); + return true; + } + }; + + }; + template <> struct Real_embeddable_traits< cpp_float > + : public INTERN_RET::Real_embeddable_traits_base< cpp_float , CGAL::Tag_true > { + struct Sgn + : public CGAL::cpp98::unary_function< Type, ::CGAL::Sign > { + ::CGAL::Sign operator()( const Type& x ) const { + return x.sign(); + } + }; + + struct To_double + : public CGAL::cpp98::unary_function< Type, double > { + double operator()( const Type& x ) const { + return x.to_double(); + } + }; + + struct Compare + : public CGAL::cpp98::binary_function< Type, Type, Comparison_result > { + Comparison_result operator()( + const Type& x, + const Type& y ) const { + return x.compare(y); + } + }; + + struct To_interval + : public CGAL::cpp98::unary_function< Type, std::pair< double, double > > { + std::pair operator()( const Type& x ) const { + return x.to_interval(); + } + }; + + }; + + + +} // namespace CGAL + + +#endif // CGAL_CPP_FLOAT_H From 080d1496bdddd1c49dd200ababe0f87a3691de5b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 11:42:21 +0100 Subject: [PATCH 03/58] fixes --- Number_types/include/CGAL/cpp_float.h | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index b3885c0e922..8e2b4146cf7 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -1,3 +1,4 @@ + // Copyright (c) 2023 GeometryFactory (France). // All rights reserved. // @@ -130,7 +131,7 @@ public: friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) { - return os << m.man << " * 2 ^ " << m.exp << " ( " << to_double(m) << ") "; + return os << m.man << " * 2 ^ " << m.exp << " ( " << m.to_double() << ") "; } friend cpp_float operator-(cpp_float const&x) @@ -228,23 +229,23 @@ public: return !(a==b); } - friend double to_double(const cpp_float const&a) + double to_double() const { - if(a.exp == 0){ - return to_double(a.man); + if(exp == 0){ + return to_double(man); } - if(a.exp > 0){ - boost::multiprecision::cpp_int as(a.man); - as <<= a.exp; + if(exp > 0){ + boost::multiprecision::cpp_int as(man); + as <<= exp; return to_double(as); } boost::multiprecision::cpp_int pow(1); - pow <<= -a.exp; - boost::multiprecision::cpp_rational rat(a.man, pow); + pow <<= -exp; + boost::multiprecision::cpp_rational rat(man, pow); return to_double(rat); } - friend std::pair to_interval() + std::pair to_interval() { assert(false); double zero(0); From ac15dfab9d2716f803ef0f8bfdcf297ec73268b7 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 11:50:04 +0100 Subject: [PATCH 04/58] The Kernel_23 testsuite compiles --- Number_types/include/CGAL/cpp_float.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 8e2b4146cf7..bd98f62da26 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -232,20 +232,20 @@ public: double to_double() const { if(exp == 0){ - return to_double(man); + return CGAL::to_double(man); } if(exp > 0){ boost::multiprecision::cpp_int as(man); as <<= exp; - return to_double(as); + return CGAL::to_double(as); } boost::multiprecision::cpp_int pow(1); pow <<= -exp; boost::multiprecision::cpp_rational rat(man, pow); - return to_double(rat); + return CGAL::to_double(rat); } - std::pair to_interval() + std::pair to_interval() const { assert(false); double zero(0); From 190c60d2252960f1cf046a157ed0348c4b7b5433 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 13:00:40 +0100 Subject: [PATCH 05/58] Polyhedron demo compiles --- Number_types/include/CGAL/cpp_float.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index bd98f62da26..e07a2c0d743 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -273,16 +273,19 @@ public: }; + inline cpp_float operator+(const cpp_float& a, const cpp_float&b){ cpp_float ret(a); return ret += b; } + inline cpp_float operator-(const cpp_float& a, const cpp_float&b){ cpp_float ret(a); return ret -= b; } + inline cpp_float operator*(const cpp_float& a, const cpp_float&b){ cpp_float ret(a); return ret *= b; @@ -393,6 +396,12 @@ public: }; +CGAL_DEFINE_COERCION_TRAITS_FOR_SELF(cpp_float) +CGAL_DEFINE_COERCION_TRAITS_FROM_TO(short ,cpp_float) +CGAL_DEFINE_COERCION_TRAITS_FROM_TO(int ,cpp_float) +CGAL_DEFINE_COERCION_TRAITS_FROM_TO(long ,cpp_float) +CGAL_DEFINE_COERCION_TRAITS_FROM_TO(float ,cpp_float) +CGAL_DEFINE_COERCION_TRAITS_FROM_TO(double ,cpp_float) } // namespace CGAL From 7c0d7ee15451a0a4a1187582f52782e35d855172 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 13:44:49 +0100 Subject: [PATCH 06/58] Add constructors --- Number_types/include/CGAL/cpp_float.h | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index e07a2c0d743..a527d158f3d 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -69,10 +69,18 @@ public: : man(), exp() {} + cpp_float(short i) + : man(i),exp(0) + {} + cpp_float(int i) : man(i),exp(0) {} + cpp_float(long i) + : man(i),exp(0) + {} + cpp_float(const boost::multiprecision::cpp_int& man, int exp) : man(man),exp(exp) {} @@ -80,7 +88,7 @@ public: cpp_float(double d) { - std::cout << "\ndouble = " << d << std::endl; + //std::cout << "\ndouble = " << d << std::endl; using boost::uint64_t; union { #ifdef CGAL_LITTLE_ENDIAN @@ -110,21 +118,21 @@ public: int idexp = (int)dexp; idexp -= 1023; - std::cout << "m = " << m << std::endl; - std::cout << "idexp = " << idexp << std::endl; + // std::cout << "m = " << m << std::endl; + // std::cout << "idexp = " << idexp << std::endl; int shifted = internal::low_bit(m); m >>= shifted; int nbits = internal::high_bit(m); - std::cout << "nbits = " << nbits << std::endl; + // std::cout << "nbits = " << nbits << std::endl; exp = idexp - nbits; if(u.s.sig){ m = -m; } - std::cout << "m = " << m << " * 2^" << exp << std::endl; + // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); man = boost::multiprecision::cpp_int(m); } From 8c9d411c9449d678ca4c74ce2336b99839b7fc12 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 14:10:12 +0100 Subject: [PATCH 07/58] Fix sign --- Number_types/include/CGAL/cpp_float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index a527d158f3d..599218e47ea 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -220,7 +220,7 @@ public: return ac == b.man; }else if(shift < 0){ boost::multiprecision::cpp_int bc(b.man); - bc <<= shift; + bc <<= -shift; return a.man == bc; } return a.man==b.man; From 965245baf5773b4bb1c6575d9af1ca0f8f41255c Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 5 Apr 2023 15:28:33 +0100 Subject: [PATCH 08/58] resolve conflict --- Number_types/include/CGAL/cpp_float.h | 37 +++++++++++++------ Number_types/test/Number_types/CMakeLists.txt | 1 - .../benchmark/Triangulation_3/simple.cpp | 17 +++++---- 3 files changed, 36 insertions(+), 19 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 599218e47ea..f2e3a479893 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -61,32 +61,34 @@ namespace internal { class cpp_float { + boost::multiprecision::cpp_rational rat; boost::multiprecision::cpp_int man; int exp; /* The number man (an integer) * 2 ^ exp */ public: cpp_float() - : man(), exp() + : rat(), man(), exp() {} cpp_float(short i) - : man(i),exp(0) + : rat(i), man(i),exp(0) {} cpp_float(int i) - : man(i),exp(0) + : rat(i),man(i),exp(0) {} cpp_float(long i) - : man(i),exp(0) + : rat(i),man(i),exp(0) {} - cpp_float(const boost::multiprecision::cpp_int& man, int exp) - : man(man),exp(exp) + cpp_float(const boost::multiprecision::cpp_int& man, int exp, const boost::multiprecision::cpp_rational& rat) + : rat(rat),man(man),exp(exp) {} cpp_float(double d) + : rat(d) { //std::cout << "\ndouble = " << d << std::endl; using boost::uint64_t; @@ -144,11 +146,12 @@ public: friend cpp_float operator-(cpp_float const&x) { - return cpp_float(-x.man,x.exp); + return cpp_float(-x.man,x.exp, -x.rat); } cpp_float& operator*=(const cpp_float& other) { + rat *= other.rat; man *= other.man; exp += other.exp; return *this; @@ -156,6 +159,7 @@ public: cpp_float operator+=(const cpp_float& other) { + rat += other.rat; int shift = exp - other.exp; if(shift > 0){ man <<= shift; @@ -163,7 +167,7 @@ public: exp = other.exp; }else if(shift < 0){ boost::multiprecision::cpp_int cpy(other.man); - cpy << shift; + cpy <<= -shift; man += cpy; }else{ man += other.man; @@ -173,6 +177,9 @@ public: cpp_float operator-=(const cpp_float& other) { + assert(is_positive(rat) == is_positive(man)); + assert(is_positive(other.rat) == is_positive(other.man)); + rat -= other.rat; int shift = exp - other.exp; if(shift > 0){ man <<= shift; @@ -180,25 +187,30 @@ public: exp = other.exp; }else if(shift < 0){ boost::multiprecision::cpp_int cpy(other.man); - cpy << shift; + cpy <<= -shift; man -= cpy; }else{ man -= other.man; } + assert(is_positive(rat) == is_positive(man)); return *this; } bool positive() const { + assert(is_positive(rat) == is_positive(man)); return is_positive(man); } friend bool operator<(const cpp_float& a, const cpp_float& b) { + bool qres = a.rat < b.rat; cpp_float d(b); d -= a; - return d.positive(); + + assert(qres == ( (!d.is_zero()) && d.positive())); + return ( (!d.is_zero()) && d.positive()); } friend bool operator>(cpp_float const&a, cpp_float const&b){ @@ -213,16 +225,20 @@ public: friend bool operator==(cpp_float const&a, cpp_float const&b){ + bool qres = a.rat == b.rat; int shift = a.exp - b.exp; if(shift > 0){ boost::multiprecision::cpp_int ac(a.man); ac <<= shift; + assert( qres == (ac == b.man)); return ac == b.man; }else if(shift < 0){ boost::multiprecision::cpp_int bc(b.man); bc <<= -shift; + assert(qres == (a.man == bc)); return a.man == bc; } + assert(qres == (a.man == b.man)); return a.man==b.man; } @@ -262,7 +278,6 @@ public: bool is_zero () const { - assert(false); return man==0 && exp == 0; } diff --git a/Number_types/test/Number_types/CMakeLists.txt b/Number_types/test/Number_types/CMakeLists.txt index 49b8cd31ba3..925f10a9efc 100644 --- a/Number_types/test/Number_types/CMakeLists.txt +++ b/Number_types/test/Number_types/CMakeLists.txt @@ -12,7 +12,6 @@ include(CGAL_VersionUtils) include_directories(BEFORE include) - create_single_source_cgal_program("bench_interval.cpp") create_single_source_cgal_program("constant.cpp") create_single_source_cgal_program("CORE_BigFloat.cpp") diff --git a/Triangulation_3/benchmark/Triangulation_3/simple.cpp b/Triangulation_3/benchmark/Triangulation_3/simple.cpp index d04d8d72fcb..673a940218f 100644 --- a/Triangulation_3/benchmark/Triangulation_3/simple.cpp +++ b/Triangulation_3/benchmark/Triangulation_3/simple.cpp @@ -1,6 +1,6 @@ //#define CGAL_PROFILE -#define CGAL_USE_SSE2_FABS -#define CGAL_USE_SSE2_MAX +//#define CGAL_USE_SSE2_FABS +//#define CGAL_USE_SSE2_MAX //#define CGAL_MSVC_USE_STD_FABS // use this one with precise #include @@ -11,25 +11,28 @@ #include #include +#include +#include typedef CGAL::Exact_predicates_inexact_constructions_kernel K; typedef CGAL::Delaunay_triangulation_3 DT; typedef DT::Point Point_3; typedef CGAL::Timer Timer; -int main() +int main(int argc, char* argv[]) { - + const std::string filename = (argc > 1) ? argv[1] : CGAL::data_file_path("points_3/ocean_r.xyz"); + std::ifstream in(filename.c_str()); std::vector points; - Point_3 p; + Point_3 p, q; - while(std::cin >> p){ + while(in >> p ){ points.push_back(p); } Timer timer; timer.start(); size_t N = 0; - for(int i = 0; i < 5; i++){ + for(int i = 0; i < 1; i++){ DT dt; dt.insert(points.begin(), points.end()); N += dt.number_of_cells(); From 1f79f5deac7202fe1b50e7ce88d31c637cfe7d1b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 6 Apr 2023 08:00:34 +0100 Subject: [PATCH 09/58] simplify expressions --- Number_types/include/CGAL/cpp_float.h | 129 ++++++++++++++++++-------- 1 file changed, 92 insertions(+), 37 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index f2e3a479893..eb9c3787673 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -60,35 +60,59 @@ namespace internal { #endif class cpp_float { - +#ifdef CGAL_CPPF boost::multiprecision::cpp_rational rat; +#endif boost::multiprecision::cpp_int man; int exp; /* The number man (an integer) * 2 ^ exp */ public: cpp_float() - : rat(), man(), exp() + : +#ifdef CGAL_CPPF + rat(), +#endif + man(), exp() {} cpp_float(short i) - : rat(i), man(i),exp(0) + : +#ifdef CGAL_CPPF + rat(i), +#endif + man(i),exp(0) {} cpp_float(int i) - : rat(i),man(i),exp(0) + : +#ifdef CGAL_CPPF + rat(i), +#endif + man(i),exp(0) {} cpp_float(long i) - : rat(i),man(i),exp(0) + : +#ifdef CGAL_CPPF + rat(i), +#endif + man(i),exp(0) {} - +#ifdef CGAL_CPPF cpp_float(const boost::multiprecision::cpp_int& man, int exp, const boost::multiprecision::cpp_rational& rat) - : rat(rat),man(man),exp(exp) + : rat(rat), man(man),exp(exp) {} +#else - + cpp_float(const boost::multiprecision::cpp_int& man, int exp) + : man(man), exp(exp) + {} +#endif cpp_float(double d) - : rat(d) + +#ifdef CGAL_CPPF + : rat(d) +#endif { //std::cout << "\ndouble = " << d << std::endl; using boost::uint64_t; @@ -146,70 +170,110 @@ public: friend cpp_float operator-(cpp_float const&x) { +#ifdef CGAL_CPPF return cpp_float(-x.man,x.exp, -x.rat); +#else + return cpp_float(-x.man,x.exp); +#endif } cpp_float& operator*=(const cpp_float& other) { +#ifdef CGAL_CPPF rat *= other.rat; +#endif man *= other.man; exp += other.exp; return *this; } + + friend + cpp_float operator*(const cpp_float& a, const cpp_float&b){ + return cpp_float(a.man*b.man, a.exp+b.exp); + } + + cpp_float operator+=(const cpp_float& other) { +#ifdef CGAL_CPPF rat += other.rat; +#endif int shift = exp - other.exp; if(shift > 0){ man <<= shift; man += other.man; exp = other.exp; }else if(shift < 0){ - boost::multiprecision::cpp_int cpy(other.man); - cpy <<= -shift; - man += cpy; + man += (other.man << -shift); }else{ man += other.man; } return *this; } + + friend + cpp_float operator+(const cpp_float& a, const cpp_float&b){ + int shift = a.exp - b.exp; + if(shift > 0){ + return cpp_float((a.man << shift) + b.man, b.exp); + }else if(shift < 0){ + return cpp_float(a.man + (b.man << -shift), a.exp); + } + return cpp_float(a.man + b.man, a.exp); + } + + + cpp_float operator-=(const cpp_float& other) { - assert(is_positive(rat) == is_positive(man)); - assert(is_positive(other.rat) == is_positive(other.man)); + +#ifdef CGAL_CPPF rat -= other.rat; +#endif int shift = exp - other.exp; if(shift > 0){ man <<= shift; man -= other.man; exp = other.exp; }else if(shift < 0){ - boost::multiprecision::cpp_int cpy(other.man); - cpy <<= -shift; - man -= cpy; + man -= (other.man << -shift); }else{ man -= other.man; } - assert(is_positive(rat) == is_positive(man)); return *this; } + friend + cpp_float operator-(const cpp_float& a, const cpp_float&b){ + + int shift = a.exp - b.exp; + if(shift > 0){ + return cpp_float((a.man << shift) - b.man, b.exp); + }else if(shift < 0){ + return cpp_float(a.man - (b.man << -shift), a.exp); + } + return cpp_float(a.man - b.man, a.exp); + } + bool positive() const { - assert(is_positive(rat) == is_positive(man)); return is_positive(man); } friend bool operator<(const cpp_float& a, const cpp_float& b) { +#ifdef CGAL_CPPF bool qres = a.rat < b.rat; +#endif cpp_float d(b); d -= a; +#ifdef CGAL_CPPF assert(qres == ( (!d.is_zero()) && d.positive())); +#endif return ( (!d.is_zero()) && d.positive()); } @@ -225,20 +289,29 @@ public: friend bool operator==(cpp_float const&a, cpp_float const&b){ + +#ifdef CGAL_CPPF bool qres = a.rat == b.rat; +#endif int shift = a.exp - b.exp; if(shift > 0){ boost::multiprecision::cpp_int ac(a.man); ac <<= shift; +#ifdef CGAL_CPPF assert( qres == (ac == b.man)); +#endif return ac == b.man; }else if(shift < 0){ boost::multiprecision::cpp_int bc(b.man); bc <<= -shift; +#ifdef CGAL_CPPF assert(qres == (a.man == bc)); +#endif return a.man == bc; } +#ifdef CGAL_CPPF assert(qres == (a.man == b.man)); +#endif return a.man==b.man; } @@ -296,24 +369,6 @@ public: }; - inline - cpp_float operator+(const cpp_float& a, const cpp_float&b){ - cpp_float ret(a); - return ret += b; - } - - inline - cpp_float operator-(const cpp_float& a, const cpp_float&b){ - cpp_float ret(a); - return ret -= b; - } - - inline - cpp_float operator*(const cpp_float& a, const cpp_float&b){ - cpp_float ret(a); - return ret *= b; - } - template <> struct Algebraic_structure_traits< cpp_float > : public Algebraic_structure_traits_base< cpp_float, Integral_domain_without_division_tag > { From a9b84b158907eb8228bc02a89fb543485666e755 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 6 Apr 2023 11:26:34 +0100 Subject: [PATCH 10/58] Add constructor for expression --- Number_types/include/CGAL/cpp_float.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index eb9c3787673..92a96b1d292 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -107,6 +107,13 @@ public: cpp_float(const boost::multiprecision::cpp_int& man, int exp) : man(man), exp(exp) {} + + + template + cpp_float(const Expression& man, int exp) + : man(man), exp(exp) + {} + #endif cpp_float(double d) From 6bcc9ac087a2138222835842e89567bed9a87a9d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 6 Apr 2023 12:07:09 +0100 Subject: [PATCH 11/58] Set MinBits to 256 (as it is good for Dt3 --- Number_types/include/CGAL/cpp_float.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 92a96b1d292..102bf9ff2fd 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -63,7 +63,9 @@ class cpp_float { #ifdef CGAL_CPPF boost::multiprecision::cpp_rational rat; #endif - boost::multiprecision::cpp_int man; + + typedef boost::multiprecision::number > Mantissa; + Mantissa man; int exp; /* The number man (an integer) * 2 ^ exp */ public: @@ -99,12 +101,12 @@ public: man(i),exp(0) {} #ifdef CGAL_CPPF - cpp_float(const boost::multiprecision::cpp_int& man, int exp, const boost::multiprecision::cpp_rational& rat) + cpp_float(const Mantissa& man, int exp, const boost::multiprecision::cpp_rational& rat) : rat(rat), man(man),exp(exp) {} #else - cpp_float(const boost::multiprecision::cpp_int& man, int exp) + cpp_float(const Mantissa& man, int exp) : man(man), exp(exp) {} @@ -167,7 +169,7 @@ public: } // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); - man = boost::multiprecision::cpp_int(m); + man = Mantissa(m); } friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) @@ -302,14 +304,14 @@ public: #endif int shift = a.exp - b.exp; if(shift > 0){ - boost::multiprecision::cpp_int ac(a.man); + Mantissa ac(a.man); ac <<= shift; #ifdef CGAL_CPPF assert( qres == (ac == b.man)); #endif return ac == b.man; }else if(shift < 0){ - boost::multiprecision::cpp_int bc(b.man); + Mantissa bc(b.man); bc <<= -shift; #ifdef CGAL_CPPF assert(qres == (a.man == bc)); @@ -339,11 +341,11 @@ public: return CGAL::to_double(man); } if(exp > 0){ - boost::multiprecision::cpp_int as(man); + Mantissa as(man); as <<= exp; return CGAL::to_double(as); } - boost::multiprecision::cpp_int pow(1); + Mantissa pow(1); pow <<= -exp; boost::multiprecision::cpp_rational rat(man, pow); return CGAL::to_double(rat); From 09ba63ec503cf918d24f48a7b5ec75af66453d02 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 6 Apr 2023 12:30:01 +0100 Subject: [PATCH 12/58] Use std::move() --- Number_types/include/CGAL/cpp_float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 102bf9ff2fd..0060c3a7e11 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -169,7 +169,7 @@ public: } // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); - man = Mantissa(m); + man = std::move(m); } friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) From d3d2c284df286d17c84c922302a72211a513ef36 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 6 Apr 2023 15:53:43 +0100 Subject: [PATCH 13/58] 256 -> 512 and no need for std::move() --- Number_types/include/CGAL/cpp_float.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 0060c3a7e11..5c121796d3b 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -64,7 +64,7 @@ class cpp_float { boost::multiprecision::cpp_rational rat; #endif - typedef boost::multiprecision::number > Mantissa; + typedef boost::multiprecision::number > Mantissa; Mantissa man; int exp; /* The number man (an integer) * 2 ^ exp */ @@ -169,7 +169,7 @@ public: } // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); - man = std::move(m); + man = m; } friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) From 6ee831326d9c4265760d0881c9fbec7f95ab38aa Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 7 Apr 2023 09:18:58 +0100 Subject: [PATCH 14/58] Add data set which triggers exact predicates for DT3 --- Data/data/points_3/ocean_r.xyz | 14550 +++++++++++++++++++++++++++++++ 1 file changed, 14550 insertions(+) create mode 100644 Data/data/points_3/ocean_r.xyz diff --git a/Data/data/points_3/ocean_r.xyz b/Data/data/points_3/ocean_r.xyz new file mode 100644 index 00000000000..42c84039c04 --- /dev/null +++ b/Data/data/points_3/ocean_r.xyz @@ -0,0 +1,14550 @@ +0.282675540000000 0.980910402000000 0.228084105000000 +0.307268956000000 0.923492707000000 0.029750101000000 +0.282725123000000 0.965836968000000 0.049583501000000 +0.281832620000000 0.939706512000000 0.485918310000000 +0.294129328000000 0.916798885000000 0.436334809000000 +0.290807234000000 0.939954479000000 0.188417304000000 +0.277766773000000 0.950763633000000 0.664418914000000 +0.285898467000000 0.962514923000000 0.079333602000000 +0.280940117000000 0.932268987000000 0.347084507000000 +0.277568439000000 0.953837810000000 0.109083702000000 +0.289220562000000 0.946499452000000 0.317334407000000 +0.275981767000000 0.957060738000000 0.386751308000000 +0.302409773000000 0.911096832000000 0.099167002000000 +0.300773517000000 0.921608534000000 0.247917505000000 +0.281039284000000 0.938516508000000 0.059500201000000 +0.299186845000000 0.905394779000000 0.555335212000000 +0.295963918000000 0.932616072000000 0.138833803000000 +0.287584306000000 0.940450265000000 0.247917505000000 +0.272858006000000 0.960085331000000 0.000000000000000 +0.287584306000000 0.990727935000000 0.099167002000000 +0.285997634000000 0.925228180000000 0.287584306000000 +0.299137262000000 0.915311479000000 0.476001610000000 +0.287584306000000 0.984331663000000 0.188417304000000 +0.274494262000000 0.954333645000000 0.178500604000000 +0.292493073000000 0.959044078000000 0.138833803000000 +0.275932183000000 0.954036144000000 0.366917908000000 +0.287633890000000 0.949871180000000 0.267750906000000 +0.277717189000000 0.969010312000000 0.406584709000000 +0.289170978000000 0.956069117000000 0.089250302000000 +0.276080934000000 0.971687870000000 0.079333602000000 +0.282576373000000 0.947193621000000 0.218167405000000 +0.287485139000000 0.952895674000000 0.267750906000000 +0.299186845000000 0.905394779000000 0.604918713000000 +0.285105131000000 0.939210677000000 0.059500201000000 +0.295021831000000 0.924682761000000 0.337167807000000 +0.284212628000000 0.931872319000000 0.436334809000000 +0.296707670000000 0.924286043000000 0.327251107000000 +0.280890534000000 0.983885362000000 0.079333602000000 +0.279353445000000 0.968911194000000 0.099167002000000 +0.280940117000000 0.929393144000000 0.257834206000000 +0.279254278000000 0.962961224000000 0.198334004000000 +0.294129328000000 0.916798885000000 0.287584306000000 +0.299087678000000 0.921806868000000 0.317334407000000 +0.295963918000000 0.913030589000000 0.238000805000000 +0.292493073000000 0.939855263000000 0.009916700000000 +0.300823101000000 0.918236856000000 0.099167002000000 +0.299137262000000 0.918633524000000 0.267750906000000 +0.294278079000000 0.949176911000000 0.128917103000000 +0.282625956000000 0.984034212000000 0.228084105000000 +0.300922268000000 0.911245583000000 0.495835011000000 +0.279254278000000 0.959837414000000 0.357001208000000 +0.300723934000000 0.915063512000000 0.327251107000000 +0.297501006000000 0.908815942000000 0.456168210000000 +0.290906401000000 0.911195999000000 0.009916700000000 +0.300823101000000 0.904799728000000 0.436334809000000 +0.295914334000000 0.925922349000000 0.198334004000000 +0.277618022000000 0.959936630000000 0.069416901000000 +0.302360190000000 0.914418927000000 0.406584709000000 +0.297550590000000 0.902717220000000 0.376834608000000 +0.280940117000000 0.932268987000000 0.218167405000000 +0.282675540000000 0.968861561000000 0.198334004000000 +0.290856817000000 0.930335231000000 0.426418109000000 +0.285898467000000 0.959391212000000 0.128917103000000 +0.300823101000000 0.904799728000000 0.575168612000000 +0.297550590000000 0.916104716000000 0.109083702000000 +0.294030161000000 0.920121079000000 0.128917103000000 +0.287534723000000 0.974960382000000 0.099167002000000 +0.307318540000000 0.916402316000000 0.347084507000000 +0.271866336000000 0.964349562000000 0.198334004000000 +0.295864751000000 0.906535150000000 0.495835011000000 +0.284212628000000 0.956366569000000 0.317334407000000 +0.282625956000000 0.956515319000000 0.119000403000000 +0.281039284000000 0.959936630000000 0.327251107000000 +0.289270145000000 0.949722330000000 0.267750906000000 +0.282625956000000 0.928798192000000 0.515668411000000 +0.281039284000000 0.950565349000000 0.168583904000000 +0.285898467000000 0.962514923000000 0.267750906000000 +0.295914334000000 0.948929043000000 0.158667203000000 +0.280940117000000 0.941541102000000 0.109083702000000 +0.294030161000000 0.920121079000000 0.327251107000000 +0.275981767000000 0.957060738000000 0.555335212000000 +0.289220562000000 0.946499452000000 0.178500604000000 +0.284311795000000 0.996231704000000 0.029750101000000 +0.279303862000000 0.974811681000000 0.178500604000000 +0.302409773000000 0.911096832000000 0.466084910000000 +0.276080934000000 0.966084935000000 0.099167002000000 +0.297550590000000 0.916104716000000 0.000000000000000 +0.299137262000000 0.918633524000000 0.158667203000000 +0.282675540000000 0.980910402000000 0.069416901000000 +0.287633890000000 0.949871180000000 0.009916700000000 +0.287584306000000 0.990727935000000 0.128917103000000 +0.295716000000000 0.922897705000000 0.485918310000000 +0.280890534000000 0.977786641000000 0.099167002000000 +0.287633890000000 0.930831066000000 0.456168210000000 +0.285898467000000 0.956267402000000 0.000000000000000 +0.274395095000000 0.960134915000000 0.446251510000000 +0.285898467000000 0.999851249000000 0.079333602000000 +0.290906401000000 0.908022655000000 0.664418914000000 +0.300723934000000 0.915063512000000 0.376834608000000 +0.284262212000000 0.928153557000000 0.208250704000000 +0.300823101000000 0.904799728000000 0.495835011000000 +0.284311795000000 0.941045217000000 0.267750906000000 +0.297501006000000 0.919278060000000 0.347084507000000 +0.289220562000000 0.924385161000000 0.000000000000000 +0.280989701000000 0.935343164000000 0.297501006000000 +0.282675540000000 0.925971882000000 0.436334809000000 +0.276080934000000 0.977538674000000 0.138833803000000 +0.272858006000000 0.960085331000000 0.119000403000000 +0.280940117000000 0.986810838000000 0.109083702000000 +0.295864751000000 0.906535150000000 0.009916700000000 +0.292493073000000 0.926963553000000 0.317334407000000 +0.274345511000000 0.966134568000000 0.089250302000000 +0.299137262000000 0.918633524000000 0.029750101000000 +0.299137262000000 0.908815942000000 0.267750906000000 +0.277667606000000 0.965985817000000 0.257834206000000 +0.290906401000000 0.927211470000000 0.337167807000000 +0.299137262000000 0.915311479000000 0.079333602000000 +0.272659672000000 0.957308705000000 0.704085715000000 +0.290955984000000 0.946400285000000 0.287584306000000 +0.280989701000000 0.935343164000000 0.426418109000000 +0.287584306000000 0.984331663000000 0.029750101000000 +0.300823101000000 0.904799728000000 0.555335212000000 +0.299137262000000 0.915311479000000 0.168583904000000 +0.280940117000000 0.929393144000000 0.079333602000000 +0.286790970000000 0.948333992000000 0.079333602000000 +0.297501006000000 0.919278060000000 0.228084105000000 +0.300922268000000 0.911245583000000 0.128917103000000 +0.285997634000000 0.981108736000000 0.019833400000000 +0.282625956000000 0.962713257000000 0.218167405000000 +0.292493073000000 0.955821150000000 0.069416901000000 +0.292493073000000 0.962267055000000 0.059500201000000 +0.274444678000000 0.971886155000000 0.238000805000000 +0.274494262000000 0.954333645000000 0.347084507000000 +0.284361379000000 0.937971090000000 0.366917908000000 +0.287534723000000 0.974960382000000 0.019833400000000 +0.276080934000000 0.971687870000000 0.426418109000000 +0.281039284000000 0.941441935000000 0.059500201000000 +0.285948051000000 0.978133726000000 0.128917103000000 +0.294278079000000 0.949176911000000 0.000000000000000 +0.287534723000000 0.974960382000000 0.109083702000000 +0.299186845000000 0.935491915000000 0.247917505000000 +0.307268956000000 0.923492707000000 0.079333602000000 +0.307318540000000 0.916402316000000 0.138833803000000 +0.285948051000000 0.931376484000000 0.267750906000000 +0.284262212000000 0.928153557000000 0.267750906000000 +0.299137262000000 0.908815942000000 0.287584306000000 +0.282625956000000 0.984034212000000 0.257834206000000 +0.281832620000000 0.939706512000000 0.307417707000000 +0.295963918000000 0.913030589000000 0.099167002000000 +0.294278079000000 0.965043681000000 0.079333602000000 +0.287584306000000 0.924831462000000 0.406584709000000 +0.282625956000000 0.929046060000000 0.406584709000000 +0.289270145000000 0.933954826000000 0.099167002000000 +0.282675540000000 0.931971536000000 0.148750503000000 +0.292592240000000 0.949375295000000 0.178500604000000 +0.282725123000000 0.950366965000000 0.366917908000000 +0.307417707000000 0.913328090000000 0.168583904000000 +0.290856817000000 0.924087709000000 0.039666801000000 +0.277717189000000 0.969010312000000 0.426418109000000 +0.282625956000000 0.928798192000000 0.000000000000000 +0.290906401000000 0.933508575000000 0.099167002000000 +0.280940117000000 0.941541102000000 0.297501006000000 +0.300922268000000 0.911245583000000 0.208250704000000 +0.280940117000000 0.929393144000000 0.595002013000000 +0.280890534000000 0.983885362000000 0.267750906000000 +0.299186845000000 0.952052754000000 0.119000403000000 +0.276080934000000 0.951061134000000 0.188417304000000 +0.300922268000000 0.908220989000000 0.079333602000000 +0.307318540000000 0.916402316000000 0.247917505000000 +0.289170978000000 0.978282476000000 0.049583501000000 +0.290856817000000 0.924087709000000 0.614835413000000 +0.277618022000000 0.957060738000000 0.188417304000000 +0.290856817000000 0.930335231000000 0.257834206000000 +0.280890534000000 0.953639476000000 0.436334809000000 +0.292493073000000 0.939855263000000 0.138833803000000 +0.292592240000000 0.929988146000000 0.277667606000000 +0.282576373000000 0.947193621000000 0.148750503000000 +0.294178912000000 0.926517301000000 0.168583904000000 +0.307318540000000 0.916402316000000 0.376834608000000 +0.275981767000000 0.957060738000000 0.446251510000000 +0.277618022000000 0.974811681000000 0.138833803000000 +0.289270145000000 0.930831066000000 0.099167002000000 +0.297501006000000 0.906287233000000 0.386751308000000 +0.282625956000000 0.962713257000000 0.297501006000000 +0.294278079000000 0.912435587000000 0.337167807000000 +0.279204695000000 0.953639476000000 0.119000403000000 +0.294228495000000 0.907030935000000 0.277667606000000 +0.279254278000000 0.962961224000000 0.019833400000000 +0.292542656000000 0.923641458000000 0.148750503000000 +0.295914334000000 0.935888583000000 0.327251107000000 +0.298294342000000 0.920468114000000 0.406584709000000 +0.284212628000000 0.999652965000000 0.049583501000000 +0.299186845000000 0.905394779000000 0.208250704000000 +0.297501006000000 0.906287233000000 0.634668814000000 +0.303996445000000 0.924236410000000 0.277667606000000 +0.274345511000000 0.966134568000000 0.138833803000000 +0.300872684000000 0.901576800000000 0.763585916000000 +0.285898467000000 0.959391212000000 0.218167405000000 +0.299137262000000 0.938863642000000 0.069416901000000 +0.280840950000000 0.947491122000000 0.436334809000000 +0.274345511000000 0.966134568000000 0.039666801000000 +0.282675540000000 0.925971882000000 0.257834206000000 +0.290856817000000 0.943177357000000 0.119000403000000 +0.285898467000000 0.959391212000000 0.029750101000000 +0.297401839000000 0.922501037000000 0.327251107000000 +0.282675540000000 0.931971536000000 0.476001610000000 +0.294178912000000 0.942929440000000 0.267750906000000 +0.304145196000000 0.914022259000000 0.366917908000000 +0.287534723000000 0.962415805000000 0.099167002000000 +0.284361379000000 0.937971090000000 0.188417304000000 +0.297401839000000 0.922501037000000 0.188417304000000 +0.284212628000000 0.956366569000000 0.168583904000000 +0.294228495000000 0.907030935000000 0.267750906000000 +0.286790970000000 0.948333992000000 0.000000000000000 +0.284212628000000 0.983488793000000 0.069416901000000 +0.284212628000000 0.983488793000000 0.019833400000000 +0.295864751000000 0.958994494000000 0.089250302000000 +0.292542656000000 0.913476840000000 0.485918310000000 +0.292542656000000 0.920368947000000 0.158667203000000 +0.277717189000000 0.980612901000000 0.208250704000000 +0.279353445000000 0.938665259000000 0.495835011000000 +0.304145196000000 0.914022259000000 0.228084105000000 +0.300872684000000 0.924881045000000 0.138833803000000 +0.282576373000000 0.987058805000000 0.228084105000000 +0.272709256000000 0.966134568000000 0.238000805000000 +0.300922268000000 0.908220989000000 0.089250302000000 +0.302360190000000 0.921311033000000 0.396668009000000 +0.302508940000000 0.904353476000000 0.476001610000000 +0.282576373000000 0.996033369000000 0.109083702000000 +0.272858006000000 0.960085331000000 0.109083702000000 +0.300773517000000 0.921608534000000 0.277667606000000 +0.292493073000000 0.926963553000000 0.426418109000000 +0.282576373000000 0.947193621000000 0.158667203000000 +0.284212628000000 0.987058805000000 0.138833803000000 +0.281832620000000 0.942582405000000 0.029750101000000 +0.297501006000000 0.919278060000000 0.158667203000000 +0.295021831000000 0.924682761000000 0.347084507000000 +0.289319729000000 0.937029003000000 0.069416901000000 +0.292542656000000 0.920368947000000 0.456168210000000 +0.280940117000000 0.932268987000000 0.158667203000000 +0.275981767000000 0.962911591000000 0.138833803000000 +0.277618022000000 0.959936630000000 0.029750101000000 +0.289170978000000 0.940202347000000 0.148750503000000 +0.297501006000000 0.935591082000000 0.029750101000000 +0.304095612000000 0.922104369000000 0.089250302000000 +0.282576373000000 0.959688663000000 0.327251107000000 +0.280940117000000 0.956614437000000 0.317334407000000 +0.290906401000000 0.911195999000000 0.505751711000000 +0.292542656000000 0.913476840000000 0.614835413000000 +0.297451423000000 0.938962760000000 0.247917505000000 +0.284311795000000 0.978034559000000 0.009916700000000 +0.290906401000000 0.933508575000000 0.307417707000000 +0.307516874000000 0.919922695000000 0.099167002000000 +0.300773517000000 0.921608534000000 0.287584306000000 +0.298294342000000 0.920468114000000 0.089250302000000 +0.297501006000000 0.935591082000000 0.109083702000000 +0.292493073000000 0.904452643000000 0.366917908000000 +0.286691803000000 0.939111461000000 0.138833803000000 +0.289220562000000 0.924385161000000 0.386751308000000 +0.285898467000000 0.946995337000000 0.168583904000000 +0.281039284000000 0.941441935000000 0.317334407000000 +0.296707670000000 0.924286043000000 0.386751308000000 +0.292542656000000 0.923641458000000 0.238000805000000 +0.297550590000000 0.928798192000000 0.247917505000000 +0.274345511000000 0.957110321000000 0.436334809000000 +0.295021831000000 0.924682761000000 0.009916700000000 +0.282576373000000 0.996033369000000 0.168583904000000 +0.300922268000000 0.908220989000000 0.376834608000000 +0.305731868000000 0.910055529000000 0.456168210000000 +0.282576373000000 0.974910798000000 0.228084105000000 +0.282625956000000 0.938070257000000 0.238000805000000 +0.281039284000000 0.965787434000000 0.277667606000000 +0.287584306000000 0.934103577000000 0.456168210000000 +0.307318540000000 0.916402316000000 0.089250302000000 +0.298294342000000 0.920468114000000 0.376834608000000 +0.282576373000000 0.974910798000000 0.079333602000000 +0.294129328000000 0.923294423000000 0.039666801000000 +0.281039284000000 0.968861561000000 0.069416901000000 +0.299186845000000 0.905394779000000 0.218167405000000 +0.289270145000000 0.920666398000000 0.257834206000000 +0.297501006000000 0.908815942000000 0.535501812000000 +0.292493073000000 0.904452643000000 0.555335212000000 +0.291005568000000 0.914567677000000 0.436334809000000 +0.290856817000000 0.975109132000000 0.128917103000000 +0.290906401000000 0.978232843000000 0.029750101000000 +0.290906401000000 0.978232843000000 0.049583501000000 +0.280840950000000 0.971787087000000 0.029750101000000 +0.289170978000000 0.956069117000000 0.069416901000000 +0.297600173000000 0.912633921000000 0.337167807000000 +0.279799697000000 0.944565695000000 0.476001610000000 +0.276080934000000 0.966084935000000 0.505751711000000 +0.289220562000000 0.946499452000000 0.099167002000000 +0.302360190000000 0.914418927000000 0.208250704000000 +0.290955984000000 0.921013532000000 0.436334809000000 +0.300823101000000 0.904799728000000 0.505751711000000 +0.290906401000000 0.933508575000000 0.386751308000000 +0.295815167000000 0.945706116000000 0.208250704000000 +0.274494262000000 0.954333645000000 0.287584306000000 +0.275981767000000 0.957060738000000 0.158667203000000 +0.289270145000000 0.930831066000000 0.317334407000000 +0.284262212000000 0.928153557000000 0.287584306000000 +0.284262212000000 0.928153557000000 0.327251107000000 +0.297501006000000 0.906287233000000 0.505751711000000 +0.302508940000000 0.924980212000000 0.208250704000000 +0.299137262000000 0.908815942000000 0.079333602000000 +0.276080934000000 0.966084935000000 0.277667606000000 +0.274444678000000 0.968960778000000 0.238000805000000 +0.279303862000000 0.941789019000000 0.277667606000000 +0.281832620000000 0.945656532000000 0.049583501000000 +0.285948051000000 0.937425671000000 0.218167405000000 +0.285848884000000 0.983984579000000 0.000000000000000 +0.281832620000000 0.939706512000000 0.357001208000000 +0.302508940000000 0.904353476000000 0.307417707000000 +0.295815167000000 0.916947636000000 0.357001208000000 +0.284361379000000 0.940946100000000 0.119000403000000 +0.285948051000000 0.993405494000000 0.029750101000000 +0.294278079000000 0.912435587000000 0.138833803000000 +0.274295928000000 0.963010758000000 0.485918310000000 +0.287485139000000 1.000000000000000 0.089250302000000 +0.290906401000000 0.927211470000000 0.466084910000000 +0.295864751000000 0.958994494000000 0.049583501000000 +0.283419292000000 0.939706512000000 0.059500201000000 +0.295963918000000 0.913030589000000 0.545418512000000 +0.281039284000000 0.959936630000000 0.138833803000000 +0.282625956000000 0.929046060000000 0.317334407000000 +0.304095612000000 0.922104369000000 0.247917505000000 +0.290906401000000 0.911195999000000 0.515668411000000 +0.287584306000000 0.984331663000000 0.238000805000000 +0.294228495000000 0.907030935000000 0.723919116000000 +0.300723934000000 0.915063512000000 0.138833803000000 +0.304095612000000 0.922104369000000 0.059500201000000 +0.287633890000000 0.930831066000000 0.287584306000000 +0.280890534000000 0.983885362000000 0.039666801000000 +0.302360190000000 0.914418927000000 0.198334004000000 +0.271866336000000 0.964349562000000 0.515668411000000 +0.284212628000000 0.931872319000000 0.416501409000000 +0.274295928000000 0.963010758000000 0.436334809000000 +0.290906401000000 0.927211470000000 0.287584306000000 +0.299186845000000 0.905394779000000 0.614835413000000 +0.302360190000000 0.914418927000000 0.495835011000000 +0.300922268000000 0.908220989000000 0.009916700000000 +0.305880618000000 0.913427257000000 0.178500604000000 +0.294178912000000 0.926517301000000 0.307417707000000 +0.284212628000000 0.962564506000000 0.148750503000000 +0.285997634000000 0.925228180000000 0.208250704000000 +0.296757254000000 0.927806472000000 0.029750101000000 +0.299286012000000 0.912138135000000 0.317334407000000 +0.295963918000000 0.913030589000000 0.347084507000000 +0.287633890000000 0.965886601000000 0.228084105000000 +0.292542656000000 0.907576354000000 0.585085313000000 +0.295914334000000 0.909807711000000 0.366917908000000 +0.290955984000000 0.921013532000000 0.485918310000000 +0.287633890000000 0.949871180000000 0.327251107000000 +0.280940117000000 0.941541102000000 0.049583501000000 +0.276031350000000 0.959986164000000 0.089250302000000 +0.294178912000000 0.942929440000000 0.079333602000000 +0.289270145000000 0.930831066000000 0.109083702000000 +0.295963918000000 0.913030589000000 0.267750906000000 +0.294228495000000 0.907030935000000 0.029750101000000 +0.280890534000000 0.953639476000000 0.089250302000000 +0.286691803000000 0.942185687000000 0.257834206000000 +0.279204695000000 0.950813167000000 0.198334004000000 +0.272659672000000 0.957308705000000 0.446251510000000 +0.290856817000000 0.965836968000000 0.099167002000000 +0.287584306000000 0.984331663000000 0.218167405000000 +0.297550590000000 0.928798192000000 0.198334004000000 +0.282625956000000 0.938070257000000 0.128917103000000 +0.280940117000000 0.932268987000000 0.109083702000000 +0.290955984000000 0.921013532000000 0.178500604000000 +0.284262212000000 0.943970693000000 0.168583904000000 +0.277568439000000 0.953837810000000 0.446251510000000 +0.276080934000000 0.966084935000000 0.019833400000000 +0.297501006000000 0.908815942000000 0.198334004000000 +0.297550590000000 0.928798192000000 0.009916700000000 +0.300823101000000 0.934996129000000 0.228084105000000 +0.304145196000000 0.914022259000000 0.297501006000000 +0.300773517000000 0.921608534000000 0.079333602000000 +0.271866336000000 0.964349562000000 0.029750101000000 +0.297550590000000 0.928798192000000 0.218167405000000 +0.286790970000000 0.948333992000000 0.119000403000000 +0.298294342000000 0.920468114000000 0.168583904000000 +0.286691803000000 0.942185687000000 0.079333602000000 +0.294228495000000 0.907030935000000 0.297501006000000 +0.279303862000000 0.956812820000000 0.228084105000000 +0.290955984000000 0.921013532000000 0.218167405000000 +0.280940117000000 0.932268987000000 0.208250704000000 +0.280791367000000 0.962762840000000 0.257834206000000 +0.294129328000000 0.923294423000000 0.525585111000000 +0.297600173000000 0.912633921000000 0.009916700000000 +0.307268956000000 0.923492707000000 0.019833400000000 +0.287584306000000 0.924831462000000 0.069416901000000 +0.272758839000000 0.968861561000000 0.218167405000000 +0.294129328000000 0.955821150000000 0.119000403000000 +0.285948051000000 0.934351494000000 0.247917505000000 +0.283419292000000 0.945557365000000 0.287584306000000 +0.285105131000000 0.945408615000000 0.049583501000000 +0.279353445000000 0.980712018000000 0.307417707000000 +0.292592240000000 0.929988146000000 0.138833803000000 +0.285154715000000 0.948333992000000 0.287584306000000 +0.285948051000000 0.993405494000000 0.128917103000000 +0.274494262000000 0.954333645000000 0.357001208000000 +0.285105131000000 0.942185687000000 0.297501006000000 +0.277618022000000 0.971985371000000 0.257834206000000 +0.290906401000000 0.927211470000000 0.297501006000000 +0.294278079000000 0.965043681000000 0.009916700000000 +0.290955984000000 0.921013532000000 0.416501409000000 +0.297501006000000 0.935591082000000 0.297501006000000 +0.287485139000000 0.943574025000000 0.148750503000000 +0.280890534000000 0.974910798000000 0.128917103000000 +0.275981767000000 0.957060738000000 0.059500201000000 +0.287485139000000 1.000000000000000 0.059500201000000 +0.280989701000000 0.935343164000000 0.267750906000000 +0.281039284000000 0.938516508000000 0.079333602000000 +0.280940117000000 0.929393144000000 0.198334004000000 +0.279204695000000 0.950813167000000 0.238000805000000 +0.292542656000000 0.907576354000000 0.565251912000000 +0.271866336000000 0.964349562000000 0.277667606000000 +0.307417707000000 0.913328090000000 0.297501006000000 +0.285154715000000 0.948333992000000 0.178500604000000 +0.295963918000000 0.913030589000000 0.069416901000000 +0.282625956000000 0.956515319000000 0.327251107000000 +0.284361379000000 0.981009618000000 0.168583904000000 +0.279303862000000 0.977786641000000 0.099167002000000 +0.286741387000000 0.945309398000000 0.198334004000000 +0.302360190000000 0.921311033000000 0.267750906000000 +0.285948051000000 0.931376484000000 0.178500604000000 +0.279353445000000 0.968911194000000 0.327251107000000 +0.276080934000000 0.971687870000000 0.029750101000000 +0.275981767000000 0.957060738000000 0.347084507000000 +0.287584306000000 0.934103577000000 0.287584306000000 +0.290856817000000 0.924087709000000 0.079333602000000 +0.287534723000000 0.959291995000000 0.099167002000000 +0.292592240000000 0.917294770000000 0.337167807000000 +0.290856817000000 0.924087709000000 0.585085313000000 +0.298294342000000 0.920468114000000 0.009916700000000 +0.295864751000000 0.929293977000000 0.009916700000000 +0.292493073000000 0.939855263000000 0.019833400000000 +0.285997634000000 0.925228180000000 0.456168210000000 +0.284262212000000 0.971737454000000 0.218167405000000 +0.275981767000000 0.962911591000000 0.148750503000000 +0.297600173000000 0.912633921000000 0.614835413000000 +0.282625956000000 0.934996129000000 0.525585111000000 +0.277766773000000 0.950763633000000 0.714002415000000 +0.287633890000000 0.937128170000000 0.376834608000000 +0.300823101000000 0.918236856000000 0.188417304000000 +0.271866336000000 0.964349562000000 0.267750906000000 +0.294129328000000 0.916798885000000 0.406584709000000 +0.294278079000000 0.949176911000000 0.039666801000000 +0.277717189000000 0.969010312000000 0.119000403000000 +0.276031350000000 0.959986164000000 0.357001208000000 +0.285898467000000 0.946995337000000 0.257834206000000 +0.287633890000000 0.930831066000000 0.089250302000000 +0.300922268000000 0.908220989000000 0.604918713000000 +0.302508940000000 0.904353476000000 0.277667606000000 +0.279303862000000 0.977786641000000 0.238000805000000 +0.285105131000000 0.942185687000000 0.198334004000000 +0.300723934000000 0.915063512000000 0.406584709000000 +0.294178912000000 0.942929440000000 0.000000000000000 +0.279204695000000 0.953639476000000 0.099167002000000 +0.292542656000000 0.920368947000000 0.485918310000000 +0.275981767000000 0.962911591000000 0.099167002000000 +0.272858006000000 0.960085331000000 0.604918713000000 +0.285749717000000 0.953193274000000 0.009916700000000 +0.284212628000000 0.962564506000000 0.089250302000000 +0.276080934000000 0.971687870000000 0.188417304000000 +0.300922268000000 0.908220989000000 0.178500604000000 +0.287485139000000 0.952895674000000 0.238000805000000 +0.289270145000000 0.927508971000000 0.466084910000000 +0.296658087000000 0.921112699000000 0.495835011000000 +0.285898467000000 0.956267402000000 0.257834206000000 +0.295864751000000 0.906535150000000 0.327251107000000 +0.282675540000000 0.925971882000000 0.575168612000000 +0.297600173000000 0.912633921000000 0.595002013000000 +0.290856817000000 0.965836968000000 0.089250302000000 +0.285997634000000 0.968762444000000 0.218167405000000 +0.271866336000000 0.964349562000000 0.525585111000000 +0.284311795000000 0.968762444000000 0.079333602000000 +0.290955984000000 0.968613743000000 0.148750503000000 +0.285948051000000 0.934351494000000 0.297501006000000 +0.280940117000000 0.929393144000000 0.376834608000000 +0.285948051000000 0.928153557000000 0.456168210000000 +0.297550590000000 0.916104716000000 0.228084105000000 +0.284311795000000 0.993355860000000 0.208250704000000 +0.294129328000000 0.916798885000000 0.466084910000000 +0.289270145000000 0.968663277000000 0.109083702000000 +0.282675540000000 0.971935788000000 0.099167002000000 +0.284212628000000 0.931872319000000 0.307417707000000 +0.279353445000000 0.968911194000000 0.089250302000000 +0.279204695000000 0.953639476000000 0.347084507000000 +0.286691803000000 0.939111461000000 0.178500604000000 +0.281039284000000 0.950565349000000 0.178500604000000 +0.302508940000000 0.917790654000000 0.218167405000000 +0.285898467000000 0.940747766000000 0.029750101000000 +0.289270145000000 0.920666398000000 0.327251107000000 +0.289270145000000 0.920666398000000 0.525585111000000 +0.283419292000000 0.945557365000000 0.079333602000000 +0.297501006000000 0.925723965000000 0.029750101000000 +0.305731868000000 0.923641458000000 0.019833400000000 +0.274494262000000 0.954333645000000 0.029750101000000 +0.287485139000000 0.952895674000000 0.257834206000000 +0.290906401000000 0.908022655000000 0.366917908000000 +0.282625956000000 0.929046060000000 0.535501812000000 +0.290807234000000 0.971836621000000 0.119000403000000 +0.280940117000000 0.929393144000000 0.337167807000000 +0.294278079000000 0.912435587000000 0.317334407000000 +0.287534723000000 0.962415805000000 0.019833400000000 +0.295914334000000 0.948929043000000 0.079333602000000 +0.294278079000000 0.912435587000000 0.079333602000000 +0.296707670000000 0.924286043000000 0.337167807000000 +0.272758839000000 0.968861561000000 0.178500604000000 +0.297600173000000 0.912633921000000 0.019833400000000 +0.297501006000000 0.919278060000000 0.287584306000000 +0.290856817000000 0.924087709000000 0.515668411000000 +0.284262212000000 0.928153557000000 0.228084105000000 +0.294030161000000 0.920121079000000 0.000000000000000 +0.276080934000000 0.966084935000000 0.238000805000000 +0.284311795000000 0.925575214000000 0.009916700000000 +0.307516874000000 0.919922695000000 0.019833400000000 +0.276080934000000 0.971687870000000 0.208250704000000 +0.286741387000000 0.945309398000000 0.317334407000000 +0.302360190000000 0.914418927000000 0.485918310000000 +0.285997634000000 0.965638683000000 0.049583501000000 +0.299286012000000 0.912138135000000 0.208250704000000 +0.276080934000000 0.951061134000000 0.575168612000000 +0.292592240000000 0.917294770000000 0.238000805000000 +0.298244759000000 0.923542241000000 0.168583904000000 +0.289170978000000 0.962316589000000 0.208250704000000 +0.285997634000000 0.925228180000000 0.694169015000000 +0.284212628000000 0.999652965000000 0.000000000000000 +0.289220562000000 0.924385161000000 0.158667203000000 +0.299186845000000 0.905394779000000 0.704085715000000 +0.297550590000000 0.928798192000000 0.049583501000000 +0.295765584000000 0.920170613000000 0.376834608000000 +0.302360190000000 0.921311033000000 0.089250302000000 +0.282725123000000 0.965836968000000 0.158667203000000 +0.294030161000000 0.920121079000000 0.297501006000000 +0.285749717000000 0.953193274000000 0.128917103000000 +0.295021831000000 0.927806472000000 0.267750906000000 +0.295914334000000 0.909807711000000 0.208250704000000 +0.295914334000000 0.909807711000000 0.535501812000000 +0.277618022000000 0.957060738000000 0.476001610000000 +0.302508940000000 0.904353476000000 0.198334004000000 +0.284163045000000 0.959490280000000 0.307417707000000 +0.275932183000000 0.954036144000000 0.069416901000000 +0.292443489000000 0.975109132000000 0.039666801000000 +0.276080934000000 0.951061134000000 0.614835413000000 +0.277667606000000 0.965985817000000 0.247917505000000 +0.298244759000000 0.923542241000000 0.089250302000000 +0.281882204000000 0.948978627000000 0.238000805000000 +0.287534723000000 0.956118651000000 0.188417304000000 +0.292443489000000 0.972084538000000 0.019833400000000 +0.292592240000000 0.952598223000000 0.128917103000000 +0.272659672000000 0.963159508000000 0.168583904000000 +0.282526789000000 0.977935392000000 0.267750906000000 +0.287683473000000 0.927806472000000 0.317334407000000 +0.292592240000000 0.952598223000000 0.089250302000000 +0.287633890000000 0.965886601000000 0.178500604000000 +0.290906401000000 0.927211470000000 0.168583904000000 +0.300872684000000 0.901576800000000 0.029750101000000 +0.287584306000000 0.990727935000000 0.079333602000000 +0.277766773000000 0.950763633000000 0.287584306000000 +0.295963918000000 0.913030589000000 0.357001208000000 +0.282576373000000 0.944317778000000 0.089250302000000 +0.282625956000000 0.962713257000000 0.000000000000000 +0.272858006000000 0.960085331000000 0.525585111000000 +0.292493073000000 0.926963553000000 0.128917103000000 +0.297451423000000 0.938962760000000 0.208250704000000 +0.305682284000000 0.920071446000000 0.009916700000000 +0.284262212000000 0.934847280000000 0.188417304000000 +0.281039284000000 0.950565349000000 0.158667203000000 +0.299286012000000 0.912138135000000 0.575168612000000 +0.300723934000000 0.915063512000000 0.178500604000000 +0.279204695000000 0.950813167000000 0.357001208000000 +0.294129328000000 0.962217422000000 0.069416901000000 +0.295765584000000 0.942532772000000 0.019833400000000 +0.282675540000000 0.968861561000000 0.257834206000000 +0.277618022000000 0.959936630000000 0.079333602000000 +0.294178912000000 0.936285251000000 0.317334407000000 +0.295765584000000 0.920170613000000 0.049583501000000 +0.297501006000000 0.908815942000000 0.188417304000000 +0.295765584000000 0.920170613000000 0.009916700000000 +0.281832620000000 0.945656532000000 0.089250302000000 +0.305731868000000 0.923641458000000 0.307417707000000 +0.290955984000000 0.921013532000000 0.317334407000000 +0.295914334000000 0.925922349000000 0.019833400000000 +0.295864751000000 0.906535150000000 0.307417707000000 +0.287584306000000 0.934103577000000 0.119000403000000 +0.299286012000000 0.912138135000000 0.198334004000000 +0.298244759000000 0.923542241000000 0.337167807000000 +0.285105131000000 0.939210677000000 0.029750101000000 +0.279303862000000 0.974811681000000 0.396668009000000 +0.277618022000000 0.957060738000000 0.109083702000000 +0.297501006000000 0.925723965000000 0.317334407000000 +0.302459357000000 0.928351891000000 0.079333602000000 +0.289220562000000 0.971886155000000 0.099167002000000 +0.286741387000000 0.945309398000000 0.119000403000000 +0.284262212000000 0.965737850000000 0.019833400000000 +0.296658087000000 0.921112699000000 0.198334004000000 +0.285898467000000 0.946995337000000 0.158667203000000 +0.287584306000000 0.940450265000000 0.158667203000000 +0.290807234000000 0.939954479000000 0.208250704000000 +0.300823101000000 0.904799728000000 0.585085313000000 +0.287633890000000 0.937128170000000 0.009916700000000 +0.292493073000000 0.926963553000000 0.069416901000000 +0.275932183000000 0.954036144000000 0.525585111000000 +0.287485139000000 0.996727539000000 0.019833400000000 +0.292493073000000 0.942929440000000 0.158667203000000 +0.282675540000000 0.925971882000000 0.019833400000000 +0.297550590000000 0.928798192000000 0.069416901000000 +0.292493073000000 0.955821150000000 0.168583904000000 +0.302508940000000 0.931475651000000 0.049583501000000 +0.277618022000000 0.959936630000000 0.168583904000000 +0.284311795000000 0.925575214000000 0.218167405000000 +0.277618022000000 0.974811681000000 0.267750906000000 +0.287485139000000 0.952895674000000 0.039666801000000 +0.282675540000000 0.925971882000000 0.515668411000000 +0.297501006000000 0.952003221000000 0.109083702000000 +0.292592240000000 0.952598223000000 0.148750503000000 +0.284311795000000 0.978034559000000 0.228084105000000 +0.302508940000000 0.904353476000000 0.654502214000000 +0.297501006000000 0.932516954000000 0.000000000000000 +0.279303862000000 0.941789019000000 0.307417707000000 +0.298294342000000 0.920468114000000 0.228084105000000 +0.287633890000000 0.946747369000000 0.208250704000000 +0.292542656000000 0.907576354000000 0.535501812000000 +0.287534723000000 0.974960382000000 0.168583904000000 +0.284311795000000 0.990132933000000 0.000000000000000 +0.285105131000000 0.942185687000000 0.317334407000000 +0.295765584000000 0.920170613000000 0.535501812000000 +0.295914334000000 0.925922349000000 0.178500604000000 +0.279303862000000 0.941789019000000 0.019833400000000 +0.294178912000000 0.936285251000000 0.297501006000000 +0.277618022000000 0.957060738000000 0.178500604000000 +0.302409773000000 0.911096832000000 0.059500201000000 +0.297451423000000 0.942235271000000 0.109083702000000 +0.277717189000000 0.980612901000000 0.287584306000000 +0.287534723000000 0.974960382000000 0.119000403000000 +0.295914334000000 0.935888583000000 0.267750906000000 +0.279353445000000 0.965836968000000 0.327251107000000 +0.287633890000000 0.968762444000000 0.208250704000000 +0.285898467000000 0.999851249000000 0.059500201000000 +0.295914334000000 0.925922349000000 0.148750503000000 +0.275981767000000 0.974811681000000 0.228084105000000 +0.290906401000000 0.933508575000000 0.357001208000000 +0.285948051000000 0.931376484000000 0.000000000000000 +0.285848884000000 0.983984579000000 0.138833803000000 +0.286741387000000 0.945309398000000 0.049583501000000 +0.284311795000000 0.990132933000000 0.109083702000000 +0.298294342000000 0.930434348000000 0.039666801000000 +0.274345511000000 0.966134568000000 0.366917908000000 +0.292542656000000 0.907576354000000 0.307417707000000 +0.290955984000000 0.921013532000000 0.714002415000000 +0.299137262000000 0.915311479000000 0.029750101000000 +0.285948051000000 0.931376484000000 0.218167405000000 +0.280940117000000 0.929393144000000 0.575168612000000 +0.280890534000000 0.974910798000000 0.000000000000000 +0.292592240000000 0.965489933000000 0.089250302000000 +0.284212628000000 0.931872319000000 0.376834608000000 +0.297600173000000 0.912633921000000 0.575168612000000 +0.289220562000000 0.952647806000000 0.208250704000000 +0.297550590000000 0.948780343000000 0.099167002000000 +0.290906401000000 0.936582752000000 0.148750503000000 +0.280791367000000 0.962762840000000 0.357001208000000 +0.287485139000000 0.952895674000000 0.059500201000000 +0.279353445000000 0.947491122000000 0.466084910000000 +0.307318540000000 0.916402316000000 0.009916700000000 +0.295765584000000 0.942532772000000 0.089250302000000 +0.302409773000000 0.911096832000000 0.178500604000000 +0.285948051000000 0.934351494000000 0.069416901000000 +0.285898467000000 0.959391212000000 0.168583904000000 +0.280940117000000 0.941541102000000 0.406584709000000 +0.292592240000000 0.929988146000000 0.297501006000000 +0.294228495000000 0.952350355000000 0.119000403000000 +0.287633890000000 0.930831066000000 0.267750906000000 +0.274295928000000 0.963010758000000 0.416501409000000 +0.295716000000000 0.922897705000000 0.426418109000000 +0.295914334000000 0.925922349000000 0.128917103000000 +0.284262212000000 0.971737454000000 0.228084105000000 +0.292542656000000 0.923641458000000 0.555335212000000 +0.287633890000000 0.968762444000000 0.168583904000000 +0.279254278000000 0.959837414000000 0.109083702000000 +0.297550590000000 0.916104716000000 0.128917103000000 +0.289270145000000 0.920666398000000 0.039666801000000 +0.272659672000000 0.957308705000000 0.476001610000000 +0.279303862000000 0.941789019000000 0.099167002000000 +0.280791367000000 0.962762840000000 0.366917908000000 +0.302409773000000 0.911096832000000 0.168583904000000 +0.287584306000000 0.940450265000000 0.297501006000000 +0.284212628000000 0.956366569000000 0.267750906000000 +0.281039284000000 0.959936630000000 0.208250704000000 +0.289270145000000 0.968663277000000 0.049583501000000 +0.280890534000000 0.977786641000000 0.208250704000000 +0.285997634000000 0.950069464000000 0.228084105000000 +0.277766773000000 0.950763633000000 0.495835011000000 +0.290906401000000 0.952697390000000 0.029750101000000 +0.300823101000000 0.918236856000000 0.148750503000000 +0.290906401000000 0.952697390000000 0.049583501000000 +0.295914334000000 0.925922349000000 0.396668009000000 +0.303996445000000 0.924236410000000 0.178500604000000 +0.284311795000000 0.925575214000000 0.089250302000000 +0.274395095000000 0.974662930000000 0.128917103000000 +0.285948051000000 0.934351494000000 0.406584709000000 +0.292493073000000 0.955821150000000 0.099167002000000 +0.285948051000000 0.978133726000000 0.089250302000000 +0.274345511000000 0.966134568000000 0.009916700000000 +0.287584306000000 0.924831462000000 0.476001610000000 +0.284311795000000 0.950218215000000 0.009916700000000 +0.277568439000000 0.953837810000000 0.218167405000000 +0.285898467000000 0.999851249000000 0.099167002000000 +0.305880618000000 0.913427257000000 0.406584709000000 +0.276080934000000 0.951061134000000 0.634668814000000 +0.305731868000000 0.923641458000000 0.138833803000000 +0.280890534000000 0.953639476000000 0.039666801000000 +0.285948051000000 0.928153557000000 0.257834206000000 +0.284311795000000 0.978034559000000 0.029750101000000 +0.287534723000000 0.956118651000000 0.059500201000000 +0.295021831000000 0.927806472000000 0.059500201000000 +0.299186845000000 0.905394779000000 0.257834206000000 +0.285749717000000 0.953193274000000 0.059500201000000 +0.282675540000000 0.941293184000000 0.128917103000000 +0.296658087000000 0.921112699000000 0.128917103000000 +0.272659672000000 0.957308705000000 0.138833803000000 +0.282725123000000 0.965836968000000 0.000000000000000 +0.292542656000000 0.920368947000000 0.039666801000000 +0.294129328000000 0.923294423000000 0.099167002000000 +0.302508940000000 0.924980212000000 0.049583501000000 +0.277667606000000 0.965985817000000 0.366917908000000 +0.282675540000000 0.941293184000000 0.109083702000000 +0.285997634000000 0.965638683000000 0.029750101000000 +0.287584306000000 0.924831462000000 0.565251912000000 +0.287584306000000 0.940450265000000 0.208250704000000 +0.274345511000000 0.966134568000000 0.347084507000000 +0.295815167000000 0.916947636000000 0.366917908000000 +0.285997634000000 0.971787087000000 0.109083702000000 +0.275981767000000 0.962911591000000 0.119000403000000 +0.294178912000000 0.942929440000000 0.218167405000000 +0.281039284000000 0.941441935000000 0.406584709000000 +0.272659672000000 0.957308705000000 0.257834206000000 +0.294228495000000 0.933111907000000 0.267750906000000 +0.291005568000000 0.914567677000000 0.089250302000000 +0.284212628000000 0.931872319000000 0.148750503000000 +0.291005568000000 0.914567677000000 0.109083702000000 +0.297501006000000 0.906287233000000 0.485918310000000 +0.284361379000000 0.937971090000000 0.168583904000000 +0.275981767000000 0.957060738000000 0.247917505000000 +0.282526789000000 0.977935392000000 0.168583904000000 +0.290856817000000 0.930335231000000 0.495835011000000 +0.277568439000000 0.953837810000000 0.119000403000000 +0.279303862000000 0.956812820000000 0.436334809000000 +0.271866336000000 0.964349562000000 0.059500201000000 +0.282675540000000 0.980910402000000 0.029750101000000 +0.282675540000000 0.980910402000000 0.218167405000000 +0.281882204000000 0.948978627000000 0.297501006000000 +0.290906401000000 0.911195999000000 0.426418109000000 +0.302508940000000 0.931475651000000 0.257834206000000 +0.289270145000000 0.968663277000000 0.138833803000000 +0.279303862000000 0.956812820000000 0.327251107000000 +0.304095612000000 0.917294770000000 0.247917505000000 +0.290955984000000 0.921013532000000 0.585085313000000 +0.287633890000000 0.949871180000000 0.029750101000000 +0.294129328000000 0.939508178000000 0.109083702000000 +0.279353445000000 0.980712018000000 0.029750101000000 +0.280890534000000 0.977786641000000 0.000000000000000 +0.277717189000000 0.969010312000000 0.416501409000000 +0.289220562000000 0.952647806000000 0.039666801000000 +0.299137262000000 0.918633524000000 0.019833400000000 +0.292493073000000 0.904452643000000 0.009916700000000 +0.297550590000000 0.916104716000000 0.436334809000000 +0.290856817000000 0.955870734000000 0.148750503000000 +0.276080934000000 0.966084935000000 0.466084910000000 +0.295021831000000 0.924682761000000 0.287584306000000 +0.279303862000000 0.956812820000000 0.009916700000000 +0.280890534000000 0.983885362000000 0.109083702000000 +0.280890534000000 0.977786641000000 0.168583904000000 +0.276031350000000 0.959986164000000 0.307417707000000 +0.285105131000000 0.939210677000000 0.099167002000000 +0.274295928000000 0.963010758000000 0.138833803000000 +0.290906401000000 0.936582752000000 0.317334407000000 +0.295914334000000 0.909807711000000 0.654502214000000 +0.274345511000000 0.957110321000000 0.555335212000000 +0.277766773000000 0.950763633000000 0.366917908000000 +0.284361379000000 0.940946100000000 0.178500604000000 +0.297550590000000 0.916104716000000 0.466084910000000 +0.274395095000000 0.960134915000000 0.297501006000000 +0.295716000000000 0.922897705000000 0.049583501000000 +0.277667606000000 0.965985817000000 0.109083702000000 +0.282675540000000 0.980910402000000 0.208250704000000 +0.302508940000000 0.924980212000000 0.337167807000000 +0.272659672000000 0.957308705000000 0.069416901000000 +0.300872684000000 0.931574818000000 0.109083702000000 +0.279353445000000 0.938665259000000 0.555335212000000 +0.280840950000000 0.947491122000000 0.138833803000000 +0.289270145000000 0.920666398000000 0.535501812000000 +0.276080934000000 0.966084935000000 0.009916700000000 +0.279254278000000 0.959837414000000 0.218167405000000 +0.292592240000000 0.917294770000000 0.148750503000000 +0.285948051000000 0.937425671000000 0.049583501000000 +0.297550590000000 0.916104716000000 0.208250704000000 +0.295914334000000 0.909807711000000 0.128917103000000 +0.279303862000000 0.983835828000000 0.128917103000000 +0.285898467000000 0.996330871000000 0.178500604000000 +0.290856817000000 0.930335231000000 0.238000805000000 +0.282625956000000 0.956515319000000 0.307417707000000 +0.282625956000000 0.962713257000000 0.208250704000000 +0.294228495000000 0.933111907000000 0.128917103000000 +0.289319729000000 0.965985817000000 0.069416901000000 +0.277717189000000 0.969010312000000 0.238000805000000 +0.292542656000000 0.907576354000000 0.406584709000000 +0.279254278000000 0.962961224000000 0.277667606000000 +0.292542656000000 0.923641458000000 0.327251107000000 +0.284262212000000 0.934847280000000 0.277667606000000 +0.279254278000000 0.959837414000000 0.366917908000000 +0.275981767000000 0.974811681000000 0.357001208000000 +0.295864751000000 0.906535150000000 0.208250704000000 +0.305731868000000 0.923641458000000 0.029750101000000 +0.290906401000000 0.952697390000000 0.019833400000000 +0.285997634000000 0.968762444000000 0.128917103000000 +0.284212628000000 0.962564506000000 0.218167405000000 +0.282725123000000 0.965836968000000 0.317334407000000 +0.296757254000000 0.927806472000000 0.198334004000000 +0.287485139000000 0.952895674000000 0.317334407000000 +0.294327662000000 0.910353129000000 0.267750906000000 +0.274345511000000 0.957110321000000 0.138833803000000 +0.300872684000000 0.901576800000000 0.624752113000000 +0.297600173000000 0.912633921000000 0.456168210000000 +0.295815167000000 0.916947636000000 0.436334809000000 +0.285997634000000 0.925228180000000 0.307417707000000 +0.281039284000000 0.968861561000000 0.148750503000000 +0.290807234000000 0.939954479000000 0.059500201000000 +0.292542656000000 0.913476840000000 0.436334809000000 +0.292592240000000 0.917294770000000 0.357001208000000 +0.285997634000000 0.925228180000000 0.366917908000000 +0.285997634000000 0.925228180000000 0.555335212000000 +0.289220562000000 0.946499452000000 0.079333602000000 +0.272858006000000 0.960085331000000 0.357001208000000 +0.294030161000000 0.920121079000000 0.416501409000000 +0.302508940000000 0.907576354000000 0.446251510000000 +0.292592240000000 0.965489933000000 0.000000000000000 +0.272659672000000 0.957308705000000 0.723919116000000 +0.291005568000000 0.914567677000000 0.188417304000000 +0.287485139000000 1.000000000000000 0.158667203000000 +0.297550590000000 0.902717220000000 0.436334809000000 +0.299286012000000 0.912138135000000 0.109083702000000 +0.277618022000000 0.959936630000000 0.247917505000000 +0.294278079000000 0.945805283000000 0.009916700000000 +0.281882204000000 0.948978627000000 0.138833803000000 +0.280989701000000 0.935343164000000 0.485918310000000 +0.294228495000000 0.933111907000000 0.317334407000000 +0.290906401000000 0.908022655000000 0.614835413000000 +0.295765584000000 0.952151971000000 0.099167002000000 +0.297401839000000 0.922501037000000 0.396668009000000 +0.299137262000000 0.918633524000000 0.109083702000000 +0.287485139000000 0.943574025000000 0.138833803000000 +0.282576373000000 0.974910798000000 0.238000805000000 +0.277717189000000 0.969010312000000 0.009916700000000 +0.285948051000000 0.937425671000000 0.069416901000000 +0.284262212000000 0.934847280000000 0.247917505000000 +0.279353445000000 0.938665259000000 0.416501409000000 +0.280989701000000 0.944565695000000 0.069416901000000 +0.274345511000000 0.966134568000000 0.426418109000000 +0.280890534000000 0.953639476000000 0.416501409000000 +0.292493073000000 0.904452643000000 0.119000403000000 +0.279353445000000 0.938665259000000 0.337167807000000 +0.274494262000000 0.954333645000000 0.009916700000000 +0.289270145000000 0.920666398000000 0.783419317000000 +0.287534723000000 0.974960382000000 0.009916700000000 +0.302508940000000 0.907576354000000 0.188417304000000 +0.298244759000000 0.923542241000000 0.396668009000000 +0.281882204000000 0.948978627000000 0.039666801000000 +0.300773517000000 0.921608534000000 0.347084507000000 +0.292592240000000 0.933211123000000 0.327251107000000 +0.275981767000000 0.962911591000000 0.376834608000000 +0.289121395000000 0.988000793000000 0.049583501000000 +0.279353445000000 0.980712018000000 0.317334407000000 +0.274345511000000 0.966134568000000 0.119000403000000 +0.300823101000000 0.904799728000000 0.069416901000000 +0.289220562000000 0.943474858000000 0.069416901000000 +0.272858006000000 0.960085331000000 0.436334809000000 +0.287683473000000 0.971687870000000 0.138833803000000 +0.284311795000000 0.990132933000000 0.247917505000000 +0.284311795000000 0.996231704000000 0.000000000000000 +0.282625956000000 0.934996129000000 0.376834608000000 +0.299137262000000 0.908815942000000 0.505751711000000 +0.295765584000000 0.942532772000000 0.178500604000000 +0.274395095000000 0.960134915000000 0.634668814000000 +0.290906401000000 0.908022655000000 0.158667203000000 +0.285848884000000 0.983984579000000 0.049583501000000 +0.280890534000000 0.977786641000000 0.218167405000000 +0.292542656000000 0.945904450000000 0.069416901000000 +0.274444678000000 0.968960778000000 0.168583904000000 +0.277717189000000 0.969010312000000 0.257834206000000 +0.292542656000000 0.920368947000000 0.604918713000000 +0.296658087000000 0.921112699000000 0.089250302000000 +0.295021831000000 0.924682761000000 0.000000000000000 +0.299087678000000 0.921806868000000 0.148750503000000 +0.300872684000000 0.901576800000000 0.247917505000000 +0.297501006000000 0.908815942000000 0.357001208000000 +0.295864751000000 0.906535150000000 0.604918713000000 +0.282675540000000 0.925971882000000 0.476001610000000 +0.300922268000000 0.908220989000000 0.357001208000000 +0.294178912000000 0.942929440000000 0.039666801000000 +0.280989701000000 0.935343164000000 0.376834608000000 +0.285997634000000 0.925228180000000 0.386751308000000 +0.294228495000000 0.907030935000000 0.347084507000000 +0.282576373000000 0.947193621000000 0.009916700000000 +0.290856817000000 0.955870734000000 0.029750101000000 +0.292592240000000 0.949375295000000 0.029750101000000 +0.292493073000000 0.926963553000000 0.218167405000000 +0.281039284000000 0.980811235000000 0.089250302000000 +0.289220562000000 0.924385161000000 0.525585111000000 +0.279353445000000 0.965836968000000 0.069416901000000 +0.272858006000000 0.960085331000000 0.148750503000000 +0.284311795000000 0.941045217000000 0.168583904000000 +0.292542656000000 0.923641458000000 0.079333602000000 +0.274295928000000 0.963010758000000 0.257834206000000 +0.277667606000000 0.965985817000000 0.416501409000000 +0.292542656000000 0.920368947000000 0.148750503000000 +0.272858006000000 0.960085331000000 0.644585514000000 +0.287633890000000 0.946747369000000 0.009916700000000 +0.277568439000000 0.953837810000000 0.436334809000000 +0.300823101000000 0.918236856000000 0.158667203000000 +0.287633890000000 0.937128170000000 0.089250302000000 +0.300922268000000 0.908220989000000 0.267750906000000 +0.287584306000000 0.924831462000000 0.535501812000000 +0.279303862000000 0.974811681000000 0.376834608000000 +0.281039284000000 0.968861561000000 0.029750101000000 +0.305731868000000 0.910055529000000 0.238000805000000 +0.294278079000000 0.912435587000000 0.476001610000000 +0.285948051000000 0.934351494000000 0.287584306000000 +0.294278079000000 0.912435587000000 0.297501006000000 +0.290906401000000 0.933508575000000 0.277667606000000 +0.274444678000000 0.968960778000000 0.277667606000000 +0.292542656000000 0.923641458000000 0.436334809000000 +0.292542656000000 0.923641458000000 0.456168210000000 +0.279799697000000 0.944565695000000 0.208250704000000 +0.292493073000000 0.939855263000000 0.297501006000000 +0.294129328000000 0.916798885000000 0.555335212000000 +0.290906401000000 0.908022655000000 0.624752113000000 +0.300922268000000 0.911245583000000 0.019833400000000 +0.285898467000000 0.940747766000000 0.257834206000000 +0.304145196000000 0.914022259000000 0.218167405000000 +0.299137262000000 0.941888236000000 0.158667203000000 +0.292542656000000 0.920368947000000 0.535501812000000 +0.276080934000000 0.971687870000000 0.277667606000000 +0.299186845000000 0.935491915000000 0.168583904000000 +0.292592240000000 0.917294770000000 0.089250302000000 +0.297550590000000 0.902717220000000 0.694169015000000 +0.299137262000000 0.908815942000000 0.535501812000000 +0.307417707000000 0.913328090000000 0.089250302000000 +0.298294342000000 0.920468114000000 0.218167405000000 +0.284311795000000 0.925575214000000 0.168583904000000 +0.284212628000000 0.987058805000000 0.168583904000000 +0.272659672000000 0.957308705000000 0.287584306000000 +0.294327662000000 0.910353129000000 0.059500201000000 +0.300823101000000 0.904799728000000 0.604918713000000 +0.285997634000000 0.968762444000000 0.019833400000000 +0.286691803000000 0.942185687000000 0.138833803000000 +0.285848884000000 0.943772359000000 0.228084105000000 +0.298244759000000 0.923542241000000 0.000000000000000 +0.284212628000000 0.962564506000000 0.059500201000000 +0.277618022000000 0.971985371000000 0.059500201000000 +0.276080934000000 0.977538674000000 0.228084105000000 +0.302409773000000 0.911096832000000 0.426418109000000 +0.294129328000000 0.923294423000000 0.476001610000000 +0.282625956000000 0.962713257000000 0.099167002000000 +0.281039284000000 0.965787434000000 0.099167002000000 +0.277717189000000 0.969010312000000 0.148750503000000 +0.289170978000000 0.940202347000000 0.059500201000000 +0.295864751000000 0.906535150000000 0.128917103000000 +0.297600173000000 0.912633921000000 0.257834206000000 +0.281882204000000 0.948978627000000 0.307417707000000 +0.279204695000000 0.950813167000000 0.208250704000000 +0.279303862000000 0.956812820000000 0.505751711000000 +0.297550590000000 0.916104716000000 0.009916700000000 +0.274345511000000 0.957110321000000 0.535501812000000 +0.292592240000000 0.936384467000000 0.366917908000000 +0.287534723000000 0.974960382000000 0.128917103000000 +0.299186845000000 0.935491915000000 0.128917103000000 +0.290906401000000 0.911195999000000 0.307417707000000 +0.298244759000000 0.923542241000000 0.357001208000000 +0.284311795000000 0.978034559000000 0.049583501000000 +0.282625956000000 0.938070257000000 0.366917908000000 +0.295914334000000 0.935888583000000 0.089250302000000 +0.279353445000000 0.947491122000000 0.307417707000000 +0.300872684000000 0.901576800000000 0.723919116000000 +0.279303862000000 0.941789019000000 0.109083702000000 +0.275981767000000 0.957060738000000 0.119000403000000 +0.298294342000000 0.920468114000000 0.287584306000000 +0.286790970000000 0.948333992000000 0.049583501000000 +0.295864751000000 0.906535150000000 0.178500604000000 +0.290955984000000 0.968613743000000 0.049583501000000 +0.304095612000000 0.917294770000000 0.158667203000000 +0.284212628000000 0.931872319000000 0.426418109000000 +0.285105131000000 0.945408615000000 0.238000805000000 +0.285948051000000 0.934351494000000 0.059500201000000 +0.290856817000000 0.930335231000000 0.267750906000000 +0.285848884000000 0.983984579000000 0.009916700000000 +0.276080934000000 0.966084935000000 0.247917505000000 +0.290906401000000 0.952697390000000 0.079333602000000 +0.296757254000000 0.927806472000000 0.049583501000000 +0.280940117000000 0.929393144000000 0.119000403000000 +0.300872684000000 0.931574818000000 0.168583904000000 +0.282675540000000 0.971935788000000 0.178500604000000 +0.295963918000000 0.932616072000000 0.148750503000000 +0.299236429000000 0.931822686000000 0.218167405000000 +0.279353445000000 0.968911194000000 0.257834206000000 +0.295021831000000 0.927806472000000 0.089250302000000 +0.285898467000000 0.962514923000000 0.009916700000000 +0.284311795000000 0.996231704000000 0.238000805000000 +0.279353445000000 0.980712018000000 0.277667606000000 +0.294278079000000 0.912435587000000 0.495835011000000 +0.294278079000000 0.912435587000000 0.634668814000000 +0.272858006000000 0.960085331000000 0.198334004000000 +0.304194779000000 0.907526820000000 0.476001610000000 +0.289270145000000 0.927508971000000 0.277667606000000 +0.280989701000000 0.935343164000000 0.247917505000000 +0.285848884000000 0.983984579000000 0.029750101000000 +0.295963918000000 0.913030589000000 0.406584709000000 +0.299137262000000 0.908815942000000 0.128917103000000 +0.300872684000000 0.931574818000000 0.099167002000000 +0.282675540000000 0.925971882000000 0.337167807000000 +0.292592240000000 0.933211123000000 0.337167807000000 +0.285898467000000 0.946995337000000 0.039666801000000 +0.279254278000000 0.959837414000000 0.228084105000000 +0.279353445000000 0.965836968000000 0.238000805000000 +0.280989701000000 0.935343164000000 0.218167405000000 +0.279254278000000 0.962961224000000 0.317334407000000 +0.279353445000000 0.980712018000000 0.208250704000000 +0.294278079000000 0.912435587000000 0.406584709000000 +0.281832620000000 0.942582405000000 0.009916700000000 +0.271866336000000 0.964349562000000 0.039666801000000 +0.287633890000000 0.930831066000000 0.476001610000000 +0.277568439000000 0.953837810000000 0.257834206000000 +0.279303862000000 0.941789019000000 0.000000000000000 +0.300922268000000 0.911245583000000 0.327251107000000 +0.279849280000000 0.945011947000000 0.188417304000000 +0.294228495000000 0.907030935000000 0.545418512000000 +0.282625956000000 0.956515319000000 0.357001208000000 +0.296658087000000 0.921112699000000 0.287584306000000 +0.299186845000000 0.935491915000000 0.158667203000000 +0.281832620000000 0.945656532000000 0.337167807000000 +0.274295928000000 0.963010758000000 0.009916700000000 +0.287534723000000 0.987505007000000 0.109083702000000 +0.279303862000000 0.974811681000000 0.327251107000000 +0.292592240000000 0.929988146000000 0.287584306000000 +0.298294342000000 0.930434348000000 0.198334004000000 +0.285848884000000 0.987257090000000 0.059500201000000 +0.289270145000000 0.949722330000000 0.109083702000000 +0.282675540000000 0.993058359000000 0.089250302000000 +0.297600173000000 0.912633921000000 0.119000403000000 +0.300922268000000 0.908220989000000 0.386751308000000 +0.282625956000000 0.928798192000000 0.128917103000000 +0.294178912000000 0.958697043000000 0.089250302000000 +0.297550590000000 0.902717220000000 0.138833803000000 +0.297600173000000 0.912633921000000 0.515668411000000 +0.276080934000000 0.951061134000000 0.109083702000000 +0.282576373000000 0.987058805000000 0.079333602000000 +0.287584306000000 0.934103577000000 0.466084910000000 +0.294129328000000 0.916798885000000 0.069416901000000 +0.287633890000000 0.946747369000000 0.327251107000000 +0.305880618000000 0.913427257000000 0.089250302000000 +0.297401839000000 0.922501037000000 0.069416901000000 +0.285948051000000 0.931376484000000 0.158667203000000 +0.294129328000000 0.923294423000000 0.009916700000000 +0.279254278000000 0.959837414000000 0.267750906000000 +0.292641823000000 0.968613743000000 0.079333602000000 +0.289270145000000 0.930831066000000 0.039666801000000 +0.280989701000000 0.944565695000000 0.029750101000000 +0.287584306000000 0.934103577000000 0.039666801000000 +0.276080934000000 0.966084935000000 0.079333602000000 +0.295021831000000 0.924682761000000 0.416501409000000 +0.289270145000000 0.920666398000000 0.357001208000000 +0.294129328000000 0.916798885000000 0.257834206000000 +0.294129328000000 0.962217422000000 0.019833400000000 +0.275932183000000 0.954036144000000 0.555335212000000 +0.297501006000000 0.919278060000000 0.376834608000000 +0.285997634000000 0.925228180000000 0.515668411000000 +0.284361379000000 0.937971090000000 0.267750906000000 +0.287485139000000 0.952895674000000 0.178500604000000 +0.282526789000000 0.977935392000000 0.109083702000000 +0.287633890000000 0.946747369000000 0.158667203000000 +0.296757254000000 0.927806472000000 0.148750503000000 +0.281882204000000 0.948978627000000 0.198334004000000 +0.285848884000000 0.987257090000000 0.208250704000000 +0.300872684000000 0.901576800000000 0.555335212000000 +0.287633890000000 0.946747369000000 0.059500201000000 +0.284212628000000 0.956366569000000 0.128917103000000 +0.292592240000000 0.929988146000000 0.049583501000000 +0.300823101000000 0.918236856000000 0.376834608000000 +0.294129328000000 0.923294423000000 0.376834608000000 +0.292592240000000 0.929988146000000 0.357001208000000 +0.286096801000000 0.990232149000000 0.059500201000000 +0.279204695000000 0.953639476000000 0.287584306000000 +0.287633890000000 0.968762444000000 0.039666801000000 +0.290856817000000 0.943177357000000 0.317334407000000 +0.297550590000000 0.902717220000000 0.198334004000000 +0.282576373000000 0.959688663000000 0.158667203000000 +0.304095612000000 0.917294770000000 0.000000000000000 +0.292344322000000 0.972034905000000 0.019833400000000 +0.272659672000000 0.963159508000000 0.267750906000000 +0.292542656000000 0.945904450000000 0.148750503000000 +0.295864751000000 0.906535150000000 0.188417304000000 +0.302508940000000 0.907576354000000 0.039666801000000 +0.277618022000000 0.957060738000000 0.446251510000000 +0.282675540000000 0.971935788000000 0.019833400000000 +0.294129328000000 0.916798885000000 0.634668814000000 +0.299137262000000 0.938863642000000 0.277667606000000 +0.302508940000000 0.924980212000000 0.228084105000000 +0.282675540000000 0.925971882000000 0.148750503000000 +0.279849280000000 0.945011947000000 0.416501409000000 +0.281039284000000 0.941441935000000 0.218167405000000 +0.287633890000000 0.965886601000000 0.168583904000000 +0.284212628000000 0.956366569000000 0.079333602000000 +0.289270145000000 0.920666398000000 0.495835011000000 +0.287534723000000 0.962415805000000 0.039666801000000 +0.292542656000000 0.945904450000000 0.178500604000000 +0.272659672000000 0.957308705000000 0.317334407000000 +0.299137262000000 0.908815942000000 0.575168612000000 +0.280840950000000 0.947491122000000 0.366917908000000 +0.285948051000000 0.931376484000000 0.198334004000000 +0.290856817000000 0.943177357000000 0.247917505000000 +0.292592240000000 0.917294770000000 0.049583501000000 +0.276080934000000 0.951061134000000 0.069416901000000 +0.274345511000000 0.966134568000000 0.049583501000000 +0.285948051000000 0.978133726000000 0.178500604000000 +0.292542656000000 0.920368947000000 0.099167002000000 +0.300922268000000 0.911245583000000 0.515668411000000 +0.284311795000000 0.941045217000000 0.218167405000000 +0.294278079000000 0.912435587000000 0.238000805000000 +0.284212628000000 0.987058805000000 0.307417707000000 +0.287485139000000 1.000000000000000 0.029750101000000 +0.285997634000000 0.971787087000000 0.238000805000000 +0.286691803000000 0.939111461000000 0.188417304000000 +0.283468876000000 0.948929043000000 0.059500201000000 +0.284262212000000 0.971737454000000 0.267750906000000 +0.282675540000000 0.993058359000000 0.079333602000000 +0.286790970000000 0.948333992000000 0.019833400000000 +0.280940117000000 0.956614437000000 0.357001208000000 +0.274345511000000 0.966134568000000 0.247917505000000 +0.279303862000000 0.941789019000000 0.495835011000000 +0.287633890000000 0.965886601000000 0.019833400000000 +0.280940117000000 0.956614437000000 0.039666801000000 +0.295914334000000 0.909807711000000 0.287584306000000 +0.300723934000000 0.915063512000000 0.456168210000000 +0.279204695000000 0.953639476000000 0.456168210000000 +0.279353445000000 0.980712018000000 0.000000000000000 +0.280940117000000 0.941541102000000 0.178500604000000 +0.285997634000000 0.925228180000000 0.505751711000000 +0.279849280000000 0.945011947000000 0.307417707000000 +0.287633890000000 0.946747369000000 0.228084105000000 +0.279303862000000 0.956812820000000 0.247917505000000 +0.290906401000000 0.933508575000000 0.218167405000000 +0.294030161000000 0.920121079000000 0.466084910000000 +0.296658087000000 0.930880699000000 0.188417304000000 +0.290906401000000 0.936582752000000 0.257834206000000 +0.279303862000000 0.977786641000000 0.277667606000000 +0.287633890000000 0.937128170000000 0.347084507000000 +0.289270145000000 0.927508971000000 0.267750906000000 +0.285997634000000 0.971787087000000 0.069416901000000 +0.290856817000000 0.930335231000000 0.317334407000000 +0.292542656000000 0.907576354000000 0.198334004000000 +0.280791367000000 0.962762840000000 0.287584306000000 +0.299186845000000 0.905394779000000 0.307417707000000 +0.298343926000000 0.927112303000000 0.178500604000000 +0.294327662000000 0.910353129000000 0.208250704000000 +0.300922268000000 0.908220989000000 0.327251107000000 +0.285848884000000 0.943772359000000 0.099167002000000 +0.282625956000000 0.929046060000000 0.039666801000000 +0.282625956000000 0.929046060000000 0.376834608000000 +0.281039284000000 0.938516508000000 0.039666801000000 +0.280840950000000 0.971787087000000 0.198334004000000 +0.297501006000000 0.925723965000000 0.148750503000000 +0.300823101000000 0.904799728000000 0.416501409000000 +0.281039284000000 0.941441935000000 0.416501409000000 +0.292592240000000 0.929988146000000 0.158667203000000 +0.297451423000000 0.942235271000000 0.069416901000000 +0.284262212000000 0.928153557000000 0.119000403000000 +0.290856817000000 0.924087709000000 0.495835011000000 +0.286691803000000 0.942185687000000 0.119000403000000 +0.279303862000000 0.941789019000000 0.357001208000000 +0.279303862000000 0.974811681000000 0.198334004000000 +0.296707670000000 0.924286043000000 0.277667606000000 +0.281832620000000 0.942582405000000 0.337167807000000 +0.292493073000000 0.939855263000000 0.109083702000000 +0.295021831000000 0.927806472000000 0.069416901000000 +0.295914334000000 0.935888583000000 0.019833400000000 +0.285948051000000 0.937425671000000 0.386751308000000 +0.289270145000000 0.920666398000000 0.089250302000000 +0.280940117000000 0.941541102000000 0.347084507000000 +0.305880618000000 0.913427257000000 0.257834206000000 +0.276080934000000 0.951061134000000 0.436334809000000 +0.300872684000000 0.901576800000000 0.694169015000000 +0.272709256000000 0.966134568000000 0.039666801000000 +0.295864751000000 0.929293977000000 0.228084105000000 +0.272858006000000 0.960085331000000 0.218167405000000 +0.292493073000000 0.904452643000000 0.485918310000000 +0.297501006000000 0.906287233000000 0.009916700000000 +0.299186845000000 0.905394779000000 0.297501006000000 +0.302508940000000 0.904353476000000 0.287584306000000 +0.276031350000000 0.959986164000000 0.386751308000000 +0.274444678000000 0.968960778000000 0.247917505000000 +0.289220562000000 0.924385161000000 0.138833803000000 +0.285997634000000 0.925228180000000 0.238000805000000 +0.287584306000000 0.984331663000000 0.019833400000000 +0.307516874000000 0.919922695000000 0.238000805000000 +0.290906401000000 0.911195999000000 0.545418512000000 +0.277618022000000 0.971985371000000 0.208250704000000 +0.292493073000000 0.926963553000000 0.049583501000000 +0.300823101000000 0.934996129000000 0.000000000000000 +0.287633890000000 0.968762444000000 0.059500201000000 +0.299236429000000 0.931822686000000 0.198334004000000 +0.275932183000000 0.954036144000000 0.515668411000000 +0.284361379000000 0.937971090000000 0.000000000000000 +0.277618022000000 0.957060738000000 0.585085313000000 +0.295864751000000 0.906535150000000 0.019833400000000 +0.282725123000000 0.965836968000000 0.247917505000000 +0.285997634000000 0.971787087000000 0.039666801000000 +0.285997634000000 0.925228180000000 0.466084910000000 +0.281039284000000 0.965787434000000 0.009916700000000 +0.300823101000000 0.904799728000000 0.009916700000000 +0.297501006000000 0.925723965000000 0.168583904000000 +0.280890534000000 0.953639476000000 0.029750101000000 +0.287485139000000 0.943574025000000 0.287584306000000 +0.305682284000000 0.920071446000000 0.238000805000000 +0.275981767000000 0.957060738000000 0.634668814000000 +0.289270145000000 0.930831066000000 0.079333602000000 +0.279353445000000 0.965836968000000 0.029750101000000 +0.298294342000000 0.930434348000000 0.277667606000000 +0.276080934000000 0.951061134000000 0.565251912000000 +0.281039284000000 0.941441935000000 0.168583904000000 +0.282625956000000 0.984034212000000 0.128917103000000 +0.282625956000000 0.962713257000000 0.119000403000000 +0.294228495000000 0.929591478000000 0.416501409000000 +0.280940117000000 0.929393144000000 0.247917505000000 +0.289270145000000 0.930831066000000 0.267750906000000 +0.300823101000000 0.934996129000000 0.238000805000000 +0.274295928000000 0.963010758000000 0.525585111000000 +0.282625956000000 0.962713257000000 0.337167807000000 +0.279254278000000 0.959837414000000 0.009916700000000 +0.300922268000000 0.911245583000000 0.485918310000000 +0.289220562000000 0.952647806000000 0.059500201000000 +0.284163045000000 0.959490280000000 0.158667203000000 +0.275981767000000 0.962911591000000 0.406584709000000 +0.282576373000000 0.996033369000000 0.148750503000000 +0.294178912000000 0.936285251000000 0.277667606000000 +0.286790970000000 0.948333992000000 0.039666801000000 +0.295765584000000 0.942532772000000 0.039666801000000 +0.284262212000000 0.971737454000000 0.049583501000000 +0.290906401000000 0.911195999000000 0.148750503000000 +0.292592240000000 0.917294770000000 0.267750906000000 +0.280890534000000 0.974910798000000 0.009916700000000 +0.271866336000000 0.964349562000000 0.347084507000000 +0.284212628000000 0.962564506000000 0.277667606000000 +0.287633890000000 0.949871180000000 0.128917103000000 +0.289270145000000 0.949722330000000 0.218167405000000 +0.283419292000000 0.942780689000000 0.019833400000000 +0.279353445000000 0.980712018000000 0.148750503000000 +0.307268956000000 0.923492707000000 0.287584306000000 +0.299137262000000 0.915311479000000 0.545418512000000 +0.272858006000000 0.960085331000000 0.188417304000000 +0.300922268000000 0.911245583000000 0.218167405000000 +0.304095612000000 0.917294770000000 0.109083702000000 +0.287683473000000 0.971687870000000 0.148750503000000 +0.292592240000000 0.952598223000000 0.168583904000000 +0.292493073000000 0.926963553000000 0.059500201000000 +0.302508940000000 0.904353476000000 0.247917505000000 +0.302409773000000 0.911096832000000 0.505751711000000 +0.280890534000000 0.953639476000000 0.079333602000000 +0.285105131000000 0.945408615000000 0.198334004000000 +0.289170978000000 0.940202347000000 0.009916700000000 +0.297501006000000 0.935591082000000 0.119000403000000 +0.295914334000000 0.909807711000000 0.634668814000000 +0.297401839000000 0.922501037000000 0.218167405000000 +0.300922268000000 0.908220989000000 0.218167405000000 +0.282625956000000 0.929046060000000 0.059500201000000 +0.292542656000000 0.923641458000000 0.059500201000000 +0.284311795000000 0.925575214000000 0.049583501000000 +0.272709256000000 0.966134568000000 0.297501006000000 +0.292592240000000 0.917294770000000 0.069416901000000 +0.297451423000000 0.938962760000000 0.158667203000000 +0.272659672000000 0.963159508000000 0.555335212000000 +0.280940117000000 0.956614437000000 0.297501006000000 +0.283419292000000 0.939706512000000 0.029750101000000 +0.282576373000000 0.947193621000000 0.287584306000000 +0.305682284000000 0.920071446000000 0.069416901000000 +0.272709256000000 0.966134568000000 0.049583501000000 +0.290906401000000 0.936582752000000 0.277667606000000 +0.299137262000000 0.938863642000000 0.128917103000000 +0.294178912000000 0.936285251000000 0.049583501000000 +0.286691803000000 0.939111461000000 0.069416901000000 +0.275981767000000 0.957060738000000 0.327251107000000 +0.272758839000000 0.968861561000000 0.079333602000000 +0.289270145000000 0.927508971000000 0.198334004000000 +0.287485139000000 0.943574025000000 0.257834206000000 +0.277618022000000 0.959936630000000 0.366917908000000 +0.300872684000000 0.901576800000000 0.406584709000000 +0.295914334000000 0.925922349000000 0.099167002000000 +0.276080934000000 0.966084935000000 0.436334809000000 +0.292592240000000 0.936384467000000 0.089250302000000 +0.304095612000000 0.917294770000000 0.337167807000000 +0.294178912000000 0.926517301000000 0.317334407000000 +0.299186845000000 0.952052754000000 0.019833400000000 +0.292542656000000 0.913476840000000 0.505751711000000 +0.298244759000000 0.923542241000000 0.059500201000000 +0.284262212000000 0.971737454000000 0.257834206000000 +0.281832620000000 0.945656532000000 0.297501006000000 +0.285898467000000 0.999851249000000 0.138833803000000 +0.284311795000000 0.978034559000000 0.198334004000000 +0.279849280000000 0.945011947000000 0.257834206000000 +0.271122584000000 0.966134568000000 0.089250302000000 +0.284311795000000 0.996231704000000 0.168583904000000 +0.285105131000000 0.945408615000000 0.337167807000000 +0.294129328000000 0.916798885000000 0.396668009000000 +0.294278079000000 0.945805283000000 0.039666801000000 +0.277618022000000 0.959936630000000 0.000000000000000 +0.304145196000000 0.914022259000000 0.257834206000000 +0.290906401000000 0.933508575000000 0.327251107000000 +0.275981767000000 0.974811681000000 0.307417707000000 +0.287534723000000 0.962415805000000 0.208250704000000 +0.300922268000000 0.911245583000000 0.257834206000000 +0.294178912000000 0.926517301000000 0.376834608000000 +0.294327662000000 0.910353129000000 0.069416901000000 +0.284311795000000 0.978034559000000 0.019833400000000 +0.304095612000000 0.917294770000000 0.376834608000000 +0.300922268000000 0.908220989000000 0.466084910000000 +0.294327662000000 0.910353129000000 0.277667606000000 +0.292592240000000 0.952598223000000 0.119000403000000 +0.289270145000000 0.933954826000000 0.019833400000000 +0.287633890000000 0.968762444000000 0.000000000000000 +0.284311795000000 0.925575214000000 0.228084105000000 +0.281832620000000 0.939706512000000 0.446251510000000 +0.279204695000000 0.950813167000000 0.267750906000000 +0.290955984000000 0.968613743000000 0.000000000000000 +0.280840950000000 0.971787087000000 0.208250704000000 +0.274345511000000 0.966134568000000 0.327251107000000 +0.274345511000000 0.966134568000000 0.257834206000000 +0.290955984000000 0.946400285000000 0.178500604000000 +0.292592240000000 0.965489933000000 0.049583501000000 +0.284361379000000 0.937971090000000 0.089250302000000 +0.305880618000000 0.913427257000000 0.218167405000000 +0.276080934000000 0.951061134000000 0.247917505000000 +0.282625956000000 0.929046060000000 0.089250302000000 +0.279303862000000 0.983835828000000 0.267750906000000 +0.302409773000000 0.934847280000000 0.128917103000000 +0.290906401000000 0.936582752000000 0.079333602000000 +0.281832620000000 0.942582405000000 0.307417707000000 +0.284311795000000 0.990132933000000 0.039666801000000 +0.285898467000000 0.940747766000000 0.019833400000000 +0.279204695000000 0.953639476000000 0.416501409000000 +0.302409773000000 0.911096832000000 0.307417707000000 +0.296658087000000 0.921112699000000 0.396668009000000 +0.289220562000000 0.952647806000000 0.198334004000000 +0.284311795000000 0.968762444000000 0.218167405000000 +0.279204695000000 0.950813167000000 0.138833803000000 +0.280840950000000 0.971787087000000 0.218167405000000 +0.287485139000000 0.952895674000000 0.119000403000000 +0.302508940000000 0.931475651000000 0.079333602000000 +0.292542656000000 0.923641458000000 0.277667606000000 +0.290856817000000 0.943177357000000 0.158667203000000 +0.297501006000000 0.908815942000000 0.158667203000000 +0.287485139000000 0.996727539000000 0.158667203000000 +0.302508940000000 0.917790654000000 0.238000805000000 +0.294030161000000 0.920121079000000 0.277667606000000 +0.302508940000000 0.907576354000000 0.366917908000000 +0.295021831000000 0.924682761000000 0.238000805000000 +0.279353445000000 0.968911194000000 0.218167405000000 +0.302409773000000 0.911096832000000 0.416501409000000 +0.280840950000000 0.971787087000000 0.357001208000000 +0.285898467000000 0.940747766000000 0.357001208000000 +0.280890534000000 0.974910798000000 0.148750503000000 +0.279204695000000 0.953639476000000 0.327251107000000 +0.280989701000000 0.935343164000000 0.277667606000000 +0.300872684000000 0.901576800000000 0.684252315000000 +0.307318540000000 0.916402316000000 0.059500201000000 +0.307268956000000 0.923492707000000 0.178500604000000 +0.295963918000000 0.932616072000000 0.049583501000000 +0.290856817000000 0.965836968000000 0.168583904000000 +0.276031350000000 0.959986164000000 0.575168612000000 +0.287633890000000 0.930831066000000 0.069416901000000 +0.280840950000000 0.971787087000000 0.000000000000000 +0.274295928000000 0.963010758000000 0.575168612000000 +0.274444678000000 0.968960778000000 0.119000403000000 +0.290955984000000 0.921013532000000 0.257834206000000 +0.281882204000000 0.948978627000000 0.386751308000000 +0.290906401000000 0.911195999000000 0.029750101000000 +0.287485139000000 0.952895674000000 0.208250704000000 +0.290906401000000 0.933508575000000 0.376834608000000 +0.296658087000000 0.921112699000000 0.357001208000000 +0.281832620000000 0.942582405000000 0.119000403000000 +0.281039284000000 0.950565349000000 0.357001208000000 +0.305682284000000 0.920071446000000 0.128917103000000 +0.295815167000000 0.945706116000000 0.009916700000000 +0.291005568000000 0.914567677000000 0.228084105000000 +0.282675540000000 0.993058359000000 0.218167405000000 +0.289270145000000 0.920666398000000 0.505751711000000 +0.290906401000000 0.927211470000000 0.386751308000000 +0.295021831000000 0.927806472000000 0.247917505000000 +0.280940117000000 0.929393144000000 0.317334407000000 +0.274295928000000 0.963010758000000 0.287584306000000 +0.290955984000000 0.949524045000000 0.188417304000000 +0.302508940000000 0.904353476000000 0.604918713000000 +0.280940117000000 0.932268987000000 0.039666801000000 +0.284262212000000 0.934847280000000 0.327251107000000 +0.287534723000000 0.962415805000000 0.079333602000000 +0.297501006000000 0.906287233000000 0.039666801000000 +0.277618022000000 0.957060738000000 0.168583904000000 +0.294228495000000 0.929591478000000 0.109083702000000 +0.292493073000000 0.904452643000000 0.644585514000000 +0.297501006000000 0.919278060000000 0.485918310000000 +0.295021831000000 0.924682761000000 0.019833400000000 +0.282675540000000 0.993058359000000 0.267750906000000 +0.279303862000000 0.941789019000000 0.009916700000000 +0.279849280000000 0.945011947000000 0.168583904000000 +0.280791367000000 0.962762840000000 0.009916700000000 +0.282576373000000 0.974910798000000 0.059500201000000 +0.294228495000000 0.907030935000000 0.376834608000000 +0.276031350000000 0.959986164000000 0.555335212000000 +0.300872684000000 0.924881045000000 0.317334407000000 +0.274395095000000 0.974662930000000 0.228084105000000 +0.281832620000000 0.939706512000000 0.168583904000000 +0.302409773000000 0.934847280000000 0.168583904000000 +0.284262212000000 0.965737850000000 0.059500201000000 +0.292592240000000 0.936384467000000 0.049583501000000 +0.277766773000000 0.950763633000000 0.505751711000000 +0.297550590000000 0.916104716000000 0.376834608000000 +0.292493073000000 0.904452643000000 0.287584306000000 +0.284311795000000 0.990132933000000 0.218167405000000 +0.295021831000000 0.924682761000000 0.386751308000000 +0.285898467000000 0.996330871000000 0.039666801000000 +0.285898467000000 0.956267402000000 0.059500201000000 +0.277568439000000 0.953837810000000 0.396668009000000 +0.292542656000000 0.907576354000000 0.376834608000000 +0.286691803000000 0.942185687000000 0.009916700000000 +0.272758839000000 0.968861561000000 0.109083702000000 +0.292542656000000 0.920368947000000 0.059500201000000 +0.296757254000000 0.927806472000000 0.277667606000000 +0.295914334000000 0.925922349000000 0.287584306000000 +0.279353445000000 0.968911194000000 0.138833803000000 +0.277766773000000 0.950763633000000 0.109083702000000 +0.295021831000000 0.924682761000000 0.208250704000000 +0.282675540000000 0.980910402000000 0.119000403000000 +0.277618022000000 0.963010758000000 0.515668411000000 +0.298294342000000 0.930434348000000 0.099167002000000 +0.294129328000000 0.923294423000000 0.128917103000000 +0.282576373000000 0.944317778000000 0.188417304000000 +0.290906401000000 0.908022655000000 0.535501812000000 +0.297550590000000 0.902717220000000 0.545418512000000 +0.289270145000000 0.927508971000000 0.000000000000000 +0.302508940000000 0.924980212000000 0.059500201000000 +0.284212628000000 0.931872319000000 0.099167002000000 +0.285948051000000 0.937425671000000 0.168583904000000 +0.286096801000000 0.990232149000000 0.198334004000000 +0.289220562000000 0.924385161000000 0.079333602000000 +0.279799697000000 0.944565695000000 0.436334809000000 +0.287584306000000 0.990727935000000 0.247917505000000 +0.295765584000000 0.920170613000000 0.446251510000000 +0.279204695000000 0.950813167000000 0.228084105000000 +0.285898467000000 0.999851249000000 0.019833400000000 +0.280940117000000 0.941541102000000 0.396668009000000 +0.287633890000000 0.949871180000000 0.208250704000000 +0.285948051000000 0.978133726000000 0.000000000000000 +0.277568439000000 0.953837810000000 0.128917103000000 +0.295864751000000 0.906535150000000 0.089250302000000 +0.279799697000000 0.944565695000000 0.099167002000000 +0.299236429000000 0.931822686000000 0.257834206000000 +0.302508940000000 0.907576354000000 0.565251912000000 +0.297550590000000 0.902717220000000 0.555335212000000 +0.299137262000000 0.941888236000000 0.228084105000000 +0.290906401000000 0.936582752000000 0.327251107000000 +0.292493073000000 0.942929440000000 0.099167002000000 +0.294228495000000 0.952350355000000 0.138833803000000 +0.285948051000000 0.934351494000000 0.079333602000000 +0.284212628000000 0.999652965000000 0.128917103000000 +0.287584306000000 0.940450265000000 0.049583501000000 +0.299137262000000 0.915311479000000 0.188417304000000 +0.282625956000000 0.938070257000000 0.277667606000000 +0.299087678000000 0.921806868000000 0.079333602000000 +0.292542656000000 0.920368947000000 0.208250704000000 +0.295765584000000 0.920170613000000 0.386751308000000 +0.287584306000000 0.940450265000000 0.119000403000000 +0.287633890000000 0.965886601000000 0.188417304000000 +0.287584306000000 0.924831462000000 0.238000805000000 +0.282675540000000 0.941293184000000 0.049583501000000 +0.282576373000000 0.944317778000000 0.109083702000000 +0.279353445000000 0.938665259000000 0.307417707000000 +0.300922268000000 0.911245583000000 0.545418512000000 +0.295815167000000 0.945706116000000 0.089250302000000 +0.295963918000000 0.913030589000000 0.218167405000000 +0.281832620000000 0.939706512000000 0.138833803000000 +0.283419292000000 0.942780689000000 0.128917103000000 +0.290906401000000 0.927211470000000 0.307417707000000 +0.289220562000000 0.946499452000000 0.069416901000000 +0.284262212000000 0.965737850000000 0.049583501000000 +0.277618022000000 0.971985371000000 0.079333602000000 +0.279204695000000 0.950813167000000 0.039666801000000 +0.280989701000000 0.944565695000000 0.247917505000000 +0.282625956000000 0.984034212000000 0.000000000000000 +0.274395095000000 0.974662930000000 0.198334004000000 +0.299286012000000 0.912138135000000 0.009916700000000 +0.294228495000000 0.929591478000000 0.208250704000000 +0.286691803000000 0.939111461000000 0.366917908000000 +0.277667606000000 0.965985817000000 0.168583904000000 +0.283419292000000 0.939706512000000 0.069416901000000 +0.289270145000000 0.968663277000000 0.148750503000000 +0.277618022000000 0.959936630000000 0.436334809000000 +0.287584306000000 0.990727935000000 0.000000000000000 +0.299137262000000 0.938863642000000 0.059500201000000 +0.290906401000000 0.933508575000000 0.119000403000000 +0.282675540000000 0.971935788000000 0.297501006000000 +0.276080934000000 0.966084935000000 0.307417707000000 +0.294327662000000 0.910353129000000 0.386751308000000 +0.279353445000000 0.938665259000000 0.446251510000000 +0.284212628000000 0.999652965000000 0.079333602000000 +0.290856817000000 0.965836968000000 0.138833803000000 +0.290856817000000 0.924087709000000 0.148750503000000 +0.284212628000000 0.931872319000000 0.089250302000000 +0.284212628000000 0.987058805000000 0.128917103000000 +0.277717189000000 0.969010312000000 0.158667203000000 +0.287485139000000 0.943574025000000 0.158667203000000 +0.280989701000000 0.935343164000000 0.148750503000000 +0.279303862000000 0.941789019000000 0.515668411000000 +0.295864751000000 0.906535150000000 0.515668411000000 +0.279353445000000 0.938665259000000 0.238000805000000 +0.294178912000000 0.936285251000000 0.307417707000000 +0.279303862000000 0.941789019000000 0.069416901000000 +0.302508940000000 0.931475651000000 0.069416901000000 +0.300823101000000 0.904799728000000 0.426418109000000 +0.272659672000000 0.957308705000000 0.515668411000000 +0.295021831000000 0.927806472000000 0.039666801000000 +0.285898467000000 0.999851249000000 0.148750503000000 +0.295914334000000 0.909807711000000 0.158667203000000 +0.305731868000000 0.910055529000000 0.089250302000000 +0.279254278000000 0.962961224000000 0.307417707000000 +0.285898467000000 0.940747766000000 0.009916700000000 +0.295963918000000 0.932616072000000 0.089250302000000 +0.291005568000000 0.914567677000000 0.039666801000000 +0.300922268000000 0.911245583000000 0.565251912000000 +0.284311795000000 0.993355860000000 0.218167405000000 +0.284311795000000 0.947044870000000 0.317334407000000 +0.290856817000000 0.930335231000000 0.079333602000000 +0.277618022000000 0.959936630000000 0.347084507000000 +0.272709256000000 0.966134568000000 0.446251510000000 +0.285948051000000 0.934351494000000 0.109083702000000 +0.304095612000000 0.917294770000000 0.089250302000000 +0.277717189000000 0.980612901000000 0.148750503000000 +0.307318540000000 0.916402316000000 0.168583904000000 +0.276080934000000 0.951061134000000 0.466084910000000 +0.289270145000000 0.933954826000000 0.406584709000000 +0.302360190000000 0.914418927000000 0.436334809000000 +0.297501006000000 0.932516954000000 0.049583501000000 +0.292542656000000 0.907576354000000 0.059500201000000 +0.281832620000000 0.939706512000000 0.297501006000000 +0.296757254000000 0.927806472000000 0.039666801000000 +0.284311795000000 0.925575214000000 0.575168612000000 +0.298244759000000 0.923542241000000 0.128917103000000 +0.307318540000000 0.916402316000000 0.208250704000000 +0.297600173000000 0.912633921000000 0.347084507000000 +0.295765584000000 0.939210677000000 0.059500201000000 +0.297600173000000 0.912633921000000 0.079333602000000 +0.282725123000000 0.965836968000000 0.307417707000000 +0.294129328000000 0.939508178000000 0.218167405000000 +0.290906401000000 0.952697390000000 0.128917103000000 +0.287633890000000 0.978084093000000 0.009916700000000 +0.290856817000000 0.943177357000000 0.208250704000000 +0.289270145000000 0.933954826000000 0.317334407000000 +0.302508940000000 0.917790654000000 0.109083702000000 +0.279849280000000 0.945011947000000 0.317334407000000 +0.282576373000000 0.947193621000000 0.168583904000000 +0.289270145000000 0.933954826000000 0.347084507000000 +0.284262212000000 0.971737454000000 0.168583904000000 +0.284212628000000 0.983488793000000 0.029750101000000 +0.300723934000000 0.915063512000000 0.416501409000000 +0.285105131000000 0.942185687000000 0.099167002000000 +0.277618022000000 0.963010758000000 0.456168210000000 +0.295914334000000 0.909807711000000 0.376834608000000 +0.289270145000000 0.920666398000000 0.099167002000000 +0.285105131000000 0.939210677000000 0.257834206000000 +0.277766773000000 0.950763633000000 0.485918310000000 +0.292493073000000 0.959044078000000 0.158667203000000 +0.280890534000000 0.974910798000000 0.277667606000000 +0.299087678000000 0.921806868000000 0.228084105000000 +0.282725123000000 0.950366965000000 0.029750101000000 +0.271122584000000 0.966134568000000 0.158667203000000 +0.274395095000000 0.974662930000000 0.247917505000000 +0.272659672000000 0.957308705000000 0.485918310000000 +0.292641823000000 0.968613743000000 0.089250302000000 +0.285105131000000 0.939210677000000 0.168583904000000 +0.280989701000000 0.944565695000000 0.277667606000000 +0.287584306000000 0.940450265000000 0.148750503000000 +0.284262212000000 0.965737850000000 0.178500604000000 +0.274494262000000 0.954333645000000 0.059500201000000 +0.290955984000000 0.921013532000000 0.287584306000000 +0.271866336000000 0.964349562000000 0.188417304000000 +0.290906401000000 0.911195999000000 0.109083702000000 +0.274345511000000 0.957110321000000 0.466084910000000 +0.292443489000000 0.975109132000000 0.069416901000000 +0.294178912000000 0.942929440000000 0.208250704000000 +0.282576373000000 0.987058805000000 0.119000403000000 +0.287683473000000 0.927806472000000 0.257834206000000 +0.285848884000000 0.943772359000000 0.019833400000000 +0.302360190000000 0.921311033000000 0.247917505000000 +0.284262212000000 0.934847280000000 0.029750101000000 +0.282675540000000 0.971935788000000 0.287584306000000 +0.285997634000000 0.950069464000000 0.109083702000000 +0.304145196000000 0.914022259000000 0.416501409000000 +0.284311795000000 0.990132933000000 0.009916700000000 +0.285898467000000 0.956267402000000 0.099167002000000 +0.277717189000000 0.980612901000000 0.049583501000000 +0.297550590000000 0.916104716000000 0.079333602000000 +0.282576373000000 0.987058805000000 0.019833400000000 +0.292592240000000 0.936384467000000 0.277667606000000 +0.277766773000000 0.950763633000000 0.119000403000000 +0.279204695000000 0.950813167000000 0.654502214000000 +0.302508940000000 0.904353476000000 0.019833400000000 +0.285898467000000 0.956267402000000 0.297501006000000 +0.290856817000000 0.975109132000000 0.009916700000000 +0.295963918000000 0.932616072000000 0.168583904000000 +0.295914334000000 0.909807711000000 0.089250302000000 +0.302508940000000 0.924980212000000 0.357001208000000 +0.295914334000000 0.909807711000000 0.297501006000000 +0.284262212000000 0.928153557000000 0.148750503000000 +0.296707670000000 0.924286043000000 0.366917908000000 +0.272659672000000 0.963159508000000 0.505751711000000 +0.289270145000000 0.920666398000000 0.555335212000000 +0.284361379000000 0.937971090000000 0.337167807000000 +0.299137262000000 0.908815942000000 0.148750503000000 +0.299137262000000 0.941888236000000 0.000000000000000 +0.290856817000000 0.924087709000000 0.059500201000000 +0.292592240000000 0.965489933000000 0.039666801000000 +0.274395095000000 0.974662930000000 0.049583501000000 +0.295963918000000 0.913030589000000 0.287584306000000 +0.299236429000000 0.931822686000000 0.277667606000000 +0.274444678000000 0.968960778000000 0.485918310000000 +0.300922268000000 0.908220989000000 0.277667606000000 +0.277618022000000 0.974811681000000 0.178500604000000 +0.304095612000000 0.922104369000000 0.049583501000000 +0.290906401000000 0.933508575000000 0.039666801000000 +0.280791367000000 0.962762840000000 0.019833400000000 +0.295914334000000 0.909807711000000 0.327251107000000 +0.283419292000000 0.945557365000000 0.128917103000000 +0.284361379000000 0.981009618000000 0.039666801000000 +0.295716000000000 0.922897705000000 0.128917103000000 +0.302360190000000 0.921311033000000 0.168583904000000 +0.287683473000000 0.927806472000000 0.218167405000000 +0.290955984000000 0.949524045000000 0.049583501000000 +0.282625956000000 0.929046060000000 0.485918310000000 +0.285105131000000 0.945408615000000 0.168583904000000 +0.272659672000000 0.963159508000000 0.366917908000000 +0.275981767000000 0.962911591000000 0.545418512000000 +0.287534723000000 0.956118651000000 0.089250302000000 +0.272659672000000 0.963159508000000 0.446251510000000 +0.285948051000000 0.931376484000000 0.406584709000000 +0.282625956000000 0.962713257000000 0.019833400000000 +0.297600173000000 0.912633921000000 0.178500604000000 +0.282675540000000 0.925971882000000 0.000000000000000 +0.279204695000000 0.953639476000000 0.555335212000000 +0.294278079000000 0.912435587000000 0.466084910000000 +0.297501006000000 0.906287233000000 0.535501812000000 +0.287485139000000 0.943574025000000 0.168583904000000 +0.292592240000000 0.917294770000000 0.198334004000000 +0.297550590000000 0.916104716000000 0.515668411000000 +0.279353445000000 0.965836968000000 0.386751308000000 +0.285848884000000 0.987257090000000 0.168583904000000 +0.297501006000000 0.908815942000000 0.267750906000000 +0.282625956000000 0.984034212000000 0.109083702000000 +0.294030161000000 0.920121079000000 0.545418512000000 +0.285948051000000 0.931376484000000 0.436334809000000 +0.295716000000000 0.922897705000000 0.277667606000000 +0.297550590000000 0.928798192000000 0.208250704000000 +0.281039284000000 0.992909609000000 0.069416901000000 +0.298244759000000 0.923542241000000 0.287584306000000 +0.274444678000000 0.968960778000000 0.317334407000000 +0.304145196000000 0.914022259000000 0.386751308000000 +0.287584306000000 0.924831462000000 0.178500604000000 +0.295765584000000 0.939210677000000 0.208250704000000 +0.290906401000000 0.911195999000000 0.049583501000000 +0.279799697000000 0.944565695000000 0.148750503000000 +0.284262212000000 0.971737454000000 0.138833803000000 +0.287683473000000 0.927806472000000 0.337167807000000 +0.305880618000000 0.917046852000000 0.188417304000000 +0.299286012000000 0.912138135000000 0.436334809000000 +0.280791367000000 0.962762840000000 0.039666801000000 +0.284262212000000 0.943970693000000 0.287584306000000 +0.304145196000000 0.914022259000000 0.396668009000000 +0.285948051000000 0.931376484000000 0.228084105000000 +0.282526789000000 0.977935392000000 0.039666801000000 +0.279254278000000 0.962961224000000 0.089250302000000 +0.285848884000000 0.943772359000000 0.168583904000000 +0.292493073000000 0.904452643000000 0.000000000000000 +0.284212628000000 0.931872319000000 0.198334004000000 +0.284311795000000 0.941045217000000 0.059500201000000 +0.284361379000000 0.937971090000000 0.099167002000000 +0.280940117000000 0.941541102000000 0.386751308000000 +0.286691803000000 0.939111461000000 0.128917103000000 +0.292641823000000 0.968613743000000 0.039666801000000 +0.289170978000000 0.975009965000000 0.119000403000000 +0.279353445000000 0.938665259000000 0.168583904000000 +0.290856817000000 0.930335231000000 0.188417304000000 +0.282625956000000 0.929046060000000 0.525585111000000 +0.290856817000000 0.924087709000000 0.257834206000000 +0.284311795000000 0.990132933000000 0.168583904000000 +0.289270145000000 0.949722330000000 0.009916700000000 +0.283419292000000 0.945557365000000 0.307417707000000 +0.302459357000000 0.928351891000000 0.178500604000000 +0.290856817000000 0.924087709000000 0.238000805000000 +0.287633890000000 0.949871180000000 0.109083702000000 +0.287633890000000 0.946747369000000 0.307417707000000 +0.274395095000000 0.960134915000000 0.000000000000000 +0.274345511000000 0.966134568000000 0.198334004000000 +0.300872684000000 0.931574818000000 0.029750101000000 +0.285105131000000 0.939210677000000 0.247917505000000 +0.284212628000000 0.956366569000000 0.218167405000000 +0.290807234000000 0.939954479000000 0.337167807000000 +0.285105131000000 0.939210677000000 0.198334004000000 +0.277618022000000 0.957060738000000 0.287584306000000 +0.292542656000000 0.945904450000000 0.000000000000000 +0.277568439000000 0.953837810000000 0.535501812000000 +0.275932183000000 0.954036144000000 0.436334809000000 +0.279353445000000 0.968911194000000 0.247917505000000 +0.292592240000000 0.933211123000000 0.178500604000000 +0.287683473000000 0.927806472000000 0.485918310000000 +0.272659672000000 0.957308705000000 0.357001208000000 +0.282675540000000 0.925971882000000 0.109083702000000 +0.280940117000000 0.932268987000000 0.257834206000000 +0.284311795000000 0.925575214000000 0.585085313000000 +0.294278079000000 0.912435587000000 0.257834206000000 +0.289270145000000 0.930831066000000 0.366917908000000 +0.277717189000000 0.969010312000000 0.317334407000000 +0.292592240000000 0.929988146000000 0.089250302000000 +0.285997634000000 0.971787087000000 0.188417304000000 +0.298294342000000 0.920468114000000 0.049583501000000 +0.287584306000000 0.934103577000000 0.158667203000000 +0.282675540000000 0.980910402000000 0.019833400000000 +0.290906401000000 0.936582752000000 0.337167807000000 +0.289319729000000 0.937029003000000 0.337167807000000 +0.281039284000000 0.980811235000000 0.009916700000000 +0.289170978000000 0.975009965000000 0.089250302000000 +0.279799697000000 0.944565695000000 0.485918310000000 +0.284262212000000 0.928153557000000 0.386751308000000 +0.274444678000000 0.968960778000000 0.029750101000000 +0.282625956000000 0.956515319000000 0.257834206000000 +0.284361379000000 0.937971090000000 0.376834608000000 +0.284311795000000 0.925575214000000 0.257834206000000 +0.287534723000000 0.959291995000000 0.079333602000000 +0.279849280000000 0.945011947000000 0.109083702000000 +0.285898467000000 0.956267402000000 0.317334407000000 +0.297501006000000 0.908815942000000 0.436334809000000 +0.282675540000000 0.993058359000000 0.119000403000000 +0.285898467000000 0.996330871000000 0.059500201000000 +0.285948051000000 0.937425671000000 0.128917103000000 +0.295963918000000 0.932616072000000 0.158667203000000 +0.279303862000000 0.977786641000000 0.178500604000000 +0.280940117000000 0.932268987000000 0.585085313000000 +0.299186845000000 0.905394779000000 0.317334407000000 +0.289220562000000 0.924385161000000 0.446251510000000 +0.280940117000000 0.929393144000000 0.386751308000000 +0.295864751000000 0.906535150000000 0.644585514000000 +0.277618022000000 0.959936630000000 0.238000805000000 +0.299186845000000 0.905394779000000 0.109083702000000 +0.294178912000000 0.926517301000000 0.396668009000000 +0.287633890000000 0.937128170000000 0.317334407000000 +0.298244759000000 0.923542241000000 0.406584709000000 +0.282725123000000 0.965836968000000 0.208250704000000 +0.277568439000000 0.953837810000000 0.585085313000000 +0.276080934000000 0.977538674000000 0.238000805000000 +0.304095612000000 0.910948082000000 0.456168210000000 +0.287485139000000 0.943574025000000 0.000000000000000 +0.304095612000000 0.922104369000000 0.099167002000000 +0.283419292000000 0.942780689000000 0.089250302000000 +0.281039284000000 0.959936630000000 0.267750906000000 +0.272659672000000 0.957308705000000 0.297501006000000 +0.282526789000000 0.977935392000000 0.158667203000000 +0.282576373000000 0.947193621000000 0.119000403000000 +0.284212628000000 0.983488793000000 0.039666801000000 +0.282576373000000 0.987058805000000 0.109083702000000 +0.287584306000000 0.934103577000000 0.247917505000000 +0.295716000000000 0.922897705000000 0.109083702000000 +0.279353445000000 0.947491122000000 0.386751308000000 +0.294228495000000 0.929591478000000 0.376834608000000 +0.291005568000000 0.914567677000000 0.059500201000000 +0.287633890000000 0.949871180000000 0.000000000000000 +0.282675540000000 0.971935788000000 0.228084105000000 +0.289170978000000 0.962316589000000 0.099167002000000 +0.297600173000000 0.912633921000000 0.039666801000000 +0.294129328000000 0.916798885000000 0.089250302000000 +0.294129328000000 0.923294423000000 0.198334004000000 +0.295963918000000 0.932616072000000 0.000000000000000 +0.292493073000000 0.959044078000000 0.069416901000000 +0.295963918000000 0.913030589000000 0.436334809000000 +0.285105131000000 0.945408615000000 0.000000000000000 +0.276031350000000 0.959986164000000 0.069416901000000 +0.294327662000000 0.910353129000000 0.148750503000000 +0.287683473000000 0.971687870000000 0.009916700000000 +0.294178912000000 0.926517301000000 0.089250302000000 +0.285948051000000 0.937425671000000 0.228084105000000 +0.299087678000000 0.921806868000000 0.396668009000000 +0.290955984000000 0.921013532000000 0.664418914000000 +0.287584306000000 0.990727935000000 0.188417304000000 +0.300922268000000 0.908220989000000 0.525585111000000 +0.294228495000000 0.907030935000000 0.119000403000000 +0.284311795000000 0.947044870000000 0.327251107000000 +0.284262212000000 0.928153557000000 0.525585111000000 +0.277618022000000 0.963010758000000 0.059500201000000 +0.287584306000000 0.940450265000000 0.019833400000000 +0.272709256000000 0.966134568000000 0.208250704000000 +0.280890534000000 0.977786641000000 0.228084105000000 +0.300723934000000 0.915063512000000 0.337167807000000 +0.276080934000000 0.971687870000000 0.267750906000000 +0.277618022000000 0.971985371000000 0.337167807000000 +0.279353445000000 0.947491122000000 0.208250704000000 +0.290955984000000 0.946400285000000 0.208250704000000 +0.292592240000000 0.933211123000000 0.307417707000000 +0.289170978000000 0.956069117000000 0.099167002000000 +0.289270145000000 0.920666398000000 0.704085715000000 +0.297550590000000 0.902717220000000 0.585085313000000 +0.281039284000000 0.980811235000000 0.238000805000000 +0.289319729000000 0.965985817000000 0.178500604000000 +0.299137262000000 0.938863642000000 0.168583904000000 +0.281039284000000 0.950565349000000 0.386751308000000 +0.279303862000000 0.941789019000000 0.039666801000000 +0.281039284000000 0.992909609000000 0.000000000000000 +0.302409773000000 0.911096832000000 0.327251107000000 +0.282625956000000 0.929046060000000 0.366917908000000 +0.274494262000000 0.954333645000000 0.624752113000000 +0.295765584000000 0.939210677000000 0.178500604000000 +0.271866336000000 0.964349562000000 0.753669216000000 +0.289270145000000 0.927508971000000 0.128917103000000 +0.277568439000000 0.953837810000000 0.039666801000000 +0.282625956000000 0.934996129000000 0.089250302000000 +0.281039284000000 0.938516508000000 0.515668411000000 +0.274444678000000 0.968960778000000 0.099167002000000 +0.291005568000000 0.914567677000000 0.277667606000000 +0.292493073000000 0.939855263000000 0.198334004000000 +0.277618022000000 0.963010758000000 0.218167405000000 +0.285948051000000 0.934351494000000 0.029750101000000 +0.285898467000000 0.946995337000000 0.109083702000000 +0.307417707000000 0.913328090000000 0.218167405000000 +0.300823101000000 0.918236856000000 0.277667606000000 +0.289170978000000 0.956069117000000 0.019833400000000 +0.295765584000000 0.942532772000000 0.009916700000000 +0.279353445000000 0.938665259000000 0.347084507000000 +0.297501006000000 0.908815942000000 0.089250302000000 +0.307516874000000 0.919922695000000 0.218167405000000 +0.299186845000000 0.935491915000000 0.228084105000000 +0.292493073000000 0.942929440000000 0.198334004000000 +0.274444678000000 0.971886155000000 0.267750906000000 +0.285105131000000 0.939210677000000 0.277667606000000 +0.297501006000000 0.935591082000000 0.059500201000000 +0.299286012000000 0.912138135000000 0.456168210000000 +0.280940117000000 0.941541102000000 0.019833400000000 +0.299186845000000 0.905394779000000 0.148750503000000 +0.302508940000000 0.931475651000000 0.029750101000000 +0.290955984000000 0.968613743000000 0.059500201000000 +0.282625956000000 0.934996129000000 0.208250704000000 +0.297600173000000 0.912633921000000 0.089250302000000 +0.284311795000000 0.947044870000000 0.000000000000000 +0.292493073000000 0.904452643000000 0.158667203000000 +0.279303862000000 0.983835828000000 0.059500201000000 +0.287485139000000 0.996727539000000 0.168583904000000 +0.280890534000000 0.953639476000000 0.198334004000000 +0.305731868000000 0.910055529000000 0.039666801000000 +0.282675540000000 0.968861561000000 0.089250302000000 +0.297550590000000 0.902717220000000 0.515668411000000 +0.281039284000000 0.992909609000000 0.039666801000000 +0.289270145000000 0.930831066000000 0.485918310000000 +0.292592240000000 0.949375295000000 0.119000403000000 +0.284262212000000 0.971737454000000 0.148750503000000 +0.291005568000000 0.914567677000000 0.119000403000000 +0.275932183000000 0.954036144000000 0.049583501000000 +0.277618022000000 0.957060738000000 0.495835011000000 +0.277618022000000 0.959936630000000 0.485918310000000 +0.299087678000000 0.921806868000000 0.158667203000000 +0.289270145000000 0.920666398000000 0.247917505000000 +0.289170978000000 0.962316589000000 0.059500201000000 +0.275932183000000 0.954036144000000 0.585085313000000 +0.272858006000000 0.960085331000000 0.535501812000000 +0.284262212000000 0.965737850000000 0.089250302000000 +0.287683473000000 0.927806472000000 0.406584709000000 +0.304095612000000 0.910948082000000 0.287584306000000 +0.285105131000000 0.939210677000000 0.267750906000000 +0.284361379000000 0.981009618000000 0.238000805000000 +0.283419292000000 0.942780689000000 0.059500201000000 +0.295815167000000 0.916947636000000 0.446251510000000 +0.282625956000000 0.928798192000000 0.287584306000000 +0.280989701000000 0.944565695000000 0.198334004000000 +0.295716000000000 0.922897705000000 0.000000000000000 +0.280989701000000 0.944565695000000 0.158667203000000 +0.302360190000000 0.921311033000000 0.317334407000000 +0.300773517000000 0.928351891000000 0.198334004000000 +0.284311795000000 0.996231704000000 0.178500604000000 +0.297501006000000 0.908815942000000 0.426418109000000 +0.285105131000000 0.945408615000000 0.089250302000000 +0.299286012000000 0.912138135000000 0.128917103000000 +0.299186845000000 0.935491915000000 0.317334407000000 +0.290856817000000 0.924087709000000 0.089250302000000 +0.290856817000000 0.930335231000000 0.347084507000000 +0.272858006000000 0.960085331000000 0.009916700000000 +0.282675540000000 0.971935788000000 0.148750503000000 +0.304145196000000 0.914022259000000 0.456168210000000 +0.286691803000000 0.939111461000000 0.208250704000000 +0.300922268000000 0.911245583000000 0.148750503000000 +0.297501006000000 0.935591082000000 0.327251107000000 +0.279204695000000 0.953639476000000 0.386751308000000 +0.297501006000000 0.925723965000000 0.049583501000000 +0.281039284000000 0.980811235000000 0.277667606000000 +0.287485139000000 0.952895674000000 0.029750101000000 +0.289170978000000 0.975009965000000 0.148750503000000 +0.275981767000000 0.962911591000000 0.287584306000000 +0.282625956000000 0.928798192000000 0.426418109000000 +0.272758839000000 0.968861561000000 0.198334004000000 +0.292542656000000 0.907576354000000 0.287584306000000 +0.284311795000000 0.996231704000000 0.009916700000000 +0.290856817000000 0.943177357000000 0.029750101000000 +0.294030161000000 0.920121079000000 0.287584306000000 +0.285948051000000 0.993405494000000 0.178500604000000 +0.290955984000000 0.921013532000000 0.198334004000000 +0.279204695000000 0.953639476000000 0.238000805000000 +0.272858006000000 0.960085331000000 0.495835011000000 +0.297501006000000 0.908815942000000 0.476001610000000 +0.295716000000000 0.922897705000000 0.069416901000000 +0.295864751000000 0.906535150000000 0.158667203000000 +0.289319729000000 0.965985817000000 0.119000403000000 +0.287534723000000 0.956118651000000 0.109083702000000 +0.282675540000000 0.931971536000000 0.069416901000000 +0.281039284000000 0.965787434000000 0.198334004000000 +0.282675540000000 0.968861561000000 0.099167002000000 +0.289270145000000 0.930831066000000 0.297501006000000 +0.287534723000000 0.956118651000000 0.049583501000000 +0.279254278000000 0.962961224000000 0.228084105000000 +0.285997634000000 0.965638683000000 0.009916700000000 +0.284262212000000 0.934847280000000 0.228084105000000 +0.272659672000000 0.963159508000000 0.119000403000000 +0.297600173000000 0.912633921000000 0.376834608000000 +0.294278079000000 0.945805283000000 0.208250704000000 +0.299137262000000 0.908815942000000 0.009916700000000 +0.284361379000000 0.940946100000000 0.188417304000000 +0.284262212000000 0.928153557000000 0.168583904000000 +0.292592240000000 0.936384467000000 0.238000805000000 +0.274494262000000 0.954333645000000 0.426418109000000 +0.284361379000000 0.940946100000000 0.039666801000000 +0.286741387000000 0.945309398000000 0.287584306000000 +0.295021831000000 0.927806472000000 0.436334809000000 +0.285105131000000 0.939210677000000 0.228084105000000 +0.294327662000000 0.910353129000000 0.307417707000000 +0.282625956000000 0.928798192000000 0.307417707000000 +0.285948051000000 0.934351494000000 0.347084507000000 +0.290807234000000 0.971836621000000 0.089250302000000 +0.292493073000000 0.955821150000000 0.109083702000000 +0.307268956000000 0.923492707000000 0.128917103000000 +0.276080934000000 0.951061134000000 0.376834608000000 +0.280989701000000 0.944565695000000 0.059500201000000 +0.289270145000000 0.949722330000000 0.119000403000000 +0.287633890000000 0.937128170000000 0.000000000000000 +0.300922268000000 0.911245583000000 0.456168210000000 +0.302508940000000 0.924980212000000 0.347084507000000 +0.300872684000000 0.901576800000000 0.347084507000000 +0.283419292000000 0.945557365000000 0.009916700000000 +0.287485139000000 0.943574025000000 0.029750101000000 +0.299186845000000 0.935491915000000 0.019833400000000 +0.275981767000000 0.957060738000000 0.624752113000000 +0.289270145000000 0.930831066000000 0.357001208000000 +0.300922268000000 0.911245583000000 0.366917908000000 +0.289220562000000 0.971886155000000 0.119000403000000 +0.271122584000000 0.966134568000000 0.069416901000000 +0.295914334000000 0.925922349000000 0.109083702000000 +0.294278079000000 0.912435587000000 0.228084105000000 +0.272659672000000 0.957308705000000 0.277667606000000 +0.290906401000000 0.927211470000000 0.178500604000000 +0.284311795000000 0.950218215000000 0.267750906000000 +0.297501006000000 0.906287233000000 0.446251510000000 +0.295914334000000 0.935888583000000 0.009916700000000 +0.300823101000000 0.918236856000000 0.089250302000000 +0.280840950000000 0.947491122000000 0.406584709000000 +0.279303862000000 0.974811681000000 0.337167807000000 +0.281832620000000 0.939706512000000 0.188417304000000 +0.292592240000000 0.936384467000000 0.158667203000000 +0.286790970000000 0.948333992000000 0.128917103000000 +0.289270145000000 0.920666398000000 0.366917908000000 +0.284311795000000 0.993355860000000 0.178500604000000 +0.296757254000000 0.927806472000000 0.376834608000000 +0.290807234000000 0.962267055000000 0.049583501000000 +0.292493073000000 0.904452643000000 0.089250302000000 +0.295021831000000 0.927806472000000 0.128917103000000 +0.297501006000000 0.919278060000000 0.357001208000000 +0.284163045000000 0.959490280000000 0.119000403000000 +0.276080934000000 0.971687870000000 0.019833400000000 +0.295864751000000 0.906535150000000 0.575168612000000 +0.274345511000000 0.957110321000000 0.674335615000000 +0.284361379000000 0.981009618000000 0.148750503000000 +0.279204695000000 0.950813167000000 0.595002013000000 +0.300922268000000 0.908220989000000 0.158667203000000 +0.280940117000000 0.932268987000000 0.168583904000000 +0.284311795000000 0.950218215000000 0.307417707000000 +0.294129328000000 0.923294423000000 0.148750503000000 +0.271866336000000 0.964349562000000 0.019833400000000 +0.294129328000000 0.916798885000000 0.317334407000000 +0.292493073000000 0.959044078000000 0.039666801000000 +0.275981767000000 0.962911591000000 0.069416901000000 +0.287633890000000 0.978084093000000 0.168583904000000 +0.280940117000000 0.929393144000000 0.614835413000000 +0.292592240000000 0.936384467000000 0.019833400000000 +0.299137262000000 0.908815942000000 0.545418512000000 +0.274345511000000 0.957110321000000 0.019833400000000 +0.297451423000000 0.942235271000000 0.247917505000000 +0.290856817000000 0.930335231000000 0.168583904000000 +0.284212628000000 0.931872319000000 0.128917103000000 +0.285997634000000 0.925228180000000 0.426418109000000 +0.277618022000000 0.963010758000000 0.049583501000000 +0.284212628000000 0.962564506000000 0.198334004000000 +0.294129328000000 0.955821150000000 0.128917103000000 +0.300823101000000 0.934996129000000 0.099167002000000 +0.285948051000000 0.928153557000000 0.555335212000000 +0.289270145000000 0.930831066000000 0.287584306000000 +0.279303862000000 0.941789019000000 0.337167807000000 +0.284212628000000 0.983488793000000 0.148750503000000 +0.287633890000000 0.937128170000000 0.069416901000000 +0.289319729000000 0.937029003000000 0.158667203000000 +0.290807234000000 0.971836621000000 0.138833803000000 +0.290955984000000 0.921013532000000 0.733835816000000 +0.279303862000000 0.983835828000000 0.168583904000000 +0.282625956000000 0.929046060000000 0.327251107000000 +0.295765584000000 0.952151971000000 0.029750101000000 +0.300723934000000 0.915063512000000 0.009916700000000 +0.284311795000000 0.925575214000000 0.505751711000000 +0.302508940000000 0.907576354000000 0.495835011000000 +0.294228495000000 0.933111907000000 0.307417707000000 +0.292542656000000 0.920368947000000 0.357001208000000 +0.280840950000000 0.947491122000000 0.257834206000000 +0.292542656000000 0.923641458000000 0.525585111000000 +0.282675540000000 0.925971882000000 0.247917505000000 +0.292493073000000 0.926963553000000 0.495835011000000 +0.297550590000000 0.916104716000000 0.337167807000000 +0.280840950000000 0.947491122000000 0.297501006000000 +0.282675540000000 0.980910402000000 0.178500604000000 +0.286691803000000 0.942185687000000 0.228084105000000 +0.287584306000000 0.940450265000000 0.109083702000000 +0.286741387000000 0.945309398000000 0.158667203000000 +0.297550590000000 0.902717220000000 0.109083702000000 +0.285997634000000 0.968762444000000 0.168583904000000 +0.275981767000000 0.974811681000000 0.099167002000000 +0.284361379000000 0.937971090000000 0.138833803000000 +0.279353445000000 0.968911194000000 0.049583501000000 +0.297600173000000 0.912633921000000 0.495835011000000 +0.271122584000000 0.966134568000000 0.287584306000000 +0.284361379000000 0.940946100000000 0.029750101000000 +0.274494262000000 0.954333645000000 0.366917908000000 +0.282675540000000 0.925971882000000 0.565251912000000 +0.279353445000000 0.938665259000000 0.466084910000000 +0.296707670000000 0.924286043000000 0.247917505000000 +0.291005568000000 0.914567677000000 0.000000000000000 +0.279303862000000 0.956812820000000 0.218167405000000 +0.276080934000000 0.977538674000000 0.079333602000000 +0.287633890000000 0.937128170000000 0.119000403000000 +0.290906401000000 0.908022655000000 0.019833400000000 +0.279204695000000 0.953639476000000 0.228084105000000 +0.300872684000000 0.901576800000000 0.089250302000000 +0.281039284000000 0.968861561000000 0.297501006000000 +0.282625956000000 0.929046060000000 0.456168210000000 +0.274395095000000 0.974662930000000 0.188417304000000 +0.279353445000000 0.968911194000000 0.238000805000000 +0.294228495000000 0.907030935000000 0.406584709000000 +0.280989701000000 0.935343164000000 0.000000000000000 +0.281832620000000 0.945656532000000 0.198334004000000 +0.280890534000000 0.977786641000000 0.138833803000000 +0.285105131000000 0.945408615000000 0.247917505000000 +0.277717189000000 0.969010312000000 0.307417707000000 +0.297401839000000 0.922501037000000 0.297501006000000 +0.279353445000000 0.965836968000000 0.000000000000000 +0.282675540000000 0.993058359000000 0.257834206000000 +0.295716000000000 0.922897705000000 0.327251107000000 +0.272659672000000 0.957308705000000 0.039666801000000 +0.305731868000000 0.923641458000000 0.178500604000000 +0.275981767000000 0.974811681000000 0.347084507000000 +0.294129328000000 0.916798885000000 0.059500201000000 +0.300773517000000 0.921608534000000 0.267750906000000 +0.300922268000000 0.908220989000000 0.595002013000000 +0.297501006000000 0.908815942000000 0.446251510000000 +0.275932183000000 0.954036144000000 0.357001208000000 +0.272659672000000 0.957308705000000 0.238000805000000 +0.297501006000000 0.952003221000000 0.039666801000000 +0.297451423000000 0.938962760000000 0.119000403000000 +0.295021831000000 0.927806472000000 0.009916700000000 +0.297550590000000 0.916104716000000 0.317334407000000 +0.289170978000000 0.956069117000000 0.029750101000000 +0.284212628000000 0.931872319000000 0.039666801000000 +0.290955984000000 0.968613743000000 0.009916700000000 +0.279353445000000 0.947491122000000 0.347084507000000 +0.286691803000000 0.939111461000000 0.198334004000000 +0.294178912000000 0.926517301000000 0.446251510000000 +0.287584306000000 0.924831462000000 0.089250302000000 +0.300872684000000 0.924881045000000 0.019833400000000 +0.287683473000000 0.927806472000000 0.158667203000000 +0.279303862000000 0.956812820000000 0.109083702000000 +0.297451423000000 0.942235271000000 0.238000805000000 +0.297501006000000 0.952003221000000 0.089250302000000 +0.277618022000000 0.959936630000000 0.039666801000000 +0.294129328000000 0.916798885000000 0.000000000000000 +0.279353445000000 0.980712018000000 0.376834608000000 +0.279204695000000 0.950813167000000 0.059500201000000 +0.285898467000000 0.956267402000000 0.009916700000000 +0.280940117000000 0.941541102000000 0.357001208000000 +0.290807234000000 0.962267055000000 0.099167002000000 +0.294228495000000 0.952350355000000 0.059500201000000 +0.296658087000000 0.921112699000000 0.337167807000000 +0.292493073000000 0.942929440000000 0.059500201000000 +0.271122584000000 0.966134568000000 0.267750906000000 +0.279353445000000 0.947491122000000 0.287584306000000 +0.300872684000000 0.901576800000000 0.604918713000000 +0.277568439000000 0.953837810000000 0.555335212000000 +0.282576373000000 0.944317778000000 0.029750101000000 +0.287633890000000 0.968762444000000 0.178500604000000 +0.290906401000000 0.908022655000000 0.436334809000000 +0.289270145000000 0.949722330000000 0.029750101000000 +0.305880618000000 0.917046852000000 0.019833400000000 +0.299236429000000 0.931822686000000 0.109083702000000 +0.274494262000000 0.954333645000000 0.148750503000000 +0.304095612000000 0.917294770000000 0.029750101000000 +0.280890534000000 0.983885362000000 0.208250704000000 +0.295864751000000 0.929293977000000 0.376834608000000 +0.300823101000000 0.904799728000000 0.029750101000000 +0.283468876000000 0.948929043000000 0.009916700000000 +0.287534723000000 0.959291995000000 0.119000403000000 +0.295765584000000 0.942532772000000 0.257834206000000 +0.290906401000000 0.978232843000000 0.009916700000000 +0.297451423000000 0.938962760000000 0.029750101000000 +0.284311795000000 0.968762444000000 0.148750503000000 +0.295864751000000 0.958994494000000 0.000000000000000 +0.302508940000000 0.917790654000000 0.089250302000000 +0.281039284000000 0.950565349000000 0.138833803000000 +0.299186845000000 0.905394779000000 0.198334004000000 +0.295864751000000 0.929293977000000 0.049583501000000 +0.292542656000000 0.920368947000000 0.079333602000000 +0.294178912000000 0.942929440000000 0.228084105000000 +0.277618022000000 0.957060738000000 0.416501409000000 +0.281039284000000 0.941441935000000 0.019833400000000 +0.277568439000000 0.953837810000000 0.208250704000000 +0.285948051000000 0.934351494000000 0.277667606000000 +0.282675540000000 0.925971882000000 0.446251510000000 +0.292542656000000 0.913476840000000 0.099167002000000 +0.304095612000000 0.917294770000000 0.426418109000000 +0.282576373000000 0.959688663000000 0.247917505000000 +0.295765584000000 0.939210677000000 0.009916700000000 +0.304095612000000 0.917294770000000 0.228084105000000 +0.292542656000000 0.920368947000000 0.009916700000000 +0.281039284000000 0.968861561000000 0.267750906000000 +0.289170978000000 0.940202347000000 0.188417304000000 +0.294129328000000 0.939508178000000 0.158667203000000 +0.276031350000000 0.959986164000000 0.585085313000000 +0.300872684000000 0.901576800000000 0.019833400000000 +0.287584306000000 0.940450265000000 0.198334004000000 +0.295963918000000 0.913030589000000 0.009916700000000 +0.295815167000000 0.916947636000000 0.386751308000000 +0.284262212000000 0.943970693000000 0.128917103000000 +0.287584306000000 0.934103577000000 0.366917908000000 +0.290906401000000 0.927211470000000 0.039666801000000 +0.284311795000000 0.947044870000000 0.158667203000000 +0.279254278000000 0.959837414000000 0.208250704000000 +0.297501006000000 0.908815942000000 0.178500604000000 +0.287633890000000 0.930831066000000 0.178500604000000 +0.294129328000000 0.923294423000000 0.357001208000000 +0.285898467000000 0.999851249000000 0.039666801000000 +0.285948051000000 0.978133726000000 0.109083702000000 +0.279353445000000 0.947491122000000 0.138833803000000 +0.274494262000000 0.954333645000000 0.654502214000000 +0.283419292000000 0.942780689000000 0.178500604000000 +0.295864751000000 0.906535150000000 0.763585916000000 +0.291005568000000 0.914567677000000 0.238000805000000 +0.286691803000000 0.942185687000000 0.148750503000000 +0.280940117000000 0.929393144000000 0.634668814000000 +0.305880618000000 0.913427257000000 0.198334004000000 +0.295815167000000 0.916947636000000 0.307417707000000 +0.299137262000000 0.908815942000000 0.456168210000000 +0.295765584000000 0.920170613000000 0.188417304000000 +0.279303862000000 0.956812820000000 0.495835011000000 +0.285898467000000 0.959391212000000 0.307417707000000 +0.287534723000000 0.962415805000000 0.128917103000000 +0.292542656000000 0.913476840000000 0.347084507000000 +0.289270145000000 0.933954826000000 0.119000403000000 +0.291005568000000 0.914567677000000 0.366917908000000 +0.289220562000000 0.971886155000000 0.128917103000000 +0.277766773000000 0.950763633000000 0.347084507000000 +0.299236429000000 0.931822686000000 0.178500604000000 +0.299186845000000 0.952052754000000 0.049583501000000 +0.302508940000000 0.917790654000000 0.327251107000000 +0.280890534000000 0.953639476000000 0.238000805000000 +0.281039284000000 0.950565349000000 0.277667606000000 +0.279254278000000 0.959837414000000 0.257834206000000 +0.285105131000000 0.939210677000000 0.238000805000000 +0.299137262000000 0.941888236000000 0.059500201000000 +0.276080934000000 0.951061134000000 0.406584709000000 +0.292542656000000 0.920368947000000 0.555335212000000 +0.280890534000000 0.974910798000000 0.247917505000000 +0.275981767000000 0.962911591000000 0.505751711000000 +0.299186845000000 0.952052754000000 0.109083702000000 +0.292493073000000 0.926963553000000 0.000000000000000 +0.282625956000000 0.956515319000000 0.138833803000000 +0.292542656000000 0.920368947000000 0.436334809000000 +0.279303862000000 0.983835828000000 0.277667606000000 +0.285948051000000 0.928153557000000 0.327251107000000 +0.282576373000000 0.974910798000000 0.148750503000000 +0.280940117000000 0.956614437000000 0.218167405000000 +0.287485139000000 0.952895674000000 0.109083702000000 +0.287683473000000 0.971687870000000 0.119000403000000 +0.292592240000000 0.952598223000000 0.158667203000000 +0.272858006000000 0.960085331000000 0.297501006000000 +0.300823101000000 0.904799728000000 0.535501812000000 +0.292542656000000 0.907576354000000 0.148750503000000 +0.275981767000000 0.962911591000000 0.089250302000000 +0.285997634000000 0.968762444000000 0.208250704000000 +0.290856817000000 0.924087709000000 0.138833803000000 +0.290856817000000 0.943177357000000 0.307417707000000 +0.297451423000000 0.942235271000000 0.198334004000000 +0.275981767000000 0.962911591000000 0.357001208000000 +0.285898467000000 0.940747766000000 0.109083702000000 +0.282675540000000 0.925971882000000 0.595002013000000 +0.297501006000000 0.925723965000000 0.109083702000000 +0.289270145000000 0.949722330000000 0.079333602000000 +0.272758839000000 0.968861561000000 0.000000000000000 +0.294278079000000 0.912435587000000 0.049583501000000 +0.277717189000000 0.980612901000000 0.297501006000000 +0.280940117000000 0.929393144000000 0.019833400000000 +0.290955984000000 0.946400285000000 0.188417304000000 +0.300922268000000 0.908220989000000 0.287584306000000 +0.295864751000000 0.929293977000000 0.128917103000000 +0.300723934000000 0.915063512000000 0.257834206000000 +0.292542656000000 0.945904450000000 0.158667203000000 +0.285948051000000 0.931376484000000 0.456168210000000 +0.299186845000000 0.905394779000000 0.456168210000000 +0.275981767000000 0.974811681000000 0.049583501000000 +0.300823101000000 0.934996129000000 0.059500201000000 +0.292542656000000 0.913476840000000 0.396668009000000 +0.302409773000000 0.911096832000000 0.376834608000000 +0.298244759000000 0.923542241000000 0.119000403000000 +0.279353445000000 0.965836968000000 0.079333602000000 +0.284361379000000 0.940946100000000 0.128917103000000 +0.289270145000000 0.920666398000000 0.376834608000000 +0.297451423000000 0.938962760000000 0.287584306000000 +0.294178912000000 0.926517301000000 0.119000403000000 +0.284262212000000 0.928153557000000 0.495835011000000 +0.289170978000000 0.956069117000000 0.039666801000000 +0.277766773000000 0.950763633000000 0.535501812000000 +0.289170978000000 0.975009965000000 0.039666801000000 +0.280840950000000 0.947491122000000 0.446251510000000 +0.287584306000000 0.990727935000000 0.039666801000000 +0.282576373000000 0.974910798000000 0.257834206000000 +0.280989701000000 0.944565695000000 0.138833803000000 +0.282625956000000 0.984034212000000 0.327251107000000 +0.290906401000000 0.908022655000000 0.069416901000000 +0.290856817000000 0.924087709000000 0.128917103000000 +0.289170978000000 0.978282476000000 0.079333602000000 +0.272709256000000 0.966134568000000 0.366917908000000 +0.279303862000000 0.941789019000000 0.505751711000000 +0.287633890000000 0.946747369000000 0.267750906000000 +0.287633890000000 0.937128170000000 0.099167002000000 +0.294228495000000 0.933111907000000 0.228084105000000 +0.284212628000000 0.987058805000000 0.228084105000000 +0.290856817000000 0.930335231000000 0.049583501000000 +0.279849280000000 0.945011947000000 0.079333602000000 +0.299137262000000 0.955523699000000 0.079333602000000 +0.294129328000000 0.923294423000000 0.347084507000000 +0.298343926000000 0.927112303000000 0.158667203000000 +0.289220562000000 0.971886155000000 0.158667203000000 +0.300872684000000 0.924881045000000 0.158667203000000 +0.280940117000000 0.932268987000000 0.138833803000000 +0.285898467000000 0.996330871000000 0.000000000000000 +0.276080934000000 0.977538674000000 0.188417304000000 +0.282625956000000 0.938070257000000 0.049583501000000 +0.284311795000000 0.950218215000000 0.257834206000000 +0.292542656000000 0.907576354000000 0.109083702000000 +0.280791367000000 0.962762840000000 0.059500201000000 +0.285898467000000 0.962514923000000 0.138833803000000 +0.281039284000000 0.941441935000000 0.049583501000000 +0.280940117000000 0.986810838000000 0.138833803000000 +0.295765584000000 0.939210677000000 0.307417707000000 +0.290955984000000 0.946400285000000 0.238000805000000 +0.272709256000000 0.966134568000000 0.138833803000000 +0.297600173000000 0.912633921000000 0.267750906000000 +0.297501006000000 0.932516954000000 0.188417304000000 +0.289220562000000 0.924385161000000 0.426418109000000 +0.297501006000000 0.925723965000000 0.218167405000000 +0.302508940000000 0.931475651000000 0.297501006000000 +0.300823101000000 0.918236856000000 0.347084507000000 +0.295864751000000 0.906535150000000 0.257834206000000 +0.276080934000000 0.971687870000000 0.247917505000000 +0.292493073000000 0.939855263000000 0.277667606000000 +0.277618022000000 0.963010758000000 0.029750101000000 +0.289220562000000 0.959143245000000 0.109083702000000 +0.283419292000000 0.942780689000000 0.228084105000000 +0.299236429000000 0.931822686000000 0.228084105000000 +0.300872684000000 0.901576800000000 0.644585514000000 +0.284311795000000 0.925575214000000 0.337167807000000 +0.286790970000000 0.948333992000000 0.327251107000000 +0.294129328000000 0.923294423000000 0.366917908000000 +0.307318540000000 0.916402316000000 0.257834206000000 +0.297501006000000 0.908815942000000 0.109083702000000 +0.300872684000000 0.901576800000000 0.773502617000000 +0.294178912000000 0.926517301000000 0.466084910000000 +0.279303862000000 0.956812820000000 0.178500604000000 +0.279254278000000 0.959837414000000 0.019833400000000 +0.295864751000000 0.929293977000000 0.148750503000000 +0.281039284000000 0.941441935000000 0.366917908000000 +0.300823101000000 0.918236856000000 0.228084105000000 +0.277618022000000 0.963010758000000 0.208250704000000 +0.274345511000000 0.966134568000000 0.128917103000000 +0.286741387000000 0.945309398000000 0.039666801000000 +0.282625956000000 0.956515319000000 0.019833400000000 +0.294228495000000 0.929591478000000 0.238000805000000 +0.285105131000000 0.942185687000000 0.000000000000000 +0.286790970000000 0.948333992000000 0.059500201000000 +0.300723934000000 0.915063512000000 0.476001610000000 +0.277618022000000 0.959936630000000 0.019833400000000 +0.304095612000000 0.910948082000000 0.307417707000000 +0.307417707000000 0.913328090000000 0.267750906000000 +0.280940117000000 0.941541102000000 0.188417304000000 +0.299186845000000 0.905394779000000 0.327251107000000 +0.299186845000000 0.952052754000000 0.009916700000000 +0.300872684000000 0.901576800000000 0.119000403000000 +0.284311795000000 0.925575214000000 0.327251107000000 +0.292493073000000 0.955821150000000 0.119000403000000 +0.286741387000000 0.945309398000000 0.218167405000000 +0.294178912000000 0.926517301000000 0.029750101000000 +0.280890534000000 0.977786641000000 0.317334407000000 +0.281039284000000 0.950565349000000 0.396668009000000 +0.289319729000000 0.965985817000000 0.039666801000000 +0.300872684000000 0.924881045000000 0.099167002000000 +0.299137262000000 0.941888236000000 0.247917505000000 +0.285948051000000 0.937425671000000 0.238000805000000 +0.294327662000000 0.910353129000000 0.009916700000000 +0.295963918000000 0.913030589000000 0.525585111000000 +0.297501006000000 0.906287233000000 0.327251107000000 +0.280890534000000 0.953639476000000 0.178500604000000 +0.302508940000000 0.907576354000000 0.347084507000000 +0.280791367000000 0.962762840000000 0.376834608000000 +0.282625956000000 0.934996129000000 0.238000805000000 +0.271866336000000 0.964349562000000 0.644585514000000 +0.294129328000000 0.916798885000000 0.198334004000000 +0.302409773000000 0.911096832000000 0.357001208000000 +0.285948051000000 0.931376484000000 0.327251107000000 +0.298294342000000 0.930434348000000 0.069416901000000 +0.279353445000000 0.965836968000000 0.188417304000000 +0.276080934000000 0.951061134000000 0.128917103000000 +0.282725123000000 0.965836968000000 0.148750503000000 +0.294228495000000 0.907030935000000 0.109083702000000 +0.284311795000000 0.925575214000000 0.178500604000000 +0.290906401000000 0.959044078000000 0.079333602000000 +0.279353445000000 0.938665259000000 0.089250302000000 +0.295864751000000 0.906535150000000 0.099167002000000 +0.302459357000000 0.928351891000000 0.307417707000000 +0.284311795000000 0.950218215000000 0.079333602000000 +0.297451423000000 0.938962760000000 0.000000000000000 +0.280940117000000 0.956614437000000 0.426418109000000 +0.295815167000000 0.916947636000000 0.188417304000000 +0.283419292000000 0.945557365000000 0.039666801000000 +0.294129328000000 0.962217422000000 0.029750101000000 +0.300872684000000 0.931574818000000 0.079333602000000 +0.298294342000000 0.920468114000000 0.347084507000000 +0.282625956000000 0.984034212000000 0.297501006000000 +0.284262212000000 0.971737454000000 0.208250704000000 +0.285997634000000 0.965638683000000 0.257834206000000 +0.299137262000000 0.908815942000000 0.049583501000000 +0.274345511000000 0.966134568000000 0.317334407000000 +0.289319729000000 0.993851695000000 0.069416901000000 +0.275932183000000 0.954036144000000 0.287584306000000 +0.298294342000000 0.930434348000000 0.208250704000000 +0.275981767000000 0.974811681000000 0.138833803000000 +0.302508940000000 0.907576354000000 0.069416901000000 +0.299236429000000 0.931822686000000 0.049583501000000 +0.279204695000000 0.950813167000000 0.128917103000000 +0.294129328000000 0.971836621000000 0.019833400000000 +0.294228495000000 0.933111907000000 0.009916700000000 +0.290906401000000 0.911195999000000 0.079333602000000 +0.279353445000000 0.968911194000000 0.267750906000000 +0.284311795000000 0.947044870000000 0.079333602000000 +0.280940117000000 0.929393144000000 0.009916700000000 +0.291005568000000 0.914567677000000 0.376834608000000 +0.299286012000000 0.912138135000000 0.376834608000000 +0.294278079000000 0.949176911000000 0.009916700000000 +0.282625956000000 0.962713257000000 0.089250302000000 +0.290856817000000 0.965836968000000 0.128917103000000 +0.289220562000000 0.971886155000000 0.049583501000000 +0.307318540000000 0.916402316000000 0.109083702000000 +0.277618022000000 0.971985371000000 0.267750906000000 +0.297501006000000 0.919278060000000 0.505751711000000 +0.282675540000000 0.925971882000000 0.079333602000000 +0.295765584000000 0.939210677000000 0.039666801000000 +0.287633890000000 0.930831066000000 0.188417304000000 +0.290906401000000 0.978232843000000 0.099167002000000 +0.297501006000000 0.925723965000000 0.079333602000000 +0.299087678000000 0.921806868000000 0.366917908000000 +0.286096801000000 0.990232149000000 0.000000000000000 +0.275932183000000 0.954036144000000 0.000000000000000 +0.302459357000000 0.928351891000000 0.099167002000000 +0.297501006000000 0.906287233000000 0.178500604000000 +0.292493073000000 0.939855263000000 0.317334407000000 +0.292493073000000 0.926963553000000 0.039666801000000 +0.285997634000000 0.971787087000000 0.168583904000000 +0.296707670000000 0.924286043000000 0.406584709000000 +0.277618022000000 0.963010758000000 0.148750503000000 +0.302508940000000 0.917790654000000 0.029750101000000 +0.280840950000000 0.971787087000000 0.119000403000000 +0.279254278000000 0.962961224000000 0.327251107000000 +0.290856817000000 0.924087709000000 0.555335212000000 +0.271866336000000 0.964349562000000 0.714002415000000 +0.307268956000000 0.923492707000000 0.000000000000000 +0.284311795000000 0.950218215000000 0.337167807000000 +0.274295928000000 0.963010758000000 0.228084105000000 +0.290906401000000 0.978232843000000 0.039666801000000 +0.297401839000000 0.922501037000000 0.059500201000000 +0.297550590000000 0.916104716000000 0.168583904000000 +0.300773517000000 0.921608534000000 0.366917908000000 +0.284361379000000 0.981009618000000 0.019833400000000 +0.282675540000000 0.931971536000000 0.456168210000000 +0.272659672000000 0.963159508000000 0.515668411000000 +0.287584306000000 0.984331663000000 0.099167002000000 +0.297501006000000 0.906287233000000 0.099167002000000 +0.284361379000000 0.940946100000000 0.158667203000000 +0.307516874000000 0.919922695000000 0.327251107000000 +0.292493073000000 0.904452643000000 0.624752113000000 +0.307417707000000 0.913328090000000 0.337167807000000 +0.289170978000000 0.940202347000000 0.198334004000000 +0.284311795000000 0.950218215000000 0.099167002000000 +0.281039284000000 0.938516508000000 0.069416901000000 +0.275981767000000 0.957060738000000 0.287584306000000 +0.297550590000000 0.902717220000000 0.297501006000000 +0.298294342000000 0.920468114000000 0.000000000000000 +0.295765584000000 0.920170613000000 0.247917505000000 +0.294030161000000 0.920121079000000 0.069416901000000 +0.289270145000000 0.930831066000000 0.138833803000000 +0.287584306000000 0.940450265000000 0.029750101000000 +0.284212628000000 0.987058805000000 0.000000000000000 +0.285948051000000 0.937425671000000 0.327251107000000 +0.302459357000000 0.928351891000000 0.317334407000000 +0.285948051000000 0.937425671000000 0.366917908000000 +0.295914334000000 0.925922349000000 0.059500201000000 +0.292592240000000 0.917294770000000 0.138833803000000 +0.294228495000000 0.929591478000000 0.327251107000000 +0.298244759000000 0.923542241000000 0.366917908000000 +0.271866336000000 0.964349562000000 0.575168612000000 +0.300922268000000 0.911245583000000 0.525585111000000 +0.292493073000000 0.926963553000000 0.089250302000000 +0.289170978000000 0.956069117000000 0.128917103000000 +0.292592240000000 0.929988146000000 0.198334004000000 +0.279799697000000 0.944565695000000 0.257834206000000 +0.297550590000000 0.916104716000000 0.277667606000000 +0.302508940000000 0.917790654000000 0.436334809000000 +0.276080934000000 0.951061134000000 0.208250704000000 +0.292542656000000 0.923641458000000 0.158667203000000 +0.289270145000000 0.930831066000000 0.208250704000000 +0.290906401000000 0.911195999000000 0.357001208000000 +0.302508940000000 0.931475651000000 0.158667203000000 +0.285948051000000 0.978133726000000 0.039666801000000 +0.287534723000000 0.959291995000000 0.089250302000000 +0.280940117000000 0.932268987000000 0.247917505000000 +0.285948051000000 0.931376484000000 0.257834206000000 +0.295021831000000 0.924682761000000 0.317334407000000 +0.276080934000000 0.977538674000000 0.029750101000000 +0.297501006000000 0.906287233000000 0.495835011000000 +0.295765584000000 0.920170613000000 0.079333602000000 +0.304145196000000 0.914022259000000 0.119000403000000 +0.280989701000000 0.935343164000000 0.119000403000000 +0.294178912000000 0.926517301000000 0.109083702000000 +0.277618022000000 0.957060738000000 0.545418512000000 +0.292592240000000 0.929988146000000 0.317334407000000 +0.305880618000000 0.917046852000000 0.337167807000000 +0.292493073000000 0.939855263000000 0.128917103000000 +0.289319729000000 0.965985817000000 0.029750101000000 +0.305682284000000 0.920071446000000 0.287584306000000 +0.292542656000000 0.907576354000000 0.178500604000000 +0.290906401000000 0.911195999000000 0.019833400000000 +0.292592240000000 0.929988146000000 0.386751308000000 +0.292592240000000 0.936384467000000 0.138833803000000 +0.289220562000000 0.924385161000000 0.019833400000000 +0.272758839000000 0.968861561000000 0.119000403000000 +0.290807234000000 0.939954479000000 0.029750101000000 +0.294278079000000 0.945805283000000 0.069416901000000 +0.279254278000000 0.962961224000000 0.079333602000000 +0.294278079000000 0.945805283000000 0.099167002000000 +0.272659672000000 0.957308705000000 0.684252315000000 +0.277618022000000 0.959936630000000 0.267750906000000 +0.282625956000000 0.929046060000000 0.436334809000000 +0.287683473000000 0.927806472000000 0.059500201000000 +0.282625956000000 0.928798192000000 0.089250302000000 +0.299186845000000 0.935491915000000 0.049583501000000 +0.307318540000000 0.916402316000000 0.267750906000000 +0.281039284000000 0.980811235000000 0.099167002000000 +0.285898467000000 0.962514923000000 0.119000403000000 +0.280890534000000 0.974910798000000 0.257834206000000 +0.283419292000000 0.942780689000000 0.138833803000000 +0.290906401000000 0.959044078000000 0.119000403000000 +0.280840950000000 0.947491122000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.495835011000000 +0.292592240000000 0.929988146000000 0.119000403000000 +0.287534723000000 0.987505007000000 0.009916700000000 +0.290955984000000 0.949524045000000 0.000000000000000 +0.302508940000000 0.924980212000000 0.188417304000000 +0.274295928000000 0.963010758000000 0.148750503000000 +0.282625956000000 0.929046060000000 0.247917505000000 +0.295963918000000 0.932616072000000 0.366917908000000 +0.285948051000000 0.928153557000000 0.386751308000000 +0.277618022000000 0.963010758000000 0.168583904000000 +0.294178912000000 0.958697043000000 0.079333602000000 +0.302360190000000 0.914418927000000 0.029750101000000 +0.285848884000000 0.943772359000000 0.277667606000000 +0.303996445000000 0.924236410000000 0.000000000000000 +0.300872684000000 0.901576800000000 0.228084105000000 +0.294178912000000 0.926517301000000 0.218167405000000 +0.292542656000000 0.923641458000000 0.565251912000000 +0.289170978000000 0.956069117000000 0.138833803000000 +0.304095612000000 0.910948082000000 0.257834206000000 +0.282625956000000 0.938070257000000 0.089250302000000 +0.277618022000000 0.957060738000000 0.634668814000000 +0.279353445000000 0.938665259000000 0.247917505000000 +0.280940117000000 0.929393144000000 0.545418512000000 +0.290807234000000 0.939954479000000 0.297501006000000 +0.279353445000000 0.947491122000000 0.099167002000000 +0.299186845000000 0.935491915000000 0.208250704000000 +0.287584306000000 0.990727935000000 0.218167405000000 +0.304095612000000 0.917294770000000 0.297501006000000 +0.290955984000000 0.921013532000000 0.654502214000000 +0.274345511000000 0.966134568000000 0.386751308000000 +0.289270145000000 0.920666398000000 0.545418512000000 +0.294129328000000 0.916798885000000 0.119000403000000 +0.282576373000000 0.944317778000000 0.178500604000000 +0.275981767000000 0.974811681000000 0.198334004000000 +0.289220562000000 0.946499452000000 0.109083702000000 +0.285948051000000 0.928153557000000 0.575168612000000 +0.295914334000000 0.909807711000000 0.059500201000000 +0.292542656000000 0.913476840000000 0.138833803000000 +0.291005568000000 0.914567677000000 0.614835413000000 +0.295765584000000 0.952151971000000 0.039666801000000 +0.295765584000000 0.920170613000000 0.059500201000000 +0.284212628000000 0.931872319000000 0.178500604000000 +0.294129328000000 0.939508178000000 0.307417707000000 +0.298343926000000 0.927112303000000 0.089250302000000 +0.295864751000000 0.906535150000000 0.148750503000000 +0.290856817000000 0.930335231000000 0.366917908000000 +0.272858006000000 0.960085331000000 0.634668814000000 +0.275981767000000 0.957060738000000 0.000000000000000 +0.300823101000000 0.934996129000000 0.049583501000000 +0.289170978000000 0.975009965000000 0.000000000000000 +0.294327662000000 0.910353129000000 0.456168210000000 +0.300823101000000 0.918236856000000 0.317334407000000 +0.298294342000000 0.920468114000000 0.109083702000000 +0.279303862000000 0.956812820000000 0.287584306000000 +0.297501006000000 0.919278060000000 0.128917103000000 +0.295963918000000 0.932616072000000 0.277667606000000 +0.286741387000000 0.945309398000000 0.138833803000000 +0.295963918000000 0.932616072000000 0.079333602000000 +0.285898467000000 0.946995337000000 0.267750906000000 +0.277618022000000 0.959936630000000 0.317334407000000 +0.299286012000000 0.912138135000000 0.386751308000000 +0.282725123000000 0.950366965000000 0.019833400000000 +0.284311795000000 0.990132933000000 0.119000403000000 +0.282625956000000 0.962713257000000 0.267750906000000 +0.284311795000000 0.990132933000000 0.148750503000000 +0.300922268000000 0.911245583000000 0.000000000000000 +0.289220562000000 0.952647806000000 0.168583904000000 +0.279303862000000 0.941789019000000 0.208250704000000 +0.287584306000000 0.940450265000000 0.347084507000000 +0.280890534000000 0.983885362000000 0.148750503000000 +0.285997634000000 0.925228180000000 0.704085715000000 +0.283419292000000 0.939706512000000 0.218167405000000 +0.290906401000000 0.911195999000000 0.267750906000000 +0.300823101000000 0.904799728000000 0.565251912000000 +0.285997634000000 0.925228180000000 0.614835413000000 +0.294228495000000 0.929591478000000 0.049583501000000 +0.280940117000000 0.956614437000000 0.158667203000000 +0.302409773000000 0.911096832000000 0.158667203000000 +0.280840950000000 0.971787087000000 0.019833400000000 +0.281039284000000 0.950565349000000 0.446251510000000 +0.295864751000000 0.906535150000000 0.545418512000000 +0.279204695000000 0.953639476000000 0.059500201000000 +0.290856817000000 0.965836968000000 0.148750503000000 +0.274494262000000 0.954333645000000 0.485918310000000 +0.294278079000000 0.949176911000000 0.049583501000000 +0.279204695000000 0.953639476000000 0.446251510000000 +0.277667606000000 0.965985817000000 0.297501006000000 +0.292493073000000 0.904452643000000 0.327251107000000 +0.296658087000000 0.921112699000000 0.406584709000000 +0.282675540000000 0.941293184000000 0.297501006000000 +0.292493073000000 0.939855263000000 0.287584306000000 +0.281832620000000 0.945656532000000 0.327251107000000 +0.295021831000000 0.927806472000000 0.119000403000000 +0.281039284000000 0.941441935000000 0.009916700000000 +0.294178912000000 0.926517301000000 0.158667203000000 +0.289170978000000 0.978282476000000 0.138833803000000 +0.282576373000000 0.947193621000000 0.059500201000000 +0.292493073000000 0.939855263000000 0.079333602000000 +0.287633890000000 0.978084093000000 0.079333602000000 +0.292592240000000 0.949375295000000 0.128917103000000 +0.279204695000000 0.953639476000000 0.614835413000000 +0.300773517000000 0.921608534000000 0.406584709000000 +0.280890534000000 0.977786641000000 0.128917103000000 +0.275981767000000 0.962911591000000 0.109083702000000 +0.287584306000000 0.924831462000000 0.277667606000000 +0.294327662000000 0.910353129000000 0.515668411000000 +0.297501006000000 0.919278060000000 0.119000403000000 +0.302409773000000 0.934847280000000 0.049583501000000 +0.295815167000000 0.916947636000000 0.347084507000000 +0.280890534000000 0.974910798000000 0.089250302000000 +0.274345511000000 0.966134568000000 0.495835011000000 +0.289270145000000 0.949722330000000 0.307417707000000 +0.279849280000000 0.945011947000000 0.267750906000000 +0.280940117000000 0.941541102000000 0.446251510000000 +0.295963918000000 0.932616072000000 0.347084507000000 +0.286096801000000 0.990232149000000 0.069416901000000 +0.276080934000000 0.971687870000000 0.436334809000000 +0.295815167000000 0.916947636000000 0.406584709000000 +0.285105131000000 0.942185687000000 0.188417304000000 +0.272709256000000 0.966134568000000 0.109083702000000 +0.285749717000000 0.953193274000000 0.277667606000000 +0.285848884000000 0.983984579000000 0.188417304000000 +0.290955984000000 0.946400285000000 0.267750906000000 +0.290955984000000 0.949524045000000 0.238000805000000 +0.284262212000000 0.928153557000000 0.535501812000000 +0.295765584000000 0.939210677000000 0.000000000000000 +0.289270145000000 0.920666398000000 0.684252315000000 +0.282675540000000 0.925971882000000 0.456168210000000 +0.282675540000000 0.968861561000000 0.128917103000000 +0.297451423000000 0.942235271000000 0.158667203000000 +0.302360190000000 0.921311033000000 0.347084507000000 +0.276031350000000 0.959986164000000 0.009916700000000 +0.290906401000000 0.933508575000000 0.109083702000000 +0.302508940000000 0.924980212000000 0.019833400000000 +0.292542656000000 0.923641458000000 0.337167807000000 +0.292641823000000 0.968613743000000 0.099167002000000 +0.287683473000000 0.971687870000000 0.059500201000000 +0.282625956000000 0.934996129000000 0.515668411000000 +0.279254278000000 0.959837414000000 0.476001610000000 +0.287534723000000 0.956118651000000 0.009916700000000 +0.284311795000000 0.925575214000000 0.446251510000000 +0.295716000000000 0.922897705000000 0.495835011000000 +0.277618022000000 0.957060738000000 0.138833803000000 +0.276080934000000 0.971687870000000 0.109083702000000 +0.284212628000000 0.983488793000000 0.178500604000000 +0.287534723000000 0.962415805000000 0.119000403000000 +0.290807234000000 0.962267055000000 0.069416901000000 +0.295021831000000 0.924682761000000 0.436334809000000 +0.281039284000000 0.941441935000000 0.247917505000000 +0.284262212000000 0.934847280000000 0.000000000000000 +0.282576373000000 0.959688663000000 0.128917103000000 +0.275932183000000 0.954036144000000 0.099167002000000 +0.290906401000000 0.978232843000000 0.089250302000000 +0.290906401000000 0.911195999000000 0.257834206000000 +0.289270145000000 0.968663277000000 0.158667203000000 +0.284311795000000 0.925575214000000 0.198334004000000 +0.274444678000000 0.971886155000000 0.188417304000000 +0.280940117000000 0.986810838000000 0.247917505000000 +0.291005568000000 0.914567677000000 0.158667203000000 +0.279353445000000 0.938665259000000 0.456168210000000 +0.292493073000000 0.904452643000000 0.138833803000000 +0.290906401000000 0.911195999000000 0.000000000000000 +0.282675540000000 0.925971882000000 0.287584306000000 +0.277717189000000 0.969010312000000 0.079333602000000 +0.300872684000000 0.901576800000000 0.525585111000000 +0.299137262000000 0.918633524000000 0.059500201000000 +0.297501006000000 0.952003221000000 0.099167002000000 +0.292592240000000 0.917294770000000 0.019833400000000 +0.302508940000000 0.924980212000000 0.238000805000000 +0.295864751000000 0.929293977000000 0.029750101000000 +0.274444678000000 0.968960778000000 0.386751308000000 +0.290856817000000 0.975109132000000 0.029750101000000 +0.294129328000000 0.916798885000000 0.128917103000000 +0.285898467000000 0.996330871000000 0.208250704000000 +0.300922268000000 0.911245583000000 0.347084507000000 +0.300823101000000 0.904799728000000 0.228084105000000 +0.285997634000000 0.950069464000000 0.267750906000000 +0.287633890000000 0.930831066000000 0.277667606000000 +0.292592240000000 0.936384467000000 0.029750101000000 +0.279353445000000 0.965836968000000 0.119000403000000 +0.287633890000000 0.949871180000000 0.079333602000000 +0.279254278000000 0.962961224000000 0.297501006000000 +0.300872684000000 0.931574818000000 0.000000000000000 +0.285948051000000 0.937425671000000 0.158667203000000 +0.277618022000000 0.957060738000000 0.218167405000000 +0.276031350000000 0.959986164000000 0.436334809000000 +0.296658087000000 0.930880699000000 0.317334407000000 +0.286691803000000 0.939111461000000 0.089250302000000 +0.290906401000000 0.927211470000000 0.436334809000000 +0.285105131000000 0.939210677000000 0.287584306000000 +0.304145196000000 0.914022259000000 0.267750906000000 +0.290955984000000 0.921013532000000 0.059500201000000 +0.280940117000000 0.932268987000000 0.386751308000000 +0.290955984000000 0.949524045000000 0.247917505000000 +0.304095612000000 0.917294770000000 0.406584709000000 +0.294129328000000 0.916798885000000 0.138833803000000 +0.302508940000000 0.907576354000000 0.555335212000000 +0.274345511000000 0.957110321000000 0.029750101000000 +0.295021831000000 0.924682761000000 0.476001610000000 +0.285898467000000 0.959391212000000 0.019833400000000 +0.279204695000000 0.953639476000000 0.485918310000000 +0.279353445000000 0.947491122000000 0.049583501000000 +0.295765584000000 0.952151971000000 0.000000000000000 +0.300872684000000 0.901576800000000 0.585085313000000 +0.294030161000000 0.920121079000000 0.009916700000000 +0.300823101000000 0.934996129000000 0.119000403000000 +0.279254278000000 0.959837414000000 0.099167002000000 +0.290856817000000 0.930335231000000 0.337167807000000 +0.281039284000000 0.980811235000000 0.208250704000000 +0.300773517000000 0.928351891000000 0.089250302000000 +0.289220562000000 0.952647806000000 0.148750503000000 +0.281039284000000 0.980811235000000 0.317334407000000 +0.295765584000000 0.952151971000000 0.138833803000000 +0.289270145000000 0.927508971000000 0.535501812000000 +0.282675540000000 0.968861561000000 0.188417304000000 +0.294129328000000 0.939508178000000 0.049583501000000 +0.290856817000000 0.955870734000000 0.009916700000000 +0.287534723000000 0.959291995000000 0.178500604000000 +0.304095612000000 0.922104369000000 0.109083702000000 +0.295914334000000 0.909807711000000 0.604918713000000 +0.285948051000000 0.937425671000000 0.178500604000000 +0.284361379000000 0.981009618000000 0.218167405000000 +0.289170978000000 0.962316589000000 0.128917103000000 +0.297501006000000 0.925723965000000 0.347084507000000 +0.285948051000000 0.928153557000000 0.079333602000000 +0.300823101000000 0.918236856000000 0.297501006000000 +0.279254278000000 0.959837414000000 0.247917505000000 +0.282675540000000 0.925971882000000 0.684252315000000 +0.274494262000000 0.954333645000000 0.039666801000000 +0.300872684000000 0.924881045000000 0.238000805000000 +0.287683473000000 0.927806472000000 0.515668411000000 +0.284163045000000 0.959490280000000 0.089250302000000 +0.295963918000000 0.913030589000000 0.257834206000000 +0.292592240000000 0.933211123000000 0.138833803000000 +0.295914334000000 0.925922349000000 0.138833803000000 +0.284262212000000 0.934847280000000 0.436334809000000 +0.289220562000000 0.943474858000000 0.059500201000000 +0.272709256000000 0.966134568000000 0.000000000000000 +0.285749717000000 0.953193274000000 0.198334004000000 +0.279353445000000 0.947491122000000 0.089250302000000 +0.285105131000000 0.942185687000000 0.138833803000000 +0.284311795000000 0.990132933000000 0.178500604000000 +0.280890534000000 0.974910798000000 0.119000403000000 +0.280840950000000 0.947491122000000 0.128917103000000 +0.305880618000000 0.913427257000000 0.168583904000000 +0.280791367000000 0.962762840000000 0.327251107000000 +0.300872684000000 0.901576800000000 0.297501006000000 +0.282576373000000 0.987058805000000 0.247917505000000 +0.286691803000000 0.942185687000000 0.327251107000000 +0.292592240000000 0.952598223000000 0.069416901000000 +0.292493073000000 0.926963553000000 0.267750906000000 +0.279303862000000 0.974811681000000 0.138833803000000 +0.280940117000000 0.956614437000000 0.327251107000000 +0.280989701000000 0.944565695000000 0.317334407000000 +0.300773517000000 0.921608534000000 0.317334407000000 +0.292542656000000 0.907576354000000 0.505751711000000 +0.282526789000000 0.977935392000000 0.049583501000000 +0.295864751000000 0.906535150000000 0.753669216000000 +0.295765584000000 0.939210677000000 0.267750906000000 +0.286691803000000 0.942185687000000 0.218167405000000 +0.289220562000000 0.924385161000000 0.535501812000000 +0.292592240000000 0.936384467000000 0.099167002000000 +0.290856817000000 0.930335231000000 0.307417707000000 +0.304095612000000 0.917294770000000 0.119000403000000 +0.281832620000000 0.939706512000000 0.317334407000000 +0.289220562000000 0.952647806000000 0.267750906000000 +0.287683473000000 0.927806472000000 0.247917505000000 +0.287584306000000 0.924831462000000 0.148750503000000 +0.289170978000000 0.962316589000000 0.039666801000000 +0.277618022000000 0.963010758000000 0.247917505000000 +0.302409773000000 0.911096832000000 0.386751308000000 +0.276080934000000 0.977538674000000 0.247917505000000 +0.292542656000000 0.923641458000000 0.198334004000000 +0.285948051000000 0.928153557000000 0.297501006000000 +0.292542656000000 0.923641458000000 0.208250704000000 +0.284212628000000 0.987058805000000 0.119000403000000 +0.281039284000000 0.950565349000000 0.267750906000000 +0.300823101000000 0.918236856000000 0.386751308000000 +0.274345511000000 0.957110321000000 0.505751711000000 +0.285749717000000 0.953193274000000 0.238000805000000 +0.307516874000000 0.919922695000000 0.049583501000000 +0.279303862000000 0.956812820000000 0.208250704000000 +0.297451423000000 0.942235271000000 0.079333602000000 +0.300872684000000 0.924881045000000 0.168583904000000 +0.304095612000000 0.922104369000000 0.218167405000000 +0.277717189000000 0.980612901000000 0.069416901000000 +0.281039284000000 0.941441935000000 0.347084507000000 +0.289170978000000 0.962316589000000 0.029750101000000 +0.305731868000000 0.923641458000000 0.039666801000000 +0.285997634000000 0.965638683000000 0.099167002000000 +0.285848884000000 0.987257090000000 0.029750101000000 +0.300922268000000 0.908220989000000 0.138833803000000 +0.305731868000000 0.910055529000000 0.347084507000000 +0.279849280000000 0.945011947000000 0.228084105000000 +0.294228495000000 0.907030935000000 0.327251107000000 +0.289270145000000 0.933954826000000 0.327251107000000 +0.282625956000000 0.938070257000000 0.317334407000000 +0.297600173000000 0.912633921000000 0.158667203000000 +0.287534723000000 0.959291995000000 0.148750503000000 +0.280940117000000 0.932268987000000 0.238000805000000 +0.287534723000000 0.962415805000000 0.238000805000000 +0.284311795000000 0.941045217000000 0.148750503000000 +0.285154715000000 0.948333992000000 0.089250302000000 +0.282526789000000 0.977935392000000 0.257834206000000 +0.304095612000000 0.917294770000000 0.099167002000000 +0.289170978000000 0.956069117000000 0.228084105000000 +0.289220562000000 0.952647806000000 0.029750101000000 +0.280890534000000 0.983885362000000 0.327251107000000 +0.272659672000000 0.963159508000000 0.466084910000000 +0.294228495000000 0.907030935000000 0.357001208000000 +0.284311795000000 0.947044870000000 0.188417304000000 +0.292493073000000 0.904452643000000 0.257834206000000 +0.282576373000000 0.959688663000000 0.109083702000000 +0.284262212000000 0.928153557000000 0.158667203000000 +0.287534723000000 0.974960382000000 0.138833803000000 +0.295864751000000 0.929293977000000 0.347084507000000 +0.289220562000000 0.924385161000000 0.515668411000000 +0.289270145000000 0.927508971000000 0.039666801000000 +0.297501006000000 0.908815942000000 0.674335615000000 +0.300872684000000 0.901576800000000 0.436334809000000 +0.302360190000000 0.921311033000000 0.357001208000000 +0.290807234000000 0.971836621000000 0.109083702000000 +0.300773517000000 0.921608534000000 0.158667203000000 +0.284311795000000 0.925575214000000 0.396668009000000 +0.292592240000000 0.933211123000000 0.287584306000000 +0.297550590000000 0.928798192000000 0.307417707000000 +0.300773517000000 0.921608534000000 0.297501006000000 +0.280940117000000 0.932268987000000 0.267750906000000 +0.284262212000000 0.928153557000000 0.277667606000000 +0.295963918000000 0.932616072000000 0.317334407000000 +0.292344322000000 0.972034905000000 0.079333602000000 +0.295914334000000 0.909807711000000 0.585085313000000 +0.284212628000000 0.962564506000000 0.208250704000000 +0.294129328000000 0.923294423000000 0.000000000000000 +0.279303862000000 0.941789019000000 0.138833803000000 +0.296658087000000 0.930880699000000 0.109083702000000 +0.292493073000000 0.955821150000000 0.000000000000000 +0.295864751000000 0.929293977000000 0.257834206000000 +0.287485139000000 0.996727539000000 0.178500604000000 +0.285997634000000 0.950069464000000 0.307417707000000 +0.297501006000000 0.908815942000000 0.495835011000000 +0.285749717000000 0.953193274000000 0.019833400000000 +0.277618022000000 0.971985371000000 0.376834608000000 +0.295914334000000 0.909807711000000 0.614835413000000 +0.299137262000000 0.918633524000000 0.287584306000000 +0.287584306000000 0.940450265000000 0.178500604000000 +0.289220562000000 0.943474858000000 0.099167002000000 +0.302508940000000 0.931475651000000 0.138833803000000 +0.277717189000000 0.969010312000000 0.099167002000000 +0.297451423000000 0.938962760000000 0.039666801000000 +0.294129328000000 0.916798885000000 0.247917505000000 +0.284212628000000 0.999652965000000 0.059500201000000 +0.298294342000000 0.920468114000000 0.317334407000000 +0.275981767000000 0.957060738000000 0.595002013000000 +0.292592240000000 0.936384467000000 0.208250704000000 +0.294030161000000 0.920121079000000 0.079333602000000 +0.277667606000000 0.965985817000000 0.198334004000000 +0.290856817000000 0.930335231000000 0.386751308000000 +0.271122584000000 0.966134568000000 0.138833803000000 +0.295864751000000 0.929293977000000 0.406584709000000 +0.296658087000000 0.930880699000000 0.019833400000000 +0.294278079000000 0.949176911000000 0.069416901000000 +0.280989701000000 0.944565695000000 0.208250704000000 +0.284311795000000 0.996231704000000 0.218167405000000 +0.286691803000000 0.939111461000000 0.049583501000000 +0.295815167000000 0.916947636000000 0.198334004000000 +0.286790970000000 0.948333992000000 0.178500604000000 +0.287633890000000 0.930831066000000 0.396668009000000 +0.294228495000000 0.933111907000000 0.029750101000000 +0.277568439000000 0.953837810000000 0.247917505000000 +0.274345511000000 0.957110321000000 0.158667203000000 +0.290856817000000 0.955870734000000 0.089250302000000 +0.304145196000000 0.914022259000000 0.069416901000000 +0.279254278000000 0.959837414000000 0.456168210000000 +0.299137262000000 0.938863642000000 0.218167405000000 +0.281039284000000 0.959936630000000 0.238000805000000 +0.275932183000000 0.954036144000000 0.158667203000000 +0.279353445000000 0.947491122000000 0.357001208000000 +0.297401839000000 0.922501037000000 0.019833400000000 +0.295765584000000 0.920170613000000 0.267750906000000 +0.287485139000000 0.996727539000000 0.039666801000000 +0.279353445000000 0.965836968000000 0.019833400000000 +0.295765584000000 0.920170613000000 0.168583904000000 +0.279204695000000 0.950813167000000 0.565251912000000 +0.282625956000000 0.956515319000000 0.238000805000000 +0.302508940000000 0.907576354000000 0.119000403000000 +0.286790970000000 0.948333992000000 0.287584306000000 +0.295716000000000 0.922897705000000 0.357001208000000 +0.287633890000000 0.937128170000000 0.386751308000000 +0.284262212000000 0.928153557000000 0.357001208000000 +0.285898467000000 0.940747766000000 0.267750906000000 +0.280940117000000 0.956614437000000 0.456168210000000 +0.297550590000000 0.928798192000000 0.000000000000000 +0.299137262000000 0.908815942000000 0.604918713000000 +0.281039284000000 0.980811235000000 0.257834206000000 +0.274444678000000 0.968960778000000 0.287584306000000 +0.274395095000000 0.960134915000000 0.555335212000000 +0.297550590000000 0.928798192000000 0.039666801000000 +0.298294342000000 0.920468114000000 0.158667203000000 +0.300823101000000 0.904799728000000 0.257834206000000 +0.289270145000000 0.927508971000000 0.456168210000000 +0.294278079000000 0.945805283000000 0.089250302000000 +0.285948051000000 0.931376484000000 0.069416901000000 +0.284262212000000 0.928153557000000 0.109083702000000 +0.292542656000000 0.907576354000000 0.555335212000000 +0.284262212000000 0.934847280000000 0.128917103000000 +0.285105131000000 0.942185687000000 0.168583904000000 +0.277568439000000 0.953837810000000 0.009916700000000 +0.271866336000000 0.964349562000000 0.000000000000000 +0.287534723000000 0.974960382000000 0.049583501000000 +0.297501006000000 0.925723965000000 0.357001208000000 +0.296658087000000 0.930880699000000 0.208250704000000 +0.277667606000000 0.965985817000000 0.138833803000000 +0.282625956000000 0.938070257000000 0.059500201000000 +0.292542656000000 0.913476840000000 0.545418512000000 +0.292542656000000 0.945904450000000 0.228084105000000 +0.282675540000000 0.931971536000000 0.545418512000000 +0.289220562000000 0.946499452000000 0.148750503000000 +0.287633890000000 0.930831066000000 0.218167405000000 +0.279204695000000 0.950813167000000 0.317334407000000 +0.279204695000000 0.953639476000000 0.009916700000000 +0.290906401000000 0.959044078000000 0.138833803000000 +0.277618022000000 0.957060738000000 0.267750906000000 +0.282725123000000 0.950366965000000 0.000000000000000 +0.296658087000000 0.930880699000000 0.029750101000000 +0.295864751000000 0.906535150000000 0.426418109000000 +0.282675540000000 0.931971536000000 0.297501006000000 +0.297550590000000 0.916104716000000 0.099167002000000 +0.295864751000000 0.906535150000000 0.297501006000000 +0.284212628000000 0.956366569000000 0.208250704000000 +0.289270145000000 0.927508971000000 0.366917908000000 +0.302409773000000 0.934847280000000 0.109083702000000 +0.289319729000000 0.937029003000000 0.366917908000000 +0.276080934000000 0.951061134000000 0.158667203000000 +0.285948051000000 0.928153557000000 0.168583904000000 +0.279353445000000 0.965836968000000 0.376834608000000 +0.284212628000000 0.962564506000000 0.079333602000000 +0.298294342000000 0.920468114000000 0.119000403000000 +0.297401839000000 0.922501037000000 0.138833803000000 +0.275932183000000 0.954036144000000 0.317334407000000 +0.295765584000000 0.942532772000000 0.247917505000000 +0.299137262000000 0.918633524000000 0.366917908000000 +0.294129328000000 0.916798885000000 0.109083702000000 +0.302459357000000 0.928351891000000 0.128917103000000 +0.290856817000000 0.975109132000000 0.049583501000000 +0.292542656000000 0.907576354000000 0.634668814000000 +0.284212628000000 0.956366569000000 0.109083702000000 +0.284311795000000 0.996231704000000 0.158667203000000 +0.292592240000000 0.933211123000000 0.208250704000000 +0.290906401000000 0.952697390000000 0.109083702000000 +0.282675540000000 0.993058359000000 0.069416901000000 +0.294129328000000 0.955821150000000 0.069416901000000 +0.287633890000000 0.930831066000000 0.109083702000000 +0.279303862000000 0.956812820000000 0.029750101000000 +0.284212628000000 0.962564506000000 0.228084105000000 +0.296658087000000 0.921112699000000 0.059500201000000 +0.283419292000000 0.945557365000000 0.148750503000000 +0.280940117000000 0.929393144000000 0.069416901000000 +0.302508940000000 0.907576354000000 0.416501409000000 +0.282576373000000 0.987058805000000 0.287584306000000 +0.290856817000000 0.965836968000000 0.158667203000000 +0.292592240000000 0.933211123000000 0.267750906000000 +0.295864751000000 0.906535150000000 0.357001208000000 +0.300872684000000 0.931574818000000 0.257834206000000 +0.295021831000000 0.927806472000000 0.079333602000000 +0.275981767000000 0.974811681000000 0.000000000000000 +0.284212628000000 0.956366569000000 0.039666801000000 +0.274295928000000 0.963010758000000 0.277667606000000 +0.282675540000000 0.971935788000000 0.317334407000000 +0.282625956000000 0.929046060000000 0.228084105000000 +0.287584306000000 0.934103577000000 0.148750503000000 +0.285898467000000 0.956267402000000 0.287584306000000 +0.290906401000000 0.908022655000000 0.337167807000000 +0.289270145000000 0.949722330000000 0.287584306000000 +0.298244759000000 0.923542241000000 0.148750503000000 +0.297600173000000 0.912633921000000 0.476001610000000 +0.299137262000000 0.918633524000000 0.406584709000000 +0.292493073000000 0.955821150000000 0.158667203000000 +0.282576373000000 0.987058805000000 0.069416901000000 +0.281039284000000 0.992909609000000 0.049583501000000 +0.279204695000000 0.950813167000000 0.525585111000000 +0.299186845000000 0.905394779000000 0.089250302000000 +0.302508940000000 0.904353476000000 0.000000000000000 +0.290856817000000 0.965836968000000 0.109083702000000 +0.298343926000000 0.927112303000000 0.188417304000000 +0.280940117000000 0.929393144000000 0.148750503000000 +0.297501006000000 0.919278060000000 0.327251107000000 +0.289270145000000 0.920666398000000 0.753669216000000 +0.285948051000000 0.978133726000000 0.198334004000000 +0.305880618000000 0.913427257000000 0.446251510000000 +0.297550590000000 0.902717220000000 0.019833400000000 +0.276031350000000 0.959986164000000 0.267750906000000 +0.276080934000000 0.966084935000000 0.128917103000000 +0.281039284000000 0.959936630000000 0.366917908000000 +0.289319729000000 0.937029003000000 0.079333602000000 +0.277766773000000 0.950763633000000 0.267750906000000 +0.279303862000000 0.974811681000000 0.247917505000000 +0.287534723000000 0.956118651000000 0.019833400000000 +0.299137262000000 0.918633524000000 0.257834206000000 +0.290955984000000 0.921013532000000 0.277667606000000 +0.287485139000000 0.996727539000000 0.009916700000000 +0.307417707000000 0.913328090000000 0.257834206000000 +0.292493073000000 0.926963553000000 0.277667606000000 +0.284212628000000 0.987058805000000 0.267750906000000 +0.289270145000000 0.927508971000000 0.257834206000000 +0.274345511000000 0.966134568000000 0.079333602000000 +0.274494262000000 0.954333645000000 0.327251107000000 +0.281039284000000 0.968861561000000 0.198334004000000 +0.274444678000000 0.968960778000000 0.059500201000000 +0.302360190000000 0.914418927000000 0.247917505000000 +0.279353445000000 0.965836968000000 0.009916700000000 +0.292542656000000 0.920368947000000 0.257834206000000 +0.304095612000000 0.910948082000000 0.466084910000000 +0.297501006000000 0.906287233000000 0.228084105000000 +0.277618022000000 0.959936630000000 0.515668411000000 +0.297501006000000 0.952003221000000 0.019833400000000 +0.297550590000000 0.928798192000000 0.099167002000000 +0.280989701000000 0.944565695000000 0.188417304000000 +0.303996445000000 0.924236410000000 0.307417707000000 +0.275981767000000 0.957060738000000 0.426418109000000 +0.290906401000000 0.936582752000000 0.218167405000000 +0.287584306000000 0.924831462000000 0.168583904000000 +0.277717189000000 0.969010312000000 0.089250302000000 +0.295765584000000 0.939210677000000 0.158667203000000 +0.287534723000000 0.959291995000000 0.009916700000000 +0.277717189000000 0.969010312000000 0.247917505000000 +0.297501006000000 0.906287233000000 0.218167405000000 +0.294228495000000 0.933111907000000 0.218167405000000 +0.282675540000000 0.971935788000000 0.138833803000000 +0.299286012000000 0.912138135000000 0.267750906000000 +0.284212628000000 0.931872319000000 0.337167807000000 +0.297501006000000 0.919278060000000 0.257834206000000 +0.282675540000000 0.968861561000000 0.178500604000000 +0.271866336000000 0.964349562000000 0.476001610000000 +0.279303862000000 0.974811681000000 0.208250704000000 +0.302360190000000 0.921311033000000 0.009916700000000 +0.302360190000000 0.914418927000000 0.376834608000000 +0.287534723000000 0.956118651000000 0.178500604000000 +0.292542656000000 0.923641458000000 0.485918310000000 +0.282675540000000 0.931971536000000 0.357001208000000 +0.300872684000000 0.901576800000000 0.704085715000000 +0.295765584000000 0.942532772000000 0.049583501000000 +0.274295928000000 0.963010758000000 0.466084910000000 +0.292493073000000 0.904452643000000 0.535501812000000 +0.305880618000000 0.913427257000000 0.029750101000000 +0.279303862000000 0.983835828000000 0.257834206000000 +0.292493073000000 0.939855263000000 0.039666801000000 +0.277618022000000 0.971985371000000 0.228084105000000 +0.303996445000000 0.924236410000000 0.029750101000000 +0.272709256000000 0.966134568000000 0.158667203000000 +0.281039284000000 0.950565349000000 0.029750101000000 +0.280840950000000 0.971787087000000 0.366917908000000 +0.282526789000000 0.977935392000000 0.069416901000000 +0.300872684000000 0.901576800000000 0.485918310000000 +0.289319729000000 0.993851695000000 0.029750101000000 +0.283419292000000 0.939706512000000 0.287584306000000 +0.297501006000000 0.906287233000000 0.128917103000000 +0.297501006000000 0.908815942000000 0.614835413000000 +0.272659672000000 0.963159508000000 0.456168210000000 +0.279799697000000 0.944565695000000 0.337167807000000 +0.302508940000000 0.904353476000000 0.535501812000000 +0.285997634000000 0.925228180000000 0.485918310000000 +0.284311795000000 0.925575214000000 0.287584306000000 +0.284212628000000 0.962564506000000 0.109083702000000 +0.282625956000000 0.934996129000000 0.000000000000000 +0.298244759000000 0.923542241000000 0.247917505000000 +0.290906401000000 0.933508575000000 0.148750503000000 +0.280840950000000 0.947491122000000 0.029750101000000 +0.297501006000000 0.935591082000000 0.188417304000000 +0.300823101000000 0.904799728000000 0.704085715000000 +0.279204695000000 0.953639476000000 0.148750503000000 +0.274345511000000 0.957110321000000 0.575168612000000 +0.277618022000000 0.963010758000000 0.238000805000000 +0.284311795000000 0.925575214000000 0.426418109000000 +0.303996445000000 0.924236410000000 0.168583904000000 +0.297501006000000 0.908815942000000 0.138833803000000 +0.284311795000000 0.978034559000000 0.099167002000000 +0.277667606000000 0.965985817000000 0.396668009000000 +0.294129328000000 0.923294423000000 0.069416901000000 +0.276080934000000 0.971687870000000 0.307417707000000 +0.292592240000000 0.933211123000000 0.059500201000000 +0.284361379000000 0.940946100000000 0.009916700000000 +0.282625956000000 0.984034212000000 0.277667606000000 +0.280940117000000 0.941541102000000 0.228084105000000 +0.290906401000000 0.927211470000000 0.228084105000000 +0.295864751000000 0.906535150000000 0.684252315000000 +0.294327662000000 0.910353129000000 0.099167002000000 +0.292493073000000 0.942929440000000 0.238000805000000 +0.285898467000000 0.962514923000000 0.128917103000000 +0.280989701000000 0.944565695000000 0.089250302000000 +0.279353445000000 0.947491122000000 0.624752113000000 +0.295765584000000 0.920170613000000 0.466084910000000 +0.290906401000000 0.908022655000000 0.426418109000000 +0.299137262000000 0.955523699000000 0.039666801000000 +0.285948051000000 0.928153557000000 0.545418512000000 +0.294030161000000 0.920121079000000 0.119000403000000 +0.294129328000000 0.923294423000000 0.247917505000000 +0.280890534000000 0.983885362000000 0.357001208000000 +0.294228495000000 0.907030935000000 0.446251510000000 +0.289270145000000 0.927508971000000 0.247917505000000 +0.277618022000000 0.971985371000000 0.109083702000000 +0.282625956000000 0.934996129000000 0.019833400000000 +0.279799697000000 0.944565695000000 0.188417304000000 +0.282576373000000 0.974910798000000 0.277667606000000 +0.284311795000000 0.941045217000000 0.128917103000000 +0.290856817000000 0.924087709000000 0.565251912000000 +0.276080934000000 0.951061134000000 0.585085313000000 +0.290807234000000 0.962267055000000 0.138833803000000 +0.277766773000000 0.950763633000000 0.029750101000000 +0.276080934000000 0.951061134000000 0.327251107000000 +0.292493073000000 0.962267055000000 0.069416901000000 +0.290856817000000 0.965836968000000 0.178500604000000 +0.283468876000000 0.948929043000000 0.178500604000000 +0.295914334000000 0.935888583000000 0.039666801000000 +0.279303862000000 0.956812820000000 0.119000403000000 +0.290955984000000 0.946400285000000 0.257834206000000 +0.282625956000000 0.929046060000000 0.138833803000000 +0.282625956000000 0.934996129000000 0.476001610000000 +0.283419292000000 0.939706512000000 0.138833803000000 +0.296658087000000 0.930880699000000 0.307417707000000 +0.286741387000000 0.945309398000000 0.128917103000000 +0.279204695000000 0.953639476000000 0.575168612000000 +0.284311795000000 0.968762444000000 0.089250302000000 +0.295021831000000 0.927806472000000 0.366917908000000 +0.300922268000000 0.908220989000000 0.238000805000000 +0.285997634000000 0.971787087000000 0.228084105000000 +0.280890534000000 0.953639476000000 0.218167405000000 +0.297501006000000 0.935591082000000 0.148750503000000 +0.276080934000000 0.966084935000000 0.366917908000000 +0.295765584000000 0.920170613000000 0.109083702000000 +0.292542656000000 0.913476840000000 0.327251107000000 +0.276080934000000 0.977538674000000 0.059500201000000 +0.287485139000000 0.952895674000000 0.158667203000000 +0.295914334000000 0.948929043000000 0.168583904000000 +0.282576373000000 0.987058805000000 0.178500604000000 +0.297600173000000 0.912633921000000 0.466084910000000 +0.289220562000000 0.946499452000000 0.000000000000000 +0.299186845000000 0.905394779000000 0.545418512000000 +0.284212628000000 0.962564506000000 0.188417304000000 +0.275932183000000 0.954036144000000 0.238000805000000 +0.294129328000000 0.955821150000000 0.138833803000000 +0.276080934000000 0.951061134000000 0.555335212000000 +0.294228495000000 0.929591478000000 0.188417304000000 +0.302409773000000 0.934847280000000 0.267750906000000 +0.304194779000000 0.907526820000000 0.277667606000000 +0.271122584000000 0.966134568000000 0.059500201000000 +0.300773517000000 0.921608534000000 0.039666801000000 +0.282675540000000 0.968861561000000 0.049583501000000 +0.294228495000000 0.907030935000000 0.337167807000000 +0.297501006000000 0.932516954000000 0.178500604000000 +0.286691803000000 0.942185687000000 0.347084507000000 +0.298294342000000 0.920468114000000 0.039666801000000 +0.295864751000000 0.906535150000000 0.585085313000000 +0.294129328000000 0.939508178000000 0.029750101000000 +0.297501006000000 0.932516954000000 0.277667606000000 +0.297451423000000 0.942235271000000 0.188417304000000 +0.281039284000000 0.941441935000000 0.257834206000000 +0.292493073000000 0.926963553000000 0.257834206000000 +0.276080934000000 0.971687870000000 0.347084507000000 +0.294129328000000 0.923294423000000 0.019833400000000 +0.279353445000000 0.947491122000000 0.535501812000000 +0.302360190000000 0.914418927000000 0.416501409000000 +0.281832620000000 0.939706512000000 0.416501409000000 +0.289121395000000 0.988000793000000 0.000000000000000 +0.282625956000000 0.938070257000000 0.218167405000000 +0.285848884000000 0.983984579000000 0.168583904000000 +0.281039284000000 0.938516508000000 0.158667203000000 +0.282675540000000 0.993058359000000 0.099167002000000 +0.281039284000000 0.965787434000000 0.257834206000000 +0.285898467000000 0.959391212000000 0.297501006000000 +0.289270145000000 0.927508971000000 0.208250704000000 +0.285948051000000 0.928153557000000 0.485918310000000 +0.295914334000000 0.925922349000000 0.376834608000000 +0.290906401000000 0.959044078000000 0.059500201000000 +0.296707670000000 0.924286043000000 0.426418109000000 +0.281832620000000 0.939706512000000 0.039666801000000 +0.302360190000000 0.914418927000000 0.119000403000000 +0.285898467000000 0.996330871000000 0.218167405000000 +0.300723934000000 0.915063512000000 0.109083702000000 +0.295914334000000 0.909807711000000 0.575168612000000 +0.283419292000000 0.945557365000000 0.188417304000000 +0.302409773000000 0.911096832000000 0.000000000000000 +0.282675540000000 0.925971882000000 0.396668009000000 +0.290807234000000 0.939954479000000 0.119000403000000 +0.282625956000000 0.928798192000000 0.039666801000000 +0.281039284000000 0.938516508000000 0.446251510000000 +0.274345511000000 0.966134568000000 0.515668411000000 +0.281039284000000 0.980811235000000 0.059500201000000 +0.289270145000000 0.930831066000000 0.188417304000000 +0.279303862000000 0.956812820000000 0.376834608000000 +0.284262212000000 0.934847280000000 0.148750503000000 +0.281039284000000 0.938516508000000 0.525585111000000 +0.290906401000000 0.911195999000000 0.069416901000000 +0.295963918000000 0.913030589000000 0.634668814000000 +0.277618022000000 0.957060738000000 0.079333602000000 +0.299286012000000 0.912138135000000 0.039666801000000 +0.294327662000000 0.910353129000000 0.466084910000000 +0.280940117000000 0.932268987000000 0.595002013000000 +0.279353445000000 0.968911194000000 0.158667203000000 +0.281039284000000 0.941441935000000 0.287584306000000 +0.285848884000000 0.943772359000000 0.148750503000000 +0.292493073000000 0.955821150000000 0.128917103000000 +0.272659672000000 0.957308705000000 0.148750503000000 +0.290906401000000 0.933508575000000 0.178500604000000 +0.272659672000000 0.963159508000000 0.089250302000000 +0.292592240000000 0.952598223000000 0.039666801000000 +0.285948051000000 0.993405494000000 0.218167405000000 +0.294178912000000 0.942929440000000 0.277667606000000 +0.285948051000000 0.931376484000000 0.287584306000000 +0.282675540000000 0.968861561000000 0.168583904000000 +0.290955984000000 0.946400285000000 0.059500201000000 +0.292592240000000 0.933211123000000 0.297501006000000 +0.284311795000000 0.968762444000000 0.307417707000000 +0.289319729000000 0.937029003000000 0.247917505000000 +0.292493073000000 0.926963553000000 0.337167807000000 +0.274444678000000 0.968960778000000 0.089250302000000 +0.276080934000000 0.951061134000000 0.495835011000000 +0.275981767000000 0.962911591000000 0.485918310000000 +0.282675540000000 0.993058359000000 0.148750503000000 +0.304194779000000 0.907526820000000 0.099167002000000 +0.302508940000000 0.924980212000000 0.297501006000000 +0.300823101000000 0.918236856000000 0.267750906000000 +0.283419292000000 0.942780689000000 0.208250704000000 +0.280791367000000 0.962762840000000 0.198334004000000 +0.289220562000000 0.943474858000000 0.178500604000000 +0.297401839000000 0.922501037000000 0.009916700000000 +0.285997634000000 0.925228180000000 0.634668814000000 +0.285997634000000 0.968762444000000 0.069416901000000 +0.294129328000000 0.939508178000000 0.079333602000000 +0.287584306000000 0.924831462000000 0.247917505000000 +0.305880618000000 0.913427257000000 0.119000403000000 +0.285848884000000 0.943772359000000 0.247917505000000 +0.302508940000000 0.904353476000000 0.406584709000000 +0.289270145000000 0.920666398000000 0.148750503000000 +0.280890534000000 0.953639476000000 0.485918310000000 +0.287633890000000 0.946747369000000 0.188417304000000 +0.276080934000000 0.971687870000000 0.168583904000000 +0.290906401000000 0.952697390000000 0.277667606000000 +0.287534723000000 0.962415805000000 0.009916700000000 +0.292493073000000 0.904452643000000 0.614835413000000 +0.300922268000000 0.908220989000000 0.337167807000000 +0.290856817000000 0.924087709000000 0.416501409000000 +0.274444678000000 0.968960778000000 0.079333602000000 +0.294178912000000 0.936285251000000 0.238000805000000 +0.295914334000000 0.935888583000000 0.069416901000000 +0.299286012000000 0.912138135000000 0.307417707000000 +0.302508940000000 0.924980212000000 0.277667606000000 +0.295765584000000 0.939210677000000 0.109083702000000 +0.283468876000000 0.948929043000000 0.357001208000000 +0.281039284000000 0.968861561000000 0.039666801000000 +0.272659672000000 0.963159508000000 0.495835011000000 +0.277568439000000 0.953837810000000 0.188417304000000 +0.284262212000000 0.934847280000000 0.396668009000000 +0.284311795000000 0.947044870000000 0.347084507000000 +0.302409773000000 0.934847280000000 0.287584306000000 +0.297600173000000 0.912633921000000 0.059500201000000 +0.279204695000000 0.953639476000000 0.138833803000000 +0.292493073000000 0.904452643000000 0.079333602000000 +0.297600173000000 0.912633921000000 0.188417304000000 +0.280840950000000 0.971787087000000 0.228084105000000 +0.289170978000000 0.940202347000000 0.317334407000000 +0.284212628000000 0.983488793000000 0.158667203000000 +0.289270145000000 0.920666398000000 0.604918713000000 +0.297550590000000 0.916104716000000 0.476001610000000 +0.300823101000000 0.904799728000000 0.366917908000000 +0.284311795000000 0.950218215000000 0.297501006000000 +0.279849280000000 0.945011947000000 0.277667606000000 +0.296658087000000 0.921112699000000 0.178500604000000 +0.294129328000000 0.923294423000000 0.059500201000000 +0.282675540000000 0.925971882000000 0.297501006000000 +0.287633890000000 0.949871180000000 0.138833803000000 +0.287683473000000 0.927806472000000 0.357001208000000 +0.277618022000000 0.959936630000000 0.148750503000000 +0.297550590000000 0.916104716000000 0.287584306000000 +0.284311795000000 0.941045217000000 0.009916700000000 +0.284311795000000 0.925575214000000 0.247917505000000 +0.284311795000000 0.941045217000000 0.069416901000000 +0.305731868000000 0.923641458000000 0.198334004000000 +0.282725123000000 0.965836968000000 0.218167405000000 +0.291005568000000 0.914567677000000 0.128917103000000 +0.279303862000000 0.956812820000000 0.148750503000000 +0.289170978000000 0.940202347000000 0.307417707000000 +0.304145196000000 0.914022259000000 0.059500201000000 +0.285898467000000 0.956267402000000 0.238000805000000 +0.279353445000000 0.965836968000000 0.178500604000000 +0.274395095000000 0.960134915000000 0.456168210000000 +0.280940117000000 0.929393144000000 0.347084507000000 +0.285948051000000 0.928153557000000 0.158667203000000 +0.302360190000000 0.914418927000000 0.128917103000000 +0.274345511000000 0.966134568000000 0.218167405000000 +0.271122584000000 0.966134568000000 0.049583501000000 +0.276031350000000 0.959986164000000 0.119000403000000 +0.274494262000000 0.954333645000000 0.069416901000000 +0.289270145000000 0.920666398000000 0.862752919000000 +0.277766773000000 0.950763633000000 0.019833400000000 +0.297501006000000 0.919278060000000 0.525585111000000 +0.281039284000000 0.968861561000000 0.119000403000000 +0.302360190000000 0.914418927000000 0.148750503000000 +0.304095612000000 0.910948082000000 0.337167807000000 +0.300823101000000 0.918236856000000 0.029750101000000 +0.295963918000000 0.913030589000000 0.119000403000000 +0.286741387000000 0.945309398000000 0.089250302000000 +0.292542656000000 0.907576354000000 0.396668009000000 +0.304095612000000 0.910948082000000 0.297501006000000 +0.292493073000000 0.926963553000000 0.019833400000000 +0.279799697000000 0.944565695000000 0.238000805000000 +0.302360190000000 0.914418927000000 0.168583904000000 +0.276031350000000 0.959986164000000 0.178500604000000 +0.289270145000000 0.968663277000000 0.188417304000000 +0.284361379000000 0.937971090000000 0.277667606000000 +0.285898467000000 0.959391212000000 0.099167002000000 +0.297451423000000 0.938962760000000 0.307417707000000 +0.294278079000000 0.912435587000000 0.267750906000000 +0.284262212000000 0.943970693000000 0.109083702000000 +0.302508940000000 0.907576354000000 0.138833803000000 +0.289220562000000 0.946499452000000 0.267750906000000 +0.299137262000000 0.941888236000000 0.039666801000000 +0.280840950000000 0.947491122000000 0.357001208000000 +0.299186845000000 0.905394779000000 0.029750101000000 +0.284262212000000 0.943970693000000 0.228084105000000 +0.272709256000000 0.966134568000000 0.257834206000000 +0.277717189000000 0.969010312000000 0.376834608000000 +0.289220562000000 0.924385161000000 0.208250704000000 +0.285848884000000 0.983984579000000 0.089250302000000 +0.284311795000000 0.925575214000000 0.436334809000000 +0.305880618000000 0.917046852000000 0.287584306000000 +0.275981767000000 0.962911591000000 0.059500201000000 +0.271122584000000 0.966134568000000 0.198334004000000 +0.280840950000000 0.947491122000000 0.287584306000000 +0.275932183000000 0.954036144000000 0.604918713000000 +0.284262212000000 0.943970693000000 0.009916700000000 +0.285997634000000 0.925228180000000 0.109083702000000 +0.274444678000000 0.971886155000000 0.307417707000000 +0.295815167000000 0.945706116000000 0.138833803000000 +0.297501006000000 0.932516954000000 0.079333602000000 +0.290856817000000 0.930335231000000 0.119000403000000 +0.294278079000000 0.968613743000000 0.069416901000000 +0.298343926000000 0.927112303000000 0.009916700000000 +0.294178912000000 0.958697043000000 0.109083702000000 +0.303996445000000 0.924236410000000 0.188417304000000 +0.285948051000000 0.931376484000000 0.109083702000000 +0.287534723000000 0.974960382000000 0.188417304000000 +0.300823101000000 0.934996129000000 0.257834206000000 +0.299286012000000 0.912138135000000 0.049583501000000 +0.279254278000000 0.962961224000000 0.366917908000000 +0.287683473000000 0.927806472000000 0.327251107000000 +0.285898467000000 0.959391212000000 0.148750503000000 +0.302360190000000 0.914418927000000 0.456168210000000 +0.281832620000000 0.939706512000000 0.178500604000000 +0.282625956000000 0.929046060000000 0.119000403000000 +0.290955984000000 0.949524045000000 0.138833803000000 +0.274395095000000 0.960134915000000 0.515668411000000 +0.282675540000000 0.941293184000000 0.039666801000000 +0.292493073000000 0.926963553000000 0.307417707000000 +0.282576373000000 0.987058805000000 0.148750503000000 +0.274345511000000 0.966134568000000 0.376834608000000 +0.284262212000000 0.965737850000000 0.238000805000000 +0.290955984000000 0.949524045000000 0.089250302000000 +0.281039284000000 0.950565349000000 0.327251107000000 +0.304095612000000 0.922104369000000 0.357001208000000 +0.285898467000000 0.940747766000000 0.198334004000000 +0.292493073000000 0.939855263000000 0.099167002000000 +0.291005568000000 0.914567677000000 0.515668411000000 +0.282625956000000 0.962713257000000 0.049583501000000 +0.297501006000000 0.925723965000000 0.059500201000000 +0.299137262000000 0.915311479000000 0.069416901000000 +0.300872684000000 0.924881045000000 0.267750906000000 +0.300823101000000 0.904799728000000 0.059500201000000 +0.294228495000000 0.933111907000000 0.366917908000000 +0.283419292000000 0.939706512000000 0.168583904000000 +0.280890534000000 0.974910798000000 0.267750906000000 +0.281882204000000 0.948978627000000 0.366917908000000 +0.287485139000000 0.943574025000000 0.188417304000000 +0.277618022000000 0.974811681000000 0.357001208000000 +0.290856817000000 0.943177357000000 0.109083702000000 +0.280890534000000 0.953639476000000 0.456168210000000 +0.279799697000000 0.944565695000000 0.109083702000000 +0.279254278000000 0.962961224000000 0.119000403000000 +0.282625956000000 0.934996129000000 0.307417707000000 +0.285948051000000 0.928153557000000 0.366917908000000 +0.282625956000000 0.984034212000000 0.019833400000000 +0.292592240000000 0.929988146000000 0.168583904000000 +0.304194779000000 0.907526820000000 0.247917505000000 +0.292542656000000 0.923641458000000 0.376834608000000 +0.295864751000000 0.929293977000000 0.238000805000000 +0.289270145000000 0.933954826000000 0.337167807000000 +0.292592240000000 0.929988146000000 0.218167405000000 +0.277568439000000 0.953837810000000 0.079333602000000 +0.280890534000000 0.983885362000000 0.247917505000000 +0.299286012000000 0.912138135000000 0.019833400000000 +0.279353445000000 0.947491122000000 0.059500201000000 +0.279849280000000 0.945011947000000 0.218167405000000 +0.297550590000000 0.902717220000000 0.257834206000000 +0.289170978000000 0.975009965000000 0.158667203000000 +0.277618022000000 0.959936630000000 0.218167405000000 +0.275932183000000 0.954036144000000 0.495835011000000 +0.302409773000000 0.934847280000000 0.247917505000000 +0.271866336000000 0.964349562000000 0.684252315000000 +0.294030161000000 0.920121079000000 0.257834206000000 +0.274444678000000 0.968960778000000 0.357001208000000 +0.283468876000000 0.948929043000000 0.347084507000000 +0.271866336000000 0.964349562000000 0.446251510000000 +0.294129328000000 0.939508178000000 0.277667606000000 +0.290906401000000 0.908022655000000 0.059500201000000 +0.295963918000000 0.932616072000000 0.119000403000000 +0.285997634000000 0.950069464000000 0.009916700000000 +0.284311795000000 0.925575214000000 0.386751308000000 +0.277618022000000 0.974811681000000 0.247917505000000 +0.275981767000000 0.962911591000000 0.436334809000000 +0.302508940000000 0.904353476000000 0.208250704000000 +0.300872684000000 0.901576800000000 0.208250704000000 +0.297550590000000 0.902717220000000 0.664418914000000 +0.289270145000000 0.930831066000000 0.228084105000000 +0.282675540000000 0.931971536000000 0.049583501000000 +0.282576373000000 0.947193621000000 0.128917103000000 +0.282625956000000 0.938070257000000 0.158667203000000 +0.287683473000000 0.927806472000000 0.198334004000000 +0.285105131000000 0.945408615000000 0.099167002000000 +0.289270145000000 0.968663277000000 0.009916700000000 +0.284311795000000 0.993355860000000 0.138833803000000 +0.305880618000000 0.913427257000000 0.327251107000000 +0.299087678000000 0.921806868000000 0.059500201000000 +0.284212628000000 0.931872319000000 0.297501006000000 +0.300723934000000 0.915063512000000 0.446251510000000 +0.281882204000000 0.948978627000000 0.069416901000000 +0.274295928000000 0.963010758000000 0.406584709000000 +0.279353445000000 0.965836968000000 0.228084105000000 +0.287584306000000 0.990727935000000 0.059500201000000 +0.274345511000000 0.957110321000000 0.446251510000000 +0.290955984000000 0.968613743000000 0.019833400000000 +0.290906401000000 0.959044078000000 0.029750101000000 +0.271122584000000 0.966134568000000 0.238000805000000 +0.286691803000000 0.942185687000000 0.317334407000000 +0.289270145000000 0.933954826000000 0.148750503000000 +0.277618022000000 0.959936630000000 0.297501006000000 +0.285898467000000 0.940747766000000 0.039666801000000 +0.287534723000000 0.959291995000000 0.277667606000000 +0.290807234000000 0.939954479000000 0.099167002000000 +0.294278079000000 0.912435587000000 0.277667606000000 +0.302508940000000 0.917790654000000 0.148750503000000 +0.292493073000000 0.942929440000000 0.218167405000000 +0.303996445000000 0.924236410000000 0.109083702000000 +0.287633890000000 0.930831066000000 0.257834206000000 +0.287485139000000 1.000000000000000 0.138833803000000 +0.281039284000000 0.959936630000000 0.257834206000000 +0.285898467000000 0.946995337000000 0.228084105000000 +0.299137262000000 0.918633524000000 0.148750503000000 +0.292493073000000 0.904452643000000 0.466084910000000 +0.292592240000000 0.917294770000000 0.039666801000000 +0.289319729000000 0.937029003000000 0.148750503000000 +0.290955984000000 0.921013532000000 0.684252315000000 +0.305880618000000 0.913427257000000 0.366917908000000 +0.294278079000000 0.949176911000000 0.148750503000000 +0.280890534000000 0.983885362000000 0.029750101000000 +0.281882204000000 0.948978627000000 0.188417304000000 +0.280940117000000 0.929393144000000 0.168583904000000 +0.282625956000000 0.928798192000000 0.228084105000000 +0.305880618000000 0.917046852000000 0.148750503000000 +0.300872684000000 0.931574818000000 0.138833803000000 +0.280940117000000 0.929393144000000 0.218167405000000 +0.297501006000000 0.908815942000000 0.466084910000000 +0.286691803000000 0.939111461000000 0.347084507000000 +0.294178912000000 0.958697043000000 0.128917103000000 +0.294228495000000 0.907030935000000 0.555335212000000 +0.294228495000000 0.907030935000000 0.009916700000000 +0.290807234000000 0.939954479000000 0.347084507000000 +0.294278079000000 0.965043681000000 0.069416901000000 +0.300922268000000 0.911245583000000 0.376834608000000 +0.290906401000000 0.911195999000000 0.386751308000000 +0.285105131000000 0.939210677000000 0.009916700000000 +0.282625956000000 0.956515319000000 0.059500201000000 +0.274395095000000 0.960134915000000 0.426418109000000 +0.294129328000000 0.939508178000000 0.228084105000000 +0.302360190000000 0.921311033000000 0.386751308000000 +0.292493073000000 0.926963553000000 0.168583904000000 +0.279303862000000 0.956812820000000 0.476001610000000 +0.280940117000000 0.932268987000000 0.436334809000000 +0.280890534000000 0.953639476000000 0.406584709000000 +0.295765584000000 0.920170613000000 0.000000000000000 +0.290955984000000 0.946400285000000 0.168583904000000 +0.289270145000000 0.927508971000000 0.188417304000000 +0.305880618000000 0.917046852000000 0.029750101000000 +0.290856817000000 0.924087709000000 0.307417707000000 +0.294030161000000 0.920121079000000 0.426418109000000 +0.280940117000000 0.941541102000000 0.128917103000000 +0.297600173000000 0.912633921000000 0.505751711000000 +0.272709256000000 0.966134568000000 0.218167405000000 +0.277618022000000 0.959936630000000 0.089250302000000 +0.271866336000000 0.964349562000000 0.158667203000000 +0.287584306000000 0.984331663000000 0.069416901000000 +0.294278079000000 0.912435587000000 0.585085313000000 +0.279204695000000 0.950813167000000 0.644585514000000 +0.282675540000000 0.971935788000000 0.247917505000000 +0.282625956000000 0.962713257000000 0.247917505000000 +0.302508940000000 0.907576354000000 0.009916700000000 +0.302360190000000 0.921311033000000 0.109083702000000 +0.295815167000000 0.916947636000000 0.476001610000000 +0.280940117000000 0.929393144000000 0.287584306000000 +0.282625956000000 0.956515319000000 0.337167807000000 +0.287485139000000 0.996727539000000 0.059500201000000 +0.279204695000000 0.950813167000000 0.297501006000000 +0.277618022000000 0.974811681000000 0.228084105000000 +0.305731868000000 0.910055529000000 0.218167405000000 +0.297550590000000 0.902717220000000 0.000000000000000 +0.275932183000000 0.954036144000000 0.188417304000000 +0.297401839000000 0.922501037000000 0.267750906000000 +0.292344322000000 0.972034905000000 0.009916700000000 +0.287683473000000 0.927806472000000 0.505751711000000 +0.289220562000000 0.971886155000000 0.000000000000000 +0.284262212000000 0.928153557000000 0.089250302000000 +0.277766773000000 0.950763633000000 0.456168210000000 +0.271122584000000 0.966134568000000 0.019833400000000 +0.300922268000000 0.908220989000000 0.128917103000000 +0.305682284000000 0.920071446000000 0.079333602000000 +0.303996445000000 0.924236410000000 0.247917505000000 +0.292592240000000 0.933211123000000 0.218167405000000 +0.274345511000000 0.957110321000000 0.634668814000000 +0.292592240000000 0.917294770000000 0.168583904000000 +0.294228495000000 0.907030935000000 0.366917908000000 +0.271866336000000 0.964349562000000 0.376834608000000 +0.277618022000000 0.963010758000000 0.257834206000000 +0.285948051000000 0.928153557000000 0.277667606000000 +0.300773517000000 0.921608534000000 0.000000000000000 +0.272659672000000 0.963159508000000 0.257834206000000 +0.290955984000000 0.921013532000000 0.446251510000000 +0.297501006000000 0.925723965000000 0.019833400000000 +0.284311795000000 0.925575214000000 0.128917103000000 +0.295716000000000 0.922897705000000 0.456168210000000 +0.292493073000000 0.962267055000000 0.079333602000000 +0.280989701000000 0.935343164000000 0.238000805000000 +0.297550590000000 0.948780343000000 0.049583501000000 +0.290906401000000 0.927211470000000 0.327251107000000 +0.298244759000000 0.923542241000000 0.257834206000000 +0.277667606000000 0.965985817000000 0.218167405000000 +0.275981767000000 0.962911591000000 0.525585111000000 +0.307318540000000 0.916402316000000 0.148750503000000 +0.294278079000000 0.949176911000000 0.019833400000000 +0.275981767000000 0.957060738000000 0.267750906000000 +0.294228495000000 0.933111907000000 0.049583501000000 +0.295914334000000 0.909807711000000 0.446251510000000 +0.271122584000000 0.966134568000000 0.317334407000000 +0.272659672000000 0.963159508000000 0.039666801000000 +0.271866336000000 0.964349562000000 0.763585916000000 +0.272659672000000 0.957308705000000 0.406584709000000 +0.292592240000000 0.965489933000000 0.109083702000000 +0.302409773000000 0.911096832000000 0.148750503000000 +0.289270145000000 0.949722330000000 0.089250302000000 +0.279353445000000 0.980712018000000 0.218167405000000 +0.277766773000000 0.950763633000000 0.079333602000000 +0.289270145000000 0.927508971000000 0.446251510000000 +0.299087678000000 0.921806868000000 0.029750101000000 +0.295963918000000 0.932616072000000 0.029750101000000 +0.300872684000000 0.924881045000000 0.148750503000000 +0.285898467000000 0.962514923000000 0.257834206000000 +0.274395095000000 0.960134915000000 0.386751308000000 +0.282576373000000 0.947193621000000 0.317334407000000 +0.280791367000000 0.962762840000000 0.317334407000000 +0.280940117000000 0.929393144000000 0.396668009000000 +0.286691803000000 0.942185687000000 0.287584306000000 +0.280940117000000 0.986810838000000 0.000000000000000 +0.303996445000000 0.924236410000000 0.267750906000000 +0.280940117000000 0.932268987000000 0.357001208000000 +0.284311795000000 0.990132933000000 0.089250302000000 +0.279849280000000 0.945011947000000 0.456168210000000 +0.300773517000000 0.928351891000000 0.208250704000000 +0.302409773000000 0.934847280000000 0.119000403000000 +0.289319729000000 0.965985817000000 0.138833803000000 +0.299137262000000 0.908815942000000 0.436334809000000 +0.295716000000000 0.922897705000000 0.158667203000000 +0.289270145000000 0.920666398000000 0.624752113000000 +0.296658087000000 0.921112699000000 0.039666801000000 +0.302508940000000 0.907576354000000 0.168583904000000 +0.284361379000000 0.937971090000000 0.307417707000000 +0.281832620000000 0.939706512000000 0.406584709000000 +0.296658087000000 0.921112699000000 0.366917908000000 +0.274444678000000 0.968960778000000 0.337167807000000 +0.296757254000000 0.927806472000000 0.247917505000000 +0.295765584000000 0.939210677000000 0.019833400000000 +0.292542656000000 0.920368947000000 0.119000403000000 +0.292493073000000 0.962267055000000 0.089250302000000 +0.304145196000000 0.914022259000000 0.158667203000000 +0.287534723000000 0.959291995000000 0.049583501000000 +0.277667606000000 0.965985817000000 0.049583501000000 +0.300823101000000 0.904799728000000 0.208250704000000 +0.299236429000000 0.931822686000000 0.059500201000000 +0.295864751000000 0.906535150000000 0.049583501000000 +0.299137262000000 0.941888236000000 0.099167002000000 +0.294178912000000 0.926517301000000 0.406584709000000 +0.290906401000000 0.927211470000000 0.019833400000000 +0.292592240000000 0.933211123000000 0.228084105000000 +0.296658087000000 0.921112699000000 0.485918310000000 +0.279254278000000 0.962961224000000 0.426418109000000 +0.282625956000000 0.934996129000000 0.277667606000000 +0.285997634000000 0.981108736000000 0.168583904000000 +0.299186845000000 0.935491915000000 0.009916700000000 +0.290906401000000 0.908022655000000 0.238000805000000 +0.290856817000000 0.930335231000000 0.357001208000000 +0.290856817000000 0.930335231000000 0.376834608000000 +0.274494262000000 0.954333645000000 0.297501006000000 +0.274494262000000 0.954333645000000 0.446251510000000 +0.279204695000000 0.953639476000000 0.406584709000000 +0.305731868000000 0.910055529000000 0.079333602000000 +0.300872684000000 0.901576800000000 0.575168612000000 +0.295716000000000 0.922897705000000 0.178500604000000 +0.302508940000000 0.904353476000000 0.297501006000000 +0.295765584000000 0.920170613000000 0.495835011000000 +0.272709256000000 0.966134568000000 0.029750101000000 +0.285154715000000 0.948333992000000 0.327251107000000 +0.282675540000000 0.968861561000000 0.158667203000000 +0.274345511000000 0.966134568000000 0.228084105000000 +0.285997634000000 0.925228180000000 0.297501006000000 +0.274444678000000 0.971886155000000 0.347084507000000 +0.294178912000000 0.926517301000000 0.198334004000000 +0.298294342000000 0.920468114000000 0.267750906000000 +0.302459357000000 0.928351891000000 0.198334004000000 +0.294030161000000 0.920121079000000 0.575168612000000 +0.289220562000000 0.946499452000000 0.287584306000000 +0.304095612000000 0.922104369000000 0.307417707000000 +0.279303862000000 0.956812820000000 0.535501812000000 +0.279254278000000 0.959837414000000 0.297501006000000 +0.279204695000000 0.953639476000000 0.495835011000000 +0.290807234000000 0.939954479000000 0.009916700000000 +0.280840950000000 0.971787087000000 0.128917103000000 +0.284212628000000 0.962564506000000 0.257834206000000 +0.283468876000000 0.948929043000000 0.188417304000000 +0.297600173000000 0.912633921000000 0.168583904000000 +0.285948051000000 0.931376484000000 0.337167807000000 +0.281832620000000 0.942582405000000 0.228084105000000 +0.281832620000000 0.942582405000000 0.128917103000000 +0.292592240000000 0.952598223000000 0.198334004000000 +0.281832620000000 0.942582405000000 0.327251107000000 +0.289220562000000 0.943474858000000 0.089250302000000 +0.292542656000000 0.920368947000000 0.525585111000000 +0.279353445000000 0.968911194000000 0.079333602000000 +0.296658087000000 0.921112699000000 0.119000403000000 +0.294129328000000 0.955821150000000 0.000000000000000 +0.295021831000000 0.927806472000000 0.168583904000000 +0.297550590000000 0.902717220000000 0.495835011000000 +0.282576373000000 0.947193621000000 0.019833400000000 +0.297550590000000 0.916104716000000 0.297501006000000 +0.282675540000000 0.971935788000000 0.208250704000000 +0.282675540000000 0.931971536000000 0.565251912000000 +0.279254278000000 0.959837414000000 0.138833803000000 +0.299186845000000 0.905394779000000 0.505751711000000 +0.292493073000000 0.926963553000000 0.476001610000000 +0.283419292000000 0.942780689000000 0.168583904000000 +0.295765584000000 0.939210677000000 0.297501006000000 +0.302508940000000 0.907576354000000 0.317334407000000 +0.289220562000000 0.924385161000000 0.436334809000000 +0.279849280000000 0.945011947000000 0.019833400000000 +0.290807234000000 0.939954479000000 0.019833400000000 +0.271866336000000 0.964349562000000 0.069416901000000 +0.287633890000000 0.968762444000000 0.099167002000000 +0.294278079000000 0.965043681000000 0.049583501000000 +0.290856817000000 0.943177357000000 0.228084105000000 +0.287633890000000 0.978084093000000 0.158667203000000 +0.285105131000000 0.945408615000000 0.019833400000000 +0.282675540000000 0.971935788000000 0.267750906000000 +0.281832620000000 0.939706512000000 0.287584306000000 +0.289270145000000 0.968663277000000 0.079333602000000 +0.275981767000000 0.962911591000000 0.257834206000000 +0.300773517000000 0.928351891000000 0.168583904000000 +0.295864751000000 0.929293977000000 0.069416901000000 +0.282725123000000 0.950366965000000 0.099167002000000 +0.295963918000000 0.932616072000000 0.238000805000000 +0.279254278000000 0.959837414000000 0.039666801000000 +0.307516874000000 0.919922695000000 0.178500604000000 +0.284311795000000 0.925575214000000 0.148750503000000 +0.280940117000000 0.932268987000000 0.277667606000000 +0.277618022000000 0.957060738000000 0.198334004000000 +0.289170978000000 0.940202347000000 0.128917103000000 +0.282625956000000 0.928798192000000 0.188417304000000 +0.284311795000000 0.947044870000000 0.228084105000000 +0.297550590000000 0.916104716000000 0.089250302000000 +0.274295928000000 0.963010758000000 0.168583904000000 +0.302360190000000 0.914418927000000 0.089250302000000 +0.277766773000000 0.950763633000000 0.238000805000000 +0.279204695000000 0.950813167000000 0.029750101000000 +0.292493073000000 0.962267055000000 0.029750101000000 +0.299236429000000 0.931822686000000 0.247917505000000 +0.281039284000000 0.950565349000000 0.000000000000000 +0.287633890000000 0.965886601000000 0.119000403000000 +0.290906401000000 0.911195999000000 0.188417304000000 +0.305731868000000 0.910055529000000 0.178500604000000 +0.289319729000000 0.937029003000000 0.029750101000000 +0.295914334000000 0.909807711000000 0.337167807000000 +0.272758839000000 0.968861561000000 0.277667606000000 +0.284212628000000 0.987058805000000 0.109083702000000 +0.299137262000000 0.941888236000000 0.069416901000000 +0.279353445000000 0.965836968000000 0.257834206000000 +0.299137262000000 0.941888236000000 0.089250302000000 +0.286790970000000 0.948333992000000 0.277667606000000 +0.285848884000000 0.987257090000000 0.238000805000000 +0.290906401000000 0.936582752000000 0.099167002000000 +0.300922268000000 0.908220989000000 0.257834206000000 +0.297451423000000 0.938962760000000 0.297501006000000 +0.279353445000000 0.947491122000000 0.456168210000000 +0.290856817000000 0.955870734000000 0.178500604000000 +0.279303862000000 0.977786641000000 0.119000403000000 +0.285848884000000 0.987257090000000 0.019833400000000 +0.287683473000000 0.927806472000000 0.049583501000000 +0.305731868000000 0.923641458000000 0.128917103000000 +0.300922268000000 0.908220989000000 0.446251510000000 +0.302508940000000 0.907576354000000 0.436334809000000 +0.279254278000000 0.959837414000000 0.495835011000000 +0.282625956000000 0.938070257000000 0.069416901000000 +0.282576373000000 0.944317778000000 0.059500201000000 +0.274494262000000 0.954333645000000 0.515668411000000 +0.300922268000000 0.908220989000000 0.575168612000000 +0.287584306000000 0.934103577000000 0.376834608000000 +0.295815167000000 0.916947636000000 0.545418512000000 +0.299286012000000 0.912138135000000 0.366917908000000 +0.277618022000000 0.974811681000000 0.257834206000000 +0.282625956000000 0.929046060000000 0.416501409000000 +0.297401839000000 0.922501037000000 0.287584306000000 +0.294327662000000 0.910353129000000 0.406584709000000 +0.302508940000000 0.907576354000000 0.178500604000000 +0.292542656000000 0.913476840000000 0.525585111000000 +0.302508940000000 0.917790654000000 0.000000000000000 +0.283468876000000 0.948929043000000 0.109083702000000 +0.285898467000000 0.940747766000000 0.138833803000000 +0.280940117000000 0.956614437000000 0.396668009000000 +0.292592240000000 0.929988146000000 0.009916700000000 +0.295021831000000 0.927806472000000 0.307417707000000 +0.279303862000000 0.941789019000000 0.287584306000000 +0.299186845000000 0.952052754000000 0.079333602000000 +0.287584306000000 0.924831462000000 0.198334004000000 +0.297600173000000 0.912633921000000 0.317334407000000 +0.297501006000000 0.919278060000000 0.089250302000000 +0.285948051000000 0.928153557000000 0.009916700000000 +0.304194779000000 0.907526820000000 0.158667203000000 +0.300723934000000 0.915063512000000 0.297501006000000 +0.297550590000000 0.902717220000000 0.287584306000000 +0.292443489000000 0.972084538000000 0.109083702000000 +0.289220562000000 0.971886155000000 0.029750101000000 +0.282675540000000 0.971935788000000 0.277667606000000 +0.282625956000000 0.928798192000000 0.327251107000000 +0.289220562000000 0.959143245000000 0.158667203000000 +0.274494262000000 0.954333645000000 0.684252315000000 +0.281039284000000 0.950565349000000 0.476001610000000 +0.289319729000000 0.965985817000000 0.019833400000000 +0.294129328000000 0.939508178000000 0.128917103000000 +0.284262212000000 0.928153557000000 0.178500604000000 +0.289319729000000 0.993851695000000 0.000000000000000 +0.307516874000000 0.919922695000000 0.168583904000000 +0.295815167000000 0.916947636000000 0.178500604000000 +0.299186845000000 0.905394779000000 0.357001208000000 +0.296658087000000 0.921112699000000 0.436334809000000 +0.289319729000000 0.965985817000000 0.158667203000000 +0.292542656000000 0.913476840000000 0.337167807000000 +0.281039284000000 0.941441935000000 0.208250704000000 +0.285848884000000 0.943772359000000 0.158667203000000 +0.282625956000000 0.938070257000000 0.416501409000000 +0.296757254000000 0.927806472000000 0.218167405000000 +0.277618022000000 0.971985371000000 0.396668009000000 +0.289270145000000 0.920666398000000 0.476001610000000 +0.295765584000000 0.920170613000000 0.476001610000000 +0.284361379000000 0.940946100000000 0.019833400000000 +0.300723934000000 0.915063512000000 0.059500201000000 +0.292542656000000 0.945904450000000 0.009916700000000 +0.285848884000000 0.987257090000000 0.128917103000000 +0.280791367000000 0.962762840000000 0.029750101000000 +0.297501006000000 0.908815942000000 0.684252315000000 +0.287485139000000 1.000000000000000 0.079333602000000 +0.284311795000000 0.941045217000000 0.019833400000000 +0.289170978000000 0.975009965000000 0.069416901000000 +0.295815167000000 0.916947636000000 0.297501006000000 +0.296707670000000 0.924286043000000 0.198334004000000 +0.290955984000000 0.921013532000000 0.525585111000000 +0.281039284000000 0.959936630000000 0.119000403000000 +0.276031350000000 0.959986164000000 0.188417304000000 +0.290955984000000 0.921013532000000 0.357001208000000 +0.307516874000000 0.919922695000000 0.128917103000000 +0.295914334000000 0.948929043000000 0.000000000000000 +0.296707670000000 0.924286043000000 0.267750906000000 +0.285898467000000 0.959391212000000 0.138833803000000 +0.295963918000000 0.913030589000000 0.208250704000000 +0.285997634000000 0.981108736000000 0.079333602000000 +0.297550590000000 0.916104716000000 0.238000805000000 +0.287633890000000 0.965886601000000 0.109083702000000 +0.282625956000000 0.928798192000000 0.575168612000000 +0.300773517000000 0.921608534000000 0.148750503000000 +0.277618022000000 0.963010758000000 0.128917103000000 +0.307516874000000 0.919922695000000 0.228084105000000 +0.280840950000000 0.947491122000000 0.307417707000000 +0.277766773000000 0.950763633000000 0.426418109000000 +0.285997634000000 0.981108736000000 0.178500604000000 +0.284311795000000 0.968762444000000 0.188417304000000 +0.299087678000000 0.921806868000000 0.347084507000000 +0.274444678000000 0.971886155000000 0.079333602000000 +0.297550590000000 0.902717220000000 0.456168210000000 +0.292542656000000 0.920368947000000 0.317334407000000 +0.277618022000000 0.957060738000000 0.009916700000000 +0.295914334000000 0.925922349000000 0.009916700000000 +0.277618022000000 0.957060738000000 0.466084910000000 +0.289170978000000 0.940202347000000 0.277667606000000 +0.292592240000000 0.936384467000000 0.039666801000000 +0.279204695000000 0.950813167000000 0.714002415000000 +0.284212628000000 0.931872319000000 0.456168210000000 +0.296707670000000 0.924286043000000 0.029750101000000 +0.281832620000000 0.942582405000000 0.069416901000000 +0.307268956000000 0.923492707000000 0.059500201000000 +0.282576373000000 0.947193621000000 0.099167002000000 +0.289270145000000 0.927508971000000 0.476001610000000 +0.280840950000000 0.947491122000000 0.396668009000000 +0.282625956000000 0.929046060000000 0.337167807000000 +0.294129328000000 0.916798885000000 0.178500604000000 +0.281039284000000 0.938516508000000 0.168583904000000 +0.289170978000000 0.940202347000000 0.069416901000000 +0.290906401000000 0.936582752000000 0.198334004000000 +0.282625956000000 0.984034212000000 0.198334004000000 +0.282675540000000 0.971935788000000 0.000000000000000 +0.285997634000000 0.950069464000000 0.089250302000000 +0.282625956000000 0.938070257000000 0.019833400000000 +0.280989701000000 0.944565695000000 0.019833400000000 +0.299186845000000 0.935491915000000 0.277667606000000 +0.290807234000000 0.939954479000000 0.327251107000000 +0.280890534000000 0.953639476000000 0.307417707000000 +0.276080934000000 0.951061134000000 0.476001610000000 +0.285105131000000 0.945408615000000 0.119000403000000 +0.295815167000000 0.945706116000000 0.109083702000000 +0.281039284000000 0.938516508000000 0.238000805000000 +0.292592240000000 0.929988146000000 0.366917908000000 +0.285105131000000 0.939210677000000 0.138833803000000 +0.290906401000000 0.936582752000000 0.238000805000000 +0.299137262000000 0.915311479000000 0.337167807000000 +0.300723934000000 0.915063512000000 0.238000805000000 +0.290856817000000 0.975109132000000 0.138833803000000 +0.282526789000000 0.977935392000000 0.287584306000000 +0.302409773000000 0.911096832000000 0.347084507000000 +0.299186845000000 0.905394779000000 0.069416901000000 +0.303996445000000 0.924236410000000 0.009916700000000 +0.295765584000000 0.920170613000000 0.515668411000000 +0.281832620000000 0.939706512000000 0.029750101000000 +0.280940117000000 0.941541102000000 0.079333602000000 +0.296757254000000 0.927806472000000 0.109083702000000 +0.274444678000000 0.971886155000000 0.009916700000000 +0.289319729000000 0.993851695000000 0.019833400000000 +0.277618022000000 0.974811681000000 0.327251107000000 +0.297501006000000 0.919278060000000 0.099167002000000 +0.295864751000000 0.906535150000000 0.833002818000000 +0.304095612000000 0.922104369000000 0.019833400000000 +0.292542656000000 0.945904450000000 0.218167405000000 +0.299137262000000 0.918633524000000 0.069416901000000 +0.277667606000000 0.965985817000000 0.119000403000000 +0.305880618000000 0.913427257000000 0.039666801000000 +0.275981767000000 0.957060738000000 0.317334407000000 +0.279353445000000 0.938665259000000 0.208250704000000 +0.279303862000000 0.977786641000000 0.218167405000000 +0.300922268000000 0.908220989000000 0.396668009000000 +0.287534723000000 0.987505007000000 0.148750503000000 +0.292493073000000 0.904452643000000 0.019833400000000 +0.292542656000000 0.913476840000000 0.604918713000000 +0.279254278000000 0.959837414000000 0.317334407000000 +0.290906401000000 0.908022655000000 0.476001610000000 +0.281039284000000 0.938516508000000 0.535501812000000 +0.290807234000000 0.939954479000000 0.158667203000000 +0.280840950000000 0.971787087000000 0.148750503000000 +0.305731868000000 0.910055529000000 0.069416901000000 +0.277717189000000 0.969010312000000 0.357001208000000 +0.297451423000000 0.942235271000000 0.228084105000000 +0.283419292000000 0.939706512000000 0.257834206000000 +0.287633890000000 0.949871180000000 0.238000805000000 +0.295914334000000 0.909807711000000 0.495835011000000 +0.285105131000000 0.939210677000000 0.148750503000000 +0.272659672000000 0.957308705000000 0.624752113000000 +0.284212628000000 0.999652965000000 0.119000403000000 +0.307318540000000 0.916402316000000 0.287584306000000 +0.271866336000000 0.964349562000000 0.743752516000000 +0.274345511000000 0.957110321000000 0.595002013000000 +0.294178912000000 0.926517301000000 0.069416901000000 +0.280791367000000 0.962762840000000 0.148750503000000 +0.276031350000000 0.959986164000000 0.376834608000000 +0.299186845000000 0.905394779000000 0.664418914000000 +0.295716000000000 0.922897705000000 0.168583904000000 +0.303996445000000 0.924236410000000 0.069416901000000 +0.284262212000000 0.928153557000000 0.099167002000000 +0.300922268000000 0.908220989000000 0.555335212000000 +0.292493073000000 0.926963553000000 0.287584306000000 +0.290856817000000 0.924087709000000 0.525585111000000 +0.307268956000000 0.923492707000000 0.158667203000000 +0.290906401000000 0.927211470000000 0.396668009000000 +0.287633890000000 0.978084093000000 0.049583501000000 +0.292592240000000 0.917294770000000 0.029750101000000 +0.272858006000000 0.960085331000000 0.466084910000000 +0.272659672000000 0.963159508000000 0.327251107000000 +0.280940117000000 0.986810838000000 0.059500201000000 +0.295914334000000 0.909807711000000 0.555335212000000 +0.277618022000000 0.963010758000000 0.089250302000000 +0.285948051000000 0.934351494000000 0.138833803000000 +0.290906401000000 0.933508575000000 0.198334004000000 +0.296658087000000 0.930880699000000 0.267750906000000 +0.300823101000000 0.934996129000000 0.277667606000000 +0.277618022000000 0.963010758000000 0.317334407000000 +0.285948051000000 0.931376484000000 0.128917103000000 +0.280940117000000 0.941541102000000 0.089250302000000 +0.274444678000000 0.968960778000000 0.208250704000000 +0.284212628000000 0.962564506000000 0.247917505000000 +0.294178912000000 0.926517301000000 0.257834206000000 +0.289270145000000 0.920666398000000 0.198334004000000 +0.287485139000000 0.943574025000000 0.109083702000000 +0.292592240000000 0.952598223000000 0.059500201000000 +0.289270145000000 0.920666398000000 0.178500604000000 +0.276080934000000 0.971687870000000 0.297501006000000 +0.279353445000000 0.947491122000000 0.297501006000000 +0.294228495000000 0.933111907000000 0.277667606000000 +0.284311795000000 0.950218215000000 0.208250704000000 +0.275981767000000 0.957060738000000 0.228084105000000 +0.277618022000000 0.974811681000000 0.099167002000000 +0.289270145000000 0.920666398000000 0.009916700000000 +0.297501006000000 0.932516954000000 0.307417707000000 +0.294228495000000 0.933111907000000 0.287584306000000 +0.290807234000000 0.939954479000000 0.198334004000000 +0.280890534000000 0.974910798000000 0.039666801000000 +0.277618022000000 0.957060738000000 0.257834206000000 +0.292542656000000 0.913476840000000 0.158667203000000 +0.290955984000000 0.946400285000000 0.247917505000000 +0.290906401000000 0.936582752000000 0.119000403000000 +0.279353445000000 0.938665259000000 0.128917103000000 +0.290955984000000 0.921013532000000 0.119000403000000 +0.300823101000000 0.918236856000000 0.009916700000000 +0.282576373000000 0.959688663000000 0.218167405000000 +0.277618022000000 0.959936630000000 0.456168210000000 +0.302508940000000 0.904353476000000 0.396668009000000 +0.300823101000000 0.918236856000000 0.406584709000000 +0.284311795000000 0.978034559000000 0.138833803000000 +0.290955984000000 0.949524045000000 0.079333602000000 +0.294129328000000 0.939508178000000 0.188417304000000 +0.304194779000000 0.907526820000000 0.009916700000000 +0.280940117000000 0.932268987000000 0.198334004000000 +0.282625956000000 0.962713257000000 0.178500604000000 +0.297501006000000 0.919278060000000 0.466084910000000 +0.275932183000000 0.954036144000000 0.565251912000000 +0.280940117000000 0.932268987000000 0.416501409000000 +0.285105131000000 0.939210677000000 0.000000000000000 +0.282576373000000 0.947193621000000 0.247917505000000 +0.284212628000000 0.983488793000000 0.009916700000000 +0.292493073000000 0.904452643000000 0.347084507000000 +0.281039284000000 0.959936630000000 0.337167807000000 +0.292493073000000 0.939855263000000 0.000000000000000 +0.282675540000000 0.971935788000000 0.158667203000000 +0.304194779000000 0.907526820000000 0.555335212000000 +0.274395095000000 0.960134915000000 0.624752113000000 +0.284311795000000 0.968762444000000 0.168583904000000 +0.297501006000000 0.935591082000000 0.277667606000000 +0.285948051000000 0.928153557000000 0.466084910000000 +0.276080934000000 0.966084935000000 0.158667203000000 +0.294030161000000 0.920121079000000 0.337167807000000 +0.285105131000000 0.942185687000000 0.059500201000000 +0.277618022000000 0.974811681000000 0.317334407000000 +0.292493073000000 0.959044078000000 0.059500201000000 +0.282576373000000 0.944317778000000 0.158667203000000 +0.274395095000000 0.960134915000000 0.039666801000000 +0.282675540000000 0.941293184000000 0.000000000000000 +0.290906401000000 0.927211470000000 0.158667203000000 +0.289170978000000 0.956069117000000 0.188417304000000 +0.271122584000000 0.966134568000000 0.000000000000000 +0.292493073000000 0.926963553000000 0.416501409000000 +0.285898467000000 0.959391212000000 0.119000403000000 +0.296658087000000 0.930880699000000 0.009916700000000 +0.296757254000000 0.927806472000000 0.208250704000000 +0.286096801000000 0.990232149000000 0.039666801000000 +0.295963918000000 0.913030589000000 0.049583501000000 +0.294030161000000 0.920121079000000 0.307417707000000 +0.295021831000000 0.924682761000000 0.247917505000000 +0.279353445000000 0.938665259000000 0.406584709000000 +0.284163045000000 0.959490280000000 0.109083702000000 +0.297501006000000 0.908815942000000 0.575168612000000 +0.287534723000000 0.959291995000000 0.188417304000000 +0.284262212000000 0.943970693000000 0.158667203000000 +0.279353445000000 0.980712018000000 0.347084507000000 +0.280791367000000 0.962762840000000 0.228084105000000 +0.277618022000000 0.963010758000000 0.416501409000000 +0.290856817000000 0.924087709000000 0.119000403000000 +0.302508940000000 0.904353476000000 0.009916700000000 +0.279353445000000 0.965836968000000 0.396668009000000 +0.280791367000000 0.962762840000000 0.218167405000000 +0.285848884000000 0.987257090000000 0.109083702000000 +0.280989701000000 0.935343164000000 0.069416901000000 +0.284311795000000 0.925575214000000 0.238000805000000 +0.292592240000000 0.933211123000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.366917908000000 +0.285105131000000 0.942185687000000 0.079333602000000 +0.289220562000000 0.946499452000000 0.009916700000000 +0.280989701000000 0.935343164000000 0.505751711000000 +0.294278079000000 0.949176911000000 0.109083702000000 +0.285105131000000 0.939210677000000 0.337167807000000 +0.300922268000000 0.908220989000000 0.406584709000000 +0.285948051000000 0.937425671000000 0.019833400000000 +0.283419292000000 0.945557365000000 0.277667606000000 +0.292592240000000 0.929988146000000 0.039666801000000 +0.296707670000000 0.924286043000000 0.128917103000000 +0.284212628000000 0.962564506000000 0.069416901000000 +0.281832620000000 0.939706512000000 0.267750906000000 +0.274444678000000 0.971886155000000 0.109083702000000 +0.282625956000000 0.956515319000000 0.198334004000000 +0.286096801000000 0.990232149000000 0.128917103000000 +0.289220562000000 0.959143245000000 0.208250704000000 +0.279254278000000 0.962961224000000 0.218167405000000 +0.295765584000000 0.920170613000000 0.029750101000000 +0.277618022000000 0.963010758000000 0.466084910000000 +0.295021831000000 0.924682761000000 0.485918310000000 +0.285948051000000 0.934351494000000 0.376834608000000 +0.297501006000000 0.952003221000000 0.119000403000000 +0.302508940000000 0.917790654000000 0.347084507000000 +0.297501006000000 0.908815942000000 0.406584709000000 +0.297550590000000 0.916104716000000 0.426418109000000 +0.300823101000000 0.934996129000000 0.198334004000000 +0.295765584000000 0.920170613000000 0.208250704000000 +0.295765584000000 0.952151971000000 0.049583501000000 +0.299137262000000 0.908815942000000 0.416501409000000 +0.282675540000000 0.980910402000000 0.009916700000000 +0.302508940000000 0.907576354000000 0.357001208000000 +0.276031350000000 0.959986164000000 0.565251912000000 +0.294278079000000 0.912435587000000 0.614835413000000 +0.280890534000000 0.953639476000000 0.208250704000000 +0.286790970000000 0.948333992000000 0.109083702000000 +0.295716000000000 0.922897705000000 0.039666801000000 +0.297550590000000 0.902717220000000 0.089250302000000 +0.300773517000000 0.928351891000000 0.188417304000000 +0.294327662000000 0.910353129000000 0.525585111000000 +0.295864751000000 0.958994494000000 0.099167002000000 +0.291005568000000 0.914567677000000 0.218167405000000 +0.287485139000000 0.943574025000000 0.297501006000000 +0.277717189000000 0.980612901000000 0.029750101000000 +0.294178912000000 0.958697043000000 0.059500201000000 +0.305731868000000 0.910055529000000 0.198334004000000 +0.297501006000000 0.925723965000000 0.188417304000000 +0.294228495000000 0.907030935000000 0.317334407000000 +0.281039284000000 0.941441935000000 0.396668009000000 +0.279303862000000 0.941789019000000 0.525585111000000 +0.277618022000000 0.974811681000000 0.337167807000000 +0.307268956000000 0.923492707000000 0.188417304000000 +0.294129328000000 0.962217422000000 0.000000000000000 +0.294327662000000 0.910353129000000 0.347084507000000 +0.285898467000000 0.962514923000000 0.277667606000000 +0.282625956000000 0.928798192000000 0.138833803000000 +0.272858006000000 0.960085331000000 0.128917103000000 +0.281832620000000 0.939706512000000 0.337167807000000 +0.299186845000000 0.905394779000000 0.684252315000000 +0.279204695000000 0.953639476000000 0.376834608000000 +0.284212628000000 0.983488793000000 0.079333602000000 +0.285154715000000 0.948333992000000 0.148750503000000 +0.292592240000000 0.917294770000000 0.545418512000000 +0.289220562000000 0.943474858000000 0.238000805000000 +0.287584306000000 0.940450265000000 0.079333602000000 +0.295765584000000 0.920170613000000 0.396668009000000 +0.285898467000000 0.959391212000000 0.228084105000000 +0.274494262000000 0.954333645000000 0.089250302000000 +0.302508940000000 0.904353476000000 0.267750906000000 +0.285948051000000 0.928153557000000 0.426418109000000 +0.295963918000000 0.913030589000000 0.019833400000000 +0.290906401000000 0.952697390000000 0.238000805000000 +0.297401839000000 0.922501037000000 0.089250302000000 +0.302360190000000 0.914418927000000 0.426418109000000 +0.275981767000000 0.957060738000000 0.148750503000000 +0.279353445000000 0.968911194000000 0.000000000000000 +0.295021831000000 0.924682761000000 0.228084105000000 +0.305731868000000 0.923641458000000 0.267750906000000 +0.302409773000000 0.911096832000000 0.257834206000000 +0.291005568000000 0.914567677000000 0.575168612000000 +0.282576373000000 0.974910798000000 0.128917103000000 +0.290856817000000 0.943177357000000 0.238000805000000 +0.281039284000000 0.968861561000000 0.049583501000000 +0.289220562000000 0.946499452000000 0.277667606000000 +0.307516874000000 0.919922695000000 0.317334407000000 +0.281039284000000 0.950565349000000 0.079333602000000 +0.289170978000000 0.940202347000000 0.049583501000000 +0.295815167000000 0.916947636000000 0.376834608000000 +0.307516874000000 0.919922695000000 0.267750906000000 +0.302508940000000 0.931475651000000 0.178500604000000 +0.275981767000000 0.957060738000000 0.406584709000000 +0.290856817000000 0.955870734000000 0.119000403000000 +0.295963918000000 0.913030589000000 0.000000000000000 +0.299137262000000 0.908815942000000 0.466084910000000 +0.299286012000000 0.912138135000000 0.466084910000000 +0.290906401000000 0.908022655000000 0.297501006000000 +0.299137262000000 0.941888236000000 0.049583501000000 +0.300922268000000 0.908220989000000 0.000000000000000 +0.282576373000000 0.974910798000000 0.138833803000000 +0.299137262000000 0.941888236000000 0.029750101000000 +0.277618022000000 0.963010758000000 0.119000403000000 +0.297501006000000 0.919278060000000 0.069416901000000 +0.287633890000000 0.937128170000000 0.228084105000000 +0.297501006000000 0.919278060000000 0.495835011000000 +0.279353445000000 0.968911194000000 0.109083702000000 +0.275981767000000 0.962911591000000 0.337167807000000 +0.290906401000000 0.927211470000000 0.267750906000000 +0.289220562000000 0.924385161000000 0.218167405000000 +0.285948051000000 0.934351494000000 0.228084105000000 +0.279353445000000 0.968911194000000 0.277667606000000 +0.274295928000000 0.963010758000000 0.247917505000000 +0.290856817000000 0.943177357000000 0.287584306000000 +0.305682284000000 0.920071446000000 0.039666801000000 +0.294278079000000 0.949176911000000 0.158667203000000 +0.299137262000000 0.908815942000000 0.476001610000000 +0.279849280000000 0.945011947000000 0.039666801000000 +0.284262212000000 0.934847280000000 0.168583904000000 +0.295021831000000 0.927806472000000 0.109083702000000 +0.281039284000000 0.959936630000000 0.228084105000000 +0.295765584000000 0.955523699000000 0.128917103000000 +0.282675540000000 0.968861561000000 0.327251107000000 +0.302409773000000 0.911096832000000 0.019833400000000 +0.302360190000000 0.914418927000000 0.188417304000000 +0.276080934000000 0.971687870000000 0.327251107000000 +0.285997634000000 0.925228180000000 0.644585514000000 +0.307268956000000 0.923492707000000 0.297501006000000 +0.287683473000000 0.971687870000000 0.049583501000000 +0.302508940000000 0.907576354000000 0.376834608000000 +0.290955984000000 0.921013532000000 0.456168210000000 +0.282675540000000 0.941293184000000 0.317334407000000 +0.290856817000000 0.924087709000000 0.218167405000000 +0.297501006000000 0.932516954000000 0.168583904000000 +0.295765584000000 0.920170613000000 0.436334809000000 +0.279353445000000 0.968911194000000 0.208250704000000 +0.299236429000000 0.931822686000000 0.009916700000000 +0.294030161000000 0.920121079000000 0.555335212000000 +0.289270145000000 0.933954826000000 0.029750101000000 +0.290856817000000 0.930335231000000 0.099167002000000 +0.295914334000000 0.935888583000000 0.287584306000000 +0.289220562000000 0.959143245000000 0.000000000000000 +0.294129328000000 0.923294423000000 0.297501006000000 +0.285848884000000 0.943772359000000 0.257834206000000 +0.277717189000000 0.980612901000000 0.327251107000000 +0.284212628000000 0.956366569000000 0.000000000000000 +0.289270145000000 0.927508971000000 0.485918310000000 +0.285898467000000 0.946995337000000 0.099167002000000 +0.291005568000000 0.914567677000000 0.069416901000000 +0.274395095000000 0.960134915000000 0.396668009000000 +0.299137262000000 0.915311479000000 0.366917908000000 +0.274345511000000 0.957110321000000 0.406584709000000 +0.295765584000000 0.920170613000000 0.416501409000000 +0.285997634000000 0.968762444000000 0.059500201000000 +0.285997634000000 0.965638683000000 0.267750906000000 +0.276080934000000 0.966084935000000 0.049583501000000 +0.285848884000000 0.987257090000000 0.138833803000000 +0.282625956000000 0.956515319000000 0.228084105000000 +0.292493073000000 0.904452643000000 0.109083702000000 +0.287683473000000 0.971687870000000 0.069416901000000 +0.284262212000000 0.928153557000000 0.247917505000000 +0.275981767000000 0.962911591000000 0.029750101000000 +0.304095612000000 0.922104369000000 0.069416901000000 +0.277618022000000 0.959936630000000 0.575168612000000 +0.282675540000000 0.980910402000000 0.089250302000000 +0.295914334000000 0.909807711000000 0.029750101000000 +0.290856817000000 0.930335231000000 0.178500604000000 +0.279303862000000 0.974811681000000 0.297501006000000 +0.279353445000000 0.938665259000000 0.426418109000000 +0.281039284000000 0.968861561000000 0.287584306000000 +0.307417707000000 0.913328090000000 0.198334004000000 +0.279353445000000 0.947491122000000 0.436334809000000 +0.282675540000000 0.931971536000000 0.257834206000000 +0.290906401000000 0.933508575000000 0.208250704000000 +0.302508940000000 0.917790654000000 0.128917103000000 +0.299137262000000 0.908815942000000 0.357001208000000 +0.279303862000000 0.956812820000000 0.039666801000000 +0.284311795000000 0.950218215000000 0.287584306000000 +0.299137262000000 0.908815942000000 0.585085313000000 +0.282675540000000 0.931971536000000 0.466084910000000 +0.280791367000000 0.962762840000000 0.238000805000000 +0.279303862000000 0.956812820000000 0.000000000000000 +0.299286012000000 0.912138135000000 0.416501409000000 +0.274395095000000 0.960134915000000 0.119000403000000 +0.294178912000000 0.936285251000000 0.079333602000000 +0.290906401000000 0.952697390000000 0.218167405000000 +0.300922268000000 0.908220989000000 0.168583904000000 +0.302508940000000 0.931475651000000 0.208250704000000 +0.287683473000000 0.927806472000000 0.376834608000000 +0.297501006000000 0.906287233000000 0.664418914000000 +0.294129328000000 0.916798885000000 0.644585514000000 +0.295765584000000 0.920170613000000 0.485918310000000 +0.292542656000000 0.920368947000000 0.614835413000000 +0.289220562000000 0.971886155000000 0.079333602000000 +0.287633890000000 0.968762444000000 0.148750503000000 +0.304194779000000 0.907526820000000 0.287584306000000 +0.294278079000000 0.912435587000000 0.545418512000000 +0.297501006000000 0.952003221000000 0.079333602000000 +0.284262212000000 0.928153557000000 0.188417304000000 +0.286096801000000 0.990232149000000 0.099167002000000 +0.291005568000000 0.914567677000000 0.208250704000000 +0.282576373000000 0.974910798000000 0.019833400000000 +0.284361379000000 0.937971090000000 0.158667203000000 +0.284212628000000 0.962564506000000 0.158667203000000 +0.300872684000000 0.931574818000000 0.238000805000000 +0.287633890000000 0.930831066000000 0.505751711000000 +0.281039284000000 0.968861561000000 0.307417707000000 +0.302409773000000 0.934847280000000 0.218167405000000 +0.276080934000000 0.977538674000000 0.198334004000000 +0.279353445000000 0.947491122000000 0.406584709000000 +0.285948051000000 0.928153557000000 0.049583501000000 +0.292542656000000 0.923641458000000 0.515668411000000 +0.277717189000000 0.980612901000000 0.019833400000000 +0.292592240000000 0.917294770000000 0.059500201000000 +0.297501006000000 0.908815942000000 0.525585111000000 +0.284311795000000 0.925575214000000 0.366917908000000 +0.290856817000000 0.930335231000000 0.000000000000000 +0.277568439000000 0.953837810000000 0.317334407000000 +0.295815167000000 0.945706116000000 0.128917103000000 +0.272659672000000 0.963159508000000 0.218167405000000 +0.282625956000000 0.956515319000000 0.069416901000000 +0.294278079000000 0.965043681000000 0.019833400000000 +0.295765584000000 0.920170613000000 0.505751711000000 +0.274395095000000 0.960134915000000 0.247917505000000 +0.279353445000000 0.980712018000000 0.267750906000000 +0.284311795000000 0.950218215000000 0.148750503000000 +0.294278079000000 0.945805283000000 0.119000403000000 +0.281039284000000 0.965787434000000 0.307417707000000 +0.304194779000000 0.907526820000000 0.307417707000000 +0.295765584000000 0.939210677000000 0.049583501000000 +0.275981767000000 0.957060738000000 0.307417707000000 +0.297451423000000 0.938962760000000 0.148750503000000 +0.285948051000000 0.928153557000000 0.347084507000000 +0.300872684000000 0.931574818000000 0.049583501000000 +0.289270145000000 0.930831066000000 0.347084507000000 +0.294178912000000 0.936285251000000 0.029750101000000 +0.292542656000000 0.923641458000000 0.247917505000000 +0.271866336000000 0.964349562000000 0.436334809000000 +0.299186845000000 0.905394779000000 0.366917908000000 +0.302360190000000 0.921311033000000 0.148750503000000 +0.276031350000000 0.959986164000000 0.128917103000000 +0.280890534000000 0.983885362000000 0.089250302000000 +0.300922268000000 0.908220989000000 0.426418109000000 +0.287683473000000 0.927806472000000 0.466084910000000 +0.295914334000000 0.925922349000000 0.039666801000000 +0.294278079000000 0.945805283000000 0.019833400000000 +0.281039284000000 0.965787434000000 0.327251107000000 +0.284311795000000 0.990132933000000 0.019833400000000 +0.287633890000000 0.937128170000000 0.416501409000000 +0.299186845000000 0.905394779000000 0.694169015000000 +0.294129328000000 0.923294423000000 0.238000805000000 +0.297501006000000 0.906287233000000 0.406584709000000 +0.305682284000000 0.920071446000000 0.337167807000000 +0.300823101000000 0.904799728000000 0.198334004000000 +0.295716000000000 0.922897705000000 0.376834608000000 +0.272709256000000 0.966134568000000 0.019833400000000 +0.277766773000000 0.950763633000000 0.257834206000000 +0.299186845000000 0.905394779000000 0.119000403000000 +0.287584306000000 0.940450265000000 0.188417304000000 +0.287633890000000 0.937128170000000 0.327251107000000 +0.295815167000000 0.916947636000000 0.595002013000000 +0.275981767000000 0.957060738000000 0.218167405000000 +0.289270145000000 0.927508971000000 0.079333602000000 +0.294129328000000 0.916798885000000 0.456168210000000 +0.281039284000000 0.965787434000000 0.218167405000000 +0.282625956000000 0.929046060000000 0.575168612000000 +0.275981767000000 0.962911591000000 0.277667606000000 +0.289270145000000 0.949722330000000 0.238000805000000 +0.287584306000000 0.924831462000000 0.297501006000000 +0.279254278000000 0.959837414000000 0.327251107000000 +0.284311795000000 0.941045217000000 0.198334004000000 +0.274345511000000 0.957110321000000 0.664418914000000 +0.292542656000000 0.920368947000000 0.376834608000000 +0.289220562000000 0.943474858000000 0.019833400000000 +0.281832620000000 0.942582405000000 0.049583501000000 +0.295914334000000 0.925922349000000 0.069416901000000 +0.282625956000000 0.984034212000000 0.307417707000000 +0.294129328000000 0.923294423000000 0.307417707000000 +0.284212628000000 0.956366569000000 0.089250302000000 +0.299087678000000 0.921806868000000 0.178500604000000 +0.299137262000000 0.918633524000000 0.188417304000000 +0.302459357000000 0.928351891000000 0.277667606000000 +0.277717189000000 0.980612901000000 0.218167405000000 +0.279204695000000 0.950813167000000 0.218167405000000 +0.302508940000000 0.907576354000000 0.337167807000000 +0.277618022000000 0.957060738000000 0.436334809000000 +0.300922268000000 0.911245583000000 0.049583501000000 +0.295914334000000 0.948929043000000 0.109083702000000 +0.299087678000000 0.921806868000000 0.307417707000000 +0.303996445000000 0.924236410000000 0.099167002000000 +0.277568439000000 0.953837810000000 0.485918310000000 +0.280940117000000 0.941541102000000 0.158667203000000 +0.279303862000000 0.977786641000000 0.267750906000000 +0.280940117000000 0.929393144000000 0.109083702000000 +0.287683473000000 0.971687870000000 0.178500604000000 +0.281039284000000 0.992909609000000 0.089250302000000 +0.277618022000000 0.957060738000000 0.525585111000000 +0.275981767000000 0.974811681000000 0.238000805000000 +0.300872684000000 0.931574818000000 0.059500201000000 +0.302508940000000 0.907576354000000 0.426418109000000 +0.304194779000000 0.907526820000000 0.376834608000000 +0.305731868000000 0.923641458000000 0.297501006000000 +0.282625956000000 0.934996129000000 0.188417304000000 +0.276080934000000 0.971687870000000 0.059500201000000 +0.290906401000000 0.911195999000000 0.366917908000000 +0.287584306000000 0.934103577000000 0.029750101000000 +0.285898467000000 0.956267402000000 0.228084105000000 +0.285997634000000 0.968762444000000 0.049583501000000 +0.285948051000000 0.978133726000000 0.069416901000000 +0.282625956000000 0.929046060000000 0.158667203000000 +0.292592240000000 0.933211123000000 0.347084507000000 +0.282675540000000 0.993058359000000 0.009916700000000 +0.290856817000000 0.930335231000000 0.476001610000000 +0.277717189000000 0.969010312000000 0.000000000000000 +0.289270145000000 0.930831066000000 0.238000805000000 +0.292592240000000 0.965489933000000 0.019833400000000 +0.289170978000000 0.962316589000000 0.148750503000000 +0.287584306000000 0.984331663000000 0.178500604000000 +0.284361379000000 0.981009618000000 0.119000403000000 +0.279254278000000 0.962961224000000 0.158667203000000 +0.287683473000000 0.971687870000000 0.158667203000000 +0.289270145000000 0.920666398000000 0.595002013000000 +0.299137262000000 0.918633524000000 0.089250302000000 +0.290807234000000 0.939954479000000 0.069416901000000 +0.297501006000000 0.935591082000000 0.009916700000000 +0.285898467000000 0.956267402000000 0.247917505000000 +0.277766773000000 0.950763633000000 0.039666801000000 +0.292493073000000 0.904452643000000 0.188417304000000 +0.289270145000000 0.949722330000000 0.128917103000000 +0.299137262000000 0.908815942000000 0.000000000000000 +0.279303862000000 0.941789019000000 0.218167405000000 +0.287485139000000 1.000000000000000 0.148750503000000 +0.295021831000000 0.924682761000000 0.426418109000000 +0.289319729000000 0.937029003000000 0.287584306000000 +0.284212628000000 0.999652965000000 0.099167002000000 +0.281832620000000 0.939706512000000 0.386751308000000 +0.279849280000000 0.945011947000000 0.446251510000000 +0.299186845000000 0.905394779000000 0.228084105000000 +0.295021831000000 0.924682761000000 0.099167002000000 +0.280940117000000 0.932268987000000 0.466084910000000 +0.305880618000000 0.913427257000000 0.148750503000000 +0.299186845000000 0.935491915000000 0.307417707000000 +0.272659672000000 0.957308705000000 0.714002415000000 +0.299137262000000 0.918633524000000 0.168583904000000 +0.287485139000000 0.943574025000000 0.119000403000000 +0.272758839000000 0.968861561000000 0.148750503000000 +0.289319729000000 0.937029003000000 0.089250302000000 +0.295765584000000 0.920170613000000 0.099167002000000 +0.277568439000000 0.953837810000000 0.327251107000000 +0.274395095000000 0.974662930000000 0.109083702000000 +0.279353445000000 0.980712018000000 0.178500604000000 +0.297451423000000 0.938962760000000 0.277667606000000 +0.295914334000000 0.909807711000000 0.406584709000000 +0.290856817000000 0.924087709000000 0.297501006000000 +0.279353445000000 0.965836968000000 0.297501006000000 +0.285997634000000 0.971787087000000 0.198334004000000 +0.280890534000000 0.977786641000000 0.009916700000000 +0.284262212000000 0.928153557000000 0.446251510000000 +0.282675540000000 0.971935788000000 0.119000403000000 +0.282625956000000 0.984034212000000 0.158667203000000 +0.290807234000000 0.971836621000000 0.099167002000000 +0.280890534000000 0.974910798000000 0.168583904000000 +0.295864751000000 0.958994494000000 0.009916700000000 +0.297550590000000 0.902717220000000 0.446251510000000 +0.292542656000000 0.923641458000000 0.307417707000000 +0.292493073000000 0.926963553000000 0.138833803000000 +0.295864751000000 0.958994494000000 0.059500201000000 +0.284212628000000 0.999652965000000 0.019833400000000 +0.300922268000000 0.908220989000000 0.119000403000000 +0.299137262000000 0.938863642000000 0.099167002000000 +0.281039284000000 0.992909609000000 0.009916700000000 +0.282576373000000 0.959688663000000 0.238000805000000 +0.305682284000000 0.920071446000000 0.257834206000000 +0.294327662000000 0.910353129000000 0.168583904000000 +0.305731868000000 0.910055529000000 0.476001610000000 +0.302508940000000 0.904353476000000 0.595002013000000 +0.279303862000000 0.941789019000000 0.029750101000000 +0.292592240000000 0.933211123000000 0.029750101000000 +0.277618022000000 0.971985371000000 0.029750101000000 +0.281039284000000 0.980811235000000 0.168583904000000 +0.302508940000000 0.907576354000000 0.515668411000000 +0.286741387000000 0.945309398000000 0.079333602000000 +0.279353445000000 0.980712018000000 0.238000805000000 +0.299137262000000 0.908815942000000 0.178500604000000 +0.300823101000000 0.904799728000000 0.515668411000000 +0.300773517000000 0.928351891000000 0.079333602000000 +0.295864751000000 0.906535150000000 0.793336017000000 +0.277618022000000 0.974811681000000 0.238000805000000 +0.274444678000000 0.968960778000000 0.426418109000000 +0.285948051000000 0.928153557000000 0.416501409000000 +0.300922268000000 0.911245583000000 0.158667203000000 +0.299186845000000 0.952052754000000 0.128917103000000 +0.285105131000000 0.945408615000000 0.178500604000000 +0.274345511000000 0.966134568000000 0.406584709000000 +0.289220562000000 0.971886155000000 0.009916700000000 +0.279303862000000 0.941789019000000 0.247917505000000 +0.279303862000000 0.977786641000000 0.069416901000000 +0.307318540000000 0.916402316000000 0.079333602000000 +0.280940117000000 0.956614437000000 0.148750503000000 +0.292542656000000 0.945904450000000 0.029750101000000 +0.286691803000000 0.942185687000000 0.039666801000000 +0.283419292000000 0.942780689000000 0.188417304000000 +0.289170978000000 0.978282476000000 0.059500201000000 +0.294228495000000 0.952350355000000 0.049583501000000 +0.305731868000000 0.910055529000000 0.257834206000000 +0.297550590000000 0.928798192000000 0.287584306000000 +0.304145196000000 0.914022259000000 0.376834608000000 +0.277766773000000 0.950763633000000 0.247917505000000 +0.295914334000000 0.925922349000000 0.406584709000000 +0.284311795000000 0.925575214000000 0.208250704000000 +0.281039284000000 0.968861561000000 0.337167807000000 +0.285898467000000 0.999851249000000 0.049583501000000 +0.281832620000000 0.942582405000000 0.000000000000000 +0.297550590000000 0.902717220000000 0.396668009000000 +0.297550590000000 0.902717220000000 0.208250704000000 +0.279353445000000 0.965836968000000 0.138833803000000 +0.285749717000000 0.953193274000000 0.099167002000000 +0.285997634000000 0.925228180000000 0.406584709000000 +0.282675540000000 0.925971882000000 0.228084105000000 +0.279353445000000 0.980712018000000 0.257834206000000 +0.285848884000000 0.943772359000000 0.089250302000000 +0.305682284000000 0.920071446000000 0.188417304000000 +0.289270145000000 0.920666398000000 0.059500201000000 +0.285105131000000 0.939210677000000 0.119000403000000 +0.290906401000000 0.927211470000000 0.426418109000000 +0.281039284000000 0.959936630000000 0.158667203000000 +0.277618022000000 0.957060738000000 0.575168612000000 +0.299137262000000 0.938863642000000 0.029750101000000 +0.280890534000000 0.983885362000000 0.009916700000000 +0.287584306000000 0.924831462000000 0.188417304000000 +0.284262212000000 0.934847280000000 0.466084910000000 +0.286741387000000 0.945309398000000 0.109083702000000 +0.277618022000000 0.959936630000000 0.535501812000000 +0.294228495000000 0.907030935000000 0.654502214000000 +0.294178912000000 0.936285251000000 0.218167405000000 +0.279303862000000 0.941789019000000 0.178500604000000 +0.282675540000000 0.993058359000000 0.247917505000000 +0.282625956000000 0.929046060000000 0.357001208000000 +0.282675540000000 0.993058359000000 0.138833803000000 +0.290856817000000 0.924087709000000 0.446251510000000 +0.290856817000000 0.930335231000000 0.138833803000000 +0.282526789000000 0.977935392000000 0.009916700000000 +0.271866336000000 0.964349562000000 0.614835413000000 +0.289220562000000 0.946499452000000 0.168583904000000 +0.290955984000000 0.921013532000000 0.604918713000000 +0.298244759000000 0.923542241000000 0.198334004000000 +0.272659672000000 0.963159508000000 0.595002013000000 +0.279254278000000 0.959837414000000 0.000000000000000 +0.307417707000000 0.913328090000000 0.029750101000000 +0.282675540000000 0.968861561000000 0.148750503000000 +0.285948051000000 0.993405494000000 0.119000403000000 +0.279353445000000 0.968911194000000 0.287584306000000 +0.281039284000000 0.965787434000000 0.138833803000000 +0.300872684000000 0.901576800000000 0.753669216000000 +0.285105131000000 0.942185687000000 0.267750906000000 +0.282675540000000 0.925971882000000 0.644585514000000 +0.284212628000000 0.987058805000000 0.277667606000000 +0.274395095000000 0.960134915000000 0.089250302000000 +0.284262212000000 0.965737850000000 0.138833803000000 +0.285997634000000 0.950069464000000 0.128917103000000 +0.272659672000000 0.957308705000000 0.654502214000000 +0.300823101000000 0.934996129000000 0.039666801000000 +0.304095612000000 0.917294770000000 0.218167405000000 +0.307417707000000 0.913328090000000 0.049583501000000 +0.290955984000000 0.921013532000000 0.069416901000000 +0.305880618000000 0.913427257000000 0.049583501000000 +0.304095612000000 0.917294770000000 0.277667606000000 +0.282675540000000 0.931971536000000 0.099167002000000 +0.285997634000000 0.950069464000000 0.059500201000000 +0.295914334000000 0.948929043000000 0.148750503000000 +0.277618022000000 0.963010758000000 0.198334004000000 +0.274395095000000 0.974662930000000 0.019833400000000 +0.290807234000000 0.939954479000000 0.277667606000000 +0.294129328000000 0.971836621000000 0.000000000000000 +0.279303862000000 0.941789019000000 0.238000805000000 +0.296658087000000 0.921112699000000 0.317334407000000 +0.277618022000000 0.963010758000000 0.347084507000000 +0.294178912000000 0.942929440000000 0.128917103000000 +0.285848884000000 0.983984579000000 0.158667203000000 +0.302508940000000 0.931475651000000 0.099167002000000 +0.284311795000000 0.950218215000000 0.178500604000000 +0.287633890000000 0.930831066000000 0.049583501000000 +0.295914334000000 0.925922349000000 0.317334407000000 +0.287633890000000 0.946747369000000 0.297501006000000 +0.292592240000000 0.933211123000000 0.386751308000000 +0.295021831000000 0.924682761000000 0.495835011000000 +0.299186845000000 0.952052754000000 0.069416901000000 +0.295765584000000 0.920170613000000 0.277667606000000 +0.292443489000000 0.972084538000000 0.059500201000000 +0.285997634000000 0.981108736000000 0.198334004000000 +0.290906401000000 0.908022655000000 0.357001208000000 +0.282576373000000 0.987058805000000 0.297501006000000 +0.283468876000000 0.948929043000000 0.327251107000000 +0.284311795000000 0.925575214000000 0.466084910000000 +0.292542656000000 0.907576354000000 0.595002013000000 +0.300823101000000 0.918236856000000 0.119000403000000 +0.299186845000000 0.905394779000000 0.575168612000000 +0.299286012000000 0.912138135000000 0.347084507000000 +0.284311795000000 0.950218215000000 0.238000805000000 +0.277618022000000 0.957060738000000 0.089250302000000 +0.281832620000000 0.945656532000000 0.178500604000000 +0.302409773000000 0.911096832000000 0.128917103000000 +0.285997634000000 0.950069464000000 0.218167405000000 +0.292592240000000 0.917294770000000 0.634668814000000 +0.274395095000000 0.960134915000000 0.505751711000000 +0.294278079000000 0.912435587000000 0.416501409000000 +0.289270145000000 0.930831066000000 0.168583904000000 +0.289270145000000 0.920666398000000 0.406584709000000 +0.285898467000000 0.959391212000000 0.109083702000000 +0.295815167000000 0.916947636000000 0.079333602000000 +0.287534723000000 0.959291995000000 0.039666801000000 +0.287534723000000 0.974960382000000 0.029750101000000 +0.271866336000000 0.964349562000000 0.664418914000000 +0.272659672000000 0.957308705000000 0.674335615000000 +0.294030161000000 0.920121079000000 0.525585111000000 +0.289170978000000 0.940202347000000 0.208250704000000 +0.297501006000000 0.908815942000000 0.307417707000000 +0.300872684000000 0.901576800000000 0.743752516000000 +0.292592240000000 0.936384467000000 0.218167405000000 +0.276080934000000 0.951061134000000 0.099167002000000 +0.277618022000000 0.957060738000000 0.535501812000000 +0.281832620000000 0.939706512000000 0.119000403000000 +0.297501006000000 0.906287233000000 0.545418512000000 +0.287584306000000 0.924831462000000 0.456168210000000 +0.287633890000000 0.930831066000000 0.466084910000000 +0.282625956000000 0.929046060000000 0.128917103000000 +0.284212628000000 0.956366569000000 0.287584306000000 +0.294228495000000 0.933111907000000 0.238000805000000 +0.300773517000000 0.921608534000000 0.009916700000000 +0.295963918000000 0.913030589000000 0.079333602000000 +0.280940117000000 0.932268987000000 0.485918310000000 +0.280989701000000 0.935343164000000 0.456168210000000 +0.294228495000000 0.907030935000000 0.714002415000000 +0.285948051000000 0.928153557000000 0.396668009000000 +0.279254278000000 0.962961224000000 0.039666801000000 +0.289270145000000 0.968663277000000 0.069416901000000 +0.302508940000000 0.931475651000000 0.238000805000000 +0.300823101000000 0.904799728000000 0.634668814000000 +0.307516874000000 0.919922695000000 0.198334004000000 +0.292542656000000 0.913476840000000 0.565251912000000 +0.295021831000000 0.927806472000000 0.148750503000000 +0.300723934000000 0.915063512000000 0.386751308000000 +0.287584306000000 0.934103577000000 0.099167002000000 +0.274494262000000 0.954333645000000 0.228084105000000 +0.289220562000000 0.943474858000000 0.049583501000000 +0.285105131000000 0.939210677000000 0.109083702000000 +0.284311795000000 0.968762444000000 0.257834206000000 +0.292542656000000 0.913476840000000 0.446251510000000 +0.297501006000000 0.935591082000000 0.238000805000000 +0.292641823000000 0.968613743000000 0.109083702000000 +0.291005568000000 0.914567677000000 0.317334407000000 +0.302360190000000 0.914418927000000 0.138833803000000 +0.290906401000000 0.908022655000000 0.347084507000000 +0.292592240000000 0.917294770000000 0.456168210000000 +0.299137262000000 0.938863642000000 0.247917505000000 +0.295963918000000 0.913030589000000 0.029750101000000 +0.280890534000000 0.983885362000000 0.019833400000000 +0.304095612000000 0.917294770000000 0.317334407000000 +0.276031350000000 0.959986164000000 0.525585111000000 +0.280890534000000 0.953639476000000 0.426418109000000 +0.285997634000000 0.925228180000000 0.525585111000000 +0.294228495000000 0.929591478000000 0.138833803000000 +0.305731868000000 0.910055529000000 0.446251510000000 +0.292493073000000 0.942929440000000 0.277667606000000 +0.279303862000000 0.941789019000000 0.396668009000000 +0.284311795000000 0.968762444000000 0.099167002000000 +0.292592240000000 0.936384467000000 0.059500201000000 +0.284311795000000 0.925575214000000 0.357001208000000 +0.277568439000000 0.953837810000000 0.089250302000000 +0.290856817000000 0.924087709000000 0.406584709000000 +0.297501006000000 0.906287233000000 0.396668009000000 +0.300823101000000 0.934996129000000 0.287584306000000 +0.277667606000000 0.965985817000000 0.456168210000000 +0.280890534000000 0.974910798000000 0.228084105000000 +0.276031350000000 0.959986164000000 0.406584709000000 +0.280989701000000 0.935343164000000 0.515668411000000 +0.292542656000000 0.913476840000000 0.624752113000000 +0.284262212000000 0.928153557000000 0.466084910000000 +0.292493073000000 0.904452643000000 0.634668814000000 +0.287584306000000 0.924831462000000 0.158667203000000 +0.279303862000000 0.983835828000000 0.158667203000000 +0.287485139000000 1.000000000000000 0.019833400000000 +0.277618022000000 0.959936630000000 0.049583501000000 +0.295765584000000 0.920170613000000 0.069416901000000 +0.282576373000000 0.959688663000000 0.257834206000000 +0.285898467000000 0.999851249000000 0.168583904000000 +0.295765584000000 0.942532772000000 0.228084105000000 +0.292592240000000 0.933211123000000 0.406584709000000 +0.280940117000000 0.932268987000000 0.327251107000000 +0.300723934000000 0.915063512000000 0.039666801000000 +0.282625956000000 0.934996129000000 0.495835011000000 +0.282625956000000 0.929046060000000 0.079333602000000 +0.300922268000000 0.911245583000000 0.406584709000000 +0.274395095000000 0.974662930000000 0.238000805000000 +0.289220562000000 0.971886155000000 0.109083702000000 +0.287633890000000 0.930831066000000 0.416501409000000 +0.287534723000000 0.987505007000000 0.158667203000000 +0.302508940000000 0.907576354000000 0.109083702000000 +0.292542656000000 0.907576354000000 0.654502214000000 +0.295864751000000 0.906535150000000 0.238000805000000 +0.279353445000000 0.965836968000000 0.307417707000000 +0.299186845000000 0.905394779000000 0.426418109000000 +0.276080934000000 0.966084935000000 0.228084105000000 +0.297501006000000 0.908815942000000 0.555335212000000 +0.290906401000000 0.927211470000000 0.218167405000000 +0.285997634000000 0.965638683000000 0.247917505000000 +0.291005568000000 0.914567677000000 0.257834206000000 +0.292592240000000 0.917294770000000 0.247917505000000 +0.290906401000000 0.959044078000000 0.128917103000000 +0.290955984000000 0.946400285000000 0.079333602000000 +0.289220562000000 0.924385161000000 0.466084910000000 +0.295864751000000 0.906535150000000 0.247917505000000 +0.284212628000000 0.956366569000000 0.247917505000000 +0.302360190000000 0.914418927000000 0.446251510000000 +0.272709256000000 0.966134568000000 0.178500604000000 +0.280890534000000 0.977786641000000 0.257834206000000 +0.289270145000000 0.933954826000000 0.257834206000000 +0.281882204000000 0.948978627000000 0.029750101000000 +0.275981767000000 0.962911591000000 0.327251107000000 +0.290906401000000 0.952697390000000 0.009916700000000 +0.294178912000000 0.936285251000000 0.178500604000000 +0.285898467000000 0.940747766000000 0.128917103000000 +0.289170978000000 0.940202347000000 0.238000805000000 +0.277618022000000 0.971985371000000 0.436334809000000 +0.281039284000000 0.980811235000000 0.287584306000000 +0.282725123000000 0.965836968000000 0.337167807000000 +0.284212628000000 0.983488793000000 0.188417304000000 +0.272659672000000 0.963159508000000 0.297501006000000 +0.302508940000000 0.907576354000000 0.247917505000000 +0.289220562000000 0.924385161000000 0.476001610000000 +0.284311795000000 0.925575214000000 0.069416901000000 +0.283419292000000 0.939706512000000 0.000000000000000 +0.290955984000000 0.921013532000000 0.723919116000000 +0.299137262000000 0.915311479000000 0.208250704000000 +0.276080934000000 0.966084935000000 0.416501409000000 +0.277618022000000 0.974811681000000 0.069416901000000 +0.285997634000000 0.925228180000000 0.019833400000000 +0.276080934000000 0.966084935000000 0.476001610000000 +0.283419292000000 0.945557365000000 0.099167002000000 +0.305682284000000 0.920071446000000 0.029750101000000 +0.280890534000000 0.977786641000000 0.297501006000000 +0.281039284000000 0.938516508000000 0.049583501000000 +0.297600173000000 0.912633921000000 0.327251107000000 +0.299137262000000 0.908815942000000 0.446251510000000 +0.304145196000000 0.914022259000000 0.019833400000000 +0.298343926000000 0.927112303000000 0.247917505000000 +0.294278079000000 0.912435587000000 0.287584306000000 +0.282675540000000 0.968861561000000 0.039666801000000 +0.296757254000000 0.927806472000000 0.059500201000000 +0.292493073000000 0.959044078000000 0.049583501000000 +0.297501006000000 0.908815942000000 0.039666801000000 +0.287534723000000 0.987505007000000 0.000000000000000 +0.287584306000000 0.924831462000000 0.257834206000000 +0.292542656000000 0.923641458000000 0.545418512000000 +0.297501006000000 0.925723965000000 0.307417707000000 +0.300823101000000 0.904799728000000 0.049583501000000 +0.277618022000000 0.963010758000000 0.000000000000000 +0.285948051000000 0.931376484000000 0.119000403000000 +0.285898467000000 0.946995337000000 0.148750503000000 +0.274295928000000 0.963010758000000 0.099167002000000 +0.299137262000000 0.915311479000000 0.406584709000000 +0.307268956000000 0.923492707000000 0.109083702000000 +0.295963918000000 0.913030589000000 0.307417707000000 +0.295914334000000 0.925922349000000 0.049583501000000 +0.290955984000000 0.968613743000000 0.138833803000000 +0.285948051000000 0.978133726000000 0.119000403000000 +0.279204695000000 0.950813167000000 0.723919116000000 +0.307318540000000 0.916402316000000 0.029750101000000 +0.289319729000000 0.937029003000000 0.049583501000000 +0.300773517000000 0.928351891000000 0.069416901000000 +0.277618022000000 0.974811681000000 0.079333602000000 +0.305880618000000 0.913427257000000 0.019833400000000 +0.280840950000000 0.971787087000000 0.099167002000000 +0.282675540000000 0.971935788000000 0.039666801000000 +0.287584306000000 0.934103577000000 0.208250704000000 +0.275981767000000 0.974811681000000 0.218167405000000 +0.280940117000000 0.986810838000000 0.069416901000000 +0.285848884000000 0.943772359000000 0.119000403000000 +0.294129328000000 0.971836621000000 0.079333602000000 +0.305880618000000 0.917046852000000 0.386751308000000 +0.300773517000000 0.921608534000000 0.396668009000000 +0.277618022000000 0.974811681000000 0.366917908000000 +0.295765584000000 0.920170613000000 0.357001208000000 +0.272659672000000 0.957308705000000 0.178500604000000 +0.290955984000000 0.946400285000000 0.277667606000000 +0.282576373000000 0.996033369000000 0.128917103000000 +0.282625956000000 0.928798192000000 0.525585111000000 +0.285749717000000 0.953193274000000 0.228084105000000 +0.285105131000000 0.942185687000000 0.069416901000000 +0.297501006000000 0.935591082000000 0.069416901000000 +0.274345511000000 0.957110321000000 0.228084105000000 +0.275981767000000 0.962911591000000 0.228084105000000 +0.279353445000000 0.947491122000000 0.495835011000000 +0.275981767000000 0.957060738000000 0.525585111000000 +0.287683473000000 0.927806472000000 0.386751308000000 +0.282625956000000 0.929046060000000 0.287584306000000 +0.302508940000000 0.904353476000000 0.059500201000000 +0.285898467000000 0.962514923000000 0.297501006000000 +0.305682284000000 0.920071446000000 0.138833803000000 +0.287584306000000 0.924831462000000 0.426418109000000 +0.271866336000000 0.964349562000000 0.148750503000000 +0.282675540000000 0.925971882000000 0.545418512000000 +0.275932183000000 0.954036144000000 0.327251107000000 +0.290906401000000 0.908022655000000 0.128917103000000 +0.294327662000000 0.910353129000000 0.545418512000000 +0.282725123000000 0.950366965000000 0.009916700000000 +0.304095612000000 0.910948082000000 0.347084507000000 +0.285948051000000 0.928153557000000 0.317334407000000 +0.292542656000000 0.913476840000000 0.297501006000000 +0.297501006000000 0.932516954000000 0.138833803000000 +0.282625956000000 0.934996129000000 0.297501006000000 +0.292493073000000 0.939855263000000 0.218167405000000 +0.294228495000000 0.933111907000000 0.148750503000000 +0.282625956000000 0.934996129000000 0.119000403000000 +0.279204695000000 0.950813167000000 0.436334809000000 +0.279353445000000 0.938665259000000 0.178500604000000 +0.292592240000000 0.929988146000000 0.456168210000000 +0.290906401000000 0.936582752000000 0.228084105000000 +0.290955984000000 0.921013532000000 0.307417707000000 +0.289220562000000 0.943474858000000 0.307417707000000 +0.282625956000000 0.928798192000000 0.079333602000000 +0.281882204000000 0.948978627000000 0.396668009000000 +0.295864751000000 0.958994494000000 0.029750101000000 +0.295864751000000 0.929293977000000 0.178500604000000 +0.282725123000000 0.965836968000000 0.039666801000000 +0.297501006000000 0.925723965000000 0.238000805000000 +0.287485139000000 1.000000000000000 0.039666801000000 +0.279353445000000 0.947491122000000 0.575168612000000 +0.290856817000000 0.975109132000000 0.039666801000000 +0.280940117000000 0.932268987000000 0.069416901000000 +0.290906401000000 0.959044078000000 0.148750503000000 +0.276080934000000 0.951061134000000 0.000000000000000 +0.297600173000000 0.912633921000000 0.128917103000000 +0.285898467000000 0.956267402000000 0.168583904000000 +0.280940117000000 0.929393144000000 0.604918713000000 +0.297550590000000 0.916104716000000 0.416501409000000 +0.277618022000000 0.963010758000000 0.158667203000000 +0.285898467000000 0.959391212000000 0.158667203000000 +0.295021831000000 0.927806472000000 0.277667606000000 +0.289220562000000 0.946499452000000 0.228084105000000 +0.289270145000000 0.920666398000000 0.456168210000000 +0.285948051000000 0.931376484000000 0.148750503000000 +0.282675540000000 0.971935788000000 0.059500201000000 +0.296757254000000 0.927806472000000 0.287584306000000 +0.272858006000000 0.960085331000000 0.376834608000000 +0.292542656000000 0.920368947000000 0.585085313000000 +0.282576373000000 0.974910798000000 0.247917505000000 +0.281039284000000 0.968861561000000 0.208250704000000 +0.284262212000000 0.965737850000000 0.267750906000000 +0.304095612000000 0.910948082000000 0.218167405000000 +0.289170978000000 0.940202347000000 0.119000403000000 +0.297550590000000 0.948780343000000 0.148750503000000 +0.279254278000000 0.962961224000000 0.386751308000000 +0.287534723000000 0.959291995000000 0.069416901000000 +0.281882204000000 0.948978627000000 0.277667606000000 +0.307318540000000 0.916402316000000 0.317334407000000 +0.292493073000000 0.955821150000000 0.049583501000000 +0.295765584000000 0.939210677000000 0.089250302000000 +0.285948051000000 0.993405494000000 0.198334004000000 +0.272659672000000 0.957308705000000 0.733835816000000 +0.295815167000000 0.916947636000000 0.575168612000000 +0.272659672000000 0.963159508000000 0.138833803000000 +0.294228495000000 0.929591478000000 0.218167405000000 +0.294278079000000 0.912435587000000 0.188417304000000 +0.279849280000000 0.945011947000000 0.238000805000000 +0.284361379000000 0.940946100000000 0.257834206000000 +0.305731868000000 0.910055529000000 0.426418109000000 +0.292493073000000 0.926963553000000 0.297501006000000 +0.280940117000000 0.929393144000000 0.476001610000000 +0.285948051000000 0.993405494000000 0.059500201000000 +0.297600173000000 0.912633921000000 0.446251510000000 +0.297550590000000 0.902717220000000 0.604918713000000 +0.298244759000000 0.923542241000000 0.178500604000000 +0.300922268000000 0.908220989000000 0.099167002000000 +0.289270145000000 0.927508971000000 0.505751711000000 +0.287584306000000 0.990727935000000 0.119000403000000 +0.300922268000000 0.911245583000000 0.099167002000000 +0.297501006000000 0.932516954000000 0.009916700000000 +0.272709256000000 0.966134568000000 0.099167002000000 +0.287633890000000 0.937128170000000 0.198334004000000 +0.276031350000000 0.959986164000000 0.049583501000000 +0.295815167000000 0.916947636000000 0.505751711000000 +0.287584306000000 0.934103577000000 0.406584709000000 +0.285948051000000 0.931376484000000 0.188417304000000 +0.287633890000000 0.965886601000000 0.158667203000000 +0.274295928000000 0.963010758000000 0.327251107000000 +0.285154715000000 0.948333992000000 0.208250704000000 +0.290906401000000 0.933508575000000 0.009916700000000 +0.279254278000000 0.959837414000000 0.069416901000000 +0.274395095000000 0.960134915000000 0.069416901000000 +0.300872684000000 0.924881045000000 0.079333602000000 +0.282675540000000 0.980910402000000 0.168583904000000 +0.282625956000000 0.934996129000000 0.366917908000000 +0.279303862000000 0.977786641000000 0.307417707000000 +0.289270145000000 0.930831066000000 0.178500604000000 +0.290906401000000 0.911195999000000 0.238000805000000 +0.280989701000000 0.944565695000000 0.228084105000000 +0.295914334000000 0.909807711000000 0.119000403000000 +0.300872684000000 0.901576800000000 0.059500201000000 +0.294228495000000 0.929591478000000 0.029750101000000 +0.285948051000000 0.934351494000000 0.198334004000000 +0.283419292000000 0.945557365000000 0.357001208000000 +0.292542656000000 0.907576354000000 0.327251107000000 +0.294129328000000 0.923294423000000 0.416501409000000 +0.284262212000000 0.965737850000000 0.228084105000000 +0.294228495000000 0.952350355000000 0.069416901000000 +0.296707670000000 0.924286043000000 0.287584306000000 +0.294278079000000 0.968613743000000 0.039666801000000 +0.289170978000000 0.978282476000000 0.069416901000000 +0.280989701000000 0.935343164000000 0.406584709000000 +0.287633890000000 0.946747369000000 0.089250302000000 +0.299286012000000 0.912138135000000 0.287584306000000 +0.300872684000000 0.924881045000000 0.247917505000000 +0.300773517000000 0.928351891000000 0.039666801000000 +0.287633890000000 0.949871180000000 0.089250302000000 +0.305731868000000 0.910055529000000 0.009916700000000 +0.295815167000000 0.945706116000000 0.029750101000000 +0.282675540000000 0.931971536000000 0.188417304000000 +0.297501006000000 0.906287233000000 0.198334004000000 +0.291005568000000 0.914567677000000 0.535501812000000 +0.275981767000000 0.962911591000000 0.456168210000000 +0.295914334000000 0.909807711000000 0.545418512000000 +0.284262212000000 0.928153557000000 0.456168210000000 +0.300922268000000 0.911245583000000 0.188417304000000 +0.281039284000000 0.938516508000000 0.396668009000000 +0.295864751000000 0.906535150000000 0.366917908000000 +0.304194779000000 0.907526820000000 0.347084507000000 +0.284361379000000 0.937971090000000 0.009916700000000 +0.307417707000000 0.913328090000000 0.307417707000000 +0.304095612000000 0.917294770000000 0.019833400000000 +0.299137262000000 0.915311479000000 0.198334004000000 +0.279204695000000 0.953639476000000 0.168583904000000 +0.275981767000000 0.957060738000000 0.476001610000000 +0.289319729000000 0.937029003000000 0.109083702000000 +0.287485139000000 1.000000000000000 0.049583501000000 +0.277618022000000 0.959936630000000 0.505751711000000 +0.300823101000000 0.918236856000000 0.357001208000000 +0.307318540000000 0.916402316000000 0.218167405000000 +0.272858006000000 0.960085331000000 0.158667203000000 +0.276080934000000 0.966084935000000 0.178500604000000 +0.289270145000000 0.968663277000000 0.039666801000000 +0.285105131000000 0.945408615000000 0.287584306000000 +0.295864751000000 0.906535150000000 0.674335615000000 +0.294278079000000 0.912435587000000 0.307417707000000 +0.290807234000000 0.971836621000000 0.079333602000000 +0.299087678000000 0.921806868000000 0.109083702000000 +0.284311795000000 0.947044870000000 0.099167002000000 +0.290906401000000 0.927211470000000 0.109083702000000 +0.275981767000000 0.974811681000000 0.317334407000000 +0.279353445000000 0.938665259000000 0.485918310000000 +0.279353445000000 0.947491122000000 0.009916700000000 +0.282675540000000 0.931971536000000 0.446251510000000 +0.284262212000000 0.965737850000000 0.128917103000000 +0.294278079000000 0.945805283000000 0.138833803000000 +0.282625956000000 0.962713257000000 0.158667203000000 +0.292542656000000 0.945904450000000 0.039666801000000 +0.294228495000000 0.907030935000000 0.198334004000000 +0.282526789000000 0.977935392000000 0.089250302000000 +0.285997634000000 0.950069464000000 0.099167002000000 +0.284262212000000 0.928153557000000 0.545418512000000 +0.274345511000000 0.966134568000000 0.178500604000000 +0.279353445000000 0.947491122000000 0.069416901000000 +0.271122584000000 0.966134568000000 0.109083702000000 +0.281832620000000 0.939706512000000 0.069416901000000 +0.299137262000000 0.915311479000000 0.218167405000000 +0.282675540000000 0.941293184000000 0.069416901000000 +0.285997634000000 0.950069464000000 0.188417304000000 +0.292542656000000 0.920368947000000 0.396668009000000 +0.285848884000000 0.987257090000000 0.089250302000000 +0.287485139000000 0.943574025000000 0.009916700000000 +0.305682284000000 0.920071446000000 0.158667203000000 +0.297451423000000 0.938962760000000 0.109083702000000 +0.280840950000000 0.947491122000000 0.416501409000000 +0.292493073000000 0.926963553000000 0.436334809000000 +0.284262212000000 0.943970693000000 0.019833400000000 +0.285898467000000 0.956267402000000 0.277667606000000 +0.287683473000000 0.927806472000000 0.009916700000000 +0.287534723000000 0.962415805000000 0.158667203000000 +0.284212628000000 0.987058805000000 0.208250704000000 +0.274395095000000 0.960134915000000 0.218167405000000 +0.277618022000000 0.974811681000000 0.386751308000000 +0.281039284000000 0.938516508000000 0.019833400000000 +0.272858006000000 0.960085331000000 0.039666801000000 +0.285898467000000 0.996330871000000 0.069416901000000 +0.298244759000000 0.923542241000000 0.009916700000000 +0.276080934000000 0.966084935000000 0.188417304000000 +0.272659672000000 0.963159508000000 0.624752113000000 +0.280940117000000 0.929393144000000 0.426418109000000 +0.285154715000000 0.948333992000000 0.188417304000000 +0.285848884000000 0.983984579000000 0.238000805000000 +0.290807234000000 0.939954479000000 0.317334407000000 +0.277618022000000 0.957060738000000 0.376834608000000 +0.295815167000000 0.916947636000000 0.019833400000000 +0.287485139000000 0.943574025000000 0.327251107000000 +0.292592240000000 0.936384467000000 0.337167807000000 +0.299137262000000 0.915311479000000 0.009916700000000 +0.292493073000000 0.939855263000000 0.228084105000000 +0.284262212000000 0.943970693000000 0.208250704000000 +0.299137262000000 0.918633524000000 0.376834608000000 +0.289220562000000 0.971886155000000 0.039666801000000 +0.297501006000000 0.932516954000000 0.148750503000000 +0.282576373000000 0.974910798000000 0.267750906000000 +0.296658087000000 0.921112699000000 0.138833803000000 +0.297401839000000 0.922501037000000 0.099167002000000 +0.280840950000000 0.947491122000000 0.158667203000000 +0.294030161000000 0.920121079000000 0.357001208000000 +0.289270145000000 0.968663277000000 0.019833400000000 +0.272709256000000 0.966134568000000 0.505751711000000 +0.304095612000000 0.910948082000000 0.069416901000000 +0.287633890000000 0.946747369000000 0.049583501000000 +0.285948051000000 0.993405494000000 0.158667203000000 +0.294129328000000 0.939508178000000 0.089250302000000 +0.297501006000000 0.908815942000000 0.247917505000000 +0.292592240000000 0.917294770000000 0.188417304000000 +0.279254278000000 0.962961224000000 0.109083702000000 +0.289220562000000 0.959143245000000 0.019833400000000 +0.279799697000000 0.944565695000000 0.009916700000000 +0.284262212000000 0.943970693000000 0.257834206000000 +0.275981767000000 0.962911591000000 0.079333602000000 +0.292542656000000 0.907576354000000 0.495835011000000 +0.302409773000000 0.911096832000000 0.228084105000000 +0.289270145000000 0.927508971000000 0.168583904000000 +0.296658087000000 0.921112699000000 0.019833400000000 +0.277717189000000 0.969010312000000 0.198334004000000 +0.295716000000000 0.922897705000000 0.476001610000000 +0.287584306000000 0.990727935000000 0.238000805000000 +0.297451423000000 0.942235271000000 0.000000000000000 +0.271866336000000 0.964349562000000 0.366917908000000 +0.295716000000000 0.922897705000000 0.347084507000000 +0.294327662000000 0.910353129000000 0.376834608000000 +0.294228495000000 0.933111907000000 0.337167807000000 +0.274345511000000 0.957110321000000 0.059500201000000 +0.276080934000000 0.971687870000000 0.089250302000000 +0.286096801000000 0.990232149000000 0.218167405000000 +0.297451423000000 0.942235271000000 0.089250302000000 +0.275932183000000 0.954036144000000 0.277667606000000 +0.295815167000000 0.916947636000000 0.565251912000000 +0.279849280000000 0.945011947000000 0.357001208000000 +0.304145196000000 0.914022259000000 0.277667606000000 +0.298294342000000 0.920468114000000 0.138833803000000 +0.300823101000000 0.918236856000000 0.287584306000000 +0.297501006000000 0.908815942000000 0.644585514000000 +0.279799697000000 0.944565695000000 0.059500201000000 +0.285848884000000 0.987257090000000 0.009916700000000 +0.294178912000000 0.958697043000000 0.009916700000000 +0.272659672000000 0.963159508000000 0.079333602000000 +0.284212628000000 0.956366569000000 0.307417707000000 +0.304095612000000 0.917294770000000 0.267750906000000 +0.277618022000000 0.959936630000000 0.337167807000000 +0.282625956000000 0.984034212000000 0.168583904000000 +0.290906401000000 0.911195999000000 0.565251912000000 +0.287534723000000 0.962415805000000 0.049583501000000 +0.302508940000000 0.907576354000000 0.406584709000000 +0.304095612000000 0.917294770000000 0.168583904000000 +0.295765584000000 0.952151971000000 0.109083702000000 +0.304145196000000 0.914022259000000 0.099167002000000 +0.299137262000000 0.955523699000000 0.069416901000000 +0.292592240000000 0.949375295000000 0.109083702000000 +0.276031350000000 0.959986164000000 0.604918713000000 +0.287633890000000 0.968762444000000 0.138833803000000 +0.297501006000000 0.908815942000000 0.317334407000000 +0.279353445000000 0.938665259000000 0.049583501000000 +0.282675540000000 0.941293184000000 0.198334004000000 +0.295765584000000 0.952151971000000 0.119000403000000 +0.290906401000000 0.952697390000000 0.069416901000000 +0.299186845000000 0.905394779000000 0.079333602000000 +0.300872684000000 0.931574818000000 0.128917103000000 +0.297501006000000 0.932516954000000 0.128917103000000 +0.294129328000000 0.923294423000000 0.505751711000000 +0.279303862000000 0.956812820000000 0.089250302000000 +0.274345511000000 0.957110321000000 0.277667606000000 +0.290906401000000 0.933508575000000 0.069416901000000 +0.277618022000000 0.974811681000000 0.188417304000000 +0.302459357000000 0.928351891000000 0.069416901000000 +0.292592240000000 0.917294770000000 0.466084910000000 +0.281832620000000 0.942582405000000 0.277667606000000 +0.284361379000000 0.937971090000000 0.327251107000000 +0.272659672000000 0.957308705000000 0.386751308000000 +0.277717189000000 0.969010312000000 0.039666801000000 +0.280940117000000 0.929393144000000 0.515668411000000 +0.282625956000000 0.984034212000000 0.029750101000000 +0.298244759000000 0.923542241000000 0.317334407000000 +0.292592240000000 0.949375295000000 0.188417304000000 +0.299186845000000 0.905394779000000 0.565251912000000 +0.279353445000000 0.938665259000000 0.228084105000000 +0.283419292000000 0.939706512000000 0.079333602000000 +0.280840950000000 0.971787087000000 0.168583904000000 +0.277618022000000 0.974811681000000 0.396668009000000 +0.294129328000000 0.955821150000000 0.039666801000000 +0.289220562000000 0.952647806000000 0.099167002000000 +0.282625956000000 0.984034212000000 0.148750503000000 +0.290906401000000 0.936582752000000 0.366917908000000 +0.282675540000000 0.941293184000000 0.287584306000000 +0.294278079000000 0.968613743000000 0.029750101000000 +0.275981767000000 0.962911591000000 0.366917908000000 +0.296658087000000 0.921112699000000 0.327251107000000 +0.282576373000000 0.987058805000000 0.049583501000000 +0.289220562000000 0.943474858000000 0.188417304000000 +0.300823101000000 0.904799728000000 0.109083702000000 +0.300723934000000 0.915063512000000 0.436334809000000 +0.291005568000000 0.914567677000000 0.476001610000000 +0.287584306000000 0.940450265000000 0.218167405000000 +0.272659672000000 0.963159508000000 0.436334809000000 +0.286741387000000 0.945309398000000 0.000000000000000 +0.290906401000000 0.936582752000000 0.188417304000000 +0.286691803000000 0.942185687000000 0.337167807000000 +0.282675540000000 0.925971882000000 0.198334004000000 +0.284311795000000 0.978034559000000 0.000000000000000 +0.280940117000000 0.956614437000000 0.019833400000000 +0.285848884000000 0.987257090000000 0.158667203000000 +0.292542656000000 0.913476840000000 0.357001208000000 +0.272709256000000 0.966134568000000 0.396668009000000 +0.279353445000000 0.968911194000000 0.148750503000000 +0.297550590000000 0.928798192000000 0.297501006000000 +0.289170978000000 0.975009965000000 0.109083702000000 +0.277766773000000 0.950763633000000 0.218167405000000 +0.290906401000000 0.952697390000000 0.059500201000000 +0.289220562000000 0.943474858000000 0.168583904000000 +0.297600173000000 0.912633921000000 0.247917505000000 +0.284361379000000 0.981009618000000 0.079333602000000 +0.291005568000000 0.914567677000000 0.396668009000000 +0.287534723000000 0.962415805000000 0.267750906000000 +0.279204695000000 0.950813167000000 0.347084507000000 +0.295963918000000 0.913030589000000 0.128917103000000 +0.284262212000000 0.934847280000000 0.218167405000000 +0.285948051000000 0.931376484000000 0.317334407000000 +0.290955984000000 0.921013532000000 0.644585514000000 +0.300922268000000 0.911245583000000 0.228084105000000 +0.299137262000000 0.938863642000000 0.148750503000000 +0.292542656000000 0.945904450000000 0.109083702000000 +0.289121395000000 0.988000793000000 0.029750101000000 +0.295815167000000 0.945706116000000 0.178500604000000 +0.277568439000000 0.953837810000000 0.307417707000000 +0.289170978000000 0.978282476000000 0.039666801000000 +0.297501006000000 0.935591082000000 0.089250302000000 +0.275932183000000 0.954036144000000 0.406584709000000 +0.287534723000000 0.962415805000000 0.247917505000000 +0.289220562000000 0.952647806000000 0.178500604000000 +0.282576373000000 0.987058805000000 0.307417707000000 +0.285997634000000 0.925228180000000 0.039666801000000 +0.286741387000000 0.945309398000000 0.009916700000000 +0.297501006000000 0.932516954000000 0.218167405000000 +0.289170978000000 0.940202347000000 0.267750906000000 +0.282576373000000 0.974910798000000 0.039666801000000 +0.274444678000000 0.968960778000000 0.178500604000000 +0.287584306000000 0.934103577000000 0.307417707000000 +0.285154715000000 0.948333992000000 0.099167002000000 +0.284361379000000 0.940946100000000 0.247917505000000 +0.292592240000000 0.936384467000000 0.119000403000000 +0.280890534000000 0.974910798000000 0.327251107000000 +0.280940117000000 0.932268987000000 0.019833400000000 +0.281039284000000 0.950565349000000 0.416501409000000 +0.280890534000000 0.974910798000000 0.188417304000000 +0.294178912000000 0.958697043000000 0.119000403000000 +0.307318540000000 0.916402316000000 0.228084105000000 +0.279303862000000 0.977786641000000 0.138833803000000 +0.297501006000000 0.908815942000000 0.604918713000000 +0.289220562000000 0.952647806000000 0.297501006000000 +0.287683473000000 0.971687870000000 0.000000000000000 +0.277766773000000 0.950763633000000 0.337167807000000 +0.297550590000000 0.902717220000000 0.317334407000000 +0.279303862000000 0.956812820000000 0.545418512000000 +0.297501006000000 0.906287233000000 0.585085313000000 +0.302508940000000 0.904353476000000 0.446251510000000 +0.289220562000000 0.952647806000000 0.128917103000000 +0.295765584000000 0.942532772000000 0.138833803000000 +0.284212628000000 0.931872319000000 0.347084507000000 +0.302360190000000 0.914418927000000 0.009916700000000 +0.280890534000000 0.953639476000000 0.277667606000000 +0.297501006000000 0.908815942000000 0.366917908000000 +0.284212628000000 0.962564506000000 0.019833400000000 +0.285948051000000 0.928153557000000 0.059500201000000 +0.290856817000000 0.924087709000000 0.168583904000000 +0.285898467000000 0.962514923000000 0.148750503000000 +0.285898467000000 0.962514923000000 0.039666801000000 +0.282576373000000 0.947193621000000 0.178500604000000 +0.289270145000000 0.933954826000000 0.218167405000000 +0.275981767000000 0.962911591000000 0.178500604000000 +0.300773517000000 0.921608534000000 0.257834206000000 +0.292493073000000 0.942929440000000 0.228084105000000 +0.294030161000000 0.920121079000000 0.436334809000000 +0.292493073000000 0.904452643000000 0.386751308000000 +0.287683473000000 0.927806472000000 0.029750101000000 +0.284212628000000 0.931872319000000 0.247917505000000 +0.276080934000000 0.977538674000000 0.019833400000000 +0.272858006000000 0.960085331000000 0.545418512000000 +0.289270145000000 0.920666398000000 0.634668814000000 +0.280791367000000 0.962762840000000 0.119000403000000 +0.300872684000000 0.924881045000000 0.128917103000000 +0.277568439000000 0.953837810000000 0.029750101000000 +0.280840950000000 0.971787087000000 0.138833803000000 +0.295864751000000 0.906535150000000 0.059500201000000 +0.280890534000000 0.983885362000000 0.168583904000000 +0.285749717000000 0.953193274000000 0.000000000000000 +0.285997634000000 0.950069464000000 0.247917505000000 +0.287485139000000 0.943574025000000 0.277667606000000 +0.274494262000000 0.954333645000000 0.704085715000000 +0.285898467000000 0.940747766000000 0.327251107000000 +0.282675540000000 0.925971882000000 0.218167405000000 +0.292542656000000 0.920368947000000 0.168583904000000 +0.297501006000000 0.906287233000000 0.168583904000000 +0.300872684000000 0.901576800000000 0.039666801000000 +0.297600173000000 0.912633921000000 0.565251912000000 +0.282675540000000 0.941293184000000 0.188417304000000 +0.276080934000000 0.966084935000000 0.297501006000000 +0.282526789000000 0.977935392000000 0.218167405000000 +0.294228495000000 0.933111907000000 0.089250302000000 +0.279254278000000 0.959837414000000 0.168583904000000 +0.282675540000000 0.941293184000000 0.148750503000000 +0.292542656000000 0.913476840000000 0.386751308000000 +0.275981767000000 0.962911591000000 0.476001610000000 +0.276080934000000 0.951061134000000 0.178500604000000 +0.302508940000000 0.907576354000000 0.476001610000000 +0.275981767000000 0.974811681000000 0.158667203000000 +0.289220562000000 0.971886155000000 0.019833400000000 +0.290955984000000 0.946400285000000 0.297501006000000 +0.284262212000000 0.928153557000000 0.257834206000000 +0.294228495000000 0.907030935000000 0.733835816000000 +0.281039284000000 0.959936630000000 0.029750101000000 +0.272659672000000 0.963159508000000 0.416501409000000 +0.287584306000000 0.924831462000000 0.287584306000000 +0.292542656000000 0.920368947000000 0.228084105000000 +0.285997634000000 0.950069464000000 0.029750101000000 +0.285154715000000 0.948333992000000 0.247917505000000 +0.290807234000000 0.939954479000000 0.039666801000000 +0.302508940000000 0.931475651000000 0.109083702000000 +0.282625956000000 0.928798192000000 0.466084910000000 +0.292542656000000 0.923641458000000 0.426418109000000 +0.289319729000000 0.993851695000000 0.049583501000000 +0.281039284000000 0.941441935000000 0.307417707000000 +0.280940117000000 0.929393144000000 0.307417707000000 +0.275932183000000 0.954036144000000 0.059500201000000 +0.271866336000000 0.964349562000000 0.297501006000000 +0.274444678000000 0.971886155000000 0.198334004000000 +0.280840950000000 0.971787087000000 0.267750906000000 +0.295914334000000 0.909807711000000 0.188417304000000 +0.297600173000000 0.912633921000000 0.545418512000000 +0.282576373000000 0.987058805000000 0.059500201000000 +0.295765584000000 0.939210677000000 0.277667606000000 +0.284311795000000 0.996231704000000 0.198334004000000 +0.294278079000000 0.968613743000000 0.049583501000000 +0.289270145000000 0.927508971000000 0.009916700000000 +0.304194779000000 0.907526820000000 0.545418512000000 +0.294228495000000 0.907030935000000 0.525585111000000 +0.280890534000000 0.953639476000000 0.297501006000000 +0.295765584000000 0.955523699000000 0.059500201000000 +0.289170978000000 0.956069117000000 0.158667203000000 +0.282675540000000 0.925971882000000 0.317334407000000 +0.271866336000000 0.964349562000000 0.049583501000000 +0.305682284000000 0.920071446000000 0.277667606000000 +0.279353445000000 0.947491122000000 0.327251107000000 +0.280840950000000 0.947491122000000 0.337167807000000 +0.300823101000000 0.904799728000000 0.327251107000000 +0.274444678000000 0.968960778000000 0.109083702000000 +0.287683473000000 0.927806472000000 0.446251510000000 +0.285898467000000 0.962514923000000 0.287584306000000 +0.294129328000000 0.916798885000000 0.595002013000000 +0.290906401000000 0.933508575000000 0.426418109000000 +0.280890534000000 0.983885362000000 0.059500201000000 +0.286790970000000 0.948333992000000 0.099167002000000 +0.275981767000000 0.957060738000000 0.128917103000000 +0.274444678000000 0.971886155000000 0.327251107000000 +0.284311795000000 0.941045217000000 0.208250704000000 +0.292592240000000 0.933211123000000 0.366917908000000 +0.284262212000000 0.943970693000000 0.029750101000000 +0.282576373000000 0.987058805000000 0.317334407000000 +0.284212628000000 0.987058805000000 0.039666801000000 +0.284212628000000 0.931872319000000 0.366917908000000 +0.298343926000000 0.927112303000000 0.029750101000000 +0.285997634000000 0.925228180000000 0.476001610000000 +0.298244759000000 0.923542241000000 0.218167405000000 +0.280940117000000 0.929393144000000 0.624752113000000 +0.282675540000000 0.941293184000000 0.158667203000000 +0.285948051000000 0.934351494000000 0.238000805000000 +0.274395095000000 0.960134915000000 0.585085313000000 +0.284212628000000 0.999652965000000 0.148750503000000 +0.295716000000000 0.922897705000000 0.287584306000000 +0.287683473000000 0.927806472000000 0.416501409000000 +0.282725123000000 0.950366965000000 0.277667606000000 +0.284262212000000 0.928153557000000 0.317334407000000 +0.289270145000000 0.933954826000000 0.198334004000000 +0.279204695000000 0.950813167000000 0.466084910000000 +0.284262212000000 0.943970693000000 0.277667606000000 +0.282675540000000 0.931971536000000 0.525585111000000 +0.276080934000000 0.966084935000000 0.000000000000000 +0.300922268000000 0.911245583000000 0.466084910000000 +0.294030161000000 0.920121079000000 0.565251912000000 +0.304194779000000 0.907526820000000 0.515668411000000 +0.290955984000000 0.921013532000000 0.238000805000000 +0.302459357000000 0.928351891000000 0.019833400000000 +0.289220562000000 0.924385161000000 0.565251912000000 +0.297550590000000 0.948780343000000 0.089250302000000 +0.302508940000000 0.917790654000000 0.168583904000000 +0.281882204000000 0.948978627000000 0.119000403000000 +0.286096801000000 0.990232149000000 0.109083702000000 +0.282625956000000 0.928798192000000 0.109083702000000 +0.292592240000000 0.917294770000000 0.109083702000000 +0.279353445000000 0.965836968000000 0.168583904000000 +0.289270145000000 0.968663277000000 0.099167002000000 +0.281039284000000 0.992909609000000 0.059500201000000 +0.284311795000000 0.947044870000000 0.287584306000000 +0.277568439000000 0.953837810000000 0.595002013000000 +0.302459357000000 0.928351891000000 0.287584306000000 +0.277568439000000 0.953837810000000 0.059500201000000 +0.295914334000000 0.909807711000000 0.099167002000000 +0.300872684000000 0.901576800000000 0.049583501000000 +0.281039284000000 0.980811235000000 0.188417304000000 +0.277717189000000 0.969010312000000 0.297501006000000 +0.292592240000000 0.936384467000000 0.228084105000000 +0.299137262000000 0.941888236000000 0.079333602000000 +0.275981767000000 0.957060738000000 0.168583904000000 +0.286790970000000 0.948333992000000 0.029750101000000 +0.283419292000000 0.945557365000000 0.247917505000000 +0.292542656000000 0.907576354000000 0.168583904000000 +0.274345511000000 0.966134568000000 0.148750503000000 +0.274345511000000 0.966134568000000 0.188417304000000 +0.296707670000000 0.924286043000000 0.257834206000000 +0.287633890000000 0.946747369000000 0.257834206000000 +0.282625956000000 0.929046060000000 0.049583501000000 +0.292493073000000 0.904452643000000 0.396668009000000 +0.300823101000000 0.904799728000000 0.694169015000000 +0.276080934000000 0.971687870000000 0.218167405000000 +0.290906401000000 0.959044078000000 0.099167002000000 +0.292592240000000 0.917294770000000 0.386751308000000 +0.280791367000000 0.962762840000000 0.188417304000000 +0.302508940000000 0.907576354000000 0.505751711000000 +0.292493073000000 0.942929440000000 0.148750503000000 +0.280940117000000 0.929393144000000 0.664418914000000 +0.298294342000000 0.920468114000000 0.466084910000000 +0.279353445000000 0.947491122000000 0.555335212000000 +0.295021831000000 0.924682761000000 0.357001208000000 +0.287633890000000 0.946747369000000 0.168583904000000 +0.294278079000000 0.912435587000000 0.535501812000000 +0.292592240000000 0.933211123000000 0.009916700000000 +0.284311795000000 0.925575214000000 0.158667203000000 +0.289270145000000 0.927508971000000 0.049583501000000 +0.290955984000000 0.946400285000000 0.099167002000000 +0.274295928000000 0.963010758000000 0.337167807000000 +0.287534723000000 0.962415805000000 0.109083702000000 +0.282725123000000 0.965836968000000 0.198334004000000 +0.290955984000000 0.968613743000000 0.079333602000000 +0.285997634000000 0.965638683000000 0.000000000000000 +0.305731868000000 0.923641458000000 0.148750503000000 +0.284262212000000 0.943970693000000 0.247917505000000 +0.280890534000000 0.983885362000000 0.099167002000000 +0.289170978000000 0.940202347000000 0.357001208000000 +0.275981767000000 0.957060738000000 0.099167002000000 +0.300823101000000 0.918236856000000 0.208250704000000 +0.295914334000000 0.909807711000000 0.178500604000000 +0.272758839000000 0.968861561000000 0.049583501000000 +0.277618022000000 0.959936630000000 0.386751308000000 +0.286691803000000 0.939111461000000 0.297501006000000 +0.296707670000000 0.924286043000000 0.307417707000000 +0.289270145000000 0.933954826000000 0.039666801000000 +0.279303862000000 0.983835828000000 0.119000403000000 +0.276031350000000 0.959986164000000 0.297501006000000 +0.277568439000000 0.953837810000000 0.277667606000000 +0.294228495000000 0.907030935000000 0.039666801000000 +0.277618022000000 0.957060738000000 0.119000403000000 +0.282625956000000 0.938070257000000 0.267750906000000 +0.282625956000000 0.928798192000000 0.178500604000000 +0.304145196000000 0.914022259000000 0.178500604000000 +0.284212628000000 0.983488793000000 0.089250302000000 +0.287633890000000 0.937128170000000 0.267750906000000 +0.296707670000000 0.924286043000000 0.456168210000000 +0.290906401000000 0.936582752000000 0.128917103000000 +0.274395095000000 0.960134915000000 0.287584306000000 +0.300872684000000 0.901576800000000 0.545418512000000 +0.285898467000000 0.996330871000000 0.138833803000000 +0.282625956000000 0.929046060000000 0.267750906000000 +0.287485139000000 0.943574025000000 0.247917505000000 +0.299236429000000 0.931822686000000 0.000000000000000 +0.298294342000000 0.920468114000000 0.297501006000000 +0.290955984000000 0.946400285000000 0.000000000000000 +0.292592240000000 0.933211123000000 0.119000403000000 +0.279303862000000 0.983835828000000 0.178500604000000 +0.279799697000000 0.944565695000000 0.089250302000000 +0.298294342000000 0.920468114000000 0.069416901000000 +0.292493073000000 0.926963553000000 0.198334004000000 +0.286096801000000 0.990232149000000 0.188417304000000 +0.289270145000000 0.968663277000000 0.029750101000000 +0.297501006000000 0.919278060000000 0.277667606000000 +0.275981767000000 0.962911591000000 0.535501812000000 +0.294228495000000 0.907030935000000 0.307417707000000 +0.305731868000000 0.910055529000000 0.287584306000000 +0.291005568000000 0.914567677000000 0.595002013000000 +0.285898467000000 0.940747766000000 0.287584306000000 +0.285898467000000 0.940747766000000 0.049583501000000 +0.283419292000000 0.945557365000000 0.168583904000000 +0.290906401000000 0.952697390000000 0.168583904000000 +0.287633890000000 0.946747369000000 0.247917505000000 +0.289220562000000 0.971886155000000 0.138833803000000 +0.284311795000000 0.978034559000000 0.188417304000000 +0.300922268000000 0.911245583000000 0.386751308000000 +0.277568439000000 0.953837810000000 0.515668411000000 +0.292542656000000 0.923641458000000 0.535501812000000 +0.285948051000000 0.931376484000000 0.059500201000000 +0.282675540000000 0.968861561000000 0.238000805000000 +0.299286012000000 0.912138135000000 0.565251912000000 +0.298294342000000 0.920468114000000 0.198334004000000 +0.282675540000000 0.925971882000000 0.555335212000000 +0.281039284000000 0.992909609000000 0.138833803000000 +0.299137262000000 0.918633524000000 0.485918310000000 +0.287633890000000 0.937128170000000 0.059500201000000 +0.303996445000000 0.924236410000000 0.119000403000000 +0.289270145000000 0.920666398000000 0.000000000000000 +0.284212628000000 0.962564506000000 0.009916700000000 +0.272758839000000 0.968861561000000 0.069416901000000 +0.292592240000000 0.936384467000000 0.109083702000000 +0.285948051000000 0.937425671000000 0.307417707000000 +0.302508940000000 0.917790654000000 0.039666801000000 +0.277667606000000 0.965985817000000 0.337167807000000 +0.272659672000000 0.963159508000000 0.347084507000000 +0.297600173000000 0.912633921000000 0.525585111000000 +0.287633890000000 0.978084093000000 0.029750101000000 +0.299137262000000 0.938863642000000 0.000000000000000 +0.284311795000000 0.941045217000000 0.119000403000000 +0.285948051000000 0.978133726000000 0.208250704000000 +0.300922268000000 0.911245583000000 0.109083702000000 +0.285898467000000 0.946995337000000 0.049583501000000 +0.280940117000000 0.956614437000000 0.168583904000000 +0.277568439000000 0.953837810000000 0.148750503000000 +0.277618022000000 0.957060738000000 0.456168210000000 +0.289270145000000 0.920666398000000 0.267750906000000 +0.281832620000000 0.939706512000000 0.148750503000000 +0.284311795000000 0.925575214000000 0.307417707000000 +0.279799697000000 0.944565695000000 0.029750101000000 +0.279204695000000 0.950813167000000 0.277667606000000 +0.287633890000000 0.965886601000000 0.059500201000000 +0.297501006000000 0.906287233000000 0.654502214000000 +0.290807234000000 0.962267055000000 0.148750503000000 +0.284212628000000 0.987058805000000 0.247917505000000 +0.275981767000000 0.957060738000000 0.604918713000000 +0.295864751000000 0.929293977000000 0.277667606000000 +0.284212628000000 0.956366569000000 0.019833400000000 +0.277766773000000 0.950763633000000 0.178500604000000 +0.287485139000000 0.952895674000000 0.228084105000000 +0.297550590000000 0.902717220000000 0.406584709000000 +0.294228495000000 0.933111907000000 0.188417304000000 +0.282675540000000 0.925971882000000 0.357001208000000 +0.295914334000000 0.948929043000000 0.029750101000000 +0.289220562000000 0.946499452000000 0.039666801000000 +0.274494262000000 0.954333645000000 0.595002013000000 +0.287534723000000 0.956118651000000 0.000000000000000 +0.284311795000000 0.990132933000000 0.198334004000000 +0.304194779000000 0.907526820000000 0.079333602000000 +0.292542656000000 0.920368947000000 0.128917103000000 +0.281039284000000 0.950565349000000 0.247917505000000 +0.285997634000000 0.981108736000000 0.188417304000000 +0.282675540000000 0.993058359000000 0.158667203000000 +0.305731868000000 0.923641458000000 0.158667203000000 +0.300773517000000 0.921608534000000 0.099167002000000 +0.295716000000000 0.922897705000000 0.188417304000000 +0.277618022000000 0.959936630000000 0.228084105000000 +0.290906401000000 0.933508575000000 0.446251510000000 +0.280989701000000 0.935343164000000 0.168583904000000 +0.304095612000000 0.922104369000000 0.257834206000000 +0.276031350000000 0.959986164000000 0.228084105000000 +0.300823101000000 0.934996129000000 0.307417707000000 +0.302508940000000 0.924980212000000 0.069416901000000 +0.291005568000000 0.914567677000000 0.505751711000000 +0.282675540000000 0.941293184000000 0.138833803000000 +0.280840950000000 0.971787087000000 0.238000805000000 +0.297501006000000 0.906287233000000 0.476001610000000 +0.295864751000000 0.929293977000000 0.327251107000000 +0.275932183000000 0.954036144000000 0.267750906000000 +0.295963918000000 0.932616072000000 0.069416901000000 +0.289270145000000 0.930831066000000 0.000000000000000 +0.298244759000000 0.923542241000000 0.029750101000000 +0.272709256000000 0.966134568000000 0.119000403000000 +0.307268956000000 0.923492707000000 0.257834206000000 +0.299286012000000 0.912138135000000 0.247917505000000 +0.299137262000000 0.918633524000000 0.099167002000000 +0.285997634000000 0.925228180000000 0.585085313000000 +0.285997634000000 0.925228180000000 0.317334407000000 +0.280791367000000 0.962762840000000 0.000000000000000 +0.294129328000000 0.923294423000000 0.485918310000000 +0.302360190000000 0.914418927000000 0.099167002000000 +0.292493073000000 0.904452643000000 0.168583904000000 +0.290856817000000 0.943177357000000 0.128917103000000 +0.279204695000000 0.950813167000000 0.178500604000000 +0.294228495000000 0.907030935000000 0.228084105000000 +0.294327662000000 0.910353129000000 0.238000805000000 +0.290906401000000 0.927211470000000 0.347084507000000 +0.290807234000000 0.939954479000000 0.267750906000000 +0.274295928000000 0.963010758000000 0.218167405000000 +0.302409773000000 0.934847280000000 0.138833803000000 +0.295864751000000 0.906535150000000 0.813169418000000 +0.277618022000000 0.957060738000000 0.228084105000000 +0.290807234000000 0.939954479000000 0.218167405000000 +0.285749717000000 0.953193274000000 0.267750906000000 +0.294129328000000 0.971836621000000 0.059500201000000 +0.298244759000000 0.923542241000000 0.099167002000000 +0.279353445000000 0.938665259000000 0.525585111000000 +0.277618022000000 0.971985371000000 0.366917908000000 +0.299137262000000 0.938863642000000 0.009916700000000 +0.294178912000000 0.942929440000000 0.009916700000000 +0.285997634000000 0.968762444000000 0.247917505000000 +0.290856817000000 0.924087709000000 0.366917908000000 +0.290906401000000 0.911195999000000 0.297501006000000 +0.279254278000000 0.962961224000000 0.406584709000000 +0.292493073000000 0.955821150000000 0.089250302000000 +0.299137262000000 0.938863642000000 0.228084105000000 +0.302508940000000 0.924980212000000 0.148750503000000 +0.287584306000000 0.934103577000000 0.168583904000000 +0.305682284000000 0.920071446000000 0.247917505000000 +0.297501006000000 0.906287233000000 0.456168210000000 +0.300723934000000 0.915063512000000 0.267750906000000 +0.289220562000000 0.971886155000000 0.178500604000000 +0.304145196000000 0.914022259000000 0.138833803000000 +0.297501006000000 0.919278060000000 0.267750906000000 +0.287485139000000 0.952895674000000 0.000000000000000 +0.282576373000000 0.996033369000000 0.009916700000000 +0.285105131000000 0.942185687000000 0.089250302000000 +0.289270145000000 0.920666398000000 0.317334407000000 +0.285848884000000 0.943772359000000 0.208250704000000 +0.287633890000000 0.937128170000000 0.049583501000000 +0.279204695000000 0.950813167000000 0.485918310000000 +0.287584306000000 0.934103577000000 0.069416901000000 +0.282526789000000 0.977935392000000 0.019833400000000 +0.280890534000000 0.983885362000000 0.198334004000000 +0.280940117000000 0.986810838000000 0.267750906000000 +0.277717189000000 0.969010312000000 0.218167405000000 +0.292344322000000 0.972034905000000 0.099167002000000 +0.297401839000000 0.922501037000000 0.277667606000000 +0.284212628000000 0.983488793000000 0.218167405000000 +0.295963918000000 0.913030589000000 0.416501409000000 +0.282625956000000 0.962713257000000 0.188417304000000 +0.295021831000000 0.924682761000000 0.039666801000000 +0.295914334000000 0.909807711000000 0.039666801000000 +0.285898467000000 0.946995337000000 0.297501006000000 +0.275981767000000 0.957060738000000 0.495835011000000 +0.305880618000000 0.913427257000000 0.436334809000000 +0.280989701000000 0.935343164000000 0.198334004000000 +0.282625956000000 0.938070257000000 0.168583904000000 +0.294228495000000 0.952350355000000 0.099167002000000 +0.284262212000000 0.965737850000000 0.039666801000000 +0.289270145000000 0.949722330000000 0.039666801000000 +0.280940117000000 0.956614437000000 0.376834608000000 +0.280940117000000 0.932268987000000 0.555335212000000 +0.290856817000000 0.924087709000000 0.049583501000000 +0.279204695000000 0.950813167000000 0.119000403000000 +0.292542656000000 0.920368947000000 0.386751308000000 +0.274395095000000 0.974662930000000 0.119000403000000 +0.287683473000000 0.927806472000000 0.168583904000000 +0.276080934000000 0.966084935000000 0.446251510000000 +0.294129328000000 0.955821150000000 0.019833400000000 +0.284262212000000 0.943970693000000 0.000000000000000 +0.285997634000000 0.971787087000000 0.178500604000000 +0.290906401000000 0.952697390000000 0.119000403000000 +0.298343926000000 0.927112303000000 0.119000403000000 +0.300723934000000 0.915063512000000 0.277667606000000 +0.283419292000000 0.945557365000000 0.297501006000000 +0.297501006000000 0.908815942000000 0.218167405000000 +0.290955984000000 0.921013532000000 0.466084910000000 +0.282725123000000 0.950366965000000 0.138833803000000 +0.272659672000000 0.957308705000000 0.109083702000000 +0.289170978000000 0.940202347000000 0.168583904000000 +0.282725123000000 0.950366965000000 0.059500201000000 +0.302508940000000 0.931475651000000 0.218167405000000 +0.292493073000000 0.942929440000000 0.287584306000000 +0.274345511000000 0.966134568000000 0.029750101000000 +0.289170978000000 0.978282476000000 0.000000000000000 +0.287584306000000 0.934103577000000 0.347084507000000 +0.299137262000000 0.908815942000000 0.198334004000000 +0.300922268000000 0.908220989000000 0.565251912000000 +0.274395095000000 0.960134915000000 0.188417304000000 +0.279254278000000 0.959837414000000 0.337167807000000 +0.300723934000000 0.915063512000000 0.366917908000000 +0.300823101000000 0.904799728000000 0.128917103000000 +0.294129328000000 0.939508178000000 0.257834206000000 +0.285997634000000 0.981108736000000 0.049583501000000 +0.282576373000000 0.947193621000000 0.386751308000000 +0.283468876000000 0.948929043000000 0.158667203000000 +0.294178912000000 0.936285251000000 0.158667203000000 +0.287584306000000 0.924831462000000 0.337167807000000 +0.274444678000000 0.971886155000000 0.128917103000000 +0.295914334000000 0.935888583000000 0.079333602000000 +0.297451423000000 0.942235271000000 0.049583501000000 +0.292592240000000 0.933211123000000 0.168583904000000 +0.294178912000000 0.958697043000000 0.069416901000000 +0.290906401000000 0.911195999000000 0.128917103000000 +0.281039284000000 0.965787434000000 0.337167807000000 +0.296707670000000 0.924286043000000 0.109083702000000 +0.287683473000000 0.927806472000000 0.148750503000000 +0.285948051000000 0.934351494000000 0.357001208000000 +0.283419292000000 0.945557365000000 0.019833400000000 +0.300872684000000 0.901576800000000 0.178500604000000 +0.289121395000000 0.988000793000000 0.009916700000000 +0.304095612000000 0.910948082000000 0.178500604000000 +0.287534723000000 0.956118651000000 0.297501006000000 +0.295914334000000 0.925922349000000 0.208250704000000 +0.299186845000000 0.905394779000000 0.406584709000000 +0.294030161000000 0.920121079000000 0.238000805000000 +0.304095612000000 0.917294770000000 0.079333602000000 +0.272659672000000 0.957308705000000 0.604918713000000 +0.290955984000000 0.968613743000000 0.089250302000000 +0.285105131000000 0.942185687000000 0.208250704000000 +0.279204695000000 0.950813167000000 0.604918713000000 +0.295021831000000 0.927806472000000 0.347084507000000 +0.274494262000000 0.954333645000000 0.555335212000000 +0.292592240000000 0.917294770000000 0.505751711000000 +0.290807234000000 0.962267055000000 0.128917103000000 +0.302508940000000 0.904353476000000 0.188417304000000 +0.290906401000000 0.908022655000000 0.525585111000000 +0.299186845000000 0.905394779000000 0.188417304000000 +0.294327662000000 0.910353129000000 0.158667203000000 +0.292542656000000 0.923641458000000 0.396668009000000 +0.302508940000000 0.907576354000000 0.396668009000000 +0.292592240000000 0.952598223000000 0.099167002000000 +0.287584306000000 0.934103577000000 0.416501409000000 +0.285997634000000 0.965638683000000 0.228084105000000 +0.285898467000000 0.996330871000000 0.089250302000000 +0.287534723000000 0.956118651000000 0.287584306000000 +0.285848884000000 0.983984579000000 0.247917505000000 +0.297501006000000 0.908815942000000 0.376834608000000 +0.289270145000000 0.927508971000000 0.337167807000000 +0.272659672000000 0.957308705000000 0.247917505000000 +0.277717189000000 0.969010312000000 0.069416901000000 +0.297401839000000 0.922501037000000 0.307417707000000 +0.279353445000000 0.947491122000000 0.198334004000000 +0.277618022000000 0.959936630000000 0.555335212000000 +0.300922268000000 0.908220989000000 0.614835413000000 +0.294278079000000 0.945805283000000 0.228084105000000 +0.289270145000000 0.933954826000000 0.089250302000000 +0.289170978000000 0.940202347000000 0.000000000000000 +0.285749717000000 0.953193274000000 0.049583501000000 +0.272659672000000 0.963159508000000 0.476001610000000 +0.294129328000000 0.916798885000000 0.337167807000000 +0.292493073000000 0.959044078000000 0.019833400000000 +0.280890534000000 0.983885362000000 0.138833803000000 +0.279353445000000 0.965836968000000 0.267750906000000 +0.274395095000000 0.960134915000000 0.614835413000000 +0.280890534000000 0.974910798000000 0.099167002000000 +0.281882204000000 0.948978627000000 0.337167807000000 +0.284361379000000 0.981009618000000 0.198334004000000 +0.281039284000000 0.950565349000000 0.317334407000000 +0.292493073000000 0.926963553000000 0.456168210000000 +0.297550590000000 0.902717220000000 0.168583904000000 +0.304145196000000 0.914022259000000 0.426418109000000 +0.289270145000000 0.930831066000000 0.218167405000000 +0.284311795000000 0.993355860000000 0.109083702000000 +0.294278079000000 0.945805283000000 0.158667203000000 +0.281039284000000 0.938516508000000 0.386751308000000 +0.294129328000000 0.923294423000000 0.257834206000000 +0.297550590000000 0.916104716000000 0.525585111000000 +0.274494262000000 0.954333645000000 0.000000000000000 +0.287534723000000 0.962415805000000 0.188417304000000 +0.285948051000000 0.928153557000000 0.505751711000000 +0.300872684000000 0.901576800000000 0.714002415000000 +0.279353445000000 0.980712018000000 0.089250302000000 +0.280890534000000 0.974910798000000 0.158667203000000 +0.294278079000000 0.912435587000000 0.575168612000000 +0.292592240000000 0.936384467000000 0.347084507000000 +0.272709256000000 0.966134568000000 0.069416901000000 +0.303996445000000 0.924236410000000 0.287584306000000 +0.272659672000000 0.957308705000000 0.495835011000000 +0.285948051000000 0.978133726000000 0.009916700000000 +0.282675540000000 0.931971536000000 0.436334809000000 +0.284311795000000 0.941045217000000 0.228084105000000 +0.271866336000000 0.964349562000000 0.704085715000000 +0.284163045000000 0.959490280000000 0.208250704000000 +0.281832620000000 0.939706512000000 0.009916700000000 +0.300773517000000 0.928351891000000 0.000000000000000 +0.302508940000000 0.907576354000000 0.079333602000000 +0.285105131000000 0.945408615000000 0.188417304000000 +0.282725123000000 0.950366965000000 0.218167405000000 +0.280989701000000 0.944565695000000 0.327251107000000 +0.296757254000000 0.927806472000000 0.009916700000000 +0.277717189000000 0.980612901000000 0.198334004000000 +0.282675540000000 0.968861561000000 0.277667606000000 +0.285848884000000 0.943772359000000 0.029750101000000 +0.286691803000000 0.942185687000000 0.188417304000000 +0.296757254000000 0.927806472000000 0.366917908000000 +0.290906401000000 0.927211470000000 0.128917103000000 +0.271122584000000 0.966134568000000 0.119000403000000 +0.285948051000000 0.934351494000000 0.267750906000000 +0.277618022000000 0.959936630000000 0.406584709000000 +0.295815167000000 0.916947636000000 0.099167002000000 +0.287584306000000 0.924831462000000 0.466084910000000 +0.294129328000000 0.916798885000000 0.624752113000000 +0.305731868000000 0.910055529000000 0.357001208000000 +0.285948051000000 0.937425671000000 0.000000000000000 +0.292542656000000 0.920368947000000 0.515668411000000 +0.282675540000000 0.941293184000000 0.178500604000000 +0.282675540000000 0.925971882000000 0.099167002000000 +0.289270145000000 0.920666398000000 0.674335615000000 +0.274345511000000 0.957110321000000 0.386751308000000 +0.284361379000000 0.940946100000000 0.148750503000000 +0.299186845000000 0.935491915000000 0.218167405000000 +0.295963918000000 0.913030589000000 0.446251510000000 +0.302360190000000 0.914418927000000 0.238000805000000 +0.290856817000000 0.955870734000000 0.019833400000000 +0.279303862000000 0.941789019000000 0.376834608000000 +0.296658087000000 0.921112699000000 0.247917505000000 +0.289319729000000 0.965985817000000 0.009916700000000 +0.289270145000000 0.920666398000000 0.852836218000000 +0.303996445000000 0.924236410000000 0.198334004000000 +0.297600173000000 0.912633921000000 0.049583501000000 +0.295864751000000 0.906535150000000 0.634668814000000 +0.285948051000000 0.934351494000000 0.208250704000000 +0.287584306000000 0.924831462000000 0.267750906000000 +0.289270145000000 0.933954826000000 0.366917908000000 +0.307516874000000 0.919922695000000 0.257834206000000 +0.287584306000000 0.940450265000000 0.039666801000000 +0.282625956000000 0.938070257000000 0.257834206000000 +0.276080934000000 0.966084935000000 0.218167405000000 +0.295765584000000 0.920170613000000 0.317334407000000 +0.290906401000000 0.911195999000000 0.317334407000000 +0.307516874000000 0.919922695000000 0.009916700000000 +0.300922268000000 0.908220989000000 0.297501006000000 +0.295914334000000 0.935888583000000 0.049583501000000 +0.295963918000000 0.913030589000000 0.555335212000000 +0.290906401000000 0.952697390000000 0.208250704000000 +0.284262212000000 0.943970693000000 0.069416901000000 +0.282625956000000 0.929046060000000 0.466084910000000 +0.297550590000000 0.916104716000000 0.267750906000000 +0.292592240000000 0.936384467000000 0.128917103000000 +0.304095612000000 0.917294770000000 0.307417707000000 +0.287633890000000 0.930831066000000 0.357001208000000 +0.285749717000000 0.953193274000000 0.247917505000000 +0.289319729000000 0.937029003000000 0.317334407000000 +0.295765584000000 0.920170613000000 0.555335212000000 +0.284311795000000 0.968762444000000 0.109083702000000 +0.272858006000000 0.960085331000000 0.099167002000000 +0.295021831000000 0.924682761000000 0.456168210000000 +0.290856817000000 0.943177357000000 0.277667606000000 +0.282675540000000 0.925971882000000 0.049583501000000 +0.282576373000000 0.947193621000000 0.238000805000000 +0.277717189000000 0.980612901000000 0.009916700000000 +0.285948051000000 0.934351494000000 0.466084910000000 +0.300872684000000 0.924881045000000 0.039666801000000 +0.271866336000000 0.964349562000000 0.178500604000000 +0.284311795000000 0.990132933000000 0.099167002000000 +0.285997634000000 0.965638683000000 0.079333602000000 +0.279353445000000 0.968911194000000 0.198334004000000 +0.279353445000000 0.938665259000000 0.158667203000000 +0.307417707000000 0.913328090000000 0.376834608000000 +0.282675540000000 0.925971882000000 0.059500201000000 +0.284262212000000 0.934847280000000 0.178500604000000 +0.284212628000000 0.983488793000000 0.238000805000000 +0.285997634000000 0.965638683000000 0.109083702000000 +0.275981767000000 0.962911591000000 0.307417707000000 +0.281832620000000 0.945656532000000 0.257834206000000 +0.277568439000000 0.953837810000000 0.406584709000000 +0.279204695000000 0.953639476000000 0.198334004000000 +0.282725123000000 0.965836968000000 0.079333602000000 +0.272659672000000 0.957308705000000 0.644585514000000 +0.300922268000000 0.908220989000000 0.545418512000000 +0.280940117000000 0.986810838000000 0.148750503000000 +0.286096801000000 0.990232149000000 0.079333602000000 +0.296658087000000 0.921112699000000 0.109083702000000 +0.297501006000000 0.908815942000000 0.585085313000000 +0.277618022000000 0.959936630000000 0.009916700000000 +0.302508940000000 0.904353476000000 0.069416901000000 +0.300773517000000 0.921608534000000 0.228084105000000 +0.294228495000000 0.952350355000000 0.039666801000000 +0.295914334000000 0.909807711000000 0.317334407000000 +0.290856817000000 0.930335231000000 0.456168210000000 +0.296757254000000 0.927806472000000 0.079333602000000 +0.272858006000000 0.960085331000000 0.059500201000000 +0.282675540000000 0.968861561000000 0.208250704000000 +0.281039284000000 0.950565349000000 0.485918310000000 +0.280890534000000 0.953639476000000 0.059500201000000 +0.305731868000000 0.910055529000000 0.386751308000000 +0.281039284000000 0.959936630000000 0.317334407000000 +0.302508940000000 0.917790654000000 0.357001208000000 +0.285898467000000 0.946995337000000 0.238000805000000 +0.287584306000000 0.940450265000000 0.327251107000000 +0.280890534000000 0.974910798000000 0.307417707000000 +0.292592240000000 0.936384467000000 0.357001208000000 +0.285848884000000 0.943772359000000 0.188417304000000 +0.296707670000000 0.924286043000000 0.000000000000000 +0.277618022000000 0.963010758000000 0.099167002000000 +0.290906401000000 0.936582752000000 0.347084507000000 +0.283419292000000 0.945557365000000 0.049583501000000 +0.284212628000000 0.987058805000000 0.238000805000000 +0.289270145000000 0.933954826000000 0.376834608000000 +0.296757254000000 0.927806472000000 0.138833803000000 +0.286096801000000 0.990232149000000 0.019833400000000 +0.287633890000000 0.965886601000000 0.198334004000000 +0.294278079000000 0.945805283000000 0.109083702000000 +0.272858006000000 0.960085331000000 0.476001610000000 +0.295914334000000 0.909807711000000 0.525585111000000 +0.282576373000000 0.959688663000000 0.148750503000000 +0.285898467000000 0.959391212000000 0.069416901000000 +0.284212628000000 0.987058805000000 0.019833400000000 +0.275981767000000 0.962911591000000 0.000000000000000 +0.287633890000000 0.930831066000000 0.128917103000000 +0.285898467000000 0.946995337000000 0.119000403000000 +0.284311795000000 0.947044870000000 0.029750101000000 +0.284212628000000 0.931872319000000 0.208250704000000 +0.295864751000000 0.906535150000000 0.485918310000000 +0.285997634000000 0.971787087000000 0.059500201000000 +0.302508940000000 0.904353476000000 0.049583501000000 +0.279303862000000 0.983835828000000 0.109083702000000 +0.290906401000000 0.908022655000000 0.138833803000000 +0.279353445000000 0.947491122000000 0.585085313000000 +0.284262212000000 0.928153557000000 0.000000000000000 +0.283468876000000 0.948929043000000 0.297501006000000 +0.274295928000000 0.963010758000000 0.555335212000000 +0.294129328000000 0.923294423000000 0.446251510000000 +0.302360190000000 0.914418927000000 0.079333602000000 +0.294178912000000 0.942929440000000 0.168583904000000 +0.285898467000000 0.940747766000000 0.059500201000000 +0.302360190000000 0.914418927000000 0.307417707000000 +0.290856817000000 0.955870734000000 0.188417304000000 +0.271866336000000 0.964349562000000 0.485918310000000 +0.295963918000000 0.932616072000000 0.009916700000000 +0.281832620000000 0.945656532000000 0.119000403000000 +0.280940117000000 0.929393144000000 0.357001208000000 +0.285997634000000 0.981108736000000 0.029750101000000 +0.287633890000000 0.968762444000000 0.019833400000000 +0.279254278000000 0.962961224000000 0.208250704000000 +0.284262212000000 0.928153557000000 0.406584709000000 +0.294178912000000 0.926517301000000 0.079333602000000 +0.282625956000000 0.956515319000000 0.049583501000000 +0.299137262000000 0.915311479000000 0.049583501000000 +0.277618022000000 0.959936630000000 0.109083702000000 +0.274345511000000 0.957110321000000 0.396668009000000 +0.274444678000000 0.968960778000000 0.436334809000000 +0.292493073000000 0.942929440000000 0.257834206000000 +0.276080934000000 0.977538674000000 0.039666801000000 +0.287683473000000 0.927806472000000 0.297501006000000 +0.279204695000000 0.953639476000000 0.604918713000000 +0.295963918000000 0.913030589000000 0.535501812000000 +0.277667606000000 0.965985817000000 0.158667203000000 +0.292542656000000 0.920368947000000 0.347084507000000 +0.294278079000000 0.945805283000000 0.198334004000000 +0.292542656000000 0.913476840000000 0.168583904000000 +0.271866336000000 0.964349562000000 0.595002013000000 +0.304194779000000 0.907526820000000 0.198334004000000 +0.287534723000000 0.956118651000000 0.138833803000000 +0.292493073000000 0.926963553000000 0.079333602000000 +0.281039284000000 0.950565349000000 0.287584306000000 +0.290807234000000 0.939954479000000 0.247917505000000 +0.284311795000000 0.925575214000000 0.099167002000000 +0.294228495000000 0.929591478000000 0.158667203000000 +0.284262212000000 0.971737454000000 0.178500604000000 +0.292493073000000 0.904452643000000 0.208250704000000 +0.295914334000000 0.948929043000000 0.039666801000000 +0.276031350000000 0.959986164000000 0.257834206000000 +0.290955984000000 0.968613743000000 0.168583904000000 +0.297501006000000 0.932516954000000 0.069416901000000 +0.297550590000000 0.916104716000000 0.059500201000000 +0.290906401000000 0.911195999000000 0.644585514000000 +0.281832620000000 0.939706512000000 0.257834206000000 +0.292542656000000 0.913476840000000 0.198334004000000 +0.280989701000000 0.944565695000000 0.000000000000000 +0.303996445000000 0.924236410000000 0.059500201000000 +0.297501006000000 0.906287233000000 0.614835413000000 +0.299087678000000 0.921806868000000 0.426418109000000 +0.276080934000000 0.971687870000000 0.396668009000000 +0.280890534000000 0.953639476000000 0.287584306000000 +0.279204695000000 0.953639476000000 0.436334809000000 +0.277766773000000 0.950763633000000 0.357001208000000 +0.300872684000000 0.931574818000000 0.158667203000000 +0.290906401000000 0.933508575000000 0.267750906000000 +0.290856817000000 0.924087709000000 0.099167002000000 +0.280890534000000 0.977786641000000 0.039666801000000 +0.284262212000000 0.934847280000000 0.119000403000000 +0.307318540000000 0.916402316000000 0.019833400000000 +0.279353445000000 0.980712018000000 0.109083702000000 +0.290955984000000 0.921013532000000 0.247917505000000 +0.279303862000000 0.977786641000000 0.297501006000000 +0.271866336000000 0.964349562000000 0.406584709000000 +0.286691803000000 0.942185687000000 0.267750906000000 +0.284311795000000 0.925575214000000 0.476001610000000 +0.281832620000000 0.945656532000000 0.386751308000000 +0.281039284000000 0.959936630000000 0.039666801000000 +0.302459357000000 0.928351891000000 0.158667203000000 +0.299137262000000 0.908815942000000 0.595002013000000 +0.272659672000000 0.963159508000000 0.238000805000000 +0.304095612000000 0.910948082000000 0.029750101000000 +0.290906401000000 0.927211470000000 0.009916700000000 +0.284212628000000 0.987058805000000 0.287584306000000 +0.279303862000000 0.974811681000000 0.019833400000000 +0.290856817000000 0.955870734000000 0.069416901000000 +0.305880618000000 0.917046852000000 0.158667203000000 +0.284361379000000 0.937971090000000 0.019833400000000 +0.285948051000000 0.993405494000000 0.099167002000000 +0.280890534000000 0.983885362000000 0.347084507000000 +0.286741387000000 0.945309398000000 0.238000805000000 +0.275932183000000 0.954036144000000 0.257834206000000 +0.287633890000000 0.937128170000000 0.218167405000000 +0.290955984000000 0.946400285000000 0.198334004000000 +0.281039284000000 0.968861561000000 0.158667203000000 +0.282576373000000 0.944317778000000 0.079333602000000 +0.292592240000000 0.933211123000000 0.089250302000000 +0.282625956000000 0.938070257000000 0.327251107000000 +0.279204695000000 0.953639476000000 0.079333602000000 +0.296707670000000 0.924286043000000 0.416501409000000 +0.300922268000000 0.911245583000000 0.267750906000000 +0.280791367000000 0.962762840000000 0.138833803000000 +0.282675540000000 0.968861561000000 0.059500201000000 +0.292592240000000 0.936384467000000 0.178500604000000 +0.300723934000000 0.915063512000000 0.049583501000000 +0.277717189000000 0.969010312000000 0.049583501000000 +0.292493073000000 0.904452643000000 0.545418512000000 +0.282675540000000 0.931971536000000 0.485918310000000 +0.272659672000000 0.963159508000000 0.198334004000000 +0.281832620000000 0.942582405000000 0.247917505000000 +0.284212628000000 0.999652965000000 0.069416901000000 +0.302508940000000 0.904353476000000 0.257834206000000 +0.290955984000000 0.968613743000000 0.069416901000000 +0.295815167000000 0.916947636000000 0.485918310000000 +0.297501006000000 0.908815942000000 0.099167002000000 +0.277618022000000 0.959936630000000 0.476001610000000 +0.282625956000000 0.928798192000000 0.257834206000000 +0.296707670000000 0.924286043000000 0.019833400000000 +0.294129328000000 0.916798885000000 0.614835413000000 +0.302409773000000 0.934847280000000 0.019833400000000 +0.285898467000000 0.940747766000000 0.208250704000000 +0.279353445000000 0.968911194000000 0.307417707000000 +0.280989701000000 0.935343164000000 0.386751308000000 +0.275981767000000 0.957060738000000 0.079333602000000 +0.294129328000000 0.916798885000000 0.218167405000000 +0.290856817000000 0.965836968000000 0.049583501000000 +0.307417707000000 0.913328090000000 0.347084507000000 +0.299087678000000 0.921806868000000 0.376834608000000 +0.305880618000000 0.917046852000000 0.178500604000000 +0.274395095000000 0.974662930000000 0.218167405000000 +0.284262212000000 0.965737850000000 0.198334004000000 +0.280791367000000 0.962762840000000 0.337167807000000 +0.289170978000000 0.962316589000000 0.000000000000000 +0.284361379000000 0.981009618000000 0.099167002000000 +0.285154715000000 0.948333992000000 0.158667203000000 +0.285749717000000 0.953193274000000 0.158667203000000 +0.283419292000000 0.942780689000000 0.158667203000000 +0.285898467000000 0.940747766000000 0.337167807000000 +0.282576373000000 0.947193621000000 0.366917908000000 +0.295914334000000 0.925922349000000 0.386751308000000 +0.298294342000000 0.930434348000000 0.059500201000000 +0.295765584000000 0.920170613000000 0.287584306000000 +0.279204695000000 0.950813167000000 0.257834206000000 +0.282526789000000 0.977935392000000 0.099167002000000 +0.294129328000000 0.916798885000000 0.267750906000000 +0.274395095000000 0.960134915000000 0.595002013000000 +0.287485139000000 0.952895674000000 0.218167405000000 +0.307417707000000 0.913328090000000 0.178500604000000 +0.294228495000000 0.929591478000000 0.198334004000000 +0.284212628000000 0.931872319000000 0.049583501000000 +0.295021831000000 0.924682761000000 0.277667606000000 +0.302409773000000 0.934847280000000 0.228084105000000 +0.294129328000000 0.916798885000000 0.535501812000000 +0.287584306000000 0.924831462000000 0.000000000000000 +0.284262212000000 0.934847280000000 0.357001208000000 +0.282675540000000 0.971935788000000 0.168583904000000 +0.285898467000000 0.940747766000000 0.238000805000000 +0.287683473000000 0.927806472000000 0.267750906000000 +0.307417707000000 0.913328090000000 0.059500201000000 +0.295963918000000 0.932616072000000 0.357001208000000 +0.292542656000000 0.907576354000000 0.644585514000000 +0.285948051000000 0.978133726000000 0.019833400000000 +0.292443489000000 0.975109132000000 0.079333602000000 +0.277667606000000 0.965985817000000 0.287584306000000 +0.286691803000000 0.939111461000000 0.267750906000000 +0.289170978000000 0.978282476000000 0.109083702000000 +0.281039284000000 0.980811235000000 0.158667203000000 +0.284212628000000 0.962564506000000 0.307417707000000 +0.289220562000000 0.924385161000000 0.228084105000000 +0.279353445000000 0.947491122000000 0.267750906000000 +0.297550590000000 0.902717220000000 0.267750906000000 +0.279303862000000 0.956812820000000 0.188417304000000 +0.279353445000000 0.938665259000000 0.535501812000000 +0.280989701000000 0.935343164000000 0.059500201000000 +0.290906401000000 0.952697390000000 0.297501006000000 +0.292443489000000 0.972084538000000 0.000000000000000 +0.289270145000000 0.930831066000000 0.257834206000000 +0.282625956000000 0.928798192000000 0.535501812000000 +0.279353445000000 0.938665259000000 0.029750101000000 +0.302508940000000 0.931475651000000 0.000000000000000 +0.277568439000000 0.953837810000000 0.000000000000000 +0.284311795000000 0.941045217000000 0.158667203000000 +0.279353445000000 0.938665259000000 0.138833803000000 +0.282675540000000 0.993058359000000 0.198334004000000 +0.281039284000000 0.965787434000000 0.049583501000000 +0.289220562000000 0.952647806000000 0.009916700000000 +0.289270145000000 0.920666398000000 0.446251510000000 +0.284311795000000 0.925575214000000 0.277667606000000 +0.299186845000000 0.935491915000000 0.238000805000000 +0.292542656000000 0.923641458000000 0.029750101000000 +0.295815167000000 0.916947636000000 0.396668009000000 +0.279799697000000 0.944565695000000 0.327251107000000 +0.297501006000000 0.935591082000000 0.317334407000000 +0.295815167000000 0.916947636000000 0.039666801000000 +0.285898467000000 0.956267402000000 0.109083702000000 +0.272858006000000 0.960085331000000 0.257834206000000 +0.292493073000000 0.939855263000000 0.178500604000000 +0.280890534000000 0.977786641000000 0.178500604000000 +0.292493073000000 0.959044078000000 0.029750101000000 +0.284212628000000 0.956366569000000 0.198334004000000 +0.297550590000000 0.948780343000000 0.069416901000000 +0.290906401000000 0.911195999000000 0.555335212000000 +0.282725123000000 0.950366965000000 0.128917103000000 +0.304095612000000 0.917294770000000 0.128917103000000 +0.281832620000000 0.942582405000000 0.039666801000000 +0.295864751000000 0.906535150000000 0.456168210000000 +0.282625956000000 0.956515319000000 0.168583904000000 +0.280890534000000 0.983885362000000 0.178500604000000 +0.307417707000000 0.913328090000000 0.317334407000000 +0.290955984000000 0.949524045000000 0.109083702000000 +0.280940117000000 0.956614437000000 0.009916700000000 +0.285997634000000 0.965638683000000 0.168583904000000 +0.284212628000000 0.931872319000000 0.069416901000000 +0.279353445000000 0.938665259000000 0.148750503000000 +0.280840950000000 0.947491122000000 0.238000805000000 +0.280940117000000 0.932268987000000 0.287584306000000 +0.284262212000000 0.971737454000000 0.039666801000000 +0.304095612000000 0.922104369000000 0.119000403000000 +0.284262212000000 0.928153557000000 0.416501409000000 +0.295963918000000 0.913030589000000 0.614835413000000 +0.294178912000000 0.926517301000000 0.297501006000000 +0.295914334000000 0.909807711000000 0.238000805000000 +0.285997634000000 0.968762444000000 0.029750101000000 +0.300872684000000 0.901576800000000 0.277667606000000 +0.295963918000000 0.913030589000000 0.198334004000000 +0.299137262000000 0.938863642000000 0.119000403000000 +0.300723934000000 0.915063512000000 0.188417304000000 +0.287633890000000 0.930831066000000 0.327251107000000 +0.274395095000000 0.960134915000000 0.029750101000000 +0.300872684000000 0.901576800000000 0.099167002000000 +0.295864751000000 0.906535150000000 0.723919116000000 +0.295864751000000 0.929293977000000 0.366917908000000 +0.282675540000000 0.931971536000000 0.109083702000000 +0.287534723000000 0.962415805000000 0.069416901000000 +0.289270145000000 0.920666398000000 0.842919518000000 +0.295864751000000 0.906535150000000 0.228084105000000 +0.281832620000000 0.939706512000000 0.059500201000000 +0.290906401000000 0.936582752000000 0.307417707000000 +0.304095612000000 0.910948082000000 0.515668411000000 +0.284311795000000 0.968762444000000 0.198334004000000 +0.286790970000000 0.948333992000000 0.218167405000000 +0.289270145000000 0.930831066000000 0.069416901000000 +0.297550590000000 0.928798192000000 0.109083702000000 +0.272709256000000 0.966134568000000 0.267750906000000 +0.292493073000000 0.939855263000000 0.347084507000000 +0.284262212000000 0.934847280000000 0.039666801000000 +0.285997634000000 0.965638683000000 0.148750503000000 +0.305880618000000 0.913427257000000 0.416501409000000 +0.296658087000000 0.930880699000000 0.138833803000000 +0.304194779000000 0.907526820000000 0.297501006000000 +0.281039284000000 0.950565349000000 0.337167807000000 +0.284262212000000 0.971737454000000 0.029750101000000 +0.297451423000000 0.942235271000000 0.099167002000000 +0.289270145000000 0.920666398000000 0.079333602000000 +0.299137262000000 0.918633524000000 0.119000403000000 +0.275981767000000 0.957060738000000 0.535501812000000 +0.282675540000000 0.925971882000000 0.039666801000000 +0.294278079000000 0.912435587000000 0.565251912000000 +0.281039284000000 0.941441935000000 0.148750503000000 +0.297550590000000 0.928798192000000 0.128917103000000 +0.279303862000000 0.941789019000000 0.436334809000000 +0.279254278000000 0.962961224000000 0.396668009000000 +0.276080934000000 0.977538674000000 0.099167002000000 +0.294278079000000 0.945805283000000 0.218167405000000 +0.292542656000000 0.913476840000000 0.128917103000000 +0.294327662000000 0.910353129000000 0.000000000000000 +0.290955984000000 0.946400285000000 0.049583501000000 +0.297501006000000 0.919278060000000 0.476001610000000 +0.297401839000000 0.922501037000000 0.366917908000000 +0.290856817000000 0.943177357000000 0.188417304000000 +0.289170978000000 0.956069117000000 0.168583904000000 +0.305731868000000 0.923641458000000 0.188417304000000 +0.284311795000000 0.950218215000000 0.228084105000000 +0.300872684000000 0.901576800000000 0.267750906000000 +0.292592240000000 0.936384467000000 0.247917505000000 +0.295765584000000 0.920170613000000 0.337167807000000 +0.274444678000000 0.968960778000000 0.069416901000000 +0.277618022000000 0.959936630000000 0.059500201000000 +0.297501006000000 0.932516954000000 0.158667203000000 +0.284262212000000 0.934847280000000 0.267750906000000 +0.279353445000000 0.947491122000000 0.416501409000000 +0.281882204000000 0.948978627000000 0.109083702000000 +0.277568439000000 0.953837810000000 0.604918713000000 +0.295021831000000 0.924682761000000 0.109083702000000 +0.281882204000000 0.948978627000000 0.406584709000000 +0.297501006000000 0.935591082000000 0.039666801000000 +0.290856817000000 0.924087709000000 0.000000000000000 +0.290807234000000 0.939954479000000 0.138833803000000 +0.302508940000000 0.917790654000000 0.119000403000000 +0.285898467000000 0.956267402000000 0.069416901000000 +0.274395095000000 0.960134915000000 0.158667203000000 +0.304095612000000 0.910948082000000 0.406584709000000 +0.276031350000000 0.959986164000000 0.416501409000000 +0.292592240000000 0.933211123000000 0.277667606000000 +0.280940117000000 0.986810838000000 0.218167405000000 +0.297501006000000 0.932516954000000 0.208250704000000 +0.292493073000000 0.926963553000000 0.099167002000000 +0.289220562000000 0.924385161000000 0.188417304000000 +0.282625956000000 0.928798192000000 0.218167405000000 +0.284311795000000 0.950218215000000 0.347084507000000 +0.272858006000000 0.960085331000000 0.485918310000000 +0.295815167000000 0.945706116000000 0.019833400000000 +0.299087678000000 0.921806868000000 0.049583501000000 +0.274494262000000 0.954333645000000 0.049583501000000 +0.281832620000000 0.942582405000000 0.099167002000000 +0.281039284000000 0.938516508000000 0.148750503000000 +0.298294342000000 0.930434348000000 0.218167405000000 +0.280840950000000 0.947491122000000 0.019833400000000 +0.295765584000000 0.920170613000000 0.228084105000000 +0.292493073000000 0.939855263000000 0.238000805000000 +0.282675540000000 0.925971882000000 0.466084910000000 +0.277618022000000 0.971985371000000 0.218167405000000 +0.297501006000000 0.908815942000000 0.565251912000000 +0.292493073000000 0.955821150000000 0.178500604000000 +0.294129328000000 0.923294423000000 0.089250302000000 +0.272709256000000 0.966134568000000 0.247917505000000 +0.304095612000000 0.910948082000000 0.059500201000000 +0.290856817000000 0.924087709000000 0.158667203000000 +0.292592240000000 0.929988146000000 0.337167807000000 +0.297501006000000 0.935591082000000 0.019833400000000 +0.294327662000000 0.910353129000000 0.366917908000000 +0.275981767000000 0.957060738000000 0.416501409000000 +0.280989701000000 0.935343164000000 0.347084507000000 +0.282625956000000 0.938070257000000 0.396668009000000 +0.290906401000000 0.933508575000000 0.337167807000000 +0.297501006000000 0.919278060000000 0.406584709000000 +0.281039284000000 0.938516508000000 0.029750101000000 +0.279799697000000 0.944565695000000 0.178500604000000 +0.277667606000000 0.965985817000000 0.178500604000000 +0.297600173000000 0.912633921000000 0.357001208000000 +0.292493073000000 0.904452643000000 0.128917103000000 +0.302409773000000 0.934847280000000 0.069416901000000 +0.274444678000000 0.971886155000000 0.257834206000000 +0.287633890000000 0.949871180000000 0.148750503000000 +0.296658087000000 0.930880699000000 0.178500604000000 +0.299137262000000 0.915311479000000 0.228084105000000 +0.285749717000000 0.953193274000000 0.029750101000000 +0.280940117000000 0.929393144000000 0.485918310000000 +0.283468876000000 0.948929043000000 0.208250704000000 +0.280940117000000 0.932268987000000 0.515668411000000 +0.271122584000000 0.966134568000000 0.347084507000000 +0.290906401000000 0.908022655000000 0.565251912000000 +0.285997634000000 0.950069464000000 0.277667606000000 +0.304095612000000 0.910948082000000 0.495835011000000 +0.289170978000000 0.940202347000000 0.228084105000000 +0.279303862000000 0.956812820000000 0.386751308000000 +0.297550590000000 0.902717220000000 0.247917505000000 +0.282625956000000 0.956515319000000 0.247917505000000 +0.298294342000000 0.920468114000000 0.079333602000000 +0.272659672000000 0.963159508000000 0.099167002000000 +0.284212628000000 0.983488793000000 0.059500201000000 +0.299137262000000 0.908815942000000 0.257834206000000 +0.282625956000000 0.934996129000000 0.079333602000000 +0.271122584000000 0.966134568000000 0.247917505000000 +0.287683473000000 0.927806472000000 0.228084105000000 +0.295864751000000 0.906535150000000 0.783419317000000 +0.276080934000000 0.951061134000000 0.009916700000000 +0.300872684000000 0.901576800000000 0.614835413000000 +0.294178912000000 0.926517301000000 0.357001208000000 +0.280840950000000 0.947491122000000 0.485918310000000 +0.290906401000000 0.936582752000000 0.297501006000000 +0.299137262000000 0.938863642000000 0.188417304000000 +0.285898467000000 0.946995337000000 0.000000000000000 +0.300872684000000 0.901576800000000 0.426418109000000 +0.282675540000000 0.971935788000000 0.079333602000000 +0.285997634000000 0.965638683000000 0.128917103000000 +0.294228495000000 0.929591478000000 0.347084507000000 +0.298294342000000 0.920468114000000 0.099167002000000 +0.285105131000000 0.945408615000000 0.158667203000000 +0.295914334000000 0.909807711000000 0.198334004000000 +0.289170978000000 0.940202347000000 0.337167807000000 +0.302360190000000 0.914418927000000 0.476001610000000 +0.287633890000000 0.978084093000000 0.128917103000000 +0.299286012000000 0.912138135000000 0.158667203000000 +0.307268956000000 0.923492707000000 0.009916700000000 +0.294178912000000 0.958697043000000 0.039666801000000 +0.290955984000000 0.921013532000000 0.515668411000000 +0.290955984000000 0.921013532000000 0.109083702000000 +0.274395095000000 0.974662930000000 0.178500604000000 +0.284361379000000 0.940946100000000 0.228084105000000 +0.292592240000000 0.933211123000000 0.049583501000000 +0.299137262000000 0.918633524000000 0.386751308000000 +0.295963918000000 0.913030589000000 0.495835011000000 +0.277568439000000 0.953837810000000 0.624752113000000 +0.287485139000000 0.996727539000000 0.069416901000000 +0.299137262000000 0.915311479000000 0.386751308000000 +0.281832620000000 0.942582405000000 0.287584306000000 +0.297501006000000 0.906287233000000 0.079333602000000 +0.305731868000000 0.910055529000000 0.406584709000000 +0.290856817000000 0.965836968000000 0.069416901000000 +0.274395095000000 0.974662930000000 0.009916700000000 +0.294228495000000 0.907030935000000 0.148750503000000 +0.295914334000000 0.909807711000000 0.109083702000000 +0.295815167000000 0.916947636000000 0.119000403000000 +0.287584306000000 0.924831462000000 0.128917103000000 +0.302360190000000 0.914418927000000 0.039666801000000 +0.300872684000000 0.901576800000000 0.069416901000000 +0.290906401000000 0.908022655000000 0.396668009000000 +0.302459357000000 0.928351891000000 0.247917505000000 +0.295021831000000 0.927806472000000 0.049583501000000 +0.279303862000000 0.977786641000000 0.228084105000000 +0.307318540000000 0.916402316000000 0.069416901000000 +0.295864751000000 0.906535150000000 0.119000403000000 +0.289220562000000 0.924385161000000 0.277667606000000 +0.285848884000000 0.943772359000000 0.198334004000000 +0.279303862000000 0.983835828000000 0.228084105000000 +0.305880618000000 0.913427257000000 0.009916700000000 +0.277766773000000 0.950763633000000 0.099167002000000 +0.279204695000000 0.953639476000000 0.426418109000000 +0.300872684000000 0.924881045000000 0.009916700000000 +0.287633890000000 0.949871180000000 0.178500604000000 +0.289170978000000 0.956069117000000 0.148750503000000 +0.284311795000000 0.996231704000000 0.119000403000000 +0.283419292000000 0.939706512000000 0.109083702000000 +0.294327662000000 0.910353129000000 0.426418109000000 +0.279353445000000 0.938665259000000 0.188417304000000 +0.274345511000000 0.957110321000000 0.089250302000000 +0.285898467000000 0.940747766000000 0.307417707000000 +0.302508940000000 0.907576354000000 0.386751308000000 +0.274295928000000 0.963010758000000 0.198334004000000 +0.290906401000000 0.927211470000000 0.000000000000000 +0.299137262000000 0.941888236000000 0.019833400000000 +0.292592240000000 0.929988146000000 0.396668009000000 +0.287485139000000 0.943574025000000 0.099167002000000 +0.279204695000000 0.950813167000000 0.664418914000000 +0.286096801000000 0.990232149000000 0.148750503000000 +0.284311795000000 0.968762444000000 0.178500604000000 +0.299137262000000 0.908815942000000 0.495835011000000 +0.294129328000000 0.939508178000000 0.119000403000000 +0.292542656000000 0.920368947000000 0.406584709000000 +0.274444678000000 0.971886155000000 0.218167405000000 +0.289319729000000 0.965985817000000 0.188417304000000 +0.289319729000000 0.937029003000000 0.376834608000000 +0.292493073000000 0.904452643000000 0.357001208000000 +0.282576373000000 0.996033369000000 0.039666801000000 +0.279204695000000 0.950813167000000 0.704085715000000 +0.300823101000000 0.904799728000000 0.079333602000000 +0.290856817000000 0.930335231000000 0.198334004000000 +0.302360190000000 0.921311033000000 0.069416901000000 +0.282625956000000 0.956515319000000 0.178500604000000 +0.287485139000000 0.943574025000000 0.218167405000000 +0.284311795000000 0.968762444000000 0.208250704000000 +0.305731868000000 0.923641458000000 0.277667606000000 +0.275932183000000 0.954036144000000 0.247917505000000 +0.285848884000000 0.987257090000000 0.099167002000000 +0.297550590000000 0.902717220000000 0.416501409000000 +0.280940117000000 0.941541102000000 0.416501409000000 +0.279353445000000 0.968911194000000 0.396668009000000 +0.279353445000000 0.938665259000000 0.476001610000000 +0.284262212000000 0.965737850000000 0.069416901000000 +0.280940117000000 0.986810838000000 0.238000805000000 +0.279204695000000 0.950813167000000 0.505751711000000 +0.302508940000000 0.904353476000000 0.039666801000000 +0.294129328000000 0.916798885000000 0.347084507000000 +0.284262212000000 0.928153557000000 0.337167807000000 +0.279353445000000 0.938665259000000 0.357001208000000 +0.272858006000000 0.960085331000000 0.595002013000000 +0.274295928000000 0.963010758000000 0.535501812000000 +0.304145196000000 0.914022259000000 0.337167807000000 +0.280940117000000 0.929393144000000 0.446251510000000 +0.297501006000000 0.925723965000000 0.178500604000000 +0.295914334000000 0.948929043000000 0.119000403000000 +0.279204695000000 0.950813167000000 0.079333602000000 +0.290955984000000 0.921013532000000 0.476001610000000 +0.304095612000000 0.910948082000000 0.158667203000000 +0.297501006000000 0.919278060000000 0.416501409000000 +0.295864751000000 0.906535150000000 0.376834608000000 +0.279204695000000 0.950813167000000 0.456168210000000 +0.284262212000000 0.928153557000000 0.059500201000000 +0.290906401000000 0.927211470000000 0.485918310000000 +0.282625956000000 0.934996129000000 0.247917505000000 +0.282625956000000 0.934996129000000 0.257834206000000 +0.274345511000000 0.957110321000000 0.267750906000000 +0.285948051000000 0.978133726000000 0.148750503000000 +0.291005568000000 0.914567677000000 0.168583904000000 +0.292493073000000 0.939855263000000 0.148750503000000 +0.287683473000000 0.927806472000000 0.347084507000000 +0.285948051000000 0.934351494000000 0.327251107000000 +0.295021831000000 0.927806472000000 0.386751308000000 +0.284311795000000 0.968762444000000 0.059500201000000 +0.280940117000000 0.941541102000000 0.277667606000000 +0.292542656000000 0.913476840000000 0.535501812000000 +0.299137262000000 0.941888236000000 0.109083702000000 +0.292542656000000 0.923641458000000 0.386751308000000 +0.289270145000000 0.930831066000000 0.158667203000000 +0.290906401000000 0.911195999000000 0.575168612000000 +0.282625956000000 0.928798192000000 0.585085313000000 +0.279353445000000 0.965836968000000 0.039666801000000 +0.285948051000000 0.934351494000000 0.436334809000000 +0.296658087000000 0.930880699000000 0.257834206000000 +0.284212628000000 0.999652965000000 0.029750101000000 +0.281832620000000 0.939706512000000 0.089250302000000 +0.276031350000000 0.959986164000000 0.337167807000000 +0.285848884000000 0.983984579000000 0.079333602000000 +0.283419292000000 0.939706512000000 0.148750503000000 +0.287633890000000 0.946747369000000 0.218167405000000 +0.294030161000000 0.920121079000000 0.228084105000000 +0.277618022000000 0.957060738000000 0.317334407000000 +0.279204695000000 0.950813167000000 0.694169015000000 +0.271866336000000 0.964349562000000 0.168583904000000 +0.285848884000000 0.943772359000000 0.297501006000000 +0.282625956000000 0.929046060000000 0.555335212000000 +0.277618022000000 0.959936630000000 0.565251912000000 +0.281039284000000 0.941441935000000 0.267750906000000 +0.294178912000000 0.942929440000000 0.099167002000000 +0.297501006000000 0.925723965000000 0.247917505000000 +0.294278079000000 0.949176911000000 0.188417304000000 +0.305731868000000 0.910055529000000 0.228084105000000 +0.295021831000000 0.927806472000000 0.396668009000000 +0.305682284000000 0.920071446000000 0.059500201000000 +0.281882204000000 0.948978627000000 0.376834608000000 +0.294228495000000 0.907030935000000 0.595002013000000 +0.285948051000000 0.931376484000000 0.466084910000000 +0.299137262000000 0.941888236000000 0.188417304000000 +0.285848884000000 0.943772359000000 0.069416901000000 +0.289270145000000 0.927508971000000 0.238000805000000 +0.297550590000000 0.916104716000000 0.396668009000000 +0.294129328000000 0.916798885000000 0.376834608000000 +0.284311795000000 0.993355860000000 0.079333602000000 +0.289319729000000 0.965985817000000 0.109083702000000 +0.282625956000000 0.934996129000000 0.357001208000000 +0.302508940000000 0.924980212000000 0.089250302000000 +0.279303862000000 0.956812820000000 0.198334004000000 +0.304194779000000 0.907526820000000 0.456168210000000 +0.296707670000000 0.924286043000000 0.208250704000000 +0.282625956000000 0.956515319000000 0.208250704000000 +0.299137262000000 0.915311479000000 0.426418109000000 +0.292542656000000 0.907576354000000 0.366917908000000 +0.290906401000000 0.952697390000000 0.158667203000000 +0.276080934000000 0.951061134000000 0.198334004000000 +0.289170978000000 0.975009965000000 0.009916700000000 +0.299286012000000 0.912138135000000 0.396668009000000 +0.289270145000000 0.930831066000000 0.406584709000000 +0.285749717000000 0.953193274000000 0.119000403000000 +0.294327662000000 0.910353129000000 0.218167405000000 +0.285997634000000 0.971787087000000 0.089250302000000 +0.272659672000000 0.957308705000000 0.763585916000000 +0.290807234000000 0.939954479000000 0.168583904000000 +0.292542656000000 0.907576354000000 0.347084507000000 +0.285997634000000 0.925228180000000 0.247917505000000 +0.289270145000000 0.930831066000000 0.247917505000000 +0.280890534000000 0.983885362000000 0.158667203000000 +0.276080934000000 0.951061134000000 0.485918310000000 +0.276080934000000 0.971687870000000 0.069416901000000 +0.287534723000000 0.962415805000000 0.000000000000000 +0.274345511000000 0.957110321000000 0.644585514000000 +0.282576373000000 0.944317778000000 0.119000403000000 +0.287584306000000 0.924831462000000 0.347084507000000 +0.279204695000000 0.950813167000000 0.019833400000000 +0.300823101000000 0.904799728000000 0.684252315000000 +0.295815167000000 0.916947636000000 0.337167807000000 +0.294129328000000 0.955821150000000 0.089250302000000 +0.281039284000000 0.950565349000000 0.099167002000000 +0.280940117000000 0.929393144000000 0.505751711000000 +0.296757254000000 0.927806472000000 0.168583904000000 +0.305731868000000 0.910055529000000 0.138833803000000 +0.300823101000000 0.918236856000000 0.109083702000000 +0.297501006000000 0.925723965000000 0.089250302000000 +0.280940117000000 0.986810838000000 0.228084105000000 +0.282725123000000 0.965836968000000 0.228084105000000 +0.294278079000000 0.912435587000000 0.000000000000000 +0.294129328000000 0.971836621000000 0.009916700000000 +0.290955984000000 0.949524045000000 0.039666801000000 +0.280890534000000 0.974910798000000 0.208250704000000 +0.304145196000000 0.914022259000000 0.148750503000000 +0.289170978000000 0.956069117000000 0.059500201000000 +0.281882204000000 0.948978627000000 0.079333602000000 +0.282725123000000 0.965836968000000 0.009916700000000 +0.287683473000000 0.927806472000000 0.436334809000000 +0.305731868000000 0.910055529000000 0.128917103000000 +0.272659672000000 0.957308705000000 0.307417707000000 +0.280940117000000 0.956614437000000 0.247917505000000 +0.279303862000000 0.977786641000000 0.188417304000000 +0.289270145000000 0.933954826000000 0.287584306000000 +0.285898467000000 0.999851249000000 0.128917103000000 +0.294178912000000 0.942929440000000 0.019833400000000 +0.302459357000000 0.928351891000000 0.119000403000000 +0.284311795000000 0.950218215000000 0.198334004000000 +0.281882204000000 0.948978627000000 0.208250704000000 +0.284311795000000 0.941045217000000 0.029750101000000 +0.307318540000000 0.916402316000000 0.178500604000000 +0.295864751000000 0.929293977000000 0.317334407000000 +0.299137262000000 0.918633524000000 0.218167405000000 +0.298294342000000 0.920468114000000 0.366917908000000 +0.289170978000000 0.978282476000000 0.119000403000000 +0.302508940000000 0.924980212000000 0.009916700000000 +0.284262212000000 0.971737454000000 0.287584306000000 +0.280940117000000 0.929393144000000 0.406584709000000 +0.282675540000000 0.931971536000000 0.366917908000000 +0.281039284000000 0.968861561000000 0.168583904000000 +0.285898467000000 0.940747766000000 0.158667203000000 +0.294228495000000 0.933111907000000 0.000000000000000 +0.285997634000000 0.968762444000000 0.198334004000000 +0.292493073000000 0.904452643000000 0.585085313000000 +0.295021831000000 0.927806472000000 0.099167002000000 +0.272659672000000 0.963159508000000 0.565251912000000 +0.280940117000000 0.932268987000000 0.376834608000000 +0.285997634000000 0.981108736000000 0.089250302000000 +0.299137262000000 0.941888236000000 0.148750503000000 +0.299137262000000 0.908815942000000 0.228084105000000 +0.277717189000000 0.969010312000000 0.138833803000000 +0.282576373000000 0.959688663000000 0.039666801000000 +0.277568439000000 0.953837810000000 0.495835011000000 +0.287633890000000 0.968762444000000 0.109083702000000 +0.285997634000000 0.925228180000000 0.664418914000000 +0.285749717000000 0.953193274000000 0.109083702000000 +0.297600173000000 0.912633921000000 0.109083702000000 +0.275932183000000 0.954036144000000 0.119000403000000 +0.281832620000000 0.945656532000000 0.029750101000000 +0.307417707000000 0.913328090000000 0.327251107000000 +0.294178912000000 0.942929440000000 0.198334004000000 +0.287584306000000 0.990727935000000 0.148750503000000 +0.290906401000000 0.933508575000000 0.029750101000000 +0.276031350000000 0.959986164000000 0.317334407000000 +0.283468876000000 0.948929043000000 0.000000000000000 +0.284163045000000 0.959490280000000 0.297501006000000 +0.289270145000000 0.949722330000000 0.138833803000000 +0.285948051000000 0.931376484000000 0.089250302000000 +0.305880618000000 0.913427257000000 0.099167002000000 +0.294228495000000 0.933111907000000 0.039666801000000 +0.290906401000000 0.908022655000000 0.555335212000000 +0.282625956000000 0.928798192000000 0.019833400000000 +0.274395095000000 0.960134915000000 0.198334004000000 +0.299137262000000 0.915311479000000 0.396668009000000 +0.299137262000000 0.915311479000000 0.357001208000000 +0.287485139000000 0.943574025000000 0.307417707000000 +0.294129328000000 0.939508178000000 0.138833803000000 +0.274395095000000 0.960134915000000 0.416501409000000 +0.282625956000000 0.956515319000000 0.099167002000000 +0.272709256000000 0.966134568000000 0.327251107000000 +0.289270145000000 0.927508971000000 0.019833400000000 +0.286691803000000 0.942185687000000 0.089250302000000 +0.307268956000000 0.923492707000000 0.138833803000000 +0.294129328000000 0.916798885000000 0.327251107000000 +0.279303862000000 0.941789019000000 0.168583904000000 +0.285848884000000 0.943772359000000 0.009916700000000 +0.294228495000000 0.907030935000000 0.604918713000000 +0.295914334000000 0.935888583000000 0.208250704000000 +0.292542656000000 0.913476840000000 0.059500201000000 +0.280940117000000 0.932268987000000 0.604918713000000 +0.295716000000000 0.922897705000000 0.228084105000000 +0.279204695000000 0.950813167000000 0.109083702000000 +0.292592240000000 0.929988146000000 0.347084507000000 +0.289220562000000 0.943474858000000 0.247917505000000 +0.274395095000000 0.960134915000000 0.327251107000000 +0.290856817000000 0.955870734000000 0.079333602000000 +0.287584306000000 0.924831462000000 0.079333602000000 +0.290856817000000 0.924087709000000 0.198334004000000 +0.287633890000000 0.946747369000000 0.128917103000000 +0.281832620000000 0.945656532000000 0.168583904000000 +0.289220562000000 0.943474858000000 0.287584306000000 +0.284311795000000 0.950218215000000 0.277667606000000 +0.300823101000000 0.904799728000000 0.485918310000000 +0.289220562000000 0.924385161000000 0.089250302000000 +0.289220562000000 0.924385161000000 0.495835011000000 +0.281039284000000 0.968861561000000 0.000000000000000 +0.279799697000000 0.944565695000000 0.456168210000000 +0.277618022000000 0.959936630000000 0.158667203000000 +0.297501006000000 0.932516954000000 0.019833400000000 +0.295815167000000 0.916947636000000 0.585085313000000 +0.299186845000000 0.935491915000000 0.257834206000000 +0.290955984000000 0.949524045000000 0.168583904000000 +0.277618022000000 0.963010758000000 0.426418109000000 +0.292592240000000 0.952598223000000 0.138833803000000 +0.289270145000000 0.968663277000000 0.119000403000000 +0.279303862000000 0.974811681000000 0.228084105000000 +0.287584306000000 0.934103577000000 0.228084105000000 +0.295914334000000 0.909807711000000 0.466084910000000 +0.290955984000000 0.949524045000000 0.158667203000000 +0.282576373000000 0.959688663000000 0.297501006000000 +0.287584306000000 0.984331663000000 0.148750503000000 +0.297451423000000 0.938962760000000 0.218167405000000 +0.294129328000000 0.923294423000000 0.495835011000000 +0.274395095000000 0.974662930000000 0.158667203000000 +0.305682284000000 0.920071446000000 0.297501006000000 +0.295864751000000 0.906535150000000 0.446251510000000 +0.296658087000000 0.921112699000000 0.426418109000000 +0.272659672000000 0.963159508000000 0.535501812000000 +0.282625956000000 0.928798192000000 0.357001208000000 +0.295914334000000 0.925922349000000 0.327251107000000 +0.277618022000000 0.957060738000000 0.247917505000000 +0.287633890000000 0.946747369000000 0.347084507000000 +0.307516874000000 0.919922695000000 0.247917505000000 +0.285898467000000 0.946995337000000 0.218167405000000 +0.292493073000000 0.959044078000000 0.000000000000000 +0.294278079000000 0.945805283000000 0.000000000000000 +0.299137262000000 0.915311479000000 0.485918310000000 +0.276031350000000 0.959986164000000 0.545418512000000 +0.292592240000000 0.917294770000000 0.297501006000000 +0.297501006000000 0.906287233000000 0.604918713000000 +0.294178912000000 0.926517301000000 0.476001610000000 +0.287584306000000 0.924831462000000 0.099167002000000 +0.271122584000000 0.966134568000000 0.188417304000000 +0.285154715000000 0.948333992000000 0.228084105000000 +0.292542656000000 0.923641458000000 0.476001610000000 +0.281039284000000 0.980811235000000 0.039666801000000 +0.290906401000000 0.911195999000000 0.674335615000000 +0.305682284000000 0.920071446000000 0.019833400000000 +0.272858006000000 0.960085331000000 0.585085313000000 +0.294129328000000 0.923294423000000 0.208250704000000 +0.294030161000000 0.920121079000000 0.178500604000000 +0.294129328000000 0.962217422000000 0.039666801000000 +0.287633890000000 0.930831066000000 0.148750503000000 +0.290906401000000 0.927211470000000 0.406584709000000 +0.292641823000000 0.968613743000000 0.119000403000000 +0.294129328000000 0.923294423000000 0.049583501000000 +0.280791367000000 0.962762840000000 0.178500604000000 +0.282675540000000 0.931971536000000 0.198334004000000 +0.286691803000000 0.942185687000000 0.277667606000000 +0.294228495000000 0.929591478000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.485918310000000 +0.292542656000000 0.913476840000000 0.366917908000000 +0.294228495000000 0.907030935000000 0.535501812000000 +0.295864751000000 0.929293977000000 0.307417707000000 +0.302459357000000 0.928351891000000 0.049583501000000 +0.295765584000000 0.920170613000000 0.198334004000000 +0.275981767000000 0.957060738000000 0.357001208000000 +0.292542656000000 0.913476840000000 0.178500604000000 +0.272659672000000 0.963159508000000 0.337167807000000 +0.291005568000000 0.914567677000000 0.178500604000000 +0.285948051000000 0.978133726000000 0.029750101000000 +0.279204695000000 0.953639476000000 0.049583501000000 +0.294228495000000 0.929591478000000 0.079333602000000 +0.279353445000000 0.947491122000000 0.396668009000000 +0.285898467000000 0.996330871000000 0.029750101000000 +0.280940117000000 0.941541102000000 0.466084910000000 +0.291005568000000 0.914567677000000 0.565251912000000 +0.282526789000000 0.977935392000000 0.238000805000000 +0.276031350000000 0.959986164000000 0.327251107000000 +0.294178912000000 0.942929440000000 0.049583501000000 +0.302360190000000 0.914418927000000 0.267750906000000 +0.292592240000000 0.952598223000000 0.079333602000000 +0.281832620000000 0.945656532000000 0.218167405000000 +0.279353445000000 0.980712018000000 0.049583501000000 +0.277717189000000 0.969010312000000 0.366917908000000 +0.279254278000000 0.959837414000000 0.049583501000000 +0.279353445000000 0.938665259000000 0.366917908000000 +0.289220562000000 0.946499452000000 0.138833803000000 +0.292592240000000 0.936384467000000 0.000000000000000 +0.276080934000000 0.966084935000000 0.406584709000000 +0.294228495000000 0.907030935000000 0.634668814000000 +0.279303862000000 0.977786641000000 0.327251107000000 +0.295815167000000 0.945706116000000 0.148750503000000 +0.302508940000000 0.907576354000000 0.535501812000000 +0.282725123000000 0.965836968000000 0.287584306000000 +0.284262212000000 0.928153557000000 0.555335212000000 +0.281832620000000 0.942582405000000 0.297501006000000 +0.277568439000000 0.953837810000000 0.505751711000000 +0.279204695000000 0.953639476000000 0.595002013000000 +0.284262212000000 0.934847280000000 0.287584306000000 +0.279204695000000 0.953639476000000 0.366917908000000 +0.284163045000000 0.959490280000000 0.317334407000000 +0.279204695000000 0.950813167000000 0.416501409000000 +0.284163045000000 0.959490280000000 0.128917103000000 +0.299137262000000 0.915311479000000 0.059500201000000 +0.300823101000000 0.918236856000000 0.426418109000000 +0.304095612000000 0.922104369000000 0.168583904000000 +0.289270145000000 0.930831066000000 0.327251107000000 +0.302508940000000 0.924980212000000 0.128917103000000 +0.287485139000000 0.943574025000000 0.317334407000000 +0.282625956000000 0.934996129000000 0.099167002000000 +0.277667606000000 0.965985817000000 0.406584709000000 +0.281039284000000 0.941441935000000 0.466084910000000 +0.290906401000000 0.927211470000000 0.476001610000000 +0.276080934000000 0.966084935000000 0.089250302000000 +0.297501006000000 0.908815942000000 0.029750101000000 +0.282576373000000 0.947193621000000 0.089250302000000 +0.280989701000000 0.935343164000000 0.009916700000000 +0.285997634000000 0.965638683000000 0.178500604000000 +0.294228495000000 0.929591478000000 0.257834206000000 +0.277667606000000 0.965985817000000 0.099167002000000 +0.279254278000000 0.959837414000000 0.178500604000000 +0.285848884000000 0.943772359000000 0.178500604000000 +0.299286012000000 0.912138135000000 0.426418109000000 +0.282576373000000 0.959688663000000 0.228084105000000 +0.289170978000000 0.940202347000000 0.138833803000000 +0.287633890000000 0.968762444000000 0.188417304000000 +0.287683473000000 0.927806472000000 0.188417304000000 +0.279353445000000 0.938665259000000 0.585085313000000 +0.294278079000000 0.912435587000000 0.386751308000000 +0.287633890000000 0.965886601000000 0.218167405000000 +0.297550590000000 0.916104716000000 0.347084507000000 +0.297501006000000 0.906287233000000 0.188417304000000 +0.296707670000000 0.924286043000000 0.119000403000000 +0.299186845000000 0.905394779000000 0.347084507000000 +0.290906401000000 0.927211470000000 0.357001208000000 +0.274444678000000 0.968960778000000 0.347084507000000 +0.296658087000000 0.930880699000000 0.327251107000000 +0.282576373000000 0.987058805000000 0.089250302000000 +0.300872684000000 0.901576800000000 0.456168210000000 +0.304194779000000 0.907526820000000 0.525585111000000 +0.289270145000000 0.920666398000000 0.168583904000000 +0.274345511000000 0.957110321000000 0.357001208000000 +0.282625956000000 0.929046060000000 0.208250704000000 +0.279303862000000 0.983835828000000 0.148750503000000 +0.300922268000000 0.911245583000000 0.069416901000000 +0.287485139000000 0.996727539000000 0.138833803000000 +0.300872684000000 0.901576800000000 0.148750503000000 +0.296707670000000 0.924286043000000 0.178500604000000 +0.286691803000000 0.942185687000000 0.247917505000000 +0.285105131000000 0.939210677000000 0.089250302000000 +0.287534723000000 0.987505007000000 0.119000403000000 +0.277766773000000 0.950763633000000 0.386751308000000 +0.279204695000000 0.950813167000000 0.743752516000000 +0.277618022000000 0.971985371000000 0.128917103000000 +0.280791367000000 0.962762840000000 0.158667203000000 +0.289319729000000 0.937029003000000 0.138833803000000 +0.282625956000000 0.938070257000000 0.029750101000000 +0.289220562000000 0.943474858000000 0.208250704000000 +0.272758839000000 0.968861561000000 0.208250704000000 +0.292592240000000 0.949375295000000 0.009916700000000 +0.279254278000000 0.959837414000000 0.416501409000000 +0.285848884000000 0.987257090000000 0.257834206000000 +0.300823101000000 0.918236856000000 0.456168210000000 +0.280989701000000 0.935343164000000 0.128917103000000 +0.285898467000000 0.940747766000000 0.079333602000000 +0.279353445000000 0.980712018000000 0.247917505000000 +0.279303862000000 0.941789019000000 0.198334004000000 +0.299137262000000 0.908815942000000 0.386751308000000 +0.280989701000000 0.935343164000000 0.575168612000000 +0.292542656000000 0.923641458000000 0.406584709000000 +0.281039284000000 0.938516508000000 0.287584306000000 +0.298294342000000 0.930434348000000 0.089250302000000 +0.302508940000000 0.924980212000000 0.178500604000000 +0.294278079000000 0.912435587000000 0.505751711000000 +0.284262212000000 0.934847280000000 0.376834608000000 +0.285898467000000 0.946995337000000 0.009916700000000 +0.284262212000000 0.943970693000000 0.119000403000000 +0.296707670000000 0.924286043000000 0.446251510000000 +0.274444678000000 0.968960778000000 0.158667203000000 +0.289170978000000 0.975009965000000 0.099167002000000 +0.276080934000000 0.951061134000000 0.079333602000000 +0.280989701000000 0.935343164000000 0.049583501000000 +0.272659672000000 0.963159508000000 0.208250704000000 +0.280940117000000 0.941541102000000 0.069416901000000 +0.292493073000000 0.959044078000000 0.128917103000000 +0.280940117000000 0.986810838000000 0.257834206000000 +0.280940117000000 0.986810838000000 0.287584306000000 +0.287534723000000 0.987505007000000 0.128917103000000 +0.285948051000000 0.931376484000000 0.029750101000000 +0.289220562000000 0.959143245000000 0.178500604000000 +0.276080934000000 0.951061134000000 0.228084105000000 +0.287534723000000 0.959291995000000 0.109083702000000 +0.290856817000000 0.924087709000000 0.109083702000000 +0.298294342000000 0.930434348000000 0.228084105000000 +0.284361379000000 0.937971090000000 0.059500201000000 +0.297550590000000 0.916104716000000 0.555335212000000 +0.305880618000000 0.913427257000000 0.347084507000000 +0.284262212000000 0.928153557000000 0.565251912000000 +0.294278079000000 0.949176911000000 0.079333602000000 +0.289270145000000 0.920666398000000 0.723919116000000 +0.297501006000000 0.908815942000000 0.059500201000000 +0.280890534000000 0.977786641000000 0.148750503000000 +0.294278079000000 0.912435587000000 0.485918310000000 +0.302508940000000 0.904353476000000 0.109083702000000 +0.289270145000000 0.933954826000000 0.168583904000000 +0.277618022000000 0.963010758000000 0.386751308000000 +0.282675540000000 0.925971882000000 0.238000805000000 +0.297501006000000 0.925723965000000 0.069416901000000 +0.285997634000000 0.965638683000000 0.039666801000000 +0.284212628000000 0.931872319000000 0.009916700000000 +0.285105131000000 0.945408615000000 0.208250704000000 +0.297501006000000 0.935591082000000 0.208250704000000 +0.279353445000000 0.938665259000000 0.297501006000000 +0.282675540000000 0.925971882000000 0.009916700000000 +0.284262212000000 0.928153557000000 0.049583501000000 +0.304095612000000 0.922104369000000 0.297501006000000 +0.274444678000000 0.971886155000000 0.158667203000000 +0.299137262000000 0.908815942000000 0.654502214000000 +0.307318540000000 0.916402316000000 0.198334004000000 +0.272659672000000 0.957308705000000 0.218167405000000 +0.287633890000000 0.965886601000000 0.079333602000000 +0.289220562000000 0.959143245000000 0.128917103000000 +0.277618022000000 0.957060738000000 0.148750503000000 +0.297550590000000 0.916104716000000 0.158667203000000 +0.294327662000000 0.910353129000000 0.029750101000000 +0.279204695000000 0.953639476000000 0.525585111000000 +0.294129328000000 0.923294423000000 0.337167807000000 +0.284311795000000 0.950218215000000 0.000000000000000 +0.280940117000000 0.956614437000000 0.337167807000000 +0.285948051000000 0.931376484000000 0.208250704000000 +0.299137262000000 0.915311479000000 0.178500604000000 +0.305682284000000 0.920071446000000 0.347084507000000 +0.294278079000000 0.968613743000000 0.059500201000000 +0.281882204000000 0.948978627000000 0.257834206000000 +0.279353445000000 0.947491122000000 0.595002013000000 +0.277618022000000 0.971985371000000 0.327251107000000 +0.281039284000000 0.950565349000000 0.466084910000000 +0.282675540000000 0.925971882000000 0.654502214000000 +0.290906401000000 0.911195999000000 0.684252315000000 +0.284163045000000 0.959490280000000 0.188417304000000 +0.296658087000000 0.921112699000000 0.029750101000000 +0.284361379000000 0.940946100000000 0.089250302000000 +0.280940117000000 0.956614437000000 0.059500201000000 +0.292592240000000 0.949375295000000 0.079333602000000 +0.279303862000000 0.974811681000000 0.089250302000000 +0.290856817000000 0.924087709000000 0.376834608000000 +0.290906401000000 0.911195999000000 0.416501409000000 +0.290906401000000 0.927211470000000 0.188417304000000 +0.280940117000000 0.956614437000000 0.119000403000000 +0.292592240000000 0.929988146000000 0.436334809000000 +0.302508940000000 0.904353476000000 0.099167002000000 +0.282625956000000 0.929046060000000 0.277667606000000 +0.281882204000000 0.948978627000000 0.059500201000000 +0.279303862000000 0.956812820000000 0.307417707000000 +0.290856817000000 0.943177357000000 0.000000000000000 +0.289220562000000 0.946499452000000 0.188417304000000 +0.294228495000000 0.929591478000000 0.406584709000000 +0.285898467000000 0.956267402000000 0.208250704000000 +0.279303862000000 0.956812820000000 0.416501409000000 +0.289270145000000 0.949722330000000 0.099167002000000 +0.275932183000000 0.954036144000000 0.109083702000000 +0.274345511000000 0.957110321000000 0.416501409000000 +0.287683473000000 0.927806472000000 0.208250704000000 +0.277717189000000 0.980612901000000 0.188417304000000 +0.294030161000000 0.920121079000000 0.396668009000000 +0.286741387000000 0.945309398000000 0.019833400000000 +0.289319729000000 0.937029003000000 0.307417707000000 +0.272659672000000 0.957308705000000 0.347084507000000 +0.279353445000000 0.965836968000000 0.109083702000000 +0.272659672000000 0.963159508000000 0.188417304000000 +0.272709256000000 0.966134568000000 0.188417304000000 +0.292592240000000 0.929988146000000 0.376834608000000 +0.284311795000000 0.947044870000000 0.168583904000000 +0.285898467000000 0.962514923000000 0.029750101000000 +0.280940117000000 0.956614437000000 0.347084507000000 +0.284163045000000 0.959490280000000 0.148750503000000 +0.287584306000000 0.990727935000000 0.168583904000000 +0.285948051000000 0.934351494000000 0.089250302000000 +0.297550590000000 0.948780343000000 0.019833400000000 +0.271866336000000 0.964349562000000 0.208250704000000 +0.277717189000000 0.980612901000000 0.119000403000000 +0.279303862000000 0.983835828000000 0.138833803000000 +0.295914334000000 0.909807711000000 0.416501409000000 +0.274295928000000 0.963010758000000 0.545418512000000 +0.297401839000000 0.922501037000000 0.238000805000000 +0.287534723000000 0.962415805000000 0.228084105000000 +0.279303862000000 0.974811681000000 0.347084507000000 +0.295914334000000 0.909807711000000 0.386751308000000 +0.272659672000000 0.957308705000000 0.327251107000000 +0.295765584000000 0.955523699000000 0.089250302000000 +0.297501006000000 0.932516954000000 0.257834206000000 +0.287534723000000 0.956118651000000 0.218167405000000 +0.297550590000000 0.902717220000000 0.466084910000000 +0.295963918000000 0.913030589000000 0.188417304000000 +0.285105131000000 0.939210677000000 0.178500604000000 +0.300773517000000 0.921608534000000 0.069416901000000 +0.294129328000000 0.916798885000000 0.099167002000000 +0.290906401000000 0.911195999000000 0.495835011000000 +0.285898467000000 0.959391212000000 0.208250704000000 +0.282576373000000 0.959688663000000 0.069416901000000 +0.289270145000000 0.930831066000000 0.466084910000000 +0.280890534000000 0.983885362000000 0.307417707000000 +0.279254278000000 0.959837414000000 0.287584306000000 +0.305880618000000 0.917046852000000 0.198334004000000 +0.290906401000000 0.911195999000000 0.446251510000000 +0.298294342000000 0.930434348000000 0.148750503000000 +0.304145196000000 0.914022259000000 0.357001208000000 +0.277568439000000 0.953837810000000 0.049583501000000 +0.284361379000000 0.981009618000000 0.089250302000000 +0.271122584000000 0.966134568000000 0.039666801000000 +0.290906401000000 0.927211470000000 0.545418512000000 +0.289220562000000 0.952647806000000 0.247917505000000 +0.279353445000000 0.968911194000000 0.347084507000000 +0.292592240000000 0.917294770000000 0.079333602000000 +0.285105131000000 0.945408615000000 0.267750906000000 +0.281039284000000 0.950565349000000 0.089250302000000 +0.275932183000000 0.954036144000000 0.624752113000000 +0.284311795000000 0.947044870000000 0.119000403000000 +0.292493073000000 0.939855263000000 0.069416901000000 +0.302409773000000 0.934847280000000 0.059500201000000 +0.280890534000000 0.983885362000000 0.277667606000000 +0.276080934000000 0.966084935000000 0.109083702000000 +0.280989701000000 0.944565695000000 0.109083702000000 +0.304194779000000 0.907526820000000 0.317334407000000 +0.282625956000000 0.956515319000000 0.218167405000000 +0.299186845000000 0.905394779000000 0.476001610000000 +0.298294342000000 0.930434348000000 0.019833400000000 +0.275932183000000 0.954036144000000 0.535501812000000 +0.292592240000000 0.917294770000000 0.287584306000000 +0.294129328000000 0.916798885000000 0.029750101000000 +0.294228495000000 0.907030935000000 0.099167002000000 +0.287633890000000 0.965886601000000 0.138833803000000 +0.274295928000000 0.963010758000000 0.565251912000000 +0.279303862000000 0.974811681000000 0.257834206000000 +0.281832620000000 0.939706512000000 0.228084105000000 +0.284212628000000 0.956366569000000 0.059500201000000 +0.295716000000000 0.922897705000000 0.466084910000000 +0.294228495000000 0.929591478000000 0.059500201000000 +0.285749717000000 0.953193274000000 0.297501006000000 +0.282625956000000 0.956515319000000 0.297501006000000 +0.287633890000000 0.965886601000000 0.009916700000000 +0.284361379000000 0.937971090000000 0.039666801000000 +0.302508940000000 0.931475651000000 0.188417304000000 +0.282675540000000 0.931971536000000 0.138833803000000 +0.289220562000000 0.971886155000000 0.089250302000000 +0.276080934000000 0.977538674000000 0.000000000000000 +0.285948051000000 0.937425671000000 0.208250704000000 +0.274345511000000 0.966134568000000 0.505751711000000 +0.303996445000000 0.924236410000000 0.337167807000000 +0.274345511000000 0.966134568000000 0.436334809000000 +0.299137262000000 0.908815942000000 0.039666801000000 +0.285898467000000 0.962514923000000 0.218167405000000 +0.286691803000000 0.942185687000000 0.019833400000000 +0.285997634000000 0.950069464000000 0.000000000000000 +0.285948051000000 0.934351494000000 0.019833400000000 +0.277667606000000 0.965985817000000 0.426418109000000 +0.287534723000000 0.987505007000000 0.198334004000000 +0.286790970000000 0.948333992000000 0.238000805000000 +0.295864751000000 0.906535150000000 0.555335212000000 +0.290906401000000 0.911195999000000 0.198334004000000 +0.285898467000000 0.962514923000000 0.158667203000000 +0.292542656000000 0.923641458000000 0.069416901000000 +0.290906401000000 0.911195999000000 0.158667203000000 +0.285997634000000 0.950069464000000 0.079333602000000 +0.292493073000000 0.926963553000000 0.228084105000000 +0.298244759000000 0.923542241000000 0.228084105000000 +0.299236429000000 0.931822686000000 0.128917103000000 +0.282576373000000 0.959688663000000 0.317334407000000 +0.298343926000000 0.927112303000000 0.218167405000000 +0.282576373000000 0.944317778000000 0.277667606000000 +0.285948051000000 0.931376484000000 0.525585111000000 +0.282576373000000 0.959688663000000 0.119000403000000 +0.272758839000000 0.968861561000000 0.247917505000000 +0.274395095000000 0.960134915000000 0.525585111000000 +0.280890534000000 0.974910798000000 0.138833803000000 +0.296658087000000 0.921112699000000 0.099167002000000 +0.287633890000000 0.937128170000000 0.138833803000000 +0.302508940000000 0.904353476000000 0.466084910000000 +0.279849280000000 0.945011947000000 0.505751711000000 +0.285997634000000 0.925228180000000 0.684252315000000 +0.294278079000000 0.945805283000000 0.079333602000000 +0.285997634000000 0.950069464000000 0.238000805000000 +0.304095612000000 0.922104369000000 0.277667606000000 +0.294278079000000 0.949176911000000 0.099167002000000 +0.277618022000000 0.957060738000000 0.049583501000000 +0.290856817000000 0.965836968000000 0.000000000000000 +0.284311795000000 0.996231704000000 0.079333602000000 +0.292592240000000 0.917294770000000 0.575168612000000 +0.277618022000000 0.971985371000000 0.188417304000000 +0.272659672000000 0.957308705000000 0.436334809000000 +0.275981767000000 0.957060738000000 0.188417304000000 +0.285898467000000 0.946995337000000 0.198334004000000 +0.287683473000000 0.927806472000000 0.495835011000000 +0.282576373000000 0.987058805000000 0.218167405000000 +0.279849280000000 0.945011947000000 0.426418109000000 +0.284262212000000 0.934847280000000 0.109083702000000 +0.294228495000000 0.933111907000000 0.297501006000000 +0.284262212000000 0.965737850000000 0.148750503000000 +0.285948051000000 0.937425671000000 0.198334004000000 +0.284311795000000 0.941045217000000 0.178500604000000 +0.280940117000000 0.941541102000000 0.208250704000000 +0.277568439000000 0.953837810000000 0.099167002000000 +0.292542656000000 0.913476840000000 0.009916700000000 +0.302508940000000 0.907576354000000 0.128917103000000 +0.302508940000000 0.917790654000000 0.009916700000000 +0.297501006000000 0.908815942000000 0.069416901000000 +0.284262212000000 0.971737454000000 0.019833400000000 +0.280840950000000 0.971787087000000 0.257834206000000 +0.294228495000000 0.907030935000000 0.565251912000000 +0.279303862000000 0.956812820000000 0.396668009000000 +0.304095612000000 0.910948082000000 0.366917908000000 +0.297550590000000 0.948780343000000 0.000000000000000 +0.290906401000000 0.911195999000000 0.208250704000000 +0.297401839000000 0.922501037000000 0.079333602000000 +0.272709256000000 0.966134568000000 0.059500201000000 +0.280940117000000 0.932268987000000 0.009916700000000 +0.279353445000000 0.938665259000000 0.267750906000000 +0.280940117000000 0.941541102000000 0.009916700000000 +0.287683473000000 0.927806472000000 0.525585111000000 +0.287534723000000 0.974960382000000 0.079333602000000 +0.304194779000000 0.907526820000000 0.228084105000000 +0.290906401000000 0.933508575000000 0.049583501000000 +0.298244759000000 0.923542241000000 0.307417707000000 +0.287683473000000 0.927806472000000 0.138833803000000 +0.285997634000000 0.925228180000000 0.436334809000000 +0.284311795000000 0.968762444000000 0.039666801000000 +0.290807234000000 0.962267055000000 0.019833400000000 +0.286790970000000 0.948333992000000 0.297501006000000 +0.279254278000000 0.959837414000000 0.089250302000000 +0.272659672000000 0.963159508000000 0.128917103000000 +0.296658087000000 0.930880699000000 0.347084507000000 +0.299186845000000 0.905394779000000 0.525585111000000 +0.282625956000000 0.984034212000000 0.069416901000000 +0.295963918000000 0.932616072000000 0.257834206000000 +0.302360190000000 0.921311033000000 0.208250704000000 +0.282675540000000 0.931971536000000 0.089250302000000 +0.290906401000000 0.927211470000000 0.535501812000000 +0.287633890000000 0.949871180000000 0.188417304000000 +0.281039284000000 0.938516508000000 0.406584709000000 +0.285898467000000 0.959391212000000 0.198334004000000 +0.277766773000000 0.950763633000000 0.634668814000000 +0.277717189000000 0.980612901000000 0.158667203000000 +0.287534723000000 0.959291995000000 0.247917505000000 +0.282625956000000 0.934996129000000 0.039666801000000 +0.285898467000000 0.940747766000000 0.347084507000000 +0.281832620000000 0.942582405000000 0.019833400000000 +0.285948051000000 0.928153557000000 0.089250302000000 +0.292493073000000 0.904452643000000 0.446251510000000 +0.277568439000000 0.953837810000000 0.644585514000000 +0.292493073000000 0.939855263000000 0.029750101000000 +0.302459357000000 0.928351891000000 0.228084105000000 +0.277568439000000 0.953837810000000 0.366917908000000 +0.284311795000000 0.996231704000000 0.109083702000000 +0.299137262000000 0.915311479000000 0.297501006000000 +0.289220562000000 0.946499452000000 0.238000805000000 +0.287584306000000 0.990727935000000 0.158667203000000 +0.302459357000000 0.928351891000000 0.000000000000000 +0.285898467000000 0.959391212000000 0.277667606000000 +0.294129328000000 0.916798885000000 0.575168612000000 +0.281039284000000 0.965787434000000 0.029750101000000 +0.279204695000000 0.950813167000000 0.555335212000000 +0.285948051000000 0.931376484000000 0.049583501000000 +0.285948051000000 0.993405494000000 0.069416901000000 +0.285948051000000 0.993405494000000 0.049583501000000 +0.282625956000000 0.938070257000000 0.208250704000000 +0.290856817000000 0.924087709000000 0.228084105000000 +0.300823101000000 0.904799728000000 0.446251510000000 +0.282526789000000 0.977935392000000 0.208250704000000 +0.284262212000000 0.934847280000000 0.079333602000000 +0.292344322000000 0.972034905000000 0.109083702000000 +0.271866336000000 0.964349562000000 0.317334407000000 +0.300823101000000 0.918236856000000 0.416501409000000 +0.302409773000000 0.934847280000000 0.208250704000000 +0.274295928000000 0.963010758000000 0.505751711000000 +0.289270145000000 0.927508971000000 0.099167002000000 +0.297501006000000 0.919278060000000 0.000000000000000 +0.300723934000000 0.915063512000000 0.485918310000000 +0.277667606000000 0.965985817000000 0.376834608000000 +0.279303862000000 0.974811681000000 0.386751308000000 +0.282675540000000 0.993058359000000 0.049583501000000 +0.285948051000000 0.978133726000000 0.099167002000000 +0.292592240000000 0.933211123000000 0.128917103000000 +0.287584306000000 0.934103577000000 0.128917103000000 +0.290906401000000 0.959044078000000 0.009916700000000 +0.280940117000000 0.956614437000000 0.188417304000000 +0.285948051000000 0.931376484000000 0.357001208000000 +0.291005568000000 0.914567677000000 0.297501006000000 +0.287633890000000 0.930831066000000 0.297501006000000 +0.285848884000000 0.983984579000000 0.109083702000000 +0.289270145000000 0.933954826000000 0.238000805000000 +0.285898467000000 0.946995337000000 0.019833400000000 +0.292592240000000 0.917294770000000 0.317334407000000 +0.302459357000000 0.928351891000000 0.208250704000000 +0.295864751000000 0.906535150000000 0.803252717000000 +0.290906401000000 0.911195999000000 0.624752113000000 +0.295716000000000 0.922897705000000 0.089250302000000 +0.285848884000000 0.943772359000000 0.059500201000000 +0.285948051000000 0.931376484000000 0.039666801000000 +0.279303862000000 0.956812820000000 0.297501006000000 +0.290906401000000 0.933508575000000 0.317334407000000 +0.289220562000000 0.971886155000000 0.069416901000000 +0.274444678000000 0.971886155000000 0.039666801000000 +0.284311795000000 0.941045217000000 0.188417304000000 +0.280940117000000 0.932268987000000 0.188417304000000 +0.297550590000000 0.916104716000000 0.357001208000000 +0.277717189000000 0.980612901000000 0.178500604000000 +0.287584306000000 0.924831462000000 0.119000403000000 +0.292443489000000 0.972084538000000 0.009916700000000 +0.276080934000000 0.951061134000000 0.386751308000000 +0.281832620000000 0.939706512000000 0.247917505000000 +0.299137262000000 0.915311479000000 0.000000000000000 +0.286691803000000 0.942185687000000 0.168583904000000 +0.284163045000000 0.959490280000000 0.049583501000000 +0.297550590000000 0.928798192000000 0.059500201000000 +0.285948051000000 0.931376484000000 0.238000805000000 +0.292493073000000 0.942929440000000 0.119000403000000 +0.292493073000000 0.926963553000000 0.158667203000000 +0.284311795000000 0.941045217000000 0.257834206000000 +0.299137262000000 0.938863642000000 0.198334004000000 +0.299236429000000 0.931822686000000 0.069416901000000 +0.281039284000000 0.950565349000000 0.297501006000000 +0.289220562000000 0.943474858000000 0.000000000000000 +0.298343926000000 0.927112303000000 0.128917103000000 +0.284262212000000 0.943970693000000 0.188417304000000 +0.297550590000000 0.928798192000000 0.188417304000000 +0.290856817000000 0.930335231000000 0.218167405000000 +0.280940117000000 0.986810838000000 0.327251107000000 +0.304145196000000 0.914022259000000 0.446251510000000 +0.285898467000000 0.999851249000000 0.158667203000000 +0.282576373000000 0.974910798000000 0.218167405000000 +0.302360190000000 0.921311033000000 0.188417304000000 +0.289220562000000 0.952647806000000 0.238000805000000 +0.274444678000000 0.968960778000000 0.228084105000000 +0.295914334000000 0.935888583000000 0.148750503000000 +0.291005568000000 0.914567677000000 0.267750906000000 +0.279204695000000 0.950813167000000 0.545418512000000 +0.280940117000000 0.932268987000000 0.059500201000000 +0.279303862000000 0.983835828000000 0.287584306000000 +0.292542656000000 0.913476840000000 0.317334407000000 +0.290906401000000 0.952697390000000 0.000000000000000 +0.302508940000000 0.924980212000000 0.079333602000000 +0.292443489000000 0.975109132000000 0.019833400000000 +0.280890534000000 0.977786641000000 0.119000403000000 +0.290856817000000 0.924087709000000 0.357001208000000 +0.276031350000000 0.959986164000000 0.595002013000000 +0.305880618000000 0.917046852000000 0.059500201000000 +0.290906401000000 0.933508575000000 0.247917505000000 +0.282675540000000 0.931971536000000 0.019833400000000 +0.295914334000000 0.925922349000000 0.337167807000000 +0.274444678000000 0.971886155000000 0.138833803000000 +0.305682284000000 0.920071446000000 0.049583501000000 +0.296658087000000 0.921112699000000 0.277667606000000 +0.277618022000000 0.959936630000000 0.178500604000000 +0.294129328000000 0.916798885000000 0.357001208000000 +0.276080934000000 0.951061134000000 0.119000403000000 +0.297550590000000 0.916104716000000 0.307417707000000 +0.292592240000000 0.929988146000000 0.099167002000000 +0.300872684000000 0.901576800000000 0.396668009000000 +0.294228495000000 0.952350355000000 0.089250302000000 +0.295864751000000 0.906535150000000 0.535501812000000 +0.292592240000000 0.933211123000000 0.039666801000000 +0.292443489000000 0.975109132000000 0.089250302000000 +0.279303862000000 0.956812820000000 0.406584709000000 +0.284212628000000 0.931872319000000 0.357001208000000 +0.272858006000000 0.960085331000000 0.168583904000000 +0.285948051000000 0.993405494000000 0.208250704000000 +0.300773517000000 0.921608534000000 0.218167405000000 +0.294228495000000 0.929591478000000 0.307417707000000 +0.284262212000000 0.934847280000000 0.059500201000000 +0.299137262000000 0.918633524000000 0.000000000000000 +0.277667606000000 0.965985817000000 0.009916700000000 +0.289170978000000 0.962316589000000 0.168583904000000 +0.279303862000000 0.977786641000000 0.347084507000000 +0.299186845000000 0.952052754000000 0.089250302000000 +0.271866336000000 0.964349562000000 0.128917103000000 +0.295815167000000 0.916947636000000 0.208250704000000 +0.280890534000000 0.977786641000000 0.337167807000000 +0.287485139000000 0.943574025000000 0.049583501000000 +0.287633890000000 0.930831066000000 0.317334407000000 +0.280940117000000 0.956614437000000 0.416501409000000 +0.302360190000000 0.914418927000000 0.228084105000000 +0.289270145000000 0.920666398000000 0.029750101000000 +0.279204695000000 0.950813167000000 0.247917505000000 +0.290906401000000 0.908022655000000 0.287584306000000 +0.279799697000000 0.944565695000000 0.446251510000000 +0.282725123000000 0.950366965000000 0.168583904000000 +0.279204695000000 0.950813167000000 0.624752113000000 +0.300823101000000 0.934996129000000 0.178500604000000 +0.282625956000000 0.984034212000000 0.089250302000000 +0.300823101000000 0.904799728000000 0.168583904000000 +0.296707670000000 0.924286043000000 0.228084105000000 +0.298343926000000 0.927112303000000 0.287584306000000 +0.281039284000000 0.950565349000000 0.456168210000000 +0.292542656000000 0.913476840000000 0.426418109000000 +0.282576373000000 0.947193621000000 0.138833803000000 +0.287584306000000 0.940450265000000 0.069416901000000 +0.290906401000000 0.908022655000000 0.109083702000000 +0.277766773000000 0.950763633000000 0.376834608000000 +0.302508940000000 0.931475651000000 0.089250302000000 +0.277618022000000 0.971985371000000 0.000000000000000 +0.290906401000000 0.908022655000000 0.168583904000000 +0.287633890000000 0.946747369000000 0.277667606000000 +0.287534723000000 0.987505007000000 0.099167002000000 +0.285948051000000 0.937425671000000 0.109083702000000 +0.294327662000000 0.910353129000000 0.604918713000000 +0.295963918000000 0.913030589000000 0.277667606000000 +0.287485139000000 0.943574025000000 0.019833400000000 +0.290807234000000 0.939954479000000 0.109083702000000 +0.289270145000000 0.930831066000000 0.029750101000000 +0.285105131000000 0.942185687000000 0.019833400000000 +0.295021831000000 0.924682761000000 0.119000403000000 +0.287633890000000 0.946747369000000 0.099167002000000 +0.287485139000000 0.952895674000000 0.099167002000000 +0.285948051000000 0.931376484000000 0.505751711000000 +0.302409773000000 0.911096832000000 0.218167405000000 +0.295815167000000 0.916947636000000 0.287584306000000 +0.279303862000000 0.974811681000000 0.188417304000000 +0.284163045000000 0.959490280000000 0.059500201000000 +0.302409773000000 0.911096832000000 0.476001610000000 +0.271866336000000 0.964349562000000 0.099167002000000 +0.297550590000000 0.928798192000000 0.238000805000000 +0.290807234000000 0.939954479000000 0.128917103000000 +0.282625956000000 0.928798192000000 0.009916700000000 +0.284212628000000 0.962564506000000 0.267750906000000 +0.305731868000000 0.910055529000000 0.466084910000000 +0.294228495000000 0.952350355000000 0.109083702000000 +0.294178912000000 0.936285251000000 0.267750906000000 +0.280940117000000 0.929393144000000 0.297501006000000 +0.277618022000000 0.974811681000000 0.019833400000000 +0.296658087000000 0.930880699000000 0.238000805000000 +0.285898467000000 0.959391212000000 0.247917505000000 +0.291005568000000 0.914567677000000 0.495835011000000 +0.285105131000000 0.939210677000000 0.347084507000000 +0.290807234000000 0.939954479000000 0.148750503000000 +0.290906401000000 0.908022655000000 0.505751711000000 +0.296707670000000 0.924286043000000 0.079333602000000 +0.284262212000000 0.971737454000000 0.109083702000000 +0.287584306000000 0.984331663000000 0.119000403000000 +0.305731868000000 0.923641458000000 0.317334407000000 +0.285997634000000 0.965638683000000 0.019833400000000 +0.284262212000000 0.934847280000000 0.099167002000000 +0.298343926000000 0.927112303000000 0.049583501000000 +0.285105131000000 0.945408615000000 0.317334407000000 +0.271866336000000 0.964349562000000 0.723919116000000 +0.302508940000000 0.917790654000000 0.287584306000000 +0.294228495000000 0.929591478000000 0.426418109000000 +0.285105131000000 0.939210677000000 0.188417304000000 +0.292493073000000 0.926963553000000 0.466084910000000 +0.284262212000000 0.928153557000000 0.376834608000000 +0.279353445000000 0.938665259000000 0.505751711000000 +0.279303862000000 0.941789019000000 0.049583501000000 +0.307417707000000 0.913328090000000 0.099167002000000 +0.294278079000000 0.912435587000000 0.168583904000000 +0.294278079000000 0.912435587000000 0.595002013000000 +0.307417707000000 0.913328090000000 0.109083702000000 +0.305731868000000 0.910055529000000 0.297501006000000 +0.295963918000000 0.913030589000000 0.654502214000000 +0.281039284000000 0.950565349000000 0.218167405000000 +0.276080934000000 0.977538674000000 0.119000403000000 +0.295963918000000 0.932616072000000 0.099167002000000 +0.282675540000000 0.925971882000000 0.585085313000000 +0.294030161000000 0.920121079000000 0.019833400000000 +0.299186845000000 0.935491915000000 0.069416901000000 +0.290807234000000 0.971836621000000 0.148750503000000 +0.294030161000000 0.920121079000000 0.029750101000000 +0.284311795000000 0.947044870000000 0.337167807000000 +0.280840950000000 0.947491122000000 0.049583501000000 +0.292592240000000 0.933211123000000 0.158667203000000 +0.297550590000000 0.902717220000000 0.595002013000000 +0.284262212000000 0.971737454000000 0.238000805000000 +0.297401839000000 0.922501037000000 0.376834608000000 +0.284311795000000 0.950218215000000 0.049583501000000 +0.304095612000000 0.917294770000000 0.059500201000000 +0.279353445000000 0.965836968000000 0.357001208000000 +0.285154715000000 0.948333992000000 0.128917103000000 +0.287683473000000 0.927806472000000 0.396668009000000 +0.295765584000000 0.952151971000000 0.009916700000000 +0.290856817000000 0.930335231000000 0.436334809000000 +0.296757254000000 0.927806472000000 0.257834206000000 +0.289220562000000 0.971886155000000 0.168583904000000 +0.282625956000000 0.962713257000000 0.287584306000000 +0.300922268000000 0.911245583000000 0.138833803000000 +0.299137262000000 0.915311479000000 0.089250302000000 +0.284311795000000 0.996231704000000 0.089250302000000 +0.275981767000000 0.957060738000000 0.376834608000000 +0.285898467000000 0.996330871000000 0.099167002000000 +0.282576373000000 0.996033369000000 0.069416901000000 +0.277618022000000 0.971985371000000 0.039666801000000 +0.292493073000000 0.942929440000000 0.267750906000000 +0.287633890000000 0.930831066000000 0.426418109000000 +0.274345511000000 0.957110321000000 0.624752113000000 +0.295864751000000 0.906535150000000 0.595002013000000 +0.290807234000000 0.939954479000000 0.307417707000000 +0.277618022000000 0.974811681000000 0.198334004000000 +0.284262212000000 0.965737850000000 0.168583904000000 +0.290906401000000 0.927211470000000 0.029750101000000 +0.282576373000000 0.944317778000000 0.198334004000000 +0.292443489000000 0.975109132000000 0.000000000000000 +0.287485139000000 0.943574025000000 0.178500604000000 +0.276080934000000 0.951061134000000 0.257834206000000 +0.298343926000000 0.927112303000000 0.099167002000000 +0.284361379000000 0.981009618000000 0.138833803000000 +0.282576373000000 0.959688663000000 0.019833400000000 +0.281832620000000 0.945656532000000 0.059500201000000 +0.299236429000000 0.931822686000000 0.138833803000000 +0.283419292000000 0.939706512000000 0.238000805000000 +0.297451423000000 0.942235271000000 0.218167405000000 +0.290906401000000 0.911195999000000 0.247917505000000 +0.300922268000000 0.908220989000000 0.535501812000000 +0.287584306000000 0.924831462000000 0.446251510000000 +0.272659672000000 0.957308705000000 0.664418914000000 +0.285105131000000 0.942185687000000 0.049583501000000 +0.274295928000000 0.963010758000000 0.515668411000000 +0.295963918000000 0.913030589000000 0.386751308000000 +0.294129328000000 0.923294423000000 0.119000403000000 +0.285749717000000 0.953193274000000 0.168583904000000 +0.282675540000000 0.931971536000000 0.238000805000000 +0.292493073000000 0.926963553000000 0.208250704000000 +0.276080934000000 0.966084935000000 0.396668009000000 +0.274345511000000 0.966134568000000 0.158667203000000 +0.294278079000000 0.912435587000000 0.525585111000000 +0.295815167000000 0.916947636000000 0.317334407000000 +0.282625956000000 0.934996129000000 0.128917103000000 +0.302409773000000 0.911096832000000 0.535501812000000 +0.285997634000000 0.971787087000000 0.128917103000000 +0.292542656000000 0.913476840000000 0.585085313000000 +0.302508940000000 0.917790654000000 0.158667203000000 +0.290856817000000 0.930335231000000 0.277667606000000 +0.300773517000000 0.928351891000000 0.059500201000000 +0.282725123000000 0.965836968000000 0.029750101000000 +0.292542656000000 0.907576354000000 0.545418512000000 +0.287534723000000 0.974960382000000 0.069416901000000 +0.297501006000000 0.906287233000000 0.089250302000000 +0.297550590000000 0.916104716000000 0.565251912000000 +0.281039284000000 0.950565349000000 0.198334004000000 +0.291005568000000 0.914567677000000 0.029750101000000 +0.287633890000000 0.946747369000000 0.000000000000000 +0.284262212000000 0.928153557000000 0.128917103000000 +0.279353445000000 0.938665259000000 0.327251107000000 +0.290906401000000 0.933508575000000 0.089250302000000 +0.299186845000000 0.905394779000000 0.158667203000000 +0.297401839000000 0.922501037000000 0.347084507000000 +0.284262212000000 0.928153557000000 0.138833803000000 +0.294228495000000 0.929591478000000 0.366917908000000 +0.294030161000000 0.920121079000000 0.267750906000000 +0.298294342000000 0.930434348000000 0.128917103000000 +0.299137262000000 0.908815942000000 0.525585111000000 +0.298294342000000 0.920468114000000 0.327251107000000 +0.304194779000000 0.907526820000000 0.218167405000000 +0.302409773000000 0.911096832000000 0.238000805000000 +0.302409773000000 0.911096832000000 0.267750906000000 +0.282675540000000 0.931971536000000 0.178500604000000 +0.290906401000000 0.911195999000000 0.287584306000000 +0.290906401000000 0.927211470000000 0.366917908000000 +0.281039284000000 0.968861561000000 0.009916700000000 +0.284212628000000 0.931872319000000 0.158667203000000 +0.285948051000000 0.937425671000000 0.099167002000000 +0.281832620000000 0.942582405000000 0.267750906000000 +0.302360190000000 0.914418927000000 0.019833400000000 +0.280940117000000 0.929393144000000 0.178500604000000 +0.281039284000000 0.980811235000000 0.198334004000000 +0.285898467000000 0.959391212000000 0.267750906000000 +0.287683473000000 0.927806472000000 0.099167002000000 +0.284212628000000 0.999652965000000 0.009916700000000 +0.296658087000000 0.921112699000000 0.466084910000000 +0.307417707000000 0.913328090000000 0.069416901000000 +0.297550590000000 0.916104716000000 0.148750503000000 +0.281039284000000 0.968861561000000 0.089250302000000 +0.292592240000000 0.917294770000000 0.565251912000000 +0.279303862000000 0.974811681000000 0.029750101000000 +0.292493073000000 0.955821150000000 0.148750503000000 +0.277717189000000 0.969010312000000 0.337167807000000 +0.291005568000000 0.914567677000000 0.386751308000000 +0.286741387000000 0.945309398000000 0.148750503000000 +0.284361379000000 0.940946100000000 0.099167002000000 +0.274395095000000 0.960134915000000 0.535501812000000 +0.290955984000000 0.921013532000000 0.575168612000000 +0.305731868000000 0.910055529000000 0.277667606000000 +0.285997634000000 0.971787087000000 0.099167002000000 +0.281039284000000 0.941441935000000 0.277667606000000 +0.279204695000000 0.950813167000000 0.148750503000000 +0.289220562000000 0.946499452000000 0.307417707000000 +0.302360190000000 0.914418927000000 0.109083702000000 +0.300872684000000 0.931574818000000 0.188417304000000 +0.294278079000000 0.949176911000000 0.089250302000000 +0.281039284000000 0.950565349000000 0.495835011000000 +0.277618022000000 0.963010758000000 0.337167807000000 +0.299087678000000 0.921806868000000 0.267750906000000 +0.295963918000000 0.913030589000000 0.138833803000000 +0.285105131000000 0.942185687000000 0.218167405000000 +0.297550590000000 0.916104716000000 0.019833400000000 +0.289270145000000 0.930831066000000 0.307417707000000 +0.281039284000000 0.938516508000000 0.505751711000000 +0.290955984000000 0.921013532000000 0.694169015000000 +0.289220562000000 0.946499452000000 0.208250704000000 +0.307516874000000 0.919922695000000 0.277667606000000 +0.295914334000000 0.935888583000000 0.029750101000000 +0.290906401000000 0.936582752000000 0.109083702000000 +0.287633890000000 0.946747369000000 0.119000403000000 +0.282675540000000 0.968861561000000 0.069416901000000 +0.289170978000000 0.940202347000000 0.287584306000000 +0.279254278000000 0.962961224000000 0.000000000000000 +0.294030161000000 0.920121079000000 0.446251510000000 +0.272858006000000 0.960085331000000 0.079333602000000 +0.284311795000000 0.925575214000000 0.555335212000000 +0.287683473000000 0.971687870000000 0.198334004000000 +0.295864751000000 0.906535150000000 0.743752516000000 +0.274494262000000 0.954333645000000 0.614835413000000 +0.285997634000000 0.925228180000000 0.079333602000000 +0.302459357000000 0.928351891000000 0.089250302000000 +0.300922268000000 0.911245583000000 0.436334809000000 +0.272858006000000 0.960085331000000 0.069416901000000 +0.274395095000000 0.960134915000000 0.277667606000000 +0.279204695000000 0.953639476000000 0.247917505000000 +0.282625956000000 0.929046060000000 0.307417707000000 +0.280940117000000 0.929393144000000 0.674335615000000 +0.294228495000000 0.929591478000000 0.277667606000000 +0.299186845000000 0.935491915000000 0.059500201000000 +0.294178912000000 0.936285251000000 0.069416901000000 +0.294228495000000 0.929591478000000 0.000000000000000 +0.272858006000000 0.960085331000000 0.426418109000000 +0.281039284000000 0.965787434000000 0.297501006000000 +0.295864751000000 0.906535150000000 0.406584709000000 +0.300773517000000 0.921608534000000 0.188417304000000 +0.284262212000000 0.943970693000000 0.049583501000000 +0.285898467000000 0.940747766000000 0.089250302000000 +0.287534723000000 0.956118651000000 0.128917103000000 +0.304194779000000 0.907526820000000 0.049583501000000 +0.297501006000000 0.906287233000000 0.238000805000000 +0.304194779000000 0.907526820000000 0.485918310000000 +0.280890534000000 0.977786641000000 0.019833400000000 +0.294278079000000 0.912435587000000 0.456168210000000 +0.287485139000000 0.996727539000000 0.099167002000000 +0.282526789000000 0.977935392000000 0.228084105000000 +0.282625956000000 0.962713257000000 0.317334407000000 +0.300723934000000 0.915063512000000 0.347084507000000 +0.271866336000000 0.964349562000000 0.654502214000000 +0.275981767000000 0.957060738000000 0.396668009000000 +0.290955984000000 0.921013532000000 0.267750906000000 +0.290856817000000 0.955870734000000 0.039666801000000 +0.294129328000000 0.923294423000000 0.426418109000000 +0.300823101000000 0.934996129000000 0.089250302000000 +0.280940117000000 0.929393144000000 0.555335212000000 +0.297550590000000 0.916104716000000 0.545418512000000 +0.292542656000000 0.913476840000000 0.376834608000000 +0.296757254000000 0.927806472000000 0.158667203000000 +0.283419292000000 0.945557365000000 0.029750101000000 +0.294327662000000 0.910353129000000 0.436334809000000 +0.289270145000000 0.949722330000000 0.257834206000000 +0.280989701000000 0.944565695000000 0.376834608000000 +0.289270145000000 0.920666398000000 0.019833400000000 +0.274494262000000 0.954333645000000 0.664418914000000 +0.285848884000000 0.943772359000000 0.138833803000000 +0.299087678000000 0.921806868000000 0.009916700000000 +0.292542656000000 0.945904450000000 0.247917505000000 +0.302508940000000 0.931475651000000 0.267750906000000 +0.295914334000000 0.909807711000000 0.456168210000000 +0.290856817000000 0.943177357000000 0.039666801000000 +0.295914334000000 0.925922349000000 0.436334809000000 +0.292641823000000 0.968613743000000 0.059500201000000 +0.287485139000000 0.952895674000000 0.009916700000000 +0.285997634000000 0.965638683000000 0.089250302000000 +0.285948051000000 0.928153557000000 0.307417707000000 +0.279303862000000 0.974811681000000 0.277667606000000 +0.285898467000000 0.946995337000000 0.178500604000000 +0.294228495000000 0.933111907000000 0.119000403000000 +0.279849280000000 0.945011947000000 0.138833803000000 +0.296658087000000 0.930880699000000 0.297501006000000 +0.276080934000000 0.966084935000000 0.198334004000000 +0.302409773000000 0.911096832000000 0.029750101000000 +0.295021831000000 0.927806472000000 0.000000000000000 +0.285948051000000 0.937425671000000 0.148750503000000 +0.282576373000000 0.947193621000000 0.198334004000000 +0.292592240000000 0.949375295000000 0.208250704000000 +0.285154715000000 0.948333992000000 0.059500201000000 +0.299186845000000 0.952052754000000 0.059500201000000 +0.290906401000000 0.933508575000000 0.079333602000000 +0.303996445000000 0.924236410000000 0.347084507000000 +0.294129328000000 0.923294423000000 0.456168210000000 +0.289220562000000 0.946499452000000 0.119000403000000 +0.297501006000000 0.935591082000000 0.168583904000000 +0.279303862000000 0.941789019000000 0.119000403000000 +0.280940117000000 0.929393144000000 0.039666801000000 +0.290955984000000 0.949524045000000 0.029750101000000 +0.275981767000000 0.957060738000000 0.436334809000000 +0.302508940000000 0.904353476000000 0.218167405000000 +0.286691803000000 0.942185687000000 0.109083702000000 +0.282625956000000 0.934996129000000 0.466084910000000 +0.279204695000000 0.953639476000000 0.039666801000000 +0.279303862000000 0.983835828000000 0.029750101000000 +0.279799697000000 0.944565695000000 0.386751308000000 +0.277618022000000 0.963010758000000 0.485918310000000 +0.290906401000000 0.908022655000000 0.644585514000000 +0.297550590000000 0.916104716000000 0.386751308000000 +0.297550590000000 0.916104716000000 0.257834206000000 +0.280840950000000 0.947491122000000 0.009916700000000 +0.285105131000000 0.945408615000000 0.277667606000000 +0.300922268000000 0.911245583000000 0.039666801000000 +0.289170978000000 0.956069117000000 0.109083702000000 +0.299137262000000 0.908815942000000 0.099167002000000 +0.290807234000000 0.962267055000000 0.158667203000000 +0.294129328000000 0.916798885000000 0.525585111000000 +0.279204695000000 0.950813167000000 0.327251107000000 +0.294178912000000 0.942929440000000 0.287584306000000 +0.272858006000000 0.960085331000000 0.406584709000000 +0.290856817000000 0.943177357000000 0.257834206000000 +0.284361379000000 0.937971090000000 0.287584306000000 +0.295765584000000 0.942532772000000 0.238000805000000 +0.276080934000000 0.966084935000000 0.039666801000000 +0.294228495000000 0.929591478000000 0.337167807000000 +0.282625956000000 0.934996129000000 0.416501409000000 +0.295963918000000 0.913030589000000 0.366917908000000 +0.287633890000000 0.946747369000000 0.019833400000000 +0.287534723000000 0.987505007000000 0.138833803000000 +0.292443489000000 0.972084538000000 0.029750101000000 +0.280989701000000 0.935343164000000 0.476001610000000 +0.287683473000000 0.927806472000000 0.366917908000000 +0.290856817000000 0.930335231000000 0.009916700000000 +0.282576373000000 0.959688663000000 0.277667606000000 +0.285948051000000 0.931376484000000 0.366917908000000 +0.282675540000000 0.931971536000000 0.406584709000000 +0.305880618000000 0.917046852000000 0.109083702000000 +0.276080934000000 0.966084935000000 0.138833803000000 +0.276080934000000 0.977538674000000 0.089250302000000 +0.292542656000000 0.907576354000000 0.436334809000000 +0.284311795000000 0.950218215000000 0.327251107000000 +0.290906401000000 0.936582752000000 0.158667203000000 +0.284361379000000 0.981009618000000 0.000000000000000 +0.274345511000000 0.966134568000000 0.466084910000000 +0.294178912000000 0.958697043000000 0.000000000000000 +0.294228495000000 0.907030935000000 0.704085715000000 +0.287683473000000 0.927806472000000 0.476001610000000 +0.295716000000000 0.922897705000000 0.019833400000000 +0.295963918000000 0.913030589000000 0.565251912000000 +0.281039284000000 0.968861561000000 0.059500201000000 +0.302508940000000 0.931475651000000 0.287584306000000 +0.296658087000000 0.930880699000000 0.357001208000000 +0.275981767000000 0.962911591000000 0.386751308000000 +0.272659672000000 0.963159508000000 0.069416901000000 +0.279353445000000 0.968911194000000 0.228084105000000 +0.295815167000000 0.916947636000000 0.247917505000000 +0.302508940000000 0.917790654000000 0.446251510000000 +0.299286012000000 0.912138135000000 0.545418512000000 +0.274395095000000 0.960134915000000 0.079333602000000 +0.285948051000000 0.937425671000000 0.039666801000000 +0.280989701000000 0.944565695000000 0.366917908000000 +0.300823101000000 0.918236856000000 0.307417707000000 +0.290856817000000 0.955870734000000 0.049583501000000 +0.282675540000000 0.925971882000000 0.505751711000000 +0.282625956000000 0.962713257000000 0.148750503000000 +0.284311795000000 0.950218215000000 0.069416901000000 +0.290955984000000 0.921013532000000 0.297501006000000 +0.287683473000000 0.927806472000000 0.109083702000000 +0.297501006000000 0.908815942000000 0.257834206000000 +0.292592240000000 0.929988146000000 0.059500201000000 +0.297501006000000 0.935591082000000 0.198334004000000 +0.292542656000000 0.920368947000000 0.000000000000000 +0.295021831000000 0.924682761000000 0.188417304000000 +0.296658087000000 0.921112699000000 0.505751711000000 +0.302360190000000 0.914418927000000 0.366917908000000 +0.272858006000000 0.960085331000000 0.416501409000000 +0.277717189000000 0.980612901000000 0.079333602000000 +0.285948051000000 0.993405494000000 0.009916700000000 +0.297501006000000 0.906287233000000 0.019833400000000 +0.284311795000000 0.941045217000000 0.089250302000000 +0.279204695000000 0.953639476000000 0.307417707000000 +0.296658087000000 0.930880699000000 0.158667203000000 +0.294030161000000 0.920121079000000 0.495835011000000 +0.285898467000000 0.956267402000000 0.138833803000000 +0.292592240000000 0.965489933000000 0.029750101000000 +0.290856817000000 0.924087709000000 0.466084910000000 +0.294278079000000 0.965043681000000 0.000000000000000 +0.292493073000000 0.904452643000000 0.317334407000000 +0.280791367000000 0.962762840000000 0.049583501000000 +0.279204695000000 0.953639476000000 0.188417304000000 +0.305880618000000 0.913427257000000 0.297501006000000 +0.277618022000000 0.963010758000000 0.396668009000000 +0.286691803000000 0.939111461000000 0.327251107000000 +0.297501006000000 0.906287233000000 0.366917908000000 +0.280840950000000 0.947491122000000 0.218167405000000 +0.280989701000000 0.944565695000000 0.178500604000000 +0.302508940000000 0.931475651000000 0.119000403000000 +0.290807234000000 0.962267055000000 0.059500201000000 +0.305880618000000 0.917046852000000 0.357001208000000 +0.297501006000000 0.906287233000000 0.357001208000000 +0.282675540000000 0.980910402000000 0.277667606000000 +0.282625956000000 0.929046060000000 0.198334004000000 +0.279353445000000 0.980712018000000 0.297501006000000 +0.297501006000000 0.906287233000000 0.267750906000000 +0.300823101000000 0.904799728000000 0.664418914000000 +0.294278079000000 0.912435587000000 0.128917103000000 +0.294129328000000 0.939508178000000 0.000000000000000 +0.287584306000000 0.924831462000000 0.386751308000000 +0.282576373000000 0.974910798000000 0.049583501000000 +0.274345511000000 0.966134568000000 0.476001610000000 +0.287584306000000 0.984331663000000 0.128917103000000 +0.277618022000000 0.974811681000000 0.009916700000000 +0.299137262000000 0.938863642000000 0.287584306000000 +0.295765584000000 0.920170613000000 0.148750503000000 +0.285948051000000 0.931376484000000 0.347084507000000 +0.295914334000000 0.935888583000000 0.297501006000000 +0.290856817000000 0.965836968000000 0.029750101000000 +0.279303862000000 0.941789019000000 0.228084105000000 +0.285997634000000 0.968762444000000 0.188417304000000 +0.299236429000000 0.931822686000000 0.158667203000000 +0.272659672000000 0.957308705000000 0.505751711000000 +0.279254278000000 0.959837414000000 0.485918310000000 +0.284262212000000 0.934847280000000 0.347084507000000 +0.287633890000000 0.968762444000000 0.029750101000000 +0.281039284000000 0.968861561000000 0.188417304000000 +0.285997634000000 0.950069464000000 0.049583501000000 +0.292542656000000 0.907576354000000 0.515668411000000 +0.284212628000000 0.931872319000000 0.495835011000000 +0.300773517000000 0.921608534000000 0.238000805000000 +0.289270145000000 0.949722330000000 0.247917505000000 +0.299137262000000 0.908815942000000 0.029750101000000 +0.281039284000000 0.959936630000000 0.396668009000000 +0.300823101000000 0.918236856000000 0.257834206000000 +0.300773517000000 0.921608534000000 0.019833400000000 +0.297451423000000 0.938962760000000 0.128917103000000 +0.284262212000000 0.934847280000000 0.416501409000000 +0.298244759000000 0.923542241000000 0.297501006000000 +0.297501006000000 0.908815942000000 0.009916700000000 +0.292542656000000 0.907576354000000 0.228084105000000 +0.300872684000000 0.901576800000000 0.337167807000000 +0.292542656000000 0.945904450000000 0.168583904000000 +0.292443489000000 0.972084538000000 0.069416901000000 +0.284361379000000 0.981009618000000 0.109083702000000 +0.275981767000000 0.962911591000000 0.565251912000000 +0.274345511000000 0.957110321000000 0.128917103000000 +0.295021831000000 0.927806472000000 0.337167807000000 +0.296707670000000 0.924286043000000 0.158667203000000 +0.285749717000000 0.953193274000000 0.039666801000000 +0.292493073000000 0.942929440000000 0.069416901000000 +0.297501006000000 0.919278060000000 0.148750503000000 +0.289270145000000 0.920666398000000 0.743752516000000 +0.292592240000000 0.949375295000000 0.168583904000000 +0.279353445000000 0.965836968000000 0.059500201000000 +0.277667606000000 0.965985817000000 0.029750101000000 +0.294178912000000 0.936285251000000 0.099167002000000 +0.287633890000000 0.968762444000000 0.158667203000000 +0.294228495000000 0.933111907000000 0.178500604000000 +0.294129328000000 0.916798885000000 0.208250704000000 +0.281039284000000 0.992909609000000 0.109083702000000 +0.305731868000000 0.923641458000000 0.119000403000000 +0.277667606000000 0.965985817000000 0.446251510000000 +0.298244759000000 0.923542241000000 0.109083702000000 +0.279303862000000 0.941789019000000 0.188417304000000 +0.279353445000000 0.938665259000000 0.000000000000000 +0.282675540000000 0.931971536000000 0.218167405000000 +0.282725123000000 0.950366965000000 0.049583501000000 +0.294129328000000 0.939508178000000 0.238000805000000 +0.283419292000000 0.945557365000000 0.267750906000000 +0.279254278000000 0.962961224000000 0.178500604000000 +0.283419292000000 0.945557365000000 0.317334407000000 +0.284262212000000 0.928153557000000 0.297501006000000 +0.281039284000000 0.968861561000000 0.109083702000000 +0.305731868000000 0.910055529000000 0.505751711000000 +0.279303862000000 0.977786641000000 0.168583904000000 +0.294129328000000 0.923294423000000 0.267750906000000 +0.300872684000000 0.901576800000000 0.505751711000000 +0.277618022000000 0.974811681000000 0.029750101000000 +0.277568439000000 0.953837810000000 0.545418512000000 +0.302508940000000 0.917790654000000 0.406584709000000 +0.285948051000000 0.937425671000000 0.009916700000000 +0.292542656000000 0.907576354000000 0.188417304000000 +0.282576373000000 0.959688663000000 0.059500201000000 +0.282625956000000 0.956515319000000 0.109083702000000 +0.299087678000000 0.921806868000000 0.188417304000000 +0.279303862000000 0.974811681000000 0.059500201000000 +0.279303862000000 0.983835828000000 0.009916700000000 +0.287534723000000 0.959291995000000 0.128917103000000 +0.294228495000000 0.907030935000000 0.515668411000000 +0.282675540000000 0.980910402000000 0.158667203000000 +0.298294342000000 0.920468114000000 0.357001208000000 +0.285997634000000 0.965638683000000 0.218167405000000 +0.294129328000000 0.916798885000000 0.604918713000000 +0.282675540000000 0.931971536000000 0.396668009000000 +0.279849280000000 0.945011947000000 0.376834608000000 +0.295815167000000 0.916947636000000 0.238000805000000 +0.297501006000000 0.919278060000000 0.039666801000000 +0.290955984000000 0.949524045000000 0.019833400000000 +0.302508940000000 0.904353476000000 0.178500604000000 +0.279799697000000 0.944565695000000 0.039666801000000 +0.285997634000000 0.925228180000000 0.446251510000000 +0.297550590000000 0.902717220000000 0.218167405000000 +0.281039284000000 0.941441935000000 0.119000403000000 +0.290906401000000 0.911195999000000 0.585085313000000 +0.304145196000000 0.914022259000000 0.238000805000000 +0.289220562000000 0.943474858000000 0.297501006000000 +0.284212628000000 0.987058805000000 0.079333602000000 +0.289220562000000 0.952647806000000 0.079333602000000 +0.279353445000000 0.980712018000000 0.099167002000000 +0.294228495000000 0.933111907000000 0.109083702000000 +0.277667606000000 0.965985817000000 0.059500201000000 +0.275981767000000 0.962911591000000 0.495835011000000 +0.304095612000000 0.910948082000000 0.019833400000000 +0.277766773000000 0.950763633000000 0.327251107000000 +0.292542656000000 0.945904450000000 0.049583501000000 +0.286096801000000 0.990232149000000 0.228084105000000 +0.287534723000000 0.987505007000000 0.059500201000000 +0.289270145000000 0.933954826000000 0.307417707000000 +0.287683473000000 0.971687870000000 0.029750101000000 +0.299137262000000 0.941888236000000 0.178500604000000 +0.279849280000000 0.945011947000000 0.208250704000000 +0.287534723000000 0.956118651000000 0.069416901000000 +0.281832620000000 0.939706512000000 0.347084507000000 +0.280890534000000 0.974910798000000 0.357001208000000 +0.284311795000000 0.947044870000000 0.277667606000000 +0.271122584000000 0.966134568000000 0.009916700000000 +0.280840950000000 0.947491122000000 0.188417304000000 +0.297501006000000 0.906287233000000 0.525585111000000 +0.292493073000000 0.942929440000000 0.009916700000000 +0.284262212000000 0.934847280000000 0.238000805000000 +0.279303862000000 0.974811681000000 0.128917103000000 +0.298343926000000 0.927112303000000 0.079333602000000 +0.287633890000000 0.946747369000000 0.148750503000000 +0.279849280000000 0.945011947000000 0.347084507000000 +0.284311795000000 0.993355860000000 0.000000000000000 +0.285997634000000 0.981108736000000 0.119000403000000 +0.286096801000000 0.990232149000000 0.238000805000000 +0.300872684000000 0.901576800000000 0.515668411000000 +0.276080934000000 0.977538674000000 0.049583501000000 +0.274444678000000 0.968960778000000 0.406584709000000 +0.282625956000000 0.928798192000000 0.247917505000000 +0.282675540000000 0.993058359000000 0.109083702000000 +0.285898467000000 0.946995337000000 0.128917103000000 +0.280989701000000 0.944565695000000 0.119000403000000 +0.282625956000000 0.929046060000000 0.495835011000000 +0.274395095000000 0.960134915000000 0.178500604000000 +0.282625956000000 0.938070257000000 0.039666801000000 +0.297451423000000 0.942235271000000 0.257834206000000 +0.284311795000000 0.925575214000000 0.485918310000000 +0.300872684000000 0.931574818000000 0.019833400000000 +0.287584306000000 0.934103577000000 0.386751308000000 +0.284212628000000 0.962564506000000 0.178500604000000 +0.294129328000000 0.923294423000000 0.228084105000000 +0.292493073000000 0.926963553000000 0.485918310000000 +0.299137262000000 0.955523699000000 0.128917103000000 +0.282675540000000 0.971935788000000 0.069416901000000 +0.292542656000000 0.923641458000000 0.188417304000000 +0.290906401000000 0.908022655000000 0.000000000000000 +0.285948051000000 0.993405494000000 0.148750503000000 +0.297550590000000 0.916104716000000 0.446251510000000 +0.275932183000000 0.954036144000000 0.386751308000000 +0.290906401000000 0.911195999000000 0.059500201000000 +0.296658087000000 0.921112699000000 0.208250704000000 +0.295914334000000 0.935888583000000 0.337167807000000 +0.295021831000000 0.927806472000000 0.357001208000000 +0.289270145000000 0.920666398000000 0.128917103000000 +0.280840950000000 0.947491122000000 0.109083702000000 +0.280890534000000 0.953639476000000 0.466084910000000 +0.294327662000000 0.910353129000000 0.317334407000000 +0.292592240000000 0.952598223000000 0.049583501000000 +0.298244759000000 0.923542241000000 0.376834608000000 +0.295815167000000 0.945706116000000 0.188417304000000 +0.276080934000000 0.951061134000000 0.019833400000000 +0.285154715000000 0.948333992000000 0.119000403000000 +0.285948051000000 0.978133726000000 0.079333602000000 +0.290906401000000 0.927211470000000 0.198334004000000 +0.292493073000000 0.926963553000000 0.178500604000000 +0.302508940000000 0.904353476000000 0.347084507000000 +0.277618022000000 0.974811681000000 0.158667203000000 +0.274494262000000 0.954333645000000 0.456168210000000 +0.290856817000000 0.943177357000000 0.049583501000000 +0.279799697000000 0.944565695000000 0.495835011000000 +0.287534723000000 0.974960382000000 0.039666801000000 +0.294129328000000 0.939508178000000 0.178500604000000 +0.294178912000000 0.926517301000000 0.059500201000000 +0.280940117000000 0.941541102000000 0.456168210000000 +0.274494262000000 0.954333645000000 0.128917103000000 +0.284311795000000 0.925575214000000 0.545418512000000 +0.276080934000000 0.951061134000000 0.595002013000000 +0.283419292000000 0.939706512000000 0.119000403000000 +0.289270145000000 0.920666398000000 0.138833803000000 +0.272758839000000 0.968861561000000 0.238000805000000 +0.279799697000000 0.944565695000000 0.267750906000000 +0.279303862000000 0.956812820000000 0.267750906000000 +0.285898467000000 0.996330871000000 0.148750503000000 +0.294178912000000 0.936285251000000 0.059500201000000 +0.284163045000000 0.959490280000000 0.287584306000000 +0.282625956000000 0.928798192000000 0.495835011000000 +0.277766773000000 0.950763633000000 0.446251510000000 +0.284361379000000 0.937971090000000 0.128917103000000 +0.287683473000000 0.927806472000000 0.089250302000000 +0.280940117000000 0.929393144000000 0.495835011000000 +0.279254278000000 0.959837414000000 0.446251510000000 +0.292542656000000 0.913476840000000 0.039666801000000 +0.285848884000000 0.987257090000000 0.039666801000000 +0.307417707000000 0.913328090000000 0.247917505000000 +0.272659672000000 0.957308705000000 0.099167002000000 +0.298294342000000 0.920468114000000 0.386751308000000 +0.272858006000000 0.960085331000000 0.287584306000000 +0.282675540000000 0.931971536000000 0.267750906000000 +0.287633890000000 0.930831066000000 0.366917908000000 +0.294327662000000 0.910353129000000 0.128917103000000 +0.299137262000000 0.915311479000000 0.019833400000000 +0.290906401000000 0.959044078000000 0.168583904000000 +0.305880618000000 0.917046852000000 0.009916700000000 +0.272709256000000 0.966134568000000 0.525585111000000 +0.292592240000000 0.952598223000000 0.019833400000000 +0.276080934000000 0.966084935000000 0.257834206000000 +0.300872684000000 0.924881045000000 0.277667606000000 +0.300872684000000 0.901576800000000 0.158667203000000 +0.290856817000000 0.975109132000000 0.019833400000000 +0.279254278000000 0.959837414000000 0.128917103000000 +0.281039284000000 0.980811235000000 0.029750101000000 +0.294228495000000 0.907030935000000 0.614835413000000 +0.305731868000000 0.910055529000000 0.376834608000000 +0.282725123000000 0.950366965000000 0.178500604000000 +0.294228495000000 0.929591478000000 0.297501006000000 +0.294278079000000 0.912435587000000 0.178500604000000 +0.295963918000000 0.932616072000000 0.188417304000000 +0.280940117000000 0.986810838000000 0.277667606000000 +0.305880618000000 0.917046852000000 0.366917908000000 +0.274345511000000 0.957110321000000 0.198334004000000 +0.276080934000000 0.951061134000000 0.456168210000000 +0.294129328000000 0.962217422000000 0.059500201000000 +0.277766773000000 0.950763633000000 0.614835413000000 +0.295914334000000 0.925922349000000 0.456168210000000 +0.292493073000000 0.926963553000000 0.238000805000000 +0.292493073000000 0.955821150000000 0.138833803000000 +0.277618022000000 0.957060738000000 0.337167807000000 +0.297501006000000 0.919278060000000 0.168583904000000 +0.280940117000000 0.932268987000000 0.307417707000000 +0.285898467000000 0.959391212000000 0.257834206000000 +0.292542656000000 0.920368947000000 0.277667606000000 +0.280890534000000 0.983885362000000 0.218167405000000 +0.280940117000000 0.932268987000000 0.426418109000000 +0.290856817000000 0.930335231000000 0.059500201000000 +0.283419292000000 0.942780689000000 0.009916700000000 +0.299137262000000 0.918633524000000 0.307417707000000 +0.299087678000000 0.921806868000000 0.247917505000000 +0.279353445000000 0.980712018000000 0.357001208000000 +0.294129328000000 0.916798885000000 0.079333602000000 +0.292542656000000 0.907576354000000 0.525585111000000 +0.304194779000000 0.907526820000000 0.000000000000000 +0.284163045000000 0.959490280000000 0.198334004000000 +0.300922268000000 0.908220989000000 0.456168210000000 +0.277766773000000 0.950763633000000 0.525585111000000 +0.285948051000000 0.931376484000000 0.386751308000000 +0.281832620000000 0.945656532000000 0.376834608000000 +0.302409773000000 0.911096832000000 0.396668009000000 +0.282576373000000 0.996033369000000 0.089250302000000 +0.296658087000000 0.921112699000000 0.218167405000000 +0.287633890000000 0.946747369000000 0.029750101000000 +0.285948051000000 0.934351494000000 0.119000403000000 +0.281039284000000 0.965787434000000 0.238000805000000 +0.295815167000000 0.945706116000000 0.039666801000000 +0.302508940000000 0.907576354000000 0.456168210000000 +0.277618022000000 0.974811681000000 0.347084507000000 +0.297600173000000 0.912633921000000 0.555335212000000 +0.271122584000000 0.966134568000000 0.337167807000000 +0.285749717000000 0.953193274000000 0.287584306000000 +0.307516874000000 0.919922695000000 0.307417707000000 +0.302508940000000 0.924980212000000 0.119000403000000 +0.287584306000000 0.934103577000000 0.426418109000000 +0.274494262000000 0.954333645000000 0.674335615000000 +0.290856817000000 0.930335231000000 0.396668009000000 +0.285105131000000 0.942185687000000 0.238000805000000 +0.279353445000000 0.980712018000000 0.228084105000000 +0.289270145000000 0.933954826000000 0.079333602000000 +0.295021831000000 0.927806472000000 0.317334407000000 +0.274444678000000 0.968960778000000 0.466084910000000 +0.300922268000000 0.908220989000000 0.366917908000000 +0.279353445000000 0.938665259000000 0.119000403000000 +0.279353445000000 0.947491122000000 0.515668411000000 +0.289170978000000 0.956069117000000 0.000000000000000 +0.300823101000000 0.904799728000000 0.238000805000000 +0.292542656000000 0.923641458000000 0.049583501000000 +0.274345511000000 0.957110321000000 0.604918713000000 +0.300922268000000 0.908220989000000 0.029750101000000 +0.280940117000000 0.956614437000000 0.099167002000000 +0.285105131000000 0.945408615000000 0.257834206000000 +0.289270145000000 0.920666398000000 0.277667606000000 +0.285948051000000 0.928153557000000 0.267750906000000 +0.277667606000000 0.965985817000000 0.039666801000000 +0.282725123000000 0.965836968000000 0.109083702000000 +0.297501006000000 0.906287233000000 0.515668411000000 +0.304145196000000 0.914022259000000 0.039666801000000 +0.292542656000000 0.907576354000000 0.624752113000000 +0.272659672000000 0.957308705000000 0.158667203000000 +0.274345511000000 0.957110321000000 0.495835011000000 +0.279303862000000 0.983835828000000 0.238000805000000 +0.274345511000000 0.957110321000000 0.099167002000000 +0.282526789000000 0.977935392000000 0.277667606000000 +0.294129328000000 0.916798885000000 0.495835011000000 +0.294278079000000 0.912435587000000 0.099167002000000 +0.282725123000000 0.950366965000000 0.228084105000000 +0.279799697000000 0.944565695000000 0.357001208000000 +0.297501006000000 0.908815942000000 0.287584306000000 +0.275981767000000 0.974811681000000 0.079333602000000 +0.279303862000000 0.983835828000000 0.019833400000000 +0.292443489000000 0.975109132000000 0.029750101000000 +0.272709256000000 0.966134568000000 0.009916700000000 +0.276080934000000 0.951061134000000 0.525585111000000 +0.286691803000000 0.939111461000000 0.119000403000000 +0.281039284000000 0.938516508000000 0.119000403000000 +0.302360190000000 0.914418927000000 0.317334407000000 +0.272659672000000 0.963159508000000 0.059500201000000 +0.307417707000000 0.913328090000000 0.386751308000000 +0.297550590000000 0.916104716000000 0.247917505000000 +0.290906401000000 0.952697390000000 0.089250302000000 +0.289270145000000 0.930831066000000 0.495835011000000 +0.280940117000000 0.956614437000000 0.436334809000000 +0.286741387000000 0.945309398000000 0.188417304000000 +0.300823101000000 0.934996129000000 0.218167405000000 +0.294178912000000 0.926517301000000 0.178500604000000 +0.284361379000000 0.940946100000000 0.109083702000000 +0.282625956000000 0.962713257000000 0.307417707000000 +0.280840950000000 0.947491122000000 0.198334004000000 +0.289220562000000 0.952647806000000 0.000000000000000 +0.302508940000000 0.904353476000000 0.079333602000000 +0.274444678000000 0.968960778000000 0.049583501000000 +0.282576373000000 0.959688663000000 0.049583501000000 +0.287534723000000 0.959291995000000 0.019833400000000 +0.285948051000000 0.978133726000000 0.049583501000000 +0.300922268000000 0.911245583000000 0.119000403000000 +0.284311795000000 0.925575214000000 0.515668411000000 +0.300823101000000 0.904799728000000 0.525585111000000 +0.285997634000000 0.981108736000000 0.138833803000000 +0.277618022000000 0.963010758000000 0.297501006000000 +0.292592240000000 0.929988146000000 0.029750101000000 +0.292592240000000 0.936384467000000 0.297501006000000 +0.296707670000000 0.924286043000000 0.069416901000000 +0.286691803000000 0.939111461000000 0.307417707000000 +0.279353445000000 0.965836968000000 0.049583501000000 +0.279204695000000 0.953639476000000 0.267750906000000 +0.284262212000000 0.934847280000000 0.158667203000000 +0.285948051000000 0.928153557000000 0.029750101000000 +0.305880618000000 0.913427257000000 0.228084105000000 +0.295864751000000 0.906535150000000 0.714002415000000 +0.284361379000000 0.940946100000000 0.079333602000000 +0.281039284000000 0.950565349000000 0.049583501000000 +0.282675540000000 0.925971882000000 0.138833803000000 +0.277717189000000 0.980612901000000 0.317334407000000 +0.285848884000000 0.983984579000000 0.228084105000000 +0.287633890000000 0.937128170000000 0.287584306000000 +0.294178912000000 0.926517301000000 0.138833803000000 +0.289270145000000 0.920666398000000 0.664418914000000 +0.304095612000000 0.922104369000000 0.029750101000000 +0.292493073000000 0.959044078000000 0.119000403000000 +0.284311795000000 0.993355860000000 0.009916700000000 +0.287534723000000 0.987505007000000 0.178500604000000 +0.282675540000000 0.925971882000000 0.069416901000000 +0.272659672000000 0.957308705000000 0.337167807000000 +0.285898467000000 0.959391212000000 0.039666801000000 +0.299137262000000 0.918633524000000 0.396668009000000 +0.279303862000000 0.956812820000000 0.357001208000000 +0.275981767000000 0.974811681000000 0.287584306000000 +0.298244759000000 0.923542241000000 0.019833400000000 +0.300823101000000 0.918236856000000 0.366917908000000 +0.280989701000000 0.935343164000000 0.525585111000000 +0.287534723000000 0.987505007000000 0.039666801000000 +0.284311795000000 0.990132933000000 0.188417304000000 +0.294228495000000 0.907030935000000 0.476001610000000 +0.302360190000000 0.921311033000000 0.287584306000000 +0.276080934000000 0.977538674000000 0.218167405000000 +0.282725123000000 0.950366965000000 0.188417304000000 +0.274295928000000 0.963010758000000 0.029750101000000 +0.297600173000000 0.912633921000000 0.000000000000000 +0.295864751000000 0.958994494000000 0.069416901000000 +0.280890534000000 0.977786641000000 0.158667203000000 +0.290807234000000 0.939954479000000 0.089250302000000 +0.297501006000000 0.925723965000000 0.257834206000000 +0.282675540000000 0.931971536000000 0.535501812000000 +0.275981767000000 0.974811681000000 0.376834608000000 +0.283468876000000 0.948929043000000 0.257834206000000 +0.296757254000000 0.927806472000000 0.119000403000000 +0.275981767000000 0.957060738000000 0.089250302000000 +0.289220562000000 0.943474858000000 0.218167405000000 +0.297451423000000 0.942235271000000 0.059500201000000 +0.280940117000000 0.986810838000000 0.178500604000000 +0.282725123000000 0.965836968000000 0.188417304000000 +0.299186845000000 0.905394779000000 0.436334809000000 +0.282675540000000 0.925971882000000 0.495835011000000 +0.292542656000000 0.920368947000000 0.446251510000000 +0.289220562000000 0.924385161000000 0.049583501000000 +0.297550590000000 0.902717220000000 0.228084105000000 +0.296658087000000 0.921112699000000 0.148750503000000 +0.294129328000000 0.939508178000000 0.009916700000000 +0.300823101000000 0.934996129000000 0.267750906000000 +0.282675540000000 0.925971882000000 0.158667203000000 +0.289220562000000 0.952647806000000 0.049583501000000 +0.305880618000000 0.917046852000000 0.069416901000000 +0.280989701000000 0.944565695000000 0.049583501000000 +0.282675540000000 0.971935788000000 0.307417707000000 +0.282625956000000 0.938070257000000 0.119000403000000 +0.284311795000000 0.950218215000000 0.039666801000000 +0.289270145000000 0.949722330000000 0.158667203000000 +0.302360190000000 0.921311033000000 0.337167807000000 +0.281882204000000 0.948978627000000 0.317334407000000 +0.282576373000000 0.987058805000000 0.327251107000000 +0.304194779000000 0.907526820000000 0.109083702000000 +0.285997634000000 0.971787087000000 0.079333602000000 +0.289220562000000 0.952647806000000 0.277667606000000 +0.282675540000000 0.925971882000000 0.119000403000000 +0.295815167000000 0.945706116000000 0.079333602000000 +0.300823101000000 0.904799728000000 0.347084507000000 +0.276031350000000 0.959986164000000 0.238000805000000 +0.292542656000000 0.945904450000000 0.128917103000000 +0.291005568000000 0.914567677000000 0.416501409000000 +0.271866336000000 0.964349562000000 0.624752113000000 +0.295914334000000 0.948929043000000 0.178500604000000 +0.292493073000000 0.955821150000000 0.039666801000000 +0.272659672000000 0.963159508000000 0.009916700000000 +0.302459357000000 0.928351891000000 0.267750906000000 +0.287683473000000 0.971687870000000 0.128917103000000 +0.276031350000000 0.959986164000000 0.535501812000000 +0.294327662000000 0.910353129000000 0.138833803000000 +0.292443489000000 0.972084538000000 0.099167002000000 +0.284311795000000 0.950218215000000 0.109083702000000 +0.279353445000000 0.968911194000000 0.039666801000000 +0.284311795000000 0.968762444000000 0.049583501000000 +0.290955984000000 0.921013532000000 0.366917908000000 +0.280989701000000 0.935343164000000 0.019833400000000 +0.289220562000000 0.943474858000000 0.029750101000000 +0.300922268000000 0.911245583000000 0.247917505000000 +0.305731868000000 0.923641458000000 0.089250302000000 +0.280940117000000 0.929393144000000 0.466084910000000 +0.302508940000000 0.904353476000000 0.585085313000000 +0.274345511000000 0.966134568000000 0.277667606000000 +0.295963918000000 0.913030589000000 0.644585514000000 +0.279353445000000 0.947491122000000 0.128917103000000 +0.289220562000000 0.924385161000000 0.327251107000000 +0.297451423000000 0.942235271000000 0.138833803000000 +0.297501006000000 0.908815942000000 0.624752113000000 +0.282675540000000 0.925971882000000 0.029750101000000 +0.275981767000000 0.957060738000000 0.505751711000000 +0.285997634000000 0.925228180000000 0.009916700000000 +0.289319729000000 0.993851695000000 0.109083702000000 +0.276031350000000 0.959986164000000 0.148750503000000 +0.299137262000000 0.918633524000000 0.476001610000000 +0.282675540000000 0.931971536000000 0.555335212000000 +0.292493073000000 0.939855263000000 0.049583501000000 +0.272709256000000 0.966134568000000 0.476001610000000 +0.292493073000000 0.926963553000000 0.357001208000000 +0.297501006000000 0.932516954000000 0.119000403000000 +0.280890534000000 0.983885362000000 0.069416901000000 +0.290906401000000 0.911195999000000 0.376834608000000 +0.279303862000000 0.956812820000000 0.277667606000000 +0.277667606000000 0.965985817000000 0.307417707000000 +0.277618022000000 0.957060738000000 0.485918310000000 +0.295815167000000 0.945706116000000 0.059500201000000 +0.297501006000000 0.908815942000000 0.228084105000000 +0.275932183000000 0.954036144000000 0.634668814000000 +0.275981767000000 0.962911591000000 0.426418109000000 +0.284212628000000 0.983488793000000 0.228084105000000 +0.304145196000000 0.914022259000000 0.327251107000000 +0.297501006000000 0.925723965000000 0.000000000000000 +0.284262212000000 0.965737850000000 0.009916700000000 +0.295864751000000 0.906535150000000 0.109083702000000 +0.305731868000000 0.910055529000000 0.267750906000000 +0.282675540000000 0.931971536000000 0.009916700000000 +0.284212628000000 0.987058805000000 0.158667203000000 +0.285997634000000 0.925228180000000 0.654502214000000 +0.274494262000000 0.954333645000000 0.476001610000000 +0.295815167000000 0.945706116000000 0.198334004000000 +0.299137262000000 0.908815942000000 0.327251107000000 +0.302508940000000 0.931475651000000 0.198334004000000 +0.284311795000000 0.947044870000000 0.208250704000000 +0.281039284000000 0.968861561000000 0.218167405000000 +0.286096801000000 0.990232149000000 0.009916700000000 +0.286741387000000 0.945309398000000 0.267750906000000 +0.297600173000000 0.912633921000000 0.198334004000000 +0.284262212000000 0.965737850000000 0.277667606000000 +0.289220562000000 0.924385161000000 0.555335212000000 +0.277568439000000 0.953837810000000 0.069416901000000 +0.282725123000000 0.965836968000000 0.019833400000000 +0.277766773000000 0.950763633000000 0.009916700000000 +0.291005568000000 0.914567677000000 0.247917505000000 +0.285948051000000 0.934351494000000 0.476001610000000 +0.274494262000000 0.954333645000000 0.495835011000000 +0.282675540000000 0.980910402000000 0.267750906000000 +0.280791367000000 0.962762840000000 0.128917103000000 +0.304095612000000 0.922104369000000 0.327251107000000 +0.297550590000000 0.902717220000000 0.158667203000000 +0.285997634000000 0.968762444000000 0.000000000000000 +0.277618022000000 0.957060738000000 0.595002013000000 +0.300823101000000 0.934996129000000 0.138833803000000 +0.290807234000000 0.939954479000000 0.178500604000000 +0.290856817000000 0.930335231000000 0.247917505000000 +0.287534723000000 0.959291995000000 0.218167405000000 +0.302508940000000 0.907576354000000 0.277667606000000 +0.279799697000000 0.944565695000000 0.158667203000000 +0.300823101000000 0.904799728000000 0.376834608000000 +0.284311795000000 0.993355860000000 0.198334004000000 +0.287633890000000 0.949871180000000 0.049583501000000 +0.295914334000000 0.935888583000000 0.307417707000000 +0.294129328000000 0.962217422000000 0.009916700000000 +0.279204695000000 0.953639476000000 0.218167405000000 +0.277766773000000 0.950763633000000 0.436334809000000 +0.297501006000000 0.932516954000000 0.198334004000000 +0.277618022000000 0.957060738000000 0.297501006000000 +0.294178912000000 0.926517301000000 0.228084105000000 +0.292542656000000 0.920368947000000 0.366917908000000 +0.295963918000000 0.932616072000000 0.297501006000000 +0.272709256000000 0.966134568000000 0.337167807000000 +0.280840950000000 0.947491122000000 0.476001610000000 +0.292542656000000 0.945904450000000 0.198334004000000 +0.281039284000000 0.959936630000000 0.148750503000000 +0.295765584000000 0.942532772000000 0.168583904000000 +0.277766773000000 0.950763633000000 0.128917103000000 +0.290906401000000 0.959044078000000 0.178500604000000 +0.276080934000000 0.977538674000000 0.128917103000000 +0.279254278000000 0.959837414000000 0.396668009000000 +0.294178912000000 0.926517301000000 0.099167002000000 +0.279254278000000 0.959837414000000 0.406584709000000 +0.280940117000000 0.929393144000000 0.000000000000000 +0.275932183000000 0.954036144000000 0.545418512000000 +0.289170978000000 0.962316589000000 0.109083702000000 +0.290807234000000 0.971836621000000 0.039666801000000 +0.284311795000000 0.950218215000000 0.247917505000000 +0.295864751000000 0.929293977000000 0.099167002000000 +0.300872684000000 0.924881045000000 0.307417707000000 +0.280791367000000 0.962762840000000 0.347084507000000 +0.281832620000000 0.942582405000000 0.158667203000000 +0.296757254000000 0.927806472000000 0.267750906000000 +0.279254278000000 0.962961224000000 0.009916700000000 +0.275981767000000 0.962911591000000 0.208250704000000 +0.282625956000000 0.934996129000000 0.109083702000000 +0.280989701000000 0.935343164000000 0.208250704000000 +0.302508940000000 0.904353476000000 0.138833803000000 +0.287633890000000 0.930831066000000 0.119000403000000 +0.277618022000000 0.971985371000000 0.307417707000000 +0.297401839000000 0.922501037000000 0.198334004000000 +0.292443489000000 0.975109132000000 0.059500201000000 +0.290906401000000 0.927211470000000 0.049583501000000 +0.295765584000000 0.942532772000000 0.079333602000000 +0.304095612000000 0.917294770000000 0.357001208000000 +0.274395095000000 0.960134915000000 0.604918713000000 +0.274494262000000 0.954333645000000 0.267750906000000 +0.282675540000000 0.980910402000000 0.039666801000000 +0.294129328000000 0.962217422000000 0.049583501000000 +0.272659672000000 0.957308705000000 0.743752516000000 +0.297501006000000 0.919278060000000 0.238000805000000 +0.281039284000000 0.992909609000000 0.019833400000000 +0.290955984000000 0.946400285000000 0.069416901000000 +0.292542656000000 0.913476840000000 0.218167405000000 +0.281039284000000 0.980811235000000 0.128917103000000 +0.285898467000000 0.962514923000000 0.059500201000000 +0.292542656000000 0.913476840000000 0.208250704000000 +0.295021831000000 0.927806472000000 0.297501006000000 +0.295914334000000 0.925922349000000 0.079333602000000 +0.276080934000000 0.966084935000000 0.327251107000000 +0.287584306000000 0.934103577000000 0.267750906000000 +0.292542656000000 0.920368947000000 0.019833400000000 +0.295864751000000 0.906535150000000 0.525585111000000 +0.302508940000000 0.907576354000000 0.297501006000000 +0.300872684000000 0.931574818000000 0.277667606000000 +0.283419292000000 0.942780689000000 0.029750101000000 +0.295914334000000 0.909807711000000 0.069416901000000 +0.295765584000000 0.920170613000000 0.158667203000000 +0.289270145000000 0.927508971000000 0.287584306000000 +0.285848884000000 0.983984579000000 0.128917103000000 +0.292592240000000 0.917294770000000 0.604918713000000 +0.297501006000000 0.925723965000000 0.128917103000000 +0.289270145000000 0.920666398000000 0.466084910000000 +0.290906401000000 0.933508575000000 0.406584709000000 +0.274395095000000 0.960134915000000 0.337167807000000 +0.282625956000000 0.928798192000000 0.505751711000000 +0.277568439000000 0.953837810000000 0.634668814000000 +0.280940117000000 0.929393144000000 0.277667606000000 +0.279204695000000 0.950813167000000 0.614835413000000 +0.287584306000000 0.984331663000000 0.198334004000000 +0.280840950000000 0.947491122000000 0.099167002000000 +0.290906401000000 0.908022655000000 0.218167405000000 +0.305880618000000 0.913427257000000 0.386751308000000 +0.274494262000000 0.954333645000000 0.545418512000000 +0.285948051000000 0.928153557000000 0.357001208000000 +0.275981767000000 0.957060738000000 0.585085313000000 +0.295021831000000 0.924682761000000 0.049583501000000 +0.290906401000000 0.911195999000000 0.595002013000000 +0.285948051000000 0.928153557000000 0.148750503000000 +0.282625956000000 0.928798192000000 0.456168210000000 +0.290856817000000 0.924087709000000 0.575168612000000 +0.302508940000000 0.917790654000000 0.228084105000000 +0.294178912000000 0.926517301000000 0.009916700000000 +0.284163045000000 0.959490280000000 0.257834206000000 +0.284163045000000 0.959490280000000 0.039666801000000 +0.292493073000000 0.959044078000000 0.089250302000000 +0.281882204000000 0.948978627000000 0.178500604000000 +0.297550590000000 0.902717220000000 0.535501812000000 +0.297501006000000 0.935591082000000 0.247917505000000 +0.286790970000000 0.948333992000000 0.198334004000000 +0.298294342000000 0.930434348000000 0.178500604000000 +0.299286012000000 0.912138135000000 0.178500604000000 +0.287584306000000 0.924831462000000 0.039666801000000 +0.274444678000000 0.971886155000000 0.000000000000000 +0.272709256000000 0.966134568000000 0.357001208000000 +0.275932183000000 0.954036144000000 0.178500604000000 +0.295914334000000 0.909807711000000 0.228084105000000 +0.299137262000000 0.915311479000000 0.416501409000000 +0.282625956000000 0.929046060000000 0.099167002000000 +0.272659672000000 0.957308705000000 0.595002013000000 +0.285848884000000 0.987257090000000 0.198334004000000 +0.297550590000000 0.928798192000000 0.277667606000000 +0.277766773000000 0.950763633000000 0.148750503000000 +0.275981767000000 0.974811681000000 0.059500201000000 +0.279204695000000 0.953639476000000 0.634668814000000 +0.285997634000000 0.965638683000000 0.208250704000000 +0.277618022000000 0.957060738000000 0.505751711000000 +0.285749717000000 0.953193274000000 0.148750503000000 +0.295765584000000 0.920170613000000 0.128917103000000 +0.295815167000000 0.916947636000000 0.000000000000000 +0.284361379000000 0.981009618000000 0.059500201000000 +0.279353445000000 0.965836968000000 0.128917103000000 +0.285848884000000 0.983984579000000 0.178500604000000 +0.285948051000000 0.931376484000000 0.476001610000000 +0.292493073000000 0.939855263000000 0.208250704000000 +0.279204695000000 0.950813167000000 0.426418109000000 +0.282675540000000 0.941293184000000 0.327251107000000 +0.302360190000000 0.914418927000000 0.396668009000000 +0.280940117000000 0.986810838000000 0.019833400000000 +0.299137262000000 0.908815942000000 0.069416901000000 +0.287534723000000 0.987505007000000 0.188417304000000 +0.297600173000000 0.912633921000000 0.238000805000000 +0.277766773000000 0.950763633000000 0.644585514000000 +0.280940117000000 0.929393144000000 0.436334809000000 +0.290906401000000 0.959044078000000 0.019833400000000 +0.281039284000000 0.959936630000000 0.307417707000000 +0.272858006000000 0.960085331000000 0.614835413000000 +0.280940117000000 0.941541102000000 0.218167405000000 +0.285948051000000 0.934351494000000 0.128917103000000 +0.302360190000000 0.914418927000000 0.049583501000000 +0.294228495000000 0.933111907000000 0.099167002000000 +0.292493073000000 0.942929440000000 0.178500604000000 +0.292592240000000 0.936384467000000 0.287584306000000 +0.282576373000000 0.947193621000000 0.277667606000000 +0.289270145000000 0.930831066000000 0.198334004000000 +0.276080934000000 0.977538674000000 0.109083702000000 +0.280940117000000 0.932268987000000 0.079333602000000 +0.290955984000000 0.921013532000000 0.406584709000000 +0.279303862000000 0.977786641000000 0.039666801000000 +0.284262212000000 0.965737850000000 0.257834206000000 +0.297501006000000 0.906287233000000 0.000000000000000 +0.294030161000000 0.920121079000000 0.089250302000000 +0.302409773000000 0.934847280000000 0.148750503000000 +0.295021831000000 0.924682761000000 0.069416901000000 +0.281039284000000 0.941441935000000 0.228084105000000 +0.292592240000000 0.929988146000000 0.327251107000000 +0.271866336000000 0.964349562000000 0.357001208000000 +0.294228495000000 0.907030935000000 0.416501409000000 +0.277618022000000 0.959936630000000 0.495835011000000 +0.282725123000000 0.950366965000000 0.089250302000000 +0.285997634000000 0.925228180000000 0.565251912000000 +0.294129328000000 0.923294423000000 0.277667606000000 +0.295914334000000 0.909807711000000 0.396668009000000 +0.298294342000000 0.920468114000000 0.148750503000000 +0.282625956000000 0.984034212000000 0.267750906000000 +0.294228495000000 0.929591478000000 0.287584306000000 +0.304194779000000 0.907526820000000 0.069416901000000 +0.290906401000000 0.927211470000000 0.376834608000000 +0.281832620000000 0.939706512000000 0.109083702000000 +0.297401839000000 0.922501037000000 0.178500604000000 +0.297501006000000 0.925723965000000 0.267750906000000 +0.294228495000000 0.952350355000000 0.029750101000000 +0.299286012000000 0.912138135000000 0.119000403000000 +0.276080934000000 0.951061134000000 0.049583501000000 +0.292542656000000 0.907576354000000 0.277667606000000 +0.291005568000000 0.914567677000000 0.148750503000000 +0.282625956000000 0.928798192000000 0.029750101000000 +0.290856817000000 0.943177357000000 0.267750906000000 +0.272858006000000 0.960085331000000 0.684252315000000 +0.286691803000000 0.939111461000000 0.317334407000000 +0.285997634000000 0.981108736000000 0.000000000000000 +0.295021831000000 0.927806472000000 0.218167405000000 +0.276080934000000 0.977538674000000 0.158667203000000 +0.272659672000000 0.957308705000000 0.575168612000000 +0.300823101000000 0.918236856000000 0.247917505000000 +0.287633890000000 0.937128170000000 0.188417304000000 +0.292493073000000 0.942929440000000 0.019833400000000 +0.274295928000000 0.963010758000000 0.069416901000000 +0.287633890000000 0.946747369000000 0.109083702000000 +0.277618022000000 0.957060738000000 0.059500201000000 +0.275981767000000 0.974811681000000 0.119000403000000 +0.281039284000000 0.938516508000000 0.009916700000000 +0.279303862000000 0.977786641000000 0.049583501000000 +0.294278079000000 0.949176911000000 0.178500604000000 +0.277618022000000 0.971985371000000 0.049583501000000 +0.287534723000000 0.962415805000000 0.089250302000000 +0.289270145000000 0.927508971000000 0.495835011000000 +0.285997634000000 0.925228180000000 0.624752113000000 +0.295765584000000 0.942532772000000 0.000000000000000 +0.282625956000000 0.962713257000000 0.039666801000000 +0.286691803000000 0.942185687000000 0.178500604000000 +0.295716000000000 0.922897705000000 0.119000403000000 +0.279254278000000 0.959837414000000 0.466084910000000 +0.285105131000000 0.945408615000000 0.039666801000000 +0.299137262000000 0.918633524000000 0.178500604000000 +0.281039284000000 0.965787434000000 0.247917505000000 +0.283419292000000 0.942780689000000 0.049583501000000 +0.290906401000000 0.936582752000000 0.287584306000000 +0.284163045000000 0.959490280000000 0.029750101000000 +0.295914334000000 0.909807711000000 0.079333602000000 +0.272858006000000 0.960085331000000 0.049583501000000 +0.282625956000000 0.934996129000000 0.228084105000000 +0.282625956000000 0.934996129000000 0.218167405000000 +0.286790970000000 0.948333992000000 0.009916700000000 +0.289270145000000 0.927508971000000 0.307417707000000 +0.299137262000000 0.915311479000000 0.466084910000000 +0.305682284000000 0.920071446000000 0.109083702000000 +0.292542656000000 0.907576354000000 0.466084910000000 +0.285948051000000 0.934351494000000 0.218167405000000 +0.284311795000000 0.950218215000000 0.188417304000000 +0.282625956000000 0.962713257000000 0.059500201000000 +0.302360190000000 0.914418927000000 0.386751308000000 +0.282675540000000 0.931971536000000 0.029750101000000 +0.285948051000000 0.928153557000000 0.337167807000000 +0.290906401000000 0.908022655000000 0.515668411000000 +0.287633890000000 0.930831066000000 0.495835011000000 +0.292592240000000 0.917294770000000 0.009916700000000 +0.290856817000000 0.930335231000000 0.029750101000000 +0.295914334000000 0.909807711000000 0.257834206000000 +0.275932183000000 0.954036144000000 0.505751711000000 +0.297501006000000 0.908815942000000 0.019833400000000 +0.305880618000000 0.917046852000000 0.327251107000000 +0.300823101000000 0.918236856000000 0.059500201000000 +0.277618022000000 0.957060738000000 0.614835413000000 +0.287534723000000 0.959291995000000 0.138833803000000 +0.300823101000000 0.904799728000000 0.357001208000000 +0.290856817000000 0.943177357000000 0.168583904000000 +0.302409773000000 0.911096832000000 0.456168210000000 +0.289270145000000 0.933954826000000 0.138833803000000 +0.294228495000000 0.952350355000000 0.079333602000000 +0.279849280000000 0.945011947000000 0.406584709000000 +0.285848884000000 0.943772359000000 0.109083702000000 +0.279353445000000 0.965836968000000 0.337167807000000 +0.300872684000000 0.931574818000000 0.148750503000000 +0.300872684000000 0.901576800000000 0.366917908000000 +0.287485139000000 1.000000000000000 0.000000000000000 +0.281039284000000 0.965787434000000 0.128917103000000 +0.287534723000000 0.987505007000000 0.069416901000000 +0.281039284000000 0.941441935000000 0.426418109000000 +0.294228495000000 0.907030935000000 0.684252315000000 +0.299186845000000 0.935491915000000 0.148750503000000 +0.290906401000000 0.978232843000000 0.000000000000000 +0.287584306000000 0.934103577000000 0.089250302000000 +0.297501006000000 0.935591082000000 0.178500604000000 +0.285997634000000 0.950069464000000 0.039666801000000 +0.289270145000000 0.933954826000000 0.357001208000000 +0.280940117000000 0.941541102000000 0.099167002000000 +0.284262212000000 0.934847280000000 0.317334407000000 +0.292542656000000 0.907576354000000 0.267750906000000 +0.300823101000000 0.918236856000000 0.238000805000000 +0.289319729000000 0.937029003000000 0.297501006000000 +0.274345511000000 0.957110321000000 0.287584306000000 +0.280890534000000 0.983885362000000 0.000000000000000 +0.276080934000000 0.971687870000000 0.119000403000000 +0.300922268000000 0.911245583000000 0.029750101000000 +0.289220562000000 0.924385161000000 0.029750101000000 +0.279353445000000 0.968911194000000 0.019833400000000 +0.299286012000000 0.912138135000000 0.406584709000000 +0.280940117000000 0.956614437000000 0.287584306000000 +0.282725123000000 0.965836968000000 0.277667606000000 +0.287584306000000 0.990727935000000 0.069416901000000 +0.287683473000000 0.927806472000000 0.238000805000000 +0.281039284000000 0.965787434000000 0.079333602000000 +0.304095612000000 0.922104369000000 0.128917103000000 +0.281882204000000 0.948978627000000 0.128917103000000 +0.304095612000000 0.910948082000000 0.446251510000000 +0.290906401000000 0.936582752000000 0.039666801000000 +0.284212628000000 0.983488793000000 0.138833803000000 +0.290906401000000 0.927211470000000 0.277667606000000 +0.290906401000000 0.908022655000000 0.099167002000000 +0.285154715000000 0.948333992000000 0.307417707000000 +0.282625956000000 0.938070257000000 0.000000000000000 +0.277618022000000 0.959936630000000 0.396668009000000 +0.272709256000000 0.966134568000000 0.128917103000000 +0.279204695000000 0.953639476000000 0.029750101000000 +0.282576373000000 0.947193621000000 0.049583501000000 +0.290906401000000 0.927211470000000 0.317334407000000 +0.302360190000000 0.914418927000000 0.158667203000000 +0.297600173000000 0.912633921000000 0.148750503000000 +0.280940117000000 0.932268987000000 0.337167807000000 +0.285997634000000 0.965638683000000 0.119000403000000 +0.302508940000000 0.904353476000000 0.575168612000000 +0.292493073000000 0.962267055000000 0.109083702000000 +0.285997634000000 0.968762444000000 0.148750503000000 +0.302508940000000 0.917790654000000 0.208250704000000 +0.294327662000000 0.910353129000000 0.297501006000000 +0.272709256000000 0.966134568000000 0.406584709000000 +0.283468876000000 0.948929043000000 0.019833400000000 +0.304095612000000 0.910948082000000 0.476001610000000 +0.289319729000000 0.965985817000000 0.049583501000000 +0.302508940000000 0.931475651000000 0.128917103000000 +0.271866336000000 0.964349562000000 0.545418512000000 +0.295864751000000 0.906535150000000 0.704085715000000 +0.274295928000000 0.963010758000000 0.109083702000000 +0.281039284000000 0.959936630000000 0.178500604000000 +0.305731868000000 0.923641458000000 0.059500201000000 +0.289220562000000 0.924385161000000 0.267750906000000 +0.280940117000000 0.929393144000000 0.158667203000000 +0.277618022000000 0.959936630000000 0.595002013000000 +0.276080934000000 0.951061134000000 0.624752113000000 +0.295864751000000 0.929293977000000 0.079333602000000 +0.287633890000000 0.937128170000000 0.029750101000000 +0.284212628000000 0.987058805000000 0.059500201000000 +0.287633890000000 0.978084093000000 0.000000000000000 +0.276080934000000 0.951061134000000 0.515668411000000 +0.297600173000000 0.912633921000000 0.029750101000000 +0.275981767000000 0.962911591000000 0.515668411000000 +0.294129328000000 0.939508178000000 0.198334004000000 +0.287633890000000 0.930831066000000 0.485918310000000 +0.307318540000000 0.916402316000000 0.366917908000000 +0.276031350000000 0.959986164000000 0.029750101000000 +0.295914334000000 0.948929043000000 0.069416901000000 +0.295914334000000 0.925922349000000 0.307417707000000 +0.285997634000000 0.925228180000000 0.049583501000000 +0.287584306000000 0.924831462000000 0.327251107000000 +0.305731868000000 0.923641458000000 0.079333602000000 +0.294278079000000 0.949176911000000 0.168583904000000 +0.302508940000000 0.924980212000000 0.109083702000000 +0.277766773000000 0.950763633000000 0.555335212000000 +0.282675540000000 0.993058359000000 0.019833400000000 +0.277618022000000 0.963010758000000 0.277667606000000 +0.277717189000000 0.969010312000000 0.267750906000000 +0.305682284000000 0.920071446000000 0.099167002000000 +0.292542656000000 0.923641458000000 0.168583904000000 +0.297600173000000 0.912633921000000 0.396668009000000 +0.282576373000000 0.974910798000000 0.287584306000000 +0.292592240000000 0.965489933000000 0.119000403000000 +0.294228495000000 0.929591478000000 0.386751308000000 +0.272659672000000 0.963159508000000 0.386751308000000 +0.298294342000000 0.920468114000000 0.456168210000000 +0.292542656000000 0.907576354000000 0.029750101000000 +0.282625956000000 0.938070257000000 0.426418109000000 +0.292592240000000 0.929988146000000 0.238000805000000 +0.292592240000000 0.917294770000000 0.476001610000000 +0.294178912000000 0.926517301000000 0.188417304000000 +0.295864751000000 0.929293977000000 0.337167807000000 +0.286741387000000 0.945309398000000 0.247917505000000 +0.289270145000000 0.920666398000000 0.049583501000000 +0.302360190000000 0.921311033000000 0.327251107000000 +0.298294342000000 0.920468114000000 0.277667606000000 +0.285848884000000 0.943772359000000 0.079333602000000 +0.289170978000000 0.962316589000000 0.009916700000000 +0.281882204000000 0.948978627000000 0.228084105000000 +0.296658087000000 0.930880699000000 0.168583904000000 +0.285948051000000 0.934351494000000 0.485918310000000 +0.283468876000000 0.948929043000000 0.267750906000000 +0.305880618000000 0.913427257000000 0.277667606000000 +0.300773517000000 0.928351891000000 0.158667203000000 +0.284212628000000 0.956366569000000 0.238000805000000 +0.297550590000000 0.902717220000000 0.357001208000000 +0.275981767000000 0.957060738000000 0.565251912000000 +0.274494262000000 0.954333645000000 0.694169015000000 +0.297501006000000 0.906287233000000 0.376834608000000 +0.289170978000000 0.956069117000000 0.198334004000000 +0.295914334000000 0.909807711000000 0.000000000000000 +0.274295928000000 0.963010758000000 0.089250302000000 +0.299087678000000 0.921806868000000 0.099167002000000 +0.292493073000000 0.962267055000000 0.000000000000000 +0.282625956000000 0.928798192000000 0.555335212000000 +0.286790970000000 0.948333992000000 0.257834206000000 +0.290807234000000 0.962267055000000 0.119000403000000 +0.285997634000000 0.925228180000000 0.595002013000000 +0.286691803000000 0.942185687000000 0.158667203000000 +0.299286012000000 0.912138135000000 0.525585111000000 +0.295963918000000 0.913030589000000 0.158667203000000 +0.292542656000000 0.907576354000000 0.158667203000000 +0.287584306000000 0.924831462000000 0.495835011000000 +0.290906401000000 0.927211470000000 0.416501409000000 +0.297401839000000 0.922501037000000 0.208250704000000 +0.282576373000000 0.987058805000000 0.168583904000000 +0.285997634000000 0.981108736000000 0.069416901000000 +0.299137262000000 0.938863642000000 0.109083702000000 +0.272858006000000 0.960085331000000 0.317334407000000 +0.292592240000000 0.949375295000000 0.019833400000000 +0.289220562000000 0.952647806000000 0.188417304000000 +0.287584306000000 0.984331663000000 0.079333602000000 +0.287683473000000 0.971687870000000 0.109083702000000 +0.282725123000000 0.950366965000000 0.267750906000000 +0.304095612000000 0.910948082000000 0.357001208000000 +0.287534723000000 0.959291995000000 0.059500201000000 +0.272709256000000 0.966134568000000 0.495835011000000 +0.295963918000000 0.932616072000000 0.128917103000000 +0.294327662000000 0.910353129000000 0.119000403000000 +0.285948051000000 0.928153557000000 0.247917505000000 +0.307417707000000 0.913328090000000 0.357001208000000 +0.279353445000000 0.947491122000000 0.614835413000000 +0.279303862000000 0.956812820000000 0.426418109000000 +0.295864751000000 0.906535150000000 0.773502617000000 +0.280940117000000 0.956614437000000 0.178500604000000 +0.272758839000000 0.968861561000000 0.188417304000000 +0.289220562000000 0.946499452000000 0.019833400000000 +0.274395095000000 0.960134915000000 0.049583501000000 +0.272659672000000 0.963159508000000 0.426418109000000 +0.274345511000000 0.966134568000000 0.446251510000000 +0.287633890000000 0.965886601000000 0.000000000000000 +0.284262212000000 0.971737454000000 0.079333602000000 +0.279204695000000 0.953639476000000 0.178500604000000 +0.280791367000000 0.962762840000000 0.277667606000000 +0.280940117000000 0.932268987000000 0.297501006000000 +0.279353445000000 0.938665259000000 0.257834206000000 +0.290906401000000 0.952697390000000 0.099167002000000 +0.276031350000000 0.959986164000000 0.000000000000000 +0.277618022000000 0.971985371000000 0.238000805000000 +0.279303862000000 0.974811681000000 0.218167405000000 +0.292344322000000 0.972034905000000 0.059500201000000 +0.297401839000000 0.922501037000000 0.317334407000000 +0.297501006000000 0.919278060000000 0.515668411000000 +0.287633890000000 0.937128170000000 0.178500604000000 +0.284311795000000 0.925575214000000 0.188417304000000 +0.272858006000000 0.960085331000000 0.555335212000000 +0.297451423000000 0.942235271000000 0.039666801000000 +0.281039284000000 0.938516508000000 0.297501006000000 +0.292542656000000 0.920368947000000 0.198334004000000 +0.277618022000000 0.974811681000000 0.168583904000000 +0.282625956000000 0.984034212000000 0.178500604000000 +0.289270145000000 0.930831066000000 0.128917103000000 +0.285105131000000 0.939210677000000 0.357001208000000 +0.305731868000000 0.923641458000000 0.208250704000000 +0.280840950000000 0.947491122000000 0.327251107000000 +0.294178912000000 0.926517301000000 0.485918310000000 +0.289319729000000 0.993851695000000 0.039666801000000 +0.287683473000000 0.927806472000000 0.019833400000000 +0.274345511000000 0.957110321000000 0.307417707000000 +0.279353445000000 0.947491122000000 0.079333602000000 +0.286096801000000 0.990232149000000 0.257834206000000 +0.282675540000000 0.941293184000000 0.208250704000000 +0.289170978000000 0.940202347000000 0.089250302000000 +0.287534723000000 0.959291995000000 0.257834206000000 +0.294228495000000 0.933111907000000 0.198334004000000 +0.294178912000000 0.958697043000000 0.029750101000000 +0.300922268000000 0.908220989000000 0.485918310000000 +0.284311795000000 0.950218215000000 0.059500201000000 +0.282725123000000 0.965836968000000 0.069416901000000 +0.289220562000000 0.924385161000000 0.059500201000000 +0.282675540000000 0.925971882000000 0.694169015000000 +0.294278079000000 0.912435587000000 0.019833400000000 +0.304194779000000 0.907526820000000 0.337167807000000 +0.284361379000000 0.937971090000000 0.357001208000000 +0.292542656000000 0.907576354000000 0.218167405000000 +0.284311795000000 0.993355860000000 0.168583904000000 +0.279799697000000 0.944565695000000 0.218167405000000 +0.289170978000000 0.940202347000000 0.019833400000000 +0.294228495000000 0.933111907000000 0.357001208000000 +0.297501006000000 0.935591082000000 0.099167002000000 +0.297550590000000 0.928798192000000 0.158667203000000 +0.287584306000000 0.924831462000000 0.515668411000000 +0.274295928000000 0.963010758000000 0.307417707000000 +0.277766773000000 0.950763633000000 0.168583904000000 +0.297501006000000 0.919278060000000 0.396668009000000 +0.282576373000000 0.959688663000000 0.287584306000000 +0.284212628000000 0.983488793000000 0.128917103000000 +0.285898467000000 0.959391212000000 0.287584306000000 +0.292493073000000 0.904452643000000 0.218167405000000 +0.297501006000000 0.925723965000000 0.337167807000000 +0.302508940000000 0.924980212000000 0.168583904000000 +0.280940117000000 0.929393144000000 0.565251912000000 +0.300922268000000 0.908220989000000 0.585085313000000 +0.279204695000000 0.950813167000000 0.158667203000000 +0.289220562000000 0.952647806000000 0.257834206000000 +0.289270145000000 0.927508971000000 0.069416901000000 +0.282576373000000 0.974910798000000 0.188417304000000 +0.287633890000000 0.949871180000000 0.228084105000000 +0.287633890000000 0.937128170000000 0.307417707000000 +0.284311795000000 0.947044870000000 0.128917103000000 +0.294327662000000 0.910353129000000 0.188417304000000 +0.289170978000000 0.940202347000000 0.099167002000000 +0.284311795000000 0.993355860000000 0.089250302000000 +0.289170978000000 0.940202347000000 0.039666801000000 +0.294228495000000 0.952350355000000 0.168583904000000 +0.298244759000000 0.923542241000000 0.416501409000000 +0.285997634000000 0.950069464000000 0.119000403000000 +0.305731868000000 0.923641458000000 0.238000805000000 +0.274345511000000 0.957110321000000 0.366917908000000 +0.287633890000000 0.978084093000000 0.019833400000000 +0.274345511000000 0.957110321000000 0.079333602000000 +0.280940117000000 0.956614437000000 0.049583501000000 +0.275981767000000 0.962911591000000 0.396668009000000 +0.282576373000000 0.996033369000000 0.079333602000000 +0.307268956000000 0.923492707000000 0.168583904000000 +0.295021831000000 0.927806472000000 0.426418109000000 +0.277618022000000 0.963010758000000 0.376834608000000 +0.282576373000000 0.996033369000000 0.049583501000000 +0.299137262000000 0.908815942000000 0.565251912000000 +0.297550590000000 0.916104716000000 0.178500604000000 +0.294129328000000 0.939508178000000 0.287584306000000 +0.300823101000000 0.904799728000000 0.138833803000000 +0.290906401000000 0.908022655000000 0.089250302000000 +0.281039284000000 0.965787434000000 0.347084507000000 +0.287584306000000 0.940450265000000 0.307417707000000 +0.281039284000000 0.938516508000000 0.307417707000000 +0.292542656000000 0.907576354000000 0.426418109000000 +0.290856817000000 0.924087709000000 0.535501812000000 +0.297501006000000 0.925723965000000 0.119000403000000 +0.290856817000000 0.975109132000000 0.119000403000000 +0.281039284000000 0.950565349000000 0.039666801000000 +0.292542656000000 0.907576354000000 0.337167807000000 +0.299286012000000 0.912138135000000 0.069416901000000 +0.295963918000000 0.913030589000000 0.376834608000000 +0.282675540000000 0.925971882000000 0.307417707000000 +0.295914334000000 0.935888583000000 0.138833803000000 +0.284311795000000 0.990132933000000 0.228084105000000 +0.282576373000000 0.987058805000000 0.188417304000000 +0.300823101000000 0.934996129000000 0.297501006000000 +0.279303862000000 0.974811681000000 0.317334407000000 +0.297501006000000 0.908815942000000 0.505751711000000 +0.280890534000000 0.983885362000000 0.287584306000000 +0.294129328000000 0.923294423000000 0.515668411000000 +0.280940117000000 0.956614437000000 0.238000805000000 +0.297501006000000 0.908815942000000 0.000000000000000 +0.281832620000000 0.939706512000000 0.426418109000000 +0.300823101000000 0.918236856000000 0.466084910000000 +0.282675540000000 0.931971536000000 0.168583904000000 +0.297401839000000 0.922501037000000 0.148750503000000 +0.284262212000000 0.965737850000000 0.317334407000000 +0.295021831000000 0.927806472000000 0.327251107000000 +0.272659672000000 0.957308705000000 0.694169015000000 +0.297550590000000 0.916104716000000 0.535501812000000 +0.290906401000000 0.936582752000000 0.247917505000000 +0.281039284000000 0.938516508000000 0.247917505000000 +0.292493073000000 0.904452643000000 0.099167002000000 +0.304194779000000 0.907526820000000 0.466084910000000 +0.287633890000000 0.965886601000000 0.099167002000000 +0.276080934000000 0.966084935000000 0.515668411000000 +0.299286012000000 0.912138135000000 0.495835011000000 +0.295815167000000 0.916947636000000 0.029750101000000 +0.282625956000000 0.929046060000000 0.515668411000000 +0.305880618000000 0.917046852000000 0.039666801000000 +0.290856817000000 0.924087709000000 0.426418109000000 +0.285898467000000 0.962514923000000 0.069416901000000 +0.284262212000000 0.971737454000000 0.198334004000000 +0.287534723000000 0.956118651000000 0.267750906000000 +0.290807234000000 0.962267055000000 0.009916700000000 +0.302508940000000 0.907576354000000 0.049583501000000 +0.284262212000000 0.971737454000000 0.000000000000000 +0.285997634000000 0.925228180000000 0.267750906000000 +0.289270145000000 0.927508971000000 0.406584709000000 +0.275981767000000 0.957060738000000 0.545418512000000 +0.287633890000000 0.937128170000000 0.109083702000000 +0.287633890000000 0.930831066000000 0.347084507000000 +0.295914334000000 0.909807711000000 0.436334809000000 +0.290955984000000 0.921013532000000 0.128917103000000 +0.294178912000000 0.936285251000000 0.000000000000000 +0.290955984000000 0.946400285000000 0.138833803000000 +0.284212628000000 0.931872319000000 0.267750906000000 +0.292344322000000 0.972034905000000 0.039666801000000 +0.287534723000000 0.962415805000000 0.178500604000000 +0.305682284000000 0.920071446000000 0.168583904000000 +0.285848884000000 0.983984579000000 0.218167405000000 +0.297550590000000 0.948780343000000 0.168583904000000 +0.298343926000000 0.927112303000000 0.019833400000000 +0.294228495000000 0.952350355000000 0.158667203000000 +0.290955984000000 0.949524045000000 0.148750503000000 +0.295963918000000 0.913030589000000 0.624752113000000 +0.282625956000000 0.962713257000000 0.198334004000000 +0.302508940000000 0.904353476000000 0.525585111000000 +0.274395095000000 0.974662930000000 0.069416901000000 +0.280940117000000 0.932268987000000 0.525585111000000 +0.297501006000000 0.925723965000000 0.198334004000000 +0.272659672000000 0.963159508000000 0.307417707000000 +0.275981767000000 0.974811681000000 0.366917908000000 +0.303996445000000 0.924236410000000 0.039666801000000 +0.287584306000000 0.924831462000000 0.019833400000000 +0.280840950000000 0.947491122000000 0.426418109000000 +0.280989701000000 0.935343164000000 0.446251510000000 +0.277618022000000 0.974811681000000 0.376834608000000 +0.280940117000000 0.932268987000000 0.366917908000000 +0.282625956000000 0.929046060000000 0.218167405000000 +0.292493073000000 0.962267055000000 0.099167002000000 +0.281039284000000 0.959936630000000 0.069416901000000 +0.292493073000000 0.926963553000000 0.505751711000000 +0.277717189000000 0.980612901000000 0.307417707000000 +0.300823101000000 0.918236856000000 0.138833803000000 +0.287485139000000 0.952895674000000 0.069416901000000 +0.302459357000000 0.928351891000000 0.039666801000000 +0.272659672000000 0.957308705000000 0.555335212000000 +0.279353445000000 0.965836968000000 0.366917908000000 +0.290955984000000 0.968613743000000 0.119000403000000 +0.282625956000000 0.928798192000000 0.158667203000000 +0.275981767000000 0.974811681000000 0.208250704000000 +0.276031350000000 0.959986164000000 0.366917908000000 +0.302508940000000 0.907576354000000 0.307417707000000 +0.295716000000000 0.922897705000000 0.099167002000000 +0.274444678000000 0.968960778000000 0.000000000000000 +0.286741387000000 0.945309398000000 0.099167002000000 +0.290856817000000 0.924087709000000 0.287584306000000 +0.296658087000000 0.930880699000000 0.198334004000000 +0.297550590000000 0.928798192000000 0.089250302000000 +0.279204695000000 0.953639476000000 0.337167807000000 +0.297451423000000 0.942235271000000 0.019833400000000 +0.282576373000000 0.944317778000000 0.148750503000000 +0.276080934000000 0.966084935000000 0.347084507000000 +0.282625956000000 0.929046060000000 0.188417304000000 +0.298294342000000 0.920468114000000 0.208250704000000 +0.289170978000000 0.956069117000000 0.208250704000000 +0.280940117000000 0.932268987000000 0.614835413000000 +0.300922268000000 0.908220989000000 0.059500201000000 +0.282576373000000 0.947193621000000 0.297501006000000 +0.275981767000000 0.962911591000000 0.009916700000000 +0.285948051000000 0.931376484000000 0.079333602000000 +0.290906401000000 0.908022655000000 0.198334004000000 +0.297600173000000 0.912633921000000 0.099167002000000 +0.284212628000000 0.983488793000000 0.109083702000000 +0.292542656000000 0.920368947000000 0.466084910000000 +0.289170978000000 0.962316589000000 0.138833803000000 +0.279353445000000 0.980712018000000 0.019833400000000 +0.299137262000000 0.955523699000000 0.000000000000000 +0.295716000000000 0.922897705000000 0.416501409000000 +0.282625956000000 0.928798192000000 0.545418512000000 +0.279254278000000 0.959837414000000 0.059500201000000 +0.282625956000000 0.928798192000000 0.436334809000000 +0.282625956000000 0.928798192000000 0.049583501000000 +0.300823101000000 0.918236856000000 0.019833400000000 +0.282625956000000 0.956515319000000 0.009916700000000 +0.292542656000000 0.913476840000000 0.238000805000000 +0.282625956000000 0.956515319000000 0.089250302000000 +0.285948051000000 0.928153557000000 0.138833803000000 +0.297550590000000 0.928798192000000 0.019833400000000 +0.302508940000000 0.924980212000000 0.000000000000000 +0.302508940000000 0.924980212000000 0.138833803000000 +0.282576373000000 0.959688663000000 0.337167807000000 +0.290906401000000 0.908022655000000 0.317334407000000 +0.292592240000000 0.936384467000000 0.148750503000000 +0.286790970000000 0.948333992000000 0.069416901000000 +0.294129328000000 0.939508178000000 0.247917505000000 +0.297501006000000 0.906287233000000 0.317334407000000 +0.297501006000000 0.919278060000000 0.446251510000000 +0.280890534000000 0.953639476000000 0.099167002000000 +0.298343926000000 0.927112303000000 0.277667606000000 +0.307268956000000 0.923492707000000 0.218167405000000 +0.290807234000000 0.939954479000000 0.357001208000000 +0.282625956000000 0.929046060000000 0.565251912000000 +0.307318540000000 0.916402316000000 0.158667203000000 +0.297451423000000 0.938962760000000 0.079333602000000 +0.305880618000000 0.913427257000000 0.247917505000000 +0.304145196000000 0.914022259000000 0.347084507000000 +0.294030161000000 0.920121079000000 0.059500201000000 +0.305880618000000 0.917046852000000 0.208250704000000 +0.274345511000000 0.966134568000000 0.535501812000000 +0.295815167000000 0.916947636000000 0.049583501000000 +0.295914334000000 0.909807711000000 0.515668411000000 +0.286691803000000 0.939111461000000 0.287584306000000 +0.281039284000000 0.968861561000000 0.099167002000000 +0.302409773000000 0.934847280000000 0.079333602000000 +0.285898467000000 0.959391212000000 0.049583501000000 +0.299137262000000 0.955523699000000 0.059500201000000 +0.287633890000000 0.949871180000000 0.119000403000000 +0.282625956000000 0.984034212000000 0.138833803000000 +0.285105131000000 0.942185687000000 0.148750503000000 +0.277667606000000 0.965985817000000 0.228084105000000 +0.294030161000000 0.920121079000000 0.168583904000000 +0.291005568000000 0.914567677000000 0.009916700000000 +0.291005568000000 0.914567677000000 0.099167002000000 +0.280890534000000 0.953639476000000 0.128917103000000 +0.285948051000000 0.937425671000000 0.297501006000000 +0.283419292000000 0.945557365000000 0.337167807000000 +0.302508940000000 0.907576354000000 0.257834206000000 +0.295815167000000 0.916947636000000 0.495835011000000 +0.297451423000000 0.938962760000000 0.168583904000000 +0.307417707000000 0.913328090000000 0.287584306000000 +0.295021831000000 0.924682761000000 0.267750906000000 +0.284212628000000 0.931872319000000 0.287584306000000 +0.290955984000000 0.949524045000000 0.009916700000000 +0.295716000000000 0.922897705000000 0.208250704000000 +0.294228495000000 0.929591478000000 0.019833400000000 +0.282526789000000 0.977935392000000 0.128917103000000 +0.302409773000000 0.911096832000000 0.436334809000000 +0.271866336000000 0.964349562000000 0.495835011000000 +0.282576373000000 0.947193621000000 0.069416901000000 +0.289319729000000 0.993851695000000 0.099167002000000 +0.290856817000000 0.930335231000000 0.228084105000000 +0.295914334000000 0.925922349000000 0.416501409000000 +0.285898467000000 0.946995337000000 0.138833803000000 +0.284262212000000 0.934847280000000 0.297501006000000 +0.281039284000000 0.992909609000000 0.029750101000000 +0.299137262000000 0.908815942000000 0.119000403000000 +0.285948051000000 0.993405494000000 0.109083702000000 +0.284311795000000 0.978034559000000 0.178500604000000 +0.296707670000000 0.924286043000000 0.238000805000000 +0.277618022000000 0.963010758000000 0.019833400000000 +0.297501006000000 0.906287233000000 0.109083702000000 +0.290906401000000 0.911195999000000 0.406584709000000 +0.302508940000000 0.924980212000000 0.327251107000000 +0.272758839000000 0.968861561000000 0.099167002000000 +0.307516874000000 0.919922695000000 0.158667203000000 +0.277618022000000 0.974811681000000 0.109083702000000 +0.292542656000000 0.907576354000000 0.446251510000000 +0.300773517000000 0.928351891000000 0.099167002000000 +0.287633890000000 0.937128170000000 0.357001208000000 +0.300773517000000 0.921608534000000 0.029750101000000 +0.282576373000000 0.959688663000000 0.198334004000000 +0.279303862000000 0.956812820000000 0.515668411000000 +0.292542656000000 0.923641458000000 0.495835011000000 +0.294228495000000 0.907030935000000 0.674335615000000 +0.304095612000000 0.910948082000000 0.267750906000000 +0.285948051000000 0.937425671000000 0.029750101000000 +0.297501006000000 0.919278060000000 0.386751308000000 +0.279204695000000 0.950813167000000 0.089250302000000 +0.289220562000000 0.924385161000000 0.287584306000000 +0.289220562000000 0.946499452000000 0.049583501000000 +0.289220562000000 0.924385161000000 0.337167807000000 +0.289220562000000 0.924385161000000 0.545418512000000 +0.297501006000000 0.919278060000000 0.426418109000000 +0.277766773000000 0.950763633000000 0.674335615000000 +0.295914334000000 0.925922349000000 0.218167405000000 +0.294129328000000 0.916798885000000 0.426418109000000 +0.302508940000000 0.907576354000000 0.000000000000000 +0.285948051000000 0.934351494000000 0.317334407000000 +0.282675540000000 0.931971536000000 0.119000403000000 +0.281039284000000 0.959936630000000 0.386751308000000 +0.292592240000000 0.949375295000000 0.198334004000000 +0.285948051000000 0.993405494000000 0.228084105000000 +0.300823101000000 0.934996129000000 0.128917103000000 +0.305731868000000 0.910055529000000 0.000000000000000 +0.287633890000000 0.949871180000000 0.257834206000000 +0.280940117000000 0.986810838000000 0.049583501000000 +0.294178912000000 0.936285251000000 0.119000403000000 +0.285948051000000 0.993405494000000 0.039666801000000 +0.272659672000000 0.957308705000000 0.535501812000000 +0.302508940000000 0.931475651000000 0.168583904000000 +0.299236429000000 0.931822686000000 0.019833400000000 +0.284311795000000 0.947044870000000 0.019833400000000 +0.277717189000000 0.980612901000000 0.238000805000000 +0.287683473000000 0.971687870000000 0.168583904000000 +0.274444678000000 0.968960778000000 0.396668009000000 +0.297501006000000 0.906287233000000 0.595002013000000 +0.275981767000000 0.974811681000000 0.148750503000000 +0.302409773000000 0.911096832000000 0.119000403000000 +0.285105131000000 0.942185687000000 0.119000403000000 +0.297550590000000 0.902717220000000 0.485918310000000 +0.292443489000000 0.972084538000000 0.089250302000000 +0.287534723000000 0.987505007000000 0.168583904000000 +0.280890534000000 0.983885362000000 0.119000403000000 +0.295021831000000 0.924682761000000 0.178500604000000 +0.285848884000000 0.987257090000000 0.119000403000000 +0.272659672000000 0.957308705000000 0.208250704000000 +0.292542656000000 0.913476840000000 0.257834206000000 +0.296658087000000 0.921112699000000 0.297501006000000 +0.277618022000000 0.963010758000000 0.505751711000000 +0.289270145000000 0.933954826000000 0.178500604000000 +0.290906401000000 0.908022655000000 0.228084105000000 +0.294030161000000 0.920121079000000 0.376834608000000 +0.290906401000000 0.908022655000000 0.585085313000000 +0.284212628000000 0.987058805000000 0.178500604000000 +0.285948051000000 0.993405494000000 0.000000000000000 +0.277618022000000 0.963010758000000 0.188417304000000 +0.294228495000000 0.907030935000000 0.128917103000000 +0.290906401000000 0.936582752000000 0.000000000000000 +0.295864751000000 0.958994494000000 0.039666801000000 +0.289170978000000 0.962316589000000 0.158667203000000 +0.285898467000000 0.999851249000000 0.089250302000000 +0.299186845000000 0.905394779000000 0.485918310000000 +0.304145196000000 0.914022259000000 0.079333602000000 +0.287633890000000 0.968762444000000 0.198334004000000 +0.280940117000000 0.986810838000000 0.128917103000000 +0.274494262000000 0.954333645000000 0.079333602000000 +0.294129328000000 0.939508178000000 0.069416901000000 +0.277618022000000 0.971985371000000 0.287584306000000 +0.279254278000000 0.962961224000000 0.416501409000000 +0.271866336000000 0.964349562000000 0.119000403000000 +0.302508940000000 0.904353476000000 0.148750503000000 +0.281039284000000 0.941441935000000 0.297501006000000 +0.302508940000000 0.907576354000000 0.148750503000000 +0.279353445000000 0.938665259000000 0.575168612000000 +0.284212628000000 0.956366569000000 0.069416901000000 +0.296658087000000 0.921112699000000 0.257834206000000 +0.289220562000000 0.943474858000000 0.267750906000000 +0.272659672000000 0.957308705000000 0.119000403000000 +0.285898467000000 0.962514923000000 0.208250704000000 +0.289220562000000 0.943474858000000 0.198334004000000 +0.302508940000000 0.907576354000000 0.327251107000000 +0.300773517000000 0.921608534000000 0.059500201000000 +0.299137262000000 0.915311479000000 0.446251510000000 +0.280940117000000 0.929393144000000 0.208250704000000 +0.299137262000000 0.918633524000000 0.426418109000000 +0.282725123000000 0.950366965000000 0.376834608000000 +0.291005568000000 0.914567677000000 0.019833400000000 +0.294278079000000 0.912435587000000 0.426418109000000 +0.300823101000000 0.904799728000000 0.406584709000000 +0.289270145000000 0.949722330000000 0.198334004000000 +0.295864751000000 0.906535150000000 0.565251912000000 +0.280940117000000 0.956614437000000 0.406584709000000 +0.274494262000000 0.954333645000000 0.188417304000000 +0.284361379000000 0.937971090000000 0.148750503000000 +0.280840950000000 0.971787087000000 0.347084507000000 +0.305731868000000 0.910055529000000 0.396668009000000 +0.292592240000000 0.929988146000000 0.208250704000000 +0.299186845000000 0.952052754000000 0.039666801000000 +0.285997634000000 0.950069464000000 0.138833803000000 +0.282576373000000 0.959688663000000 0.307417707000000 +0.300872684000000 0.901576800000000 0.257834206000000 +0.285898467000000 0.946995337000000 0.247917505000000 +0.285898467000000 0.962514923000000 0.089250302000000 +0.286741387000000 0.945309398000000 0.059500201000000 +0.279353445000000 0.938665259000000 0.287584306000000 +0.284262212000000 0.965737850000000 0.079333602000000 +0.290856817000000 0.924087709000000 0.396668009000000 +0.289170978000000 0.962316589000000 0.178500604000000 +0.300723934000000 0.915063512000000 0.029750101000000 +0.284212628000000 0.987058805000000 0.089250302000000 +0.274494262000000 0.954333645000000 0.396668009000000 +0.274295928000000 0.963010758000000 0.158667203000000 +0.284163045000000 0.959490280000000 0.247917505000000 +0.281039284000000 0.950565349000000 0.109083702000000 +0.300872684000000 0.931574818000000 0.267750906000000 +0.283419292000000 0.939706512000000 0.247917505000000 +0.300922268000000 0.908220989000000 0.476001610000000 +0.289270145000000 0.920666398000000 0.069416901000000 +0.282725123000000 0.965836968000000 0.238000805000000 +0.285898467000000 0.996330871000000 0.119000403000000 +0.295765584000000 0.939210677000000 0.317334407000000 +0.274295928000000 0.963010758000000 0.119000403000000 +0.299137262000000 0.955523699000000 0.019833400000000 +0.295815167000000 0.916947636000000 0.069416901000000 +0.271122584000000 0.966134568000000 0.386751308000000 +0.294178912000000 0.936285251000000 0.148750503000000 +0.285898467000000 0.999851249000000 0.000000000000000 +0.287633890000000 0.946747369000000 0.178500604000000 +0.295716000000000 0.922897705000000 0.029750101000000 +0.279303862000000 0.956812820000000 0.257834206000000 +0.297451423000000 0.938962760000000 0.069416901000000 +0.282725123000000 0.965836968000000 0.119000403000000 +0.281039284000000 0.959936630000000 0.049583501000000 +0.304095612000000 0.922104369000000 0.079333602000000 +0.292542656000000 0.923641458000000 0.089250302000000 +0.281039284000000 0.938516508000000 0.109083702000000 +0.289170978000000 0.962316589000000 0.089250302000000 +0.305880618000000 0.917046852000000 0.317334407000000 +0.300823101000000 0.904799728000000 0.297501006000000 +0.290906401000000 0.927211470000000 0.515668411000000 +0.299137262000000 0.955523699000000 0.099167002000000 +0.282625956000000 0.934996129000000 0.029750101000000 +0.287584306000000 0.934103577000000 0.000000000000000 +0.304194779000000 0.907526820000000 0.148750503000000 +0.280791367000000 0.962762840000000 0.307417707000000 +0.290906401000000 0.927211470000000 0.446251510000000 +0.282625956000000 0.938070257000000 0.297501006000000 +0.289270145000000 0.927508971000000 0.119000403000000 +0.284311795000000 0.925575214000000 0.317334407000000 +0.289170978000000 0.956069117000000 0.238000805000000 +0.280940117000000 0.956614437000000 0.366917908000000 +0.304194779000000 0.907526820000000 0.029750101000000 +0.290856817000000 0.930335231000000 0.069416901000000 +0.300823101000000 0.904799728000000 0.158667203000000 +0.295914334000000 0.925922349000000 0.238000805000000 +0.294129328000000 0.962217422000000 0.109083702000000 +0.285997634000000 0.925228180000000 0.376834608000000 +0.277717189000000 0.969010312000000 0.188417304000000 +0.275932183000000 0.954036144000000 0.595002013000000 +0.295815167000000 0.916947636000000 0.168583904000000 +0.287633890000000 0.937128170000000 0.039666801000000 +0.299186845000000 0.905394779000000 0.495835011000000 +0.272659672000000 0.963159508000000 0.029750101000000 +0.292493073000000 0.942929440000000 0.089250302000000 +0.284212628000000 0.962564506000000 0.287584306000000 +0.290906401000000 0.933508575000000 0.257834206000000 +0.280840950000000 0.947491122000000 0.039666801000000 +0.295765584000000 0.955523699000000 0.138833803000000 +0.277618022000000 0.957060738000000 0.406584709000000 +0.290906401000000 0.952697390000000 0.148750503000000 +0.284311795000000 0.925575214000000 0.079333602000000 +0.300872684000000 0.924881045000000 0.089250302000000 +0.284212628000000 0.999652965000000 0.039666801000000 +0.299137262000000 0.918633524000000 0.277667606000000 +0.289220562000000 0.959143245000000 0.099167002000000 +0.297550590000000 0.902717220000000 0.099167002000000 +0.290906401000000 0.959044078000000 0.188417304000000 +0.279353445000000 0.980712018000000 0.366917908000000 +0.297501006000000 0.908815942000000 0.168583904000000 +0.300872684000000 0.924881045000000 0.188417304000000 +0.300823101000000 0.904799728000000 0.386751308000000 +0.299137262000000 0.915311479000000 0.148750503000000 +0.282675540000000 0.971935788000000 0.128917103000000 +0.272659672000000 0.957308705000000 0.614835413000000 +0.282625956000000 0.929046060000000 0.029750101000000 +0.276080934000000 0.951061134000000 0.654502214000000 +0.285898467000000 0.946995337000000 0.327251107000000 +0.285848884000000 0.987257090000000 0.000000000000000 +0.285898467000000 0.956267402000000 0.148750503000000 +0.292592240000000 0.949375295000000 0.039666801000000 +0.285997634000000 0.925228180000000 0.198334004000000 +0.274345511000000 0.957110321000000 0.347084507000000 +0.292493073000000 0.926963553000000 0.347084507000000 +0.299286012000000 0.912138135000000 0.555335212000000 +0.300723934000000 0.915063512000000 0.495835011000000 +0.281882204000000 0.948978627000000 0.446251510000000 +0.297550590000000 0.902717220000000 0.178500604000000 +0.283468876000000 0.948929043000000 0.317334407000000 +0.283419292000000 0.945557365000000 0.347084507000000 +0.294327662000000 0.910353129000000 0.555335212000000 +0.292542656000000 0.913476840000000 0.515668411000000 +0.300823101000000 0.918236856000000 0.049583501000000 +0.276080934000000 0.951061134000000 0.416501409000000 +0.276080934000000 0.971687870000000 0.228084105000000 +0.290906401000000 0.908022655000000 0.634668814000000 +0.285997634000000 0.965638683000000 0.277667606000000 +0.279353445000000 0.938665259000000 0.198334004000000 +0.276031350000000 0.959986164000000 0.287584306000000 +0.289220562000000 0.946499452000000 0.158667203000000 +0.274395095000000 0.974662930000000 0.208250704000000 +0.277568439000000 0.953837810000000 0.347084507000000 +0.300823101000000 0.918236856000000 0.198334004000000 +0.284311795000000 0.990132933000000 0.257834206000000 +0.284311795000000 0.978034559000000 0.218167405000000 +0.289270145000000 0.920666398000000 0.565251912000000 +0.284311795000000 0.925575214000000 0.565251912000000 +0.295963918000000 0.913030589000000 0.505751711000000 +0.304095612000000 0.922104369000000 0.158667203000000 +0.279254278000000 0.962961224000000 0.337167807000000 +0.303996445000000 0.924236410000000 0.138833803000000 +0.285948051000000 0.937425671000000 0.376834608000000 +0.294178912000000 0.926517301000000 0.337167807000000 +0.297501006000000 0.952003221000000 0.059500201000000 +0.279353445000000 0.965836968000000 0.099167002000000 +0.299186845000000 0.905394779000000 0.168583904000000 +0.300773517000000 0.928351891000000 0.119000403000000 +0.294327662000000 0.910353129000000 0.049583501000000 +0.296658087000000 0.930880699000000 0.069416901000000 +0.302508940000000 0.904353476000000 0.238000805000000 +0.271866336000000 0.964349562000000 0.456168210000000 +0.290856817000000 0.924087709000000 0.178500604000000 +0.295765584000000 0.955523699000000 0.019833400000000 +0.286790970000000 0.948333992000000 0.247917505000000 +0.283468876000000 0.948929043000000 0.099167002000000 +0.279849280000000 0.945011947000000 0.029750101000000 +0.284212628000000 0.962564506000000 0.049583501000000 +0.294327662000000 0.910353129000000 0.287584306000000 +0.294129328000000 0.939508178000000 0.317334407000000 +0.289170978000000 0.940202347000000 0.178500604000000 +0.290955984000000 0.921013532000000 0.009916700000000 +0.289270145000000 0.949722330000000 0.069416901000000 +0.277667606000000 0.965985817000000 0.089250302000000 +0.289220562000000 0.959143245000000 0.049583501000000 +0.277618022000000 0.974811681000000 0.148750503000000 +0.276080934000000 0.966084935000000 0.148750503000000 +0.289220562000000 0.924385161000000 0.128917103000000 +0.294129328000000 0.916798885000000 0.386751308000000 +0.283419292000000 0.939706512000000 0.158667203000000 +0.297600173000000 0.912633921000000 0.416501409000000 +0.294178912000000 0.942929440000000 0.089250302000000 +0.281039284000000 0.938516508000000 0.426418109000000 +0.272758839000000 0.968861561000000 0.168583904000000 +0.281832620000000 0.939706512000000 0.396668009000000 +0.282625956000000 0.928798192000000 0.386751308000000 +0.284361379000000 0.937971090000000 0.119000403000000 +0.276080934000000 0.977538674000000 0.208250704000000 +0.287485139000000 0.943574025000000 0.238000805000000 +0.295963918000000 0.913030589000000 0.109083702000000 +0.296658087000000 0.930880699000000 0.277667606000000 +0.281832620000000 0.945656532000000 0.287584306000000 +0.274345511000000 0.966134568000000 0.019833400000000 +0.271866336000000 0.964349562000000 0.535501812000000 +0.294228495000000 0.933111907000000 0.257834206000000 +0.299286012000000 0.912138135000000 0.476001610000000 +0.294228495000000 0.933111907000000 0.208250704000000 +0.282675540000000 0.980910402000000 0.059500201000000 +0.282576373000000 0.959688663000000 0.168583904000000 +0.275981767000000 0.957060738000000 0.138833803000000 +0.280940117000000 0.932268987000000 0.128917103000000 +0.290906401000000 0.936582752000000 0.208250704000000 +0.294228495000000 0.933111907000000 0.247917505000000 +0.287633890000000 0.949871180000000 0.297501006000000 +0.281832620000000 0.942582405000000 0.257834206000000 +0.298294342000000 0.920468114000000 0.436334809000000 +0.290955984000000 0.949524045000000 0.178500604000000 +0.295864751000000 0.906535150000000 0.267750906000000 +0.284311795000000 0.978034559000000 0.119000403000000 +0.280890534000000 0.983885362000000 0.257834206000000 +0.304095612000000 0.910948082000000 0.099167002000000 +0.282675540000000 0.925971882000000 0.614835413000000 +0.295716000000000 0.922897705000000 0.267750906000000 +0.284212628000000 0.983488793000000 0.099167002000000 +0.294228495000000 0.952350355000000 0.128917103000000 +0.284311795000000 0.925575214000000 0.119000403000000 +0.285749717000000 0.953193274000000 0.218167405000000 +0.287485139000000 0.943574025000000 0.267750906000000 +0.274395095000000 0.960134915000000 0.019833400000000 +0.297600173000000 0.912633921000000 0.585085313000000 +0.282625956000000 0.929046060000000 0.386751308000000 +0.284212628000000 0.931872319000000 0.485918310000000 +0.295864751000000 0.906535150000000 0.476001610000000 +0.295864751000000 0.906535150000000 0.168583904000000 +0.281039284000000 0.968861561000000 0.327251107000000 +0.279353445000000 0.938665259000000 0.059500201000000 +0.287584306000000 0.984331663000000 0.009916700000000 +0.304095612000000 0.910948082000000 0.039666801000000 +0.285948051000000 0.993405494000000 0.019833400000000 +0.274444678000000 0.971886155000000 0.178500604000000 +0.282625956000000 0.934996129000000 0.138833803000000 +0.284311795000000 0.968762444000000 0.267750906000000 +0.300823101000000 0.904799728000000 0.188417304000000 +0.305880618000000 0.917046852000000 0.238000805000000 +0.285997634000000 0.968762444000000 0.079333602000000 +0.282675540000000 0.941293184000000 0.307417707000000 +0.287633890000000 0.949871180000000 0.277667606000000 +0.297501006000000 0.919278060000000 0.019833400000000 +0.302459357000000 0.928351891000000 0.059500201000000 +0.289270145000000 0.933954826000000 0.188417304000000 +0.280890534000000 0.977786641000000 0.188417304000000 +0.295864751000000 0.929293977000000 0.247917505000000 +0.297550590000000 0.916104716000000 0.485918310000000 +0.272709256000000 0.966134568000000 0.307417707000000 +0.284262212000000 0.934847280000000 0.307417707000000 +0.294228495000000 0.929591478000000 0.168583904000000 +0.299137262000000 0.938863642000000 0.158667203000000 +0.297501006000000 0.925723965000000 0.099167002000000 +0.299286012000000 0.912138135000000 0.148750503000000 +0.284361379000000 0.981009618000000 0.208250704000000 +0.305731868000000 0.910055529000000 0.109083702000000 +0.299286012000000 0.912138135000000 0.505751711000000 +0.280940117000000 0.932268987000000 0.535501812000000 +0.280890534000000 0.953639476000000 0.476001610000000 +0.285948051000000 0.928153557000000 0.436334809000000 +0.292493073000000 0.955821150000000 0.059500201000000 +0.282625956000000 0.934996129000000 0.158667203000000 +0.292592240000000 0.933211123000000 0.099167002000000 +0.304095612000000 0.917294770000000 0.287584306000000 +0.295963918000000 0.932616072000000 0.247917505000000 +0.300823101000000 0.918236856000000 0.069416901000000 +0.292592240000000 0.917294770000000 0.555335212000000 +0.294178912000000 0.936285251000000 0.168583904000000 +0.295914334000000 0.935888583000000 0.198334004000000 +0.282576373000000 0.996033369000000 0.019833400000000 +0.281039284000000 0.941441935000000 0.188417304000000 +0.279353445000000 0.938665259000000 0.099167002000000 +0.302409773000000 0.911096832000000 0.009916700000000 +0.279353445000000 0.947491122000000 0.148750503000000 +0.284311795000000 0.993355860000000 0.049583501000000 +0.290906401000000 0.927211470000000 0.099167002000000 +0.289270145000000 0.927508971000000 0.228084105000000 +0.302508940000000 0.917790654000000 0.386751308000000 +0.283419292000000 0.942780689000000 0.000000000000000 +0.280989701000000 0.944565695000000 0.287584306000000 +0.302360190000000 0.914418927000000 0.466084910000000 +0.297401839000000 0.922501037000000 0.039666801000000 +0.295765584000000 0.920170613000000 0.545418512000000 +0.307268956000000 0.923492707000000 0.148750503000000 +0.299186845000000 0.905394779000000 0.238000805000000 +0.289270145000000 0.933954826000000 0.109083702000000 +0.305731868000000 0.923641458000000 0.287584306000000 +0.285948051000000 0.931376484000000 0.277667606000000 +0.282625956000000 0.984034212000000 0.208250704000000 +0.305731868000000 0.910055529000000 0.416501409000000 +0.275932183000000 0.954036144000000 0.297501006000000 +0.287633890000000 0.930831066000000 0.000000000000000 +0.292493073000000 0.926963553000000 0.029750101000000 +0.280890534000000 0.983885362000000 0.317334407000000 +0.305731868000000 0.910055529000000 0.168583904000000 +0.280890534000000 0.983885362000000 0.416501409000000 +0.302508940000000 0.917790654000000 0.247917505000000 +0.294278079000000 0.945805283000000 0.238000805000000 +0.285105131000000 0.939210677000000 0.327251107000000 +0.274444678000000 0.971886155000000 0.069416901000000 +0.304095612000000 0.910948082000000 0.208250704000000 +0.276080934000000 0.971687870000000 0.148750503000000 +0.294178912000000 0.926517301000000 0.267750906000000 +0.292493073000000 0.904452643000000 0.228084105000000 +0.289270145000000 0.968663277000000 0.198334004000000 +0.296658087000000 0.930880699000000 0.000000000000000 +0.285898467000000 0.956267402000000 0.019833400000000 +0.289270145000000 0.968663277000000 0.089250302000000 +0.285898467000000 0.946995337000000 0.079333602000000 +0.289319729000000 0.965985817000000 0.099167002000000 +0.274395095000000 0.974662930000000 0.000000000000000 +0.297501006000000 0.906287233000000 0.287584306000000 +0.284311795000000 0.941045217000000 0.099167002000000 +0.285898467000000 0.959391212000000 0.238000805000000 +0.299137262000000 0.938863642000000 0.079333602000000 +0.277568439000000 0.953837810000000 0.238000805000000 +0.276031350000000 0.959986164000000 0.277667606000000 +0.287633890000000 0.949871180000000 0.198334004000000 +0.300872684000000 0.901576800000000 0.138833803000000 +0.299286012000000 0.912138135000000 0.228084105000000 +0.297501006000000 0.906287233000000 0.247917505000000 +0.292493073000000 0.904452643000000 0.247917505000000 +0.282675540000000 0.980910402000000 0.148750503000000 +0.285948051000000 0.928153557000000 0.128917103000000 +0.287534723000000 0.962415805000000 0.029750101000000 +0.280840950000000 0.971787087000000 0.089250302000000 +0.289220562000000 0.943474858000000 0.119000403000000 +0.277618022000000 0.957060738000000 0.029750101000000 +0.300922268000000 0.911245583000000 0.307417707000000 +0.292493073000000 0.942929440000000 0.188417304000000 +0.289319729000000 0.993851695000000 0.009916700000000 +0.294178912000000 0.942929440000000 0.059500201000000 +0.295815167000000 0.916947636000000 0.148750503000000 +0.287534723000000 0.974960382000000 0.059500201000000 +0.300872684000000 0.901576800000000 0.218167405000000 +0.284361379000000 0.940946100000000 0.277667606000000 +0.294228495000000 0.907030935000000 0.247917505000000 +0.299286012000000 0.912138135000000 0.535501812000000 +0.292592240000000 0.929988146000000 0.247917505000000 +0.287683473000000 0.971687870000000 0.019833400000000 +0.287633890000000 0.978084093000000 0.119000403000000 +0.281832620000000 0.942582405000000 0.198334004000000 +0.281039284000000 0.950565349000000 0.069416901000000 +0.289220562000000 0.971886155000000 0.148750503000000 +0.282625956000000 0.934996129000000 0.337167807000000 +0.285948051000000 0.993405494000000 0.168583904000000 +0.294327662000000 0.910353129000000 0.357001208000000 +0.295765584000000 0.955523699000000 0.109083702000000 +0.297501006000000 0.906287233000000 0.466084910000000 +0.276080934000000 0.951061134000000 0.277667606000000 +0.302409773000000 0.911096832000000 0.317334407000000 +0.290906401000000 0.927211470000000 0.069416901000000 +0.280840950000000 0.947491122000000 0.000000000000000 +0.296658087000000 0.930880699000000 0.148750503000000 +0.280890534000000 0.953639476000000 0.357001208000000 +0.295765584000000 0.942532772000000 0.128917103000000 +0.279353445000000 0.938665259000000 0.218167405000000 +0.297451423000000 0.942235271000000 0.148750503000000 +0.279204695000000 0.953639476000000 0.565251912000000 +0.287633890000000 0.949871180000000 0.069416901000000 +0.285997634000000 0.925228180000000 0.396668009000000 +0.271122584000000 0.966134568000000 0.357001208000000 +0.276080934000000 0.971687870000000 0.099167002000000 +0.282625956000000 0.929046060000000 0.545418512000000 +0.279353445000000 0.938665259000000 0.396668009000000 +0.295765584000000 0.939210677000000 0.198334004000000 +0.280940117000000 0.932268987000000 0.228084105000000 +0.294129328000000 0.923294423000000 0.396668009000000 +0.277618022000000 0.971985371000000 0.416501409000000 +0.279303862000000 0.983835828000000 0.297501006000000 +0.281039284000000 0.965787434000000 0.069416901000000 +0.276031350000000 0.959986164000000 0.099167002000000 +0.302508940000000 0.917790654000000 0.099167002000000 +0.305880618000000 0.913427257000000 0.059500201000000 +0.282675540000000 0.971935788000000 0.257834206000000 +0.289220562000000 0.924385161000000 0.168583904000000 +0.277667606000000 0.965985817000000 0.317334407000000 +0.295021831000000 0.927806472000000 0.257834206000000 +0.282675540000000 0.971935788000000 0.198334004000000 +0.290906401000000 0.911195999000000 0.396668009000000 +0.295963918000000 0.913030589000000 0.456168210000000 +0.294178912000000 0.926517301000000 0.386751308000000 +0.290856817000000 0.930335231000000 0.446251510000000 +0.284212628000000 0.987058805000000 0.198334004000000 +0.307318540000000 0.916402316000000 0.119000403000000 +0.284361379000000 0.940946100000000 0.208250704000000 +0.274345511000000 0.957110321000000 0.188417304000000 +0.285898467000000 0.999851249000000 0.009916700000000 +0.292592240000000 0.952598223000000 0.178500604000000 +0.284311795000000 0.978034559000000 0.208250704000000 +0.292493073000000 0.904452643000000 0.515668411000000 +0.297550590000000 0.902717220000000 0.079333602000000 +0.290856817000000 0.965836968000000 0.079333602000000 +0.284311795000000 0.990132933000000 0.029750101000000 +0.290955984000000 0.946400285000000 0.019833400000000 +0.297550590000000 0.902717220000000 0.049583501000000 +0.297600173000000 0.912633921000000 0.287584306000000 +0.284212628000000 0.931872319000000 0.446251510000000 +0.292542656000000 0.913476840000000 0.000000000000000 +0.294228495000000 0.933111907000000 0.069416901000000 +0.286790970000000 0.948333992000000 0.188417304000000 +0.272709256000000 0.966134568000000 0.426418109000000 +0.292542656000000 0.907576354000000 0.485918310000000 +0.289270145000000 0.930831066000000 0.426418109000000 +0.287485139000000 0.943574025000000 0.059500201000000 +0.292493073000000 0.926963553000000 0.386751308000000 +0.295765584000000 0.920170613000000 0.366917908000000 +0.299186845000000 0.905394779000000 0.376834608000000 +0.300723934000000 0.915063512000000 0.357001208000000 +0.295864751000000 0.906535150000000 0.386751308000000 +0.274345511000000 0.957110321000000 0.109083702000000 +0.282675540000000 0.941293184000000 0.247917505000000 +0.280840950000000 0.947491122000000 0.089250302000000 +0.297550590000000 0.948780343000000 0.178500604000000 +0.297401839000000 0.922501037000000 0.456168210000000 +0.280940117000000 0.929393144000000 0.049583501000000 +0.295914334000000 0.909807711000000 0.485918310000000 +0.285948051000000 0.928153557000000 0.188417304000000 +0.289319729000000 0.937029003000000 0.267750906000000 +0.272659672000000 0.963159508000000 0.585085313000000 +0.283468876000000 0.948929043000000 0.148750503000000 +0.285948051000000 0.934351494000000 0.386751308000000 +0.295021831000000 0.924682761000000 0.089250302000000 +0.302360190000000 0.914418927000000 0.218167405000000 +0.294228495000000 0.929591478000000 0.148750503000000 +0.305682284000000 0.920071446000000 0.218167405000000 +0.274494262000000 0.954333645000000 0.119000403000000 +0.285997634000000 0.965638683000000 0.138833803000000 +0.287633890000000 0.937128170000000 0.396668009000000 +0.296658087000000 0.921112699000000 0.079333602000000 +0.290906401000000 0.936582752000000 0.089250302000000 +0.289270145000000 0.933954826000000 0.228084105000000 +0.303996445000000 0.924236410000000 0.218167405000000 +0.284361379000000 0.937971090000000 0.109083702000000 +0.287485139000000 0.952895674000000 0.287584306000000 +0.299087678000000 0.921806868000000 0.168583904000000 +0.284262212000000 0.928153557000000 0.238000805000000 +0.291005568000000 0.914567677000000 0.426418109000000 +0.282625956000000 0.928798192000000 0.317334407000000 +0.299137262000000 0.915311479000000 0.327251107000000 +0.295815167000000 0.916947636000000 0.555335212000000 +0.292542656000000 0.913476840000000 0.109083702000000 +0.285105131000000 0.945408615000000 0.148750503000000 +0.289220562000000 0.924385161000000 0.485918310000000 +0.290906401000000 0.908022655000000 0.247917505000000 +0.300872684000000 0.901576800000000 0.128917103000000 +0.281039284000000 0.965787434000000 0.357001208000000 +0.277618022000000 0.971985371000000 0.277667606000000 +0.284212628000000 0.931872319000000 0.029750101000000 +0.272709256000000 0.966134568000000 0.436334809000000 +0.299087678000000 0.921806868000000 0.089250302000000 +0.294129328000000 0.962217422000000 0.079333602000000 +0.289220562000000 0.959143245000000 0.198334004000000 +0.302360190000000 0.921311033000000 0.178500604000000 +0.285948051000000 0.928153557000000 0.119000403000000 +0.281039284000000 0.941441935000000 0.327251107000000 +0.296658087000000 0.930880699000000 0.099167002000000 +0.295765584000000 0.955523699000000 0.000000000000000 +0.292592240000000 0.933211123000000 0.000000000000000 +0.284311795000000 0.925575214000000 0.059500201000000 +0.292542656000000 0.907576354000000 0.099167002000000 +0.294327662000000 0.910353129000000 0.337167807000000 +0.282625956000000 0.934996129000000 0.178500604000000 +0.287584306000000 0.990727935000000 0.228084105000000 +0.294327662000000 0.910353129000000 0.614835413000000 +0.276080934000000 0.971687870000000 0.446251510000000 +0.279204695000000 0.953639476000000 0.545418512000000 +0.286691803000000 0.942185687000000 0.000000000000000 +0.291005568000000 0.914567677000000 0.307417707000000 +0.280940117000000 0.941541102000000 0.257834206000000 +0.292493073000000 0.926963553000000 0.376834608000000 +0.302508940000000 0.917790654000000 0.307417707000000 +0.294030161000000 0.920121079000000 0.208250704000000 +0.290856817000000 0.924087709000000 0.485918310000000 +0.279204695000000 0.953639476000000 0.069416901000000 +0.292592240000000 0.949375295000000 0.069416901000000 +0.276080934000000 0.971687870000000 0.357001208000000 +0.300723934000000 0.915063512000000 0.317334407000000 +0.289270145000000 0.920666398000000 0.208250704000000 +0.287584306000000 0.940450265000000 0.089250302000000 +0.280940117000000 0.932268987000000 0.456168210000000 +0.282576373000000 0.947193621000000 0.188417304000000 +0.305731868000000 0.910055529000000 0.485918310000000 +0.292542656000000 0.923641458000000 0.119000403000000 +0.289319729000000 0.937029003000000 0.198334004000000 +0.274494262000000 0.954333645000000 0.158667203000000 +0.297501006000000 0.952003221000000 0.009916700000000 +0.285105131000000 0.939210677000000 0.297501006000000 +0.292542656000000 0.907576354000000 0.019833400000000 +0.280940117000000 0.932268987000000 0.575168612000000 +0.295765584000000 0.942532772000000 0.188417304000000 +0.274444678000000 0.971886155000000 0.099167002000000 +0.281039284000000 0.980811235000000 0.019833400000000 +0.279353445000000 0.938665259000000 0.069416901000000 +0.299137262000000 0.908815942000000 0.406584709000000 +0.282625956000000 0.984034212000000 0.218167405000000 +0.274494262000000 0.954333645000000 0.218167405000000 +0.284361379000000 0.937971090000000 0.317334407000000 +0.281039284000000 0.941441935000000 0.000000000000000 +0.300723934000000 0.915063512000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.128917103000000 +0.285948051000000 0.931376484000000 0.099167002000000 +0.276031350000000 0.959986164000000 0.505751711000000 +0.285898467000000 0.962514923000000 0.188417304000000 +0.285948051000000 0.934351494000000 0.039666801000000 +0.299186845000000 0.952052754000000 0.099167002000000 +0.274444678000000 0.971886155000000 0.119000403000000 +0.277618022000000 0.957060738000000 0.357001208000000 +0.287534723000000 0.962415805000000 0.257834206000000 +0.290807234000000 0.962267055000000 0.089250302000000 +0.279353445000000 0.968911194000000 0.009916700000000 +0.276080934000000 0.966084935000000 0.495835011000000 +0.281832620000000 0.942582405000000 0.089250302000000 +0.297501006000000 0.906287233000000 0.049583501000000 +0.292592240000000 0.949375295000000 0.000000000000000 +0.285848884000000 0.983984579000000 0.148750503000000 +0.289220562000000 0.952647806000000 0.307417707000000 +0.282625956000000 0.938070257000000 0.228084105000000 +0.302360190000000 0.914418927000000 0.347084507000000 +0.280890534000000 0.974910798000000 0.218167405000000 +0.279799697000000 0.944565695000000 0.138833803000000 +0.285948051000000 0.928153557000000 0.208250704000000 +0.272758839000000 0.968861561000000 0.039666801000000 +0.290955984000000 0.968613743000000 0.099167002000000 +0.292542656000000 0.907576354000000 0.119000403000000 +0.271866336000000 0.964349562000000 0.228084105000000 +0.294178912000000 0.942929440000000 0.247917505000000 +0.294129328000000 0.939508178000000 0.267750906000000 +0.271866336000000 0.964349562000000 0.337167807000000 +0.282576373000000 0.959688663000000 0.009916700000000 +0.305682284000000 0.920071446000000 0.366917908000000 +0.282675540000000 0.941293184000000 0.019833400000000 +0.300823101000000 0.918236856000000 0.337167807000000 +0.292542656000000 0.913476840000000 0.466084910000000 +0.294129328000000 0.923294423000000 0.158667203000000 +0.279204695000000 0.950813167000000 0.000000000000000 +0.285898467000000 0.956267402000000 0.307417707000000 +0.295963918000000 0.932616072000000 0.198334004000000 +0.287683473000000 0.971687870000000 0.218167405000000 +0.285898467000000 0.956267402000000 0.049583501000000 +0.284311795000000 0.941045217000000 0.000000000000000 +0.294327662000000 0.910353129000000 0.396668009000000 +0.297550590000000 0.902717220000000 0.069416901000000 +0.292592240000000 0.929988146000000 0.188417304000000 +0.274494262000000 0.954333645000000 0.416501409000000 +0.299137262000000 0.915311479000000 0.535501812000000 +0.294129328000000 0.916798885000000 0.228084105000000 +0.279204695000000 0.953639476000000 0.624752113000000 +0.272659672000000 0.957308705000000 0.753669216000000 +0.280940117000000 0.941541102000000 0.307417707000000 +0.271866336000000 0.964349562000000 0.138833803000000 +0.305880618000000 0.917046852000000 0.267750906000000 +0.277568439000000 0.953837810000000 0.614835413000000 +0.287633890000000 0.949871180000000 0.168583904000000 +0.299137262000000 0.918633524000000 0.238000805000000 +0.295021831000000 0.924682761000000 0.396668009000000 +0.302360190000000 0.921311033000000 0.099167002000000 +0.290955984000000 0.946400285000000 0.109083702000000 +0.276080934000000 0.971687870000000 0.366917908000000 +0.279254278000000 0.962961224000000 0.357001208000000 +0.295914334000000 0.909807711000000 0.009916700000000 +0.281039284000000 0.959936630000000 0.059500201000000 +0.290955984000000 0.921013532000000 0.555335212000000 +0.272758839000000 0.968861561000000 0.089250302000000 +0.272659672000000 0.963159508000000 0.525585111000000 +0.294278079000000 0.912435587000000 0.208250704000000 +0.284361379000000 0.981009618000000 0.009916700000000 +0.279353445000000 0.965836968000000 0.277667606000000 +0.286691803000000 0.942185687000000 0.238000805000000 +0.296757254000000 0.927806472000000 0.178500604000000 +0.297501006000000 0.919278060000000 0.436334809000000 +0.285154715000000 0.948333992000000 0.277667606000000 +0.277766773000000 0.950763633000000 0.733835816000000 +0.272659672000000 0.957308705000000 0.525585111000000 +0.307417707000000 0.913328090000000 0.406584709000000 +0.287534723000000 0.962415805000000 0.168583904000000 +0.287485139000000 0.996727539000000 0.119000403000000 +0.294129328000000 0.916798885000000 0.009916700000000 +0.289170978000000 0.975009965000000 0.128917103000000 +0.299186845000000 0.935491915000000 0.099167002000000 +0.285948051000000 0.937425671000000 0.406584709000000 +0.281832620000000 0.939706512000000 0.218167405000000 +0.299137262000000 0.908815942000000 0.634668814000000 +0.305682284000000 0.920071446000000 0.307417707000000 +0.290856817000000 0.955870734000000 0.059500201000000 +0.282625956000000 0.962713257000000 0.029750101000000 +0.282576373000000 0.959688663000000 0.347084507000000 +0.279353445000000 0.968911194000000 0.297501006000000 +0.275932183000000 0.954036144000000 0.079333602000000 +0.285898467000000 0.959391212000000 0.089250302000000 +0.279303862000000 0.977786641000000 0.208250704000000 +0.297501006000000 0.935591082000000 0.267750906000000 +0.297550590000000 0.928798192000000 0.267750906000000 +0.277618022000000 0.971985371000000 0.247917505000000 +0.290906401000000 0.936582752000000 0.396668009000000 +0.274494262000000 0.954333645000000 0.386751308000000 +0.302409773000000 0.911096832000000 0.138833803000000 +0.295914334000000 0.909807711000000 0.624752113000000 +0.292542656000000 0.907576354000000 0.000000000000000 +0.300872684000000 0.901576800000000 0.476001610000000 +0.283468876000000 0.948929043000000 0.138833803000000 +0.282675540000000 0.931971536000000 0.247917505000000 +0.274494262000000 0.954333645000000 0.238000805000000 +0.276080934000000 0.966084935000000 0.357001208000000 +0.292493073000000 0.904452643000000 0.267750906000000 +0.299137262000000 0.941888236000000 0.128917103000000 +0.281832620000000 0.945656532000000 0.347084507000000 +0.292542656000000 0.923641458000000 0.019833400000000 +0.279353445000000 0.938665259000000 0.545418512000000 +0.285898467000000 0.946995337000000 0.337167807000000 +0.304095612000000 0.922104369000000 0.317334407000000 +0.285948051000000 0.937425671000000 0.416501409000000 +0.285898467000000 0.996330871000000 0.109083702000000 +0.295914334000000 0.935888583000000 0.247917505000000 +0.276080934000000 0.966084935000000 0.168583904000000 +0.274444678000000 0.971886155000000 0.287584306000000 +0.280890534000000 0.953639476000000 0.168583904000000 +0.289170978000000 0.956069117000000 0.218167405000000 +0.302508940000000 0.924980212000000 0.317334407000000 +0.295021831000000 0.927806472000000 0.198334004000000 +0.274345511000000 0.966134568000000 0.208250704000000 +0.290906401000000 0.908022655000000 0.257834206000000 +0.300823101000000 0.904799728000000 0.317334407000000 +0.277568439000000 0.953837810000000 0.267750906000000 +0.299236429000000 0.931822686000000 0.238000805000000 +0.295963918000000 0.913030589000000 0.585085313000000 +0.300922268000000 0.908220989000000 0.188417304000000 +0.292493073000000 0.926963553000000 0.188417304000000 +0.284311795000000 0.947044870000000 0.039666801000000 +0.287584306000000 0.990727935000000 0.019833400000000 +0.295765584000000 0.942532772000000 0.029750101000000 +0.282625956000000 0.956515319000000 0.267750906000000 +0.274494262000000 0.954333645000000 0.604918713000000 +0.300922268000000 0.911245583000000 0.009916700000000 +0.298343926000000 0.927112303000000 0.000000000000000 +0.275932183000000 0.954036144000000 0.644585514000000 +0.289319729000000 0.937029003000000 0.039666801000000 +0.302360190000000 0.921311033000000 0.059500201000000 +0.285948051000000 0.934351494000000 0.307417707000000 +0.287485139000000 0.943574025000000 0.198334004000000 +0.294278079000000 0.912435587000000 0.009916700000000 +0.282675540000000 0.941293184000000 0.218167405000000 +0.271866336000000 0.964349562000000 0.565251912000000 +0.274295928000000 0.963010758000000 0.456168210000000 +0.292542656000000 0.907576354000000 0.456168210000000 +0.295815167000000 0.916947636000000 0.138833803000000 +0.302508940000000 0.917790654000000 0.366917908000000 +0.302360190000000 0.914418927000000 0.297501006000000 +0.279254278000000 0.962961224000000 0.267750906000000 +0.280840950000000 0.947491122000000 0.178500604000000 +0.297501006000000 0.932516954000000 0.317334407000000 +0.299137262000000 0.908815942000000 0.644585514000000 +0.295914334000000 0.909807711000000 0.247917505000000 +0.292592240000000 0.952598223000000 0.029750101000000 +0.289220562000000 0.924385161000000 0.178500604000000 +0.282625956000000 0.929046060000000 0.595002013000000 +0.299137262000000 0.918633524000000 0.327251107000000 +0.287485139000000 0.996727539000000 0.029750101000000 +0.284212628000000 0.931872319000000 0.277667606000000 +0.290856817000000 0.955870734000000 0.138833803000000 +0.277717189000000 0.969010312000000 0.396668009000000 +0.281832620000000 0.942582405000000 0.148750503000000 +0.281039284000000 0.938516508000000 0.138833803000000 +0.296707670000000 0.924286043000000 0.436334809000000 +0.285997634000000 0.950069464000000 0.317334407000000 +0.280890534000000 0.983885362000000 0.228084105000000 +0.279303862000000 0.941789019000000 0.406584709000000 +0.302508940000000 0.917790654000000 0.317334407000000 +0.284361379000000 0.940946100000000 0.267750906000000 +0.300823101000000 0.904799728000000 0.000000000000000 +0.276031350000000 0.959986164000000 0.138833803000000 +0.295963918000000 0.932616072000000 0.208250704000000 +0.302409773000000 0.934847280000000 0.257834206000000 +0.290906401000000 0.908022655000000 0.595002013000000 +0.297401839000000 0.922501037000000 0.416501409000000 +0.289121395000000 0.988000793000000 0.019833400000000 +0.279204695000000 0.950813167000000 0.495835011000000 +0.275981767000000 0.974811681000000 0.069416901000000 +0.285948051000000 0.937425671000000 0.337167807000000 +0.287485139000000 0.996727539000000 0.109083702000000 +0.294278079000000 0.912435587000000 0.604918713000000 +0.287633890000000 0.978084093000000 0.059500201000000 +0.279849280000000 0.945011947000000 0.089250302000000 +0.294129328000000 0.916798885000000 0.446251510000000 +0.294178912000000 0.936285251000000 0.009916700000000 +0.282675540000000 0.980910402000000 0.257834206000000 +0.297451423000000 0.938962760000000 0.238000805000000 +0.285105131000000 0.942185687000000 0.257834206000000 +0.277568439000000 0.953837810000000 0.416501409000000 +0.290955984000000 0.921013532000000 0.376834608000000 +0.279353445000000 0.938665259000000 0.386751308000000 +0.290856817000000 0.930335231000000 0.039666801000000 +0.287485139000000 0.943574025000000 0.337167807000000 +0.299137262000000 0.941888236000000 0.208250704000000 +0.286790970000000 0.948333992000000 0.168583904000000 +0.300823101000000 0.904799728000000 0.674335615000000 +0.284311795000000 0.978034559000000 0.079333602000000 +0.305880618000000 0.913427257000000 0.188417304000000 +0.277618022000000 0.957060738000000 0.426418109000000 +0.277618022000000 0.959936630000000 0.208250704000000 +0.295864751000000 0.929293977000000 0.218167405000000 +0.280989701000000 0.935343164000000 0.416501409000000 +0.289270145000000 0.933954826000000 0.128917103000000 +0.290955984000000 0.921013532000000 0.327251107000000 +0.277717189000000 0.980612901000000 0.228084105000000 +0.282675540000000 0.925971882000000 0.376834608000000 +0.299186845000000 0.905394779000000 0.634668814000000 +0.295864751000000 0.906535150000000 0.198334004000000 +0.307516874000000 0.919922695000000 0.039666801000000 +0.275981767000000 0.974811681000000 0.109083702000000 +0.287584306000000 0.934103577000000 0.138833803000000 +0.298244759000000 0.923542241000000 0.039666801000000 +0.297501006000000 0.908815942000000 0.595002013000000 +0.287633890000000 0.930831066000000 0.247917505000000 +0.282675540000000 0.931971536000000 0.505751711000000 +0.297550590000000 0.902717220000000 0.525585111000000 +0.295815167000000 0.916947636000000 0.158667203000000 +0.294030161000000 0.920121079000000 0.247917505000000 +0.294327662000000 0.910353129000000 0.624752113000000 +0.279799697000000 0.944565695000000 0.119000403000000 +0.282675540000000 0.941293184000000 0.168583904000000 +0.285997634000000 0.968762444000000 0.099167002000000 +0.285105131000000 0.939210677000000 0.049583501000000 +0.272858006000000 0.960085331000000 0.565251912000000 +0.285105131000000 0.939210677000000 0.307417707000000 +0.297401839000000 0.922501037000000 0.446251510000000 +0.284311795000000 0.996231704000000 0.138833803000000 +0.280840950000000 0.947491122000000 0.247917505000000 +0.296658087000000 0.930880699000000 0.128917103000000 +0.300922268000000 0.908220989000000 0.436334809000000 +0.276080934000000 0.951061134000000 0.039666801000000 +0.271866336000000 0.964349562000000 0.386751308000000 +0.281039284000000 0.959936630000000 0.079333602000000 +0.300872684000000 0.901576800000000 0.674335615000000 +0.295914334000000 0.935888583000000 0.099167002000000 +0.281039284000000 0.965787434000000 0.228084105000000 +0.305682284000000 0.920071446000000 0.208250704000000 +0.290906401000000 0.927211470000000 0.505751711000000 +0.275981767000000 0.974811681000000 0.257834206000000 +0.295815167000000 0.916947636000000 0.525585111000000 +0.276080934000000 0.951061134000000 0.396668009000000 +0.281039284000000 0.941441935000000 0.357001208000000 +0.285898467000000 0.996330871000000 0.049583501000000 +0.287584306000000 0.984331663000000 0.089250302000000 +0.272659672000000 0.957308705000000 0.188417304000000 +0.295815167000000 0.945706116000000 0.158667203000000 +0.289270145000000 0.949722330000000 0.297501006000000 +0.294327662000000 0.910353129000000 0.485918310000000 +0.285997634000000 0.950069464000000 0.158667203000000 +0.290906401000000 0.908022655000000 0.416501409000000 +0.289170978000000 0.962316589000000 0.198334004000000 +0.279353445000000 0.947491122000000 0.218167405000000 +0.277618022000000 0.974811681000000 0.406584709000000 +0.284311795000000 0.993355860000000 0.247917505000000 +0.292542656000000 0.945904450000000 0.188417304000000 +0.307318540000000 0.916402316000000 0.238000805000000 +0.285898467000000 0.999851249000000 0.029750101000000 +0.299186845000000 0.905394779000000 0.386751308000000 +0.298294342000000 0.920468114000000 0.247917505000000 +0.296757254000000 0.927806472000000 0.228084105000000 +0.302459357000000 0.928351891000000 0.148750503000000 +0.284163045000000 0.959490280000000 0.168583904000000 +0.295021831000000 0.924682761000000 0.366917908000000 +0.283468876000000 0.948929043000000 0.069416901000000 +0.300872684000000 0.931574818000000 0.039666801000000 +0.285105131000000 0.939210677000000 0.069416901000000 +0.289270145000000 0.927508971000000 0.297501006000000 +0.290906401000000 0.908022655000000 0.009916700000000 +0.284311795000000 0.968762444000000 0.029750101000000 +0.275932183000000 0.954036144000000 0.138833803000000 +0.297600173000000 0.912633921000000 0.297501006000000 +0.272659672000000 0.963159508000000 0.247917505000000 +0.300872684000000 0.901576800000000 0.664418914000000 +0.272858006000000 0.960085331000000 0.327251107000000 +0.294278079000000 0.968613743000000 0.009916700000000 +0.292493073000000 0.904452643000000 0.416501409000000 +0.275981767000000 0.974811681000000 0.267750906000000 +0.291005568000000 0.914567677000000 0.357001208000000 +0.299286012000000 0.912138135000000 0.238000805000000 +0.284262212000000 0.965737850000000 0.247917505000000 +0.276080934000000 0.951061134000000 0.347084507000000 +0.287485139000000 0.943574025000000 0.228084105000000 +0.294228495000000 0.907030935000000 0.426418109000000 +0.285948051000000 0.928153557000000 0.228084105000000 +0.299186845000000 0.935491915000000 0.109083702000000 +0.290955984000000 0.949524045000000 0.059500201000000 +0.285997634000000 0.925228180000000 0.148750503000000 +0.279353445000000 0.938665259000000 0.079333602000000 +0.305880618000000 0.917046852000000 0.376834608000000 +0.285997634000000 0.968762444000000 0.228084105000000 +0.299286012000000 0.912138135000000 0.059500201000000 +0.282675540000000 0.971935788000000 0.009916700000000 +0.297501006000000 0.908815942000000 0.515668411000000 +0.300723934000000 0.915063512000000 0.158667203000000 +0.285898467000000 0.940747766000000 0.148750503000000 +0.296658087000000 0.930880699000000 0.049583501000000 +0.289270145000000 0.930831066000000 0.376834608000000 +0.284212628000000 0.931872319000000 0.228084105000000 +0.284212628000000 0.987058805000000 0.049583501000000 +0.305731868000000 0.910055529000000 0.049583501000000 +0.274395095000000 0.960134915000000 0.238000805000000 +0.292542656000000 0.913476840000000 0.079333602000000 +0.284262212000000 0.934847280000000 0.485918310000000 +0.295021831000000 0.924682761000000 0.059500201000000 +0.294129328000000 0.939508178000000 0.039666801000000 +0.280890534000000 0.953639476000000 0.009916700000000 +0.289270145000000 0.949722330000000 0.208250704000000 +0.300823101000000 0.904799728000000 0.218167405000000 +0.277568439000000 0.953837810000000 0.575168612000000 +0.286691803000000 0.939111461000000 0.277667606000000 +0.289270145000000 0.930831066000000 0.476001610000000 +0.297501006000000 0.908815942000000 0.327251107000000 +0.300773517000000 0.921608534000000 0.138833803000000 +0.280989701000000 0.944565695000000 0.099167002000000 +0.289270145000000 0.927508971000000 0.426418109000000 +0.274494262000000 0.954333645000000 0.168583904000000 +0.304095612000000 0.917294770000000 0.347084507000000 +0.280840950000000 0.971787087000000 0.178500604000000 +0.286691803000000 0.942185687000000 0.059500201000000 +0.281832620000000 0.939706512000000 0.238000805000000 +0.275981767000000 0.962911591000000 0.198334004000000 +0.285997634000000 0.965638683000000 0.059500201000000 +0.284212628000000 0.956366569000000 0.178500604000000 +0.282675540000000 0.931971536000000 0.158667203000000 +0.279303862000000 0.941789019000000 0.485918310000000 +0.302508940000000 0.904353476000000 0.366917908000000 +0.299137262000000 0.908815942000000 0.188417304000000 +0.285898467000000 0.956267402000000 0.089250302000000 +0.282625956000000 0.934996129000000 0.505751711000000 +0.298343926000000 0.927112303000000 0.257834206000000 +0.285154715000000 0.948333992000000 0.000000000000000 +0.300723934000000 0.915063512000000 0.198334004000000 +0.286691803000000 0.942185687000000 0.069416901000000 +0.272709256000000 0.966134568000000 0.416501409000000 +0.271122584000000 0.966134568000000 0.277667606000000 +0.290856817000000 0.924087709000000 0.476001610000000 +0.299186845000000 0.905394779000000 0.099167002000000 +0.290906401000000 0.908022655000000 0.188417304000000 +0.297451423000000 0.938962760000000 0.178500604000000 +0.302508940000000 0.917790654000000 0.019833400000000 +0.279254278000000 0.959837414000000 0.119000403000000 +0.274395095000000 0.960134915000000 0.208250704000000 +0.289170978000000 0.975009965000000 0.059500201000000 +0.282576373000000 0.959688663000000 0.079333602000000 +0.289270145000000 0.927508971000000 0.029750101000000 +0.289270145000000 0.920666398000000 0.515668411000000 +0.277766773000000 0.950763633000000 0.059500201000000 +0.279204695000000 0.953639476000000 0.476001610000000 +0.294129328000000 0.971836621000000 0.069416901000000 +0.277618022000000 0.957060738000000 0.019833400000000 +0.297501006000000 0.906287233000000 0.337167807000000 +0.290955984000000 0.921013532000000 0.495835011000000 +0.292493073000000 0.955821150000000 0.079333602000000 +0.300823101000000 0.904799728000000 0.267750906000000 +0.298294342000000 0.930434348000000 0.109083702000000 +0.287633890000000 0.965886601000000 0.148750503000000 +0.280940117000000 0.929393144000000 0.228084105000000 +0.302508940000000 0.917790654000000 0.069416901000000 +0.275981767000000 0.957060738000000 0.515668411000000 +0.292493073000000 0.955821150000000 0.009916700000000 +0.280890534000000 0.977786641000000 0.069416901000000 +0.292592240000000 0.929988146000000 0.109083702000000 +0.274295928000000 0.963010758000000 0.347084507000000 +0.299286012000000 0.912138135000000 0.218167405000000 +0.277766773000000 0.950763633000000 0.515668411000000 +0.296658087000000 0.930880699000000 0.287584306000000 +0.302508940000000 0.904353476000000 0.555335212000000 +0.292493073000000 0.904452643000000 0.238000805000000 +0.294278079000000 0.945805283000000 0.049583501000000 +0.292493073000000 0.904452643000000 0.337167807000000 +0.280791367000000 0.962762840000000 0.069416901000000 +0.279799697000000 0.944565695000000 0.198334004000000 +0.292542656000000 0.907576354000000 0.357001208000000 +0.290906401000000 0.927211470000000 0.208250704000000 +0.290906401000000 0.911195999000000 0.664418914000000 +0.296707670000000 0.924286043000000 0.347084507000000 +0.279353445000000 0.947491122000000 0.545418512000000 +0.277568439000000 0.953837810000000 0.525585111000000 +0.290955984000000 0.946400285000000 0.148750503000000 +0.305880618000000 0.913427257000000 0.238000805000000 +0.285997634000000 0.981108736000000 0.059500201000000 +0.302360190000000 0.914418927000000 0.337167807000000 +0.280940117000000 0.956614437000000 0.446251510000000 +0.285898467000000 0.996330871000000 0.009916700000000 +0.299186845000000 0.905394779000000 0.287584306000000 +0.284212628000000 0.931872319000000 0.466084910000000 +0.285898467000000 0.962514923000000 0.000000000000000 +0.279254278000000 0.959837414000000 0.426418109000000 +0.297401839000000 0.922501037000000 0.168583904000000 +0.272659672000000 0.957308705000000 0.376834608000000 +0.299087678000000 0.921806868000000 0.357001208000000 +0.287485139000000 0.996727539000000 0.049583501000000 +0.289220562000000 0.946499452000000 0.128917103000000 +0.294129328000000 0.923294423000000 0.406584709000000 +0.286691803000000 0.939111461000000 0.337167807000000 +0.281039284000000 0.965787434000000 0.188417304000000 +0.280890534000000 0.974910798000000 0.287584306000000 +0.280791367000000 0.962762840000000 0.109083702000000 +0.275981767000000 0.962911591000000 0.267750906000000 +0.282675540000000 0.971935788000000 0.188417304000000 +0.287584306000000 0.924831462000000 0.525585111000000 +0.294129328000000 0.916798885000000 0.188417304000000 +0.285154715000000 0.948333992000000 0.198334004000000 +0.299137262000000 0.955523699000000 0.049583501000000 +0.280940117000000 0.932268987000000 0.505751711000000 +0.275932183000000 0.954036144000000 0.198334004000000 +0.290955984000000 0.946400285000000 0.128917103000000 +0.292592240000000 0.917294770000000 0.119000403000000 +0.305731868000000 0.923641458000000 0.000000000000000 +0.297501006000000 0.935591082000000 0.000000000000000 +0.284311795000000 0.990132933000000 0.049583501000000 +0.281832620000000 0.942582405000000 0.347084507000000 +0.285898467000000 0.959391212000000 0.079333602000000 +0.281039284000000 0.938516508000000 0.188417304000000 +0.299186845000000 0.905394779000000 0.446251510000000 +0.289220562000000 0.959143245000000 0.059500201000000 +0.292592240000000 0.929988146000000 0.069416901000000 +0.299137262000000 0.908815942000000 0.307417707000000 +0.280890534000000 0.953639476000000 0.148750503000000 +0.276080934000000 0.951061134000000 0.029750101000000 +0.289170978000000 0.956069117000000 0.178500604000000 +0.282675540000000 0.971935788000000 0.218167405000000 +0.304145196000000 0.914022259000000 0.109083702000000 +0.292493073000000 0.904452643000000 0.029750101000000 +0.284262212000000 0.965737850000000 0.099167002000000 +0.297550590000000 0.902717220000000 0.684252315000000 +0.299137262000000 0.955523699000000 0.119000403000000 +0.286096801000000 0.990232149000000 0.089250302000000 +0.297451423000000 0.942235271000000 0.009916700000000 +0.281039284000000 0.950565349000000 0.148750503000000 +0.274395095000000 0.974662930000000 0.059500201000000 +0.287485139000000 0.943574025000000 0.128917103000000 +0.304145196000000 0.914022259000000 0.208250704000000 +0.284361379000000 0.937971090000000 0.029750101000000 +0.287584306000000 0.984331663000000 0.267750906000000 +0.302459357000000 0.928351891000000 0.238000805000000 +0.289220562000000 0.959143245000000 0.218167405000000 +0.276080934000000 0.951061134000000 0.426418109000000 +0.287534723000000 0.956118651000000 0.099167002000000 +0.295864751000000 0.906535150000000 0.277667606000000 +0.294278079000000 0.945805283000000 0.178500604000000 +0.299137262000000 0.915311479000000 0.109083702000000 +0.290856817000000 0.924087709000000 0.505751711000000 +0.285997634000000 0.968762444000000 0.238000805000000 +0.295021831000000 0.927806472000000 0.287584306000000 +0.285948051000000 0.937425671000000 0.079333602000000 +0.282625956000000 0.938070257000000 0.436334809000000 +0.294228495000000 0.929591478000000 0.039666801000000 +0.275981767000000 0.974811681000000 0.247917505000000 +0.294178912000000 0.926517301000000 0.327251107000000 +0.274345511000000 0.957110321000000 0.257834206000000 +0.279303862000000 0.983835828000000 0.208250704000000 +0.272709256000000 0.966134568000000 0.386751308000000 +0.292542656000000 0.907576354000000 0.416501409000000 +0.305731868000000 0.910055529000000 0.436334809000000 +0.279254278000000 0.962961224000000 0.238000805000000 +0.275981767000000 0.957060738000000 0.456168210000000 +0.274395095000000 0.960134915000000 0.376834608000000 +0.299137262000000 0.915311479000000 0.277667606000000 +0.281039284000000 0.968861561000000 0.228084105000000 +0.286741387000000 0.945309398000000 0.228084105000000 +0.300823101000000 0.918236856000000 0.396668009000000 +0.271122584000000 0.966134568000000 0.307417707000000 +0.290906401000000 0.952697390000000 0.198334004000000 +0.281039284000000 0.941441935000000 0.099167002000000 +0.277766773000000 0.950763633000000 0.565251912000000 +0.289170978000000 0.940202347000000 0.109083702000000 +0.290856817000000 0.943177357000000 0.297501006000000 +0.282725123000000 0.950366965000000 0.317334407000000 +0.287584306000000 0.940450265000000 0.317334407000000 +0.282675540000000 0.971935788000000 0.029750101000000 +0.297501006000000 0.919278060000000 0.297501006000000 +0.300823101000000 0.904799728000000 0.178500604000000 +0.297501006000000 0.919278060000000 0.109083702000000 +0.294178912000000 0.942929440000000 0.119000403000000 +0.287633890000000 0.930831066000000 0.386751308000000 +0.289220562000000 0.952647806000000 0.317334407000000 +0.276080934000000 0.977538674000000 0.069416901000000 +0.282625956000000 0.929046060000000 0.257834206000000 +0.282625956000000 0.938070257000000 0.079333602000000 +0.276080934000000 0.971687870000000 0.128917103000000 +0.280840950000000 0.947491122000000 0.228084105000000 +0.300823101000000 0.934996129000000 0.148750503000000 +0.277618022000000 0.971985371000000 0.426418109000000 +0.283419292000000 0.942780689000000 0.039666801000000 +0.297550590000000 0.902717220000000 0.575168612000000 +0.283419292000000 0.942780689000000 0.079333602000000 +0.294278079000000 0.912435587000000 0.059500201000000 +0.285948051000000 0.934351494000000 0.099167002000000 +0.274494262000000 0.954333645000000 0.337167807000000 +0.290856817000000 0.943177357000000 0.019833400000000 +0.299286012000000 0.912138135000000 0.485918310000000 +0.284262212000000 0.928153557000000 0.218167405000000 +0.297501006000000 0.908815942000000 0.277667606000000 +0.284311795000000 0.993355860000000 0.069416901000000 +0.305880618000000 0.913427257000000 0.337167807000000 +0.300773517000000 0.921608534000000 0.049583501000000 +0.277618022000000 0.963010758000000 0.138833803000000 +0.276080934000000 0.971687870000000 0.257834206000000 +0.284311795000000 0.941045217000000 0.238000805000000 +0.290906401000000 0.908022655000000 0.654502214000000 +0.299137262000000 0.908815942000000 0.366917908000000 +0.294129328000000 0.923294423000000 0.109083702000000 +0.282675540000000 0.941293184000000 0.119000403000000 +0.285848884000000 0.987257090000000 0.148750503000000 +0.287584306000000 0.924831462000000 0.505751711000000 +0.277568439000000 0.953837810000000 0.297501006000000 +0.282625956000000 0.934996129000000 0.059500201000000 +0.304095612000000 0.910948082000000 0.128917103000000 +0.300922268000000 0.911245583000000 0.287584306000000 +0.302459357000000 0.928351891000000 0.257834206000000 +0.285105131000000 0.945408615000000 0.109083702000000 +0.277618022000000 0.971985371000000 0.158667203000000 +0.292542656000000 0.907576354000000 0.238000805000000 +0.279353445000000 0.968911194000000 0.386751308000000 +0.281039284000000 0.950565349000000 0.059500201000000 +0.282625956000000 0.956515319000000 0.079333602000000 +0.298294342000000 0.930434348000000 0.267750906000000 +0.284361379000000 0.937971090000000 0.049583501000000 +0.300823101000000 0.918236856000000 0.218167405000000 +0.277618022000000 0.959936630000000 0.188417304000000 +0.292493073000000 0.904452643000000 0.297501006000000 +0.280890534000000 0.974910798000000 0.297501006000000 +0.304095612000000 0.910948082000000 0.247917505000000 +0.294129328000000 0.916798885000000 0.049583501000000 +0.285997634000000 0.925228180000000 0.674335615000000 +0.272659672000000 0.957308705000000 0.059500201000000 +0.281039284000000 0.941441935000000 0.198334004000000 +0.300823101000000 0.904799728000000 0.307417707000000 +0.279303862000000 0.977786641000000 0.158667203000000 +0.295864751000000 0.958994494000000 0.079333602000000 +0.274345511000000 0.966134568000000 0.267750906000000 +0.287534723000000 0.987505007000000 0.049583501000000 +0.284262212000000 0.971737454000000 0.188417304000000 +0.302508940000000 0.931475651000000 0.247917505000000 +0.305682284000000 0.920071446000000 0.148750503000000 +0.292542656000000 0.923641458000000 0.228084105000000 +0.287584306000000 0.924831462000000 0.208250704000000 +0.285848884000000 0.983984579000000 0.198334004000000 +0.292542656000000 0.907576354000000 0.614835413000000 +0.300723934000000 0.915063512000000 0.128917103000000 +0.298343926000000 0.927112303000000 0.069416901000000 +0.302360190000000 0.921311033000000 0.019833400000000 +0.279353445000000 0.980712018000000 0.287584306000000 +0.285948051000000 0.934351494000000 0.158667203000000 +0.284262212000000 0.928153557000000 0.069416901000000 +0.287584306000000 0.934103577000000 0.198334004000000 +0.307417707000000 0.913328090000000 0.277667606000000 +0.285997634000000 0.981108736000000 0.128917103000000 +0.285898467000000 0.996330871000000 0.128917103000000 +0.281039284000000 0.968861561000000 0.317334407000000 +0.274395095000000 0.960134915000000 0.138833803000000 +0.287584306000000 0.940450265000000 0.287584306000000 +0.295914334000000 0.925922349000000 0.446251510000000 +0.279204695000000 0.953639476000000 0.277667606000000 +0.287584306000000 0.934103577000000 0.257834206000000 +0.287584306000000 0.940450265000000 0.138833803000000 +0.285948051000000 0.928153557000000 0.039666801000000 +0.285997634000000 0.925228180000000 0.535501812000000 +0.305880618000000 0.913427257000000 0.208250704000000 +0.284262212000000 0.928153557000000 0.039666801000000 +0.298294342000000 0.930434348000000 0.049583501000000 +0.292344322000000 0.972034905000000 0.049583501000000 +0.292592240000000 0.933211123000000 0.198334004000000 +0.279303862000000 0.974811681000000 0.099167002000000 +0.296757254000000 0.927806472000000 0.307417707000000 +0.285948051000000 0.931376484000000 0.485918310000000 +0.281882204000000 0.948978627000000 0.426418109000000 +0.305682284000000 0.920071446000000 0.198334004000000 +0.279303862000000 0.977786641000000 0.337167807000000 +0.284311795000000 0.993355860000000 0.019833400000000 +0.282625956000000 0.962713257000000 0.168583904000000 +0.284311795000000 0.993355860000000 0.148750503000000 +0.299137262000000 0.915311479000000 0.119000403000000 +0.274295928000000 0.963010758000000 0.426418109000000 +0.287584306000000 0.934103577000000 0.079333602000000 +0.284163045000000 0.959490280000000 0.218167405000000 +0.274345511000000 0.957110321000000 0.247917505000000 +0.294228495000000 0.952350355000000 0.178500604000000 +0.275981767000000 0.962911591000000 0.466084910000000 +0.294327662000000 0.910353129000000 0.634668814000000 +0.282576373000000 0.996033369000000 0.029750101000000 +0.279799697000000 0.944565695000000 0.079333602000000 +0.290856817000000 0.955870734000000 0.099167002000000 +0.287485139000000 0.952895674000000 0.049583501000000 +0.285997634000000 0.925228180000000 0.575168612000000 +0.304145196000000 0.914022259000000 0.009916700000000 +0.280890534000000 0.983885362000000 0.337167807000000 +0.294278079000000 0.912435587000000 0.624752113000000 +0.292542656000000 0.923641458000000 0.178500604000000 +0.272709256000000 0.966134568000000 0.228084105000000 +0.295864751000000 0.906535150000000 0.079333602000000 +0.281039284000000 0.968861561000000 0.019833400000000 +0.286790970000000 0.948333992000000 0.208250704000000 +0.279303862000000 0.941789019000000 0.446251510000000 +0.302459357000000 0.928351891000000 0.029750101000000 +0.285948051000000 0.937425671000000 0.396668009000000 +0.282625956000000 0.929046060000000 0.069416901000000 +0.280989701000000 0.935343164000000 0.138833803000000 +0.281039284000000 0.965787434000000 0.287584306000000 +0.295914334000000 0.935888583000000 0.317334407000000 +0.292592240000000 0.917294770000000 0.307417707000000 +0.295765584000000 0.920170613000000 0.297501006000000 +0.303996445000000 0.924236410000000 0.158667203000000 +0.281039284000000 0.938516508000000 0.466084910000000 +0.296707670000000 0.924286043000000 0.357001208000000 +0.292493073000000 0.939855263000000 0.247917505000000 +0.290906401000000 0.911195999000000 0.119000403000000 +0.276031350000000 0.959986164000000 0.208250704000000 +0.272659672000000 0.963159508000000 0.485918310000000 +0.281039284000000 0.965787434000000 0.059500201000000 +0.300823101000000 0.904799728000000 0.287584306000000 +0.289170978000000 0.978282476000000 0.029750101000000 +0.282725123000000 0.965836968000000 0.267750906000000 +0.277717189000000 0.969010312000000 0.029750101000000 +0.291005568000000 0.914567677000000 0.585085313000000 +0.282576373000000 0.944317778000000 0.069416901000000 +0.280940117000000 0.932268987000000 0.565251912000000 +0.281039284000000 0.938516508000000 0.476001610000000 +0.279353445000000 0.947491122000000 0.228084105000000 +0.290856817000000 0.924087709000000 0.277667606000000 +0.281832620000000 0.945656532000000 0.238000805000000 +0.285898467000000 0.940747766000000 0.277667606000000 +0.287584306000000 0.934103577000000 0.188417304000000 +0.296707670000000 0.924286043000000 0.376834608000000 +0.277618022000000 0.959936630000000 0.128917103000000 +0.300823101000000 0.918236856000000 0.168583904000000 +0.285948051000000 0.931376484000000 0.247917505000000 +0.292542656000000 0.923641458000000 0.267750906000000 +0.299087678000000 0.921806868000000 0.069416901000000 +0.284262212000000 0.971737454000000 0.089250302000000 +0.295963918000000 0.932616072000000 0.327251107000000 +0.272659672000000 0.957308705000000 0.426418109000000 +0.290906401000000 0.911195999000000 0.436334809000000 +0.277618022000000 0.971985371000000 0.297501006000000 +0.280890534000000 0.953639476000000 0.267750906000000 +0.295815167000000 0.916947636000000 0.089250302000000 +0.282576373000000 0.959688663000000 0.208250704000000 +0.280940117000000 0.929393144000000 0.238000805000000 +0.290906401000000 0.908022655000000 0.406584709000000 +0.290856817000000 0.930335231000000 0.287584306000000 +0.280890534000000 0.974910798000000 0.069416901000000 +0.292592240000000 0.929988146000000 0.228084105000000 +0.287633890000000 0.949871180000000 0.019833400000000 +0.285948051000000 0.937425671000000 0.357001208000000 +0.284311795000000 0.990132933000000 0.138833803000000 +0.275932183000000 0.954036144000000 0.654502214000000 +0.283419292000000 0.945557365000000 0.069416901000000 +0.283419292000000 0.945557365000000 0.089250302000000 +0.285997634000000 0.968762444000000 0.119000403000000 +0.271866336000000 0.964349562000000 0.089250302000000 +0.284212628000000 0.999652965000000 0.138833803000000 +0.289270145000000 0.933954826000000 0.416501409000000 +0.290906401000000 0.959044078000000 0.069416901000000 +0.282625956000000 0.938070257000000 0.287584306000000 +0.292542656000000 0.920368947000000 0.287584306000000 +0.302508940000000 0.924980212000000 0.099167002000000 +0.284212628000000 0.931872319000000 0.109083702000000 +0.282625956000000 0.984034212000000 0.079333602000000 +0.280890534000000 0.953639476000000 0.188417304000000 +0.300872684000000 0.901576800000000 0.357001208000000 +0.280840950000000 0.971787087000000 0.277667606000000 +0.280890534000000 0.974910798000000 0.019833400000000 +0.285997634000000 0.950069464000000 0.019833400000000 +0.300922268000000 0.908220989000000 0.247917505000000 +0.290906401000000 0.908022655000000 0.039666801000000 +0.285948051000000 0.993405494000000 0.089250302000000 +0.302508940000000 0.924980212000000 0.218167405000000 +0.300922268000000 0.908220989000000 0.208250704000000 +0.302409773000000 0.934847280000000 0.198334004000000 +0.277618022000000 0.957060738000000 0.386751308000000 +0.282675540000000 0.971935788000000 0.089250302000000 +0.284262212000000 0.928153557000000 0.505751711000000 +0.279303862000000 0.977786641000000 0.109083702000000 +0.275981767000000 0.974811681000000 0.019833400000000 +0.279254278000000 0.962961224000000 0.148750503000000 +0.284262212000000 0.971737454000000 0.277667606000000 +0.287485139000000 0.943574025000000 0.079333602000000 +0.292592240000000 0.933211123000000 0.376834608000000 +0.274395095000000 0.960134915000000 0.267750906000000 +0.290906401000000 0.933508575000000 0.347084507000000 +0.302360190000000 0.914418927000000 0.357001208000000 +0.291005568000000 0.914567677000000 0.525585111000000 +0.274395095000000 0.974662930000000 0.079333602000000 +0.302508940000000 0.904353476000000 0.416501409000000 +0.297550590000000 0.916104716000000 0.039666801000000 +0.296658087000000 0.921112699000000 0.307417707000000 +0.296757254000000 0.927806472000000 0.327251107000000 +0.292542656000000 0.923641458000000 0.416501409000000 +0.299186845000000 0.905394779000000 0.714002415000000 +0.297550590000000 0.948780343000000 0.009916700000000 +0.300823101000000 0.934996129000000 0.158667203000000 +0.285948051000000 0.937425671000000 0.317334407000000 +0.295765584000000 0.920170613000000 0.039666801000000 +0.284311795000000 0.968762444000000 0.228084105000000 +0.284311795000000 0.941045217000000 0.247917505000000 +0.271122584000000 0.966134568000000 0.327251107000000 +0.274345511000000 0.966134568000000 0.307417707000000 +0.274494262000000 0.954333645000000 0.198334004000000 +0.287534723000000 0.962415805000000 0.138833803000000 +0.279303862000000 0.974811681000000 0.307417707000000 +0.279303862000000 0.956812820000000 0.485918310000000 +0.298294342000000 0.930434348000000 0.000000000000000 +0.279303862000000 0.974811681000000 0.148750503000000 +0.291005568000000 0.914567677000000 0.337167807000000 +0.289270145000000 0.920666398000000 0.833002818000000 +0.280989701000000 0.935343164000000 0.188417304000000 +0.299186845000000 0.935491915000000 0.079333602000000 +0.297550590000000 0.916104716000000 0.198334004000000 +0.281832620000000 0.939706512000000 0.436334809000000 +0.292493073000000 0.939855263000000 0.257834206000000 +0.292592240000000 0.936384467000000 0.009916700000000 +0.290955984000000 0.921013532000000 0.138833803000000 +0.304194779000000 0.907526820000000 0.267750906000000 +0.277618022000000 0.959936630000000 0.545418512000000 +0.297550590000000 0.902717220000000 0.624752113000000 +0.297600173000000 0.912633921000000 0.366917908000000 +0.286691803000000 0.939111461000000 0.148750503000000 +0.290906401000000 0.933508575000000 0.238000805000000 +0.287633890000000 0.965886601000000 0.039666801000000 +0.305731868000000 0.923641458000000 0.247917505000000 +0.285948051000000 0.928153557000000 0.525585111000000 +0.280840950000000 0.971787087000000 0.109083702000000 +0.276080934000000 0.971687870000000 0.158667203000000 +0.295765584000000 0.955523699000000 0.079333602000000 +0.299087678000000 0.921806868000000 0.386751308000000 +0.282625956000000 0.928798192000000 0.267750906000000 +0.287633890000000 0.946747369000000 0.138833803000000 +0.279303862000000 0.974811681000000 0.039666801000000 +0.290955984000000 0.949524045000000 0.099167002000000 +0.289220562000000 0.924385161000000 0.247917505000000 +0.281882204000000 0.948978627000000 0.009916700000000 +0.279799697000000 0.944565695000000 0.228084105000000 +0.282576373000000 0.959688663000000 0.029750101000000 +0.285898467000000 0.962514923000000 0.247917505000000 +0.282675540000000 0.968861561000000 0.317334407000000 +0.277766773000000 0.950763633000000 0.089250302000000 +0.289270145000000 0.930831066000000 0.009916700000000 +0.282675540000000 0.980910402000000 0.049583501000000 +0.282725123000000 0.965836968000000 0.178500604000000 +0.287584306000000 0.934103577000000 0.218167405000000 +0.285749717000000 0.953193274000000 0.257834206000000 +0.282725123000000 0.950366965000000 0.297501006000000 +0.285898467000000 0.999851249000000 0.069416901000000 +0.274494262000000 0.954333645000000 0.277667606000000 +0.290906401000000 0.936582752000000 0.178500604000000 +0.297501006000000 0.919278060000000 0.029750101000000 +0.287534723000000 0.956118651000000 0.119000403000000 +0.276080934000000 0.951061134000000 0.267750906000000 +0.298294342000000 0.930434348000000 0.029750101000000 +0.279303862000000 0.941789019000000 0.366917908000000 +0.279799697000000 0.944565695000000 0.307417707000000 +0.292493073000000 0.942929440000000 0.039666801000000 +0.279353445000000 0.965836968000000 0.208250704000000 +0.284212628000000 0.956366569000000 0.297501006000000 +0.280940117000000 0.986810838000000 0.297501006000000 +0.289319729000000 0.937029003000000 0.128917103000000 +0.279303862000000 0.977786641000000 0.257834206000000 +0.305682284000000 0.920071446000000 0.178500604000000 +0.294178912000000 0.926517301000000 0.128917103000000 +0.305880618000000 0.913427257000000 0.267750906000000 +0.282625956000000 0.938070257000000 0.406584709000000 +0.281039284000000 0.938516508000000 0.267750906000000 +0.285948051000000 0.931376484000000 0.138833803000000 +0.282675540000000 0.931971536000000 0.307417707000000 +0.295914334000000 0.925922349000000 0.168583904000000 +0.299137262000000 0.908815942000000 0.277667606000000 +0.294129328000000 0.923294423000000 0.079333602000000 +0.294228495000000 0.907030935000000 0.624752113000000 +0.290906401000000 0.911195999000000 0.614835413000000 +0.281039284000000 0.941441935000000 0.337167807000000 +0.292592240000000 0.936384467000000 0.069416901000000 +0.294129328000000 0.939508178000000 0.099167002000000 +0.282576373000000 0.959688663000000 0.138833803000000 +0.287485139000000 0.952895674000000 0.198334004000000 +0.277618022000000 0.957060738000000 0.366917908000000 +0.285105131000000 0.945408615000000 0.138833803000000 +0.279303862000000 0.983835828000000 0.079333602000000 +0.289170978000000 0.962316589000000 0.069416901000000 +0.290856817000000 0.943177357000000 0.218167405000000 +0.287584306000000 0.984331663000000 0.049583501000000 +0.300823101000000 0.934996129000000 0.208250704000000 +0.284311795000000 0.947044870000000 0.238000805000000 +0.276080934000000 0.971687870000000 0.000000000000000 +0.282675540000000 0.931971536000000 0.228084105000000 +0.294327662000000 0.910353129000000 0.565251912000000 +0.285997634000000 0.950069464000000 0.198334004000000 +0.277717189000000 0.969010312000000 0.347084507000000 +0.297501006000000 0.919278060000000 0.208250704000000 +0.292542656000000 0.907576354000000 0.575168612000000 +0.282576373000000 0.944317778000000 0.128917103000000 +0.274345511000000 0.957110321000000 0.238000805000000 +0.297600173000000 0.912633921000000 0.138833803000000 +0.304145196000000 0.914022259000000 0.436334809000000 +0.287633890000000 0.937128170000000 0.257834206000000 +0.297600173000000 0.912633921000000 0.386751308000000 +0.285105131000000 0.942185687000000 0.247917505000000 +0.284311795000000 0.990132933000000 0.238000805000000 +0.294228495000000 0.952350355000000 0.009916700000000 +0.277717189000000 0.980612901000000 0.138833803000000 +0.300872684000000 0.901576800000000 0.079333602000000 +0.307318540000000 0.916402316000000 0.099167002000000 +0.282675540000000 0.980910402000000 0.238000805000000 +0.284212628000000 0.931872319000000 0.406584709000000 +0.292542656000000 0.945904450000000 0.208250704000000 +0.284311795000000 0.925575214000000 0.267750906000000 +0.274494262000000 0.954333645000000 0.317334407000000 +0.297501006000000 0.925723965000000 0.297501006000000 +0.285997634000000 0.968762444000000 0.109083702000000 +0.295815167000000 0.945706116000000 0.099167002000000 +0.295914334000000 0.909807711000000 0.565251912000000 +0.282625956000000 0.929046060000000 0.396668009000000 +0.300922268000000 0.911245583000000 0.446251510000000 +0.290955984000000 0.921013532000000 0.019833400000000 +0.304095612000000 0.917294770000000 0.396668009000000 +0.271866336000000 0.964349562000000 0.634668814000000 +0.279204695000000 0.950813167000000 0.307417707000000 +0.290906401000000 0.911195999000000 0.178500604000000 +0.286790970000000 0.948333992000000 0.148750503000000 +0.289319729000000 0.937029003000000 0.168583904000000 +0.287633890000000 0.949871180000000 0.218167405000000 +0.294228495000000 0.907030935000000 0.000000000000000 +0.305682284000000 0.920071446000000 0.357001208000000 +0.295765584000000 0.955523699000000 0.039666801000000 +0.298244759000000 0.923542241000000 0.138833803000000 +0.285898467000000 0.940747766000000 0.069416901000000 +0.279353445000000 0.965836968000000 0.218167405000000 +0.300872684000000 0.901576800000000 0.307417707000000 +0.302508940000000 0.924980212000000 0.198334004000000 +0.282725123000000 0.950366965000000 0.079333602000000 +0.307268956000000 0.923492707000000 0.089250302000000 +0.289170978000000 0.975009965000000 0.029750101000000 +0.280989701000000 0.935343164000000 0.337167807000000 +0.284311795000000 0.978034559000000 0.109083702000000 +0.290955984000000 0.921013532000000 0.079333602000000 +0.283419292000000 0.939706512000000 0.019833400000000 +0.304095612000000 0.922104369000000 0.178500604000000 +0.296707670000000 0.924286043000000 0.297501006000000 +0.282675540000000 0.980910402000000 0.099167002000000 +0.277618022000000 0.974811681000000 0.287584306000000 +0.280940117000000 0.986810838000000 0.119000403000000 +0.295765584000000 0.942532772000000 0.158667203000000 +0.303996445000000 0.924236410000000 0.049583501000000 +0.292493073000000 0.962267055000000 0.039666801000000 +0.297550590000000 0.928798192000000 0.138833803000000 +0.292493073000000 0.962267055000000 0.119000403000000 +0.272709256000000 0.966134568000000 0.079333602000000 +0.279303862000000 0.974811681000000 0.049583501000000 +0.299087678000000 0.921806868000000 0.436334809000000 +0.285154715000000 0.948333992000000 0.019833400000000 +0.290856817000000 0.924087709000000 0.188417304000000 +0.279204695000000 0.953639476000000 0.317334407000000 +0.304194779000000 0.907526820000000 0.168583904000000 +0.303996445000000 0.924236410000000 0.228084105000000 +0.281832620000000 0.942582405000000 0.238000805000000 +0.287485139000000 0.996727539000000 0.000000000000000 +0.295716000000000 0.922897705000000 0.366917908000000 +0.295914334000000 0.909807711000000 0.644585514000000 +0.295815167000000 0.945706116000000 0.119000403000000 +0.295914334000000 0.909807711000000 0.019833400000000 +0.280940117000000 0.956614437000000 0.208250704000000 +0.294129328000000 0.971836621000000 0.089250302000000 +0.274295928000000 0.963010758000000 0.208250704000000 +0.275932183000000 0.954036144000000 0.485918310000000 +0.294278079000000 0.912435587000000 0.555335212000000 +0.287485139000000 0.943574025000000 0.089250302000000 +0.289319729000000 0.937029003000000 0.386751308000000 +0.294178912000000 0.936285251000000 0.347084507000000 +0.304095612000000 0.917294770000000 0.238000805000000 +0.285997634000000 0.968762444000000 0.138833803000000 +0.292592240000000 0.965489933000000 0.069416901000000 +0.292542656000000 0.907576354000000 0.208250704000000 +0.307417707000000 0.913328090000000 0.138833803000000 +0.296757254000000 0.927806472000000 0.357001208000000 +0.304095612000000 0.922104369000000 0.148750503000000 +0.292493073000000 0.962267055000000 0.009916700000000 +0.294178912000000 0.926517301000000 0.366917908000000 +0.282625956000000 0.938070257000000 0.456168210000000 +0.279303862000000 0.977786641000000 0.000000000000000 +0.294178912000000 0.942929440000000 0.178500604000000 +0.290955984000000 0.921013532000000 0.704085715000000 +0.280989701000000 0.944565695000000 0.307417707000000 +0.284212628000000 0.956366569000000 0.148750503000000 +0.272858006000000 0.960085331000000 0.505751711000000 +0.281832620000000 0.945656532000000 0.277667606000000 +0.277618022000000 0.957060738000000 0.644585514000000 +0.299286012000000 0.912138135000000 0.257834206000000 +0.282625956000000 0.962713257000000 0.128917103000000 +0.297600173000000 0.912633921000000 0.485918310000000 +0.279849280000000 0.945011947000000 0.436334809000000 +0.272659672000000 0.963159508000000 0.396668009000000 +0.302360190000000 0.921311033000000 0.307417707000000 +0.284361379000000 0.937971090000000 0.228084105000000 +0.297451423000000 0.938962760000000 0.267750906000000 +0.285948051000000 0.934351494000000 0.337167807000000 +0.280890534000000 0.953639476000000 0.446251510000000 +0.295914334000000 0.925922349000000 0.347084507000000 +0.279353445000000 0.968911194000000 0.119000403000000 +0.279204695000000 0.953639476000000 0.505751711000000 +0.292542656000000 0.945904450000000 0.059500201000000 +0.276080934000000 0.951061134000000 0.317334407000000 +0.284311795000000 0.950218215000000 0.029750101000000 +0.280890534000000 0.953639476000000 0.366917908000000 +0.287485139000000 0.943574025000000 0.039666801000000 +0.300723934000000 0.915063512000000 0.208250704000000 +0.287584306000000 0.924831462000000 0.555335212000000 +0.289319729000000 0.937029003000000 0.119000403000000 +0.292493073000000 0.962267055000000 0.019833400000000 +0.284311795000000 0.968762444000000 0.119000403000000 +0.287485139000000 0.952895674000000 0.297501006000000 +0.280989701000000 0.935343164000000 0.099167002000000 +0.277766773000000 0.950763633000000 0.188417304000000 +0.277766773000000 0.950763633000000 0.228084105000000 +0.305880618000000 0.913427257000000 0.079333602000000 +0.282576373000000 0.947193621000000 0.039666801000000 +0.298244759000000 0.923542241000000 0.267750906000000 +0.274494262000000 0.954333645000000 0.466084910000000 +0.285154715000000 0.948333992000000 0.138833803000000 +0.295765584000000 0.955523699000000 0.029750101000000 +0.302508940000000 0.931475651000000 0.059500201000000 +0.290807234000000 0.971836621000000 0.019833400000000 +0.277766773000000 0.950763633000000 0.406584709000000 +0.299286012000000 0.912138135000000 0.515668411000000 +0.279303862000000 0.974811681000000 0.079333602000000 +0.272758839000000 0.968861561000000 0.158667203000000 +0.296658087000000 0.921112699000000 0.238000805000000 +0.289220562000000 0.924385161000000 0.257834206000000 +0.302360190000000 0.921311033000000 0.198334004000000 +0.285997634000000 0.925228180000000 0.327251107000000 +0.285898467000000 0.996330871000000 0.198334004000000 +0.282675540000000 0.971935788000000 0.238000805000000 +0.285997634000000 0.950069464000000 0.297501006000000 +0.292592240000000 0.952598223000000 0.000000000000000 +0.285898467000000 0.959391212000000 0.009916700000000 +0.282675540000000 0.980910402000000 0.247917505000000 +0.299286012000000 0.912138135000000 0.099167002000000 +0.285948051000000 0.931376484000000 0.446251510000000 +0.285948051000000 0.934351494000000 0.416501409000000 +0.284212628000000 0.956366569000000 0.188417304000000 +0.292592240000000 0.929988146000000 0.148750503000000 +0.296658087000000 0.921112699000000 0.347084507000000 +0.275981767000000 0.974811681000000 0.277667606000000 +0.280940117000000 0.941541102000000 0.317334407000000 +0.281039284000000 0.965787434000000 0.089250302000000 +0.289220562000000 0.946499452000000 0.257834206000000 +0.299137262000000 0.918633524000000 0.128917103000000 +0.285848884000000 0.983984579000000 0.069416901000000 +0.284361379000000 0.937971090000000 0.297501006000000 +0.292493073000000 0.959044078000000 0.099167002000000 +0.284311795000000 0.941045217000000 0.138833803000000 +0.282576373000000 0.974910798000000 0.119000403000000 +0.285948051000000 0.937425671000000 0.267750906000000 +0.280890534000000 0.953639476000000 0.247917505000000 +0.282675540000000 0.968861561000000 0.109083702000000 +0.304095612000000 0.910948082000000 0.168583904000000 +0.272709256000000 0.966134568000000 0.456168210000000 +0.284212628000000 0.983488793000000 0.257834206000000 +0.305880618000000 0.917046852000000 0.138833803000000 +0.300723934000000 0.915063512000000 0.168583904000000 +0.295716000000000 0.922897705000000 0.386751308000000 +0.292592240000000 0.917294770000000 0.585085313000000 +0.272709256000000 0.966134568000000 0.317334407000000 +0.271122584000000 0.966134568000000 0.079333602000000 +0.281832620000000 0.939706512000000 0.019833400000000 +0.276031350000000 0.959986164000000 0.515668411000000 +0.280989701000000 0.935343164000000 0.555335212000000 +0.283419292000000 0.942780689000000 0.099167002000000 +0.277568439000000 0.953837810000000 0.426418109000000 +0.279303862000000 0.941789019000000 0.267750906000000 +0.295914334000000 0.925922349000000 0.366917908000000 +0.290807234000000 0.971836621000000 0.158667203000000 +0.272858006000000 0.960085331000000 0.664418914000000 +0.279204695000000 0.950813167000000 0.634668814000000 +0.287584306000000 0.934103577000000 0.446251510000000 +0.282625956000000 0.928798192000000 0.376834608000000 +0.295765584000000 0.942532772000000 0.109083702000000 +0.287584306000000 0.934103577000000 0.396668009000000 +0.290906401000000 0.952697390000000 0.287584306000000 +0.286691803000000 0.942185687000000 0.208250704000000 +0.297501006000000 0.906287233000000 0.059500201000000 +0.279353445000000 0.947491122000000 0.039666801000000 +0.281832620000000 0.945656532000000 0.128917103000000 +0.285948051000000 0.931376484000000 0.376834608000000 +0.289270145000000 0.930831066000000 0.416501409000000 +0.282625956000000 0.984034212000000 0.009916700000000 +0.285948051000000 0.928153557000000 0.535501812000000 +0.289270145000000 0.930831066000000 0.019833400000000 +0.279303862000000 0.956812820000000 0.446251510000000 +0.305731868000000 0.910055529000000 0.247917505000000 +0.297501006000000 0.925723965000000 0.158667203000000 +0.284262212000000 0.934847280000000 0.089250302000000 +0.286691803000000 0.939111461000000 0.158667203000000 +0.281832620000000 0.939706512000000 0.049583501000000 +0.289220562000000 0.924385161000000 0.366917908000000 +0.287633890000000 0.937128170000000 0.337167807000000 +0.285154715000000 0.948333992000000 0.109083702000000 +0.294278079000000 0.949176911000000 0.119000403000000 +0.277618022000000 0.959936630000000 0.099167002000000 +0.290906401000000 0.908022655000000 0.307417707000000 +0.280890534000000 0.974910798000000 0.347084507000000 +0.297501006000000 0.925723965000000 0.009916700000000 +0.295864751000000 0.929293977000000 0.208250704000000 +0.285898467000000 0.940747766000000 0.228084105000000 +0.297451423000000 0.938962760000000 0.257834206000000 +0.275981767000000 0.957060738000000 0.198334004000000 +0.294129328000000 0.916798885000000 0.277667606000000 +0.279799697000000 0.944565695000000 0.287584306000000 +0.277618022000000 0.957060738000000 0.307417707000000 +0.285154715000000 0.948333992000000 0.168583904000000 +0.282625956000000 0.984034212000000 0.317334407000000 +0.284311795000000 0.947044870000000 0.218167405000000 +0.289220562000000 0.959143245000000 0.188417304000000 +0.280840950000000 0.971787087000000 0.069416901000000 +0.302508940000000 0.904353476000000 0.089250302000000 +0.295765584000000 0.942532772000000 0.148750503000000 +0.274395095000000 0.960134915000000 0.545418512000000 +0.274295928000000 0.963010758000000 0.476001610000000 +0.284212628000000 0.987058805000000 0.009916700000000 +0.299137262000000 0.918633524000000 0.208250704000000 +0.277618022000000 0.971985371000000 0.019833400000000 +0.285898467000000 0.956267402000000 0.267750906000000 +0.304095612000000 0.910948082000000 0.109083702000000 +0.281039284000000 0.938516508000000 0.347084507000000 +0.283419292000000 0.939706512000000 0.128917103000000 +0.287633890000000 0.937128170000000 0.208250704000000 +0.300922268000000 0.911245583000000 0.168583904000000 +0.300723934000000 0.915063512000000 0.247917505000000 +0.284311795000000 0.968762444000000 0.247917505000000 +0.296658087000000 0.930880699000000 0.089250302000000 +0.302508940000000 0.904353476000000 0.634668814000000 +0.297501006000000 0.919278060000000 0.009916700000000 +0.294228495000000 0.907030935000000 0.436334809000000 +0.285848884000000 0.987257090000000 0.188417304000000 +0.284212628000000 0.983488793000000 0.049583501000000 +0.280989701000000 0.944565695000000 0.148750503000000 +0.279799697000000 0.944565695000000 0.347084507000000 +0.280989701000000 0.935343164000000 0.307417707000000 +0.284212628000000 0.931872319000000 0.138833803000000 +0.285948051000000 0.934351494000000 0.049583501000000 +0.295963918000000 0.932616072000000 0.019833400000000 +0.285898467000000 0.956267402000000 0.079333602000000 +0.287584306000000 0.934103577000000 0.436334809000000 +0.274395095000000 0.974662930000000 0.029750101000000 +0.294129328000000 0.955821150000000 0.079333602000000 +0.282725123000000 0.950366965000000 0.208250704000000 +0.285749717000000 0.953193274000000 0.327251107000000 +0.274395095000000 0.960134915000000 0.575168612000000 +0.285898467000000 0.946995337000000 0.029750101000000 +0.289270145000000 0.930831066000000 0.436334809000000 +0.294228495000000 0.933111907000000 0.019833400000000 +0.279353445000000 0.980712018000000 0.188417304000000 +0.279204695000000 0.950813167000000 0.009916700000000 +0.276080934000000 0.966084935000000 0.337167807000000 +0.296707670000000 0.924286043000000 0.317334407000000 +0.299186845000000 0.935491915000000 0.188417304000000 +0.296658087000000 0.921112699000000 0.069416901000000 +0.276080934000000 0.951061134000000 0.545418512000000 +0.294327662000000 0.910353129000000 0.079333602000000 +0.284262212000000 0.943970693000000 0.238000805000000 +0.286741387000000 0.945309398000000 0.208250704000000 +0.297501006000000 0.919278060000000 0.079333602000000 +0.290856817000000 0.924087709000000 0.386751308000000 +0.284212628000000 0.962564506000000 0.238000805000000 +0.287633890000000 0.949871180000000 0.039666801000000 +0.307417707000000 0.913328090000000 0.119000403000000 +0.287683473000000 0.927806472000000 0.039666801000000 +0.300773517000000 0.921608534000000 0.089250302000000 +0.280840950000000 0.947491122000000 0.317334407000000 +0.300872684000000 0.901576800000000 0.416501409000000 +0.282675540000000 0.925971882000000 0.208250704000000 +0.282625956000000 0.956515319000000 0.347084507000000 +0.304095612000000 0.917294770000000 0.188417304000000 +0.282576373000000 0.944317778000000 0.228084105000000 +0.282625956000000 0.934996129000000 0.168583904000000 +0.281039284000000 0.941441935000000 0.178500604000000 +0.307516874000000 0.919922695000000 0.109083702000000 +0.279353445000000 0.965836968000000 0.198334004000000 +0.289220562000000 0.943474858000000 0.009916700000000 +0.300922268000000 0.908220989000000 0.307417707000000 +0.272659672000000 0.957308705000000 0.168583904000000 +0.296658087000000 0.921112699000000 0.267750906000000 +0.294228495000000 0.952350355000000 0.000000000000000 +0.289220562000000 0.946499452000000 0.198334004000000 +0.297501006000000 0.932516954000000 0.089250302000000 +0.277618022000000 0.959936630000000 0.426418109000000 +0.300922268000000 0.908220989000000 0.228084105000000 +0.294178912000000 0.936285251000000 0.198334004000000 +0.282625956000000 0.984034212000000 0.039666801000000 +0.299186845000000 0.905394779000000 0.416501409000000 +0.280840950000000 0.947491122000000 0.267750906000000 +0.274345511000000 0.957110321000000 0.545418512000000 +0.280940117000000 0.932268987000000 0.396668009000000 +0.299286012000000 0.912138135000000 0.000000000000000 +0.302508940000000 0.907576354000000 0.029750101000000 +0.279799697000000 0.944565695000000 0.366917908000000 +0.282625956000000 0.934996129000000 0.148750503000000 +0.284311795000000 0.993355860000000 0.039666801000000 +0.285948051000000 0.934351494000000 0.148750503000000 +0.292542656000000 0.913476840000000 0.188417304000000 +0.304095612000000 0.910948082000000 0.198334004000000 +0.279204695000000 0.953639476000000 0.000000000000000 +0.284361379000000 0.937971090000000 0.386751308000000 +0.276080934000000 0.966084935000000 0.376834608000000 +0.297600173000000 0.912633921000000 0.228084105000000 +0.286741387000000 0.945309398000000 0.168583904000000 +0.282625956000000 0.984034212000000 0.238000805000000 +0.280940117000000 0.986810838000000 0.168583904000000 +0.289270145000000 0.930831066000000 0.446251510000000 +0.282625956000000 0.938070257000000 0.376834608000000 +0.284311795000000 0.950218215000000 0.019833400000000 +0.271866336000000 0.964349562000000 0.694169015000000 +0.282675540000000 0.993058359000000 0.059500201000000 +0.289270145000000 0.920666398000000 0.733835816000000 +0.285848884000000 0.987257090000000 0.079333602000000 +0.282625956000000 0.928798192000000 0.059500201000000 +0.300723934000000 0.915063512000000 0.396668009000000 +0.284262212000000 0.965737850000000 0.297501006000000 +0.281039284000000 0.950565349000000 0.376834608000000 +0.299186845000000 0.935491915000000 0.297501006000000 +0.289270145000000 0.920666398000000 0.287584306000000 +0.285948051000000 0.937425671000000 0.089250302000000 +0.283419292000000 0.939706512000000 0.009916700000000 +0.285948051000000 0.978133726000000 0.188417304000000 +0.286096801000000 0.990232149000000 0.247917505000000 +0.290856817000000 0.924087709000000 0.347084507000000 +0.295914334000000 0.909807711000000 0.347084507000000 +0.287633890000000 0.937128170000000 0.168583904000000 +0.302508940000000 0.924980212000000 0.267750906000000 +0.285898467000000 0.956267402000000 0.158667203000000 +0.284163045000000 0.959490280000000 0.079333602000000 +0.284311795000000 0.947044870000000 0.148750503000000 +0.276031350000000 0.959986164000000 0.495835011000000 +0.299137262000000 0.918633524000000 0.009916700000000 +0.285948051000000 0.928153557000000 0.019833400000000 +0.297600173000000 0.912633921000000 0.069416901000000 +0.284311795000000 0.947044870000000 0.178500604000000 +0.290906401000000 0.911195999000000 0.138833803000000 +0.289170978000000 0.975009965000000 0.138833803000000 +0.277618022000000 0.957060738000000 0.069416901000000 +0.287584306000000 0.984331663000000 0.168583904000000 +0.285997634000000 0.971787087000000 0.208250704000000 +0.280940117000000 0.929393144000000 0.128917103000000 +0.287534723000000 0.974960382000000 0.148750503000000 +0.302360190000000 0.914418927000000 0.178500604000000 +0.279254278000000 0.959837414000000 0.386751308000000 +0.290906401000000 0.933508575000000 0.138833803000000 +0.277618022000000 0.974811681000000 0.000000000000000 +0.285154715000000 0.948333992000000 0.337167807000000 +0.282725123000000 0.950366965000000 0.347084507000000 +0.299087678000000 0.921806868000000 0.238000805000000 +0.292493073000000 0.926963553000000 0.247917505000000 +0.285105131000000 0.939210677000000 0.019833400000000 +0.282675540000000 0.931971536000000 0.287584306000000 +0.295021831000000 0.924682761000000 0.307417707000000 +0.285948051000000 0.937425671000000 0.119000403000000 +0.287683473000000 0.971687870000000 0.039666801000000 +0.289270145000000 0.920666398000000 0.485918310000000 +0.302409773000000 0.934847280000000 0.188417304000000 +0.287534723000000 0.959291995000000 0.158667203000000 +0.274395095000000 0.960134915000000 0.406584709000000 +0.272858006000000 0.960085331000000 0.446251510000000 +0.284262212000000 0.943970693000000 0.099167002000000 +0.284311795000000 0.996231704000000 0.069416901000000 +0.282675540000000 0.968861561000000 0.228084105000000 +0.287633890000000 0.937128170000000 0.297501006000000 +0.297501006000000 0.908815942000000 0.079333602000000 +0.297501006000000 0.932516954000000 0.247917505000000 +0.277618022000000 0.959936630000000 0.357001208000000 +0.272709256000000 0.966134568000000 0.198334004000000 +0.280989701000000 0.935343164000000 0.317334407000000 +0.299137262000000 0.908815942000000 0.158667203000000 +0.297550590000000 0.902717220000000 0.238000805000000 +0.299137262000000 0.915311479000000 0.525585111000000 +0.300773517000000 0.928351891000000 0.009916700000000 +0.284311795000000 0.947044870000000 0.257834206000000 +0.272858006000000 0.960085331000000 0.238000805000000 +0.287584306000000 0.924831462000000 0.009916700000000 +0.277717189000000 0.980612901000000 0.257834206000000 +0.284311795000000 0.993355860000000 0.188417304000000 +0.274395095000000 0.960134915000000 0.307417707000000 +0.302409773000000 0.911096832000000 0.198334004000000 +0.299137262000000 0.908815942000000 0.059500201000000 +0.290955984000000 0.949524045000000 0.198334004000000 +0.290906401000000 0.911195999000000 0.476001610000000 +0.285997634000000 0.925228180000000 0.119000403000000 +0.294278079000000 0.912435587000000 0.357001208000000 +0.302508940000000 0.931475651000000 0.039666801000000 +0.294129328000000 0.916798885000000 0.545418512000000 +0.287683473000000 0.971687870000000 0.089250302000000 +0.290906401000000 0.933508575000000 0.168583904000000 +0.276080934000000 0.971687870000000 0.386751308000000 +0.280989701000000 0.935343164000000 0.545418512000000 +0.285997634000000 0.981108736000000 0.109083702000000 +0.280890534000000 0.953639476000000 0.257834206000000 +0.295765584000000 0.952151971000000 0.019833400000000 +0.299137262000000 0.915311479000000 0.307417707000000 +0.285898467000000 0.940747766000000 0.188417304000000 +0.279303862000000 0.941789019000000 0.148750503000000 +0.274444678000000 0.968960778000000 0.148750503000000 +0.305880618000000 0.913427257000000 0.317334407000000 +0.287584306000000 0.990727935000000 0.198334004000000 +0.280940117000000 0.956614437000000 0.228084105000000 +0.287633890000000 0.968762444000000 0.089250302000000 +0.284262212000000 0.934847280000000 0.138833803000000 +0.289220562000000 0.924385161000000 0.376834608000000 +0.272659672000000 0.963159508000000 0.000000000000000 +0.296757254000000 0.927806472000000 0.297501006000000 +0.280840950000000 0.971787087000000 0.317334407000000 +0.297501006000000 0.906287233000000 0.307417707000000 +0.299137262000000 0.938863642000000 0.178500604000000 +0.274295928000000 0.963010758000000 0.585085313000000 +0.295914334000000 0.948929043000000 0.049583501000000 +0.280940117000000 0.929393144000000 0.029750101000000 +0.295864751000000 0.906535150000000 0.664418914000000 +0.290807234000000 0.971836621000000 0.128917103000000 +0.292592240000000 0.949375295000000 0.158667203000000 +0.275932183000000 0.954036144000000 0.456168210000000 +0.279204695000000 0.953639476000000 0.128917103000000 +0.280940117000000 0.929393144000000 0.644585514000000 +0.276080934000000 0.951061134000000 0.644585514000000 +0.295021831000000 0.927806472000000 0.376834608000000 +0.299137262000000 0.908815942000000 0.218167405000000 +0.287584306000000 0.984331663000000 0.000000000000000 +0.274345511000000 0.957110321000000 0.585085313000000 +0.284361379000000 0.981009618000000 0.158667203000000 +0.289270145000000 0.920666398000000 0.307417707000000 +0.279303862000000 0.974811681000000 0.069416901000000 +0.277618022000000 0.957060738000000 0.208250704000000 +0.290906401000000 0.911195999000000 0.347084507000000 +0.272659672000000 0.963159508000000 0.357001208000000 +0.287633890000000 0.937128170000000 0.238000805000000 +0.302508940000000 0.907576354000000 0.575168612000000 +0.272858006000000 0.960085331000000 0.267750906000000 +0.307417707000000 0.913328090000000 0.228084105000000 +0.289319729000000 0.993851695000000 0.079333602000000 +0.302508940000000 0.904353476000000 0.565251912000000 +0.294129328000000 0.916798885000000 0.039666801000000 +0.282675540000000 0.968861561000000 0.297501006000000 +0.282675540000000 0.925971882000000 0.347084507000000 +0.294129328000000 0.955821150000000 0.049583501000000 +0.295963918000000 0.913030589000000 0.485918310000000 +0.279353445000000 0.947491122000000 0.366917908000000 +0.281039284000000 0.941441935000000 0.446251510000000 +0.279353445000000 0.980712018000000 0.119000403000000 +0.281039284000000 0.968861561000000 0.238000805000000 +0.289170978000000 0.940202347000000 0.247917505000000 +0.297550590000000 0.902717220000000 0.327251107000000 +0.287633890000000 0.930831066000000 0.079333602000000 +0.289220562000000 0.943474858000000 0.317334407000000 +0.284212628000000 0.956366569000000 0.099167002000000 +0.280890534000000 0.983885362000000 0.188417304000000 +0.290906401000000 0.927211470000000 0.119000403000000 +0.299236429000000 0.931822686000000 0.029750101000000 +0.299087678000000 0.921806868000000 0.128917103000000 +0.282576373000000 0.987058805000000 0.198334004000000 +0.299286012000000 0.912138135000000 0.446251510000000 +0.287584306000000 0.924831462000000 0.049583501000000 +0.275981767000000 0.962911591000000 0.158667203000000 +0.274295928000000 0.963010758000000 0.267750906000000 +0.277667606000000 0.965985817000000 0.386751308000000 +0.272709256000000 0.966134568000000 0.376834608000000 +0.292592240000000 0.917294770000000 0.366917908000000 +0.302508940000000 0.904353476000000 0.614835413000000 +0.285948051000000 0.931376484000000 0.297501006000000 +0.304095612000000 0.922104369000000 0.347084507000000 +0.285997634000000 0.965638683000000 0.158667203000000 +0.279353445000000 0.980712018000000 0.138833803000000 +0.292592240000000 0.917294770000000 0.446251510000000 +0.297550590000000 0.928798192000000 0.079333602000000 +0.282675540000000 0.931971536000000 0.059500201000000 +0.307516874000000 0.919922695000000 0.089250302000000 +0.297501006000000 0.932516954000000 0.029750101000000 +0.298294342000000 0.920468114000000 0.416501409000000 +0.280989701000000 0.935343164000000 0.495835011000000 +0.295765584000000 0.939210677000000 0.218167405000000 +0.285997634000000 0.965638683000000 0.069416901000000 +0.279254278000000 0.962961224000000 0.376834608000000 +0.289270145000000 0.933954826000000 0.297501006000000 +0.292542656000000 0.920368947000000 0.049583501000000 +0.298343926000000 0.927112303000000 0.228084105000000 +0.295963918000000 0.913030589000000 0.297501006000000 +0.281832620000000 0.939706512000000 0.158667203000000 +0.290955984000000 0.946400285000000 0.228084105000000 +0.295765584000000 0.942532772000000 0.119000403000000 +0.302508940000000 0.917790654000000 0.396668009000000 +0.299186845000000 0.905394779000000 0.644585514000000 +0.289270145000000 0.920666398000000 0.714002415000000 +0.277667606000000 0.965985817000000 0.327251107000000 +0.307417707000000 0.913328090000000 0.188417304000000 +0.281039284000000 0.938516508000000 0.485918310000000 +0.285948051000000 0.993405494000000 0.188417304000000 +0.281039284000000 0.992909609000000 0.099167002000000 +0.283419292000000 0.945557365000000 0.238000805000000 +0.290906401000000 0.908022655000000 0.545418512000000 +0.297451423000000 0.938962760000000 0.009916700000000 +0.279204695000000 0.953639476000000 0.257834206000000 +0.277568439000000 0.953837810000000 0.138833803000000 +0.285898467000000 0.962514923000000 0.238000805000000 +0.295914334000000 0.909807711000000 0.049583501000000 +0.284311795000000 0.925575214000000 0.456168210000000 +0.279353445000000 0.968911194000000 0.357001208000000 +0.297550590000000 0.948780343000000 0.079333602000000 +0.275981767000000 0.957060738000000 0.297501006000000 +0.290955984000000 0.921013532000000 0.426418109000000 +0.294228495000000 0.933111907000000 0.347084507000000 +0.284262212000000 0.934847280000000 0.208250704000000 +0.280940117000000 0.956614437000000 0.079333602000000 +0.284212628000000 0.956366569000000 0.228084105000000 +0.294228495000000 0.907030935000000 0.188417304000000 +0.290955984000000 0.968613743000000 0.039666801000000 +0.279254278000000 0.959837414000000 0.238000805000000 +0.285948051000000 0.978133726000000 0.059500201000000 +0.280940117000000 0.956614437000000 0.109083702000000 +0.282576373000000 0.974910798000000 0.198334004000000 +0.295963918000000 0.932616072000000 0.307417707000000 +0.286741387000000 0.945309398000000 0.257834206000000 +0.300922268000000 0.908220989000000 0.039666801000000 +0.284262212000000 0.971737454000000 0.119000403000000 +0.285898467000000 0.996330871000000 0.188417304000000 +0.295963918000000 0.932616072000000 0.218167405000000 +0.292592240000000 0.952598223000000 0.188417304000000 +0.281039284000000 0.941441935000000 0.456168210000000 +0.286691803000000 0.942185687000000 0.297501006000000 +0.290906401000000 0.927211470000000 0.079333602000000 +0.292542656000000 0.920368947000000 0.545418512000000 +0.290906401000000 0.911195999000000 0.466084910000000 +0.294228495000000 0.907030935000000 0.505751711000000 +0.292542656000000 0.920368947000000 0.565251912000000 +0.290906401000000 0.927211470000000 0.138833803000000 +0.287633890000000 0.946747369000000 0.198334004000000 +0.285154715000000 0.948333992000000 0.218167405000000 +0.297501006000000 0.952003221000000 0.000000000000000 +0.290906401000000 0.936582752000000 0.376834608000000 +0.285898467000000 0.946995337000000 0.069416901000000 +0.289270145000000 0.933954826000000 0.436334809000000 +0.297550590000000 0.916104716000000 0.327251107000000 +0.295914334000000 0.925922349000000 0.000000000000000 +0.289270145000000 0.933954826000000 0.277667606000000 +0.274444678000000 0.971886155000000 0.049583501000000 +0.285948051000000 0.928153557000000 0.515668411000000 +0.282576373000000 0.944317778000000 0.049583501000000 +0.304095612000000 0.910948082000000 0.386751308000000 +0.282576373000000 0.947193621000000 0.376834608000000 +0.302409773000000 0.911096832000000 0.079333602000000 +0.282625956000000 0.928798192000000 0.208250704000000 +0.285898467000000 0.956267402000000 0.039666801000000 +0.289270145000000 0.933954826000000 0.396668009000000 +0.307268956000000 0.923492707000000 0.049583501000000 +0.271122584000000 0.966134568000000 0.148750503000000 +0.305682284000000 0.920071446000000 0.317334407000000 +0.279353445000000 0.980712018000000 0.009916700000000 +0.283419292000000 0.945557365000000 0.138833803000000 +0.284311795000000 0.950218215000000 0.089250302000000 +0.279303862000000 0.941789019000000 0.128917103000000 +0.274345511000000 0.966134568000000 0.099167002000000 +0.274295928000000 0.963010758000000 0.446251510000000 +0.285997634000000 0.925228180000000 0.257834206000000 +0.283419292000000 0.945557365000000 0.178500604000000 +0.285848884000000 0.943772359000000 0.218167405000000 +0.294278079000000 0.945805283000000 0.188417304000000 +0.284311795000000 0.978034559000000 0.158667203000000 +0.289220562000000 0.971886155000000 0.188417304000000 +0.304194779000000 0.907526820000000 0.446251510000000 +0.299137262000000 0.908815942000000 0.208250704000000 +0.276080934000000 0.966084935000000 0.267750906000000 +0.304194779000000 0.907526820000000 0.039666801000000 +0.297501006000000 0.919278060000000 0.366917908000000 +0.305731868000000 0.923641458000000 0.009916700000000 +0.285898467000000 0.959391212000000 0.000000000000000 +0.287584306000000 0.924831462000000 0.357001208000000 +0.302459357000000 0.928351891000000 0.188417304000000 +0.299137262000000 0.938863642000000 0.267750906000000 +0.276031350000000 0.959986164000000 0.039666801000000 +0.290906401000000 0.908022655000000 0.575168612000000 +0.279353445000000 0.968911194000000 0.128917103000000 +0.297501006000000 0.908815942000000 0.208250704000000 +0.294228495000000 0.929591478000000 0.009916700000000 +0.299286012000000 0.912138135000000 0.337167807000000 +0.279204695000000 0.953639476000000 0.109083702000000 +0.287633890000000 0.930831066000000 0.019833400000000 +0.285105131000000 0.939210677000000 0.128917103000000 +0.299137262000000 0.918633524000000 0.138833803000000 +0.304095612000000 0.922104369000000 0.000000000000000 +0.287485139000000 1.000000000000000 0.099167002000000 +0.277618022000000 0.957060738000000 0.624752113000000 +0.282625956000000 0.928798192000000 0.277667606000000 +0.279254278000000 0.962961224000000 0.029750101000000 +0.295914334000000 0.948929043000000 0.059500201000000 +0.285997634000000 0.925228180000000 0.029750101000000 +0.284361379000000 0.940946100000000 0.218167405000000 +0.277717189000000 0.980612901000000 0.168583904000000 +0.297401839000000 0.922501037000000 0.158667203000000 +0.295765584000000 0.939210677000000 0.257834206000000 +0.276080934000000 0.951061134000000 0.297501006000000 +0.304095612000000 0.922104369000000 0.009916700000000 +0.300872684000000 0.901576800000000 0.733835816000000 +0.279849280000000 0.945011947000000 0.466084910000000 +0.281039284000000 0.980811235000000 0.297501006000000 +0.287584306000000 0.934103577000000 0.277667606000000 +0.297451423000000 0.942235271000000 0.029750101000000 +0.287485139000000 0.952895674000000 0.089250302000000 +0.292542656000000 0.923641458000000 0.347084507000000 +0.285997634000000 0.968762444000000 0.158667203000000 +0.285898467000000 0.946995337000000 0.307417707000000 +0.282625956000000 0.962713257000000 0.238000805000000 +0.299137262000000 0.918633524000000 0.357001208000000 +0.285997634000000 0.971787087000000 0.119000403000000 +0.287633890000000 0.965886601000000 0.128917103000000 +0.274444678000000 0.971886155000000 0.019833400000000 +0.294030161000000 0.920121079000000 0.406584709000000 +0.290856817000000 0.924087709000000 0.436334809000000 +0.290906401000000 0.908022655000000 0.386751308000000 +0.300823101000000 0.904799728000000 0.019833400000000 +0.290955984000000 0.921013532000000 0.535501812000000 +0.277766773000000 0.950763633000000 0.654502214000000 +0.283468876000000 0.948929043000000 0.119000403000000 +0.289270145000000 0.920666398000000 0.654502214000000 +0.285898467000000 0.946995337000000 0.277667606000000 +0.300723934000000 0.915063512000000 0.000000000000000 +0.274345511000000 0.957110321000000 0.337167807000000 +0.287683473000000 0.927806472000000 0.307417707000000 +0.289220562000000 0.952647806000000 0.089250302000000 +0.282675540000000 0.931971536000000 0.426418109000000 +0.274444678000000 0.971886155000000 0.228084105000000 +0.297401839000000 0.922501037000000 0.337167807000000 +0.279303862000000 0.977786641000000 0.089250302000000 +0.282675540000000 0.968861561000000 0.119000403000000 +0.300723934000000 0.915063512000000 0.089250302000000 +0.271866336000000 0.964349562000000 0.257834206000000 +0.285105131000000 0.945408615000000 0.059500201000000 +0.280890534000000 0.953639476000000 0.396668009000000 +0.285749717000000 0.953193274000000 0.079333602000000 +0.282675540000000 0.980910402000000 0.109083702000000 +0.276080934000000 0.966084935000000 0.426418109000000 +0.292493073000000 0.904452643000000 0.604918713000000 +0.280940117000000 0.929393144000000 0.585085313000000 +0.295765584000000 0.942532772000000 0.218167405000000 +0.271866336000000 0.964349562000000 0.307417707000000 +0.279353445000000 0.947491122000000 0.257834206000000 +0.287534723000000 0.956118651000000 0.158667203000000 +0.275981767000000 0.974811681000000 0.128917103000000 +0.295765584000000 0.920170613000000 0.257834206000000 +0.299137262000000 0.915311479000000 0.436334809000000 +0.302508940000000 0.924980212000000 0.039666801000000 +0.272858006000000 0.960085331000000 0.654502214000000 +0.276080934000000 0.971687870000000 0.416501409000000 +0.290807234000000 0.939954479000000 0.287584306000000 +0.281039284000000 0.950565349000000 0.257834206000000 +0.298294342000000 0.920468114000000 0.257834206000000 +0.285997634000000 0.981108736000000 0.208250704000000 +0.290856817000000 0.930335231000000 0.466084910000000 +0.289220562000000 0.924385161000000 0.039666801000000 +0.282625956000000 0.934996129000000 0.267750906000000 +0.280989701000000 0.944565695000000 0.347084507000000 +0.292592240000000 0.929988146000000 0.416501409000000 +0.295716000000000 0.922897705000000 0.059500201000000 +0.289220562000000 0.971886155000000 0.059500201000000 +0.292542656000000 0.913476840000000 0.019833400000000 +0.289270145000000 0.927508971000000 0.148750503000000 +0.294228495000000 0.933111907000000 0.138833803000000 +0.294327662000000 0.910353129000000 0.019833400000000 +0.280791367000000 0.962762840000000 0.208250704000000 +0.292493073000000 0.904452643000000 0.476001610000000 +0.300823101000000 0.904799728000000 0.337167807000000 +0.282675540000000 0.931971536000000 0.347084507000000 +0.287633890000000 0.946747369000000 0.287584306000000 +0.280791367000000 0.962762840000000 0.099167002000000 +0.285997634000000 0.925228180000000 0.000000000000000 +0.295963918000000 0.913030589000000 0.396668009000000 +0.289220562000000 0.946499452000000 0.089250302000000 +0.292542656000000 0.920368947000000 0.416501409000000 +0.277667606000000 0.965985817000000 0.019833400000000 +0.286691803000000 0.939111461000000 0.079333602000000 +0.282625956000000 0.962713257000000 0.109083702000000 +0.290807234000000 0.962267055000000 0.000000000000000 +0.297501006000000 0.908815942000000 0.485918310000000 +0.279353445000000 0.938665259000000 0.376834608000000 +0.282675540000000 0.968861561000000 0.029750101000000 +0.307516874000000 0.919922695000000 0.000000000000000 +0.300872684000000 0.901576800000000 0.109083702000000 +0.285848884000000 0.943772359000000 0.128917103000000 +0.296658087000000 0.921112699000000 0.376834608000000 +0.280890534000000 0.974910798000000 0.198334004000000 +0.284212628000000 0.931872319000000 0.188417304000000 +0.304095612000000 0.910948082000000 0.436334809000000 +0.287633890000000 0.965886601000000 0.208250704000000 +0.282675540000000 0.993058359000000 0.029750101000000 +0.294278079000000 0.945805283000000 0.029750101000000 +0.290906401000000 0.933508575000000 0.297501006000000 +0.292641823000000 0.968613743000000 0.029750101000000 +0.286096801000000 0.990232149000000 0.208250704000000 +0.302508940000000 0.917790654000000 0.297501006000000 +0.280940117000000 0.932268987000000 0.495835011000000 +0.297550590000000 0.902717220000000 0.119000403000000 +0.284311795000000 0.950218215000000 0.317334407000000 +0.297501006000000 0.952003221000000 0.049583501000000 +0.279254278000000 0.962961224000000 0.188417304000000 +0.290955984000000 0.946400285000000 0.089250302000000 +0.281882204000000 0.948978627000000 0.089250302000000 +0.284262212000000 0.928153557000000 0.079333602000000 +0.279254278000000 0.962961224000000 0.049583501000000 +0.297550590000000 0.948780343000000 0.029750101000000 +0.298294342000000 0.930434348000000 0.119000403000000 +0.295914334000000 0.925922349000000 0.029750101000000 +0.287633890000000 0.949871180000000 0.287584306000000 +0.271866336000000 0.964349562000000 0.426418109000000 +0.282625956000000 0.928798192000000 0.168583904000000 +0.279254278000000 0.959837414000000 0.188417304000000 +0.281039284000000 0.968861561000000 0.247917505000000 +0.287485139000000 1.000000000000000 0.119000403000000 +0.287485139000000 0.943574025000000 0.069416901000000 +0.279204695000000 0.950813167000000 0.188417304000000 +0.302508940000000 0.917790654000000 0.257834206000000 +0.304194779000000 0.907526820000000 0.208250704000000 +0.291005568000000 0.914567677000000 0.198334004000000 +0.275932183000000 0.954036144000000 0.396668009000000 +0.271122584000000 0.966134568000000 0.099167002000000 +0.290856817000000 0.924087709000000 0.545418512000000 +0.282625956000000 0.928798192000000 0.476001610000000 +0.282725123000000 0.965836968000000 0.257834206000000 +0.304194779000000 0.907526820000000 0.406584709000000 +0.279303862000000 0.974811681000000 0.000000000000000 +0.295864751000000 0.929293977000000 0.119000403000000 +0.305880618000000 0.913427257000000 0.426418109000000 +0.289270145000000 0.930831066000000 0.049583501000000 +0.287584306000000 0.924831462000000 0.366917908000000 +0.294228495000000 0.929591478000000 0.089250302000000 +0.295021831000000 0.924682761000000 0.297501006000000 +0.296658087000000 0.930880699000000 0.059500201000000 +0.295914334000000 0.909807711000000 0.595002013000000 +0.285948051000000 0.934351494000000 0.426418109000000 +0.279204695000000 0.953639476000000 0.297501006000000 +0.276031350000000 0.959986164000000 0.476001610000000 +0.290906401000000 0.936582752000000 0.019833400000000 +0.292542656000000 0.920368947000000 0.575168612000000 +0.282675540000000 0.925971882000000 0.406584709000000 +0.281039284000000 0.992909609000000 0.079333602000000 +0.281039284000000 0.968861561000000 0.128917103000000 +0.292542656000000 0.923641458000000 0.357001208000000 +0.289220562000000 0.924385161000000 0.099167002000000 +0.281832620000000 0.945656532000000 0.317334407000000 +0.300922268000000 0.911245583000000 0.357001208000000 +0.290856817000000 0.924087709000000 0.208250704000000 +0.282576373000000 0.996033369000000 0.119000403000000 +0.285997634000000 0.968762444000000 0.039666801000000 +0.282576373000000 0.944317778000000 0.000000000000000 +0.303996445000000 0.924236410000000 0.257834206000000 +0.276080934000000 0.966084935000000 0.485918310000000 +0.271122584000000 0.966134568000000 0.168583904000000 +0.294228495000000 0.933111907000000 0.327251107000000 +0.302508940000000 0.917790654000000 0.178500604000000 +0.295021831000000 0.927806472000000 0.238000805000000 +0.294129328000000 0.923294423000000 0.287584306000000 +0.287534723000000 0.956118651000000 0.198334004000000 +0.289270145000000 0.933954826000000 0.456168210000000 +0.296658087000000 0.930880699000000 0.337167807000000 +0.289270145000000 0.933954826000000 0.000000000000000 +0.289319729000000 0.937029003000000 0.396668009000000 +0.281039284000000 0.959936630000000 0.297501006000000 +0.302409773000000 0.911096832000000 0.406584709000000 +0.300872684000000 0.901576800000000 0.327251107000000 +0.307516874000000 0.919922695000000 0.287584306000000 +0.299137262000000 0.941888236000000 0.009916700000000 +0.300872684000000 0.924881045000000 0.119000403000000 +0.276080934000000 0.971687870000000 0.198334004000000 +0.280940117000000 0.932268987000000 0.049583501000000 +0.282576373000000 0.944317778000000 0.208250704000000 +0.292592240000000 0.965489933000000 0.059500201000000 +0.291005568000000 0.914567677000000 0.456168210000000 +0.294030161000000 0.920121079000000 0.198334004000000 +0.287584306000000 0.984331663000000 0.059500201000000 +0.287633890000000 0.965886601000000 0.029750101000000 +0.279849280000000 0.945011947000000 0.476001610000000 +0.282576373000000 0.974910798000000 0.208250704000000 +0.298244759000000 0.923542241000000 0.238000805000000 +0.294030161000000 0.920121079000000 0.485918310000000 +0.290955984000000 0.921013532000000 0.168583904000000 +0.307318540000000 0.916402316000000 0.000000000000000 +0.285948051000000 0.934351494000000 0.188417304000000 +0.300723934000000 0.915063512000000 0.099167002000000 +0.281039284000000 0.950565349000000 0.426418109000000 +0.295914334000000 0.909807711000000 0.277667606000000 +0.300872684000000 0.924881045000000 0.208250704000000 +0.292542656000000 0.945904450000000 0.138833803000000 +0.280890534000000 0.983885362000000 0.386751308000000 +0.275932183000000 0.954036144000000 0.029750101000000 +0.305880618000000 0.913427257000000 0.376834608000000 +0.277618022000000 0.974811681000000 0.218167405000000 +0.289220562000000 0.959143245000000 0.069416901000000 +0.281832620000000 0.939706512000000 0.476001610000000 +0.282675540000000 0.925971882000000 0.178500604000000 +0.299186845000000 0.935491915000000 0.000000000000000 +0.281039284000000 0.941441935000000 0.069416901000000 +0.286691803000000 0.939111461000000 0.228084105000000 +0.302508940000000 0.924980212000000 0.257834206000000 +0.298244759000000 0.923542241000000 0.327251107000000 +0.292542656000000 0.923641458000000 0.000000000000000 +0.305880618000000 0.913427257000000 0.158667203000000 +0.284311795000000 0.925575214000000 0.138833803000000 +0.292592240000000 0.933211123000000 0.148750503000000 +0.297451423000000 0.942235271000000 0.168583904000000 +0.287584306000000 0.934103577000000 0.049583501000000 +0.285948051000000 0.934351494000000 0.009916700000000 +0.282675540000000 0.931971536000000 0.515668411000000 +0.292542656000000 0.907576354000000 0.069416901000000 +0.305880618000000 0.917046852000000 0.000000000000000 +0.295815167000000 0.945706116000000 0.049583501000000 +0.298244759000000 0.923542241000000 0.208250704000000 +0.297501006000000 0.906287233000000 0.148750503000000 +0.280890534000000 0.977786641000000 0.307417707000000 +0.279353445000000 0.947491122000000 0.277667606000000 +0.289121395000000 0.988000793000000 0.069416901000000 +0.282625956000000 0.934996129000000 0.446251510000000 +0.295963918000000 0.932616072000000 0.267750906000000 +0.299137262000000 0.915311479000000 0.238000805000000 +0.305880618000000 0.913427257000000 0.357001208000000 +0.274444678000000 0.968960778000000 0.188417304000000 +0.290906401000000 0.978232843000000 0.079333602000000 +0.280940117000000 0.956614437000000 0.029750101000000 +0.303996445000000 0.924236410000000 0.238000805000000 +0.302508940000000 0.907576354000000 0.238000805000000 +0.289270145000000 0.933954826000000 0.069416901000000 +0.279303862000000 0.956812820000000 0.069416901000000 +0.285154715000000 0.948333992000000 0.267750906000000 +0.289319729000000 0.937029003000000 0.208250704000000 +0.307268956000000 0.923492707000000 0.069416901000000 +0.282725123000000 0.965836968000000 0.168583904000000 +0.302508940000000 0.924980212000000 0.158667203000000 +0.285749717000000 0.953193274000000 0.188417304000000 +0.290906401000000 0.936582752000000 0.049583501000000 +0.294228495000000 0.929591478000000 0.247917505000000 +0.281832620000000 0.945656532000000 0.158667203000000 +0.289220562000000 0.952647806000000 0.019833400000000 +0.275932183000000 0.954036144000000 0.416501409000000 +0.297451423000000 0.942235271000000 0.178500604000000 +0.302508940000000 0.917790654000000 0.049583501000000 +0.294327662000000 0.910353129000000 0.535501812000000 +0.271122584000000 0.966134568000000 0.228084105000000 +0.281882204000000 0.948978627000000 0.049583501000000 +0.281039284000000 0.980811235000000 0.119000403000000 +0.295864751000000 0.929293977000000 0.357001208000000 +0.280890534000000 0.974910798000000 0.238000805000000 +0.294178912000000 0.926517301000000 0.287584306000000 +0.280840950000000 0.971787087000000 0.297501006000000 +0.292542656000000 0.923641458000000 0.257834206000000 +0.277618022000000 0.957060738000000 0.327251107000000 +0.276031350000000 0.959986164000000 0.426418109000000 +0.274395095000000 0.960134915000000 0.109083702000000 +0.289270145000000 0.949722330000000 0.168583904000000 +0.279849280000000 0.945011947000000 0.059500201000000 +0.294278079000000 0.965043681000000 0.059500201000000 +0.274395095000000 0.960134915000000 0.257834206000000 +0.282675540000000 0.931971536000000 0.208250704000000 +0.302409773000000 0.934847280000000 0.178500604000000 +0.300922268000000 0.911245583000000 0.277667606000000 +0.290906401000000 0.908022655000000 0.049583501000000 +0.302508940000000 0.917790654000000 0.426418109000000 +0.305731868000000 0.923641458000000 0.228084105000000 +0.280890534000000 0.974910798000000 0.079333602000000 +0.299137262000000 0.941888236000000 0.198334004000000 +0.285105131000000 0.942185687000000 0.277667606000000 +0.302360190000000 0.921311033000000 0.297501006000000 +0.280989701000000 0.944565695000000 0.009916700000000 +0.271122584000000 0.966134568000000 0.257834206000000 +0.287633890000000 0.937128170000000 0.247917505000000 +0.291005568000000 0.914567677000000 0.049583501000000 +0.276031350000000 0.959986164000000 0.396668009000000 +0.287633890000000 0.949871180000000 0.099167002000000 +0.297550590000000 0.902717220000000 0.426418109000000 +0.292493073000000 0.904452643000000 0.525585111000000 +0.279353445000000 0.980712018000000 0.337167807000000 +0.284361379000000 0.981009618000000 0.178500604000000 +0.285948051000000 0.928153557000000 0.218167405000000 +0.300872684000000 0.931574818000000 0.228084105000000 +0.282625956000000 0.938070257000000 0.009916700000000 +0.272758839000000 0.968861561000000 0.257834206000000 +0.279303862000000 0.977786641000000 0.019833400000000 +0.289270145000000 0.949722330000000 0.059500201000000 +0.295914334000000 0.925922349000000 0.089250302000000 +0.297501006000000 0.919278060000000 0.307417707000000 +0.286691803000000 0.939111461000000 0.019833400000000 +0.285848884000000 0.987257090000000 0.069416901000000 +0.272659672000000 0.957308705000000 0.545418512000000 +0.283419292000000 0.945557365000000 0.228084105000000 +0.307417707000000 0.913328090000000 0.238000805000000 +0.302360190000000 0.921311033000000 0.049583501000000 +0.295963918000000 0.913030589000000 0.476001610000000 +0.284311795000000 0.925575214000000 0.000000000000000 +0.272709256000000 0.966134568000000 0.168583904000000 +0.294129328000000 0.955821150000000 0.009916700000000 +0.295765584000000 0.939210677000000 0.287584306000000 +0.280940117000000 0.929393144000000 0.535501812000000 +0.279204695000000 0.950813167000000 0.069416901000000 +0.294178912000000 0.926517301000000 0.247917505000000 +0.284311795000000 0.968762444000000 0.069416901000000 +0.304145196000000 0.914022259000000 0.466084910000000 +0.292592240000000 0.917294770000000 0.178500604000000 +0.284311795000000 0.950218215000000 0.168583904000000 +0.289220562000000 0.924385161000000 0.009916700000000 +0.287633890000000 0.930831066000000 0.039666801000000 +0.297600173000000 0.912633921000000 0.604918713000000 +0.281039284000000 0.965787434000000 0.317334407000000 +0.299186845000000 0.952052754000000 0.138833803000000 +0.287485139000000 0.996727539000000 0.079333602000000 +0.282576373000000 0.947193621000000 0.267750906000000 +0.300872684000000 0.901576800000000 0.634668814000000 +0.284262212000000 0.934847280000000 0.069416901000000 +0.295815167000000 0.916947636000000 0.218167405000000 +0.279353445000000 0.938665259000000 0.565251912000000 +0.274395095000000 0.960134915000000 0.099167002000000 +0.274395095000000 0.974662930000000 0.138833803000000 +0.285948051000000 0.928153557000000 0.198334004000000 +0.297401839000000 0.922501037000000 0.119000403000000 +0.303996445000000 0.924236410000000 0.128917103000000 +0.304194779000000 0.907526820000000 0.396668009000000 +0.284163045000000 0.959490280000000 0.267750906000000 +0.300922268000000 0.911245583000000 0.317334407000000 +0.299087678000000 0.921806868000000 0.119000403000000 +0.294129328000000 0.939508178000000 0.059500201000000 +0.285848884000000 0.943772359000000 0.327251107000000 +0.281039284000000 0.959936630000000 0.188417304000000 +0.304095612000000 0.910948082000000 0.138833803000000 +0.289220562000000 0.924385161000000 0.198334004000000 +0.292542656000000 0.920368947000000 0.188417304000000 +0.271122584000000 0.966134568000000 0.218167405000000 +0.296658087000000 0.930880699000000 0.218167405000000 +0.289319729000000 0.965985817000000 0.089250302000000 +0.304145196000000 0.914022259000000 0.307417707000000 +0.290906401000000 0.936582752000000 0.267750906000000 +0.289270145000000 0.920666398000000 0.803252717000000 +0.281039284000000 0.938516508000000 0.178500604000000 +0.286691803000000 0.939111461000000 0.376834608000000 +0.299087678000000 0.921806868000000 0.257834206000000 +0.271866336000000 0.964349562000000 0.674335615000000 +0.287534723000000 0.956118651000000 0.208250704000000 +0.277618022000000 0.963010758000000 0.357001208000000 +0.285898467000000 0.962514923000000 0.049583501000000 +0.302508940000000 0.907576354000000 0.218167405000000 +0.281039284000000 0.950565349000000 0.208250704000000 +0.298294342000000 0.920468114000000 0.396668009000000 +0.290856817000000 0.924087709000000 0.595002013000000 +0.277667606000000 0.965985817000000 0.208250704000000 +0.289319729000000 0.937029003000000 0.188417304000000 +0.289220562000000 0.924385161000000 0.238000805000000 +0.277618022000000 0.959936630000000 0.307417707000000 +0.299137262000000 0.915311479000000 0.267750906000000 +0.290906401000000 0.952697390000000 0.267750906000000 +0.295765584000000 0.920170613000000 0.119000403000000 +0.285105131000000 0.945408615000000 0.079333602000000 +0.297501006000000 0.925723965000000 0.287584306000000 +0.300922268000000 0.911245583000000 0.396668009000000 +0.297401839000000 0.922501037000000 0.357001208000000 +0.295021831000000 0.924682761000000 0.138833803000000 +0.280890534000000 0.974910798000000 0.317334407000000 +0.304194779000000 0.907526820000000 0.119000403000000 +0.304095612000000 0.922104369000000 0.238000805000000 +0.277766773000000 0.950763633000000 0.604918713000000 +0.292542656000000 0.945904450000000 0.119000403000000 +0.290856817000000 0.965836968000000 0.039666801000000 +0.275981767000000 0.957060738000000 0.575168612000000 +0.299186845000000 0.935491915000000 0.287584306000000 +0.292592240000000 0.952598223000000 0.009916700000000 +0.275932183000000 0.954036144000000 0.426418109000000 +0.280940117000000 0.956614437000000 0.307417707000000 +0.279254278000000 0.959837414000000 0.198334004000000 +0.295963918000000 0.932616072000000 0.228084105000000 +0.287534723000000 0.959291995000000 0.000000000000000 +0.287584306000000 0.934103577000000 0.178500604000000 +0.280890534000000 0.953639476000000 0.069416901000000 +0.285997634000000 0.925228180000000 0.128917103000000 +0.302360190000000 0.921311033000000 0.138833803000000 +0.284262212000000 0.971737454000000 0.247917505000000 +0.290955984000000 0.946400285000000 0.218167405000000 +0.295765584000000 0.939210677000000 0.228084105000000 +0.307318540000000 0.916402316000000 0.277667606000000 +0.279353445000000 0.965836968000000 0.158667203000000 +0.284212628000000 0.962564506000000 0.128917103000000 +0.272659672000000 0.963159508000000 0.575168612000000 +0.276080934000000 0.977538674000000 0.257834206000000 +0.274444678000000 0.968960778000000 0.138833803000000 +0.274444678000000 0.968960778000000 0.267750906000000 +0.282625956000000 0.929046060000000 0.238000805000000 +0.290955984000000 0.949524045000000 0.228084105000000 +0.294129328000000 0.916798885000000 0.297501006000000 +0.284262212000000 0.943970693000000 0.218167405000000 +0.295963918000000 0.913030589000000 0.247917505000000 +0.295864751000000 0.929293977000000 0.297501006000000 +0.299186845000000 0.935491915000000 0.198334004000000 +0.282675540000000 0.941293184000000 0.267750906000000 +0.289220562000000 0.924385161000000 0.416501409000000 +0.305731868000000 0.910055529000000 0.158667203000000 +0.295864751000000 0.929293977000000 0.039666801000000 +0.279353445000000 0.947491122000000 0.317334407000000 +0.281039284000000 0.938516508000000 0.257834206000000 +0.284361379000000 0.937971090000000 0.198334004000000 +0.287633890000000 0.937128170000000 0.158667203000000 +0.283468876000000 0.948929043000000 0.247917505000000 +0.284262212000000 0.934847280000000 0.406584709000000 +0.282625956000000 0.934996129000000 0.386751308000000 +0.280940117000000 0.941541102000000 0.198334004000000 +0.281039284000000 0.959936630000000 0.000000000000000 +0.281882204000000 0.948978627000000 0.416501409000000 +0.296707670000000 0.924286043000000 0.009916700000000 +0.285105131000000 0.945408615000000 0.307417707000000 +0.292542656000000 0.923641458000000 0.505751711000000 +0.294278079000000 0.949176911000000 0.059500201000000 +0.287633890000000 0.949871180000000 0.247917505000000 +0.279353445000000 0.947491122000000 0.485918310000000 +0.287584306000000 0.924831462000000 0.436334809000000 +0.284212628000000 0.987058805000000 0.029750101000000 +0.283468876000000 0.948929043000000 0.198334004000000 +0.299286012000000 0.912138135000000 0.327251107000000 +0.294228495000000 0.907030935000000 0.466084910000000 +0.280840950000000 0.971787087000000 0.009916700000000 +0.280840950000000 0.971787087000000 0.059500201000000 +0.295963918000000 0.913030589000000 0.595002013000000 +0.290906401000000 0.959044078000000 0.198334004000000 +0.295864751000000 0.906535150000000 0.624752113000000 +0.290955984000000 0.921013532000000 0.049583501000000 +0.295963918000000 0.913030589000000 0.089250302000000 +0.282526789000000 0.977935392000000 0.178500604000000 +0.296707670000000 0.924286043000000 0.099167002000000 +0.276031350000000 0.959986164000000 0.198334004000000 +0.300773517000000 0.928351891000000 0.049583501000000 +0.298294342000000 0.920468114000000 0.188417304000000 +0.292542656000000 0.920368947000000 0.307417707000000 +0.295765584000000 0.939210677000000 0.029750101000000 +0.295765584000000 0.920170613000000 0.406584709000000 +0.296757254000000 0.927806472000000 0.099167002000000 +0.282625956000000 0.934996129000000 0.456168210000000 +0.299137262000000 0.915311479000000 0.039666801000000 +0.284311795000000 0.947044870000000 0.069416901000000 +0.300823101000000 0.904799728000000 0.466084910000000 +0.284311795000000 0.925575214000000 0.535501812000000 +0.279254278000000 0.959837414000000 0.376834608000000 +0.280840950000000 0.947491122000000 0.376834608000000 +0.280940117000000 0.932268987000000 0.099167002000000 +0.277618022000000 0.974811681000000 0.089250302000000 +0.279799697000000 0.944565695000000 0.317334407000000 +0.298294342000000 0.930434348000000 0.247917505000000 +0.284311795000000 0.947044870000000 0.247917505000000 +0.294228495000000 0.929591478000000 0.267750906000000 +0.287485139000000 0.952895674000000 0.188417304000000 +0.274444678000000 0.971886155000000 0.357001208000000 +0.289270145000000 0.920666398000000 0.109083702000000 +0.277717189000000 0.969010312000000 0.277667606000000 +0.272659672000000 0.963159508000000 0.287584306000000 +0.287633890000000 0.930831066000000 0.059500201000000 +0.294278079000000 0.912435587000000 0.396668009000000 +0.276031350000000 0.959986164000000 0.059500201000000 +0.289319729000000 0.937029003000000 0.059500201000000 +0.279849280000000 0.945011947000000 0.247917505000000 +0.305880618000000 0.913427257000000 0.069416901000000 +0.279204695000000 0.953639476000000 0.357001208000000 +0.279254278000000 0.962961224000000 0.138833803000000 +0.297451423000000 0.942235271000000 0.208250704000000 +0.290856817000000 0.955870734000000 0.109083702000000 +0.283419292000000 0.945557365000000 0.059500201000000 +0.285997634000000 0.925228180000000 0.347084507000000 +0.289121395000000 0.988000793000000 0.059500201000000 +0.284311795000000 0.990132933000000 0.069416901000000 +0.289270145000000 0.927508971000000 0.158667203000000 +0.290955984000000 0.946400285000000 0.119000403000000 +0.290906401000000 0.936582752000000 0.386751308000000 +0.281039284000000 0.959936630000000 0.099167002000000 +0.284262212000000 0.928153557000000 0.476001610000000 +0.292592240000000 0.917294770000000 0.416501409000000 +0.274444678000000 0.968960778000000 0.128917103000000 +0.285898467000000 0.959391212000000 0.188417304000000 +0.299137262000000 0.908815942000000 0.376834608000000 +0.304095612000000 0.917294770000000 0.049583501000000 +0.285898467000000 0.962514923000000 0.178500604000000 +0.286691803000000 0.942185687000000 0.128917103000000 +0.287683473000000 0.971687870000000 0.079333602000000 +0.279254278000000 0.962961224000000 0.069416901000000 +0.274494262000000 0.954333645000000 0.714002415000000 +0.287485139000000 0.996727539000000 0.148750503000000 +0.279254278000000 0.959837414000000 0.307417707000000 +0.275981767000000 0.962911591000000 0.128917103000000 +0.292592240000000 0.917294770000000 0.406584709000000 +0.303996445000000 0.924236410000000 0.079333602000000 +0.290906401000000 0.933508575000000 0.416501409000000 +0.286741387000000 0.945309398000000 0.069416901000000 +0.287633890000000 0.978084093000000 0.039666801000000 +0.295765584000000 0.920170613000000 0.178500604000000 +0.302508940000000 0.904353476000000 0.337167807000000 +0.279353445000000 0.968911194000000 0.317334407000000 +0.279303862000000 0.983835828000000 0.099167002000000 +0.292542656000000 0.920368947000000 0.595002013000000 +0.300872684000000 0.901576800000000 0.317334407000000 +0.300922268000000 0.911245583000000 0.059500201000000 +0.280940117000000 0.941541102000000 0.337167807000000 +0.284212628000000 0.931872319000000 0.119000403000000 +0.285997634000000 0.925228180000000 0.337167807000000 +0.279353445000000 0.947491122000000 0.565251912000000 +0.297550590000000 0.902717220000000 0.307417707000000 +0.280840950000000 0.947491122000000 0.208250704000000 +0.299236429000000 0.931822686000000 0.148750503000000 +0.279303862000000 0.956812820000000 0.138833803000000 +0.274395095000000 0.974662930000000 0.168583904000000 +0.287633890000000 0.968762444000000 0.128917103000000 +0.285848884000000 0.983984579000000 0.039666801000000 +0.292592240000000 0.936384467000000 0.307417707000000 +0.297550590000000 0.902717220000000 0.614835413000000 +0.285898467000000 0.956267402000000 0.198334004000000 +0.289220562000000 0.943474858000000 0.079333602000000 +0.299137262000000 0.908815942000000 0.297501006000000 +0.297550590000000 0.916104716000000 0.069416901000000 +0.285898467000000 0.996330871000000 0.019833400000000 +0.276080934000000 0.971687870000000 0.039666801000000 +0.283468876000000 0.948929043000000 0.238000805000000 +0.276080934000000 0.971687870000000 0.238000805000000 +0.292542656000000 0.913476840000000 0.148750503000000 +0.279353445000000 0.968911194000000 0.059500201000000 +0.274494262000000 0.954333645000000 0.247917505000000 +0.303996445000000 0.924236410000000 0.019833400000000 +0.299286012000000 0.912138135000000 0.297501006000000 +0.292542656000000 0.907576354000000 0.317334407000000 +0.274295928000000 0.963010758000000 0.000000000000000 +0.294327662000000 0.910353129000000 0.416501409000000 +0.282576373000000 0.959688663000000 0.000000000000000 +0.292493073000000 0.926963553000000 0.009916700000000 +0.297550590000000 0.902717220000000 0.128917103000000 +0.272758839000000 0.968861561000000 0.138833803000000 +0.290955984000000 0.921013532000000 0.674335615000000 +0.292592240000000 0.929988146000000 0.466084910000000 +0.289270145000000 0.927508971000000 0.436334809000000 +0.280840950000000 0.971787087000000 0.079333602000000 +0.302508940000000 0.917790654000000 0.079333602000000 +0.289220562000000 0.959143245000000 0.168583904000000 +0.280989701000000 0.935343164000000 0.158667203000000 +0.294178912000000 0.958697043000000 0.019833400000000 +0.285997634000000 0.981108736000000 0.158667203000000 +0.279303862000000 0.956812820000000 0.168583904000000 +0.292542656000000 0.913476840000000 0.495835011000000 +0.281039284000000 0.980811235000000 0.079333602000000 +0.280940117000000 0.986810838000000 0.029750101000000 +0.289270145000000 0.920666398000000 0.763585916000000 +0.297451423000000 0.938962760000000 0.228084105000000 +0.281039284000000 0.968861561000000 0.178500604000000 +0.297501006000000 0.932516954000000 0.228084105000000 +0.285898467000000 0.996330871000000 0.168583904000000 +0.274494262000000 0.954333645000000 0.019833400000000 +0.294129328000000 0.916798885000000 0.515668411000000 +0.285749717000000 0.953193274000000 0.069416901000000 +0.275981767000000 0.962911591000000 0.238000805000000 +0.274345511000000 0.957110321000000 0.327251107000000 +0.279353445000000 0.947491122000000 0.238000805000000 +0.289170978000000 0.975009965000000 0.049583501000000 +0.282675540000000 0.993058359000000 0.128917103000000 +0.302508940000000 0.917790654000000 0.138833803000000 +0.280940117000000 0.941541102000000 0.138833803000000 +0.275981767000000 0.962911591000000 0.168583904000000 +0.277717189000000 0.980612901000000 0.277667606000000 +0.274295928000000 0.963010758000000 0.376834608000000 +0.295021831000000 0.924682761000000 0.446251510000000 +0.302508940000000 0.904353476000000 0.436334809000000 +0.282675540000000 0.993058359000000 0.188417304000000 +0.287584306000000 0.940450265000000 0.009916700000000 +0.284262212000000 0.943970693000000 0.267750906000000 +0.290955984000000 0.921013532000000 0.614835413000000 +0.279353445000000 0.968911194000000 0.188417304000000 +0.284311795000000 0.978034559000000 0.039666801000000 +0.290906401000000 0.908022655000000 0.495835011000000 +0.307318540000000 0.916402316000000 0.039666801000000 +0.297451423000000 0.938962760000000 0.099167002000000 +0.285105131000000 0.942185687000000 0.009916700000000 +0.282675540000000 0.925971882000000 0.277667606000000 +0.299186845000000 0.905394779000000 0.267750906000000 +0.280989701000000 0.935343164000000 0.357001208000000 +0.300922268000000 0.911245583000000 0.337167807000000 +0.277717189000000 0.980612901000000 0.039666801000000 +0.300922268000000 0.911245583000000 0.178500604000000 +0.277618022000000 0.971985371000000 0.406584709000000 +0.292592240000000 0.936384467000000 0.257834206000000 +0.282576373000000 0.947193621000000 0.228084105000000 +0.297550590000000 0.902717220000000 0.188417304000000 +0.299137262000000 0.908815942000000 0.624752113000000 +0.274345511000000 0.966134568000000 0.456168210000000 +0.289319729000000 0.937029003000000 0.178500604000000 +0.304194779000000 0.907526820000000 0.416501409000000 +0.283468876000000 0.948929043000000 0.128917103000000 +0.279303862000000 0.974811681000000 0.267750906000000 +0.285898467000000 0.940747766000000 0.119000403000000 +0.292493073000000 0.926963553000000 0.396668009000000 +0.294129328000000 0.916798885000000 0.505751711000000 +0.300872684000000 0.931574818000000 0.208250704000000 +0.292592240000000 0.933211123000000 0.238000805000000 +0.284212628000000 0.931872319000000 0.515668411000000 +0.294030161000000 0.920121079000000 0.317334407000000 +0.279303862000000 0.977786641000000 0.287584306000000 +0.292542656000000 0.920368947000000 0.138833803000000 +0.298294342000000 0.930434348000000 0.188417304000000 +0.282576373000000 0.987058805000000 0.138833803000000 +0.297550590000000 0.928798192000000 0.168583904000000 +0.285848884000000 0.983984579000000 0.208250704000000 +0.289270145000000 0.927508971000000 0.327251107000000 +0.302360190000000 0.921311033000000 0.079333602000000 +0.289270145000000 0.920666398000000 0.644585514000000 +0.295914334000000 0.909807711000000 0.148750503000000 +0.282675540000000 0.925971882000000 0.128917103000000 +0.284311795000000 0.925575214000000 0.297501006000000 +0.282625956000000 0.938070257000000 0.337167807000000 +0.275932183000000 0.954036144000000 0.337167807000000 +0.284262212000000 0.965737850000000 0.287584306000000 +0.284361379000000 0.940946100000000 0.069416901000000 +0.285898467000000 0.956267402000000 0.119000403000000 +0.281832620000000 0.945656532000000 0.009916700000000 +0.282625956000000 0.929046060000000 0.109083702000000 +0.292542656000000 0.913476840000000 0.277667606000000 +0.295765584000000 0.939210677000000 0.119000403000000 +0.280989701000000 0.944565695000000 0.128917103000000 +0.304194779000000 0.907526820000000 0.357001208000000 +0.276080934000000 0.951061134000000 0.307417707000000 +0.272758839000000 0.968861561000000 0.128917103000000 +0.280890534000000 0.953639476000000 0.347084507000000 +0.297501006000000 0.935591082000000 0.158667203000000 +0.277618022000000 0.971985371000000 0.089250302000000 +0.290906401000000 0.908022655000000 0.485918310000000 +0.282625956000000 0.929046060000000 0.505751711000000 +0.280940117000000 0.929393144000000 0.188417304000000 +0.276080934000000 0.951061134000000 0.238000805000000 +0.292493073000000 0.962267055000000 0.049583501000000 +0.299286012000000 0.912138135000000 0.357001208000000 +0.282625956000000 0.928798192000000 0.198334004000000 +0.305731868000000 0.910055529000000 0.099167002000000 +0.276031350000000 0.959986164000000 0.158667203000000 +0.304095612000000 0.917294770000000 0.009916700000000 +0.295864751000000 0.958994494000000 0.128917103000000 +0.299186845000000 0.905394779000000 0.009916700000000 +0.279353445000000 0.980712018000000 0.158667203000000 +0.289270145000000 0.920666398000000 0.813169418000000 +0.279204695000000 0.953639476000000 0.466084910000000 +0.272659672000000 0.963159508000000 0.317334407000000 +0.282576373000000 0.944317778000000 0.168583904000000 +0.299236429000000 0.931822686000000 0.099167002000000 +0.295914334000000 0.909807711000000 0.138833803000000 +0.291005568000000 0.914567677000000 0.545418512000000 +0.304194779000000 0.907526820000000 0.138833803000000 +0.285997634000000 0.981108736000000 0.009916700000000 +0.277766773000000 0.950763633000000 0.277667606000000 +0.283419292000000 0.939706512000000 0.099167002000000 +0.287534723000000 0.987505007000000 0.079333602000000 +0.300723934000000 0.915063512000000 0.228084105000000 +0.277568439000000 0.953837810000000 0.287584306000000 +0.287534723000000 0.959291995000000 0.198334004000000 +0.282725123000000 0.950366965000000 0.307417707000000 +0.292542656000000 0.913476840000000 0.119000403000000 +0.302508940000000 0.904353476000000 0.505751711000000 +0.283419292000000 0.945557365000000 0.327251107000000 +0.297401839000000 0.922501037000000 0.436334809000000 +0.274444678000000 0.971886155000000 0.297501006000000 +0.300872684000000 0.924881045000000 0.049583501000000 +0.297401839000000 0.922501037000000 0.228084105000000 +0.287584306000000 0.934103577000000 0.019833400000000 +0.279353445000000 0.938665259000000 0.109083702000000 +0.300823101000000 0.918236856000000 0.446251510000000 +0.280940117000000 0.941541102000000 0.426418109000000 +0.272709256000000 0.966134568000000 0.485918310000000 +0.295716000000000 0.922897705000000 0.218167405000000 +0.274444678000000 0.968960778000000 0.366917908000000 +0.272659672000000 0.963159508000000 0.277667606000000 +0.294327662000000 0.910353129000000 0.257834206000000 +0.290906401000000 0.911195999000000 0.218167405000000 +0.295815167000000 0.916947636000000 0.257834206000000 +0.280890534000000 0.953639476000000 0.337167807000000 +0.277717189000000 0.980612901000000 0.059500201000000 +0.292592240000000 0.933211123000000 0.357001208000000 +0.294178912000000 0.958697043000000 0.049583501000000 +0.296707670000000 0.924286043000000 0.089250302000000 +0.287485139000000 1.000000000000000 0.109083702000000 +0.285997634000000 0.925228180000000 0.059500201000000 +0.297501006000000 0.908815942000000 0.297501006000000 +0.295914334000000 0.925922349000000 0.426418109000000 +0.295765584000000 0.920170613000000 0.307417707000000 +0.286096801000000 0.990232149000000 0.119000403000000 +0.272659672000000 0.963159508000000 0.019833400000000 +0.284212628000000 0.931872319000000 0.505751711000000 +0.292542656000000 0.907576354000000 0.297501006000000 +0.295716000000000 0.922897705000000 0.009916700000000 +0.295021831000000 0.924682761000000 0.327251107000000 +0.276080934000000 0.951061134000000 0.218167405000000 +0.284212628000000 0.962564506000000 0.317334407000000 +0.281039284000000 0.938516508000000 0.416501409000000 +0.294327662000000 0.910353129000000 0.446251510000000 +0.279204695000000 0.950813167000000 0.446251510000000 +0.279254278000000 0.962961224000000 0.099167002000000 +0.280890534000000 0.974910798000000 0.109083702000000 +0.280890534000000 0.953639476000000 0.228084105000000 +0.290906401000000 0.959044078000000 0.039666801000000 +0.289270145000000 0.920666398000000 0.416501409000000 +0.275932183000000 0.954036144000000 0.347084507000000 +0.282625956000000 0.934996129000000 0.426418109000000 +0.290856817000000 0.943177357000000 0.009916700000000 +0.300723934000000 0.915063512000000 0.307417707000000 +0.295914334000000 0.909807711000000 0.267750906000000 +0.290906401000000 0.908022655000000 0.148750503000000 +0.285848884000000 0.987257090000000 0.247917505000000 +0.285898467000000 0.959391212000000 0.317334407000000 +0.289220562000000 0.924385161000000 0.307417707000000 +0.290955984000000 0.921013532000000 0.396668009000000 +0.297501006000000 0.908815942000000 0.386751308000000 +0.289220562000000 0.952647806000000 0.287584306000000 +0.285848884000000 0.943772359000000 0.049583501000000 +0.281039284000000 0.968861561000000 0.277667606000000 +0.290856817000000 0.924087709000000 0.456168210000000 +0.299186845000000 0.905394779000000 0.515668411000000 +0.283468876000000 0.948929043000000 0.168583904000000 +0.277618022000000 0.971985371000000 0.138833803000000 +0.297451423000000 0.938962760000000 0.138833803000000 +0.277568439000000 0.953837810000000 0.565251912000000 +0.302360190000000 0.921311033000000 0.228084105000000 +0.279353445000000 0.968911194000000 0.337167807000000 +0.279254278000000 0.962961224000000 0.257834206000000 +0.300823101000000 0.934996129000000 0.079333602000000 +0.297451423000000 0.938962760000000 0.317334407000000 +0.277766773000000 0.950763633000000 0.743752516000000 +0.287584306000000 0.990727935000000 0.138833803000000 +0.304095612000000 0.910948082000000 0.317334407000000 +0.284361379000000 0.981009618000000 0.069416901000000 +0.274345511000000 0.957110321000000 0.208250704000000 +0.282725123000000 0.950366965000000 0.158667203000000 +0.292641823000000 0.968613743000000 0.019833400000000 +0.279204695000000 0.950813167000000 0.099167002000000 +0.284311795000000 0.925575214000000 0.029750101000000 +0.285105131000000 0.942185687000000 0.158667203000000 +0.305731868000000 0.910055529000000 0.148750503000000 +0.282576373000000 0.987058805000000 0.158667203000000 +0.304095612000000 0.922104369000000 0.287584306000000 +0.279303862000000 0.941789019000000 0.476001610000000 +0.276080934000000 0.977538674000000 0.148750503000000 +0.281039284000000 0.980811235000000 0.307417707000000 +0.285997634000000 0.950069464000000 0.287584306000000 +0.290807234000000 0.962267055000000 0.029750101000000 +0.292592240000000 0.917294770000000 0.158667203000000 +0.283419292000000 0.945557365000000 0.257834206000000 +0.279303862000000 0.956812820000000 0.366917908000000 +0.282625956000000 0.928798192000000 0.069416901000000 +0.274494262000000 0.954333645000000 0.565251912000000 +0.290906401000000 0.908022655000000 0.267750906000000 +0.299137262000000 0.918633524000000 0.347084507000000 +0.280890534000000 0.953639476000000 0.109083702000000 +0.287633890000000 0.937128170000000 0.406584709000000 +0.282576373000000 0.974910798000000 0.000000000000000 +0.300872684000000 0.931574818000000 0.178500604000000 +0.284311795000000 0.925575214000000 0.406584709000000 +0.284262212000000 0.934847280000000 0.257834206000000 +0.290856817000000 0.930335231000000 0.406584709000000 +0.294278079000000 0.912435587000000 0.029750101000000 +0.299137262000000 0.941888236000000 0.168583904000000 +0.274444678000000 0.968960778000000 0.297501006000000 +0.295815167000000 0.945706116000000 0.168583904000000 +0.280940117000000 0.929393144000000 0.416501409000000 +0.289270145000000 0.920666398000000 0.218167405000000 +0.292542656000000 0.920368947000000 0.109083702000000 +0.277717189000000 0.969010312000000 0.128917103000000 +0.292542656000000 0.923641458000000 0.446251510000000 +0.279303862000000 0.977786641000000 0.029750101000000 +0.297451423000000 0.938962760000000 0.049583501000000 +0.272858006000000 0.960085331000000 0.178500604000000 +0.281832620000000 0.939706512000000 0.198334004000000 +0.292542656000000 0.923641458000000 0.099167002000000 +0.299137262000000 0.918633524000000 0.416501409000000 +0.277766773000000 0.950763633000000 0.297501006000000 +0.284212628000000 0.987058805000000 0.069416901000000 +0.287485139000000 0.952895674000000 0.019833400000000 +0.304095612000000 0.910948082000000 0.238000805000000 +0.284212628000000 0.983488793000000 0.119000403000000 +0.304145196000000 0.914022259000000 0.198334004000000 +0.297501006000000 0.908815942000000 0.664418914000000 +0.282625956000000 0.938070257000000 0.347084507000000 +0.290856817000000 0.943177357000000 0.138833803000000 +0.284262212000000 0.943970693000000 0.148750503000000 +0.295765584000000 0.952151971000000 0.128917103000000 +0.292493073000000 0.926963553000000 0.148750503000000 +0.295864751000000 0.906535150000000 0.694169015000000 +0.304194779000000 0.907526820000000 0.565251912000000 +0.297550590000000 0.902717220000000 0.634668814000000 +0.292542656000000 0.945904450000000 0.257834206000000 +0.289170978000000 0.978282476000000 0.009916700000000 +0.275981767000000 0.962911591000000 0.049583501000000 +0.284311795000000 0.993355860000000 0.099167002000000 +0.297501006000000 0.935591082000000 0.218167405000000 +0.295716000000000 0.922897705000000 0.198334004000000 +0.290906401000000 0.952697390000000 0.317334407000000 +0.299087678000000 0.921806868000000 0.297501006000000 +0.284311795000000 0.968762444000000 0.128917103000000 +0.282576373000000 0.974910798000000 0.009916700000000 +0.298294342000000 0.930434348000000 0.168583904000000 +0.295914334000000 0.925922349000000 0.188417304000000 +0.299286012000000 0.912138135000000 0.029750101000000 +0.275981767000000 0.962911591000000 0.555335212000000 +0.294030161000000 0.920121079000000 0.188417304000000 +0.277766773000000 0.950763633000000 0.049583501000000 +0.289170978000000 0.956069117000000 0.119000403000000 +0.281039284000000 0.941441935000000 0.436334809000000 +0.292592240000000 0.936384467000000 0.079333602000000 +0.279799697000000 0.944565695000000 0.168583904000000 +0.286096801000000 0.990232149000000 0.178500604000000 +0.277618022000000 0.963010758000000 0.476001610000000 +0.284311795000000 0.947044870000000 0.089250302000000 +0.274444678000000 0.968960778000000 0.476001610000000 +0.307417707000000 0.913328090000000 0.128917103000000 +0.287584306000000 0.934103577000000 0.357001208000000 +0.294129328000000 0.939508178000000 0.019833400000000 +0.299137262000000 0.955523699000000 0.109083702000000 +0.294228495000000 0.907030935000000 0.138833803000000 +0.281039284000000 0.950565349000000 0.307417707000000 +0.295765584000000 0.920170613000000 0.456168210000000 +0.289270145000000 0.920666398000000 0.297501006000000 +0.300773517000000 0.928351891000000 0.128917103000000 +0.281832620000000 0.945656532000000 0.138833803000000 +0.292493073000000 0.959044078000000 0.148750503000000 +0.281039284000000 0.980811235000000 0.228084105000000 +0.292592240000000 0.917294770000000 0.495835011000000 +0.284262212000000 0.928153557000000 0.426418109000000 +0.276080934000000 0.971687870000000 0.138833803000000 +0.279353445000000 0.947491122000000 0.158667203000000 +0.282625956000000 0.928798192000000 0.396668009000000 +0.282526789000000 0.977935392000000 0.079333602000000 +0.272858006000000 0.960085331000000 0.386751308000000 +0.285749717000000 0.953193274000000 0.089250302000000 +0.307417707000000 0.913328090000000 0.039666801000000 +0.295021831000000 0.927806472000000 0.228084105000000 +0.289270145000000 0.930831066000000 0.396668009000000 +0.300922268000000 0.911245583000000 0.416501409000000 +0.280890534000000 0.953639476000000 0.138833803000000 +0.277766773000000 0.950763633000000 0.317334407000000 +0.289270145000000 0.920666398000000 0.614835413000000 +0.294228495000000 0.907030935000000 0.208250704000000 +0.300773517000000 0.921608534000000 0.178500604000000 +0.289220562000000 0.946499452000000 0.059500201000000 +0.281039284000000 0.965787434000000 0.208250704000000 +0.290906401000000 0.911195999000000 0.525585111000000 +0.279799697000000 0.944565695000000 0.247917505000000 +0.281832620000000 0.939706512000000 0.456168210000000 +0.300922268000000 0.908220989000000 0.198334004000000 +0.274295928000000 0.963010758000000 0.019833400000000 +0.285898467000000 0.946995337000000 0.089250302000000 +0.295914334000000 0.925922349000000 0.357001208000000 +0.272659672000000 0.957308705000000 0.198334004000000 +0.287584306000000 0.984331663000000 0.208250704000000 +0.294178912000000 0.942929440000000 0.148750503000000 +0.282576373000000 0.974910798000000 0.069416901000000 +0.284212628000000 0.931872319000000 0.168583904000000 +0.279303862000000 0.956812820000000 0.317334407000000 +0.281039284000000 0.938516508000000 0.277667606000000 +0.294327662000000 0.910353129000000 0.654502214000000 +0.300723934000000 0.915063512000000 0.019833400000000 +0.289319729000000 0.937029003000000 0.277667606000000 +0.279353445000000 0.947491122000000 0.178500604000000 +0.299137262000000 0.908815942000000 0.168583904000000 +0.304194779000000 0.907526820000000 0.436334809000000 +0.299137262000000 0.908815942000000 0.019833400000000 +0.300922268000000 0.908220989000000 0.347084507000000 +0.281832620000000 0.942582405000000 0.178500604000000 +0.287633890000000 0.968762444000000 0.119000403000000 +0.277717189000000 0.969010312000000 0.287584306000000 +0.294178912000000 0.926517301000000 0.019833400000000 +0.282675540000000 0.925971882000000 0.535501812000000 +0.290906401000000 0.911195999000000 0.604918713000000 +0.294327662000000 0.910353129000000 0.109083702000000 +0.289270145000000 0.920666398000000 0.119000403000000 +0.289270145000000 0.930831066000000 0.386751308000000 +0.297550590000000 0.902717220000000 0.505751711000000 +0.282675540000000 0.993058359000000 0.208250704000000 +0.284311795000000 0.968762444000000 0.158667203000000 +0.282576373000000 0.996033369000000 0.158667203000000 +0.279303862000000 0.956812820000000 0.099167002000000 +0.282576373000000 0.947193621000000 0.307417707000000 +0.274444678000000 0.971886155000000 0.059500201000000 +0.302508940000000 0.904353476000000 0.168583904000000 +0.287584306000000 0.934103577000000 0.238000805000000 +0.295716000000000 0.922897705000000 0.436334809000000 +0.277568439000000 0.953837810000000 0.376834608000000 +0.274395095000000 0.974662930000000 0.039666801000000 +0.294178912000000 0.936285251000000 0.089250302000000 +0.289270145000000 0.927508971000000 0.347084507000000 +0.282725123000000 0.950366965000000 0.337167807000000 +0.294178912000000 0.926517301000000 0.148750503000000 +0.289319729000000 0.937029003000000 0.099167002000000 +0.281039284000000 0.968861561000000 0.347084507000000 +0.281039284000000 0.959936630000000 0.376834608000000 +0.279303862000000 0.983835828000000 0.049583501000000 +0.281039284000000 0.992909609000000 0.128917103000000 +0.295815167000000 0.916947636000000 0.426418109000000 +0.289319729000000 0.965985817000000 0.128917103000000 +0.297501006000000 0.935591082000000 0.128917103000000 +0.282625956000000 0.984034212000000 0.099167002000000 +0.303996445000000 0.924236410000000 0.297501006000000 +0.277618022000000 0.957060738000000 0.604918713000000 +0.297550590000000 0.928798192000000 0.228084105000000 +0.276031350000000 0.959986164000000 0.019833400000000 +0.285948051000000 0.978133726000000 0.138833803000000 +0.280940117000000 0.932268987000000 0.446251510000000 +0.280989701000000 0.944565695000000 0.267750906000000 +0.289220562000000 0.952647806000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.148750503000000 +0.296757254000000 0.927806472000000 0.238000805000000 +0.281039284000000 0.941441935000000 0.386751308000000 +0.295716000000000 0.922897705000000 0.297501006000000 +0.279353445000000 0.980712018000000 0.168583904000000 +0.280940117000000 0.929393144000000 0.654502214000000 +0.279254278000000 0.959837414000000 0.148750503000000 +0.300872684000000 0.924881045000000 0.218167405000000 +0.280840950000000 0.971787087000000 0.039666801000000 +0.287584306000000 0.924831462000000 0.029750101000000 +0.281039284000000 0.965787434000000 0.000000000000000 +0.290906401000000 0.978232843000000 0.019833400000000 +0.272659672000000 0.963159508000000 0.158667203000000 +0.281039284000000 0.965787434000000 0.178500604000000 +0.280791367000000 0.962762840000000 0.247917505000000 +0.282675540000000 0.993058359000000 0.168583904000000 +0.304095612000000 0.922104369000000 0.188417304000000 +0.294278079000000 0.912435587000000 0.158667203000000 +0.285997634000000 0.971787087000000 0.148750503000000 +0.289170978000000 0.940202347000000 0.297501006000000 +0.287534723000000 0.959291995000000 0.267750906000000 +0.303996445000000 0.924236410000000 0.327251107000000 +0.302409773000000 0.934847280000000 0.158667203000000 +0.292592240000000 0.933211123000000 0.257834206000000 +0.292542656000000 0.913476840000000 0.575168612000000 +0.290906401000000 0.936582752000000 0.009916700000000 +0.294129328000000 0.923294423000000 0.386751308000000 +0.297550590000000 0.928798192000000 0.148750503000000 +0.302409773000000 0.911096832000000 0.485918310000000 +0.275981767000000 0.974811681000000 0.089250302000000 +0.280840950000000 0.947491122000000 0.148750503000000 +0.274444678000000 0.968960778000000 0.009916700000000 +0.300773517000000 0.921608534000000 0.337167807000000 +0.294228495000000 0.907030935000000 0.485918310000000 +0.284262212000000 0.965737850000000 0.158667203000000 +0.297501006000000 0.908815942000000 0.654502214000000 +0.281039284000000 0.938516508000000 0.228084105000000 +0.299137262000000 0.908815942000000 0.109083702000000 +0.289270145000000 0.927508971000000 0.376834608000000 +0.294228495000000 0.929591478000000 0.128917103000000 +0.284212628000000 0.983488793000000 0.168583904000000 +0.276031350000000 0.959986164000000 0.079333602000000 +0.290807234000000 0.971836621000000 0.009916700000000 +0.280890534000000 0.974910798000000 0.178500604000000 +0.292542656000000 0.907576354000000 0.476001610000000 +0.282625956000000 0.962713257000000 0.069416901000000 +0.284311795000000 0.996231704000000 0.049583501000000 +0.282526789000000 0.977935392000000 0.029750101000000 +0.272858006000000 0.960085331000000 0.515668411000000 +0.292592240000000 0.917294770000000 0.376834608000000 +0.297550590000000 0.928798192000000 0.029750101000000 +0.280890534000000 0.983885362000000 0.128917103000000 +0.281832620000000 0.942582405000000 0.218167405000000 +0.274345511000000 0.966134568000000 0.297501006000000 +0.281882204000000 0.948978627000000 0.158667203000000 +0.292542656000000 0.923641458000000 0.466084910000000 +0.294228495000000 0.952350355000000 0.148750503000000 +0.297600173000000 0.912633921000000 0.307417707000000 +0.281039284000000 0.941441935000000 0.089250302000000 +0.297550590000000 0.916104716000000 0.188417304000000 +0.272659672000000 0.957308705000000 0.456168210000000 +0.297501006000000 0.906287233000000 0.277667606000000 +0.279254278000000 0.959837414000000 0.436334809000000 +0.276080934000000 0.966084935000000 0.119000403000000 +0.292542656000000 0.920368947000000 0.069416901000000 +0.289170978000000 0.956069117000000 0.049583501000000 +0.290856817000000 0.943177357000000 0.069416901000000 +0.294228495000000 0.933111907000000 0.059500201000000 +0.304194779000000 0.907526820000000 0.238000805000000 +0.304095612000000 0.917294770000000 0.138833803000000 +0.300872684000000 0.924881045000000 0.178500604000000 +0.281039284000000 0.959936630000000 0.218167405000000 +0.299137262000000 0.915311479000000 0.505751711000000 +0.295815167000000 0.945706116000000 0.228084105000000 +0.284212628000000 0.931872319000000 0.238000805000000 +0.282675540000000 0.968861561000000 0.138833803000000 +0.304095612000000 0.910948082000000 0.089250302000000 +0.292542656000000 0.920368947000000 0.238000805000000 +0.294129328000000 0.923294423000000 0.218167405000000 +0.280890534000000 0.983885362000000 0.426418109000000 +0.281832620000000 0.945656532000000 0.267750906000000 +0.280989701000000 0.944565695000000 0.168583904000000 +0.294327662000000 0.910353129000000 0.505751711000000 +0.297501006000000 0.906287233000000 0.158667203000000 +0.292493073000000 0.904452643000000 0.436334809000000 +0.271866336000000 0.964349562000000 0.218167405000000 +0.295963918000000 0.913030589000000 0.228084105000000 +0.274345511000000 0.966134568000000 0.069416901000000 +0.298294342000000 0.920468114000000 0.337167807000000 +0.294129328000000 0.916798885000000 0.416501409000000 +0.297401839000000 0.922501037000000 0.257834206000000 +0.295765584000000 0.942532772000000 0.059500201000000 +0.295864751000000 0.906535150000000 0.347084507000000 +0.282675540000000 0.941293184000000 0.277667606000000 +0.280940117000000 0.929393144000000 0.456168210000000 +0.279799697000000 0.944565695000000 0.505751711000000 +0.279303862000000 0.974811681000000 0.287584306000000 +0.299137262000000 0.918633524000000 0.495835011000000 +0.271866336000000 0.964349562000000 0.604918713000000 +0.286741387000000 0.945309398000000 0.029750101000000 +0.284361379000000 0.981009618000000 0.049583501000000 +0.295864751000000 0.929293977000000 0.059500201000000 +0.276031350000000 0.959986164000000 0.247917505000000 +0.279303862000000 0.983835828000000 0.089250302000000 +0.304194779000000 0.907526820000000 0.257834206000000 +0.299186845000000 0.905394779000000 0.674335615000000 +0.294278079000000 0.945805283000000 0.128917103000000 +0.289319729000000 0.965985817000000 0.000000000000000 +0.292592240000000 0.929988146000000 0.000000000000000 +0.280890534000000 0.977786641000000 0.198334004000000 +0.279254278000000 0.959837414000000 0.158667203000000 +0.290906401000000 0.952697390000000 0.188417304000000 +0.294129328000000 0.923294423000000 0.188417304000000 +0.286790970000000 0.948333992000000 0.307417707000000 +0.302508940000000 0.904353476000000 0.119000403000000 +0.274345511000000 0.957110321000000 0.654502214000000 +0.299186845000000 0.935491915000000 0.029750101000000 +0.294278079000000 0.949176911000000 0.138833803000000 +0.279254278000000 0.959837414000000 0.277667606000000 +0.280840950000000 0.971787087000000 0.049583501000000 +0.277667606000000 0.965985817000000 0.357001208000000 +0.279303862000000 0.941789019000000 0.386751308000000 +0.285948051000000 0.928153557000000 0.000000000000000 +0.279303862000000 0.977786641000000 0.247917505000000 +0.282675540000000 0.931971536000000 0.337167807000000 +0.287683473000000 0.927806472000000 0.456168210000000 +0.297501006000000 0.932516954000000 0.099167002000000 +0.292493073000000 0.904452643000000 0.456168210000000 +0.292493073000000 0.904452643000000 0.198334004000000 +0.274345511000000 0.957110321000000 0.485918310000000 +0.279303862000000 0.974811681000000 0.119000403000000 +0.294030161000000 0.920121079000000 0.158667203000000 +0.274494262000000 0.954333645000000 0.535501812000000 +0.289319729000000 0.965985817000000 0.148750503000000 +0.290955984000000 0.921013532000000 0.595002013000000 +0.284262212000000 0.934847280000000 0.049583501000000 +0.292493073000000 0.904452643000000 0.148750503000000 +0.287584306000000 0.924831462000000 0.396668009000000 +0.294278079000000 0.968613743000000 0.089250302000000 +0.297501006000000 0.906287233000000 0.624752113000000 +0.298343926000000 0.927112303000000 0.168583904000000 +0.302409773000000 0.911096832000000 0.525585111000000 +0.289270145000000 0.927508971000000 0.109083702000000 +0.286790970000000 0.948333992000000 0.317334407000000 +0.295914334000000 0.909807711000000 0.357001208000000 +0.299186845000000 0.905394779000000 0.595002013000000 +0.300773517000000 0.928351891000000 0.178500604000000 +0.295963918000000 0.913030589000000 0.426418109000000 +0.295963918000000 0.913030589000000 0.337167807000000 +0.290906401000000 0.911195999000000 0.535501812000000 +0.282625956000000 0.934996129000000 0.485918310000000 +0.299186845000000 0.905394779000000 0.654502214000000 +0.282675540000000 0.968861561000000 0.009916700000000 +0.289220562000000 0.959143245000000 0.148750503000000 +0.274444678000000 0.971886155000000 0.337167807000000 +0.280989701000000 0.935343164000000 0.089250302000000 +0.297550590000000 0.928798192000000 0.257834206000000 +0.282625956000000 0.928798192000000 0.099167002000000 +0.296658087000000 0.921112699000000 0.416501409000000 +0.281039284000000 0.980811235000000 0.109083702000000 +0.282625956000000 0.956515319000000 0.188417304000000 +0.283468876000000 0.948929043000000 0.307417707000000 +0.281039284000000 0.938516508000000 0.208250704000000 +0.279204695000000 0.950813167000000 0.287584306000000 +0.279353445000000 0.938665259000000 0.515668411000000 +0.287633890000000 0.978084093000000 0.148750503000000 +0.304095612000000 0.910948082000000 0.426418109000000 +0.277618022000000 0.963010758000000 0.228084105000000 +0.287584306000000 0.990727935000000 0.009916700000000 +0.292592240000000 0.929988146000000 0.406584709000000 +0.294178912000000 0.942929440000000 0.188417304000000 +0.296707670000000 0.924286043000000 0.059500201000000 +0.296707670000000 0.924286043000000 0.148750503000000 +0.281832620000000 0.945656532000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.386751308000000 +0.294129328000000 0.939508178000000 0.168583904000000 +0.285997634000000 0.968762444000000 0.089250302000000 +0.307268956000000 0.923492707000000 0.228084105000000 +0.284212628000000 0.962564506000000 0.119000403000000 +0.304145196000000 0.914022259000000 0.317334407000000 +0.274494262000000 0.954333645000000 0.257834206000000 +0.277568439000000 0.953837810000000 0.357001208000000 +0.295914334000000 0.935888583000000 0.059500201000000 +0.282576373000000 0.987058805000000 0.238000805000000 +0.290955984000000 0.921013532000000 0.634668814000000 +0.292493073000000 0.926963553000000 0.366917908000000 +0.279303862000000 0.956812820000000 0.158667203000000 +0.284311795000000 0.925575214000000 0.525585111000000 +0.294228495000000 0.907030935000000 0.386751308000000 +0.276031350000000 0.959986164000000 0.466084910000000 +0.279849280000000 0.945011947000000 0.198334004000000 +0.277717189000000 0.980612901000000 0.089250302000000 +0.285749717000000 0.953193274000000 0.307417707000000 +0.274345511000000 0.966134568000000 0.396668009000000 +0.292592240000000 0.929988146000000 0.307417707000000 +0.297451423000000 0.938962760000000 0.059500201000000 +0.290807234000000 0.939954479000000 0.049583501000000 +0.305880618000000 0.917046852000000 0.089250302000000 +0.299137262000000 0.955523699000000 0.029750101000000 +0.297451423000000 0.942235271000000 0.119000403000000 +0.307516874000000 0.919922695000000 0.059500201000000 +0.290856817000000 0.943177357000000 0.089250302000000 +0.302459357000000 0.928351891000000 0.218167405000000 +0.282625956000000 0.938070257000000 0.386751308000000 +0.290955984000000 0.921013532000000 0.148750503000000 +0.300872684000000 0.931574818000000 0.287584306000000 +0.287584306000000 0.940450265000000 0.238000805000000 +0.285948051000000 0.928153557000000 0.238000805000000 +0.281832620000000 0.939706512000000 0.466084910000000 +0.276080934000000 0.971687870000000 0.337167807000000 +0.299137262000000 0.938863642000000 0.238000805000000 +0.284262212000000 0.934847280000000 0.019833400000000 +0.299087678000000 0.921806868000000 0.198334004000000 +0.304095612000000 0.910948082000000 0.009916700000000 +0.276080934000000 0.966084935000000 0.317334407000000 +0.302508940000000 0.907576354000000 0.099167002000000 +0.277717189000000 0.980612901000000 0.000000000000000 +0.295963918000000 0.932616072000000 0.337167807000000 +0.281039284000000 0.950565349000000 0.406584709000000 +0.280989701000000 0.935343164000000 0.396668009000000 +0.300773517000000 0.921608534000000 0.168583904000000 +0.299137262000000 0.938863642000000 0.019833400000000 +0.284311795000000 0.925575214000000 0.019833400000000 +0.294228495000000 0.907030935000000 0.644585514000000 +0.285948051000000 0.931376484000000 0.307417707000000 +0.282625956000000 0.938070257000000 0.357001208000000 +0.287584306000000 0.924831462000000 0.317334407000000 +0.294278079000000 0.949176911000000 0.029750101000000 +0.302508940000000 0.904353476000000 0.327251107000000 +0.286691803000000 0.939111461000000 0.357001208000000 +0.289270145000000 0.927508971000000 0.515668411000000 +0.297501006000000 0.906287233000000 0.426418109000000 +0.277618022000000 0.957060738000000 0.158667203000000 +0.285848884000000 0.943772359000000 0.307417707000000 +0.277618022000000 0.974811681000000 0.059500201000000 +0.297501006000000 0.919278060000000 0.178500604000000 +0.290906401000000 0.952697390000000 0.247917505000000 +0.289170978000000 0.978282476000000 0.019833400000000 +0.295765584000000 0.952151971000000 0.079333602000000 +0.295815167000000 0.916947636000000 0.059500201000000 +0.282576373000000 0.996033369000000 0.099167002000000 +0.279353445000000 0.947491122000000 0.337167807000000 +0.298244759000000 0.923542241000000 0.347084507000000 +0.282625956000000 0.962713257000000 0.079333602000000 +0.292592240000000 0.936384467000000 0.168583904000000 +0.282675540000000 0.968861561000000 0.267750906000000 +0.286790970000000 0.948333992000000 0.138833803000000 +0.279353445000000 0.947491122000000 0.029750101000000 +0.281039284000000 0.941441935000000 0.128917103000000 +0.277766773000000 0.950763633000000 0.158667203000000 +0.290906401000000 0.933508575000000 0.059500201000000 +0.298343926000000 0.927112303000000 0.138833803000000 +0.289170978000000 0.962316589000000 0.079333602000000 +0.282576373000000 0.944317778000000 0.099167002000000 +0.282576373000000 0.959688663000000 0.178500604000000 +0.297401839000000 0.922501037000000 0.406584709000000 +0.279204695000000 0.953639476000000 0.158667203000000 +0.282625956000000 0.962713257000000 0.009916700000000 +0.295765584000000 0.942532772000000 0.069416901000000 +0.285948051000000 0.978133726000000 0.158667203000000 +0.294278079000000 0.965043681000000 0.029750101000000 +0.275981767000000 0.962911591000000 0.188417304000000 +0.282675540000000 0.925971882000000 0.089250302000000 +0.305880618000000 0.917046852000000 0.079333602000000 +0.284212628000000 0.931872319000000 0.059500201000000 +0.281039284000000 0.968861561000000 0.138833803000000 +0.290955984000000 0.968613743000000 0.128917103000000 +0.274345511000000 0.957110321000000 0.000000000000000 +0.290906401000000 0.933508575000000 0.366917908000000 +0.292493073000000 0.939855263000000 0.059500201000000 +0.277766773000000 0.950763633000000 0.138833803000000 +0.289170978000000 0.962316589000000 0.119000403000000 +0.274395095000000 0.960134915000000 0.059500201000000 +0.275981767000000 0.974811681000000 0.337167807000000 +0.299137262000000 0.918633524000000 0.049583501000000 +0.283419292000000 0.945557365000000 0.119000403000000 +0.294228495000000 0.929591478000000 0.228084105000000 +0.294278079000000 0.912435587000000 0.039666801000000 +0.286741387000000 0.945309398000000 0.178500604000000 +0.272758839000000 0.968861561000000 0.228084105000000 +0.305731868000000 0.923641458000000 0.049583501000000 +0.274494262000000 0.954333645000000 0.138833803000000 +0.281882204000000 0.948978627000000 0.357001208000000 +0.280940117000000 0.929393144000000 0.138833803000000 +0.297501006000000 0.919278060000000 0.188417304000000 +0.299236429000000 0.931822686000000 0.079333602000000 +0.287584306000000 0.940450265000000 0.228084105000000 +0.304095612000000 0.917294770000000 0.069416901000000 +0.283468876000000 0.948929043000000 0.039666801000000 +0.289270145000000 0.920666398000000 0.585085313000000 +0.300773517000000 0.921608534000000 0.198334004000000 +0.279303862000000 0.956812820000000 0.525585111000000 +0.282576373000000 0.944317778000000 0.247917505000000 +0.280940117000000 0.986810838000000 0.208250704000000 +0.295864751000000 0.929293977000000 0.138833803000000 +0.291005568000000 0.914567677000000 0.634668814000000 +0.295021831000000 0.924682761000000 0.376834608000000 +0.279353445000000 0.965836968000000 0.347084507000000 +0.284311795000000 0.993355860000000 0.128917103000000 +0.282625956000000 0.956515319000000 0.277667606000000 +0.275932183000000 0.954036144000000 0.168583904000000 +0.280940117000000 0.941541102000000 0.029750101000000 +0.305880618000000 0.913427257000000 0.287584306000000 +0.284311795000000 0.996231704000000 0.059500201000000 +0.281039284000000 0.950565349000000 0.436334809000000 +0.280890534000000 0.983885362000000 0.436334809000000 +0.285848884000000 0.943772359000000 0.317334407000000 +0.284311795000000 0.968762444000000 0.138833803000000 +0.289319729000000 0.993851695000000 0.059500201000000 +0.279849280000000 0.945011947000000 0.396668009000000 +0.295021831000000 0.924682761000000 0.406584709000000 +0.294030161000000 0.920121079000000 0.366917908000000 +0.285997634000000 0.950069464000000 0.178500604000000 +0.281832620000000 0.939706512000000 0.277667606000000 +0.284361379000000 0.981009618000000 0.128917103000000 +0.274345511000000 0.957110321000000 0.525585111000000 +0.290955984000000 0.921013532000000 0.099167002000000 +0.284212628000000 0.931872319000000 0.396668009000000 +0.295914334000000 0.935888583000000 0.109083702000000 +0.287584306000000 0.990727935000000 0.208250704000000 +0.285749717000000 0.953193274000000 0.208250704000000 +0.289270145000000 0.927508971000000 0.525585111000000 +0.274494262000000 0.954333645000000 0.376834608000000 +0.300823101000000 0.918236856000000 0.128917103000000 +0.297401839000000 0.922501037000000 0.466084910000000 +0.297501006000000 0.906287233000000 0.347084507000000 +0.294178912000000 0.926517301000000 0.049583501000000 +0.284212628000000 0.956366569000000 0.119000403000000 +0.272659672000000 0.957308705000000 0.228084105000000 +0.299137262000000 0.908815942000000 0.614835413000000 +0.287683473000000 0.927806472000000 0.287584306000000 +0.300872684000000 0.901576800000000 0.495835011000000 +0.274295928000000 0.963010758000000 0.238000805000000 +0.299087678000000 0.921806868000000 0.019833400000000 +0.277618022000000 0.959936630000000 0.416501409000000 +0.294228495000000 0.907030935000000 0.585085313000000 +0.302409773000000 0.934847280000000 0.000000000000000 +0.280940117000000 0.956614437000000 0.069416901000000 +0.279849280000000 0.945011947000000 0.099167002000000 +0.299137262000000 0.938863642000000 0.049583501000000 +0.292542656000000 0.920368947000000 0.267750906000000 +0.284212628000000 0.956366569000000 0.327251107000000 +0.294178912000000 0.926517301000000 0.456168210000000 +0.297600173000000 0.912633921000000 0.218167405000000 +0.290906401000000 0.936582752000000 0.069416901000000 +0.280890534000000 0.983885362000000 0.376834608000000 +0.285154715000000 0.948333992000000 0.317334407000000 +0.285898467000000 0.962514923000000 0.228084105000000 +0.287584306000000 0.990727935000000 0.089250302000000 +0.287633890000000 0.968762444000000 0.079333602000000 +0.285948051000000 0.937425671000000 0.247917505000000 +0.299236429000000 0.931822686000000 0.119000403000000 +0.302409773000000 0.911096832000000 0.297501006000000 +0.282625956000000 0.938070257000000 0.099167002000000 +0.304095612000000 0.910948082000000 0.000000000000000 +0.290906401000000 0.936582752000000 0.029750101000000 +0.305731868000000 0.923641458000000 0.327251107000000 +0.277766773000000 0.950763633000000 0.466084910000000 +0.277766773000000 0.950763633000000 0.585085313000000 +0.299137262000000 0.908815942000000 0.555335212000000 +0.287633890000000 0.930831066000000 0.208250704000000 +0.292493073000000 0.904452643000000 0.178500604000000 +0.290807234000000 0.971836621000000 0.069416901000000 +0.279353445000000 0.938665259000000 0.317334407000000 +0.280940117000000 0.929393144000000 0.525585111000000 +0.287633890000000 0.946747369000000 0.238000805000000 +0.290807234000000 0.939954479000000 0.228084105000000 +0.287534723000000 0.959291995000000 0.029750101000000 +0.295864751000000 0.929293977000000 0.267750906000000 +0.300823101000000 0.918236856000000 0.327251107000000 +0.285749717000000 0.953193274000000 0.138833803000000 +0.284311795000000 0.990132933000000 0.128917103000000 +0.300872684000000 0.901576800000000 0.238000805000000 +0.299087678000000 0.921806868000000 0.218167405000000 +0.298244759000000 0.923542241000000 0.188417304000000 +0.279353445000000 0.968911194000000 0.029750101000000 +0.295963918000000 0.913030589000000 0.059500201000000 +0.282625956000000 0.928798192000000 0.347084507000000 +0.287633890000000 0.968762444000000 0.049583501000000 +0.300823101000000 0.904799728000000 0.624752113000000 +0.289270145000000 0.933954826000000 0.267750906000000 +0.280890534000000 0.977786641000000 0.287584306000000 +0.289170978000000 0.975009965000000 0.168583904000000 +0.299137262000000 0.938863642000000 0.089250302000000 +0.284311795000000 0.947044870000000 0.049583501000000 +0.292493073000000 0.942929440000000 0.079333602000000 +0.291005568000000 0.914567677000000 0.406584709000000 +0.282625956000000 0.938070257000000 0.188417304000000 +0.284212628000000 0.962564506000000 0.000000000000000 +0.285898467000000 0.959391212000000 0.059500201000000 +0.282625956000000 0.956515319000000 0.317334407000000 +0.285997634000000 0.925228180000000 0.089250302000000 +0.280840950000000 0.971787087000000 0.327251107000000 +0.279353445000000 0.980712018000000 0.069416901000000 +0.280940117000000 0.932268987000000 0.476001610000000 +0.285105131000000 0.939210677000000 0.079333602000000 +0.279303862000000 0.941789019000000 0.466084910000000 +0.305731868000000 0.923641458000000 0.099167002000000 +0.281832620000000 0.939706512000000 0.208250704000000 +0.279204695000000 0.950813167000000 0.476001610000000 +0.290856817000000 0.975109132000000 0.059500201000000 +0.275932183000000 0.954036144000000 0.218167405000000 +0.295815167000000 0.916947636000000 0.109083702000000 +0.294178912000000 0.942929440000000 0.138833803000000 +0.292493073000000 0.942929440000000 0.307417707000000 +0.279254278000000 0.962961224000000 0.287584306000000 +0.299087678000000 0.921806868000000 0.000000000000000 +0.292592240000000 0.949375295000000 0.099167002000000 +0.282576373000000 0.944317778000000 0.039666801000000 +0.302508940000000 0.904353476000000 0.624752113000000 +0.292592240000000 0.965489933000000 0.009916700000000 +0.289220562000000 0.943474858000000 0.128917103000000 +0.279254278000000 0.962961224000000 0.168583904000000 +0.289220562000000 0.924385161000000 0.317334407000000 +0.282725123000000 0.965836968000000 0.327251107000000 +0.294228495000000 0.907030935000000 0.694169015000000 +0.287584306000000 0.934103577000000 0.317334407000000 +0.292493073000000 0.904452643000000 0.654502214000000 +0.274295928000000 0.963010758000000 0.317334407000000 +0.295914334000000 0.925922349000000 0.267750906000000 +0.280890534000000 0.953639476000000 0.317334407000000 +0.283419292000000 0.942780689000000 0.238000805000000 +0.292542656000000 0.923641458000000 0.366917908000000 +0.284262212000000 0.928153557000000 0.029750101000000 +0.292344322000000 0.972034905000000 0.029750101000000 +0.300872684000000 0.931574818000000 0.198334004000000 +0.276080934000000 0.966084935000000 0.069416901000000 +0.292592240000000 0.917294770000000 0.535501812000000 +0.294129328000000 0.923294423000000 0.168583904000000 +0.284262212000000 0.971737454000000 0.009916700000000 +0.282675540000000 0.993058359000000 0.178500604000000 +0.276080934000000 0.951061134000000 0.505751711000000 +0.290856817000000 0.943177357000000 0.148750503000000 +0.284212628000000 0.983488793000000 0.198334004000000 +0.277667606000000 0.965985817000000 0.069416901000000 +0.305731868000000 0.923641458000000 0.218167405000000 +0.289220562000000 0.924385161000000 0.396668009000000 +0.279303862000000 0.956812820000000 0.079333602000000 +0.287633890000000 0.930831066000000 0.158667203000000 +0.284311795000000 0.996231704000000 0.228084105000000 +0.304145196000000 0.914022259000000 0.247917505000000 +0.289220562000000 0.952647806000000 0.109083702000000 +0.284311795000000 0.941045217000000 0.039666801000000 +0.280890534000000 0.953639476000000 0.019833400000000 +0.295765584000000 0.952151971000000 0.059500201000000 +0.284311795000000 0.996231704000000 0.039666801000000 +0.284361379000000 0.940946100000000 0.198334004000000 +0.279799697000000 0.944565695000000 0.128917103000000 +0.275981767000000 0.962911591000000 0.297501006000000 +0.290856817000000 0.924087709000000 0.337167807000000 +0.302508940000000 0.917790654000000 0.416501409000000 +0.285898467000000 0.956267402000000 0.218167405000000 +0.279849280000000 0.945011947000000 0.009916700000000 +0.297501006000000 0.908815942000000 0.416501409000000 +0.279303862000000 0.956812820000000 0.049583501000000 +0.272659672000000 0.963159508000000 0.614835413000000 +0.299186845000000 0.935491915000000 0.138833803000000 +0.282576373000000 0.974910798000000 0.109083702000000 +0.297401839000000 0.922501037000000 0.247917505000000 +0.290906401000000 0.911195999000000 0.337167807000000 +0.280840950000000 0.947491122000000 0.079333602000000 +0.304095612000000 0.910948082000000 0.485918310000000 +0.287534723000000 0.956118651000000 0.029750101000000 +0.275981767000000 0.962911591000000 0.317334407000000 +0.276031350000000 0.959986164000000 0.218167405000000 +0.276080934000000 0.966084935000000 0.208250704000000 +0.292542656000000 0.913476840000000 0.416501409000000 +0.295864751000000 0.906535150000000 0.823086118000000 +0.297550590000000 0.902717220000000 0.565251912000000 +0.299186845000000 0.905394779000000 0.624752113000000 +0.300773517000000 0.928351891000000 0.029750101000000 +0.299186845000000 0.905394779000000 0.535501812000000 +0.272659672000000 0.957308705000000 0.049583501000000 +0.280940117000000 0.941541102000000 0.000000000000000 +0.294129328000000 0.923294423000000 0.138833803000000 +0.282625956000000 0.928798192000000 0.485918310000000 +0.279353445000000 0.947491122000000 0.019833400000000 +0.299137262000000 0.908815942000000 0.317334407000000 +0.295716000000000 0.922897705000000 0.317334407000000 +0.287584306000000 0.990727935000000 0.049583501000000 +0.284212628000000 0.962564506000000 0.297501006000000 +0.277618022000000 0.957060738000000 0.277667606000000 +0.283419292000000 0.939706512000000 0.089250302000000 +0.299137262000000 0.908815942000000 0.515668411000000 +0.279353445000000 0.947491122000000 0.109083702000000 +0.280890534000000 0.953639476000000 0.158667203000000 +0.305731868000000 0.910055529000000 0.059500201000000 +0.291005568000000 0.914567677000000 0.555335212000000 +0.294228495000000 0.929591478000000 0.099167002000000 +0.275932183000000 0.954036144000000 0.376834608000000 +0.285997634000000 0.971787087000000 0.009916700000000 +0.282625956000000 0.928798192000000 0.406584709000000 +0.296757254000000 0.927806472000000 0.188417304000000 +0.280989701000000 0.935343164000000 0.079333602000000 +0.297501006000000 0.952003221000000 0.069416901000000 +0.302508940000000 0.907576354000000 0.466084910000000 +0.275981767000000 0.957060738000000 0.069416901000000 +0.299286012000000 0.912138135000000 0.168583904000000 +0.302508940000000 0.904353476000000 0.495835011000000 +0.285848884000000 0.943772359000000 0.287584306000000 +0.294228495000000 0.933111907000000 0.079333602000000 +0.283419292000000 0.945557365000000 0.198334004000000 +0.294278079000000 0.968613743000000 0.000000000000000 +0.299186845000000 0.905394779000000 0.019833400000000 +0.300872684000000 0.924881045000000 0.029750101000000 +0.292493073000000 0.904452643000000 0.505751711000000 +0.271866336000000 0.964349562000000 0.009916700000000 +0.274345511000000 0.966134568000000 0.000000000000000 +0.292542656000000 0.913476840000000 0.595002013000000 +0.294129328000000 0.923294423000000 0.317334407000000 +0.275981767000000 0.974811681000000 0.168583904000000 +0.282725123000000 0.950366965000000 0.119000403000000 +0.279254278000000 0.962961224000000 0.347084507000000 +0.285997634000000 0.950069464000000 0.327251107000000 +0.294228495000000 0.907030935000000 0.257834206000000 +0.290955984000000 0.921013532000000 0.188417304000000 +0.275932183000000 0.954036144000000 0.466084910000000 +0.297501006000000 0.908815942000000 0.128917103000000 +0.295864751000000 0.906535150000000 0.416501409000000 +0.285105131000000 0.942185687000000 0.287584306000000 +0.299137262000000 0.908815942000000 0.138833803000000 +0.307417707000000 0.913328090000000 0.396668009000000 +0.297501006000000 0.908815942000000 0.238000805000000 +0.300922268000000 0.911245583000000 0.297501006000000 +0.279353445000000 0.968911194000000 0.069416901000000 +0.284262212000000 0.971737454000000 0.158667203000000 +0.283419292000000 0.939706512000000 0.208250704000000 +0.289170978000000 0.978282476000000 0.089250302000000 +0.277618022000000 0.957060738000000 0.128917103000000 +0.302409773000000 0.934847280000000 0.029750101000000 +0.289270145000000 0.927508971000000 0.357001208000000 +0.285948051000000 0.993405494000000 0.138833803000000 +0.279353445000000 0.938665259000000 0.436334809000000 +0.276080934000000 0.951061134000000 0.604918713000000 +0.294278079000000 0.912435587000000 0.247917505000000 +0.304145196000000 0.914022259000000 0.029750101000000 +0.284212628000000 0.931872319000000 0.327251107000000 +0.285898467000000 0.962514923000000 0.109083702000000 +0.282576373000000 0.947193621000000 0.257834206000000 +0.292542656000000 0.920368947000000 0.327251107000000 +0.272659672000000 0.963159508000000 0.148750503000000 +0.289319729000000 0.965985817000000 0.168583904000000 +0.289220562000000 0.943474858000000 0.257834206000000 +0.277618022000000 0.959936630000000 0.446251510000000 +0.290906401000000 0.952697390000000 0.138833803000000 +0.285154715000000 0.948333992000000 0.009916700000000 +0.302508940000000 0.907576354000000 0.208250704000000 +0.289270145000000 0.933954826000000 0.247917505000000 +0.289270145000000 0.949722330000000 0.188417304000000 +0.277568439000000 0.953837810000000 0.198334004000000 +0.297501006000000 0.925723965000000 0.277667606000000 +0.305880618000000 0.913427257000000 0.128917103000000 +0.276080934000000 0.971687870000000 0.049583501000000 +0.271866336000000 0.964349562000000 0.238000805000000 +0.280940117000000 0.941541102000000 0.287584306000000 +0.294278079000000 0.945805283000000 0.059500201000000 +0.292493073000000 0.904452643000000 0.426418109000000 +0.289270145000000 0.968663277000000 0.059500201000000 +0.299137262000000 0.908815942000000 0.426418109000000 +0.281832620000000 0.945656532000000 0.188417304000000 +0.304145196000000 0.914022259000000 0.128917103000000 +0.279254278000000 0.959837414000000 0.079333602000000 +0.299137262000000 0.941888236000000 0.238000805000000 +0.280791367000000 0.962762840000000 0.267750906000000 +0.274295928000000 0.963010758000000 0.128917103000000 +0.282725123000000 0.965836968000000 0.128917103000000 +0.279353445000000 0.947491122000000 0.446251510000000 +0.294030161000000 0.920121079000000 0.347084507000000 +0.286790970000000 0.948333992000000 0.089250302000000 +0.277717189000000 0.969010312000000 0.327251107000000 +0.292542656000000 0.913476840000000 0.456168210000000 +0.290906401000000 0.908022655000000 0.446251510000000 +0.282576373000000 0.974910798000000 0.168583904000000 +0.282625956000000 0.938070257000000 0.138833803000000 +0.282526789000000 0.977935392000000 0.138833803000000 +0.300922268000000 0.908220989000000 0.505751711000000 +0.294030161000000 0.920121079000000 0.099167002000000 +0.297550590000000 0.916104716000000 0.218167405000000 +0.281832620000000 0.939706512000000 0.079333602000000 +0.305682284000000 0.920071446000000 0.228084105000000 +0.282675540000000 0.931971536000000 0.327251107000000 +0.297501006000000 0.906287233000000 0.138833803000000 +0.286790970000000 0.948333992000000 0.228084105000000 +0.284262212000000 0.928153557000000 0.347084507000000 +0.275981767000000 0.957060738000000 0.485918310000000 +0.282625956000000 0.956515319000000 0.287584306000000 +0.295963918000000 0.913030589000000 0.515668411000000 +0.294178912000000 0.942929440000000 0.158667203000000 +0.297501006000000 0.925723965000000 0.327251107000000 +0.295716000000000 0.922897705000000 0.138833803000000 +0.281039284000000 0.959936630000000 0.009916700000000 +0.285105131000000 0.945408615000000 0.218167405000000 +0.290856817000000 0.975109132000000 0.000000000000000 +0.283419292000000 0.942780689000000 0.198334004000000 +0.292493073000000 0.959044078000000 0.079333602000000 +0.272659672000000 0.957308705000000 0.565251912000000 +0.284311795000000 0.941045217000000 0.049583501000000 +0.300823101000000 0.934996129000000 0.069416901000000 +0.279353445000000 0.947491122000000 0.119000403000000 +0.285997634000000 0.968762444000000 0.178500604000000 +0.272709256000000 0.966134568000000 0.277667606000000 +0.289170978000000 0.940202347000000 0.158667203000000 +0.294129328000000 0.916798885000000 0.476001610000000 +0.275932183000000 0.954036144000000 0.208250704000000 +0.281882204000000 0.948978627000000 0.436334809000000 +0.307268956000000 0.923492707000000 0.099167002000000 +0.274295928000000 0.963010758000000 0.297501006000000 +0.290856817000000 0.924087709000000 0.267750906000000 +0.285105131000000 0.945408615000000 0.327251107000000 +0.279799697000000 0.944565695000000 0.069416901000000 +0.300773517000000 0.921608534000000 0.327251107000000 +0.275981767000000 0.974811681000000 0.188417304000000 +0.280989701000000 0.935343164000000 0.228084105000000 +0.292592240000000 0.965489933000000 0.079333602000000 +0.285898467000000 0.962514923000000 0.019833400000000 +0.289170978000000 0.978282476000000 0.128917103000000 +0.277766773000000 0.950763633000000 0.575168612000000 +0.283468876000000 0.948929043000000 0.089250302000000 +0.295914334000000 0.935888583000000 0.119000403000000 +0.302409773000000 0.911096832000000 0.495835011000000 +0.284212628000000 0.956366569000000 0.277667606000000 +0.296658087000000 0.930880699000000 0.039666801000000 +0.289270145000000 0.927508971000000 0.396668009000000 +0.295914334000000 0.948929043000000 0.138833803000000 +0.287633890000000 0.978084093000000 0.178500604000000 +0.300872684000000 0.924881045000000 0.257834206000000 +0.281039284000000 0.941441935000000 0.138833803000000 +0.298294342000000 0.920468114000000 0.238000805000000 +0.290906401000000 0.959044078000000 0.000000000000000 +0.298294342000000 0.920468114000000 0.446251510000000 +0.292542656000000 0.913476840000000 0.476001610000000 +0.276080934000000 0.971687870000000 0.009916700000000 +0.299137262000000 0.915311479000000 0.456168210000000 +0.274345511000000 0.966134568000000 0.485918310000000 +0.295963918000000 0.913030589000000 0.604918713000000 +0.284311795000000 0.968762444000000 0.009916700000000 +0.287633890000000 0.965886601000000 0.049583501000000 +0.292542656000000 0.913476840000000 0.029750101000000 +0.297501006000000 0.932516954000000 0.297501006000000 +0.299186845000000 0.935491915000000 0.089250302000000 +0.281039284000000 0.950565349000000 0.128917103000000 +0.304095612000000 0.910948082000000 0.416501409000000 +0.292542656000000 0.920368947000000 0.476001610000000 +0.302508940000000 0.907576354000000 0.089250302000000 +0.304194779000000 0.907526820000000 0.535501812000000 +0.285948051000000 0.931376484000000 0.495835011000000 +0.287584306000000 0.940450265000000 0.059500201000000 +0.275932183000000 0.954036144000000 0.575168612000000 +0.283419292000000 0.945557365000000 0.158667203000000 +0.287633890000000 0.930831066000000 0.406584709000000 +0.290906401000000 0.911195999000000 0.654502214000000 +0.283468876000000 0.948929043000000 0.218167405000000 +0.284262212000000 0.928153557000000 0.019833400000000 +0.287584306000000 0.924831462000000 0.307417707000000 +0.302508940000000 0.904353476000000 0.029750101000000 +0.290955984000000 0.921013532000000 0.624752113000000 +0.281039284000000 0.959936630000000 0.089250302000000 +0.285948051000000 0.993405494000000 0.079333602000000 +0.279353445000000 0.947491122000000 0.188417304000000 +0.274444678000000 0.968960778000000 0.257834206000000 +0.290856817000000 0.924087709000000 0.327251107000000 +0.294228495000000 0.933111907000000 0.168583904000000 +0.277667606000000 0.965985817000000 0.079333602000000 +0.277618022000000 0.957060738000000 0.000000000000000 +0.302508940000000 0.904353476000000 0.386751308000000 +0.272659672000000 0.963159508000000 0.109083702000000 +0.283468876000000 0.948929043000000 0.277667606000000 +0.280940117000000 0.929393144000000 0.059500201000000 +0.277717189000000 0.980612901000000 0.109083702000000 +0.292592240000000 0.917294770000000 0.624752113000000 +0.280940117000000 0.932268987000000 0.178500604000000 +0.292592240000000 0.933211123000000 0.019833400000000 +0.286096801000000 0.990232149000000 0.029750101000000 +0.290906401000000 0.927211470000000 0.148750503000000 +0.277618022000000 0.959936630000000 0.119000403000000 +0.290906401000000 0.911195999000000 0.277667606000000 +0.292493073000000 0.955821150000000 0.019833400000000 +0.284311795000000 0.990132933000000 0.059500201000000 +0.294278079000000 0.945805283000000 0.168583904000000 +0.294278079000000 0.968613743000000 0.079333602000000 +0.283419292000000 0.945557365000000 0.109083702000000 +0.307268956000000 0.923492707000000 0.198334004000000 +0.279303862000000 0.941789019000000 0.158667203000000 +0.294129328000000 0.939508178000000 0.148750503000000 +0.299186845000000 0.905394779000000 0.039666801000000 +0.299137262000000 0.915311479000000 0.257834206000000 +0.302409773000000 0.911096832000000 0.287584306000000 +0.275981767000000 0.957060738000000 0.208250704000000 +0.282625956000000 0.984034212000000 0.119000403000000 +0.272858006000000 0.960085331000000 0.366917908000000 +0.297550590000000 0.902717220000000 0.337167807000000 +0.302508940000000 0.907576354000000 0.545418512000000 +0.284262212000000 0.971737454000000 0.128917103000000 +0.300922268000000 0.911245583000000 0.238000805000000 +0.280890534000000 0.977786641000000 0.089250302000000 +0.289270145000000 0.968663277000000 0.178500604000000 +0.274295928000000 0.963010758000000 0.059500201000000 +0.287534723000000 0.974960382000000 0.000000000000000 +0.279303862000000 0.977786641000000 0.357001208000000 +0.289270145000000 0.949722330000000 0.000000000000000 +0.292542656000000 0.913476840000000 0.634668814000000 +0.282576373000000 0.959688663000000 0.099167002000000 +0.290906401000000 0.908022655000000 0.029750101000000 +0.277766773000000 0.950763633000000 0.208250704000000 +0.297550590000000 0.948780343000000 0.128917103000000 +0.295914334000000 0.935888583000000 0.238000805000000 +0.295765584000000 0.955523699000000 0.099167002000000 +0.277618022000000 0.963010758000000 0.109083702000000 +0.279303862000000 0.983835828000000 0.069416901000000 +0.282576373000000 0.959688663000000 0.089250302000000 +0.291005568000000 0.914567677000000 0.446251510000000 +0.284262212000000 0.943970693000000 0.059500201000000 +0.281832620000000 0.942582405000000 0.208250704000000 +0.300723934000000 0.915063512000000 0.287584306000000 +0.277618022000000 0.971985371000000 0.119000403000000 +0.274345511000000 0.957110321000000 0.565251912000000 +0.281882204000000 0.948978627000000 0.247917505000000 +0.277667606000000 0.965985817000000 0.238000805000000 +0.285948051000000 0.934351494000000 0.168583904000000 +0.292493073000000 0.942929440000000 0.049583501000000 +0.291005568000000 0.914567677000000 0.624752113000000 +0.302508940000000 0.907576354000000 0.485918310000000 +0.284311795000000 0.990132933000000 0.079333602000000 +0.284361379000000 0.940946100000000 0.138833803000000 +0.281039284000000 0.938516508000000 0.436334809000000 +0.297501006000000 0.908815942000000 0.337167807000000 +0.289270145000000 0.927508971000000 0.218167405000000 +0.281882204000000 0.948978627000000 0.000000000000000 +0.294129328000000 0.939508178000000 0.208250704000000 +0.302360190000000 0.921311033000000 0.000000000000000 +0.280940117000000 0.986810838000000 0.188417304000000 +0.282675540000000 0.931971536000000 0.495835011000000 +0.284212628000000 0.983488793000000 0.247917505000000 +0.297451423000000 0.938962760000000 0.198334004000000 +0.299137262000000 0.915311479000000 0.317334407000000 +0.275981767000000 0.957060738000000 0.019833400000000 +0.294278079000000 0.912435587000000 0.446251510000000 +0.289270145000000 0.930831066000000 0.059500201000000 +0.280840950000000 0.947491122000000 0.456168210000000 +0.299087678000000 0.921806868000000 0.208250704000000 +0.307318540000000 0.916402316000000 0.327251107000000 +0.289121395000000 0.988000793000000 0.079333602000000 +0.295864751000000 0.906535150000000 0.029750101000000 +0.289170978000000 0.940202347000000 0.218167405000000 +0.290906401000000 0.908022655000000 0.456168210000000 +0.284311795000000 0.925575214000000 0.109083702000000 +0.299087678000000 0.921806868000000 0.277667606000000 +0.289170978000000 0.962316589000000 0.019833400000000 +0.292542656000000 0.920368947000000 0.426418109000000 +0.295021831000000 0.924682761000000 0.168583904000000 +0.295765584000000 0.920170613000000 0.089250302000000 +0.305880618000000 0.917046852000000 0.049583501000000 +0.297501006000000 0.906287233000000 0.644585514000000 +0.289270145000000 0.949722330000000 0.019833400000000 +0.307516874000000 0.919922695000000 0.208250704000000 +0.290955984000000 0.968613743000000 0.158667203000000 +0.282576373000000 0.944317778000000 0.267750906000000 +0.287534723000000 0.956118651000000 0.039666801000000 +0.289319729000000 0.965985817000000 0.079333602000000 +0.295963918000000 0.913030589000000 0.466084910000000 +0.295021831000000 0.924682761000000 0.148750503000000 +0.292592240000000 0.936384467000000 0.327251107000000 +0.284262212000000 0.965737850000000 0.029750101000000 +0.277667606000000 0.965985817000000 0.277667606000000 +0.298294342000000 0.920468114000000 0.019833400000000 +0.290906401000000 0.936582752000000 0.168583904000000 +0.297451423000000 0.938962760000000 0.188417304000000 +0.281882204000000 0.948978627000000 0.099167002000000 +0.272659672000000 0.957308705000000 0.466084910000000 +0.292592240000000 0.917294770000000 0.426418109000000 +0.290906401000000 0.933508575000000 0.019833400000000 +0.295716000000000 0.922897705000000 0.257834206000000 +0.271122584000000 0.966134568000000 0.128917103000000 +0.274395095000000 0.960134915000000 0.366917908000000 +0.283419292000000 0.939706512000000 0.049583501000000 +0.292542656000000 0.945904450000000 0.238000805000000 +0.285154715000000 0.948333992000000 0.049583501000000 +0.281882204000000 0.948978627000000 0.327251107000000 +0.292592240000000 0.936384467000000 0.317334407000000 +0.299137262000000 0.915311479000000 0.376834608000000 +0.279204695000000 0.950813167000000 0.733835816000000 +0.297401839000000 0.922501037000000 0.128917103000000 +0.282576373000000 0.947193621000000 0.000000000000000 +0.277667606000000 0.965985817000000 0.436334809000000 +0.274345511000000 0.957110321000000 0.168583904000000 +0.284311795000000 0.947044870000000 0.267750906000000 +0.275932183000000 0.954036144000000 0.089250302000000 +0.280940117000000 0.986810838000000 0.198334004000000 +0.282576373000000 0.996033369000000 0.000000000000000 +0.294228495000000 0.907030935000000 0.178500604000000 +0.281832620000000 0.939706512000000 0.376834608000000 +0.281039284000000 0.938516508000000 0.545418512000000 +0.292641823000000 0.968613743000000 0.069416901000000 +0.272659672000000 0.957308705000000 0.000000000000000 +0.285848884000000 0.983984579000000 0.099167002000000 +0.284311795000000 0.941045217000000 0.079333602000000 +0.282625956000000 0.929046060000000 0.009916700000000 +0.272659672000000 0.957308705000000 0.009916700000000 +0.284212628000000 0.983488793000000 0.208250704000000 +0.277618022000000 0.971985371000000 0.347084507000000 +0.279353445000000 0.947491122000000 0.505751711000000 +0.290906401000000 0.908022655000000 0.119000403000000 +0.277618022000000 0.971985371000000 0.168583904000000 +0.302508940000000 0.917790654000000 0.277667606000000 +0.292542656000000 0.913476840000000 0.267750906000000 +0.282625956000000 0.938070257000000 0.178500604000000 +0.299137262000000 0.938863642000000 0.257834206000000 +0.299137262000000 0.918633524000000 0.039666801000000 +0.295716000000000 0.922897705000000 0.396668009000000 +0.302508940000000 0.917790654000000 0.376834608000000 +0.279799697000000 0.944565695000000 0.000000000000000 +0.299137262000000 0.918633524000000 0.297501006000000 +0.272758839000000 0.968861561000000 0.287584306000000 +0.282625956000000 0.928798192000000 0.238000805000000 +0.277667606000000 0.965985817000000 0.267750906000000 +0.282625956000000 0.934996129000000 0.327251107000000 +0.281039284000000 0.941441935000000 0.376834608000000 +0.300823101000000 0.918236856000000 0.000000000000000 +0.285997634000000 0.950069464000000 0.257834206000000 +0.289220562000000 0.924385161000000 0.406584709000000 +0.294278079000000 0.912435587000000 0.198334004000000 +0.274395095000000 0.960134915000000 0.148750503000000 +0.295914334000000 0.935888583000000 0.178500604000000 +0.290906401000000 0.908022655000000 0.208250704000000 +0.287485139000000 1.000000000000000 0.069416901000000 +0.294327662000000 0.910353129000000 0.039666801000000 +0.300872684000000 0.901576800000000 0.446251510000000 +0.279849280000000 0.945011947000000 0.000000000000000 +0.281039284000000 0.950565349000000 0.347084507000000 +0.276080934000000 0.971687870000000 0.178500604000000 +0.274494262000000 0.954333645000000 0.634668814000000 +0.290955984000000 0.968613743000000 0.109083702000000 +0.290906401000000 0.911195999000000 0.485918310000000 +0.277618022000000 0.974811681000000 0.049583501000000 +0.298294342000000 0.930434348000000 0.138833803000000 +0.292493073000000 0.942929440000000 0.208250704000000 +0.292542656000000 0.923641458000000 0.218167405000000 +0.281832620000000 0.939706512000000 0.128917103000000 +0.281039284000000 0.980811235000000 0.267750906000000 +0.285154715000000 0.948333992000000 0.257834206000000 +0.294228495000000 0.929591478000000 0.178500604000000 +0.297401839000000 0.922501037000000 0.386751308000000 +0.283419292000000 0.942780689000000 0.119000403000000 +0.279303862000000 0.977786641000000 0.198334004000000 +0.285898467000000 0.996330871000000 0.079333602000000 +0.285948051000000 0.937425671000000 0.287584306000000 +0.295914334000000 0.948929043000000 0.009916700000000 +0.302409773000000 0.911096832000000 0.089250302000000 +0.307417707000000 0.913328090000000 0.000000000000000 +0.295914334000000 0.935888583000000 0.228084105000000 +0.305880618000000 0.917046852000000 0.297501006000000 +0.295765584000000 0.920170613000000 0.218167405000000 +0.297550590000000 0.902717220000000 0.386751308000000 +0.292542656000000 0.920368947000000 0.029750101000000 +0.272858006000000 0.960085331000000 0.347084507000000 +0.289270145000000 0.920666398000000 0.238000805000000 +0.289220562000000 0.943474858000000 0.228084105000000 +0.287683473000000 0.927806472000000 0.426418109000000 +0.304095612000000 0.910948082000000 0.049583501000000 +0.280989701000000 0.935343164000000 0.327251107000000 +0.279204695000000 0.950813167000000 0.049583501000000 +0.298294342000000 0.930434348000000 0.009916700000000 +0.283468876000000 0.948929043000000 0.029750101000000 +0.272858006000000 0.960085331000000 0.247917505000000 +0.281832620000000 0.945656532000000 0.079333602000000 +0.297600173000000 0.912633921000000 0.426418109000000 +0.282576373000000 0.944317778000000 0.019833400000000 +0.277618022000000 0.963010758000000 0.495835011000000 +0.300872684000000 0.924881045000000 0.000000000000000 +0.281832620000000 0.945656532000000 0.109083702000000 +0.284262212000000 0.928153557000000 0.366917908000000 +0.285105131000000 0.945408615000000 0.009916700000000 +0.302508940000000 0.931475651000000 0.148750503000000 +0.290856817000000 0.943177357000000 0.198334004000000 +0.290906401000000 0.933508575000000 0.287584306000000 +0.307268956000000 0.923492707000000 0.119000403000000 +0.275981767000000 0.957060738000000 0.238000805000000 +0.294278079000000 0.912435587000000 0.119000403000000 +0.287584306000000 0.934103577000000 0.059500201000000 +0.282675540000000 0.925971882000000 0.674335615000000 +0.285997634000000 0.971787087000000 0.138833803000000 +0.302409773000000 0.911096832000000 0.208250704000000 +0.277717189000000 0.969010312000000 0.109083702000000 +0.290856817000000 0.943177357000000 0.178500604000000 +0.299137262000000 0.908815942000000 0.347084507000000 +0.285997634000000 0.965638683000000 0.238000805000000 +0.307417707000000 0.913328090000000 0.426418109000000 +0.297501006000000 0.935591082000000 0.287584306000000 +0.287534723000000 0.962415805000000 0.148750503000000 +0.285898467000000 0.962514923000000 0.168583904000000 +0.284361379000000 0.981009618000000 0.188417304000000 +0.295765584000000 0.952151971000000 0.168583904000000 +0.282675540000000 0.968861561000000 0.307417707000000 +0.285997634000000 0.950069464000000 0.148750503000000 +0.284212628000000 0.931872319000000 0.000000000000000 +0.297501006000000 0.932516954000000 0.238000805000000 +0.304095612000000 0.917294770000000 0.208250704000000 +0.281039284000000 0.950565349000000 0.009916700000000 +0.284163045000000 0.959490280000000 0.178500604000000 +0.279204695000000 0.950813167000000 0.168583904000000 +0.287633890000000 0.937128170000000 0.079333602000000 +0.292592240000000 0.933211123000000 0.416501409000000 +0.290906401000000 0.911195999000000 0.099167002000000 +0.292592240000000 0.917294770000000 0.595002013000000 +0.274444678000000 0.968960778000000 0.446251510000000 +0.287683473000000 0.927806472000000 0.000000000000000 +0.289220562000000 0.952647806000000 0.158667203000000 +0.290906401000000 0.927211470000000 0.257834206000000 +0.295765584000000 0.939210677000000 0.148750503000000 +0.287534723000000 0.974960382000000 0.178500604000000 +0.300823101000000 0.904799728000000 0.644585514000000 +0.297501006000000 0.935591082000000 0.257834206000000 +0.297550590000000 0.928798192000000 0.178500604000000 +0.279303862000000 0.956812820000000 0.059500201000000 +0.294030161000000 0.920121079000000 0.505751711000000 +0.290955984000000 0.949524045000000 0.119000403000000 +0.300773517000000 0.921608534000000 0.119000403000000 +0.285749717000000 0.953193274000000 0.178500604000000 +0.292493073000000 0.939855263000000 0.158667203000000 +0.294228495000000 0.907030935000000 0.456168210000000 +0.281039284000000 0.968861561000000 0.257834206000000 +0.285948051000000 0.937425671000000 0.188417304000000 +0.287584306000000 0.984331663000000 0.228084105000000 +0.281039284000000 0.980811235000000 0.178500604000000 +0.285948051000000 0.937425671000000 0.257834206000000 +0.294129328000000 0.962217422000000 0.089250302000000 +0.277766773000000 0.950763633000000 0.684252315000000 +0.287633890000000 0.946747369000000 0.069416901000000 +0.292592240000000 0.917294770000000 0.614835413000000 +0.280940117000000 0.986810838000000 0.039666801000000 +0.290906401000000 0.959044078000000 0.089250302000000 +0.285948051000000 0.978133726000000 0.168583904000000 +0.282576373000000 0.974910798000000 0.158667203000000 +0.300872684000000 0.924881045000000 0.109083702000000 +0.298294342000000 0.920468114000000 0.307417707000000 +0.294178912000000 0.942929440000000 0.238000805000000 +0.282675540000000 0.941293184000000 0.029750101000000 +0.289220562000000 0.959143245000000 0.009916700000000 +0.290856817000000 0.924087709000000 0.029750101000000 +0.290906401000000 0.978232843000000 0.069416901000000 +0.289220562000000 0.924385161000000 0.456168210000000 +0.289270145000000 0.927508971000000 0.059500201000000 +0.292592240000000 0.929988146000000 0.178500604000000 +0.277618022000000 0.963010758000000 0.436334809000000 +0.286096801000000 0.990232149000000 0.168583904000000 +0.287534723000000 0.959291995000000 0.287584306000000 +0.297550590000000 0.902717220000000 0.674335615000000 +0.283419292000000 0.939706512000000 0.277667606000000 +0.305880618000000 0.917046852000000 0.218167405000000 +0.275981767000000 0.962911591000000 0.039666801000000 +0.295914334000000 0.925922349000000 0.228084105000000 +0.274494262000000 0.954333645000000 0.575168612000000 +0.300823101000000 0.934996129000000 0.029750101000000 +0.292443489000000 0.975109132000000 0.049583501000000 +0.281039284000000 0.938516508000000 0.128917103000000 +0.295864751000000 0.929293977000000 0.188417304000000 +0.292592240000000 0.933211123000000 0.317334407000000 +0.281039284000000 0.950565349000000 0.238000805000000 +0.292493073000000 0.939855263000000 0.089250302000000 +0.294228495000000 0.907030935000000 0.168583904000000 +0.292493073000000 0.942929440000000 0.029750101000000 +0.302508940000000 0.917790654000000 0.188417304000000 +0.294278079000000 0.912435587000000 0.436334809000000 +0.274444678000000 0.968960778000000 0.039666801000000 +0.282576373000000 0.987058805000000 0.000000000000000 +0.307268956000000 0.923492707000000 0.238000805000000 +0.281832620000000 0.939706512000000 0.099167002000000 +0.298294342000000 0.930434348000000 0.238000805000000 +0.287633890000000 0.937128170000000 0.019833400000000 +0.292592240000000 0.929988146000000 0.267750906000000 +0.299137262000000 0.908815942000000 0.238000805000000 +0.302508940000000 0.924980212000000 0.029750101000000 +0.294327662000000 0.910353129000000 0.644585514000000 +0.274295928000000 0.963010758000000 0.386751308000000 +0.290807234000000 0.939954479000000 0.238000805000000 +0.302508940000000 0.904353476000000 0.228084105000000 +0.294129328000000 0.939508178000000 0.297501006000000 +0.302508940000000 0.917790654000000 0.059500201000000 +0.285997634000000 0.925228180000000 0.228084105000000 +0.304095612000000 0.910948082000000 0.396668009000000 +0.280989701000000 0.944565695000000 0.297501006000000 +0.279254278000000 0.962961224000000 0.247917505000000 +0.295864751000000 0.906535150000000 0.654502214000000 +0.280890534000000 0.953639476000000 0.049583501000000 +0.284311795000000 0.968762444000000 0.238000805000000 +0.292493073000000 0.904452643000000 0.575168612000000 +0.290807234000000 0.971836621000000 0.029750101000000 +0.295021831000000 0.924682761000000 0.218167405000000 +0.285948051000000 0.928153557000000 0.178500604000000 +0.305880618000000 0.917046852000000 0.228084105000000 +0.280890534000000 0.953639476000000 0.000000000000000 +0.277568439000000 0.953837810000000 0.178500604000000 +0.287633890000000 0.946747369000000 0.337167807000000 +0.275932183000000 0.954036144000000 0.228084105000000 +0.295914334000000 0.935888583000000 0.257834206000000 +0.274494262000000 0.954333645000000 0.208250704000000 +0.290906401000000 0.911195999000000 0.228084105000000 +0.276080934000000 0.951061134000000 0.138833803000000 +0.294178912000000 0.926517301000000 0.277667606000000 +0.292592240000000 0.933211123000000 0.109083702000000 +0.281832620000000 0.939706512000000 0.327251107000000 +0.285948051000000 0.937425671000000 0.138833803000000 +0.285997634000000 0.925228180000000 0.604918713000000 +0.281832620000000 0.945656532000000 0.366917908000000 +0.295765584000000 0.939210677000000 0.069416901000000 +0.290906401000000 0.908022655000000 0.466084910000000 +0.287584306000000 0.940450265000000 0.128917103000000 +0.284361379000000 0.937971090000000 0.247917505000000 +0.298294342000000 0.920468114000000 0.029750101000000 +0.279303862000000 0.974811681000000 0.366917908000000 +0.280940117000000 0.956614437000000 0.198334004000000 +0.292493073000000 0.955821150000000 0.029750101000000 +0.304095612000000 0.922104369000000 0.039666801000000 +0.277618022000000 0.959936630000000 0.287584306000000 +0.290906401000000 0.911195999000000 0.456168210000000 +0.287584306000000 0.984331663000000 0.109083702000000 +0.299236429000000 0.931822686000000 0.287584306000000 +0.285997634000000 0.971787087000000 0.000000000000000 +0.289170978000000 0.978282476000000 0.099167002000000 +0.279353445000000 0.947491122000000 0.604918713000000 +0.284212628000000 0.931872319000000 0.525585111000000 +0.289220562000000 0.946499452000000 0.247917505000000 +0.282675540000000 0.941293184000000 0.228084105000000 +0.300823101000000 0.904799728000000 0.148750503000000 +0.299286012000000 0.912138135000000 0.089250302000000 +0.280940117000000 0.929393144000000 0.267750906000000 +0.286691803000000 0.939111461000000 0.168583904000000 +0.284262212000000 0.965737850000000 0.208250704000000 +0.276080934000000 0.951061134000000 0.366917908000000 +0.282675540000000 0.980910402000000 0.000000000000000 +0.284311795000000 0.996231704000000 0.019833400000000 +0.294178912000000 0.936285251000000 0.257834206000000 +0.299137262000000 0.908815942000000 0.485918310000000 +0.287534723000000 0.987505007000000 0.089250302000000 +0.281039284000000 0.959936630000000 0.287584306000000 +0.289270145000000 0.933954826000000 0.009916700000000 +0.275981767000000 0.974811681000000 0.297501006000000 +0.287584306000000 0.924831462000000 0.059500201000000 +0.282625956000000 0.929046060000000 0.347084507000000 +0.294327662000000 0.910353129000000 0.495835011000000 +0.299137262000000 0.918633524000000 0.446251510000000 +0.296658087000000 0.921112699000000 0.228084105000000 +0.290807234000000 0.962267055000000 0.168583904000000 +0.290906401000000 0.933508575000000 0.158667203000000 +0.274444678000000 0.971886155000000 0.148750503000000 +0.282625956000000 0.928798192000000 0.366917908000000 +0.295864751000000 0.906535150000000 0.842919518000000 +0.274444678000000 0.968960778000000 0.376834608000000 +0.274395095000000 0.960134915000000 0.476001610000000 +0.282675540000000 0.931971536000000 0.317334407000000 +0.277618022000000 0.974811681000000 0.277667606000000 +0.285948051000000 0.934351494000000 0.178500604000000 +0.294327662000000 0.910353129000000 0.476001610000000 +0.292344322000000 0.972034905000000 0.089250302000000 +0.282725123000000 0.965836968000000 0.059500201000000 +0.294030161000000 0.920121079000000 0.218167405000000 +0.292592240000000 0.917294770000000 0.099167002000000 +0.290807234000000 0.971836621000000 0.000000000000000 +0.302409773000000 0.934847280000000 0.039666801000000 +0.279204695000000 0.950813167000000 0.366917908000000 +0.292592240000000 0.917294770000000 0.208250704000000 +0.289319729000000 0.937029003000000 0.238000805000000 +0.285105131000000 0.945408615000000 0.069416901000000 +0.280940117000000 0.956614437000000 0.000000000000000 +0.302508940000000 0.904353476000000 0.128917103000000 +0.284311795000000 0.947044870000000 0.297501006000000 +0.284212628000000 0.999652965000000 0.109083702000000 +0.291005568000000 0.914567677000000 0.485918310000000 +0.284212628000000 0.987058805000000 0.099167002000000 +0.295914334000000 0.909807711000000 0.218167405000000 +0.282625956000000 0.938070257000000 0.466084910000000 +0.305880618000000 0.917046852000000 0.257834206000000 +0.274444678000000 0.968960778000000 0.307417707000000 +0.290856817000000 0.955870734000000 0.198334004000000 +0.275981767000000 0.962911591000000 0.347084507000000 +0.289220562000000 0.924385161000000 0.297501006000000 +0.280940117000000 0.941541102000000 0.039666801000000 +0.294129328000000 0.955821150000000 0.059500201000000 +0.287485139000000 0.943574025000000 0.208250704000000 +0.282576373000000 0.947193621000000 0.327251107000000 +0.292493073000000 0.904452643000000 0.307417707000000 +0.282625956000000 0.934996129000000 0.009916700000000 +0.299236429000000 0.931822686000000 0.089250302000000 +0.300872684000000 0.901576800000000 0.783419317000000 +0.297501006000000 0.935591082000000 0.337167807000000 +0.299137262000000 0.915311479000000 0.099167002000000 +0.295963918000000 0.932616072000000 0.039666801000000 +0.291005568000000 0.914567677000000 0.079333602000000 +0.274444678000000 0.968960778000000 0.456168210000000 +0.281039284000000 0.938516508000000 0.456168210000000 +0.292344322000000 0.972034905000000 0.069416901000000 +0.297501006000000 0.906287233000000 0.436334809000000 +0.304095612000000 0.917294770000000 0.327251107000000 +0.295021831000000 0.927806472000000 0.416501409000000 +0.300773517000000 0.921608534000000 0.109083702000000 +0.290955984000000 0.949524045000000 0.208250704000000 +0.302360190000000 0.914418927000000 0.257834206000000 +0.282576373000000 0.987058805000000 0.267750906000000 +0.282625956000000 0.962713257000000 0.327251107000000 +0.277618022000000 0.974811681000000 0.416501409000000 +0.277667606000000 0.965985817000000 0.148750503000000 +0.280890534000000 0.974910798000000 0.059500201000000 +0.275981767000000 0.957060738000000 0.366917908000000 +0.280940117000000 0.929393144000000 0.366917908000000 +0.299137262000000 0.938863642000000 0.208250704000000 +0.284311795000000 0.993355860000000 0.228084105000000 +0.300823101000000 0.904799728000000 0.277667606000000 +0.281039284000000 0.980811235000000 0.247917505000000 +0.297501006000000 0.925723965000000 0.039666801000000 +0.299236429000000 0.931822686000000 0.267750906000000 +0.289220562000000 0.924385161000000 0.069416901000000 +0.304095612000000 0.922104369000000 0.267750906000000 +0.289220562000000 0.952647806000000 0.138833803000000 +0.282576373000000 0.996033369000000 0.138833803000000 +0.294178912000000 0.936285251000000 0.138833803000000 +0.296658087000000 0.921112699000000 0.476001610000000 +0.284262212000000 0.965737850000000 0.188417304000000 +0.297501006000000 0.935591082000000 0.307417707000000 +0.290856817000000 0.930335231000000 0.327251107000000 +0.290856817000000 0.930335231000000 0.416501409000000 +0.287633890000000 0.930831066000000 0.228084105000000 +0.304095612000000 0.910948082000000 0.188417304000000 +0.284262212000000 0.928153557000000 0.485918310000000 +0.296707670000000 0.924286043000000 0.039666801000000 +0.283468876000000 0.948929043000000 0.228084105000000 +0.296658087000000 0.930880699000000 0.119000403000000 +0.282675540000000 0.971935788000000 0.049583501000000 +0.277618022000000 0.957060738000000 0.347084507000000 +0.279353445000000 0.965836968000000 0.089250302000000 +0.285997634000000 0.925228180000000 0.158667203000000 +0.284361379000000 0.937971090000000 0.069416901000000 +0.280989701000000 0.944565695000000 0.238000805000000 +0.307318540000000 0.916402316000000 0.049583501000000 +0.287584306000000 0.984331663000000 0.138833803000000 +0.286691803000000 0.942185687000000 0.198334004000000 +0.280989701000000 0.935343164000000 0.287584306000000 +0.274345511000000 0.966134568000000 0.357001208000000 +0.280940117000000 0.941541102000000 0.267750906000000 +0.286691803000000 0.939111461000000 0.009916700000000 +0.304095612000000 0.917294770000000 0.257834206000000 +0.296757254000000 0.927806472000000 0.128917103000000 +0.290906401000000 0.936582752000000 0.357001208000000 +0.292592240000000 0.952598223000000 0.109083702000000 +0.292542656000000 0.923641458000000 0.297501006000000 +0.281882204000000 0.948978627000000 0.019833400000000 +0.279303862000000 0.983835828000000 0.198334004000000 +0.290906401000000 0.933508575000000 0.228084105000000 +0.297401839000000 0.922501037000000 0.426418109000000 +0.287584306000000 0.940450265000000 0.337167807000000 +0.305880618000000 0.917046852000000 0.307417707000000 +0.274395095000000 0.960134915000000 0.128917103000000 +0.292493073000000 0.926963553000000 0.515668411000000 +0.275981767000000 0.957060738000000 0.049583501000000 +0.289220562000000 0.924385161000000 0.505751711000000 +0.282625956000000 0.929046060000000 0.148750503000000 +0.287633890000000 0.949871180000000 0.307417707000000 +0.299137262000000 0.955523699000000 0.089250302000000 +0.280890534000000 0.974910798000000 0.049583501000000 +0.280989701000000 0.935343164000000 0.565251912000000 +0.297501006000000 0.906287233000000 0.565251912000000 +0.285848884000000 0.943772359000000 0.238000805000000 +0.276080934000000 0.951061134000000 0.446251510000000 +0.279353445000000 0.980712018000000 0.039666801000000 +0.272758839000000 0.968861561000000 0.059500201000000 +0.292493073000000 0.942929440000000 0.109083702000000 +0.295963918000000 0.932616072000000 0.287584306000000 +0.290807234000000 0.962267055000000 0.039666801000000 +0.284311795000000 0.996231704000000 0.208250704000000 +0.290856817000000 0.943177357000000 0.099167002000000 +0.294327662000000 0.910353129000000 0.247917505000000 +0.302508940000000 0.924980212000000 0.247917505000000 +0.290906401000000 0.959044078000000 0.049583501000000 +0.282625956000000 0.929046060000000 0.426418109000000 +0.290906401000000 0.927211470000000 0.456168210000000 +0.302508940000000 0.907576354000000 0.228084105000000 +0.286790970000000 0.948333992000000 0.267750906000000 +0.276031350000000 0.959986164000000 0.456168210000000 +0.285848884000000 0.943772359000000 0.337167807000000 +0.287683473000000 0.927806472000000 0.277667606000000 +0.279353445000000 0.968911194000000 0.406584709000000 +0.289270145000000 0.920666398000000 0.436334809000000 +0.304145196000000 0.914022259000000 0.287584306000000 +0.284311795000000 0.996231704000000 0.099167002000000 +0.287633890000000 0.930831066000000 0.009916700000000 +0.295765584000000 0.920170613000000 0.426418109000000 +0.292542656000000 0.923641458000000 0.109083702000000 +0.287534723000000 0.959291995000000 0.168583904000000 +0.299137262000000 0.908815942000000 0.247917505000000 +0.274345511000000 0.957110321000000 0.069416901000000 +0.285997634000000 0.925228180000000 0.069416901000000 +0.282625956000000 0.962713257000000 0.228084105000000 +0.285948051000000 0.934351494000000 0.446251510000000 +0.285948051000000 0.928153557000000 0.495835011000000 +0.280890534000000 0.977786641000000 0.109083702000000 +0.295963918000000 0.932616072000000 0.059500201000000 +0.292493073000000 0.942929440000000 0.000000000000000 +0.300872684000000 0.924881045000000 0.059500201000000 +0.299087678000000 0.921806868000000 0.406584709000000 +0.281039284000000 0.938516508000000 0.317334407000000 +0.275932183000000 0.954036144000000 0.307417707000000 +0.302508940000000 0.907576354000000 0.059500201000000 +0.283419292000000 0.942780689000000 0.109083702000000 +0.307417707000000 0.913328090000000 0.366917908000000 +0.290856817000000 0.965836968000000 0.119000403000000 +0.299137262000000 0.918633524000000 0.466084910000000 +0.295815167000000 0.916947636000000 0.535501812000000 +0.279303862000000 0.977786641000000 0.128917103000000 +0.292592240000000 0.917294770000000 0.347084507000000 +0.300872684000000 0.901576800000000 0.386751308000000 +0.292592240000000 0.929988146000000 0.426418109000000 +0.295963918000000 0.913030589000000 0.317334407000000 +0.282576373000000 0.996033369000000 0.059500201000000 +0.274345511000000 0.957110321000000 0.376834608000000 +0.283468876000000 0.948929043000000 0.079333602000000 +0.285948051000000 0.931376484000000 0.416501409000000 +0.289270145000000 0.927508971000000 0.386751308000000 +0.279303862000000 0.977786641000000 0.148750503000000 +0.280840950000000 0.947491122000000 0.277667606000000 +0.281882204000000 0.948978627000000 0.267750906000000 +0.279799697000000 0.944565695000000 0.297501006000000 +0.285948051000000 0.931376484000000 0.515668411000000 +0.307417707000000 0.913328090000000 0.019833400000000 +0.289170978000000 0.940202347000000 0.079333602000000 +0.302409773000000 0.911096832000000 0.446251510000000 +0.295914334000000 0.935888583000000 0.168583904000000 +0.300723934000000 0.915063512000000 0.119000403000000 +0.295021831000000 0.927806472000000 0.138833803000000 +0.292493073000000 0.904452643000000 0.406584709000000 +0.279204695000000 0.950813167000000 0.386751308000000 +0.280890534000000 0.983885362000000 0.406584709000000 +0.280791367000000 0.962762840000000 0.168583904000000 +0.302409773000000 0.911096832000000 0.277667606000000 +0.285997634000000 0.971787087000000 0.029750101000000 +0.295963918000000 0.913030589000000 0.168583904000000 +0.307417707000000 0.913328090000000 0.416501409000000 +0.285105131000000 0.939210677000000 0.039666801000000 +0.295864751000000 0.929293977000000 0.386751308000000 +0.285848884000000 0.943772359000000 0.267750906000000 +0.297501006000000 0.919278060000000 0.138833803000000 +0.285997634000000 0.968762444000000 0.009916700000000 +0.285105131000000 0.942185687000000 0.327251107000000 +0.284262212000000 0.934847280000000 0.009916700000000 +0.295864751000000 0.906535150000000 0.039666801000000 +0.302459357000000 0.928351891000000 0.168583904000000 +0.284262212000000 0.943970693000000 0.039666801000000 +0.277618022000000 0.963010758000000 0.039666801000000 +0.298343926000000 0.927112303000000 0.198334004000000 +0.299186845000000 0.952052754000000 0.000000000000000 +0.302508940000000 0.931475651000000 0.307417707000000 +0.294228495000000 0.907030935000000 0.575168612000000 +0.295765584000000 0.939210677000000 0.128917103000000 +0.279353445000000 0.947491122000000 0.247917505000000 +0.284311795000000 0.978034559000000 0.069416901000000 +0.279353445000000 0.938665259000000 0.019833400000000 +0.287633890000000 0.930831066000000 0.337167807000000 +0.276031350000000 0.959986164000000 0.485918310000000 +0.282675540000000 0.968861561000000 0.079333602000000 +0.298244759000000 0.923542241000000 0.069416901000000 +0.294228495000000 0.907030935000000 0.495835011000000 +0.295963918000000 0.913030589000000 0.327251107000000 +0.275932183000000 0.954036144000000 0.446251510000000 +0.305731868000000 0.910055529000000 0.366917908000000 +0.280940117000000 0.932268987000000 0.148750503000000 +0.290906401000000 0.927211470000000 0.495835011000000 +0.287584306000000 0.924831462000000 0.545418512000000 +0.300872684000000 0.901576800000000 0.376834608000000 +0.289270145000000 0.920666398000000 0.347084507000000 +0.284311795000000 0.993355860000000 0.158667203000000 +0.299087678000000 0.921806868000000 0.039666801000000 +0.280940117000000 0.956614437000000 0.128917103000000 +0.295864751000000 0.906535150000000 0.000000000000000 +0.274345511000000 0.957110321000000 0.426418109000000 +0.297550590000000 0.948780343000000 0.138833803000000 +0.290856817000000 0.930335231000000 0.485918310000000 +0.300872684000000 0.901576800000000 0.188417304000000 +0.279849280000000 0.945011947000000 0.297501006000000 +0.299137262000000 0.955523699000000 0.009916700000000 +0.295765584000000 0.920170613000000 0.138833803000000 +0.271866336000000 0.964349562000000 0.247917505000000 +0.297550590000000 0.902717220000000 0.148750503000000 +0.289270145000000 0.927508971000000 0.089250302000000 +0.280791367000000 0.962762840000000 0.079333602000000 +0.289220562000000 0.946499452000000 0.297501006000000 +0.304095612000000 0.917294770000000 0.386751308000000 +0.279849280000000 0.945011947000000 0.327251107000000 +0.282625956000000 0.984034212000000 0.059500201000000 +0.284311795000000 0.947044870000000 0.198334004000000 +0.287683473000000 0.971687870000000 0.188417304000000 +0.284361379000000 0.940946100000000 0.049583501000000 +0.297501006000000 0.919278060000000 0.198334004000000 +0.292592240000000 0.917294770000000 0.128917103000000 +0.284212628000000 0.931872319000000 0.019833400000000 +0.292592240000000 0.917294770000000 0.277667606000000 +0.276080934000000 0.966084935000000 0.029750101000000 +0.282675540000000 0.925971882000000 0.327251107000000 +0.290955984000000 0.968613743000000 0.029750101000000 +0.294228495000000 0.907030935000000 0.049583501000000 +0.289319729000000 0.937029003000000 0.019833400000000 +0.277618022000000 0.974811681000000 0.119000403000000 +0.276080934000000 0.966084935000000 0.386751308000000 +0.277618022000000 0.971985371000000 0.178500604000000 +0.297501006000000 0.919278060000000 0.049583501000000 +0.282725123000000 0.950366965000000 0.039666801000000 +0.285898467000000 0.956267402000000 0.128917103000000 +0.284311795000000 0.950218215000000 0.138833803000000 +0.300872684000000 0.931574818000000 0.247917505000000 +0.290955984000000 0.946400285000000 0.307417707000000 +0.297550590000000 0.902717220000000 0.059500201000000 +0.274345511000000 0.966134568000000 0.168583904000000 +0.290856817000000 0.943177357000000 0.079333602000000 +0.285105131000000 0.939210677000000 0.208250704000000 +0.274395095000000 0.960134915000000 0.466084910000000 +0.284262212000000 0.934847280000000 0.386751308000000 +0.285898467000000 0.940747766000000 0.099167002000000 +0.284163045000000 0.959490280000000 0.228084105000000 +0.274494262000000 0.954333645000000 0.307417707000000 +0.297501006000000 0.935591082000000 0.228084105000000 +0.285948051000000 0.931376484000000 0.009916700000000 +0.297401839000000 0.922501037000000 0.109083702000000 +0.282625956000000 0.934996129000000 0.287584306000000 +0.285154715000000 0.948333992000000 0.039666801000000 +0.282625956000000 0.962713257000000 0.138833803000000 +0.284311795000000 0.990132933000000 0.158667203000000 +0.281039284000000 0.980811235000000 0.218167405000000 +0.272758839000000 0.968861561000000 0.029750101000000 +0.272659672000000 0.957308705000000 0.089250302000000 +0.282576373000000 0.959688663000000 0.267750906000000 +0.282675540000000 0.931971536000000 0.376834608000000 +0.279353445000000 0.968911194000000 0.168583904000000 +0.277717189000000 0.969010312000000 0.386751308000000 +0.294327662000000 0.910353129000000 0.575168612000000 +0.297501006000000 0.908815942000000 0.396668009000000 +0.287534723000000 0.956118651000000 0.247917505000000 +0.294178912000000 0.926517301000000 0.426418109000000 +0.299137262000000 0.908815942000000 0.664418914000000 +0.300922268000000 0.908220989000000 0.019833400000000 +0.287683473000000 0.971687870000000 0.099167002000000 +0.280940117000000 0.956614437000000 0.277667606000000 +0.294030161000000 0.920121079000000 0.456168210000000 +0.284311795000000 0.950218215000000 0.218167405000000 +0.271122584000000 0.966134568000000 0.376834608000000 +0.300872684000000 0.901576800000000 0.000000000000000 +0.281832620000000 0.945656532000000 0.307417707000000 +0.274295928000000 0.963010758000000 0.178500604000000 +0.279303862000000 0.941789019000000 0.257834206000000 +0.281832620000000 0.939706512000000 0.000000000000000 +0.307268956000000 0.923492707000000 0.247917505000000 +0.286096801000000 0.990232149000000 0.138833803000000 +0.295914334000000 0.935888583000000 0.347084507000000 +0.294178912000000 0.926517301000000 0.039666801000000 +0.284262212000000 0.928153557000000 0.198334004000000 +0.292592240000000 0.949375295000000 0.059500201000000 +0.296707670000000 0.924286043000000 0.396668009000000 +0.280940117000000 0.986810838000000 0.099167002000000 +0.284311795000000 0.925575214000000 0.039666801000000 +0.285997634000000 0.950069464000000 0.069416901000000 +0.277618022000000 0.963010758000000 0.327251107000000 +0.304145196000000 0.914022259000000 0.000000000000000 +0.302409773000000 0.934847280000000 0.089250302000000 +0.279303862000000 0.941789019000000 0.426418109000000 +0.274494262000000 0.954333645000000 0.505751711000000 +0.299186845000000 0.905394779000000 0.277667606000000 +0.282675540000000 0.941293184000000 0.009916700000000 +0.290955984000000 0.921013532000000 0.347084507000000 +0.294129328000000 0.923294423000000 0.178500604000000 +0.294278079000000 0.912435587000000 0.654502214000000 +0.297501006000000 0.925723965000000 0.208250704000000 +0.281832620000000 0.942582405000000 0.109083702000000 +0.305731868000000 0.910055529000000 0.188417304000000 +0.277568439000000 0.953837810000000 0.019833400000000 +0.282675540000000 0.980910402000000 0.198334004000000 +0.275981767000000 0.974811681000000 0.327251107000000 +0.279849280000000 0.945011947000000 0.119000403000000 +0.274395095000000 0.960134915000000 0.168583904000000 +0.284311795000000 0.993355860000000 0.238000805000000 +0.280989701000000 0.935343164000000 0.039666801000000 +0.287633890000000 0.978084093000000 0.089250302000000 +0.303996445000000 0.924236410000000 0.089250302000000 +0.299137262000000 0.908815942000000 0.089250302000000 +0.272709256000000 0.966134568000000 0.347084507000000 +0.287584306000000 0.984331663000000 0.257834206000000 +0.304194779000000 0.907526820000000 0.188417304000000 +0.279303862000000 0.983835828000000 0.000000000000000 +0.289170978000000 0.956069117000000 0.079333602000000 +0.302508940000000 0.904353476000000 0.515668411000000 +0.274295928000000 0.963010758000000 0.079333602000000 +0.272659672000000 0.963159508000000 0.376834608000000 +0.292592240000000 0.949375295000000 0.148750503000000 +0.289270145000000 0.933954826000000 0.386751308000000 +0.290856817000000 0.955870734000000 0.158667203000000 +0.305731868000000 0.910055529000000 0.337167807000000 +0.304194779000000 0.907526820000000 0.019833400000000 +0.294228495000000 0.907030935000000 0.059500201000000 +0.297550590000000 0.902717220000000 0.039666801000000 +0.295716000000000 0.922897705000000 0.238000805000000 +0.284361379000000 0.937971090000000 0.347084507000000 +0.289270145000000 0.933954826000000 0.049583501000000 +0.281832620000000 0.942582405000000 0.317334407000000 +0.275981767000000 0.974811681000000 0.039666801000000 +0.280840950000000 0.947491122000000 0.347084507000000 +0.284212628000000 0.987058805000000 0.148750503000000 +0.285848884000000 0.983984579000000 0.119000403000000 +0.290955984000000 0.949524045000000 0.069416901000000 +0.276080934000000 0.977538674000000 0.009916700000000 +0.294178912000000 0.936285251000000 0.327251107000000 +0.294278079000000 0.912435587000000 0.089250302000000 +0.286691803000000 0.939111461000000 0.238000805000000 +0.295815167000000 0.945706116000000 0.000000000000000 +0.280890534000000 0.977786641000000 0.267750906000000 +0.289220562000000 0.943474858000000 0.327251107000000 +0.284311795000000 0.968762444000000 0.297501006000000 +0.295815167000000 0.916947636000000 0.327251107000000 +0.275981767000000 0.957060738000000 0.178500604000000 +0.294129328000000 0.916798885000000 0.565251912000000 +0.286691803000000 0.939111461000000 0.059500201000000 +0.295021831000000 0.924682761000000 0.257834206000000 +0.284262212000000 0.928153557000000 0.515668411000000 +0.277618022000000 0.963010758000000 0.267750906000000 +0.282675540000000 0.931971536000000 0.000000000000000 +0.277618022000000 0.963010758000000 0.406584709000000 +0.292592240000000 0.933211123000000 0.079333602000000 +0.285105131000000 0.945408615000000 0.228084105000000 +0.285997634000000 0.971787087000000 0.158667203000000 +0.305880618000000 0.917046852000000 0.128917103000000 +0.290955984000000 0.921013532000000 0.029750101000000 +0.287633890000000 0.949871180000000 0.317334407000000 +0.295021831000000 0.927806472000000 0.158667203000000 +0.307318540000000 0.916402316000000 0.357001208000000 +0.272858006000000 0.960085331000000 0.396668009000000 +0.300823101000000 0.904799728000000 0.545418512000000 +0.289170978000000 0.940202347000000 0.257834206000000 +0.285948051000000 0.928153557000000 0.446251510000000 +0.285105131000000 0.942185687000000 0.039666801000000 +0.295963918000000 0.932616072000000 0.109083702000000 +0.299186845000000 0.905394779000000 0.466084910000000 +0.285848884000000 0.983984579000000 0.019833400000000 +0.282625956000000 0.938070257000000 0.198334004000000 +0.294178912000000 0.936285251000000 0.188417304000000 +0.294228495000000 0.907030935000000 0.069416901000000 +0.304095612000000 0.910948082000000 0.119000403000000 +0.295815167000000 0.945706116000000 0.069416901000000 +0.295765584000000 0.952151971000000 0.069416901000000 +0.295716000000000 0.922897705000000 0.406584709000000 +0.291005568000000 0.914567677000000 0.466084910000000 +0.279353445000000 0.965836968000000 0.406584709000000 +0.279303862000000 0.974811681000000 0.009916700000000 +0.294129328000000 0.916798885000000 0.485918310000000 +0.280890534000000 0.983885362000000 0.396668009000000 +0.289121395000000 0.988000793000000 0.089250302000000 +0.274444678000000 0.971886155000000 0.168583904000000 +0.294178912000000 0.926517301000000 0.238000805000000 +0.292542656000000 0.913476840000000 0.228084105000000 +0.286096801000000 0.990232149000000 0.158667203000000 +0.292542656000000 0.913476840000000 0.406584709000000 +0.280940117000000 0.941541102000000 0.148750503000000 +0.302508940000000 0.924980212000000 0.287584306000000 +0.282625956000000 0.956515319000000 0.000000000000000 +0.282675540000000 0.931971536000000 0.416501409000000 +0.300823101000000 0.918236856000000 0.039666801000000 +0.280989701000000 0.935343164000000 0.257834206000000 +0.297501006000000 0.906287233000000 0.416501409000000 +0.284311795000000 0.950218215000000 0.119000403000000 +0.282675540000000 0.925971882000000 0.188417304000000 +0.277618022000000 0.957060738000000 0.238000805000000 +0.280940117000000 0.941541102000000 0.376834608000000 +0.282625956000000 0.928798192000000 0.148750503000000 +0.299137262000000 0.918633524000000 0.436334809000000 +0.271866336000000 0.964349562000000 0.327251107000000 +0.286741387000000 0.945309398000000 0.297501006000000 +0.287584306000000 0.924831462000000 0.138833803000000 +0.279303862000000 0.941789019000000 0.456168210000000 +0.290856817000000 0.955870734000000 0.128917103000000 +0.295914334000000 0.925922349000000 0.277667606000000 +0.281832620000000 0.945656532000000 0.099167002000000 +0.285898467000000 0.940747766000000 0.178500604000000 +0.279303862000000 0.941789019000000 0.317334407000000 +0.277717189000000 0.969010312000000 0.168583904000000 +0.277568439000000 0.953837810000000 0.476001610000000 +0.276080934000000 0.951061134000000 0.287584306000000 +0.277618022000000 0.963010758000000 0.366917908000000 +0.282675540000000 0.993058359000000 0.039666801000000 +0.272709256000000 0.966134568000000 0.535501812000000 +0.297501006000000 0.919278060000000 0.247917505000000 +0.297550590000000 0.916104716000000 0.505751711000000 +0.282675540000000 0.968861561000000 0.218167405000000 +0.299186845000000 0.905394779000000 0.396668009000000 +0.292542656000000 0.913476840000000 0.555335212000000 +0.299137262000000 0.938863642000000 0.039666801000000 +0.299137262000000 0.918633524000000 0.247917505000000 +0.276080934000000 0.951061134000000 0.535501812000000 +0.290856817000000 0.965836968000000 0.019833400000000 +0.296658087000000 0.921112699000000 0.456168210000000 +0.280940117000000 0.941541102000000 0.327251107000000 +0.280989701000000 0.935343164000000 0.029750101000000 +0.307268956000000 0.923492707000000 0.267750906000000 +0.300773517000000 0.928351891000000 0.138833803000000 +0.282675540000000 0.925971882000000 0.168583904000000 +0.302508940000000 0.907576354000000 0.158667203000000 +0.287584306000000 0.924831462000000 0.228084105000000 +0.282625956000000 0.956515319000000 0.128917103000000 +0.277766773000000 0.950763633000000 0.704085715000000 +0.302360190000000 0.921311033000000 0.119000403000000 +0.284311795000000 0.947044870000000 0.059500201000000 +0.297501006000000 0.908815942000000 0.148750503000000 +0.307516874000000 0.919922695000000 0.069416901000000 +0.295716000000000 0.922897705000000 0.247917505000000 +0.286691803000000 0.939111461000000 0.000000000000000 +0.287683473000000 0.927806472000000 0.178500604000000 +0.277618022000000 0.963010758000000 0.009916700000000 +0.295864751000000 0.929293977000000 0.198334004000000 +0.282576373000000 0.944317778000000 0.138833803000000 +0.289170978000000 0.940202347000000 0.029750101000000 +0.282576373000000 0.947193621000000 0.337167807000000 +0.277618022000000 0.959936630000000 0.604918713000000 +0.300823101000000 0.934996129000000 0.168583904000000 +0.282526789000000 0.977935392000000 0.247917505000000 +0.295765584000000 0.952151971000000 0.148750503000000 +0.289270145000000 0.930831066000000 0.119000403000000 +0.292542656000000 0.907576354000000 0.128917103000000 +0.292542656000000 0.907576354000000 0.386751308000000 +0.271866336000000 0.964349562000000 0.733835816000000 +0.281039284000000 0.959936630000000 0.128917103000000 +0.300872684000000 0.931574818000000 0.119000403000000 +0.281039284000000 0.959936630000000 0.019833400000000 +0.274444678000000 0.971886155000000 0.029750101000000 +0.289220562000000 0.924385161000000 0.119000403000000 +0.282576373000000 0.947193621000000 0.208250704000000 +0.281832620000000 0.942582405000000 0.138833803000000 +0.282625956000000 0.929046060000000 0.476001610000000 +0.279849280000000 0.945011947000000 0.287584306000000 +0.287584306000000 0.934103577000000 0.327251107000000 +0.298294342000000 0.920468114000000 0.178500604000000 +0.289220562000000 0.924385161000000 0.347084507000000 +0.272659672000000 0.963159508000000 0.604918713000000 +0.284212628000000 0.987058805000000 0.218167405000000 +0.289270145000000 0.920666398000000 0.575168612000000 +0.284311795000000 0.978034559000000 0.128917103000000 +0.305880618000000 0.917046852000000 0.347084507000000 +0.294327662000000 0.910353129000000 0.327251107000000 +0.277618022000000 0.957060738000000 0.099167002000000 +0.294228495000000 0.907030935000000 0.238000805000000 +0.282625956000000 0.929046060000000 0.168583904000000 +0.305731868000000 0.923641458000000 0.168583904000000 +0.285997634000000 0.925228180000000 0.416501409000000 +0.292542656000000 0.920368947000000 0.089250302000000 +0.302409773000000 0.911096832000000 0.337167807000000 +0.284212628000000 0.931872319000000 0.317334407000000 +0.282675540000000 0.993058359000000 0.238000805000000 +0.285997634000000 0.981108736000000 0.148750503000000 +0.289121395000000 0.988000793000000 0.099167002000000 +0.271866336000000 0.964349562000000 0.416501409000000 +0.297401839000000 0.922501037000000 0.000000000000000 +0.298244759000000 0.923542241000000 0.277667606000000 +0.305731868000000 0.910055529000000 0.119000403000000 +0.304095612000000 0.917294770000000 0.366917908000000 +0.281039284000000 0.965787434000000 0.148750503000000 +0.295815167000000 0.916947636000000 0.277667606000000 +0.294129328000000 0.916798885000000 0.307417707000000 +0.285898467000000 0.956267402000000 0.029750101000000 +0.280791367000000 0.962762840000000 0.089250302000000 +0.279204695000000 0.950813167000000 0.585085313000000 +0.282625956000000 0.934996129000000 0.406584709000000 +0.281039284000000 0.980811235000000 0.148750503000000 +0.292542656000000 0.923641458000000 0.009916700000000 +0.279303862000000 0.977786641000000 0.009916700000000 +0.292542656000000 0.907576354000000 0.049583501000000 +0.279204695000000 0.953639476000000 0.208250704000000 +0.295765584000000 0.942532772000000 0.208250704000000 +0.283419292000000 0.945557365000000 0.000000000000000 +0.281039284000000 0.992909609000000 0.119000403000000 +0.285948051000000 0.928153557000000 0.287584306000000 +0.295914334000000 0.948929043000000 0.019833400000000 +0.279353445000000 0.980712018000000 0.079333602000000 +0.295815167000000 0.916947636000000 0.009916700000000 +0.302508940000000 0.904353476000000 0.456168210000000 +0.287633890000000 0.930831066000000 0.376834608000000 +0.289220562000000 0.952647806000000 0.228084105000000 +0.277618022000000 0.971985371000000 0.009916700000000 +0.292493073000000 0.962267055000000 0.128917103000000 +0.284361379000000 0.937971090000000 0.079333602000000 +0.284163045000000 0.959490280000000 0.238000805000000 +0.305880618000000 0.913427257000000 0.396668009000000 +0.292592240000000 0.917294770000000 0.327251107000000 +0.295864751000000 0.906535150000000 0.733835816000000 +0.283419292000000 0.939706512000000 0.178500604000000 +0.298343926000000 0.927112303000000 0.059500201000000 +0.297501006000000 0.908815942000000 0.049583501000000 +0.300872684000000 0.901576800000000 0.654502214000000 +0.274345511000000 0.957110321000000 0.148750503000000 +0.292542656000000 0.913476840000000 0.287584306000000 +0.292493073000000 0.904452643000000 0.376834608000000 +0.290955984000000 0.921013532000000 0.089250302000000 +0.274345511000000 0.966134568000000 0.109083702000000 +0.272659672000000 0.963159508000000 0.049583501000000 +0.279303862000000 0.974811681000000 0.357001208000000 +0.280940117000000 0.941541102000000 0.119000403000000 +0.297550590000000 0.916104716000000 0.138833803000000 +0.277568439000000 0.953837810000000 0.456168210000000 +0.272709256000000 0.966134568000000 0.287584306000000 +0.271866336000000 0.964349562000000 0.287584306000000 +0.285105131000000 0.939210677000000 0.218167405000000 +0.295864751000000 0.906535150000000 0.287584306000000 +0.280890534000000 0.983885362000000 0.238000805000000 +0.287534723000000 0.956118651000000 0.257834206000000 +0.284212628000000 0.956366569000000 0.029750101000000 +0.282625956000000 0.928798192000000 0.119000403000000 +0.290856817000000 0.924087709000000 0.069416901000000 +0.295864751000000 0.929293977000000 0.089250302000000 +0.285898467000000 0.940747766000000 0.218167405000000 +0.298294342000000 0.920468114000000 0.476001610000000 +0.280840950000000 0.947491122000000 0.168583904000000 +0.289270145000000 0.933954826000000 0.059500201000000 +0.299087678000000 0.921806868000000 0.287584306000000 +0.300872684000000 0.901576800000000 0.168583904000000 +0.292493073000000 0.939855263000000 0.119000403000000 +0.292641823000000 0.968613743000000 0.049583501000000 +0.285154715000000 0.948333992000000 0.297501006000000 +0.279254278000000 0.959837414000000 0.029750101000000 +0.296757254000000 0.927806472000000 0.347084507000000 +0.297550590000000 0.902717220000000 0.366917908000000 +0.305731868000000 0.923641458000000 0.109083702000000 +0.299137262000000 0.915311479000000 0.128917103000000 +0.300773517000000 0.921608534000000 0.307417707000000 +0.274444678000000 0.971886155000000 0.089250302000000 +0.295963918000000 0.913030589000000 0.148750503000000 +0.298294342000000 0.920468114000000 0.059500201000000 +0.274295928000000 0.963010758000000 0.188417304000000 +0.295914334000000 0.909807711000000 0.426418109000000 +0.294178912000000 0.942929440000000 0.029750101000000 +0.284311795000000 0.978034559000000 0.168583904000000 +0.274444678000000 0.968960778000000 0.218167405000000 +0.305731868000000 0.910055529000000 0.019833400000000 +0.287485139000000 0.952895674000000 0.277667606000000 +0.295914334000000 0.925922349000000 0.119000403000000 +0.300823101000000 0.904799728000000 0.714002415000000 +0.289220562000000 0.952647806000000 0.218167405000000 +0.282675540000000 0.941293184000000 0.257834206000000 +0.284212628000000 0.983488793000000 0.000000000000000 +0.279254278000000 0.962961224000000 0.128917103000000 +0.300872684000000 0.931574818000000 0.009916700000000 +0.279353445000000 0.947491122000000 0.525585111000000 +0.292641823000000 0.968613743000000 0.009916700000000 +0.279849280000000 0.945011947000000 0.178500604000000 +0.296707670000000 0.924286043000000 0.168583904000000 +0.296658087000000 0.921112699000000 0.000000000000000 +0.271122584000000 0.966134568000000 0.297501006000000 +0.280840950000000 0.947491122000000 0.466084910000000 +0.271866336000000 0.964349562000000 0.466084910000000 +0.282675540000000 0.925971882000000 0.604918713000000 +0.290807234000000 0.939954479000000 0.079333602000000 +0.272659672000000 0.957308705000000 0.416501409000000 +0.279353445000000 0.965836968000000 0.247917505000000 +0.284311795000000 0.993355860000000 0.257834206000000 +0.294278079000000 0.912435587000000 0.218167405000000 +0.277618022000000 0.971985371000000 0.099167002000000 +0.290856817000000 0.924087709000000 0.247917505000000 +0.276031350000000 0.959986164000000 0.347084507000000 +0.297550590000000 0.902717220000000 0.009916700000000 +0.285997634000000 0.925228180000000 0.099167002000000 +0.295765584000000 0.939210677000000 0.247917505000000 +0.280940117000000 0.932268987000000 0.029750101000000 +0.271866336000000 0.964349562000000 0.079333602000000 +0.284262212000000 0.965737850000000 0.307417707000000 +0.282576373000000 0.959688663000000 0.188417304000000 +0.295914334000000 0.925922349000000 0.158667203000000 +0.292592240000000 0.917294770000000 0.257834206000000 +0.296757254000000 0.927806472000000 0.089250302000000 +0.290856817000000 0.930335231000000 0.089250302000000 +0.289220562000000 0.959143245000000 0.119000403000000 +0.274444678000000 0.971886155000000 0.208250704000000 +0.295864751000000 0.929293977000000 0.396668009000000 +0.287534723000000 0.956118651000000 0.277667606000000 +0.294030161000000 0.920121079000000 0.148750503000000 +0.287633890000000 0.930831066000000 0.168583904000000 +0.294129328000000 0.955821150000000 0.029750101000000 +0.282725123000000 0.965836968000000 0.138833803000000 +0.281832620000000 0.945656532000000 0.247917505000000 +0.280840950000000 0.947491122000000 0.119000403000000 +0.282675540000000 0.931971536000000 0.386751308000000 +0.287584306000000 0.924831462000000 0.376834608000000 +0.287485139000000 0.952895674000000 0.148750503000000 +0.280791367000000 0.962762840000000 0.297501006000000 +0.287485139000000 1.000000000000000 0.128917103000000 +0.302508940000000 0.907576354000000 0.525585111000000 +0.297501006000000 0.932516954000000 0.267750906000000 +0.302508940000000 0.904353476000000 0.376834608000000 +0.284262212000000 0.943970693000000 0.198334004000000 +0.287633890000000 0.978084093000000 0.138833803000000 +0.303996445000000 0.924236410000000 0.317334407000000 +0.275981767000000 0.957060738000000 0.109083702000000 +0.280940117000000 0.932268987000000 0.089250302000000 +0.281039284000000 0.938516508000000 0.337167807000000 +0.302360190000000 0.914418927000000 0.505751711000000 +0.299087678000000 0.921806868000000 0.416501409000000 +0.302360190000000 0.914418927000000 0.327251107000000 +0.279303862000000 0.977786641000000 0.317334407000000 +0.289220562000000 0.959143245000000 0.138833803000000 +0.300723934000000 0.915063512000000 0.505751711000000 +0.287584306000000 0.984331663000000 0.158667203000000 +0.281039284000000 0.980811235000000 0.000000000000000 +0.300773517000000 0.921608534000000 0.376834608000000 +0.297550590000000 0.902717220000000 0.654502214000000 +0.289220562000000 0.946499452000000 0.327251107000000 +0.290955984000000 0.946400285000000 0.029750101000000 +0.284212628000000 0.962564506000000 0.168583904000000 +0.285898467000000 0.946995337000000 0.287584306000000 +0.274494262000000 0.954333645000000 0.099167002000000 +0.289319729000000 0.937029003000000 0.218167405000000 +0.287485139000000 1.000000000000000 0.009916700000000 +0.277618022000000 0.959936630000000 0.138833803000000 +0.302360190000000 0.921311033000000 0.158667203000000 +0.304145196000000 0.914022259000000 0.188417304000000 +0.295815167000000 0.916947636000000 0.128917103000000 +0.296707670000000 0.924286043000000 0.218167405000000 +0.279353445000000 0.947491122000000 0.476001610000000 +0.287584306000000 0.990727935000000 0.109083702000000 +0.280940117000000 0.932268987000000 0.406584709000000 +0.292542656000000 0.923641458000000 0.138833803000000 +0.294327662000000 0.910353129000000 0.585085313000000 +0.282675540000000 0.968861561000000 0.019833400000000 +0.282526789000000 0.977935392000000 0.188417304000000 +0.277618022000000 0.959936630000000 0.466084910000000 +0.279303862000000 0.941789019000000 0.327251107000000 +0.292493073000000 0.926963553000000 0.446251510000000 +0.272659672000000 0.957308705000000 0.366917908000000 +0.282576373000000 0.974910798000000 0.089250302000000 +0.282675540000000 0.941293184000000 0.099167002000000 +0.279353445000000 0.965836968000000 0.287584306000000 +0.297451423000000 0.942235271000000 0.128917103000000 +0.295021831000000 0.927806472000000 0.208250704000000 +0.294030161000000 0.920121079000000 0.109083702000000 +0.282625956000000 0.928798192000000 0.446251510000000 +0.302508940000000 0.904353476000000 0.485918310000000 +0.274395095000000 0.974662930000000 0.099167002000000 +0.302508940000000 0.931475651000000 0.228084105000000 +0.300823101000000 0.904799728000000 0.614835413000000 +0.304095612000000 0.917294770000000 0.178500604000000 +0.280890534000000 0.983885362000000 0.297501006000000 +0.294228495000000 0.907030935000000 0.079333602000000 +0.282675540000000 0.968861561000000 0.000000000000000 +0.292592240000000 0.917294770000000 0.228084105000000 +0.285997634000000 0.925228180000000 0.714002415000000 +0.284311795000000 0.993355860000000 0.029750101000000 +0.272758839000000 0.968861561000000 0.267750906000000 +0.284262212000000 0.928153557000000 0.307417707000000 +0.295864751000000 0.906535150000000 0.396668009000000 +0.300773517000000 0.928351891000000 0.019833400000000 +0.295021831000000 0.927806472000000 0.406584709000000 +0.282625956000000 0.928798192000000 0.416501409000000 +0.299186845000000 0.905394779000000 0.049583501000000 +0.282625956000000 0.934996129000000 0.317334407000000 +0.300823101000000 0.904799728000000 0.396668009000000 +0.297550590000000 0.916104716000000 0.049583501000000 +0.280890534000000 0.953639476000000 0.119000403000000 +0.282576373000000 0.987058805000000 0.128917103000000 +0.272709256000000 0.966134568000000 0.466084910000000 +0.304095612000000 0.922104369000000 0.208250704000000 +0.290856817000000 0.930335231000000 0.148750503000000 +0.274295928000000 0.963010758000000 0.495835011000000 +0.277717189000000 0.980612901000000 0.128917103000000 +0.286741387000000 0.945309398000000 0.277667606000000 +0.290906401000000 0.908022655000000 0.277667606000000 +0.283419292000000 0.939706512000000 0.228084105000000 +0.279353445000000 0.968911194000000 0.376834608000000 +0.297501006000000 0.919278060000000 0.218167405000000 +0.284262212000000 0.928153557000000 0.436334809000000 +0.300922268000000 0.908220989000000 0.148750503000000 +0.287633890000000 0.930831066000000 0.198334004000000 +0.294278079000000 0.912435587000000 0.376834608000000 +0.289270145000000 0.930831066000000 0.456168210000000 +0.299186845000000 0.935491915000000 0.178500604000000 +0.290856817000000 0.965836968000000 0.009916700000000 +0.295765584000000 0.955523699000000 0.049583501000000 +0.282675540000000 0.925971882000000 0.267750906000000 +0.297401839000000 0.922501037000000 0.049583501000000 +0.272858006000000 0.960085331000000 0.674335615000000 +0.304095612000000 0.910948082000000 0.277667606000000 +0.298343926000000 0.927112303000000 0.208250704000000 +0.274444678000000 0.968960778000000 0.019833400000000 +0.280940117000000 0.932268987000000 0.317334407000000 +0.289220562000000 0.943474858000000 0.158667203000000 +0.294129328000000 0.916798885000000 0.366917908000000 +0.274345511000000 0.957110321000000 0.119000403000000 +0.282576373000000 0.974910798000000 0.178500604000000 +0.279849280000000 0.945011947000000 0.337167807000000 +0.295864751000000 0.929293977000000 0.168583904000000 +0.287584306000000 0.924831462000000 0.485918310000000 +0.289270145000000 0.968663277000000 0.000000000000000 +0.296658087000000 0.930880699000000 0.247917505000000 +0.287534723000000 0.959291995000000 0.238000805000000 +0.290856817000000 0.930335231000000 0.109083702000000 +0.299137262000000 0.918633524000000 0.337167807000000 +0.282675540000000 0.925971882000000 0.525585111000000 +0.287534723000000 0.962415805000000 0.218167405000000 +0.302360190000000 0.921311033000000 0.218167405000000 +0.304095612000000 0.922104369000000 0.198334004000000 +0.274295928000000 0.963010758000000 0.366917908000000 +0.279799697000000 0.944565695000000 0.019833400000000 +0.284212628000000 0.931872319000000 0.386751308000000 +0.277568439000000 0.953837810000000 0.168583904000000 +0.292542656000000 0.923641458000000 0.287584306000000 +0.277618022000000 0.971985371000000 0.069416901000000 +0.285898467000000 0.946995337000000 0.317334407000000 +0.292542656000000 0.913476840000000 0.089250302000000 +0.285948051000000 0.928153557000000 0.099167002000000 +0.295716000000000 0.922897705000000 0.446251510000000 +0.289170978000000 0.975009965000000 0.019833400000000 +0.307417707000000 0.913328090000000 0.158667203000000 +0.285948051000000 0.931376484000000 0.396668009000000 +0.275981767000000 0.962911591000000 0.218167405000000 +0.287584306000000 0.924831462000000 0.416501409000000 +0.287633890000000 0.937128170000000 0.366917908000000 +0.298244759000000 0.923542241000000 0.158667203000000 +0.282675540000000 0.968861561000000 0.287584306000000 +0.300922268000000 0.908220989000000 0.416501409000000 +0.300872684000000 0.931574818000000 0.069416901000000 +0.281832620000000 0.942582405000000 0.059500201000000 +0.298343926000000 0.927112303000000 0.267750906000000 +0.280940117000000 0.956614437000000 0.257834206000000 +0.283468876000000 0.948929043000000 0.337167807000000 +0.292443489000000 0.972084538000000 0.049583501000000 +0.295765584000000 0.952151971000000 0.089250302000000 +0.307516874000000 0.919922695000000 0.029750101000000 +0.297550590000000 0.916104716000000 0.029750101000000 +0.281039284000000 0.938516508000000 0.099167002000000 +0.292493073000000 0.926963553000000 0.109083702000000 +0.304095612000000 0.910948082000000 0.148750503000000 +0.281039284000000 0.950565349000000 0.228084105000000 +0.300723934000000 0.915063512000000 0.426418109000000 +0.299137262000000 0.908815942000000 0.337167807000000 +0.282675540000000 0.925971882000000 0.485918310000000 +0.281832620000000 0.945656532000000 0.039666801000000 +0.281039284000000 0.980811235000000 0.049583501000000 +0.282625956000000 0.929046060000000 0.446251510000000 +0.277667606000000 0.965985817000000 0.000000000000000 +0.285948051000000 0.937425671000000 0.277667606000000 +0.304194779000000 0.907526820000000 0.059500201000000 +0.283419292000000 0.942780689000000 0.218167405000000 +0.297501006000000 0.932516954000000 0.059500201000000 +0.277717189000000 0.969010312000000 0.436334809000000 +0.307516874000000 0.919922695000000 0.079333602000000 +0.276080934000000 0.951061134000000 0.337167807000000 +0.282576373000000 0.987058805000000 0.099167002000000 +0.271866336000000 0.964349562000000 0.396668009000000 +0.305731868000000 0.910055529000000 0.495835011000000 +0.274295928000000 0.963010758000000 0.357001208000000 +0.300723934000000 0.915063512000000 0.515668411000000 +0.292592240000000 0.917294770000000 0.525585111000000 +0.295864751000000 0.906535150000000 0.069416901000000 +0.280840950000000 0.971787087000000 0.307417707000000 +0.292592240000000 0.917294770000000 0.396668009000000 +0.305880618000000 0.913427257000000 0.000000000000000 +0.295021831000000 0.927806472000000 0.446251510000000 +0.279204695000000 0.953639476000000 0.019833400000000 +0.297501006000000 0.908815942000000 0.545418512000000 +0.274345511000000 0.957110321000000 0.218167405000000 +0.292443489000000 0.972084538000000 0.039666801000000 +0.294129328000000 0.971836621000000 0.029750101000000 +0.284163045000000 0.959490280000000 0.009916700000000 +0.280940117000000 0.956614437000000 0.138833803000000 +0.284212628000000 0.962564506000000 0.039666801000000 +0.295765584000000 0.942532772000000 0.267750906000000 +0.276031350000000 0.959986164000000 0.109083702000000 +0.276080934000000 0.977538674000000 0.178500604000000 +0.290856817000000 0.975109132000000 0.069416901000000 +0.281882204000000 0.948978627000000 0.347084507000000 +0.305880618000000 0.917046852000000 0.247917505000000 +0.277618022000000 0.959936630000000 0.198334004000000 +0.282675540000000 0.931971536000000 0.277667606000000 +0.284212628000000 0.931872319000000 0.257834206000000 +0.279204695000000 0.950813167000000 0.575168612000000 +0.300773517000000 0.928351891000000 0.109083702000000 +0.295716000000000 0.922897705000000 0.079333602000000 +0.279204695000000 0.950813167000000 0.753669216000000 +0.281039284000000 0.950565349000000 0.366917908000000 +0.304194779000000 0.907526820000000 0.128917103000000 +0.292592240000000 0.929988146000000 0.019833400000000 +0.275932183000000 0.954036144000000 0.476001610000000 +0.284311795000000 0.968762444000000 0.287584306000000 +0.290906401000000 0.978232843000000 0.059500201000000 +0.283419292000000 0.939706512000000 0.198334004000000 +0.284262212000000 0.934847280000000 0.446251510000000 +0.282675540000000 0.941293184000000 0.089250302000000 +0.295864751000000 0.929293977000000 0.000000000000000 +0.276080934000000 0.951061134000000 0.089250302000000 +0.274494262000000 0.954333645000000 0.436334809000000 +0.294228495000000 0.907030935000000 0.218167405000000 +0.289220562000000 0.924385161000000 0.148750503000000 +0.305682284000000 0.920071446000000 0.089250302000000 +0.300872684000000 0.901576800000000 0.466084910000000 +0.295021831000000 0.924682761000000 0.029750101000000 +0.298343926000000 0.927112303000000 0.039666801000000 +0.290906401000000 0.933508575000000 0.000000000000000 +0.272758839000000 0.968861561000000 0.009916700000000 +0.294129328000000 0.916798885000000 0.019833400000000 +0.300872684000000 0.901576800000000 0.565251912000000 +0.302508940000000 0.907576354000000 0.287584306000000 +0.281039284000000 0.941441935000000 0.029750101000000 +0.289220562000000 0.946499452000000 0.029750101000000 +0.281039284000000 0.965787434000000 0.168583904000000 +0.282625956000000 0.934996129000000 0.069416901000000 +0.292542656000000 0.923641458000000 0.128917103000000 +0.299137262000000 0.908815942000000 0.396668009000000 +0.300773517000000 0.921608534000000 0.386751308000000 +0.282576373000000 0.987058805000000 0.257834206000000 +0.285948051000000 0.931376484000000 0.019833400000000 +0.285948051000000 0.937425671000000 0.347084507000000 +0.277667606000000 0.965985817000000 0.347084507000000 +0.295765584000000 0.955523699000000 0.069416901000000 +0.285898467000000 0.956267402000000 0.188417304000000 +0.282625956000000 0.928798192000000 0.297501006000000 +0.297600173000000 0.912633921000000 0.436334809000000 +0.276080934000000 0.971687870000000 0.287584306000000 +0.284262212000000 0.934847280000000 0.476001610000000 +0.281039284000000 0.959936630000000 0.347084507000000 +0.292542656000000 0.945904450000000 0.099167002000000 +0.290906401000000 0.911195999000000 0.089250302000000 +0.272858006000000 0.960085331000000 0.337167807000000 +0.292542656000000 0.920368947000000 0.247917505000000 +0.275932183000000 0.954036144000000 0.009916700000000 +0.274395095000000 0.960134915000000 0.565251912000000 +0.280890534000000 0.983885362000000 0.366917908000000 +0.289170978000000 0.956069117000000 0.009916700000000 +0.295864751000000 0.906535150000000 0.466084910000000 +0.284311795000000 0.978034559000000 0.089250302000000 +0.279353445000000 0.947491122000000 0.634668814000000 +0.279303862000000 0.956812820000000 0.466084910000000 +0.286691803000000 0.942185687000000 0.307417707000000 +0.282625956000000 0.938070257000000 0.148750503000000 +0.284262212000000 0.934847280000000 0.198334004000000 +0.280940117000000 0.956614437000000 0.089250302000000 +0.284311795000000 0.996231704000000 0.148750503000000 +0.280989701000000 0.935343164000000 0.436334809000000 +0.297501006000000 0.932516954000000 0.039666801000000 +0.284262212000000 0.965737850000000 0.109083702000000 +0.287633890000000 0.930831066000000 0.238000805000000 +0.290906401000000 0.952697390000000 0.228084105000000 +0.282725123000000 0.965836968000000 0.297501006000000 +0.282576373000000 0.974910798000000 0.099167002000000 +0.282625956000000 0.938070257000000 0.109083702000000 +0.296757254000000 0.927806472000000 0.317334407000000 +0.297600173000000 0.912633921000000 0.277667606000000 +0.302409773000000 0.911096832000000 0.049583501000000 +0.285898467000000 0.940747766000000 0.317334407000000 +0.289170978000000 0.962316589000000 0.049583501000000 +0.295914334000000 0.909807711000000 0.505751711000000 +0.290906401000000 0.927211470000000 0.247917505000000 +0.281039284000000 0.965787434000000 0.267750906000000 +0.280940117000000 0.941541102000000 0.238000805000000 +0.300872684000000 0.901576800000000 0.595002013000000 +0.304194779000000 0.907526820000000 0.386751308000000 +0.295021831000000 0.927806472000000 0.456168210000000 +0.298244759000000 0.923542241000000 0.386751308000000 +0.297501006000000 0.919278060000000 0.317334407000000 +0.285997634000000 0.971787087000000 0.019833400000000 +0.274345511000000 0.966134568000000 0.238000805000000 +0.283419292000000 0.945557365000000 0.208250704000000 +0.294129328000000 0.955821150000000 0.099167002000000 +0.294030161000000 0.920121079000000 0.515668411000000 +0.282675540000000 0.980910402000000 0.138833803000000 +0.277766773000000 0.950763633000000 0.624752113000000 +0.296757254000000 0.927806472000000 0.069416901000000 +0.284262212000000 0.971737454000000 0.059500201000000 +0.284212628000000 0.956366569000000 0.257834206000000 +0.280989701000000 0.935343164000000 0.178500604000000 +0.285997634000000 0.925228180000000 0.218167405000000 +0.295765584000000 0.920170613000000 0.327251107000000 +0.279204695000000 0.950813167000000 0.396668009000000 +0.305682284000000 0.920071446000000 0.267750906000000 +0.295914334000000 0.935888583000000 0.218167405000000 +0.282625956000000 0.956515319000000 0.029750101000000 +0.294129328000000 0.916798885000000 0.585085313000000 +0.282576373000000 0.947193621000000 0.109083702000000 +0.280940117000000 0.932268987000000 0.119000403000000 +0.292493073000000 0.939855263000000 0.307417707000000 +0.276031350000000 0.959986164000000 0.446251510000000 +0.285997634000000 0.981108736000000 0.099167002000000 +0.277717189000000 0.969010312000000 0.228084105000000 +0.300823101000000 0.918236856000000 0.079333602000000 +0.284262212000000 0.965737850000000 0.119000403000000 +0.289270145000000 0.949722330000000 0.228084105000000 +0.289270145000000 0.920666398000000 0.823086118000000 +0.279204695000000 0.953639476000000 0.535501812000000 +0.282526789000000 0.977935392000000 0.198334004000000 +0.292592240000000 0.917294770000000 0.436334809000000 +0.286691803000000 0.939111461000000 0.247917505000000 +0.274345511000000 0.957110321000000 0.039666801000000 +0.274395095000000 0.960134915000000 0.436334809000000 +0.282675540000000 0.925971882000000 0.386751308000000 +0.275932183000000 0.954036144000000 0.128917103000000 +0.294228495000000 0.929591478000000 0.396668009000000 +0.286096801000000 0.990232149000000 0.049583501000000 +0.282675540000000 0.925971882000000 0.624752113000000 +0.305880618000000 0.913427257000000 0.307417707000000 +0.284163045000000 0.959490280000000 0.069416901000000 +0.282625956000000 0.928798192000000 0.337167807000000 +0.284262212000000 0.943970693000000 0.138833803000000 +0.283419292000000 0.939706512000000 0.188417304000000 +0.285749717000000 0.953193274000000 0.317334407000000 +0.282625956000000 0.934996129000000 0.436334809000000 +0.302508940000000 0.904353476000000 0.357001208000000 +0.292493073000000 0.926963553000000 0.119000403000000 +0.282625956000000 0.934996129000000 0.396668009000000 +0.295914334000000 0.935888583000000 0.277667606000000 +0.300823101000000 0.934996129000000 0.247917505000000 +0.292344322000000 0.972034905000000 0.000000000000000 +0.297501006000000 0.906287233000000 0.208250704000000 +0.285997634000000 0.971787087000000 0.049583501000000 +0.300823101000000 0.904799728000000 0.099167002000000 +0.295815167000000 0.916947636000000 0.456168210000000 +0.292592240000000 0.929988146000000 0.128917103000000 +0.282675540000000 0.925971882000000 0.366917908000000 +0.274345511000000 0.966134568000000 0.059500201000000 +0.302409773000000 0.911096832000000 0.188417304000000 +0.282625956000000 0.929046060000000 0.297501006000000 +0.300823101000000 0.918236856000000 0.178500604000000 +0.287534723000000 0.962415805000000 0.198334004000000 +0.289220562000000 0.952647806000000 0.119000403000000 +0.274345511000000 0.966134568000000 0.525585111000000 +0.305880618000000 0.913427257000000 0.109083702000000 +0.277618022000000 0.963010758000000 0.069416901000000 +0.299186845000000 0.905394779000000 0.128917103000000 +0.280890534000000 0.953639476000000 0.376834608000000 +0.297550590000000 0.916104716000000 0.406584709000000 +0.290955984000000 0.921013532000000 0.386751308000000 +0.280890534000000 0.977786641000000 0.049583501000000 +0.295864751000000 0.906535150000000 0.505751711000000 +0.277618022000000 0.959936630000000 0.327251107000000 +0.304095612000000 0.922104369000000 0.228084105000000 +0.285997634000000 0.925228180000000 0.545418512000000 +0.277618022000000 0.971985371000000 0.317334407000000 +0.275981767000000 0.957060738000000 0.039666801000000 +0.272709256000000 0.966134568000000 0.148750503000000 +0.295815167000000 0.916947636000000 0.228084105000000 +0.277766773000000 0.950763633000000 0.476001610000000 +0.299186845000000 0.952052754000000 0.029750101000000 +0.297501006000000 0.925723965000000 0.228084105000000 +0.291005568000000 0.914567677000000 0.604918713000000 +0.292493073000000 0.942929440000000 0.138833803000000 +0.277568439000000 0.953837810000000 0.386751308000000 +0.299186845000000 0.935491915000000 0.119000403000000 +0.281039284000000 0.992909609000000 0.168583904000000 +0.282625956000000 0.929046060000000 0.585085313000000 +0.275932183000000 0.954036144000000 0.614835413000000 +0.277618022000000 0.957060738000000 0.565251912000000 +0.304095612000000 0.922104369000000 0.138833803000000 +0.274494262000000 0.954333645000000 0.406584709000000 +0.289170978000000 0.962316589000000 0.188417304000000 +0.289319729000000 0.965985817000000 0.198334004000000 +0.299286012000000 0.912138135000000 0.277667606000000 +0.300872684000000 0.901576800000000 0.009916700000000 +0.279303862000000 0.941789019000000 0.089250302000000 +0.297550590000000 0.902717220000000 0.347084507000000 +0.287633890000000 0.978084093000000 0.069416901000000 +0.280989701000000 0.944565695000000 0.218167405000000 +0.284212628000000 0.931872319000000 0.476001610000000 +0.297600173000000 0.912633921000000 0.406584709000000 +0.272659672000000 0.963159508000000 0.545418512000000 +0.284212628000000 0.962564506000000 0.099167002000000 +0.282576373000000 0.947193621000000 0.357001208000000 +0.274395095000000 0.960134915000000 0.357001208000000 +0.292493073000000 0.904452643000000 0.049583501000000 +0.294327662000000 0.910353129000000 0.089250302000000 +0.284311795000000 0.968762444000000 0.000000000000000 +0.290906401000000 0.911195999000000 0.039666801000000 +0.282625956000000 0.938070257000000 0.446251510000000 +0.307516874000000 0.919922695000000 0.148750503000000 +0.290906401000000 0.911195999000000 0.327251107000000 +0.280940117000000 0.986810838000000 0.079333602000000 +0.272659672000000 0.957308705000000 0.079333602000000 +0.299137262000000 0.938863642000000 0.138833803000000 +0.285948051000000 0.934351494000000 0.456168210000000 +0.280840950000000 0.971787087000000 0.158667203000000 +0.287633890000000 0.949871180000000 0.059500201000000 +0.294178912000000 0.936285251000000 0.128917103000000 +0.300823101000000 0.904799728000000 0.654502214000000 +0.289170978000000 0.975009965000000 0.079333602000000 +0.277618022000000 0.963010758000000 0.287584306000000 +0.277766773000000 0.950763633000000 0.069416901000000 +0.294278079000000 0.912435587000000 0.109083702000000 +0.294178912000000 0.936285251000000 0.019833400000000 +0.304145196000000 0.914022259000000 0.168583904000000 +0.284212628000000 0.987058805000000 0.297501006000000 +0.300823101000000 0.904799728000000 0.456168210000000 +0.289270145000000 0.920666398000000 0.773502617000000 +0.289220562000000 0.943474858000000 0.148750503000000 +0.282675540000000 0.971935788000000 0.109083702000000 +0.284262212000000 0.971737454000000 0.099167002000000 +0.294178912000000 0.958697043000000 0.099167002000000 +0.297550590000000 0.948780343000000 0.039666801000000 +0.295021831000000 0.924682761000000 0.128917103000000 +0.290856817000000 0.930335231000000 0.208250704000000 +0.305880618000000 0.917046852000000 0.119000403000000 +0.307268956000000 0.923492707000000 0.208250704000000 +0.284262212000000 0.934847280000000 0.426418109000000 +0.294278079000000 0.965043681000000 0.039666801000000 +0.282526789000000 0.977935392000000 0.059500201000000 +0.302508940000000 0.904353476000000 0.317334407000000 +0.304095612000000 0.910948082000000 0.079333602000000 +0.300823101000000 0.934996129000000 0.009916700000000 +0.292592240000000 0.929988146000000 0.257834206000000 +0.305880618000000 0.913427257000000 0.138833803000000 +0.290856817000000 0.975109132000000 0.109083702000000 +0.274295928000000 0.963010758000000 0.396668009000000 +0.275981767000000 0.974811681000000 0.178500604000000 +0.304095612000000 0.917294770000000 0.198334004000000 +0.285898467000000 0.940747766000000 0.000000000000000 +0.287633890000000 0.937128170000000 0.128917103000000 +0.274395095000000 0.960134915000000 0.347084507000000 +0.290906401000000 0.952697390000000 0.307417707000000 +0.292493073000000 0.939855263000000 0.188417304000000 +0.289270145000000 0.930831066000000 0.337167807000000 +0.290856817000000 0.924087709000000 0.317334407000000 +0.295716000000000 0.922897705000000 0.148750503000000 +0.294129328000000 0.923294423000000 0.466084910000000 +0.285898467000000 0.962514923000000 0.099167002000000 +0.286691803000000 0.942185687000000 0.099167002000000 +0.292542656000000 0.907576354000000 0.089250302000000 +0.287633890000000 0.946747369000000 0.317334407000000 +0.295963918000000 0.932616072000000 0.178500604000000 +0.297501006000000 0.919278060000000 0.059500201000000 +0.284212628000000 0.956366569000000 0.009916700000000 +0.294178912000000 0.936285251000000 0.228084105000000 +0.285948051000000 0.931376484000000 0.426418109000000 +0.290955984000000 0.946400285000000 0.039666801000000 +0.292493073000000 0.939855263000000 0.327251107000000 +0.281039284000000 0.965787434000000 0.039666801000000 +0.295864751000000 0.958994494000000 0.019833400000000 +0.292542656000000 0.907576354000000 0.664418914000000 +0.302360190000000 0.921311033000000 0.238000805000000 +0.275932183000000 0.954036144000000 0.019833400000000 +0.285848884000000 0.943772359000000 0.039666801000000 +0.285948051000000 0.928153557000000 0.069416901000000 +0.277766773000000 0.950763633000000 0.396668009000000 +0.272858006000000 0.960085331000000 0.138833803000000 +0.281039284000000 0.938516508000000 0.327251107000000 +0.290856817000000 0.975109132000000 0.099167002000000 +0.284311795000000 0.978034559000000 0.148750503000000 +0.292493073000000 0.926963553000000 0.327251107000000 +0.279353445000000 0.947491122000000 0.426418109000000 +0.287633890000000 0.946747369000000 0.079333602000000 +0.280940117000000 0.932268987000000 0.545418512000000 +0.299137262000000 0.918633524000000 0.228084105000000 +0.282625956000000 0.934996129000000 0.347084507000000 +0.282675540000000 0.980910402000000 0.188417304000000 +0.299186845000000 0.905394779000000 0.059500201000000 +0.292542656000000 0.920368947000000 0.178500604000000 +0.287485139000000 0.952895674000000 0.079333602000000 +0.272709256000000 0.966134568000000 0.089250302000000 +0.304194779000000 0.907526820000000 0.327251107000000 +0.279849280000000 0.945011947000000 0.049583501000000 +0.295815167000000 0.916947636000000 0.267750906000000 +0.287534723000000 0.956118651000000 0.238000805000000 +0.295864751000000 0.906535150000000 0.218167405000000 +0.300823101000000 0.904799728000000 0.247917505000000 +0.279353445000000 0.938665259000000 0.009916700000000 +0.280840950000000 0.971787087000000 0.337167807000000 +0.279303862000000 0.983835828000000 0.247917505000000 +0.287534723000000 0.959291995000000 0.208250704000000 +0.284262212000000 0.965737850000000 0.218167405000000 +0.285898467000000 0.946995337000000 0.208250704000000 +0.282675540000000 0.925971882000000 0.426418109000000 +0.287584306000000 0.934103577000000 0.109083702000000 +0.277766773000000 0.950763633000000 0.694169015000000 +0.286691803000000 0.939111461000000 0.109083702000000 +0.294228495000000 0.907030935000000 0.287584306000000 +0.277667606000000 0.965985817000000 0.128917103000000 +0.285898467000000 0.999851249000000 0.109083702000000 +0.300872684000000 0.924881045000000 0.198334004000000 +0.295765584000000 0.920170613000000 0.019833400000000 +0.302409773000000 0.911096832000000 0.247917505000000 +0.280940117000000 0.986810838000000 0.317334407000000 +0.281039284000000 0.959936630000000 0.277667606000000 +0.286691803000000 0.942185687000000 0.029750101000000 +0.287584306000000 0.940450265000000 0.099167002000000 +0.297501006000000 0.935591082000000 0.138833803000000 +0.292493073000000 0.904452643000000 0.277667606000000 +0.276080934000000 0.951061134000000 0.168583904000000 +0.279204695000000 0.953639476000000 0.585085313000000 +0.307417707000000 0.913328090000000 0.148750503000000 +0.279353445000000 0.938665259000000 0.277667606000000 +0.281039284000000 0.938516508000000 0.218167405000000 +0.285105131000000 0.942185687000000 0.109083702000000 +0.289270145000000 0.920666398000000 0.188417304000000 +0.299087678000000 0.921806868000000 0.138833803000000 +0.299186845000000 0.905394779000000 0.000000000000000 +0.295021831000000 0.924682761000000 0.158667203000000 +0.282625956000000 0.938070257000000 0.247917505000000 +0.277667606000000 0.965985817000000 0.188417304000000 +0.296658087000000 0.921112699000000 0.049583501000000 +0.305731868000000 0.910055529000000 0.317334407000000 +0.292542656000000 0.907576354000000 0.138833803000000 +0.284212628000000 0.962564506000000 0.029750101000000 +0.304194779000000 0.907526820000000 0.495835011000000 +0.285848884000000 0.983984579000000 0.059500201000000 +0.277618022000000 0.974811681000000 0.208250704000000 +0.290955984000000 0.921013532000000 0.208250704000000 +0.295914334000000 0.925922349000000 0.297501006000000 +0.296707670000000 0.924286043000000 0.188417304000000 +0.297501006000000 0.932516954000000 0.287584306000000 +0.280989701000000 0.935343164000000 0.366917908000000 +0.289270145000000 0.930831066000000 0.148750503000000 +0.300922268000000 0.908220989000000 0.515668411000000 +0.298343926000000 0.927112303000000 0.148750503000000 +0.300922268000000 0.908220989000000 0.495835011000000 +0.302360190000000 0.914418927000000 0.000000000000000 +0.290906401000000 0.959044078000000 0.158667203000000 +0.282675540000000 0.993058359000000 0.228084105000000 +0.282576373000000 0.944317778000000 0.009916700000000 +0.302508940000000 0.917790654000000 0.337167807000000 +0.286741387000000 0.945309398000000 0.307417707000000 +0.292493073000000 0.942929440000000 0.128917103000000 +0.287485139000000 0.952895674000000 0.168583904000000 +0.277717189000000 0.969010312000000 0.019833400000000 +0.277717189000000 0.969010312000000 0.178500604000000 +0.284311795000000 0.993355860000000 0.119000403000000 +0.300922268000000 0.908220989000000 0.109083702000000 +0.284361379000000 0.940946100000000 0.059500201000000 +0.305731868000000 0.923641458000000 0.069416901000000 +0.295765584000000 0.939210677000000 0.188417304000000 +0.285948051000000 0.937425671000000 0.059500201000000 +0.302508940000000 0.907576354000000 0.267750906000000 +0.294178912000000 0.936285251000000 0.109083702000000 +0.304095612000000 0.917294770000000 0.148750503000000 +0.300823101000000 0.904799728000000 0.119000403000000 +0.302508940000000 0.907576354000000 0.019833400000000 +0.290906401000000 0.927211470000000 0.238000805000000 +0.299186845000000 0.905394779000000 0.138833803000000 +0.299186845000000 0.935491915000000 0.267750906000000 +0.287683473000000 0.927806472000000 0.128917103000000 +0.284311795000000 0.968762444000000 0.277667606000000 +0.295864751000000 0.906535150000000 0.337167807000000 +0.282725123000000 0.950366965000000 0.247917505000000 +0.302409773000000 0.934847280000000 0.238000805000000 +0.297501006000000 0.932516954000000 0.109083702000000 +0.282576373000000 0.974910798000000 0.307417707000000 +0.285997634000000 0.925228180000000 0.168583904000000 +0.272659672000000 0.963159508000000 0.406584709000000 +0.305880618000000 0.917046852000000 0.396668009000000 +0.285848884000000 0.987257090000000 0.218167405000000 +0.292542656000000 0.913476840000000 0.307417707000000 +0.305731868000000 0.910055529000000 0.307417707000000 +0.289319729000000 0.937029003000000 0.357001208000000 +0.299286012000000 0.912138135000000 0.138833803000000 +0.292542656000000 0.907576354000000 0.247917505000000 +0.298343926000000 0.927112303000000 0.109083702000000 +0.290856817000000 0.955870734000000 0.168583904000000 +0.302409773000000 0.911096832000000 0.515668411000000 +0.271122584000000 0.966134568000000 0.029750101000000 +0.287485139000000 0.996727539000000 0.089250302000000 +0.294278079000000 0.912435587000000 0.148750503000000 +0.300922268000000 0.911245583000000 0.476001610000000 +0.285105131000000 0.942185687000000 0.128917103000000 +0.282576373000000 0.987058805000000 0.208250704000000 +0.274444678000000 0.968960778000000 0.416501409000000 +0.282576373000000 0.944317778000000 0.218167405000000 +0.295914334000000 0.935888583000000 0.128917103000000 +0.282675540000000 0.941293184000000 0.238000805000000 +0.289220562000000 0.924385161000000 0.109083702000000 +0.290955984000000 0.946400285000000 0.009916700000000 +0.277618022000000 0.963010758000000 0.178500604000000 +0.280940117000000 0.956614437000000 0.386751308000000 +0.282625956000000 0.929046060000000 0.019833400000000 +0.280989701000000 0.935343164000000 0.535501812000000 +0.304194779000000 0.907526820000000 0.089250302000000 +0.302360190000000 0.921311033000000 0.128917103000000 +0.272858006000000 0.960085331000000 0.228084105000000 +0.282576373000000 0.947193621000000 0.347084507000000 +0.287683473000000 0.927806472000000 0.119000403000000 +0.279799697000000 0.944565695000000 0.416501409000000 +0.287584306000000 0.940450265000000 0.168583904000000 +0.289270145000000 0.933954826000000 0.208250704000000 +0.284262212000000 0.943970693000000 0.079333602000000 +0.290955984000000 0.921013532000000 0.337167807000000 +0.295864751000000 0.929293977000000 0.019833400000000 +0.302508940000000 0.931475651000000 0.277667606000000 +0.287633890000000 0.930831066000000 0.138833803000000 +0.304095612000000 0.917294770000000 0.039666801000000 +0.285997634000000 0.971787087000000 0.218167405000000 +0.279204695000000 0.950813167000000 0.376834608000000 +0.300723934000000 0.915063512000000 0.079333602000000 +0.279799697000000 0.944565695000000 0.466084910000000 +0.289170978000000 0.940202347000000 0.347084507000000 +0.287633890000000 0.949871180000000 0.158667203000000 +0.294129328000000 0.971836621000000 0.049583501000000 +0.280940117000000 0.941541102000000 0.168583904000000 +0.290807234000000 0.939954479000000 0.000000000000000 +0.289270145000000 0.933954826000000 0.426418109000000 +0.299186845000000 0.905394779000000 0.247917505000000 +0.287584306000000 0.934103577000000 0.297501006000000 +0.289270145000000 0.920666398000000 0.386751308000000 +0.294228495000000 0.907030935000000 0.396668009000000 +0.279353445000000 0.947491122000000 0.000000000000000 +0.294178912000000 0.926517301000000 0.000000000000000 +0.294129328000000 0.916798885000000 0.238000805000000 +0.279303862000000 0.941789019000000 0.059500201000000 +0.281832620000000 0.945656532000000 0.019833400000000 +0.296658087000000 0.921112699000000 0.386751308000000 +0.285948051000000 0.934351494000000 0.396668009000000 +0.285105131000000 0.945408615000000 0.029750101000000 +0.295914334000000 0.948929043000000 0.099167002000000 +0.284361379000000 0.937971090000000 0.218167405000000 +0.275932183000000 0.954036144000000 0.039666801000000 +0.279799697000000 0.944565695000000 0.406584709000000 +0.280840950000000 0.971787087000000 0.188417304000000 +0.307516874000000 0.919922695000000 0.138833803000000 +0.277717189000000 0.969010312000000 0.059500201000000 +0.282675540000000 0.941293184000000 0.059500201000000 +0.296757254000000 0.927806472000000 0.000000000000000 +0.290856817000000 0.955870734000000 0.000000000000000 +0.292493073000000 0.942929440000000 0.247917505000000 +0.285948051000000 0.928153557000000 0.565251912000000 +0.307417707000000 0.913328090000000 0.079333602000000 +0.284262212000000 0.943970693000000 0.089250302000000 +0.297550590000000 0.928798192000000 0.119000403000000 +0.280989701000000 0.935343164000000 0.466084910000000 +0.299137262000000 0.915311479000000 0.138833803000000 +0.292542656000000 0.945904450000000 0.089250302000000 +0.281039284000000 0.959936630000000 0.168583904000000 +0.290955984000000 0.921013532000000 0.158667203000000 +0.275981767000000 0.957060738000000 0.614835413000000 +0.287534723000000 0.956118651000000 0.228084105000000 +0.294278079000000 0.945805283000000 0.148750503000000 +0.290906401000000 0.927211470000000 0.525585111000000 +0.298294342000000 0.930434348000000 0.158667203000000 +0.272858006000000 0.960085331000000 0.208250704000000 +0.300872684000000 0.931574818000000 0.218167405000000 +0.275981767000000 0.957060738000000 0.009916700000000 +0.292542656000000 0.923641458000000 0.039666801000000 +0.295914334000000 0.925922349000000 0.257834206000000 +0.282725123000000 0.950366965000000 0.198334004000000 +0.292493073000000 0.939855263000000 0.168583904000000 +0.281882204000000 0.948978627000000 0.287584306000000 +0.275981767000000 0.957060738000000 0.277667606000000 +0.294129328000000 0.939508178000000 0.327251107000000 +0.304095612000000 0.917294770000000 0.416501409000000 +0.281832620000000 0.939706512000000 0.366917908000000 +0.294030161000000 0.920121079000000 0.535501812000000 +0.282625956000000 0.929046060000000 0.178500604000000 +0.292493073000000 0.939855263000000 0.337167807000000 +0.284262212000000 0.928153557000000 0.009916700000000 +0.282675540000000 0.931971536000000 0.039666801000000 +0.297501006000000 0.906287233000000 0.555335212000000 +0.292493073000000 0.904452643000000 0.565251912000000 +0.282625956000000 0.956515319000000 0.158667203000000 +0.300823101000000 0.904799728000000 0.476001610000000 +0.295864751000000 0.929293977000000 0.109083702000000 +0.274395095000000 0.960134915000000 0.228084105000000 +0.279353445000000 0.968911194000000 0.178500604000000 +0.280940117000000 0.932268987000000 0.000000000000000 +0.307516874000000 0.919922695000000 0.337167807000000 +0.284212628000000 0.956366569000000 0.158667203000000 +0.272858006000000 0.960085331000000 0.307417707000000 +0.299137262000000 0.941888236000000 0.119000403000000 +0.281832620000000 0.945656532000000 0.000000000000000 +0.285948051000000 0.928153557000000 0.109083702000000 +0.272858006000000 0.960085331000000 0.624752113000000 +0.287584306000000 0.940450265000000 0.267750906000000 +0.294178912000000 0.936285251000000 0.357001208000000 +0.292542656000000 0.907576354000000 0.257834206000000 +0.299236429000000 0.931822686000000 0.188417304000000 +0.280989701000000 0.944565695000000 0.357001208000000 +0.282675540000000 0.941293184000000 0.079333602000000 +0.274494262000000 0.954333645000000 0.585085313000000 +0.279353445000000 0.980712018000000 0.198334004000000 +0.272758839000000 0.968861561000000 0.019833400000000 +0.296658087000000 0.930880699000000 0.079333602000000 +0.302508940000000 0.931475651000000 0.009916700000000 +0.300823101000000 0.918236856000000 0.436334809000000 +0.280890534000000 0.953639476000000 0.386751308000000 +0.280890534000000 0.983885362000000 0.049583501000000 +0.302409773000000 0.934847280000000 0.009916700000000 +0.274345511000000 0.957110321000000 0.009916700000000 +0.279353445000000 0.965836968000000 0.148750503000000 +0.290906401000000 0.952697390000000 0.178500604000000 +0.302508940000000 0.904353476000000 0.644585514000000 +0.294278079000000 0.912435587000000 0.644585514000000 +0.294129328000000 0.923294423000000 0.436334809000000 +0.287633890000000 0.978084093000000 0.099167002000000 +0.300922268000000 0.911245583000000 0.555335212000000 +0.294228495000000 0.952350355000000 0.188417304000000 +0.297501006000000 0.908815942000000 0.634668814000000 +0.300872684000000 0.924881045000000 0.297501006000000 +0.272858006000000 0.960085331000000 0.029750101000000 +0.289270145000000 0.933954826000000 0.158667203000000 +0.287534723000000 0.987505007000000 0.029750101000000 +0.284212628000000 0.987058805000000 0.188417304000000 +0.297501006000000 0.919278060000000 0.337167807000000 +0.286691803000000 0.939111461000000 0.039666801000000 +0.290906401000000 0.933508575000000 0.128917103000000 +0.290856817000000 0.930335231000000 0.297501006000000 +0.292493073000000 0.942929440000000 0.297501006000000 +0.285997634000000 0.981108736000000 0.039666801000000 +0.290906401000000 0.933508575000000 0.396668009000000 +0.274395095000000 0.960134915000000 0.495835011000000 +0.287633890000000 0.946747369000000 0.039666801000000 +0.279303862000000 0.974811681000000 0.168583904000000 +0.294178912000000 0.926517301000000 0.416501409000000 +0.290955984000000 0.949524045000000 0.218167405000000 +0.300922268000000 0.911245583000000 0.505751711000000 +0.294178912000000 0.926517301000000 0.347084507000000 +0.289270145000000 0.968663277000000 0.128917103000000 +0.287633890000000 0.930831066000000 0.029750101000000 +0.295914334000000 0.935888583000000 0.188417304000000 +0.274444678000000 0.968960778000000 0.327251107000000 +0.281039284000000 0.992909609000000 0.148750503000000 +0.274444678000000 0.968960778000000 0.198334004000000 +0.300773517000000 0.921608534000000 0.357001208000000 +0.294129328000000 0.971836621000000 0.039666801000000 +0.272858006000000 0.960085331000000 0.277667606000000 +0.277766773000000 0.950763633000000 0.000000000000000 +0.300922268000000 0.911245583000000 0.535501812000000 +0.285898467000000 0.946995337000000 0.059500201000000 +0.285948051000000 0.934351494000000 0.257834206000000 +0.285948051000000 0.928153557000000 0.476001610000000 +0.290906401000000 0.908022655000000 0.327251107000000 +0.297550590000000 0.948780343000000 0.059500201000000 +0.279353445000000 0.947491122000000 0.376834608000000 +0.281039284000000 0.980811235000000 0.138833803000000 +0.271866336000000 0.964349562000000 0.555335212000000 +0.281882204000000 0.948978627000000 0.148750503000000 +0.289220562000000 0.943474858000000 0.138833803000000 +0.300823101000000 0.904799728000000 0.039666801000000 +0.295021831000000 0.927806472000000 0.188417304000000 +0.274345511000000 0.966134568000000 0.337167807000000 +0.299137262000000 0.918633524000000 0.317334407000000 +0.289319729000000 0.937029003000000 0.327251107000000 +0.284163045000000 0.959490280000000 0.277667606000000 +0.299087678000000 0.921806868000000 0.327251107000000 +0.285898467000000 0.996330871000000 0.158667203000000 +0.292592240000000 0.933211123000000 0.247917505000000 +0.294030161000000 0.920121079000000 0.049583501000000 +0.284361379000000 0.940946100000000 0.000000000000000 +0.282725123000000 0.950366965000000 0.327251107000000 +0.282526789000000 0.977935392000000 0.000000000000000 +0.290856817000000 0.930335231000000 0.158667203000000 +0.284311795000000 0.968762444000000 0.019833400000000 +0.295864751000000 0.929293977000000 0.158667203000000 +0.277618022000000 0.959936630000000 0.585085313000000 +0.274444678000000 0.971886155000000 0.317334407000000 +0.279204695000000 0.950813167000000 0.337167807000000 +0.276080934000000 0.951061134000000 0.059500201000000 +0.294327662000000 0.910353129000000 0.228084105000000 +0.300922268000000 0.908220989000000 0.317334407000000 +0.287633890000000 0.930831066000000 0.436334809000000 +0.294178912000000 0.936285251000000 0.247917505000000 +0.290906401000000 0.952697390000000 0.039666801000000 +0.274345511000000 0.966134568000000 0.416501409000000 +0.295765584000000 0.939210677000000 0.138833803000000 +0.289270145000000 0.920666398000000 0.228084105000000 +0.282625956000000 0.928798192000000 0.565251912000000 +0.295765584000000 0.955523699000000 0.119000403000000 +0.282625956000000 0.934996129000000 0.198334004000000 +0.297501006000000 0.906287233000000 0.029750101000000 +0.285997634000000 0.925228180000000 0.188417304000000 +0.292592240000000 0.917294770000000 0.485918310000000 +0.280940117000000 0.941541102000000 0.059500201000000 +0.275981767000000 0.962911591000000 0.446251510000000 +0.287534723000000 0.962415805000000 0.059500201000000 +0.285105131000000 0.942185687000000 0.307417707000000 +0.284311795000000 0.947044870000000 0.138833803000000 +0.297501006000000 0.906287233000000 0.069416901000000 +0.280940117000000 0.986810838000000 0.158667203000000 +0.300723934000000 0.915063512000000 0.148750503000000 +0.279849280000000 0.945011947000000 0.158667203000000 +0.289319729000000 0.993851695000000 0.089250302000000 +0.297501006000000 0.908815942000000 0.119000403000000 +0.277766773000000 0.950763633000000 0.595002013000000 +0.295815167000000 0.916947636000000 0.604918713000000 +0.294327662000000 0.910353129000000 0.198334004000000 +0.282725123000000 0.965836968000000 0.089250302000000 +0.279799697000000 0.944565695000000 0.277667606000000 +0.284311795000000 0.925575214000000 0.416501409000000 +0.276080934000000 0.971687870000000 0.376834608000000 +0.281039284000000 0.941441935000000 0.109083702000000 +0.272659672000000 0.957308705000000 0.396668009000000 +0.284361379000000 0.937971090000000 0.238000805000000 +0.289220562000000 0.924385161000000 0.357001208000000 +0.280940117000000 0.986810838000000 0.009916700000000 +0.279303862000000 0.941789019000000 0.416501409000000 +0.280840950000000 0.947491122000000 0.386751308000000 +0.277717189000000 0.980612901000000 0.099167002000000 +0.307318540000000 0.916402316000000 0.128917103000000 +0.285154715000000 0.948333992000000 0.069416901000000 +0.294228495000000 0.929591478000000 0.119000403000000 +0.302360190000000 0.921311033000000 0.257834206000000 +0.282625956000000 0.938070257000000 0.307417707000000 +0.287534723000000 0.956118651000000 0.148750503000000 +0.299137262000000 0.915311479000000 0.515668411000000 +0.296707670000000 0.924286043000000 0.049583501000000 +0.275981767000000 0.957060738000000 0.466084910000000 +0.274395095000000 0.960134915000000 0.317334407000000 +0.279254278000000 0.962961224000000 0.436334809000000 +0.272858006000000 0.960085331000000 0.575168612000000 +0.274345511000000 0.957110321000000 0.476001610000000 +0.285848884000000 0.987257090000000 0.178500604000000 +0.280940117000000 0.929393144000000 0.089250302000000 +0.292592240000000 0.917294770000000 0.000000000000000 +0.294129328000000 0.955821150000000 0.109083702000000 +0.289220562000000 0.959143245000000 0.029750101000000 +0.279303862000000 0.941789019000000 0.297501006000000 +0.302459357000000 0.928351891000000 0.138833803000000 +0.305880618000000 0.917046852000000 0.099167002000000 +0.286691803000000 0.939111461000000 0.029750101000000 +0.280890534000000 0.977786641000000 0.079333602000000 +0.296658087000000 0.921112699000000 0.168583904000000 +0.281039284000000 0.938516508000000 0.366917908000000 +0.280989701000000 0.944565695000000 0.039666801000000 +0.297501006000000 0.906287233000000 0.575168612000000 +0.282725123000000 0.965836968000000 0.099167002000000 +0.275932183000000 0.954036144000000 0.148750503000000 +0.284311795000000 0.996231704000000 0.128917103000000 +0.295716000000000 0.922897705000000 0.337167807000000 +0.280940117000000 0.941541102000000 0.366917908000000 +0.294129328000000 0.916798885000000 0.158667203000000 +0.282576373000000 0.987058805000000 0.277667606000000 +0.285948051000000 0.928153557000000 0.376834608000000 +0.279353445000000 0.968911194000000 0.366917908000000 +0.289220562000000 0.959143245000000 0.079333602000000 +0.277618022000000 0.959936630000000 0.525585111000000 +0.292592240000000 0.917294770000000 0.218167405000000 +0.300922268000000 0.911245583000000 0.426418109000000 +0.274395095000000 0.960134915000000 0.485918310000000 +0.274345511000000 0.957110321000000 0.178500604000000 +0.285898467000000 0.956267402000000 0.178500604000000 +0.299137262000000 0.915311479000000 0.247917505000000 +0.277618022000000 0.974811681000000 0.039666801000000 +0.292493073000000 0.904452643000000 0.059500201000000 +0.287534723000000 0.956118651000000 0.079333602000000 +0.287633890000000 0.968762444000000 0.069416901000000 +0.279303862000000 0.956812820000000 0.456168210000000 +0.307417707000000 0.913328090000000 0.208250704000000 +0.285997634000000 0.950069464000000 0.208250704000000 +0.300773517000000 0.928351891000000 0.148750503000000 +0.299137262000000 0.918633524000000 0.198334004000000 +0.280890534000000 0.977786641000000 0.029750101000000 +0.295963918000000 0.913030589000000 0.178500604000000 +0.290955984000000 0.949524045000000 0.128917103000000 +0.277618022000000 0.957060738000000 0.515668411000000 +0.285105131000000 0.939210677000000 0.317334407000000 +0.300872684000000 0.931574818000000 0.089250302000000 +0.295864751000000 0.958994494000000 0.109083702000000 +0.302508940000000 0.904353476000000 0.545418512000000 +0.274345511000000 0.957110321000000 0.515668411000000 +0.294178912000000 0.936285251000000 0.337167807000000 +0.302459357000000 0.928351891000000 0.009916700000000 +0.305682284000000 0.920071446000000 0.327251107000000 +0.305880618000000 0.917046852000000 0.277667606000000 +0.292493073000000 0.904452643000000 0.039666801000000 +0.290955984000000 0.921013532000000 0.039666801000000 +0.272709256000000 0.966134568000000 0.515668411000000 +0.287633890000000 0.965886601000000 0.069416901000000 +0.279303862000000 0.974811681000000 0.158667203000000 +0.287584306000000 0.940450265000000 0.357001208000000 +0.290906401000000 0.911195999000000 0.168583904000000 +0.295914334000000 0.935888583000000 0.000000000000000 +0.289270145000000 0.920666398000000 0.694169015000000 +0.281039284000000 0.965787434000000 0.109083702000000 +0.305682284000000 0.920071446000000 0.000000000000000 +0.307516874000000 0.919922695000000 0.188417304000000 +0.271866336000000 0.964349562000000 0.109083702000000 +0.297550590000000 0.916104716000000 0.366917908000000 +0.279799697000000 0.944565695000000 0.396668009000000 +0.290856817000000 0.924087709000000 0.604918713000000 +0.295815167000000 0.916947636000000 0.466084910000000 +0.302459357000000 0.928351891000000 0.297501006000000 +0.290906401000000 0.933508575000000 0.436334809000000 +0.292592240000000 0.949375295000000 0.089250302000000 +0.299286012000000 0.912138135000000 0.079333602000000 +0.295765584000000 0.939210677000000 0.099167002000000 +0.276080934000000 0.951061134000000 0.357001208000000 +0.282576373000000 0.947193621000000 0.079333602000000 +0.276080934000000 0.977538674000000 0.168583904000000 +0.290906401000000 0.936582752000000 0.138833803000000 +0.299286012000000 0.912138135000000 0.188417304000000 +0.296707670000000 0.924286043000000 0.138833803000000 +0.279303862000000 0.977786641000000 0.366917908000000 +0.292542656000000 0.923641458000000 0.317334407000000 +0.295914334000000 0.909807711000000 0.307417707000000 +0.290856817000000 0.924087709000000 0.009916700000000 +0.295021831000000 0.924682761000000 0.198334004000000 +0.291005568000000 0.914567677000000 0.347084507000000 +0.282675540000000 0.980910402000000 0.128917103000000 +0.284163045000000 0.959490280000000 0.099167002000000 +0.279353445000000 0.980712018000000 0.327251107000000 +0.281039284000000 0.980811235000000 0.069416901000000 +0.307417707000000 0.913328090000000 0.009916700000000 +0.297501006000000 0.908815942000000 0.347084507000000 +0.290955984000000 0.921013532000000 0.565251912000000 +0.292344322000000 0.972034905000000 0.119000403000000 +0.289220562000000 0.943474858000000 0.277667606000000 +0.290955984000000 0.946400285000000 0.158667203000000 +0.304095612000000 0.910948082000000 0.505751711000000 +0.279204695000000 0.950813167000000 0.535501812000000 +0.289270145000000 0.930831066000000 0.277667606000000 +0.271122584000000 0.966134568000000 0.366917908000000 +0.296658087000000 0.921112699000000 0.158667203000000 +0.292542656000000 0.907576354000000 0.039666801000000 +0.276080934000000 0.971687870000000 0.406584709000000 +0.279799697000000 0.944565695000000 0.426418109000000 +0.272659672000000 0.957308705000000 0.634668814000000 +0.292493073000000 0.942929440000000 0.168583904000000 +0.285948051000000 0.934351494000000 0.366917908000000 +0.287633890000000 0.937128170000000 0.148750503000000 +0.287584306000000 0.940450265000000 0.000000000000000 +0.282625956000000 0.934996129000000 0.049583501000000 +0.289319729000000 0.937029003000000 0.347084507000000 +0.295914334000000 0.909807711000000 0.168583904000000 +0.294129328000000 0.962217422000000 0.099167002000000 +0.282725123000000 0.950366965000000 0.287584306000000 +0.300922268000000 0.911245583000000 0.198334004000000 +0.281039284000000 0.950565349000000 0.119000403000000 +0.285997634000000 0.925228180000000 0.138833803000000 +0.280890534000000 0.977786641000000 0.327251107000000 +0.277568439000000 0.953837810000000 0.158667203000000 +0.292641823000000 0.968613743000000 0.000000000000000 +0.274345511000000 0.957110321000000 0.317334407000000 +0.276080934000000 0.966084935000000 0.287584306000000 +0.302508940000000 0.904353476000000 0.158667203000000 +0.300872684000000 0.924881045000000 0.228084105000000 +0.279303862000000 0.983835828000000 0.188417304000000 +0.284212628000000 0.931872319000000 0.079333602000000 +0.282576373000000 0.987058805000000 0.039666801000000 +0.289319729000000 0.937029003000000 0.009916700000000 +0.295963918000000 0.913030589000000 0.575168612000000 +0.287584306000000 0.924831462000000 0.218167405000000 +0.280890534000000 0.977786641000000 0.277667606000000 +0.297550590000000 0.916104716000000 0.119000403000000 +0.281832620000000 0.945656532000000 0.357001208000000 +0.290856817000000 0.943177357000000 0.059500201000000 +0.281039284000000 0.941441935000000 0.158667203000000 +0.274345511000000 0.966134568000000 0.287584306000000 +0.294278079000000 0.968613743000000 0.019833400000000 +0.281832620000000 0.942582405000000 0.188417304000000 +0.294178912000000 0.942929440000000 0.257834206000000 +0.305880618000000 0.917046852000000 0.168583904000000 +0.302409773000000 0.911096832000000 0.069416901000000 +0.281882204000000 0.948978627000000 0.218167405000000 +0.302508940000000 0.917790654000000 0.267750906000000 +0.292542656000000 0.945904450000000 0.019833400000000 +0.295765584000000 0.920170613000000 0.525585111000000 +0.295765584000000 0.920170613000000 0.238000805000000 +0.289319729000000 0.937029003000000 0.000000000000000 +0.282576373000000 0.987058805000000 0.009916700000000 +0.300922268000000 0.911245583000000 0.089250302000000 +0.281039284000000 0.959936630000000 0.247917505000000 +0.282725123000000 0.950366965000000 0.257834206000000 +0.285997634000000 0.925228180000000 0.277667606000000 +0.271122584000000 0.966134568000000 0.178500604000000 +0.284262212000000 0.943970693000000 0.178500604000000 +0.282625956000000 0.984034212000000 0.287584306000000 +0.285105131000000 0.939210677000000 0.158667203000000 +0.297501006000000 0.906287233000000 0.119000403000000 +0.289270145000000 0.920666398000000 0.337167807000000 +0.292592240000000 0.949375295000000 0.138833803000000 +0.277766773000000 0.950763633000000 0.198334004000000 +0.279303862000000 0.956812820000000 0.238000805000000 +0.289319729000000 0.937029003000000 0.228084105000000 +0.289270145000000 0.927508971000000 0.416501409000000 +0.297501006000000 0.906287233000000 0.257834206000000 +0.281039284000000 0.950565349000000 0.505751711000000 +0.285105131000000 0.942185687000000 0.029750101000000 +0.275981767000000 0.974811681000000 0.029750101000000 +0.287584306000000 0.984331663000000 0.039666801000000 +0.289270145000000 0.949722330000000 0.277667606000000 +0.284361379000000 0.937971090000000 0.208250704000000 +0.279254278000000 0.962961224000000 0.059500201000000 +0.304145196000000 0.914022259000000 0.406584709000000 +0.298294342000000 0.920468114000000 0.426418109000000 +0.295914334000000 0.925922349000000 0.247917505000000 +0.277568439000000 0.953837810000000 0.466084910000000 +0.302360190000000 0.921311033000000 0.039666801000000 +0.272659672000000 0.957308705000000 0.585085313000000 +0.277618022000000 0.957060738000000 0.039666801000000 +0.292592240000000 0.929988146000000 0.446251510000000 +0.285898467000000 0.999851249000000 0.119000403000000 +0.292592240000000 0.929988146000000 0.476001610000000 +0.300872684000000 0.901576800000000 0.287584306000000 +0.285948051000000 0.934351494000000 0.000000000000000 +0.290856817000000 0.975109132000000 0.079333602000000 +0.284262212000000 0.934847280000000 0.366917908000000 +0.282576373000000 0.974910798000000 0.029750101000000 +0.297401839000000 0.922501037000000 0.029750101000000 +0.295864751000000 0.906535150000000 0.317334407000000 +0.290955984000000 0.921013532000000 0.545418512000000 +0.280940117000000 0.941541102000000 0.436334809000000 +0.284361379000000 0.981009618000000 0.228084105000000 +0.302360190000000 0.921311033000000 0.029750101000000 +0.276080934000000 0.951061134000000 0.148750503000000 +0.277618022000000 0.963010758000000 0.446251510000000 +0.290856817000000 0.924087709000000 0.019833400000000 +0.283419292000000 0.939706512000000 0.267750906000000 +0.295765584000000 0.920170613000000 0.347084507000000 +0.275981767000000 0.957060738000000 0.337167807000000 +0.277618022000000 0.971985371000000 0.386751308000000 +0.279303862000000 0.956812820000000 0.019833400000000 +0.289270145000000 0.920666398000000 0.793336017000000 +0.274295928000000 0.963010758000000 0.049583501000000 +0.284212628000000 0.987058805000000 0.257834206000000 +0.294228495000000 0.907030935000000 0.158667203000000 +0.285105131000000 0.942185687000000 0.178500604000000 +0.302360190000000 0.921311033000000 0.277667606000000 +0.307516874000000 0.919922695000000 0.119000403000000 +0.274345511000000 0.957110321000000 0.297501006000000 +0.282675540000000 0.925971882000000 0.416501409000000 +0.284311795000000 0.925575214000000 0.376834608000000 +0.279303862000000 0.974811681000000 0.238000805000000 +0.289270145000000 0.927508971000000 0.138833803000000 +0.297550590000000 0.902717220000000 0.029750101000000 +0.284163045000000 0.959490280000000 0.019833400000000 +0.275981767000000 0.957060738000000 0.029750101000000 +0.299186845000000 0.935491915000000 0.039666801000000 +0.280940117000000 0.956614437000000 0.267750906000000 +0.300723934000000 0.915063512000000 0.218167405000000 +0.282675540000000 0.931971536000000 0.079333602000000 +0.294228495000000 0.907030935000000 0.089250302000000 +0.290856817000000 0.930335231000000 0.128917103000000 +0.302360190000000 0.914418927000000 0.277667606000000 +0.305731868000000 0.910055529000000 0.327251107000000 +0.283419292000000 0.939706512000000 0.039666801000000 +0.281039284000000 0.992909609000000 0.158667203000000 +0.302409773000000 0.911096832000000 0.109083702000000 +0.292493073000000 0.926963553000000 0.406584709000000 +0.297501006000000 0.935591082000000 0.049583501000000 +0.287534723000000 0.959291995000000 0.228084105000000 +0.289270145000000 0.920666398000000 0.426418109000000 +0.300922268000000 0.911245583000000 0.079333602000000 +0.294228495000000 0.907030935000000 0.019833400000000 +0.282576373000000 0.987058805000000 0.029750101000000 +0.281039284000000 0.959936630000000 0.109083702000000 +0.287584306000000 0.990727935000000 0.178500604000000 +0.272659672000000 0.957308705000000 0.128917103000000 +0.304145196000000 0.914022259000000 0.049583501000000 +0.281832620000000 0.942582405000000 0.079333602000000 +0.292592240000000 0.933211123000000 0.396668009000000 +0.281039284000000 0.938516508000000 0.495835011000000 +0.280890534000000 0.977786641000000 0.247917505000000 +0.282675540000000 0.931971536000000 0.128917103000000 +0.287485139000000 0.996727539000000 0.128917103000000 +0.274295928000000 0.963010758000000 0.039666801000000 +0.294278079000000 0.912435587000000 0.347084507000000 +0.282526789000000 0.977935392000000 0.148750503000000 +0.295815167000000 0.916947636000000 0.416501409000000 +0.285997634000000 0.950069464000000 0.168583904000000 +0.307318540000000 0.916402316000000 0.297501006000000 +0.285898467000000 0.940747766000000 0.168583904000000 +0.274494262000000 0.954333645000000 0.525585111000000 +0.289220562000000 0.959143245000000 0.039666801000000 +0.297451423000000 0.938962760000000 0.089250302000000 +0.299236429000000 0.931822686000000 0.208250704000000 +0.284361379000000 0.981009618000000 0.029750101000000 +0.277766773000000 0.950763633000000 0.545418512000000 +0.279204695000000 0.950813167000000 0.684252315000000 +0.307516874000000 0.919922695000000 0.297501006000000 +0.280890534000000 0.977786641000000 0.238000805000000 +0.292592240000000 0.936384467000000 0.267750906000000 +0.271122584000000 0.966134568000000 0.208250704000000 +0.292542656000000 0.920368947000000 0.297501006000000 +0.282526789000000 0.977935392000000 0.119000403000000 +0.287633890000000 0.965886601000000 0.089250302000000 +0.307318540000000 0.916402316000000 0.337167807000000 +0.302508940000000 0.917790654000000 0.198334004000000 +0.298294342000000 0.920468114000000 0.128917103000000 +0.295021831000000 0.927806472000000 0.019833400000000 +0.284361379000000 0.937971090000000 0.257834206000000 +0.292542656000000 0.920368947000000 0.505751711000000 +0.289220562000000 0.959143245000000 0.089250302000000 +0.292493073000000 0.904452643000000 0.495835011000000 +0.281039284000000 0.959936630000000 0.198334004000000 +0.287683473000000 0.927806472000000 0.069416901000000 +0.294178912000000 0.936285251000000 0.039666801000000 +0.294278079000000 0.912435587000000 0.069416901000000 +0.284311795000000 0.978034559000000 0.059500201000000 +0.284311795000000 0.993355860000000 0.059500201000000 +0.299137262000000 0.915311479000000 0.495835011000000 +0.281039284000000 0.938516508000000 0.376834608000000 +0.282576373000000 0.944317778000000 0.238000805000000 +0.287584306000000 0.940450265000000 0.257834206000000 +0.287584306000000 0.924831462000000 0.109083702000000 +0.281832620000000 0.945656532000000 0.228084105000000 +0.281039284000000 0.938516508000000 0.000000000000000 +0.297550590000000 0.902717220000000 0.644585514000000 +0.277717189000000 0.980612901000000 0.247917505000000 +0.294030161000000 0.920121079000000 0.039666801000000 +0.271866336000000 0.964349562000000 0.505751711000000 +0.279303862000000 0.956812820000000 0.337167807000000 +0.279303862000000 0.956812820000000 0.128917103000000 +0.289319729000000 0.937029003000000 0.257834206000000 +0.282625956000000 0.984034212000000 0.049583501000000 +0.297550590000000 0.948780343000000 0.119000403000000 +0.297550590000000 0.902717220000000 0.277667606000000 +0.300823101000000 0.934996129000000 0.109083702000000 +0.292542656000000 0.907576354000000 0.604918713000000 +0.277618022000000 0.974811681000000 0.297501006000000 +0.295914334000000 0.948929043000000 0.128917103000000 +0.281832620000000 0.945656532000000 0.148750503000000 +0.289270145000000 0.949722330000000 0.148750503000000 +0.277766773000000 0.950763633000000 0.307417707000000 +0.281039284000000 0.950565349000000 0.188417304000000 +0.292493073000000 0.959044078000000 0.009916700000000 +0.280940117000000 0.929393144000000 0.099167002000000 +0.281039284000000 0.959936630000000 0.357001208000000 +0.280940117000000 0.941541102000000 0.247917505000000 +0.295914334000000 0.948929043000000 0.089250302000000 +0.303996445000000 0.924236410000000 0.148750503000000 +0.282625956000000 0.984034212000000 0.188417304000000 +0.295864751000000 0.958994494000000 0.119000403000000 +0.300773517000000 0.921608534000000 0.208250704000000 +0.279303862000000 0.941789019000000 0.347084507000000 +0.286691803000000 0.939111461000000 0.218167405000000 +0.280890534000000 0.974910798000000 0.337167807000000 +0.281832620000000 0.942582405000000 0.168583904000000 +0.295815167000000 0.945706116000000 0.218167405000000 +0.284311795000000 0.925575214000000 0.347084507000000 +0.285997634000000 0.965638683000000 0.198334004000000 +0.279799697000000 0.944565695000000 0.049583501000000 +0.297501006000000 0.925723965000000 0.138833803000000 +0.292493073000000 0.904452643000000 0.069416901000000 +0.274395095000000 0.960134915000000 0.009916700000000 +0.284311795000000 0.947044870000000 0.109083702000000 +0.297550590000000 0.916104716000000 0.456168210000000 +0.292592240000000 0.933211123000000 0.188417304000000 +0.302459357000000 0.928351891000000 0.109083702000000 +0.281832620000000 0.945656532000000 0.208250704000000 +0.274494262000000 0.954333645000000 0.109083702000000 +0.292542656000000 0.945904450000000 0.079333602000000 +0.307268956000000 0.923492707000000 0.277667606000000 +0.294327662000000 0.910353129000000 0.178500604000000 +0.294228495000000 0.933111907000000 0.158667203000000 +0.285105131000000 0.945408615000000 0.297501006000000 +0.283419292000000 0.942780689000000 0.148750503000000 +0.285848884000000 0.987257090000000 0.228084105000000 +0.297501006000000 0.952003221000000 0.029750101000000 +0.290807234000000 0.939954479000000 0.257834206000000 +0.294129328000000 0.916798885000000 0.148750503000000 +0.289270145000000 0.927508971000000 0.317334407000000 +0.290955984000000 0.921013532000000 0.505751711000000 +0.277618022000000 0.963010758000000 0.079333602000000 +0.302360190000000 0.914418927000000 0.287584306000000 +0.281039284000000 0.965787434000000 0.119000403000000 +0.302508940000000 0.924980212000000 0.307417707000000 +0.272659672000000 0.957308705000000 0.019833400000000 +0.277717189000000 0.969010312000000 0.446251510000000 +0.291005568000000 0.914567677000000 0.327251107000000 +0.300872684000000 0.901576800000000 0.198334004000000 +0.297550590000000 0.902717220000000 0.476001610000000 +0.292592240000000 0.917294770000000 0.515668411000000 +0.283468876000000 0.948929043000000 0.287584306000000 +0.297501006000000 0.919278060000000 0.456168210000000 +0.277618022000000 0.959936630000000 0.277667606000000 +0.292592240000000 0.929988146000000 0.079333602000000 +0.296757254000000 0.927806472000000 0.337167807000000 +0.284361379000000 0.940946100000000 0.238000805000000 +0.275981767000000 0.962911591000000 0.247917505000000 +0.297550590000000 0.916104716000000 0.495835011000000 +0.285898467000000 0.940747766000000 0.297501006000000 +0.286790970000000 0.948333992000000 0.158667203000000 +0.284311795000000 0.925575214000000 0.495835011000000 +0.279799697000000 0.944565695000000 0.376834608000000 +0.294129328000000 0.923294423000000 0.327251107000000 +0.281039284000000 0.965787434000000 0.158667203000000 +0.292592240000000 0.949375295000000 0.049583501000000 +0.300723934000000 0.915063512000000 0.466084910000000 +0.294278079000000 0.912435587000000 0.515668411000000 +0.284311795000000 0.941045217000000 0.109083702000000 +0.292542656000000 0.907576354000000 0.009916700000000 +0.282576373000000 0.974910798000000 0.297501006000000 +0.299137262000000 0.915311479000000 0.347084507000000 +0.284212628000000 0.999652965000000 0.089250302000000 +0.280890534000000 0.953639476000000 0.495835011000000 +0.290856817000000 0.930335231000000 0.019833400000000 +0.277618022000000 0.959936630000000 0.257834206000000 +0.280989701000000 0.944565695000000 0.257834206000000 +0.295765584000000 0.952151971000000 0.158667203000000 +0.297600173000000 0.912633921000000 0.208250704000000 +0.275981767000000 0.962911591000000 0.416501409000000 +0.279303862000000 0.977786641000000 0.059500201000000 +0.290906401000000 0.908022655000000 0.178500604000000 +0.281039284000000 0.965787434000000 0.019833400000000 +0.299137262000000 0.915311479000000 0.158667203000000 +0.295914334000000 0.935888583000000 0.158667203000000 +0.280989701000000 0.944565695000000 0.337167807000000 +0.284311795000000 0.950218215000000 0.158667203000000 +0.295864751000000 0.906535150000000 0.436334809000000 +0.294228495000000 0.952350355000000 0.019833400000000 +0.284262212000000 0.928153557000000 0.396668009000000 +0.284311795000000 0.990132933000000 0.208250704000000 +0.298244759000000 0.923542241000000 0.079333602000000 +0.304095612000000 0.910948082000000 0.327251107000000 +0.302508940000000 0.931475651000000 0.019833400000000 +0.298343926000000 0.927112303000000 0.238000805000000 +0.296658087000000 0.921112699000000 0.009916700000000 +0.277618022000000 0.974811681000000 0.307417707000000 +0.282725123000000 0.950366965000000 0.238000805000000 +0.299186845000000 0.905394779000000 0.585085313000000 +0.282625956000000 0.962713257000000 0.277667606000000 +0.282625956000000 0.929046060000000 0.000000000000000 +0.277618022000000 0.974811681000000 0.128917103000000 +0.292542656000000 0.920368947000000 0.218167405000000 +0.295765584000000 0.942532772000000 0.198334004000000 +0.285848884000000 0.987257090000000 0.049583501000000 +0.302409773000000 0.911096832000000 0.366917908000000 +0.289220562000000 0.943474858000000 0.039666801000000 +0.284212628000000 0.962564506000000 0.138833803000000 +0.284262212000000 0.934847280000000 0.337167807000000 +0.297550590000000 0.948780343000000 0.158667203000000 +0.282675540000000 0.925971882000000 0.664418914000000 +0.285997634000000 0.965638683000000 0.188417304000000 +0.285105131000000 0.945408615000000 0.128917103000000 +0.274345511000000 0.957110321000000 0.456168210000000 +0.295765584000000 0.955523699000000 0.009916700000000 +0.302360190000000 0.914418927000000 0.069416901000000 +0.295765584000000 0.942532772000000 0.099167002000000 +0.296757254000000 0.927806472000000 0.019833400000000 +0.307318540000000 0.916402316000000 0.307417707000000 +0.279353445000000 0.980712018000000 0.128917103000000 +0.290906401000000 0.908022655000000 0.079333602000000 +0.287584306000000 0.990727935000000 0.029750101000000 +0.285997634000000 0.925228180000000 0.357001208000000 +0.290807234000000 0.962267055000000 0.079333602000000 +0.297501006000000 0.906287233000000 0.297501006000000 +0.294030161000000 0.920121079000000 0.138833803000000 +0.295021831000000 0.927806472000000 0.029750101000000 +0.284361379000000 0.940946100000000 0.168583904000000 +0.290856817000000 0.975109132000000 0.089250302000000 +0.277568439000000 0.953837810000000 0.337167807000000 +0.285898467000000 0.959391212000000 0.178500604000000 +0.289220562000000 0.943474858000000 0.109083702000000 +0.290906401000000 0.959044078000000 0.109083702000000 +0.295914334000000 0.909807711000000 0.476001610000000 +0.302360190000000 0.921311033000000 0.376834608000000 +0.294228495000000 0.933111907000000 0.376834608000000 +0.280940117000000 0.986810838000000 0.089250302000000 +0.294178912000000 0.926517301000000 0.436334809000000 +0.304194779000000 0.907526820000000 0.505751711000000 +0.290807234000000 0.971836621000000 0.049583501000000 +0.286691803000000 0.942185687000000 0.049583501000000 +0.272858006000000 0.960085331000000 0.089250302000000 +0.285154715000000 0.948333992000000 0.238000805000000 +0.280840950000000 0.971787087000000 0.287584306000000 +0.287485139000000 0.952895674000000 0.307417707000000 +0.295864751000000 0.929293977000000 0.287584306000000 +0.294129328000000 0.923294423000000 0.029750101000000 +0.304194779000000 0.907526820000000 0.426418109000000 +0.274395095000000 0.974662930000000 0.089250302000000 +0.297451423000000 0.938962760000000 0.019833400000000 +0.281039284000000 0.941441935000000 0.039666801000000 +0.281039284000000 0.938516508000000 0.357001208000000 +0.299137262000000 0.941888236000000 0.138833803000000 +0.292542656000000 0.920368947000000 0.337167807000000 +0.302508940000000 0.904353476000000 0.426418109000000 +0.290856817000000 0.965836968000000 0.059500201000000 +0.302508940000000 0.907576354000000 0.198334004000000 +0.279353445000000 0.938665259000000 0.039666801000000 +0.287683473000000 0.971687870000000 0.208250704000000 +0.282725123000000 0.950366965000000 0.148750503000000 +0.299137262000000 0.938863642000000 0.297501006000000 +0.279303862000000 0.983835828000000 0.218167405000000 +0.287485139000000 0.952895674000000 0.138833803000000 +0.292542656000000 0.913476840000000 0.247917505000000 +0.284163045000000 0.959490280000000 0.000000000000000 +0.299137262000000 0.918633524000000 0.456168210000000 +0.285848884000000 0.943772359000000 0.000000000000000 +0.295864751000000 0.906535150000000 0.138833803000000 +0.299137262000000 0.915311479000000 0.287584306000000 +0.279353445000000 0.965836968000000 0.317334407000000 +0.290906401000000 0.936582752000000 0.059500201000000 +0.290906401000000 0.908022655000000 0.604918713000000 +0.277618022000000 0.963010758000000 0.307417707000000 +0.282576373000000 0.944317778000000 0.257834206000000 +0.285154715000000 0.948333992000000 0.029750101000000 +0.279254278000000 0.959837414000000 0.347084507000000 +0.282725123000000 0.950366965000000 0.109083702000000 +0.286691803000000 0.939111461000000 0.257834206000000 +0.289270145000000 0.968663277000000 0.168583904000000 +0.297550590000000 0.948780343000000 0.109083702000000 +0.272659672000000 0.963159508000000 0.178500604000000 +0.292443489000000 0.972084538000000 0.079333602000000 +0.300922268000000 0.908220989000000 0.069416901000000 +0.289220562000000 0.946499452000000 0.218167405000000 +0.292493073000000 0.939855263000000 0.267750906000000 +0.292542656000000 0.907576354000000 0.079333602000000 +0.284163045000000 0.959490280000000 0.138833803000000 +0.285154715000000 0.948333992000000 0.079333602000000 +0.287485139000000 0.952895674000000 0.128917103000000 +0.290906401000000 0.908022655000000 0.376834608000000 +0.283419292000000 0.945557365000000 0.218167405000000 +0.287633890000000 0.930831066000000 0.307417707000000 +0.287683473000000 0.927806472000000 0.079333602000000 +0.305731868000000 0.910055529000000 0.029750101000000 +0.276080934000000 0.971687870000000 0.317334407000000 +0.279303862000000 0.941789019000000 0.079333602000000 +0.289121395000000 0.988000793000000 0.039666801000000 +0.285898467000000 0.962514923000000 0.198334004000000 +0.304194779000000 0.907526820000000 0.178500604000000 +0.294228495000000 0.929591478000000 0.357001208000000 +0.292592240000000 0.936384467000000 0.188417304000000 +0.299186845000000 0.905394779000000 0.337167807000000 +0.292443489000000 0.975109132000000 0.009916700000000 +0.295765584000000 0.939210677000000 0.238000805000000 +0.280989701000000 0.935343164000000 0.109083702000000 +0.305731868000000 0.923641458000000 0.257834206000000 +0.291005568000000 0.914567677000000 0.138833803000000 +0.284311795000000 0.996231704000000 0.188417304000000 +0.299236429000000 0.931822686000000 0.039666801000000 +0.299087678000000 0.921806868000000 0.337167807000000 +0.299137262000000 0.918633524000000 0.079333602000000 +0.280940117000000 0.986810838000000 0.307417707000000 +0.302409773000000 0.934847280000000 0.099167002000000 +0.294228495000000 0.907030935000000 0.664418914000000 +0.285105131000000 0.942185687000000 0.228084105000000 +0.289270145000000 0.920666398000000 0.396668009000000 +0.305731868000000 0.910055529000000 0.208250704000000 +0.281039284000000 0.938516508000000 0.198334004000000 +0.277618022000000 0.971985371000000 0.198334004000000 +0.280890534000000 0.977786641000000 0.059500201000000 +0.298294342000000 0.930434348000000 0.079333602000000 +0.298294342000000 0.930434348000000 0.257834206000000 +0.279204695000000 0.950813167000000 0.674335615000000 +0.289270145000000 0.949722330000000 0.178500604000000 +0.289270145000000 0.933954826000000 0.446251510000000 +0.294178912000000 0.936285251000000 0.287584306000000 +0.281882204000000 0.948978627000000 0.168583904000000 +0.284262212000000 0.965737850000000 0.000000000000000 +0.290955984000000 0.921013532000000 0.000000000000000 +0.295815167000000 0.916947636000000 0.515668411000000 +0.289270145000000 0.930831066000000 0.089250302000000 +0.292493073000000 0.959044078000000 0.109083702000000 +0.284262212000000 0.934847280000000 0.456168210000000 +0.284311795000000 0.947044870000000 0.009916700000000 +0.300922268000000 0.908220989000000 0.049583501000000 +0.290906401000000 0.927211470000000 0.089250302000000 +0.277618022000000 0.959936630000000 0.376834608000000 +0.296658087000000 0.921112699000000 0.446251510000000 +0.304095612000000 0.922104369000000 0.337167807000000 +0.304194779000000 0.907526820000000 0.366917908000000 +0.282625956000000 0.956515319000000 0.148750503000000 +0.290807234000000 0.971836621000000 0.059500201000000 +0.292542656000000 0.920368947000000 0.495835011000000 +0.275981767000000 0.974811681000000 0.009916700000000 +0.304095612000000 0.910948082000000 0.376834608000000 +0.291005568000000 0.914567677000000 0.287584306000000 +0.284311795000000 0.950218215000000 0.128917103000000 +0.290906401000000 0.952697390000000 0.257834206000000 +0.272659672000000 0.963159508000000 0.228084105000000 +0.292542656000000 0.913476840000000 0.049583501000000 +0.274345511000000 0.957110321000000 0.614835413000000 +0.281039284000000 0.941441935000000 0.079333602000000 +0.290906401000000 0.927211470000000 0.059500201000000 +0.289270145000000 0.949722330000000 0.049583501000000 +0.295864751000000 0.906535150000000 0.614835413000000 +0.279303862000000 0.983835828000000 0.039666801000000 +0.300823101000000 0.904799728000000 0.595002013000000 +0.295021831000000 0.924682761000000 0.466084910000000 +0.303996445000000 0.924236410000000 0.208250704000000 +0.294030161000000 0.920121079000000 0.386751308000000 +0.287485139000000 0.952895674000000 0.247917505000000 +0.282725123000000 0.950366965000000 0.069416901000000 +0.305682284000000 0.920071446000000 0.119000403000000 +0.286691803000000 0.939111461000000 0.099167002000000 +0.279303862000000 0.977786641000000 0.079333602000000 +0.287534723000000 0.974960382000000 0.089250302000000 +0.280890534000000 0.953639476000000 0.327251107000000 +0.300872684000000 0.901576800000000 0.535501812000000 +0.275981767000000 0.957060738000000 0.257834206000000 +0.295021831000000 0.924682761000000 0.079333602000000 +0.302409773000000 0.934847280000000 0.277667606000000 +0.280890534000000 0.974910798000000 0.029750101000000 +0.287534723000000 0.974960382000000 0.158667203000000 +0.282675540000000 0.980910402000000 0.079333602000000 +0.294178912000000 0.936285251000000 0.208250704000000 +0.285997634000000 0.925228180000000 0.178500604000000 +0.280840950000000 0.947491122000000 0.059500201000000 +0.294228495000000 0.929591478000000 0.317334407000000 +0.285898467000000 0.940747766000000 0.247917505000000 +0.271866336000000 0.964349562000000 0.585085313000000 +0.295765584000000 0.939210677000000 0.168583904000000 +0.294178912000000 0.926517301000000 0.208250704000000 +0.297600173000000 0.912633921000000 0.535501812000000 +0.279353445000000 0.947491122000000 0.168583904000000 +0.279204695000000 0.953639476000000 0.515668411000000 +0.295765584000000 0.939210677000000 0.079333602000000 +0.284361379000000 0.937971090000000 0.396668009000000 +0.287633890000000 0.930831066000000 0.099167002000000 +0.279303862000000 0.956812820000000 0.347084507000000 +0.277618022000000 0.971985371000000 0.148750503000000 +0.300823101000000 0.934996129000000 0.019833400000000 +0.282675540000000 0.968861561000000 0.247917505000000 +0.279849280000000 0.945011947000000 0.069416901000000 +0.289270145000000 0.920666398000000 0.158667203000000 +0.304145196000000 0.914022259000000 0.089250302000000 +0.295716000000000 0.922897705000000 0.307417707000000 +0.282625956000000 0.956515319000000 0.039666801000000 +0.274494262000000 0.954333645000000 0.644585514000000 +0.292592240000000 0.936384467000000 0.198334004000000 +0.285997634000000 0.925228180000000 0.495835011000000 +0.299186845000000 0.905394779000000 0.178500604000000 +0.274395095000000 0.974662930000000 0.148750503000000 +0.292493073000000 0.904452643000000 0.595002013000000 +0.290906401000000 0.911195999000000 0.634668814000000 +0.287584306000000 0.934103577000000 0.337167807000000 +0.290955984000000 0.921013532000000 0.228084105000000 +0.284361379000000 0.937971090000000 0.178500604000000 +0.300823101000000 0.904799728000000 0.089250302000000 +0.302409773000000 0.911096832000000 0.039666801000000 +0.280989701000000 0.944565695000000 0.079333602000000 +0.274345511000000 0.957110321000000 0.049583501000000 +0.281039284000000 0.938516508000000 0.089250302000000 +0.275981767000000 0.957060738000000 0.644585514000000 +0.280940117000000 0.929393144000000 0.327251107000000 +0.282576373000000 0.947193621000000 0.029750101000000 +0.284212628000000 0.956366569000000 0.049583501000000 +0.302360190000000 0.914418927000000 0.059500201000000 +0.299137262000000 0.941888236000000 0.218167405000000 +0.281039284000000 0.968861561000000 0.079333602000000 +0.279303862000000 0.974811681000000 0.109083702000000 +0.295963918000000 0.913030589000000 0.039666801000000 +0.289319729000000 0.965985817000000 0.059500201000000 +0.287584306000000 0.934103577000000 0.009916700000000 +0.281039284000000 0.941441935000000 0.238000805000000 +0.276031350000000 0.959986164000000 0.168583904000000 +0.287584306000000 0.984331663000000 0.247917505000000 +0.277568439000000 0.953837810000000 0.228084105000000 +0.285948051000000 0.931376484000000 0.168583904000000 +0.307268956000000 0.923492707000000 0.039666801000000 +0.294178912000000 0.942929440000000 0.109083702000000 +0.289170978000000 0.940202347000000 0.327251107000000 +0.292542656000000 0.913476840000000 0.069416901000000 +0.287633890000000 0.937128170000000 0.277667606000000 +0.276080934000000 0.966084935000000 0.059500201000000 +0.274444678000000 0.971886155000000 0.247917505000000 +0.304095612000000 0.910948082000000 0.228084105000000 +0.282675540000000 0.925971882000000 0.634668814000000 +0.294327662000000 0.910353129000000 0.595002013000000 +0.277766773000000 0.950763633000000 0.723919116000000 +0.294030161000000 0.920121079000000 0.476001610000000 +0.294278079000000 0.912435587000000 0.327251107000000 +0.274444678000000 0.971886155000000 0.277667606000000 +0.284212628000000 0.956366569000000 0.138833803000000 +0.290807234000000 0.962267055000000 0.109083702000000 +0.284262212000000 0.971737454000000 0.069416901000000 +0.282625956000000 0.962713257000000 0.257834206000000 +0.302360190000000 0.921311033000000 0.366917908000000 +0.295021831000000 0.927806472000000 0.178500604000000 +0.277717189000000 0.980612901000000 0.267750906000000 +0.277618022000000 0.957060738000000 0.396668009000000 +0.272659672000000 0.957308705000000 0.029750101000000 +0.289270145000000 0.927508971000000 0.178500604000000 +0.290906401000000 0.933508575000000 0.188417304000000 +0.287633890000000 0.978084093000000 0.109083702000000 +0.277717189000000 0.969010312000000 0.208250704000000 +0.300872684000000 0.924881045000000 0.287584306000000 +0.287534723000000 0.987505007000000 0.019833400000000 +0.280840950000000 0.971787087000000 0.247917505000000 +0.283468876000000 0.948929043000000 0.049583501000000 +0.282675540000000 0.993058359000000 0.000000000000000 +0.272858006000000 0.960085331000000 0.019833400000000 +0.294178912000000 0.942929440000000 0.069416901000000 +0.275981767000000 0.962911591000000 0.019833400000000 +0.272659672000000 0.957308705000000 0.267750906000000 +0.296658087000000 0.930880699000000 0.228084105000000 +0.279204695000000 0.950813167000000 0.515668411000000 +0.279204695000000 0.950813167000000 0.406584709000000 +0.287633890000000 0.968762444000000 0.009916700000000 +0.282625956000000 0.928798192000000 0.595002013000000 +0.285898467000000 0.946995337000000 0.188417304000000 +0.296658087000000 0.921112699000000 0.188417304000000 +0.294278079000000 0.912435587000000 0.366917908000000 +0.307318540000000 0.916402316000000 0.188417304000000 +0.277618022000000 0.957060738000000 0.555335212000000 +0.284163045000000 0.959490280000000 0.327251107000000 +0.300773517000000 0.921608534000000 0.128917103000000 +0.300872684000000 0.924881045000000 0.069416901000000 +0.282625956000000 0.984034212000000 0.247917505000000 +0.277618022000000 0.971985371000000 0.357001208000000 +0.287633890000000 0.930831066000000 0.446251510000000 +0.282725123000000 0.950366965000000 0.357001208000000 +0.287534723000000 0.956118651000000 0.168583904000000 +0.284311795000000 0.947044870000000 0.307417707000000 +0.279204695000000 0.953639476000000 0.089250302000000 +0.277766773000000 0.950763633000000 0.416501409000000 +0.283419292000000 0.942780689000000 0.069416901000000 +0.284212628000000 0.931872319000000 0.218167405000000 +0.298244759000000 0.923542241000000 0.049583501000000 +0.285948051000000 0.928153557000000 0.406584709000000 +0.292592240000000 0.965489933000000 0.099167002000000 +0.281039284000000 0.950565349000000 0.019833400000000 +0.279353445000000 0.980712018000000 0.059500201000000 +0.272858006000000 0.960085331000000 0.456168210000000 +0.297501006000000 0.935591082000000 0.079333602000000 +0.276080934000000 0.966084935000000 0.456168210000000 +0.279204695000000 0.953639476000000 0.396668009000000 +0.294129328000000 0.916798885000000 0.168583904000000 +0.287584306000000 0.940450265000000 0.277667606000000 From e9a37b96b58ee7544d2caaab43ebff22e2e1340b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 10:34:13 +0200 Subject: [PATCH 15/58] use cpp_float in the type selector --- .../include/CGAL/Number_types/internal/Exact_type_selector.h | 4 ++-- Number_types/include/CGAL/boost_mp.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 4fc3a4e95a1..04d76854482 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -25,7 +25,7 @@ #include #include -# include + #ifdef CGAL_USE_GMP # include # include @@ -95,7 +95,7 @@ struct Exact_ring_selector : Exact_field_selector < T > { }; template <> struct Exact_ring_selector #if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) -{ typedef boost::multiprecision::cpp_int Type; }; +{ typedef cpp_float Type; }; #elif CGAL_HAS_MPZF { typedef Mpzf Type; }; #elif defined(CGAL_USE_BOOST_MP) diff --git a/Number_types/include/CGAL/boost_mp.h b/Number_types/include/CGAL/boost_mp.h index 340e423ad67..f3b6f3ef082 100644 --- a/Number_types/include/CGAL/boost_mp.h +++ b/Number_types/include/CGAL/boost_mp.h @@ -53,6 +53,7 @@ #ifdef CGAL_USE_MPFR # include #endif +#include // TODO: work on the coercions (end of the file) From 96bf9c9cb82ae133c366c6f7dbcfad619947cefd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 10:45:12 +0200 Subject: [PATCH 16/58] fix includes --- Number_types/include/CGAL/boost_mp.h | 2 +- Number_types/include/CGAL/cpp_float.h | 2 +- Triangulation_3/benchmark/Triangulation_3/simple.cpp | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/boost_mp.h b/Number_types/include/CGAL/boost_mp.h index f3b6f3ef082..3dcaadcad21 100644 --- a/Number_types/include/CGAL/boost_mp.h +++ b/Number_types/include/CGAL/boost_mp.h @@ -53,7 +53,6 @@ #ifdef CGAL_USE_MPFR # include #endif -#include // TODO: work on the coercions (end of the file) @@ -898,6 +897,7 @@ template< > class Real_embeddable_traits< Quotient +#include #endif // BOOST_VERSION #endif diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 5c121796d3b..0eaa9c0f5f5 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -14,7 +14,7 @@ #define CGAL_CPP_FLOAT_H -#include +#include #include #include #include diff --git a/Triangulation_3/benchmark/Triangulation_3/simple.cpp b/Triangulation_3/benchmark/Triangulation_3/simple.cpp index 673a940218f..5be321ec1f6 100644 --- a/Triangulation_3/benchmark/Triangulation_3/simple.cpp +++ b/Triangulation_3/benchmark/Triangulation_3/simple.cpp @@ -29,6 +29,9 @@ int main(int argc, char* argv[]) while(in >> p ){ points.push_back(p); } + + std::cout << points.size() << " points read\n"; + Timer timer; timer.start(); size_t N = 0; From 583600b1a9c2c666dc04d6d56fbb7148f67a461b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 10:55:01 +0200 Subject: [PATCH 17/58] fix high_bit on non-msvc compiles --- Number_types/include/CGAL/cpp_float.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 0eaa9c0f5f5..422f76429bd 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -40,12 +40,12 @@ namespace internal { #if defined(_MSC_VER) unsigned long ret; _BitScanReverse64(&ret, x); - return (int)ret; // AF: was 63 - (int)ret; The others have to be changed too + return (int)ret; #elif defined(__xlC__) // Macro supposedly not defined on z/OS. - return __cntlz8 (x); + return 63 - __cntlz8 (x); #else - return __builtin_clzll (x); + return 63 - __builtin_clzll (x); #endif } From 1061174f30f00e8db97d25a0efbd12755db60ce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 13:44:03 +0200 Subject: [PATCH 18/58] remove duplicated switch macro mechanism --- Number_types/include/CGAL/Exact_integer.h | 43 ++++------------------- 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/Number_types/include/CGAL/Exact_integer.h b/Number_types/include/CGAL/Exact_integer.h index 6e02ffc9ada..3ba3fb9816a 100644 --- a/Number_types/include/CGAL/Exact_integer.h +++ b/Number_types/include/CGAL/Exact_integer.h @@ -14,20 +14,10 @@ // // Author(s) : Laurent Rineau -#include -#include -#if CGAL_USE_GMPXX -# include -#elif CGAL_USE_GMP -# include -#elif CGAL_USE_LEDA -# include -#elif CGAL_USE_CORE -# include -#elif defined CGAL_USE_BOOST_MP -#else -# error CGAL is configured with none of GMP, LEDA, Boost.Multiprecision and CORE. cannot be used. -#endif +#ifndef CGAL_EXACT_INTEGER_H +#define CGAL_EXACT_INTEGER_H + +#include namespace CGAL { @@ -50,29 +40,10 @@ typedef unspecified_type Exact_integer; #else // not DOXYGEN_RUNNING -#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) -// use boost-mp by default -typedef BOOST_cpp_arithmetic_kernel::Integer Exact_integer; -#else // BOOST_VERSION > 107900 -#ifdef CGAL_USE_GMPXX -typedef mpz_class Exact_integer; -#elif defined(CGAL_USE_GMP) -#if defined(CGAL_USE_BOOST_MP) -typedef BOOST_gmp_arithmetic_kernel::Integer Exact_integer; -#else -typedef Gmpz Exact_integer; -#endif -#elif defined(CGAL_USE_LEDA) -typedef leda_integer Exact_integer; -#elif defined(CGAL_USE_BOOST_MP) -typedef BOOST_cpp_arithmetic_kernel::Integer Exact_integer; -#elif defined(CGAL_USE_CORE) -typedef CORE::BigInt Exact_integer; -#else -#error "ERROR: Cannot determine a BigInt type!" -#endif // CGAL_USE_CORE -#endif // BOOST_VERSION > 107800 +typedef internal::Exact_ring_selector::Type Exact_integer; #endif // not DOXYGEN_RUNNING } /* end namespace CGAL */ + +#endif // CGAL_EXACT_INTEGER_H From 6b71a94254cdc366f77cac5b9d8af201c3942008 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 13:59:38 +0200 Subject: [PATCH 19/58] remove warnings about using GMP as being required --- .../CGAL/Installation/internal/enable_third_party_libraries.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Installation/include/CGAL/Installation/internal/enable_third_party_libraries.h b/Installation/include/CGAL/Installation/internal/enable_third_party_libraries.h index 2df627952a3..dd9ecf8c707 100644 --- a/Installation/include/CGAL/Installation/internal/enable_third_party_libraries.h +++ b/Installation/include/CGAL/Installation/internal/enable_third_party_libraries.h @@ -27,11 +27,9 @@ #if defined(__has_include) && ( ! defined _MSC_VER || _MSC_VER > 1900) # if CGAL_USE_GMP && ! __has_include() -# pragma CGAL_WARNING(" cannot be found. Less efficient number types will be used instead. Define CGAL_NO_GMP=1 if that is on purpose.") # undef CGAL_USE_GMP # undef CGAL_USE_MPFR # elif CGAL_USE_MPFR && ! __has_include() -# pragma CGAL_WARNING(" cannot be found and the GMP support in CGAL requires it. Less efficient number types will be used instead. Define CGAL_NO_GMP=1 if that is on purpose.") # undef CGAL_USE_GMP # undef CGAL_USE_MPFR # endif // CGAL_USE_MPFR and no From d2919016149843425cee937383b8b9bc8ebac2bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 14:43:37 +0200 Subject: [PATCH 20/58] try to make it easier to read and to keep consistency --- .../internal/Exact_type_selector.h | 127 +++++++++++++----- 1 file changed, 94 insertions(+), 33 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 04d76854482..fd00508d662 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -50,28 +50,57 @@ class Expr; namespace CGAL { namespace internal { // Two classes which tell the preferred "exact number types" corresponding to a type. +// Exact_ring_selector and Exact_field_selector are used by EPICK as exact number type +// to answer predicates at the end of the filtering chain of predicates and EPECK uses +// Exact_field_selector for as its exact number type. -// The default template chooses mpq_class, Gmpq, leda_rational, or Quotient. -// It should support the built-in types. -template < typename > -struct Exact_field_selector -#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) -// use boost-mp by default -// Boost -{ typedef BOOST_cpp_arithmetic_kernel::Rational Type; }; -#else // BOOST_VERSION > 107900 -#ifdef CGAL_USE_GMPXX -{ typedef mpq_class Type; }; -#elif defined(CGAL_USE_GMP) -#if defined(CGAL_USE_BOOST_MP) -{ typedef BOOST_gmp_arithmetic_kernel::Rational Type; }; +enum ENT_backend_choice +{ + GMP_BACKEND, + GMPXX_BACKEND, + BOOST_GMP_BACKEND, + BOOST_BACKEND, + LEDA_BACKEND, + MP_FLOAT_BACKEND +}; + +template +struct Exact_NT_backend; + +#ifdef CGAL_USE_GMP +template <> +struct Exact_NT_backend +{ + typedef Gmpq Rational; +#ifdef CGAL_HAS_MPZF + typedef Mpzf Integer; #else -{ typedef Gmpq Type; }; + typedef Gmpzf Integer; #endif -#elif defined(CGAL_USE_LEDA) -{ typedef leda_rational Type; }; -#elif defined(CGAL_USE_BOOST_MP) +}; +#endif + +#ifdef CGAL_USE_GMPXX +template <> +struct Exact_NT_backend +{ + typedef mpq_class Rational; + typedef Exact_NT_backend::Integer Integer; +}; +#endif + +#ifdef CGAL_USE_BOOST_MP +template <> +struct Exact_NT_backend +{ + typedef BOOST_gmp_arithmetic_kernel::Rational Rational; + typedef Exact_NT_backend::Integer Integer; +}; + +template <> +struct Exact_NT_backend +{ // See the discussion in https://github.com/CGAL/cgal/pull/3614 // This is disabled for now because cpp_rational is even slower than Quotient. Quotient will be a good candidate after some polishing. // In fact, the new version of cpp_rational from here: https://github.com/boostorg/multiprecision/pull/366 @@ -79,32 +108,64 @@ struct Exact_field_selector // while Quotient does not. Though, we can still use it if needed. #if BOOST_VERSION <= 107800 // See this comment: https://github.com/CGAL/cgal/pull/5937#discussion_r721533675 -{ typedef Quotient Type; }; + typedef Quotient Rational; #else -{ typedef BOOST_cpp_arithmetic_kernel::Rational Type; }; + typedef BOOST_cpp_arithmetic_kernel::Rational Rational; #endif -#else -{ typedef Quotient Type; }; + typedef cpp_float Integer; +}; #endif + +#ifdef CGAL_USE_LEDA +template <> +struct Exact_NT_backend +{ + typedef leda_rational Rational; + typedef leda_integer Integer; +}; +#endif + +template <> +struct Exact_NT_backend +{ + typedef Quotient Rational; + typedef MP_Float Integer; +}; + +constexpr ENT_backend_choice Default_Exact_nt_back_end = +#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) + BOOST_BACKEND; +#else // BOOST_VERSION > 107900 + #ifdef CGAL_USE_GMPXX + GMPXX_BACKEND; + #elif defined(CGAL_USE_GMP) + #if defined(CGAL_USE_BOOST_MP) + BOOST_GMP_BACKEND; + #else + GMP_BACKEND; + #endif + #elif defined(CGAL_USE_LEDA) + LEDA_BACKEND; + #else + MP_FLOAT_BACKEND; + #endif #endif // BOOST_VERSION > 107900 +template < typename > +struct Exact_field_selector +{ + using Type = typename Exact_NT_backend::Rational; +}; + // By default, a field is a safe choice of ring. template < typename T > struct Exact_ring_selector : Exact_field_selector < T > { }; template <> struct Exact_ring_selector -#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) -{ typedef cpp_float Type; }; -#elif CGAL_HAS_MPZF -{ typedef Mpzf Type; }; - #elif defined(CGAL_USE_BOOST_MP) -{ typedef boost::multiprecision::cpp_int Type; }; -#elif defined(CGAL_HAS_THREADS) || !defined(CGAL_USE_GMP) -{ typedef MP_Float Type; }; -#else -{ typedef Gmpzf Type; }; -#endif +{ + using Type = typename Exact_NT_backend::Integer; +}; template <> struct Exact_ring_selector : Exact_ring_selector { }; From 924e1936031586e1ba69b66cfbfc45fbded7d40d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 14:50:54 +0200 Subject: [PATCH 21/58] fix name --- .../CGAL/Number_types/internal/Exact_type_selector.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index fd00508d662..ca85367e53b 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -132,7 +132,7 @@ struct Exact_NT_backend typedef MP_Float Integer; }; -constexpr ENT_backend_choice Default_Exact_nt_back_end = +constexpr ENT_backend_choice Default_exact_nt_backend = #if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) BOOST_BACKEND; #else // BOOST_VERSION > 107900 @@ -154,7 +154,7 @@ constexpr ENT_backend_choice Default_Exact_nt_back_end = template < typename > struct Exact_field_selector { - using Type = typename Exact_NT_backend::Rational; + using Type = typename Exact_NT_backend::Rational; }; // By default, a field is a safe choice of ring. @@ -164,7 +164,7 @@ struct Exact_ring_selector : Exact_field_selector < T > { }; template <> struct Exact_ring_selector { - using Type = typename Exact_NT_backend::Integer; + using Type = typename Exact_NT_backend::Integer; }; template <> From 089fc821c9884a03ee8d788f32c047c3a2ffdd7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Apr 2023 18:41:13 +0200 Subject: [PATCH 22/58] hide a developer friendly way to easily switch with the default exact nt in EPICK/EPECK --- Installation/lib/cmake/CGAL/CGALConfig.cmake | 12 ++++++++++++ .../CGAL/Number_types/internal/Exact_type_selector.h | 6 +++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index b807ad3c412..7e0ae8a78ab 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -200,3 +200,15 @@ if( CGAL_DEV_MODE OR RUNNING_CGAL_AUTO_TEST OR CGAL_TEST_SUITE ) # Do not use -isystem for CGAL include paths set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE) endif() + +#warning: the order in this list has to match the enum in Exact_type_selector +set(CGAL_CMAKE_EXACT_NT_BACKEND_OPTIONS GMP_BACKEND GMPXX_BACKEND BOOST_GMP_BACKEND BOOST_BACKEND LEDA_BACKEND MP_FLOAT_BACKEND Default) +set(CGAL_CMAKE_EXACT_NT_BACKEND "Default" CACHE STRING "Setting for advanced users that what to change the default number types used in filtered kernels. Some options might not be working depending on how you configured your build.") +#~ set_property(CACHE CGAL_CMAKE_EXACT_NT_BACKEND PROPERTY STRINGS GMP_BACKEND GMPXX_BACKEND BOOST_GMP_BACKEND BOOST_BACKEND LEDA_BACKEND MP_FLOAT_BACKEND) +set_property(CACHE CGAL_CMAKE_EXACT_NT_BACKEND PROPERTY STRINGS ${CGAL_CMAKE_EXACT_NT_BACKEND_OPTIONS}) + +if ( NOT "${CGAL_CMAKE_EXACT_NT_BACKEND}" STREQUAL "Default" ) + list(FIND CGAL_CMAKE_EXACT_NT_BACKEND_OPTIONS ${CGAL_CMAKE_EXACT_NT_BACKEND} DEB_VAL) + set_target_properties(CGAL PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND=${DEB_VAL}") +endif() diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index ca85367e53b..3b54de0e0cc 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -54,7 +54,7 @@ namespace CGAL { namespace internal { // to answer predicates at the end of the filtering chain of predicates and EPECK uses // Exact_field_selector for as its exact number type. - +// Warning, the order in this list must match the one in Installation/lib/cmake/CGALConfig.cmake enum ENT_backend_choice { GMP_BACKEND, @@ -132,6 +132,7 @@ struct Exact_NT_backend typedef MP_Float Integer; }; +#ifndef CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND constexpr ENT_backend_choice Default_exact_nt_backend = #if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) BOOST_BACKEND; @@ -150,6 +151,9 @@ constexpr ENT_backend_choice Default_exact_nt_backend = MP_FLOAT_BACKEND; #endif #endif // BOOST_VERSION > 107900 +#else +constexpr ENT_backend_choice Default_exact_nt_backend = static_cast(CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND); +#endif template < typename > struct Exact_field_selector From de6dd854b504367eb6c06b1ea92c8a57e73a08a7 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 11 Apr 2023 17:53:52 +0100 Subject: [PATCH 23/58] typo --- .../Algebraic_foundations/Concepts/AlgebraicStructureTraits.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/AlgebraicStructureTraits.h b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/AlgebraicStructureTraits.h index 43ff35fe834..48c92909b80 100644 --- a/Algebraic_foundations/doc/Algebraic_foundations/Concepts/AlgebraicStructureTraits.h +++ b/Algebraic_foundations/doc/Algebraic_foundations/Concepts/AlgebraicStructureTraits.h @@ -139,7 +139,7 @@ typedef unspecified_type Is_numerical_sensitive; This type specifies the return type of the predicates provided by this traits. The type must be convertible to `bool` and typically the type indeed maps to `bool`. However, there are also -cases such as interval arithmetic, in which it is `Uncertain` +cases such as interval arithmetic, in which it is `CGAL::Uncertain` or some similar type. */ @@ -300,4 +300,3 @@ typedef unspecified_type Root_of; /// @} }; /* end AlgebraicStructureTraits */ - From 42f350ef0484cf94a25e06ddd04df4aa535ee3c5 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 12 Apr 2023 13:16:56 +0100 Subject: [PATCH 24/58] Add a test and more implementations --- Number_types/include/CGAL/cpp_float.h | 23 ++++---- Number_types/test/Number_types/CMakeLists.txt | 1 + Number_types/test/Number_types/cpp_float.cpp | 53 +++++++++++++++++++ 3 files changed, 68 insertions(+), 9 deletions(-) create mode 100644 Number_types/test/Number_types/cpp_float.cpp diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 422f76429bd..c5c73645366 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -353,21 +353,27 @@ public: std::pair to_interval() const { - assert(false); - double zero(0); - return std::make_pair(zero,zero); + if(exp == 0){ + return CGAL::to_interval(man); + } + if(exp > 0){ + Mantissa as = man << exp; + return CGAL::to_interval(as); + } + Mantissa pow(1); + pow <<= -exp; + boost::multiprecision::cpp_rational rat(man, pow); + return CGAL::to_interval(rat); } bool is_zero () const { - return man==0 && exp == 0; + return CGAL::is_zero(man); } bool is_one () const { - assert(false); - return true; - // return exp==0 && size==1 && data()[0]==1; + return *this == cpp_float(1); } @@ -394,8 +400,7 @@ public: struct Is_one : public CGAL::cpp98::unary_function< Type, bool > { bool operator()( const Type& x ) const { - assert(false); - return false; // x.is_one(); + return x.is_one(); } }; diff --git a/Number_types/test/Number_types/CMakeLists.txt b/Number_types/test/Number_types/CMakeLists.txt index 925f10a9efc..0b9acb0368d 100644 --- a/Number_types/test/Number_types/CMakeLists.txt +++ b/Number_types/test/Number_types/CMakeLists.txt @@ -13,6 +13,7 @@ include(CGAL_VersionUtils) include_directories(BEFORE include) create_single_source_cgal_program("bench_interval.cpp") +create_single_source_cgal_program("cpp_float.cpp") create_single_source_cgal_program("constant.cpp") create_single_source_cgal_program("CORE_BigFloat.cpp") create_single_source_cgal_program("CORE_BigInt.cpp") diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp new file mode 100644 index 00000000000..55fb2155a49 --- /dev/null +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -0,0 +1,53 @@ + +#include + +int main() +{ + + CGAL::cpp_float m(0); + std::cout << m << std::endl; + + CGAL::cpp_float m0(23.0); + + CGAL::cpp_float m1(5.0); + + CGAL::cpp_float m2(5.125); + + CGAL::cpp_float m3(2.5); + + CGAL::cpp_float m4(0.625); + + + CGAL::cpp_float m5(0.5); + + CGAL::is_positive(m5); + + assert(m4 > m5); + + assert(-m4 < -m5); + + + assert(-m4 == -m4); + + + assert(-m4 != -m5); + + assert(-m5 != -m4); + + CGAL::cpp_float m15 = m1 + m5; + m15 = m15 - m5; + assert(m15 == m1); + assert(! (m15 < m1)); + assert(! (m1 < m15)); + + m15 = m15 - m15; + std::cout << m15 << std::endl; + assert(m15.is_zero()); + + m1 *= m5; + + m0 += m4; + std::cout << m0 << std::endl; + + return 0; +} From b31d6466001a28a5c7207c4ba772027d212827f4 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 12 Apr 2023 15:00:58 +0100 Subject: [PATCH 25/58] Fixes --- Number_types/include/CGAL/cpp_float.h | 65 ++++++++++++++++---- Number_types/test/Number_types/cpp_float.cpp | 6 ++ 2 files changed, 58 insertions(+), 13 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index c5c73645366..4656c7aa654 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -1,4 +1,3 @@ - // Copyright (c) 2023 GeometryFactory (France). // All rights reserved. // @@ -13,6 +12,7 @@ #ifndef CGAL_CPP_FLOAT_H #define CGAL_CPP_FLOAT_H +//#define CGAL_CPPF #include #include @@ -110,11 +110,12 @@ public: : man(man), exp(exp) {} - +#ifndef CGAL_CPPF template cpp_float(const Expression& man, int exp) - : man(man), exp(exp) + :man(man), exp(exp) {} +#endif #endif cpp_float(double d) @@ -123,7 +124,7 @@ public: : rat(d) #endif { - //std::cout << "\ndouble = " << d << std::endl; + // std::cout << "\ndouble = " << d << std::endl; using boost::uint64_t; union { #ifdef CGAL_LITTLE_ENDIAN @@ -164,19 +165,24 @@ public: // std::cout << "nbits = " << nbits << std::endl; exp = idexp - nbits; + man = m; if(u.s.sig){ - m = -m; + man = -man; } // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); - man = m; } friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) { - return os << m.man << " * 2 ^ " << m.exp << " ( " << m.to_double() << ") "; + return os << m.man << " * 2 ^ " << m.exp << " ( " << m.to_double() << ") " +#ifdef CGAL_CPPF + << " " << m.rat +#endif + ; } + friend cpp_float operator-(cpp_float const&x) { #ifdef CGAL_CPPF @@ -199,7 +205,11 @@ public: friend cpp_float operator*(const cpp_float& a, const cpp_float&b){ +#ifdef CGAL_CPPF + return cpp_float(a.man*b.man, a.exp+b.exp, a.rat * b.rat); +#else return cpp_float(a.man*b.man, a.exp+b.exp); +#endif } @@ -222,6 +232,18 @@ public: } +#ifdef CGAL_CPPF + friend + cpp_float operator+(const cpp_float& a, const cpp_float&b){ + int shift = a.exp - b.exp; + if(shift > 0){ + return cpp_float((a.man << shift) + b.man, b.exp, a.rat+b.rat); + }else if(shift < 0){ + return cpp_float(a.man + (b.man << -shift), a.exp, a.rat+b.rat); + } + return cpp_float(a.man + b.man, a.exp, a.rat+b.rat); + } +#else friend cpp_float operator+(const cpp_float& a, const cpp_float&b){ int shift = a.exp - b.exp; @@ -232,7 +254,7 @@ public: } return cpp_float(a.man + b.man, a.exp); } - +#endif cpp_float operator-=(const cpp_float& other) @@ -254,6 +276,19 @@ public: return *this; } + #ifdef CGAL_CPPF + friend + cpp_float operator-(const cpp_float& a, const cpp_float&b){ + + int shift = a.exp - b.exp; + if(shift > 0){ + return cpp_float((a.man << shift) - b.man, b.exp, a.rat-b.rat); + }else if(shift < 0){ + return cpp_float(a.man - (b.man << -shift), a.exp, a.rat-b.rat); + } + return cpp_float(a.man - b.man, a.exp, a.rat-b.rat); + } +#else friend cpp_float operator-(const cpp_float& a, const cpp_float&b){ @@ -265,6 +300,7 @@ public: } return cpp_float(a.man - b.man, a.exp); } +#endif bool positive() const { @@ -274,12 +310,15 @@ public: friend bool operator<(const cpp_float& a, const cpp_float& b) { + // if(a.is_negative() && b.is_positive()) return true; + // if(b.is_negative() && a.is_positive()) return false; #ifdef CGAL_CPPF bool qres = a.rat < b.rat; #endif cpp_float d(b); d -= a; - + std::cout << a << std::endl; + std::cout << b << std::endl; #ifdef CGAL_CPPF assert(qres == ( (!d.is_zero()) && d.positive())); #endif @@ -347,8 +386,8 @@ public: } Mantissa pow(1); pow <<= -exp; - boost::multiprecision::cpp_rational rat(man, pow); - return CGAL::to_double(rat); + boost::multiprecision::cpp_rational r(man, pow); + return CGAL::to_double(r); } std::pair to_interval() const @@ -362,8 +401,8 @@ public: } Mantissa pow(1); pow <<= -exp; - boost::multiprecision::cpp_rational rat(man, pow); - return CGAL::to_interval(rat); + boost::multiprecision::cpp_rational r(man, pow); + return CGAL::to_interval(r); } diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index 55fb2155a49..b5d99f21cd1 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -4,6 +4,12 @@ int main() { + double d = -0; + CGAL::cpp_float zero(d); + assert(! CGAL::is_positive(zero)); + assert(! CGAL::is_negative(zero)); + assert(CGAL::is_zero(zero)); + CGAL::cpp_float m(0); std::cout << m << std::endl; From 6aee1566851c5225537259b50ca72e43149bf4a1 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 12 Apr 2023 15:24:56 +0100 Subject: [PATCH 26/58] early exit in operator< --- Number_types/include/CGAL/cpp_float.h | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 4656c7aa654..f3075ecfe40 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -302,27 +302,29 @@ public: } #endif - bool positive() const + bool is_positive() const { - return is_positive(man); + return CGAL::is_positive(man); } + bool is_negative() const + { + return CGAL::is_negative(man); + } friend bool operator<(const cpp_float& a, const cpp_float& b) { - // if(a.is_negative() && b.is_positive()) return true; - // if(b.is_negative() && a.is_positive()) return false; + if((! a.is_positive()) && b.is_positive()) return true; + if((! b.is_positive()) && a.is_positive()) return false; + #ifdef CGAL_CPPF bool qres = a.rat < b.rat; #endif - cpp_float d(b); - d -= a; - std::cout << a << std::endl; - std::cout << b << std::endl; + cpp_float d = b-a; #ifdef CGAL_CPPF - assert(qres == ( (!d.is_zero()) && d.positive())); + assert(qres == d.is_positive()); #endif - return ( (!d.is_zero()) && d.positive()); + return d.is_positive(); } friend bool operator>(cpp_float const&a, cpp_float const&b){ From 7889f8aa6b943d2dc0d9e25651608080dd183a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 13 Apr 2023 09:02:59 +0200 Subject: [PATCH 27/58] remove commented line --- Installation/lib/cmake/CGAL/CGALConfig.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index 7e0ae8a78ab..8b01dc8e844 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -204,7 +204,6 @@ endif() #warning: the order in this list has to match the enum in Exact_type_selector set(CGAL_CMAKE_EXACT_NT_BACKEND_OPTIONS GMP_BACKEND GMPXX_BACKEND BOOST_GMP_BACKEND BOOST_BACKEND LEDA_BACKEND MP_FLOAT_BACKEND Default) set(CGAL_CMAKE_EXACT_NT_BACKEND "Default" CACHE STRING "Setting for advanced users that what to change the default number types used in filtered kernels. Some options might not be working depending on how you configured your build.") -#~ set_property(CACHE CGAL_CMAKE_EXACT_NT_BACKEND PROPERTY STRINGS GMP_BACKEND GMPXX_BACKEND BOOST_GMP_BACKEND BOOST_BACKEND LEDA_BACKEND MP_FLOAT_BACKEND) set_property(CACHE CGAL_CMAKE_EXACT_NT_BACKEND PROPERTY STRINGS ${CGAL_CMAKE_EXACT_NT_BACKEND_OPTIONS}) if ( NOT "${CGAL_CMAKE_EXACT_NT_BACKEND}" STREQUAL "Default" ) From 7309a179422048f5a029e7b7cac9e0c95d2a17fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 13 Apr 2023 16:34:34 +0200 Subject: [PATCH 28/58] fix default integer --- .../internal/Exact_type_selector.h | 26 ++++++++++++------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 3b54de0e0cc..387a327e5bc 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -73,10 +73,11 @@ template <> struct Exact_NT_backend { typedef Gmpq Rational; + typedef Gmpz Integer; #ifdef CGAL_HAS_MPZF - typedef Mpzf Integer; + typedef Mpzf Ring; #else - typedef Gmpzf Integer; + typedef Gmpzf Ring; #endif }; #endif @@ -86,7 +87,8 @@ template <> struct Exact_NT_backend { typedef mpq_class Rational; - typedef Exact_NT_backend::Integer Integer; + typedef mpz_class Integer; + typedef Exact_NT_backend::Ring Ring; }; #endif @@ -95,7 +97,8 @@ template <> struct Exact_NT_backend { typedef BOOST_gmp_arithmetic_kernel::Rational Rational; - typedef Exact_NT_backend::Integer Integer; + typedef BOOST_gmp_arithmetic_kernel::Integer Integer; + typedef Exact_NT_backend::Ring Ring; }; template <> @@ -112,7 +115,8 @@ struct Exact_NT_backend #else typedef BOOST_cpp_arithmetic_kernel::Rational Rational; #endif - typedef cpp_float Integer; + typedef boost::multiprecision::cpp_int Integer; + typedef cpp_float Ring; }; #endif @@ -122,6 +126,7 @@ struct Exact_NT_backend { typedef leda_rational Rational; typedef leda_integer Integer; + typedef leda_integer Ring; }; #endif @@ -130,6 +135,7 @@ struct Exact_NT_backend { typedef Quotient Rational; typedef MP_Float Integer; + typedef MP_Float Ring; }; #ifndef CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND @@ -161,14 +167,16 @@ struct Exact_field_selector using Type = typename Exact_NT_backend::Rational; }; -// By default, a field is a safe choice of ring. -template < typename T > -struct Exact_ring_selector : Exact_field_selector < T > { }; +template < typename > +struct Exact_ring_selector +{ + using Type = typename Exact_NT_backend::Integer; +}; template <> struct Exact_ring_selector { - using Type = typename Exact_NT_backend::Integer; + using Type = typename Exact_NT_backend::Ring; }; template <> From 51d7e52253dbc113e24f3324514baa540084c7d5 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 13:24:34 +0100 Subject: [PATCH 29/58] More tests --- Number_types/include/CGAL/cpp_float.h | 3 +++ Number_types/test/Number_types/cpp_float.cpp | 25 ++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index f3075ecfe40..1fa80d34eec 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -169,6 +169,9 @@ public: if(u.s.sig){ man = -man; } +#ifdef CGAL_CPPF + assert(rat.sign() == man.sign()); +#endif // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); } diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index b5d99f21cd1..21e57984114 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -1,8 +1,33 @@ #include +template +void test1(){ + NT z; + NT a=3; + NT b=4.5; + NT c=2*(a+b)+-a*5; + assert(CGAL::sign(c)==0); + + NT e=.0003; + NT f=1e-90; + assert(CGAL::to_double(b) == 4.5); + std::pair p=CGAL::to_interval(b); + assert(p.first<=4.5 && p.second >= 4.5); + assert(a0); + assert(z0); + assert(z==z && CGAL::compare(z,z)==0); + assert(CGAL::square(b)*4==81); + assert(CGAL::is_zero(c)); + assert(!CGAL::is_zero(a)); + assert(!CGAL::is_one(a)); + assert(CGAL::is_one(a-2)); + assert(e-e==0); +} + int main() { + test1(); double d = -0; CGAL::cpp_float zero(d); From b301aead851d316376bd10a97aa460d0dede0141 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 16:08:10 +0100 Subject: [PATCH 30/58] Add a macro to not use interval arithmetic --- Filtered_kernel/include/CGAL/Filtered_predicate.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Filtered_kernel/include/CGAL/Filtered_predicate.h b/Filtered_kernel/include/CGAL/Filtered_predicate.h index 8cbcaa2835a..acfe6892a7c 100644 --- a/Filtered_kernel/include/CGAL/Filtered_predicate.h +++ b/Filtered_kernel/include/CGAL/Filtered_predicate.h @@ -88,6 +88,8 @@ public: result_type operator()(const Args&... args) const { + +#ifndef CGAL_EPICK_NO_INTERVALS CGAL_BRANCH_PROFILER(std::string(" failures/calls to : ") + std::string(CGAL_PRETTY_FUNCTION), tmp); // Protection is outside the try block as VC8 has the CGAL_CFG_FPU_ROUNDING_MODE_UNWINDING_VC_BUG { @@ -103,6 +105,7 @@ public: CGAL_BRANCH_PROFILER_BRANCH(tmp); Protect_FPU_rounding p(CGAL_FE_TONEAREST); CGAL_expensive_assertion(FPU_get_cw() == CGAL_FE_TONEAREST); +#endif // CGAL_EPICK_NO_INTERVALS return ep(c2e(args)...); } }; @@ -154,6 +157,7 @@ public: result_type operator()(const Args&... args) const { +#ifndef CGAL_EPICK_NO_INTERVALS CGAL_BRANCH_PROFILER(std::string(" failures/calls to : ") + std::string(CGAL_PRETTY_FUNCTION), tmp); // Protection is outside the try block as VC8 has the CGAL_CFG_FPU_ROUNDING_MODE_UNWINDING_VC_BUG { @@ -169,7 +173,7 @@ public: CGAL_BRANCH_PROFILER_BRANCH(tmp); Protect_FPU_rounding p(CGAL_FE_TONEAREST); CGAL_expensive_assertion(FPU_get_cw() == CGAL_FE_TONEAREST); - +#endif // CGAL_EPICK_NO_INTERVALS return call(args...); } }; From 1d41c0d569e6270e0c9c987eb4e3d86650cec1ff Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 16:08:28 +0100 Subject: [PATCH 31/58] More early exits --- Number_types/include/CGAL/cpp_float.h | 11 ++++++----- Number_types/test/Number_types/cpp_float.cpp | 12 ++++++++++++ Triangulation_3/test/Triangulation_3/CMakeLists.txt | 2 ++ 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 1fa80d34eec..e41ed30da8e 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -223,11 +223,10 @@ public: #endif int shift = exp - other.exp; if(shift > 0){ - man <<= shift; - man += other.man; + man = (man << shift) + other.man; exp = other.exp; }else if(shift < 0){ - man += (other.man << -shift); + man = man + (other.man << -shift); }else{ man += other.man; } @@ -317,8 +316,10 @@ public: friend bool operator<(const cpp_float& a, const cpp_float& b) { - if((! a.is_positive()) && b.is_positive()) return true; - if((! b.is_positive()) && a.is_positive()) return false; + if(((! a.is_positive()) && b.is_positive()) + || a.is_negative()&& b.is_zero())return true; + if(((! b.is_positive()) && a.is_positive()) + ||b.is_negative()&& a.is_zero())return false; #ifdef CGAL_CPPF bool qres = a.rat < b.rat; diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index 21e57984114..584326c7388 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -1,4 +1,5 @@ + #include template @@ -51,7 +52,18 @@ int main() CGAL::cpp_float m5(0.5); + CGAL::cpp_float m6(-0.625); + CGAL::is_positive(m5); + CGAL::is_negative(m6); + + assert(m < m5); + assert(m6 < m); + assert(! (m5 < m)); + assert(! (m < m6)); + assert(! (m6 < m6)); + + assert(m4 > m5); diff --git a/Triangulation_3/test/Triangulation_3/CMakeLists.txt b/Triangulation_3/test/Triangulation_3/CMakeLists.txt index a820549bf20..e5a850f9379 100644 --- a/Triangulation_3/test/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/test/Triangulation_3/CMakeLists.txt @@ -4,6 +4,8 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Triangulation_3_Tests) +add_definitions ( -D CGAL_CPPF -D CGAL_EPICK_NO_INTERVALS -D CGAL_NO_STATIC_FILTERS ) + find_package(CGAL REQUIRED) find_package(TBB QUIET) From e2623285b6992df9941166f427a614064061f590 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 16:16:45 +0100 Subject: [PATCH 32/58] Undo change in CMakeLists.txt --- Triangulation_3/test/Triangulation_3/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/Triangulation_3/test/Triangulation_3/CMakeLists.txt b/Triangulation_3/test/Triangulation_3/CMakeLists.txt index e5a850f9379..a820549bf20 100644 --- a/Triangulation_3/test/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/test/Triangulation_3/CMakeLists.txt @@ -4,8 +4,6 @@ cmake_minimum_required(VERSION 3.1...3.23) project(Triangulation_3_Tests) -add_definitions ( -D CGAL_CPPF -D CGAL_EPICK_NO_INTERVALS -D CGAL_NO_STATIC_FILTERS ) - find_package(CGAL REQUIRED) find_package(TBB QUIET) From 5653939315cec2146754cb036649306b9f90b84c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 13 Apr 2023 17:47:07 +0200 Subject: [PATCH 33/58] fix for leda and rename type --- .../Number_types/internal/Exact_type_selector.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 387a327e5bc..1d7d52ac5a1 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -75,9 +75,9 @@ struct Exact_NT_backend typedef Gmpq Rational; typedef Gmpz Integer; #ifdef CGAL_HAS_MPZF - typedef Mpzf Ring; + typedef Mpzf Ring_for_float; #else - typedef Gmpzf Ring; + typedef Gmpzf Ring_for_float; #endif }; #endif @@ -88,7 +88,7 @@ struct Exact_NT_backend { typedef mpq_class Rational; typedef mpz_class Integer; - typedef Exact_NT_backend::Ring Ring; + typedef Exact_NT_backend::Ring_for_float Ring_for_float; }; #endif @@ -98,7 +98,7 @@ struct Exact_NT_backend { typedef BOOST_gmp_arithmetic_kernel::Rational Rational; typedef BOOST_gmp_arithmetic_kernel::Integer Integer; - typedef Exact_NT_backend::Ring Ring; + typedef Exact_NT_backend::Ring_for_float Ring_for_float; }; template <> @@ -116,7 +116,7 @@ struct Exact_NT_backend typedef BOOST_cpp_arithmetic_kernel::Rational Rational; #endif typedef boost::multiprecision::cpp_int Integer; - typedef cpp_float Ring; + typedef cpp_float Ring_for_float; }; #endif @@ -126,7 +126,7 @@ struct Exact_NT_backend { typedef leda_rational Rational; typedef leda_integer Integer; - typedef leda_integer Ring; + typedef leda_rational Ring_for_float; }; #endif @@ -135,7 +135,7 @@ struct Exact_NT_backend { typedef Quotient Rational; typedef MP_Float Integer; - typedef MP_Float Ring; + typedef MP_Float Ring_for_float; }; #ifndef CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND @@ -176,7 +176,7 @@ struct Exact_ring_selector template <> struct Exact_ring_selector { - using Type = typename Exact_NT_backend::Ring; + using Type = typename Exact_NT_backend::Ring_for_float; }; template <> From 5978611360085f042d225212955ef01eb5c8a2e2 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 16:55:04 +0100 Subject: [PATCH 34/58] Better is_one() --- Number_types/include/CGAL/cpp_float.h | 7 ++++++- Number_types/test/Number_types/cpp_float.cpp | 8 ++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index e41ed30da8e..8063ee2dd40 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -418,7 +418,12 @@ public: bool is_one () const { - return *this == cpp_float(1); + if(! is_positive()) return false; + + int msb = boost::multiprecision::msb(man); + if (msb != -exp) return false; + int lsb = boost::multiprecision::lsb(man); + return (msb == lsb); } diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index 584326c7388..664f69f0099 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -92,5 +92,13 @@ int main() m0 += m4; std::cout << m0 << std::endl; + CGAL::cpp_float one(1); + assert(one.is_one()); + one += m4; + one -= m4; + std::cout << one << std::endl; + assert(one.is_one()); + + return 0; } From 2eb1af66cbe166968bac871590176b9f01f73b22 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 17:16:13 +0100 Subject: [PATCH 35/58] Use negate() instead of operator-() and assignment --- Number_types/include/CGAL/cpp_float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 8063ee2dd40..b8f1abe3577 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -167,7 +167,7 @@ public: exp = idexp - nbits; man = m; if(u.s.sig){ - man = -man; + man.backend().negate(); } #ifdef CGAL_CPPF assert(rat.sign() == man.sign()); From 7d9852a40239d56297a528770f9e0d1092bba9fd Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 13 Apr 2023 17:23:51 +0100 Subject: [PATCH 36/58] avoid intermediate variable --- Number_types/include/CGAL/cpp_float.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index b8f1abe3577..021eaf1b518 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -349,15 +349,13 @@ public: #endif int shift = a.exp - b.exp; if(shift > 0){ - Mantissa ac(a.man); - ac <<= shift; + Mantissa ac = a.man << shift; #ifdef CGAL_CPPF assert( qres == (ac == b.man)); #endif return ac == b.man; }else if(shift < 0){ - Mantissa bc(b.man); - bc <<= -shift; + Mantissa bc = b.man << -shift; #ifdef CGAL_CPPF assert(qres == (a.man == bc)); #endif From 257f0d253b7643d31e728ce78f2de0027422edd9 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 14 Apr 2023 09:01:20 +0100 Subject: [PATCH 37/58] Add a generator for ocean like data sets --- .../benchmark/Triangulation_3/ocean.cpp | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Triangulation_3/benchmark/Triangulation_3/ocean.cpp diff --git a/Triangulation_3/benchmark/Triangulation_3/ocean.cpp b/Triangulation_3/benchmark/Triangulation_3/ocean.cpp new file mode 100644 index 00000000000..0530d081a54 --- /dev/null +++ b/Triangulation_3/benchmark/Triangulation_3/ocean.cpp @@ -0,0 +1,20 @@ +#include +#include + +int main() +{ + int N=100; + std::cout.precision(17); + CGAL::Random rng; + + for(int i = 0; i < N; ++i){ + double x = rng.get_double(-1.0, 1.0); + double y = rng.get_double(-1.0, 1.0); + + for(int j = 0; j < N; j++){ + std::cout << x << " " << y << " " << rng.get_double(-1.0, 1.0) << std::endl; + } + } + + return 0; +} From e0150d09fffbb95cc98cd4d262143cacc194632a Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 14 Apr 2023 09:01:51 +0100 Subject: [PATCH 38/58] Add a generator for ocean like data sets --- .../benchmark/Triangulation_3/CMakeLists.txt | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Triangulation_3/benchmark/Triangulation_3/CMakeLists.txt b/Triangulation_3/benchmark/Triangulation_3/CMakeLists.txt index 19fd0c0efac..d65cc654dbd 100644 --- a/Triangulation_3/benchmark/Triangulation_3/CMakeLists.txt +++ b/Triangulation_3/benchmark/Triangulation_3/CMakeLists.txt @@ -8,6 +8,26 @@ project(Triangulation_3) # CGAL and its components find_package(CGAL REQUIRED) +# Boost and its components +find_package(Boost REQUIRED) + +if(NOT Boost_FOUND) + + message( + STATUS "This project requires the Boost library, and will not be compiled.") + + return() + +endif() + +# include for local directory + +# include for local package + +# Creating entries for all C++ files with "main" routine +# ########################################################## + +create_single_source_cgal_program("ocean.cpp") create_single_source_cgal_program("incident_edges.cpp") create_single_source_cgal_program("simple_2.cpp") create_single_source_cgal_program("simple.cpp") From 84d51db75e2d5d5069431741a02bd40deb6247fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 14 Apr 2023 10:59:33 +0200 Subject: [PATCH 39/58] do not overwrite existing properties --- Installation/lib/cmake/CGAL/CGALConfig.cmake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Installation/lib/cmake/CGAL/CGALConfig.cmake b/Installation/lib/cmake/CGAL/CGALConfig.cmake index 14e322e2722..a13e250573e 100644 --- a/Installation/lib/cmake/CGAL/CGALConfig.cmake +++ b/Installation/lib/cmake/CGAL/CGALConfig.cmake @@ -220,6 +220,9 @@ set_property(CACHE CGAL_CMAKE_EXACT_NT_BACKEND PROPERTY STRINGS ${CGAL_CMAKE_EXA if ( NOT "${CGAL_CMAKE_EXACT_NT_BACKEND}" STREQUAL "Default" ) list(FIND CGAL_CMAKE_EXACT_NT_BACKEND_OPTIONS ${CGAL_CMAKE_EXACT_NT_BACKEND} DEB_VAL) - set_target_properties(CGAL PROPERTIES - INTERFACE_COMPILE_DEFINITIONS "CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND=${DEB_VAL}") + set_property( + TARGET CGAL + APPEND PROPERTY + INTERFACE_COMPILE_DEFINITIONS "CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND=${DEB_VAL}" + ) # do not use set_target_properties to avoid overwritting endif() From 2b3b4ddb8811ac6c55e77408cf5ce0bde7c5b1a3 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 14 Apr 2023 14:20:06 +0100 Subject: [PATCH 40/58] Add Histogram_profiler for the shift size --- Number_types/include/CGAL/cpp_float.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 021eaf1b518..bbb9e4c2a28 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -215,7 +215,6 @@ public: #endif } - cpp_float operator+=(const cpp_float& other) { #ifdef CGAL_CPPF @@ -233,7 +232,6 @@ public: return *this; } - #ifdef CGAL_CPPF friend cpp_float operator+(const cpp_float& a, const cpp_float&b){ @@ -249,6 +247,7 @@ public: friend cpp_float operator+(const cpp_float& a, const cpp_float&b){ int shift = a.exp - b.exp; + CGAL_HISTOGRAM_PROFILER("shift+", CGAL::abs(shift)); if(shift > 0){ return cpp_float((a.man << shift) + b.man, b.exp); }else if(shift < 0){ @@ -258,7 +257,6 @@ public: } #endif - cpp_float operator-=(const cpp_float& other) { @@ -295,6 +293,7 @@ public: cpp_float operator-(const cpp_float& a, const cpp_float&b){ int shift = a.exp - b.exp; + CGAL_HISTOGRAM_PROFILER("shift-", CGAL::abs(shift)); if(shift > 0){ return cpp_float((a.man << shift) - b.man, b.exp); }else if(shift < 0){ @@ -348,6 +347,7 @@ public: bool qres = a.rat == b.rat; #endif int shift = a.exp - b.exp; + CGAL_HISTOGRAM_PROFILER("shift==", CGAL::abs(shift)); if(shift > 0){ Mantissa ac = a.man << shift; #ifdef CGAL_CPPF From 6be6c02f9cdfdd56db92aad0682b44de36e96147 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Sat, 15 Apr 2023 17:22:55 +0100 Subject: [PATCH 41/58] Fix for [-Wparentheses] warning --- Number_types/include/CGAL/cpp_float.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index bbb9e4c2a28..f9e3c0047c0 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -316,9 +316,9 @@ public: friend bool operator<(const cpp_float& a, const cpp_float& b) { if(((! a.is_positive()) && b.is_positive()) - || a.is_negative()&& b.is_zero())return true; + || (a.is_negative() && b.is_zero()))return true; if(((! b.is_positive()) && a.is_positive()) - ||b.is_negative()&& a.is_zero())return false; + || (b.is_negative() && a.is_zero()))return false; #ifdef CGAL_CPPF bool qres = a.rat < b.rat; From ced52508fd595996d74e803307792d516cb03080 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 18 Apr 2023 09:48:10 +0100 Subject: [PATCH 42/58] Add IO operators --- Number_types/include/CGAL/cpp_float.h | 30 ++++++++++++++++--- .../benchmark/Triangulation_3/simple.cpp | 4 +-- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index f9e3c0047c0..83399dfbdc9 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -108,13 +108,17 @@ public: cpp_float(const Mantissa& man, int exp) : man(man), exp(exp) - {} + { + CGAL_HISTOGRAM_PROFILER("size (man/exp)", man.backend().size()); + } #ifndef CGAL_CPPF template cpp_float(const Expression& man, int exp) :man(man), exp(exp) - {} + { + CGAL_HISTOGRAM_PROFILER("size (expression/exp)", this->man.backend().size()); + } #endif #endif @@ -174,15 +178,30 @@ public: #endif // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); + + CGAL_HISTOGRAM_PROFILER("size when constructed from double", man.backend().size()); } + friend std::ostream& operator<<(std::ostream& os, const cpp_float& m) { + return os << m.to_double(); +#if 0 // dehug output return os << m.man << " * 2 ^ " << m.exp << " ( " << m.to_double() << ") " #ifdef CGAL_CPPF << " " << m.rat #endif ; +#endif + } + + + friend std::istream& operator>>(std::istream& is, cpp_float& m) + { + double d; + is >> d; + m = cpp_float(d); + return is; } @@ -205,13 +224,12 @@ public: return *this; } - friend cpp_float operator*(const cpp_float& a, const cpp_float&b){ #ifdef CGAL_CPPF return cpp_float(a.man*b.man, a.exp+b.exp, a.rat * b.rat); #else - return cpp_float(a.man*b.man, a.exp+b.exp); + return cpp_float(a.man*b.man, a.exp+b.exp); #endif } @@ -430,6 +448,10 @@ public: return CGAL::sign(man); } + int size() const + { + return man.backend().size(); + } }; diff --git a/Triangulation_3/benchmark/Triangulation_3/simple.cpp b/Triangulation_3/benchmark/Triangulation_3/simple.cpp index 5be321ec1f6..7e2f022af2e 100644 --- a/Triangulation_3/benchmark/Triangulation_3/simple.cpp +++ b/Triangulation_3/benchmark/Triangulation_3/simple.cpp @@ -1,4 +1,4 @@ -//#define CGAL_PROFILE +#define CGAL_PROFILE //#define CGAL_USE_SSE2_FABS //#define CGAL_USE_SSE2_MAX //#define CGAL_MSVC_USE_STD_FABS // use this one with precise @@ -35,7 +35,7 @@ int main(int argc, char* argv[]) Timer timer; timer.start(); size_t N = 0; - for(int i = 0; i < 1; i++){ + for(int i = 0; i < 100; i++){ DT dt; dt.insert(points.begin(), points.end()); N += dt.number_of_cells(); From 11f8ffd6a080edca05c1ea968f6856c1b37ffbdb Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 18 Apr 2023 09:49:41 +0100 Subject: [PATCH 43/58] Undo accidental change --- Triangulation_3/benchmark/Triangulation_3/simple.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Triangulation_3/benchmark/Triangulation_3/simple.cpp b/Triangulation_3/benchmark/Triangulation_3/simple.cpp index 7e2f022af2e..5be321ec1f6 100644 --- a/Triangulation_3/benchmark/Triangulation_3/simple.cpp +++ b/Triangulation_3/benchmark/Triangulation_3/simple.cpp @@ -1,4 +1,4 @@ -#define CGAL_PROFILE +//#define CGAL_PROFILE //#define CGAL_USE_SSE2_FABS //#define CGAL_USE_SSE2_MAX //#define CGAL_MSVC_USE_STD_FABS // use this one with precise @@ -35,7 +35,7 @@ int main(int argc, char* argv[]) Timer timer; timer.start(); size_t N = 0; - for(int i = 0; i < 100; i++){ + for(int i = 0; i < 1; i++){ DT dt; dt.insert(points.begin(), points.end()); N += dt.number_of_cells(); From cccb5a4330a85ba74265be119aca8bd95085b30a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 19 Apr 2023 03:08:03 +0200 Subject: [PATCH 44/58] fix the case when GMP is OFF --- .../include/CGAL/Number_types/internal/Exact_type_selector.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 1d7d52ac5a1..2a21341117e 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -92,7 +92,7 @@ struct Exact_NT_backend }; #endif -#ifdef CGAL_USE_BOOST_MP +#if defined (CGAL_USE_BOOST_MP) && defined(CGAL_USE_GMP) template <> struct Exact_NT_backend { @@ -100,7 +100,9 @@ struct Exact_NT_backend typedef BOOST_gmp_arithmetic_kernel::Integer Integer; typedef Exact_NT_backend::Ring_for_float Ring_for_float; }; +#endif +#ifdef CGAL_USE_BOOST_MP template <> struct Exact_NT_backend { From a14b6a0327b10772443252c357e9b775108e816a Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 21 Apr 2023 08:59:20 +0100 Subject: [PATCH 45/58] Try to quit a warning I cannot reproduce --- Number_types/include/CGAL/cpp_float.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 83399dfbdc9..e8e70c5df46 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -436,9 +436,9 @@ public: bool is_one () const { if(! is_positive()) return false; - int msb = boost::multiprecision::msb(man); + int msb = static_cast(boost::multiprecision::msb(man)); if (msb != -exp) return false; - int lsb = boost::multiprecision::lsb(man); + int lsb = static_cast(boost::multiprecision::lsb(man)); return (msb == lsb); } From 5b2275b9f8ca78bd8b543a2e32bb15d7810e6e34 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 21 Apr 2023 09:12:00 +0100 Subject: [PATCH 46/58] Boost MP is turned off for all Apple Clang versions below 11.0.3! --- Number_types/test/Number_types/cpp_float.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index 664f69f0099..3d58b27f545 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -1,4 +1,14 @@ +#ifdef CGAL_DO_NOT_USE_BOOST_MP +#include + +int main() +{ + std::cout << "The class CGAL::cpp_float is not tested on this platform" << std::endl; + return 0; +} + +#else #include @@ -102,3 +112,5 @@ int main() return 0; } + +#endif From 3daf6f8dca7a44ed06c951d70095d9d150d7060c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 24 Apr 2023 13:30:35 +0200 Subject: [PATCH 47/58] fix warnings --- Number_types/include/CGAL/cpp_float.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index e8e70c5df46..5f8c6d659cd 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -477,8 +477,8 @@ public: struct Gcd : public CGAL::cpp98::binary_function< Type, Type, Type > { Type operator()( - const Type& x, - const Type& y ) const { + const Type& /* x */, + const Type& /* y */ ) const { assert(false); return Type(); // cpp_float_gcd(x, y); } @@ -494,8 +494,8 @@ public: struct Integral_division : public CGAL::cpp98::binary_function< Type, Type, Type > { Type operator()( - const Type& x, - const Type& y ) const { + const Type& /* x */, + const Type& /* y */ ) const { assert(false); return Type(); // x / y; } @@ -503,7 +503,7 @@ public: struct Sqrt : public CGAL::cpp98::unary_function< Type, Type > { - Type operator()( const Type& x) const { + Type operator()( const Type& /* x */) const { assert(false); return Type(); // cpp_float_sqrt(x); } @@ -511,12 +511,12 @@ public: struct Is_square : public CGAL::cpp98::binary_function< Type, Type&, bool > { - bool operator()( const Type& x, Type& y ) const { + bool operator()( const Type& /* x */, Type& /* y */ ) const { // TODO: avoid doing 2 calls. assert(false); return true; } - bool operator()( const Type& x) const { + bool operator()( const Type& /* x */) const { assert(false); return true; } From 69397d7d93050a685c6cf112c3668fb9404df3ab Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 2 May 2023 07:32:27 +0100 Subject: [PATCH 48/58] int -> std::size_t --- Number_types/include/CGAL/cpp_float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 5f8c6d659cd..402bb72ed11 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -448,7 +448,7 @@ public: return CGAL::sign(man); } - int size() const + std::size_t size() const { return man.backend().size(); } From abbebe4ed7289e2d5dc2f19e6d63ae59f0af123d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 4 May 2023 07:42:06 +0100 Subject: [PATCH 49/58] Fix for conversion warning --- Number_types/include/CGAL/cpp_float.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 402bb72ed11..8e19a1b27e4 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -109,7 +109,7 @@ public: cpp_float(const Mantissa& man, int exp) : man(man), exp(exp) { - CGAL_HISTOGRAM_PROFILER("size (man/exp)", man.backend().size()); + CGAL_HISTOGRAM_PROFILER("size (man/exp)", static_cast(man.backend().size())); } #ifndef CGAL_CPPF @@ -117,7 +117,7 @@ public: cpp_float(const Expression& man, int exp) :man(man), exp(exp) { - CGAL_HISTOGRAM_PROFILER("size (expression/exp)", this->man.backend().size()); + CGAL_HISTOGRAM_PROFILER("size (expression/exp)", static_cast(this->man.backend().size())); } #endif @@ -179,7 +179,7 @@ public: // std::cout << "m = " << m << " * 2^" << exp << std::endl; // fmt(m); - CGAL_HISTOGRAM_PROFILER("size when constructed from double", man.backend().size()); + CGAL_HISTOGRAM_PROFILER("size when constructed from double", static_cast(man.backend().size())); } From 0e8a6286cd39caf55c500bf51ecf8f1874cfb94b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 10 May 2023 17:31:45 +0200 Subject: [PATCH 50/58] do not use Boost exact nt backend by default --- .../internal/Exact_type_selector.h | 28 +++++++++---------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 2a21341117e..129160b1010 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -142,23 +142,21 @@ struct Exact_NT_backend #ifndef CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND constexpr ENT_backend_choice Default_exact_nt_backend = -#if BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) - BOOST_BACKEND; -#else // BOOST_VERSION > 107900 - #ifdef CGAL_USE_GMPXX - GMPXX_BACKEND; - #elif defined(CGAL_USE_GMP) - #if defined(CGAL_USE_BOOST_MP) - BOOST_GMP_BACKEND; - #else - GMP_BACKEND; - #endif - #elif defined(CGAL_USE_LEDA) - LEDA_BACKEND; +#ifdef CGAL_USE_GMPXX + GMPXX_BACKEND; +#elif defined(CGAL_USE_GMP) + #if defined(CGAL_USE_BOOST_MP) + BOOST_GMP_BACKEND; #else - MP_FLOAT_BACKEND; + GMP_BACKEND; #endif -#endif // BOOST_VERSION > 107900 +#elif BOOST_VERSION > 107900 && defined(CGAL_USE_BOOST_MP) + BOOST_BACKEND; +#elif defined(CGAL_USE_LEDA) + LEDA_BACKEND; +#else + MP_FLOAT_BACKEND; +#endif #else constexpr ENT_backend_choice Default_exact_nt_backend = static_cast(CMAKE_OVERRIDDEN_DEFAULT_ENT_BACKEND); #endif From 009fee2c2fb07dc674417702d711d33d3d83f040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 10 May 2023 17:37:43 +0200 Subject: [PATCH 51/58] rely on arithmetic kernels --- .../Number_types/internal/Exact_type_selector.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 129160b1010..395b4be93b2 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -71,9 +71,8 @@ struct Exact_NT_backend; #ifdef CGAL_USE_GMP template <> struct Exact_NT_backend + : public GMP_arithmetic_kernel { - typedef Gmpq Rational; - typedef Gmpz Integer; #ifdef CGAL_HAS_MPZF typedef Mpzf Ring_for_float; #else @@ -85,9 +84,8 @@ struct Exact_NT_backend #ifdef CGAL_USE_GMPXX template <> struct Exact_NT_backend + : public GMPXX_arithmetic_kernel { - typedef mpq_class Rational; - typedef mpz_class Integer; typedef Exact_NT_backend::Ring_for_float Ring_for_float; }; #endif @@ -95,9 +93,8 @@ struct Exact_NT_backend #if defined (CGAL_USE_BOOST_MP) && defined(CGAL_USE_GMP) template <> struct Exact_NT_backend + : public BOOST_gmp_arithmetic_kernel { - typedef BOOST_gmp_arithmetic_kernel::Rational Rational; - typedef BOOST_gmp_arithmetic_kernel::Integer Integer; typedef Exact_NT_backend::Ring_for_float Ring_for_float; }; #endif @@ -125,18 +122,16 @@ struct Exact_NT_backend #ifdef CGAL_USE_LEDA template <> struct Exact_NT_backend + : public LEDA_arithmetic_kernel { - typedef leda_rational Rational; - typedef leda_integer Integer; typedef leda_rational Ring_for_float; }; #endif template <> struct Exact_NT_backend + : public MP_Float_arithmetic_kernel { - typedef Quotient Rational; - typedef MP_Float Integer; typedef MP_Float Ring_for_float; }; From d1aebb8e29d7c40017dd6bda472163ddfa228adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 10 May 2023 18:18:04 +0200 Subject: [PATCH 52/58] add missing specializations --- .../internal/Exact_type_selector.h | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h index 395b4be93b2..f69df29f2bf 100644 --- a/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h +++ b/Number_types/include/CGAL/Number_types/internal/Exact_type_selector.h @@ -206,6 +206,10 @@ struct Exact_ring_selector template <> struct Exact_field_selector { typedef Gmpq Type; }; + +template <> +struct Exact_ring_selector +{ typedef Gmpq Type; }; #endif #ifdef CGAL_USE_GMPXX @@ -220,6 +224,10 @@ struct Exact_ring_selector< ::mpz_class> template <> struct Exact_field_selector< ::mpq_class> { typedef ::mpq_class Type; }; + +template <> +struct Exact_ring_selector< ::mpq_class> +{ typedef ::mpq_class Type; }; #endif #ifdef CGAL_USE_LEDA @@ -235,6 +243,10 @@ template <> struct Exact_field_selector { typedef leda_rational Type; }; +template <> +struct Exact_ring_selector +{ typedef leda_rational Type; }; + template <> struct Exact_field_selector { typedef leda_real Type; }; @@ -244,6 +256,28 @@ struct Exact_field_selector template <> struct Exact_field_selector { typedef CORE::Expr Type; }; + +template <> +struct Exact_ring_selector +{ typedef CORE::Expr Type; }; +#endif + +#ifdef CGAL_USE_BOOST_MP +template <> +struct Exact_field_selector::Integer> +{ typedef Exact_NT_backend::Rational Type; }; + +template <> +struct Exact_ring_selector::Integer> +{ typedef Exact_NT_backend::Integer Type; }; + +template <> +struct Exact_field_selector::Rational> +{ typedef Exact_NT_backend::Rational Type; }; + +template <> +struct Exact_ring_selector::Rational> +{ typedef Exact_NT_backend::Rational Type; }; #endif template < typename ET > From 2aa0c3487df7e51c52e6cd3e3173a4944adb7fb2 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 11 May 2023 08:24:13 +0100 Subject: [PATCH 53/58] Fix copyright --- Number_types/include/CGAL/cpp_float.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 8e19a1b27e4..b542def7463 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 GeometryFactory (France). +// Copyright (c) 2023 GeometryFactory (France), INRIA Saclay - Ile de France (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org) @@ -7,7 +7,7 @@ // $Id$ // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // -// Author(s) : Andreas Fabri +// Author(s) : Andreas Fabri, Marc Glisse #ifndef CGAL_CPP_FLOAT_H #define CGAL_CPP_FLOAT_H From ed9d5f5ecbd08fb64329cfc5bc434c21ca23fdfb Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 11 May 2023 08:25:35 +0100 Subject: [PATCH 54/58] Change debug macro name --- Number_types/include/CGAL/cpp_float.h | 48 +++++++++++++-------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index b542def7463..42b3947c92c 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -12,7 +12,7 @@ #ifndef CGAL_CPP_FLOAT_H #define CGAL_CPP_FLOAT_H -//#define CGAL_CPPF +//#define CGAL_DEBUG_CPPF #include #include @@ -60,7 +60,7 @@ namespace internal { #endif class cpp_float { -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF boost::multiprecision::cpp_rational rat; #endif @@ -71,7 +71,7 @@ class cpp_float { public: cpp_float() : -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat(), #endif man(), exp() @@ -79,7 +79,7 @@ public: cpp_float(short i) : -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat(i), #endif man(i),exp(0) @@ -87,7 +87,7 @@ public: cpp_float(int i) : -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat(i), #endif man(i),exp(0) @@ -95,12 +95,12 @@ public: cpp_float(long i) : -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat(i), #endif man(i),exp(0) {} -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF cpp_float(const Mantissa& man, int exp, const boost::multiprecision::cpp_rational& rat) : rat(rat), man(man),exp(exp) {} @@ -112,7 +112,7 @@ public: CGAL_HISTOGRAM_PROFILER("size (man/exp)", static_cast(man.backend().size())); } -#ifndef CGAL_CPPF +#ifndef CGAL_DEBUG_CPPF template cpp_float(const Expression& man, int exp) :man(man), exp(exp) @@ -124,7 +124,7 @@ public: #endif cpp_float(double d) -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF : rat(d) #endif { @@ -173,7 +173,7 @@ public: if(u.s.sig){ man.backend().negate(); } -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF assert(rat.sign() == man.sign()); #endif // std::cout << "m = " << m << " * 2^" << exp << std::endl; @@ -188,7 +188,7 @@ public: return os << m.to_double(); #if 0 // dehug output return os << m.man << " * 2 ^ " << m.exp << " ( " << m.to_double() << ") " -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF << " " << m.rat #endif ; @@ -207,7 +207,7 @@ public: friend cpp_float operator-(cpp_float const&x) { -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF return cpp_float(-x.man,x.exp, -x.rat); #else return cpp_float(-x.man,x.exp); @@ -216,7 +216,7 @@ public: cpp_float& operator*=(const cpp_float& other) { -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat *= other.rat; #endif man *= other.man; @@ -226,7 +226,7 @@ public: friend cpp_float operator*(const cpp_float& a, const cpp_float&b){ -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF return cpp_float(a.man*b.man, a.exp+b.exp, a.rat * b.rat); #else return cpp_float(a.man*b.man, a.exp+b.exp); @@ -235,7 +235,7 @@ public: cpp_float operator+=(const cpp_float& other) { -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat += other.rat; #endif int shift = exp - other.exp; @@ -250,7 +250,7 @@ public: return *this; } -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF friend cpp_float operator+(const cpp_float& a, const cpp_float&b){ int shift = a.exp - b.exp; @@ -278,7 +278,7 @@ public: cpp_float operator-=(const cpp_float& other) { -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF rat -= other.rat; #endif int shift = exp - other.exp; @@ -294,7 +294,7 @@ public: return *this; } - #ifdef CGAL_CPPF + #ifdef CGAL_DEBUG_CPPF friend cpp_float operator-(const cpp_float& a, const cpp_float&b){ @@ -338,11 +338,11 @@ public: if(((! b.is_positive()) && a.is_positive()) || (b.is_negative() && a.is_zero()))return false; -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF bool qres = a.rat < b.rat; #endif cpp_float d = b-a; -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF assert(qres == d.is_positive()); #endif return d.is_positive(); @@ -361,25 +361,25 @@ public: friend bool operator==(cpp_float const&a, cpp_float const&b){ -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF bool qres = a.rat == b.rat; #endif int shift = a.exp - b.exp; CGAL_HISTOGRAM_PROFILER("shift==", CGAL::abs(shift)); if(shift > 0){ Mantissa ac = a.man << shift; -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF assert( qres == (ac == b.man)); #endif return ac == b.man; }else if(shift < 0){ Mantissa bc = b.man << -shift; -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF assert(qres == (a.man == bc)); #endif return a.man == bc; } -#ifdef CGAL_CPPF +#ifdef CGAL_DEBUG_CPPF assert(qres == (a.man == b.man)); #endif return a.man==b.man; From 66e68a71eecc5e8a52caee165713fad7120e8ae5 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 11 May 2023 15:45:42 +0100 Subject: [PATCH 55/58] Add three comments made on github --- Number_types/include/CGAL/cpp_float.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Number_types/include/CGAL/cpp_float.h b/Number_types/include/CGAL/cpp_float.h index 42b3947c92c..8f5fc9a89c2 100644 --- a/Number_types/include/CGAL/cpp_float.h +++ b/Number_types/include/CGAL/cpp_float.h @@ -59,6 +59,10 @@ namespace internal { } #endif +// It would have made sense to make this +// boost::multiprecision::number, but we keep that +// for later when we contribute to boost::mp + class cpp_float { #ifdef CGAL_DEBUG_CPPF boost::multiprecision::cpp_rational rat; @@ -233,6 +237,10 @@ public: #endif } + // Marc Glisse commented on github: + // We can sometimes end up with a mantissa that has quite a few zeros at the end, + // but the cases where the mantissa is too long by more than 1 limb should be negligible, + // and normalizing so the mantissa is always odd would have a cost. cpp_float operator+=(const cpp_float& other) { #ifdef CGAL_DEBUG_CPPF @@ -331,6 +339,8 @@ public: return CGAL::is_negative(man); } + // Would it make sense to compare the sign of the exponent? + // to distinguish the interval between ]-1,1[ from the rest. friend bool operator<(const cpp_float& a, const cpp_float& b) { if(((! a.is_positive()) && b.is_positive()) From 4e8259e3095707a4980a290a0c9481e4e44e0cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 11 May 2023 16:59:46 +0200 Subject: [PATCH 56/58] use Exact_integer/Exact_rational --- .../Kernel_23/include/CGAL/Precise_numbers.h | 25 ++++--------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/Kernel_23/test/Kernel_23/include/CGAL/Precise_numbers.h b/Kernel_23/test/Kernel_23/include/CGAL/Precise_numbers.h index d9eda176849..763e0ac9888 100644 --- a/Kernel_23/test/Kernel_23/include/CGAL/Precise_numbers.h +++ b/Kernel_23/test/Kernel_23/include/CGAL/Precise_numbers.h @@ -18,25 +18,10 @@ #define CGAL_PRECISE_NUMBERS_H #include -#if defined CGAL_USE_GMPXX -# include -typedef mpz_class Precise_integer; -typedef mpq_class Precise_rational; -#elif defined CGAL_USE_LEDA -# include -# include -typedef leda_integer Precise_integer; -typedef leda_rational Precise_rational; -#elif defined CGAL_USE_GMP -# include -# include -typedef CGAL::Gmpz Precise_integer; -typedef CGAL::Gmpq Precise_rational; -#else -# include -# include -typedef CGAL::MP_Float Precise_integer; -typedef CGAL::Quotient Precise_rational; -#endif +#include +#include + +using Precise_integer = CGAL::Exact_integer; +using Precise_rational = CGAL::Exact_rational; #endif // CGAL_PRECISE_NUMBERS_H From 9924814e775ee9f9f2df654474b2125860b81ba0 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 12 May 2023 08:07:08 +0100 Subject: [PATCH 57/58] Fix construction of Iso_rectangle/cuboid from Bbox --- Kernel_23/include/CGAL/Iso_cuboid_3.h | 5 +++-- Kernel_23/include/CGAL/Iso_rectangle_2.h | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Kernel_23/include/CGAL/Iso_cuboid_3.h b/Kernel_23/include/CGAL/Iso_cuboid_3.h index a78404b8db0..e9f9a9e46dc 100644 --- a/Kernel_23/include/CGAL/Iso_cuboid_3.h +++ b/Kernel_23/include/CGAL/Iso_cuboid_3.h @@ -84,8 +84,9 @@ public: max_hx, max_hy, max_hz)) {} Iso_cuboid_3(const Bbox_3& bbox) - : Rep(typename R::Construct_iso_cuboid_3()(Return_base_tag(), bbox.xmin(), bbox.ymin(), bbox.zmin(), - bbox.xmax(), bbox.ymax(), bbox.zmax())) {} + : Rep(typename R::Construct_iso_cuboid_3()(Return_base_tag(), + R::Construct_point_3()(bbox.xmin(), bbox.ymin(), bbox.zmin()), + R::Construct_point_3()(bbox.xmax(), bbox.ymax(), bbox.zmax()))) {} decltype(auto) min BOOST_PREVENT_MACRO_SUBSTITUTION () const diff --git a/Kernel_23/include/CGAL/Iso_rectangle_2.h b/Kernel_23/include/CGAL/Iso_rectangle_2.h index 49d2a03b6c3..a4555dd7042 100644 --- a/Kernel_23/include/CGAL/Iso_rectangle_2.h +++ b/Kernel_23/include/CGAL/Iso_rectangle_2.h @@ -78,7 +78,9 @@ public: : Rep(typename R::Construct_iso_rectangle_2()(Return_base_tag(), min_hx, min_hy, max_hx, max_hy, hw)) {} Iso_rectangle_2(const Bbox_2& bbox) - : Rep(typename R::Construct_iso_rectangle_2()(Return_base_tag(), bbox.xmin(), bbox.ymin(), bbox.xmax(), bbox.ymax())) {} + : Rep(typename R::Construct_iso_rectangle_2()(Return_base_tag(), + R::Construct_point_2()(FT(bbox.xmin()), FT(bbox.ymin())), + R::Construct_point_2()(FT(bbox.xmax()), FT(bbox.ymax())))) {} decltype(auto) min BOOST_PREVENT_MACRO_SUBSTITUTION () const From 39e6369d39d3ab4c256ce4e9787ef5c44c2a4f9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 12 May 2023 10:32:54 +0200 Subject: [PATCH 58/58] add missing FT and typename --- Kernel_23/include/CGAL/Iso_cuboid_3.h | 5 +++-- Kernel_23/include/CGAL/Iso_rectangle_2.h | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Kernel_23/include/CGAL/Iso_cuboid_3.h b/Kernel_23/include/CGAL/Iso_cuboid_3.h index e9f9a9e46dc..057c6519ecd 100644 --- a/Kernel_23/include/CGAL/Iso_cuboid_3.h +++ b/Kernel_23/include/CGAL/Iso_cuboid_3.h @@ -30,6 +30,7 @@ template class Iso_cuboid_3 : public R_::Kernel_base::Iso_cuboid_3 { typedef typename R_::RT RT; + typedef typename R_::FT FT; typedef typename R_::Point_3 Point_3; typedef typename R_::Aff_transformation_3 Aff_transformation_3; @@ -85,8 +86,8 @@ public: Iso_cuboid_3(const Bbox_3& bbox) : Rep(typename R::Construct_iso_cuboid_3()(Return_base_tag(), - R::Construct_point_3()(bbox.xmin(), bbox.ymin(), bbox.zmin()), - R::Construct_point_3()(bbox.xmax(), bbox.ymax(), bbox.zmax()))) {} + typename R::Construct_point_3()(FT(bbox.xmin()), FT(bbox.ymin()), FT(bbox.zmin())), + typename R::Construct_point_3()(FT(bbox.xmax()), FT(bbox.ymax()), FT(bbox.zmax())))) {} decltype(auto) min BOOST_PREVENT_MACRO_SUBSTITUTION () const diff --git a/Kernel_23/include/CGAL/Iso_rectangle_2.h b/Kernel_23/include/CGAL/Iso_rectangle_2.h index a4555dd7042..1d27f73f4e2 100644 --- a/Kernel_23/include/CGAL/Iso_rectangle_2.h +++ b/Kernel_23/include/CGAL/Iso_rectangle_2.h @@ -79,8 +79,8 @@ public: Iso_rectangle_2(const Bbox_2& bbox) : Rep(typename R::Construct_iso_rectangle_2()(Return_base_tag(), - R::Construct_point_2()(FT(bbox.xmin()), FT(bbox.ymin())), - R::Construct_point_2()(FT(bbox.xmax()), FT(bbox.ymax())))) {} + typename R::Construct_point_2()(FT(bbox.xmin()), FT(bbox.ymin())), + typename R::Construct_point_2()(FT(bbox.xmax()), FT(bbox.ymax())))) {} decltype(auto) min BOOST_PREVENT_MACRO_SUBSTITUTION () const