blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
7625d388e2b4e1a206af37fbbef0c8ff8110236a
11d7549a3340d2e8f63b4b4304a3413712d63882
/Sys/Dev/Abstract/Pin/cmtPinBase.h
0fcde4b761e5c30823bc46c65af666f80b6e8054
[]
no_license
hogiboygoy/cmt-lib
ac8676a4923d94a1e3e42c4cf4a01a86268e006f
5424b4f206e9ef8c271143113552f78922fb6923
refs/heads/master
2021-01-10T10:05:21.005585
2012-09-12T04:53:19
2012-09-12T04:53:19
52,946,234
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
2,974
h
cmtPinBase.h
//============================================================================== // Cooperative MultiTasking system // CMT system // By Alexander Sibilev //============================================================================== //! Преобразователь битовых полей. Позволяет преобразовывать порядок следования битов struct CmtBitMap8 { const uint8 mMap[8]; uint8 Map( uint8 src ) const; }; uint8 CmtBitMap8::Map(uint8 src) const { uint8 res = 0; uint_8 i = 0; while( src ) { if( src & 1 ) res |= mMap[i]; src >>= 1; i++; } return res; } struct CmtBitMap16 { const uint16 mMap[16]; uint16 Map( uint16 src ) const; }; uint16 CmtBitMap16::Map(uint16 src) const { uint16 res = 0; uint_8 i = 0; while( src ) { if( src & 1 ) res |= mMap[i]; src >>= 1; i++; } return res; } struct CmtBitMap32 { const uint32 mMap[32]; uint32 Map( uint32 src ) const; }; uint32 CmtBitMap32::Map(uint32 src) const { uint32 res = 0; uint_8 i = 0; while( src ) { if( src & 1 ) res |= mMap[i]; src >>= 1; i++; } return res; } //! Один или несколько выводов, действующих как одно целое class CmtPin { public: virtual void SetDirIn( bool in = true ) = 0; virtual bool DirIn() const = 0; virtual bool In() const = 0; virtual void Set() = 0; virtual void Reset() = 0; }; //! Группа из восьми выводов (восьмибитная шина) class CmtPinGroup8 { public: virtual void SetDirIn( uint8 dirIn = 0xff ) = 0; virtual uint8 DirIn() const = 0; virtual uint8 In() const = 0; virtual void Set( uint8 mask ) = 0; virtual void Reset( uint8 mask ) = 0; virtual void Out( uint8 value ) = 0; }; //! Группа из шестнадцати выводов (шестнадцатибитная шина) class CmtPinGroup16 { public: virtual void SetDirIn( uint16 dirIn = 0xff ) = 0; virtual uint16 DirIn() const = 0; virtual uint16 In() const = 0; virtual void Set( uint16 mask ) = 0; virtual void Reset( uint16 mask ) = 0; virtual void Out( uint16 value ) = 0; }; //! Группа из тридцати двух выводов (тридцатидвухбитная шина) class CmtPinGroup32 { public: virtual void SetDirIn( uint32 dirIn = 0xff ) = 0; virtual uint32 DirIn() const = 0; virtual uint32 In() const = 0; virtual void Set( uint32 mask ) = 0; virtual void Reset( uint32 mask ) = 0; virtual void Out( uint32 value ) = 0; };
e6a5941945dca30d9c40a596fb429e35c5ccba14
dbcb8457a0fa8c18003fb8efec8990bfea39a706
/backtrace_libbt/bktce.h
b6c615bb9eac39db94ffbe59a505b78c28a45d26
[]
no_license
Wei-N-Ning/cxxDebugGems
c7b2e5fd5488a80a3964a26dce7a1af9c6cb6a3c
d3481074f84fef233b57f2beb01fbe77fb086f7d
refs/heads/master
2021-07-21T01:33:15.527164
2020-04-23T21:56:54
2020-04-23T21:56:54
144,344,297
0
0
null
null
null
null
UTF-8
C++
false
false
2,054
h
bktce.h
#ifndef _BACKTRACE_LIB_H #define _BACKTRACE_LIB_H #include <string> #include <vector> #include <cstdlib> using string_t = std::string; using bool_t = bool; using native_frame_ptr_t = const void *; //! A textural representation of an x86_64 runtime stack-frame; //! Provides accessor methods to retrieve the frame pointer; //! If debug symbols are available in the target binary, source code //! filename and line number are also available class Frame { public: explicit Frame(native_frame_ptr_t i_address); //! Returns the native frame pointer; native_frame_ptr_t get() const; //! Returns a print-friendly string; string_t toString() const; //! Is source code information accessible bool_t hasSourceInfo() const; //! Returns full path to the source code; const string_t& getSourceFilename() const; //! Returns full path to the binary file; const string_t& getBinaryFilename() const; //! Return the source code line number std::size_t getSourceLineNumber() const; private: native_frame_ptr_t m_native; string_t m_function; string_t m_sourceFilename; string_t m_binaryFilename; std::size_t m_sourceLineNumber; }; //! The textural representation of an x86_64 runtime stack. //! The instantiation of the class triggeres stack unwinding. //! The caller may use "numSkippedFrames" parameter to control the //! position of the starting frame. //! Note that if the target is built with fomit-frame-pointer (or other //! equivalent options) this container may be empty; class Stacktrace { public: // skip the call to the constructor and the unwinding function Stacktrace(std::size_t i_numSkippedFrames = 2); //! access each frame from the interior to the exterior; const std::vector<Frame>& getFrames() const; std::size_t size() const; private: std::vector<Frame> m_frames; }; //! unwind the stack then writes out the information collected from //! each frame to stdout. void simple_backtrace(); #endif // _BACKTRACE_LIB_H
d2279c68ae34c52d6bb20736d5cc7ac879cf8494
47cceefe390101069de80d0b1af4ee7bdbec1d6e
/groups/bsl/bslstl/bslstl_list.t.cpp
5c3f07128508c8205e44783bc3fe41c7dbd75019
[ "Apache-2.0" ]
permissive
mversche/bde
a184da814209038c8687edaa761f420aa3234ae2
842c7e5c372eb5c29f7984f3beb4010d1c493521
refs/heads/master
2021-01-21T23:45:25.376416
2015-11-06T19:15:10
2015-11-06T19:15:10
29,453,231
2
0
null
2015-01-19T04:13:24
2015-01-19T04:13:22
null
UTF-8
C++
false
false
390,799
cpp
bslstl_list.t.cpp
// bslstl_list.t.cpp -*-C++-*- #include <bslstl_list.h> #include <bslstl_iterator.h> #include <bslma_allocator.h> #include <bslma_default.h> #include <bslma_defaultallocatorguard.h> // for testing only #include <bslma_newdeleteallocator.h> #include <bslma_testallocator.h> // for testing only #include <bslma_testallocatorexception.h> // for testing only #include <bslmf_assert.h> // for testing only #include <bslmf_issame.h> // for testing only #include <bsls_alignmentutil.h> #include <bsls_bsltestutil.h> #include <bsls_objectbuffer.h> #include <bsls_platform.h> #include <bsls_stopwatch.h> // for testing only #include <bsls_types.h> #include <bsltf_nonassignabletesttype.h> // for testing only #include <stdexcept> // 'length_error', 'out_of_range' #include <algorithm> // 'next_permutation' #include <functional> // 'less' #include <cctype> #include <cstdio> #include <cstdlib> #include <cstddef> using namespace BloombergLP; using namespace std; using namespace bsl; //============================================================================= // TEST PLAN //----------------------------------------------------------------------------- // Overview // -------- // The object under testing is a container whose interface and contract is // dictated by the C++ standard. The general concerns are compliance, // exception safety (including the strong guarantee for insert and emplace), // and proper dispatching (for member function templates such as assign and // insert). In addition, it is a value-semantic type whose salient attributes // are size and value of each element in sequence. This container is // implemented in the form of a class template, and thus its proper // instantiation for several types is a concern. Regarding the allocator // template argument, we use mostly a 'bsl::allocator' together with a // 'bslma_TestAllocator' mechanism, but we also verify the C++ standard. // // This test plan follows the standard approach for components implementing // value-semantic containers. We have chosen as *primary* *manipulators* the // 'push_back' and 'clear' methods to be used by the generator functions 'g' // and 'gg'. Note that some manipulators must support aliasing, and those // that perform memory allocation must be tested for exception neutrality via // the 'bslma_testallocator' component. After the mandatory sequence of cases // (1--10) for value-semantic types (cases 5 and 10 are not implemented, as // there is not output or streaming below bslstl), we test each individual // constructor, manipulator, and accessor in subsequent cases. // // Abbreviations: // -------------- // Throughout this test driver, we use // T VALUE (template argument, no default) // A ALLOCATOR (template argument, default: bsl::allocator<T>) // list<T,A> bsl::list<VALUE_TYPE,ALLOCATOR> // list list<T,A> // Args... shorthand for a family of templates <A1>, <A1,A2>, etc. // // The of tests below is grouped as per the definition of list in the C++ // standard (construct, iterators, capacity...) rather than the canonical // grouping of members per BDE convention (CREATORS, MANIPULATORS, ACCESSORS). // ---------------------------------------------------------------------------- // class list<T,A> (list) // ============================================================================ // // TYPES: // [21] reference // [21] const_reference // [16] iterator // [16] const_iterator // [21] size_type // [21] difference_type // [21] value_type // [21] allocator_type // [21] pointer // [21] const_pointer // [16] reverse_iterator // [16] const_reverse_iterator // [22] TYPE TRAITS // // CREATORS: // [ 2] list(const A& a = A()); // [12] list(size_type n, const T& val = T(), const A& a = A()); // [12] template<class InputIter> // list(InputIter first, InputIter last, const A& a = A()); // [ 7] list(const list& orig, const A& = A()); // [ 2] ~list(); // /// MANIPULATORS: // [ 9] operator=(list&); // [13] template <class InputIter> // void assign(InputIter first, InputIter last); // [13] void assign(size_type numElements, const T& val); // [16] iterator begin(); // [16] iterator end(); // [16] reverse_iterator rbegin(); // [16] reverse_iterator rend(); // [14] void resize(size_type n); // [14] void resize(size_type n, const T& val); // [15] reference front(); // [15] reference back(); // [17] void push_front(const T&); // [18] void pop_front(); // [17] void push_back(const T&); // [18] void pop_back(); // [17] iterator insert(const_iterator pos, const T& val); // [17] iterator insert(const_iterator pos, size_type n, const T& val); // [17] template <class InputIter> // void insert(const_iterator pos, InputIter first, InputIter last); // [18] iterator erase(const_iterator pos); // [18] iterator erase(const_iterator first, const_iterator last); // [19] void swap(list&); // [ 2] void clear(); // [24] void splice(iterator pos, list& other); // [24] void splice(iterator pos, list& other, iterator i); // [24] void splice(iterator pos, list& other, iterator first, iterator last); // [25] void remove(const T& val); // [25] template <class PRED> void remove_if(PRED p); // [26] void unique(); // [26] template <class BINPRED> void unique(BINPRED p); // [27] void merge(list& other); // [27] template <class COMP> void merge(list& other, COMP c); // [28] void sort(); // [28] template <class COMP> void sort(COMP c); // [23] void reverse(); // // ACCESSORS: // [11] A get_allocator() const; // [16] const_iterator begin(); // [16] const_iterator end(); // [16] const_reverse_iterator rbegin(); // [16] const_reverse_iterator rend(); // [ 4] bool empty() const; // [ 4] size_type size() const; // [14] size_type max_size() const; // [15] const_reference front() const; // [15] const_reference back() const; // // FREE OPERATORS: // [ 6] bool operator==(const list<T,A>&, const list<T,A>&); // [ 6] bool operator!=(const list<T,A>&, const list<T,A>&); // [20] bool operator<(const list<T,A>&, const list<T,A>&); // [20] bool operator>(const list<T,A>&, const list<T,A>&); // [20] bool operator<=(const list<T,A>&, const list<T,A>&); // [20] bool operator>=(const list<T,A>&, const list<T,A>&); // [19] void swap(list<T,A>&, list<T,A>&); //----------------------------------------------------------------------------- // [ 1] BREATHING TEST // [11] ALLOCATOR-RELATED CONCERNS // [29] USAGE EXAMPLE // // TEST APPARATUS: GENERATOR FUNCTIONS // [ 3] int ggg(list<T,A> *object, const char *spec, int vF = 1); // [ 3] list<T,A>& gg(list<T,A> *object, const char *spec); // [ 8] list<T,A> g(const char *spec); // [ 4] iterator succ(iterator); // [ 4] const_iterator succ(iterator) const; // [ 4] T& nthElem(list& x, int n); // [ 4] const T& nthElem(list& x, int n) const; // [ 4] bool is_mutable(T&); // [ 4] bool is_mutable(const T&); //----------------------------------------------------------------------------- //============================================================================= // STANDARD BDE ASSERT TEST MACRO //----------------------------------------------------------------------------- // NOTE: THIS IS A LOW-LEVEL COMPONENT AND MAY NOT USE ANY C++ LIBRARY // FUNCTIONS, INCLUDING IOSTREAMS. namespace { int testStatus = 0; void aSsErT(int c, const char *s, int i) { if (c) { printf("Error " __FILE__ "(%d): %s (failed)\n", i, s); if (testStatus >= 0 && testStatus <= 100) ++testStatus; } } } // close unnamed namespace # define ASSERT(X) { aSsErT(!(X), #X, __LINE__); } //============================================================================= // STANDARD BDE LOOP-ASSERT TEST MACROS //----------------------------------------------------------------------------- // NOTE: This implementation of LOOP_ASSERT macros must use printf since // cout uses new and must not be called during exception testing. #define LOOP_ASSERT(I,X) { \ if (!(X)) { printf("%s", #I ": "); dbg_print(I); printf("\n"); \ fflush(stdout); aSsErT(1, #X, __LINE__); } } #define LOOP2_ASSERT(I,J,X) { \ if (!(X)) { printf("%s", #I ": "); dbg_print(I); printf("\t"); \ printf("%s", #J ": "); dbg_print(J); printf("\n"); \ fflush(stdout); aSsErT(1, #X, __LINE__); } } #define LOOP3_ASSERT(I,J,K,X) { \ if (!(X)) { printf("%s", #I ": "); dbg_print(I); printf("\t"); \ printf("%s", #J ": "); dbg_print(J); printf("\t"); \ printf("%s", #K ": "); dbg_print(K); printf("\n"); \ fflush(stdout); aSsErT(1, #X, __LINE__); } } #define LOOP4_ASSERT(I,J,K,L,X) { \ if (!(X)) { printf("%s", #I ": "); dbg_print(I); printf("\t"); \ printf("%s", #J ": "); dbg_print(J); printf("\t"); \ printf("%s", #K ": "); dbg_print(K); printf("\t"); \ printf("%s", #L ": "); dbg_print(L); printf("\n"); \ fflush(stdout); aSsErT(1, #X, __LINE__); } } #define LOOP5_ASSERT(I,J,K,L,M,X) { \ if (!(X)) { printf("%s", #I ": "); dbg_print(I); printf("\t"); \ printf("%s", #J ": "); dbg_print(J); printf("\t"); \ printf("%s", #K ": "); dbg_print(K); printf("\t"); \ printf("%s", #L ": "); dbg_print(L); printf("\t"); \ printf("%s", #M ": "); dbg_print(M); printf("\n"); \ fflush(stdout); aSsErT(1, #X, __LINE__); } } //============================================================================= // SEMI-STANDARD TEST OUTPUT MACROS //----------------------------------------------------------------------------- #define Q(X) printf("<| " #X " |>\n"); // Quote identifier literally. #define P(X) dbg_print(#X " = ", X, "\n") // Print identifier and value. #define P_(X) dbg_print(#X " = ", X, ", ") // P(X) without '\n' #define L_ __LINE__ // current Line number #define T_ putchar('\t'); // Print a tab (w/o newline) // ============================================================================ // PRINTF FORMAT MACRO ABBREVIATIONS // ---------------------------------------------------------------------------- #define ZU BSLS_BSLTESTUTIL_FORMAT_ZU //============================================================================= // GLOBAL TYPEDEFS/CONSTANTS FOR TESTING //----------------------------------------------------------------------------- // TYPES class TestType; class TestTypeNoAlloc; class TestTypeOtherAlloc; template <class T> class OtherAllocator; typedef TestType T; // uses 'bslma' allocators typedef TestTypeNoAlloc TNA; // does not use 'bslma' allocators typedef TestTypeOtherAlloc TOA; // Uses non-'bslma' allocators typedef OtherAllocator<TestType> OAT; // Non-'bslma' allocator typedef OtherAllocator<TestTypeOtherAlloc> OATOA; // Non-'bslma' allocator typedef bsls::Types::Int64 Int64; typedef bsls::Types::Uint64 Uint64; // TEST OBJECT (unless o/w specified) typedef char Element; // every TestType's value type typedef list<T> Obj; // CONSTANTS const char UNINITIALIZED_VALUE = '_'; const char DEFAULT_VALUE = 'z'; const char VA = 'A'; const char VB = 'B'; const char VC = 'C'; const char VD = 'D'; const char VE = 'E'; const char VF = 'F'; const char VG = 'G'; const char VH = 'H'; // All test types have character value type. const int LARGE_SIZE_VALUE = 10; // Declare a large value for insertions into the list. //============================================================================= // GLOBAL HELPER FUNCTIONS FOR TESTING //----------------------------------------------------------------------------- // Fundamental-type-specific print functions. inline void dbg_print(char c) { printf("%c", c); fflush(stdout); } inline void dbg_print(unsigned char c) { printf("%c", c); fflush(stdout); } inline void dbg_print(signed char c) { printf("%c", c); fflush(stdout); } inline void dbg_print(short val) { printf("%hd", val); fflush(stdout); } inline void dbg_print(unsigned short val) {printf("%hu", val); fflush(stdout);} inline void dbg_print(int val) { printf("%d", val); fflush(stdout); } inline void dbg_print(unsigned int val) { printf("%u", val); fflush(stdout); } inline void dbg_print(long val) { printf("%lu", val); fflush(stdout); } inline void dbg_print(unsigned long val) { printf("%lu", val); fflush(stdout);} inline void dbg_print(Int64 val) { printf("%lld", val); fflush(stdout); } inline void dbg_print(Uint64 val) { printf("%llu", val); fflush(stdout); } inline void dbg_print(float val) { printf("'%f'", val); fflush(stdout); } inline void dbg_print(double val) { printf("'%f'", val); fflush(stdout); } inline void dbg_print(const char* s) { printf("\"%s\"", s); fflush(stdout); } // List-specific print function. template <class TYPE, class ALLOC> void dbg_print(const list<TYPE,ALLOC>& v) { if (v.empty()) { printf("<empty>"); } else { typedef typename list<TYPE,ALLOC>::const_iterator iter; for (iter i = v.begin(); i != v.end(); ++i) { dbg_print(*i); } } fflush(stdout); } // Generic debug print function (3-arguments). template <class T> void dbg_print(const char* s, const T& val, const char* nl) { printf("%s", s); dbg_print(val); printf("%s", nl); fflush(stdout); } // Return the 'n'th iterator after 'it': template <class ITER> inline ITER succ(ITER it, int n = 1) { for (int i = 0; i < n; ++i) ++it; return it; } // Return the 'n'th element of container x, counting from 0. (I.e., if for // n == 0, return x.front().) template <class C> inline typename C::value_type& nthElem(C& x, int n) { return *succ(x.begin(), n); } template <class C> inline const typename C::value_type& nthElem(const C& x, int n) { return *succ(x.begin(), n); } template <class T> inline bool is_mutable(T& /* x */) { return true; } // Return 'true'. Preferred match if 'x' is a modifiable lvalue. template <class T> inline bool is_mutable(const T& /* x */) { return false; } // Return 'false'. Preferred match if 'x' is an rvalue or const lvalue. template <class T> inline T as_rvalue(const T& x) { return x; } // Return a copy of 'x' as an rvalue, even if called on a (possibly // const-qualified) lvalue or reference argument. template <class T> inline char value_of(const T& x) { return static_cast<char>(x); } // Return the char value corresponding to 'x'. Specialized for each test // type. //============================================================================= // GLOBAL HELPER CLASSES FOR TESTING //----------------------------------------------------------------------------- // STATIC DATA static int verbose, veryVerbose, veryVeryVerbose, veryVeryVeryVerbose; static bslma::TestAllocator *globalAllocator_p, *defaultAllocator_p, *objectAllocator_p; static int numDefaultCtorCalls = 0; static int numCharCtorCalls = 0; static int numCopyCtorCalls = 0; static int numAssignmentCalls = 0; static int numDestructorCalls = 0; // ==================== // class ExceptionGuard // ==================== template <class VALUE_TYPE> struct ExceptionGuard { // This scoped guard helps to verify the full guarantee of rollback in // exception-throwing code. // DATA int d_lineNum; VALUE_TYPE d_value; VALUE_TYPE *d_object_p; public: // CREATORS ExceptionGuard(VALUE_TYPE *object, const VALUE_TYPE& value, int line) : d_lineNum(line) , d_value(value) , d_object_p(object) {} ~ExceptionGuard() { if (d_object_p) { const int LINE = d_lineNum; LOOP_ASSERT(LINE, d_value == *d_object_p); } } // MANIPULATORS void resetValue(const VALUE_TYPE& value, int line) { d_lineNum = line; d_value = value; } void release() { d_object_p = 0; } }; // ============== // class TestType // ============== class TestType { // This test type contains a 'char' in some allocated storage. It counts // the number of default and copy constructions, assignments, and // destructions. It has no traits other than using a 'bslma' allocator. // It could have the bit-wise moveable traits but we defer that trait to // the 'MoveableTestType'. char *d_data_p; bslma::Allocator *d_allocator_p; void init(const TestType& x) { ++numCharCtorCalls; d_data_p = (char *)d_allocator_p->allocate(sizeof(char)); *d_data_p = *x.d_data_p; } public: // TRAITS BSLMF_NESTED_TRAIT_DECLARATION(TestType, bslma::UsesBslmaAllocator); // CREATORS explicit TestType(bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ++numDefaultCtorCalls; d_data_p = (char *)d_allocator_p->allocate(sizeof(char)); *d_data_p = DEFAULT_VALUE; } explicit TestType(char c, bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ++numCharCtorCalls; d_data_p = (char *)d_allocator_p->allocate(sizeof(char)); *d_data_p = c; } TestType(const TestType& original, bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ++numCopyCtorCalls; ASSERT(&original != this); d_data_p = (char *)d_allocator_p->allocate(sizeof(char)); *d_data_p = *original.d_data_p; } TestType(int a1, const TestType& x, bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ASSERT(1 == a1); init(x); } TestType(int a1, int a2, const TestType& x, bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ASSERT(1 == a1); ASSERT(2 == a2); init(x); } TestType(int a1, int a2, int a3, const TestType& x, bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ASSERT(1 == a1); ASSERT(2 == a2); ASSERT(3 == a3); init(x); } TestType(int a1, int a2, int a3, int a4, const TestType& x, bslma::Allocator *ba = 0) : d_data_p(0) , d_allocator_p(bslma::Default::allocator(ba)) { ASSERT(1 == a1); ASSERT(2 == a2); ASSERT(3 == a3); ASSERT(4 == a4); init(x); } ~TestType() { ++numDestructorCalls; ASSERT(d_data_p != 0); *d_data_p = UNINITIALIZED_VALUE; d_allocator_p->deallocate(d_data_p); d_data_p = 0; d_allocator_p = 0; } // MANIPULATORS TestType& operator=(const TestType& rhs) { ++numAssignmentCalls; if (&rhs != this) { char *newData = (char *)d_allocator_p->allocate(sizeof(char)); *d_data_p = UNINITIALIZED_VALUE; d_allocator_p->deallocate(d_data_p); d_data_p = newData; *d_data_p = *rhs.d_data_p; } return *this; } void setDatum(char c) { *d_data_p = c; } // ACCESSORS char value() const { return *d_data_p; } bslma::Allocator *allocator() const { return d_allocator_p; } void print() const { if (d_data_p) { ASSERT(isalpha(*d_data_p)); printf("%c (int: %d)\n", *d_data_p, (int)*d_data_p); } else { printf("VOID\n"); } } }; // FREE OPERATORS bool operator==(const TestType& lhs, const TestType& rhs) { ASSERT(isalpha(lhs.value())); ASSERT(isalpha(rhs.value())); return lhs.value() == rhs.value(); } bool operator<(const TestType& lhs, const TestType& rhs) { ASSERT(isalpha(lhs.value())); ASSERT(isalpha(rhs.value())); return lhs.value() < rhs.value(); } // TestType-specific print function. void dbg_print(const TestType& rhs) { printf("%c", rhs.value()); fflush(stdout); } // TestType-specific value_of function. template <> inline char value_of<TestType>(const TestType& x) { return x.value(); } // Specializations of std::less and std::equal_to should never be called. // Certain algorithms have variants that call either a predicate function or // operator<. A non-compliant implementation may implement the latter variant // by calling the former variant using std::less because most of the time, // they are identical. Unfortunately, the standard does not require that // std::less do the same thing as operator<. The same problem occurs with // std::equal_to and operator==. These specializations suppress the default // definitions of std::less and std::equal_t and intercept stray calls by // non-compliant implementations. namespace std { template <> struct less<TestType> : binary_function<TestType, TestType, bool> { bool operator()(const TestType& a, const TestType& b) const { ASSERT(!"less<TestType> should not be called"); return a < b; } }; template <> struct equal_to<TestType> : binary_function<TestType, TestType, bool> { bool operator()(const TestType& a, const TestType& b) const { ASSERT(!"equal_to<TestType> should not be called"); return a == b; } }; } // close namespace std // ===================== // class TestTypeNoAlloc // ===================== class TestTypeNoAlloc { // This test type has footprint and interface identical to 'TestType'. It // also counts the number of default and copy constructions, assignments, // and destructions. // DATA union { char d_char; char d_fill[sizeof(TestType)]; } d_u; public: // CREATORS TestTypeNoAlloc() { d_u.d_char = DEFAULT_VALUE; ++numDefaultCtorCalls; } explicit TestTypeNoAlloc(char c) { d_u.d_char = c; ++numCharCtorCalls; } TestTypeNoAlloc(const TestTypeNoAlloc& original) { d_u.d_char = original.d_u.d_char; ++numCopyCtorCalls; } ~TestTypeNoAlloc() { ++numDestructorCalls; d_u.d_char = '_'; } // MANIPULATORS TestTypeNoAlloc& operator=(const TestTypeNoAlloc& rhs) { ++numAssignmentCalls; d_u.d_char = rhs.d_u.d_char; return *this; } // ACCESSORS char value() const { return d_u.d_char; } void print() const { ASSERT(isalpha(d_u.d_char)); printf("%c (int: %d)\n", d_u.d_char, (int)d_u.d_char); } }; // FREE OPERATORS bool operator==(const TestTypeNoAlloc& lhs, const TestTypeNoAlloc& rhs) { ASSERT(isalpha(lhs.value())); ASSERT(isalpha(rhs.value())); return lhs.value() == rhs.value(); } // TestType-specific print function. void dbg_print(const TestTypeNoAlloc& rhs) { printf("%c", rhs.value()); fflush(stdout); } // TestTypeTypeNoAlloc-specific value_of function. template <> inline char value_of<TestTypeNoAlloc>(const TestTypeNoAlloc& x) { return x.value(); } // ==================== // class OtherAllocator // ==================== bslma::TestAllocator OtherAllocatorDefaultImp; template <class T> class OtherAllocator { bslma::Allocator* d_implementation; public: // An STL allocator type other than 'bsl::allocator'. Like // 'bsl::allocator', it is constructed with a 'bslma_Allocator' pointer, // but it is not implicitly convertible from 'bslma_Allocator*'. // TYPES typedef T value_type; typedef T *pointer; typedef const T *const_pointer; typedef T& reference; typedef const T& const_reference; typedef size_t size_type; typedef ptrdiff_t difference_type; template <class U> struct rebind { typedef OtherAllocator<U> other; }; // Constructors explicit OtherAllocator(bslma::Allocator* a) : d_implementation(a) { } OtherAllocator() : d_implementation(&OtherAllocatorDefaultImp) { } template <class U> OtherAllocator(const OtherAllocator<U>& other) : d_implementation(other.implementation()) { } // Manipulators T* allocate(size_t n, const void* = 0) { return static_cast<T*>(d_implementation->allocate(sizeof(T)*n)); } void deallocate(T* p, size_t) { d_implementation->deallocate(p); } void construct(pointer p, const T& v) { ::new((void*) p) T(v); } void destroy(pointer p) { p->~T(); } // Accessors size_t max_size() const { return ((size_t)-1) / sizeof(T); } bslma::Allocator* implementation() const { return d_implementation; } }; template <class T, class U> inline bool operator==(const OtherAllocator<T>& a, const OtherAllocator<U>& b) { return a.implementation() == b.implementation(); } template <class T, class U> inline bool operator!=(const OtherAllocator<T>& a, const OtherAllocator<U>& b) { return a.implementation() != b.implementation(); } // ======================== // class TestTypeOtherAlloc // ======================== class TestTypeOtherAlloc { // This test type contains a 'char' in some allocated storage. It counts // the number of default and copy constructions, assignments, and // destructions. It has no traits other than using a 'bslma' allocator. // It could have the bit-wise moveable traits but we defer that trait to // the 'MoveableTestTypeOtherAlloc'. char *d_data_p; OtherAllocator<char> d_allocator; public: // TYPES typedef OtherAllocator<char> allocator_type; // CREATORS explicit TestTypeOtherAlloc(allocator_type a = allocator_type()) : d_data_p(0) , d_allocator(a) { ++numDefaultCtorCalls; d_data_p = d_allocator.allocate(1); *d_data_p = DEFAULT_VALUE; } explicit TestTypeOtherAlloc(char c, allocator_type a = allocator_type()) : d_data_p(0) , d_allocator(a) { ++numCharCtorCalls; d_data_p = d_allocator.allocate(1); *d_data_p = c; } TestTypeOtherAlloc(const TestTypeOtherAlloc& original, allocator_type a = allocator_type()) : d_data_p(0) , d_allocator(a) { ++numCopyCtorCalls; if (&original != this) { d_data_p = d_allocator.allocate(1); *d_data_p = *original.d_data_p; } } ~TestTypeOtherAlloc() { ++numDestructorCalls; *d_data_p = UNINITIALIZED_VALUE; d_allocator.deallocate(d_data_p, 1); d_data_p = 0; } // MANIPULATORS TestTypeOtherAlloc& operator=(const TestTypeOtherAlloc& rhs) { ++numAssignmentCalls; if (&rhs != this) { char *newData = d_allocator.allocate(1); *d_data_p = UNINITIALIZED_VALUE; d_allocator.deallocate(d_data_p, 1); d_data_p = newData; *d_data_p = *rhs.d_data_p; } return *this; } void setDatum(char c) { *d_data_p = c; } // ACCESSORS char value() const { return *d_data_p; } allocator_type get_allocator() const { return d_allocator; } bslma::Allocator* allocator() const { return d_allocator.implementation(); } void print() const { if (d_data_p) { ASSERT(isalpha(*d_data_p)); printf("%c (int: %d)\n", *d_data_p, (int)*d_data_p); } else { printf("VOID\n"); } } }; // FREE OPERATORS bool operator==(const TestTypeOtherAlloc& lhs, const TestTypeOtherAlloc& rhs) { ASSERT(isalpha(lhs.value())); ASSERT(isalpha(rhs.value())); return lhs.value() == rhs.value(); } bool operator<(const TestTypeOtherAlloc& lhs, const TestTypeOtherAlloc& rhs) { ASSERT(isalpha(lhs.value())); ASSERT(isalpha(rhs.value())); return lhs.value() < rhs.value(); } // TestTypeOtherAlloc-specific print function. void dbg_print(const TestTypeOtherAlloc& rhs) { printf("%c", rhs.value()); fflush(stdout); } // TestTypeOtherAlloc-specific value_of function. template <> inline char value_of<TestTypeOtherAlloc>(const TestTypeOtherAlloc& x) { return x.value(); } // ============= // class RandSeq // ============= template <class TYPE> class RandSeq { // Random-access sequence. This class is a simple wrapper around an array // offering a random-access iterator access via the 'begin' and 'end' // accessors. The iterator is specifically a *random-access* iterator and // its value type is the parameterized 'TYPE'. // DATA TYPE* d_value; size_t d_len; public: // TYPES typedef const TYPE *const_iterator; // Random-access iterator. // CREATORS RandSeq() : d_value(0), d_len(0) {} RandSeq(const char* value); ~RandSeq(); // ACCESSORS const TYPE& operator[](size_t index) const; const_iterator begin() const; const_iterator end() const; }; // CREATORS template <class TYPE> RandSeq<TYPE>::RandSeq(const char* value) : d_value(0), d_len(std::strlen(value)) { if (d_len) { d_value = (TYPE*) ::operator new(d_len * sizeof(TYPE)); for (size_t i = 0; i < d_len; ++i) { ::new((void*) &d_value[i]) TYPE(value[i]); } } } template <class TYPE> RandSeq<TYPE>::~RandSeq() { for (size_t i = 0; i < d_len; ++i) { d_value[i].~TYPE(); } ::operator delete(d_value); } // ACCESSORS template <class TYPE> const TYPE& RandSeq<TYPE>::operator[](size_t index) const { return d_value[index]; } template <class TYPE> typename RandSeq<TYPE>::const_iterator RandSeq<TYPE>::begin() const { return const_iterator(d_value); } template <class TYPE> typename RandSeq<TYPE>::const_iterator RandSeq<TYPE>::end() const { return const_iterator(d_value + d_len); } // ============== // class InputSeq // ============== template <class TYPE> class InputSeq; template <class TYPE> class InputSeqConstIterator; template <class TYPE> bool operator==(InputSeqConstIterator<TYPE> a, InputSeqConstIterator<TYPE> b); template <class TYPE> class InputSeqConstIterator { // Const iterator type for the InputSeq container type. This iterator is // specifically an *input* iterator. Iteration is not intended to be // restarted from a copy of an iterator. If one iterator is a copy of // another, then incrementing either one will invalidate the other one. // Use of an invalidated iterator is checked for. typedef typename RandSeq<TYPE>::const_iterator BaseIterType; typedef bsl::iterator_traits<BaseIterType> BaseIterTraits; // Input iterators are not value-semantic types. In particular, if two // iterators compare equal and both are incremented, they need not // continue to compare equal. We allow only one "active" iterator on a // given sequence. We keep track of the active iterator by keeping a // master iterator in the container. The 'd_master' member of valid // iterator will point to the master and its 'd_imp' member will have the // same value as the master. If a valid iterator is copied by copy // construction or assignment, then both the original and copy are valid. // However, as soon as one is incremented, the 'd_imp' of other one will // no longer match the master, making it invalid. As a special case, an // iterator with a null master is valid but not incrementable. These // special iterators are used for the 'end' iterator and for the return of // the post-increment operator. BaseIterType *d_master; BaseIterType d_imp; InputSeqConstIterator(BaseIterType *m, BaseIterType i) : d_master(m), d_imp(i) { } // Construct an iterator using 'm' as the address of the master // iterator and 'i' as the initial iterator position. If 'm' is null, // then the resulting iterator is valid, but may not be incremented. // If 'm' is non-null and '*m' does not equal 'i', then the resulting // iterator is invalid -- it may not be dereferenced or incremented, // but it may be assigned a new value. friend class InputSeq<TYPE>; template <class T> friend bool operator==(InputSeqConstIterator<T> a, InputSeqConstIterator<T> b); public: typedef std::input_iterator_tag iterator_category; typedef typename BaseIterTraits::value_type value_type; typedef typename BaseIterTraits::difference_type difference_type; typedef typename BaseIterTraits::pointer pointer; typedef typename BaseIterTraits::reference reference; // Use compiler-generated copy constructor, assignment, and destructor: // InputSeqConstIterator(const InputSeqConstIterator&); // InputSeqConstIterator& operator=(const InputSeqConstIterator&); // ~InputSeqConstIterator(); // MANIPULATORS InputSeqConstIterator& operator++() { ASSERT(d_master && d_imp == *d_master); // test if incrementable if (!(d_master && d_imp == *d_master)) { // Continue test despite error by creating self-mastered iterator. // This assignment also prevents cascade errors. d_master = &d_imp; } d_imp = ++*d_master; return *this; } const InputSeqConstIterator operator++(int) { InputSeqConstIterator ret(0,d_imp); ++*this; return ret; } // ACCESSORS reference operator*() const { ASSERT( ! d_master || d_imp == *d_master); // test if valid return *d_imp; } pointer operator->() const { return &this->operator*(); } }; template <class TYPE> class InputSeq { // This array class is a simple wrapper on a 'char' array offering an // input iterator access via the 'begin' and 'end' accessors. The // iterator is specifically an *input* iterator and its value type // is the parameterized 'TYPE'. // DATA RandSeq<TYPE> d_value; mutable typename RandSeq<TYPE>::const_iterator d_masterIter; public: // TYPES typedef InputSeqConstIterator<TYPE> const_iterator; // CREATORS InputSeq() {} InputSeq(const char* value); // ACCESSORS const_iterator begin() const; const_iterator end() const; const TYPE operator[](int idx) const { return d_value[idx]; } }; // CREATORS template <class TYPE> InputSeq<TYPE>::InputSeq(const char* value) : d_value(value) { } // ACCESSORS template <class TYPE> inline InputSeqConstIterator<TYPE> InputSeq<TYPE>::begin() const { d_masterIter = d_value.begin(); return InputSeqConstIterator<TYPE>(&d_masterIter, d_masterIter); } template <class TYPE> inline InputSeqConstIterator<TYPE> InputSeq<TYPE>::end() const { return InputSeqConstIterator<TYPE>(0, d_value.end()); } template <class TYPE> inline bool operator==(InputSeqConstIterator<TYPE> a, InputSeqConstIterator<TYPE> b) { return (a.d_imp == b.d_imp && (a.d_master == b.d_master || 0 == a.d_master || 0 == b.d_master)); } template <class TYPE> inline bool operator!=(InputSeqConstIterator<TYPE> a, InputSeqConstIterator<TYPE> b) { return ! (a == b); } // ==================== // class LimitAllocator // ==================== template <class ALLOC> class LimitAllocator : public ALLOC { public: // TYPES typedef typename ALLOC::value_type value_type; typedef typename ALLOC::pointer pointer; typedef typename ALLOC::const_pointer const_pointer; typedef typename ALLOC::reference reference; typedef typename ALLOC::const_reference const_reference; typedef typename ALLOC::size_type size_type; typedef typename ALLOC::difference_type difference_type; template <class OTHER_TYPE> struct rebind { // It is better not to inherit the rebind template, or else // rebind<X>::other would be ALLOC::rebind<OTHER_TYPE>::other // instead of LimitAlloc<X>. typedef LimitAllocator<typename ALLOC::template rebind<OTHER_TYPE>::other > other; }; private: // PRIVATE TYPES typedef ALLOC AllocBase; // DATA size_type d_limit; public: // CREATORS LimitAllocator() : d_limit(-1) {} // Templatize to make this a better match than the next constructor. template <class BSLMA_ALLOC> explicit LimitAllocator(BSLMA_ALLOC *mechanism) : AllocBase(mechanism), d_limit(-1) { } template <class U_ALLOC> LimitAllocator(const U_ALLOC& rhs) : AllocBase(rhs), d_limit(rhs.max_size()) { } ~LimitAllocator() { } // MANIPULATORS void setMaxSize(size_type maxSize) { d_limit = maxSize; } // ACCESSORS size_type max_size() const { return d_limit; } }; namespace BloombergLP { namespace bslmf { template <class ALLOCATOR> struct IsBitwiseMoveable<LimitAllocator<ALLOCATOR> > : IsBitwiseMoveable<ALLOCATOR> {}; } // close namespace bslmf namespace bslma { template <class ALLOCATOR> struct UsesBslmaAllocator<LimitAllocator<ALLOCATOR> > : bsl::is_convertible<Allocator*, ALLOCATOR> {}; } // close namespace bslma } // close enterprise namespace // ==================== // class PointerWrapper // ==================== template <class T> class PointerWrapper; template <class T> class PointerWrapper<const T> { // Wrapper around a raw pointer to const T. Convertible both ways. protected: T* d_imp; public: PointerWrapper() { } PointerWrapper(const T* p) : d_imp(const_cast<T*>(p)) { } operator const T* () const { return d_imp; } const T* operator->() const { return d_imp; } const T& operator*() const { return *d_imp; } }; template <class T> class PointerWrapper : public PointerWrapper<const T> { // Wrapper around a raw pointer to mutable T. Convertible both ways. public: PointerWrapper() { } PointerWrapper(T* p) { this->d_imp = p; } operator T* () const { return this->d_imp; } T* operator->() const { return this->d_imp; } T& operator*() const { return *this->d_imp; } }; // ==================== // class SmallAllocator // ==================== template <class T> class SmallAllocator : public bsl::allocator<T> { // Allocator type with small size and difference types and non-raw pointer // types. Used to test that these types are used in the interface to // the container. // PRIVATE TYPES typedef bsl::allocator<T> AllocBase; public: // TYPES typedef typename AllocBase::value_type value_type; // typedef typename AllocBase::pointer pointer; // typedef typename AllocBase::const_pointer const_pointer; typedef PointerWrapper<T> pointer; typedef PointerWrapper<const T> const_pointer; typedef typename AllocBase::reference reference; typedef typename AllocBase::const_reference const_reference; typedef unsigned short size_type; typedef short difference_type; template <class OTHER_TYPE> struct rebind { typedef SmallAllocator<OTHER_TYPE> other; }; // CREATORS SmallAllocator() { } explicit SmallAllocator(bslma::Allocator *mechanism) : AllocBase(mechanism) { } template <class U> SmallAllocator(const SmallAllocator<U>& rhs) : AllocBase(rhs) { } ~SmallAllocator() { } }; // ================ // class IntWrapper // ================ class IntWrapper { // Simple wrapper object implicitly convertible from 'int'. int d_val; public: IntWrapper(int v = 0) : d_val(v) { } int value() const { return d_val; } }; inline bool operator==(IntWrapper a, IntWrapper b) { return a.value() == b.value(); } inline bool operator!=(IntWrapper a, IntWrapper b) { return ! (a == b); } enum TestEnum { TWO = 2, NINETYNINE = 99 }; //============================================================================= // USAGE EXAMPLES //----------------------------------------------------------------------------- ///Example 1: Filter "Twinkle Star" /// - - - - - - - - - - - - - - - - // Suppose an observatory needs to analyze the results of a sky survey. The // raw data is a text file of star observations where each star is represented // by a tuple of three numbers: (x, y, b), where x and y represent the angular // coordinates of the star in the sky and b represents its brightness on a // scale of 0 to 100. A star having brightness 75 or higher is of particular // interest, which is named "twinkle star". // // Our first example will read such a data file as described above, filter out // the dim stars (brightness less than 75), and count the "twinkle star"s left // in the list. Our test data set has been selected such that there are 10 // stars in the set, of which 4 are sufficiently bright as to pass our filter. // // First, we define the class 'Star' that encapsulates a single tuple, and // provides accessors functions 'x', 'y', and 'brightness', file I/O functions // 'read' and 'write', and free operators '==', '!=', and '<': //.. #include <cstdio> using namespace std; class Star // This class represents a star as seen through a digital telescope. { // DATA double d_x, d_y; // coordinates int d_brightness; // brightness on a scale of 0 to 100 public: // CREATORS Star() // Create a 'Star' object located at coordinates '(0, 0)' having // '0' brightness. : d_x(0), d_y(0), d_brightness(0) { } Star(double x, double y, int b) // Create a 'Star' object located at the specified coordinates // '(x, y)' having the specified 'b' brightness. : d_x(x), d_y(y), d_brightness(b) { } // Compiler-generated copy construction, assignment, and destructor // Star(const Star&) = default; // Star& operator=(const Star&) = default; // ~Star() = default; // MANIPULATORS bool read(FILE *input); // Read x, y, and brightness from the specified 'input' file. // Return 'true' if the read succeeded and 'false' otherwise. void write(FILE *output) const; // Write x, y, and brightness to the specified 'output' file // followed by a newline. // ACCESSORS double x() const // Return the x coordinate of this 'Star' object. { return d_x; } double y() const // Return the y coordinate of this 'Star' object. { return d_y; } int brightness() const // Return the brightness of this 'Star' object. { return d_brightness; } }; // FREE FUNCTIONS bool operator==(const Star& lhs, const Star& rhs); bool operator!=(const Star& lhs, const Star& rhs); bool operator< (const Star& lhs, const Star& rhs); //.. // Then, we define a 'readData' method that reads a file of data points and // appends each onto a list. The stars are stored in the data file in // ascending sorted order by x and y coordinates. //.. void readData(list<Star> *starList, FILE *input) { Star s; while (s.read(input)) { starList->push_back(s); } } //.. // Now, we define the 'filter' method, which is responsible for removing stars // with a brightness of less than 75 from the data set. It does this by // iterating over the list and erasing any element that does not pass the // filter. The list object features a fast 'erase' member function. The // return value of 'erase' is an iterator to the element immediately following // the erased element: //.. void filter(list<Star> *starList) { static const int threshold = 75; list<Star>::iterator i = starList->begin(); while (i != starList->end()) { if (i->brightness() < threshold) { i = starList->erase(i); // Erase and advance to next element. } else { ++i; // Advance to next element without erasing } } } //.. // Finally, we use the methods defined in above steps to put together our // program to find twinkle stars: //.. int usageExample1(int verbose) { FILE *input = fopen("star_data1.txt", "r"); // Open input file. ASSERT(input); list<Star> starList; // Define a list of stars. ASSERT(starList.empty()); // A list should be empty // after default // construction. readData(&starList, input); // Read input to the list. ASSERT(10 == starList.size()); // Verify correct reading. fclose(input); // Close input file. filter(&starList); // Pick twinkle stars. ASSERT(4 == starList.size()); // Verify correct filter. // Print out twinkle stars. if (verbose) { for (list<Star>::const_iterator i = starList.begin(); i != starList.end(); ++i) { i->write(stdout); } } return 0; } //.. ///Example 2: Combine Two Star Surveys ///- - - - - - - - - - - - - - - - - - // Now we want to combine the results from two star surveys into a single // list, using the same 'Star' class defined in the first usage example. // // First, we begin by reading both lists and filtering them. (Our test data is // selected so that the second data file contains 8 starts of which 3 are // sufficiently bright as to pass our filter: //.. int usageExample2(int verbose) { FILE *input = fopen("star_data1.txt", "r"); // Open first input file. ASSERT(input); list<Star> starList1; // Define first star list. ASSERT(starList1.empty()); readData(&starList1, input); // Read input into list. ASSERT(10 == starList1.size()); fclose(input); // Close first input file. input = fopen("star_data2.txt", "r"); // Open second input file. ASSERT(input); list<Star> starList2; // Define second list. ASSERT(starList2.empty()); readData(&starList2, input); // Read input into list. ASSERT(8 == starList2.size()); fclose(input); // Close input file. filter(&starList1); // Pick twinkle stars from // the first star list. ASSERT(4 == starList1.size()); filter(&starList2); // Pick twinkle stars from // the second star list. ASSERT(3 == starList2.size()); //.. // Then, we combine the two lists, 'starList1' and 'starList2'. One way to do // this is to simply insert the second list at the end of the first: //.. list<Star> tmp1(starList1); // Make a copy of the first list list<Star> tmp2(starList2); // Make a copy of the second list tmp1.insert(tmp1.end(), tmp2.begin(), tmp2.end()); ASSERT(7 == tmp1.size()); // Verify combined size. ASSERT(3 == tmp2.size()); // 'tmp2' should be unchanged. //.. // Next, let's have a closer look of the above code and see if we can improve // the combination performance. The above 'insert' method appends a copy of // each element in 'tmp2' onto the end of 'tmp1'. This copy is unnecessary // because we have no need for 'tmp2' after the lists have been combined. A // faster and less-memory-intensive technique is to use the 'splice' function, // which *moves* rather than *copies* elements from one list to another: //.. tmp1 = starList1; tmp2 = starList2; tmp1.splice(tmp1.begin(), tmp2); ASSERT(7 == tmp1.size()); // Verify combined size. ASSERT(0 == tmp2.size()); // 'tmp2' should be emptied by the splice. //.. // Notice that, while the original lists were sorted in ascending order // (because the data files were originally sorted), the combined list is no // longer sorted. To fix it, we sort 'tmp1' using the 'sort' member function: //.. tmp1.sort(); //.. // Then, we suggest a third, and also the best approach to combine two lists, // which is to take advantage of the fact that the lists were originally // sorted, using the 'merge' function: //.. starList1.merge(starList2); // Merge 'starList2' into 'starList1'. ASSERT(7 == starList1.size()); // Verify combined size. ASSERT(0 == starList2.size()); // starList2 should be emptied by the // merge. //.. // Now, since the two star surveys may overlap, we want to eliminate // duplicates. We accomplish this by using the 'unique' member function: //.. starList1.unique(); // Eliminate duplicates in 'starList1'. ASSERT(6 == starList1.size()); // Verify size after elimination. //.. // Finally, we print the result: //.. if (verbose) { for (list<Star>::const_iterator i = starList1.begin(); i != starList1.end(); ++i) { i->write(stdout); } } return 0; } //.. // For completeness, the implementations of the 'read', 'write', and comparison // functions for class 'Star' are shown below: //.. bool Star::read(FILE *input) { int ret = fscanf(input, "%lf %lf %d", &d_x, &d_y, &d_brightness); return 3 == ret; } void Star::write(FILE *output) const { fprintf(output, "%f %f %d\n", d_x, d_y, d_brightness); } bool operator==(const Star& lhs, const Star& rhs) { return lhs.x() == rhs.x() && lhs.y() == rhs.y() && lhs.brightness() == rhs.brightness(); } bool operator!=(const Star& lhs, const Star& rhs) { return ! (lhs == rhs); } bool operator<(const Star& lhs, const Star& rhs) { if (lhs.x() < rhs.x()) return true; // RETURN else if (rhs.x() < lhs.x()) return false; // RETURN else if (lhs.y() < rhs.y()) return true; // RETURN else if (rhs.y() < lhs.y()) return true; // RETURN else return lhs.brightness() < rhs.brightness(); // RETURN } //.. // 10 data points with 4 stars at or above 75 brightness const char STAR_DATA1[] = "-1.21 +0.11 76\n" "-1.05 +0.70 39\n" "-0.89 +1.03 93\n" "-0.61 +0.35 71\n" "-0.48 +1.19 61\n" "-0.01 +0.85 43\n" "+0.37 -0.01 90\n" "+0.37 +0.90 78\n" "+0.70 +0.48 54\n" "+0.91 +1.35 38\n"; // 8 data points with 3 stars at or above 75 brightness // 1 point overlaps STAR_DATA1 const char STAR_DATA2[] = "-1.40 -0.48 74\n" "-0.95 -1.00 40\n" "-0.91 -0.21 51\n" "-0.51 -0.23 88\n" "-0.16 -0.55 30\n" "+0.37 -0.01 90\n" "+0.48 -0.57 66\n" "+0.93 -0.35 75\n"; // //============================================================================= // TEST DRIVER TEMPLATE //----------------------------------------------------------------------------- template <class TYPE, class ALLOC = bsl::allocator<TYPE> > struct TestDriver { // The generating functions interpret the given 'spec' in order from left // to right to configure the object according to a custom language. // Uppercase letters '[A .. E]' correspond to arbitrary (but unique) char // values to be appended to the 'bsl::list<T>' object. A tilde ('~') // indicates that the logical (but not necessarily physical) state of the // object is to be set to its initial, empty state (via the 'clear' // method). // // LANGUAGE SPECIFICATION: // ----------------------- // // <SPEC> ::= <EMPTY> | <LIST> // // <EMPTY> ::= // // <LIST> ::= <ITEM> | <ITEM><LIST> // // <ITEM> ::= <ELEMENT> | <CLEAR> // // <ELEMENT> ::= 'A' | 'B' | 'C' | 'D' | 'E' | ... | 'H' // // unique but otherwise arbitrary // <CLEAR> ::= '~' // // Spec String Description // ----------- ----------------------------------------------------------- // "" Has no effect; leaves the object empty. // "A" Append the value corresponding to A. // "AA" Append two values both corresponding to A. // "ABC" Append three values corresponding to A, B and C. // "ABC~" Append three values corresponding to A, B and C and then // remove all the elements (set array length to 0). Note that // this spec yields an object that is logically equivalent // (but not necessarily identical internally) to one // yielded by (""). // "ABC~DE" Append three values corresponding to A, B, and C; empty // the object; and append values corresponding to D and E. //------------------------------------------------------------------------- // TYPES typedef list<TYPE,ALLOC> Obj; // Type under testing. typedef typename Obj::iterator iterator; typedef typename Obj::const_iterator const_iterator; typedef typename Obj::reverse_iterator reverse_iterator; typedef typename Obj::const_reverse_iterator const_reverse_iterator; // Shorthand. typedef typename bsl::is_convertible<bslma::Allocator*,ALLOC>::type ObjHasBslmaAlloc; // true_type if ALLOC is a bslma allocator type typedef typename bslma::UsesBslmaAllocator<TYPE>::type TypeHasBslmaAlloc; // true_type if TYPE uses a bslma allocator enum { SCOPED_ALLOC = ObjHasBslmaAlloc::value && TypeHasBslmaAlloc::value}; // true if both the container shares its allocator with its contained // elements. // Unary predicate matching elements of a specified value struct VPred { const TYPE& d_match; explicit VPred(const TYPE& v) : d_match(v) { } bool operator()(const TYPE& x) const { return x == d_match; } }; // Binary predicate returning true if the arguments values, expressed as // integers, have the same low bit value. Thus, 'A' and 'C' compare // equal; 'B' and 'D' compare equal. If an allocator is supplied to the // predicate constructor, then each call will cause an allocate/deallocate // sequence, which might throw an exception and is thus useful for // exception testing. struct LowBitEQ { bslma::Allocator* d_alloc; explicit LowBitEQ(bslma::Allocator* a = 0) : d_alloc(a) { } bool operator()(const TYPE& a, const TYPE& b) const { if (d_alloc) { void* p = d_alloc->allocate(1); d_alloc->deallocate(p); } char a1 = value_of(a); char b1 = value_of(b); return 0 == ((a1 ^ b1) & 1); } }; // Binary predicate returning true if b < a class GreaterThan : private binary_function<TYPE, TYPE, bool> { int* d_countPtr; // Pointer to count of times invoked int* d_invocationLimit; // Number of invocations before throwing public: GreaterThan(int *count = 0) : d_countPtr(count) { d_invocationLimit = 0; } void setInvocationLimit(int *limit) { d_invocationLimit = limit; } bool operator()(const TYPE& a, const TYPE& b) { if (d_countPtr) ++*d_countPtr; #ifdef BDE_BUILD_TARGET_EXC if (d_invocationLimit) { if (0 == *d_invocationLimit) throw --*d_invocationLimit; else if (0 < *d_invocationLimit) --*d_invocationLimit; } #endif // BDE_BUILD_TARGET_EXC return b < a; } }; // TEST APPARATUS static int getValues(const TYPE **values); // Load the specified 'values' with the address of an array containing // initialized values of the parameterized 'TYPE' and return the length // of that array. static int ggg(Obj *object, const char *spec, int verboseFlag = 1); // Configure the specified 'object' according to the specified 'spec', // using only the primary manipulator function 'push_back' and // white-box manipulator 'clear'. Optionally specify a zero // 'verboseFlag' to suppress 'spec' syntax error messages. Return the // index of the first invalid character, and a negative value // otherwise. Note that this function is used to implement 'gg' as // well as allow for verification of syntax error detection. static Obj& gg(Obj *object, const char *spec); // Return, by reference, the specified object with its value adjusted // according to the specified 'spec'. static Obj g(const char *spec); // Return, by value, a new object corresponding to the specified // 'spec'. static list<TYPE> gV(const char *spec); // Return, by value, a new list corresponding to the specified // 'spec'. static bool checkIntegrity(const Obj& object, int length); static bool checkIntegrity(const Obj& object, size_t length); // Check the integrity of the specified 'object' by verifying that // iterating over the list both forwards and backwards yields 'length' // positions and that 'object.size()' equals 'length'. This simple // test should catch most instances of data structure corruption in a // doubly-linked-list implementation of list. static Int64 expectedBlocks(Int64 n); // Return the number of blocks expected to be used by a list of length // 'n'. static Int64 deltaBlocks(Int64 n); // Return the change in the number of blocks used by a list whose // length has changed by 'n' elements. Note: 'n' may be negative. // TEST CASES static void testSort(); // Test 'sort' static void testMerge(); // Test 'merge' static void testUnique(); // Test 'unique' static void testRemove(); // Test 'remove' and 'remove_if' static void testSplice(); // Test 'splice' static void testReverse(); // Test 'reverse' static void testTypeTraits(bool uses_bslma, bool bitwise_moveable); // Test type traits static void testComparisonOps(); // Test comparison free operators. static void testSwap(); // Test 'swap' member and global swap. static void testErase(); // Test 'erase' and 'pop_back'. static void testInsert(); // Test 'insert' members, and move 'push_back' and 'insert' members. static void testEmplace(); // Test 'emplace', 'emplace_front', and 'emplace_back' members. template <class CONTAINER> static void testInsertRange(const CONTAINER&); // Test 'insert' member template. static void testIterators(); // Test iterators. static void testElementAccess(); // Test element access. static void testResize(); // Test 'resize' and 'max_size' static void testAssign(); // Test 'assign' members. template <class CONTAINER> static void testAssignRange(const CONTAINER&); // Test 'assign' member template. static void testConstructor(); // Test user-supplied constructors. template <class CONTAINER> static void testConstructorRange(const CONTAINER&); // Test user-supplied constructor templates. static void testAllocator(const char *t, const char *a); static void testAllocator(bsl::false_type, const char *t, const char *a); static void testAllocator(bsl::true_type, const char *t, const char *a); // Test allocator-related concerns. The first overload is called from // the main test driver. The second overload is dispatched when // 'ALLOC' is not a bslma-compliant allocator. The third overload is // dispatched when 'ALLOC' is a bslma-compliant allocator. The // arguments 't' and 'a' are the names of the parameters 'TYPE' and // 'ALLOC', respectively. static void testAssignmentOp(); // Test assignment operator ('operator='). static void testGeneratorG(); // Test generator function 'g'. static void testCopyCtor(); // Test copy constructor. static void testEqualityOp(); // Test equality operator ('operator=='). static void testBasicAccessors(); // Test basic accessors ('size', 'begin' and 'end'). static void testGeneratorGG(); // Test generator functions 'ggg' and 'gg'. static void testPrimaryManipulators(); // Test primary manipulators ('push_back' and 'clear'). static void breathingTest(); // Breathing test. This test *exercises* basic functionality but // *test* nothing. }; // -------------- // TEST APPARATUS // -------------- template <class TYPE, class ALLOC> int TestDriver<TYPE,ALLOC>::getValues(const TYPE **valuesPtr) { bslma::DefaultAllocatorGuard guard( &bslma::NewDeleteAllocator::singleton()); static TYPE values[8]; // avoid DEFAULT_VALUE and UNINITIALIZED_VALUE values[0] = TYPE(VA); values[1] = TYPE(VB); values[2] = TYPE(VC); values[3] = TYPE(VD); values[4] = TYPE(VE); values[5] = TYPE(VF); values[6] = TYPE(VG); values[7] = TYPE(VH); const int NUM_VALUES = 8; *valuesPtr = values; return NUM_VALUES; } template <class TYPE, class ALLOC> int TestDriver<TYPE,ALLOC>::ggg(Obj *object, const char *spec, int verboseFlag) { const TYPE *VALUES; getValues(&VALUES); enum { SUCCESS = -1 }; for (int i = 0; spec[i]; ++i) { if ('A' <= spec[i] && spec[i] <= 'H') { object->push_back(VALUES[spec[i] - 'A']); } else if ('~' == spec[i]) { object->clear(); } else { if (verboseFlag) { printf("Error, bad character ('%c') " "in spec \"%s\" at position %d.\n", spec[i], spec, i); } return i; // Discontinue processing this spec. // RETURN } } return SUCCESS; } template <class TYPE, class ALLOC> list<TYPE,ALLOC>& TestDriver<TYPE,ALLOC>::gg(Obj *object, const char *spec) { ASSERT(ggg(object, spec) < 0); return *object; } template <class TYPE, class ALLOC> list<TYPE,ALLOC> TestDriver<TYPE,ALLOC>::g(const char *spec) { ALLOC AL; Obj object(AL); return gg(&object, spec); } template <class TYPE, class ALLOC> list<TYPE> TestDriver<TYPE,ALLOC>::gV(const char *spec) { const TYPE *VALUES; getValues(&VALUES); list<TYPE> result; for (int i = 0; spec[i]; ++i) { if ('A' <= spec[i] && spec[i] <= 'H') { result.push_back(VALUES[spec[i] - 'A']); } else if ('<' == spec[i]) { result.pop_back(); } else if ('~' == spec[i]) { result.clear(); } else { ASSERT(0); } } return result; } template <class TYPE, class ALLOC> bool TestDriver<TYPE,ALLOC>::checkIntegrity(const Obj& object, int length) { const const_iterator start = object.begin(); const const_iterator finish = object.end(); const_iterator it; int count = 0; static const int MAX_SAVE_ITERS = 20; const_iterator save_iters[MAX_SAVE_ITERS]; static const char DEFAULT_CVALUE = value_of(TYPE()); // Iterate over the list. Terminate the loop at the shorter of 'it == // finish' or 'count == length'. These should be the same, but data // structure corruption such as circular links or skipped nodes could make // them different. for (it = start; it != finish && count < length; ++it, ++count) { // Dereference the iterator and verify that the value is within the // expected range. char v = value_of(*it); if (v != DEFAULT_CVALUE && (v < VA || VH < v)) return false; // RETURN if (count < MAX_SAVE_ITERS) { save_iters[count] = it; } } // Verify that 'count' reached 'length' at the same time that 'it' reached // 'finish' if (it != finish || count != length) return false; // RETURN // Iterate over the list in reverse. Verify that we see the same iterator // values on this traversal as we did in the forward direction. while (it != start && count > 0) { --it; --count; if (count < MAX_SAVE_ITERS && it != save_iters[count]) return false; // RETURN } if (it != start || count != 0) return false; // RETURN // If got here, then the only integrity test left is to verify that size() // returns the actual length of the list. return length == (int) object.size(); } template <class TYPE, class ALLOC> bool TestDriver<TYPE,ALLOC>::checkIntegrity(const Obj& object, size_t length) { ASSERT(length <= INT_MAX); return checkIntegrity(object, static_cast<int>(length)); // RETURN } template <class TYPE, class ALLOC> inline Int64 TestDriver<TYPE,ALLOC>::deltaBlocks(Int64 n) { // One block per element plus one additional block per element if the // element uses the list's allocator ('SCOPED_ALLOC' == 1). return n + n * SCOPED_ALLOC; } template <class TYPE, class ALLOC> inline Int64 TestDriver<TYPE,ALLOC>::expectedBlocks(Int64 n) { // One block for the sentinel node + block allocations. return 1 + deltaBlocks(n); } // ---------- // TEST CASES // ---------- template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testSort() { // -------------------------------------------------------------------- // TESTING SORT // // Concerns: // 1. Sorts correctly in the presence of equivalent (duplicate) elements. // 2. Sorts correctly if the input is already sorted or sorted in // reverse. // 3. No memory is allocated or deallocated during the sort. // 4. No constructors, destructors, or assignment of elements takes // place. // 5. Iterators to all elements remain valid. // 6. The predicate version of 'sort' can be used to sort using a // different comparison criterion. // 7. The non-predicate version of 'sort' does not use 'std::less'. // 8. The sort is stable -- equivalent elements remain in the same order // as in the original list. // 9. The number of calls to the comparison operation is no larger than // 'N*log2(N)', where 'N' is the number of elements. // 10. If the comparison function throws an exception, no memory is // leaked. (The order of the elements is indeterminate.) // // Test plan: // Create a series of list specifications of different lengths, some // containing duplicates, triplicates, and multiple sets of duplicates // and triplicates. Generate every permutation of elements within each // specification. Create a list from the permutation, and store an // iterator to each list element. Sort the list. Verify that the // resultant list is a sorted version of the original. Verify that // iterating over each element in the sorted list results in an iterator // that existed in the original list and that, for equivalent elements, // the iterators appear in the same order. Test allocations, // constructor counts, destructor counts, and assignment counts before // and after the sort and verify that they haven't changed. // (Constructor, destructor, and assignment counts are meaningful only // if 'TYPE' is 'TestType', but will are accessible and will remain // unchanged anyway for other types.) To address concern 7, // std::less<TestType> is specialized to detect being called // inappropriately. To address concern 6, repeat the test using a // predicate that sorts in reverse order. To address concern 9, the // predicate counts the number of invocations. To address concern 10, // the predicate operator is instrumented to throw an exception after a // specific number of iterations. Using a sample string, set the // comparison operator to throw at different counts and verify, after // each exception, that no memory is leaked, that the list is valid, and // that every element in the list is represented by a saved iterator. // // Testing: // void sort(); // template <class COMP> void sort(COMP c); // -------------------------------------------------------------------- const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) VALUES; (void) NUM_VALUES; bslma::TestAllocator testAllocator; ALLOC Z(&testAllocator); const int MAX_SPEC_LEN = 10; // NOTE: The elements within each of these specifications must be sorted // so that 'next_permutation' can do the right thing. Since we will be // testing every permutation, there is no worry about having the elements // int too predicatable an order. const char *const SPECS[] = { // Length 0 or 1: 1 permutation each "", "A", // Length 2: max 2 permutations each "AA", "AB", // Length 3: max 3! = 6 permutations each "AAA", "AAB", "ABB", "ABC", // Length 4: max 4! = 24 permutations each "AAAA", "AAAB", "AABB", "ABBB", "AABC", "ABBC", "ABCC", "ABCD", // Length 5: max 5! = 120 permutations each "AAAAA", "AAAAB", "AAABB", "AABBB", "ABBBB", "AAABC", "AABBC", "AABCC", "ABBBC", "ABBCC", "ABCCC", "ABCDE", // Length 8: max 8! = 40320 permutations each "ABCDEFGH", "AABCDEFG", "ABCDEFGG", "AABCDEFF", "ABCDDEFG", "AABCCDEE", "AAABBCDE", // Length 10, with no more than 8 unique elements: // max 10!/2!2! = 907200 permutations // "AABCDEFFGH" }; const int NUM_SPECS = sizeof(SPECS) / sizeof(SPECS[0]); // Log2 of integers from 0 to 16, rounded up. // (Log2(0) is undefined, but 0 works for our purposes.) const int LOG2[] = { 0, 0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4 }; if (verbose) printf("\nTesting sort()\n"); for (int i = 0; i < NUM_SPECS; ++i) { const char* const S_SPEC = SPECS[i]; // Sorted spec. const int LENGTH = static_cast<int>(strlen(S_SPEC)); ASSERT(MAX_SPEC_LEN >= LENGTH); char spec[MAX_SPEC_LEN + 1]; strcpy(spec, S_SPEC); // Expected result Obj mExp; const Obj& EXP = gg(&mExp, S_SPEC); // Test each permutation do { const char *const SPEC = spec; if (veryVeryVerbose) P(SPEC); Obj mX(Z); const Obj& X = gg(&mX, SPEC); const_iterator save_iters[MAX_SPEC_LEN + 1]; const_iterator xi = X.begin(); for (int j = 0; j < LENGTH; ++j, ++xi) { save_iters[j] = xi; } save_iters[LENGTH] = xi; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; mX.sort(); const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; LOOP_ASSERT(SPEC, checkIntegrity(X, LENGTH)); LOOP_ASSERT(SPEC, X == EXP); LOOP_ASSERT(SPEC, AA == BB); LOOP_ASSERT(SPEC, A == B); LOOP_ASSERT(SPEC, CTORS_AFTER == CTORS_BEFORE); LOOP_ASSERT(SPEC, DTORS_AFTER == DTORS_BEFORE); LOOP_ASSERT(SPEC, ASSIGN_AFTER == ASSIGN_BEFORE); xi = X.begin(); for (int j = 0; j < LENGTH; ++j) { // Find index of iterator in saved iterator array const_iterator* p = find(save_iters, save_iters + LENGTH, xi); long save_idx = p - save_iters; LOOP2_ASSERT(SPEC, j, LENGTH >= save_idx); // Verify stable sort. Iterate through equivalent values and // verify that the sorted list produces iterators in the same // order as in the saved iterator array. As each iterator is // matched, it is removed from 'save_iters' so as to ensure // that no iterator appears more than once (which would // represent a serious data structure corruption). char val = SPEC[save_idx]; for (long k = save_idx; SPEC[k] == val; ++k, ++xi, ++j) { LOOP2_ASSERT(SPEC, k, xi == save_iters[k]); save_iters[k] = X.end(); // Avoid matching iterator twice } // end for k } // end for j } while (next_permutation(spec, spec + LENGTH)); } // end for i if (verbose) printf("\nTesting template<COMP> sort(COMP)\n"); for (int i = 0; i < NUM_SPECS; ++i) { const int LENGTH = static_cast<int>(strlen(SPECS[i])); ASSERT(MAX_SPEC_LEN >= LENGTH); // Copy SPECS[i] in reverse order char s_spec[MAX_SPEC_LEN + 1]; for (int j = 0; j < LENGTH; ++j) { s_spec[j] = SPECS[i][LENGTH - j - 1]; } s_spec[LENGTH] = '\0'; const char* const S_SPEC = s_spec; // (reverse) sorted spec. char spec[MAX_SPEC_LEN + 1]; strcpy(spec, S_SPEC); // Expected result Obj mExp; const Obj& EXP = gg(&mExp, S_SPEC); // Test each permutation do { const char *const SPEC = spec; Obj mX(Z); const Obj& X = gg(&mX, SPEC); const_iterator save_iters[MAX_SPEC_LEN + 1]; const_iterator xi = X.begin(); for (int j = 0; j < LENGTH; ++j, ++xi) { save_iters[j] = xi; } save_iters[LENGTH] = xi; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; int predicateCalls = 0; // Count of calls to predicate if (veryVeryVeryVerbose) { printf("\tBefore: "); P_(X); } mX.sort(GreaterThan(&predicateCalls)); if (veryVeryVeryVerbose) { printf("After: "); P(X); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; LOOP_ASSERT(SPEC, checkIntegrity(X, LENGTH)); LOOP_ASSERT(SPEC, X == EXP); LOOP_ASSERT(SPEC, AA == BB); LOOP_ASSERT(SPEC, A == B); LOOP_ASSERT(SPEC, CTORS_AFTER == CTORS_BEFORE); LOOP_ASSERT(SPEC, DTORS_AFTER == DTORS_BEFORE); LOOP_ASSERT(SPEC, ASSIGN_AFTER == ASSIGN_BEFORE); // Verify complexity requirement. LOOP_ASSERT(SPEC, predicateCalls <= LENGTH * LOG2[LENGTH]); LOOP_ASSERT(SPEC, predicateCalls >= LENGTH - 1); xi = X.begin(); for (int j = 0; j < LENGTH; ++j) { // Find index of iterator in saved iterator array const_iterator* p = find(save_iters, save_iters + LENGTH, xi); ptrdiff_t save_idx = p - save_iters; LOOP2_ASSERT(SPEC, j, LENGTH >= save_idx); // Verify stable sort. Iterate through equivalent values and // verify that the sorted list produces iterators in the same // order as in the saved iterator array. As each iterator is // matched, it is removed from 'save_iters' so as to ensure // that no iterator appears more than once (which would // represent a serious data structure corruption). char val = SPEC[save_idx]; for (long k = save_idx; SPEC[k] == val; ++k, ++xi, ++j) { LOOP2_ASSERT(SPEC, k, xi == save_iters[k]); save_iters[k] = X.end(); // Avoid matching iterator twice } // end for k } // end for j } while (next_permutation(spec, spec + LENGTH, std::greater<char>())); } // end for i #ifdef BDE_BUILD_TARGET_EXC if (verbose) printf("\nTesting exception safety\n"); // Choose a longish string of random values const char EH_SPEC[] = "CBHADBAGCBFFADHE"; enum { EH_SPEC_LEN = sizeof(EH_SPEC) - 1 }; bool caught_ex = true; for (int threshold = 0; caught_ex; ++threshold) { caught_ex = false; Obj mX(Z); const Obj& X = gg(&mX, EH_SPEC); const_iterator save_iters[EH_SPEC_LEN + 1]; const_iterator xi = X.begin(); for (int j = 0; j < EH_SPEC_LEN; ++j, ++xi) { save_iters[j] = xi; } save_iters[EH_SPEC_LEN] = xi; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; GreaterThan gt; // Create a predicate object int limit = threshold; gt.setInvocationLimit(&limit); try { mX.sort(gt); } catch (int e) { LOOP_ASSERT(threshold, -1 == e); caught_ex = true; } catch (...) { LOOP_ASSERT(threshold, !"Caught unexpected exception"); caught_ex = true; } if (veryVeryVeryVerbose) { T_; P_(threshold); P_(caught_ex); printf("Result: "); P(X); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; if (caught_ex) { // Should not call predicate more than N*Log2(N) times. LOOP_ASSERT(threshold, threshold < EH_SPEC_LEN * LOG2[EH_SPEC_LEN]); } else { // Must have called predicate successfully at least N-1 times. LOOP_ASSERT(threshold, threshold >= EH_SPEC_LEN -1); } LOOP_ASSERT(threshold, (int) X.size() == EH_SPEC_LEN); LOOP_ASSERT(threshold, checkIntegrity(X, X.size())); LOOP_ASSERT(threshold, AA == BB); LOOP_ASSERT(threshold, CTORS_AFTER == CTORS_BEFORE); LOOP_ASSERT(threshold, ASSIGN_AFTER == ASSIGN_BEFORE); if ((int) X.size() == EH_SPEC_LEN) { // To avoid cascade errors The following tests are skipped if the // length changed. Otherwise they would all fail, giving no // additional information. LOOP_ASSERT(threshold, A == B); LOOP_ASSERT(threshold, DTORS_AFTER == DTORS_BEFORE); } // Verify that all iterators in list were already in the list before // the sort (and before the exception). The order of elements is // unspecified in the case of an exception, and is thus not tested. for (xi = X.begin(); xi != X.end(); ++xi) { // Find index of iterator in saved iterator array const_iterator* p = find(save_iters, save_iters + EH_SPEC_LEN, xi); ptrdiff_t save_idx = p - save_iters; const char VAL = EH_SPEC[save_idx]; LOOP_ASSERT(threshold, save_idx < EH_SPEC_LEN); if (save_idx < EH_SPEC_LEN) { LOOP_ASSERT(threshold, value_of(*xi) == VAL); } } // End for (xi) } // End for (threshold) #endif // BDE_BUILD_TARGET_EXC } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testMerge() { // -------------------------------------------------------------------- // TESTING MERGE // // Concerns: // 1. Merging produces correct results with and without duplicate // elements within and between the lists to be merged. // 2. The argument to merge is empty after the merge. // 3. No memory is allocated or deallocated during the merge. // 4. No constructors, destructors, or assignment of elements takes // place. // 5. Iterators to all elements remain valid. // 6. The predicate version of 'merge' can be used to merge using a // different comparison criterion. // 7. The non-predicate version of 'merge' does not use 'std::less'. // 8. Merging a list with itself has no effect. // 9. If the comparison function throws an exception, no memory is // leaked and all elements remain in one list or the other. // // Test plan: // Create two lists from the cross-product of two small sets of // specifications. The elements in the lists are chosen so that every // combination of duplicate and non-duplicate elements, both within and // between lists, is represented. Save the iterators to all elements of // both lists and record the memory usage before the merge. Merge one // list into the other. Verify that the merged value is correct, that // all of the pre-merge iterators are still valid, and that the // non-merged list is now empty. To address concern 6, sort the initial // specifications using the reverse sort order, then use a custom // "greater-than" predicate to merge the lists and verify the same // values as for the non-predicate case. To address concern 7, // std::less<TestType> is specialized to detect being called // inappropriately. To address concern 8, merge each list with itself // and verify that no memory is allocated or deallocated and that all // iterators remain valid. // // Testing: // void merge(list& other); // template <class COMP> void merge(list& other, COMP c); // -------------------------------------------------------------------- const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) NUM_VALUES; bslma::TestAllocator testAllocator; ALLOC Z(&testAllocator); class SortedSpecGen { // Generate every possible specification up to 5 elements long such // that no element has a value less than the previous element. Using // 6 of the possible 8 values for each element, there are a total of // 462 combinations. public: enum { MAX_SPEC_LEN = 5 }; private: int d_len; char d_spec[MAX_SPEC_LEN + 1]; mutable char d_reverse_spec[MAX_SPEC_LEN + 1]; enum { MAX_ELEMENT = 'F' }; public: SortedSpecGen() : d_len(0) { d_spec[0] = '\0'; } // Return true if this object holds a valid spec operator bool() const { return d_len <= MAX_SPEC_LEN; } // Advance to the next specification SortedSpecGen& operator++() { // Find the last element with value < MAX_ELEMENT. Note that // with 'MAX_ELEMENT' set to 'F', we are using only 6 of the // possible 8 values for each element yielding a total of 462 // combinations. For more combinations (and a slower test), // extend 'MAX_ELEMENT' to 'G' or (max) 'H'. char max_elem_str[2] = { MAX_ELEMENT, 0 }; int i = static_cast<int>(strcspn(d_spec, max_elem_str)) - 1; // If nothing was found, then 'd_spec' is all MAX_ELEMENTs. // Increment length and start over with all 'A's. if (i < 0) { ++d_len; if (MAX_SPEC_LEN < d_len) return *this; // RETURN memset(d_spec, 'A', d_len); d_spec[d_len] = '\0'; return *this; // RETURN } // d_spec[i] < MAX_ELEMENT. Increment the element at 'i' and fill // the remainder of the spec with the same value. char x = static_cast<char>(d_spec[i] + 1); memset(d_spec + i, x, d_len - i); return *this; } int len() const { return d_len; } const char* spec() const { return d_spec; } const char* reverse_spec() const { for (int i = 0; i < d_len; ++i) { d_reverse_spec[d_len - i - 1] = d_spec[i]; } d_reverse_spec[d_len] = '\0'; return d_reverse_spec; } }; // End class SortedSpecGen const int MAX_SPEC_LEN = SortedSpecGen::MAX_SPEC_LEN; if (verbose) printf("\nTesting void merge(list& other);\n"); for (SortedSpecGen xgen; xgen; ++xgen) { for (SortedSpecGen ygen; ygen; ++ygen) { const char* const X_SPEC = xgen.spec(); const int X_SPEC_LEN = xgen.len(); const char* const Y_SPEC = ygen.spec(); const int Y_SPEC_LEN = ygen.len(); Obj mX(Z); const Obj& X = gg(&mX, X_SPEC); Obj mY(Z); const Obj& Y = gg(&mY, Y_SPEC); const_iterator xiters[MAX_SPEC_LEN + 1]; const_iterator yiters[MAX_SPEC_LEN + 1]; // Save the iterators before merge int xi = 0; for (const_iterator it = X.begin(); it != X.end(); ++it, ++xi) { xiters[xi] = it; } xiters[xi] = X.end(); int yi = 0; for (const_iterator it = Y.begin(); it != Y.end(); ++it, ++yi) { yiters[yi] = it; } yiters[yi] = Y.end(); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; // Self merge (noop) mX.merge(mX); LOOP2_ASSERT(X_SPEC, Y_SPEC, (int) X.size() == X_SPEC_LEN); LOOP2_ASSERT(X_SPEC, Y_SPEC, (int) Y.size() == Y_SPEC_LEN); if (veryVeryVerbose) { T_; printf("Before: "); P_(X); P_(Y); } mX.merge(mY); // Test merge here if (veryVeryVerbose) { T_; printf("After: "); P_(X); P(Y); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; // Test result size LOOP2_ASSERT(X_SPEC, Y_SPEC, (int) X.size() == X_SPEC_LEN + Y_SPEC_LEN); LOOP2_ASSERT(X_SPEC, Y_SPEC, Y.size() == 0); // Test merged results and iterators int idx = 0; xi = yi = 0; for (const_iterator it = X.begin(); it != X.end(); ++it, ++idx) { if (it == xiters[xi]) { if (yi < Y_SPEC_LEN) { // Verify that merge criterion was met LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, ! (Y_SPEC[yi] < X_SPEC[xi])); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, VALUES[X_SPEC[xi] - 'A'] == *it) } ++xi; } else if (it == yiters[yi]) { if (xi < X_SPEC_LEN) { // Verify that merge criterion was met. // C++98 required that items from X precede equivalent // items from Y. C++0x seemed to remove this // requirement, but we should adhere to it anyway. LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, Y_SPEC[yi] < X_SPEC[xi]); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, VALUES[Y_SPEC[yi] - 'A'] == *it) } ++yi; } else { // A stable merge requires that the iterator must match // the next iterator on the save x or y list. LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, !"Invalid merge"); } } // Test end iterators LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, xiters[xi] == X.end()); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, yiters[yi] == Y.end()); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, (xi + yi) == (int) X.size()); // Test allocations and deallocations LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, AA == BB); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, A == B); // Test that no constructors, destructors or assignments were // called. LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, CTORS_AFTER == CTORS_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, DTORS_AFTER == DTORS_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, ASSIGN_AFTER ==ASSIGN_BEFORE); } // end for (ygen) } // end for (xgen) if (verbose) printf("\nTesting void merge(list& other, COMP c);\n"); for (SortedSpecGen xgen; xgen; ++xgen) { for (SortedSpecGen ygen; ygen; ++ygen) { const char* const X_SPEC = xgen.reverse_spec(); const int X_SPEC_LEN = xgen.len(); const char* const Y_SPEC = ygen.reverse_spec(); const int Y_SPEC_LEN = ygen.len(); Obj mX(Z); const Obj& X = gg(&mX, X_SPEC); Obj mY(Z); const Obj& Y = gg(&mY, Y_SPEC); const_iterator xiters[MAX_SPEC_LEN + 1]; const_iterator yiters[MAX_SPEC_LEN + 1]; // Save the iterators before merge int xi = 0; for (const_iterator it = X.begin(); it != X.end(); ++it, ++xi) { xiters[xi] = it; } xiters[xi] = X.end(); int yi = 0; for (const_iterator it = Y.begin(); it != Y.end(); ++it, ++yi) { yiters[yi] = it; } yiters[yi] = Y.end(); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; // Self merge (noop) mX.merge(mX, GreaterThan()); LOOP2_ASSERT(X_SPEC, Y_SPEC, (int) X.size() == X_SPEC_LEN); LOOP2_ASSERT(X_SPEC, Y_SPEC, (int) Y.size() == Y_SPEC_LEN); if (veryVeryVerbose) { T_; printf("Before: "); P_(X); P_(Y); } mX.merge(mY, GreaterThan()); // Test merge here if (veryVeryVerbose) { T_; printf("After: "); P_(X); P(Y); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; // Test result size LOOP2_ASSERT(X_SPEC, Y_SPEC, (int) X.size() == X_SPEC_LEN + Y_SPEC_LEN); LOOP2_ASSERT(X_SPEC, Y_SPEC, Y.size() == 0); // Test merged results and iterators int idx = 0; xi = yi = 0; for (const_iterator it = X.begin(); it != X.end(); ++it, ++idx) { if (it == xiters[xi]) { if (yi < Y_SPEC_LEN) { // Verify that merge criterion was met LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, ! (Y_SPEC[yi] > X_SPEC[xi])); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, VALUES[X_SPEC[xi] - 'A'] == *it) } ++xi; } else if (it == yiters[yi]) { if (xi < X_SPEC_LEN) { // Verify that merge criterion was met. // C++98 required that items from X precede equivalent // items from Y. C++0x seemed to remove this // requirement, but we should adhere to it anyway. LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, Y_SPEC[yi] > X_SPEC[xi]); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, VALUES[Y_SPEC[yi] - 'A'] == *it) } ++yi; } else { // A stable merge requires that the iterator must match // the next iterator on the save x or y list. LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, !"Invalid merge"); } } // Test end iterators LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, xiters[xi] == X.end()); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, yiters[yi] == Y.end()); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, (xi + yi) == (int) X.size()); // Test allocations and deallocations LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, AA == BB); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, A == B); // Test that no constructors, destructors or assignments were // called. LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, CTORS_AFTER == CTORS_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, DTORS_AFTER == DTORS_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, xi, yi, ASSIGN_AFTER ==ASSIGN_BEFORE); } // end for (ygen) } // end for (xgen) #ifdef BDE_BUILD_TARGET_EXC if (verbose) printf("\nTesting exception safety\n"); { const char X_SPEC[] = "HGFEDCBA"; const char Y_SPEC[] = "GGEECCBA"; enum { X_SPEC_LEN = sizeof(X_SPEC) - 1, Y_SPEC_LEN = sizeof(Y_SPEC) - 1, MERGED_SPEC_LEN = X_SPEC_LEN + Y_SPEC_LEN }; bool caught_ex = true; for (int threshold = 0; caught_ex; ++threshold) { caught_ex = false; Obj mX(Z); const Obj& X = gg(&mX, X_SPEC); Obj mY(Z); const Obj& Y = gg(&mY, Y_SPEC); const_iterator save_iters[MERGED_SPEC_LEN + 1]; int j = 0; for (const_iterator xi = X.begin(); xi != X.end(); ++xi, ++j) { save_iters[j] = xi; } for (const_iterator yi = Y.begin(); yi != Y.end(); ++yi, ++j) { save_iters[j] = yi; } save_iters[MERGED_SPEC_LEN] = Y.end(); LOOP_ASSERT(threshold, MERGED_SPEC_LEN == j); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; GreaterThan gt; // Create a predicate object int limit = threshold; gt.setInvocationLimit(&limit); try { mX.merge(mY, gt); } catch (int e) { LOOP_ASSERT(threshold, -1 == e); caught_ex = true; } catch (...) { LOOP_ASSERT(threshold, !"Caught unexpected exception"); caught_ex = true; } if (veryVeryVeryVerbose) { T_; P_(threshold); P_(caught_ex); printf("Result: "); P_(X); P(Y); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; LOOP_ASSERT(threshold, (int)(X.size() + Y.size()) == MERGED_SPEC_LEN); LOOP_ASSERT(threshold, checkIntegrity(X, X.size())); LOOP_ASSERT(threshold, checkIntegrity(Y, Y.size())); LOOP_ASSERT(threshold, AA == BB); LOOP_ASSERT(threshold, ASSIGN_AFTER == ASSIGN_BEFORE); LOOP_ASSERT(threshold, CTORS_AFTER == CTORS_BEFORE); if ((int) (X.size() + Y.size()) == MERGED_SPEC_LEN) { // To avoid cascade errors The following tests are skipped if // the total length changed. Otherwise they would all fail, // giving no additional information. LOOP_ASSERT(threshold, A == B); LOOP_ASSERT(threshold, DTORS_AFTER == DTORS_BEFORE); } // Verify that all iterators in the lists were already in the // lists before the merge (and before the exception). The order // of elements is unspecified in the case of an exception, and is // thus not tested. char prev_val = 'Z'; for (const_iterator xi = X.begin(); xi != X.end(); ++xi) { // Find index of iterator in saved iterator array const_iterator* p = find(save_iters, save_iters + MERGED_SPEC_LEN, xi); ptrdiff_t save_idx = p - save_iters; const char VAL = (save_idx < X_SPEC_LEN) ? X_SPEC[save_idx] : Y_SPEC[save_idx - X_SPEC_LEN]; LOOP_ASSERT(threshold, save_idx < MERGED_SPEC_LEN); if (save_idx < MERGED_SPEC_LEN) { LOOP_ASSERT(threshold, value_of(*xi) == VAL); // Verify that the values are still in descending value, // even though the standard does not seem to require it. LOOP_ASSERT(threshold, VAL <= prev_val); } save_iters[save_idx] = Y.end(); // Prevent duplicate matches } // End for (xi) prev_val = 'Z'; for (const_iterator yi = Y.begin(); yi != Y.end(); ++yi) { // Find index of iterator in saved iterator array const_iterator* p = find(save_iters, save_iters + MERGED_SPEC_LEN, yi); ptrdiff_t save_idx = p - save_iters; const char VAL = (save_idx < X_SPEC_LEN) ? X_SPEC[save_idx] : Y_SPEC[save_idx - X_SPEC_LEN]; LOOP_ASSERT(threshold, save_idx < MERGED_SPEC_LEN); if (save_idx < MERGED_SPEC_LEN) { LOOP_ASSERT(threshold, value_of(*yi) == VAL); // Verify that the values are still in descending value, // even though the standard does not seem to require it. LOOP_ASSERT(threshold, VAL <= prev_val); } save_iters[save_idx] = Y.end(); // Prevent duplicate matches } // End for (yi) } // End for (threshold) } #endif // BDE_BUILD_TARGET_EXC } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testUnique() { // -------------------------------------------------------------------- // TESTING UNIQUE // // Concerns: // 1. The predicate and non-predicate versions of 'unique' have // essentially the same characteristics. // 2. Can remove elements from any or all positions in the list except // the first. // 3. Destructors are called for removed elements and memory is deleted // for removed elements. // 4. No constructors, destructors, or assignment operators are called // on the remaining (non-removed) elements. // 5. No memory is allocated. // 6. Iterators to non-removed elements, including the 'end()' iterator, // remain valid after removal. // 7. The non-removed elements retain their relative order. // 8. The 'unique' operation is exception-neutral, if the equality // operator or predicate throw an exception. // 9. The non-predicate version calls operator==(T,T) directly; it does // not call std::equal_to<T>::operator()(T,T). // // Plan: // For concern 1, perform the same tests for both the predicate and // non-predicate versions of 'unique. Generate lists of various lengths // up to 10 elements, filling the lists with different sequences of // values such that every combination of matching and non-matching // subsequences is generated. (For the predicate version, matching // elements need to be equal only in their low bit). For each // combination, make a copy of all of the iterators to non-repeated // elements, then call 'unique'. Validate that: The number of new // destructor calls matches the number of elements removed, reduction of // memory blocks in use is correct for the number elements removed, the // number of new allocations is zero, the number of new constructor // calls is zero, and the iterating over the remaining elements produces // a sequence of values and iterators matching those saved before the // 'unique' operation. For concern 8, perform the tests in an // exception-testing framework, using a special feature of the // 'LowBitEQ' predicate to cause exceptions to be thrown. For concern // 9, std::equal_to<TestType> is specialized to detect being called // inappropriately. // // Testing: // void unique(); // template <class BINPRED> void unique(BINPRED p); // -------------------------------------------------------------------- const TYPE *values = 0; const TYPE *const& VALUES = values; // For this test, it is important that 'NUM_VALUES' be even. // If 'getValues' returns an odd number, ignore the last value. const int NUM_VALUES = getValues(&values) & 0xfffe; bslma::TestAllocator testAllocator; // For exception testing only bslma::TestAllocator objAllocator; // For object allocation testing ALLOC Z(&objAllocator); const int LENGTHS[] = { 0, 1, 2, 3, 4, 5, 10 }; const int NUM_LENGTHS = sizeof(LENGTHS) / sizeof(LENGTHS[0]); const int MAX_LENGTH = 10; enum { OP_FIRST, OP_UNIQUE = OP_FIRST, // void unique(); OP_UNIQUE_PRED, // template <class BINPRED> void unique(BINPRED); OP_LAST }; for (int op = OP_FIRST; op < OP_LAST; ++op) { // The 'perturb_bit' is a bit mask that can be perturbed in a value and // still compare equal to the original according to the predicate. char perturb_bit; switch (op) { case OP_UNIQUE: if (verbose) printf("\nTesting unique()\n"); perturb_bit = 0; break; case OP_UNIQUE_PRED: if (verbose) printf("\nTesting unique(BINPRED p)\n"); perturb_bit = 2; break; } for (int i = 0; i < NUM_LENGTHS; ++i) { const int LEN = LENGTHS[i]; ASSERT(MAX_LENGTH >= LEN); // 'mask' contains a bit for each element in the list. For each // '1' bit, the element should match the preceding element's value // according to the predicate. Bit 0 (the first position) is // skipped, since it has no preceding value. for (unsigned mask = 0; mask < (unsigned) (1 << LEN); mask += 2) { BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const_iterator save_iters[MAX_LENGTH + 1]; int res_len = 0; // To compute expected result length Obj mX(Z); const Obj& X = mX; // test objected Obj res_exp; const Obj& RES_EXP = res_exp; // expected result int val_idx = 0; if (LEN > 0) { mX.push_back(VALUES[0]); res_exp.push_back(VALUES[0]); ++res_len; save_iters[0] = X.begin(); } for (unsigned bit = 2; bit < (unsigned)(1 << LEN); bit <<= 1) { if ((mask & bit)) { // Set the new value to the previous value, but // (possibly) perturbed in such a way that it they // still compare equal according to the predicate. val_idx = val_idx ^ perturb_bit; mX.push_back(VALUES[val_idx]); } else { // Increment val_idx, modulo NUM_VALUES val_idx = (val_idx + 1) % NUM_VALUES; mX.push_back(VALUES[val_idx]); res_exp.push_back(VALUES[val_idx]); // Save iterators to non-repeated elements save_iters[res_len++] = --X.end(); } } LOOP3_ASSERT(op, X, RES_EXP, (int) X.size() == LEN); LOOP3_ASSERT(op, X, RES_EXP, (int) RES_EXP.size() == res_len); save_iters[res_len] = X.end(); const Int64 BB = objAllocator.numBlocksTotal(); const Int64 B = objAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; if (veryVeryVerbose) { T_; printf("Before: "); P_(X); } switch (op) { case OP_UNIQUE: mX.unique(); break; case OP_UNIQUE_PRED: { mX.unique(LowBitEQ(&testAllocator)); } break; } if (veryVeryVerbose) { printf("After: "); P(X); } const Int64 AA = objAllocator.numBlocksTotal(); const Int64 A = objAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; // Test result value LOOP3_ASSERT(op, X, RES_EXP, checkIntegrity(X, res_len)); LOOP3_ASSERT(op, X, RES_EXP, (int) X.size() == res_len); LOOP3_ASSERT(op, X, RES_EXP, X == RES_EXP); // Test that iterators are still valid int idx = 0; for (const_iterator it = X.begin(); it != X.end(); ++it, ++idx) { LOOP4_ASSERT(op, X, RES_EXP, idx, save_iters[idx] == it); } // Test end iterator LOOP4_ASSERT(op, X, RES_EXP, idx, save_iters[idx] == X.end()); // Test allocations and deallocations LOOP3_ASSERT(op, X, RES_EXP, AA == BB); LOOP3_ASSERT(op, X, RES_EXP, deltaBlocks(LEN - res_len) == B - A); // If 'TYPE' is 'TestType', then test that no constructors or // assignments were called and the expected number of // destructors were called. if (bsl::is_same<TYPE, TestType>::value) { LOOP3_ASSERT(op, X, RES_EXP, CTORS_AFTER == CTORS_BEFORE); LOOP3_ASSERT(op, X, RES_EXP, ASSIGN_AFTER == ASSIGN_BEFORE); LOOP3_ASSERT(op, X, RES_EXP, DTORS_AFTER == DTORS_BEFORE + (LEN-res_len)); } } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END } // end for (mask) } // end for (i) } // end for (op) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testRemove() { // -------------------------------------------------------------------- // TESTING REMOVE // // Concerns: // 1. 'remove' and 'remove_if' have essentially the same characteristics. // 2. Will remove 0..N elements from an N-element list. // 3. Can remove elements from any or all positions in the list // 4. Destructors are called for removed elements and memory is deleted // for removed elements. // 5. No constructors, destructors, or assignment operators are called // on the remaining (non-removed) elements. // 6. No memory is allocated. // 7. Iterators to non-removed elements, including the 'end()' iterator, // remain valid after removal. // 8. The non-'E' elements retain their relative order. // // Plan: // For concern 1, perform the same tests for both 'remove' and // 'remove_if'. Generate lists from a small set of specifications from // empty to 10 elements, none of which contain the value 'E'. Replace 0 // to 'LENGTH' elements with the value 'E', in every possible // combination. For each specification and combination, make a copy of // all of the iterators to non-'E' elements, then call 'remove' or // 'remove_if'. Validate that: The number of new destructor call // matches the number of elements removed, reduction of memory blocks in // use is correct for the number elements removed, the number of new // allocations is zero, the number of new constructor calls is zero, and // the iterating over the remaining elements produces a sequence of // values and iterators matching those saved before the remove // operation. // // Testing: // void remove(const T& val); // template <class PRED> void remove_if(PRED p); // -------------------------------------------------------------------- const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); const TYPE& E = VALUES[4]; // Element with value 'E' (void) NUM_VALUES; bslma::TestAllocator testAllocator; ALLOC Z(&testAllocator); // Specifications from 0 to 10 elements long, none of which is the value // 'E'. const char* const SPECS[] = { "", "A", "AB", "ABA", "ABCD", "AAAA", "ABCDF", "ABCDFGHDAB" }; const int NUM_SPECS = sizeof(SPECS) / sizeof(SPECS[0]); const int MAX_SPEC_LEN = 10; enum { OP_FIRST, OP_REMOVE = OP_FIRST, // remove(const T& val); OP_REMOVE_IF, // template <class PRED> void remove_if(PRED p); OP_LAST }; for (int op = OP_FIRST; op < OP_LAST; ++op) { if (verbose) { switch (op) { case OP_REMOVE: printf("\nTesting remove(const T& val)\n"); break; case OP_REMOVE_IF: printf("\nTesting remove(PRED p)\n"); break; } } for (int i = 0; i < NUM_SPECS; ++i) { const char* const SPEC = SPECS[i]; const int LEN = static_cast<int>(std::strlen(SPEC)); ASSERT(MAX_SPEC_LEN >= LEN); // 'mask' contains a bit for each element in the list. For each // '1' bit, the element is replaced by the value 'E' for (unsigned mask = 0; mask < (unsigned) (1 << LEN); ++mask) { Obj mX(Z); const Obj& X = gg(&mX, SPEC); const_iterator save_iters[MAX_SPEC_LEN + 1]; char res_spec[MAX_SPEC_LEN + 1]; // expected result spec int res_len = 0; // To compute expected result length // Replace each element in 'mX' for which 'mask' has a '1' // bit with the value 'E'. iterator it = mX.begin(); int idx = 0; for (unsigned bit = 1; bit < (unsigned) (1 << LEN); bit <<= 1, ++it, ++idx) { if ((mask & bit)) { *it = E; } else { save_iters[res_len] = it; res_spec[res_len] = SPEC[idx]; ++res_len; } } LOOP2_ASSERT(SPEC, mask, X.end() == it); save_iters[res_len] = X.end(); res_spec[res_len] = '\0'; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; if (veryVeryVerbose) { T_; printf("Before: "); P_(X); } switch (op) { case OP_REMOVE: mX.remove(E); break; case OP_REMOVE_IF: mX.remove_if(VPred(E)); break; } if (veryVeryVerbose) { printf("After: "); P(X); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; // Test result value LOOP3_ASSERT(SPEC, res_spec, X, checkIntegrity(X, res_len)); LOOP3_ASSERT(SPEC, res_spec, X, (int) X.size() == res_len); LOOP3_ASSERT(SPEC, res_spec, X, X == g(res_spec)); // Test that iterators are still valid const_iterator cit = X.begin(); for (idx = 0; idx < (int) X.size(); ++idx, ++cit) { LOOP3_ASSERT(SPEC, res_spec, idx, save_iters[idx] == cit); } // Test end iterator LOOP3_ASSERT(SPEC, res_spec, idx, save_iters[idx] == cit); // Test allocations and deallocations LOOP2_ASSERT(SPEC, res_spec, AA == BB); LOOP2_ASSERT(SPEC, res_spec, deltaBlocks(LEN - res_len) == B - A); // If 'TYPE' is 'TestType', then test that no constructors or // assignments were called and the expected number of // destructors were called. if (bsl::is_same<TYPE, TestType>::value) { LOOP2_ASSERT(SPEC, res_spec, CTORS_AFTER == CTORS_BEFORE); LOOP2_ASSERT(SPEC, res_spec, ASSIGN_AFTER == ASSIGN_BEFORE); LOOP2_ASSERT(SPEC, res_spec, DTORS_AFTER == DTORS_BEFORE + (LEN-res_len)); } } // end for (mask) } // end for (i) } // end for (op) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testSplice() { // -------------------------------------------------------------------- // TESTING SPLICE // // Concerns: // 1. Can splice into any position within target list. // 2. Can splice from any position within source list. // 3. No iterators or pointers are invalidated. // 4. No allocations or deallocations occur. // 5. No constructor calls, destructor calls, or assignments occur. // // Test plan: // Perform a small area test with source and target lists of 0 to 5 // elements each, splicing into every target position from every // source position and every source length. Keep track of the // original iterators and element addresses from each list and // verify that they remain valid and point to the correct element in // the post-splice lists. Query the number of allocations, // deallocations, constructor calls, destructor calls, and // assignment operator calls before and after each splice and verify // that they do not change. // // Testing: // void splice(iterator pos, list& other); // void splice(iterator pos, list& other, iterator i); // void splice(iterator pos, list& other, // iterator first, iterator last); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator; ALLOC Z(&testAllocator); const char* const SPECS[] = { "", "A", "AB", "ABC", "ABCD", "ABCDE" }; const int NUM_SPECS = sizeof(SPECS) / sizeof(SPECS[0]); const int MAX_SPEC_LEN = 5; enum { OP_FIRST, OP_SPLICE_ALL = OP_FIRST, // splice(pos, other) OP_SPLICE_1, // splice(pos, other, i) OP_SPLICE_RANGE, // splice(pos, other, first, last) OP_LAST }; for (int op = OP_FIRST; op < OP_LAST; ++op) { switch (op) { case OP_SPLICE_ALL: if (verbose) printf("\nTesting splice(pos, other)\n"); break; case OP_SPLICE_1: if (verbose) printf("\nTesting splice(pos, other, i)\n"); break; case OP_SPLICE_RANGE: if (verbose) printf("\nTesting splice(pos, other, " "first, last)\n"); break; } for (int i = 0; i < NUM_SPECS * NUM_SPECS; ++i) { const char* const X_SPEC = SPECS[i / NUM_SPECS ]; const int X_LEN = static_cast<int>(std::strlen(X_SPEC)); const char* const Y_SPEC = SPECS[i % NUM_SPECS ]; const int Y_LEN = static_cast<int>(std::strlen(Y_SPEC)); if (veryVerbose) { P_(X_SPEC); P(Y_SPEC); } LOOP_ASSERT(X_SPEC, X_LEN <= MAX_SPEC_LEN); LOOP_ASSERT(Y_SPEC, Y_LEN <= MAX_SPEC_LEN); int max_y_pos = MAX_SPEC_LEN; int min_y_count = 0, max_y_count = MAX_SPEC_LEN; switch (op) { case OP_SPLICE_ALL: min_y_count = Y_LEN; break; case OP_SPLICE_1: min_y_count = max_y_count = 1; break; case OP_SPLICE_RANGE: break; } if (max_y_pos + min_y_count > Y_LEN) max_y_pos = Y_LEN - min_y_count; for (int x_pos = 0; x_pos <= X_LEN; ++x_pos) { for (int y_pos = 0; y_pos <= max_y_pos; ++y_pos) { for (int y_count = min_y_count; y_count <= Y_LEN-y_pos && y_count <= max_y_count; ++y_count) { Obj mX(Z); const Obj& X = gg(&mX, X_SPEC); Obj mY(Z); const Obj& Y = gg(&mY, Y_SPEC); if (veryVeryVerbose) { T_; P_(x_pos); P_(y_pos); P(y_count); T_; T_; printf("Before: "); P_(X); P(Y); } // iterators and pointers to elements -- BEFORE iterator BX_iters[MAX_SPEC_LEN + 1]; const TYPE* BX_ptrs[MAX_SPEC_LEN]; iterator BY_iters[MAX_SPEC_LEN + 1]; const TYPE* BY_ptrs[MAX_SPEC_LEN]; // iterators and pointers to elements -- AFTER iterator AX_iters[2*MAX_SPEC_LEN + 1]; const TYPE* AX_ptrs[2*MAX_SPEC_LEN]; iterator AY_iters[MAX_SPEC_LEN + 1]; const TYPE* AY_ptrs[MAX_SPEC_LEN]; // Save iterators and pointers into BEFORE arrays iterator xi = mX.begin(); for (int j = 0; j < X_LEN; ++j, ++xi) { BX_iters[j] = xi; BX_ptrs[j] = &*xi; } BX_iters[X_LEN] = xi; iterator yi = mY.begin(); for (int j = 0; j < Y_LEN; ++j, ++yi) { BY_iters[j] = yi; BY_ptrs[j] = &*yi; } BY_iters[Y_LEN] = yi; // Compute iterators and pointers AFTER splice for (int j = 0; j < x_pos; ++j) { AX_iters[j] = BX_iters[j]; AX_ptrs[j] = BX_ptrs[j]; } for (int j = 0; j < y_pos; ++j) { AY_iters[j] = BY_iters[j]; AY_ptrs[j] = BY_ptrs[j]; } for (int j = 0; j < y_count; ++j) { AX_iters[x_pos + j] = BY_iters[y_pos + j]; AX_ptrs[x_pos + j] = BY_ptrs[y_pos + j]; } for (int j = x_pos; j < X_LEN; ++j) { AX_iters[j + y_count] = BX_iters[j]; AX_ptrs[j + y_count] = BX_ptrs[j]; } AX_iters[X_LEN + y_count] = BX_iters[X_LEN]; for (int j = y_pos + y_count; j < Y_LEN; ++j) { AY_iters[j - y_count] = BY_iters[j]; AY_ptrs[j - y_count] = BY_ptrs[j]; } AY_iters[Y_LEN - y_count] = BY_iters[Y_LEN]; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; switch (op) { case OP_SPLICE_ALL: ASSERT(0 == y_pos); ASSERT(Y_LEN == y_count); mX.splice(BX_iters[x_pos], mY); break; case OP_SPLICE_1: ASSERT(1 == y_count); mX.splice(BX_iters[x_pos], mY, BY_iters[y_pos]); break; case OP_SPLICE_RANGE: mX.splice(BX_iters[x_pos], mY, BY_iters[y_pos], BY_iters[y_pos + y_count]); break; } if (veryVeryVerbose) { T_; T_; printf("After: "); P_(X); P(Y); } const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AA == BB); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, A == B ); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, CTORS_AFTER == CTORS_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, ASSIGN_AFTER == ASSIGN_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, DTORS_AFTER == DTORS_BEFORE); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, checkIntegrity(X, X_LEN + y_count)); xi = mX.begin(); for (int j = 0; j < X_LEN + y_count; ++j, ++xi) { LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AX_iters[j] == xi); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AX_ptrs[j] == &*xi); } LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, X.end() == xi); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AX_iters[X_LEN + y_count] == xi); yi = mY.begin(); for (int j = 0; j < Y_LEN - y_count; ++j, ++yi) { LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AY_iters[j] == yi); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AY_ptrs[j] == &*yi); } LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, Y.end() == yi); LOOP4_ASSERT(X_SPEC, Y_SPEC, x_pos, y_pos, AY_iters[Y_LEN - y_count] == yi); } // end for (y_count) } // end for (y_pos) } // end for (x_pos) } // end for (i) } // end for (op) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testReverse() { // -------------------------------------------------------------------- // TESTING REVERSE // // Concerns: // 1. Reversing a list produced the correct result with 0, 1, 2, // or more elements. // 2. Reversing a list with duplicate elements works as expected. // 3. No constructors, destructors, or assignment operators of // contained elements are called. // 4. No memory is allocated or deallocated. // // Plan: // Create a list from a variety of specifications, including empty // lists, lists of different lengths, and lists with consecutive or // non-consecutive duplicate elements and call 'reverse' on the // list. For concerns 1 and 2, verify that calling 'reverse' // produces the expected result. For concern 3, compare the counts // of 'TestType' constructors and destructors before and after // calling 'reverse' and verify that they do not change. For // concern 4, use a test allocator and compare the counts of total // blocks allocated and blocks in use before and after calling // 'reverse' and verify that the counts do not change. // // Testing: // void reverse(); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); ALLOC Z(&testAllocator); struct { int d_line; const char* d_spec_before; const char* d_spec_after; } const DATA[] = { { L_, "", "" }, { L_, "A", "A" }, { L_, "AB", "BA" }, { L_, "ABC", "CBA" }, { L_, "ABCD", "DCBA" }, { L_, "ABBC", "CBBA" }, { L_, "ABCA", "ACBA" }, { L_, "AAAA", "AAAA" }, { L_, "ABCDEABCD", "DCBAEDCBA" }, }; const int NUM_DATA = sizeof(DATA) / sizeof(DATA[0]); for (int i = 0; i < NUM_DATA; ++i) { const int LINE = DATA[i].d_line; const char *SPEC_BEFORE = DATA[i].d_spec_before; const char *SPEC_AFTER = DATA[i].d_spec_after; const size_t LENGTH = strlen(SPEC_BEFORE); Obj mX(Z); const Obj& X = gg(&mX, SPEC_BEFORE); Obj mExp; const Obj& EXP = gg(&mExp, SPEC_AFTER); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const int CTORS_BEFORE = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_BEFORE = numAssignmentCalls; const int DTORS_BEFORE = numDestructorCalls; mX.reverse(); const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const int CTORS_AFTER = (numDefaultCtorCalls + numCharCtorCalls + numCopyCtorCalls); const int ASSIGN_AFTER = numAssignmentCalls; const int DTORS_AFTER = numDestructorCalls; LOOP_ASSERT(LINE, checkIntegrity(X, LENGTH)); LOOP_ASSERT(LINE, EXP == X); LOOP_ASSERT(LINE, AA == BB); LOOP_ASSERT(LINE, A == B ); LOOP_ASSERT(LINE, CTORS_AFTER == CTORS_BEFORE); LOOP_ASSERT(LINE, ASSIGN_AFTER == ASSIGN_BEFORE); LOOP_ASSERT(LINE, DTORS_AFTER == DTORS_BEFORE); } // end for (i) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testTypeTraits(bool uses_bslma, bool bitwise_moveable) { // -------------------------------------------------------------------- // TESTING TYPE TRAITS // // Concerns: // 1. That the list has the 'bslalg::HasStlIterators' trait. // 2. Iff instantiated with 'bsl::allocator', then list has the // 'bslma::UsesBslmaAllocator' trait. // 3. Iff instantiated with an allocator that is bitwise moveable, then // the list has the 'bslmf::IsBitwiseMoveable' trait. // // Plan: // Test each of the above three traits and compare their value to the // expected value as expressed in the 'uses_bslma' and // 'bitwise_moveable' arguments to this function. // // Testing: // bslalg::HasStlIterators // bslma::UsesBslmaAllocator // bslmf::IsBitwiseMoveable // -------------------------------------------------------------------- ASSERT(bslalg::HasStlIterators<Obj>::value); LOOP_ASSERT(uses_bslma, uses_bslma == bslma::UsesBslmaAllocator<Obj>::value); LOOP_ASSERT(bitwise_moveable, bitwise_moveable == bslmf::IsBitwiseMoveable<Obj>::value); } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testComparisonOps() { // -------------------------------------------------------------------- // TESTING COMPARISON FREE OPERATORS // // Concerns: // 1. 'operator<' returns the lexicographic comparison on two lists. // 2. 'operator>', 'operator<=', and 'operator>=' are correctly tied to // 'operator<'. // 3. That traits get selected properly. // // Plan: // For a variety of lists of different sizes and different values, test // that the comparison returns as expected. // // Testing: // bool operator<(const list<T,A>&, const list<T,A>&); // bool operator>(const list<T,A>&, const list<T,A>&); // bool operator<=(const list<T,A>&, const list<T,A>&); // bool operator>=(const list<T,A>&, const list<T,A>&); // ------------------------------------------------------------------------ // NOTE: These specs must be sorted in lexicographical order static const char *SPECS[] = { "", "A", "AA", "AAA", "AAAA", "AAAAA", "AAAAAA", "AAAAAAA", "AAAAAAAA", "AAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAAA", "AAAAAAAAAAAA", "AAAAAAAAAAAAA", "AAAAAAAAAAAAAA", "AAAAAAAAAAAAAAA", "AAAAAB", "AAAAABA", "AAAAABAA", "AAAAABAAA", "AAAAABAAAA", "AAAAABAAAAA", "AAAAABAAAAAA", "AAAAABAAAAAAA", "AAAAABAAAAAAAA", "AAAAABAAAAAAAAA", "AAAAB", "AAAABAAAAAA", "AAAABAAAAAAA", "AAAABAAAAAAAA", "AAAABAAAAAAAAA", "AAAABAAAAAAAAAA", "AAAB", "AAABA", "AAABAA", "AAABAAAAAA", "AAB", "AABA", "AABAA", "AABAAA", "AABAAAAAA", "AB", "ABA", "ABAA", "ABAAA", "ABAAAAAA", "B", "BA", "BAA", "BAAA", "BAAAA", "BAAAAA", "BAAAAAA", "BB", }; const int NUM_SPECS = sizeof(SPECS) / sizeof(SPECS[0]); if (verbose) printf("\nCompare each pair of similar and different" " values (u, v) in S x S \n."); { // Create first object for (int si = 0; si < NUM_SPECS; ++si) { const char *const U_SPEC = SPECS[si]; Obj mU(g(U_SPEC)); const Obj& U = mU; if (veryVerbose) { T_; T_; P_(U_SPEC); P(U); } // Create second object for (int sj = 0; sj < NUM_SPECS; ++sj) { const char *const V_SPEC = SPECS[sj]; Obj mV(g(V_SPEC)); const Obj& V = mV; if (veryVerbose) { T_; T_; T_; P_(V_SPEC); P(V); } const bool isLT = si < sj; const bool isLE = si <= sj; const bool isGT = si > sj; const bool isGE = si >= sj; LOOP2_ASSERT(si, sj, isLT == (U < V)); LOOP2_ASSERT(si, sj, isLE == (U <= V)); LOOP2_ASSERT(si, sj, isGT == (U > V)); LOOP2_ASSERT(si, sj, isGE == (U >= V)); LOOP2_ASSERT(si, sj, (U < V) == !(U >= V)); LOOP2_ASSERT(si, sj, (U > V) == !(U <= V)); } } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testSwap() { // -------------------------------------------------------------------- // TESTING SWAP // // Concerns: // 1. Swapping containers does not swap allocators. // 2. Swapping containers with same allocator results in no allocation // or deallocation operations. // 3. Swapping containers with the same allocator causes iterators to // remain valid but to refer to the opposite container. // 4. DEPRECATED: Swapping containers with different allocator instances // will have the same memory usage copy-constructing each container // and destroying the original. // 5. DEPRECATED: An exception thrown while swapping containers with // different allocator instances will leave the containers unchanged. // // Plan: // Construct 'lst1' and 'lst2' with same test allocator. // Add data to each list. Remember allocation statistics and iterators. // Verify that contents were swapped. // Verify that allocator is unchanged. // Verify that no memory was allocated or deallocated. // Verify that each iterator now refers to the same element in the other // container. // For concerns 4 and 5, construct two containers with different // allocators and swap them within an exception test harness. Verify // the expected memory usage and verify that an exception leaves the // containers unchanged. // // Testing: // swap(list& rhs); // member // bsl::swap(list<T,A>& lhs, list<T,A>& rhs); // free function // ------------------------------------------------------------------------ bslma::TestAllocator testAllocator(veryVeryVerbose); bslma::TestAllocator testAllocator2(veryVeryVerbose); const ALLOC Z(&testAllocator); const ALLOC Z2(&testAllocator2); const size_t MAX_LEN = 15; static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDA" }, // 5 { L_, "ABCDABCDABCDABC" }, // 15 }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\nTesting member swap\n"); for (int ti = 0; ti < NUM_DATA; ++ti) { const int XLINE = DATA[ti].d_lineNum; const char *XSPEC = DATA[ti].d_spec; const size_t XLENGTH = strlen(XSPEC); LOOP_ASSERT(XLINE, MAX_LEN >= XLENGTH); for (int tj = 0; tj < NUM_DATA; ++tj) { const int YLINE = DATA[tj].d_lineNum; const char *YSPEC = DATA[tj].d_spec; const size_t YLENGTH = strlen(YSPEC); LOOP_ASSERT(YLINE, MAX_LEN >= YLENGTH); // Create two objects to be swapped. Obj mX(Z); const Obj& X = gg(&mX, XSPEC); Obj mY(Z); const Obj& Y = gg(&mY, YSPEC); // Save iterators const_iterator xiters[MAX_LEN + 1]; const_iterator yiters[MAX_LEN + 1]; const_iterator it = X.begin(); for (size_t i = 0; i < XLENGTH + 1; ++i, ++it) { xiters[i] = it; } it = Y.begin(); for (size_t i = 0; i < YLENGTH + 1; ++i, ++it) { yiters[i] = it; } const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); mX.swap(mY); // Test here const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); // Test the contents have swapped. Allocator is unchanged. LOOP2_ASSERT(XLINE, YLINE, g(YSPEC) == X); LOOP2_ASSERT(XLINE, YLINE, g(XSPEC) == Y); LOOP2_ASSERT(XLINE, YLINE, Z == X.get_allocator()); LOOP2_ASSERT(XLINE, YLINE, Z == Y.get_allocator()); // Test that iterators have swapped. NOTE: the end iterator is // included in this test. This test is correct for our current // implementation, but the standard does not require that the end // iterator be swapped. it = X.begin(); for (size_t i = 0; i < YLENGTH + 1; ++i, ++it) { LOOP3_ASSERT(XLINE, YLINE, i, it == yiters[i]); } it = Y.begin(); for (size_t i = 0; i < XLENGTH + 1; ++i, ++it) { LOOP3_ASSERT(XLINE, YLINE, i, it == xiters[i]); } // No allocations or deallocations should have occurred. LOOP2_ASSERT(XLINE, YLINE, BB == AA); LOOP2_ASSERT(XLINE, YLINE, B == A ); } // end for tj } // end for ti if (verbose) printf("\nTesting free swap\n"); for (int ti = 0; ti < NUM_DATA; ++ti) { const int XLINE = DATA[ti].d_lineNum; const char *XSPEC = DATA[ti].d_spec; const size_t XLENGTH = strlen(XSPEC); LOOP_ASSERT(XLINE, MAX_LEN >= XLENGTH); for (int tj = 0; tj < NUM_DATA; ++tj) { const int YLINE = DATA[tj].d_lineNum; const char *YSPEC = DATA[tj].d_spec; const size_t YLENGTH = strlen(YSPEC); LOOP_ASSERT(YLINE, MAX_LEN >= YLENGTH); // Create two objects to be swapped. Obj mX(Z); const Obj& X = gg(&mX, XSPEC); Obj mY(Z); const Obj& Y = gg(&mY, YSPEC); // Save iterators const_iterator xiters[MAX_LEN + 1]; const_iterator yiters[MAX_LEN + 1]; const_iterator it = X.begin(); for (size_t i = 0; i < XLENGTH + 1; ++i, ++it) { xiters[i] = it; } it = Y.begin(); for (size_t i = 0; i < YLENGTH + 1; ++i, ++it) { yiters[i] = it; } const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); swap(mX, mY); // Test here const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); // Test the contents have swapped. Allocator is unchanged. LOOP2_ASSERT(XLINE, YLINE, g(YSPEC) == X); LOOP2_ASSERT(XLINE, YLINE, g(XSPEC) == Y); LOOP2_ASSERT(XLINE, YLINE, Z == X.get_allocator()); LOOP2_ASSERT(XLINE, YLINE, Z == Y.get_allocator()); // Test that iterators have swapped. NOTE: the end iterator is // included in this test. This test is correct for our current // implementation, but the standard does not require that the end // iterator be swapped. it = X.begin(); for (size_t i = 0; i < YLENGTH + 1; ++i, ++it) { LOOP3_ASSERT(XLINE, YLINE, i, it == yiters[i]); } it = Y.begin(); for (size_t i = 0; i < XLENGTH + 1; ++i, ++it) { LOOP3_ASSERT(XLINE, YLINE, i, it == xiters[i]); } // No allocations or deallocations should have occurred. LOOP2_ASSERT(XLINE, YLINE, BB == AA); LOOP2_ASSERT(XLINE, YLINE, B == A ); } // end for tj } // end for ti if (verbose) printf("\nTesting member swap with unequal allocators\n"); for (int ti = 0; ti < NUM_DATA; ++ti) { const int XLINE = DATA[ti].d_lineNum; const char *XSPEC = DATA[ti].d_spec; const size_t XLENGTH = strlen(XSPEC); LOOP_ASSERT(XLINE, MAX_LEN >= XLENGTH); for (int tj = 0; tj < NUM_DATA; ++tj) { const int YLINE = DATA[tj].d_lineNum; const char *YSPEC = DATA[tj].d_spec; const size_t YLENGTH = strlen(YSPEC); LOOP_ASSERT(YLINE, MAX_LEN >= YLENGTH); // Create two objects to be swapped. Obj mX(Z); const Obj& X = gg(&mX, XSPEC); Obj mY(Z2); const Obj& Y = gg(&mY, YSPEC); BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { ExceptionGuard<Obj> gx(&mX, X, XLINE); ExceptionGuard<Obj> gy(&mY, Y, YLINE); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); const Int64 BB2 = testAllocator2.numBlocksTotal(); const Int64 B2 = testAllocator2.numBlocksInUse(); mX.swap(mY); // Test here gx.release(); gy.release(); const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); const Int64 AA2 = testAllocator2.numBlocksTotal(); const Int64 A2 = testAllocator2.numBlocksInUse(); // Test the contents have swapped. Allocator is unchanged. LOOP2_ASSERT(XLINE, YLINE, g(YSPEC) == X); LOOP2_ASSERT(XLINE, YLINE, g(XSPEC) == Y); LOOP2_ASSERT(XLINE, YLINE, Z == X.get_allocator()); LOOP2_ASSERT(XLINE, YLINE, Z2 == Y.get_allocator()); // Total allocations increased by enough to build copies // of each list LOOP2_ASSERT(XLINE, YLINE, BB +expectedBlocks(YLENGTH) == AA ); LOOP2_ASSERT(XLINE, YLINE, BB2+expectedBlocks(XLENGTH) == AA2); // Blocks in use have effectively swapped ptrdiff_t difference = static_cast<ptrdiff_t>(YLENGTH - XLENGTH); LOOP2_ASSERT(XLINE, YLINE, A - B == deltaBlocks(difference)); LOOP2_ASSERT(XLINE, YLINE, A2 - B2 == -(A - B)); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END } // end for tj } // end for ti } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testErase() { // -------------------------------------------------------------------- // TESTING ERASE // // Concerns: // 1. That the resulting value is correct. // 2. That erase operations do not allocate memory. // 3. That no memory is leaked. // // Plan: // For the 'erase' methods, the concerns are simply to cover the full // range of possible indices and numbers of elements. We build a list // with a variable size and capacity, and remove a variable element or // number of elements from it, and verify that size, capacity, and value // are as expected: // - Without exceptions, and computing the number of allocations. // - That the total allocations do not increase. // - That the in-use allocations diminish by the correct amount. // // Testing: // void pop_back(); // void pop_front(); // iterator erase(const_iterator pos); // iterator erase(const_iterator first, const_iterator last); // ----------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); const int MAX_LEN = 15; // Operations to test enum { TEST_FIRST, TEST_ERASE1 = TEST_FIRST, // erase(pos); TEST_ERASE_RANGE, // erase(first, last); TEST_POP_BACK, // pop_back(); TEST_POP_FRONT, // pop_front(); TEST_LAST }; static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDA" }, // 5 { L_, "ABCDABCDABCDABC" }, // 15 }; const int NUM_DATA = sizeof DATA / sizeof *DATA; // Iterate through the operations for (int op = TEST_FIRST; op < TEST_LAST; ++op) { const char* opname = "<unknown>"; switch (op) { case TEST_ERASE1: opname = "erase(iterator)"; break; case TEST_ERASE_RANGE: opname = "erase(iterator, iterator)"; break; case TEST_POP_BACK: opname = "pop_back()"; break; case TEST_POP_FRONT: opname = "pop_front()"; break; } if (verbose) printf("\ntesting %s\n", opname); for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const int LENGTH = static_cast<int>(strlen(SPEC)); LOOP_ASSERT(LENGTH, LENGTH <= MAX_LEN); int pos_first, pos_last; // possible start positions switch (op) { case TEST_ERASE1: pos_first = 0; pos_last = LENGTH - 1; break; case TEST_ERASE_RANGE: pos_first = 0; pos_last = LENGTH; break; case TEST_POP_BACK: pos_first = LENGTH - 1; pos_last = LENGTH - 1; break; case TEST_POP_FRONT: pos_first = 0; pos_last = 0; break; } // end switch for (int posidx = pos_first; posidx <= pos_last; ++posidx) { int erase_min, erase_max; // num elements to be erased if (TEST_ERASE_RANGE == op) { erase_min = 0; erase_max = LENGTH - posidx; } else { erase_min = 1; erase_max = 1; if (LENGTH < 1) continue; } for (int n = erase_min; n <= erase_max; ++n) { Obj mX(Z); const Obj& X = gg(&mX, SPEC); const Obj Y(X); // Control // Save original iterators (including end iterator) // C++0x allows erasing using const_iterator const_iterator orig_iters[MAX_LEN + 1]; const_iterator it = X.begin(); for (int i = 0; i < LENGTH + 1; ++i, ++it) { orig_iters[i] = it; } // C++0x allows erasing using const_iterator const_iterator pos = orig_iters[posidx]; iterator ret; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; P_(SPEC); P_(posidx); P(n); } switch (op) { case TEST_ERASE1: { ret = mX.erase(pos); } break; case TEST_ERASE_RANGE: { // C++0x allows erasing using const_iterator const_iterator end_range = succ(pos, n); ret = mX.erase(pos, end_range); } break; case TEST_POP_BACK: { mX.pop_back(); ret = mX.end(); } break; case TEST_POP_FRONT: { mX.pop_front(); ret = mX.begin(); } break; } // end switch // Should never have an exception, so should always get // here. const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); // Test important values LOOP3_ASSERT(LINE, op, posidx, checkIntegrity(X, LENGTH - n)); LOOP3_ASSERT(LINE, op, posidx, LENGTH - n == (int) X.size()); LOOP3_ASSERT(LINE, op, posidx, BB == AA); LOOP3_ASSERT(LINE, op, posidx, B + deltaBlocks(-n) == A); const_iterator cit = X.begin(); const_iterator yi = Y.begin(); for (int i = 0; i < LENGTH; ++i, ++yi) { if (i < posidx) { // Test that part before erasure is unchanged LOOP4_ASSERT(LINE, op, posidx, i, *yi == *cit); LOOP4_ASSERT(LINE, op, posidx, i, orig_iters[i] == cit); ++cit; } else if (i < posidx + n) { // skip erased values continue; } else { // Test that part after erasure is unchanged LOOP4_ASSERT(LINE, op, posidx, i, *yi == *cit); LOOP4_ASSERT(LINE, op, posidx, i, orig_iters[i] == cit); ++cit; } } // Test end iterator LOOP3_ASSERT(LINE, op, posidx, X.end() == cit); LOOP3_ASSERT(LINE, op, posidx, Y.end() == yi); LOOP3_ASSERT(LINE, op, posidx, orig_iters[LENGTH] == cit); } // end for (n) LOOP3_ASSERT(LINE, op, posidx, 0 == testAllocator.numBlocksInUse()); } // end for (posidx) } // end for (ti) } // end for (op) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testInsert() { // -------------------------------------------------------------------- // TESTING INSERTION: // // Concerns // 1. That the resulting list value is correct. // 2. That the 'insert' return (if any) value is a valid iterator to the // first inserted element or to the insertion position if no elements // are inserted. // 3. That insertion of one element has the strong exception guarantee. // 4. That insertion is exception neutral w.r.t. memory allocation. // 5. The internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // 6. That inserting a 'const T& value' that is a reference to an element // of the list does not suffer from aliasing problems. // 7. That no iterators are invalidated by the insertion. // 8. That inserting 'n' copies of value 'v' selects the correct // overload when 'n' and 'v' are identical arithmetic types (i.e., // the iterator-range overload is not selected). // 9. That inserting 'n' copies of value 'v' selects the correct // overload when 'v' is a pointer type and 'n' is a null pointer // literal ,'0'. (i.e., the iterator-range overload is not selected). // // Plan: // Create objects of various sizes and insert a distinct value one or // more times into each possible position. For concerns 1, 2 & 5, verify // that the return value and modified list are as expected. For concerns // 3 & 4 perform the test using the exception-testing infrastructure and // verify the value and memory changes. For concern 6, we select the // value to insert from the middle of the list, thus testing insertion // before, at, and after the aliased element. For concern 7, save // copies of the iterators before and after the insertion point and // verify that they point to the same (valid) elements after the // insertion by iterating to the same point in the resulting list and // comparing the new iterators to the old ones. For concerns 8 and 9, // insert 2 elements of integral or pointer types into lists and verify // that it compiles and that the resultant list contains the expected // values. // // Testing: // iterator insert(const_iterator pos, const T& value); // iterator insert(const_iterator pos, size_type n, const T& value); // void push_back(const T& value); // void push_front(const T& value); // ----------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) NUM_VALUES; const int MAX_LEN = 15; // Operations to test enum { TEST_FIRST, TEST_INSERT_N0 = TEST_FIRST, // insert(pos, 0, value); TEST_INSERT_N1, // insert(pos, 1, value); TEST_INSERT_N2, // insert(pos, 2, value); TEST_INSERT_N3, // insert(pos, 3, value); TEST_INSERT, // insert(pos, value); TEST_PUSH_BACK, // push_back(value); TEST_PUSH_FRONT, // push_front(value); TEST_LAST }; static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDA" }, // 5 { L_, "ABCDABCDABCDABC" }, // 15 }; const int NUM_DATA = sizeof DATA / sizeof *DATA; // Iterate through the operations for (int op = TEST_FIRST; op < TEST_LAST; ++op) { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const int LENGTH = static_cast<int>(strlen(SPEC)); LOOP_ASSERT(LENGTH, LENGTH <= MAX_LEN); for (int posidx = 0; posidx <= LENGTH; ++posidx) { if (TEST_PUSH_BACK == op && LENGTH != posidx) { continue; // Can push_back only at end } else if (TEST_PUSH_FRONT == op && 0 != posidx) { continue; // Can push_front only at beginning } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(Z); const Obj& X = gg(&mX, SPEC); const Obj Y(X); // Control // Choose a value to insert that is deliberately aliasing // a list element. const TYPE& NEW_ELEM_REF(LENGTH ? nthElem(X,LENGTH/2) : VALUES[0]); const TYPE NEW_ELEM_VALUE(NEW_ELEM_REF); // Save original iterators (including end iterator) // C++0x allows insertion using const_iterator const_iterator orig_iters[MAX_LEN + 1]; const_iterator it = X.begin(); for (int i = 0; i < LENGTH + 1; ++i, ++it) { orig_iters[i] = it; } testAllocator.setAllocationLimit(AL); int n = 0; // C++0x allows insertion using const_iterator const_iterator pos = orig_iters[posidx]; iterator ret; ExceptionGuard<Obj> guard(&mX, X, LINE); const Int64 B = testAllocator.numBlocksInUse(); switch (op) { case TEST_INSERT: { ret = mX.insert(pos, NEW_ELEM_REF); n = 1; } break; case TEST_PUSH_BACK: { mX.push_back(NEW_ELEM_REF); ret = --mX.end(); n = 1; } break; case TEST_PUSH_FRONT: { mX.push_front(NEW_ELEM_REF); ret = mX.begin(); n = 1; } break; default: { n = op - TEST_INSERT_N0; if (n > 1) // strong guarantee only for 0 or 1 insertion guard.release(); ret = mX.insert(pos, n, NEW_ELEM_REF); } } // end switch guard.release(); // If got here, then there was no exception const Int64 A = testAllocator.numBlocksInUse(); // Test important values LOOP3_ASSERT(LINE, op, posidx, checkIntegrity(X, LENGTH + n)); LOOP3_ASSERT(LINE, op, posidx, LENGTH + n == (int) X.size()); LOOP3_ASSERT(LINE, op, posidx, B + deltaBlocks(n) == A); // Test return value from 'insert' LOOP3_ASSERT(LINE, op, posidx, bsl::distance(mX.begin(), ret) == posidx); const_iterator cit = X.begin(); const_iterator yi = Y.begin(); for (int i = 0; i < (int) X.size(); ++i, ++cit) { if (i < posidx) { // Test that part before insertion is unchanged LOOP4_ASSERT(LINE, op, posidx, i, *yi++ == *cit); LOOP4_ASSERT(LINE, op, posidx, i, orig_iters[i] == cit); } else if (i < posidx + n) { // Test inserted values LOOP4_ASSERT(LINE, op, posidx, i, NEW_ELEM_VALUE == *cit); } else { // Test that part after insertion is unchanged LOOP4_ASSERT(LINE, op, posidx, i, *yi++ == *cit); LOOP4_ASSERT(LINE, op, posidx, i, orig_iters[i - n] == cit); } } // Test end iterator LOOP3_ASSERT(LINE, op, posidx, X.end() == cit); LOOP3_ASSERT(LINE, op, posidx, orig_iters[LENGTH] == cit); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END LOOP3_ASSERT(LINE, op, posidx, 0 == testAllocator.numBlocksInUse()); } // end for (posidx) } // end for (ti) } // end for (op) if (verbose) printf("\nTesting overloading disambiguation\n"); { // 'n' and 'v' are identical arithmetic types. Make sure overload // resolution doesn't try to call the iterator-range 'insert'. { list<size_t, ALLOC> x; list<size_t, ALLOC>& X = x; size_t n = 2, v = 99; x.insert(X.begin(), n, v); ASSERT(X.size() == n); ASSERT(X.front() == v); ASSERT(X.back() == v); } { list<IntWrapper, ALLOC> x; list<IntWrapper, ALLOC>& X = x; unsigned char n = 2, v = 99; x.insert(X.begin(), n, v); ASSERT(X.size() == n); ASSERT(X.front() == v); ASSERT(X.back() == v); } { list<IntWrapper, ALLOC> x; list<IntWrapper, ALLOC>& X = x; size_t n = 2; int v = 99; x.insert(X.begin(), n, v); ASSERT(X.size() == n); ASSERT(X.front() == v); ASSERT(X.back() == v); } { // TBD: the below code block causes warnings. //list<IntWrapper, ALLOC> x; //list<IntWrapper, ALLOC>& X = x; //float n = 2, v = 99; //x.insert(X.begin(), n, v); //ASSERT(X.size() == n); //ASSERT(X.front() == v); //ASSERT(X.back() == v); } { list<IntWrapper, ALLOC> x; list<IntWrapper, ALLOC>& X = x; TestEnum n = TWO, v = NINETYNINE; x.insert(X.begin(), n, v); ASSERT(X.size() == (size_t)n); ASSERT(X.front() == v); ASSERT(X.back() == v); } // 'n' is an 'int' and 'v' is a zero 'int' literal (which is also a // null pointer literal). Make sure that it is correctly treated as a // pointer. { list<char*, ALLOC> x; list<char*, ALLOC>& X = x; int n = 2; char *v = 0; x.insert(X.begin(), n, 0); // Literal null, acts like an int. ASSERT(X.size() == (size_t)n); ASSERT(X.front() == v); ASSERT(X.back() == v); } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testEmplace() { // -------------------------------------------------------------------- // TESTING INSERTION USING EMPLACE: // // Concerns // 1. That the resulting list value is correct. // 2. That the 'emplace' return (if any) value is a valid iterator to the // first inserted element or to the insertion position if no elements // are inserted. // 3. That 'emplace' has the strong exception guarantee. // 4. That 'emplace' is exception neutral w.r.t. memory allocation. // 5. The internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // 6. That inserting a 'const T& value' that is a reference to an element // of the list does not suffer from aliasing problems. // 7. That no iterators are invalidated by the insertion. // 8. That 'emplace' passes 0 to 5 arguments to the 'T' constructor. // // Plan: // Create objects of various sizes and insert a distinct value into each // possible position. For concerns 1, 2 & 5, verify that the return // value and modified list are as expected. For concerns 3 & 4 perform // the test using the exception-testing infrastructure and verify the // value and memory changes. For concern 6, we select the value to // insert from the middle of the list, thus testing insertion before, // at, and after the aliased element. For concern 7, save copies of the // iterators before and after the insertion point and verify that they // point to the same (valid) elements after the insertion by iterating // to the same point in the resulting list and comparing the new // iterators to the old ones. For concern 8, test each 'emplace' call // with 0 to 5 arguments. The test types are designed to ignore all but // the last argument, but verify that the preceding arguments are the // values '1', '2', '3', and '4'. // // Testing: // iterator emplace(const_iterator pos, Args&&... args); // void emplace_back(Args&&... args); // void emplace_front(Args&&... args); // ----------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); const TYPE DEFAULT_VALUE = TYPE(::DEFAULT_VALUE); (void) NUM_VALUES; const int MAX_LEN = 15; // Operations to test enum { TEST_FIRST, TEST_EMPLACE_A0 = TEST_FIRST, // emplace(pos); TEST_EMPLACE_A1, // emplace(pos, a1); TEST_EMPLACE_A2, // emplace(pos, a1, a2); TEST_EMPLACE_A3, // emplace(pos, a1, a2, a3); TEST_EMPLACE_A4, // emplace(pos, a1, a2, a3, a4); TEST_EMPLACE_A5, // emplace(pos, a1, a2, a3, a4, a5); TEST_EMPLACE_FRONT_A0, // emplace_front(pos); TEST_EMPLACE_FRONT_A1, // emplace_front(pos, a1); TEST_EMPLACE_FRONT_A2, // emplace_front(pos, a1, a2); TEST_EMPLACE_FRONT_A3, // emplace_front(pos, a1, a2, a3); TEST_EMPLACE_FRONT_A4, // emplace_front(pos, a1, a2, a3, a4); TEST_EMPLACE_FRONT_A5, // emplace_front(pos, a1, a2, a3, a4,a5); TEST_EMPLACE_BACK_A0, // emplace_back(pos); TEST_EMPLACE_BACK_A1, // emplace_back(pos, a1); TEST_EMPLACE_BACK_A2, // emplace_back(pos, a1, a2); TEST_EMPLACE_BACK_A3, // emplace_back(pos, a1, a2, a3); TEST_EMPLACE_BACK_A4, // emplace_back(pos, a1, a2, a3, a4); TEST_EMPLACE_BACK_A5, // emplace_back(pos, a1, a2, a3, a4, a5); TEST_LAST }; static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDA" }, // 5 { L_, "ABCDABCDABCDABC" }, // 15 }; const int NUM_DATA = sizeof DATA / sizeof *DATA; // Iterate through the operations for (int op = TEST_FIRST; op < TEST_LAST; ++op) { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const int LENGTH = static_cast<int>(strlen(SPEC)); LOOP_ASSERT(LENGTH, LENGTH <= MAX_LEN); for (int posidx = 0; posidx <= LENGTH; ++posidx) { if (TEST_EMPLACE_BACK_A0 <= op && op <= TEST_EMPLACE_BACK_A5 && LENGTH != posidx) { continue; // Can emplace_back only at end } else if (TEST_EMPLACE_FRONT_A0 <= op && op <= TEST_EMPLACE_FRONT_A5 && 0 != posidx) { continue; // Can emplace_front only at beginning } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(Z); const Obj& X = gg(&mX, SPEC); const Obj Y(X); // Control // Choose a value to insert that is deliberately aliasing // a list element. bool useDefault = (TEST_EMPLACE_A0 || TEST_EMPLACE_FRONT_A0 || TEST_EMPLACE_BACK_A0); const TYPE& NEW_ELEM_REF(useDefault ? DEFAULT_VALUE : LENGTH ? nthElem(X,LENGTH/2) : VALUES[0]); const TYPE NEW_ELEM_VALUE(NEW_ELEM_REF); // Save original iterators (including end iterator) // C++0x allows insertion using const_iterator const_iterator orig_iters[MAX_LEN + 1]; const_iterator it = X.begin(); for (int i = 0; i < LENGTH + 1; ++i, ++it) { orig_iters[i] = it; } testAllocator.setAllocationLimit(AL); // C++0x allows insertion using const_iterator const_iterator pos = orig_iters[posidx]; iterator ret; ExceptionGuard<Obj> guard(&mX, X, LINE); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); switch (op) { case TEST_EMPLACE_A0: { ret = mX.emplace(pos); } break; case TEST_EMPLACE_A1: { ret = mX.emplace(pos, NEW_ELEM_REF); } break; case TEST_EMPLACE_A2: { ret = mX.emplace(pos, 1, NEW_ELEM_REF); } break; case TEST_EMPLACE_A3: { ret = mX.emplace(pos, 1, 2, NEW_ELEM_REF); } break; case TEST_EMPLACE_A4: { ret = mX.emplace(pos, 1, 2, 3, NEW_ELEM_REF); } break; case TEST_EMPLACE_A5: { ret = mX.emplace(pos, 1, 2, 3, 4, NEW_ELEM_REF); } break; case TEST_EMPLACE_FRONT_A0: { mX.emplace_front(); ret = mX.begin(); } break; case TEST_EMPLACE_FRONT_A1: { mX.emplace_front(NEW_ELEM_REF); ret = mX.begin(); } break; case TEST_EMPLACE_FRONT_A2: { mX.emplace_front(1, NEW_ELEM_REF); ret = mX.begin(); } break; case TEST_EMPLACE_FRONT_A3: { mX.emplace_front(1, 2, NEW_ELEM_REF); ret = mX.begin(); } break; case TEST_EMPLACE_FRONT_A4: { mX.emplace_front(1, 2, 3, NEW_ELEM_REF); ret = mX.begin(); } break; case TEST_EMPLACE_FRONT_A5: { mX.emplace_front(1, 2, 3, 4, NEW_ELEM_REF); ret = mX.begin(); } break; case TEST_EMPLACE_BACK_A0: { mX.emplace_back(); ret = --mX.end(); } break; case TEST_EMPLACE_BACK_A1: { mX.emplace_back(NEW_ELEM_REF); ret = --mX.end(); } break; case TEST_EMPLACE_BACK_A2: { mX.emplace_back(1, NEW_ELEM_REF); ret = --mX.end(); } break; case TEST_EMPLACE_BACK_A3: { mX.emplace_back(1, 2, NEW_ELEM_REF); ret = --mX.end(); } break; case TEST_EMPLACE_BACK_A4: { mX.emplace_back(1, 2, 3, NEW_ELEM_REF); ret = --mX.end(); } break; case TEST_EMPLACE_BACK_A5: { mX.emplace_back(1, 2, 3, 4, NEW_ELEM_REF); ret = --mX.end(); } break; default: { ASSERT(0 && "No such operation"); } } // end switch guard.release(); // If got here, then there was no exception const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); // Test important values LOOP3_ASSERT(LINE, op, posidx, checkIntegrity(X, LENGTH + 1)); LOOP3_ASSERT(LINE, op, posidx, LENGTH + 1 == (int) X.size()); LOOP3_ASSERT(LINE, op, posidx, BB + deltaBlocks(1) == AA); LOOP3_ASSERT(LINE, op, posidx, B + deltaBlocks(1) == A); if (TEST_EMPLACE_A0 <= op && op <= TEST_EMPLACE_A5) { // Test return value from emplace LOOP3_ASSERT(LINE, op, posidx, bsl::distance(mX.begin(), ret) == posidx); } const_iterator cit = X.begin(); const_iterator yi = Y.begin(); for (int i = 0; i < (int) X.size(); ++i, ++cit) { if (i < posidx) { // Test that part before insertion is unchanged LOOP4_ASSERT(LINE, op, posidx, i, *yi++ == *cit); LOOP4_ASSERT(LINE, op, posidx, i, orig_iters[i] == cit); } else if (i == posidx) { // Test inserted value LOOP4_ASSERT(LINE, op, posidx, i, NEW_ELEM_VALUE == *cit); } else { // Test that part after insertion is unchanged LOOP4_ASSERT(LINE, op, posidx, i, *yi++ == *cit); LOOP4_ASSERT(LINE, op, posidx, i, orig_iters[i - 1] == cit); } } // Test end iterator LOOP3_ASSERT(LINE, op, posidx, X.end() == cit); LOOP3_ASSERT(LINE, op, posidx, orig_iters[LENGTH] == cit); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END LOOP3_ASSERT(LINE, op, posidx, 0 == testAllocator.numBlocksInUse()); } // end for (posidx) } // end for (ti) } // end for (op) } template <class TYPE, class ALLOC> template <class CONTAINER> void TestDriver<TYPE,ALLOC>::testInsertRange(const CONTAINER&) { // -------------------------------------------------------------------- // TESTING RANGE INSERTION: // // Concerns // 1. That the resulting list value is correct. // 2. That the 'insert' return (if any) value is a valid iterator to the // first inserted element or to the insertion position if no elements // are inserted. // 3. That insertion of one element has the strong exception guarantee. // 4. That insertion is exception neutral w.r.t. memory allocation. // 5. The internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // 6. That no iterators are invalidated by the insertion. // // Plan: // Create objects of various sizes and insert a range of 0 to 3 values // at each possible position. For concerns 1, 2 & 5, verify // that the return value and modified list are as expected. For concerns // 3 & 4 perform the test using the exception-testing infrastructure and // verify the value and memory changes. For concern 7, save // copies of the iterators before and after the insertion point and // verify that they point to the same (valid) elements after the // insertion by iterating to the same point in the resulting list and // comparing the new iterators to the old ones. // // Testing: // template <class InputIter> // void insert(const_iterator pos, InputIter first, InputIter last); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) VALUES; (void) NUM_VALUES; const int MAX_LEN = 15; // Starting data static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDA" }, // 5 { L_, "ABCDABCDABCDABC" }, // 15 }; const int NUM_DATA = sizeof DATA / sizeof *DATA; // Data to insert static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } U_DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "E" }, // 1 { L_, "EA" }, // 2 { L_, "EBA" }, // 3 }; const int NUM_U_DATA = sizeof U_DATA / sizeof *U_DATA; for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const int LENGTH = static_cast<int>(strlen(SPEC)); LOOP_ASSERT(LENGTH, LENGTH <= MAX_LEN); for (int posidx = 0; posidx <= LENGTH; ++posidx) { for (int ui = 0; ui < NUM_U_DATA; ++ui) { const int U_LINE = U_DATA[ui].d_lineNum; const char *U_SPEC = U_DATA[ui].d_spec; const size_t N = strlen(U_SPEC); CONTAINER mU(U_SPEC); const CONTAINER& U = mU; BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(Z); const Obj& X = gg(&mX, SPEC); const Obj Y(X); // Control // Save original iterators (including end iterator) // C++0x allows insertion using const_iterator const_iterator orig_iters[MAX_LEN + 1]; const_iterator it = X.begin(); for (int i = 0; i < LENGTH + 1; ++i, ++it) { orig_iters[i] = it; } testAllocator.setAllocationLimit(AL); // C++0x allows insertion using const_iterator const_iterator pos = orig_iters[posidx]; iterator ret; ExceptionGuard<Obj> guard(&mX, X, LINE); const Int64 B = testAllocator.numBlocksInUse(); if (N > 1) { // strong guarantee only for 0 or 1 insertions guard.release(); } ret = mX.insert(pos, U.begin(), U.end()); guard.release(); // If got here, then there was no exception const Int64 A = testAllocator.numBlocksInUse(); // Test important values LOOP3_ASSERT(LINE, posidx, U_LINE, checkIntegrity(X, LENGTH + N)); LOOP3_ASSERT(LINE, posidx, U_LINE, LENGTH + N == X.size()); LOOP3_ASSERT(LINE, posidx, U_LINE, B + deltaBlocks(N) == A); LOOP3_ASSERT(LINE, posidx, U_LINE, bsl::distance(mX.begin(), ret) == posidx); const_iterator cit = X.begin(); const_iterator yi = Y.begin(); for (int i = 0; i < (int) X.size(); ++i, ++cit) { if (i < posidx) { // Test that part before insertion is unchanged LOOP4_ASSERT(LINE, posidx, U_LINE, i, *yi++ == *cit); LOOP4_ASSERT(LINE, posidx, U_LINE, i, orig_iters[i] == cit); } else if (i < posidx + (int) N) { // Test inserted values LOOP4_ASSERT(LINE, posidx, U_LINE, i, U[i - posidx] == *cit); } else { // Test that part after insertion is unchanged LOOP4_ASSERT(LINE, posidx, U_LINE, i, *yi++ == *cit); LOOP4_ASSERT(LINE, posidx, U_LINE, i, orig_iters[i - N] == cit); } } // Test end iterator LOOP3_ASSERT(LINE, posidx, U_LINE, X.end() == cit); LOOP3_ASSERT(LINE, posidx, U_LINE, orig_iters[LENGTH] == cit); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END LOOP3_ASSERT(LINE, posidx, U_LINE, 0 == testAllocator.numBlocksInUse()); } // end for (ui) } // end for (posidx) } // end for (ti) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testIterators() { // -------------------------------------------------------------------- // TESTING ITERATORS // // Concerns: // 1. That 'iterator' and 'const_iterator' are bi-directional iterators. // 2. That 'iterator' and 'const_iterator' are CopyConstructible, // Assignable, and EqualityComparable, that 'iterator' is // convertible to 'const_iterator', and that 'reverse_iterator' is // constructible from 'iterator'. // 3. That 'begin' and 'end' return mutable iterators for a // reference to a modifiable list, and non-mutable iterators // otherwise. // 4. That the iterators can be dereferenced using 'operator*' or // 'operator->', yielding a reference or pointer with the correct // constness. // 5. That the range '[begin(), end())' equals the value of the list. // 6. That iterators can be pre-incremented, post-incremented, // pre-decremented, and post-decremented. // 7. Same concerns with 'rbegin', 'rend', 'reverse_iterator', and // 'const_reverse_iterator'. // // Plan: // For concerns 1, 3, 4, and 7 create a one-element list and verify the // static properties of 'iterator', 'const_iterator', // ''reverse_iterator', and 'const_reverse_iterator'. // // For concerns 1, 2, 5, 6, and 7, for each value given by variety of // specifications of different lengths, create a test list with this // value, and access each element in sequence and in reverse sequence, // both as a modifiable reference (setting it to a default value, then // back to its original value), and as a non-modifiable reference. At // each step in the traversal, save the current iterator using both copy // construction and assignment and, in a nested second loop, traverse // the whole list in reverse order, testing that the nested-traversal // iterator matches the saved iterator iff they refer to the same // element. // // Testing: // type iterator // type reverse_iterator // type const_iterator // type const_reverse_iterator // iterator begin(); // iterator end(); // reverse_iterator rbegin(); // reverse_iterator rend(); // const_iterator begin() const; // const_iterator end() const; // const_reverse_iterator rbegin() const; // const_reverse_iterator rend() const; // -------------------------------------------------------------------- typedef typename Obj::size_type size_type; bslma::TestAllocator testAllocator(veryVeryVerbose); const TYPE DEFAULT_VALUE = TYPE(); (void) DEFAULT_VALUE; static const struct { int d_lineNum; // source line number const char *d_spec; // initial } DATA[] = { { L_, "" }, { L_, "A" }, { L_, "ABC" }, { L_, "ABCD" }, { L_, "ABCDE" }, { L_, "ABCDEAB" }, { L_, "ABCDEABC" }, { L_, "ABCDEABCD" } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("Testing 'iterator', 'reverse_iterator', " "'const_iterator', and 'const_reverse_iterator'\n"); { Obj mX(2); const Obj& X = mX; const iterator iter = mX.begin(); const const_iterator citer = X.begin(); const reverse_iterator riter = mX.rbegin(); const const_reverse_iterator criter = X.rbegin(); // Check iterator category ASSERT((bsl::is_same<typename iterator::iterator_category, bidirectional_iterator_tag>::value)); ASSERT((bsl::is_same<typename reverse_iterator::iterator_category, bidirectional_iterator_tag>::value)); ASSERT((bsl::is_same<typename const_iterator::iterator_category, bidirectional_iterator_tag>::value)); ASSERT((bsl::is_same<typename const_reverse_iterator::iterator_category ,bidirectional_iterator_tag>::value)); // Test mutability ASSERT( is_mutable(*mX.begin())); ASSERT(! is_mutable(* X.begin())); ASSERT( is_mutable(*mX.rbegin())); ASSERT(! is_mutable(* X.rbegin())); ASSERT( is_mutable(*--mX.end())); ASSERT(! is_mutable(*-- X.end())); ASSERT( is_mutable(*--mX.rend())); ASSERT(! is_mutable(*-- X.rend())); ASSERT( is_mutable(*iter)); ASSERT(! is_mutable(*citer)); ASSERT( is_mutable(*riter)); ASSERT(! is_mutable(*criter)); // Test dereferencing ASSERT(&*iter == &X.front()); ASSERT(&*citer == &X.front()); ASSERT(&*riter == &X.back()); ASSERT(&*criter == &X.back()); // Test operator->() ASSERT(iter.operator->() == &X.front()); ASSERT(citer.operator->() == &X.front()); ASSERT(riter.operator->() == &X.back()); ASSERT(criter.operator->() == &X.back()); } if (verbose) printf("Testing 'begin', and 'end', 'rbegin', 'rend', " " and their 'const' variants.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); Obj mX(&testAllocator); const Obj& X = gg(&mX, SPEC); Obj mY(X); const Obj& Y = mY; // control if (verbose) { P_(LINE); P(SPEC); } iterator iter = mX.begin(); const_iterator citer = X.begin(); reverse_iterator riter = mX.rend(); const_reverse_iterator criter = X.rend(); for (size_type i = 0; i < LENGTH; ++i) { LOOP2_ASSERT(LINE, i, TYPE(SPEC[i]) == *iter); LOOP2_ASSERT(LINE, i, TYPE(SPEC[i]) == *citer); LOOP2_ASSERT(LINE, i, iter != mX.end()); LOOP2_ASSERT(LINE, i, citer != X.end()); LOOP2_ASSERT(LINE, i, riter != mX.rbegin()); LOOP2_ASSERT(LINE, i, criter != X.rbegin()); LOOP2_ASSERT(LINE, i, citer == iter); LOOP2_ASSERT(LINE, i, &*citer == &*iter); // C++0x allows comparison of dissimilar reverse_iterators. //LOOP2_ASSERT(LINE, i, criter == riter); // Decrement reverse iterator before dereferencing --riter; --criter; // Reverse iterator refers to same element as iterator LOOP2_ASSERT(LINE, i, TYPE(SPEC[i]) == *riter); LOOP2_ASSERT(LINE, i, TYPE(SPEC[i]) == *criter); LOOP2_ASSERT(LINE, i, &*iter == &*riter); LOOP2_ASSERT(LINE, i, &*iter == &*criter); // iterator copy ctor and assignment iterator iter2(iter); // iterator copy ctor iterator iter3(mY.end()); iter3 = iter; // iterator assignment // const_iterator copy ctor, assignment, and conversion const_iterator citer2(citer); // const_iterator copy ctor const_iterator citer3(Y.end()); citer3 = citer; // const_iterator assignment const_iterator citer4 = iter; // conversion ctor const_iterator citer5(Y.end()); citer5 = iter; // conversion assignment // reverse_iterator conversion, copy ctor, and assignment reverse_iterator riter1(iter); // conversion ctor reverse_iterator riter2(riter); // copy ctor reverse_iterator riter3(mY.end()); riter3 = riter; // assignment // const_reverse_iterator conversion, copy ctor, and assignment const_reverse_iterator criter1(citer); // rev conversion ctor const_reverse_iterator criter3(criter); // copy ctor const_reverse_iterator criter2(riter); // const conversion const_reverse_iterator criter4(Y.end()); criter4 = criter; // assignment const_reverse_iterator criter5(Y.end()); criter5 = riter; // const assignment // Test equivalences: All of the iterators except for riter1 // and criter1 refer to the same element LOOP2_ASSERT(LINE, i, iter == iter2); LOOP2_ASSERT(LINE, i, iter == iter3); LOOP2_ASSERT(LINE, i, citer == citer2); LOOP2_ASSERT(LINE, i, citer == citer3); LOOP2_ASSERT(LINE, i, citer == citer4); LOOP2_ASSERT(LINE, i, citer == citer5); LOOP2_ASSERT(LINE, i, riter == riter2); LOOP2_ASSERT(LINE, i, riter == riter3); // C++0x allows comparison of dissimilar reverse_iterators. //LOOP2_ASSERT(LINE, i, riter == criter); LOOP2_ASSERT(LINE, i, criter == criter2); LOOP2_ASSERT(LINE, i, criter == criter3); LOOP2_ASSERT(LINE, i, criter == criter4); LOOP2_ASSERT(LINE, i, criter == criter5); LOOP2_ASSERT(LINE, i, &*iter == &*iter2); LOOP2_ASSERT(LINE, i, &*citer == &*citer2); LOOP2_ASSERT(LINE, i, &*riter == &*riter2); LOOP2_ASSERT(LINE, i, &*criter == &*criter2); // Forward-reverse equivalences LOOP2_ASSERT(LINE, i, citer == criter1.base()); LOOP2_ASSERT(LINE, i, iter == riter1.base()); LOOP2_ASSERT(LINE, i, &*iter == &*--riter1); LOOP2_ASSERT(LINE, i, &*citer == &*--criter1); // Iterate backwards over the list iterator iback = mX.end(); const_iterator ciback = X.end(); reverse_iterator riback = mX.rbegin(); const_reverse_iterator criback = X.rbegin(); for (size_type j = LENGTH; j > 0; ) { --j; --iback; --ciback; LOOP3_ASSERT(LINE, i, j, &*iback == &*ciback); LOOP3_ASSERT(LINE, i, j, &*iback == &*riback); LOOP3_ASSERT(LINE, i, j, &*iback == &*criback); const bool is_eq = (j == i); const bool is_neq = (j != i); LOOP3_ASSERT(LINE, i, j, is_eq == (iback == iter2)); LOOP3_ASSERT(LINE, i, j, is_neq == (iback != iter2)); LOOP3_ASSERT(LINE, i, j, is_eq == (ciback == citer2)); LOOP3_ASSERT(LINE, i, j, is_neq == (ciback != citer2)); LOOP3_ASSERT(LINE, i, j, is_eq == (riback == riter2)); LOOP3_ASSERT(LINE, i, j, is_neq == (riback != riter2)); LOOP3_ASSERT(LINE, i, j, is_eq == (criback == criter2)); LOOP3_ASSERT(LINE, i, j, is_neq == (criback != criter2)); LOOP3_ASSERT(LINE, i, j, is_eq == (&*iback == &*iter2)); LOOP3_ASSERT(LINE, i, j, is_eq == (&*iback == &*citer2)); LOOP3_ASSERT(LINE, i, j, is_eq == (&*iback == &*riter2)); LOOP3_ASSERT(LINE, i, j, is_eq == (&*iback == &*criter2)); ++riback; ++criback; // iback and ciback have already been decremented } LOOP2_ASSERT(LINE, i, X.begin() == iback); LOOP2_ASSERT(LINE, i, X.begin() == ciback); // C++0x allows comparison of dissimilar reverse_iterators. //LOOP2_ASSERT(LINE, i, X.rend() == riback); LOOP2_ASSERT(LINE, i, X.rend() == criback); // Test result of pre and post-increment LOOP2_ASSERT(LINE, i, iter2++ == iter3); LOOP2_ASSERT(LINE, i, iter2 == ++iter3); LOOP2_ASSERT(LINE, i, iter2 == iter3); LOOP2_ASSERT(LINE, i, citer2++ == citer3); LOOP2_ASSERT(LINE, i, citer2 == ++citer3); LOOP2_ASSERT(LINE, i, citer2 == citer3); LOOP2_ASSERT(LINE, i, riter2++ == riter3); LOOP2_ASSERT(LINE, i, riter2 == ++riter3); LOOP2_ASSERT(LINE, i, riter2 == riter3); LOOP2_ASSERT(LINE, i, criter2++ == criter3); LOOP2_ASSERT(LINE, i, criter2 == ++criter3); LOOP2_ASSERT(LINE, i, criter2 == criter3); ++iter; ++citer; // riter and criter have already been decremented } // end for i LOOP_ASSERT(LINE, X.end() == iter); LOOP_ASSERT(LINE, X.end() == citer); // C++0x allows comparison of dissimilar reverse_iterators. //LOOP_ASSERT(LINE, X.rbegin() == riter); LOOP_ASSERT(LINE, X.rbegin() == criter); } // end for each spec } // end for 'begin', 'end', etc. } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testElementAccess() { // -------------------------------------------------------------------- // TESTING ELEMENT ACCESS // // Concerns: // 1. That 'v.front()' and 'v.back()', allow modifying the // element when 'v' is modifiable, but must not modify the // element when it is 'const'. // // Plan: // For each value given by variety of specifications of different // lengths, create a test list with this value, and access the first and // last elements (front, back) both as a modifiable reference (setting // it to a default value, then back to its original value), and as a // non-modifiable reference. // // Testing: // T& front(); // T& back(); // const T& front() const; // const T& back() const; // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const TYPE DEFAULT_VALUE = TYPE(); static const struct { int d_lineNum; // source line number const char *d_spec; // initial } DATA[] = { { L_, "" }, { L_, "A" }, { L_, "ABC" }, { L_, "ABCD" }, { L_, "ABCDE" }, { L_, "ABCDEAB" }, { L_, "ABCDEABC" }, { L_, "ABCDEABCD" } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\tWithout exception.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); Obj mX(&testAllocator); const Obj& X = gg(&mX,SPEC); Obj mY(X); const Obj& Y = mY; // control if (verbose) { P_(LINE); P(SPEC); } if (LENGTH) { LOOP_ASSERT(LINE, is_mutable(mX.front())); LOOP_ASSERT(LINE, ! is_mutable(X.front())); LOOP_ASSERT(LINE, TYPE(SPEC[0]) == X.front()); mX.front() = DEFAULT_VALUE; LOOP_ASSERT(LINE, DEFAULT_VALUE == X.front()); LOOP_ASSERT(LINE, Y != X); mX.front() = Y.front(); LOOP_ASSERT(LINE, Y == X); LOOP_ASSERT(LINE, is_mutable(mX.back())); LOOP_ASSERT(LINE, ! is_mutable(X.back())); LOOP_ASSERT(LINE, TYPE(SPEC[LENGTH - 1]) == X.back()); mX.back() = DEFAULT_VALUE; LOOP_ASSERT(LINE, DEFAULT_VALUE == X.back()); LOOP_ASSERT(LINE, Y != X); mX.back() = Y.back(); LOOP_ASSERT(LINE, Y == X); } } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testResize() { // -------------------------------------------------------------------- // TESTING 'resize' // // Concerns: // 1. Resized list has the correct value. // 2. Resizing to the current size allocates and frees no memory. // 3. Resizing to a smaller size allocates no memory. // 4. Resizing to a larger size frees no memory. // 5. Resizing to a larger size propagates the allocator to elements // appropriately. // 6. 'resize' is exception neutral. // // Plan: // Using a set of input specs and result sizes, try each combination // with and without specifying a value for the new elements. Verify // each of the above concerns for each combination. // // Testing: // void resize(size_type n); // void resize(size_type n, const T& val); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); ALLOC Z(&testAllocator); const TYPE DEFAULT_VALUE = TYPE(); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDE" }, // 5 { L_, "ABCDEAB" }, // 7 { L_, "ABCDEABC" }, // 8 { L_, "ABCDEABCD" }, // 9 { L_, "ABCDEABCDEABCDE" }, // 15 { L_, "ABCDEABCDEABCDEA" }, // 16 { L_, "ABCDEABCDEABCDEAB" } // 17 }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\nTesting resize(sz).\n"); for (int i = 0; i < NUM_DATA; ++i) { const int LINE = DATA[i].d_lineNum; const char *SPEC = DATA[i].d_spec; const size_t LENGTH = strlen(SPEC); if (veryVerbose) { T_; P(SPEC); } for (size_t newlen = 0; newlen < 20; ++newlen) { const size_t NEWLEN = newlen; if (veryVerbose) { T_; T_; P(NEWLEN); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(Z); const Obj& X = gg(&mX, SPEC); Obj mU(X); const Obj& U = mU; testAllocator.setAllocationLimit(AL); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); mX.resize(NEWLEN); // test here const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; T_; P(X); } LOOP2_ASSERT(LINE, NEWLEN, checkIntegrity(X, NEWLEN)); LOOP2_ASSERT(LINE, NEWLEN, NEWLEN == X.size()); if (NEWLEN <= LENGTH) { LOOP2_ASSERT(LINE, NEWLEN, BB == AA); } else { LOOP2_ASSERT(LINE, NEWLEN, BB + deltaBlocks(NEWLEN - LENGTH) == AA); } ptrdiff_t difference = static_cast<ptrdiff_t>(NEWLEN - LENGTH); LOOP2_ASSERT(LINE, NEWLEN, B + deltaBlocks(difference) == A); const_iterator xi = X.begin(); const_iterator yi = U.begin(); for (size_t j = 0; j < LENGTH && j < NEWLEN; ++j, ++xi, ++yi) { LOOP2_ASSERT(LINE, NEWLEN, *yi == *xi); } for (size_t j = LENGTH; j < NEWLEN; ++j, ++xi) { LOOP2_ASSERT(LINE, NEWLEN, DEFAULT_VALUE == *xi); } LOOP2_ASSERT(LINE, NEWLEN, xi == X.end()); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END ASSERT(0 == testAllocator.numMismatches()); ASSERT(0 == testAllocator.numBlocksInUse()); } // end for newlen } // end testing resize(sz) if (verbose) printf("\nTesting resize(sz, c).\n"); for (int i = 0; i < NUM_DATA; ++i) { const int LINE = DATA[i].d_lineNum; const char *SPEC = DATA[i].d_spec; const size_t LENGTH = strlen(SPEC); const TYPE VALUE = VALUES[i % NUM_VALUES]; if (veryVerbose) { T_; P(SPEC); } for (size_t newlen = 0; newlen < 20; ++newlen) { const size_t NEWLEN = newlen; if (veryVerbose) { T_; T_; P(NEWLEN); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(Z); const Obj& X = gg(&mX, SPEC); Obj mU(X); const Obj& U = mU; testAllocator.setAllocationLimit(AL); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); mX.resize(NEWLEN, VALUE); // test here const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; T_; P(X); } LOOP2_ASSERT(LINE, NEWLEN, checkIntegrity(X, NEWLEN)); LOOP2_ASSERT(LINE, NEWLEN, NEWLEN == X.size()); if (NEWLEN <= LENGTH) { LOOP2_ASSERT(LINE, NEWLEN, BB == AA); } else { LOOP2_ASSERT(LINE, NEWLEN, BB + deltaBlocks(NEWLEN - LENGTH) == AA); } ptrdiff_t difference = static_cast<ptrdiff_t>(NEWLEN - LENGTH); LOOP2_ASSERT(LINE, NEWLEN, B + deltaBlocks(difference) == A); const_iterator xi = X.begin(); const_iterator yi = U.begin(); for (size_t j = 0; j < LENGTH && j < NEWLEN; ++j, ++xi, ++yi) { LOOP2_ASSERT(LINE, NEWLEN, *yi == *xi); } for (size_t j = LENGTH; j < NEWLEN; ++j, ++xi) { LOOP2_ASSERT(LINE, NEWLEN, VALUE == *xi); } LOOP2_ASSERT(LINE, NEWLEN, xi == X.end()); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END ASSERT(0 == testAllocator.numMismatches()); ASSERT(0 == testAllocator.numBlocksInUse()); } // end for newlen } // end testing resize(sz) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testAssign() { // -------------------------------------------------------------------- // TESTING 'assign' // // Concerns: // 1. The assigned value is correct. // 2. The 'assign' call is exception neutral w.r.t. memory allocation. // 3. The internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // // Plan: // For the assignment we will create objects of varying sizes containing // default values for type T, and then assign different 'value'. Perform // the above tests: // - With various initial values before the assignment. // - In the presence of exceptions during memory allocations using // a 'bslma_TestAllocator' and varying its *allocation* *limit*. // and use basic accessors and equality comparison to verify that // assignment was successful. // // Testing: // assign(size_type n, const T& value); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); ALLOC Z(&testAllocator); const TYPE DEFAULT_VALUE = TYPE(); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); if (verbose) printf("\nTesting initial-length assignment.\n"); { static const struct { int d_lineNum; // source line number int d_length; // expected length } DATA[] = { //line length //---- ------ { L_, 0 }, { L_, 1 }, { L_, 2 }, { L_, 3 }, { L_, 4 }, { L_, 5 }, { L_, 6 }, { L_, 7 }, { L_, 8 }, { L_, 9 }, { L_, 11 }, { L_, 12 }, { L_, 14 }, { L_, 15 }, { L_, 16 }, { L_, 17 } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\tUsing 'n' copies of 'value'.\n"); { for (int i = 0; i < NUM_DATA; ++i) { const int INIT_LINE = DATA[i].d_lineNum; const size_t INIT_LENGTH = DATA[i].d_length; if (veryVerbose) { printf("\t\tWith initial value of "); P_(INIT_LENGTH); printf(" using default value.\n"); } Obj mX(INIT_LENGTH, DEFAULT_VALUE, Z); const Obj& X = mX; for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; const TYPE VALUE = VALUES[ti % NUM_VALUES]; if (veryVerbose) { printf("\t\tAssign "); P_(LENGTH); printf(" using "); P(VALUE); } mX.assign(LENGTH, VALUE); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; T_; P(X); } LOOP4_ASSERT(INIT_LINE, LINE, i, ti, checkIntegrity(X, LENGTH)); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, LENGTH == X.size()); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, A == expectedBlocks(LENGTH)); for (const_iterator j = X.begin(); j != X.end(); ++j) { LOOP4_ASSERT(INIT_LINE,LINE, i, ti, VALUE == *j); } } } ASSERT(0 == testAllocator.numMismatches()); ASSERT(0 == testAllocator.numBlocksInUse()); } if (verbose) printf("\tWith exceptions.\n"); { for (int i = 0; i < NUM_DATA; ++i) { const int INIT_LINE = DATA[i].d_lineNum; const size_t INIT_LENGTH = DATA[i].d_length; if (veryVerbose) { printf("\t\tWith initial value of "); P_(INIT_LENGTH); printf(" using default value.\n"); } for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; const TYPE VALUE = VALUES[ti % NUM_VALUES]; if (veryVerbose) { printf("\t\tAssign "); P_(LENGTH); printf(" using "); P(VALUE); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(INIT_LENGTH, DEFAULT_VALUE, Z); const Obj& X = mX; testAllocator.setAllocationLimit(AL); mX.assign(LENGTH, VALUE); // test here const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; T_; P(X); } LOOP4_ASSERT(INIT_LINE, LINE, i, ti, checkIntegrity(X, LENGTH)); LOOP4_ASSERT(INIT_LINE,LINE,i,ti, LENGTH == X.size()); LOOP4_ASSERT(INIT_LINE,LINE,i,ti, A == expectedBlocks(LENGTH)); for (const_iterator j = X.begin(); j != X.end(); ++j) { LOOP4_ASSERT(INIT_LINE,LINE, i, ti, VALUE == *j); } } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END ASSERT(0 == testAllocator.numMismatches()); ASSERT(0 == testAllocator.numBlocksInUse()); } } } } } template <class TYPE, class ALLOC> template <class CONTAINER> void TestDriver<TYPE,ALLOC>::testAssignRange(const CONTAINER&) { // -------------------------------------------------------------------- // TESTING 'assign' // // Concerns: // 1. That the initial value is correct. // 2. That the initial range is correctly imported if the // initial 'FWD_ITER' is an input iterator. // 3. That the constructor is exception neutral w.r.t. memory // allocation. // 4. That the internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // 5. The previous value is freed properly. // // Plan: // For the assignment we will create objects of varying sizes containing // default values for type T, and then assign different 'value' as // argument. Perform the above tests: // - From the parameterized 'CONTAINER::const_iterator'. // - In the presence of exceptions during memory allocations using // a 'bslma_TestAllocator' and varying its *allocation* *limit*. // and use basic accessors to verify // - size // - capacity // - element value at each index position { 0 .. length - 1 }. // Note that we relax the concerns about memory consumption, since this // is implemented as 'erase + insert', and insert will be tested more // completely in test case 17. // // Testing: // template <class InputIter> // assign(InputIter first, InputIter last); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); ALLOC Z(&testAllocator); const TYPE DEFAULT_VALUE = TYPE(); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); static const struct { int d_lineNum; // source line number int d_length; // expected length } DATA[] = { //line length //---- ------ { L_, 0 }, { L_, 1 }, { L_, 2 }, { L_, 3 }, { L_, 4 }, { L_, 5 }, { L_, 6 }, { L_, 7 }, { L_, 8 }, { L_, 9 }, { L_, 11 }, { L_, 12 }, { L_, 14 }, { L_, 15 }, { L_, 16 }, { L_, 17 } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; static const struct { int d_lineNum; // source line number const char *d_spec; // container spec } U_DATA[] = { //line spec length //---- ---- ------ { L_, "" }, // 0 { L_, "A" }, // 1 { L_, "AB" }, // 2 { L_, "ABC" }, // 3 { L_, "ABCD" }, // 4 { L_, "ABCDE" }, // 5 { L_, "ABCDEAB" }, // 7 { L_, "ABCDEABC" }, // 8 { L_, "ABCDEABCD" }, // 9 { L_, "ABCDEABCDEABCDE" }, // 15 { L_, "ABCDEABCDEABCDEA" }, // 16 { L_, "ABCDEABCDEABCDEAB" } // 17 }; const int NUM_U_DATA = sizeof U_DATA / sizeof *U_DATA; if (verbose) printf("\tUsing 'CONTAINER::const_iterator'.\n"); { for (int i = 0; i < NUM_DATA; ++i) { const int INIT_LINE = DATA[i].d_lineNum; const size_t INIT_LENGTH = DATA[i].d_length; if (veryVerbose) { printf("\t\tWith initial value of "); P_(INIT_LENGTH); printf(" using default value.\n"); } Obj mX(INIT_LENGTH, VALUES[i % NUM_VALUES], Z); const Obj& X = mX; for (int ti = 0; ti < NUM_U_DATA; ++ti) { const int LINE = U_DATA[ti].d_lineNum; const char *SPEC = U_DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); CONTAINER mU(SPEC); const CONTAINER& U = mU; if (veryVerbose) { printf("\t\tAssign "); P_(LENGTH); printf(" using "); P(SPEC); } mX.assign(U.begin(), U.end()); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; T_; P(X); } LOOP4_ASSERT(INIT_LINE, LINE, i, ti, checkIntegrity(X, LENGTH)); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, LENGTH == X.size()); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, A == expectedBlocks(LENGTH)); Obj mY(g(SPEC)); const Obj& Y = mY; LOOP4_ASSERT(INIT_LINE, LINE, i, ti, Y == X); } } ASSERT(0 == testAllocator.numMismatches()); ASSERT(0 == testAllocator.numBlocksInUse()); } if (verbose) printf("\tWith exceptions.\n"); { for (int i = 0; i < NUM_DATA; ++i) { const int INIT_LINE = DATA[i].d_lineNum; const size_t INIT_LENGTH = DATA[i].d_length; if (veryVerbose) { printf("\t\tWith initial value of "); P_(INIT_LENGTH); printf(" using default value.\n"); } for (int ti = 0; ti < NUM_U_DATA; ++ti) { const int LINE = U_DATA[ti].d_lineNum; const char *SPEC = U_DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); CONTAINER mU(SPEC); const CONTAINER& U = mU; if (veryVerbose) { printf("\t\tAssign "); P_(LENGTH); printf(" using "); P(SPEC); } Obj mY(g(SPEC)); const Obj& Y = mY; BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { const Int64 AL = testAllocator.allocationLimit(); testAllocator.setAllocationLimit(-1); Obj mX(INIT_LENGTH, DEFAULT_VALUE, Z); const Obj& X = mX; testAllocator.setAllocationLimit(AL); mX.assign(U.begin(), U.end()); // test here const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; T_; P(X); } LOOP4_ASSERT(INIT_LINE, LINE, i, ti, checkIntegrity(X, LENGTH)); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, LENGTH == X.size()); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, A == expectedBlocks(LENGTH)); LOOP4_ASSERT(INIT_LINE, LINE, i, ti, Y == X); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END LOOP_ASSERT(testAllocator.numMismatches(), 0 == testAllocator.numMismatches()); LOOP_ASSERT(testAllocator.numBlocksInUse(), 0 == testAllocator.numBlocksInUse()); } } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testConstructor() { // -------------------------------------------------------------------- // TESTING CONSTRUCTORS: // // Concerns: // 1. The initial value is correct. // 2. The constructor is exception neutral w.r.t. memory allocation. // 3. The internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // 4. TBD: The C++0x move constructor moves value and allocator // correctly, and without performing any allocation. // 5. Constructing a list with 'n' copies of value 'v' selects the // correct overload when 'n' and 'v' are identical arithmetic types // (i.e., the iterator-range overload is not selected). // 6. Constructing a list with 'n' copies of value 'v' selects the // correct overload when 'v' is a pointer type and 'n' is a null // pointer literal ,'0'. (i.e., the iterator-range overload is not // selected). // // Plan: // For the constructor we will create objects of varying sizes with // different 'value' as argument. Test first with the default value // for type T, and then test with different values. Perform the above // tests: // - With and without passing in an allocator. // - In the presence of exceptions during memory allocations using // a 'bslma_TestAllocator' and varying its *allocation* *limit*. // - Where the object is constructed with an object allocator, and // neither of global and default allocator is used to supply memory. // and use basic accessors to verify // - size // - allocator // - element value at each iterator position { begin() .. end() }. // As for concern 4, we simply move-construct each value into a new // list and check that the value, and allocator are as // expected, and that no allocation was performed. // For concerns 5 and 6, construct a list with 2 elements of arithmetic // or pointer types and verify that it compiles and that the resultant // list contains the expected values. // // Testing: // list(size_type n, const T& value = T(), const A& a = A()); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const TYPE DEFAULT_VALUE = TYPE(); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); if (verbose) printf("\nTesting initial-length ctor " "with (default) initial value.\n"); { static const struct { int d_lineNum; // source line number int d_length; // expected length } DATA[] = { //line length //---- ------ { L_, 0 }, { L_, 1 }, { L_, 2 }, { L_, 3 }, { L_, 4 }, { L_, 5 }, { L_, 6 }, { L_, 7 }, { L_, 8 }, { L_, 9 }, { L_, 11 }, { L_, 12 }, { L_, 14 }, { L_, 15 }, { L_, 16 }, { L_, 17 }, { L_, 31 }, { L_, 32 }, { L_, 33 }, { L_, 63 }, { L_, 64 }, { L_, 65 } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\tWithout passing in a value or allocator.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; if (verbose) { printf("\t\tCreating object of "); P(LENGTH); } Obj mX(LENGTH); const Obj& X = mX; if (veryVerbose) { T_; T_; P(X); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); LOOP2_ASSERT(LINE, ti, ALLOC() == X.get_allocator()); for (int j = 0; j < static_cast<int>(LENGTH); ++j) { LOOP3_ASSERT(LINE, ti, j, DEFAULT_VALUE == nthElem(X,j)); } } } if (verbose) printf("\tWith passing in a value, without passing in " "an allocator.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; const TYPE VALUE = VALUES[ti % NUM_VALUES]; if (verbose) { printf("\t\tCreating object of "); P_(LENGTH); printf(" using "); P(VALUE); } Obj mX(LENGTH, VALUE); const Obj& X = mX; if (veryVerbose) { T_; T_; P(X); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); LOOP2_ASSERT(LINE, ti, ALLOC() == X.get_allocator()); for (int j = 0; j < static_cast<int>(LENGTH); ++j) { LOOP3_ASSERT(LINE, ti, j, VALUE == nthElem(X,j)); } } } if (verbose) printf("\tWith passing in a value and an allocator.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; const TYPE VALUE = VALUES[ti % NUM_VALUES]; const ALLOC AL(&testAllocator); if (verbose) { printf("\t\tCreating object of "); P_(LENGTH); printf(" using "); P(VALUE); } const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); Obj mX(LENGTH, VALUE, AL); const Obj& X = mX; const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; P(X); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); LOOP2_ASSERT(LINE, ti, AL == X.get_allocator()); for (int j = 0; j < static_cast<int>(LENGTH); ++j) { LOOP3_ASSERT(LINE, ti, j, VALUE == nthElem(X,j)); } LOOP2_ASSERT(LINE, ti, BB + expectedBlocks(LENGTH) == AA); LOOP2_ASSERT(LINE, ti, B + expectedBlocks(LENGTH) == A); } } if (verbose) printf("\tWith passing a value and an allocator and checking for " "allocation exceptions.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; const TYPE VALUE = VALUES[ti % NUM_VALUES]; const ALLOC AL(&testAllocator); if (verbose) { printf("\t\tCreating object of "); P_(LENGTH); printf(" using "); P(VALUE); } const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\tBefore: "); P_(BB); P(B);} BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { Obj mX(LENGTH, VALUE, AL); const Obj& X = mX; if (veryVerbose) { T_; T_; P(X); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); for (int j = 0; j < static_cast<int>(LENGTH); ++j) { LOOP3_ASSERT(LINE, ti, j, VALUE == nthElem(X,j)); } } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\tAFTER : "); P_(AA); P(A);} // The number of allocations, 'ALLOCS', needed for successful // construction of a list of length 'LENGTH' is // 'expectedBlocks(LENGTH)', Because we are retrying on each // exception, the number of allocations by the time we succeed // will be 'SUM(1 .. ALLOCS)', which is easily computed as // 'ALLOCS * (ALLOCS+1) / 2'. const Int64 ALLOCS = expectedBlocks(LENGTH); #ifdef BDE_BUILD_TARGET_EXC const Int64 TOTAL_ALLOCS = ALLOCS * (ALLOCS+1) / 2; #else const Int64 TOTAL_ALLOCS = ALLOCS; #endif LOOP2_ASSERT(LINE, ti, BB + TOTAL_ALLOCS == AA); LOOP2_ASSERT(LINE, ti, B + 0 == A); LOOP2_ASSERT(LINE, ti, 0 == testAllocator.numBlocksInUse()); } } if (verbose) printf("\tAllocators hooked up properly when using " "default value constructors.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; (void) LINE; if (verbose) { printf("\t\tCreating object of "); P(LENGTH); } { const Int64 TB = defaultAllocator_p->numBlocksInUse(); ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == objectAllocator_p->numBlocksInUse()); const ALLOC AL(objectAllocator_p); Obj x(LENGTH, DEFAULT_VALUE, AL); ASSERT(0 == globalAllocator_p->numBlocksInUse()); if (TypeHasBslmaAlloc::value && !ObjHasBslmaAlloc::value) { // If TYPE uses bslma but Obj does not, then each // element will allocate one block from the default // allocator. ASSERT(TB + (int) LENGTH == defaultAllocator_p->numBlocksInUse()); } else { // Default allocator is not used ASSERT(TB == defaultAllocator_p->numBlocksInUse()); } ASSERT(expectedBlocks(LENGTH) == objectAllocator_p->numBlocksInUse()); } ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == objectAllocator_p->numBlocksInUse()); } } if (verbose) printf("\tAllocators hooked up properly when using " "non-default value constructors.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const size_t LENGTH = DATA[ti].d_length; const TYPE VALUE = VALUES[ti % NUM_VALUES]; (void) LINE; if (verbose) { printf("\t\tCreating object of "); P_(LENGTH); printf(" using "); P(VALUE); } { const Int64 TB = defaultAllocator_p->numBlocksInUse(); ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == objectAllocator_p->numBlocksInUse()); const ALLOC AL(objectAllocator_p); Obj x(LENGTH, VALUE, AL); ASSERT(0 == globalAllocator_p->numBlocksInUse()); if (TypeHasBslmaAlloc::value && !ObjHasBslmaAlloc::value) { // If TYPE uses bslma but Obj does not, then each // element will allocate one block from the default // allocator. ASSERT(TB + (int) LENGTH == defaultAllocator_p->numBlocksInUse()); } else { // Default allocator is not used ASSERT(TB == defaultAllocator_p->numBlocksInUse()); } ASSERT(expectedBlocks(LENGTH) == objectAllocator_p->numBlocksInUse()); } ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == objectAllocator_p->numBlocksInUse()); } } } if (verbose) printf("\nTesting overloading disambiguation\n"); { // 'n' and 'v' are identical aritmetic types. Make sure overload // resolution doesn't try to call the iterator-range 'insert'. { size_t n = 2, v = 99; list<size_t, ALLOC> x(n, v); list<size_t, ALLOC>& X = x; ASSERT(X.size() == n); ASSERT(X.front() == v); ASSERT(X.back() == v); } { unsigned char n = 2, v = 99; list<IntWrapper, ALLOC> x(n, v); list<IntWrapper, ALLOC>& X = x; ASSERT(X.size() == n); ASSERT(X.front() == v); ASSERT(X.back() == v); } { size_t n = 2; int v = 99; list<IntWrapper, ALLOC> x(n, v); list<IntWrapper, ALLOC>& X = x; ASSERT(X.size() == n); ASSERT(X.front() == v); ASSERT(X.back() == v); } { // TBD: the below code block causes warnings. //float n = 2, v = 99; //list<IntWrapper, ALLOC> x(n, v); //list<IntWrapper, ALLOC>& X = x; //ASSERT(X.size() == n); //ASSERT(X.front() == v); //ASSERT(X.back() == v); } { TestEnum n = TWO, v = NINETYNINE; list<IntWrapper, ALLOC> x(n, v); list<IntWrapper, ALLOC>& X = x; ASSERT(X.size() == (size_t)n); ASSERT(X.front() == v); ASSERT(X.back() == v); } // 'n' is an 'int' and 'v' is a zero 'int' literal (which is also a // null pointer literal). Make sure that it is correctly treated as a // pointer. { int n = 2; char *v = 0; list<char*, ALLOC> x(n, 0); // Literal null, acts like an int. list<char*, ALLOC>& X = x; ASSERT(X.size() == (size_t)n); ASSERT(X.front() == v); ASSERT(X.back() == v); } } } template <class TYPE, class ALLOC> template <class CONTAINER> void TestDriver<TYPE,ALLOC>::testConstructorRange(const CONTAINER&) { // -------------------------------------------------------------------- // TESTING RANGE (TEMPLATE) CONSTRUCTORS: // // Concerns: // 1. That the initial value is correct. // 2. That the initial range is correctly imported if the // initial 'FWD_ITER' is an input iterator. // 3. That the constructor is exception neutral w.r.t. memory // allocation. // 4. That the internal memory management system is hooked up properly // so that *all* internally allocated memory draws from a // user-supplied allocator whenever one is specified. // // Plan: // We will create objects of varying sizes containing // default values, and insert a range containing distinct values as // argument. Perform the above tests: // - From the parameterized 'CONTAINER::const_iterator'. // - With and without passing in an allocator. // - In the presence of exceptions during memory allocations using // a 'bslma_TestAllocator' and varying its *allocation* *limit*. // and use basic accessors to verify // - size // - element value at each index position { 0 .. length - 1 }. // // Testing: // template <class InputIter> // list(InputIter first, InputIter last, const A& a = A()); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const int INPUT_ITERATOR_TAG = bsl::is_same<std::input_iterator_tag, typename bsl::iterator_traits< typename CONTAINER::const_iterator>::iterator_category >::value; (void) INPUT_ITERATOR_TAG; static const struct { int d_lineNum; // source line number const char *d_spec; // initial } DATA[] = { { L_, "" }, { L_, "A" }, { L_, "AB" }, { L_, "ABC" }, { L_, "ABCD" }, { L_, "ABCDE" }, { L_, "ABCDEAB" }, { L_, "ABCDEABC" }, { L_, "ABCDEABCD" } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\tWithout passing in an allocator.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); if (verbose) { printf("\t\tCreating object of "); P_(LENGTH); printf(" using "); P(SPEC); } CONTAINER mU(SPEC); const CONTAINER& U = mU; Obj mX(U.begin(), U.end()); const Obj& X = mX; if (veryVerbose) { T_; T_; P(X); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); Obj mY(g(SPEC)); const Obj& Y = mY; LOOP2_ASSERT(LINE, ti, Y == X); } } if (verbose) printf("\tWith passing in an allocator.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); if (verbose) { printf("\t\tCreating object "); P(SPEC); } CONTAINER mU(SPEC); const CONTAINER& U = mU; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); ALLOC AL(&testAllocator); Obj mX(U.begin(), U.end(), AL); const Obj& X = mX; const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; P(X); T_; T_; P_(AA - BB); P(A - B); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); Obj mY(g(SPEC)); const Obj& Y = mY; LOOP2_ASSERT(LINE, ti, Y == X); LOOP2_ASSERT(LINE, ti, BB + expectedBlocks(LENGTH) == AA); LOOP2_ASSERT(LINE, ti, B + expectedBlocks(LENGTH) == A); } } if (verbose) printf("\tWith passing an allocator and checking for " "allocation exceptions.\n"); { for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *SPEC = DATA[ti].d_spec; const size_t LENGTH = strlen(SPEC); if (verbose) { printf("\t\tCreating object of "); P_(LENGTH); printf(" using "); P(SPEC); } CONTAINER mU(SPEC); const CONTAINER& U = mU; Obj mY(g(SPEC)); const Obj& Y = mY; const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\tBefore: "); P_(BB); P(B);} BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { ALLOC AL(&testAllocator); Obj mX(U.begin(), U.end(), AL); const Obj& X = mX; if (veryVerbose) { T_; T_; P(X); } LOOP2_ASSERT(LINE, ti, checkIntegrity(X, LENGTH)); LOOP2_ASSERT(LINE, ti, LENGTH == X.size()); LOOP2_ASSERT(LINE, ti, Y == X); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\tAfter : "); P_(AA); P(A);} // The number of allocations, 'ALLOCS', needed for successful // construction of a list of length 'LENGTH' is // 'expectedBlocks(LENGTH)'. Because we are retrying on each // exception, the number of allocations by the time we succeed // will be 'SUM(1 .. ALLOCS)', which is easily computed as 'ALLOCS // * (ALLOCS+1) / 2'. const Int64 ALLOCS = expectedBlocks(LENGTH); #ifdef BDE_BUILD_TARGET_EXC const Int64 TOTAL_ALLOCS = ALLOCS * (ALLOCS+1) / 2; #else const Int64 TOTAL_ALLOCS = ALLOCS; #endif LOOP2_ASSERT(LINE, ti, BB + TOTAL_ALLOCS == AA); LOOP2_ASSERT(LINE, ti, B + 0 == A); LOOP2_ASSERT(LINE, ti, 0 == testAllocator.numBlocksInUse()); } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testAllocator(bsl::true_type, const char *t, const char *a) { // -------------------------------------------------------------------- // TEST ALLOCATOR-RELATED CONCERNS // // This template specialization is for containers that use bslma_Allocator. // // Concerns: // 1. The list class has the 'bslma::UsesBslmaAllocator' // trait. // 2. The allocator is not copied when the list is copy-constructed. // 3. The allocator is set with the extended copy-constructor. // 4. The allocator is passed through to elements if the elements // also use bslma_Allocator. // 5. Creating an empty list allocates exactly one block. // 6. 'get_allocator' returns the allocator used to construct the // list object. // // Testing: // allocator_type get_allocator() const; // Allocator traits // Allocator propagation // -------------------------------------------------------------------- // Compile-time assert that this is the correct specialization. BSLMF_ASSERT(ObjHasBslmaAlloc::value); bslma::TestAllocator testAllocator(veryVeryVerbose); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) NUM_VALUES; if (verbose) printf("\nTesting 'bslma::UsesBslmaAllocator'.\n"); LOOP2_ASSERT(t, a, bslma::UsesBslmaAllocator<Obj>::value); if (verbose) printf("\nTesting that empty list allocates one block.\n"); { const Int64 BB = testAllocator.numBlocksTotal(); Obj mX(&testAllocator); LOOP2_ASSERT(t, a, BB + 1 == testAllocator.numBlocksTotal()); LOOP2_ASSERT(t, a, 1 == testAllocator.numBlocksInUse()); } if (verbose) printf("\nTesting that allocator propagation for " "copy construction.\n"); { // Normal copy constructor Obj mX(&testAllocator); const Obj& X = mX; Obj mY(X); const Obj& Y = mY; // Allocator not copied LOOP2_ASSERT(t, a, &testAllocator == X.get_allocator()); LOOP2_ASSERT(t, a, &testAllocator != Y.get_allocator()); // Extended copy constructor bslma::TestAllocator a2; Obj mZ(X,&a2); const Obj& Z = mZ; // Allocator set to a2 (not copied) LOOP2_ASSERT(t, a, &testAllocator != Z.get_allocator()); LOOP2_ASSERT(t, a, &a2 == Z.get_allocator()); } if (verbose) printf("\nTesting passing allocator through to elements.\n"); const Int64 DD = OtherAllocatorDefaultImp.numBlocksInUse(); if (bslma::UsesBslmaAllocator<TYPE>::value) { { Obj mX(1, VALUES[0], &testAllocator); const Obj& X = mX; LOOP2_ASSERT(t, a, &testAllocator == X.back().allocator()); LOOP2_ASSERT(t, a, 3 == testAllocator.numBlocksInUse()); } { Obj mX(&testAllocator); const Obj& X = mX; mX.push_back(VALUES[0]); LOOP2_ASSERT(t, a, &testAllocator == X.back().allocator()); LOOP2_ASSERT(t, a, 3 == testAllocator.numBlocksInUse()); } } else { { Obj mX(1, VALUES[0], &testAllocator); const Obj& X = mX; bslma::TestAllocator *const elemAlloc = dynamic_cast<bslma::TestAllocator*>(X.back().allocator()); LOOP2_ASSERT(t, a, &testAllocator != elemAlloc); LOOP2_ASSERT(t, a, 2 == testAllocator.numBlocksInUse()); LOOP2_ASSERT(t, a, &OtherAllocatorDefaultImp == elemAlloc); LOOP2_ASSERT(t, a, DD + 1 == elemAlloc->numBlocksInUse()); } { Obj mX(&testAllocator); const Obj& X = mX; mX.push_back(VALUES[0]); bslma::TestAllocator *const elemAlloc = dynamic_cast<bslma::TestAllocator*>(X.back().allocator()); LOOP2_ASSERT(t, a, &testAllocator != elemAlloc); LOOP2_ASSERT(t, a, 2 == testAllocator.numBlocksInUse()); LOOP2_ASSERT(t, a, &OtherAllocatorDefaultImp == elemAlloc); LOOP2_ASSERT(t, a, DD + 1 == elemAlloc->numBlocksInUse()); } } LOOP2_ASSERT(t, a, 0 == testAllocator.numBytesInUse()); LOOP2_ASSERT(t, a, DD == OtherAllocatorDefaultImp.numBytesInUse()); } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testAllocator(bsl::false_type, const char *t, const char *a) { // -------------------------------------------------------------------- // TEST ALLOCATOR-RELATED CONCERNS FOR NON-BSLMA ALLOCATORS // // This template specialization is for containers that use non-bslma // Allocators. // // Concerns: // 1. The list class does not have the // 'bslma::UsesBslmaAllocator' trait. // 2. The allocator is not passed through to elements // 3. The allocator is set with the extended copy-constructor. // 4. The allocator is copied when the list is copy-constructed. // 5. Creating an empty list allocates exactly one block. // 6. 'get_allocator' returns the allocator used to construct the // list object. // // Testing: // allocator_type get_allocator() const; // Allocator traits // Allocator propagation // Allocator traits and propagation // -------------------------------------------------------------------- // Compile-time assert that this is the correct specialization. BSLMF_ASSERT( !ObjHasBslmaAlloc::value ); bslma::TestAllocator testAllocator(veryVeryVerbose); OtherAllocator<char> objAllocator(&testAllocator); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) NUM_VALUES; if (verbose) printf("\nTesting 'bslma::UsesBslmaAllocator'.\n"); LOOP2_ASSERT(t, a, ! bslma::UsesBslmaAllocator<Obj>::value); if (verbose) printf("\nTesting that empty list allocates one block.\n"); { const Int64 BB = testAllocator.numBlocksTotal(); Obj mX(objAllocator); LOOP2_ASSERT(t, a, BB + 1 == testAllocator.numBlocksTotal()); LOOP2_ASSERT(t, a, 1 == testAllocator.numBlocksInUse()); } if (verbose) printf("\nTesting that allocator propagation for " "copy construction.\n"); { // Normal copy constructor Obj mX(objAllocator); const Obj& X = mX; Obj mY(X); const Obj& Y = mY; // Allocator copied LOOP2_ASSERT(t, a, objAllocator == X.get_allocator()); LOOP2_ASSERT(t, a, objAllocator == Y.get_allocator()); // Extended copy constructor bslma::TestAllocator a2; OtherAllocator<char> objAlloc2(&a2); Obj mZ(X,objAlloc2); const Obj& Z = mZ; // Allocator set to objAlloc2 (not copied) LOOP2_ASSERT(t, a, objAllocator != Z.get_allocator()); LOOP2_ASSERT(t, a, objAlloc2 == Z.get_allocator()); } if (verbose) printf("\nTesting that allocator is not passed through to elements.\n"); const Int64 DD = OtherAllocatorDefaultImp.numBlocksInUse(); if (bslma::UsesBslmaAllocator<TYPE>::value) { // Elements in container should use default allocator while the // container itself uses 'testAllocator'. Set the default allocator // here so that we can track its use. bslma::TestAllocator defAlloc(veryVeryVerbose); bslma::DefaultAllocatorGuard g(&defAlloc); { Obj mX(1, VALUES[0], objAllocator); const Obj& X = mX; bslma::TestAllocator *const elemAlloc = dynamic_cast<bslma::TestAllocator*>(X.back().allocator()); LOOP2_ASSERT(t, a, objAllocator == X.get_allocator()); LOOP2_ASSERT(t, a, &testAllocator != elemAlloc); LOOP2_ASSERT(t, a, 2 == testAllocator.numBlocksInUse()); LOOP2_ASSERT(t, a, &defAlloc == elemAlloc); LOOP2_ASSERT(t, a, 1 == elemAlloc->numBlocksInUse()); } { Obj mX(objAllocator); const Obj& X = mX; mX.push_back(VALUES[0]); bslma::TestAllocator *const elemAlloc = dynamic_cast<bslma::TestAllocator*>(X.back().allocator()); LOOP2_ASSERT(t, a, objAllocator == X.get_allocator()); LOOP2_ASSERT(t, a, &testAllocator != elemAlloc); LOOP2_ASSERT(t, a, 2 == testAllocator.numBlocksInUse()); LOOP2_ASSERT(t, a, &defAlloc == elemAlloc); LOOP2_ASSERT(t, a, 1 == elemAlloc->numBlocksInUse()); } LOOP2_ASSERT(t, a, 0 == defAlloc.numBlocksInUse()); } else { // Elements in container should use 'OtherAllocator::d_defaultImp' // while the container itself uses 'testAllocator'. { Obj mX(1, VALUES[0], objAllocator); const Obj& X = mX; bslma::TestAllocator *const elemAlloc = dynamic_cast<bslma::TestAllocator*>(X.back().allocator()); LOOP2_ASSERT(t, a, objAllocator == X.get_allocator()); LOOP2_ASSERT(t, a, &testAllocator != elemAlloc); LOOP2_ASSERT(t, a, 2 == testAllocator.numBlocksInUse()); LOOP2_ASSERT(t, a, &OtherAllocatorDefaultImp == elemAlloc); LOOP2_ASSERT(t, a, DD + 1 == elemAlloc->numBlocksInUse()); } { Obj mX(objAllocator); const Obj& X = mX; mX.push_back(VALUES[0]); bslma::TestAllocator *const elemAlloc = dynamic_cast<bslma::TestAllocator*>(X.back().allocator()); LOOP2_ASSERT(t, a, objAllocator == X.get_allocator()); LOOP2_ASSERT(t, a, &testAllocator != elemAlloc); LOOP2_ASSERT(t, a, 2 == testAllocator.numBlocksInUse()); LOOP2_ASSERT(t, a, &OtherAllocatorDefaultImp == elemAlloc); LOOP2_ASSERT(t, a, DD + 1 == elemAlloc->numBlocksInUse()); } } LOOP2_ASSERT(t, a, 0 == testAllocator.numBytesInUse()); LOOP2_ASSERT(t, a, DD == OtherAllocatorDefaultImp.numBytesInUse()); } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testAllocator(const char *t, const char *a) { // -------------------------------------------------------------------- // TEST ALLOCATOR-RELATED CONCERNS // // This template specialization is for containers that use non-bslma // Allocators. // // Concerns: // // For ALLOC that is a bslma_Allocator // 1. The list class has the 'bslma::UsesBslmaAllocator' // trait. // 2. The allocator is not copied when the list is copy-constructed. // 3. The allocator is set with the extended copy-constructor. // 4. The allocator is passed through to elements if the elements // also use bslma_Allocator. // 5. Creating an empty list allocates exactly one block. // // For ALLOC that is not a bslma allocator // 1. The list class does not have the // 'bslma::UsesBslmaAllocator' trait. // 2. The allocator is not passed through to elements // 3. The allocator is set with the extended copy-constructor. // 4. The allocator is copied when the list is copy-constructed. // 5. Creating an empty list allocates exactly one block. // // Testing: // Allocator traits and propagation // -------------------------------------------------------------------- // Dispatch to the appropriate function testAllocator(ObjHasBslmaAlloc(), t, a); } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testAssignmentOp() { // -------------------------------------------------------------------- // TESTING ASSIGNMENT OPERATOR: // // Concerns: // 1. The 'rhs' value must not be affected by the operation. // 2. 'rhs' going out of scope has no effect on the value of 'lhs' // after the assignment. // 3. After the assignment, no element of the 'lhs' has the same // address an element of 'rhs' (except in the case of // self-assignment). // 4. Aliasing (x = x): The assignment operator must always work -- // even when the lhs and rhs are identically the same object. // 5. The assignment operator must be neutral with respect to memory // allocation exceptions. // 6. The 'lhs' object must allocate all of its internal memory from // its own allocator, even of 'rhs' uses a different allocator. // 7. TBD: C++0x move assignment moves the value but not the allocator. // Memory is allocated only if the 'lhs' and 'rhs' allocators are // different. // // Plan: // Specify a set S of unique object values with substantial and varied // differences, ordered by increasing length. For each value in S, // construct an object x along with a sequence of similarly constructed // duplicates x1, x2, ..., xN. The elements within each object in S are // unique so that re-ordering elements cannot preserve equality. // Attempt to affect every aspect of white-box state by altering each xi // in a unique way. Let the union of all such objects be the set T. // // To address concerns 2, 3, and 5, construct tests u = v for all (u, v) // in T X T. Using canonical controls UU and VV, assert before the // assignment that UU == u, VV == v, and v == u if and only if VV == UU. // After the assignment, assert that VV == u, VV == v, and, for grins, // that v == u. Verify that each element in v has a different address // from the corresponding element in v. Let v go out of scope and // confirm that VV == u. All of these tests are performed within the // 'bslma' exception testing apparatus. Since the execution time is // lengthy with exceptions, not every permutation is performed when // exceptions are tested. Every permutation is also tested separately // without exceptions. // // As a separate exercise, we address 4 and 5 by constructing tests // y = y for all y in T. Using a canonical control X, we will verify // that X == y before and after the assignment, again within // the bslma exception testing apparatus. // // To address concern 5, all these tests are performed on user // defined types: // With allocator, copyable // With allocator, moveable // With allocator, not moveable // // Testing: // list& operator=(const list& rhs); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator1(veryVeryVerbose); bslma::TestAllocator testAllocator2(veryVeryVerbose); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) VALUES; (void) NUM_VALUES; // -------------------------------------------------------------------- if (verbose) printf("\nAssign cross product of values " "with varied representations.\n" "Without Exceptions\n"); { static const char *SPECS[] = { "", "A", "BC", "CDE", "DEA", // Try equal-size assignment of different values "DEAB", "BACEDEDC", 0 // null string required as last element }; { for (int ui = 0; SPECS[ui]; ++ui) { const char *const U_SPEC = SPECS[ui]; const size_t uLen = strlen(U_SPEC); if (verbose) { printf("\tFor lhs objects of length " ZU ":\t", uLen); P(U_SPEC); } const Obj UU = g(U_SPEC); // control LOOP_ASSERT(ui, uLen == UU.size()); // same lengths for (int vi = 0; SPECS[vi]; ++vi) { const char *const V_SPEC = SPECS[vi]; const size_t vLen = strlen(V_SPEC); if (veryVerbose) { printf("\t\tFor rhs objects of length " ZU ":\t", vLen); P(V_SPEC); } const Obj VV = g(V_SPEC); // control const bool Z = ui == vi; // flag indicating same values ALLOC AL2(&testAllocator2); Obj mU(AL2); const Obj& U = gg(&mU, U_SPEC); { ALLOC AL1(&testAllocator1); Obj mV(AL1); const Obj& V = gg(&mV, V_SPEC); if (veryVerbose) { printf("\t| "); P_(U); P(V); } LOOP2_ASSERT(U_SPEC, V_SPEC, UU == U); LOOP2_ASSERT(U_SPEC, V_SPEC, VV == V); LOOP2_ASSERT(U_SPEC, V_SPEC, Z==(V==U)); const int NUM_CTOR_BEFORE = numCopyCtorCalls; const int NUM_DTOR_BEFORE = numDestructorCalls; const size_t U_LEN_BEFORE = U.size(); const Int64 BB1 = testAllocator1.numBlocksTotal(); const Int64 B1 = testAllocator1.numBlocksInUse(); const Int64 BB2 = testAllocator2.numBlocksTotal(); const Int64 B2 = testAllocator2.numBlocksInUse(); mU = V; // test assignment here const Int64 AA1 = testAllocator1.numBlocksTotal(); const Int64 A1 = testAllocator1.numBlocksInUse(); const Int64 AA2 = testAllocator2.numBlocksTotal(); const Int64 A2 = testAllocator2.numBlocksInUse(); // The assignment may construct as many as V.size() // objects and may destroy as many as U.size() // objects, but could (through the use of // element-by-element assignment) construct and // destroy fewer elements. const int NUM_CTOR = numCopyCtorCalls - NUM_CTOR_BEFORE; const int NUM_DTOR = numDestructorCalls - NUM_DTOR_BEFORE; ASSERT(NUM_CTOR <= (int)V.size()); ASSERT(NUM_DTOR <= (int)U_LEN_BEFORE); LOOP2_ASSERT(U_SPEC, V_SPEC, checkIntegrity(U, vLen)); LOOP2_ASSERT(U_SPEC, V_SPEC, VV == U); LOOP2_ASSERT(U_SPEC, V_SPEC, VV == V); LOOP2_ASSERT(U_SPEC, V_SPEC, V == U); LOOP2_ASSERT(U_SPEC, V_SPEC, BB1 == AA1); LOOP2_ASSERT(U_SPEC, V_SPEC, B1 == A1 ); LOOP2_ASSERT(U_SPEC, V_SPEC, BB2 + deltaBlocks(vLen) >= AA2); ptrdiff_t difference = static_cast<ptrdiff_t>(vLen - uLen); LOOP2_ASSERT(U_SPEC, V_SPEC, B2 + deltaBlocks(difference) == A2); for (const_iterator iu = U.begin(), iv = V.begin(); iu != U.end(); ++iu, ++iv) { // Verify that U and V have no elements in common LOOP3_ASSERT(U_SPEC, V_SPEC, *iu, &*iv != &*iu); } } // 'mV' (and therefore 'V') now out of scope LOOP2_ASSERT(U_SPEC, V_SPEC, VV == U); } // end for (vi) } // end for (ui) } } if (verbose) printf("\nAssign cross product of values With Exceptions\n"); { static const char *SPECS[] = { // len: 0-2, 4, 4, 9, "", "A", "BC", "DEAB", "CBEA", "BACEDEDCB", 0 }; // Null string required as last element. for (int ui = 0; SPECS[ui]; ++ui) { const char *const U_SPEC = SPECS[ui]; const size_t uLen = strlen(U_SPEC); if (verbose) { printf("\tFor lhs objects of length " ZU ":\t", uLen); P(U_SPEC); } const Obj UU = g(U_SPEC); // control LOOP_ASSERT(ui, uLen == UU.size()); // same lengths // int vOldLen = -1; for (int vi = 0; SPECS[vi]; ++vi) { const char *const V_SPEC = SPECS[vi]; const size_t vLen = strlen(V_SPEC); if (veryVerbose) { printf("\t\tFor rhs objects of length " ZU ":\t", vLen); P(V_SPEC); } // control const Obj VV = g(V_SPEC); // Exception-test macros muse use 'testAllocator': bslma::TestAllocator& testAllocator = testAllocator2; BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { // We want to use the allocation limit only for the // assignment operation, not for producing the initial // objects. Thus, we save the limit in AL and turn off // the limit until we're ready to test assignment. const Int64 AL = testAllocator.allocationLimit(); testAllocator2.setAllocationLimit(-1); ALLOC AL2(&testAllocator2); Obj mU(AL2); const Obj& U = gg(&mU, U_SPEC); { ALLOC AL1(&testAllocator1); Obj mV(AL1); const Obj& V = gg(&mV, V_SPEC); if (veryVerbose) { printf("\t| "); P_(U); P(V); } const Int64 BB2 = testAllocator2.numBlocksTotal(); const Int64 B2 = testAllocator2.numBlocksInUse(); testAllocator2.setAllocationLimit(AL); mU = V; // test assignment here const Int64 AA2 = testAllocator2.numBlocksTotal(); const Int64 A2 = testAllocator2.numBlocksInUse(); LOOP2_ASSERT(U_SPEC, V_SPEC, checkIntegrity(U, vLen)); LOOP2_ASSERT(U_SPEC, V_SPEC, VV == U); LOOP2_ASSERT(U_SPEC, V_SPEC, VV == V); LOOP2_ASSERT(U_SPEC, V_SPEC, V == U); LOOP2_ASSERT(U_SPEC, V_SPEC, BB2 + deltaBlocks(vLen) >= AA2); ptrdiff_t difference = static_cast<ptrdiff_t>(vLen-uLen); LOOP2_ASSERT(U_SPEC, V_SPEC, B2 + deltaBlocks(difference) == A2); } // 'mV' (and therefore 'V') now out of scope LOOP2_ASSERT(U_SPEC, V_SPEC, VV == U); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END } // end for (vi) } // end for (ui) } // end exception test if (verbose) printf("\nTesting self assignment (Aliasing)."); { static const char *SPECS[] = { "", "A", "BC", "CDE", "DEAB", "EABCD", "ABCDEAB", "ABCDEABC", "ABCDEABCD", "ABCDEABCDEABCDE", "ABCDEABCDEABCDEA", "ABCDEABCDEABCDEAB", 0 // null string required as last element }; int oldLen = -1; for (int ti = 0; SPECS[ti]; ++ti) { const char *const SPEC = SPECS[ti]; const int curLen = (int) strlen(SPEC); if (verbose) { printf("\tFor an object of length %d:\t", curLen); P(SPEC); } LOOP_ASSERT(SPEC, oldLen < curLen); // strictly increasing oldLen = curLen; // control const Obj X = g(SPEC); LOOP_ASSERT(ti, curLen == (int)X.size()); // same lengths // Exception-test macros muse use 'testAllocator': bslma::TestAllocator& testAllocator = testAllocator2; BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { // We want to use the allocation limit only for the // assignment operation, not for producing the initial // objects. Thus, we save the limit in AL and turn off // the limit until we're ready to test assignment. const Int64 AL = testAllocator.allocationLimit(); testAllocator2.setAllocationLimit(-1); ALLOC AL2(&testAllocator2); Obj mY(AL2); const Obj& Y = gg(&mY, SPEC); if (veryVerbose) { T_; T_; P(Y); } LOOP_ASSERT(SPEC, Y == Y); LOOP_ASSERT(SPEC, X == Y); const Int64 B2 = testAllocator2.numBlocksInUse(); testAllocator2.setAllocationLimit(AL); { ExceptionGuard<Obj> guard(&mY, Y, L_); mY = Y; // test assignment here } const Int64 A2 = testAllocator2.numBlocksInUse(); LOOP_ASSERT(SPEC, Y == Y); LOOP_ASSERT(SPEC, X == Y); LOOP_ASSERT(SPEC, B2 == A2); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END } // end for (ti) } // end self-assignment test } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testGeneratorG() { // -------------------------------------------------------------------- // TESTING GENERATOR FUNCTION, g: // Since 'g' is implemented almost entirely using 'gg', we need to verify // only that the arguments are properly forwarded, that 'g' does not // affect the test allocator, and that 'g' returns an object by value. // // Plan: // For each SPEC in a short list of specifications, compare the object // returned (by value) from the generator function, 'g(SPEC)' with the // value of a newly constructed OBJECT configured using 'gg(&OBJECT, // SPEC)'. Compare the results of calling the allocator's // 'numBlocksTotal' and 'numBytesInUse' methods before and after calling // 'g' in order to demonstrate that 'g' has no effect on the test // allocator. Finally, use 'sizeof' to confirm that the (temporary) // returned by 'g' differs in size from that returned by 'gg'. // // Testing: // list g(const char *spec); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); static const char *SPECS[] = { "", "~", "A", "B", "C", "D", "E", "A~B~C~D~E", "ABCDE", "ABC~DE", 0 // null string required as last element }; if (verbose) printf("\nCompare values produced by 'g' and 'gg' " "for various inputs.\n"); for (int ti = 0; SPECS[ti]; ++ti) { const char *SPEC = SPECS[ti]; if (veryVerbose) { P_(ti); P(SPEC); } Obj mX(Z); const Obj& X = gg(&mX, SPEC); if (veryVerbose) { printf("\t g = "); dbg_print(g(SPEC)); printf("\n"); printf("\tgg = "); dbg_print(X); printf("\n"); } const Int64 TOTAL_BLOCKS_BEFORE = testAllocator.numBlocksTotal(); const Int64 IN_USE_BYTES_BEFORE = testAllocator.numBytesInUse(); LOOP_ASSERT(ti, X == g(SPEC)); const Int64 TOTAL_BLOCKS_AFTER = testAllocator.numBlocksTotal(); const Int64 IN_USE_BYTES_AFTER = testAllocator.numBytesInUse(); LOOP_ASSERT(ti, TOTAL_BLOCKS_BEFORE == TOTAL_BLOCKS_AFTER); LOOP_ASSERT(ti, IN_USE_BYTES_BEFORE == IN_USE_BYTES_AFTER); } if (verbose) printf("\nConfirm return-by-value.\n"); { const char *SPEC = "ABCDE"; // compile-time fact ASSERT(sizeof(Obj) == sizeof g(SPEC)); Obj x(Z); // runtime tests Obj& r1 = gg(&x, SPEC); Obj& r2 = gg(&x, SPEC); const Obj& r3 = g(SPEC); const Obj& r4 = g(SPEC); ASSERT(&r2 == &r1); ASSERT(&x == &r1); ASSERT(&r4 != &r3); ASSERT(&x != &r3); } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testCopyCtor() { // -------------------------------------------------------------------- // TESTING COPY CONSTRUCTOR: // // Concerns: // 1. The new object's value is the same as that of the original // object (relying on the equality operator) and created with // the correct allocator. // 2. The value of the original object is left unaffected. // 3. Subsequent changes in or destruction of the source object have // no effect on the copy-constructed object. // 4. Subsequent changes ('push_back's) on the created object have no // effect on the original. // 5. The object has its internal memory management system hooked up // properly so that *all* internally allocated memory draws // from a user-supplied allocator whenever one is specified. // 6. The function is exception neutral w.r.t. memory allocation. // // Plan: // Specify a set S of object values with substantial and varied // differences, ordered by increasing length, to be used in the // following tests. // // For concerns 1 - 3, for each value in S, initialize objects w and // x, copy construct y from x and use 'operator==' to verify that // both x and y subsequently have the same value as w. Let x go out // of scope and again verify that w == y. // // For concern 4, for each value in S initialize objects w and x, // and copy construct y from x. Change the state of y, by using the // *primary* *manipulator* 'push_back'. Using the 'operator!=' verify // that y differs from x and w. // // To address concern 5, we will perform tests performed for concern 1: // - While passing a testAllocator as a parameter to the new object // and ascertaining that the new object gets its memory from the // provided testAllocator. Also perform test for concerns 2 and 4. // - Where the object is constructed with an object allocator, and // neither of global and default allocator is used to supply memory. // // To address concern 6, perform tests for concern 1 performed // in the presence of exceptions during memory allocations using a // 'bslma_TestAllocator' and varying its *allocation* *limit*. // // Testing: // list(const list& original, const A& = A()); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); if (verbose) printf("\nTesting parameters: SCOPED_ALLOC = %d.\n", SCOPED_ALLOC); { static const char *SPECS[] = { "", "A", "BC", "CDE", "DEAB", "EABCD", "ABCDEAB", "ABCDEABC", "ABCDEABCD", "ABCDEABCDEABCDE", "ABCDEABCDEABCDEA", "ABCDEABCDEABCDEAB", 0 // null string required as last element }; int oldLen = -1; for (int ti = 0; SPECS[ti]; ++ti) { const char *const SPEC = SPECS[ti]; const size_t LENGTH = strlen(SPEC); if (verbose) { printf("\nFor an object of length " ZU ":\n", LENGTH); P(SPEC); } LOOP_ASSERT(SPEC, oldLen < (int)LENGTH); // strictly increasing oldLen = static_cast<int>(LENGTH); // Create control object w. Obj mW; gg(&mW, SPEC); const Obj& W = mW; LOOP_ASSERT(ti, LENGTH == W.size()); // same lengths if (veryVerbose) { printf("\tControl Obj: "); P(W); } Obj *pX = new Obj(Z); Obj& mX = *pX; const Obj& X = mX; gg(&mX, SPEC); if (veryVerbose) { printf("\t\tDynamic Obj: "); P(X); } { // Testing concern 1. if (veryVerbose) { printf("\t\t\tRegular Case :"); } const Obj Y0(X); if (veryVerbose) { printf("\tObj : "); P(Y0); } LOOP_ASSERT(SPEC, checkIntegrity(Y0, LENGTH)); LOOP_ASSERT(SPEC, W == Y0); LOOP_ASSERT(SPEC, W == X); if (ObjHasBslmaAlloc::value) { LOOP_ASSERT(SPEC, Y0.get_allocator() == ALLOC()); } else { LOOP_ASSERT(SPEC, Y0.get_allocator() == X.get_allocator()); } } { // Testing concern 4. if (veryVerbose) printf("\t\t\tInsert into created obj, " "without test allocator:\n"); Obj Y1(X); Y1.push_back(VALUES[Y1.size() % NUM_VALUES]); LOOP_ASSERT(SPEC, checkIntegrity(Y1, LENGTH + 1)); LOOP_ASSERT(SPEC, Y1.size() == LENGTH + 1); LOOP_ASSERT(SPEC, W != Y1); LOOP_ASSERT(SPEC, X != Y1); LOOP_ASSERT(SPEC, W == X); } { // Testing concern 5 with test allocator. if (veryVerbose) printf("\t\t\tInsert into created obj, " "with test allocator:\n"); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\t\tBefore Creation: "); P_(BB); P(B); } Obj Y11(X, Z); const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\t\tAfter Creation: "); P_(AA); P(A); printf("\t\t\t\tBefore Append: "); P(Y11); } LOOP_ASSERT(SPEC, BB + expectedBlocks(LENGTH) == AA); LOOP_ASSERT(SPEC, B + expectedBlocks(LENGTH) == A); const Int64 CC = testAllocator.numBlocksTotal(); const Int64 C = testAllocator.numBlocksInUse(); Y11.push_back(VALUES[LENGTH % NUM_VALUES]); const Int64 DD = testAllocator.numBlocksTotal(); const Int64 D = testAllocator.numBlocksInUse(); // Allocations should increase by one node block for the list. // If TYPE uses an allocator, allocations should increase by // one more block. LOOP_ASSERT(SPEC, CC + deltaBlocks(1) == DD); LOOP_ASSERT(SPEC, C + deltaBlocks(1) == D ); if (veryVerbose) { printf("\t\t\t\tAfter Append : "); P(Y11); } LOOP_ASSERT(SPEC, Y11.size() == LENGTH + 1); LOOP_ASSERT(SPEC, W != Y11); LOOP_ASSERT(SPEC, X != Y11); LOOP_ASSERT(SPEC, Y11.get_allocator() == X.get_allocator()); LOOP_ASSERT(SPEC, X == W); } #ifdef BDE_BUILD_TARGET_EXC { // Exception checking. const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\t\tBefore Creation: "); P_(BB); P(B); } size_t allocations = 0; BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { allocations += bslmaExceptionCounter; const Obj Y2(X, Z); if (veryVerbose) { printf("\t\t\tException Case :\n"); printf("\t\t\t\tObj : "); P(Y2); } LOOP_ASSERT(SPEC, checkIntegrity(Y2, LENGTH)); LOOP_ASSERT(SPEC, W == Y2); LOOP_ASSERT(SPEC, W == X); LOOP_ASSERT(SPEC, Y2.get_allocator() == X.get_allocator()); } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\t\tAfter Creation: "); P_(AA); P(A); } LOOP_ASSERT(SPEC, BB + (int) allocations == AA); LOOP_ASSERT(SPEC, B + 0 == A); } #endif // BDE_BUILD_TARGET_EXC { // with 'original' destroyed Obj Y5(X); if (veryVerbose) { printf("\t\t\tWith Original deleted: \n"); printf("\t\t\t\tBefore Delete : "); P(Y5); } delete pX; LOOP_ASSERT(SPEC, W == Y5); Y5.push_back(VALUES[LENGTH % NUM_VALUES]); if (veryVerbose) { printf("\t\t\t\tAfter Append to new obj : "); P(Y5); } LOOP_ASSERT(SPEC, checkIntegrity(Y5, LENGTH + 1)); LOOP_ASSERT(SPEC, W != Y5); } } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testEqualityOp() { // --------------------------------------------------------------------- // TESTING EQUALITY OPERATORS: // // Concerns: // 1. Objects constructed with the same values compare equal. // 2. Objects constructed such that they have same (logical) value but // different internal representation (due to the lack or presence // of an allocator) always compare as equal. // 3. Unequal objects are always compare as unequal. // // Plan: // Specify a set A of unique allocators including no allocator. Specify // a set S of unique object values having various minor or subtle // differences, ordered by non-decreasing length. Verify the // correctness of 'operator==' and 'operator!=' (returning either true // or false) using all elements (u, ua, v, va) of the cross product S X // A X S X A. // // Testing: // operator==(const list<T,A>&, const list<T,A>&); // operator!=(const list<T,A>&, const list<T,A>&); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator1(veryVeryVerbose); bslma::TestAllocator testAllocator2(veryVeryVerbose); bslma::Allocator *ALLOCATOR[] = { &testAllocator1, &testAllocator2 }; const int NUM_ALLOCATOR = sizeof ALLOCATOR / sizeof *ALLOCATOR; const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) VALUES; (void) NUM_VALUES; static const char *SPECS[] = { "", "A", "B", "AA", "AB", "BB", "BA", "AAA", "BAA", "ABA", "AAB", "AAAA", "BAAA", "ABAA", "AABA", "AAAB", "AAAAA", "BAAAA", "ABAAA", "AABAA", "AAABA", "AAAAB", "AAAAAA", "BAAAAA", "AABAAA", "AAABAA", "AAAAAB", "AAAAAAA", "BAAAAAA", "AAAAABA", "AAAAAAAA", "ABAAAAAA", "AAAAABAA", "AAAAAAAAA", "AABAAAAAA", "AAAAABAAA", "AAAAAAAAAA", "AAABAAAAAA", "AAAAABAAAA", "AAAAAAAAAAA", "AAAABAAAAAA", "AAAAABAAAAA", "AAAAAAAAAAAA", "AAAABAAAAAAA", "AAAAABAAAAAA", "AAAAAAAAAAAAA", "AAAABAAAAAAAA", "AAAAABAAAAAAA", "AAAAAAAAAAAAAA", "AAAABAAAAAAAAA", "AAAAABAAAAAAAA", "AAAAAAAAAAAAAAA", "AAAABAAAAAAAAAA", "AAAAABAAAAAAAAA", 0 // null string required as last element }; if (verbose) printf("\nCompare each pair of similar and different" " values (u, ua, v, va) in S X A X S X A" " without perturbation.\n"); int oldLen = -1; // Create first object for (int si = 0; SPECS[si]; ++si) { for (int ai = 0; ai < NUM_ALLOCATOR; ++ai) { const char *const U_SPEC = SPECS[si]; const int LENGTH = static_cast<int>(strlen(U_SPEC)); Obj mU(ALLOCATOR[ai]); const Obj& U = gg(&mU, U_SPEC); LOOP2_ASSERT(si, ai, LENGTH == static_cast<int>(U.size())); // same lengths if ((int)LENGTH != oldLen) { if (verbose) printf("\tUsing lhs objects of length %d.\n", LENGTH); LOOP_ASSERT(U_SPEC, oldLen <= LENGTH); // non-decreasing oldLen = LENGTH; } if (veryVerbose) { T_; T_; P_(si); P_(U_SPEC); P(U); } // Create second object for (int sj = 0; SPECS[sj]; ++sj) { for (int aj = 0; aj < NUM_ALLOCATOR; ++aj) { const char *const V_SPEC = SPECS[sj]; Obj mV(ALLOCATOR[aj]); const Obj& V = gg(&mV, V_SPEC); if (veryVerbose) { T_; T_; P_(sj); P_(V_SPEC); P(V); } const bool isSame = si == sj; LOOP2_ASSERT(si, sj, isSame == (U == V)); LOOP2_ASSERT(si, sj, !isSame == (U != V)); } // end for (each allocator for V) } // end for (each spec for V) } // end for (each allocator for U) } // end for (each spec for U) } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testBasicAccessors() { // -------------------------------------------------------------------- // TESTING BASIC ACCESSORS: // // Concerns: // 0. size() returns the list size. // 1. begin() == end() if and only if the list is empty // 2. Iterating from begin() to end() will visit every value in a // list and only the values in that list. // 3. Iteration works for both const containers (using const_iterator) // and non-const containers (using iterator). // 4. empty() returns true iff size() return 0 // 5. The test function 'succ' increments an iterator by n. // 6. The test function 'nthElem' returns the nth element of a list. // 7. The test function 'is_mutable' returns true iff its argument is a // mutable lvalue. // NOTE: This is not a thorough test of iterators. This test is only // sufficient for using iterators to access the contents of a list in // order. // // Plan: // Specify a set S of representative object values ordered by // increasing length. For each value w in S, initialize a newly // constructed object x with w using 'gg' and verify that each basic // accessor returns the expected result. // // Testing: // int size() const; // bool empty() const; // iterator begin(); // iterator end(); // const_iterator begin() const; // const_iterator end() const; // // iterator succ(iterator); // const_iterator succ(iterator) const; // T& nthElem(list& x, int n); // const T& nthElem(list& x, int n) const; // bool is_mutable(T& val); // bool is_mutable(const T& val); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); bslma::TestAllocator testAllocator1(veryVeryVerbose); bslma::TestAllocator testAllocator2(veryVeryVerbose); bslma::Allocator *ALLOCATOR[] = { &testAllocator, &testAllocator1, &testAllocator2 }; const int NUM_ALLOCATOR = sizeof ALLOCATOR / sizeof *ALLOCATOR; const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); (void) NUM_VALUES; const int MAX_LENGTH = 32; static const struct { int d_lineNum; // source line number const char *d_spec_p; // specification string int d_length; // expected length char d_elements[MAX_LENGTH + 1]; // expected element values } DATA[] = { //line spec length elements //---- -------------- ------ ------------------------ { L_, "", 0, { } }, { L_, "A", 1, { VA } }, { L_, "B", 1, { VB } }, { L_, "AB", 2, { VA, VB } }, { L_, "BC", 2, { VB, VC } }, { L_, "BCA", 3, { VB, VC, VA } }, { L_, "CAB", 3, { VC, VA, VB } }, { L_, "CDAB", 4, { VC, VD, VA, VB } }, { L_, "DABC", 4, { VD, VA, VB, VC } }, { L_, "ABCDE", 5, { VA, VB, VC, VD, VE } }, { L_, "EDCBA", 5, { VE, VD, VC, VB, VA } }, { L_, "ABCDEA", 6, { VA, VB, VC, VD, VE, VA } }, { L_, "ABCDEAB", 7, { VA, VB, VC, VD, VE, VA, VB } }, { L_, "BACDEABC", 8, { VB, VA, VC, VD, VE, VA, VB, VC } }, { L_, "CBADEABCD", 9, { VC, VB, VA, VD, VE, VA, VB, VC, VD } }, { L_, "CBADEABCDAB", 11, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB } }, { L_, "CBADEABCDABC", 12, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC } }, { L_, "CBADEABCDABCDE", 14, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE } }, { L_, "CBADEABCDABCDEA", 15, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE, VA } }, { L_, "CBADEABCDABCDEAB", 16, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE, VA, VB } }, { L_, "CBADEABCDABCDEABCBADEABCDABCDEA", 31, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE, VA, VB, VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE, VA } }, { L_, "CBADEABCDABCDEABCBADEABCDABCDEAB", 32, { VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE, VA, VB, VC, VB, VA, VD, VE, VA, VB, VC, VD, VA, VB, VC, VD, VE, VA, VB } } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; if (verbose) printf("\nTesting is_mutable.\n"); { TYPE mV; const TYPE CV = TYPE(); TYPE& mVref = mV; const TYPE& cmVref = mV; ASSERT( is_mutable(mV)); ASSERT(! is_mutable(CV)); ASSERT( is_mutable(mVref)); ASSERT(! is_mutable(cmVref)); ASSERT(! is_mutable(as_rvalue(VALUES[0]))); // rvalue is not mutable } if (verbose) printf("\nTesting const and non-const versions of " "begin() and end().\n"); { int oldLen = -1; for (int ti = 0; ti < NUM_DATA; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *const SPEC = DATA[ti].d_spec_p; const int LENGTH = DATA[ti].d_length; const char *const EXP = DATA[ti].d_elements; ASSERT(LENGTH <= MAX_LENGTH); for (int ai = 0; ai < NUM_ALLOCATOR; ++ai) { const ALLOC AL(ALLOCATOR[ai]); Obj mX(AL); const Obj& X = gg(&mX, SPEC); // canonical organization LOOP2_ASSERT(ti, ai, LENGTH == static_cast<int>(X.size())); // same lengths LOOP2_ASSERT(ti, ai, (LENGTH == 0) == X.empty()); if (veryVerbose) { printf( "\ton objects of length %d:\n", LENGTH); } // non-decreasing LOOP2_ASSERT(LINE, ai, oldLen <= LENGTH); oldLen = LENGTH; if (veryVerbose) printf("\t\tSpec = \"%s\"\n", SPEC); if (veryVerbose) { T_; T_; T_; P(X); } int i; iterator imX; const_iterator iX; for (i = 0, imX = mX.begin(), iX = X.begin(); i < LENGTH; ++i, ++imX, ++iX) { LOOP3_ASSERT(LINE, ai, i, iX != X.end()); LOOP3_ASSERT(LINE, ai, i, imX != mX.end()); LOOP3_ASSERT(LINE, ai, i, imX == iX); LOOP3_ASSERT(LINE, ai, i, TYPE(EXP[i]) == *iX); LOOP3_ASSERT(LINE, ai, i, TYPE(EXP[i]) == *imX); LOOP3_ASSERT(LINE, ai, i, succ(X.begin(),i) == iX); LOOP3_ASSERT(LINE, ai, i, succ(mX.begin(),i) == imX); LOOP3_ASSERT(LINE, ai, i, &nthElem(X,i) == &*iX); LOOP3_ASSERT(LINE, ai, i, &nthElem(mX,i) == &*imX); } LOOP3_ASSERT(LINE, ai, i, iX == X.end()); LOOP3_ASSERT(LINE, ai, i, imX == mX.end()); // Sanity check that the test driver doesn't have unused data: for (; i < MAX_LENGTH; ++i) { LOOP3_ASSERT(LINE, ai, i, 0 == EXP[i]); } } } } if (verbose) printf("\nTesting non-const iterators " "modify state of object correctly.\n"); { int oldLen = -1; for (int ti = 0; ti < NUM_DATA ; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *const SPEC = DATA[ti].d_spec_p; const size_t LENGTH = DATA[ti].d_length; const char *const e = DATA[ti].d_elements; for (int ai = 0; ai < NUM_ALLOCATOR; ++ai) { const ALLOC AL(ALLOCATOR[ai]); Obj mX(AL); const Obj& X = gg(&mX, SPEC); LOOP2_ASSERT(ti, ai, LENGTH == X.size()); // same lengths LOOP2_ASSERT(ti, ai, (LENGTH == 0) == X.empty()); if (veryVerbose) { printf("\tOn objects of length " ZU ":\n", LENGTH); } // non-decreasing LOOP2_ASSERT(LINE, ai, oldLen <= (int)LENGTH); oldLen = static_cast<int>(LENGTH); if (veryVerbose) printf( "\t\tSpec = \"%s\"\n", SPEC); if (veryVerbose) { T_; T_; T_; P(X); } Obj mY(AL); const Obj& Y = mY; for (size_t j = 0; j < LENGTH; j++) { mY.push_back(TYPE()); } // Change state of Y so its same as X size_t j = 0; for (iterator imY = mY.begin(); imY != mY.end(); ++imY, ++j) { *imY = TYPE(e[j]); } LOOP2_ASSERT(ti, ai, LENGTH == j); if (veryVerbose) { printf("\t\tNew object1: "); P(Y); } const_iterator iX; const_iterator iY; for (j = 0, iX = X.begin(), iY = Y.begin(); iX != X.end(); ++j, ++iX, ++iY) { LOOP3_ASSERT(ti, ai, j, *iY == *iX); } LOOP2_ASSERT(ti, ai, iY == Y.end()); // Just for kicks, use the (untested) operator== LOOP2_ASSERT(ti, ai, Y == X); } } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testGeneratorGG() { // -------------------------------------------------------------------- // TESTING PRIMITIVE GENERATOR FUNCTIONS gg AND ggg: // Having demonstrated that our primary manipulators work as expected // under normal conditions, we want to verify (1) that valid // generator syntax produces expected results and (2) that invalid // syntax is detected and reported. // // Plan: // For each of an enumerated sequence of 'spec' values, ordered by // increasing 'spec' length, use the primitive generator function // 'gg' to set the state of a newly created object. Verify that 'gg' // returns a valid reference to the modified argument object and, // using basic accessors, that the value of the object is as // expected. Repeat the test for a longer 'spec' generated by // prepending a string ending in a '~' character (denoting // 'clear'). Note that we are testing the parser only; the // primary manipulators are already assumed to work. // // For each of an enumerated sequence of 'spec' values, ordered by // increasing 'spec' length, use the primitive generator function // 'ggg' to set the state of a newly created object. Verify that // 'ggg' returns the expected value corresponding to the location of // the first invalid value of the 'spec'. Repeat the test for a // longer 'spec' generated by prepending a string ending in a '~' // character (denoting 'clear'). // // Testing: // list<T,A>& gg(list<T,A> *object, const char *spec); // int ggg(list<T,A> *object, const char *spec, int vF = 1); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); if (verbose) printf("\nTesting generator on valid specs.\n"); { const int MAX_LENGTH = 10; static const struct { int d_lineNum; // source line number const char *d_spec_p; // specification string int d_length; // expected length char d_elements[MAX_LENGTH]; // expected element values } DATA[] = { //line spec length elements //---- -------------- ------ ------------------------ { L_, "", 0, { 0 } }, { L_, "A", 1, { VA } }, { L_, "B", 1, { VB } }, { L_, "~", 0, { 0 } }, { L_, "CD", 2, { VC, VD } }, { L_, "E~", 0, { 0 } }, { L_, "~E", 1, { VE } }, { L_, "~~", 0, { 0 } }, { L_, "ABC", 3, { VA, VB, VC } }, { L_, "~BC", 2, { VB, VC } }, { L_, "A~C", 1, { VC } }, { L_, "AB~", 0, { 0 } }, { L_, "~~C", 1, { VC } }, { L_, "~B~", 0, { 0 } }, { L_, "A~~", 0, { 0 } }, { L_, "~~~", 0, { 0 } }, { L_, "ABCD", 4, { VA, VB, VC, VD } }, { L_, "~BCD", 3, { VB, VC, VD } }, { L_, "A~CD", 2, { VC, VD } }, { L_, "AB~D", 1, { VD } }, { L_, "ABC~", 0, { 0 } }, { L_, "ABCDE", 5, { VA, VB, VC, VD, VE } }, { L_, "~BCDE", 4, { VB, VC, VD, VE } }, { L_, "AB~DE", 2, { VD, VE } }, { L_, "ABCD~", 0, { 0 } }, { L_, "A~C~E", 1, { VE } }, { L_, "~B~D~", 0, { 0 } }, { L_, "~CBA~~ABCDE", 5, { VA, VB, VC, VD, VE } }, { L_, "ABCDE~CDEC~E", 1, { VE } } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; int oldLen = -1; for (int ti = 0; ti < NUM_DATA ; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *const SPEC = DATA[ti].d_spec_p; const size_t LENGTH = DATA[ti].d_length; const char *const e = DATA[ti].d_elements; const int curLen = (int)strlen(SPEC); Obj mX(Z); const Obj& X = gg(&mX, SPEC); // original spec static const char *const MORE_SPEC = "~ABCDEABCDEABCDEABCDE~"; char buf[100]; strcpy(buf, MORE_SPEC); strcat(buf, SPEC); Obj mY(Z); const Obj& Y = gg(&mY, buf); // extended spec if (curLen != oldLen) { if (verbose) printf("\tof length %d:\n", curLen); LOOP_ASSERT(LINE, oldLen <= curLen); // non-decreasing oldLen = curLen; } if (veryVerbose) { printf("\t\tSpec = \"%s\"\n", SPEC); printf("\t\tBigSpec = \"%s\"\n", buf); T_; T_; T_; P(X); T_; T_; T_; P(Y); } LOOP_ASSERT(LINE, LENGTH == X.size()); LOOP_ASSERT(LINE, LENGTH == Y.size()); const_iterator ix = X.begin(); const_iterator iy = Y.begin(); for (size_t i = 0; i < LENGTH; ++i, ++ix, ++iy) { LOOP2_ASSERT(LINE, i, TYPE(e[i]) == *ix); LOOP2_ASSERT(LINE, i, TYPE(e[i]) == *iy); } } } if (verbose) printf("\nTesting generator on invalid specs.\n"); { static const struct { int d_lineNum; // source line number const char *d_spec_p; // specification string int d_index; // offending character index } DATA[] = { //line spec index //---- ------------- ----- { L_, "", -1, }, // control { L_, "~", -1, }, // control { L_, " ", 0, }, { L_, ".", 0, }, { L_, "E", -1, }, // control { L_, "I", 0, }, { L_, "Z", 0, }, { L_, "AE", -1, }, // control { L_, "aE", 0, }, { L_, "Ae", 1, }, { L_, ".~", 0, }, { L_, "~!", 1, }, { L_, " ", 0, }, { L_, "ABC", -1, }, // control { L_, " BC", 0, }, { L_, "A C", 1, }, { L_, "AB ", 2, }, { L_, "?#:", 0, }, { L_, " ", 0, }, { L_, "ABCDE", -1, }, // control { L_, "aBCDE", 0, }, { L_, "ABcDE", 2, }, { L_, "ABCDe", 4, }, { L_, "AbCdE", 1, } }; const int NUM_DATA = sizeof DATA / sizeof *DATA; int oldLen = -1; for (int ti = 0; ti < NUM_DATA ; ++ti) { const int LINE = DATA[ti].d_lineNum; const char *const SPEC = DATA[ti].d_spec_p; const int INDEX = DATA[ti].d_index; const size_t LENGTH = strlen(SPEC); Obj mX(Z); if ((int)LENGTH != oldLen) { if (verbose) printf("\tof length " ZU ":\n", LENGTH); // LOOP_ASSERT(LINE, oldLen <= (int)LENGTH); // non-decreasing oldLen = static_cast<int>(LENGTH); } if (veryVerbose) printf("\t\tSpec = \"%s\"\n", SPEC); int result = ggg(&mX, SPEC, veryVerbose); LOOP_ASSERT(LINE, INDEX == result); } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::testPrimaryManipulators() { // -------------------------------------------------------------------- // TESTING PRIMARY MANIPULATORS (BOOTSTRAP): // // Concerns: // The basic concern is that the default constructor, the destructor, // and, under normal conditions (i.e., no aliasing), the primary // manipulators // - push_back (black-box) // - clear (white-box) // operate as expected. Specifically: // 1. The default constructor // 1a) creates the correct initial value. // 1b) allocates exactly one block. // 2. The destructor properly deallocates all allocated memory to // its corresponding allocator from any attainable state. // 3. 'push_back' // 3a) produces the expected value. // 3b) maintains valid internal state. // 3c) preserves the strong exception guarantee and is // exception-neutral wrt memory allocation. // 3d) does not change the address of any other list elements // 3e) has the internal memory management system hooked up // properly so that *all* internally allocated memory // draws from the same user-supplied allocator whenever // one is specified. // 4. 'clear' // 4a) produces the expected value (empty). // 4b) properly destroys each contained element value. // 4c) maintains valid internal state. // 4d) does not allocate memory. // 4e) deallocates all element memory // 5. The size-based parameters of the class reflect the platform. // // Plan: // To address concerns 1a - 1c, create an object using the default // constructor: // - With and without passing in an allocator. // - In the presence of exceptions during memory allocations using // a 'bslma_TestAllocator' and varying its *allocation* *limit*. // - Where the object is constructed with an object allocator and // neither of global and default allocator is used to supply memory. // // To address concerns 3a - 3e, construct a series of independent // objects, ordered by increasing length. In each test, allow the // object to leave scope without further modification, so that the // destructor asserts internal object invariants appropriately. // After the final insert operation in each test, use the (untested) // basic accessors to cross-check the value of the object // and the 'bslma_TestAllocator' to confirm whether memory allocation has // occurred. // // To address concerns 4a-4e, construct a similar test, replacing // 'push_back' with 'clear'; this time, however, use the test // allocator to record *numBlocksInUse* rather than *numBlocksTotal*. // // To address concerns 2, 3d, 4d, create a small "area" test that // exercises the construction and destruction of objects of various // lengths in the presence of memory allocation exceptions. Two // separate tests will be performed: // // Let S be the sequence of integers { 0 .. N - 1 }. // (1) for each i in S, use the default constructor and 'push_back' // to create an instance of length i, confirm its value (using // basic accessors), and let it leave scope. // (2) for each (i, j) in S X S, use 'push_back' to create an // instance of length i, use 'clear' to clear its value // and confirm (with 'length'), use insert to set the instance // to a value of length j, verify the value, and allow the // instance to leave scope. // // The first test acts as a "control" in that 'clear' is not // called; if only the second test produces an error, we know that // 'clear' is to blame. We will rely on 'bslma_TestAllocator' // and purify to address concern 2, and on the object invariant // assertions in the destructor to address concerns 3d and 4d. // // To address concern 5, the values will be explicitly compared to // the expected values. This will be done first so as to ensure all // other tests are reliable and may depend upon the class's // constants. // // Testing: // list<T,A>(const A& a = A()); // ~list<T,A>(); // void push_back(const T&); // void clear(); // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const ALLOC Z(&testAllocator); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); if (verbose) printf("\tTesting parameters: SCOPED_ALLOC = %d.\n", SCOPED_ALLOC); // -------------------------------------------------------------------- if (verbose) printf("\n\tTesting default ctor (thoroughly).\n"); if (verbose) printf("\t\tWithout passing in an allocator.\n"); { const Obj X; if (veryVerbose) { T_; T_; P(X); } ASSERT(0 == X.size()); } if (verbose) printf("\t\tPassing in an allocator.\n"); { const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); ALLOC AL(&testAllocator); const Obj X(AL); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { T_; T_; P(X); } ASSERT(0 == X.size()); ASSERT(AA + expectedBlocks(0) == BB); ASSERT(A + expectedBlocks(0) == B); } if (verbose) printf("\t\tIn place using a buffer allocator.\n"); { ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == defaultAllocator_p->numBlocksInUse()); ASSERT(0 == objectAllocator_p->numBlocksInUse()); ALLOC AL(objectAllocator_p); Obj x(AL); ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == defaultAllocator_p->numBlocksInUse()); ASSERT(expectedBlocks(0) == objectAllocator_p->numBlocksInUse()); } ASSERT(0 == globalAllocator_p->numBlocksInUse()); ASSERT(0 == defaultAllocator_p->numBlocksInUse()); ASSERT(0 == objectAllocator_p->numBlocksInUse()); // -------------------------------------------------------------------- if (verbose) printf("\n\tTesting 'push_back' (bootstrap) without allocator.\n"); { const size_t NUM_TRIALS = LARGE_SIZE_VALUE; for (size_t li = 0; li < NUM_TRIALS; ++li) { if (verbose) printf("\t\tOn an object of initial length " ZU ".\n", li); Obj mX; const Obj& X = mX; const TYPE *elemAddrs[NUM_TRIALS]; for (size_t i = 0; i < li; ++i) { mX.push_back(VALUES[i % NUM_VALUES]); elemAddrs[i] = &X.back(); } LOOP_ASSERT(li, li == X.size()); if(veryVerbose){ printf("\t\t\tBEFORE: "); P(X); } mX.push_back(VALUES[li % NUM_VALUES]); elemAddrs[li] = &X.back(); if(veryVerbose){ printf("\t\t\tAFTER: "); P(X); } LOOP_ASSERT(li, li + 1 == X.size()); const_iterator it = X.begin(); for (int i = 0; i < (int) li; ++it, ++i) { LOOP2_ASSERT(li, i, VALUES[i % NUM_VALUES] == *it); LOOP2_ASSERT(li, i, elemAddrs[i] == &*it); } LOOP_ASSERT(li, VALUES[li % NUM_VALUES] == *it); LOOP_ASSERT(li, elemAddrs[li] == &*it); } } // -------------------------------------------------------------------- if (verbose) printf("\n\tTesting 'push_back' (bootstrap) with allocator.\n"); { const size_t NUM_TRIALS = LARGE_SIZE_VALUE; for (size_t li = 0; li < NUM_TRIALS; ++li) { if (verbose) printf("\t\tOn an object of initial length " ZU ".\n", li); ALLOC AL(&testAllocator); Obj mX(AL); const Obj& X = mX; const TYPE *elemAddrs[NUM_TRIALS]; for (size_t i = 0; i < li; ++i) { mX.push_back(VALUES[i % NUM_VALUES]); elemAddrs[i] = &X.back(); } LOOP_ASSERT(li, li == X.size()); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\tBEFORE: "); P_(BB); P_(B); P(X); } mX.push_back(VALUES[li % NUM_VALUES]); elemAddrs[li] = &X.back(); const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\t AFTER: "); P_(AA); P_(A); P(X); } LOOP_ASSERT(li, BB + deltaBlocks(1) == AA); LOOP_ASSERT(li, B + deltaBlocks(1) == A); LOOP_ASSERT(li, li + 1 == X.size()); const_iterator it = X.begin(); for (int i = 0; i < (int) li; ++it, ++i) { LOOP2_ASSERT(li, i, VALUES[i % NUM_VALUES] == *it); LOOP2_ASSERT(li, i, elemAddrs[i] == &*it); } LOOP_ASSERT(li, VALUES[li % NUM_VALUES] == *it); LOOP_ASSERT(li, elemAddrs[li] == &*it); } } // -------------------------------------------------------------------- if (verbose) printf("\n\tTesting 'clear' without allocator.\n"); { const size_t NUM_TRIALS = LARGE_SIZE_VALUE; for (size_t li = 0; li < NUM_TRIALS; ++li) { if (verbose) printf("\t\tOn an object of initial length " ZU ".\n", li); Obj mX; const Obj& X = mX; for (size_t i = 0; i < li; ++i) { mX.push_back(VALUES[i % NUM_VALUES]); } if(veryVerbose){ printf("\t\t\tBEFORE "); P(X); } LOOP_ASSERT(li, li == X.size()); mX.clear(); if(veryVerbose){ printf("\t\t\tAFTER "); P(X); } LOOP_ASSERT(li, 0 == X.size()); for (size_t i = 0; i < li; ++i) { mX.push_back(VALUES[i % NUM_VALUES]); } if(veryVerbose){ printf("\t\t\tAFTER SECOND INSERT "); P(X); } LOOP_ASSERT(li, li == X.size()); const_iterator it = X.begin(); for (int i = 0; i < (int) li; ++it, ++i) { LOOP2_ASSERT(li, i, VALUES[i % NUM_VALUES] == *it); } } } // -------------------------------------------------------------------- if (verbose) printf("\n\tTesting 'clear' with allocator.\n"); { const size_t NUM_TRIALS = LARGE_SIZE_VALUE; for (size_t li = 0; li < NUM_TRIALS; ++li) { if (verbose) printf("\t\tOn an object of initial length " ZU ".\n", li); ALLOC AL(&testAllocator); Obj mX(AL); const Obj& X = mX; for (size_t i = 0; i < li; ++i) { mX.push_back(VALUES[i % NUM_VALUES]); } LOOP_ASSERT(li, li == X.size()); const Int64 BB = testAllocator.numBlocksTotal(); const Int64 B = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\tBEFORE: "); P_(BB); P_(B); P(X); } mX.clear(); const Int64 AA = testAllocator.numBlocksTotal(); const Int64 A = testAllocator.numBlocksInUse(); if (veryVerbose) { printf("\t\t\tAFTER: "); P_(AA); P_(A); P(X); } for (size_t i = 0; i < li; ++i) { mX.push_back(VALUES[i % NUM_VALUES]); } LOOP_ASSERT(li, li == X.size()); const Int64 CC = testAllocator.numBlocksTotal(); const Int64 C = testAllocator.numBlocksInUse(); if(veryVerbose){ printf("\t\t\tAFTER SECOND INSERT: "); P_(CC); P_(C); P(X); } LOOP_ASSERT(li, li == X.size()); LOOP_ASSERT(li, BB == AA); LOOP_ASSERT(li, B - deltaBlocks(li) == A); LOOP_ASSERT(li, BB + deltaBlocks(li) == CC); LOOP_ASSERT(li, B == C); } } // -------------------------------------------------------------------- if (verbose) printf("\n\tTesting the destructor and exception neutrality " "with allocator.\n"); if (verbose) printf("\t\tWith 'push_back' only\n"); { // For each lengths li up to some modest limit: // 1) create an instance // 2) insert { V0, V1, V2, V3, V4, V0, ... } up to length li // 3) verify initial length and contents // 4) allow the instance to leave scope // 5) make sure that the destructor cleans up const size_t NUM_TRIALS = LARGE_SIZE_VALUE; for (size_t li = 0; li < NUM_TRIALS; ++li) { // i is the length if (verbose) printf("\t\t\tOn an object of length " ZU ".\n", li); BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { Obj mX(Z); const Obj& X = mX; // 1. const TYPE *elemAddrs[NUM_TRIALS]; for (size_t i = 0; i < li; ++i) { // 2. ExceptionGuard<Obj> guard(&mX, X, L_); mX.push_back(VALUES[i % NUM_VALUES]); elemAddrs[i] = &X.back(); guard.release(); } LOOP_ASSERT(li, li == X.size()); // 3. const_iterator it = X.begin(); for (int i = 0; i < (int) li; ++it, ++i) { LOOP2_ASSERT(li, i, VALUES[i % NUM_VALUES] == *it); LOOP2_ASSERT(li, i, elemAddrs[i] == &*it); } } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END // 4. LOOP_ASSERT(li, 0 == testAllocator.numBlocksInUse()); // 5. } } if (verbose) printf("\t\tWith 'push_back' and 'clear'\n"); { // For each pair of lengths (i, j) up to some modest limit: // 1) create an instance // 2) insert V0 values up to a length of i // 3) verify initial length and contents // 4) clear contents from instance // 5) verify length is 0 // 6) insert { V0, V1, V2, V3, V4, V0, ... } up to length j // 7) verify new length and contents // 8) allow the instance to leave scope // 9) make sure that the destructor cleans up const size_t NUM_TRIALS = LARGE_SIZE_VALUE; for (size_t i = 0; i < NUM_TRIALS; ++i) { // i is first length if (verbose) printf("\t\t\tOn an object of initial length " ZU ".\n", i); for (size_t j = 0; j < NUM_TRIALS; ++j) { // j is second length if (veryVerbose) printf("\t\t\t\tAnd with final length " ZU ".\n", j); BSLMA_TESTALLOCATOR_EXCEPTION_TEST_BEGIN(testAllocator) { size_t k; // loop index Obj mX(Z); const Obj& X = mX; // 1. const TYPE *elemAddrs[NUM_TRIALS]; for (k = 0; k < i; ++k) { // 2. ExceptionGuard<Obj> guard(&mX, X, L_); mX.push_back(VALUES[0]); elemAddrs[k] = &X.back(); guard.release(); } LOOP2_ASSERT(i, j, i == X.size()); // 3. const_iterator it = X.begin(); for (k = 0; k < i; ++k, ++it) { LOOP3_ASSERT(i, j, k, VALUES[0] == *it); LOOP3_ASSERT(i, j, k, elemAddrs[k] == &*it); } mX.clear(); // 4. LOOP2_ASSERT(i, j, 0 == X.size()); // 5. for (k = 0; k < j; ++k) { // 6. ExceptionGuard<Obj> guard(&mX, X, L_); mX.push_back(VALUES[k % NUM_VALUES]); elemAddrs[k] = &X.back(); guard.release(); } LOOP2_ASSERT(i, j, j == X.size()); // 7. it = X.begin(); for (k = 0; k < j; ++k, ++it) { LOOP3_ASSERT(i, j, k, VALUES[k % NUM_VALUES] == *it); LOOP3_ASSERT(i, j, k, elemAddrs[k] == &*it); } } BSLMA_TESTALLOCATOR_EXCEPTION_TEST_END // 8. LOOP_ASSERT(i, 0 == testAllocator.numBlocksInUse()); // 9. } } } } template <class TYPE, class ALLOC> void TestDriver<TYPE,ALLOC>::breathingTest() { // -------------------------------------------------------------------- // BREATHING TEST: // We want to exercise basic value-semantic functionality. In // particular we want to demonstrate a base-line level of correct // operation of the following methods and operators: // - default and copy constructors (and also the destructor) // - the assignment operator (including aliasing) // - equality operators: 'operator==' and 'operator!=' // - primary manipulators: 'push_back' and 'clear' methods // - basic accessors: 'size' and 'operator[]' // // Plan: // Create four objects using both the default and copy constructors. // Exercise these objects using primary manipulators, basic accessors, // equality operators, and the assignment operator. Try aliasing with // assignment for a non-empty instance [11] and allow the result to // leave scope, enabling the destructor to assert internal object // invariants. Display object values frequently in verbose mode: // // 1) Create an object x1 (default ctor). { x1: } // 2) Create a second object x2 (copy from x1). { x1: x2: } // 3) Prepend an element value A to x1). { x1:A x2: } // 4) Append the same element value A to x2). { x1:A x2:A } // 5) Prepend/Append two values B & C to x2). { x1:A x2:BAC } // 6) Remove all elements from x1. { x1: x2:BAC } // 7) Create a third object x3 (default ctor). { x1: x2:BAC x3: } // 8) Create a forth object x4 (copy of x2). { x1: x2:BAC x3: x4:BAC } // 9) Assign x2 = x1 (non-empty becomes empty). { x1: x2: x3: x4:BAC } // 10) Assign x3 = x4 (empty becomes non-empty).{ x1: x2: x3:BAC x4:BAC } // 11) Assign x4 = x4 (aliasing). { x1: x2: x3:BAC x4:BAC } // // Testing: // This "test" *exercises* basic functionality. // -------------------------------------------------------------------- bslma::TestAllocator testAllocator(veryVeryVerbose); const TYPE *values = 0; const TYPE *const& VALUES = values; const int NUM_VALUES = getValues(&values); const TYPE& A = VALUES[0]; const TYPE& B = VALUES[1]; const TYPE& C = VALUES[2]; (void) NUM_VALUES; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 1) Create an object x1 (default ctor)." "\t\t\t{ x1: }\n"); Obj mX1(&testAllocator); const Obj& X1 = mX1; if (verbose) { T_; P(X1); } if (verbose) printf("\ta) Check initial state of x1.\n"); ASSERT(0 == X1.size()); if (verbose) printf( "\tb) Try equality operators: x1 <op> x1.\n"); ASSERT( X1 == X1 ); ASSERT(!(X1 != X1)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 2) Create a second object x2 (copy from x1)." "\t\t{ x1: x2: }\n"); Obj mX2(X1, &testAllocator); const Obj& X2 = mX2; if (verbose) { T_; P(X2); } if (verbose) printf( "\ta) Check the initial state of x2.\n"); ASSERT(0 == X2.size()); if (verbose) printf( "\tb) Try equality operators: x2 <op> x1, x2.\n"); ASSERT( X2 == X1 ); ASSERT(!(X2 != X1)); ASSERT( X2 == X2 ); ASSERT(!(X2 != X2)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 3) Prepend an element value A to x1)." "\t\t\t{ x1:A x2: }\n"); mX1.push_front(A); if (verbose) { T_; P(X1); } if (verbose) printf( "\ta) Check new state of x1.\n"); ASSERT(1 == X1.size()); ASSERT(A == X1.front()); ASSERT(A == X1.back()); if (verbose) printf( "\tb) Try equality operators: x1 <op> x1, x2.\n"); ASSERT( X1 == X1 ); ASSERT(!(X1 != X1)); ASSERT(!(X1 == X2)); ASSERT( X1 != X2 ); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 4) Append the same element value A to x2)." "\t\t{ x1:A x2:A }\n"); mX2.push_back(A); if (verbose) { T_; P(X2); } if (verbose) printf( "\ta) Check new state of x2.\n"); ASSERT(1 == X2.size()); ASSERT(A == X2.front()); ASSERT(A == X2.back()); if (verbose) printf( "\tb) Try equality operators: x2 <op> x1, x2.\n"); ASSERT( X2 == X1 ); ASSERT(!(X2 != X1)); ASSERT( X2 == X2 ); ASSERT(!(X2 != X2)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 5) Prepend another element value B and append " "another element c to x2).\t\t{ x1:A x2:BAC }\n"); mX2.push_front(B); mX2.push_back(C); if (verbose) { T_; P(X2); } if (verbose) printf( "\ta) Check new state of x2.\n"); ASSERT(3 == X2.size()); ASSERT(B == X2.front()); ASSERT(A == nthElem(X2, 1)); ASSERT(C == X2.back()); if (verbose) printf( "\tb) Try equality operators: x2 <op> x1, x2.\n"); ASSERT(!(X2 == X1)); ASSERT( X2 != X1 ); ASSERT( X2 == X2 ); ASSERT(!(X2 != X2)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 6) Remove all elements from x1." "\t\t\t{ x1: x2:BAC }\n"); mX1.clear(); if (verbose) { T_; P(X1); } if (verbose) printf( "\ta) Check new state of x1.\n"); ASSERT(0 == X1.size()); if (verbose) printf( "\tb) Try equality operators: x1 <op> x1, x2.\n"); ASSERT( X1 == X1 ); ASSERT(!(X1 != X1)); ASSERT(!(X1 == X2)); ASSERT( X1 != X2 ); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 7) Create a third object x3 (default ctor)." "\t\t{ x1: x2:BAC x3: }\n"); Obj mX3(&testAllocator); const Obj& X3 = mX3; if (verbose) { T_; P(X3); } if (verbose) printf( "\ta) Check new state of x3.\n"); ASSERT(0 == X3.size()); if (verbose) printf( "\tb) Try equality operators: x3 <op> x1, x2, x3.\n"); ASSERT( X3 == X1 ); ASSERT(!(X3 != X1)); ASSERT(!(X3 == X2)); ASSERT( X3 != X2 ); ASSERT( X3 == X3 ); ASSERT(!(X3 != X3)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 8) Create a forth object x4 (copy of x2)." "\t\t{ x1: x2:BAC x3: x4:BAC }\n"); Obj mX4(X2, &testAllocator); const Obj& X4 = mX4; if (verbose) { T_; P(X4); } if (verbose) printf( "\ta) Check new state of x4.\n"); ASSERT(3 == X4.size()); ASSERT(B == nthElem(X4, 0)); ASSERT(A == nthElem(X4, 1)); ASSERT(C == nthElem(X4, 2)); if (verbose) printf( "\tb) Try equality operators: x4 <op> x1, x2, x3, x4.\n"); ASSERT(!(X4 == X1)); ASSERT( X4 != X1 ); ASSERT( X4 == X2 ); ASSERT(!(X4 != X2)); ASSERT(!(X4 == X3)); ASSERT( X4 != X3 ); ASSERT( X4 == X4 ); ASSERT(!(X4 != X4)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n 9) Assign x2 = x1 (non-empty becomes empty)." "\t\t{ x1: x2: x3: x4:BAC }\n"); mX2 = X1; if (verbose) { T_; P(X2); } if (verbose) printf( "\ta) Check new state of x2.\n"); ASSERT(0 == X2.size()); if (verbose) printf( "\tb) Try equality operators: x2 <op> x1, x2, x3, x4.\n"); ASSERT( X2 == X1 ); ASSERT(!(X2 != X1)); ASSERT( X2 == X2 ); ASSERT(!(X2 != X2)); ASSERT( X2 == X3 ); ASSERT(!(X2 != X3)); ASSERT(!(X2 == X4)); ASSERT( X2 != X4 ); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n10) Assign x3 = x4 (empty becomes non-empty)." "\t\t{ x1: x2: x3:BAC x4:BAC }\n"); mX3 = X4; if (verbose) { T_; P(X3); } if (verbose) printf( "\ta) Check new state of x3.\n"); ASSERT(3 == X3.size()); ASSERT(B == nthElem(X3, 0)); ASSERT(A == nthElem(X3, 1)); ASSERT(C == nthElem(X3, 2)); if (verbose) printf( "\tb) Try equality operators: x3 <op> x1, x2, x3, x4.\n"); ASSERT(!(X3 == X1)); ASSERT( X3 != X1 ); ASSERT(!(X3 == X2)); ASSERT( X3 != X2 ); ASSERT( X3 == X3 ); ASSERT(!(X3 != X3)); ASSERT( X3 == X4 ); ASSERT(!(X3 != X4)); // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (verbose) printf("\n11) Assign x4 = x4 (aliasing)." "\t\t\t\t{ x1: x2: x3:BAC x4:BAC }\n"); mX4 = X4; if (verbose) { T_; P(X4); } if (verbose) printf( "\ta) Check new state of x4.\n"); ASSERT(3 == X4.size()); ASSERT(B == nthElem(X4, 0)); ASSERT(A == nthElem(X4, 1)); ASSERT(C == nthElem(X4, 2)); if (verbose) printf("\tb) Try equality operators: x4 <op> x1, x2, x3, x4.\n"); ASSERT(!(X4 == X1)); ASSERT( X4 != X1 ); ASSERT(!(X4 == X2)); ASSERT( X4 != X2 ); ASSERT( X4 == X3 ); ASSERT(!(X4 != X3)); ASSERT( X4 == X4 ); ASSERT(!(X4 != X4)); } //============================================================================= // MAIN PROGRAM //----------------------------------------------------------------------------- int main(int argc, char *argv[]) { int test = argc > 1 ? atoi(argv[1]) : 0; verbose = argc > 2; veryVerbose = argc > 3; veryVeryVerbose = argc > 4; veryVeryVeryVerbose = argc > 5; // As part of our overall allocator testing strategy, we will create // three test allocators. // Object Test Allocator. bslma::TestAllocator objectAllocator("Object Allocator", veryVeryVeryVerbose); objectAllocator_p = &objectAllocator; // Default Test Allocator. bslma::TestAllocator defaultAllocator("Default Allocator", veryVeryVeryVerbose); bslma::DefaultAllocatorGuard guard(&defaultAllocator); defaultAllocator_p = &defaultAllocator; // Global Test Allocator. bslma::TestAllocator globalAllocator("Global Allocator", veryVeryVeryVerbose); bslma::Allocator *originalGlobalAllocator = bslma::Default::setGlobalAllocator(&globalAllocator); globalAllocator_p = &globalAllocator; setbuf(stdout, NULL); // Use unbuffered output printf("TEST " __FILE__ " CASE %d\n", test); switch (test) { case 0: // Zero is always the leading case. case 29: { // -------------------------------------------------------------------- // USAGE EXAMPLE // // Concerns: // 1. The usage examples in the header file compile. // 2. The usage examples in the header produce correct results // // Test plan: // Copy the usage examples from the header into this test driver. // // Testing: // USAGE EXAMPLE // -------------------------------------------------------------------- if (verbose) printf("\nTesting USAGE EXAMPLE" "\n=====================\n"); // Create test data files FILE* output = fopen("star_data1.txt", "w"); ASSERT(output); fprintf(output, "%s", STAR_DATA1); fclose(output); output = fopen("star_data2.txt", "w"); ASSERT(output); fprintf(output, "%s", STAR_DATA2); fclose(output); if (verbose) printf("\nusageExample1\n"); usageExample1(veryVerbose); if (verbose) printf("\nusageExample2\n"); usageExample2(veryVerbose); // Erase output files. remove("star_data1.txt"); remove("star_data2.txt"); } break; case 28: { // -------------------------------------------------------------------- // TESTING SORT // // Concerns and plan: // See testSort for a list of specific concerns and a test plan. // // Testing: // void sort(); // template <class COMP> void sort(COMP c); // -------------------------------------------------------------------- if (verbose) printf("\nTesting SORT" "\n============\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testSort(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testSort(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testSort(); } break; case 27: { // -------------------------------------------------------------------- // TESTING MERGE // // Concerns and plan: // See testMerge for a list of specific concerns and a test plan. // // Testing: // void merge(list& other); // template <class COMP> void merge(list& other, COMP c); // -------------------------------------------------------------------- if (verbose) printf("\nTesting MERGE" "\n=============\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testMerge(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testMerge(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testMerge(); } break; case 26: { // -------------------------------------------------------------------- // TESTING UNIQUE // // Concerns and plan: // See testUnique for a list of specific concerns and a test plan. // // Testing: // void unique(); // template <class BINPRED> void unique(BINPRED p); // -------------------------------------------------------------------- if (verbose) printf("\nTesting UNIQUE" "\n===============\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testUnique(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testUnique(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testUnique(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testUnique(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testUnique(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testUnique(); } break; case 25: { // -------------------------------------------------------------------- // TESTING REMOVE // // Concerns and plan: // See testRemove for a list of specific concerns and a test plan. // // Testing: // void remove(const T& val); // template <class PRED> void remove_if(PRED p); // -------------------------------------------------------------------- if (verbose) printf("\nTesting REMOVE" "\n===============\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testRemove(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testRemove(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testRemove(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testRemove(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testRemove(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testRemove(); } break; case 24: { // -------------------------------------------------------------------- // TESTING SPLICE // // Concerns and plan: // See testSplice for a list of specific concerns and a test plan. // // Testing: // void splice(iterator pos, list& other); // void splice(iterator pos, list& other, iterator i); // void splice(iterator pos, list& other, // iterator first, iterator last); // -------------------------------------------------------------------- if (verbose) printf("\nTesting SPLICE" "\n===============\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testSplice(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testSplice(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testSplice(); } break; case 23: { // -------------------------------------------------------------------- // TESTING REVERSE // // Concerns and plan: // See testReverse for a list of specific concerns and a test plan. // // Testing: // void reverse(); // -------------------------------------------------------------------- if (verbose) printf("\nTesting REVERSE" "\n================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testReverse(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testReverse(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testReverse(); } break; case 22: { // -------------------------------------------------------------------- // TESTING TYPE TRAITS // // Concerns and plan: // See testTypeTraits for a list of specific concerns and a test // plan. // // Testing: // bslalg::HasStlIterators // bslma::UsesBslmaAllocator // bslmf::IsBitwiseMoveable // -------------------------------------------------------------------- if (verbose) printf("\nTesting TYPE TRAITS" "\n===================\n"); // The default allocator is both a bslma allocator and is bitwise // moveable. if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testTypeTraits(/* uses_bslma */ true, /* bitwise_moveable */ true); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testTypeTraits(/* uses_bslma */ true, /* bitwise_moveable */ true); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testTypeTraits(/* uses_bslma */ true, /* bitwise_moveable */ true); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testTypeTraits(/* uses_bslma */ true, /* bitwise_moveable */ true); // OtherAlloc allocator is neither a bslma allocator nor bitwise // moveable. if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testTypeTraits(/* uses_bslma */ false, /* bitwise_moveable */ false); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testTypeTraits(/* uses_bslma */ false, /* bitwise_moveable */ false); } break; case 21: { // -------------------------------------------------------------------- // TESTING TYPEDEFS // // Concerns: // 1. That all of the required typedefs are defined. // 2. That the typedefs are identical to the corresponding typedefs // from the allocator. // // Plan: // Instantiate 'list<T,Alloc>' with at least two types of 'Alloc'. // Verify that each typedef in 'list<T,bAlloc>' matches the // corresponding typedef in 'Alloc'. Note that the iterator types // were tested in test case 16 and so are not tested here. // // Testing: // reference // const_reference // size_type // difference_type // value_type // allocator_type // pointer // const_pointer // -------------------------------------------------------------------- if (verbose) printf("\nTesting typedefs" "\n================\n"); if (verbose) printf("\nWith 'bsl::allocator'\n"); { typedef bsl::allocator<T> Alloc; typedef list<T,Alloc> Obj; ASSERT((bsl::is_same<Alloc::reference, Obj::reference>::value)); ASSERT((bsl::is_same<Alloc::const_reference, Obj::const_reference>::value)); ASSERT((bsl::is_same<Alloc::pointer, Obj::pointer>::value)); ASSERT((bsl::is_same<Alloc::const_pointer, Obj::const_pointer>::value)); ASSERT((bsl::is_same<Alloc::size_type, Obj::size_type>::value)); ASSERT((bsl::is_same<Alloc::difference_type, Obj::difference_type>::value)); ASSERT((bsl::is_same<T, Obj::value_type>::value)); ASSERT((bsl::is_same<Alloc, Obj::allocator_type>::value)); } if (verbose) printf("\nWith 'SmallAllocator'\n"); { typedef SmallAllocator<T> Alloc; typedef list<T,Alloc> Obj; ASSERT((bsl::is_same<Alloc::reference, Obj::reference>::value)); ASSERT((bsl::is_same<Alloc::const_reference, Obj::const_reference>::value)); ASSERT((bsl::is_same<Alloc::pointer, Obj::pointer>::value)); ASSERT((bsl::is_same<Alloc::const_pointer, Obj::const_pointer>::value)); ASSERT((bsl::is_same<Alloc::size_type, Obj::size_type>::value)); ASSERT((bsl::is_same<Alloc::difference_type, Obj::difference_type>::value)); ASSERT((bsl::is_same<T, Obj::value_type>::value)); ASSERT((bsl::is_same<Alloc, Obj::allocator_type>::value)); } } break; case 20: { // -------------------------------------------------------------------- // TESTING COMPARISON FREE OPERATORS // // Concerns and plan: // See testComparisonOps for a list of specific concerns and a test // plan. // // Testing: // bool operator<(const list<T,A>& lhs, const list<T,A>& rhs); // bool operator>(const list<T,A>& lhs, const list<T,A>& rhs); // bool operator<=(const list<T,A>& lhs, const list<T,A>& rhs); // bool operator>=(const list<T,A>& lhs, const list<T,A>& rhs); // -------------------------------------------------------------------- if (verbose) printf("\nTesting comparison free operators" "\n=================================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testComparisonOps(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testComparisonOps(); } break; case 19: { // -------------------------------------------------------------------- // TESTING SWAP // // Concerns and plan: // See testSwap for a list of specific concerns and a test plan. // // Testing: // void swap(list&); // void swap(list<T,A>& lhs, list<T,A>& rhs); // void swap(list<T,A>&& lhs, list<T,A>& rhs); // void swap(list<T,A>& lhs, list<T,A>&& rhs); // -------------------------------------------------------------------- if (verbose) printf("\nTesting 'swap'" "\n==============\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testSwap(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testSwap(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testSwap(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testSwap(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testSwap(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testSwap(); } break; case 18: { // -------------------------------------------------------------------- // TESTING ERASE // // Concerns and plan: // See testErase for a list of specific concerns and a test plan. // // Testing: // iterator erase(const_iterator position); // iterator erase(const_iterator first, const_iterator last); // void pop_back(); // void pop_front(); // -------------------------------------------------------------------- if (verbose) printf("\nTesting 'erase' and 'pop_back'" "\n==============================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testErase(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testErase(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testErase(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testErase(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testErase(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testErase(); } break; case 17: { // -------------------------------------------------------------------- // TESTING INSERTION // // Concerns and plan: // See testInsert for a list of specific concerns and a test plan. // // Testing: // void push_back(const T& value); // void push_front(const T& value); // iterator insert(const_iterator position, const T& value); // void insert(const_iterator pos, size_type n, const T& val); // template <class InputIter> // void insert(const_iterator pos, InputIter first, InputIter last); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Value Insertion" "\n=======================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testInsert(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testInsert(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testInsert(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testInsert(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testInsert(); if (verbose) printf("\nTesting Emplace Insertion" "\n==========================\n"); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testEmplace(); // if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); // TestDriver<TOA>::testEmplace(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testEmplace(); // if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" // " 'OtherAlloc'.\n"); // TestDriver<TOA,OATOA>::testEmplace(); if (verbose) printf("\nTesting Range Insertion" "\n=======================\n"); if (verbose) printf("\n... with 'TestType' " "and arbitrary forward iterator.\n"); TestDriver<T>::testInsertRange(InputSeq<T>()); if (verbose) printf("\n... with 'TestType' " "and arbitrary random-access iterator.\n"); TestDriver<T>::testInsertRange(RandSeq<T>()); if (verbose) printf("\n... with 'TestTypeOtherAlloc' " "and arbitrary input iterator.\n"); TestDriver<TOA>::testInsertRange(InputSeq<TOA>()); if (verbose) printf("\n... with 'TestType', 'OtherAlloc', " "and arbitrary input iterator.\n"); TestDriver<T,OAT>::testInsertRange(InputSeq<T>()); if (verbose) printf("\n... with 'TestTypeOtherAlloc', 'OtherAlloc', " "and arbitrary input iterator.\n"); TestDriver<TOA,OATOA>::testInsertRange(InputSeq<TOA>()); } break; case 16: { // -------------------------------------------------------------------- // TESTING ITERATORS // // Concerns and plan: // See testIterators for a list of specific concerns and a test plan. // // Testing: // iterator begin(); // iterator end(); // reverse_iterator rbegin(); // reverse_iterator rend(); // const_iterator begin() const; // const_iterator end() const; // const_reverse_iterator rbegin() const; // const_reverse_iterator rend() const; // -------------------------------------------------------------------- if (verbose) printf("\nTesting Iterators" "\n=================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testIterators(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testIterators(); } break; case 15: { // -------------------------------------------------------------------- // TESTING ELEMENT ACCESS // // Testing: // T& front(); // T& back(); // const T& front() const; // const T& back() const; // -------------------------------------------------------------------- if (verbose) printf("\nTesting Element Access" "\n======================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testElementAccess(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testElementAccess(); } break; case 14: { // -------------------------------------------------------------------- // TESTING resize AND max_size // // Concerns: // 1. For 'max_size', the reported value is no more than one less // than the maximum allowed by the allocator. // 2. For 'max_size', the allocator's 'max_size' is honored. // 3. For 'resize', see 'testResize' for a list of concerns and plan. // // Plan: // Using the default allocator, test that 'max_size' returns a value // no larger than all of memory divided by the size of one element. // Repeat this test with 'char' and TestType' element types. Using // the 'LimitAllocator', test that 'max_size' returns the same value // as 'LimitAllocator<T>::max_size()', except that a node of // overhead is allowed to be subtracted from the result. // // For 'resize', call 'testResize()' with different combinations of // element types and allocator types. See 'testResize' for details. // // Testing: // void resize(size_type sz); // void resize(size_type sz, T val); // size_type max_size() const; // -------------------------------------------------------------------- if (verbose) printf("\nTesting 'resize' and 'max_size'" "\n===============================\n"); if (verbose) printf("\n... with 'char'.\n"); { list<char> X; ASSERT(~(size_t)0 / sizeof(char) >= X.max_size()); } if (verbose) printf("\n... with 'TestType'.\n"); { list<TestType> X; ASSERT(~(size_t)0 / sizeof(TestType) >= X.max_size()); } if (verbose) printf("\n... with 'int' and 'LimitAllocator.\n"); { const int LIMIT = 10; typedef LimitAllocator<bsl::allocator<int> > LimA; LimA a; a.setMaxSize(LIMIT); list<int,LimA> X(a); // LimitAllocator will return the same 'max_size' regardless of the // type on which it is instantiated. Thus, it will report that it // can allocate the same number of nodes as 'int's. (This // behavior is not typical for an allocator, but works for this // test.) The 'list' should have no more than one node of // overhead. ASSERT(LIMIT >= (int) X.max_size()); ASSERT(LIMIT - 1 <= (int) X.max_size()); } if (verbose) printf("\nTesting 'resize'.\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testResize(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testResize(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testResize(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testResize(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testResize(); } break; case 13: { // -------------------------------------------------------------------- // TESTING ASSIGNMENT // // Concerns: // Specific concerns are listed in 'testAssign' and 'testAssignRange' // // Test plan: // Test with combinations of: // - Element type 'char', 'TestType', or 'TestTypeOtherAlloc' // - Allocator type 'bsl::allocator' or 'OtherAllocator' // - Random-access iterator range or input iterator range. // // Testing: // void assign(size_t n, const T& val); // template<class InputIter> // void assign(InputIter first, InputIter last); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Initial-Length Assignment" "\n=================================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testAssign(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testAssign(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testAssign(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testAssign(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testAssign(); if (verbose) printf("\nTesting Initial-Range Assignment" "\n================================\n"); if (verbose) printf("\n... with 'char' " "and arbitrary input iterator.\n"); TestDriver<char>::testAssignRange(InputSeq<char>()); if (verbose) printf("\n... with 'char' " "and arbitrary random-access iterator.\n"); TestDriver<char>::testAssignRange(RandSeq<char>()); if (verbose) printf("\n... with 'TestType' " "and arbitrary input iterator.\n"); TestDriver<T>::testAssignRange(InputSeq<T>()); if (verbose) printf("\n... with 'TestTypeOtherAlloc' " "and arbitrary input iterator.\n"); TestDriver<TOA>::testAssignRange(InputSeq<TOA>()); if (verbose) printf("\n... with 'TestType', 'OtherAlloc', " "and arbitrary input iterator.\n"); TestDriver<T,OAT>::testAssignRange(InputSeq<T>()); if (verbose) printf("\n... with 'TestTypeOtherAlloc', 'OtherAlloc', " "and arbitrary input iterator.\n"); TestDriver<TOA,OATOA>::testAssignRange(InputSeq<TOA>()); } break; case 12: { // -------------------------------------------------------------------- // TESTING CONSTRUCTORS // // Concerns: // Specific concerns are listed in 'testConstructor' and // 'testConstructorRange' // // Test plan: // Test with combinations of: // - Element type 'char', 'TestType', or 'TestTypeOtherAlloc' // - Allocator type 'bsl::allocator' or 'OtherAllocator' // - Random-access iterator range or input iterator range. // // Testing: // list<T,A>(size_type n, const T& val = T(), const A& a = A()); // template<class InputIter> // list<T,A>(InputIter first, InputIter last, const A& a = A()); // list(list<T,A>&& original); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Initial-Length Constructor" "\n==================================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testConstructor(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testConstructor(); if (verbose) printf("\n... with 'TestType and other allocator'.\n"); TestDriver<T,OAT>::testConstructor(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testConstructor(); if (verbose) printf("\n... with 'TestTypeOtherAlloc and other allocator'.\n"); TestDriver<TOA,OATOA>::testConstructor(); if (verbose) printf("\nTesting Initial-Range Constructor" "\n=================================\n"); if (verbose) printf("\n... with 'char' " "an arbitrary input iterator.\n"); TestDriver<char>::testConstructorRange(InputSeq<char>()); if (verbose) printf("\n... with 'char' " "an arbitrary random-access iterator.\n"); TestDriver<char>::testConstructorRange(RandSeq<char>()); if (verbose) printf("\n... with 'TestType' " "an arbitrary input iterator.\n"); TestDriver<T>::testConstructorRange(InputSeq<T>()); if (verbose) printf("\n... with 'TestType' " "an arbitrary random-access iterator.\n"); TestDriver<T>::testConstructorRange(RandSeq<T>()); if (verbose) printf("\n... with 'TestTypeOtherAlloc' " "an arbitrary input iterator.\n"); TestDriver<TOA>::testConstructorRange(InputSeq<TOA>()); if (verbose) printf("\n... with 'TestType', 'OtherAlloc', " "an arbitrary input iterator.\n"); TestDriver<T,OAT>::testConstructorRange(InputSeq<T>()); if (verbose) printf("\n... with 'TestTypeOtherAlloc' " "an arbitrary input iterator.\n"); TestDriver<TOA,OATOA>::testConstructorRange(InputSeq<TOA>()); } break; case 11: { // -------------------------------------------------------------------- // TESTING ALLOCATOR-RELATED CONCERNS // // Plan: // Call test driver case11 with the following combinations: // 1. Element type and list both use bslma_Allocator // 2. Element type uses bslma_Allocator, and list uses no-bslma // allocator type. // 3. Element type uses non-bslma allocator type, and list uses // bslma allocator type. // 4. Element type and list both use non-bslma allocator type. // -------------------------------------------------------------------- if (verbose) printf("\nTesting Allocator concerns" "\n==========================\n"); TestDriver<T>::testAllocator("T", "bslma"); TestDriver<T,OAT>::testAllocator("T", "OAT"); TestDriver<TOA>::testAllocator("TOA", "bslma"); TestDriver<TOA,OATOA>::testAllocator("TOA", "OATOA"); } break; case 10: { // -------------------------------------------------------------------- // TESTING STREAMING FUNCTIONALITY: // -------------------------------------------------------------------- if (verbose) printf("\nTesting Streaming Functionality" "\n===============================\n"); if (verbose) printf("There is no streaming for this component.\n"); } break; case 9: { // -------------------------------------------------------------------- // TESTING ASSIGNMENT OPERATOR: // // Concerns and plan: // Now that we can generate many values for our test objects, and // compare results of assignments, we can test the assignment // operator. This is achieved by the 'testAssignmentOp' class // method of the test driver template, instantiated for the basic // test type. See that function for a list of concerns and a test // plan. // // Testing: // Obj& operator=(const Obj& rhs); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Assignment Operator" "\n===========================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testAssignmentOp(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testAssignmentOp(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testAssignmentOp(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testAssignmentOp(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testAssignmentOp(); } break; case 8: { // -------------------------------------------------------------------- // TESTING GENERATOR FUNCTION, g: // // Concerns and plan: // Since 'g' is implemented almost entirely using 'gg', we need to // verify only that the arguments are properly forwarded, that 'g' // does not affect the test allocator, and that 'g' returns an // object by value. Because the generator is used for various types // in higher numbered test cases, we need to test it on all test // types. This is achieved by the 'testGeneratorG' class method of // the test driver template, instantiated for the basic test type. // See that function for a list of concerns and a test plan. // // Testing: // Obj g(const char *spec); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Generator Function g" "\n============================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testGeneratorG(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testGeneratorG(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testGeneratorG(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testGeneratorG(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testGeneratorG(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testGeneratorG(); } break; case 7: { // -------------------------------------------------------------------- // TESTING COPY CONSTRUCTOR: // // Concerns and plan: // Having now full confidence in 'operator==', we can use it // to test that copy constructors preserve the notion of // value. This is achieved by the 'testCopyCtor' class method of the // test driver template, instantiated for the basic test type. See // that function for a list of concerns and a test plan. // // Testing: // list(const list& original); // list(const list& original, alloc); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Copy Constructors" "\n=========================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testCopyCtor(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testCopyCtor(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testCopyCtor(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testCopyCtor(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testCopyCtor(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testCopyCtor(); } break; case 6: { // -------------------------------------------------------------------- // TESTING EQUALITY OPERATORS: // // Concerns and plan: // Since 'operators==' is implemented in terms of basic accessors, // it is sufficient to verify only that a difference in value of any // one basic accessor for any two given objects implies inequality. // However, to test that no other internal state information is // being considered, we want also to verify that 'operator==' reports // true when applied to any two objects whose internal // representations may be different yet still represent the same // (logical) value. This is achieved by the 'testEqualityOp' class // method of the test driver template, instantiated for the basic // test type. See that function for a list of concerns and a test // plan. // // Testing: // operator==(const Obj&, const Obj&); // operator!=(const Obj&, const Obj&); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Equality Operators" "\n==========================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testEqualityOp(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testEqualityOp(); } break; case 5: { // -------------------------------------------------------------------- // TESTING OUTPUT (<<) OPERATOR: // -------------------------------------------------------------------- if (verbose) printf("\nTesting Output (<<) Operator" "\n============================\n"); if (verbose) printf("There is no output operator for this component.\n"); } break; case 4: { // -------------------------------------------------------------------- // TESTING BASIC ACCESSORS: // // Plan: // Having implemented an effective generation mechanism, we now would // like to test thoroughly the basic accessor functions // - size() const // - begin() // - end() // - begin() const // - end() const // Also, we want to test the test utility functions: // - succ(const_iterator) // - nthElem(Obj, int) // // Testing: // int size() const; // iterator begin(); // iterator end(); // const_iterator begin() const; // const_iterator end() const; // -------------------------------------------------------------------- if (verbose) printf("\nTesting Basic Accessors" "\n=======================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testBasicAccessors(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testBasicAccessors(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testBasicAccessors(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testBasicAccessors(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testBasicAccessors(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testBasicAccessors(); } break; case 3: { // -------------------------------------------------------------------- // TESTING GENERATOR FUNCTIONS // // Concerns and plan: // This is achieved by the 'testGeneratorGG' class method of the test // driver template, instantiated for the basic test type. See that // function for a list of concerns and a test plan. // // Testing: // void ggg(Obj *object, const char *spec); // Obj& gg(Obj *object, const char *spec, ); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Generator Functions" "\n===========================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testGeneratorGG(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testGeneratorGG(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testGeneratorGG(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testGeneratorGG(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testGeneratorGG(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testGeneratorGG(); } break; case 2: { // -------------------------------------------------------------------- // TESTING PRIMARY MANIPULATORS (BOOTSTRAP): // // Concerns and plan: // We want to ensure that the primary manipulators // - push_back (black-box) // - clear (white-box) // operate as expected. This is achieved by the // 'testPrimaryManipulators' class method of the test driver // template, instantiated for the basic test type. See that // function for a list of concerns and a test plan. // // Testing: // void push_back(T const& v); // void clear(); // -------------------------------------------------------------------- if (verbose) printf("\nTesting Primary Manipulators" "\n============================\n"); if (verbose) printf("\n... with 'char'.\n"); TestDriver<char>::testPrimaryManipulators(); if (verbose) printf("\n... with 'TestType'.\n"); TestDriver<T>::testPrimaryManipulators(); if (verbose) printf("\n... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::testPrimaryManipulators(); if (verbose) printf("\n... with 'TestTypeOtherAlloc'.\n"); TestDriver<TOA>::testPrimaryManipulators(); if (verbose) printf("\n... with 'TestType' and 'OtherAlloc'.\n"); TestDriver<T,OAT>::testPrimaryManipulators(); if (verbose) printf("\n... with 'TestTypeOtherAlloc' and" " 'OtherAlloc'.\n"); TestDriver<TOA,OATOA>::testPrimaryManipulators(); } break; case 1: { // -------------------------------------------------------------------- // BREATHING TEST: // // Plan: // We want to exercise basic value-semantic functionality. This is // achieved by the 'breathingTest' class method of the test driver // template, instantiated for a few basic test types. See that // function for a list of concerns and a test plan. In addition, we // want to make sure that we can use any standard-compliant // allocator, including not necessarily rebound to the same type as // the contained element, and that various manipulators and accessors // work as expected in normal operation. // // Testing: // This "test" *exercises* basic functionality. // -------------------------------------------------------------------- if (verbose) printf("\nBREATHING TEST" "\n==============\n"); if (verbose) printf("\nStandard value-semantic test.\n"); if (verbose) printf("\n\t... with 'char' type.\n"); TestDriver<char>::breathingTest(); if (verbose) printf("\n\t... with 'TestType'.\n"); TestDriver<T>::breathingTest(); if (verbose) printf("\n\t... with 'TestTypeNoAlloc'.\n"); TestDriver<TNA>::breathingTest(); if (verbose) printf("\nAdditional tests: allocators.\n"); bslma::TestAllocator testAllocator(veryVeryVerbose); bsl::allocator<int> zza(&testAllocator); // Disabled: we disabled this very infrequent usage for list (it will // be flagged by 'BSLMF_ASSERT'), which is illegal as of C++0x anyway: //.. // list<int, bsl::allocator<void*> > zz1, zz2(zza); //.. if (verbose) printf("\nAdditional tests: misc.\n"); list<char> myLst(5, 'a'); list<char>::const_iterator citer; ASSERT(5 == myLst.size()); for (citer = myLst.begin(); citer != myLst.end(); ++citer) { ASSERT('a' == *citer); } if (verbose) P(myLst); myLst.insert(myLst.begin(), 'z'); ASSERT(6 == myLst.size()); ASSERT('z' == myLst.front()); for (citer = ++myLst.begin(); citer != myLst.end(); ++citer) { ASSERT('a' == *citer); } if (verbose) P(myLst); myLst.erase(succ(myLst.begin(),2), succ(myLst.begin(),4)); ASSERT(4 == myLst.size()); ASSERT('z' == myLst.front()); for (citer = succ(myLst.begin()); citer != myLst.end(); ++citer) { ASSERT('a' == *citer); } if (verbose) P(myLst); list<list<char> > vv; vv.push_front(myLst); if (verbose) P(myLst); if (verbose) printf("\nAdditional tests: traits.\n"); ASSERT( bslmf::IsBitwiseMoveable<list<char> >::value); ASSERT( bslmf::IsBitwiseMoveable<list<T> >::value); ASSERT( bslmf::IsBitwiseMoveable<list<list<int> > >::value); ASSERT(! bsl::is_trivially_copyable<list<char> >::value); ASSERT(! bsl::is_trivially_copyable<list<T> >::value); ASSERT(! bsl::is_trivially_copyable<list<list<int> > >::value); } break; case -1: { // This test is used to verify various list constructors do not require // copy-assignable value type as its (template parameter) type 'VALUE'. bsltf::NonAssignableTestType value(1); list<bsltf::NonAssignableTestType> firstList(20, value); list<bsltf::NonAssignableTestType> secondList(firstList); list<bsltf::NonAssignableTestType> thirdList(firstList.begin(), firstList.end()); } default: { fprintf(stderr, "WARNING: CASE `%d' NOT FOUND.\n", test); testStatus = -1; } } bslma::Default::setGlobalAllocator(originalGlobalAllocator); if (testStatus > 0) { fprintf(stderr, "Error, non-zero test status = %d.\n", testStatus); } return testStatus; } // ---------------------------------------------------------------------------- // Copyright 2013 Bloomberg Finance L.P. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // ----------------------------- END-OF-FILE ----------------------------------
21e61f4c3068f2778550bafc9161e6ea2973fb1e
6a6193dc6dc8a49cf92846d8011c1f37c7c1fb48
/src/runtime/ssp.cpp
87b8efd4485988750ba093c46998bbb94c2c1715
[ "MIT" ]
permissive
StanfordAHA/Halide-to-Hardware
ac10c68fea5a295a8556284bec67dbd1ab8feffc
135c5da2587e6f6b17b2e9352a456a645367ad4e
refs/heads/master
2023-08-31T07:00:40.869746
2021-10-20T19:16:51
2021-10-20T19:17:08
167,240,813
76
14
NOASSERTION
2023-09-06T00:09:25
2019-01-23T19:25:20
C++
UTF-8
C++
false
false
504
cpp
ssp.cpp
#include "HalideRuntime.h" #include "runtime_internal.h" // LLVM sometimes likes to generate calls to a stack smashing // protector, but some build environments (e.g. native client), don't // provide libssp reliably. We define two weak symbols here to help // things along. extern "C" { WEAK char *__stack_chk_guard = (char *)(0xdeadbeef); WEAK void __stack_chk_fail() { halide_error(NULL, "Memory error: stack smashing protector changed!\n"); Halide::Runtime::Internal::halide_abort(); } }
9b51756843c4b2a0af1fe2c73f4a09b3c34b1ab5
0574237636f4d9ee0099f77c79adf182ce69419d
/TopCoder/EllysReversals.cpp
46dde9ee51838fd1fe5d3f76aa214a8086ba5fe2
[]
no_license
andreicoman11/code
77359bccd7cc451d6db5edbfea9b2bf81f44250f
c0e318e7c7e192f1d90e82e2468344b6a27a310f
refs/heads/master
2020-05-27T05:08:22.332100
2014-12-19T01:39:41
2014-12-19T01:39:41
28,082,193
4
0
null
null
null
null
UTF-8
C++
false
false
7,614
cpp
EllysReversals.cpp
// BEGIN CUT HERE // PROBLEM STATEMENT // Elly has a list of several distinct strings given in the // vector <string> words. She can apply the following // operation as many times as she wants (including zero times): // // Choose one of the words and call it S. // Choose an even number k between 2 and |S|, inclusive, // where |S| is the length of S (thus, chose a prefix with // even length). // Reverse the order of the first k characters of S (thus, // reverse the chosen prefix without the rest of the word). // // For example, if she has the word "topcoder", she can // reverse its first 2, 4, 6, or all 8 characters. If she // chooses to reverse its first 4 characters, the change will // be: "topcoder" -> "cpotoder". If at a later time she // decides to chose the same string and reverse all of its // characters (which is also a valid prefix with even // length), she would get "cpotoder"->"redotopc". // // After performing some operations two strings might become // equal. If that happens, Elly crosses them out and // continues playing her game with the remaining strings // only, i.e. they "disappear" from the list. The girl // wonders what is the minimal number of strings she can end // up with. // // For example, suppose she has the strings {"esprit", "god", // "redotopc", "odcpoter", "dog"}. The word "redotopc" can be // converted to "topcoder" by first reversing all 8 // characters and then reversing the first 4. The word // "odcpoter" can also be converted to "topcoder" by // performing "odcpoter" -> "docpoter" -> "topcoder". At that // point the words become equal and disappear, leaving Elly // only with {"esprit", "god", "dog"}. This is where she gets // stuck: The words "god" and "dog" cannot become equal, // because she can only reverse prefixes with even length. // Thus, the minimal number of words she can get is 3. // // Given her initial strings in vector <string> words, return // an int indicating the minimal number of strings she can be // left with. // // DEFINITION // Class:EllysReversals // Method:getMin // Parameters:vector <string> // Returns:int // Method signature:int getMin(vector <string> words) // // // CONSTRAINTS // -words will contain between 1 and 50 elements, inclusive. // -Each element of words will contain between 1 and 50 // characters, inclusive. // -Each element of words will consist only of lowercase // letters of the English alphabet ('a'-'z'). // -All elements of words will be distinct. // // // EXAMPLES // // 0) // {"esprit", "god", "redotopc", "odcpoter", "dog"} // // Returns: 3 // // The example from the problem statement. // // 1) // {"no", "zaphod", "just", "very", "improbable"} // // Returns: 5 // // It is possible that she cannot get rid of any of the words. // // 2) // {"rats", "live", "stressed", "to", "act", "as", "star", // "desserts", "of", "evil", "cat", "sa", "fo", "ot"} // // Returns: 0 // // It is possible that she ends up with zero words. // // 3) // {"topcoder", "redocpot", "doretopc", "cpotdoer", // "harlemshake"} // // Returns: 1 // // Sometimes it is possible to match different words when // using a different sequence of operations. // // 4) // {"iprlzgukfggzg", "bmhxvjbrtkbxy", "khapjiabbny", // "nqlwgmcyvdikt", // "nxromtvtpug", "leealcapovm", "ushnxwjczczbmd", // "bwhykzupcux", // "xrlboyuwlnsp", "bbjoketeheezfs", "dxfztrldomjqkv", // "dkbktqdtgfujcut", // "zfybzyuxgpnt", "ffmsldrdftode", "vopuufksxd", // "pqhbsiujwda", // "yhwbkzupcux", "hkbabnapjiy", "zqsqefrrzehtxn", // "yovinyguyudmv"} // // Returns: 16 // // // // END CUT HERE #include <iostream> #include <sstream> #include <cstring> #include <cstdlib> #include <string> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <stack> #include <list> #include <set> #include <map> using namespace std; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<string> VS; #define LL long long #define pb push_back #define sz size() class EllysReversals { // BEGIN CUT HERE public: void run_test(int Case) { if ((Case == -1) || (Case == 0)) test_case_0(); if ((Case == -1) || (Case == 1)) test_case_1(); if ((Case == -1) || (Case == 2)) test_case_2(); if ((Case == -1) || (Case == 3)) test_case_3(); if ((Case == -1) || (Case == 4)) test_case_4(); } private: template <typename T> string print_array(const vector<T> &V) { ostringstream os; os << "{ "; for (typename vector<T>::const_iterator iter = V.begin(); iter != V.end(); ++iter) os << '\"' << *iter << "\","; os << " }"; return os.str(); } void verify_case(int Case, const int &Expected, const int &Received) { cerr << "Test Case #" << Case << "..."; if (Expected == Received) cerr << "PASSED" << endl; else { cerr << "FAILED" << endl; cerr << "\tExpected: \"" << Expected << '\"' << endl; cerr << "\tReceived: \"" << Received << '\"' << endl; } } void test_case_0() { string Arr0[] = {"esprit", "god", "redotopc", "odcpoter", "dog"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arg1 = 3; verify_case(0, Arg1, getMin(Arg0)); } void test_case_1() { string Arr0[] = {"no", "zaphod", "just", "very", "improbable"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arg1 = 5; verify_case(1, Arg1, getMin(Arg0)); } void test_case_2() { string Arr0[] = {"rats", "live", "stressed", "to", "act", "as", "star", "desserts", "of", "evil", "cat", "sa", "fo", "ot"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arg1 = 0; verify_case(2, Arg1, getMin(Arg0)); } void test_case_3() { string Arr0[] = {"topcoder", "redocpot", "doretopc", "cpotdoer", "harlemshake"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arg1 = 1; verify_case(3, Arg1, getMin(Arg0)); } void test_case_4() { string Arr0[] = {"iprlzgukfggzg", "bmhxvjbrtkbxy", "khapjiabbny", "nqlwgmcyvdikt", "nxromtvtpug", "leealcapovm", "ushnxwjczczbmd", "bwhykzupcux", "xrlboyuwlnsp", "bbjoketeheezfs", "dxfztrldomjqkv", "dkbktqdtgfujcut", "zfybzyuxgpnt", "ffmsldrdftode", "vopuufksxd", "pqhbsiujwda", "yhwbkzupcux", "hkbabnapjiy", "zqsqefrrzehtxn", "yovinyguyudmv"}; vector <string> Arg0(Arr0, Arr0 + (sizeof(Arr0) / sizeof(Arr0[0]))); int Arg1 = 16; verify_case(4, Arg1, getMin(Arg0)); } // END CUT HERE public: int getMin(vector <string> w) { int n = w.size(); vector<bool> hasm(n); for(int i=0; i<w.size(); i++) if( hasm[i]==0 ) for(int j=i+1; j<w.size(); j++) if( hasm[j]==0 ) { if( w[i].size()!=w[j].size() ) continue; if( w[i].size()%2 && w[i][w[i].size()-1]!=w[j][w[j].size()-1] ) continue; map<string, int> m; for(int k=0; k<w[i].size()-1; k+=2) { string aux = w[i].substr(k, 2); sort(aux.begin(), aux.end()); m[ aux ]++; } for(int k=0; k<w[i].size()-1; k+=2) { string aux = w[j].substr(k, 2); sort(aux.begin(), aux.end()); m[ aux ]--; } bool ok = 1; for(map<string,int>::iterator it=m.begin(); it!=m.end(); it++) if( it->second!=0 ) ok = 0; if( ok ) { hasm[i] = hasm[j] = 1; break; } } int res = 0; for(int i=0; i<n; i++) res += (hasm[i]==0); return res; } }; // BEGIN CUT HERE int main() { EllysReversals ___test; ___test.run_test(-1); } // END CUT HERE
94876d32ee88317f4a0ca004b8fbd22331390a99
604964b710c03370521ec72f1519d554826cd73e
/software/watch1/app_watch1.cpp
5eee15153105f2c95d07e99fcbc47b08da7b6e40
[]
no_license
jterweeme/digitalwatch
636fc2d657917ab327af0b667b6df561c5c1f959
72896e43f0e998b4c2de6214a0a037e37e9ac4cd
refs/heads/master
2021-01-01T18:29:59.750018
2014-06-30T17:19:34
2014-06-30T17:19:34
17,646,651
1
1
null
null
null
null
UTF-8
C++
false
false
7,878
cpp
app_watch1.cpp
/* 2014 Jasper ter Weeme A simple digital watch displays the time of day. Setting of the time is achieved by two buttons. Button #1 will switch from displaying time mode to increment hours mode. In this mode the hours flash and pressing button #2 will increment the hours each time it is pressed. Further pressing of button #1 switches to increment minutes mode. Button #2 functions in the same way as before. If button #1 is pressed again the watch returns to display time mode. Time is not kept whilst being set. */ #include "misc.h" #include <system.h> #include <stdint.h> #include <sys/alt_irq.h> class IWatch { public: virtual void timerTick() = 0; virtual void nextMode() = 0; virtual void increment() = 0; virtual Leds *getLeds() = 0; virtual Uart *getUart() = 0; virtual RTC *getRTC() = 0; virtual TimeDisplay *getTimeDisplay() = 0; virtual ~IWatch() { } }; class AbstractMode { protected: IWatch *context; public: const uint8_t id; AbstractMode(IWatch *context, const uint8_t id) : context(context), id(id) { } virtual void init() { } virtual void increase() {} virtual void timerTick() {} virtual ~AbstractMode() { } }; class DisplayTimeMode : public AbstractMode { public: static const uint8_t ID = 1; DisplayTimeMode(IWatch *context) : AbstractMode(context, ID) { } void init(); void timerTick(); }; class IncrementHoursMode : public AbstractMode { public: static const uint8_t ID = 2; IncrementHoursMode(IWatch *context) : AbstractMode(context, ID) { } void init(); void increase(); }; class IncrementMinutesMode : public AbstractMode { public: static const uint8_t ID = 3; IncrementMinutesMode(IWatch *context) : AbstractMode(context, ID) { } void init(); void increase(); }; class TimerTick : public Observer { IWatch *watch; public: TimerTick(IWatch *watch) : watch(watch) { } void update() { watch->timerTick(); } }; class ButtonS4Action : public Observer { IWatch *watch; public: ButtonS4Action(IWatch *watch) : watch(watch) { } void update() { watch->nextMode(); } }; class ButtonS5Action : public Observer { IWatch *watch; public: ButtonS5Action(IWatch *watch) : watch(watch) { } void update() { watch->increment(); } }; class FallBackRTC : public RTC { ds1302_struct rtc; public: static FallBackRTC *getInstance(); void update(); void incrementMinutes(); void incrementHours(); TimeStamp getTimeStamp() { return TimeStamp(rtc); } }; class RTCFactory { volatile void * const ds1302_base; I2CBus * const i2cBus; public: RTCFactory(); RTCFactory(volatile void * const ds1302_base); RTCFactory(volatile void * const ds1302_base, I2CBus * const i2cBus); RTC *createRTC(); }; class Watch : public IWatch { Uart uart; JtagUart jtagUart; Leds leds; Buttons buttons; I2CBus i2cBus; TimeDisplay segDisplay; Timer timer; RTC *rtc; Terminal *debugger; DisplayTimeMode dtm; IncrementHoursMode ihm; IncrementMinutesMode imm; AbstractMode *mode2; TimerTick tt; ButtonS4Action a4; ButtonS5Action a5; public: Watch(); TimeDisplay *getTimeDisplay() { return &segDisplay; } Leds *getLeds() { return &leds; } RTC *getRTC() { return rtc; } Uart *getUart() { return &uart; } Terminal *getDebugger() { return debugger; } void nextMode(); void increment() { mode2->increase(); } void timerTick() { mode2->timerTick(); } }; Watch::Watch() : uart((uint32_t *)UART_0_BASE), jtagUart((uint32_t *)JTAG_UART_0_BASE), #ifdef LEDS_BASE leds((uint8_t *)LEDS_BASE), #endif buttons((void *)BUTTONS_BASE, BUTTONS_IRQ_INTERRUPT_CONTROLLER_ID, BUTTONS_IRQ), i2cBus((void *)I2CBUS_0_BASE), #ifdef SEGDISPLAY_BASE segDisplay((uint32_t *)SEGDISPLAY_BASE), #endif timer((void *)TIMER_0_BASE, TIMER_0_IRQ_INTERRUPT_CONTROLLER_ID, TIMER_0_IRQ), debugger(&uart), dtm(this), ihm(this), imm(this), mode2(&dtm), tt(this), a4(this), a5(this) { mode2->init(); debugger->puts("Initializing Digital Watch...\r\n"); RTCFactory rtcFactory((void *)DS1302_BASE); rtc = rtcFactory.createRTC(); buttons.setObserver(&a4, 4); buttons.setObserver(&a5, 5); timer.setObserver(&tt); } RTCFactory::RTCFactory() : ds1302_base(0), i2cBus(0) { } RTCFactory::RTCFactory(volatile void * const ds1302_base) : ds1302_base(ds1302_base), i2cBus(0) { } RTCFactory::RTCFactory(volatile void * const ds1302_base, I2CBus * const i2cBus) : ds1302_base(ds1302_base), i2cBus(i2cBus) { } FallBackRTC *FallBackRTC::getInstance() { Uart::getInstance()->puts("Get FallBackRTC instance\r\n"); static FallBackRTC instance; return &instance; } void FallBackRTC::incrementMinutes() { if (++rtc.Minutes > 9) { rtc.Minutes = 0; if (++rtc.Minutes10 > 5) rtc.Minutes10 = 0; } } void FallBackRTC::incrementHours() { if (rtc.h24.Hour10 >= 2 && rtc.h24.Hour >= 3) { rtc.h24.Hour10 = 0; rtc.h24.Hour = 0; } else if (rtc.h24.Hour++ >= 9) { rtc.h24.Hour = 0; rtc.h24.Hour10++; } } void FallBackRTC::update() { if (rtc.Seconds++ >= 9) { rtc.Seconds = 0; rtc.Seconds10++; } else return; if (rtc.Seconds10 > 5) { rtc.Seconds10 = 0; rtc.Minutes++; } else return; if (rtc.Minutes > 9) { rtc.Minutes = 0; rtc.Minutes10++; } else return; if (rtc.Minutes10 > 5) { rtc.Minutes10 = 0;; rtc.h24.Hour++; } else return; if (rtc.h24.Hour > 9) { rtc.h24.Hour = 0;; rtc.h24.Hour10++; } else return; if (rtc.h24.Hour10 == 2 && rtc.h24.Hour > 3) rtc.h24.Hour10 = rtc.h24.Hour = 0; } RTC *RTCFactory::createRTC() { Uart *uart = Uart::getInstance(); uart->puts("RTC Factory\r\n"); static DS1302 test(ds1302_base); test.update(); TimeStamp testStamp = test.getTimeStamp(); uart->puts(testStamp.toString()); PCF8563 pcf(i2cBus); pcf.update(); uint8_t sec = ((pcf.regs.vl_seconds >> 4) & 0x7); // + (pcf.regs.vl_seconds & 0xf); uart->printf("%x\r\n", sec); TimeStamp testStamp2 = pcf.getTimeStamp(); uart->puts(testStamp2.toString()); if (testStamp.getHour10() > 2) return FallBackRTC::getInstance(); return &test; } void DisplayTimeMode::init() { context->getLeds()->write(~1); context->getTimeDisplay()->blinkMask(0); } void IncrementMinutesMode::init() { context->getLeds()->write(~4); context->getTimeDisplay()->blinkMask(3); } void IncrementHoursMode::init() { context->getLeds()->write(~2); context->getTimeDisplay()->blinkMask(0x0c); } void IncrementHoursMode::increase() { RTC *rtc = context->getRTC(); rtc->incrementHours(); context->getTimeDisplay()->setTime(rtc->getTimeStamp()); } void IncrementMinutesMode::increase() { RTC *rtc = context->getRTC(); rtc->incrementMinutes(); context->getTimeDisplay()->setTime(rtc->getTimeStamp()); } void DisplayTimeMode::timerTick() { RTC *rtc = context->getRTC(); rtc->update(); TimeStamp ts = rtc->getTimeStamp(); context->getUart()->puts(ts.toString()); context->getTimeDisplay()->setTime(ts); } void Watch::nextMode() { switch (mode2->id) { case DisplayTimeMode::ID: mode2 = &ihm; mode2->init(); break; case IncrementHoursMode::ID: mode2 = &imm; mode2->init(); break; case IncrementMinutesMode::ID: mode2 = &dtm; mode2->init(); break; default: leds.write(0xff); break; } } int main() { Watch watch; while (true) { // wachten op interrupts } return 0; }
7af039ac67db4a83b8efb10530c88fffb7ba8a7d
3843a9367ee129eb2dccd2411fef840ba652c82d
/Database/movie.cpp
9dbfe4780f03ef2c2f0b968d23bf700ec5a15a50
[]
no_license
nouryehia/Database
a7458cf0ec15f40cdde6f9358a5f69c9412f2ca1
add4f6ac0deb9679547227993bc34b5b92331df5
refs/heads/master
2021-05-07T04:01:21.593041
2017-12-04T07:59:47
2017-12-04T07:59:47
111,067,728
0
0
null
null
null
null
UTF-8
C++
false
false
644
cpp
movie.cpp
//cpp class for movie class. #include "movie.h" movie::movie(char t[80], int y, char di[80], char du[80], double r) : media(t, y){ //constructor. strcpy(director, di); strcpy(duration, du); rating = r; type = 3; } char* movie::getDirector(){ // get director. return director; } char* movie::getDuration(){ //get duration. return duration; } double movie::getRating(){ //get rating. return rating; } void movie::printInfo(){ //print info. cout << endl << title << " (Movie)" << endl << "Year: " << year << endl << "Director: " << director << endl << "Duration: " << duration << endl << "Rating: " << rating << endl; }
0e85abf2a845e9992b9bf4fd35a8429563d7659a
082389d29e73a19668cf5c829e0059309203e320
/Before Novemeber 2017/Hackerearth/Untitled1.cpp
6942e0c45f9caef116b1adea2b179eb6ac182459
[]
no_license
aman955/Competitive-Coding
41674cd625e2d941332d77ed0832fbc09ecf898e
3feab59f254654a72ea6d0fba74c3f21eb710242
refs/heads/master
2021-05-10T20:25:22.604740
2018-02-15T15:24:58
2018-02-15T15:24:58
118,187,667
0
0
null
null
null
null
UTF-8
C++
false
false
494
cpp
Untitled1.cpp
#include<bits/stdc++.h> #include<vector> using namespace std; int main() { int n,low,high,i,x; cin>>n; int arr[n]; for(i=0;i<n;i++)cin>>arr[i]; vector<int> sum(n); sum[0]=arr[0]; for(i=1;i<n;i++) { sum[i]=sum[i-1]+arr[i]; } int q; cin>>q; while(q--) { cin>>x; if(x>sum[n-1]) { cout<<"-1"<<endl; continue; } { low=lower_bound(sum.begin(),sum.end(),x)-sum.begin()+1; cout << low "\n"; } } }
aa6a7f2c97a507653e594a06e7b62209ec44b5c0
d6ae8dc5bf9f94717a243aebd9572c1289661978
/[BOJ]1949/[BOJ]1949/Source.cpp
d880da72e96988df7ae133b03203a253a4c3fd6c
[]
no_license
jinbeomdev/daily-algorithm-problems
b3ffd98626861fe670b5c9778a88c110b4654b33
7b1155bc9e7ad48efa490b8f88fe6b599182ee93
refs/heads/master
2021-06-12T09:16:32.184753
2019-10-21T14:41:35
2019-10-21T14:41:35
91,214,514
0
0
null
null
null
null
UTF-8
C++
false
false
1,042
cpp
Source.cpp
#include <cstdio> #include <vector> #include <algorithm> using namespace std; int N; vector<int> residents; vector<vector<int>> tree; vector<bool> visited; vector<vector<int>> dp; int dfs(int root, bool check) { int& ret = dp[root][check]; if (ret != -1) return ret; ret = 0; if (check) { ret = residents[root]; } for (int i = 0; i < tree[root].size(); i++) { int next = tree[root][i]; if (!visited[next]) { visited[next] = true; if (check) { ret += dfs(next, false); } else { ret += max(dfs(next, true), dfs(next, false)); } visited[next] = false; } } return ret; } int main() { scanf("%d", &N); residents.resize(N + 1); tree.resize(N + 1); visited.resize(N + 1, false); dp.resize(N + 1, vector<int>(2, -1)); for (int i = 1; i <= N; i++) { scanf("%d", &residents[i]); } for (int i = 1; i < N; i++) { int a, b; scanf("%d%d", &a, &b); tree[a].push_back(b); tree[b].push_back(a); } visited[1] = true; int ret = max(dfs(1, false), dfs(1, true)); printf("%d", ret); }
e5b30f9463cc9cd581bfc899425d2db6a289ec1f
ad74dca1a5bf761e3895a229e7778e6fe1fe7d56
/svrbase/SvrBase/libuv/include/UvUtil.h
68782ee9158d9fb54d09340aa977d9a0dd3fdda0
[]
no_license
lightjia/SvrBase
1530c754c5c96f36f3de2d0e621aafd6dacf22fb
fcb0516b7b00e1dab30e73d9b62b196b469e1eac
refs/heads/master
2020-04-11T14:35:11.655135
2019-07-09T07:50:40
2019-07-09T07:50:40
161,860,476
1
2
null
null
null
null
UTF-8
C++
false
false
1,712
h
UvUtil.h
#ifndef __CUVUTIL__H_ #define __CUVUTIL__H_ #include "singleton.h" #include "uv.h" #include "util.h" class CUvUtil : public CSingleton<CUvUtil>{ SINGLE_CLASS_INITIAL(CUvUtil); public: ~CUvUtil(); public: unsigned int UvVersion(); const char* UvVersionStr(); uv_pid_t GetPid(); uv_pid_t GetPpid(); std::string GetProcessTitle(); int SetProcessTitle(const char* title); size_t GetProcessLimitMemory(); uint64_t GetFreeMemory(); uint64_t GetTotalMemory(); int GetrUsage(uv_rusage_t* rusage); uint64_t GetHrTime(); double GetProcessUptime(); int ChDir(const char* dir); uv_os_fd_t GetOsFHandle(int iFd); int GetPasswd(uv_passwd_t* pwd); void FreePasswd(uv_passwd_t* pwd); int GetCpuInfo(uv_cpu_info_t** cpu_infos, int* count); void FreeCpuInfo(uv_cpu_info_t* cpu_infos, int count); int GetInterfaceAddr(uv_interface_address_t** addresses, int* count); void FreeInterfaceAddr(uv_interface_address_t* addresses, int count); std::string GetOsHomeDir(); std::string GetTmpDir(); std::string GetHostName(); std::string GetExePath(); std::string GetCwd(); std::string GetEnv(const char* name); int SetEnv(const char* name, const char* value); int UnSetEnv(const char* name); int Ip4Addr(const char* ip, int port, struct sockaddr_in* addr); int Ip6Addr(const char* ip, int port, struct sockaddr_in6* addr); std::string Ip4Name(const struct sockaddr_in* src); std::string Ip6Name(const struct sockaddr_in6* src); int InetNtop(int af, const void* src, char* dst, size_t size); int InetPton(int af, const char* src, void* dst); }; #define sUvUtil CUvUtil::Instance() #endif
39fd42515bd9a1a766bb98ac78bd97a515a9d9ef
916efa72e6615578dc82c75eb125dc944dd9cd89
/arduino_sketch/arduino_sketch.ino
0cd0823d1d07ffdba60ae335592e26880a5d7caa
[ "MIT" ]
permissive
attentec/jenkins_traffic_light
1efb16c2aca517e283a42f41fc2f3719607ae2e6
902816800c6466ab6bcd40f5f1666d3ea473775e
refs/heads/master
2021-01-19T07:20:51.154116
2017-10-13T14:08:26
2017-10-13T14:08:26
87,537,875
2
0
null
null
null
null
UTF-8
C++
false
false
2,621
ino
arduino_sketch.ino
#include <Adafruit_NeoPixel.h> #include "declaration_workaround.h" #define COMMAND_MASK 0xc0 #define COMMAND_OFFSET 6 #define DATA_MASK 0x3f #define BUILDINFO_STATUS_MASK 0x03 #define BUILDINFO_BUILDING_MASK 0x04 #define HISTORY_SIZE 30 Adafruit_NeoPixel pixels = Adafruit_NeoPixel(HISTORY_SIZE, 7, NEO_GRB + NEO_KHZ800); Status history[HISTORY_SIZE]; char progress; char building; unsigned long lastFrameTime; void setup() { Serial.begin(115200); for (int i = 0; i < HISTORY_SIZE; i++) history[i] = STATUS_OK; history[0] = STATUS_FAILURE; building = 0; progress = 0; lastFrameTime = millis(); pixels.begin(); } void serialEvent(){ while (Serial.available()) { char c = (char)Serial.read(); enum Command cmd = (enum Command)((c & COMMAND_MASK) >> COMMAND_OFFSET); int data = c & DATA_MASK; switch (cmd) { case COMMAND_NEW_BUILD: for (int i = HISTORY_SIZE - 2; i >= 0; i--) history[i + 1] = history[i]; history[0] = (enum Status)(data & BUILDINFO_STATUS_MASK); building = !!(data & BUILDINFO_BUILDING_MASK); progress = 0; break; case COMMAND_PROGRESS: progress = data; break; case COMMAND_MODE: break; case COMMAND_BUILD_DONE: building = 0; history[0] = (enum Status)(data & BUILDINFO_STATUS_MASK); break; } Serial.write(c); } } void loop() { unsigned long newTime = millis(); if (newTime - lastFrameTime > 20) { renderLastBuild(newTime); renderHistory(newTime); pixels.show(); lastFrameTime = newTime; } } uint32_t getColor(enum Status status, uint8_t s) { return status == STATUS_UNKNOWN ? Adafruit_NeoPixel::Color(0, 0, 0) : status == STATUS_OK ? Adafruit_NeoPixel::Color(0, s, 0) : status == STATUS_IFFY ? Adafruit_NeoPixel::Color(s, s, 0) : status == STATUS_FAILURE ? Adafruit_NeoPixel::Color(s, 0, 0) : Adafruit_NeoPixel::Color(0, 0, s); // Should never happen } void renderLastBuild(unsigned long time) { unsigned long animationState = time % 3000; uint8_t s = (255 * animationState) / 3000; if (s <= 128) { // ramp up s = min(255, 2 * s); } else { // ramp down s = 255 - 2 * s; } enum Status status = history[0]; uint32_t color = getColor(status, s); pixels.setPixelColor(0, color); } void renderHistory(unsigned long time) { for (int i = 1; i < HISTORY_SIZE; i++) { enum Status status = history[i]; uint8_t s = 180; uint32_t color = getColor(status, s); pixels.setPixelColor(i, color); } }
0a3e71932e8b420fa2f182c191440789e555c689
4c1dfcfaf2bcbfd3519620556288783c068ea514
/nwol/label.cpp
c973846e06c6fb3bd8684ac920902619a14478ad
[ "MIT" ]
permissive
asm128/nwol
f3160cf00f3c0dd49a5b6094ee53d2da910b83f7
a28d6df356bec817393adcd2e6573a65841832e2
refs/heads/master
2022-03-08T15:49:30.780998
2022-02-18T04:34:51
2022-02-18T04:34:51
85,928,436
3
0
null
null
null
null
UTF-8
C++
false
false
3,469
cpp
label.cpp
/// Copyright 2016-2017 - asm128 //#pragma warning(disable:4005) #include "nwol_label.h" #include "nwol_label_manager.h" #include "stype.h" #include <string> //------------------------------------------------------------------- gsyslabel --------------------------------------------------------------------------------------------------------- nwol::gsyslabel::gsyslabel (const char_t* label, uint32_t size) { LabelManager = getSystemLabelManager(); error_if(errored(LabelManager->AddLabel(label, size, *this)), "Failed to store label!"); } //------------------------------------------------------------------- glabel --------------------------------------------------------------------------------------------------------- nwol::glabel::glabel (const char_t* label, uint32_t size) : LabelManager(getLabelManager()) { error_if(errored(LabelManager->AddLabel(label, size, *this)), "Failed to store label!"); } bool nwol::glabel::operator == (const nwol::glabel& other) const noexcept { if(Count != other.Count ) return false; else if(0 == Count && Count == other.Count ) return true; // Empty labels are always equal regardless the Data pointer else if(Data == other.Data ) return true; else if(LabelManager == other.LabelManager ) return false; else return 0 == memcmp(Data, other.Data, Count); } uint32_t nwol::glabel::save (byte_t* out_pMemoryBuffer) const { static constexpr const uint32_t headerBytes = (uint32_t)sizeof(uint32_t); const uint32_t arrayBytes = (uint32_t)(Count * sizeof(char_t)); if(out_pMemoryBuffer) { *(uint32_t*)out_pMemoryBuffer = Count; if(arrayBytes) ::memcpy(&out_pMemoryBuffer[headerBytes], Data, arrayBytes); } return headerBytes + arrayBytes; } ::nwol::error_t nwol::glabel::load (const byte_t* in_pMemoryBuffer) { ree_if(0 == in_pMemoryBuffer, "Cannot load label from a null pointer!"); const uint32_t headerBytes = (uint32_t)sizeof(uint32_t); const uint32_t labelSize = *(const uint32_t*)in_pMemoryBuffer; *this = labelSize ? ::nwol::glabel((const char_t*)&in_pMemoryBuffer[headerBytes], labelSize) : ::nwol::glabel::statics().empty; return headerBytes + labelSize; } ::nwol::error_t nwol::glabel::save (FILE* out_pMemoryBuffer) const { nwol_necall(sint32(Count).write(out_pMemoryBuffer), "Failed to write label to file! Label: '%s'.", begin()); if(Count) { ree_if(Count != (int32_t)fwrite(begin(), sizeof(char_t), Count, out_pMemoryBuffer), "Failed to write label to file! Label: '%s'.", begin()); } return 0; } ::nwol::error_t nwol::glabel::load (FILE* in_pMemoryBuffer) { sint32 labelSize = {}; nwol_necall(labelSize.read(in_pMemoryBuffer), "%s", "Failed to read label from file!"); if(labelSize) { ::nwol::auto_nwol_free a; a.Handle = (char_t*)::nwol::nwol_malloc(labelSize); ree_if(0 == a, "Failed to allocate memory for label of size %u.", (uint32_t)labelSize); if(labelSize != (int32_t)fread(a, sizeof(char_t), labelSize, in_pMemoryBuffer), "%s", "Failed to read label from file!") { error_printf("Failed to read from file label of size: %u bytes.", labelSize); *this = ::nwol::glabel::statics().empty; return -1; } *this = ::nwol::glabel((const char_t*)a.Handle, labelSize); } return 0; }
cea93b255250a0b4ddb30fa4e7b75380a43caefa
32e910f5440c10b384bb26b5555ac7adb77540ee
/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc
0c513cb01ecace5c20ada8063e67bc66602d4e69
[]
permissive
smartdevicelink/sdl_core
76658282fd85b16ed6d91d8d4087d8cd1353db76
7343fc72c12edc8ac42a62556c9e4b29c9408bc3
refs/heads/master
2022-11-04T12:17:58.725371
2022-10-26T15:34:13
2022-10-26T15:34:13
24,724,170
269
306
BSD-3-Clause
2022-10-26T15:34:15
2014-10-02T15:16:26
C++
UTF-8
C++
false
false
23,770
cc
resource_allocation_manager_impl.cc
/* Copyright (c) 2018, Ford Motor Company All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the copyright holders nor the names of their contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "rc_rpc_plugin/resource_allocation_manager_impl.h" #include "application_manager/application.h" #include "application_manager/application_manager.h" #include "application_manager/message_helper.h" #include "interfaces/HMI_API.h" #include "interfaces/MOBILE_API.h" #include "json/json.h" #include "rc_rpc_plugin/rc_helpers.h" #include "rc_rpc_plugin/rc_module_constants.h" #include "rc_rpc_plugin/rc_rpc_plugin.h" #include "smart_objects/enum_schema_item.h" #include "utils/helpers.h" namespace rc_rpc_plugin { SDL_CREATE_LOG_VARIABLE("RemoteControlModule") ResourceAllocationManagerImpl::ResourceAllocationManagerImpl( application_manager::ApplicationManager& app_mngr, application_manager::rpc_service::RPCService& rpc_service, RCCapabilitiesManager& rc_capabilities_manager) : current_access_mode_(hmi_apis::Common_RCAccessMode::AUTO_ALLOW) , app_mngr_(app_mngr) , rpc_service_(rpc_service) , rc_capabilities_manager_(rc_capabilities_manager) , is_rc_enabled_(true) {} ResourceAllocationManagerImpl::~ResourceAllocationManagerImpl() {} AcquireResult::eType ResourceAllocationManagerImpl::AcquireResource( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { SDL_LOG_AUTO_TRACE(); const application_manager::ApplicationSharedPtr acquiring_app = app_mngr_.application(app_id); if (!acquiring_app) { SDL_LOG_WARN("App with app_id: " << app_id << " does not exist!"); return AcquireResult::IN_USE; } ModuleUid module(module_type, module_id); if (rc_capabilities_manager_.IsSeatLocationCapabilityProvided() && !IsUserLocationValid(module, acquiring_app)) { SDL_LOG_WARN( "Resource acquisition is not allowed " "according to location verification."); return AcquireResult::REJECTED; } sync_primitives::AutoLock lock(allocated_resources_lock_); const AllocatedResources::const_iterator allocated_it = allocated_resources_.find(module); if (allocated_resources_.end() == allocated_it) { SDL_LOG_DEBUG("Resource is not acquired yet. " << "App: " << app_id << " is allowed to acquire " << module_type << " " << module_id); return AcquireResult::ALLOWED; } if (app_id == allocated_resources_[module]) { SDL_LOG_DEBUG("App: " << app_id << " is already acquired resource " << module_type << " " << module_id); return AcquireResult::ALLOWED; } if (IsModuleTypeRejected(module_type, module_id, app_id)) { SDL_LOG_DEBUG("Driver disallowed app: " << app_id << " to acquire " << module_type << " " << module_id); return AcquireResult::REJECTED; } const mobile_apis::HMILevel::eType acquiring_app_hmi_level = acquiring_app->hmi_level(mobile_apis::PredefinedWindows::DEFAULT_WINDOW); if (mobile_apis::HMILevel::HMI_FULL != acquiring_app_hmi_level) { SDL_LOG_DEBUG("Acquiring resources is not allowed in HMI level: " << acquiring_app_hmi_level << ". App: " << app_id << " is disallowed to acquire " << module_type << " " << module_id); return AcquireResult::REJECTED; } if (!rc_capabilities_manager_.IsMultipleAccessAllowed(module)) { SDL_LOG_DEBUG("Multiple access for the: " << module_type << " " << module_id << " isn't allowed"); return AcquireResult::REJECTED; } switch (current_access_mode_) { case hmi_apis::Common_RCAccessMode::AUTO_DENY: { SDL_LOG_DEBUG("Current access_mode is AUTO_DENY. " << "App: " << app_id << " is disallowed to acquire " << module_type << " " << module_id); return AcquireResult::IN_USE; } case hmi_apis::Common_RCAccessMode::ASK_DRIVER: { SDL_LOG_DEBUG( "Current access_mode is ASK_DRIVER. " "Driver confirmation is required for app: " << app_id << " to acquire " << module_type << " " << module_id); return AcquireResult::ASK_DRIVER; } case hmi_apis::Common_RCAccessMode::AUTO_ALLOW: { SDL_LOG_DEBUG("Current access_mode is AUTO_ALLOW. " << "App: " << app_id << " is allowed to acquire " << module_type << " " << module_id); return AcquireResult::ALLOWED; } default: { DCHECK_OR_RETURN(false, AcquireResult::IN_USE); } } } bool ResourceAllocationManagerImpl::IsUserLocationValid( ModuleUid& module, application_manager::ApplicationSharedPtr app) { SDL_LOG_AUTO_TRACE(); const auto extension = RCHelpers::GetRCExtension(*app); DCHECK_OR_RETURN(extension, false); const auto user_location = extension->GetUserLocation(); const auto module_service_area = rc_capabilities_manager_.GetModuleServiceArea(module); const auto driver = rc_capabilities_manager_.GetDriverLocationFromSeatLocationCapability(); const bool is_driver = user_location == driver; if (is_driver || user_location.IntersectionExists(module_service_area)) { return true; } SDL_LOG_DEBUG("User location is not valid"); return false; } void ResourceAllocationManagerImpl::ReleaseModuleType( const std::string& module_type, const uint32_t application_id) { SDL_LOG_AUTO_TRACE(); SDL_LOG_DEBUG("Release " << module_type << " " << " by " << application_id); Resources allocated_resources = GetAcquiredResources(application_id); for (const auto& resource : allocated_resources) { if (module_type == resource.first) { SetResourceFree(module_type, resource.second, application_id); } } } void ResourceAllocationManagerImpl::ProcessApplicationPolicyUpdate() { SDL_LOG_AUTO_TRACE(); Apps app_list = RCRPCPlugin::GetRCApplications(app_mngr_); Apps::const_iterator app = app_list.begin(); for (; app_list.end() != app; ++app) { application_manager::ApplicationSharedPtr app_ptr = *app; const uint32_t application_id = app_ptr->app_id(); std::set<std::string> acquired_modules = GetAcquiredModuleTypes(application_id); std::vector<std::string> allowed_modules; app_mngr_.GetPolicyHandler().GetModuleTypes((*app)->policy_app_id(), &allowed_modules); std::sort(allowed_modules.begin(), allowed_modules.end()); SDL_LOG_DEBUG("Acquired modules: " << acquired_modules.size() << " , allowed modules: " << allowed_modules.size()); std::vector<std::string> disallowed_modules; std::set_difference(acquired_modules.begin(), acquired_modules.end(), allowed_modules.begin(), allowed_modules.end(), std::back_inserter(disallowed_modules)); auto module = disallowed_modules.begin(); for (; disallowed_modules.end() != module; ++module) { ReleaseModuleType(*module, application_id); } if (!disallowed_modules.empty()) { SendOnRCStatusNotifications( NotificationTrigger::MODULE_ALLOCATION, std::shared_ptr<application_manager::Application>()); } } } template <typename EnumType> EnumType StringToEnum(const std::string& str) { using smart_objects::EnumConversionHelper; EnumType val; EnumConversionHelper<EnumType>::StringToEnum(str, &val); return val; } void ConstructOnRCStatusNotificationParams( smart_objects::SmartObject& msg_params, const std::map<ModuleUid, uint32_t>& allocated_resources, const std::vector<ModuleUid>& supported_resources, const uint32_t app_id) { namespace strings = application_manager::strings; namespace message_params = rc_rpc_plugin::message_params; using smart_objects::SmartObject; using smart_objects::SmartType_Array; using smart_objects::SmartType_Map; SDL_LOG_AUTO_TRACE(); auto modules_inserter = [](SmartObject& result_modules) { return [&result_modules](const ModuleUid& module) { smart_objects::SmartObject module_data = SmartObject(smart_objects::SmartType_Map); auto module_type = StringToEnum<mobile_apis::ModuleType::eType>(module.first); module_data[message_params::kModuleType] = module_type; module_data[message_params::kModuleId] = module.second; result_modules.asArray()->push_back(module_data); }; }; SmartObject allocated_modules = SmartObject(SmartType_Array); for (const auto& module : allocated_resources) { if (module.second == app_id) { modules_inserter(allocated_modules)(module.first); } } SmartObject free_modules = SmartObject(SmartType_Array); for (auto& module : supported_resources) { if (allocated_resources.find(module) == allocated_resources.end()) { modules_inserter(free_modules)(module); } } msg_params[message_params::kAllocatedModules] = allocated_modules; msg_params[message_params::kFreeModules] = free_modules; } smart_objects::SmartObjectSPtr ResourceAllocationManagerImpl::CreateOnRCStatusNotificationToMobile( const application_manager::ApplicationSharedPtr app) { SDL_LOG_AUTO_TRACE(); using application_manager::MessageHelper; auto msg_to_mobile = MessageHelper::CreateNotification( mobile_apis::FunctionID::OnRCStatusID, app->app_id()); auto& msg_params = (*msg_to_mobile)[application_manager::strings::msg_params]; if (is_rc_enabled()) { ConstructOnRCStatusNotificationParams( msg_params, allocated_resources_, rc_capabilities_manager_.GetResources(), app->app_id()); } else { msg_params[message_params::kAllocatedModules] = smart_objects::SmartObject(smart_objects::SmartType_Array); msg_params[message_params::kFreeModules] = smart_objects::SmartObject(smart_objects::SmartType_Array); } return msg_to_mobile; } smart_objects::SmartObjectSPtr ResourceAllocationManagerImpl::CreateOnRCStatusNotificationToHmi( const application_manager::ApplicationSharedPtr app) { SDL_LOG_AUTO_TRACE(); using application_manager::MessageHelper; auto msg_to_hmi = MessageHelper::CreateHMINotification(hmi_apis::FunctionID::RC_OnRCStatus); auto& msg_params = (*msg_to_hmi)[application_manager::strings::msg_params]; ConstructOnRCStatusNotificationParams(msg_params, allocated_resources_, rc_capabilities_manager_.GetResources(), app->app_id()); msg_params[application_manager::strings::app_id] = app->hmi_app_id(); return msg_to_hmi; } void ResourceAllocationManagerImpl::SendOnRCStatusNotifications( NotificationTrigger::eType event, application_manager::ApplicationSharedPtr application) { SDL_LOG_AUTO_TRACE(); smart_objects::SmartObjectSPtr msg_to_mobile; smart_objects::SmartObjectSPtr msg_to_hmi; if (NotificationTrigger::APP_REGISTRATION == event) { DCHECK(application); msg_to_mobile = CreateOnRCStatusNotificationToMobile(application); (*msg_to_mobile)[application_manager::strings::msg_params] [message_params::kAllowed] = is_rc_enabled(); rpc_service_.SendMessageToMobile(msg_to_mobile); } else { auto rc_apps = RCRPCPlugin::GetRCApplications(app_mngr_); for (const auto& rc_app : rc_apps) { msg_to_mobile = CreateOnRCStatusNotificationToMobile(rc_app); (*msg_to_mobile)[application_manager::strings::msg_params] [message_params::kAllowed] = is_rc_enabled(); rpc_service_.SendMessageToMobile(msg_to_mobile); msg_to_hmi = CreateOnRCStatusNotificationToHmi(rc_app); rpc_service_.SendMessageToHMI(msg_to_hmi); } } } bool ResourceAllocationManagerImpl::is_rc_enabled() const { return is_rc_enabled_; } void ResourceAllocationManagerImpl::set_rc_enabled(const bool value) { is_rc_enabled_ = value; SendOnRCStatusNotifications( NotificationTrigger::RC_STATE_CHANGING, std::shared_ptr<application_manager::Application>()); } ResourceReleasedState::eType ResourceAllocationManagerImpl::ReleaseResource( const std::string& module_type, const std::string& module_id, const uint32_t application_id) { SDL_LOG_AUTO_TRACE(); SDL_LOG_DEBUG("Release " << module_type << " " << module_id << " by " << application_id); return SetResourceFree(module_type, module_id, application_id); } void ResourceAllocationManagerImpl::SetResourceAcquired( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { SDL_LOG_AUTO_TRACE(); ModuleUid module(module_type, module_id); allocated_resources_[module] = app_id; } bool ResourceAllocationManagerImpl::IsResourceAlreadyAcquiredByApp( const ModuleUid& moduleUid, const uint32_t app_id) const { SDL_LOG_AUTO_TRACE(); auto allocation = allocated_resources_.find(moduleUid); if (allocated_resources_.end() == allocation) { SDL_LOG_DEBUG("Resource " << moduleUid.first << " is not allocated for any application."); return false; } if (allocation->second != app_id) { SDL_LOG_DEBUG("Resource " << moduleUid.first << " is already allocated by app:" << allocation->second << ". Acquire has been asked for app:" << app_id); return false; } SDL_LOG_DEBUG("Resource " << moduleUid.first << " is allocated by app:" << allocation->second); return true; } ResourceReleasedState::eType ResourceAllocationManagerImpl::SetResourceFree( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { ModuleUid module(module_type, module_id); AllocatedResources::const_iterator allocation = allocated_resources_.find(module); if (allocated_resources_.end() == allocation) { SDL_LOG_DEBUG("Resource " << module_type << " is not allocated."); return ResourceReleasedState::NOT_ALLOCATED; } if (app_id != allocation->second) { SDL_LOG_ERROR("Resource " << module_type << " is allocated by different application " << allocation->second); return ResourceReleasedState::IS_ALLOCATED; } allocated_resources_.erase(allocation); SDL_LOG_DEBUG("Resource " << module_type << ":" << module_id << " is released."); return ResourceReleasedState::IS_RELEASED; } std::vector<ModuleUid> ResourceAllocationManagerImpl::GetAcquiredResources( const uint32_t application_id) const { SDL_LOG_AUTO_TRACE(); Resources allocated_resources; AllocatedResources::const_iterator allocation = allocated_resources_.begin(); for (; allocated_resources_.end() != allocation; ++allocation) { if (application_id == allocation->second) { allocated_resources.push_back(allocation->first); } } SDL_LOG_DEBUG("Application " << application_id << " acquired " << allocated_resources.size() << " resource(s)."); return allocated_resources; } std::set<std::string> ResourceAllocationManagerImpl::GetAcquiredModuleTypes( const uint32_t application_id) const { SDL_LOG_AUTO_TRACE(); Resources allocated_resources = GetAcquiredResources(application_id); std::set<std::string> acquired_module_types; for (const auto& resource : allocated_resources) { acquired_module_types.insert(resource.first); } SDL_LOG_DEBUG("Application " << application_id << " acquired " << acquired_module_types.size() << " module type(s)."); return acquired_module_types; } void ResourceAllocationManagerImpl::SetResourceState( const std::string& module_type, const std::string& module_id, const uint32_t app_id, const ResourceState::eType state) { SDL_LOG_AUTO_TRACE(); SDL_LOG_DEBUG("Setting state for " << module_type << " by app_id " << app_id << " to state " << state); ModuleUid module(module_type, module_id); { sync_primitives::AutoLock lock(allocated_resources_lock_); const AllocatedResources::const_iterator allocated_it = allocated_resources_.find(module); const bool acquired = allocated_resources_.end() != allocated_it; if (acquired) { SDL_LOG_DEBUG("Resource " << module_type << " is already acquired." << " Owner application id is " << allocated_it->second << " Changing application id is " << app_id); } else { SDL_LOG_DEBUG("Resource " << module_type << " is not acquired yet"); } } sync_primitives::AutoLock lock(resources_state_lock_); resources_state_[module] = state; SDL_LOG_DEBUG("Resource " << module_type << " got state " << state); } bool ResourceAllocationManagerImpl::IsResourceFree( const std::string& module_type, const std::string& module_id) const { SDL_LOG_AUTO_TRACE(); ModuleUid module(module_type, module_id); sync_primitives::AutoLock lock(resources_state_lock_); const ResourcesState::const_iterator resource = resources_state_.find(module); if (resources_state_.end() == resource) { SDL_LOG_DEBUG("Resource " << module_type << " is free."); return true; } SDL_LOG_DEBUG("Resource " << module_type << " state is " << resource->second); return ResourceState::FREE == resource->second; } bool ResourceAllocationManagerImpl::IsResourceAllocated( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { ModuleUid module(module_type, module_id); sync_primitives::AutoLock lock(allocated_resources_lock_); const auto allocation = allocated_resources_.find(module); if (allocated_resources_.end() == allocation) { SDL_LOG_DEBUG("Resource " << module_type << " is not allocated."); return false; } if (app_id != allocation->second) { SDL_LOG_DEBUG("Resource " << module_type << " is allocated by different application " << allocation->second); return true; } return false; } void ResourceAllocationManagerImpl::SetAccessMode( const hmi_apis::Common_RCAccessMode::eType access_mode) { if (hmi_apis::Common_RCAccessMode::ASK_DRIVER != access_mode) { sync_primitives::AutoLock lock(rejected_resources_for_application_lock_); rejected_resources_for_application_.clear(); } current_access_mode_ = access_mode; } hmi_apis::Common_RCAccessMode::eType ResourceAllocationManagerImpl::GetAccessMode() const { return current_access_mode_; } void ResourceAllocationManagerImpl::ForceAcquireResource( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { SDL_LOG_DEBUG("Force " << app_id << " acquiring " << module_type); sync_primitives::AutoLock lock(allocated_resources_lock_); SetResourceAcquired(module_type, module_id, app_id); } bool ResourceAllocationManagerImpl::IsModuleTypeRejected( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { SDL_LOG_AUTO_TRACE(); ModuleUid module(module_type, module_id); sync_primitives::AutoLock lock(rejected_resources_for_application_lock_); RejectedResources::iterator it = rejected_resources_for_application_.find(app_id); if (rejected_resources_for_application_.end() == it) { return false; } const std::vector<ModuleUid>& list_of_rejected_resources = rejected_resources_for_application_[app_id]; return helpers::in_range(list_of_rejected_resources, module); } void ResourceAllocationManagerImpl::OnDriverDisallowed( const std::string& module_type, const std::string& module_id, const uint32_t app_id) { SDL_LOG_AUTO_TRACE(); ModuleUid module(module_type, module_id); sync_primitives::AutoLock lock(rejected_resources_for_application_lock_); auto it = rejected_resources_for_application_.find(app_id); if (rejected_resources_for_application_.end() == it) { rejected_resources_for_application_[app_id] = std::vector<ModuleUid>(); } std::vector<ModuleUid>& list_of_rejected_resources = rejected_resources_for_application_[app_id]; list_of_rejected_resources.push_back(module); } void ResourceAllocationManagerImpl::OnApplicationEvent( application_manager::plugin_manager::ApplicationEvent event, application_manager::ApplicationSharedPtr application) { using application_manager::plugin_manager::ApplicationEvent; SDL_LOG_AUTO_TRACE(); SDL_LOG_DEBUG("Event " << event << " came for " << application->app_id()); if (ApplicationEvent::kApplicationExit == event || ApplicationEvent::kApplicationUnregistered == event) { auto acquired_modules = GetAcquiredModuleTypes(application->app_id()); auto module = acquired_modules.begin(); for (; acquired_modules.end() != module; ++module) { ReleaseModuleType(*module, application->app_id()); } if (!acquired_modules.empty()) { SendOnRCStatusNotifications( NotificationTrigger::MODULE_ALLOCATION, std::shared_ptr<application_manager::Application>()); } } } void ResourceAllocationManagerImpl::OnPolicyEvent( application_manager::plugin_manager::PolicyEvent event) { using application_manager::plugin_manager::PolicyEvent; SDL_LOG_AUTO_TRACE(); SDL_LOG_DEBUG("Event " << event); if (PolicyEvent::kApplicationPolicyUpdated == event) { ProcessApplicationPolicyUpdate(); return; } if (PolicyEvent::kApplicationsDisabled == event) { ResetAllAllocations(); return; } } void ResourceAllocationManagerImpl::ResetAllAllocations() { SDL_LOG_AUTO_TRACE(); { sync_primitives::AutoLock lock(resources_state_lock_); resources_state_.clear(); } { sync_primitives::AutoLock lock(allocated_resources_lock_); allocated_resources_.clear(); } { sync_primitives::AutoLock lock(rejected_resources_for_application_lock_); rejected_resources_for_application_.clear(); } } } // namespace rc_rpc_plugin
08e1a692e29d19588381904796f52e56cdd42f4e
94f9d3863c93f4a990ab87d4933e0498ed3e2ba1
/Dev-Cpp/DirectX/MD2 animation/NormalsTable generator/e_md2generatetable.h
2ad2598172058343815fa4016c63cdbdff0bd3a3
[ "MIT" ]
permissive
Jeanmilost/Demos
6401d7af4612e6a6a06b070a5e951457c1cdc069
3300e056e88506757f3185ba94d6b2ac3da344af
refs/heads/master
2023-01-28T19:51:05.670586
2023-01-09T16:20:48
2023-01-09T16:20:48
156,447,978
1
1
null
null
null
null
ISO-8859-1
C++
false
false
1,008
h
e_md2generatetable.h
/***************************************************************************** * ==> Classe E_MD2GenerateTable --------------------------------------------* * *************************************************************************** * Description : Cette classe permet la génération d'un fichier binaire * * contenant les données des normales pré-calculées. * * Version : 1.0 * * Développeur : Jean-Milost Reymond * *****************************************************************************/ #ifndef E_MD2GENERATETABLE_H #define E_MD2GENERATETABLE_H #include <d3dx9.h> #include "e_md2normalsdatas.h" /* * Classe E_MD2GenerateTable. */ class E_MD2GenerateTable { private: float p_Version; int p_DatasLength; public: E_MD2GenerateTable(); ~E_MD2GenerateTable(); public: bool CreateFile(); }; #endif // E_MD2GENERATETABLE_H
0fbcd355d282bdaafb3e5259b1af1fa0e107ce95
5e669d2860da3e849557574f2c8f5b3208c21f7f
/hefur/control-server.hh
3cfb1a984eb5835246522ef33e425d6dea42c861
[ "MIT" ]
permissive
abique/hefur
17b2c87968560f32e70ee7894ddaa980d7623758
5f443757b5938a2bf9a4945508e45db90703a766
refs/heads/master
2023-09-01T16:50:05.668857
2022-08-02T21:26:20
2022-08-03T07:00:11
4,232,506
139
38
MIT
2022-08-03T07:00:11
2012-05-05T08:36:51
C++
UTF-8
C++
false
false
1,063
hh
control-server.hh
#pragma once #include <mimosa/rpc/server.hh> #include <mimosa/string-ref.hh> #include <mimosa/thread.hh> #include "namespace-helper.hh" namespace hefur { /** * This is a server which accepts commands from a unix socket, * making it possible to control Hefur. */ class ControlServer : public m::RefCountable<ControlServer> { public: MIMOSA_DEF_PTR(ControlServer); ControlServer(); ~ControlServer(); /** * Starts the server. If the server is already started, * then it restarts. * * @return true on success, and false otherwise */ bool start(const std::string &socket_path); /** * Stops the server, and does nothing if the server is already * stopped. */ void stop(); void handleCommand(m::StringRef cmd) const; void cmdRemoveTorrent(m::StringRef cmd) const; void cmdCleanupTorrents(m::StringRef cmd) const; void cmdQuit(m::StringRef cmd) const; private: void run(); bool stop_; m::Thread thread_; std::string socket_path_; mr::Server::Ptr server_; }; } // namespace hefur
b47f1daf8981e321dc8d76c4993fecdd6a4d1612
f0dbabac157fc79094062513cfcc28be253d9b70
/modules/sdk-core/test/GroupAccessorMock.hpp
07f4cda368b6463e0c843970d222f0e1a85c4587
[ "Apache-2.0" ]
permissive
TankerHQ/sdk-native
4c3a81d83a9e144c432ca74c3e327225e6814e91
c062edc4b6ad26ce90e0aebcc2359adde4ca65db
refs/heads/master
2023-08-19T02:59:40.445973
2023-08-09T12:04:46
2023-08-09T12:04:46
160,206,027
20
4
null
null
null
null
UTF-8
C++
false
false
647
hpp
GroupAccessorMock.hpp
#pragma once #include <Tanker/Groups/IAccessor.hpp> #include <trompeloeil.hpp> namespace Tanker { class GroupAccessorMock : public Groups::IAccessor { public: MAKE_MOCK1(getInternalGroup, tc::cotask<InternalGroup>(Trustchain::GroupId const&), override); MAKE_MOCK1(getPublicEncryptionKeys, tc::cotask<PublicEncryptionKeyPullResult>( std::vector<Trustchain::GroupId> const&), override); MAKE_MOCK1(getEncryptionKeyPair, tc::cotask<std::optional<Crypto::EncryptionKeyPair>>( Crypto::PublicEncryptionKey const&), override); }; }
4d3c075350752418fc6d6154a7ff0ba129265dda
3a68b2d9b028cf7b8a0ddd0635c87e22743880ce
/Quiz/Repository/RepoParticipants.h
e5969f69c6b4981e9dae4743942a2ada52155ac0
[]
no_license
pauladam2001/Sem2_ObjectOrientedProgramming
527be32f0daecc8215f939d2fb2ef906555102f1
fc3ff465018cf4004ea5af70b2e880043d55a3db
refs/heads/main
2023-08-13T18:03:49.998731
2021-10-18T08:55:11
2021-10-18T08:55:11
390,777,948
2
0
null
null
null
null
UTF-8
C++
false
false
609
h
RepoParticipants.h
// // Created by paula on 6/21/2021. // #ifndef QUIZ_REPOPARTICIPANTS_H #define QUIZ_REPOPARTICIPANTS_H #include "../Participant/Participant.h" #include "../Question/Question.h" #include "../Observer/Observer.h" #include <fstream> #include <vector> class RepoParticipants { private: vector<Participant> participants; void load_data(); public: RepoParticipants(); vector<Participant>& getParticipants(); void updateParticipantScore(Question q, string answer, Participant& p); ~RepoParticipants() = default; }; #endif //QUIZ_REPOPARTICIPANTS_H
fc01763873b5ce64c971783e72ba66a64b9b7b24
9be21a3bfc5d04bea4a6cda082f45517a68f42eb
/hphp/php7/unit.h
45a07ac7173fd430a86632d4ba287a18e5cd732f
[ "PHP-3.01", "Zend-2.0", "BSD-3-Clause" ]
permissive
bcopeland/hhvm
6cb9fd8f0be0f9fdf803e7f5df9c7130617a3480
d4dd223529d42ccaec9014e8d9a1009d7c2a7cc0
refs/heads/master
2021-01-15T14:58:31.498315
2017-08-08T06:38:12
2017-08-08T06:44:40
99,701,343
0
0
null
2017-08-08T14:22:24
2017-08-08T14:22:24
null
UTF-8
C++
false
false
3,607
h
unit.h
/* +----------------------------------------------------------------------+ | HipHop for PHP | +----------------------------------------------------------------------+ | Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ */ #ifndef incl_HPHP_PHP_UNIT_H #define incl_HPHP_PHP_UNIT_H #include "hphp/php7/bytecode.h" #include "hphp/runtime/base/attr.h" #include <boost/variant.hpp> #include <string> #include <vector> #include <unordered_set> namespace HPHP { namespace php7 { struct Block; struct Function; struct Unit; struct Block { // these are the last instructions in the block, they must be jumps or leave // the current function i.e. only these instructions: using ExitOp = boost::variant< bc::Jmp, bc::JmpNS, bc::JmpZ, bc::JmpNZ, bc::Switch, bc::SSwitch, bc::RetC, bc::RetV, bc::Unwind, bc::Throw, bc::Fatal >; void emit(bc::Jmp&&) = delete; void emit(bc::JmpNS&&) = delete; void emit(bc::JmpZ&&) = delete; void emit(bc::JmpNZ&&) = delete; void emit(bc::Switch&&) = delete; void emit(bc::SSwitch&&) = delete; void emit(bc::RetC&&) = delete; void emit(bc::RetV&&) = delete; void emit(bc::Unwind&&) = delete; void emit(bc::Throw&&) = delete; void emit(bc::Fatal&&) = delete; void emit(ExitOp&& op) = delete; void emit(Bytecode&& bc) { assert(!exited); code.push_back(std::move(bc)); } void exit(ExitOp&& op) { exited = true; exits.push_back(std::move(op)); } // identifies this block in its unit uint64_t id; // code associated with this block std::vector<Bytecode> code; std::vector<ExitOp> exits; bool exited{false}; }; // get the series of block pointers in the control graph that starts at `entry` std::vector<Block*> serializeControlFlowGraph(Block* entry); struct Function { struct Param { std::string name; bool byRef; }; explicit Function(Unit* parent, const std::string& name); Block* getEntry() { return entry; } Block* allocateBlock(); Block* getBlock(uint64_t id); std::string name; Attr attr; Block* entry; Unit* parent; std::vector<std::unique_ptr<Block>> blocks; std::vector<Param> params; std::unordered_set<std::string> locals; }; struct Unit { explicit Unit() : pseudomain(std::make_unique<Function>(this, "")) {} Function* getPseudomain() const { return pseudomain.get(); } Function* makeFunction(const std::string& name) { functions.emplace_back(std::make_unique<Function>(this, name)); return functions.back().get(); } std::string name; std::unique_ptr<Function> pseudomain; std::vector<std::unique_ptr<Function>> functions; }; std::unique_ptr<Unit> makeFatalUnit(const std::string& filename, const std::string& msg); }} // HPHP::php7 #endif // incl_HPHP_PHP_UNIT_H
39635057f75b41b07af955f3147190262e8bfe54
0013951a9aea5fc3dc2f546fc1972b630110f993
/Seccesfuly/Shcool_schedule/add_subject.cpp
34c141a80a25e919fbc744bb44803deecb969199
[]
no_license
SHCHERBA92/Shcool_schedule
10904cca64a484f4a6a0125bb897f35dde653fe3
a171fb93e41785ecedb4cc79c872da31b81b42b6
refs/heads/master
2022-06-29T22:50:55.831877
2020-05-10T10:14:13
2020-05-10T10:14:13
261,287,217
0
1
null
2020-05-07T14:40:57
2020-05-04T20:21:55
C++
UTF-8
C++
false
false
3,669
cpp
add_subject.cpp
#include "add_subject.h" #include "ui_add_subject.h" #include <QDebug> #include <QMessageBox> Add_Subject::Add_Subject(QWidget *parent) : QDialog(parent), ui(new Ui::Add_Subject) { ui->setupUi(this); // косметика Главного окна this->setWindowTitle("Редактор списка предметов"); this->setFixedSize(this->width(), this->height()); this->setWindowIcon(QIcon(":/new/prefix1/backpack.png")); ui->lineEditAddPredmet->setToolTip("Поле для ввода преподавателя"); ui->listWidgetSpisokPredmetov->setToolTip("Поле списка преподавателей"); listPredmetadd = new QStringList(); /// сохранение Листинга *listPredmetadd = set.Get_SettingListPredmet(); ui->listWidgetSpisokPredmetov->addItems(*listPredmetadd); /// косметика кнопок ui->pushButtonAdd->setIcon(QIcon(":/new/prefix1/greenPlus.png")); ui->pushButtonDelete->setIcon(QIcon(":/new/prefix1/red_minus.png")); // заменить картинку минуса ui->pushButtonCancel->setIcon(QIcon(":/new/prefix1/redCancel.png")); ui->pushButtonAdd->setToolTip("Добавить преподавателя в список преподавателей"); ui->pushButtonCancel->setToolTip("Закрыть редакктор"); ui->pushButtonDelete->setToolTip("Убрать преподавателя из списка преподавателей"); ui->pushButtonAdd->setToolTipDuration(5000); ui->pushButtonAdd->setToolTipDuration(5000); ui->pushButtonAdd->setToolTipDuration(5000); // слоты для фокуса на кнопки(сделал как смог) connect(ui->listWidgetSpisokPredmetov, &QListWidget::clicked, this, [=](){ ui->pushButtonDelete->setFocus(Qt::OtherFocusReason); }); connect(ui->lineEditAddPredmet, &QLineEdit::editingFinished, this, [this](){ ui->pushButtonAdd->setFocus(); }); } Add_Subject::~Add_Subject() { delete ui; } void Add_Subject::on_pushButtonCancel_clicked() { ui->lineEditAddPredmet->clear(); this->close(); } void Add_Subject::on_pushButtonAdd_clicked() { if(ui->lineEditAddPredmet->text() == "") { QMessageBox::warning(this, "Не корректныый ввод", "Введите название предмета"); } else if(!(listPredmetadd->filter(ui->lineEditAddPredmet->text()).isEmpty())) { QMessageBox::warning(this, "Не корректныый ввод", "Такой предмет уже существует"); } ///////// else { listPredmetadd->append(ui->lineEditAddPredmet->text()); set.Set_SettingListPredmet(*listPredmetadd); ui->listWidgetSpisokPredmetov->clear(); ui->listWidgetSpisokPredmetov->addItems(*listPredmetadd); emit signall_Add_Subject(*listPredmetadd); } } void Add_Subject::on_pushButtonDelete_clicked() { if(!(ui->listWidgetSpisokPredmetov->isItemSelected(ui->listWidgetSpisokPredmetov->currentItem()) )) { QMessageBox::warning(this, "Не выбран предмет для удаления", "Выберите предмет для удаления"); } else { listPredmetadd->removeOne(ui->listWidgetSpisokPredmetov->item(ui->listWidgetSpisokPredmetov->currentRow())->text()); ui->listWidgetSpisokPredmetov->takeItem(ui->listWidgetSpisokPredmetov->currentRow()); set.Set_SettingListPredmet(*listPredmetadd); emit signall_Add_Subject(*listPredmetadd); } qDebug() << *listPredmetadd; }
67c7a867b952e9039d0b5b8e86f5e0238ec132e2
c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64
/Engine/Source/Editor/SkeletonEditor/Public/ISkeletonTree.h
5fcc96b212ff8d812be64bded4ef55fd13a9d71e
[ "MIT", "LicenseRef-scancode-proprietary-license" ]
permissive
windystrife/UnrealEngine_NVIDIAGameWorks
c3c7863083653caf1bc67d3ef104fb4b9f302e2a
b50e6338a7c5b26374d66306ebc7807541ff815e
refs/heads/4.18-GameWorks
2023-03-11T02:50:08.471040
2022-01-13T20:50:29
2022-01-13T20:50:29
124,100,479
262
179
MIT
2022-12-16T05:36:38
2018-03-06T15:44:09
C++
UTF-8
C++
false
false
5,473
h
ISkeletonTree.h
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved. #pragma once #include "CoreMinimal.h" #include "Widgets/SCompoundWidget.h" #include "ArrayView.h" struct FAssetData; class IPersonaPreviewScene; class UBlendProfile; struct FSelectedSocketInfo; class ISkeletonTreeBuilder; class ISkeletonTreeItem; class FMenuBuilder; class FExtender; // Called when an item is selected/deselected DECLARE_MULTICAST_DELEGATE_TwoParams(FOnSkeletonTreeSelectionChangedMulticast, const TArrayView<TSharedPtr<ISkeletonTreeItem>>& /* InSelectedItems */, ESelectInfo::Type /* SelectInfo */); // Called when an item is selected/deselected typedef FOnSkeletonTreeSelectionChangedMulticast::FDelegate FOnSkeletonTreeSelectionChanged; // Called when a bone is selected - DEPRECATED, please use FOnSkeletonTreeSelectionChangedMulticast DECLARE_MULTICAST_DELEGATE_OneParam(FOnObjectSelectedMulticast, UObject* /* InObject */); // Called when an object is selected - DEPRECATED, please use FOnSkeletonTreeSelectionChanged typedef FOnObjectSelectedMulticast::FDelegate FOnObjectSelected; /** Delegate that allows custom filtering text to be shown on the filter button */ DECLARE_DELEGATE_OneParam(FOnGetFilterText, TArray<FText>& /*InOutTextItems*/); enum class ESkeletonTreeMode { /** Skeleton tree allows editing */ Editor, /** Skeleton tree allows picking of tree elements */ Picker, }; /** Init params for a skeleton tree widget */ struct FSkeletonTreeArgs { FSkeletonTreeArgs() : Mode(ESkeletonTreeMode::Editor) , bShowBlendProfiles(true) , bShowFilterMenu(true) , bAllowMeshOperations(true) , bAllowSkeletonOperations(true) {} PRAGMA_DISABLE_DEPRECATION_WARNINGS ~FSkeletonTreeArgs() {} PRAGMA_ENABLE_DEPRECATION_WARNINGS /** Delegate called by the tree when a socket is selected */ FOnSkeletonTreeSelectionChanged OnSelectionChanged; DEPRECATED(4.17, "Please use OnSelectionChanged") FOnObjectSelected OnObjectSelected; /** Delegate that allows custom filtering text to be shown on the filter button */ FOnGetFilterText OnGetFilterText; /** Optional preview scene that we can pair with */ TSharedPtr<IPersonaPreviewScene> PreviewScene; /** Optional builder to allow for custom tree construction */ TSharedPtr<ISkeletonTreeBuilder> Builder; /** Menu extenders applied to context and filter menus */ TSharedPtr<FExtender> Extenders; /** The mode that this skeleton tree is in */ ESkeletonTreeMode Mode; /** Whether to show the blend profiles editor for the skeleton being displayed */ bool bShowBlendProfiles; /** Whether to show the filter menu to allow filtering of active bones, sockets etc. */ bool bShowFilterMenu; /** Whether to allow operations that modify the mesh */ bool bAllowMeshOperations; /** Whether to allow operations that modify the skeleton */ bool bAllowSkeletonOperations; }; /** Interface used to deal with skeleton editing UI */ class SKELETONEDITOR_API ISkeletonTree : public SCompoundWidget { public: struct Columns { static const FName Name; static const FName Retargeting; static const FName BlendProfile; }; /** Manually refresh the tree */ virtual void Refresh() = 0; /** Manually refresh the tree filter */ virtual void RefreshFilter() = 0; /** Get editable skeleton that this widget is editing */ virtual TSharedRef<class IEditableSkeleton> GetEditableSkeleton() const = 0; /** Get preview scene that this widget is editing */ virtual TSharedPtr<class IPersonaPreviewScene> GetPreviewScene() const = 0; /** Set the skeletal mesh we optionally work with */ virtual void SetSkeletalMesh(class USkeletalMesh* NewSkeletalMesh) = 0; /** Set the selected socket */ virtual void SetSelectedSocket(const struct FSelectedSocketInfo& InSocketInfo) = 0; /** Set the selected bone */ virtual void SetSelectedBone(const FName& InBoneName) = 0; /** Deselect everything that is currently selected */ virtual void DeselectAll() = 0; /** Get the selected items */ virtual TArray<TSharedPtr<ISkeletonTreeItem>> GetSelectedItems() const = 0; /** Select items using the passed in predicate */ virtual void SelectItemsBy(TFunctionRef<bool(const TSharedRef<ISkeletonTreeItem>& /* InItem */, bool& /* bInOutExpand */)> Predicate) const = 0; /** Duplicate the socket and select it */ virtual void DuplicateAndSelectSocket(const FSelectedSocketInfo& SocketInfoToDuplicate, const FName& NewParentBoneName = FName()) = 0; /** Registers a delegate to be called when the selected items have changed */ virtual FDelegateHandle RegisterOnSelectionChanged(const FOnSkeletonTreeSelectionChanged& Delegate) = 0; /** Unregisters a delegate to be called when the selected items have changed */ virtual void UnregisterOnSelectionChanged(FDelegateHandle DelegateHandle) = 0; /** Gets the currently selected blend profile */ virtual UBlendProfile* GetSelectedBlendProfile() = 0; /** Attached the supplied assets to the tree to the specified attach item (bone/socket) */ virtual void AttachAssets(const TSharedRef<class ISkeletonTreeItem>& TargetItem, const TArray<FAssetData>& AssetData) = 0; /** Get the search box widget, if any, for this tree */ virtual TSharedPtr<SWidget> GetSearchWidget() const = 0; DEPRECATED(4.17, "Please use RegisterOnSelectionChanged") virtual void RegisterOnObjectSelected(const FOnObjectSelected& Delegate) = 0; DEPRECATED(4.17, "Please use UnregisterOnSelectionChanged") virtual void UnregisterOnObjectSelected(SWidget* Widget) = 0; };
05574fd0b440ec45d25d3d6926bd76d9c499c82b
2328d903e7c4092025bc0bb18be40efee0a963f8
/src/mate/create_map.h
c0f1daddfe2ba5deea67690793d09dbe21b9391c
[ "MIT" ]
permissive
NPTricky/adm-machine-ss14
525a3787ca95c0eb93a47dfc464f9a2865752436
29cd9bd96cedb1a52a834e03d03548e99b96058a
refs/heads/master
2021-01-10T19:25:17.498832
2014-09-09T08:37:19
2014-09-09T08:37:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
612
h
create_map.h
#pragma once #include <map> /// Generic class for the chained creation of a std::map. template <typename K, typename V> class create_map { public: /// Constructor for a map with a single entry. /// \param _key /// \param _value create_map(const K& _key, const V& _value) { m_map[_key] = _value; } /// Operator() for chaining of key-value pairs. /// \param _key /// \param _value create_map<K, V>& operator()(const K& _key, const V& _value) { m_map[_key] = _value; return *this; } operator std::map<K, V>() { return m_map; } private: std::map<K, V> m_map; };
63af1ec2a19d517242c43c22fc8d7fb1ff7cedba
b19cbac54a06a360c944bcac15ff3a1178c996e4
/Group07_Assignment_Unit3 2/circuit.cpp
a55674c9a0aaa9918e8bae2eddb53d4a376fa7eb
[]
no_license
bisscay/CircuitAnalyzer
1a1a311c588990b914c654c6571918d07989a5f5
aaa3f4ba3f20fc1e120e8c9006d25bd61a128a5b
refs/heads/master
2022-12-10T23:04:19.379771
2020-09-08T19:09:08
2020-09-08T19:09:08
293,898,488
0
0
null
null
null
null
UTF-8
C++
false
false
404
cpp
circuit.cpp
// circuit.cpp // Abstract base class #include <cstdlib> #include "circuit.h" Circuit::Circuit():totalV(0.0),totalC(0.0),totalR(0.0) { // Cstr } Circuit::~Circuit() { // Dstr } void Circuit::setTotalV(double newV) { totalV = newV; //calculate and assign total current setTotalC(getTotalV() / getTotalR()); } /* Circuit::Circuit(Circuit* c1, Circuit* c2) { // Cstr pc1=c1; pc2=c2; }*/
58a0721df46cc7ded1b238c4fcc27d2e23d279c4
0a5ea4fcd45a402745df36c1d66ad40d434d183b
/utilisateur/utilisateur.h
7aa83c345618f42cbf08d835fe3fdccd7368c51d
[]
no_license
SandraGuillo/ProjetCPOA
5ccb2a627bf411a23cc63f2afc84fcb1af04914e
807af5903ffe82a50f1b2080ff07ebc8414173df
refs/heads/main
2023-01-31T03:36:39.189130
2020-12-17T10:32:57
2020-12-17T10:32:57
319,767,378
0
0
null
null
null
null
UTF-8
C++
false
false
1,878
h
utilisateur.h
#ifndef UTILISATEUR_H #define UTILISATEUR_H #include <QString> /** * @namespace utilisateur * Contient toutes les classes utilisateurs. * @author Sandra GUILLO */ namespace utilisateur { /** * @brief Classe de base pour les utilisateurs. */ class Utilisateur { //ici on déclare tous les champs dont on a besoin private: /** * @brief Adresse email. Doit etre unique. */ QString email; /** * @brief Mot de passe du compte. */ QString mot_de_passe; /** * @brief Nom de la personne. */ QString nom; /** * @brief Prenom de la personne. */ QString prenom; //on déclare le constructeur /*protected: a remettre pour la suite * @brief Constructeur * @param email * @param mot_de_passe * @param nom * @param prenom Utilisateur(const QString &email, const QString &mdp, const QString &nom, const QString &prenom);*/ public: /** * @brief Constructeur * @param email de l'utilisateur * @param mot_de_passe de l'utilisateur * @param nom de l'utilisateur * @param prenom de l'utilisateur */ Utilisateur(const QString &email, const QString &mdp, const QString &nom, const QString &prenom); /** * @brief toString fonction qui permet d'afficher toutes les informations de l'utilisateur * @return String representative. */ QString toString() const; /** * @brief Getter email. permet de retrouver l'email de l'utilisateur * @return email */ QString getEmail() const; }; } #endif // UTILISATEUR_H
d112189a7eb35b6ea31466db7a9d6bd5d826558b
fac38da2f55456c484c9b0289c5f6b2c173b8779
/include/d2/detail/inherit_constructors.hpp
d37e48db21ca81395dd838ae68a567e787179d69
[ "MIT" ]
permissive
ldionne/d2
e15424c0900493f0d5e821f84c91cbd9b461ddb4
225743937dc8c50a1779436c5ad5cb2afd04864a
refs/heads/master
2021-01-11T05:30:54.345546
2013-08-16T01:11:23
2013-08-16T01:11:23
7,371,168
6
1
null
2013-10-24T15:26:29
2012-12-29T22:40:01
C++
UTF-8
C++
false
false
4,099
hpp
inherit_constructors.hpp
/** * This file defines the `D2_INHERIT_CONSTRUCTORS` macro. */ #ifndef D2_DETAIL_INHERIT_CONSTRUCTORS_HPP #define D2_DETAIL_INHERIT_CONSTRUCTORS_HPP #include <boost/config.hpp> #include <boost/move/utility.hpp> // If we have inherited constructors // Note: BOOST_NO_CXX11_INHERITED_CONSTRUCTORS does not currently exist, // so we always disable this. #if !defined(BOOST_NO_CXX11_INHERITED_CONSTRUCTORS) && 0 # define D2_INHERIT_CONSTRUCTORS(DERIVED, BASE) \ using D2_BASE_CLASS::D2_BASE_CLASS; \ /**/ // If we have variadic templates #elif !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) # define D2_INHERIT_CONSTRUCTORS(DERIVED, BASE) \ template <typename ...Args> \ explicit DERIVED(BOOST_FWD_REF(Args) ...args) \ : BASE(::boost::forward<Args>(args)...) \ { } \ \ D2_I_INHERIT_LVALUES(DERIVED, BASE) \ /**/ # if defined(BOOST_NO_CXX11_RVALUE_REFERENCES) # define D2_I_INHERIT_LVALUES(DERIVED, BASE) \ template <typename ...Args> \ explicit DERIVED(Args& ...args) \ : BASE(args...) \ { } \ /**/ # else # define D2_I_INHERIT_LVALUES(DERIVED, BASE) /* nothing */ # endif // If we don't have any of this #else # define D2_I_CONSTRUCTORS(DERIVED, BASE, MAKE_REFERENCE_TYPE, FORWARD) \ template <typename A1> \ explicit DERIVED(MAKE_REFERENCE_TYPE(A1) a1) \ : BASE(FORWARD(A1, a1)) \ { } \ \ template <typename A1, typename A2> \ explicit DERIVED(MAKE_REFERENCE_TYPE(A1) a1, \ MAKE_REFERENCE_TYPE(A2) a2) \ : BASE(FORWARD(A1, a1), FORWARD(A2, a2)) \ { } \ \ template <typename A1, typename A2, typename A3> \ explicit DERIVED(MAKE_REFERENCE_TYPE(A1) a1, \ MAKE_REFERENCE_TYPE(A2) a2, \ MAKE_REFERENCE_TYPE(A3) a3) \ : BASE(FORWARD(A1, a1), FORWARD(A2, a2), FORWARD(A3, a3)) \ { } \ /**/ # define D2_I_MAKE_LVALUE_REF(T) T& # define D2_I_NO_FORWARD(T, t) t # define D2_I_MAKE_FWD_REF(T) BOOST_FWD_REF(T) # define D2_I_FORWARD(T, t) ::boost::forward<T>(t) # define D2_INHERIT_CONSTRUCTORS(DERIVED, BASE) \ D2_I_CONSTRUCTORS(DERIVED, BASE, D2_I_MAKE_FWD_REF, D2_I_FORWARD) \ D2_I_INHERIT_LVALUES(DERIVED, BASE) \ /**/ # ifdef BOOST_NO_CXX11_RVALUE_REFERENCES # define D2_I_INHERIT_LVALUES(DERIVED, BASE) \ D2_I_CONSTRUCTORS(DERIVED, BASE, \ D2_I_MAKE_LVALUE_REF, D2_I_NO_FORWARD) \ /**/ # else # define D2_I_INHERIT_LVALUES(DERIVED, BASE) /* nothing */ # endif #endif // end feature availability switch #endif // !D2_DETAIL_INHERIT_CONSTRUCTORS_HPP
198fab9d4ed13c7509f34b174b59b6e9602d71f6
5723820da754091f22d4e789a93ecd0e81aa1a34
/5_loops/sumTillPositive.cpp
27d5c7dd6c008847ab2fcff7b0708f9f8d582c08
[]
no_license
VinayakTekade/Data-Structures-and-Algorithm
eb1ceae78baeb07b8c3990d97e53aa83670a1805
7e033fc7ab494234fd1c93ebee521d72bd0597a5
refs/heads/main
2023-08-24T21:42:09.179023
2021-10-25T11:07:15
2021-10-25T11:07:15
371,285,728
0
0
null
null
null
null
UTF-8
C++
false
false
369
cpp
sumTillPositive.cpp
#include <iostream> using namespace std; int main() { //#ifndef ONLINE_JUDGE // freopen("../input.txt", "r", stdin); // freopen("../output.txt", "w", stdout); // #endif // NEEDS TO RUN IN INTERACTIVE MODE int n = 0, sum = 0; do { sum = sum + n; cin >> n; } while (n >= 0); cout << sum; return 0; }
1db9442cc3df5f7d611e3eb90a1369250a543242
8f2aef3698df4f6cdb2916d8953c563ed693a9f3
/src/Calculator/simplify.h
e9bf4e8f236fdf21d9fd334a6ea8ac9d9ae7b1c0
[]
no_license
LiuQinHong/Algebraic-calculator
b4c07b04945bb3ac31afde0e20b4c24d4d33188e
377572b8726163e08d529a18fadbf63a0b5f5acf
refs/heads/master
2020-04-06T17:29:09.565877
2018-11-24T03:14:01
2018-11-24T03:14:01
157,660,792
0
0
null
null
null
null
UTF-8
C++
false
false
223
h
simplify.h
#ifndef SIMPLIFY_H #define SIMPLIFY_H #include <QObject> #include <QString> class Simplify : public QObject { Q_OBJECT public: bool simplify(QString &original,QString *outHtml); private: }; #endif // SIMPLIFY_H
8e67e0dbbbce7a5bc0d3dabe945c8d5d3742a399
838cd450e6a8ec5c6c5ef75faa59046650111396
/UVa/UVA-524.cpp
f19eb1944cdf5754378347505e5725d7cd08885f
[]
no_license
krimson8/acm
252fea2b46e4d694827da076c804ce1be1d89c6a
e1b6748d94f59dd6749a68f5f4441723baa1fa73
refs/heads/master
2020-04-07T08:43:44.481580
2018-06-27T09:39:29
2018-06-27T09:39:29
124,198,178
0
0
null
null
null
null
UTF-8
C++
false
false
977
cpp
UVA-524.cpp
#include <cstdio> #include <vector> using namespace std; vector<int> prime = {2,3,5,7,11,13,17,19,23,29,31,37,41}; int n, ans[20] = {1}; bool check(int a) { for(int i = 0; i < prime.size(); i++) if (a == prime[i]) return true; return false; } void backtracking(int digit, bool visit[]) { if (digit == n) { if (!check(ans[n-1] + 1)) return; printf("1"); for (int i = 1; i < n; ++i) printf(" %d", ans[i]); printf("\n"); return; } for (int i = 2; i <= n; ++i) { if (visit[i]) continue; if (check(i + ans[digit - 1])) { visit[i] = 1; ans[digit] = i; backtracking(digit + 1, visit); visit[i] = 0; } } } int main() { int c; while (scanf("%d", &n) != EOF) { if (c++) putchar('\n'); printf("Case %d:\n", c); bool visit[20] = {0}; backtracking(1, visit); } }
58553c82d6cd53f8de0a25aaa30c82548bb80c21
0082b9fc6027402032864ded9bcf70efac615ccd
/model/host.h
33ba81caa30e91bb8cea3984f1ab8437a165767f
[]
no_license
Xaltonon/ocvm
2d48d7f96b1860c14c69127db63f69578322fdd2
5c1013867187b8991396569f662a4576703115ad
refs/heads/master
2020-03-07T16:53:43.359662
2018-04-26T15:34:17
2018-04-27T00:07:15
127,596,671
0
0
null
null
null
null
UTF-8
C++
false
false
701
h
host.h
#pragma once #include <string> #include "config.h" class Component; class Frame; class Host { public: Host(string frameType); ~Host(); Frame* createFrame() const; std::unique_ptr<Component> create(const string& type) const; void close(); string stackLog() const; void stackLog(const string& stack_log); string biosPath() const; void biosPath(const string& bios_path); string fontsPath() const; void fontsPath(const string& fonts_path); string machinePath() const; void machinePath(const string& machine_path); private: string _frameType; string _stack_log; string _bios_path; string _fonts_path; string _machine_path; };
14fd6de1e20d44b958cb2571cc8d827ed8bb8f6b
e59177d7d26f249bb3974e5877ea3bbc4354cf4a
/700+/794_Valid_Tic-Tac-Toe_State.cpp
ba981bc98c116812ddbb49748bbd24e00d8fc37d
[]
no_license
milanow/LeetCodePractice
8ae2957f70f94dcfd22558d0b736cda587c5b308
c99545d6b5a191bce6fd66c9941b06573a0af0c1
refs/heads/master
2021-09-12T12:42:21.958668
2018-04-16T18:42:39
2018-04-16T18:42:39
104,815,007
0
0
null
null
null
null
UTF-8
C++
false
false
2,343
cpp
794_Valid_Tic-Tac-Toe_State.cpp
/* 794. Valid Tic-Tac-Toe State * The information we need to collect through the 9 cells are: * 1. number of 'X' and 'O' * 2. if 'X' has 3-line * 3. if 'O' has 3-line * Detailed explination in the comments */ class Solution { public: bool validTicTacToe(vector<string>& board) { // rule: numof(X) - numod(O) == 1 or 0; // X and O cannot reach 3-line at the same time int numx = 0, numo = 0; bool threex = false, threeo = false; for(int i = 0; i < 3; i++){ for(int j = 0; j < 3; j++){ if(board[i][j] == 'X'){ numx++; if(!threex){ // count row if(j == 2 && board[i][1] == 'X' && board[i][0] == 'X') threex = true; // count col if(!threex && i == 2 && board[1][j] == 'X' && board[0][j] == 'X') threex = true; // count diagonal if(!threex && i == 2 && j == 2 && board[1][1] == 'X' && board[0][0] == 'X') threex = true; // count anti-diagonal if(!threex && i == 2 && j == 0 && board[1][1] == 'X' && board[0][2] == 'X') threex = true; } }else if(board[i][j] == 'O'){ numo++; if(!threeo){ // count row if(j == 2 && board[i][1] == 'O' && board[i][0] == 'O') threeo = true; // count col if(!threeo && i == 2 && board[1][j] == 'O' && board[0][j] == 'O') threeo = true; // count diagonal if(!threeo && i == 2 && j == 2 && board[1][1] == 'O' && board[0][0] == 'O') threeo = true; // count anti-diagonal if(!threeo && i == 2 && j == 0 && board[1][1] == 'O' && board[0][2] == 'O') threeo = true; } } } } if(numx - numo > 1 || numx - numo < 0) return false; if(threeo && numx > numo) return false; if(threex && numx == numo) return false; if(threex && threeo) return false; return true; } };
ae6a63fb5bf8f895acca06ca8f301c5d4f967908
2c81c4e0f924f283458774e9a96cde77f804fee0
/src/ekat/mpi/ekat_comm.cpp
d27efa34e70de6152863c925badfca196d1cd86d
[]
no_license
samcom12/EKAT
3215a0e1c6cca337c0994ad2074e8187af4db376
f9f1200311511026046ab754ffec4d8c6808b38e
refs/heads/master
2023-05-06T04:57:02.214919
2021-05-25T23:15:37
2021-05-25T23:15:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,235
cpp
ekat_comm.cpp
#include "ekat_comm.hpp" #include <cassert> namespace ekat { Comm::Comm() { check_mpi_inited(); reset_mpi_comm (MPI_COMM_SELF); } Comm::Comm(MPI_Comm mpi_comm) { check_mpi_inited(); reset_mpi_comm (mpi_comm); } void Comm::reset_mpi_comm (MPI_Comm new_mpi_comm) { m_mpi_comm = new_mpi_comm; MPI_Comm_size(m_mpi_comm,&m_size); MPI_Comm_rank(m_mpi_comm,&m_rank); #ifdef EKAT_MPI_ERRORS_ARE_FATAL MPI_Comm_set_errhandler(m_mpi_comm,MPI_ERRORS_ARE_FATAL); #else MPI_Comm_set_errhandler(m_mpi_comm,MPI_ERRORS_RETURN); #endif } template<> void Comm::scan_sum<int>(const int* my_vals, int* my_sums, const int count) const { check_mpi_inited(); MPI_Scan(my_vals,my_sums,count,MPI_INT,MPI_SUM,m_mpi_comm); } template<> void Comm::scan_sum<float>(const float* my_vals, float* my_sums, const int count) const { check_mpi_inited(); MPI_Scan(my_vals,my_sums,count,MPI_FLOAT,MPI_SUM,m_mpi_comm); } template<> void Comm::scan_sum<double>(const double* my_vals, double* my_sums, const int count) const { check_mpi_inited(); MPI_Scan(my_vals,my_sums,count,MPI_DOUBLE,MPI_SUM,m_mpi_comm); } void Comm::check_mpi_inited () const { int flag; MPI_Initialized (&flag); assert (flag!=0); } } // namespace ekat
e59acc2d141dec9f99fd07489509601c511f8f33
d3d721714d696728d015886b3b20517841bd4a1d
/src/GanderImageTest/RowTest.cpp
04bf3c0497c103f1e5d1addad87dada626d1bafa
[ "BSD-3-Clause" ]
permissive
lucienfostier/gander
a9711b9e88d2dba415a9a6684895b3ef68453d09
5dc540d9eb954984f7f23bf9fa47d8054d9eaec8
refs/heads/master
2021-01-21T00:45:07.626861
2014-09-01T12:20:44
2014-09-01T12:20:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,418
cpp
RowTest.cpp
////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2013-2014, Luke Goddard. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // * Neither the name of Luke Goddard nor the names of any // other contributors to this software may be used to endorse or // promote products derived from this software without specific prior // written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // ////////////////////////////////////////////////////////////////////////// #include <iostream> #include <cstdlib> #include "GanderImageTest/RowTest.h" #include "GanderImage/Row.h" #include "boost/test/floating_point_comparison.hpp" #include "boost/test/test_tools.hpp" using namespace Gander; using namespace Gander::Image; using namespace Gander::ImageTest; using namespace boost; using namespace boost::unit_test; namespace Gander { namespace ImageTest { struct RowTest { void testRowIterators() { typedef CompoundLayout< BrothersLayout< float, Brothers_BGR >, ChannelLayout< float, Chan_Alpha >, DynamicLayout< float > > Layout; Row< Layout >::PixelIterator it; it->addChannels( Mask_U, Brothers_VU ); it->addChannels( Mask_Z ); float bgr[6] = { 3., 2., 1., 6., 5., 4. }; float alpha[2] = { 7., 8. }; float vu[4] = { 10., 9., 12., 11. }; float z[2] = { 13., 14. }; it->setChannelPointer( Chan_Blue, &bgr[0] ); it->setChannelPointer( Chan_Alpha, &alpha ); it->setChannelPointer( Chan_Z, &z ); it->setChannelPointer( Chan_U, &vu[1] ); Row< Layout > row( 2 ); row.setStart( it ); BOOST_CHECK_EQUAL( row.width(), 2 ); BOOST_CHECK( row.getStart() == it ); BOOST_CHECK( row.begin() == it ); BOOST_CHECK( row.end() == it + 2 ); } }; struct RowTestSuite : public boost::unit_test::test_suite { RowTestSuite() : boost::unit_test::test_suite( "RowTestSuite" ) { boost::shared_ptr<RowTest> instance( new RowTest() ); add( BOOST_CLASS_TEST_CASE( &RowTest::testRowIterators, instance ) ); } }; void addRowTest( boost::unit_test::test_suite *test ) { test->add( new RowTestSuite() ); } } // namespace ImageTest } // namespace Gander
ca5e080021bc4ff8e4d4be6455cc816457f7f3d7
d50b9c65742d6e2381963b47b5d51b148f343dfa
/v50-caracter.cpp
78322f54301972eea694d4ad312b7b8027d1e6aa
[]
no_license
bogdanpreda/cpp
0f0c0ae47f46bc6e292d49766a500dcfed47c90b
0264a8f430818ef52b0e8cbc40830cb44513b7dc
refs/heads/master
2021-01-01T18:12:04.284777
2015-03-15T19:32:43
2015-03-15T19:32:43
29,315,444
0
0
null
null
null
null
UTF-8
C++
false
false
552
cpp
v50-caracter.cpp
#include <iostream> #include <string.h> using namespace std; int main() { int i,n=0,p,ok=0; char v[255][255]; i=0; char s[] = "bacalaureat"; while(i<strlen(s) && ok==0) { if(strchr("aeiou",s[i])) { strcpy(s+i,s+i+1); ok++; } i++; } cout<<s<< " "<<endl; i=0; ok=0; for(i=strlen(s)-1;i>=0;i--) { if(strchr("aeiou",s[i])) { strcpy(s+i,s+i+1); break; } } cout<<s; }
1156cfbb274fc0098aff9c1373d1a357d98723b5
b1f4e9a16c8ccec8bad680a41acca57cbff8cf9f
/include/jwm/runtime/Module.h
f3a2f8c4d4e265fea832af796ecb3d2d9eec205d
[]
no_license
thers/jwm
e7c227c4a2a7f3ecfe515f61e970b70280f4902d
61e8dc1fa585043f50edd8cae436375afb37e039
refs/heads/master
2021-07-16T11:04:32.299199
2020-06-10T09:06:59
2020-06-10T09:06:59
173,256,292
0
0
null
null
null
null
UTF-8
C++
false
false
3,571
h
Module.h
#pragma once #include <map> #include <jwm/stdinc.h> #include <jwm/wasm.h> using namespace jwm::wasm; namespace jwm::runtime { class Module { public: using module_types_t = vec_t<func_type_decl_t>; using module_imports_t = vec_t<import_decl_t>; using module_functions_t = vec_t<u32_t>; using module_tables_t = vec_t<table_decl_t>; using module_memories_t = vec_t<mem_decl_t>; using module_exports_t = vec_t<export_decl_t>; using module_codes_t = vec_t<code_decl_t>; using module_start_t = u32_t; using module_elements_t = vec_t<element_decl_t>; using module_globals_t = vec_t<global_decl_t>; using module_datas_t = vec_t<data_t>; private: module_types_t types; module_imports_t imports; module_functions_t functions; module_tables_t tables; module_memories_t memories; module_globals_t globals; module_exports_t exports; module_elements_t elements; module_codes_t codes; module_datas_t datas; module_start_t start = 0; public: Module(const content_t &content); global_decl_t *get_global(index_decl_t index); index_decl_t get_start(); template<typename T> void for_each_global(T cb) { for (auto global: globals) { cb(global); } } template<typename T> void for_each_function(T cb) { for (auto function: functions) { cb(types[function], codes[function]); } } template<typename T> void for_each_table(T cb) { for (auto table: tables) { cb(table); } } template<typename T> void for_each_memory(T cb) { for (auto memory: memories) { cb(memory); } } template<typename T> void for_each_element(T cb) { for (auto element: elements) { cb(element); } } template<typename T> void for_each_export(T cb) { for (auto exprt: exports) { cb(exprt); } } template<typename T> void for_each_data(T cb) { for (auto data: datas) { cb(data); } } }; class ModuleInst { public: using moduleinst_types_t = Module::module_types_t; using moduleinst_funcaddr_t = vec_t<addr_t>; using moduleinst_tableaddr_t = vec_t<addr_t>; using moduleinst_memaddr_t = vec_t<addr_t>; using moduleinst_globaladdr_t = vec_t<addr_t>; using moduleinst_exportinst_t = vec_t<export_inst_t>; private: Module::module_types_t types; moduleinst_funcaddr_t funcaddr; moduleinst_tableaddr_t tableaddr; moduleinst_memaddr_t memaddr; moduleinst_globaladdr_t globaladdr; moduleinst_exportinst_t exportinst; public: void add_type(func_type_decl_t &type); void add_func(addr_t addr); void add_table(addr_t addr); void add_memory(addr_t addr); void add_global(addr_t addr); void add_export(addr_t addr, name_t &name, exporttype type); func_type_decl_t get_type(index_decl_t index); addr_t get_func(index_decl_t index); addr_t get_table(index_decl_t index); addr_t get_memory(index_decl_t index); addr_t get_global(index_decl_t index); }; }
98d50f52948d10cebeb6ec5f8558d152c27701ef
e7c4ecf70c7439e40484b9ff9ee450289fe16310
/fennel/exec/ExecStreamGraphImpl.h
06382ecc2a70e470dde58c92314c8399df481eb7
[ "Apache-2.0", "GPL-2.0-only", "GPL-1.0-or-later", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
jomedinas7/luciddb
51cf161301a1452a1248c7ec630952f7a6136404
55bfa3d5a8788c9d17c531fa367558f37f41b7ae
refs/heads/master
2023-08-10T16:14:38.585539
2021-09-14T01:42:54
2021-09-14T01:42:54
406,180,598
0
0
Apache-2.0
2021-09-14T01:16:37
2021-09-14T01:16:37
null
UTF-8
C++
false
false
11,055
h
ExecStreamGraphImpl.h
/* // Licensed to DynamoBI Corporation (DynamoBI) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. DynamoBI licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. */ #ifndef Fennel_ExecStreamGraphImpl_Included #define Fennel_ExecStreamGraphImpl_Included #include "fennel/exec/ExecStreamGraph.h" #include <vector> #include <boost/property_map/property_map.hpp> #include <boost/graph/adjacency_list.hpp> #include <boost/graph/properties.hpp> #include <boost/graph/filtered_graph.hpp> // REVIEW: can this be pulled into fennel namespace somehow? namespace boost { enum vertex_data_t { vertex_data }; enum edge_data_t { edge_data }; BOOST_INSTALL_PROPERTY(vertex, data); BOOST_INSTALL_PROPERTY(edge, data); } FENNEL_BEGIN_NAMESPACE /** * ExecStreamGraphImpl is an implementation for the ExecStreamGraph * interface based on the boost graph template. */ class FENNEL_EXEC_EXPORT ExecStreamGraphImpl : virtual public ExecStreamGraph { public: typedef boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS, boost::property<boost::vertex_data_t, SharedExecStream>, boost::property< boost::edge_data_t, SharedExecStreamBufAccessor, boost::property<boost::edge_weight_t, int> > > FullGraphRep; typedef boost::graph_traits<FullGraphRep>::vertex_descriptor Vertex; typedef boost::graph_traits<FullGraphRep>::edge_descriptor Edge; typedef boost::graph_traits<FullGraphRep>::vertex_iterator FgVertexIter; typedef boost::graph_traits<FullGraphRep>::edge_iterator FgEdgeIter; typedef boost::graph_traits<FullGraphRep>::out_edge_iterator FgOutEdgeIter; typedef boost::graph_traits<FullGraphRep>::in_edge_iterator FgInEdgeIter; typedef std::pair<FgVertexIter, FgVertexIter> FgVertexIterPair; typedef std::pair<FgEdgeIter, FgEdgeIter> FgEdgeIterPair; typedef std::pair<FgOutEdgeIter, FgOutEdgeIter> FgOutEdgeIterPair; typedef std::pair<FgInEdgeIter, FgInEdgeIter> FgInEdgeIterPair; typedef boost::property_map<FullGraphRep, boost::edge_weight_t>::type EdgeWeightMap; struct ExplicitEdgePredicate { EdgeWeightMap weightMap; // NOTE jvs 6-Jan-2006: Lack of keyword "explicit" on constructors // here is intentional. ExplicitEdgePredicate() { } ExplicitEdgePredicate(EdgeWeightMap weightMapInit) : weightMap(weightMapInit) { } bool operator () (Edge const &edge) const { return boost::get(weightMap, edge) > 0; } }; typedef boost::filtered_graph<FullGraphRep, ExplicitEdgePredicate> GraphRep; typedef boost::graph_traits<GraphRep>::vertex_iterator VertexIter; typedef boost::graph_traits<GraphRep>::edge_iterator EdgeIter; typedef boost::graph_traits<GraphRep>::out_edge_iterator OutEdgeIter; typedef boost::graph_traits<GraphRep>::in_edge_iterator InEdgeIter; typedef std::pair<VertexIter, VertexIter> VertexIterPair; typedef std::pair<EdgeIter, EdgeIter> EdgeIterPair; typedef std::pair<OutEdgeIter, OutEdgeIter> OutEdgeIterPair; typedef std::pair<InEdgeIter, InEdgeIter> InEdgeIterPair; protected: // NOTE jvs 8-Jan-2007: We maintain two boost graphs; // graphRep is the "full" graph, including both implicit // and explicit dataflow edges; filteredGraph is a subgraph // view selecting just the explicit dataflows. Code which // accesses the graph needs to decide which view it wants // and use the corresponding iterators. FullGraphRep graphRep; GraphRep filteredGraph; typedef std::map<std::string, ExecStreamId> StreamMap; typedef StreamMap::const_iterator StreamMapConstIter; typedef std::map<std::pair<std::string, uint>,ExecStreamId> EdgeMap; // nested classes for implementing renderGraphviz class DotGraphRenderer; class DotVertexRenderer; class DotEdgeRenderer; /** * List of freed vertices */ std::vector<Vertex> freeVertices; /** * Map of name to stream */ StreamMap streamMap; /** * Map of name and output arc to stream output, after add-ons */ EdgeMap streamOutMap; /** * Result of topologically sorting graph (producers before consumers). */ std::vector<SharedExecStream> sortedStreams; /** * Transaction being executed. */ SharedLogicalTxn pTxn; /** * Target for row errors. */ SharedErrorTarget pErrorTarget; /** * Source for scratch buffers. */ SharedSegment pScratchSegment; /** * Resource governor */ SharedExecStreamGovernor pResourceGovernor; /** * Whether this graph is currently open. Note that this is not quite the * opposite of the inherited ClosableObject.needsClose, since a graph * needs to be closed before destruction if it has been prepared but never * opened. */ bool isOpen; /** * Whether this graph has been prepared. */ bool isPrepared; /** * Whether to close this graph in dataflow order (producers to consumers) */ bool doDataflowClose; class DynamicParamInfo { public: std::vector<ExecStreamId> readerStreamIds; std::vector<ExecStreamId> writerStreamIds; }; /** * Information on readers and writers of dynamic parameters. */ std::map<DynamicParamId, DynamicParamInfo> dynamicParamMap; /** * Whether to allow execution without a real transaction. */ bool allowDummyTxnId; virtual void closeImpl(); virtual void sortStreams(); virtual void openStream(SharedExecStream pStream); virtual void bindStreamBufAccessors(SharedExecStream pStream); virtual void mergeFrom(ExecStreamGraphImpl& src); virtual void mergeFrom( ExecStreamGraphImpl& src, std::vector<ExecStreamId> const& nodes); /** frees all nodes and edges: like removeStream() on all streams, but * faster */ virtual void clear(); /** adds a node */ virtual Vertex addVertex(SharedExecStream pStream); // manage the free list /** @return an available Vertex, first trying the free list */ Vertex newVertex(); /** releases a Vertex to the free list */ void freeVertex(Vertex); /** removes a stream from streamOutMap */ void removeFromStreamOutMap(SharedExecStream); virtual Edge getInputEdge(ExecStreamId stream, uint iInput); virtual Edge getOutputEdge(ExecStreamId stream, uint iOutput); public: explicit ExecStreamGraphImpl(); virtual ~ExecStreamGraphImpl() {} inline GraphRep const &getGraphRep(); inline FullGraphRep const &getFullGraphRep(); inline SharedExecStream getStreamFromVertex(Vertex); inline SharedExecStreamBufAccessor &getSharedBufAccessorFromEdge(Edge); inline ExecStreamBufAccessor &getBufAccessorFromEdge(Edge); // implement ExecStreamGraph virtual void setTxn(SharedLogicalTxn pTxn); virtual void setErrorTarget(SharedErrorTarget pErrorTarget); virtual void setScratchSegment( SharedSegment pScratchSegment); virtual void setResourceGovernor( SharedExecStreamGovernor pResourceGovernor); virtual SharedLogicalTxn getTxn(); virtual TxnId getTxnId(); virtual void enableDummyTxnId(bool enabled); virtual SharedExecStreamGovernor getResourceGovernor(); virtual void prepare(ExecStreamScheduler &scheduler); virtual void open(); virtual void addStream(SharedExecStream pStream); virtual void removeStream(ExecStreamId); virtual void addDataflow( ExecStreamId producerId, ExecStreamId consumerId, bool isImplicit = false); virtual void addOutputDataflow( ExecStreamId producerId); virtual void addInputDataflow( ExecStreamId consumerId); virtual void mergeFrom(ExecStreamGraph& src); virtual void mergeFrom( ExecStreamGraph& src, std::vector<ExecStreamId> const& nodes); virtual SharedExecStream findStream( std::string name); virtual SharedExecStream findLastStream( std::string name, uint iOutput); virtual void interposeStream( std::string name, uint iOutput, ExecStreamId interposedId); virtual SharedExecStream getStream(ExecStreamId id); virtual uint getInputCount( ExecStreamId streamId); virtual uint getOutputCount( ExecStreamId streamId); virtual SharedExecStream getStreamInput( ExecStreamId streamId, uint iInput); virtual SharedExecStreamBufAccessor getStreamInputAccessor( ExecStreamId streamId, uint iInput); virtual SharedExecStream getStreamOutput( ExecStreamId streamId, uint iOutput); virtual SharedExecStreamBufAccessor getStreamOutputAccessor( ExecStreamId streamId, uint iOutput); virtual std::vector<SharedExecStream> getSortedStreams(); virtual int getStreamCount(); virtual int getDataflowCount(); virtual void renderGraphviz(std::ostream &dotStream); virtual bool isAcyclic(); virtual void closeProducers(ExecStreamId streamId); virtual void declareDynamicParamWriter( ExecStreamId streamId, DynamicParamId dynamicParamId); virtual void declareDynamicParamReader( ExecStreamId streamId, DynamicParamId dynamicParamId); virtual const std::vector<ExecStreamId> &getDynamicParamWriters( DynamicParamId dynamicParamId); virtual const std::vector<ExecStreamId> &getDynamicParamReaders( DynamicParamId dynamicParamId); }; inline ExecStreamGraphImpl::GraphRep const & ExecStreamGraphImpl::getGraphRep() { return filteredGraph; } inline ExecStreamGraphImpl::FullGraphRep const & ExecStreamGraphImpl::getFullGraphRep() { return graphRep; } inline SharedExecStream ExecStreamGraphImpl::getStreamFromVertex( Vertex vertex) { return boost::get(boost::vertex_data, graphRep)[vertex]; } inline SharedExecStreamBufAccessor & ExecStreamGraphImpl::getSharedBufAccessorFromEdge( Edge edge) { return boost::get(boost::edge_data, graphRep)[edge]; } inline ExecStreamBufAccessor &ExecStreamGraphImpl::getBufAccessorFromEdge( Edge edge) { return *(getSharedBufAccessorFromEdge(edge)); } FENNEL_END_NAMESPACE #endif // End ExecStreamGraphImpl.h
763a4cb245949f443ee06dca205cd07dcb73798b
bc62fef73c32417ed4b71c193ab8b6ed712a73f1
/libnd4j/include/execution/cpu/LaunchContext.cpp
b02ff3cbbee9fa44f4b14ee3683c2cecca8ac410
[ "Apache-2.0", "MIT", "BSD-3-Clause" ]
permissive
deeplearning4j/deeplearning4j
0a1af00abc2fe7a843b50650b72c8200364b53bf
91131d0e1e2cf37002658764df29ae5c0e1f577b
refs/heads/master
2023-08-17T08:20:54.290807
2023-07-30T10:04:23
2023-07-30T10:04:23
14,734,876
13,626
4,793
Apache-2.0
2023-09-11T06:54:25
2013-11-27T02:03:28
Java
UTF-8
C++
false
false
3,157
cpp
LaunchContext.cpp
/* ****************************************************************************** * * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at * https://www.apache.org/licenses/LICENSE-2.0. * * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * * SPDX-License-Identifier: Apache-2.0 ******************************************************************************/ // // Created by raver119 on 30.11.17. // #include <exceptions/cuda_exception.h> #include <execution/AffinityManager.h> #include <execution/LaunchContext.h> #include <helpers/logger.h> #if defined(HAVE_VEDA) #include <ops/declarable/platform/vednn/veda_helper.h> #endif #include <thread> #if defined(SD_IOS_BUILD) || defined(SD_APPLE_BUILD) || defined(SD_ANDROID_BUILD) || defined(__NEC__) sd::ContextBuffers contextBuffers = sd::ContextBuffers(); #else thread_local sd::ContextBuffers contextBuffers = sd::ContextBuffers(); #endif #if defined(HAVE_ONEDNN) #include <dnnl.hpp> #endif namespace sd { LaunchContext::~LaunchContext() { #if defined(HAVE_ONEDNN) delete reinterpret_cast<dnnl::engine*>(_engine); #endif } std::vector<std::shared_ptr<LaunchContext>> LaunchContext::_contexts = std::vector<std::shared_ptr<LaunchContext>>(); SD_MAP_IMPL<int, std::mutex*> LaunchContext::_deviceMutexes; std::mutex LaunchContext::_mutex; //////////////////////////////////////////////////////////////////////// LaunchContext::LaunchContext() { // default constructor, just to make clang/ranlib happy _workspace = nullptr; _deviceID = 0; #if defined(HAVE_VEDA) VEDA::getInstance(); #endif #if defined(HAVE_ONEDNN) _engine = new dnnl::engine(dnnl::engine::kind::cpu, 0); #endif } LaunchContext::LaunchContext(sd::Pointer cudaStream, sd::Pointer reductionPointer, sd::Pointer scalarPointer, sd::Pointer allocationPointer) {} static std::mutex _lock; LaunchContext* LaunchContext::defaultContext() { { // synchronous block goes here std::lock_guard<std::mutex> lock(_lock); // TODO: we need it to be device-aware, but only once we add NUMA support for cpu if (LaunchContext::_contexts.empty()) LaunchContext::_contexts.emplace_back(std::make_shared<LaunchContext>()); } // return context for current device return LaunchContext::_contexts[0].get(); } std::mutex* LaunchContext::deviceMutex() { return &_mutex; } void LaunchContext::swapContextBuffers(ContextBuffers& buffers) { // } bool LaunchContext::isInitialized() { return true; } void LaunchContext::releaseBuffers() { // } sd::ErrorReference* LaunchContext::errorReference() { return contextBuffers.errorReference(); } void* LaunchContext::engine() { return _engine; } } // namespace sd
85d673bfefaf51f7b247ec4491d0343ac394ac08
0acb4ddf44ff01d2052f1d17052b05f3b676dbed
/Source/ProjectBD/Basic/BulletActor.h
53008d37402cca310164fdcda0d7529cc41475c1
[]
no_license
ldw9981/ProjectBD
d290482c9d7b9946955dec0a7d870d637a409723
50deeec078135c7d579ee76a849ae8fa3ba4b95a
refs/heads/master
2022-02-14T16:29:42.431036
2022-02-05T16:22:03
2022-02-05T16:22:03
163,127,961
0
0
null
null
null
null
UTF-8
C++
false
false
1,793
h
BulletActor.h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "BulletActor.generated.h" UCLASS() class PROJECTBD_API ABulletActor : public AActor { GENERATED_BODY() public: // Sets default values for this actor's properties ABulletActor(); UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Component") class USphereComponent* Sphere; UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Component") class UStaticMeshComponent* Mesh; UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Component") class UProjectileMovementComponent* ProjectileMovement; UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Effect") class UParticleSystem* HitEffect; UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Effect") class UParticleSystem* BloodEffect; UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Effect") class UMaterialInstance* BulletDecal; float Damage = 1.0f; protected: // Called when the game starts or when spawned virtual void BeginPlay() override; public: // Called every frame virtual void Tick(float DeltaTime) override; UFUNCTION(Client, Reliable) void S2A_HitEffectBlood(FVector Point, FRotator Rotation); void S2A_HitEffectBlood_Implementation(FVector Point, FRotator Rotation); UFUNCTION(Client, Reliable) void S2A_HitEffectBlock(FVector Point, FRotator Rotation); void S2A_HitEffectBlock_Implementation(FVector Point, FRotator Rotation); virtual void NotifyHit(class UPrimitiveComponent* MyComp, AActor* Other, class UPrimitiveComponent* OtherComp, bool bSelfMoved, FVector HitLocation, FVector HitNormal, FVector NormalImpulse, const FHitResult& Hit) override; virtual void Destroyed() override; };
6d7df9a7544d7a74ffa53c907ef0c3cbfd19a045
46087ddd70356ed4717dc23ea2bb9cc4e003dd63
/Codeforces Round #550 (Div. 3) - A/Codeforces Round #550 (Div. 3) - A/main.cpp
973755aa548a65568047bcdfc54bc72e8edd96eb
[]
no_license
smhemel/Codeforces-Online-Judge
dae1b6a128fe90923d3cb308b3288b6d5df4df4e
e143341ca0a0149ee088bfbce50dac923b6e3d47
refs/heads/master
2020-04-04T13:16:02.975187
2019-11-09T09:20:14
2019-11-09T09:20:14
155,955,102
0
0
null
null
null
null
UTF-8
C++
false
false
634
cpp
main.cpp
// // main.cpp // Codeforces Round #550 (Div. 3) - A // // Created by S M HEMEL on 2/4/19. // Copyright © 2019 S M HEMEL. All rights reserved. // #include <bits/stdc++.h> using namespace std; int main() { string s; int n; cin >> n; while (n--) { cin >> s; int len = s.size(); bool f = true; sort(s.begin(), s.end()); for(int i=1; i<len; i++){ int c = s[0]+i; int ch = s[i]; if(c!=ch){ puts("No"); f = false; break; } } if(f) puts("Yes"); } return 0; }
1e680fc20b60e819de632d3551faef0e6bf2dbc5
681d78f4a954f7d0dec441a97d07420df36b52f2
/SPOJ/shpath.cpp
c7cef6ec3a76758b65f42fe828a4ade34b6a2640
[]
no_license
pkc232/CompetitiveCoding
117364bea4aee04ff570615f4881391c9f243a15
2cf9216875678e3e8cf6ca91d7bb13bb597387ba
refs/heads/master
2022-02-09T07:16:39.273208
2022-01-16T17:14:59
2022-01-16T17:14:59
158,157,982
1
0
null
null
null
null
UTF-8
C++
false
false
1,215
cpp
shpath.cpp
#include <bits/stdc++.h> #define ll long long int #define pb push_back #define mp make_pair #define ff first #define ss second #define MOD 1000000007 #define pii pair<int,int> using namespace std; #define NOV 10005 unordered_map<string,int> cities; vector<pair<int,int> > gr[NOV]; int dis[NOV]; int n; int dijkstra(int s,int t){ for(int i=1;i<=n;i++) dis[i] = INT_MAX; dis[s] = 0; priority_queue<pii, vector<pii>, greater<pii> > pq; pq.push(mp(dis[s],s)); while(!pq.empty()){ pii top = pq.top(); pq.pop(); int v = top.ss, d = top.ff; if(v==t) return dis[t]; if(d<=dis[v]){ for(pii p:gr[v]){ int v2 = p.ff, cost = p.ss; if(dis[v2] > dis[v] + cost){ dis[v2] = dis[v] + cost; pq.push(mp(dis[v2],v2)); } } } } return dis[t]; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int t; int m; int u,w,q; cin>>t; string city, city1,city2; while(t--){ cin>>n; cities.clear(); for(int i=1;i<=n;i++){ cin>>city; cities[city] = i; cin>>m; gr[i].clear(); while(m--){ cin>>u>>w; gr[i].pb(mp(u,w)); } } cin>>q; while(q--){ cin>>city1>>city2; cout<<dijkstra(cities[city1],cities[city2])<<endl; } } }
fece8e1ec5336a5047a11e99ef872d79a3fcff16
49914b07703ba7f255406781f33419b9df9f99fb
/src/store/StoreMessage.h
6a8751a9b2bc8765147f8d63ab65d5f81a8c473c
[ "Apache-2.0" ]
permissive
chenjun-bj/pluto
831fe07bf21a3772e8f87e39e3bf18b32244ebb1
0d4001bbed742afb39505af4662c5ffbe189f222
refs/heads/master
2020-05-30T15:10:04.034051
2020-03-28T11:22:20
2020-03-28T11:22:20
37,918,370
2
0
null
null
null
null
UTF-8
C++
false
false
7,970
h
StoreMessage.h
/** ******************************************************************************* * StoreMessage.h * * * * Store message commons * ******************************************************************************* */ #ifndef _STORE_MSG_COMMON_H_ #define _STORE_MSG_COMMON_H_ /** ******************************************************************************* * Headers * ******************************************************************************* */ #include <string> #include <stdexcept> #include <memory> #include "stdinclude.h" #include "messages.h" #include "plexcept.h" /** ******************************************************************************* * Constants * ******************************************************************************* */ /** ******************************************************************************* * Forward declaraction * ******************************************************************************* */ class Connection; /** ******************************************************************************* * Class declaraction * ******************************************************************************* */ enum class MessageOriginator : int { PLUTO_FIRST = 0, Client = PLUTO_FIRST, Server, PLUTO_LAST }; inline std::string get_originator_desc(MessageOriginator orig) { switch(orig) { case MessageOriginator::Client: return "Client"; case MessageOriginator::Server: return "Server"; default: return "Unknown: " + std::to_string(static_cast<int>(orig)); } return "Bad"; } class StoreMessage : public Message { public: StoreMessage(unsigned char* buf, const size_t sz, bool managebuf = false) : Message(buf, sz, managebuf), m_txid(-1), m_replica_type(-1), m_originator(MessageOriginator::Client), m_pconn(nullptr) { }; StoreMessage(MsgType type, MessageOriginator originator, int64 txid, int version=PLUTO_CURRENT_VERSION, int magic=PLUTO_MSG_MAGIC) : Message(type, version, magic), m_txid(txid), m_replica_type(-1), m_originator(originator), m_pconn(nullptr) { } virtual ~StoreMessage() { m_pconn.reset(); } void set_originator(MessageOriginator originator) { m_originator = originator; } MessageOriginator get_originator() const { return m_originator; } void set_txid(int64 txid) { m_txid = txid; } int64 get_txid() const { return m_txid; } int set_replica_type(int32 tp) { if ((tp<0) || (tp>=PLUTO_NODE_REPLICAS_NUM)) { return -1; } m_replica_type = tp; return 0; } int32 get_replica_type() const { return m_replica_type; } void set_connection(std::shared_ptr<Connection > pconn) { m_pconn = pconn; } std::shared_ptr<Connection > get_connection() const { return m_pconn; } boost::asio::ip::tcp::endpoint get_dest_endpoint() const { std::pair<boost::asio::ip::address, unsigned short> addr = get_destination(); return boost::asio::ip::tcp::endpoint(addr.first, addr.second); } void set_dest_endpoint(const boost::asio::ip::tcp::endpoint& ep) { set_destination(ep.address(), ep.port()); } int build_msg_body(unsigned char* buf, size_t sz) { // format: int64 -- txid // int32 -- originator // int32 -- reserved if (buf == nullptr) { getlog()->sendlog(LogLevel::ERROR, "Store message, build body nullptr received\n"); return -1; } if (sz < get_bodysize()) { getlog()->sendlog(LogLevel::ERROR, "Store message, build body no enough buffer, size=%d, required %d\n", sz, get_bodysize()); return -1; } network_write_int64(buf, m_txid); buf += sizeof(int64); int32 ival = static_cast<int32>(m_originator); ival = htonl(ival); memcpy(buf, &ival, sizeof(int32)); buf += sizeof(int32); ival = htonl(m_replica_type); memcpy(buf, &ival, sizeof(int32)); buf += sizeof(int32); return build_storemsg_body(buf, sz - get_storemsg_hdrsize()); } virtual int build_storemsg_body(unsigned char* buf, size_t sz) = 0; void parse_msg_body(unsigned char* buf, size_t sz) throw (parse_error) { if (buf==nullptr) { throw parse_error("StoreMessage: parse null buffer"); } if (sz < get_storemsg_hdrsize()) { throw parse_error("StoreMessage: size error"); } m_txid = network_read_int64(buf); buf += sizeof(int64); int32 ival; memcpy(&ival, buf, sizeof(int32)); ival = ntohl(ival); buf += sizeof(int32); int hi, low; low = static_cast<int>(MessageOriginator::PLUTO_FIRST); hi = static_cast<int>(MessageOriginator::PLUTO_LAST); if ((ival < low) || (ival >= hi)) { throw parse_error("StoreMessage: invalid originator " + std::to_string(ival)); } m_originator = static_cast<MessageOriginator>(ival); // reserved memcpy(&ival, buf, sizeof(int32)); ival = ntohl(ival); buf += sizeof(int32); m_replica_type = ival; parse_storemsg_body(buf, sz - get_storemsg_hdrsize()); } virtual void parse_storemsg_body(const unsigned char* buf, const size_t sz) throw (parse_error) = 0; size_t get_bodysize() const { return get_storemsg_hdrsize() + get_storemsg_bodysize(); } size_t get_storemsg_hdrsize() const { return sizeof(int64) + sizeof(int32)*2; } virtual size_t get_storemsg_bodysize() const = 0; void dump_body(int (*output)(const char*, ...)=printf, bool verbose=false) const { output("Originator : '%s'", get_originator_desc(m_originator).c_str()); output("TransactionId: '%ld'", m_txid); dump_storemsg_body(output, verbose); } virtual void dump_storemsg_body(int (*output)(const char*, ...)=printf, bool verbose=false) const = 0; protected: void network_write_int64(unsigned char* buf, int64 val) { int32 ival; ival = val >> 32 & 0xFFFFFFFF; ival = htonl(ival); memcpy(buf, &ival, sizeof(int32)); buf += sizeof(int32); ival = val & 0xFFFFFFFF; ival = htonl(ival); memcpy(buf, &ival, sizeof(int32)); buf += sizeof(int32); } int64 network_read_int64(const unsigned char* buf) { int32 ival1, ival2; memcpy(&ival1, buf, sizeof(int32)); ival1 = ntohl(ival1); buf += sizeof(int32); memcpy(&ival2, buf, sizeof(int32)); ival2 = ntohl(ival2); int64 lval = ival1; lval = lval<<32 | ival2; return lval; } private: int64 m_txid; int32 m_replica_type; MessageOriginator m_originator; std::shared_ptr<Connection > m_pconn; }; /** ******************************************************************************* * Function declaractions * ******************************************************************************* */ #endif // _STORE_MSG_COMMON_H_
f5f347ebb97e126f494b3c2bf495de1b23486c7c
24bdb6046f9102197eed30f03d2ddcd780f8783d
/src/modules/m_cap.h
ce5aec8ba4b506c62128de18726aeb4904177280
[]
no_license
thepaul/inspircd-deb
4044288a230cc51b3ec01c01c516c178ae6ad986
303a77afee7f8348a53aaac6090eefd177570322
refs/heads/master
2021-01-23T21:28:04.404633
2010-02-05T05:28:53
2010-02-05T05:28:53
918,949
0
1
null
null
null
null
UTF-8
C++
false
false
1,551
h
m_cap.h
/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ #ifndef __CAP_H__ #define __CAP_H__ #include <map> #include <string> class CapData : public classbase { public: irc::string type; std::vector<std::string> wanted; std::vector<std::string> ack; User* user; Module* creator; }; void GenericCapHandler(Event* ev, const std::string &extname, const std::string &cap) { if (ev->GetEventID() == "cap_req") { CapData *data = (CapData *) ev->GetData(); std::vector<std::string>::iterator it; if ((it = std::find(data->wanted.begin(), data->wanted.end(), cap)) != data->wanted.end()) { // we can handle this, so ACK it, and remove it from the wanted list data->ack.push_back(*it); data->wanted.erase(it); data->user->Extend(extname); } } if (ev->GetEventID() == "cap_ls") { CapData *data = (CapData *) ev->GetData(); data->wanted.push_back(cap); } if (ev->GetEventID() == "cap_list") { CapData *data = (CapData *) ev->GetData(); if (data->user->GetExt(extname)) data->wanted.push_back(cap); } if (ev->GetEventID() == "cap_clear") { CapData *data = (CapData *) ev->GetData(); data->ack.push_back("-" + cap); data->user->Shrink(extname); } } #endif
706204e39f2a1055f122b17240b3eb95eed7e3f2
d9452ea7d3f9aaa77bc7d538c987ccbd0f8cfed9
/ListClient.cpp
75438108bcf16bbb0409f845dee80be61cb4d9d8
[]
no_license
ProgrammingLightbulb/adts
5c477f48a078cf017113cb93671b569349e5b383
11bee53a1b6c88d547b75c214f1e6724c021c77c
refs/heads/master
2021-01-17T16:17:42.589411
2017-03-06T23:51:51
2017-03-06T23:51:51
84,124,643
0
0
null
2017-03-06T21:53:10
2017-03-06T21:53:10
null
UTF-8
C++
false
false
1,147
cpp
ListClient.cpp
#include <iostream> #include "List.h" using namespace std; /*int menu(); int menu() { int opt = 0; cout << "LIST OF OPTIONS" << endl; cout << "Option 1 - Insert an element into the list." << endl; cout << "Option 2 - Remove an element from the list." << endl; cout << "Option 3 - View the number of elements in the list." << endl; cout << "Option 4 - View any element in the list." << endl; cout << "Option 5 - Delete any element in the list." << endl; cout << "Option 6 - Delete all the elements in the list." << endl; cout << "Option 7 - Exit program" << endl; cout << "Please choose an option from the above." << endl; cin >> opt; return opt; }*/ int main() { List L1; /*int choice = 0; int k = 0; int num = 0; while((choice=menu()) != 7) { switch(choice) { case 1:cout << "Enter the number to be inserted into the list." << endl; cin >> num; cout <<< endl << "Enter the break; case 2: break; case 3: break; case 4: break; case 5: break; case 6: break; default: break; }//end switch }//end while return 0; */ }
3e2ad2b5d117e461491f50d3fd9a2c22f696813a
a9effd0e63e65382ab2c3c5fbb5c5116f4306033
/FCollada/FCDocument/FCDPhysicsModelInstance.cpp
73624029e5e3b7520932e3aa24b382e6fd1fc9c6
[ "LicenseRef-scancode-x11-xconsortium-veillard", "MIT" ]
permissive
jwthomp/OGE
7cdf8ce96d0c44ea1bfcac063b6a2a745cf23a60
ddf059dea71c0879cb44c1c62ba4df1d6086b721
refs/heads/master
2022-11-19T21:54:57.073795
2020-07-22T17:21:16
2020-07-22T17:21:16
281,739,974
0
0
null
null
null
null
UTF-8
C++
false
false
6,197
cpp
FCDPhysicsModelInstance.cpp
/* Copyright (C) 2005-2007 Feeling Software Inc. Portions of the code are: Copyright (C) 2005-2007 Sony Computer Entertainment America MIT License: http://www.opensource.org/licenses/mit-license.php */ #include "StdAfx.h" #include "FCDocument/FCDocument.h" #include "FCDocument/FCDController.h" #include "FCDocument/FCDEntity.h" #include "FCDocument/FCDForceField.h" #include "FCDocument/FCDPhysicsForceFieldInstance.h" #include "FCDocument/FCDLibrary.h" #include "FCDocument/FCDPhysicsModel.h" #include "FCDocument/FCDPhysicsModelInstance.h" #include "FCDocument/FCDPhysicsRigidBodyInstance.h" #include "FCDocument/FCDPhysicsRigidConstraintInstance.h" #include "FUtils/FUDaeParser.h" #include "FUtils/FUDaeWriter.h" #include "FUtils/FUUniqueStringMap.h" using namespace FUDaeParser; using namespace FUDaeWriter; ImplementObjectType(FCDPhysicsModelInstance); FCDPhysicsModelInstance::FCDPhysicsModelInstance(FCDocument* document) : FCDEntityInstance(document, NULL, FCDEntity::PHYSICS_MODEL) { } FCDPhysicsModelInstance::~FCDPhysicsModelInstance() { } FCDPhysicsRigidBodyInstance* FCDPhysicsModelInstance::AddRigidBodyInstance(FCDPhysicsRigidBody* rigidBody) { FCDPhysicsRigidBodyInstance* instance = new FCDPhysicsRigidBodyInstance(GetDocument(), this, rigidBody); instances.push_back(instance); SetDirtyFlag(); return instance; } FCDPhysicsRigidConstraintInstance* FCDPhysicsModelInstance::AddRigidConstraintInstance(FCDPhysicsRigidConstraint* rigidConstraint) { FCDPhysicsRigidConstraintInstance* instance = new FCDPhysicsRigidConstraintInstance(GetDocument(), this, rigidConstraint); instances.push_back(instance); SetDirtyFlag(); return instance; } FCDPhysicsForceFieldInstance* FCDPhysicsModelInstance::AddForceFieldInstance(FCDForceField* forceField) { FCDEntityInstance* instance = FCDEntityInstanceFactory::CreateInstance(GetDocument(), (FCDSceneNode*) NULL, forceField); instances.push_back(instance); SetDirtyFlag(); return (FCDPhysicsForceFieldInstance*)instance; } FCDEntityInstance* FCDPhysicsModelInstance::Clone(FCDEntityInstance* _clone) const { FCDPhysicsModelInstance* clone = NULL; if (_clone == NULL) _clone = clone = new FCDPhysicsModelInstance(const_cast<FCDocument*>(GetDocument())); else if (_clone->HasType(FCDPhysicsModelInstance::GetClassType())) clone = (FCDPhysicsModelInstance*) _clone; Parent::Clone(_clone); if (clone != NULL) { for (FCDEntityInstanceContainer::const_iterator it = instances.begin(); it != instances.end(); ++it) { FCDEntityInstance* clonedInstance = NULL; switch ((*it)->GetEntityType()) { case FCDEntity::PHYSICS_RIGID_BODY: clonedInstance = clone->AddRigidBodyInstance(); break; case FCDEntity::PHYSICS_RIGID_CONSTRAINT: clonedInstance = clone->AddRigidConstraintInstance(); break; case FCDEntity::FORCE_FIELD: clonedInstance = clone->AddForceFieldInstance(); break; default: FUFail(break); } if (clonedInstance != NULL) (*it)->Clone(clonedInstance); } } return _clone; } bool FCDPhysicsModelInstance::LoadFromXML(xmlNode* instanceNode) { bool status = FCDEntityInstance::LoadFromXML(instanceNode); if (!status) return status; if (GetEntity() == NULL) { FUError::Error(FUError::ERROR, FUError::WARNING_MISSING_URI_TARGET, instanceNode->line); } // Check for the expected instantiation node type if (!IsEquivalent(instanceNode->name, DAE_INSTANCE_PHYSICS_MODEL_ELEMENT)) { FUError::Error(FUError::ERROR, FUError::ERROR_UNKNOWN_ELEMENT, instanceNode->line); } //this is already done in the FCDSceneNode // fm::string physicsModelId = ReadNodeProperty(instanceNode, DAE_TARGET_ATTRIBUTE); // entity = GetDocument()->FindPhysicsModel(physicsModelId); // if (!entity) return status.Fail(FS("Couldn't find physics model for instantiation"), instanceNode->line); xmlNodeList rigidBodyNodes; FindChildrenByType(instanceNode, DAE_INSTANCE_RIGID_BODY_ELEMENT, rigidBodyNodes); for (xmlNodeList::iterator itB = rigidBodyNodes.begin(); itB != rigidBodyNodes.end(); ++itB) { FCDPhysicsRigidBodyInstance* instance = AddRigidBodyInstance(NULL); status &= (instance->LoadFromXML(*itB)); } xmlNodeList rigidConstraintNodes; FindChildrenByType(instanceNode, DAE_INSTANCE_RIGID_CONSTRAINT_ELEMENT, rigidConstraintNodes); for (xmlNodeList::iterator itC = rigidConstraintNodes.begin(); itC != rigidConstraintNodes.end(); ++itC) { FCDPhysicsRigidConstraintInstance* instance = AddRigidConstraintInstance(NULL); status &= (instance->LoadFromXML(*itC)); } xmlNodeList forceFieldNodes; FindChildrenByType(instanceNode, DAE_INSTANCE_FORCE_FIELD_ELEMENT, forceFieldNodes); for (xmlNodeList::iterator itN = forceFieldNodes.begin(); itN != forceFieldNodes.end(); ++itN) { FCDPhysicsForceFieldInstance* instance = AddForceFieldInstance(NULL); status &= (instance->LoadFromXML(*itN)); } SetDirtyFlag(); return status; } // Write out the instantiation information to the XML node tree xmlNode* FCDPhysicsModelInstance::WriteToXML(xmlNode* parentNode) const { xmlNode* instanceNode = FCDEntityInstance::WriteToXML(parentNode); // The sub-instances must be ordered correctly: force fields first, then rigid bodies; rigid constraints are last. for (FCDEntityInstanceContainer::const_iterator it = instances.begin(); it != instances.end(); ++it) { if ((*it)->GetEntityType() == FCDEntity::FORCE_FIELD) { (*it)->LetWriteToXML(instanceNode); } } for (FCDEntityInstanceContainer::const_iterator it = instances.begin(); it != instances.end(); ++it) { if ((*it)->GetEntityType() == FCDEntity::PHYSICS_RIGID_BODY) { (*it)->LetWriteToXML(instanceNode); } } for (FCDEntityInstanceContainer::const_iterator it = instances.begin(); it != instances.end(); ++it) { if ((*it)->GetEntityType() == FCDEntity::PHYSICS_RIGID_CONSTRAINT) { (*it)->LetWriteToXML(instanceNode); } } Parent::WriteToExtraXML(instanceNode); return instanceNode; } void FCDPhysicsModelInstance::CleanSubId(FUSUniqueStringMap* parentStringMap) { Parent::CleanSubId(parentStringMap); FUSUniqueStringMap myStringMap; for (FCDEntityInstanceContainer::iterator it = instances.begin(); it != instances.end(); ++it) { (*it)->CleanSubId(&myStringMap); } }
f7ca33e553e28349c6f76ae2cd1a1fe4803b4c18
b289d4a155263136d71ab4f9a6f710fe5324e5d8
/MapEditor/N3BASE/N3UIArea.h
fa531e7a9a46262d1cf8851c2cf0940505b4b699
[ "MIT" ]
permissive
iKlotho/KnightOnline
1f63f588cb532de89a824407da6dc53f3a38c663
bd3502e1e826a1b9007629fcb3c07c4f6370eba4
refs/heads/master
2022-10-16T21:26:10.842056
2020-06-13T11:56:04
2020-06-13T11:56:04
271,982,708
0
0
MIT
2020-06-13T09:57:25
2020-06-13T09:57:25
null
UHC
C++
false
false
1,440
h
N3UIArea.h
// N3UIArea.h: interface for the CN3UIArea class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_N3UIAREA_H__895A2972_7C58_4264_92AA_B740D40B0C22__INCLUDED_) #define AFX_N3UIAREA_H__895A2972_7C58_4264_92AA_B740D40B0C22__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "N3UIBase.h" enum eUI_AREA_TYPE { UI_AREA_TYPE_NONE = 0, UI_AREA_TYPE_SLOT, UI_AREA_TYPE_INV, UI_AREA_TYPE_TRADE_NPC, UI_AREA_TYPE_PER_TRADE_MY, UI_AREA_TYPE_PER_TRADE_OTHER, UI_AREA_TYPE_DROP_ITEM, UI_AREA_TYPE_SKILL_TREE, UI_AREA_TYPE_SKILL_HOTKEY, UI_AREA_TYPE_REPAIR_INV, UI_AREA_TYPE_REPAIR_NPC, UI_AREA_TYPE_TRADE_MY, UI_AREA_TYPE_PER_TRADE_INV, }; class CN3UIArea : public CN3UIBase { public: CN3UIArea(); virtual ~CN3UIArea(); public: eUI_AREA_TYPE m_eAreaType; public: virtual void Release(); virtual bool Load(HANDLE); virtual void SetRegion(const RECT& Rect); virtual DWORD MouseProc(DWORD dwFlags, const POINT& ptCur, const POINT& ptOld); #ifndef _REPENT #ifdef _N3GAME virtual bool ReceiveMessage(CN3UIBase* pSender, DWORD dwMsg); #endif #endif #ifdef _N3TOOL // 툴에서 사용하기 위한 함수 virtual void operator = (const CN3UIArea& other); virtual bool Save(HANDLE hFile); #endif }; #endif // !defined(AFX_N3UIAREA_H__895A2972_7C58_4264_92AA_B740D40B0C22__INCLUDED_)
b9efa112389999fa97906a11bbe61af9fbf2a098
26df6604faf41197c9ced34c3df13839be6e74d4
/src/org/apache/poi/poifs/storage/SmallDocumentBlock.hpp
d03110f4405f9334fe9494a86108107dc13b8e6d
[ "Apache-2.0" ]
permissive
pebble2015/cpoi
58b4b1e38a7769b13ccfb2973270d15d490de07f
6dcc0c5e13e3e722b4ef9fd0baffbf62bf71ead6
refs/heads/master
2021-07-09T09:02:41.986901
2017-10-08T12:12:56
2017-10-08T12:12:56
105,988,119
0
0
null
null
null
null
UTF-8
C++
false
false
3,548
hpp
SmallDocumentBlock.hpp
// Generated from /POI/java/org/apache/poi/poifs/storage/SmallDocumentBlock.java #pragma once #include <fwd-POI.hpp> #include <java/io/fwd-POI.hpp> #include <java/lang/fwd-POI.hpp> #include <java/util/fwd-POI.hpp> #include <org/apache/poi/poifs/common/fwd-POI.hpp> #include <org/apache/poi/poifs/storage/fwd-POI.hpp> #include <java/lang/Object.hpp> #include <org/apache/poi/poifs/storage/BlockWritable.hpp> #include <org/apache/poi/poifs/storage/ListManagedBlock.hpp> template<typename ComponentType, typename... Bases> struct SubArray; namespace poi { namespace poifs { namespace storage { typedef ::SubArray< ::poi::poifs::storage::BlockWritable, ::java::lang::ObjectArray > BlockWritableArray; typedef ::SubArray< ::poi::poifs::storage::ListManagedBlock, ::java::lang::ObjectArray > ListManagedBlockArray; typedef ::SubArray< ::poi::poifs::storage::SmallDocumentBlock, ::java::lang::ObjectArray, BlockWritableArray, ListManagedBlockArray > SmallDocumentBlockArray; } // storage } // poifs } // poi struct default_init_tag; class poi::poifs::storage::SmallDocumentBlock final : public virtual ::java::lang::Object , public BlockWritable , public ListManagedBlock { public: typedef ::java::lang::Object super; private: static constexpr int32_t BLOCK_SHIFT { int32_t(6) }; ::int8_tArray* _data { }; static constexpr int8_t _default_fill { int8_t(-1) }; static constexpr int32_t _block_size { int32_t(64) }; static constexpr int32_t BLOCK_MASK { int32_t(63) }; int32_t _blocks_per_big_block { }; ::poi::poifs::common::POIFSBigBlockSize* _bigBlockSize { }; protected: void ctor(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize, ::int8_tArray* data, int32_t index); void ctor(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize); private: static int32_t getBlocksPerBigBlock(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize); public: static SmallDocumentBlockArray* convert(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize, ::int8_tArray* array, int32_t size); static int32_t fill(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize, ::java::util::List* blocks); static SmallDocumentBlockArray* convert(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize, BlockWritableArray* store, int32_t size) /* throws(IOException, ArrayIndexOutOfBoundsException) */; static ::java::util::List* extract(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize, ListManagedBlockArray* blocks) /* throws(IOException) */; static DataInputBlock* getDataInputBlock(SmallDocumentBlockArray* blocks, int32_t offset); static int32_t calcSize(int32_t size); public: /* protected */ int32_t getSmallBlocksPerBigBlock(); private: static SmallDocumentBlock* makeEmptySmallDocumentBlock(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize); static int32_t convertToBlockCount(int32_t size); public: void writeBlocks(::java::io::OutputStream* stream) /* throws(IOException) */ override; ::int8_tArray* getData() override; ::poi::poifs::common::POIFSBigBlockSize* getBigBlockSize(); // Generated private: SmallDocumentBlock(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize, ::int8_tArray* data, int32_t index); public: /* protected */ SmallDocumentBlock(::poi::poifs::common::POIFSBigBlockSize* bigBlockSize); protected: SmallDocumentBlock(const ::default_init_tag&); public: static ::java::lang::Class *class_(); private: virtual ::java::lang::Class* getClass0(); };
39435c4f170f86029a2577f02d79803589a47aff
381b5055c7429a1397ef5fd6b4097f73ea23376a
/source/lab3/solver.cpp
1df41b03cec2cfa9ea53e8666bd8bec606eb643c
[ "Unlicense" ]
permissive
Jovvik/methopt-lab
33137a7afc2069523ca95077b9da38f0f682f0eb
2c3acaf653c7214a925ed1292b9d1d30a33d2737
refs/heads/master
2023-05-15T09:20:28.348701
2021-06-08T17:39:39
2021-06-08T17:39:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
572
cpp
solver.cpp
#include <lab2/vector.h> #include <lab3/solver.h> #include <fstream> #include <string> using namespace lab3; lab2::Vector Solver::solve(const lab2::Matrix& A, const lab2::Vector& b) { std::ofstream A_of("data/A.txt"); A_of << A; A_of.close(); std::ofstream b_of("data/b.txt"); b_of << b; b_of.close(); std::string command = "java -cp build-gradle/classes/java/main matrix.Solver " + std::to_string(A.size()); std::system(command.c_str()); std::ifstream x_if("data/x.txt"); lab2::Vector x(x_if); x_if.close(); return x; }
18abde2ecc5bd7dd2169abd042475a389ed9e36d
8cfc1dbef37eb45ea16e4ef4a49c386439eaf0ca
/computer_player.cc
bc3b9c0a34b9ba7480a0a7f6a050533760d3415d
[]
no_license
catarak/battleship
3c0053127ce40285cf9e46d436d4ca33444fbcd8
b68ee64e12fd90c09418100379e5f3a3bd5458b7
refs/heads/master
2021-01-01T05:38:51.676869
2014-12-03T03:30:45
2014-12-03T03:30:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,529
cc
computer_player.cc
//Cassie Tarakajian, ctarakajian@gmail.com #include "computer_player.h" #include <algorithm> #include <random> #include <iostream> ComputerPlayer::ComputerPlayer(TargetBoard *target_board, std::map<char, Ship> ship_map, bool intelligent): _intelligent(intelligent), _target_board(target_board), _ship_map(ship_map) { set_max_ship_length(); initialize_cardinalities(); } void ComputerPlayer::initialize_cardinalities() { for (int i = 0; i < (BOARD_SIDE + 1)/2; i++) { //BOARD_SIDE+1 in case board for (int j = 0; j < (BOARD_SIDE + 1)/2; j++) { //side is odd _strategy.cardinalities[i][j] = _strategy.cardinalities[i][BOARD_SIDE-1-j] = _strategy.cardinalities[BOARD_SIDE-1-i][j] = _strategy.cardinalities[BOARD_SIDE-1-i][BOARD_SIDE-1-j]= i + j + (_strategy.max_ship_length-1)*2; } } } void ComputerPlayer::update_cardinalities() { for (int row = 0; row < BOARD_SIDE; row++) { for (int column = 0; column < BOARD_SIDE; column++) { if (_strategy.cardinalities[row][column] != -1) { // make sure we are not looking at a -1 int count = 0; // the cardinality counter for (int distance = 1; distance < _strategy.max_ship_length; distance++) { // count the spaces to the right if (column + distance >= BOARD_SIDE) { // if we are out of bounds break; } if (_strategy.cardinalities[row][column + distance] == -1) { // we have found a space that has been shot at break; } count++; // we are in bounds, and it is not a known space } for (int distance = 1; distance < _strategy.max_ship_length; distance++) { // count the spaces to the left if (column - distance < 0) { // if we are out of bounds break; } if (_strategy.cardinalities[row][column - distance] == -1) { // we have found a space that has been shot at break; } count++; // we are in bounds, and it is not a known space } for (int distance = 1; distance < _strategy.max_ship_length; distance++) { // count the spaces up if (row - distance < 0) { // if we are out of bounds break; } if (_strategy.cardinalities[row - distance][column] == -1) { // we have found a space that has been shot at break; } count++; // we are in bounds, and it is not a known space } for (int distance = 1; distance < _strategy.max_ship_length; distance++) { // count the spaces down if (row + distance >= BOARD_SIDE) { // if we are out of bounds break; } if (_strategy.cardinalities[row + distance][column] == -1) { // we have found a space that has been shot at break; } count++; // we are in bounds, and it is not a known space } _strategy.cardinalities[row][column] = count; } } } } void ComputerPlayer::print_cardinalities() { std::string horizontal_line = "-----------------------------------------"; std::cout << std::endl << " 1 2 3 4 5 6 7 8 9 0 " << std::endl << " ---------------------------- " << std::endl; for (int row = 0; row < 10; row++) { // iterate through all the rows std::cout << static_cast<char> (row + 65) << " | "; for (int column = 0; column < 10; column++) { // iterate through all the columns if (column != 0) { // we want this additional space eacg tune except the first std::cout << " "; } std::cout << " " << _strategy.cardinalities[row][column]; // compute the index of the array //to be printed and print it } std::cout << std::endl; } std::cout << std::endl; } void ComputerPlayer::set_max_ship_length() { _strategy.max_ship_length = std::max_element(_ship_map.begin(), _ship_map.end(), ValueCompare())->second.length(); } std::pair<int, int> ComputerPlayer::get_move() { std::pair<int,int> move = {0,0}; if (!_intelligent) { get_random_move(move); } else if(_strategy.tracking_ship) { get_tracking_ship_move(move); } else { get_strategic_move(move); } //computer remembers its last move _last_move = move; //update candinalities _strategy.cardinalities[move.first][move.second] = -1; return move; } void ComputerPlayer::get_random_move(std::pair<int,int> &move) { int row, column; std::random_device rd; std::mt19937 gen(rd()); std::uniform_int_distribution<> random_position(0, 9); do { row = random_position(gen); column = random_position(gen); } while(_target_board->get_char(row,column) != 'o'); move = std::make_pair(row, column); } void ComputerPlayer::set_tracking_position(int &row, int &column) { row = _strategy.first_hit.first + _strategy.distance * ORT_TO_VECTOR.at(static_cast<Orientation>(_strategy.ort)).first; column = _strategy.first_hit.second + _strategy.distance * ORT_TO_VECTOR.at(static_cast<Orientation>(_strategy.ort)).second; } void ComputerPlayer::change_tracking_orientation(int &row, int &column, char &position) { _strategy.ort += 1; std::cout << "Orientation: " <<_strategy.ort << std::endl; if (_strategy.ort > Orientation::DOWN) { //change dat first hit!!!!! _strategy.ship_hits.erase(_strategy.ship_hits.begin()); _strategy.first_hit = _strategy.ship_hits.front(); _strategy.ort = 0; } _strategy.distance = 0; set_tracking_position(row, column); position = _target_board->get_char(row, column); } void ComputerPlayer::get_tracking_ship_move(std::pair<int,int> &move) { std::cout << "Trying to get tracking ship move!" << std::endl; int trk_row, trk_column; set_tracking_position(trk_row, trk_column); char current_guess = _target_board->get_char(trk_row, trk_column); while (current_guess == HIT || current_guess == MISS){ //If ship could still possibly be in this orientation if (current_guess == HIT && _strategy.distance < _strategy.max_ship_length) { //then guess the next position _strategy.distance += 1; set_tracking_position(trk_row, trk_column); //if not off of the edge of the board if (trk_row < BOARD_SIDE && trk_column < BOARD_SIDE){ std::cout << "Current Guess: " << current_guess << std::endl; std::cout << "Row: " << trk_row << std::endl; std::cout << "Column: " << trk_column << std::endl; current_guess = _target_board->get_char(trk_row, trk_column); } else { change_tracking_orientation(trk_row, trk_column, current_guess); } } else { change_tracking_orientation(trk_row, trk_column, current_guess); } } move = std::make_pair(trk_row, trk_column); } void ComputerPlayer::get_strategic_move(std::pair<int,int> &move) { for (int i = 0; i < BOARD_SIDE; i++) { for (int j = 0; j < BOARD_SIDE; j++) { if (_strategy.cardinalities[move.first][move.second] < _strategy.cardinalities[i][j]) { move = std::make_pair(i, j); } } } } void ComputerPlayer::update_strategy(char result) { if (result == OPEN) { if (_intelligent && !_strategy.tracking_ship) { update_cardinalities(); } } else { if (!_strategy.tracking_ship) { _strategy.num_ship_hits = 0; _strategy.first_hit = _last_move; _strategy.tracking_ship = true; } _strategy.num_ship_hits += 1; _strategy.ship_hits.push_back(_last_move); if(result != HIT) { //if only hit one ship during tracking mode if (_strategy.num_ship_hits == _ship_map.at(result).length()) { update_cardinalities(); reset_tracking(); } //if hit multiple ships else { _strategy.num_ship_hits = _strategy.num_ship_hits - _ship_map.at(result).length(); //Don't know where we first hit the other ship, but will guess it is the next hit _strategy.ship_hits.erase(_strategy.ship_hits.begin()); _strategy.first_hit = _strategy.ship_hits.front(); _strategy.ort = 0; _strategy.distance = 0; } _ship_map.erase(result); set_max_ship_length(); } } } void ComputerPlayer::reset_tracking() { _strategy.tracking_ship = false; _strategy.num_ship_hits = 0; _strategy.ort = 0; _strategy.distance = 0; _strategy.ship_hits.erase(_strategy.ship_hits.begin(), _strategy.ship_hits.end()); _strategy.first_hit = std::make_pair(-1, -1); }
ea4b15d6ec6bff4b83d47ae43487811b7ba40aff
f001c6bc14282301bab60f9da078af9162cb76ce
/dmx.h
c5488233837a812531e35db4c72da4fe476b25a5
[]
no_license
bitogre/DMX-LEDs
907fc8cff700ae3792b5d5fb41f3174fbe129133
e98cec896083f66677a22cfd8fdfce393682780f
refs/heads/master
2021-01-23T11:33:39.120079
2015-04-10T23:19:48
2015-04-10T23:19:48
33,517,024
0
0
null
null
null
null
UTF-8
C++
false
false
2,912
h
dmx.h
/* DMX Slave * Copyright (c) 2014 Devin Crumb, Church by the Glades (cbglades.com) * * Based on serial1.c in the Teensyduino Core Library converted to use DMA * http://www.pjrc.com/teensy/ * Copyright (c) 2013 PJRC.COM, LLC. * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * 1. The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * 2. If the Software is incorporated into a build system that allows * selection among a list of target devices, then similar target * devices manufactured by PJRC.COM must be included in the list of * target devices and selectable in the same manner. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _TEENSY_DMA_DMX_H_ #define _TEENSY_DMA_DMX_H_ #include <Arduino.h> #include "DMAChannel.h" class Dmx { public: static const uint16_t channels = 514; void begin(void); static void debugDma() { Serial.print("DMA"); Serial.print(dma.channel); Serial.print(": "); uint8_t *p = (uint8_t *)dma.TCD; for (unsigned i = 0; i < sizeof(DMAChannel::TCD_t); ++i) { Serial.print(p[i], HEX); Serial.print(' '); } } void dumpBuffer() { Serial.println(dumped()); for (int i = 0; i < channels; ++i) { Serial.print(rxBuffer[i], HEX); Serial.print(' '); if (((i + 1) & 0x3F) == 0) Serial.println(); } } static uint16_t _dumped; uint16_t dumped() { __disable_irq(); uint16_t ret = _dumped; _dumped = 0; __enable_irq(); return ret; } bool complete() { if (!dma.complete()) return false; dma.clearComplete(); return true; } bool error() { if (!dma.error()) return false; dma.clearError(); return true; } static uint8_t rxBuffer[channels]; private: static DMAChannel dma; static DMASetting nextDma; static DMAMEM uint8_t rxDmaBuffer[channels]; static void dmaIsr(void); static void uartStatusIsr(void); }; #endif /* _TEENSY_DMX_H_ */
d8ce785b10eeb6ad3c186d6f49b72934b1148ce3
e845f9d00689489e28e1bcd80044307d2839b816
/headers/fightclub.h
1af266c9d42b52558038477dc5dc0087199a8b2e
[]
no_license
georgreichert/ascendiiSampleGame
d562f201a2999820b16bb0104f0775a561722409
7063a522c0f3bff42279c2b0b9c5885b0ccd1e70
refs/heads/main
2023-03-31T08:11:50.199219
2021-04-06T18:20:27
2021-04-06T18:20:27
352,204,849
0
0
null
null
null
null
UTF-8
C++
false
false
1,190
h
fightclub.h
#ifndef FIGHTCLUB_H #define FIGHTCLUB_H #include <iostream> #include <iomanip> #include <list> #include <stack> #define KEY_ABILITY_1 1 #define KEY_ABILITY_2 2 #define KEY_BLOCK 3 #define KEY_ABILITY_1_PLAYER_1 68 #define KEY_ABILITY_2_PLAYER_1 83 #define KEY_BLOCK_PLAYER_1 65 #define KEY_ABILITY_1_PLAYER_2 74 #define KEY_ABILITY_2_PLAYER_2 75 #define KEY_BLOCK_PLAYER_2 76 #define PLAYER_TYPE_AI false #define PLAYER_TYPE_PLAYER true #include "../ascendii/ascendii.h" #include "ability.h" class DecisionTree; #include "fighter.h" #include "decisiontree.h" #include "decisiontreestandard.h" #include "decisiontreeaggressive.h" #include "decisiontreedefensive.h" #include "team.h" #include "database.h" #include "mainmenu.h" class OneVsOne; #include "chooseplayer.h" #include "newfightermenu.h" #include "newfighter.h" #include "choosefighter.h" #include "chosenfighter.h" #include "onevsone.h" class TwoVsTwo; #include "newteammenu.h" #include "newteam.h" #include "chosenteam.h" #include "chooseteamsubstate.h" #include "chooseteam.h" #include "twovstwo.h" #include "fight.h" #include "teamfight.h" #endif // FIGHTCLUB_H
860ae7c28b94f81341c9d3c7970ee6f3047d6475
ba1944305bd4641be09c90f4464475901845077a
/codeforce/CF EDU/BinarySearch/1D.cpp
a69fb2401d4169176da4942a4f7549680146a5b6
[]
no_license
Ravi-Khatri/code
e5c9bb0d88a5ea74ac2b0dfae83b90944b69ce0b
be40c85ec888059457b2189829f329268cd036b5
refs/heads/main
2023-04-03T18:38:54.289012
2021-04-18T08:05:20
2021-04-18T08:05:20
256,105,251
0
1
null
null
null
null
UTF-8
C++
false
false
655
cpp
1D.cpp
#include<bits/stdc++.h> #define ll long long #define vi vector<int> #define vll vector<ll> #define F first #define S second #define pb push_back #define f(i,s,n) for(int i=(int)s;i<=(int)n;++i) #define Fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); using namespace std; void solve() { int n;cin>>n; vi a(n);for(int &x:a)cin>>x; sort(a.begin(),a.end()); int q;cin>>q; while(q--){ int L,R;cin>>L>>R; int l=0,r=n-1; while(a[l]<L || a[r]>R){ int mid=(l+r)/2; if(a[mid]<L) l=mid; if(a[mid]>R) r=mid; cout<<l<< " "<<r<<'\n'; } cout<<r-l+1<<'\n'; } } int main() { Fast; // int t;cin>>t; // while(t--) solve(); }
3629f3b30a9e7ba14ae1a40d81f6fa96b3630fe2
00a21845bdef7062fa9965bd91a2648318f62f2f
/include/CIdle_movement.h
ee8fa31680d5c9c7f67d2b5c9ce2a28e005b5109
[]
no_license
Rumiana-Ivanova/Rabies-through-the-ages
330a0943e14fd101af7bbfd4593ec0294464dc8d
3fd61378e2c3f19730c45c697019bc53d3871505
refs/heads/main
2023-04-03T00:55:28.487636
2021-04-07T09:56:38
2021-04-07T09:56:38
304,546,790
0
0
null
null
null
null
UTF-8
C++
false
false
374
h
CIdle_movement.h
#ifndef IDLE_MOVEMENT_H #define IDLE_MOVEMENT_H #include "CMovement.h" #include <fstream> #include <vector> #include <iostream> #include <cmath> using namespace std; class CIdle_movement : public CMovement { public: virtual void move(CActor* actor); int field[102*102]; }; extern CIdle_movement* g_pIdle_movement; #endif // !TARGETED_MOVEMENT_H
d5a21265115e4d49af024b542c86f41c356c5650
6106419db8370ccf4d0f55813eaddf5f666bea0b
/LexemManager.cpp
fb603628a14652affecd42189c987ce1baa3744a
[]
no_license
Stasychbr/Calculator-2.0
c57bd715565b35bc8192977fd0d22e1413bf76b8
d4d4e33325c1d3e6b50dd4a7faf8ee3c6a6bd7a7
refs/heads/master
2023-01-13T15:25:26.459824
2020-11-21T00:48:25
2020-11-21T00:48:25
310,397,925
0
0
null
null
null
null
UTF-8
C++
false
false
1,449
cpp
LexemManager.cpp
#include "LexemManager.h" #include "Number.h" #include "Addition.h" #include "Brackets.h" LexemManager::LexemManager() { shared_ptr<Lexem> addition(new Addition); shared_ptr<Lexem> openBrac(new OpenBracket(0)); shared_ptr<Lexem> closeBrac(new CloseBracket(0)); addLexem(move(addition), "+"); addLexem(move(openBrac), "("); addLexem(move(closeBrac), ")"); } shared_ptr<Lexem> LexemManager::getLexem(string& line) { double num; bool notNum = false; size_t read; if (isdigit(line[0])) { num = stod(line, &read); line.erase(0, read); return shared_ptr<Lexem>(new Number(num)); } if (_lexems[line[0]].empty()) { throw "Unknown operation"; } for (auto it = _lexems[line[0]].begin(); it != _lexems[line[0]].end(); it++) { if (line.find(it->first) == 0) { line.erase(0, it->first.length()); return it->second; } } throw "Unknown operation"; } void LexemManager::sortLexems() { auto comparator = [](const pair<string, shared_ptr<Lexem>>& a, const pair<string, shared_ptr<Lexem>>& b) { return a.first.length() > b.first.length(); }; for (auto it = _lexems.begin(); it != _lexems.end(); it++) { sort(it->second.begin(), it->second.end(), comparator); } } void LexemManager::addLexem(shared_ptr<Lexem>&& op, string&& name) { _lexems[name[0]].emplace_back(make_pair(name, op)); }
a291e22b486a7e8307e4daddb6dce356a331edc1
7536cca8ccde595dca3cf4518e08f831b11cb9b6
/libraries/chain/db_block.cpp
5b0624b4d91ce9c62908f5f4454ab40958d79d25
[ "MIT" ]
permissive
rendyirawan/cocos-mainnet
629cd432d67eb3cad5913ceaf25606d85e20c9ca
5e4e3f120c2c773a0ea39bf6ea4e825451b2bd92
refs/heads/develop
2021-01-04T12:21:11.474134
2020-02-13T02:28:08
2020-02-13T02:28:08
240,546,426
1
0
MIT
2020-02-14T16:02:09
2020-02-14T16:02:08
null
UTF-8
C++
false
false
37,646
cpp
db_block.cpp
/* * Copyright (c) 2015 Cryptonomex, Inc., and contributors. * * The MIT License * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include <graphene/chain/database.hpp> #include <graphene/chain/db_with.hpp> #include <graphene/chain/hardfork.hpp> #include <graphene/chain/block_summary_object.hpp> #include <graphene/chain/global_property_object.hpp> #include <graphene/chain/operation_history_object.hpp> #include <graphene/chain/proposal_object.hpp> #include <graphene/chain/transaction_object.hpp> #include <graphene/chain/witness_object.hpp> #include <graphene/chain/protocol/fee_schedule.hpp> //#include <graphene/chain/protocol/contract.hpp> #include <graphene/chain/exceptions.hpp> #include <graphene/chain/evaluator.hpp> #include <graphene/chain/crontab_object.hpp> #include <graphene/chain/temporary_authority.hpp> #include <fc/smart_ref_impl.hpp> //#include <threadpool/threadpool.hpp> //using namespace boost::threadpool; namespace graphene { namespace chain { bool database::is_known_block(const block_id_type &id) const { return _fork_db.is_known_block(id) || _block_id_to_block.contains(id); } /** * Only return true *if* the transaction has not expired or been invalidated. If this * method is called with a VERY old transaction we will return false, they should * query things by blocks if they are that old. */ bool database::is_known_transaction(const transaction_id_type &id) const { const auto &trx_idx = get_index_type<transaction_index>().indices().get<by_trx_id>(); return trx_idx.find(id) != trx_idx.end(); } block_id_type database::get_block_id_for_num(uint32_t block_num) const { try { return _block_id_to_block.fetch_block_id(block_num); } FC_CAPTURE_AND_RETHROW((block_num)) } optional<signed_block> database::fetch_block_by_id(const block_id_type &id) const { auto b = _fork_db.fetch_block(id); if (!b) return _block_id_to_block.fetch_optional(id); return b->data; } optional<signed_block> database::fetch_block_by_number(uint32_t num) const { auto results = _fork_db.fetch_block_by_number(num); if (results.size() == 1) return results[0]->data; else return _block_id_to_block.fetch_by_number(num); return optional<signed_block>(); } const signed_transaction &database::get_recent_transaction(const string &trx_id) const { //wdump((trx_id)); auto &index = get_index_type<transaction_index>().indices().get<by_trx_hash>(); auto itr = index.find(tx_hash_type(trx_id)); FC_ASSERT(itr != index.end(), "No specified transaction was found in transaction_index"); return itr->trx; } const transaction_in_block_info &database::get_transaction_in_block_info(const string &trx_id) const { //wdump((trx_id)); auto &index = get_index_type<transaction_in_block_index>().indices().get<by_trx_hash>(); auto itr = index.find(tx_hash_type(trx_id)); FC_ASSERT(itr != index.end(), "No specified transaction was found in transaction_in_block_index"); return *itr; } std::vector<block_id_type> database::get_block_ids_on_fork(block_id_type head_of_fork) const { pair<fork_database::branch_type, fork_database::branch_type> branches = _fork_db.fetch_branch_from(head_block_id(), head_of_fork); if (!((branches.first.back()->previous_id() == branches.second.back()->previous_id()))) { edump((head_of_fork)(head_block_id())(branches.first.size())(branches.second.size())); assert(branches.first.back()->previous_id() == branches.second.back()->previous_id()); } std::vector<block_id_type> result; for (const item_ptr &fork_block : branches.second) result.emplace_back(fork_block->id); result.emplace_back(branches.first.back()->previous_id()); return result; } /** * Push block "may fail" in which case every partial change is unwound. After * push block is successful the block is appended to the chain database on disk. * * @return true if we switched forks as a result of this push. */ bool database::push_block(const signed_block &new_block, uint32_t skip) { bool result; detail::with_skip_flags(*this, skip, [&]() { detail::without_pending_transactions(*this, _pending_tx, [&]() { result = _push_block(new_block); }); }); return result; } bool database::_push_block(const signed_block &new_block) { try { FC_ASSERT(new_block.block_id == new_block.make_id()); uint32_t skip = get_node_properties().skip_flags; if (!(skip & skip_fork_db)) { /// TODO: if the block is greater than the head block and before the next maitenance interval // verify that the block signer is in the current set of active witnesses. shared_ptr<fork_item> new_head = _fork_db.push_block(new_block); //If the head block from the longest chain does not build off of the current head, we need to switch forks. if (new_head->data.previous != head_block_id()) // 判定区块是否是自己所在网络生产的,如果不是则进入,不分叉不执行 { //If the newly pushed block is the same height as head, we get head back in new_head //Only switch forks if new_head is actually higher than head if (new_head->data.block_num() > head_block_num()) // 判定生产区块的链的长度是否大于自己所在网络,如果大于则说明自身所处网络为分叉网络 { wlog("Switching to fork: ${id}", ("id", new_head->data.block_id)); auto branches = _fork_db.fetch_branch_from(new_head->data.block_id, head_block_id()); //获取分叉源 // pop blocks until we hit the forked block while (head_block_id() != branches.second.back()->data.previous) //pop 弹出从分叉源开始的所有的分叉的区块 pop_block(); // push all blocks on the new fork //push 重新应用从分叉源开始的所有主网络区块 for (auto ritr = branches.first.rbegin(); ritr != branches.first.rend(); ++ritr) { ilog("pushing blocks from fork ${n} ${id}", ("n", (*ritr)->data.block_num())("id", (*ritr)->data.block_id)); optional<fc::exception> except; try { undo_database::session session = _undo_db.start_undo_session(); apply_block((*ritr)->data, skip); // 应用区块 _block_id_to_block.store((*ritr)->id, (*ritr)->data); session.commit(); } catch (const fc::exception &e) { except = e; } if (except) { wlog("exception thrown while switching forks ${e}", ("e", except->to_detail_string())); // remove the rest of branches.first from the fork_db, those blocks are invalid while (ritr != branches.first.rend()) { _fork_db.remove((*ritr)->data.block_id); ++ritr; } _fork_db.set_head(branches.second.front()); // pop all blocks from the bad fork while (head_block_id() != branches.second.back()->data.previous) pop_block(); // restore all blocks from the good fork for (auto ritr = branches.second.rbegin(); ritr != branches.second.rend(); ++ritr) { auto session = _undo_db.start_undo_session(); apply_block((*ritr)->data, skip); _block_id_to_block.store(new_block.block_id, (*ritr)->data); session.commit(); } throw *except; } } return true; } else return false; } } try { auto session = _undo_db.start_undo_session(); apply_block(new_block, skip); _block_id_to_block.store(new_block.block_id, new_block); session.commit(); } catch (const fc::exception &e) { elog("Failed to push new block:\n${e}", ("e", e.to_detail_string())); _fork_db.remove(new_block.block_id); throw; } return false; } FC_CAPTURE_AND_RETHROW((new_block)) } /** * Attempts to push the transaction into the pending queue * * When called to push a locally generated transaction, set the skip_block_size_check bit on the skip argument. This * will allow the transaction to be pushed even if it causes the pending block size to exceed the maximum block size. * Although the transaction will probably not propagate further now, as the peers are likely to have their pending * queues full as well, it will be kept in the queue to be propagated later when a new block flushes out the pending * queues. */ processed_transaction database::push_transaction(const signed_transaction &trx, uint32_t skip, transaction_push_state push_state) { try { processed_transaction result; detail::with_skip_flags(*this, skip, [&]() { result = _push_transaction(trx, push_state); }); return result; } FC_CAPTURE_AND_RETHROW((trx)) } processed_transaction database::_push_transaction(const signed_transaction &trx, transaction_push_state push_state) { // If this is the first transaction pushed after applying a block, start a new undo session. // This allows us to quickly rewind to the clean state of the head block, in case a new block arrives. if (!_pending_tx_session.valid()) _pending_tx_session = _undo_db.start_undo_session(); // Create a temporary undo session as a child of _pending_tx_session. // The temporary session will be discarded by the destructor if // _apply_transaction fails. If we make it to merge(), we // apply the changes. auto temp_session = _undo_db.start_undo_session(); processed_transaction processed_trx; transaction_apply_mode mode; if (push_state != transaction_push_state::re_push) { if (push_state == transaction_push_state::from_me) { //get_message_send_cache_size(); _pending_size=std::max(_pending_size,_pending_tx.size()); if (_message_cache_size_limit) FC_ASSERT(_pending_size <= _message_cache_size_limit, "The number of messages cached by the current node has exceeded the maximum limit,size:${size}", ("size", _pending_size)); mode = transaction_apply_mode::push_mode; processed_trx = _apply_transaction(trx, mode); } else { mode = transaction_apply_mode::validate_transaction_mode; processed_trx = _apply_transaction(trx, mode, !deduce_in_verification_mode); } } else { uint32_t skip = get_node_properties().skip_flags; const chain_parameters &chain_parameters = get_global_properties().parameters; if (BOOST_LIKELY(head_block_num() > 0)) { if (!(skip & skip_tapos_check) && !trx.agreed_task) { const auto &tapos_block_summary = block_summary_id_type(trx.ref_block_num)(*this); FC_ASSERT(trx.ref_block_prefix == tapos_block_summary.block_id._hash[1]); } fc::time_point_sec now = head_block_time(); FC_ASSERT(trx.expiration <= now + chain_parameters.maximum_time_until_expiration, "", ("trx.expiration", trx.expiration)("now", now)("max_til_exp", chain_parameters.maximum_time_until_expiration)); FC_ASSERT(now <= trx.expiration, "", ("now", now)("trx.exp", trx.expiration)); } processed_trx = *(processed_transaction *)&trx; } //(processed_trx.operation_results.size() > 0, "in ${push_state} ", ("push_state", push_state)); _pending_tx.push_back(processed_trx); //nico 填充pending池 //notify_changed_objects(); //通知数据变更,push_mode与validate_transaction_mode,并没有真正应用数据,\ 此处合并数据库只是为了快速响应,所以并不发送数据变更通知(对应前段的订阅) // The transaction applied successfully. Merge its changes into the pending block session. if (push_state == transaction_push_state::re_push || mode == transaction_apply_mode::invoke_mode) //nico chang:: 引入新的过程共识,所以在invoke_mode委托模式下完成验证后,不合并数据库 { temp_session.undo(); this->create<transaction_object>([&](transaction_object &transaction) { transaction.trx_hash=processed_trx.hash(); transaction.trx_id = processed_trx.id(transaction.trx_hash); transaction.trx = processed_trx; }); } temp_session.merge(); // notify anyone listening to pending transactions on_pending_transaction(processed_trx); return processed_trx; } processed_transaction database::validate_transaction(const signed_transaction &trx) { auto session = _undo_db.start_undo_session(); auto mode = transaction_apply_mode::just_try; return _apply_transaction(trx, mode); } processed_transaction database::push_proposal(const proposal_object &proposal) { try { transaction_evaluation_state eval_state(this); eval_state.is_agreed_task = true; eval_state.operation_results.reserve(proposal.proposed_transaction.operations.size()); processed_transaction ptrx(proposal.proposed_transaction); eval_state._trx = &ptrx; size_t old_applied_ops_size = _applied_ops.size(); try { auto session = _undo_db.start_undo_session(true); for (auto &op : proposal.proposed_transaction.operations) eval_state.operation_results.emplace_back(apply_operation(eval_state, op)); remove(proposal); session.merge(); } catch (const fc::exception &e) { /* if (head_block_time() <= HARDFORK_483_TIME) { for (size_t i = old_applied_ops_size, n = _applied_ops.size(); i < n; i++) { ilog("removing failed operation from applied_ops: ${op}", ("op", *(_applied_ops[i]))); _applied_ops[i].reset(); } } else*/ { _applied_ops.resize(old_applied_ops_size); } elog("e", ("e", e.to_detail_string())); throw; } ptrx.operation_results = std::move(eval_state.operation_results); return ptrx; } FC_CAPTURE_AND_RETHROW((proposal)) } signed_block database::generate_block( fc::time_point_sec when, witness_id_type witness_id, const fc::ecc::private_key &block_signing_private_key, uint32_t skip /* = 0 */ ) { try { signed_block result; detail::with_skip_flags(*this, skip, [&]() { result = _generate_block(when, witness_id, block_signing_private_key); }); return result; } FC_CAPTURE_AND_RETHROW() } signed_block database::_generate_block( fc::time_point_sec when, witness_id_type witness_id, const fc::ecc::private_key &block_signing_private_key) { try { uint32_t skip = get_node_properties().skip_flags; uint32_t slot_num = get_slot_at_time(when); FC_ASSERT(slot_num > 0); witness_id_type scheduled_witness = get_scheduled_witness(slot_num); FC_ASSERT(scheduled_witness == witness_id); const auto &witness_obj = witness_id(*this); if (!(skip & skip_witness_signature)) FC_ASSERT(witness_obj.signing_key == block_signing_private_key.get_public_key()); static const size_t max_block_header_size = fc::raw::pack_size(signed_block_header()) + 4; const chain_parameters &chain_parameters = get_global_properties().parameters; auto maximum_block_size = chain_parameters.maximum_block_size; size_t total_block_size = max_block_header_size; signed_block pending_block; // The following code throws away existing pending_tx_session and // rebuilds it by re-applying pending transactions. // // This rebuild is necessary because pending transactions' validity // and semantics may have changed since they were received, because // time-based semantics are evaluated based on the current block // time. These changes can only be reflected in the database when // the value of the "when" variable is known, which means we need to // re-apply pending transactions in this method. _pending_tx_session.reset(); _pending_tx_session = _undo_db.start_undo_session(); //uint64_t postponed_tx_count = 0; for (const processed_transaction &tx : _pending_tx) // 将pending池中的交易应用到区块 { size_t new_total_size = total_block_size + fc::raw::pack_size(tx); // postpone transaction if it would make block too big if (new_total_size >= maximum_block_size) break; //nico change:不再计算因区块大小超界而搁置的tx数量 try { //if (tx.operation_results.size() > 0) //{ if (BOOST_LIKELY(head_block_num() > 0)&& !tx.agreed_task) { if (!(skip & skip_tapos_check) ) { const auto &tapos_block_summary = block_summary_id_type(tx.ref_block_num)(*this); FC_ASSERT(tx.ref_block_prefix == tapos_block_summary.block_id._hash[1]); } fc::time_point_sec now = head_block_time(); FC_ASSERT(tx.expiration <= now + chain_parameters.maximum_time_until_expiration, "", ("trx.expiration", tx.expiration)("now", now)("max_til_exp", chain_parameters.maximum_time_until_expiration)); FC_ASSERT(now <= tx.expiration, "", ("now", now)("trx.exp", tx.expiration)); } total_block_size += fc::raw::pack_size(tx); pending_block.transactions.push_back(std::make_pair(tx.hash(), tx)); //} } catch (const fc::exception &e) { // Do nothing, transaction will not be re-applied wlog("Transaction was not processed while generating block due to ${e}", ("e", e)); wlog("The transaction was ${t}", ("t", tx)); } } /* if (postponed_tx_count > 0) { wlog("Postponed ${n} transactions due to block size limit", ("n", postponed_tx_count)); // 由于区块大小限制,n笔交易被搁置 }*/ _pending_tx_session.reset(); // We have temporarily broken the invariant that // _pending_tx_session is the result of applying _pending_tx, as // _pending_tx now consists of the set of postponed transactions. // However, the push_block() call below will re-create the // _pending_tx_session. pending_block.previous = head_block_id(); if(pending_block.previous==block_id_type()) { pending_block.extensions=vector<string>{"Ignition with Kevin , Nico , Major and Wililiam"}; } pending_block.timestamp = when; //pending_block.transaction_merkle_root = pending_block.calculate_merkle_root(); pending_block.witness = witness_id; // TODO: Move this to _push_block() so session is restored. uint skip_authority=skip_authority_check; if(!deduce_in_verification_mode) skip_authority=0; validate_block(pending_block, block_signing_private_key, skip | skip_authority | skip_merkle_check | skip_witness_signature); // push_transation , _apply_transaction , push_block 3次应用交易 return pending_block; } FC_CAPTURE_AND_RETHROW((witness_id)) } /** * Removes the most recent block from the database and * undoes any changes it made. */ void database::pop_block() { try { _pending_tx_session.reset(); auto head_id = head_block_id(); optional<signed_block> head_block = fetch_block_by_id(head_id); GRAPHENE_ASSERT(head_block.valid(), pop_empty_chain, "there are no blocks to pop"); _fork_db.pop_block(); pop_undo(); _popped_tx.resize(head_block->transactions.size()); std::transform(head_block->transactions.begin(), head_block->transactions.end(), _popped_tx.begin(), [&](std::pair<tx_hash_type, processed_transaction> trx_pair) { return trx_pair.second; }); //_popped_tx.insert(_popped_tx.begin(), head_block->transactions.begin(), head_block->transactions.end()); } FC_CAPTURE_AND_RETHROW() } void database::clear_pending() { try { assert((_pending_tx.size() == 0) || _pending_tx_session.valid()); _pending_tx.clear(); _pending_tx_session.reset(); } FC_CAPTURE_AND_RETHROW() } uint32_t database::push_applied_operation(const operation &op) { _applied_ops.emplace_back(op); /* "emplace_back" 和 "push_back" 的区别:对于在容器中添加类的对象时, 相比于push_back,emplace_back可以避免额外类的复制和移动操作. */ operation_history_object &oh = *(_applied_ops.back()); oh.block_num = _current_block_num; oh.trx_in_block = _current_trx_in_block; oh.op_in_trx = _current_op_in_trx; oh.virtual_op = _current_virtual_op++; return _applied_ops.size() - 1; } void database::set_applied_operation_result(uint32_t op_id, const operation_result &result) { assert(op_id < _applied_ops.size()); if (_applied_ops[op_id]) _applied_ops[op_id]->result = result; else { elog("Could not set operation result (head_block_num=${b})", ("b", head_block_num())); } } const vector<optional<operation_history_object>> &database::get_applied_operations() const { return _applied_ops; } //////////////////// private methods //////////////////// void database::apply_block(const signed_block &next_block, uint32_t skip) { auto block_num = next_block.block_num(); if (_checkpoints.size() && _checkpoints.rbegin()->second != block_id_type()) { auto itr = _checkpoints.find(block_num); if (itr != _checkpoints.end()) FC_ASSERT(next_block.block_id == itr->second, "Block did not match checkpoint", ("checkpoint", *itr)("block_id", next_block.block_id)); if (_checkpoints.rbegin()->first >= block_num) skip = ~0; // WE CAN SKIP ALMOST EVERYTHING } detail::with_skip_flags(*this, skip, [&]() { _apply_block(next_block); }); return; } void database::_apply_block(const signed_block &next_block) { try { uint32_t next_block_num = next_block.block_num(); uint32_t skip = get_node_properties().skip_flags; _applied_ops.clear(); FC_ASSERT((skip & skip_merkle_check) || next_block.transaction_merkle_root == next_block.calculate_merkle_root() /*checking_transactions_hash()*/, "", ("next_block.transaction_merkle_root", next_block.transaction_merkle_root)("calc", next_block.calculate_merkle_root() /*checking_transactions_hash()*/)("next_block", next_block)("id", next_block.block_id)); const witness_object &signing_witness = validate_block_header(skip, next_block); const auto &global_props = get_global_properties(); const auto &dynamic_global_props = get<dynamic_global_property_object>(dynamic_global_property_id_type()); bool maint_needed = (dynamic_global_props.next_maintenance_time <= next_block.timestamp); _current_block_num = next_block_num; _current_trx_in_block = 0; for (auto &trx : next_block.transactions) // 应用区块中的tx { /* We do not need to push the undo state for each transaction * because they either all apply and are valid or the * entire block fails to apply. We only need an "undo" state * for transactions when validating broadcast transactions or * when building a block. */ FC_ASSERT(trx.second.operation_results.size() > 0, "trx_hash:${trx_hash}", ("trx_hash", trx.second.hash())); apply_transaction(trx.second, skip | skip_authority_check, transaction_apply_mode::apply_block_mode); // 应用交易transaction , 在应用区块的时候,跳过tx签名再次核验 ++_current_trx_in_block; } update_global_dynamic_data(next_block); update_signing_witness(signing_witness, next_block); update_last_irreversible_block(); // Are we at the maintenance interval? if (maint_needed) perform_chain_maintenance(next_block, global_props); create_block_summary(next_block); clear_expired_transactions(); // hash数据表受保护,只能由database线程修改 clear_expired_nh_asset_orders(); clear_expired_proposals(); clear_expired_orders(); clear_expired_timed_task(); update_expired_feeds(); clear_expired_active(); // n.b., update_maintenance_flag() happens this late // because get_slot_time() / get_slot_at_time() is needed above // TODO: figure out if we could collapse this function into // update_global_dynamic_data() as perhaps these methods only need // to be called for header validation? update_maintenance_flag(maint_needed); update_witness_schedule(); if (!_node_property_object.debug_updates.empty()) apply_debug_updates(); // notify observers that the block has been applied applied_block(next_block); // applied_block信号通知 _applied_ops.clear(); notify_changed_objects(); // 消息通知对象改变 } FC_CAPTURE_AND_RETHROW((next_block.block_num())) } processed_transaction database::apply_transaction(const signed_transaction &trx, uint32_t skip, transaction_apply_mode run_mode) { processed_transaction result; detail::with_skip_flags(*this, skip, [&]() { result = _apply_transaction(trx, run_mode); }); return result; } processed_transaction database::_apply_transaction(const signed_transaction &trx, transaction_apply_mode &run_mode, bool only_try_permissions) { //fc::microseconds start1 = fc::time_point::now().time_since_epoch(); try { uint32_t skip = get_node_properties().skip_flags; auto &chain_parameters = get_global_properties().parameters; int op_maxsize_proportion_percent = 1; //default if (_options->count("op_maxsize_proportion_percent")) { auto percent = _options->at("op_maxsize_proportion_percent").as<uint32_t>(); if(percent>=0 && percent<=100) //if percent out of range,just do nothing op_maxsize_proportion_percent = percent; } int size = chain_parameters.maximum_block_size*op_maxsize_proportion_percent/100; FC_ASSERT(fc::raw::pack_size(trx) < size);//交易尺寸验证,单笔交易最大尺寸不能超过区块最大尺寸的百分比 if (!(skip & skip_validate)) /* issue #505 explains why this skip_flag is disabled */ trx.validate(); auto &trx_idx = get_mutable_index_type<transaction_index>(); const chain_id_type &chain_id = get_chain_id(); fc::time_point_sec now = head_block_time(); auto trx_hash = trx.hash(); auto trx_id = trx.id(trx_hash); FC_ASSERT((skip & skip_transaction_dupe_check) || trx_idx.indices().get<by_trx_id>().find(trx_id) == trx_idx.indices().get<by_trx_id>().end()); transaction_evaluation_state eval_state(this); eval_state._trx = &trx; eval_state.run_mode = run_mode; eval_state.skip=skip; const crontab_object *temp_crontab = nullptr; if (!(skip & (skip_transaction_signatures | skip_authority_check)) || trx.agreed_task) { if (trx.agreed_task) { object_id_type id = trx.agreed_task->second; switch (id.type()) { case proposal_object::type_id: { auto &proposal = ((proposal_id_type)id)(*this); FC_ASSERT(trx_hash == proposal.proposed_transaction.hash() && proposal.expiration_time <= now && proposal.allow_execution); modify(proposal,[](proposal_object &pr){pr.allow_execution=false;}); break; } case crontab_object::type_id: { auto &crontab = ((crontab_id_type)id)(*this); temp_crontab = &crontab; FC_ASSERT(trx_hash == crontab.timed_transaction.hash() && crontab.next_execte_time <= now&&crontab.allow_execution); modify(crontab, [&](crontab_object &c) { c.last_execte_time = now; c.next_execte_time = c.last_execte_time + c.execute_interval; c.expiration_time = c.last_execte_time + (c.scheduled_execute_times - c.already_execute_times) * c.execute_interval; c.already_execute_times++; c.timed_transaction.expiration = c.next_execte_time + std::min<uint32_t>(chain_parameters.assigned_task_life_cycle, 7200); }); break; } default: FC_THROW("Unexpected System Transactions"); } eval_state.is_agreed_task=trx.agreed_task.valid()?true:false; } else { authority active; auto get_active = [&](account_id_type id) -> const authority * { active=id(*this).active; /*************************nico 添加临时授权验证******************/ flat_map<public_key_type,weight_type> temporary; auto &index = this->get_index_type<temporary_active_index>().indices().get<by_account_id_type>(); auto itr = index.find(id);if(itr!=index.end())temporary=itr->temporary_active; for(auto itr=temporary.begin();itr!=temporary.end();itr++)active.key_auths.insert(*itr);return &active; }; auto get_owner = [&](account_id_type id) -> const authority * { return &id(*this).owner; }; trx.verify_authority(chain_id, get_active, get_owner, eval_state.sigkeys, get_global_properties().parameters.max_authority_depth); // 应用_apply_transaction 验证交易权限 } } if (BOOST_LIKELY(head_block_num() > 0)&&!eval_state.is_agreed_task) { if (!(skip & skip_tapos_check)) { const auto &tapos_block_summary = block_summary_id_type(trx.ref_block_num)(*this); FC_ASSERT(trx.ref_block_prefix == tapos_block_summary.block_id._hash[1]); } FC_ASSERT(trx.expiration <= now + chain_parameters.maximum_time_until_expiration, "", ("trx.expiration", trx.expiration)("now", now)("max_til_exp", chain_parameters.maximum_time_until_expiration)); FC_ASSERT(now <= trx.expiration, "", ("now", now)("trx.exp", trx.expiration)); } if (run_mode == transaction_apply_mode::apply_block_mode || run_mode == transaction_apply_mode::production_block_mode) { auto temp = this->create<transaction_in_block_info>([&](transaction_in_block_info &info) { // info.trx_hash = trx_hash; info.block_num = _current_block_num; info.trx_in_block = _current_trx_in_block; }); } if (!(skip & skip_transaction_dupe_check)) { this->create<transaction_object>([&](transaction_object &transaction) { transaction.trx_hash=trx_hash; transaction.trx_id = trx_id; transaction.trx = trx; }); } processed_transaction ptrx(trx); if (only_try_permissions) { //ptrx.operation_results.push_back(void_result()); return ptrx; } eval_state.operation_results.reserve(trx.operations.size()); _current_op_in_trx = 0; uint64_t real_run_time = 0; auto get_runtime = operation_result_visitor_get_runtime(); bool result_contains_error = false; for (const auto &op : ptrx.operations) { auto op_result = apply_operation(eval_state, op, eval_state.is_agreed_task); real_run_time += op_result.visit(get_runtime); if (run_mode != transaction_apply_mode::apply_block_mode) FC_ASSERT(real_run_time < block_interval() * 75000ll, "Total execution time exceeds block interval,tx:${tx}", ("tx", trx)); //block_interval*75% if (run_mode == transaction_apply_mode::apply_block_mode && eval_state.is_agreed_task) FC_ASSERT(op_result == ((processed_transaction *)eval_state._trx)->operation_results[_current_op_in_trx]); eval_state.operation_results.emplace_back(op_result); if (op_result.which() == operation_result::tag<contract_result>::value && op_result.get<contract_result>().existed_pv) run_mode = transaction_apply_mode::invoke_mode; // 委托模式,将拒绝数据合并 ++_current_op_in_trx; if (op_result.which() == operation_result::tag<error_result>::value) { result_contains_error = true; } } /* If the task fails for 3 consecutive executions, it will be suspended and set to expire after 3 days, but if the * number of task executions has reached the schedule execute times, it will be deleted directly instead of suspend. */ if (temp_crontab != nullptr && temp_crontab->already_execute_times < temp_crontab->scheduled_execute_times) { if (result_contains_error) { modify(*temp_crontab, [&](crontab_object &c) { c.continuous_failure_times++; if (chain_parameters.crontab_suspend_threshold == c.continuous_failure_times) // the task execution fails consecutively 3 times, it will be suspended { c.next_execte_time = fc::time_point_sec::maximum(); c.is_suspended = true; c.expiration_time = now + chain_parameters.crontab_suspend_expiration; // the task is suspended, modify its expiration time to be 3 days later } }); } else if (0 != temp_crontab->continuous_failure_times) // reset crontab's continuous failure times modify(*temp_crontab, [&](crontab_object &c) { c.continuous_failure_times = 0; }); } //Insert transaction into unique transactions database. ptrx.operation_results = std::move(eval_state.operation_results); return ptrx; } FC_CAPTURE_AND_RETHROW((trx)) } operation_result database::apply_operation(transaction_evaluation_state &eval_state, const operation &op, bool is_agreed_task) { try { operation_result result; bool _undo_db_state = _undo_db.enabled(); _undo_db.enable(); fc::microseconds start = fc::time_point::now().time_since_epoch(); { auto op_session = _undo_db.start_undo_session(); try { int i_which = op.which(); uint64_t u_which = uint64_t(i_which); if (i_which < 0) assert("Negative operation tag" && false); if (u_which >= _operation_evaluators.size()) assert("No registered evaluator for this operation" && false); unique_ptr<op_evaluator> &eval = _operation_evaluators[u_which]; // 选择对应验证合约的状态机 if (!eval) assert("No registered evaluator for this operation" && false); result = eval->evaluate(eval_state, op, true); } catch (fc::exception &e) { if (is_agreed_task) { auto error_re = error_result(e.code(), e.to_string()); error_re.real_running_time = fc::time_point::now().time_since_epoch().count() - start.count(); result = error_re; op_session.undo(); } else throw e; } auto op_id = push_applied_operation(op); set_applied_operation_result(op_id, result); op_session.merge(); } _undo_db_state ? _undo_db.enable() : _undo_db.disable(); return result; } FC_CAPTURE_AND_RETHROW((op)) } const witness_object &database::validate_block_header(uint32_t skip, const signed_block &next_block) const { FC_ASSERT(head_block_id() == next_block.previous, "", ("head_block_id", head_block_id())("next.prev", next_block.previous)); FC_ASSERT(head_block_time() < next_block.timestamp, "", ("head_block_time", head_block_time())("next", next_block.timestamp)("blocknum", next_block.block_num())); const witness_object &witness = next_block.witness(*this); if (!(skip & skip_witness_signature)) FC_ASSERT(next_block.validate_signee(witness.signing_key)); if (!(skip & skip_witness_schedule_check)) { uint32_t slot_num = get_slot_at_time(next_block.timestamp); FC_ASSERT(slot_num > 0); witness_id_type scheduled_witness = get_scheduled_witness(slot_num); FC_ASSERT(next_block.witness == scheduled_witness, "Witness produced block at wrong time", ("block witness", next_block.witness)("scheduled", scheduled_witness)("slot_num", slot_num)); } return witness; } void database::create_block_summary(const signed_block &next_block) { block_summary_id_type sid(next_block.block_num() & 0xffff); modify(sid(*this), [&](block_summary_object &p) { p.block_id = next_block.block_id; }); } void database::set_message_cache_size_limit(uint16_t message_cache_size_limit) { FC_ASSERT(message_cache_size_limit >= 3000 || message_cache_size_limit == 0); _message_cache_size_limit = message_cache_size_limit; } void database::add_checkpoints(const flat_map<uint32_t, block_id_type> &checkpts) { for (const auto &i : checkpts) _checkpoints[i.first] = i.second; } bool database::before_last_checkpoint() const { return (_checkpoints.size() > 0) && (_checkpoints.rbegin()->first >= head_block_num()); } bool database::log_pending_size() { _pending_size=_pending_tx.size(); return true; } } // namespace chain } // namespace graphene
fff0a05d1fb0e0ca6bef3794352d0c49e9f7249e
00c7bb6405252a20b49c13474bdfd8f413f210b2
/lab5.5_4.cpp
245fcf97bef27db5a20c54bb5cdb7aa6ef7918da
[]
no_license
SaWho/lab5.5
4a054a44e779c3424048a2dc210cce9a47dee315
c9c926d4f36a69977de2b008e821d882712b1209
refs/heads/master
2020-03-28T05:31:18.935612
2018-09-07T06:38:12
2018-09-07T06:38:12
147,781,540
0
0
null
null
null
null
UTF-8
C++
false
false
416
cpp
lab5.5_4.cpp
//to print rhombus star pattern //inclusion of packages #include <iostream> #include <string> using namespace std; //main int main() { //initialisation int i,j,r; string s; //user prompt cout<<"Enter the row/column number. "<<endl; //input cin>>r; //loop for(i=r;i>=1;i--) { for(j=1;j<=i;j++) { cout <<" "; } for(j=1;j<=r;j++) cout <<"*"; cout <<endl; } return 0; }
e2f89dff993ca70d04f12c9df6abdb77966440de
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/media/audio/win/wavein_input_win.h
17af10f5dcc8f65e67df1b4e8ec760e8b903f1ad
[ "BSD-3-Clause" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
4,692
h
wavein_input_win.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_AUDIO_WIN_WAVEIN_INPUT_WIN_H_ #define MEDIA_AUDIO_WIN_WAVEIN_INPUT_WIN_H_ #include <windows.h> #include <mmsystem.h> #include <stdint.h> #include <memory> #include <string> #include "base/compiler_specific.h" #include "base/macros.h" #include "base/synchronization/lock.h" #include "base/threading/thread_checker.h" #include "base/win/scoped_handle.h" #include "media/audio/audio_io.h" #include "media/base/audio_parameters.h" namespace media { class AudioBus; class AudioManagerWin; class PCMWaveInAudioInputStream : public AudioInputStream { public: // The ctor takes all the usual parameters, plus |manager| which is the // the audio manager who is creating this object and |device_id| which // is provided by the operating system. PCMWaveInAudioInputStream(AudioManagerWin* manager, const AudioParameters& params, int num_buffers, const std::string& device_id); ~PCMWaveInAudioInputStream() override; // Implementation of AudioInputStream. bool Open() override; void Start(AudioInputCallback* callback) override; void Stop() override; void Close() override; // TODO(henrika): Add volume support using the Audio Mixer API. double GetMaxVolume() override; void SetVolume(double volume) override; double GetVolume() override; bool SetAutomaticGainControl(bool enabled) override; bool GetAutomaticGainControl() override; bool IsMuted() override; private: enum State { kStateEmpty, // Initial state. kStateReady, // Device obtained and ready to record. kStateRecording, // Recording audio. kStateStopping, // Trying to stop, waiting for callback to finish. kStateStopped, // Stopped. Device was reset. kStateClosed // Device has been released. }; // Allow unit tests to query the device ID. friend class AudioManagerTest; // Windows calls us back with the recorded audio data here. See msdn // documentation for 'waveInProc' for details about the parameters. static void CALLBACK WaveCallback(HWAVEIN hwi, UINT msg, DWORD_PTR instance, DWORD_PTR param1, DWORD_PTR param2); // If windows reports an error this function handles it and passes it to // the attached AudioInputCallback::OnError(). void HandleError(MMRESULT error); // Allocates and prepares the memory that will be used for recording. void SetupBuffers(); // Deallocates the memory allocated in SetupBuffers. void FreeBuffers(); // Sends a buffer to the audio driver for recording. void QueueNextPacket(WAVEHDR* buffer); // Converts the stored device id string into an unsigned integer which // can be used by waveInOpen() to open the specified capture device. bool GetDeviceId(UINT* device_index); base::ThreadChecker thread_checker_; // Reader beware. Visual C has stronger guarantees on volatile vars than // most people expect. In fact, it has release semantics on write and // acquire semantics on reads. See the msdn documentation. volatile State state_; // The audio manager that created this input stream. We notify it when // we close so it can release its own resources. AudioManagerWin* manager_; // We use the callback mostly to periodically give the recorded audio data. AudioInputCallback* callback_; // The number of buffers of size |buffer_size_| each to use. const int num_buffers_; // The size in bytes of each audio buffer. uint32_t buffer_size_; // Channels, 1 or 2. const int channels_; // Contains the unique name of the selected endpoint device. // Note that AudioDeviceDescription::kDefaultDeviceId represents the default // device role and is not a valid ID as such. std::string device_id_; // Windows native structure to encode the format parameters. WAVEFORMATEX format_; // Handle to the instance of the wave device. HWAVEIN wavein_; // Pointer to the first allocated audio buffer. This object owns it. WAVEHDR* buffer_; // An event that is signaled when the callback thread is ready to stop. base::win::ScopedHandle stopped_event_; // Lock used to avoid conflicts when Stop() is called during a callback. base::Lock lock_; // Extra audio bus used for storage of deinterleaved data for the OnData // callback. std::unique_ptr<media::AudioBus> audio_bus_; DISALLOW_COPY_AND_ASSIGN(PCMWaveInAudioInputStream); }; } // namespace media #endif // MEDIA_AUDIO_WIN_WAVEIN_INPUT_WIN_H_
d69874a750dff51d0d198d23e8b61d9e2b9c73af
34b31682681cab577d80b455e139f663304716ef
/commelec-api/daemon.cpp
a13ceea3bd378ce5e583f9c68a26e473eea8627d
[ "MIT" ]
permissive
niekbouman/commelec-api
22b1f54ad5fc4661a32211aabf6cc4f0ef9ec998
4bc588340ec2d669bd92f8c4f2b3bba3d6db0ca3
refs/heads/master
2020-12-29T01:54:05.346810
2016-08-02T16:33:34
2016-08-02T16:33:34
30,344,680
20
1
null
null
null
null
UTF-8
C++
false
false
20,125
cpp
daemon.cpp
#define SPDLOG_DEBUG_ON // enable logging macros #include <capnp/message.h> #include <kj/io.h> #include <commelec-api/serialization.hpp> #include <commelec-api/schema.capnp.h> #include <commelec-api/hlapi-internal.hpp> #include <commelec-api/sender-policies.hpp> #include <commelec-api/json.hpp> #include <commelec-api/adv-validation.hpp> #include <commelec-api/coroutine-exception.hpp> #include <rapidjson/document.h> #include <rapidjson/writer.h> #include <rapidjson/stringbuffer.h> #include <spdlog/spdlog.h> // logging framework #include <boost/asio/io_service.hpp> #include <boost/asio/ip/udp.hpp> #include <boost/asio/spawn.hpp> #include <boost/asio/high_resolution_timer.hpp> #include <boost/filesystem.hpp> #include <algorithm> #include <iostream> #include <string> #include <unordered_map> #include <stdexcept> using boost::asio::ip::udp; using PortNumberType = unsigned short; using AgentIdType = uint32_t; using namespace boost::filesystem; enum class Resource { battery, pv, fuelcell, uncontrollableLoad, uncontrollableGenerator, discrete, discreteUnif, zenone, custom }; using ResourceMap = std::unordered_map<std::string, Resource> ; enum { networkBufLen = 2048, // length of data buffer for incoming requests maxUDPsize = 65536, maxRetransmissions = 10, interPacketSendDelay_ms = 2 }; void createBattAdv(msg::Message::Builder msg, rapidjson::Document& d) { auto Pmin = getDouble(d,"Pmin"); auto Pmax = getDouble(d,"Pmax"); auto Srated = getDouble(d,"Srated"); auto coeffP = getDouble(d,"coeffP"); auto coeffPsquared = getDouble(d,"coeffPsquared"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); _BatteryAdvertisement(msg.initAdvertisement(), Pmin, Pmax, Srated, coeffP, coeffPsquared, Pimp, Qimp); return; } void createUncontrLoadAdv(msg::Message::Builder msg, rapidjson::Document &d) { auto Srated = getDouble(d,"Srated"); auto Pexp = getDouble(d,"Pexp"); auto Qexp = getDouble(d,"Qexp"); auto dPup = getDouble(d,"dPup"); auto dPdown = getDouble(d,"dPdown"); auto dQup = getDouble(d,"dQup"); auto dQdown = getDouble(d,"dQdown"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); _uncontrollableLoad(msg.initAdvertisement(), Pexp,Qexp, Srated, dPup, dPdown, dQup, dQdown, Pimp, Qimp); return; } void createUncontrGenAdv(msg::Message::Builder msg, rapidjson::Document &d) { auto Srated = getDouble(d,"Srated"); auto Pexp = getDouble(d,"Pexp"); auto Qexp = getDouble(d,"Qexp"); auto dPup = getDouble(d,"dPup"); auto dPdown = getDouble(d,"dPdown"); auto dQup = getDouble(d,"dQup"); auto dQdown = getDouble(d,"dQdown"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); auto maxPowerAbsorbtion = getDouble(d,"PmaxAbsorb"); _uncontrollableGenerator(msg.initAdvertisement(), Pexp,Qexp, Srated, dPup, dPdown, dQup, dQdown, Pimp, Qimp,maxPowerAbsorbtion); return; } void createDiscreteAdv(msg::Message::Builder msg, rapidjson::Document &d) { auto Pmin = getDouble(d,"Pmin"); auto Pmax = getDouble(d,"Pmax"); auto error = getDouble(d,"error"); std::vector<double> points; auto &pointList = d["points"]; for (auto itr = pointList.Begin(); itr != pointList.End(); ++itr) points.push_back(itr->GetDouble()); auto coeffP = getDouble(d,"coeffP"); auto coeffPsquared = getDouble(d,"coeffPsquared"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); _realDiscreteDeviceAdvertisement(msg.initAdvertisement(), Pmin, Pmax, points, error, coeffPsquared, coeffP, Pimp, Qimp); return; } void createDiscreteUnifAdv(msg::Message::Builder msg, rapidjson::Document &d) { auto Pmin = getDouble(d,"Pmin"); auto Pmax = getDouble(d,"Pmax"); auto stepsize = getDouble(d,"stepsize"); auto error = getDouble(d,"error"); auto coeffP = getDouble(d,"coeffP"); auto coeffPsquared = getDouble(d,"coeffPsquared"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); _uniformRealDiscreteDeviceAdvertisement(msg.initAdvertisement(), Pmin, Pmax, stepsize, error, coeffPsquared, coeffP, Pimp, Qimp); return; } void createZenoneAdv(msg::Message::Builder msg, rapidjson::Document &d) { auto Pmin = getDouble(d,"Pmin"); auto Pmax = getDouble(d,"Pmax"); auto stepsize = getDouble(d,"stepsize"); auto error = getDouble(d,"error"); auto coeffP = getDouble(d,"coeffP"); auto coeffPsquared = getDouble(d,"coeffPsquared"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); _zenoneAdvertisement(msg.initAdvertisement(), Pmin, Pmax, stepsize, error, coeffPsquared, coeffP, Pimp, Qimp); return; } void createFuelCellAdv(msg::Message::Builder msg, rapidjson::Document& d) { createBattAdv(msg, d); } void createPVAdv(msg::Message::Builder msg, rapidjson::Document& d) { auto Pmax = getDouble(d,"Pmax"); auto Pdelta = getDouble(d,"Pdelta"); auto Srated = getDouble(d,"Srated"); auto cosPhi = getDouble(d,"cosPhi"); // power factor (PF) = cos(phi) auto tanPhi = std::sqrt( 1.0 - std::pow(cosPhi,2))/cosPhi; // tan(phi) = sqrt(1 - PF^2) / PF auto a_pv = getDouble(d,"a_pv"); auto b_pv = getDouble(d,"b_pv"); auto Pimp = getDouble(d,"Pimp"); auto Qimp = getDouble(d,"Qimp"); _PVAdvertisement(msg.initAdvertisement(), Srated, Pmax, Pdelta, tanPhi, a_pv, b_pv, Pimp, Qimp); return; } // The "packing"-policy lets a user of the class choose between packed // serialisation and de-serialisation (default) or a variant that omits packing // See also: https://capnproto.org/encoding.html#packing // The PackedSerialization class can be found in "messaging/SenderPolicies.hpp" template <typename PackingPolicy = PackedSerialization> class CommelecDaemon : private PackingPolicy { using PackingPolicy::serializeAndAsyncSend; using typename PackingPolicy::CapnpReader; public: CommelecDaemon(boost::asio::io_service &io_service,AgentIdType agentId, Resource resourceType, PortNumberType localhost_listen_port, PortNumberType network_listen_port, std::vector<boost::asio::ip::udp::endpoint>& req_endpoints, std::vector<boost::asio::ip::udp::endpoint>& adv_endpoints, bool debug = false) : _debug(debug), _agentId(agentId), _resourceType(resourceType), _strand(io_service), _local_socket(io_service, udp::endpoint(udp::v4(), localhost_listen_port)), _network_socket(io_service, udp::endpoint(udp::v4(), network_listen_port)), _outgoing_req_endpoints(req_endpoints), _outgoing_adv_endpoints(adv_endpoints), _timer(io_service), logger(spdlog::stdout_logger_mt("console")) { //boost::asio::spawn spawn_coroutine(_strand, [this](boost::asio::yield_context yield) { listenGAside(yield); }); //boost::asio::spawn spawn_coroutine(_strand, [this](boost::asio::yield_context yield) { listenRAside(yield); }); logger->set_level(spdlog::level::debug); SPDLOG_DEBUG(logger, "Started coroutines"); // run listeners as coroutines } private: void listenGAside(boost::asio::yield_context yield) { // listen on the 'network side' for Cap'n Proto-encoded requests sent by a // GA using namespace rapidjson; for (;;) { // run endlessly auto asio_buffer = boost::asio::buffer(_network_data, networkBufLen); boost::asio::ip::udp::endpoint sender_endpoint; size_t bytes_received = _network_socket.async_receive_from( asio_buffer, sender_endpoint, yield); // wait for incoming packet if (_resourceType == Resource::custom) { // forward payload to client(s) auto writeBuf = boost::asio::buffer(_network_data,bytes_received); for(const auto& ep : _outgoing_req_endpoints) _local_socket.async_send_to(writeBuf, ep, yield); } else { CapnpReader reader(asio_buffer); msg::Message::Reader msg = reader.getMessage(); if (!msg.hasRequest()) throw; auto req = msg.getRequest(); // parse Capnp SPDLOG_DEBUG(logger, "Request received from GA"); Document d; d.SetObject(); Value spValid; auto valid = req.hasSetpoint(); spValid.SetBool(valid); double P = 0.0, Q = 0.0; if (valid) { auto sp = req.getSetpoint(); P = sp[0]; Q = sp[1]; } auto &allocator = d.GetAllocator(); // must pass an allocator when the object may need to allocate memory d.AddMember("setpointValid", spValid, allocator); d.AddMember("senderId", msg.getAgentId(), allocator); d.AddMember("P", P, allocator); d.AddMember("Q", Q, allocator); // construct the JSON object StringBuffer buffer; Writer<StringBuffer> writer(buffer); d.Accept(writer); std::string payload = buffer.GetString(); for(const auto& ep : _outgoing_req_endpoints) _local_socket.async_send_to(boost::asio::buffer(payload), ep, yield); // flatten to string and send packet(s) } } } void listenRAside(boost::asio::yield_context yield) { // listen for JSON-encoded advertisement-parameters from the RA using namespace rapidjson; Document d; for (;;) { // run endlessly auto asio_buffer = boost::asio::buffer(_local_data, maxUDPsize); boost::asio::ip::udp::endpoint sender_endpoint; size_t bytes_received = _local_socket.async_receive_from(asio_buffer, sender_endpoint, yield); // wait for incoming packet SPDLOG_DEBUG(logger, "Packet received from RA, bytes: {}", bytes_received); auto read_buffer = boost::asio::buffer(_local_data, bytes_received); if (_resourceType == Resource::custom) { // a "custom" resource prepares packed Cap'n Proto advertisements by itself, // we merely need to forward this payload // // TODO (later, we will add transport-layer logic here) if(_debug){ auto buf = boost::asio::const_buffer(read_buffer); AdvValidator<PackingPolicy> val(buf); // throws if advertisement does not pass checks } // auto bytesWritten = for(const auto& ep : _outgoing_adv_endpoints) _network_socket.async_send_to(read_buffer, ep, yield); } else { _local_data[bytes_received] = 0; // terminate data as C-string d.Parse(reinterpret_cast<const char *>(_local_data)); if (!d.IsObject()) throw std::runtime_error("JSON object invalid"); // parse JSON capnp::MallocMessageBuilder builder; auto msg = builder.initRoot<msg::Message>(); msg.setAgentId(_agentId); // make advertisement, depending on which resource switch (_resourceType) { case Resource::pv: createPVAdv(msg, d); break; case Resource::fuelcell: createFuelCellAdv(msg, d); break; case Resource::battery: createBattAdv(msg, d); break; case Resource::uncontrollableLoad: createUncontrLoadAdv(msg, d); break; case Resource::uncontrollableGenerator: createUncontrGenAdv(msg, d); break; case Resource::discrete: createDiscreteAdv(msg, d); break; case Resource::discreteUnif: createDiscreteUnifAdv(msg, d); break; case Resource::zenone: createZenoneAdv(msg, d); break; default: break; } serializeAndAsyncSend(builder, _network_socket, _outgoing_adv_endpoints, yield, _debug); // send packet(s) } } } //################## // class attributes //################## bool _debug; AgentIdType _agentId; Resource _resourceType; boost::asio::io_service::strand _strand; boost::asio::ip::udp::socket _local_socket; boost::asio::ip::udp::socket _network_socket; //boost::asio::ip::udp::endpoint _local_dest_endpoint; std::vector<boost::asio::ip::udp::endpoint>& _outgoing_req_endpoints; //_network_dest_endpoint; std::vector<boost::asio::ip::udp::endpoint>& _outgoing_adv_endpoints; //_network_dest_endpoint; boost::asio::high_resolution_timer _timer; // asio stuff capnp::byte _local_data[maxUDPsize]; //2^16 bytes (max UDP packet size is 65,507 bytes) capnp::byte _network_data[networkBufLen]; // persistent arrays for storing incoming udp packets std::shared_ptr<spdlog::logger> logger; }; udp::endpoint make_endpoint(std::string ip, int portnum) { return udp::endpoint(boost::asio::ip::address::from_string(ip), portnum); } void generateDefaultConfiguration(const char *configFile) { // generate a default configuration and write it to disk rapidjson::Document d; d.SetObject(); auto &allocator = d.GetAllocator(); // init JSON object d.AddMember("resource-type", "battery", allocator); d.AddMember("agent-id", 1000, allocator); d.AddMember("GA-ip", "127.0.0.1", allocator); d.AddMember("GA-port", 12345, allocator); d.AddMember("RA-ip", "127.0.0.1", allocator); d.AddMember("RA-port", 12342, allocator); d.AddMember("listenport-RA-side", 12340, allocator); d.AddMember("listenport-GA-side", 12341, allocator); d.AddMember("debug-mode", false, allocator); // populate JSON object writeJSONfile(configFile, d); // write JSON object to disk } int commandLineParser(int argc, char *argv[], std::string& configFile, ResourceMap& resources) { // This function handles command line arguments: // * no command line arguments // * '--generate' option // * '--list-resouces' option // * config file as argument // # malformed arguments (i.e., more than one cl argument) // // possibly updates configFile pointer // // returns: // false - some error occurred, program should terminate // true - configFile contains valid filename using std::cout; using std::endl; if (argc == 2) { if (std::string(argv[1]) == "--generate") { if (exists(configFile)) { cout << "Attempting to create '" << configFile << "', but that file already exists. Please remove that one first." << endl; return -1; } cout << "Generating configuration file: " << configFile << " ... "; generateDefaultConfiguration(configFile.c_str()); cout << "Done." << endl << "You can now edit and customize this file." << endl; return -1; } else if (std::string(argv[1]) == "--list-resources") { cout << "Available resource types:" << endl; for(auto& res: resources) cout << res.first << endl; return -1; } else { // command line arg is not an option configFile = (argv[1]); if (std::string(configFile) == "-") // read config from std input return 1; if (!exists(configFile) || !is_regular_file(configFile)) { cout << "Configuration file '" << configFile << "' could not be found." << endl; return -1; } return 0; } } else { cout << "Usage: " << argv[0] << " [config file]" << endl << endl; cout << "Other options:" << endl; cout << argv[0] << " - (read configuration from standard input)" << endl; cout << argv[0] << " --generate (generates a default configuration)" << endl; cout << argv[0] << " --list-resources (lists available resources)" << endl; return -1; } } void parseEndpointList(const std::string &name, rapidjson::Value &jsonObj, std::vector<udp::endpoint> &epVec) { if (jsonObj.HasMember(name.c_str())) { auto &epList = jsonObj[name.c_str()]; if (!epList.IsArray()) { throw std::runtime_error("Error: " + name + " argument should be a list of " "{\"ip\":\"<string>\",\"port\":<num>} " "pairs."); } //for (auto itr = epList.Begin(); itr != epList.End(); ++itr) { // epVec.emplace_back( // make_endpoint(getString(*itr, "RA-ip"), // static_cast<PortNumberType>(getInt(*itr, "RA-port")))); //} // // std::for_each(epList.Begin(), epList.End(),[&epVec](const rapidjson::Value& ep) { epVec.emplace_back(make_endpoint(getString(ep, "ip"), static_cast<PortNumberType>(getInt(ep, "port")))); }); } } // main function int main(int argc, char *argv[]) { ResourceMap resources({{"pv", Resource::pv}, {"battery", Resource::battery}, {"fuelcell", Resource::fuelcell}, {"uncontr-load", Resource::uncontrollableLoad}, {"uncontr-gen", Resource::uncontrollableGenerator}, {"custom", Resource::custom}, {"discrete-uniform", Resource::discreteUnif}, {"zenone", Resource::zenone}, {"discrete", Resource::discrete}}); boost::asio::io_service io_service; // needed for ASIO's eventloop auto configFile = std::string("daemon-cfg.json"); auto status = commandLineParser(argc, argv, configFile, resources); // possibly updates 'configFile' filename rapidjson::Document cfg; switch (status) { case 0: cfg = readJSONfile(configFile.c_str()); break; case 1: cfg = readJSONstdin(); break; default: return status; } // read command line parameters if (!cfg.IsObject()) { std::cout << "Malformed JSON object in configuration file" << std::endl; return -1; } // read the configuration parameters from disk try { std::vector<udp::endpoint> req_dests; std::vector<udp::endpoint> adv_dests; req_dests.emplace_back(make_endpoint(getString(cfg, "RA-ip"), static_cast<PortNumberType>(getInt(cfg, "RA-port")))); adv_dests.emplace_back(make_endpoint(getString(cfg, "GA-ip"), static_cast<PortNumberType>(getInt(cfg, "GA-port")))); parseEndpointList("clone-req",cfg,req_dests); parseEndpointList("clone-adv",cfg,adv_dests); // possibly more destinations to which packets (requests or advertisements) // should be sent CommelecDaemon<> daemon( io_service, getInt(cfg, "agent-id"), resources.at(getString(cfg, "resource-type")), static_cast<PortNumberType>(getInt(cfg, "listenport-RA-side")), static_cast<PortNumberType>(getInt(cfg, "listenport-GA-side")), req_dests,adv_dests, getBool(cfg, "debug-mode", false)); //instantiate our main class, with the parameters as set by the user in the config file // debug-mode is an optional parameter io_service.run(); // run asio's event-loop; used for asynchronous network IO using coroutines } catch (std::runtime_error& e) { std::cout << "Exception: '" << e.what() << std::endl; return -1; } catch (std::out_of_range& e) { std::cout << "Config error - unknown resource type: " << getString(cfg, "resource-type") << std::endl; return -1; } #ifndef __arm__ // armel arch does not support exception_ptr // catch (const std::exception_ptr &ep) // Exceptions coming from inside coroutines (these are wrapped in an // exception_ptr and have to be rethrown, see below) { try { std::rethrow_exception(ep); // rethrow the exception that the exception pointer points to } catch (const std::exception &e) { std::cout << "Exception occurred!" << std::endl; std::cout << e.what() << std::endl; } } #endif }
ad22a40f1dc402801e4a84ddd12d1b152fd37ed0
b64a95c32e2aeeec6f766f2701f686e2c2423008
/drone_con1/read_compass.ino
66821168b693544a0c65629f5fc155c0c557892e
[]
no_license
samariumch/mav_rpi
557c4c4b8bfe1514f36950c90ee519383bbb4d06
28b111cc5a6efea0fe5d21fe2dac4d5b84137dd4
refs/heads/master
2020-05-05T12:22:21.576320
2019-04-07T21:24:01
2019-04-07T21:24:01
180,025,380
0
0
null
null
null
null
UTF-8
C++
false
false
4,352
ino
read_compass.ino
void setup_compass() { Wire.beginTransmission(0x0D); //Start communication with the compass. Wire.write(0x0B); //We want to write to the Configuration Register A (00 hex). Wire.write(0x01); Wire.endTransmission(); Wire.beginTransmission(0x0D); Wire.write(0x09); //We want to write to the Configuration Register A (00 hex). Wire.write(0x0D); //Set the Configuration Regiser A bits as 01111000 to set sample rate (average of 8 at 75Hz). Wire.endTransmission(); //End the transmission with the compass. compass_cal_values[0] = -3150; compass_cal_values[1] = 7315; compass_cal_values[2] = -6995; compass_cal_values[3] = 3345; compass_cal_values[4] = -4742; compass_cal_values[5] = 5832; compass_scale_y = ((float)compass_cal_values[1] - compass_cal_values[0]) / (compass_cal_values[3] - compass_cal_values[2]); compass_scale_z = ((float)compass_cal_values[1] - compass_cal_values[0]) / (compass_cal_values[5] - compass_cal_values[4]); compass_offset_x = (compass_cal_values[1] - compass_cal_values[0]) / 2 - compass_cal_values[1]; compass_offset_y = (((float)compass_cal_values[3] - compass_cal_values[2]) / 2 - compass_cal_values[3]); compass_offset_z = (((float)compass_cal_values[5] - compass_cal_values[4]) / 2 - compass_cal_values[5]); } void read_compass() { Wire.beginTransmission(0x0D); //Start communication with the compass. Wire.write(0x00); //We want to start reading at the hexadecimal location 0x03. Wire.endTransmission(); //End the transmission with the gyro. Wire.requestFrom(0x0D, 6); //Request 6 bytes from the compass. compass_y = (int16_t)(Wire.read() | Wire.read() << 8); //Add the low and high byte to the compass_y variable. //Invert the direction of the axis. compass_x = (int16_t)(Wire.read() | Wire.read() << 8); //Add the low and high byte to the compass_z variable.; compass_z = (int16_t)(Wire.read() | Wire.read() << 8); //Add the low and high byte to the compass_x variable.; compass_z *= -1; //Invert the direction of the axis. compass_y += compass_offset_y; //Add the y-offset to the raw value. compass_y *= compass_scale_y; //Scale the y-value so it matches the other axis. compass_z += compass_offset_z; //Add the z-offset to the raw value. compass_z *= compass_scale_z; //Scale the z-value so it matches the other axis. compass_x += compass_offset_x; //Add the x-offset to the raw value. compass_x_horizontal = (float)compass_x * cos(Angle_Pitch * 0.0174533) + (float)compass_y * sin(Angle_Roll * 0.0174533) * sin(Angle_Pitch * 0.0174533) + (float)compass_z * cos(Angle_Roll * 0.0174533) * sin(Angle_Pitch * 0.0174533); compass_y_horizontal = (float)compass_y * cos(Angle_Roll * 0.0174533) - (float)compass_z * sin(Angle_Roll * 0.0174533); compass_x_horizontal_virtual = (compass_x_horizontal*cos(virtual_north*0.0174533)-compass_y_horizontal*sin(virtual_north*0.0174533)); compass_y_horizontal_virtual = (compass_x_horizontal*sin(virtual_north*0.0174533)+compass_y_horizontal*cos(virtual_north*0.0174533)); actual_compass_heading = -(atan2(compass_y_horizontal_virtual, compass_x_horizontal_virtual)) * (180 / 3.14); } //The following subrouting calculates the smallest difference between two heading values. float course_deviation(float course_b, float course_c) { float course_a; float base_course_mirrored; float actual_course_mirrored; course_a = course_b - course_c; if (course_a < -180 || course_a > 180) { if (course_c < 0)base_course_mirrored = course_c + 180; else base_course_mirrored = course_c - 180; if (course_b < 0)actual_course_mirrored = course_b + 180; else actual_course_mirrored = course_b - 180; course_a = actual_course_mirrored - base_course_mirrored; } return course_a; }
1da70840da34ba8d2166a993a1482068e34ba17a
ffff2a4fb72a163e4d42b01cefa1f5566784990f
/gfg/q4.cpp
9af8f37dc699dc3ed5aa875a0aef3724fb563559
[]
no_license
sanyamdtu/competitive_programming
d5b4bb6a1b46c56ebe2fe684f4a7129fe5fb8e86
5a810bbbd0c2119a172305b16d7d7aab3f0ed95e
refs/heads/master
2021-10-25T07:11:47.431312
2021-10-06T07:37:25
2021-10-06T07:37:25
238,703,031
1
0
null
null
null
null
UTF-8
C++
false
false
746
cpp
q4.cpp
#define ll long long #define ff first #define ss second #define pb push_back #define deb(x) cout<<x<<"\n"; #define deB(x,y) cout<<x<<" "<<y<<"\n"; #define Deb(x,y,z) cout<<x<<" "<<y<<" "<<z<<"\n"; #define YES cout<<"YES\n"; #define Yes cout<<"Yes\n"; #define NO cout<<"NO\n"; #define No cout<<"No\n"; #define clt(x) 63-__builtin_clzll(x) #define bct(x) __builtin_popcountll(x) #define all(v) (v).begin(),(v).end() #define pi pair<ll,ll> #define vi vector<ll> #define vpi vector<pair<ll,ll>> #define maxq priority_queue<ll> #define minq priority_queue<ll,vector<ll>, greater<ll>> #define cont continue; #define reto return 0; #define sz size() #define spmod 1116295198451 #define mod 1000000007 #define md 998244353 #define N 100009 #define LG 20
ca64c8f258368a1347fb3c649e5ec5182f3a4df9
1b824a21507632d08d8ae0b093c0212ea9645e2a
/ch07/exer7.58.cpp
7d6cadd5ff2f855de439c3ee00d71b74c1bc7b12
[]
no_license
gofreelee/cppprimerexercise
35d077e034ea631a56305d6b152b24d9928418d1
4a50050b7ea6c4bd03f7af638ff38154ffd00e40
refs/heads/master
2020-12-02T06:51:28.564615
2020-02-05T12:25:24
2020-02-05T12:25:24
230,921,184
2
0
null
null
null
null
UTF-8
C++
false
false
269
cpp
exer7.58.cpp
#include<vector> #include<iostream> class Example { public: static constexpr double rate = 6.5; static const int vecSize = 20; static std::vector<double> vec; private: }; std::vector<double> Example::vec ; int main() { std::cout<< Example::vec.size(); }
74f11486312b28ed64216b96486b5169de6297e8
f3cdaa13fd80501bc90a7b1192def08505d49841
/dl_createlightingform.cpp
894fd1fcec10cc1c805ad9b43b5b9ca2244e4730
[]
no_license
da-nie/3DEngine-OpenGL-MapEditor
a1fe51fed228adb3fb2ec677867be025e506e88f
c786b5788499bbf9085141c91f1c4133df7d4558
refs/heads/master
2021-03-24T13:25:14.775247
2018-02-17T17:31:17
2018-02-17T17:31:17
121,876,330
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
13,979
cpp
dl_createlightingform.cpp
#include "dl_createlightingform.h" extern SKeyData sKeyData;//ключевая информация extern HINSTANCE hProjectInstance; extern CWnd_Menu cWnd_Menu; CDialog_CreateLighting cDialog_CreateLighting; //------------------------------------------------------------------------------ CDialog_CreateLighting::CDialog_CreateLighting(void) { cDialog_CreateLighting.Initialize(); } LONG WINAPI CREATELIGHTINGFORM_dlgProc(HWND hDlg,UINT msg,WPARAM wParam,LPARAM lParam) { switch(msg) { case WM_INITDIALOG: { cDialog_CreateLighting.InitDialog(hDlg,wParam,lParam); return(TRUE); } case WM_COMMAND: { cDialog_CreateLighting.Command(hDlg,wParam,lParam); return(TRUE); } case WM_PAINT: { cDialog_CreateLighting.Paint(hDlg,wParam,lParam); return(TRUE); } } return(FALSE); } //------------------------------------------------------------------------------ void CDialog_CreateLighting::InitDialog(HWND hDlgs,WPARAM wParam,LPARAM lParam) { hDlg=hDlgs; hEdit_Height=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_HEIGHT); hRadioButton_Mode1=GetDlgItem(hDlg,CREATELIGHTINGFORM_RADIO_MODE1); hRadioButton_Mode2=GetDlgItem(hDlg,CREATELIGHTINGFORM_RADIO_MODE2); hRadioButton_Mode3=GetDlgItem(hDlg,CREATELIGHTINGFORM_RADIO_MODE3); hRadioButton_Mode4=GetDlgItem(hDlg,CREATELIGHTINGFORM_RADIO_MODE4); hEdit_Mode2_DarkTime=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE2_DARK_TIME); hEdit_Mode2_LightTime=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE2_LIGHT_TIME); hEdit_Mode2_MinimumLightLevel=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE2_MINIMUM_LIGHT_LEVEL); hEdit_Mode3_MinimumLightLevel=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE3_MINIMUM_LIGHT_LEVEL); hEdit_Mode3_CycleTime=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE3_CYCLE_TIME); hEdit_Mode4_OnTime=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE4_ON_TIME); hEdit_Mode4_OffTime=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE4_OFF_TIME); hEdit_Mode4_MinimumLightLevel=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_MODE4_MINIMUM_LIGHT_LEVEL); hEdit_TimeInterval=GetDlgItem(hDlg,CREATELIGHTINGFORM_EDIT_TIME_INTERVAL); char string[255]; sprintf(string,"%i",WorkingLighting.Z); SetWindowText(hEdit_Height,string); sprintf(string,"%g",WorkingLighting.Mode2_DarkTime); SetWindowText(hEdit_Mode2_DarkTime,string); sprintf(string,"%g",WorkingLighting.Mode2_LightTime); SetWindowText(hEdit_Mode2_LightTime,string); sprintf(string,"%g",WorkingLighting.Mode2_MinimumLightLevel); SetWindowText(hEdit_Mode2_MinimumLightLevel,string); sprintf(string,"%g",WorkingLighting.Mode3_CycleTime); SetWindowText(hEdit_Mode3_CycleTime,string); sprintf(string,"%g",WorkingLighting.Mode3_MinimumLightLevel); SetWindowText(hEdit_Mode3_MinimumLightLevel,string); sprintf(string,"%g",WorkingLighting.Mode4_MinimumLightLevel); SetWindowText(hEdit_Mode4_MinimumLightLevel,string); sprintf(string,"%g",WorkingLighting.Mode4_OffTime); SetWindowText(hEdit_Mode4_OffTime,string); sprintf(string,"%g",WorkingLighting.Mode4_OnTime); SetWindowText(hEdit_Mode4_OnTime,string); sprintf(string,"%i",WorkingLighting.TimeInterval); SetWindowText(hEdit_TimeInterval,string); SendMessage(hRadioButton_Mode1,BM_SETCHECK,0,0) ; SendMessage(hRadioButton_Mode2,BM_SETCHECK,0,0) ; SendMessage(hRadioButton_Mode3,BM_SETCHECK,0,0) ; SendMessage(hRadioButton_Mode4,BM_SETCHECK,0,0) ; if (WorkingLighting.Mode==1) SendMessage(hRadioButton_Mode1,BM_SETCHECK,1,0) ; if (WorkingLighting.Mode==2) SendMessage(hRadioButton_Mode2,BM_SETCHECK,1,0) ; if (WorkingLighting.Mode==3) SendMessage(hRadioButton_Mode3,BM_SETCHECK,1,0) ; if (WorkingLighting.Mode==4) SendMessage(hRadioButton_Mode4,BM_SETCHECK,1,0) ; ColorSet.Create(CC_ANYCOLOR|CC_FULLOPEN,hDlg,hProjectInstance); } void CDialog_CreateLighting::Command(HWND hDlgs,WPARAM wParam,LPARAM lParam) { int id=LOWORD(wParam); if (id==CREATELIGHTINGFORM_BUTTON_CANCEL) { InvalidateRect(sKeyData.hWndMain,NULL,FALSE); EndDialog(hDlg,TRUE); } if (id==CREATELIGHTINGFORM_BUTTON_CREATE) { char string[255]; GetWindowText(hEdit_Height,string,255); WorkingLighting.Z=atoi(string); GetWindowText(hEdit_Mode2_LightTime,string,255); WorkingLighting.Mode2_LightTime=(float)atof(string); GetWindowText(hEdit_Mode2_DarkTime,string,255); WorkingLighting.Mode2_DarkTime=(float)atof(string); GetWindowText(hEdit_Mode2_MinimumLightLevel,string,255); WorkingLighting.Mode2_MinimumLightLevel=(float)atof(string); GetWindowText(hEdit_Mode3_CycleTime,string,255); WorkingLighting.Mode3_CycleTime=(float)atof(string); GetWindowText(hEdit_Mode3_MinimumLightLevel,string,255); WorkingLighting.Mode3_MinimumLightLevel=(float)atof(string); GetWindowText(hEdit_Mode4_MinimumLightLevel,string,255); WorkingLighting.Mode4_MinimumLightLevel=(float)atof(string); GetWindowText(hEdit_Mode4_OnTime,string,255); WorkingLighting.Mode4_OnTime=(float)atof(string); GetWindowText(hEdit_Mode4_OffTime,string,255); WorkingLighting.Mode4_OffTime=(float)atof(string); GetWindowText(hEdit_TimeInterval,string,255); WorkingLighting.TimeInterval=atoi(string); if (SendMessage(hRadioButton_Mode1,BM_GETCHECK,0,0)==1) WorkingLighting.Mode=1; if (SendMessage(hRadioButton_Mode2,BM_GETCHECK,0,0)==1) WorkingLighting.Mode=2; if (SendMessage(hRadioButton_Mode3,BM_GETCHECK,0,0)==1) WorkingLighting.Mode=3; if (SendMessage(hRadioButton_Mode4,BM_GETCHECK,0,0)==1) WorkingLighting.Mode=4; Lighting[SelectLighting]=WorkingLighting; if (Flag==0)//если мы создаём новый источник света { sKeyData.MaximumNumberOfLighting++; cWnd_Menu.UpDate(); } InvalidateRect(sKeyData.hWndMain,NULL,FALSE); EndDialog(hDlg,TRUE); } if (id==CREATELIGHTINGFORM_BUTTON_SETCOLOR) SetColor(); } void CDialog_CreateLighting::Paint(HWND hDlgs,WPARAM wParam,LPARAM lParam) { PAINTSTRUCT ps; HDC hdc; hdc=BeginPaint(hDlg,&ps); RECT Rect; Rect.left=152; Rect.right=Rect.left+20; Rect.top=20; Rect.bottom=Rect.top+20; MapDialogRect(hDlg,&Rect); HPEN hOldPen,hPen; HBRUSH hOldBrush,hBrush; hPen=CreatePen(PS_SOLID,1,RGB(0,0,0)); hBrush=CreateSolidBrush(RGB(WorkingLighting.R,WorkingLighting.G,WorkingLighting.B)); hOldBrush=(HBRUSH)SelectObject(hdc,hBrush); hOldPen=(HPEN)SelectObject(hdc,hPen); Rectangle(hdc,Rect.left,Rect.top,Rect.right,Rect.bottom); SelectObject(hdc,hOldBrush); SelectObject(hdc,hOldPen); DeleteObject(hBrush); DeleteObject(hPen); EndPaint(hDlg,&ps); } //------------------------------------------------------------------------------ void CDialog_CreateLighting::Initialize(void) { WorkingLighting.Z=0; WorkingLighting.X=0; WorkingLighting.Y=0; WorkingLighting.R=255; WorkingLighting.G=255; WorkingLighting.B=255; WorkingLighting.Mode=1; WorkingLighting.Mode2_DarkTime=0; WorkingLighting.Mode2_LightTime=0; WorkingLighting.Mode2_MinimumLightLevel=0; WorkingLighting.Mode3_CycleTime=0; WorkingLighting.Mode3_MinimumLightLevel=0; WorkingLighting.Mode4_MinimumLightLevel=0; WorkingLighting.Mode4_OffTime=0; WorkingLighting.Mode4_OnTime=0; WorkingLighting.TimeInterval=0; } void CDialog_CreateLighting::CreateNewLighting(int x,int y) { Flag=0; WorkingLighting.X=x; WorkingLighting.Y=y; SelectLighting=sKeyData.MaximumNumberOfLighting; EnableWindow(sKeyData.hWndMenu,FALSE); DialogBox(hProjectInstance,(LPSTR)10,sKeyData.hWndMain,(DLGPROC)CREATELIGHTINGFORM_dlgProc); EnableWindow(sKeyData.hWndMenu,TRUE); } void CDialog_CreateLighting::ModifycationLighting(int lighting) { if (lighting==-1) return; Flag=1; WorkingLighting=Lighting[lighting]; SelectLighting=lighting; EnableWindow(sKeyData.hWndMenu,FALSE); DialogBox(hProjectInstance,(LPSTR)11,sKeyData.hWndMain,(DLGPROC)CREATELIGHTINGFORM_dlgProc); EnableWindow(sKeyData.hWndMenu,TRUE); } void CDialog_CreateLighting::DeleteLighting(void) { if (sKeyData.SelectLighting==-1) return; for(int n=sKeyData.SelectLighting+1;n<sKeyData.MaximumNumberOfLighting;n++) Lighting[n-1]=Lighting[n]; sKeyData.MaximumNumberOfLighting--; sKeyData.SelectLighting=-1; } void CDialog_CreateLighting::SetColor(void) { unsigned char r,g,b; if (ColorSet.Activate(&r,&g,&b)) { WorkingLighting.R=(unsigned char)r; WorkingLighting.G=(unsigned char)g; WorkingLighting.B=(unsigned char)b; InvalidateRect(hDlg,NULL,FALSE); } } void CDialog_CreateLighting::SaveLighting(FILE *File) { char string[255]; itoa(sKeyData.MaximumNumberOfLighting,string,10); fprintf(File,"SLighting STRUCTURE\n"); fprintf(File,"MAXIMUM %s\n",string); for(int n=0;n<sKeyData.MaximumNumberOfLighting;n++) { fprintf(File,"%i ",Lighting[n].X); fprintf(File,"%i ",Lighting[n].Y); fprintf(File,"%i ",Lighting[n].Z); fprintf(File,"%i ",Lighting[n].R); fprintf(File,"%i ",Lighting[n].G); fprintf(File,"%i ",Lighting[n].B); fprintf(File,"%i ",Lighting[n].Mode); fprintf(File,"%i ",Lighting[n].TimeInterval); fprintf(File,"%f ",Lighting[n].Mode2_DarkTime); fprintf(File,"%f ",Lighting[n].Mode2_LightTime); fprintf(File,"%f ",Lighting[n].Mode2_MinimumLightLevel); fprintf(File,"%f ",Lighting[n].Mode3_CycleTime); fprintf(File,"%f ",Lighting[n].Mode3_MinimumLightLevel); fprintf(File,"%f ",Lighting[n].Mode4_MinimumLightLevel); fprintf(File,"%f ",Lighting[n].Mode4_OffTime); fprintf(File,"%f \n",Lighting[n].Mode4_OnTime); } //сохраняем текущие настройки fprintf(File,"%i ",WorkingLighting.X); fprintf(File,"%i ",WorkingLighting.Y); fprintf(File,"%i ",WorkingLighting.Z); fprintf(File,"%i ",WorkingLighting.R); fprintf(File,"%i ",WorkingLighting.G); fprintf(File,"%i ",WorkingLighting.B); fprintf(File,"%i ",WorkingLighting.Mode); fprintf(File,"%i ",WorkingLighting.TimeInterval); fprintf(File,"%f ",WorkingLighting.Mode2_DarkTime); fprintf(File,"%f ",WorkingLighting.Mode2_LightTime); fprintf(File,"%f ",WorkingLighting.Mode2_MinimumLightLevel); fprintf(File,"%f ",WorkingLighting.Mode3_CycleTime); fprintf(File,"%f ",WorkingLighting.Mode3_MinimumLightLevel); fprintf(File,"%f ",WorkingLighting.Mode4_MinimumLightLevel); fprintf(File,"%f ",WorkingLighting.Mode4_OffTime); fprintf(File,"%f \n",WorkingLighting.Mode4_OnTime); } void CDialog_CreateLighting::LoadLighting(FILE *File) { if (GetReadPos(File,"SLighting STRUCTURE")==0) return; GetReadPos(File,"MAXIMUM"); sKeyData.MaximumNumberOfLighting=(int)ReadNumber(File); for(int n=0;n<sKeyData.MaximumNumberOfLighting;n++) { Lighting[n].X=(int)ReadNumber(File); Lighting[n].Y=(int)ReadNumber(File); Lighting[n].Z=(int)ReadNumber(File); Lighting[n].R=(int)ReadNumber(File); Lighting[n].G=(int)ReadNumber(File); Lighting[n].B=(int)ReadNumber(File); Lighting[n].Mode=(int)ReadNumber(File); Lighting[n].TimeInterval=(int)ReadNumber(File); Lighting[n].Mode2_DarkTime=ReadNumber(File); Lighting[n].Mode2_LightTime=ReadNumber(File); Lighting[n].Mode2_MinimumLightLevel=ReadNumber(File); Lighting[n].Mode3_CycleTime=ReadNumber(File); Lighting[n].Mode3_MinimumLightLevel=ReadNumber(File); Lighting[n].Mode4_MinimumLightLevel=ReadNumber(File); Lighting[n].Mode4_OffTime=ReadNumber(File); Lighting[n].Mode4_OnTime=ReadNumber(File); } WorkingLighting.X=(int)ReadNumber(File); WorkingLighting.Y=(int)ReadNumber(File); WorkingLighting.Z=(int)ReadNumber(File); WorkingLighting.R=(int)ReadNumber(File); WorkingLighting.G=(int)ReadNumber(File); WorkingLighting.B=(int)ReadNumber(File); WorkingLighting.Mode=(int)ReadNumber(File); WorkingLighting.TimeInterval=(int)ReadNumber(File); WorkingLighting.Mode2_DarkTime=ReadNumber(File); WorkingLighting.Mode2_LightTime=ReadNumber(File); WorkingLighting.Mode2_MinimumLightLevel=ReadNumber(File); WorkingLighting.Mode3_CycleTime=ReadNumber(File); WorkingLighting.Mode3_MinimumLightLevel=ReadNumber(File); WorkingLighting.Mode4_MinimumLightLevel=ReadNumber(File); WorkingLighting.Mode4_OffTime=ReadNumber(File); WorkingLighting.Mode4_OnTime=ReadNumber(File); } void CDialog_CreateLighting::DrawAllLighting(int xLeftMap,int yTopMap) { for(int n=0;n<sKeyData.MaximumNumberOfLighting;n++) { Circle((Lighting[n].X-xLeftMap)*10,(Lighting[n].Y-yTopMap)*10,8,Lighting[n].R,Lighting[n].G,Lighting[n].B); if (sKeyData.SelectLighting==n) Circle((Lighting[n].X-xLeftMap)*10,(Lighting[n].Y-yTopMap)*10,5,255-Lighting[n].R,255-Lighting[n].G,255-Lighting[n].B);//выделенный источник света } } int CDialog_CreateLighting::GetLightingInScreen(int x,int y) { int selected=-1; float minlen=1000000000.0; for(int n=0;n<sKeyData.MaximumNumberOfLighting;n++) { float xl=(float)(Lighting[n].X*10.0); float yl=(float)(Lighting[n].Y*10.0); float dist=(float)(sqrt((xl-x)*(xl-x)+(yl-y)*(yl-y))); if (dist<0) continue; if (dist<=minlen) { minlen=dist; selected=n; } } return(selected); } void CDialog_CreateLighting::SaveLightingFromRender(FILE *File,int lighting) { SaveFloat(File,(float)(-Lighting[lighting].X*16.0)); SaveFloat(File,(float)(Lighting[lighting].Z)); SaveFloat(File,(float)(-Lighting[lighting].Y*16.0)); SaveChar(File,Lighting[lighting].R); SaveChar(File,Lighting[lighting].G); SaveChar(File,Lighting[lighting].B); SaveInt(File,Lighting[lighting].Mode); SaveInt(File,Lighting[lighting].TimeInterval); SaveFloat(File,Lighting[lighting].Mode2_DarkTime); SaveFloat(File,Lighting[lighting].Mode2_LightTime); SaveFloat(File,Lighting[lighting].Mode2_MinimumLightLevel); SaveFloat(File,Lighting[lighting].Mode3_MinimumLightLevel); SaveFloat(File,Lighting[lighting].Mode3_CycleTime); SaveFloat(File,Lighting[lighting].Mode4_OnTime); SaveFloat(File,Lighting[lighting].Mode4_OffTime); SaveFloat(File,Lighting[lighting].Mode4_MinimumLightLevel); }
3143f5008822b5b81d3154a8b438e5da93e9739b
604f66860a18f85a528a943b4387d84bb20891bf
/UT_SolidAngle.cpp
e262e921850cf86b3b561b5537b26f640d74f7e5
[ "MIT" ]
permissive
alecjacobson/WindingNumber
cd442000b25b82ec7a284c15309001232373108e
106a8a29710f38826ced2d278b33ac647a41811b
refs/heads/master
2022-02-19T22:49:59.074416
2022-02-17T22:13:07
2022-02-17T22:13:07
162,359,694
9
3
MIT
2018-12-19T00:07:40
2018-12-19T00:07:39
null
UTF-8
C++
false
false
63,491
cpp
UT_SolidAngle.cpp
/* * Copyright (c) 2018 Side Effects Software Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * COMMENTS: * Functions and structures for computing solid angles. */ #include "UT_SolidAngle.h" #include "UT_BVHImpl.h" #include "UT_SmallArray.h" #include "UT_FixedVector.h" #include "VM_SIMD.h" #include "SYS_Types.h" #include <igl/parallel_for.h> #include <type_traits> #include <utility> #define SOLID_ANGLE_TIME_PRECOMPUTE 0 #if SOLID_ANGLE_TIME_PRECOMPUTE #include <UT/UT_StopWatch.h> #endif #define SOLID_ANGLE_DEBUG 0 #if SOLID_ANGLE_DEBUG #include <UT/UT_Debug.h> #endif #define TAYLOR_SERIES_ORDER 2 namespace igl { namespace FastWindingNumber { namespace HDK_Sample { template<typename T,typename S> struct UT_SolidAngle<T,S>::BoxData { void clear() { // Set everything to zero memset(this,0,sizeof(*this)); } using Type = typename std::conditional<BVH_N==4 && std::is_same<T,float>::value, v4uf, UT_FixedVector<T,BVH_N>>::type; using SType = typename std::conditional<BVH_N==4 && std::is_same<S,float>::value, v4uf, UT_FixedVector<S,BVH_N>>::type; /// An upper bound on the squared distance from myAverageP to the farthest point in the box. SType myMaxPDist2; /// Centre of mass of the mesh surface in this box UT_FixedVector<Type,3> myAverageP; /// Unnormalized, area-weighted normal of the mesh in this box UT_FixedVector<Type,3> myN; #if TAYLOR_SERIES_ORDER >= 1 /// Values for Omega_1 /// @{ UT_FixedVector<Type,3> myNijDiag; // Nxx, Nyy, Nzz Type myNxy_Nyx; // Nxy+Nyx Type myNyz_Nzy; // Nyz+Nzy Type myNzx_Nxz; // Nzx+Nxz /// @} #endif #if TAYLOR_SERIES_ORDER >= 2 /// Values for Omega_2 /// @{ UT_FixedVector<Type,3> myNijkDiag; // Nxxx, Nyyy, Nzzz Type mySumPermuteNxyz; // (Nxyz+Nxzy+Nyzx+Nyxz+Nzxy+Nzyx) = 2*(Nxyz+Nyzx+Nzxy) Type my2Nxxy_Nyxx; // Nxxy+Nxyx+Nyxx = 2Nxxy+Nyxx Type my2Nxxz_Nzxx; // Nxxz+Nxzx+Nzxx = 2Nxxz+Nzxx Type my2Nyyz_Nzyy; // Nyyz+Nyzy+Nzyy = 2Nyyz+Nzyy Type my2Nyyx_Nxyy; // Nyyx+Nyxy+Nxyy = 2Nyyx+Nxyy Type my2Nzzx_Nxzz; // Nzzx+Nzxz+Nxzz = 2Nzzx+Nxzz Type my2Nzzy_Nyzz; // Nzzy+Nzyz+Nyzz = 2Nzzy+Nyzz /// @} #endif }; template<typename T,typename S> inline UT_SolidAngle<T,S>::UT_SolidAngle() : myTree() , myNBoxes(0) , myOrder(2) , myData(nullptr) , myNTriangles(0) , myTrianglePoints(nullptr) , myNPoints(0) , myPositions(nullptr) {} template<typename T,typename S> inline UT_SolidAngle<T,S>::~UT_SolidAngle() { // Default destruction works, but this needs to be outlined // to avoid having to include UT_BVHImpl.h in the header, // (for the UT_UniquePtr destructor.) } template<typename T,typename S> inline void UT_SolidAngle<T,S>::init( const int ntriangles, const int *const triangle_points, const int npoints, const UT_Vector3T<S> *const positions, const int order) { #if SOLID_ANGLE_DEBUG UTdebugFormat(""); UTdebugFormat(""); UTdebugFormat("Building BVH for {} ntriangles on {} points:", ntriangles, npoints); #endif myOrder = order; myNTriangles = ntriangles; myTrianglePoints = triangle_points; myNPoints = npoints; myPositions = positions; #if SOLID_ANGLE_TIME_PRECOMPUTE UT_StopWatch timer; timer.start(); #endif UT_SmallArray<UT::Box<S,3>> triangle_boxes; triangle_boxes.setSizeNoInit(ntriangles); if (ntriangles < 16*1024) { const int *cur_triangle_points = triangle_points; for (int i = 0; i < ntriangles; ++i, cur_triangle_points += 3) { UT::Box<S,3> &box = triangle_boxes[i]; box.initBounds(positions[cur_triangle_points[0]]); box.enlargeBounds(positions[cur_triangle_points[1]]); box.enlargeBounds(positions[cur_triangle_points[2]]); } } else { igl::parallel_for(ntriangles, [triangle_points,&triangle_boxes,positions](int i) { const int *cur_triangle_points = triangle_points + i*3; UT::Box<S,3> &box = triangle_boxes[i]; box.initBounds(positions[cur_triangle_points[0]]); box.enlargeBounds(positions[cur_triangle_points[1]]); box.enlargeBounds(positions[cur_triangle_points[2]]); }); } #if SOLID_ANGLE_TIME_PRECOMPUTE double time = timer.stop(); UTdebugFormat("{} s to create bounding boxes.", time); timer.start(); #endif myTree.template init<UT::BVH_Heuristic::BOX_AREA,S,3>(triangle_boxes.array(), ntriangles); #if SOLID_ANGLE_TIME_PRECOMPUTE time = timer.stop(); UTdebugFormat("{} s to initialize UT_BVH structure. {} nodes", time, myTree.getNumNodes()); #endif //myTree.debugDump(); const int nnodes = myTree.getNumNodes(); myNBoxes = nnodes; BoxData *box_data = new BoxData[nnodes]; myData.reset(box_data); // Some data are only needed during initialization. struct LocalData { // Bounding box UT::Box<S,3> myBox; // P and N are needed from each child for computing Nij. UT_Vector3T<T> myAverageP; UT_Vector3T<T> myAreaP; UT_Vector3T<T> myN; // Unsigned area is needed for computing the average position. T myArea; #if TAYLOR_SERIES_ORDER >= 1 // These are needed for computing Nijk. UT_Vector3T<T> myNijDiag; T myNxy; T myNyx; T myNyz; T myNzy; T myNzx; T myNxz; #endif #if TAYLOR_SERIES_ORDER >= 2 UT_Vector3T<T> myNijkDiag; // Nxxx, Nyyy, Nzzz T mySumPermuteNxyz; // (Nxyz+Nxzy+Nyzx+Nyxz+Nzxy+Nzyx) = 2*(Nxyz+Nyzx+Nzxy) T my2Nxxy_Nyxx; // Nxxy+Nxyx+Nyxx = 2Nxxy+Nyxx T my2Nxxz_Nzxx; // Nxxz+Nxzx+Nzxx = 2Nxxz+Nzxx T my2Nyyz_Nzyy; // Nyyz+Nyzy+Nzyy = 2Nyyz+Nzyy T my2Nyyx_Nxyy; // Nyyx+Nyxy+Nxyy = 2Nyyx+Nxyy T my2Nzzx_Nxzz; // Nzzx+Nzxz+Nxzz = 2Nzzx+Nxzz T my2Nzzy_Nyzz; // Nzzy+Nzyz+Nyzz = 2Nzzy+Nyzz #endif }; struct PrecomputeFunctors { BoxData *const myBoxData; const UT::Box<S,3> *const myTriangleBoxes; const int *const myTrianglePoints; const UT_Vector3T<S> *const myPositions; const int myOrder; PrecomputeFunctors( BoxData *box_data, const UT::Box<S,3> *triangle_boxes, const int *triangle_points, const UT_Vector3T<S> *positions, const int order) : myBoxData(box_data) , myTriangleBoxes(triangle_boxes) , myTrianglePoints(triangle_points) , myPositions(positions) , myOrder(order) {} constexpr SYS_FORCE_INLINE bool pre(const int nodei, LocalData *data_for_parent) const { return true; } void item(const int itemi, const int parent_nodei, LocalData &data_for_parent) const { const UT_Vector3T<S> *const positions = myPositions; const int *const cur_triangle_points = myTrianglePoints + 3*itemi; const UT_Vector3T<T> a = positions[cur_triangle_points[0]]; const UT_Vector3T<T> b = positions[cur_triangle_points[1]]; const UT_Vector3T<T> c = positions[cur_triangle_points[2]]; const UT_Vector3T<T> ab = b-a; const UT_Vector3T<T> ac = c-a; const UT::Box<S,3> &triangle_box = myTriangleBoxes[itemi]; data_for_parent.myBox.initBounds(triangle_box.getMin(), triangle_box.getMax()); // Area-weighted normal (unnormalized) const UT_Vector3T<T> N = T(0.5)*cross(ab,ac); const T area2 = N.length2(); const T area = SYSsqrt(area2); const UT_Vector3T<T> P = (a+b+c)/3; data_for_parent.myAverageP = P; data_for_parent.myAreaP = P*area; data_for_parent.myN = N; #if SOLID_ANGLE_DEBUG UTdebugFormat(""); UTdebugFormat("Triangle {}: P = {}; N = {}; area = {}", itemi, P, N, area); UTdebugFormat(" box = {}", data_for_parent.myBox); #endif data_for_parent.myArea = area; #if TAYLOR_SERIES_ORDER >= 1 const int order = myOrder; if (order < 1) return; // NOTE: Due to P being at the centroid, triangles have Nij = 0 // contributions to Nij. data_for_parent.myNijDiag = T(0); data_for_parent.myNxy = 0; data_for_parent.myNyx = 0; data_for_parent.myNyz = 0; data_for_parent.myNzy = 0; data_for_parent.myNzx = 0; data_for_parent.myNxz = 0; #endif #if TAYLOR_SERIES_ORDER >= 2 if (order < 2) return; // If it's zero-length, the results are zero, so we can skip. if (area == 0) { data_for_parent.myNijkDiag = T(0); data_for_parent.mySumPermuteNxyz = 0; data_for_parent.my2Nxxy_Nyxx = 0; data_for_parent.my2Nxxz_Nzxx = 0; data_for_parent.my2Nyyz_Nzyy = 0; data_for_parent.my2Nyyx_Nxyy = 0; data_for_parent.my2Nzzx_Nxzz = 0; data_for_parent.my2Nzzy_Nyzz = 0; return; } // We need to use the NORMALIZED normal to multiply the integrals by. UT_Vector3T<T> n = N/area; // Figure out the order of a, b, and c in x, y, and z // for use in computing the integrals for Nijk. UT_Vector3T<T> values[3] = {a, b, c}; int order_x[3] = {0,1,2}; if (a[0] > b[0]) std::swap(order_x[0],order_x[1]); if (values[order_x[0]][0] > c[0]) std::swap(order_x[0],order_x[2]); if (values[order_x[1]][0] > values[order_x[2]][0]) std::swap(order_x[1],order_x[2]); T dx = values[order_x[2]][0] - values[order_x[0]][0]; int order_y[3] = {0,1,2}; if (a[1] > b[1]) std::swap(order_y[0],order_y[1]); if (values[order_y[0]][1] > c[1]) std::swap(order_y[0],order_y[2]); if (values[order_y[1]][1] > values[order_y[2]][1]) std::swap(order_y[1],order_y[2]); T dy = values[order_y[2]][1] - values[order_y[0]][1]; int order_z[3] = {0,1,2}; if (a[2] > b[2]) std::swap(order_z[0],order_z[1]); if (values[order_z[0]][2] > c[2]) std::swap(order_z[0],order_z[2]); if (values[order_z[1]][2] > values[order_z[2]][2]) std::swap(order_z[1],order_z[2]); T dz = values[order_z[2]][2] - values[order_z[0]][2]; auto &&compute_integrals = []( const UT_Vector3T<T> &a, const UT_Vector3T<T> &b, const UT_Vector3T<T> &c, const UT_Vector3T<T> &P, T *integral_ii, T *integral_ij, T *integral_ik, const int i) { #if SOLID_ANGLE_DEBUG UTdebugFormat(" Splitting on {}; a = {}; b = {}; c = {}", char('x'+i), a, b, c); #endif // NOTE: a, b, and c must be in order of the i axis. // We're splitting the triangle at the middle i coordinate. const UT_Vector3T<T> oab = b - a; const UT_Vector3T<T> oac = c - a; const UT_Vector3T<T> ocb = b - c; UT_ASSERT_MSG_P(oac[i] > 0, "This should have been checked by the caller."); const T t = oab[i]/oac[i]; UT_ASSERT_MSG_P(t >= 0 && t <= 1, "Either sorting must have gone wrong, or there are input NaNs."); const int j = (i==2) ? 0 : (i+1); const int k = (j==2) ? 0 : (j+1); const T jdiff = t*oac[j] - oab[j]; const T kdiff = t*oac[k] - oab[k]; UT_Vector3T<T> cross_a; cross_a[0] = (jdiff*oab[k] - kdiff*oab[j]); cross_a[1] = kdiff*oab[i]; cross_a[2] = jdiff*oab[i]; UT_Vector3T<T> cross_c; cross_c[0] = (jdiff*ocb[k] - kdiff*ocb[j]); cross_c[1] = kdiff*ocb[i]; cross_c[2] = jdiff*ocb[i]; const T area_scale_a = cross_a.length(); const T area_scale_c = cross_c.length(); const T Pai = a[i] - P[i]; const T Pci = c[i] - P[i]; // Integral over the area of the triangle of (pi^2)dA, // by splitting the triangle into two at b, the a side // and the c side. const T int_ii_a = area_scale_a*(T(0.5)*Pai*Pai + T(2.0/3.0)*Pai*oab[i] + T(0.25)*oab[i]*oab[i]); const T int_ii_c = area_scale_c*(T(0.5)*Pci*Pci + T(2.0/3.0)*Pci*ocb[i] + T(0.25)*ocb[i]*ocb[i]); *integral_ii = int_ii_a + int_ii_c; #if SOLID_ANGLE_DEBUG UTdebugFormat(" integral_{}{}_a = {}; integral_{}{}_c = {}", char('x'+i), char('x'+i), int_ii_a, char('x'+i), char('x'+i), int_ii_c); #endif int jk = j; T *integral = integral_ij; T diff = jdiff; while (true) // This only does 2 iterations, one for j and one for k { if (integral) { T obmidj = b[jk] + T(0.5)*diff; T oabmidj = obmidj - a[jk]; T ocbmidj = obmidj - c[jk]; T Paj = a[jk] - P[jk]; T Pcj = c[jk] - P[jk]; // Integral over the area of the triangle of (pi*pj)dA const T int_ij_a = area_scale_a*(T(0.5)*Pai*Paj + T(1.0/3.0)*Pai*oabmidj + T(1.0/3.0)*Paj*oab[i] + T(0.25)*oab[i]*oabmidj); const T int_ij_c = area_scale_c*(T(0.5)*Pci*Pcj + T(1.0/3.0)*Pci*ocbmidj + T(1.0/3.0)*Pcj*ocb[i] + T(0.25)*ocb[i]*ocbmidj); *integral = int_ij_a + int_ij_c; #if SOLID_ANGLE_DEBUG UTdebugFormat(" integral_{}{}_a = {}; integral_{}{}_c = {}", char('x'+i), char('x'+jk), int_ij_a, char('x'+i), char('x'+jk), int_ij_c); #endif } if (jk == k) break; jk = k; integral = integral_ik; diff = kdiff; } }; T integral_xx = 0; T integral_xy = 0; T integral_yy = 0; T integral_yz = 0; T integral_zz = 0; T integral_zx = 0; // Note that if the span of any axis is zero, the integral must be zero, // since there's a factor of (p_i-P_i), i.e. value minus average, // and every value must be equal to the average, giving zero. if (dx > 0) { compute_integrals( values[order_x[0]], values[order_x[1]], values[order_x[2]], P, &integral_xx, ((dx >= dy && dy > 0) ? &integral_xy : nullptr), ((dx >= dz && dz > 0) ? &integral_zx : nullptr), 0); } if (dy > 0) { compute_integrals( values[order_y[0]], values[order_y[1]], values[order_y[2]], P, &integral_yy, ((dy >= dz && dz > 0) ? &integral_yz : nullptr), ((dx < dy && dx > 0) ? &integral_xy : nullptr), 1); } if (dz > 0) { compute_integrals( values[order_z[0]], values[order_z[1]], values[order_z[2]], P, &integral_zz, ((dx < dz && dx > 0) ? &integral_zx : nullptr), ((dy < dz && dy > 0) ? &integral_yz : nullptr), 2); } UT_Vector3T<T> Niii; Niii[0] = integral_xx; Niii[1] = integral_yy; Niii[2] = integral_zz; Niii *= n; data_for_parent.myNijkDiag = Niii; data_for_parent.mySumPermuteNxyz = 2*(n[0]*integral_yz + n[1]*integral_zx + n[2]*integral_xy); T Nxxy = n[0]*integral_xy; T Nxxz = n[0]*integral_zx; T Nyyz = n[1]*integral_yz; T Nyyx = n[1]*integral_xy; T Nzzx = n[2]*integral_zx; T Nzzy = n[2]*integral_yz; data_for_parent.my2Nxxy_Nyxx = 2*Nxxy + n[1]*integral_xx; data_for_parent.my2Nxxz_Nzxx = 2*Nxxz + n[2]*integral_xx; data_for_parent.my2Nyyz_Nzyy = 2*Nyyz + n[2]*integral_yy; data_for_parent.my2Nyyx_Nxyy = 2*Nyyx + n[0]*integral_yy; data_for_parent.my2Nzzx_Nxzz = 2*Nzzx + n[0]*integral_zz; data_for_parent.my2Nzzy_Nyzz = 2*Nzzy + n[1]*integral_zz; #if SOLID_ANGLE_DEBUG UTdebugFormat(" integral_xx = {}; yy = {}; zz = {}", integral_xx, integral_yy, integral_zz); UTdebugFormat(" integral_xy = {}; yz = {}; zx = {}", integral_xy, integral_yz, integral_zx); #endif #endif } void post(const int nodei, const int parent_nodei, LocalData *data_for_parent, const int nchildren, const LocalData *child_data_array) const { // NOTE: Although in the general case, data_for_parent may be null for the root call, // this functor assumes that it's non-null, so the call below must pass a non-null pointer. BoxData &current_box_data = myBoxData[nodei]; UT_Vector3T<T> N = child_data_array[0].myN; ((T*)&current_box_data.myN[0])[0] = N[0]; ((T*)&current_box_data.myN[1])[0] = N[1]; ((T*)&current_box_data.myN[2])[0] = N[2]; UT_Vector3T<T> areaP = child_data_array[0].myAreaP; T area = child_data_array[0].myArea; UT_Vector3T<T> local_P = child_data_array[0].myAverageP; ((T*)&current_box_data.myAverageP[0])[0] = local_P[0]; ((T*)&current_box_data.myAverageP[1])[0] = local_P[1]; ((T*)&current_box_data.myAverageP[2])[0] = local_P[2]; for (int i = 1; i < nchildren; ++i) { const UT_Vector3T<T> local_N = child_data_array[i].myN; N += local_N; ((T*)&current_box_data.myN[0])[i] = local_N[0]; ((T*)&current_box_data.myN[1])[i] = local_N[1]; ((T*)&current_box_data.myN[2])[i] = local_N[2]; areaP += child_data_array[i].myAreaP; area += child_data_array[i].myArea; const UT_Vector3T<T> local_P = child_data_array[i].myAverageP; ((T*)&current_box_data.myAverageP[0])[i] = local_P[0]; ((T*)&current_box_data.myAverageP[1])[i] = local_P[1]; ((T*)&current_box_data.myAverageP[2])[i] = local_P[2]; } for (int i = nchildren; i < BVH_N; ++i) { // Set to zero, just to avoid false positives for uses of uninitialized memory. ((T*)&current_box_data.myN[0])[i] = 0; ((T*)&current_box_data.myN[1])[i] = 0; ((T*)&current_box_data.myN[2])[i] = 0; ((T*)&current_box_data.myAverageP[0])[i] = 0; ((T*)&current_box_data.myAverageP[1])[i] = 0; ((T*)&current_box_data.myAverageP[2])[i] = 0; } data_for_parent->myN = N; data_for_parent->myAreaP = areaP; data_for_parent->myArea = area; UT::Box<S,3> box(child_data_array[0].myBox); for (int i = 1; i < nchildren; ++i) box.enlargeBounds(child_data_array[i].myBox); // Normalize P UT_Vector3T<T> averageP; if (area > 0) averageP = areaP/area; else averageP = T(0.5)*(box.getMin() + box.getMax()); data_for_parent->myAverageP = averageP; data_for_parent->myBox = box; for (int i = 0; i < nchildren; ++i) { const UT::Box<S,3> &local_box(child_data_array[i].myBox); const UT_Vector3T<T> &local_P = child_data_array[i].myAverageP; const UT_Vector3T<T> maxPDiff = SYSmax(local_P-UT_Vector3T<T>(local_box.getMin()), UT_Vector3T<T>(local_box.getMax())-local_P); ((T*)&current_box_data.myMaxPDist2)[i] = maxPDiff.length2(); } for (int i = nchildren; i < BVH_N; ++i) { // This child is non-existent. If we set myMaxPDist2 to infinity, it will never // use the approximation, and the traverseVector function can check for EMPTY. ((T*)&current_box_data.myMaxPDist2)[i] = std::numeric_limits<T>::infinity(); } #if TAYLOR_SERIES_ORDER >= 1 const int order = myOrder; if (order >= 1) { // We now have the current box's P, so we can adjust Nij and Nijk data_for_parent->myNijDiag = child_data_array[0].myNijDiag; data_for_parent->myNxy = 0; data_for_parent->myNyx = 0; data_for_parent->myNyz = 0; data_for_parent->myNzy = 0; data_for_parent->myNzx = 0; data_for_parent->myNxz = 0; #if TAYLOR_SERIES_ORDER >= 2 data_for_parent->myNijkDiag = child_data_array[0].myNijkDiag; data_for_parent->mySumPermuteNxyz = child_data_array[0].mySumPermuteNxyz; data_for_parent->my2Nxxy_Nyxx = child_data_array[0].my2Nxxy_Nyxx; data_for_parent->my2Nxxz_Nzxx = child_data_array[0].my2Nxxz_Nzxx; data_for_parent->my2Nyyz_Nzyy = child_data_array[0].my2Nyyz_Nzyy; data_for_parent->my2Nyyx_Nxyy = child_data_array[0].my2Nyyx_Nxyy; data_for_parent->my2Nzzx_Nxzz = child_data_array[0].my2Nzzx_Nxzz; data_for_parent->my2Nzzy_Nyzz = child_data_array[0].my2Nzzy_Nyzz; #endif for (int i = 1; i < nchildren; ++i) { data_for_parent->myNijDiag += child_data_array[i].myNijDiag; #if TAYLOR_SERIES_ORDER >= 2 data_for_parent->myNijkDiag += child_data_array[i].myNijkDiag; data_for_parent->mySumPermuteNxyz += child_data_array[i].mySumPermuteNxyz; data_for_parent->my2Nxxy_Nyxx += child_data_array[i].my2Nxxy_Nyxx; data_for_parent->my2Nxxz_Nzxx += child_data_array[i].my2Nxxz_Nzxx; data_for_parent->my2Nyyz_Nzyy += child_data_array[i].my2Nyyz_Nzyy; data_for_parent->my2Nyyx_Nxyy += child_data_array[i].my2Nyyx_Nxyy; data_for_parent->my2Nzzx_Nxzz += child_data_array[i].my2Nzzx_Nxzz; data_for_parent->my2Nzzy_Nyzz += child_data_array[i].my2Nzzy_Nyzz; #endif } for (int j = 0; j < 3; ++j) ((T*)&current_box_data.myNijDiag[j])[0] = child_data_array[0].myNijDiag[j]; ((T*)&current_box_data.myNxy_Nyx)[0] = child_data_array[0].myNxy + child_data_array[0].myNyx; ((T*)&current_box_data.myNyz_Nzy)[0] = child_data_array[0].myNyz + child_data_array[0].myNzy; ((T*)&current_box_data.myNzx_Nxz)[0] = child_data_array[0].myNzx + child_data_array[0].myNxz; for (int j = 0; j < 3; ++j) ((T*)&current_box_data.myNijkDiag[j])[0] = child_data_array[0].myNijkDiag[j]; ((T*)&current_box_data.mySumPermuteNxyz)[0] = child_data_array[0].mySumPermuteNxyz; ((T*)&current_box_data.my2Nxxy_Nyxx)[0] = child_data_array[0].my2Nxxy_Nyxx; ((T*)&current_box_data.my2Nxxz_Nzxx)[0] = child_data_array[0].my2Nxxz_Nzxx; ((T*)&current_box_data.my2Nyyz_Nzyy)[0] = child_data_array[0].my2Nyyz_Nzyy; ((T*)&current_box_data.my2Nyyx_Nxyy)[0] = child_data_array[0].my2Nyyx_Nxyy; ((T*)&current_box_data.my2Nzzx_Nxzz)[0] = child_data_array[0].my2Nzzx_Nxzz; ((T*)&current_box_data.my2Nzzy_Nyzz)[0] = child_data_array[0].my2Nzzy_Nyzz; for (int i = 1; i < nchildren; ++i) { for (int j = 0; j < 3; ++j) ((T*)&current_box_data.myNijDiag[j])[i] = child_data_array[i].myNijDiag[j]; ((T*)&current_box_data.myNxy_Nyx)[i] = child_data_array[i].myNxy + child_data_array[i].myNyx; ((T*)&current_box_data.myNyz_Nzy)[i] = child_data_array[i].myNyz + child_data_array[i].myNzy; ((T*)&current_box_data.myNzx_Nxz)[i] = child_data_array[i].myNzx + child_data_array[i].myNxz; for (int j = 0; j < 3; ++j) ((T*)&current_box_data.myNijkDiag[j])[i] = child_data_array[i].myNijkDiag[j]; ((T*)&current_box_data.mySumPermuteNxyz)[i] = child_data_array[i].mySumPermuteNxyz; ((T*)&current_box_data.my2Nxxy_Nyxx)[i] = child_data_array[i].my2Nxxy_Nyxx; ((T*)&current_box_data.my2Nxxz_Nzxx)[i] = child_data_array[i].my2Nxxz_Nzxx; ((T*)&current_box_data.my2Nyyz_Nzyy)[i] = child_data_array[i].my2Nyyz_Nzyy; ((T*)&current_box_data.my2Nyyx_Nxyy)[i] = child_data_array[i].my2Nyyx_Nxyy; ((T*)&current_box_data.my2Nzzx_Nxzz)[i] = child_data_array[i].my2Nzzx_Nxzz; ((T*)&current_box_data.my2Nzzy_Nyzz)[i] = child_data_array[i].my2Nzzy_Nyzz; } for (int i = nchildren; i < BVH_N; ++i) { // Set to zero, just to avoid false positives for uses of uninitialized memory. for (int j = 0; j < 3; ++j) ((T*)&current_box_data.myNijDiag[j])[i] = 0; ((T*)&current_box_data.myNxy_Nyx)[i] = 0; ((T*)&current_box_data.myNyz_Nzy)[i] = 0; ((T*)&current_box_data.myNzx_Nxz)[i] = 0; for (int j = 0; j < 3; ++j) ((T*)&current_box_data.myNijkDiag[j])[i] = 0; ((T*)&current_box_data.mySumPermuteNxyz)[i] = 0; ((T*)&current_box_data.my2Nxxy_Nyxx)[i] = 0; ((T*)&current_box_data.my2Nxxz_Nzxx)[i] = 0; ((T*)&current_box_data.my2Nyyz_Nzyy)[i] = 0; ((T*)&current_box_data.my2Nyyx_Nxyy)[i] = 0; ((T*)&current_box_data.my2Nzzx_Nxzz)[i] = 0; ((T*)&current_box_data.my2Nzzy_Nyzz)[i] = 0; } for (int i = 0; i < nchildren; ++i) { const LocalData &child_data = child_data_array[i]; UT_Vector3T<T> displacement = child_data.myAverageP - UT_Vector3T<T>(data_for_parent->myAverageP); UT_Vector3T<T> N = child_data.myN; // Adjust Nij for the change in centre P data_for_parent->myNijDiag += N*displacement; T Nxy = child_data.myNxy + N[0]*displacement[1]; T Nyx = child_data.myNyx + N[1]*displacement[0]; T Nyz = child_data.myNyz + N[1]*displacement[2]; T Nzy = child_data.myNzy + N[2]*displacement[1]; T Nzx = child_data.myNzx + N[2]*displacement[0]; T Nxz = child_data.myNxz + N[0]*displacement[2]; data_for_parent->myNxy += Nxy; data_for_parent->myNyx += Nyx; data_for_parent->myNyz += Nyz; data_for_parent->myNzy += Nzy; data_for_parent->myNzx += Nzx; data_for_parent->myNxz += Nxz; #if TAYLOR_SERIES_ORDER >= 2 if (order >= 2) { // Adjust Nijk for the change in centre P data_for_parent->myNijkDiag += T(2)*displacement*child_data.myNijDiag + displacement*displacement*child_data.myN; data_for_parent->mySumPermuteNxyz += (displacement[0]*(Nyz+Nzy) + displacement[1]*(Nzx+Nxz) + displacement[2]*(Nxy+Nyx)); data_for_parent->my2Nxxy_Nyxx += 2*(displacement[1]*child_data.myNijDiag[0] + displacement[0]*child_data.myNxy + N[0]*displacement[0]*displacement[1]) + 2*child_data.myNyx*displacement[0] + N[1]*displacement[0]*displacement[0]; data_for_parent->my2Nxxz_Nzxx += 2*(displacement[2]*child_data.myNijDiag[0] + displacement[0]*child_data.myNxz + N[0]*displacement[0]*displacement[2]) + 2*child_data.myNzx*displacement[0] + N[2]*displacement[0]*displacement[0]; data_for_parent->my2Nyyz_Nzyy += 2*(displacement[2]*child_data.myNijDiag[1] + displacement[1]*child_data.myNyz + N[1]*displacement[1]*displacement[2]) + 2*child_data.myNzy*displacement[1] + N[2]*displacement[1]*displacement[1]; data_for_parent->my2Nyyx_Nxyy += 2*(displacement[0]*child_data.myNijDiag[1] + displacement[1]*child_data.myNyx + N[1]*displacement[1]*displacement[0]) + 2*child_data.myNxy*displacement[1] + N[0]*displacement[1]*displacement[1]; data_for_parent->my2Nzzx_Nxzz += 2*(displacement[0]*child_data.myNijDiag[2] + displacement[2]*child_data.myNzx + N[2]*displacement[2]*displacement[0]) + 2*child_data.myNxz*displacement[2] + N[0]*displacement[2]*displacement[2]; data_for_parent->my2Nzzy_Nyzz += 2*(displacement[1]*child_data.myNijDiag[2] + displacement[2]*child_data.myNzy + N[2]*displacement[2]*displacement[1]) + 2*child_data.myNyz*displacement[2] + N[1]*displacement[2]*displacement[2]; } #endif } } #endif #if SOLID_ANGLE_DEBUG UTdebugFormat(""); UTdebugFormat("Node {}: nchildren = {}; maxP = {}", nodei, nchildren, SYSsqrt(current_box_data.myMaxPDist2)); UTdebugFormat(" P = {}; N = {}", current_box_data.myAverageP, current_box_data.myN); #if TAYLOR_SERIES_ORDER >= 1 UTdebugFormat(" Nii = {}", current_box_data.myNijDiag); UTdebugFormat(" Nxy+Nyx = {}; Nyz+Nzy = {}; Nyz+Nzy = {}", current_box_data.myNxy_Nyx, current_box_data.myNyz_Nzy, current_box_data.myNzx_Nxz); #if TAYLOR_SERIES_ORDER >= 2 UTdebugFormat(" Niii = {}; 2(Nxyz+Nyzx+Nzxy) = {}", current_box_data.myNijkDiag, current_box_data.mySumPermuteNxyz); UTdebugFormat(" 2Nxxy+Nyxx = {}; 2Nxxz+Nzxx = {}", current_box_data.my2Nxxy_Nyxx, current_box_data.my2Nxxz_Nzxx); UTdebugFormat(" 2Nyyz+Nzyy = {}; 2Nyyx+Nxyy = {}", current_box_data.my2Nyyz_Nzyy, current_box_data.my2Nyyx_Nxyy); UTdebugFormat(" 2Nzzx+Nxzz = {}; 2Nzzy+Nyzz = {}", current_box_data.my2Nzzx_Nxzz, current_box_data.my2Nzzy_Nyzz); #endif #endif #endif } }; #if SOLID_ANGLE_TIME_PRECOMPUTE timer.start(); #endif const PrecomputeFunctors functors(box_data, triangle_boxes.array(), triangle_points, positions, order); // NOTE: post-functor relies on non-null data_for_parent, so we have to pass one. LocalData local_data; myTree.template traverseParallel<LocalData>(4096, functors, &local_data); //myTree.template traverse<LocalData>(functors); #if SOLID_ANGLE_TIME_PRECOMPUTE time = timer.stop(); UTdebugFormat("{} s to precompute coefficients.", time); #endif } template<typename T,typename S> inline void UT_SolidAngle<T, S>::clear() { myTree.clear(); myNBoxes = 0; myOrder = 2; myData.reset(); myNTriangles = 0; myTrianglePoints = nullptr; myNPoints = 0; myPositions = nullptr; } template<typename T,typename S> inline T UT_SolidAngle<T, S>::computeSolidAngle(const UT_Vector3T<T> &query_point, const T accuracy_scale) const { const T accuracy_scale2 = accuracy_scale*accuracy_scale; struct SolidAngleFunctors { const BoxData *const myBoxData; const UT_Vector3T<T> myQueryPoint; const T myAccuracyScale2; const UT_Vector3T<S> *const myPositions; const int *const myTrianglePoints; const int myOrder; SolidAngleFunctors( const BoxData *const box_data, const UT_Vector3T<T> &query_point, const T accuracy_scale2, const int order, const UT_Vector3T<S> *const positions, const int *const triangle_points) : myBoxData(box_data) , myQueryPoint(query_point) , myAccuracyScale2(accuracy_scale2) , myOrder(order) , myPositions(positions) , myTrianglePoints(triangle_points) {} uint pre(const int nodei, T *data_for_parent) const { const BoxData &data = myBoxData[nodei]; const typename BoxData::Type maxP2 = data.myMaxPDist2; UT_FixedVector<typename BoxData::Type,3> q; q[0] = typename BoxData::Type(myQueryPoint[0]); q[1] = typename BoxData::Type(myQueryPoint[1]); q[2] = typename BoxData::Type(myQueryPoint[2]); q -= data.myAverageP; const typename BoxData::Type qlength2 = q[0]*q[0] + q[1]*q[1] + q[2]*q[2]; // If the query point is within a factor of accuracy_scale of the box radius, // it's assumed to be not a good enough approximation, so it needs to descend. // TODO: Is there a way to estimate the error? static_assert((std::is_same<typename BoxData::Type,v4uf>::value), "FIXME: Implement support for other tuple types!"); v4uu descend_mask = (qlength2 <= maxP2*myAccuracyScale2); uint descend_bitmask = _mm_movemask_ps(V4SF(descend_mask.vector)); constexpr uint allchildbits = ((uint(1)<<BVH_N)-1); if (descend_bitmask == allchildbits) { *data_for_parent = 0; return allchildbits; } // qlength2 must be non-zero, since it's strictly greater than something. // We still need to be careful for NaNs, though, because the 4th power might cause problems. const typename BoxData::Type qlength_m2 = typename BoxData::Type(1.0)/qlength2; const typename BoxData::Type qlength_m1 = sqrt(qlength_m2); // Normalize q to reduce issues with overflow/underflow, since we'd need the 7th power // if we didn't normalize, and (1e-6)^-7 = 1e42, which overflows single-precision. q *= qlength_m1; typename BoxData::Type Omega_approx = -qlength_m2*dot(q,data.myN); #if TAYLOR_SERIES_ORDER >= 1 const int order = myOrder; if (order >= 1) { const UT_FixedVector<typename BoxData::Type,3> q2 = q*q; const typename BoxData::Type qlength_m3 = qlength_m2*qlength_m1; const typename BoxData::Type Omega_1 = qlength_m3*(data.myNijDiag[0] + data.myNijDiag[1] + data.myNijDiag[2] -typename BoxData::Type(3.0)*(dot(q2,data.myNijDiag) + q[0]*q[1]*data.myNxy_Nyx + q[0]*q[2]*data.myNzx_Nxz + q[1]*q[2]*data.myNyz_Nzy)); Omega_approx += Omega_1; #if TAYLOR_SERIES_ORDER >= 2 if (order >= 2) { const UT_FixedVector<typename BoxData::Type,3> q3 = q2*q; const typename BoxData::Type qlength_m4 = qlength_m2*qlength_m2; typename BoxData::Type temp0[3] = { data.my2Nyyx_Nxyy+data.my2Nzzx_Nxzz, data.my2Nzzy_Nyzz+data.my2Nxxy_Nyxx, data.my2Nxxz_Nzxx+data.my2Nyyz_Nzyy }; typename BoxData::Type temp1[3] = { q[1]*data.my2Nxxy_Nyxx + q[2]*data.my2Nxxz_Nzxx, q[2]*data.my2Nyyz_Nzyy + q[0]*data.my2Nyyx_Nxyy, q[0]*data.my2Nzzx_Nxzz + q[1]*data.my2Nzzy_Nyzz }; const typename BoxData::Type Omega_2 = qlength_m4*(typename BoxData::Type(1.5)*dot(q, typename BoxData::Type(3)*data.myNijkDiag + UT_FixedVector<typename BoxData::Type,3>(temp0)) -typename BoxData::Type(7.5)*(dot(q3,data.myNijkDiag) + q[0]*q[1]*q[2]*data.mySumPermuteNxyz + dot(q2, UT_FixedVector<typename BoxData::Type,3>(temp1)))); Omega_approx += Omega_2; } #endif } #endif // If q is so small that we got NaNs and we just have a // small bounding box, it needs to descend. const v4uu mask = Omega_approx.isFinite() & ~descend_mask; Omega_approx = Omega_approx & mask; descend_bitmask = (~_mm_movemask_ps(V4SF(mask.vector))) & allchildbits; T sum = Omega_approx[0]; for (int i = 1; i < BVH_N; ++i) sum += Omega_approx[i]; *data_for_parent = sum; return descend_bitmask; } void item(const int itemi, const int parent_nodei, T &data_for_parent) const { const UT_Vector3T<S> *const positions = myPositions; const int *const cur_triangle_points = myTrianglePoints + 3*itemi; const UT_Vector3T<T> a = positions[cur_triangle_points[0]]; const UT_Vector3T<T> b = positions[cur_triangle_points[1]]; const UT_Vector3T<T> c = positions[cur_triangle_points[2]]; data_for_parent = UTsignedSolidAngleTri(a, b, c, myQueryPoint); } SYS_FORCE_INLINE void post(const int nodei, const int parent_nodei, T *data_for_parent, const int nchildren, const T *child_data_array, const uint descend_bits) const { T sum = (descend_bits&1) ? child_data_array[0] : 0; for (int i = 1; i < nchildren; ++i) sum += ((descend_bits>>i)&1) ? child_data_array[i] : 0; *data_for_parent += sum; } }; const SolidAngleFunctors functors(myData.get(), query_point, accuracy_scale2, myOrder, myPositions, myTrianglePoints); T sum; myTree.traverseVector(functors, &sum); return sum; } template<typename T,typename S> struct UT_SubtendedAngle<T,S>::BoxData { void clear() { // Set everything to zero memset(this,0,sizeof(*this)); } using Type = typename std::conditional<BVH_N==4 && std::is_same<T,float>::value, v4uf, UT_FixedVector<T,BVH_N>>::type; using SType = typename std::conditional<BVH_N==4 && std::is_same<S,float>::value, v4uf, UT_FixedVector<S,BVH_N>>::type; /// An upper bound on the squared distance from myAverageP to the farthest point in the box. SType myMaxPDist2; /// Centre of mass of the mesh surface in this box UT_FixedVector<Type,2> myAverageP; /// Unnormalized, area-weighted normal of the mesh in this box UT_FixedVector<Type,2> myN; /// Values for Omega_1 /// @{ UT_FixedVector<Type,2> myNijDiag; // Nxx, Nyy Type myNxy_Nyx; // Nxy+Nyx /// @} /// Values for Omega_2 /// @{ UT_FixedVector<Type,2> myNijkDiag; // Nxxx, Nyyy Type my2Nxxy_Nyxx; // Nxxy+Nxyx+Nyxx = 2Nxxy+Nyxx Type my2Nyyx_Nxyy; // Nyyx+Nyxy+Nxyy = 2Nyyx+Nxyy /// @} }; template<typename T,typename S> inline UT_SubtendedAngle<T,S>::UT_SubtendedAngle() : myTree() , myNBoxes(0) , myOrder(2) , myData(nullptr) , myNSegments(0) , mySegmentPoints(nullptr) , myNPoints(0) , myPositions(nullptr) {} template<typename T,typename S> inline UT_SubtendedAngle<T,S>::~UT_SubtendedAngle() { // Default destruction works, but this needs to be outlined // to avoid having to include UT_BVHImpl.h in the header, // (for the UT_UniquePtr destructor.) } template<typename T,typename S> inline void UT_SubtendedAngle<T,S>::init( const int nsegments, const int *const segment_points, const int npoints, const UT_Vector2T<S> *const positions, const int order) { #if SOLID_ANGLE_DEBUG UTdebugFormat(""); UTdebugFormat(""); UTdebugFormat("Building BVH for {} segments on {} points:", nsegments, npoints); #endif myOrder = order; myNSegments = nsegments; mySegmentPoints = segment_points; myNPoints = npoints; myPositions = positions; #if SOLID_ANGLE_TIME_PRECOMPUTE UT_StopWatch timer; timer.start(); #endif UT_SmallArray<UT::Box<S,2>> segment_boxes; segment_boxes.setSizeNoInit(nsegments); if (nsegments < 16*1024) { const int *cur_segment_points = segment_points; for (int i = 0; i < nsegments; ++i, cur_segment_points += 2) { UT::Box<S,2> &box = segment_boxes[i]; box.initBounds(positions[cur_segment_points[0]]); box.enlargeBounds(positions[cur_segment_points[1]]); } } else { igl::parallel_for(nsegments, [segment_points,&segment_boxes,positions](int i) { const int *cur_segment_points = segment_points + i*2; UT::Box<S,2> &box = segment_boxes[i]; box.initBounds(positions[cur_segment_points[0]]); box.enlargeBounds(positions[cur_segment_points[1]]); }); } #if SOLID_ANGLE_TIME_PRECOMPUTE double time = timer.stop(); UTdebugFormat("{} s to create bounding boxes.", time); timer.start(); #endif myTree.template init<UT::BVH_Heuristic::BOX_AREA,S,2>(segment_boxes.array(), nsegments); #if SOLID_ANGLE_TIME_PRECOMPUTE time = timer.stop(); UTdebugFormat("{} s to initialize UT_BVH structure. {} nodes", time, myTree.getNumNodes()); #endif //myTree.debugDump(); const int nnodes = myTree.getNumNodes(); myNBoxes = nnodes; BoxData *box_data = new BoxData[nnodes]; myData.reset(box_data); // Some data are only needed during initialization. struct LocalData { // Bounding box UT::Box<S,2> myBox; // P and N are needed from each child for computing Nij. UT_Vector2T<T> myAverageP; UT_Vector2T<T> myLengthP; UT_Vector2T<T> myN; // Unsigned length is needed for computing the average position. T myLength; // These are needed for computing Nijk. UT_Vector2T<T> myNijDiag; T myNxy; T myNyx; UT_Vector2T<T> myNijkDiag; // Nxxx, Nyyy T my2Nxxy_Nyxx; // Nxxy+Nxyx+Nyxx = 2Nxxy+Nyxx T my2Nyyx_Nxyy; // Nyyx+Nyxy+Nxyy = 2Nyyx+Nxyy }; struct PrecomputeFunctors { BoxData *const myBoxData; const UT::Box<S,2> *const mySegmentBoxes; const int *const mySegmentPoints; const UT_Vector2T<S> *const myPositions; const int myOrder; PrecomputeFunctors( BoxData *box_data, const UT::Box<S,2> *segment_boxes, const int *segment_points, const UT_Vector2T<S> *positions, const int order) : myBoxData(box_data) , mySegmentBoxes(segment_boxes) , mySegmentPoints(segment_points) , myPositions(positions) , myOrder(order) {} constexpr SYS_FORCE_INLINE bool pre(const int nodei, LocalData *data_for_parent) const { return true; } void item(const int itemi, const int parent_nodei, LocalData &data_for_parent) const { const UT_Vector2T<S> *const positions = myPositions; const int *const cur_segment_points = mySegmentPoints + 2*itemi; const UT_Vector2T<T> a = positions[cur_segment_points[0]]; const UT_Vector2T<T> b = positions[cur_segment_points[1]]; const UT_Vector2T<T> ab = b-a; const UT::Box<S,2> &segment_box = mySegmentBoxes[itemi]; data_for_parent.myBox = segment_box; // Length-weighted normal (unnormalized) UT_Vector2T<T> N; N[0] = ab[1]; N[1] = -ab[0]; const T length2 = ab.length2(); const T length = SYSsqrt(length2); const UT_Vector2T<T> P = T(0.5)*(a+b); data_for_parent.myAverageP = P; data_for_parent.myLengthP = P*length; data_for_parent.myN = N; #if SOLID_ANGLE_DEBUG UTdebugFormat(""); UTdebugFormat("Triangle {}: P = {}; N = {}; length = {}", itemi, P, N, length); UTdebugFormat(" box = {}", data_for_parent.myBox); #endif data_for_parent.myLength = length; const int order = myOrder; if (order < 1) return; // NOTE: Due to P being at the centroid, segments have Nij = 0 // contributions to Nij. data_for_parent.myNijDiag = T(0); data_for_parent.myNxy = 0; data_for_parent.myNyx = 0; if (order < 2) return; // If it's zero-length, the results are zero, so we can skip. if (length == 0) { data_for_parent.myNijkDiag = T(0); data_for_parent.my2Nxxy_Nyxx = 0; data_for_parent.my2Nyyx_Nxyy = 0; return; } T integral_xx = ab[0]*ab[0]/T(12); T integral_xy = ab[0]*ab[1]/T(12); T integral_yy = ab[1]*ab[1]/T(12); data_for_parent.myNijkDiag[0] = integral_xx*N[0]; data_for_parent.myNijkDiag[1] = integral_yy*N[1]; T Nxxy = N[0]*integral_xy; T Nyxx = N[1]*integral_xx; T Nyyx = N[1]*integral_xy; T Nxyy = N[0]*integral_yy; data_for_parent.my2Nxxy_Nyxx = 2*Nxxy + Nyxx; data_for_parent.my2Nyyx_Nxyy = 2*Nyyx + Nxyy; #if SOLID_ANGLE_DEBUG UTdebugFormat(" integral_xx = {}; yy = {}", integral_xx, integral_yy); UTdebugFormat(" integral_xy = {}", integral_xy); #endif } void post(const int nodei, const int parent_nodei, LocalData *data_for_parent, const int nchildren, const LocalData *child_data_array) const { // NOTE: Although in the general case, data_for_parent may be null for the root call, // this functor assumes that it's non-null, so the call below must pass a non-null pointer. BoxData &current_box_data = myBoxData[nodei]; UT_Vector2T<T> N = child_data_array[0].myN; ((T*)&current_box_data.myN[0])[0] = N[0]; ((T*)&current_box_data.myN[1])[0] = N[1]; UT_Vector2T<T> lengthP = child_data_array[0].myLengthP; T length = child_data_array[0].myLength; const UT_Vector2T<T> local_P = child_data_array[0].myAverageP; ((T*)&current_box_data.myAverageP[0])[0] = local_P[0]; ((T*)&current_box_data.myAverageP[1])[0] = local_P[1]; for (int i = 1; i < nchildren; ++i) { const UT_Vector2T<T> local_N = child_data_array[i].myN; N += local_N; ((T*)&current_box_data.myN[0])[i] = local_N[0]; ((T*)&current_box_data.myN[1])[i] = local_N[1]; lengthP += child_data_array[i].myLengthP; length += child_data_array[i].myLength; const UT_Vector2T<T> local_P = child_data_array[i].myAverageP; ((T*)&current_box_data.myAverageP[0])[i] = local_P[0]; ((T*)&current_box_data.myAverageP[1])[i] = local_P[1]; } for (int i = nchildren; i < BVH_N; ++i) { // Set to zero, just to avoid false positives for uses of uninitialized memory. ((T*)&current_box_data.myN[0])[i] = 0; ((T*)&current_box_data.myN[1])[i] = 0; ((T*)&current_box_data.myAverageP[0])[i] = 0; ((T*)&current_box_data.myAverageP[1])[i] = 0; } data_for_parent->myN = N; data_for_parent->myLengthP = lengthP; data_for_parent->myLength = length; UT::Box<S,2> box(child_data_array[0].myBox); for (int i = 1; i < nchildren; ++i) box.combine(child_data_array[i].myBox); // Normalize P UT_Vector2T<T> averageP; if (length > 0) averageP = lengthP/length; else averageP = T(0.5)*(box.getMin() + box.getMax()); data_for_parent->myAverageP = averageP; data_for_parent->myBox = box; for (int i = 0; i < nchildren; ++i) { const UT::Box<S,2> &local_box(child_data_array[i].myBox); const UT_Vector2T<T> &local_P = child_data_array[i].myAverageP; const UT_Vector2T<T> maxPDiff = SYSmax(local_P-UT_Vector2T<T>(local_box.getMin()), UT_Vector2T<T>(local_box.getMax())-local_P); ((T*)&current_box_data.myMaxPDist2)[i] = maxPDiff.length2(); } for (int i = nchildren; i < BVH_N; ++i) { // This child is non-existent. If we set myMaxPDist2 to infinity, it will never // use the approximation, and the traverseVector function can check for EMPTY. ((T*)&current_box_data.myMaxPDist2)[i] = std::numeric_limits<T>::infinity(); } const int order = myOrder; if (order >= 1) { // We now have the current box's P, so we can adjust Nij and Nijk data_for_parent->myNijDiag = child_data_array[0].myNijDiag; data_for_parent->myNxy = 0; data_for_parent->myNyx = 0; data_for_parent->myNijkDiag = child_data_array[0].myNijkDiag; data_for_parent->my2Nxxy_Nyxx = child_data_array[0].my2Nxxy_Nyxx; data_for_parent->my2Nyyx_Nxyy = child_data_array[0].my2Nyyx_Nxyy; for (int i = 1; i < nchildren; ++i) { data_for_parent->myNijDiag += child_data_array[i].myNijDiag; data_for_parent->myNijkDiag += child_data_array[i].myNijkDiag; data_for_parent->my2Nxxy_Nyxx += child_data_array[i].my2Nxxy_Nyxx; data_for_parent->my2Nyyx_Nxyy += child_data_array[i].my2Nyyx_Nxyy; } for (int j = 0; j < 2; ++j) ((T*)&current_box_data.myNijDiag[j])[0] = child_data_array[0].myNijDiag[j]; ((T*)&current_box_data.myNxy_Nyx)[0] = child_data_array[0].myNxy + child_data_array[0].myNyx; for (int j = 0; j < 2; ++j) ((T*)&current_box_data.myNijkDiag[j])[0] = child_data_array[0].myNijkDiag[j]; ((T*)&current_box_data.my2Nxxy_Nyxx)[0] = child_data_array[0].my2Nxxy_Nyxx; ((T*)&current_box_data.my2Nyyx_Nxyy)[0] = child_data_array[0].my2Nyyx_Nxyy; for (int i = 1; i < nchildren; ++i) { for (int j = 0; j < 2; ++j) ((T*)&current_box_data.myNijDiag[j])[i] = child_data_array[i].myNijDiag[j]; ((T*)&current_box_data.myNxy_Nyx)[i] = child_data_array[i].myNxy + child_data_array[i].myNyx; for (int j = 0; j < 2; ++j) ((T*)&current_box_data.myNijkDiag[j])[i] = child_data_array[i].myNijkDiag[j]; ((T*)&current_box_data.my2Nxxy_Nyxx)[i] = child_data_array[i].my2Nxxy_Nyxx; ((T*)&current_box_data.my2Nyyx_Nxyy)[i] = child_data_array[i].my2Nyyx_Nxyy; } for (int i = nchildren; i < BVH_N; ++i) { // Set to zero, just to avoid false positives for uses of uninitialized memory. for (int j = 0; j < 2; ++j) ((T*)&current_box_data.myNijDiag[j])[i] = 0; ((T*)&current_box_data.myNxy_Nyx)[i] = 0; for (int j = 0; j < 2; ++j) ((T*)&current_box_data.myNijkDiag[j])[i] = 0; ((T*)&current_box_data.my2Nxxy_Nyxx)[i] = 0; ((T*)&current_box_data.my2Nyyx_Nxyy)[i] = 0; } for (int i = 0; i < nchildren; ++i) { const LocalData &child_data = child_data_array[i]; UT_Vector2T<T> displacement = child_data.myAverageP - UT_Vector2T<T>(data_for_parent->myAverageP); UT_Vector2T<T> N = child_data.myN; // Adjust Nij for the change in centre P data_for_parent->myNijDiag += N*displacement; T Nxy = child_data.myNxy + N[0]*displacement[1]; T Nyx = child_data.myNyx + N[1]*displacement[0]; data_for_parent->myNxy += Nxy; data_for_parent->myNyx += Nyx; if (order >= 2) { // Adjust Nijk for the change in centre P data_for_parent->myNijkDiag += T(2)*displacement*child_data.myNijDiag + displacement*displacement*child_data.myN; data_for_parent->my2Nxxy_Nyxx += 2*(displacement[1]*child_data.myNijDiag[0] + displacement[0]*child_data.myNxy + N[0]*displacement[0]*displacement[1]) + 2*child_data.myNyx*displacement[0] + N[1]*displacement[0]*displacement[0]; data_for_parent->my2Nyyx_Nxyy += 2*(displacement[0]*child_data.myNijDiag[1] + displacement[1]*child_data.myNyx + N[1]*displacement[1]*displacement[0]) + 2*child_data.myNxy*displacement[1] + N[0]*displacement[1]*displacement[1]; } } } #if SOLID_ANGLE_DEBUG UTdebugFormat(""); UTdebugFormat("Node {}: nchildren = {}; maxP = {}", nodei, nchildren, SYSsqrt(current_box_data.myMaxPDist2)); UTdebugFormat(" P = {}; N = {}", current_box_data.myAverageP, current_box_data.myN); UTdebugFormat(" Nii = {}", current_box_data.myNijDiag); UTdebugFormat(" Nxy+Nyx = {}", current_box_data.myNxy_Nyx); UTdebugFormat(" Niii = {}", current_box_data.myNijkDiag); UTdebugFormat(" 2Nxxy+Nyxx = {}; 2Nyyx+Nxyy = {}", current_box_data.my2Nxxy_Nyxx, current_box_data.my2Nyyx_Nxyy); #endif } }; #if SOLID_ANGLE_TIME_PRECOMPUTE timer.start(); #endif const PrecomputeFunctors functors(box_data, segment_boxes.array(), segment_points, positions, order); // NOTE: post-functor relies on non-null data_for_parent, so we have to pass one. LocalData local_data; myTree.template traverseParallel<LocalData>(4096, functors, &local_data); //myTree.template traverse<LocalData>(functors); #if SOLID_ANGLE_TIME_PRECOMPUTE time = timer.stop(); UTdebugFormat("{} s to precompute coefficients.", time); #endif } template<typename T,typename S> inline void UT_SubtendedAngle<T, S>::clear() { myTree.clear(); myNBoxes = 0; myOrder = 2; myData.reset(); myNSegments = 0; mySegmentPoints = nullptr; myNPoints = 0; myPositions = nullptr; } template<typename T,typename S> inline T UT_SubtendedAngle<T, S>::computeAngle(const UT_Vector2T<T> &query_point, const T accuracy_scale) const { const T accuracy_scale2 = accuracy_scale*accuracy_scale; struct AngleFunctors { const BoxData *const myBoxData; const UT_Vector2T<T> myQueryPoint; const T myAccuracyScale2; const UT_Vector2T<S> *const myPositions; const int *const mySegmentPoints; const int myOrder; AngleFunctors( const BoxData *const box_data, const UT_Vector2T<T> &query_point, const T accuracy_scale2, const int order, const UT_Vector2T<S> *const positions, const int *const segment_points) : myBoxData(box_data) , myQueryPoint(query_point) , myAccuracyScale2(accuracy_scale2) , myOrder(order) , myPositions(positions) , mySegmentPoints(segment_points) {} uint pre(const int nodei, T *data_for_parent) const { const BoxData &data = myBoxData[nodei]; const typename BoxData::Type maxP2 = data.myMaxPDist2; UT_FixedVector<typename BoxData::Type,2> q; q[0] = typename BoxData::Type(myQueryPoint[0]); q[1] = typename BoxData::Type(myQueryPoint[1]); q -= data.myAverageP; const typename BoxData::Type qlength2 = q[0]*q[0] + q[1]*q[1]; // If the query point is within a factor of accuracy_scale of the box radius, // it's assumed to be not a good enough approximation, so it needs to descend. // TODO: Is there a way to estimate the error? static_assert((std::is_same<typename BoxData::Type,v4uf>::value), "FIXME: Implement support for other tuple types!"); v4uu descend_mask = (qlength2 <= maxP2*myAccuracyScale2); uint descend_bitmask = _mm_movemask_ps(V4SF(descend_mask.vector)); constexpr uint allchildbits = ((uint(1)<<BVH_N)-1); if (descend_bitmask == allchildbits) { *data_for_parent = 0; return allchildbits; } // qlength2 must be non-zero, since it's strictly greater than something. // We still need to be careful for NaNs, though, because the 4th power might cause problems. const typename BoxData::Type qlength_m2 = typename BoxData::Type(1.0)/qlength2; const typename BoxData::Type qlength_m1 = sqrt(qlength_m2); // Normalize q to reduce issues with overflow/underflow, since we'd need the 6th power // if we didn't normalize, and (1e-7)^-6 = 1e42, which overflows single-precision. q *= qlength_m1; typename BoxData::Type Omega_approx = -qlength_m1*dot(q,data.myN); const int order = myOrder; if (order >= 1) { const UT_FixedVector<typename BoxData::Type,2> q2 = q*q; const typename BoxData::Type Omega_1 = qlength_m2*(data.myNijDiag[0] + data.myNijDiag[1] -typename BoxData::Type(2.0)*(dot(q2,data.myNijDiag) + q[0]*q[1]*data.myNxy_Nyx)); Omega_approx += Omega_1; if (order >= 2) { const UT_FixedVector<typename BoxData::Type,2> q3 = q2*q; const typename BoxData::Type qlength_m3 = qlength_m2*qlength_m1; typename BoxData::Type temp0[2] = { data.my2Nyyx_Nxyy, data.my2Nxxy_Nyxx }; typename BoxData::Type temp1[2] = { q[1]*data.my2Nxxy_Nyxx, q[0]*data.my2Nyyx_Nxyy }; const typename BoxData::Type Omega_2 = qlength_m3*(dot(q, typename BoxData::Type(3)*data.myNijkDiag + UT_FixedVector<typename BoxData::Type,2>(temp0)) -typename BoxData::Type(4.0)*(dot(q3,data.myNijkDiag) + dot(q2, UT_FixedVector<typename BoxData::Type,2>(temp1)))); Omega_approx += Omega_2; } } // If q is so small that we got NaNs and we just have a // small bounding box, it needs to descend. const v4uu mask = Omega_approx.isFinite() & ~descend_mask; Omega_approx = Omega_approx & mask; descend_bitmask = (~_mm_movemask_ps(V4SF(mask.vector))) & allchildbits; T sum = Omega_approx[0]; for (int i = 1; i < BVH_N; ++i) sum += Omega_approx[i]; *data_for_parent = sum; return descend_bitmask; } void item(const int itemi, const int parent_nodei, T &data_for_parent) const { const UT_Vector2T<S> *const positions = myPositions; const int *const cur_segment_points = mySegmentPoints + 2*itemi; const UT_Vector2T<T> a = positions[cur_segment_points[0]]; const UT_Vector2T<T> b = positions[cur_segment_points[1]]; data_for_parent = UTsignedAngleSegment(a, b, myQueryPoint); } SYS_FORCE_INLINE void post(const int nodei, const int parent_nodei, T *data_for_parent, const int nchildren, const T *child_data_array, const uint descend_bits) const { T sum = (descend_bits&1) ? child_data_array[0] : 0; for (int i = 1; i < nchildren; ++i) sum += ((descend_bits>>i)&1) ? child_data_array[i] : 0; *data_for_parent += sum; } }; const AngleFunctors functors(myData.get(), query_point, accuracy_scale2, myOrder, myPositions, mySegmentPoints); T sum; myTree.traverseVector(functors, &sum); return sum; } // Instantiate our templates. //template class UT_SolidAngle<fpreal32,fpreal32>; // FIXME: The SIMD parts will need to be handled differently in order to support fpreal64. //template class UT_SolidAngle<fpreal64,fpreal32>; //template class UT_SolidAngle<fpreal64,fpreal64>; //template class UT_SubtendedAngle<fpreal32,fpreal32>; //template class UT_SubtendedAngle<fpreal64,fpreal32>; //template class UT_SubtendedAngle<fpreal64,fpreal64>; } // End HDK_Sample namespace }}
d36da1cd36151c3e1e6b2917b4d0d9bc1e189edd
d643aed697c889912e4f9dd78971226d5cb02694
/src/display/gl_objects.hh
bcd43b1d8992ea76e31f9653a71e3883f08447cf
[]
no_license
excamera/webcam-experiment
792f556094e257b340adf1040012c392f7b29250
8c70e26b412ddde0ce6082b6fe2971f8e8011bd3
refs/heads/master
2021-01-15T20:29:01.550656
2017-09-12T23:18:25
2017-09-12T23:18:25
99,854,423
1
0
null
null
null
null
UTF-8
C++
false
false
3,979
hh
gl_objects.hh
/* -*-mode:c++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ #ifndef GL_OBJECTS_HH #define GL_OBJECTS_HH #define GLEW_STATIC #include <GL/glew.h> #include <GLFW/glfw3.h> #include <string> #include <vector> #include <memory> #include "raster.hh" class GLFWContext { static void error_callback( const int, const char * const description ); public: GLFWContext(); ~GLFWContext(); /* forbid copy */ GLFWContext( const GLFWContext & other ) = delete; GLFWContext & operator=( const GLFWContext & other ) = delete; }; class Window { struct Deleter { void operator() ( GLFWwindow * x ) const; }; std::unique_ptr<GLFWwindow, Deleter> window_; public: Window( const unsigned int width, const unsigned int height, const std::string & title, const bool fullscreen = false ); void make_context_current( const bool initialize_extensions = false ); bool should_close( void ) const; void swap_buffers( void ); void hide_cursor( const bool hidden ); bool key_pressed( const int key ) const; std::pair<unsigned int, unsigned int> size( void ) const; std::pair<unsigned int, unsigned int> window_size() const; }; struct VertexObject { float x[4]; //float chroma_texture_x, chroma_texture_y; }; template <GLenum id_> class Buffer { public: Buffer() = delete; template <class T> static void bind( const T & obj ) { glBindBuffer( id_, obj.num_ ); } static void load( const std::vector<VertexObject> & vertices, const GLenum usage ) { glBufferData( id, vertices.size() * sizeof( VertexObject ), &vertices.front(), usage ); } constexpr static GLenum id = id_; }; using ArrayBuffer = Buffer<GL_ARRAY_BUFFER>; class VertexBufferObject { friend ArrayBuffer; GLuint num_; public: VertexBufferObject(); ~VertexBufferObject(); /* forbid copy */ VertexBufferObject( const VertexBufferObject & other ) = delete; VertexBufferObject & operator=( const VertexBufferObject & other ) = delete; }; class VertexArrayObject { GLuint num_; public: VertexArrayObject(); ~VertexArrayObject(); void bind( void ); /* forbid copy */ VertexArrayObject( const VertexArrayObject & other ) = delete; VertexArrayObject & operator=( const VertexArrayObject & other ) = delete; }; class Texture { private: GLuint num_; unsigned int width_, height_; public: Texture( const unsigned int width, const unsigned int height ); ~Texture(); void bind( const GLenum texture_unit ); void load( const TwoD< uint8_t> & raster ); void resize( const unsigned int width, const unsigned int height ); std::pair<unsigned int, unsigned int> size( void ) const { return std::make_pair( width_, height_ ); } /* disallow copy */ Texture( const Texture & other ) = delete; Texture & operator=( const Texture & other ) = delete; }; void compile_shader( const GLuint num, const std::string & source ); template <GLenum type_> class Shader { friend class Program; protected: GLuint num_ = glCreateShader( type_ ); public: Shader( const std::string & source ) { compile_shader( num_, source ); } ~Shader() { glDeleteShader( num_ ); } /* forbid copy */ Shader( const Shader & other ) = delete; Shader & operator=( const Shader & other ) = delete; }; class Program { GLuint num_ = glCreateProgram(); public: Program() {} ~Program(); template <GLenum type_> void attach( const Shader<type_> & shader ) { glAttachShader( num_, shader.num_ ); } void link( void ); void use( void ); GLint attribute_location( const std::string & name ) const; GLint uniform_location( const std::string & name ) const; /* forbid copy */ Program( const Program & other ) = delete; Program & operator=( const Program & other ) = delete; }; using VertexShader = Shader<GL_VERTEX_SHADER>; using FragmentShader = Shader<GL_FRAGMENT_SHADER>; void glCheck( const std::string & where, const bool expected = false ); #endif /* GL_OBJECTS_HH */
bb8b1db19ca3ef3af8379bc86ebc11afa18f9f17
0e9655abab1f83903f5fd9e2de8a90ebe438b519
/include/Child3.h
1d7a78570d881753f3fe64b4469cdf0134d950f5
[]
no_license
pilojo66/Classes-Tutorial
76dedf625186d3088669e72031b77ee34983b538
19051d787fb9865982d6afcf4af571693803c600
refs/heads/master
2021-01-10T19:26:38.988709
2015-08-18T00:03:53
2015-08-18T00:03:53
40,921,960
0
0
null
null
null
null
UTF-8
C++
false
false
294
h
Child3.h
#ifndef CHILD3_H #define CHILD3_H #include "Parent.h" class Child3 : public Parent{ public: Child3() : Parent() {} Child3(int f, int g, char h, double i, std::string j) : Parent(f, g, h, i, j){} void genericFunction(){ a = 13; b = 16; c = 'B'; d = 70.5; e = "Child3"; } }; #endif
d1a9ad74ee8802dc074f883809979c873a03a40f
062fe73aef5bd087e88320f0f8ce2023c0981713
/RyujinrokuMobile/RyujinrokuMobile.NativeActivity/main.cpp
79e40b25d8de4fb99dbc37bdd24aa7cc20da4587
[]
no_license
remicalsoft/RyujinrokuMobile
762c1bc94ab2baf5ebb71ae392f2e1e75c9e9601
c3bff61dbce2298890954b8bba32da4946c085f9
refs/heads/master
2021-05-17T07:39:42.961357
2020-04-01T14:42:27
2020-04-01T14:42:27
250,699,354
1
0
null
null
null
null
UTF-8
C++
false
false
190
cpp
main.cpp
#include <DxLib.h> #include "SystemMain.h" int android_main(void){ SystemMain system; if (system.initialize()) { system.main(); } system.finalize(); return 0; }
c4c286032f79e7407c2382e6206e5bad3376047a
40fcf6c971993c7e4866e0a7f2c3166e4a334912
/src/uCapture/ActiveControl.h
4a7e135cfa752ca34f1b4d5cb9bc74ce65c269c6
[]
no_license
fengjixuchui/urltraveler
d854b8cbfe38b6fe0b68a2b7217b0e378d38e214
973edcca5f0b75eec3949d57704821255139a054
refs/heads/master
2020-11-28T00:18:24.364402
2012-12-20T03:26:00
2012-12-20T03:26:00
null
0
0
null
null
null
null
GB18030
C++
false
false
2,850
h
ActiveControl.h
#pragma once #include "Base.h" class CWindowWnd { public: CWindowWnd(); HWND GetHWND() const; operator HWND() const; bool RegisterWindowClass(); bool RegisterSuperclass(); HWND Create(HWND hwndParent, LPCTSTR pstrName, DWORD dwStyle, DWORD dwExStyle, const RECT rc, HMENU hMenu = NULL); HWND Create(HWND hwndParent, LPCTSTR pstrName, DWORD dwStyle, DWORD dwExStyle, int x = CW_USEDEFAULT, int y = CW_USEDEFAULT, int cx = CW_USEDEFAULT, int cy = CW_USEDEFAULT, HMENU hMenu = NULL); HWND Subclass(HWND hWnd); void Unsubclass(); void ShowWindow(bool bShow = true, bool bTakeFocus = true); bool ShowModal(HWND hWnd); int MessageBox(LPCTSTR lpText, LPCTSTR lpCaption, UINT uType); // 目前仅支持MB_OK void Close(); void CenterWindow(); void SetIcon(UINT nRes); LRESULT SendMessage(UINT uMsg, WPARAM wParam = 0, LPARAM lParam = 0L); LRESULT PostMessage(UINT uMsg, WPARAM wParam = 0, LPARAM lParam = 0L); void ResizeClient(int cx = -1, int cy = -1); HINSTANCE GetInstance(); protected: virtual LPCTSTR GetWindowClassName() const = 0; virtual LPCTSTR GetSuperClassName() const; virtual UINT GetClassStyle() const; virtual LRESULT HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam); virtual void OnFinalMessage(HWND hWnd); static LRESULT CALLBACK __WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); static LRESULT CALLBACK __ControlProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); protected: HWND m_hWnd; WNDPROC m_OldWndProc; bool m_bSubclassed; }; struct IOleObject; class CActiveXCtrl; template< class T > class CSafeRelease { public: CSafeRelease(T* p) : m_p(p) { }; ~CSafeRelease() { if( m_p != NULL ) m_p->Release(); }; T* Detach() { T* t = m_p; m_p = NULL; return t; }; T* m_p; }; class CActiveXUI { friend CActiveXCtrl; public: CActiveXUI(); virtual ~CActiveXUI(); LPCTSTR GetClass() const; LPVOID GetInterface(LPCTSTR pstrName); bool IsDelayCreate() const; void SetDelayCreate(bool bDelayCreate = true); void SetMainFrame(HWND hWnd); void SetRect(CRect rc); bool CreateControl(const CLSID clsid); bool CreateControl(LPCTSTR pstrCLSID); HRESULT GetControl(const IID iid, LPVOID* ppRet); CLSID GetClisd() const; void SetVisible(bool bVisible = true); void SetInternVisible(bool bVisible = true); void SetPos(RECT rc); void DoPaint(HDC hDC, const RECT& rcPaint); void SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue); LRESULT MessageHandler(UINT uMsg, WPARAM wParam, LPARAM lParam, bool& bHandled); protected: void ReleaseControl(); bool DoCreateControl(); protected: CLSID m_clsid; bool m_bCreated; bool m_bDelayCreate; IOleObject* m_pUnk; CActiveXCtrl* m_pControl; HWND m_hwndHost; public: HWND m_hFrameWnd; CRect m_rcItem; };
f236bf54aa02f346e8df911a066f620b9abb0ac2
1054b250cfb7b2c663060d7d8fd75154407e4dd9
/include/scraps/opengl/opengl.h
7b3f3431ee6bc077b35d032b8ad1f4640d94f027
[ "Apache-2.0" ]
permissive
libertasprimordium/scraps
a0ad583fa8093d2a3e828aa1a72cb9fbbb16b643
be59dc831eae2f765f3173dbdffb826aa8c0cb0e
refs/heads/master
2020-04-21T09:50:55.264778
2017-01-19T02:31:07
2017-01-19T02:31:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,462
h
opengl.h
/** * Copyright 2016 BitTorrent Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include <scraps/platform.h> #if SCRAPS_IOS || SCRAPS_TVOS #include <OpenGLES/ES3/gl.h> #include <OpenGLES/ES3/glext.h> #define OPENGL_ES 1 #elif defined(__APPLE__) #include <OpenGL/OpenGL.h> #include <OpenGL/gl3.h> #elif defined(__ANDROID__) #include <GLES2/gl2.h> #include <GLES2/gl2ext.h> #define OPENGL_ES 1 #elif defined(__linux__) #if !defined(GL_GLEXT_PROTOTYPES) #define GL_GLEXT_PROTOTYPES #endif #include <GL/gl.h> #endif #if !NDEBUG #define SCRAPS_GL_ERROR_CHECK() \ { \ auto err = glGetError(); \ if (err != GL_NO_ERROR) { \ SCRAPS_LOG_WARNING("opengl error 0x{:x} {}", err, scraps::opengl::GetErrorName(err)); \ } \ } #else #define SCRAPS_GL_ERROR_CHECK() #endif namespace scraps::opengl { constexpr const char* GetErrorName(GLenum err) { switch (err) { case GL_INVALID_OPERATION: return "INVALID_OPERATION"; case GL_INVALID_ENUM: return "INVALID_ENUM"; case GL_INVALID_VALUE: return "INVALID_VALUE"; case GL_OUT_OF_MEMORY: return "OUT_OF_MEMORY"; case GL_INVALID_FRAMEBUFFER_OPERATION: return "INVALID_FRAMEBUFFER_OPERATION"; default: return "unknown"; }; } #if OPENGL_ES constexpr bool kIsOpenGLES = true; #else constexpr bool kIsOpenGLES = false; #endif GLint MajorVersion(); /** * @return true if the given opengl extension is present for the current context */ bool HasExtension(std::string extension); /** * Define some shader macros that let you write the rest of the shader more portably. */ std::string CommonVertexShaderHeader(std::vector<std::string> extensions = {}); std::string CommonFragmentShaderHeader(std::vector<std::string> extensions = {}); } // namespace scraps::opengl
13e9a70fc07ed65d638066121c1aee05480090a8
623c1ed6a1eb86d58eba2bcdb804b33eda6bf0cb
/Cal/Al/test/C2/U4/Heapsort_test.cpp
5a9efe013f275d230c66d887f4d1b959dc1af4a5
[]
no_license
yaoguilv/Alex
761321e406b76bf401f725c0b80bc8b9dbb154c4
09ed9410026427fb6d43d130d715c4bbd6137317
refs/heads/master
2021-08-16T15:06:52.417420
2018-09-25T13:03:56
2018-09-25T13:03:56
115,491,760
0
0
null
null
null
null
UTF-8
C++
false
false
510
cpp
Heapsort_test.cpp
#include <iostream> #include "C2/U1/MyDate.h" #include "C2/U4/Heapsort.h" using namespace std; int main(int argc, char ** argv) { cout << "Hello tester!" << endl; MyDate ** dat = new MyDate*[5]; dat[0] = nullptr; dat[1] = new MyDate(1, 1, 2010); dat[2] = new MyDate(1, 1, 2017); dat[3] = new MyDate(1, 1, 2015); dat[4] = new MyDate(1, 1, 2012); Heapsort::sort((Comparable **)dat, 5); for(int i = 1; i < 5; i++) { cout << dat[i]->toString() << endl; } }
18c9c56cff78496ed7962394b3d67be249ad97b1
5bc54bf06ea3d256a7532787024b5147e0bde50e
/thread/4_thread.cpp
f57ea58176fa3b6b72a9d3a54abfd8ab6f942d36
[]
no_license
Coastchb/cpp_primer_plus
2e339d04d6ff24bef337ff98c4fc38501d2ed071
adb15400feea61392083d356ccd7d25c2e256023
refs/heads/master
2021-07-19T11:10:43.314858
2021-07-19T02:16:03
2021-07-19T02:16:03
142,433,133
0
1
null
null
null
null
UTF-8
C++
false
false
780
cpp
4_thread.cpp
/** * Created by coast on 2018/10/11 */ #include<iostream> //std::cout std::endl #include<thread> //std::thread #include<future> //std::future std::promise #include<utility> //std::ref #include<chrono> //std::chrono::seconds // preliminary example // ref: https://blog.csdn.net/hutianyou123/article/details/79147541 void initiazer(std::promise<int> &promiseObj) { std::cout << "Inside thread: " << std::this_thread::get_id() << std::endl; std::this_thread::sleep_for(std::chrono::seconds(1)); promiseObj.set_value(35); } int main() { std::promise<int> promiseObj; std::future<int> futureObj = promiseObj.get_future(); std::thread th(initiazer, std::ref(promiseObj)); std::cout << futureObj.get() << std::endl; th.join(); return 0; }
1c538f4315ce589df85b4028e5cf1f729f386398
6f1e2b95e8d690ea1605646d8decf33f712470c0
/Week 07 - Greedy/978B - File Name.cpp
8bbd43f29967e0d50da04796ecf8d0689a9e44b5
[ "MIT" ]
permissive
AAlab1819/dennyraymond-01082170017
48f9928359b37da50f9f664038883e71739f260c
d4a278744b42aadf355aa3e5dc8fd849ead71da6
refs/heads/master
2020-03-27T14:59:06.421967
2018-11-30T15:57:42
2018-11-30T15:57:42
146,691,238
0
0
null
null
null
null
UTF-8
C++
false
false
581
cpp
978B - File Name.cpp
#include <iostream> using namespace std; int main() { int n; // length of the file name cin>>n; string a; // use string instead of array, cos string are array of character :) int totalRemove = 0; cin>>a; // input all the character for(int i=0;i<n;i++){ //check the 'x', if there are 3 'x' in sequence. add total remove if (a[i]=='x' && a[i+1]=='x' && a[i+2]=='x'){ totalRemove+=1; //i--; } } //output the total remove cout<<totalRemove; return 0; }
bb90a331c699f39bc06bd009ce077c5e0dc170df
5b30070c6c11618649e6b6c35ad6634790eaf46c
/source/Level.cpp
029ae436fd3ac01b1e0363b968778a9053ef638f
[]
no_license
guiathayde/underground
43124796f5198f84ac91c632a7e399b68643ca39
f1abebf66ae9958a01025f05333528aa2c6c796b
refs/heads/master
2023-07-07T06:30:22.574133
2021-08-16T10:59:25
2021-08-16T10:59:25
383,897,065
0
1
null
2021-08-07T17:26:11
2021-07-07T18:52:59
C++
UTF-8
C++
false
false
9,926
cpp
Level.cpp
#include "stdfx.h" #include "Level.h" #include "Player.h" #include "Obstacle.h" #include "GraphicManager.h" #include "ColliderManager.h" #include "Item.h" #include "Ranking.h" Level::Level(GraphicManager *graphicManager, ColliderManager *colliderManager) : Entity(graphicManager), colliderManager(colliderManager) { n_entities = 0; score = 0; nextLevel = 0; endLevel = false; name = ""; finalPhrase = ""; sizeX = 5000.0f; playerTwo = NULL; this->graphicManager = graphicManager; view = graphicManager->GetView(); window = graphicManager->GetWindow(); entities = new DynamicEntityList(); sf::Texture *endLevelBackgroundTexture = graphicManager->GetTexture("endLevelBackground"); endLevelBackground.setSize(static_cast<sf::Vector2f>(graphicManager->GetWindow()->getSize())); endLevelBackground.setOrigin(endLevelBackground.getSize() / 2.0f); endLevelBackground.setTexture(endLevelBackgroundTexture); if (!font.loadFromFile("assets/fonts/DarkMage.ttf")) cerr << "Error loading item DarkMage font!" << endl; /* ----------------------------------------------- SetUp Score Display -----------------------------------------------*/ scoreText[0].setFont(font); scoreText[0].setCharacterSize(48); scoreText[0].setFillColor(sf::Color::White); scoreText[0].setString("Score: "); sf::FloatRect textRectScore = scoreText[0].getLocalBounds(); scoreText[0].setOrigin(0.0f, 0.0f); scoreText[0].setPosition(20.0f, 40.0f); scoreText[1].setFont(font); scoreText[1].setCharacterSize(48); scoreText[1].setFillColor(sf::Color::White); scoreText[1].setString("0"); sf::FloatRect textRectInt = scoreText[1].getLocalBounds(); scoreText[1].setOrigin(0.0f, 0.0f); scoreText[1].setPosition(textRectScore.width + 15.0f, 40.0f); /* ----------------------------------------------- SetUp Health Display -----------------------------------------------*/ heartsText[0].setFont(font); heartsText[0].setCharacterSize(48); heartsText[0].setFillColor(sf::Color::White); heartsText[0].setString("0"); sf::FloatRect textRectHealthInt = heartsText[0].getLocalBounds(); heartsText[0].setOrigin(0.0f, 0.0f); heartsText[0].setPosition((window->getSize().x / 2.0f) - 50.0f, 40.0f); heartsText[1].setFont(font); heartsText[1].setCharacterSize(48); heartsText[1].setFillColor(sf::Color::White); heartsText[1].setString("/300"); sf::FloatRect textRectHealthTotal = heartsText[1].getLocalBounds(); heartsText[1].setOrigin(0.0f, 0.0f); heartsText[1].setPosition((window->getSize().x / 2.0f) + 50.0f, 40.0f); healthBox.setSize(sf::Vector2f(210.0f, 50.0f)); healthBox.setPosition((window->getSize().x / 2.0f) - 55.0f, 45.0f); healthBox.setFillColor(sf::Color::Red); /* ----------------------------------------------- SetUp End Level Display -----------------------------------------------*/ endLevelText[0].setFont(font); endLevelText[0].setCharacterSize(56); endLevelText[0].setFillColor(sf::Color::White); endLevelText[0].setString("Congratulation!"); sf::FloatRect textRectEndLevelCongratulation = endLevelText[0].getLocalBounds(); endLevelText[0].setOrigin(textRectEndLevelCongratulation.left + textRectEndLevelCongratulation.width / 2.0f, textRectEndLevelCongratulation.top + textRectEndLevelCongratulation.height / 2.0f); endLevelText[0].setPosition(static_cast<float>(graphicManager->GetWindow()->getSize().x) / 2.0f, 40.0f); endLevelText[1].setFont(font); endLevelText[1].setCharacterSize(44); endLevelText[1].setFillColor(sf::Color::White); endLevelText[1].setString(finalPhrase); sf::FloatRect textRectEndLevelPhrase = endLevelText[1].getLocalBounds(); endLevelText[1].setOrigin(textRectEndLevelPhrase.left + textRectEndLevelPhrase.width / 2.0f, textRectEndLevelPhrase.top + textRectEndLevelPhrase.height / 2.0f); endLevelText[1].setPosition(static_cast<float>(graphicManager->GetWindow()->getSize().x) / 2.0f, 40.0f + textRectEndLevelCongratulation.height); for (int i = 2, j = 3; i <= 3; i++, j--) { endLevelText[i].setFont(font); endLevelText[i].setCharacterSize(48); endLevelText[i].setFillColor(sf::Color::White); sf::FloatRect textRectEndLevel = endLevelText[i].getLocalBounds(); endLevelText[i].setOrigin(textRectEndLevel.left + textRectEndLevel.width / 2.0f, textRectEndLevel.top + textRectEndLevel.height / 2.0f); endLevelText[i].setPosition(static_cast<float>(graphicManager->GetWindow()->getSize().x) / (float)j, static_cast<float>(graphicManager->GetWindow()->getSize().y) / 2.0f); } endLevelText[2].setFillColor(sf::Color::Red); endLevelText[4].setFont(font); endLevelText[4].setCharacterSize(52); endLevelText[4].setFillColor(sf::Color::White); endLevelText[4].setString("Continue"); sf::FloatRect textRectEndLevelContinue = endLevelText[4].getLocalBounds(); endLevelText[4].setOrigin(textRectEndLevelContinue.left + textRectEndLevelContinue.width / 2.0f, textRectEndLevelContinue.top + textRectEndLevelContinue.height / 2.0f); endLevelText[4].setPosition(static_cast<float>(graphicManager->GetWindow()->getSize().x) / 2.0f, static_cast<float>(graphicManager->GetWindow()->getSize().y) - 150.0f); } Level::~Level() { ClearAll(); } void Level::Update(float deltaTime) { entities->Update(deltaTime, playerOne); list<Item *>::iterator itItem; for (itItem = items.begin(); itItem != items.end(); itItem++) if ((*itItem)->GetCaught() && (*itItem)->GetStair()) (*itItem)->SetPosition(sf::Vector2f(graphicManager->GetView()->getCenter().x + (graphicManager->GetView()->getSize().x / 2.0f) - (*itItem)->GetHalfSize().x - 20.0f, graphicManager->GetView()->getCenter().y - (graphicManager->GetView()->getSize().y / 2.0f) + (*itItem)->GetHalfSize().y + 20.0f)); scoreText[0].setPosition(graphicManager->GetView()->getCenter().x - (graphicManager->GetView()->getSize().x / 2.0f) + 30.0f, 40.0f); scoreText[1].setPosition(graphicManager->GetView()->getCenter().x - (graphicManager->GetView()->getSize().x / 2.0f) + 215.0f, 40.0f); scoreText[1].setString(to_string(score)); heartsText[0].setPosition(graphicManager->GetView()->getCenter().x - 50.0f, 40.0f); heartsText[1].setPosition(graphicManager->GetView()->getCenter().x + 50.0f, 40.0f); heartsText[0].setString(to_string(playerOne->GetHearts())); healthBox.setPosition(graphicManager->GetView()->getCenter().x - 55.0f, (window->getSize().y / 2.0f) - 55.0f); if (playerOne->GetHearts() < 1) { playerOne->SetPosition(initialPosition); if (playerTwo != NULL) playerTwo->SetPosition(initialPosition); playerOne->SetHearts(300); } } void Level::CheckCollison() { colliderManager->CheckEntitiesCollison(entities, obstacles, characters); colliderManager->CheckPlayerOnHead(score, characters, playerOne, NULL); colliderManager->CheckItemCollision(items, playerOne, NULL); } void Level::SetViewCenter() { // code to set the view to not extrapolate the level limits borders sf::Vector2f viewCenter = playerOne->GetPosition(); // set in Y if (viewCenter.y + (view->getSize().y / 2.0f) >= static_cast<float>(window->getSize().y)) viewCenter.y = static_cast<float>(window->getSize().y) - (view->getSize().y / 2.0f); if (viewCenter.y - (view->getSize().y / 2.0f) <= 0.0f) viewCenter.y = (view->getSize().y / 2.0f); // set in X if (viewCenter.x - (view->getSize().x / 2.0f) <= 0.0f) viewCenter.x = view->getSize().x / 2.0f; if (viewCenter.x + (view->getSize().x / 2.0f) >= sizeX) viewCenter.x = sizeX - (view->getSize().x / 2.0f); view->setCenter(viewCenter); window->setView(*view); } void Level::SetEndLevel(sf::Event event) { endLevelBackground.setPosition(graphicManager->GetView()->getCenter()); endLevelText[0].setPosition(graphicManager->GetView()->getCenter().x, 50.0f); endLevelText[1].setPosition(graphicManager->GetView()->getCenter().x - 300.0f, 100.0f); endLevelText[2].setPosition(graphicManager->GetView()->getCenter().x - 300.0f, graphicManager->GetView()->getCenter().y); endLevelText[3].setPosition(graphicManager->GetView()->getCenter().x + 100.0f, graphicManager->GetView()->getCenter().y); endLevelText[4].setPosition(graphicManager->GetView()->getCenter().x, graphicManager->GetView()->getCenter().y + 275.0f); endLevelText[1].setString(finalPhrase); endLevelText[3].setString(to_string(score)); if (event.type == sf::Event::TextEntered) if (event.text.unicode == '\b' && name.size() > 0) name.pop_back(); else if (event.text.unicode > 33 && event.text.unicode < 126) name += event.text.unicode; endLevelText[2].setString(name); } int Level::SetContinueLevel(sf::Event event, Ranking *ranking) { if (event.key.code == sf::Keyboard::Down) { endLevelText[2].setFillColor(sf::Color::White); endLevelText[4].setFillColor(sf::Color::Red); return -1; } if (event.key.code == sf::Keyboard::Up) { endLevelText[2].setFillColor(sf::Color::Red); endLevelText[4].setFillColor(sf::Color::White); return -1; } if (event.key.code == sf::Keyboard::Return && endLevelText[4].getFillColor() == sf::Color::Red) { if (name != "") ranking->SetRank(name, score); return nextLevel; } return -1; } void Level::Draw(sf::RenderWindow &window) { list<Item *>::iterator itItem; for (itItem = items.begin(); itItem != items.end(); itItem++) if ((*itItem)->GetCaught() && (*itItem)->GetDoor()) endLevel = true; if (!endLevel) { window.draw(background); window.draw(healthBox); window.draw(scoreText[0]); window.draw(scoreText[1]); window.draw(heartsText[0]); window.draw(heartsText[1]); entities->DrawEntities(window); } else { window.draw(endLevelBackground); for (int i = 0; i < 5; i++) window.draw(endLevelText[i]); } } void Level::SetHeartOnWindow() { } void Level::SetScoreOnWindow() { } void Level::ClearAll() { entities->DeleteEntities(); }
f93c41bee2549d6ccad52b38aa4885f2ae763601
4f194dbcf1d34191b7830a4ce27f3b3c4d5986ff
/parth vyas6.cpp
ba16befb742863def21aa3b4c73f2234ecc29ccd
[]
no_license
Parth0836/C-
23f51a56feed5731c7969a40fd53dd20d40938fb
3018a4eb4ca812181dc193afc7010fe67e13b39c
refs/heads/main
2023-08-30T02:12:31.098338
2021-10-18T15:33:37
2021-10-18T15:33:37
413,447,212
1
0
null
null
null
null
UTF-8
C++
false
false
3,044
cpp
parth vyas6.cpp
#include<iostream> using namespace std; // Function to find the median of two sorted array of equal length. void median(float arr1[], int s1, int e1, float arr2[], int s2, int e2) { float med1, med2; // If the length of the sub arrays is even. if((e1-s1+1)%2 == 0) { // If only two element left in the array then the median can be found. if(e1-s1 == 1) { // median of the array will be the average of the maximum of the smaller elements and minimum of the greater element. med1 = ((arr1[s1]<arr2[s2]?arr1[s1]:arr2[s2])+(arr1[e1]>arr2[e2]?arr1[e1]:arr2[e2]))/2; cout<<med1; return; } // If more element are there then the individual median will be the average of mid data element of each array. med1 = (arr1[(e1+s1)/2]+arr1[(e1+s1)/2+1])/2; med2 = (arr2[(e2+s2)/2]+arr2[(e2+s2)/2+1])/2; // If the calculated individual medians are equal then the combined median will also be same. if(med1 == med2 ) { cout<<med1; return; } else { // If median of the first array is greater than the second one then- // The combined median will be either in the first half of the first array or in the second half of the other array. if(med1 > med2) median(arr1, s1, (e1+s1)/2+1, arr2, (e2+s2)/2, e2); // Otherwise the combined median will be either in second half of first array or in the first half of the other array. else median(arr1, (e1+s1)/2, e1, arr2, s2, (e2+s2)/2+1); } } // If the length of the sub array is odd. else { if(e1-s1 == 0) { med1 = (arr1[s1]+arr2[s2])/2; cout<<med1; return; } // If more element are there then the individual median will be the mid data element of each array. med1 = arr1[(e1+s1)/2]; med2 = arr2[(e2+s2)/2]; // If the calculated individual medians are equal then the combined median will also be same. if(med1 == med2 ) { cout<<med1; return; } else { // If median of the first array is greater than the second one then- // The combined median will be either in the first half of the first array or in the second half of the other array. if(med1 > med2) median(arr1, s1, (e1+s1)/2, arr2, (e2+s2)/2, e2); // Otherwise the combined median will be either in second half of first array or in the first half of the other array. else median(arr1, (e1+s1)/2, e1, arr2, s2, (e2+s2)/2); } } return; } int main() { int n, i; cout<<"Enter the length of the arrays: "; cin>>n; float arr1[n], arr2[n]; // Take the input of second sequence. cout<<"\nEnter the first sorted sequence :\n"; for(i = 0; i < n; i++) { cout<<"Enter "<<i+1<<" value: "; cin>>arr1[i]; } // Take the input of second sequence. cout<<"\nEnter the second sorted sequence :\n"; for(i = 0; i < n; i++) { cout<<"Enter "<<i+1<<" value: "; cin>>arr2[i]; } // Print the combined array. cout<<"\n\nthe median of the arrays is: "; median(arr1, 0, n-1, arr2, 0, n-1); return 0; }
f832eed0244f70ead8eda1775da61cdffb8f11a2
45aa17ba7e68b7d5d42fd0963f5eba7d90e4d4e6
/mainProgram/src/thrackle_drawer.cpp
ce692e7127d42a8981edbcf5c1d7b771638efe1f
[]
no_license
demaseme/programas_tesis
61adb3ccd92b7a785dd2eb0b95ae505858106536
7f7002e7a0425f9701e745d32d6805589dc50f92
refs/heads/master
2020-04-15T23:31:52.217439
2019-11-01T13:48:58
2019-11-01T13:48:58
165,108,705
1
0
null
null
null
null
UTF-8
C++
false
false
16,964
cpp
thrackle_drawer.cpp
#include "../include/thrackle_drawer.h" int ancho=1600,alto=1024; vector<Point> points; vector<Edge> edges; vector<Thrackle> thrackles; uint16_t ot; uint16_t desired_ot_g; uint16_t thrackle_size; uint16_t number_thrackles; uint16_t current_thrackle; uint16_t current_pair; bool pairwise_flag; bool dec_flag; int dec_size = 0; int dec_index[10]; string dec_string; string file_name; void print(int x, int y, char *string){ glRasterPos2f(x,y); int len = strlen(string); gl2psTextOpt(string, "Courier", 12, GL2PS_TEXT_BL, 0); for (int i = 0; i < len; i++) { glutBitmapCharacter(GLUT_BITMAP_HELVETICA_18,string[i]); } } int process_file_bin(string filename, int desired_ot){ ifstream myfile; int current_ot = 0; // uint16_t character; streampos size; uint16_t set_size ; uint16_t a,b,x,y; int i,j; uint16_t xmax,xmin,ymax,ymin,ancho_otype,alto_otype; bool flag; Point pointa,pointb; Edge tmp_edge; Thrackle tmp_thrackle; points.clear(); edges.clear(); thrackles.clear(); myfile.open(filename, ios::in|ios::binary|ios::ate); if(myfile.is_open()){ size = myfile.tellg(); myfile.seekg(0,ios::beg); while (current_ot != (desired_ot) ) { //cout << "Current ot : " << current_ot << endl; //We read thrackle info desired_ot times. myfile.read( (char*) & set_size, sizeof(uint16_t)); for(i = 0; i < set_size; i++){ myfile.read((char*) & pointa.x, sizeof(uint16_t)); myfile.read((char*) & pointa.y, sizeof(uint16_t)); } myfile.read((char*) &ot,sizeof(uint16_t)); myfile.read((char*) &thrackle_size,sizeof(uint16_t)); myfile.read((char*) &number_thrackles,sizeof(uint16_t)); for( i = 0 ; i < number_thrackles; i++){ for(j = 0; j < thrackle_size ; j++){ myfile.read((char*) & pointa.x, sizeof(uint16_t)); myfile.read((char*) & pointa.y, sizeof(uint16_t)); myfile.read((char*) & pointb.x, sizeof(uint16_t)); myfile.read((char*) & pointb.y, sizeof(uint16_t)); } } current_ot++; if (myfile.eof()) { cout << "EOT\n" ; return 0;} } //cout << "We arrived at desired OT " << desired_ot << " " << current_ot << endl; myfile.read((char*) & set_size, sizeof(uint16_t)); //First line is size char. if (myfile.eof()) { cout << "EOT\n" ; return 0;} //cout << "Set size : " << set_size << endl; //Read Points. points.clear(); //cout << "Points read\n"; for(i = 0; i < set_size; i++){ myfile.read((char*) & pointa.x, sizeof(uint16_t)); myfile.read((char*) & pointa.y, sizeof(uint16_t)); points.push_back(pointa); //printf("%d,%d\n",pointa.x,pointa.y); } //////// ADJUST POINTS TO FIT SCREEN xmin = xmax = points[0].x; ymin = ymax = points[0].y; for(i = 1; i < set_size; i++){ if(points[i].x < xmin) xmin = points[i].x; else if(points[i].x > xmax) xmax = points[i].x; if(points[i].y < ymin) ymin = points[i].y; else if(points[i].y > ymax) ymax = points[i].y; } ancho_otype = (xmax-xmin); alto_otype = (ymax-ymin); //cout << "xmin, ymin, ancho, alto " << xmin << " " << ymin << " " << ancho_otype << " " << alto_otype << endl; if(alto_otype > ancho_otype){ flag = true; for(i = 0; i < set_size; i++){ points[i].x = (((points[i].x - xmin) * (alto-30))/alto_otype) + 10; points[i].y = (((points[i].y - ymin) * (alto-30))/alto_otype) + 10; } } else{ flag = false; for(i = 0; i < set_size; i++){ points[i].x = (((points[i].x - xmin) * (alto-30))/ancho_otype) + 10; points[i].y = (((points[i].y - ymin) * (alto-30))/ancho_otype) + 10; } } myfile.read((char*) &ot,sizeof(uint16_t)); myfile.read((char*) &thrackle_size,sizeof(uint16_t)); myfile.read((char*) &number_thrackles,sizeof(uint16_t)); // cout << "Working with OT " << ot <<endl; // cout << "Working with thrackle size " << thrackle_size <<endl; // cout << "Working with number_thrackles " << number_thrackles <<endl; for( i = 0 ; i < number_thrackles; i++){ for(j = 0; j < thrackle_size ; j++){ myfile.read((char*) & a, sizeof(uint16_t)); myfile.read((char*) & b, sizeof(uint16_t)); myfile.read((char*) & x, sizeof(uint16_t)); myfile.read((char*) & y, sizeof(uint16_t)); if(flag){ pointa.x = (((a - xmin) * (alto - 30))/alto_otype) + 10; pointa.y = (((b - ymin) * (alto - 30))/alto_otype) + 10; pointb.x = (((x - xmin) * (alto - 30))/alto_otype) + 10; pointb.y = (((y - ymin) * (alto - 30))/alto_otype) + 10; }else { pointa.x = (((a - xmin) * (alto - 30))/ancho_otype) + 10; pointa.y = (((b - ymin) * (alto - 30))/ancho_otype) + 10; pointb.x = (((x - xmin) * (alto - 30))/ancho_otype) + 10; pointb.y = (((y - ymin) * (alto - 30))/ancho_otype) + 10; } tmp_edge.v1 = pointa; tmp_edge.v2 = pointb; edges.push_back(tmp_edge); } tmp_thrackle.edges = edges; thrackles.push_back(tmp_thrackle); edges.clear(); } myfile.close(); return 1; //true } else { fprintf(stderr, "Error reading file\n" ); exit(-3); } myfile.close(); return 1; } //Loads the vectors points and edges with information //to be drawn later. void process_file(string filename){ ifstream thracklefile; string line; int set_size; int i; thracklefile.open(filename); getline(thracklefile,line); //store set size. set_size = stoi(line); //Store points in following line points.clear(); //points.resize(set_size); Point tmp,tmp2; getline(thracklefile,line); //store the points. char comma; istringstream iss(line); int x,y; int a,b; while(iss >> x >> comma >> y){ tmp.x = x; tmp.y = y; points.push_back(tmp); //cout << x << " " << y << endl; } //////// ADJUST POINTS TO FIT SCREEN int xmax,xmin,ymax,ymin,ancho_otype,alto_otype; xmin = xmax = points[0].x; ymin = ymax = points[0].y; for(i = 1; i < set_size; i++){ if(points[i].x < xmin) xmin = points[i].x; else if(points[i].x > xmax) xmax = points[i].x; if(points[i].y < ymin) ymin = points[i].y; else if(points[i].y > ymax) ymax = points[i].y; } ancho_otype = (xmax-xmin); alto_otype = (ymax-ymin); bool flag; if(alto_otype > ancho_otype){ flag = true; for(i = 0; i < set_size; i++){ points[i].x = (((points[i].x - xmin) * (alto-30))/alto_otype) + 10; points[i].y = (((points[i].y - ymin) * (alto-30))/alto_otype) + 10; } }else{ flag = false; for(i = 0; i < set_size; i++){ points[i].x = (((points[i].x - xmin) * (alto-30))/ancho_otype) + 10; points[i].y = (((points[i].y - ymin) * (alto-30))/ancho_otype) + 10; } } /////////////////////////////////////// getline(thracklefile,line); //store order type; ot = stoi(line); getline(thracklefile,line); //store thrackle size; thrackle_size = stoi(line); getline(thracklefile,line); //store number of thrackles. number_thrackles = stoi(line); char openp,closep,comma2; Edge tmp_edge; Thrackle tmp_thrackle; for(int i = 0; i < number_thrackles;i++){ getline(thracklefile,line); //store each thrackle information. istringstream iss2(line); while(iss2 >> openp >> a >> comma >> b >> x >> comma2 >> y >> closep){ if(flag){ tmp.x = (((a - xmin) * (alto - 30))/alto_otype) + 10; tmp.y = (((b - ymin) * (alto - 30))/alto_otype) + 10; tmp2.x = (((x - xmin) * (alto - 30))/alto_otype) + 10; tmp2.y = (((y - ymin) * (alto - 30))/alto_otype) + 10; }else{ tmp.x = (((a - xmin) * (alto - 30))/ancho_otype) + 10; tmp.y = (((b - ymin) * (alto - 30))/ancho_otype) + 10; tmp2.x = (((x - xmin) * (alto - 30))/ancho_otype) + 10; tmp2.y = (((y - ymin) * (alto - 30))/ancho_otype) + 10; } tmp_edge.v1 = tmp; tmp_edge.v2 = tmp2; edges.push_back(tmp_edge); //cout << "pushing edge\n"; } tmp_thrackle.edges = edges; thrackles.push_back(tmp_thrackle); edges.clear(); } } void keyboard(unsigned char key, int x, int y){ if (key == 39) { } } void special(int key, int x, int y){ if( dec_flag ) { draw(); return; } if(key == GLUT_KEY_RIGHT){ if(pairwise_flag){ if(current_pair < (number_thrackles-1)){ current_pair++; } else{ current_thrackle++; if ( current_thrackle >= number_thrackles) current_thrackle = 0; current_pair = current_thrackle + 1; } cout << "Current thrackle: " << current_thrackle << " Current pair: " << current_pair << endl; draw(); } else{ if(current_thrackle < number_thrackles - 1){ current_thrackle++; } else{ current_thrackle = 0; } draw(); } //cout << "Right arrow \n"; } else if(key == GLUT_KEY_LEFT){ if ( pairwise_flag ){ if ( current_pair > current_thrackle ){ if ( (current_pair-1) == current_thrackle ) { if (current_thrackle == 0) { current_thrackle = number_thrackles - 1 ; current_pair = current_thrackle; } else { current_thrackle --; current_pair = number_thrackles -1; } } else{ current_pair --; } } if (current_thrackle == number_thrackles - 1){ current_thrackle--; current_pair = number_thrackles - 1; } cout << "Current thrackle: " << current_thrackle << " Current pair: " << current_pair << endl; draw(); } else{ if(current_thrackle > 0 ){ current_thrackle--; }else{ if (number_thrackles > 0) current_thrackle = number_thrackles - 1 ; current_thrackle = 0; } cout << "Current thrackle : " << current_thrackle << endl; draw(); } } else if(key == GLUT_KEY_DOWN){ desired_ot_g ++; if (!process_file_bin(file_name,desired_ot_g)){ desired_ot_g = 0; process_file_bin(file_name,desired_ot_g); } ; draw(); } else if(key == GLUT_KEY_UP){ if(desired_ot_g == 0) return; desired_ot_g --; process_file_bin(file_name,desired_ot_g); draw(); } } void initialize_opengl(){ glutInitDisplayMode (GLUT_RGBA|GLUT_DOUBLE); glutInitWindowSize (ancho,alto); glutInitWindowPosition (100,100); glutCreateWindow ("Thrackles"); glutKeyboardFunc(keyboard); glutSpecialFunc (special); glutDisplayFunc (draw); glutReshapeFunc (reshape_cb); glClearColor(1.f,1.f,1.f,1.f); } void reshape_cb (int w, int h) { if (w==0||h==0) return; glViewport(0,0,w,h); glMatrixMode (GL_PROJECTION); glLoadIdentity (); gluOrtho2D(0,w,0,h); glMatrixMode (GL_MODELVIEW); glLoadIdentity (); } void draw(){ int i,j; glClear(GL_COLOR_BUFFER_BIT); char thrackle_number[50] ; char order_type_number[10]; char buffer[20]; float r_colors[6] = {1,0,0,0,1,0}; float g_colors[6] = {0,1,0,1,0,0}; float b_colors[6] = {0,0,1,1,1,0}; strcpy(order_type_number,"OT: "); cout << "desired ot g: " << desired_ot_g << endl; sprintf(buffer, "%d",desired_ot_g); strcat(order_type_number, buffer); print(ancho-200,alto-100,order_type_number); if( pairwise_flag ){ glColor3f(.5,.5,.5); glLineWidth(3); gl2psLineWidth(3); cout << "Drawing current_thrackle: " << current_thrackle << " and current pair: " << current_pair << endl; if(number_thrackles>1){ //draw the first thrackle for(i=0; i < (int) thrackles[current_thrackle].edges.size();i++){ //for each edge of it. glBegin(GL_LINE_STRIP); //Draw edge glVertex2i(thrackles[current_thrackle].edges[i].v1.x,thrackles[current_thrackle].edges[i].v1.y); glVertex2i(thrackles[current_thrackle].edges[i].v2.x,thrackles[current_thrackle].edges[i].v2.y); glEnd(); } glColor3f(.8,.5,.2); glLineWidth(1); gl2psLineWidth(5); //draw the pair thrackle. for(i=0; i < (int) thrackles[current_pair].edges.size();i++){ //for each edge of it. glBegin(GL_LINE_STRIP); //Draw edge glVertex2i(thrackles[current_pair].edges[i].v1.x,thrackles[current_pair].edges[i].v1.y); glVertex2i(thrackles[current_pair].edges[i].v2.x,thrackles[current_pair].edges[i].v2.y); glEnd(); //cout << i << endl; } strcpy(thrackle_number,"Thrackle "); sprintf(buffer, "%d", current_thrackle); strcat(thrackle_number, buffer); strcat(thrackle_number, "+"); sprintf(buffer, "%d", current_pair); strcat(thrackle_number, buffer); print(ancho-200,alto-50,thrackle_number); } //Draw points. glColor3f(0.0, 0.0, 1.0); glPointSize(5); gl2psPointSize(10); glBegin(GL_POINTS); for(i = 0; i < (int)points.size(); i++){ glVertex2i(points[i].x, points[i].y); } glEnd(); glutSwapBuffers(); } else if (dec_flag){ float lw = 6; float lw2 = 6; printf("DECOMPOSITION DRAW\n"); glColor3f(1,0,0); glLineWidth(lw); gl2psLineWidth(lw2); for (i = 0; i < dec_size ; i++ ){ glColor3f(r_colors[i],g_colors[i],b_colors[i]); lw-=1; lw2-=0.7; glLineWidth(lw); gl2psLineWidth(lw2); for( j = 0; j < (int)thrackles[dec_index[i]].edges.size(); j++ ){ glBegin(GL_LINE_STRIP); glVertex2i(thrackles[dec_index[i]].edges[j].v1.x,thrackles[dec_index[i]].edges[j].v1.y); glVertex2i(thrackles[dec_index[i]].edges[j].v2.x,thrackles[dec_index[i]].edges[j].v2.y); glEnd(); } glutSwapBuffers(); usleep(1000000); } //Draw points. glColor3f(0.0, 0.0, 0.0); glPointSize(8); gl2psPointSize(10); glBegin(GL_POINTS); for(i = 0; i < (int)points.size(); i++){ glVertex2i(points[i].x, points[i].y); } glEnd(); glutSwapBuffers(); } else{ glColor3f(.5,.5,.5); glLineWidth(1); gl2psLineWidth(3); char tag_char[5]; if(number_thrackles>0){ //Draw the first thrackle. for(i=0; i < (int) thrackles[current_thrackle].edges.size();i++){ //for each edge of it. glBegin(GL_LINE_STRIP); //Draw edge glVertex2i(thrackles[current_thrackle].edges[i].v1.x,thrackles[current_thrackle].edges[i].v1.y); glVertex2i(thrackles[current_thrackle].edges[i].v2.x,thrackles[current_thrackle].edges[i].v2.y); glEnd(); cout << "hi\n"; glColor3f(1.0, 0.0, 0.0); sprintf(tag_char,"%d",i); //cout << "PRINT COORD: " << (thrackles[current_thrackle].edges[i].v1.x +thrackles[current_thrackle].edges[i].v2.x)/2.0; //cout << " , " << (thrackles[current_thrackle].edges[i].v1.y + thrackles[current_thrackle].edges[i].v2.y)/2.0 << endl; print( (thrackles[current_thrackle].edges[i].v1.x +thrackles[current_thrackle].edges[i].v2.x)/2.0, (thrackles[current_thrackle].edges[i].v1.y + thrackles[current_thrackle].edges[i].v2.y)/2.0, tag_char ); } } //Draw points. glColor3f(0.0, 0.0, 1.0); glPointSize(5); gl2psPointSize(10); glBegin(GL_POINTS); for(i = 0; i < (int)points.size(); i++){ glVertex2i(points[i].x, points[i].y); } glEnd(); glutSwapBuffers(); } } //This programs takes a .ths file as argument //Draws its information using OpenGL. int main(int argc, char* argv[]){ int opt; while (( opt = getopt(argc, argv, "pd:")) != -1){ switch(opt){ case 'p': pairwise_flag = true; break; case 'd': dec_string = optarg; pairwise_flag = false; dec_flag = true; break; default: fprintf(stderr,"Usage %s <.ths file> [-pAIRWISE] [-dECOMPOSITION \"OT decomposition\"]\n",argv[0]); exit(EXIT_FAILURE); } } int ot_draw; int tmp_val; stringstream sstr(dec_string); if( dec_flag ) { sstr >> ot_draw; while (sstr >> tmp_val ){ dec_index[dec_size] = tmp_val; dec_size++; } cout << ot_draw << endl; for( int i = 0; i < dec_size; i++) printf(" %d ",dec_index[i]); printf("\n"); } if (optind >= argc) { fprintf(stderr, "Expected argument after options\n"); exit(EXIT_FAILURE); } glutInit(&argc, argv); alto = glutGet(GLUT_SCREEN_HEIGHT) * .8; ancho = glutGet(GLUT_SCREEN_WIDTH) * .8; initialize_opengl(); file_name = argv[optind]; desired_ot_g = ot_draw; current_pair = 1; process_file_bin(file_name,desired_ot_g); //process_file(file_name); draw(); glutMainLoop(); return 0; }
6d493d8e8ac06a9b5820ff1bda946f7056a20858
aa07db86d2abb542f04f3652dbff85c2d3aecdbd
/Chimera/rerngContainer.h
01365bf297cb911770a6e427e9648b65befc0d91
[]
no_license
KaufmanLabJILA/Chimera-Control-Master
3604ed5be843388e113ffe47aee48b4d41c2c0bf
8ae17f4f562ca899838f6fbea71fc431981efe98
refs/heads/master
2023-08-21T10:24:30.614463
2022-01-18T22:42:35
2022-01-18T22:42:35
105,817,176
6
3
null
2019-08-15T16:57:10
2017-10-04T20:52:16
C++
UTF-8
C++
false
false
2,937
h
rerngContainer.h
#pragma once #include "rerngMove.h" #include "windows.h" #include <vector> /* this is more or less a wrapper for a const 3-Dimensional vector. E.g. I could also implement this as std::vector<std::vector<std::array<rearrangementMove>, 4>> where the first two dimensions select move / row, and the 4 elements in that select the direction. This class is used to hold move info, calibrations, etc. where I need one element for each possible move in the atom grid. rerng is short for rearrange */ template <class type> class rerngContainer { public: rerngContainer( UINT rowsInGrid, UINT colsInGrid ); rerngContainer( UINT rowsInGrid, UINT colsInGrid, type initValue ); type operator()( UINT row, UINT col, directions direction ) const; type & operator()( UINT row, UINT col, directions direction ); bool hasBeenFilled( ); void setFilledFlag( ); UINT getRows( ); UINT getCols( ); // typename tells the compiler that std::vector<type>::iterator will be a type. typename std::vector<type>::iterator begin( ) { return obj.begin( ); } typename std::vector<type>::iterator end( ) { return obj.end( ); } private: std::vector<type> obj; UINT rows, cols; bool filledFlag=false; }; // the array gets sized only once in the constructor. template<class type> rerngContainer<type>::rerngContainer( UINT rowsInGrid, UINT colsInGrid ) : rows( rowsInGrid ), cols( colsInGrid ), obj( rowsInGrid*colsInGrid * 4 ) {} template<class type> rerngContainer<type>::rerngContainer( UINT rowsInGrid, UINT colsInGrid, type initValue ) : rows( rowsInGrid ), cols( colsInGrid ), obj( rowsInGrid*colsInGrid * 4, initValue ) {} template<class type> bool rerngContainer<type>::hasBeenFilled( ) { return filledFlag; } template<class type> void rerngContainer<type>::setFilledFlag( ) { filledFlag = true; } template<class type> type rerngContainer<type>::operator()( UINT row, UINT col, directions direction ) const { if ( row > rows ) { thrower( "ERROR: row index out of range during rearrangementMoveContainer access!" ); } if ( col > cols ) { thrower( "ERROR: col index out of range during rearrangementMoveContainer access!" ); } UINT rowOffset( row * cols * 4 ); UINT colOffset( col * 4 ); UINT index = rowOffset + colOffset + direction; return obj[index]; } template<class type> type & rerngContainer<type>::operator()( UINT row, UINT col, directions direction ) { if ( row > rows ) { thrower( "ERROR: row index out of range during rearrangementMoveContainer access!" ); } if ( col > cols ) { thrower( "ERROR: col index out of range during rearrangementMoveContainer access!" ); } UINT rowOffset( row * cols * 4 ); UINT colOffset( col * 4 ); UINT index = rowOffset + colOffset + direction; return obj[index]; } template <class type> UINT rerngContainer<type>::getCols( ) { return cols; } template <class type> UINT rerngContainer<type>::getRows( ) { return rows; }
de583cc1128c72811e9a51980d336849d87bc84c
e58a4f1b096b9544ef56f865afe9f079d3fc89db
/Tree/tree_build_height_balanced_tree.cc
55391a221548780619cd3292204edc15caeddd9b
[]
no_license
0APOCALYPSE0/Algorithm-Concepts
c14c27ba967f524202ed9be8a79428bfc01e5dc0
587f620dc5b1481790987a86ef34225899d4f35d
refs/heads/master
2023-06-13T08:05:02.208567
2021-07-04T22:32:25
2021-07-04T22:32:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,577
cc
tree_build_height_balanced_tree.cc
#include <bits/stdc++.h> using namespace std; #define ll long long int #define endl "\n" class Node { public: int data; Node* left; Node* right; Node(const int d){ data = d; left = NULL; right = NULL; } ~Node(); }; // This implementation does'nt take the root pointer as the input. // and at the end of the processing it returns the address of new root // node. Node* build(){ int data; cin >> data; if(data==-1){ return NULL; } Node* root = new Node(data); root->left = build(); root->right = build(); return root; } // This implementation takes the root pointer as the input and at // the end of the processing it returns the address of same root // node that it gets from the user. Node* buildTree(Node* root){ int data; cin >> data; if(data==-1) return NULL; root = new Node(data); root->left = buildTree(root->left); root->right = buildTree(root->right); return root; } // Breadth first Search Or Level order Traversal // Time complexty is reduced from O(n^2) -> o(n). void levelOrder(Node* root){ if(root == NULL) return; queue<Node*> Q; Q.push(root); Q.push(NULL); while(!Q.empty()){ Node* f = Q.front(); if(f==NULL){ Q.pop(); cout<<endl; if(!Q.empty()){ Q.push(NULL); } }else{ cout<<f->data<<" "; if(f->left){ Q.push(f->left); } if(f->right){ Q.push(f->right); } Q.pop(); } } } void inorder(Node *root){ if(root==NULL) return; inorder(root->left); cout<<root->data<<" "; inorder(root->right); return; } void preorder(Node *root){ if(root==NULL) return; cout<<root->data<<" "; preorder(root->left); preorder(root->right); return; } // we need to pass the array to this method and at the end // this method will build the height balanced tree from the // elements of the array recursively in time O(n) & O(n) space. Node* buildTreeFromArray(int *in,int s,int e){ if(s>e) return NULL; int m = (s+e)/2; Node* root = new Node(in[m]); root->left = buildTreeFromArray(in,s,m-1); root->right = buildTreeFromArray(in,m+1,e); return root; } int main(){ #ifndef ONLINE_JUGDE freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); freopen("error.txt","w",stderr); #endif ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; int *in = new int[n]; for(int i=0;i<n;++i){ cin >> in[i]; } Node* root = buildTreeFromArray(in,0,n-1); levelOrder(root); return 0; } // Input : // 9 // 1 10 8 9 6 7 3 13 14 // 9 // 8 10 1 3 6 9 7 14 13 // Output : // 6 // 10 3 // 1 8 7 13 // 9 14 // 6 // 10 7 // 8 1 9 14 // 3 13
7f8c66527ac0025e67925586e78c7270cbe7cd8a
d1fedc520db8a928ad1625d62da1ae3547a8f898
/user.cpp
79947c612932522f8bd2300641e9ca5bf703127f
[]
no_license
LuisLVar/FileSystemLinux
17739435689d1aa95da8a00eced56df0bb6f0e2e
9129d66c4ee18be34c9122dc329fde48afce5a0e
refs/heads/master
2020-07-17T21:57:22.761807
2019-09-10T03:26:16
2019-09-10T03:26:16
206,107,882
0
0
null
null
null
null
UTF-8
C++
false
false
194
cpp
user.cpp
#include "user.h" User::User() { } void User::makeUser(string usr, string pwd, string grp){ } void User::removeUser(string usr){ } void User::changeMod(string path, string ugo, int r){ }
34ab741b6c8ce59a4a08197d401d7f718e0c5bfd
935e491aa0f7dd739b8ee43fe0848e4b1a65f1fc
/CodeForces/Contest/Div2_704/ThreeSwimmers/ThreeSwimmers.cpp
1b5b7e6714961add315675231298ada80c0b4100
[]
no_license
Shubhrajyoti-Dey-FrosTiK/My-Codes
b2aaf63c7e731fb96cfc15a367b21332615329b3
999a8c57df12c5ce46c9223fb5e760ab428d7408
refs/heads/master
2023-03-16T08:11:33.121451
2021-03-01T10:27:28
2021-03-01T10:27:28
343,372,135
0
0
null
null
null
null
UTF-8
C++
false
false
597
cpp
ThreeSwimmers.cpp
#include<bits/stdc++.h> using namespace std; typedef long long int ll; int main() { ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL); ll TestCases,p,a,b,c; cin>>TestCases; while(TestCases--) { cin>>p>>a>>b>>c; ll time1,time2,time3; time1=p/a; if(p%a!=0){time1++;} time1*=a; time1-=p; time2=p/b; if(p%b!=0){time2++;} time2*=b; time2-=p; time3=p/c; if(p%c!=0){time3++;} time3*=c; time3-=p; ll min=time1; if(time2<min){min=time2;} if(time3<min){min=time3;} cout<<min<<endl; } return 0; }
70e922eb8d718805b9f70e1e1c354e623e861d2b
b8083fa2ade8c62bc0a67cbc0c75c861787d19b8
/src/c/Listener.cpp
e0dcf4a51c76df8eed73ae752704e432f12706a4
[]
no_license
mgottschlag/RaumKlang
258d2bb412be255cfb57d4df53bd84f226e3d995
d5396a995d78be57a9c1cf67a02bdea06a6d47bf
refs/heads/master
2016-09-06T06:20:04.156168
2009-09-23T17:00:25
2009-09-23T17:00:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,455
cpp
Listener.cpp
/* Copyright (c) 2009, Mathias Gottschlag Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <RaumKlang.h> #include <RaumKlang.hpp> void rkListenerSetPosition(rkListener listener, rkVector3 position) { ((rk::Listener*)listener)->setPosition(rk::Vector3F(position.x, position.y, position.z)); } rkVector3 rkListenerGetPosition(rkListener listener) { rkVector3 pos; rk::Vector3F pos2 = ((rk::Listener*)listener)->getPosition(); pos.x = pos2.x; pos.y = pos2.y; pos.z = pos2.z; return pos; } void rkListenerSetVelocity(rkListener listener, rkVector3 velocity) { ((rk::Listener*)listener)->setVelocity(rk::Vector3F(velocity.x, velocity.y, velocity.z)); } rkVector3 rkListenerGetVelocity(rkListener listener) { rkVector3 vel; rk::Vector3F vel2 = ((rk::Listener*)listener)->getVelocity(); vel.x = vel2.x; vel.y = vel2.y; vel.z = vel2.z; return vel; } void rkListenerSetOrientationEuler(rkListener listener, rkVector3 orientation) { ((rk::Listener*)listener)->setOrientation(rk::Vector3F(orientation.x, orientation.y, orientation.z)); } rkVector3 rkListenerGetOrientationEuler(rkListener listener) { rkVector3 ori; rk::Vector3F ori2 = ((rk::Listener*)listener)->getOrientation(); ori.x = ori2.x; ori.y = ori2.y; ori.z = ori2.z; return ori; } void rkListenerSetOrientation(rkListener listener, rkVector3 forward, rkVector3 up) { ((rk::Listener*)listener)->setOrientation(rk::Vector3F(forward.x, forward.y, forward.z), rk::Vector3F(up.x, up.y, up.z)); } void rkListenerGetOrientation(rkListener listener, rkVector3 *forward, rkVector3 *up) { rk::Vector3F forward2; rk::Vector3F up2; ((rk::Listener*)listener)->getOrientation(forward2, up2); forward->x = forward2.x; forward->y = forward2.y; forward->z = forward2.z; up->x = up2.x; up->y = up2.y; up->z = up2.z; }
2eb914c16cae13b45f9080de78f612412154f9e7
e31694aed7509f70019ae9c69e761a8f38ffd1f2
/exercises/Ex049/C++.ex49.cpp
fc6e07e95fbc4ce7004f518a3a4086b587ae1967
[]
no_license
simongarisch/300-Project-Euler
6c0f561d5303132ecd288ad2293cfd261ba1039f
3e53236b2022a96be4e3c6ea9cbd8346aae254c0
refs/heads/master
2022-06-10T06:46:44.279134
2022-05-28T12:11:56
2022-05-28T12:11:56
163,732,751
0
1
null
null
null
null
UTF-8
C++
false
false
2,374
cpp
C++.ex49.cpp
/* The arithmetic sequence, 1487, 4817, 8147, in which each of the terms increases by 3330, is unusual in two ways: (i) each of the three terms are prime, and, (ii) each of the 4-digit numbers are permutations of one another. There are no arithmetic sequences made up of three 1-, 2-, or 3-digit primes, exhibiting this property, but there is one other 4-digit increasing sequence. What 12-digit number do you form by concatenating the three terms in this sequence? */ #include <iostream> #include <vector> #include <algorithm> // this header is required for std::sort to work #include <cmath> #define START 1488 #define STOP 1e4 #define INCREMENT 3330 using namespace std; bool isprime(long x); bool ispermutation(long a, long b); long primeperms(); int main(){ //long a=123, b=321; //cout << ispermutation(a,b) << endl; // true cout << primeperms() << endl; // 296,962,999,629 return 0; } bool ispermutation(long a, long b){ // returns true if two numbers are permutations of each other, // false otherwise string astr = to_string(a); string bstr = to_string(b); sort(astr.begin(), astr.end()); sort(bstr.begin(), bstr.end()); if(astr.compare(bstr) == 0){ return true; }else{ return false; } } bool isprime(long x){ // will return true if x is prime, false otherwise if(x < 2){ return false; } if(x == 2){ return true; } for(long i=2; i<=pow(x, 0.5); i++){ if(x % i == 0){ return false; } } return true; } long primeperms(){ vector<long> primes = {}; for(long i=START; i<=STOP; i++){ if(isprime(i)){ primes.push_back(i); } } long numprimes = primes.size(); long prime1, prime2, prime3; for(int idx1=0; idx1<numprimes; idx1++){ prime1 = primes.at(idx1); for(int idx2=idx1+1; idx2<numprimes; idx2++){ prime2 = primes.at(idx2); for(int idx3=idx2+1; idx3<numprimes; idx3++){ prime3 = primes.at(idx3); // check fro a constant increment if(prime1 + INCREMENT == prime2){ if(prime2 + INCREMENT == prime3){ // and that these are permutations if(ispermutation(prime1, prime2)){ if(ispermutation(prime2, prime3)){ return stol(to_string(prime1) + to_string(prime2) + to_string(prime3)); } } } } } } } }
bd8ea175e1a875797408e0027b77b65c22f6fe76
a37963cee6a482275b089922375a60b3819d8072
/openni/SupportOpenNI/UserGenerator.h
156963b5950134e1bc15df7e1abbd6d4216a697d
[]
no_license
njun-git/kvs
f639ab36df290d308531d1538066739b8ca265e6
ae15b5dc2b50f9ff8fb5090bdd41fc1b496cada3
refs/heads/master
2021-01-23T07:03:20.287011
2012-02-14T06:53:59
2012-02-14T06:53:59
2,502,777
2
0
null
null
null
null
UTF-8
C++
false
false
1,856
h
UserGenerator.h
// // UserGenerator.h // // // Created by Jun Nishimura on 10/19/11. // Copyright (c) 2011 Jun Nishimura. All rights reserved. // #ifndef KVS__OPENNI__USER_GENERATOR_H_INCLUDE #define KVS__OPENNI__USER_GENERATOR_H_INCLUDE #include <kvs/ClassName> #include <kvs/ValueArray> #include <list> #include "GeneratorBase.h" #include "UserEventListener.h" #include "Skeleton.h" #include "PoseDetection.h" namespace kvs { namespace ni { class UserGenerator : public kvs::ni::GeneratorBase { // Class name. kvsClassName( kvs::ni::UserGenerator ); typedef kvs::ni::GeneratorBase BaseClass; typedef std::list<kvs::ni::NewUserEventListener*> NewUserList; typedef std::list<kvs::ni::LostUserEventListener*> LostUserList; protected: xn::UserGenerator m_generator; XnCallbackHandle m_handler; NewUserList m_new_list; LostUserList m_lost_list; kvs::ni::Skeleton m_skeleton; kvs::ni::PoseDetection m_pose; public: UserGenerator( void ); virtual ~UserGenerator( void ); public: const bool create( kvs::ni::Context& context ); public: xn::UserGenerator& generator( void ); kvs::ni::Skeleton& skeleton( void ); kvs::ni::PoseDetection& pose( void ); const unsigned short nusers( void ); const kvs::ValueArray<unsigned int> users( void ); const kvs::Vector3f centerOfMass( const unsigned int user ); const unsigned short* pointer( const unsigned int user ); public: void addNewUserEvent( kvs::ni::NewUserEventListener* event ); void addLostUserEvent( kvs::ni::LostUserEventListener* event ); public: void newUser( xn::UserGenerator& generator, XnUserID user, void* cookie ); void lostUser( xn::UserGenerator& generator, XnUserID user, void* cookie ); }; } } #endif
88bfcf3b1511ad2fef7b8b16a61d580d9996a919
d9b1de5d5cf82efc258073d9e49973eb691f5468
/StudentRegisterPage.cpp
1c941a078b552bca846724684da3d7afe299e0e2
[]
no_license
SantoshKumarSingh64/TEST-YOUR-SKILLS-PROJECT-ON-C
4b4e322c81b5692a23a1e7401da4b19e7295a1d3
17d9fe00fdefdc560707b37948efdf12a260466c
refs/heads/master
2023-08-03T16:48:17.554585
2021-09-16T17:28:44
2021-09-16T17:28:44
268,097,958
4
0
null
null
null
null
UTF-8
C++
false
false
2,776
cpp
StudentRegisterPage.cpp
//This function registers student details. void studentregisterpage() { char username[30],password[30],address[30],email[30],firstname[30],lastname[40]; char ch,mobileno[10]; FILE *fp; cleardevice(); setbkcolor(GREEN); setcolor(RED); rectangle(5,5,632,470); rectangle(8,8,629,467); setcolor(YELLOW); settextstyle(8,0,4); outtextxy(29,1,"_________________________"); settextstyle(8,0,5); outtextxy(25,35,"|STUDENT REGISTER PAGE|"); settextstyle(8,0,4); outtextxy(29,50,"_________________________"); settextstyle(8,0,3); outtextxy(77,112,"USERNAME/EMAIL : "); gotoxy(43,9); scanf("%s",&username); gotoxy(43,9); printf("%s",username); //It will create a studentdata.txt file in default folder if this file is not exist. fp=fopen("studentdata.txt","ab"); if(fp==NULL) { printf("Can't open file"); exit(0); } fclose(fp); //Now we check that this username is already added or not. fp=fopen("studentdata.txt","rb"); if(fp==NULL) { printf("Can't open file"); exit(0); } fread(&student,sizeof(student),1,fp); while(!feof(fp)) { if((strcmp(student.username,username))==0) { outtextxy(60,210,"THIS USERNAME HAS BEEN ALREADY ADDED"); outtextxy(150,300,"PRESS R FOR REGISTER AGAIN"); outtextxy(150,340,"PRESS ANY KEY TO GO BACK"); ch=getch(); if((ch=='R')||(ch=='r')) studentregisterpage(); else studentpage(0); } fread(&student,sizeof(student),1,fp); } fclose(fp); strcpy(student.username,username); outtextxy(153,145,"FIRST NAME : "); gotoxy(43,11); fflush(stdin); scanf("%[^\n]s",&student.firstname); gotoxy(43,11); printf("%s",student.firstname); outtextxy(163,177,"LAST NAME : "); gotoxy(43,13); scanf("%s",&student.lastname); gotoxy(43,13); printf("%s",student.lastname); outtextxy(100,210,"MOBILE NUMBER : "); gotoxy(43,15); scanf("%s",&student.mobile); gotoxy(43,15); printf("%s",student.mobile); outtextxy(197,245,"ADDRESS : "); gotoxy(43,17); fflush(stdin); scanf("%[^\n]s",&student.address); gotoxy(43,17); printf("%s",student.address); outtextxy(177,280,"PASSWORD : "); gotoxy(43,19); scanf("%s",&student.password); gotoxy(43,19); printf("%s",student.password); settextstyle(8,0,3); outtextxy(200,340,"PRESS |S| FOR SAVE"); outtextxy(150,380,"PRESS ANY KEY TO GO BACK"); settextstyle(8,0,2); outtextxy(292,320,"_"); outtextxy(292,345,"_"); ch=getch(); if((ch=='S')||(ch=='s')) { fp=fopen("studentdata.txt","ab"); if(fp==NULL) { printf("Can't open file"); exit(0); } fwrite(&student,sizeof(student),1,fp); fclose(fp); settextstyle(8,0,3); outtextxy(250,420,"REGISTERED"); delay(1000); studentpage(); } else studentpage(); }
188ea0b642add712c37296cb50579eb6ff2dcc4d
8c35c227196168c43ae11bb3ba88780314bac0a7
/tests/integration/tables/memory_map.cpp
acfb685c7c6633bd5a849e74bd5cc106b47b79af
[ "GPL-2.0-only", "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
theopolis/osquery
e17571b7566ff512c8367e8560dc582d18a796df
1d5bbbcecaea35051146a192861bc0bc6ed89f12
refs/heads/master
2022-01-14T14:31:06.200814
2019-10-26T14:59:01
2019-10-26T14:59:01
26,103,098
3
2
BSD-3-Clause
2017-12-21T20:00:03
2014-11-03T03:56:14
C++
UTF-8
C++
false
false
1,324
cpp
memory_map.cpp
/** * Copyright (c) 2014-present, Facebook, Inc. * All rights reserved. * * This source code is licensed in accordance with the terms specified in * the LICENSE file found in the root directory of this source tree. */ // Sanity check integration test for memory_map // Spec file: specs/linux/memory_map.table #include <osquery/utils/conversions/tryto.h> #include <osquery/tests/integration/tables/helper.h> namespace osquery { namespace table_tests { class MemoryMapTest : public testing::Test { protected: void SetUp() override { setUpEnvironment(); } }; TEST_F(MemoryMapTest, test_sanity) { QueryData data = execute_query("select * from memory_map"); ASSERT_GT(data.size(), 0ul); ValidationMap row_map = {{"name", NonEmptyString}, {"start", NonNegativeInt}, {"end", NonNegativeInt}}; validate_rows(data, row_map); for (const auto& row : data) { auto start = tryTo<unsigned long long>(row.at("start")); auto end = tryTo<unsigned long long>(row.at("end")); ASSERT_TRUE(start) << "start does not fit in unsigned long long"; ASSERT_TRUE(end) << "end does not fit in unsigned long long"; ASSERT_LE(*start, *end) << "start should be less than or equal to end"; } } } // namespace table_tests } // namespace osquery
55e98b634b1e06bb171f87d72d2b0b32c57359fe
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest6/0.042/turbulenceProperties.L
8344a428fd5673a6ca110138d47cbd8b270e9d1b
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
419,641
l
turbulenceProperties.L
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.042"; object turbulenceProperties:L; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 0 0 0 0 0]; internalField nonuniform List<scalar> 41981 ( 1999.77 1999.75 1999.84 1999.9 1999.93 1999.92 1999.91 1999.94 1999.91 1999.93 1999.91 1999.86 1999.74 1999.54 1999.3 1999.03 1998.77 1998.53 1998.33 1998.16 1998 1997.86 1997.74 1997.62 1997.5 1997.39 1997.29 1997.19 1997.09 1996.99 1996.9 1996.81 1996.73 1996.64 1996.56 1996.48 1996.4 1996.32 1996.24 1996.17 1996.09 1996.01 1995.94 1995.86 1995.79 1995.71 1995.64 1995.57 1995.49 1995.42 1995.35 1995.28 1995.21 1995.14 1995.07 1995.01 1994.94 1994.88 1994.82 1994.75 1994.69 1994.63 1994.58 1994.52 1994.47 1994.41 1994.36 1994.31 1994.27 1994.22 1994.18 1994.13 1994.09 1994.05 1994.02 1993.98 1993.95 1993.92 1993.9 1993.87 1993.85 1993.83 1993.81 1993.79 1993.78 1993.77 1993.76 1993.75 1993.75 1993.75 1993.75 1993.75 1993.76 1993.77 1993.78 1993.79 1993.8 1993.81 1993.81 1993.81 1993.8 1993.77 1993.71 1993.61 1993.44 1993.16 1992.72 1992.04 1991.01 1989.44 1987.08 1983.56 1978.33 1970.61 1959.3 1942.86 1919.23 1885.7 1838.92 1775.05 1690.29 1581.7 1448.53 1293.47 1123.14 947.407 777.203 621.956 487.751 376.865 288.477 219.869 167.548 128.037 98.3042 75.9163 59.134 47.179 41.8034 41.7237 36.5844 35.8885 43.5332 67.7433 126.081 272.421 234.121 43.9502 14.0262 5.00831 2.01159 0.891557 0.400983 0.298766 0.351388 0.139778 0.0490722 0.0136295 0.00151381 0.000271829 1.97379e-05 1.84072e-05 0.000128207 0.000578673 0.000304828 8.20775e-05 1.70354e-05 1.60761e-05 7.6418e-05 0.000262535 0.000210383 6.87008e-05 1.56398e-05 1.52895e-05 6.86208e-05 0.000206819 0.00018287 6.37386e-05 1.49616e-05 1.47966e-05 6.51843e-05 0.000182832 0.000171915 6.19998e-05 1.46265e-05 1.43971e-05 6.28168e-05 0.000172667 0.000164122 6.11346e-05 1.42571e-05 1.41722e-05 6.19983e-05 0.000166561 0.000159265 6.061e-05 1.40626e-05 1.39989e-05 6.12416e-05 0.000161919 0.000155341 5.99798e-05 1.39303e-05 1.38962e-05 6.04477e-05 0.000158002 0.00015184 5.92632e-05 1.38463e-05 1.38221e-05 5.96688e-05 0.00015443 0.00014856 5.85179e-05 1.378e-05 1.37599e-05 5.8874e-05 0.000151069 0.000145433 5.77298e-05 1.37216e-05 1.37035e-05 5.8087e-05 0.000147883 0.000142481 5.69931e-05 1.36678e-05 1.3651e-05 5.73516e-05 0.000144907 0.000139733 5.63023e-05 1.36172e-05 1.36014e-05 5.66625e-05 0.000142149 0.000137195 5.5656e-05 1.35692e-05 1.35541e-05 5.6018e-05 0.000139601 0.000134843 5.50539e-05 1.35234e-05 1.35089e-05 5.54175e-05 0.000137238 0.000132657 5.44923e-05 1.34793e-05 1.34654e-05 5.48582e-05 0.000135042 0.000130625 5.39711e-05 1.34369e-05 1.34235e-05 5.43364e-05 0.000133001 0.000128736 5.34817e-05 1.3396e-05 1.3383e-05 5.38473e-05 0.000131101 0.000126974 5.30234e-05 1.33563e-05 1.33437e-05 5.33897e-05 0.000129328 0.000125326 5.25943e-05 1.33179e-05 1.33056e-05 5.29615e-05 0.000127665 0.000123778 5.21928e-05 1.32804e-05 1.32685e-05 5.25605e-05 0.000126103 0.00012232 5.1816e-05 1.3244e-05 1.32323e-05 5.21839e-05 0.000124632 0.000120945 5.14613e-05 1.32084e-05 1.3197e-05 5.18291e-05 0.000123241 0.000119642 5.11243e-05 1.31736e-05 1.31624e-05 5.14932e-05 0.000121922 0.000118405 5.08045e-05 1.31394e-05 1.31284e-05 5.11751e-05 0.000120671 0.000117231 5.05015e-05 1.31058e-05 1.30949e-05 5.08738e-05 0.000119481 0.000116114 5.02141e-05 1.30726e-05 1.30619e-05 5.05876e-05 0.00011835 0.000115052 4.99406e-05 1.30398e-05 1.30293e-05 5.03153e-05 0.000117274 0.00011404 4.96802e-05 1.30074e-05 1.2997e-05 5.00558e-05 0.000116249 0.000113076 4.94318e-05 1.29753e-05 1.29649e-05 4.98083e-05 0.000115272 0.000112157 4.91946e-05 1.29435e-05 1.29332e-05 4.95719e-05 0.00011434 0.000111279 4.89678e-05 1.29118e-05 1.29015e-05 4.93457e-05 0.000113449 0.000110439 4.87505e-05 1.28803e-05 1.28701e-05 4.9129e-05 0.000112596 0.000109634 4.85419e-05 1.28489e-05 1.28387e-05 4.89208e-05 0.000111777 0.000108861 4.83413e-05 1.28175e-05 1.28073e-05 4.87204e-05 0.000110991 0.000108117 4.8148e-05 1.27862e-05 1.27759e-05 4.85272e-05 0.000110233 0.0001074 4.79611e-05 1.27548e-05 1.27445e-05 4.83404e-05 0.000109503 0.000106708 4.77802e-05 1.27233e-05 1.27129e-05 4.81593e-05 0.000108797 0.000106038 4.76045e-05 1.26916e-05 1.26812e-05 4.79835e-05 0.000108115 0.000105389 4.74335e-05 1.26597e-05 1.26492e-05 4.78123e-05 0.000107453 0.00010476 4.72669e-05 1.26276e-05 1.2617e-05 4.76454e-05 0.000106811 0.000104149 4.71041e-05 1.25952e-05 1.25845e-05 4.74823e-05 0.000106187 0.000103555 4.69449e-05 1.25624e-05 1.25516e-05 4.73227e-05 0.000105579 0.000102976 4.67888e-05 1.25292e-05 1.25182e-05 4.71663e-05 0.000104988 0.000102412 4.66357e-05 1.24956e-05 1.24845e-05 4.70127e-05 0.000104411 0.000101862 4.64853e-05 1.24615e-05 1.24502e-05 4.68616e-05 0.000103848 0.000101325 4.63371e-05 1.24269e-05 1.24154e-05 4.67129e-05 0.000103298 0.000100799 4.61911e-05 1.23917e-05 1.238e-05 4.65663e-05 0.00010276 0.000100285 4.60469e-05 1.2356e-05 1.23439e-05 4.64209e-05 0.000102234 9.97819e-05 4.59032e-05 1.23195e-05 1.23069e-05 4.62752e-05 0.00010172 9.92889e-05 4.57591e-05 1.22821e-05 1.2269e-05 4.61296e-05 0.000101215 9.88053e-05 4.56157e-05 1.22439e-05 1.22301e-05 4.59848e-05 0.00010072 9.83305e-05 4.54734e-05 1.22048e-05 1.21904e-05 4.58412e-05 0.000100234 9.78636e-05 4.53323e-05 1.21648e-05 1.21498e-05 4.56989e-05 9.97556e-05 9.74042e-05 4.51924e-05 1.21239e-05 1.21083e-05 4.5558e-05 9.92847e-05 9.69519e-05 4.50538e-05 1.20821e-05 1.20659e-05 4.54185e-05 9.88211e-05 9.65064e-05 4.49163e-05 1.20392e-05 1.20224e-05 4.52801e-05 9.83644e-05 9.60674e-05 4.47801e-05 1.19954e-05 1.19779e-05 4.5143e-05 9.79144e-05 9.56347e-05 4.4645e-05 1.19504e-05 1.19324e-05 4.50068e-05 9.74707e-05 9.5208e-05 4.45106e-05 1.19044e-05 1.18856e-05 4.48714e-05 9.70332e-05 9.47876e-05 4.43769e-05 1.18571e-05 1.18377e-05 4.47367e-05 9.66019e-05 9.4373e-05 4.42436e-05 1.18085e-05 1.17885e-05 4.46026e-05 9.61765e-05 9.39639e-05 4.41107e-05 1.17586e-05 1.17379e-05 4.4469e-05 9.57567e-05 9.356e-05 4.39781e-05 1.17074e-05 1.1686e-05 4.43358e-05 9.53422e-05 9.31612e-05 4.38458e-05 1.16546e-05 1.16326e-05 4.4203e-05 9.4933e-05 9.27674e-05 4.37136e-05 1.16004e-05 1.15777e-05 4.40705e-05 9.45289e-05 9.23785e-05 4.35817e-05 1.15446e-05 1.15212e-05 4.39383e-05 9.41299e-05 9.19947e-05 4.34498e-05 1.14871e-05 1.1463e-05 4.38065e-05 9.37363e-05 9.16159e-05 4.33182e-05 1.1428e-05 1.14032e-05 4.3675e-05 9.33481e-05 9.12425e-05 4.31868e-05 1.13671e-05 1.13416e-05 4.3544e-05 9.29655e-05 9.08745e-05 4.30557e-05 1.13044e-05 1.12783e-05 4.34135e-05 9.25887e-05 9.05123e-05 4.2925e-05 1.12399e-05 1.12131e-05 4.32835e-05 9.22181e-05 9.01562e-05 4.27946e-05 1.11735e-05 1.11461e-05 4.3155e-05 9.18542e-05 8.98068e-05 4.2665e-05 1.11052e-05 1.10772e-05 4.30282e-05 9.14976e-05 8.94647e-05 4.25361e-05 1.1035e-05 1.10064e-05 4.2902e-05 9.11488e-05 8.91303e-05 4.24075e-05 1.09628e-05 1.09338e-05 4.27767e-05 9.08083e-05 8.8804e-05 4.22799e-05 1.08888e-05 1.08593e-05 4.26527e-05 9.04766e-05 8.84867e-05 4.21535e-05 1.08129e-05 1.07829e-05 4.25305e-05 9.01549e-05 8.81795e-05 4.20288e-05 1.07352e-05 1.07048e-05 4.24104e-05 8.98444e-05 8.78836e-05 4.19063e-05 1.06557e-05 1.06251e-05 4.22928e-05 8.95463e-05 8.76003e-05 4.17863e-05 1.05746e-05 1.05439e-05 4.21784e-05 8.92619e-05 8.73309e-05 4.16695e-05 1.04921e-05 1.04614e-05 4.20677e-05 8.89929e-05 8.70771e-05 4.15565e-05 1.04084e-05 1.03778e-05 4.19611e-05 8.87409e-05 8.68407e-05 4.14478e-05 1.03236e-05 1.02934e-05 4.18595e-05 8.8508e-05 8.66237e-05 4.13442e-05 1.02382e-05 1.02085e-05 4.17635e-05 8.82963e-05 8.64284e-05 4.12466e-05 1.01525e-05 1.01234e-05 4.16738e-05 8.81087e-05 8.6258e-05 4.11557e-05 1.00669e-05 1.00387e-05 4.15916e-05 8.79482e-05 8.61153e-05 4.10733e-05 9.98202e-06 9.95461e-06 4.15181e-05 8.78177e-05 8.60028e-05 4.10004e-05 9.89849e-06 9.87194e-06 4.14538e-05 8.77196e-05 8.59221e-05 4.09367e-05 9.81684e-06 9.79125e-06 4.13983e-05 8.76555e-05 8.58746e-05 4.08819e-05 9.73747e-06 9.71303e-06 4.13514e-05 8.76268e-05 8.58614e-05 4.08364e-05 9.66098e-06 9.63798e-06 4.13141e-05 8.76344e-05 8.58834e-05 4.08016e-05 9.58817e-06 9.56687e-06 4.12872e-05 8.76788e-05 8.59408e-05 4.07776e-05 9.51976e-06 9.50042e-06 4.12708e-05 8.77598e-05 8.60329e-05 4.07642e-05 9.45645e-06 9.43927e-06 4.1264e-05 8.78765e-05 8.61584e-05 4.07605e-05 9.39881e-06 9.38397e-06 4.12658e-05 8.80268e-05 8.6315e-05 4.07652e-05 9.34734e-06 9.33498e-06 4.12748e-05 8.82082e-05 8.65001e-05 4.07774e-05 9.30244e-06 9.29273e-06 4.12899e-05 8.84194e-05 8.67139e-05 4.08e-05 9.26435e-06 9.25867e-06 4.12957e-05 8.86609e-05 8.69458e-05 4.08075e-05 9.23456e-06 9.23199e-06 4.12903e-05 8.891e-05 8.71824e-05 4.0806e-05 9.21141e-06 9.21181e-06 4.12757e-05 8.91623e-05 8.74214e-05 4.0798e-05 9.19522e-06 9.19876e-06 4.12534e-05 8.94138e-05 8.76598e-05 4.07843e-05 9.18464e-06 9.19155e-06 4.12241e-05 8.96588e-05 8.78928e-05 4.07658e-05 9.18015e-06 9.1903e-06 4.11895e-05 8.99019e-05 8.81198e-05 4.07398e-05 9.18192e-06 9.19498e-06 4.11474e-05 9.01349e-05 8.83305e-05 4.06965e-05 9.19002e-06 9.2049e-06 4.10871e-05 9.03451e-05 8.85133e-05 4.06377e-05 9.20253e-06 9.21902e-06 4.1019e-05 9.05276e-05 8.86719e-05 4.05723e-05 9.21889e-06 9.23666e-06 4.09484e-05 9.06845e-05 8.88074e-05 4.05044e-05 9.23834e-06 9.25801e-06 4.08731e-05 9.08146e-05 8.89169e-05 4.0432e-05 9.26113e-06 9.2822e-06 4.07931e-05 9.09189e-05 8.90027e-05 4.03565e-05 9.2868e-06 9.30914e-06 4.07113e-05 9.09968e-05 8.90637e-05 4.02772e-05 9.31486e-06 9.33775e-06 4.06263e-05 9.10474e-05 8.90965e-05 4.01952e-05 9.34409e-06 9.36695e-06 4.05383e-05 9.10674e-05 8.90998e-05 4.01115e-05 9.37375e-06 9.39644e-06 4.04498e-05 9.10591e-05 8.90797e-05 4.00294e-05 9.40363e-06 9.42616e-06 4.03643e-05 9.10286e-05 8.90404e-05 3.99513e-05 9.43366e-06 9.45588e-06 4.02829e-05 9.0978e-05 8.89822e-05 3.98775e-05 9.46352e-06 9.48524e-06 4.02054e-05 9.09081e-05 8.89065e-05 3.98008e-05 9.49226e-06 9.51291e-06 4.01283e-05 9.08295e-05 8.88133e-05 3.97226e-05 9.51942e-06 9.53914e-06 4.00528e-05 9.07335e-05 8.87059e-05 3.96489e-05 9.54517e-06 9.56398e-06 3.99816e-05 9.06236e-05 8.85875e-05 3.958e-05 9.56952e-06 9.58744e-06 3.99151e-05 9.05029e-05 8.84609e-05 3.95168e-05 9.59251e-06 9.60954e-06 3.9854e-05 9.0374e-05 8.83285e-05 3.9459e-05 9.61411e-06 9.63027e-06 3.9799e-05 9.02398e-05 8.8194e-05 3.94073e-05 9.63435e-06 9.64969e-06 3.97508e-05 9.01037e-05 8.80598e-05 3.93628e-05 9.65337e-06 9.66793e-06 3.97092e-05 8.99682e-05 8.79276e-05 3.93235e-05 9.67138e-06 9.6852e-06 3.96722e-05 8.98345e-05 8.77986e-05 3.92906e-05 9.68837e-06 9.70141e-06 3.96414e-05 8.97043e-05 8.76745e-05 3.92643e-05 9.70429e-06 9.71657e-06 3.96168e-05 8.95795e-05 8.75573e-05 3.92445e-05 9.71918e-06 9.73075e-06 3.95985e-05 8.94622e-05 8.74484e-05 3.92311e-05 9.73311e-06 9.74403e-06 3.95861e-05 8.93535e-05 8.73486e-05 3.92232e-05 9.74616e-06 9.7565e-06 3.95793e-05 8.92541e-05 8.72581e-05 3.92196e-05 9.75841e-06 9.76824e-06 3.95776e-05 8.9164e-05 8.71771e-05 3.92214e-05 9.76997e-06 9.77935e-06 3.95812e-05 8.90836e-05 8.71057e-05 3.92281e-05 9.78092e-06 9.78991e-06 3.95893e-05 8.90126e-05 8.70437e-05 3.92391e-05 9.79133e-06 9.79999e-06 3.96013e-05 8.89511e-05 8.69902e-05 3.92534e-05 9.80129e-06 9.80965e-06 3.96162e-05 8.88977e-05 8.6944e-05 3.92699e-05 9.81081e-06 9.81887e-06 3.96333e-05 8.8851e-05 8.69038e-05 3.9288e-05 9.8199e-06 9.82769e-06 3.96521e-05 8.88099e-05 8.68686e-05 3.93074e-05 9.82859e-06 9.83613e-06 3.9672e-05 8.87734e-05 8.68372e-05 3.93277e-05 9.83691e-06 9.84421e-06 3.96924e-05 8.87402e-05 8.68084e-05 3.93481e-05 9.84486e-06 9.85193e-06 3.97126e-05 8.87092e-05 8.6781e-05 3.9368e-05 9.85247e-06 9.8593e-06 3.97322e-05 8.86791e-05 8.6754e-05 3.9387e-05 9.85971e-06 9.86629e-06 3.97505e-05 8.86488e-05 8.67262e-05 3.94046e-05 9.86657e-06 9.87291e-06 3.97673e-05 8.86174e-05 8.66968e-05 3.94204e-05 9.87307e-06 9.87915e-06 3.97822e-05 8.85841e-05 8.66652e-05 3.94343e-05 9.87918e-06 9.88501e-06 3.9795e-05 8.85482e-05 8.66306e-05 3.94461e-05 9.88491e-06 9.89051e-06 3.98056e-05 8.85091e-05 8.65927e-05 3.94556e-05 9.89026e-06 9.89568e-06 3.98138e-05 8.84667e-05 8.65514e-05 3.94627e-05 9.8953e-06 9.90055e-06 3.98197e-05 8.84208e-05 8.65067e-05 3.94677e-05 9.90003e-06 9.90514e-06 3.98235e-05 8.83717e-05 8.64589e-05 3.94707e-05 9.90451e-06 9.90953e-06 3.98253e-05 8.83199e-05 8.6409e-05 3.94723e-05 9.90884e-06 9.91385e-06 3.9826e-05 8.82667e-05 8.6359e-05 3.94734e-05 9.91316e-06 9.91837e-06 3.9827e-05 8.82157e-05 8.63154e-05 3.94791e-05 9.91786e-06 9.92446e-06 3.9837e-05 8.81864e-05 8.61472e-05 3.94155e-05 9.91762e-06 1.00615e-05 4.02202e-05 8.8213e-05 8.63775e-05 3.90424e-05 1.00249e-05 1.0087e-05 4.03071e-05 8.96033e-05 8.7721e-05 4.00094e-05 1.02499e-05 1.0896e-05 4.25634e-05 9.46737e-05 0.000101159 4.49603e-05 1.15721e-05 1.21914e-05 4.60568e-05 0.000101981 0.000106407 4.80852e-05 1.25037e-05 1.28882e-05 4.84916e-05 0.000107909 0.0002853 0.000561996 0.000890106 0.00117392 0.0016158 0.00201611 0.00241882 0.00278529 0.00313779 0.00346084 0.00376513 0.00404137 0.00429439 0.00451842 0.00471546 0.00488187 0.00501835 0.00512286 0.00519555 0.00523552 0.00524252 0.00521683 0.00515862 0.0050692 0.00494841 0.00479892 0.0046203 0.00441674 0.00418714 0.0039377 0.00366605 0.00338057 0.0030777 0.00277111 0.00245281 0.00214502 0.00182952 0.0015782 0.00130491 0.000992219 0.000750373 0.000646523 0.000420475 0.000247098 0.000117998 4.23772e-05 1.74614e-05 3.2787e-06 3.19038e-06 1.73828e-05 4.24886e-05 3.97299e-05 1.65397e-05 3.06582e-06 2.94129e-06 1.645e-05 3.98399e-05 3.95479e-05 1.62702e-05 2.95868e-06 2.94357e-06 1.62438e-05 3.93367e-05 3.88258e-05 1.61198e-05 2.89407e-06 2.79367e-06 1.59142e-05 3.87083e-05 3.88698e-05 1.59557e-05 2.79725e-06 2.78847e-06 1.57258e-05 3.84887e-05 3.86629e-05 1.58045e-05 2.80099e-06 2.79798e-06 1.58013e-05 3.86665e-05 3.87105e-05 1.58155e-05 2.80093e-06 2.80293e-06 1.58187e-05 3.87262e-05 3.87741e-05 1.5835e-05 2.80574e-06 2.8079e-06 1.58382e-05 3.87912e-05 3.88401e-05 1.58547e-05 2.81082e-06 2.81312e-06 1.58588e-05 3.88582e-05 3.89088e-05 1.58761e-05 2.81613e-06 2.81847e-06 1.58801e-05 3.89277e-05 3.89789e-05 1.58975e-05 2.82156e-06 2.824e-06 1.59022e-05 3.89984e-05 3.90511e-05 1.59202e-05 2.82715e-06 2.8296e-06 1.59247e-05 3.9071e-05 3.91242e-05 1.59427e-05 2.83281e-06 2.83535e-06 1.59478e-05 3.91446e-05 3.91991e-05 1.59664e-05 2.83861e-06 2.84116e-06 1.59712e-05 3.92199e-05 3.92749e-05 1.59898e-05 2.84449e-06 2.84711e-06 1.59952e-05 3.92962e-05 3.93526e-05 1.60144e-05 2.85048e-06 2.85311e-06 1.60196e-05 3.93743e-05 3.9431e-05 1.60387e-05 2.85654e-06 2.85925e-06 1.60445e-05 3.94532e-05 3.95113e-05 1.60642e-05 2.86272e-06 2.86543e-06 1.60697e-05 3.95338e-05 3.95923e-05 1.60894e-05 2.86896e-06 2.87175e-06 1.60955e-05 3.96152e-05 3.96751e-05 1.61158e-05 2.87531e-06 2.8781e-06 1.61216e-05 3.96983e-05 3.97586e-05 1.61419e-05 2.88172e-06 2.88459e-06 1.61482e-05 3.97822e-05 3.98438e-05 1.61691e-05 2.88825e-06 2.89111e-06 1.61752e-05 3.98677e-05 3.99297e-05 1.6196e-05 2.89483e-06 2.89778e-06 1.62026e-05 3.99541e-05 4.00174e-05 1.62241e-05 2.90154e-06 2.90449e-06 1.62304e-05 4.0042e-05 4.01058e-05 1.62519e-05 2.90831e-06 2.91134e-06 1.62588e-05 4.01309e-05 4.0196e-05 1.62809e-05 2.91522e-06 2.91825e-06 1.62875e-05 4.02213e-05 4.0287e-05 1.63096e-05 2.9222e-06 2.92532e-06 1.63168e-05 4.03127e-05 4.03798e-05 1.63396e-05 2.92931e-06 2.93245e-06 1.63466e-05 4.04058e-05 4.04734e-05 1.63694e-05 2.93651e-06 2.93973e-06 1.63769e-05 4.04998e-05 4.05688e-05 1.64004e-05 2.94385e-06 2.94708e-06 1.64077e-05 4.05953e-05 4.06649e-05 1.64313e-05 2.95127e-06 2.95459e-06 1.64391e-05 4.06917e-05 4.07626e-05 1.64633e-05 2.95884e-06 2.96217e-06 1.64709e-05 4.07896e-05 4.0861e-05 1.64952e-05 2.9665e-06 2.96992e-06 1.65033e-05 4.08883e-05 4.09611e-05 1.65284e-05 2.97431e-06 2.97775e-06 1.65362e-05 4.09885e-05 4.10618e-05 1.65615e-05 2.98223e-06 2.98576e-06 1.65698e-05 4.10895e-05 4.11641e-05 1.65958e-05 2.99029e-06 2.99384e-06 1.66039e-05 4.11919e-05 4.12669e-05 1.663e-05 2.99847e-06 3.00211e-06 1.66385e-05 4.12948e-05 4.13712e-05 1.66653e-05 3.0068e-06 3.01047e-06 1.66736e-05 4.13984e-05 4.14755e-05 1.67006e-05 3.01526e-06 3.01903e-06 1.67093e-05 4.15028e-05 4.15813e-05 1.67371e-05 3.0239e-06 3.0277e-06 1.67455e-05 4.16076e-05 4.16868e-05 1.67736e-05 3.03267e-06 3.03658e-06 1.67824e-05 4.17132e-05 4.17937e-05 1.68113e-05 3.04164e-06 3.04559e-06 1.68198e-05 4.18189e-05 4.19e-05 1.68489e-05 3.05075e-06 3.0548e-06 1.68578e-05 4.19249e-05 4.20072e-05 1.68878e-05 3.06006e-06 3.06416e-06 1.68963e-05 4.20307e-05 4.21135e-05 1.69265e-05 3.06954e-06 3.07374e-06 1.69353e-05 4.21364e-05 4.22202e-05 1.69664e-05 3.07922e-06 3.08348e-06 1.69748e-05 4.22413e-05 4.23254e-05 1.70062e-05 3.08908e-06 3.09346e-06 1.70147e-05 4.23454e-05 4.24302e-05 1.7047e-05 3.09917e-06 3.1036e-06 1.7055e-05 4.24479e-05 4.25326e-05 1.70876e-05 3.10945e-06 3.11399e-06 1.70957e-05 4.25485e-05 4.26335e-05 1.71291e-05 3.11996e-06 3.12456e-06 1.71364e-05 4.26462e-05 4.27306e-05 1.71703e-05 3.13068e-06 3.13541e-06 1.71775e-05 4.27407e-05 4.28248e-05 1.72122e-05 3.14167e-06 3.14648e-06 1.72187e-05 4.28307e-05 4.29133e-05 1.7254e-05 3.15291e-06 3.15785e-06 1.72602e-05 4.29154e-05 4.29965e-05 1.72967e-05 3.16444e-06 3.16945e-06 1.7302e-05 4.29932e-05 4.30712e-05 1.73394e-05 3.17621e-06 3.1813e-06 1.73443e-05 4.30623e-05 4.31362e-05 1.7383e-05 3.18819e-06 3.19326e-06 1.7387e-05 4.31194e-05 4.31862e-05 1.74257e-05 3.20021e-06 3.20521e-06 1.7429e-05 4.31607e-05 4.32175e-05 1.74676e-05 3.21205e-06 3.21674e-06 1.74689e-05 4.31809e-05 4.32204e-05 1.75046e-05 3.2232e-06 3.22734e-06 1.75023e-05 4.3171e-05 4.31869e-05 1.75317e-05 3.23298e-06 3.23616e-06 1.75227e-05 4.31199e-05 4.31026e-05 1.75379e-05 3.24025e-06 3.24216e-06 1.75172e-05 4.30137e-05 4.29663e-05 1.75069e-05 3.24351e-06 3.24365e-06 1.74647e-05 4.28346e-05 4.27609e-05 1.74178e-05 3.24294e-06 3.23982e-06 1.73442e-05 4.2577e-05 4.24699e-05 1.7257e-05 3.2351e-06 3.2274e-06 1.7131e-05 4.22351e-05 4.20853e-05 1.7006e-05 3.22054e-06 3.2123e-06 1.68345e-05 4.18059e-05 4.16292e-05 1.66637e-05 3.20825e-06 3.20596e-06 1.64539e-05 4.13359e-05 4.11598e-05 1.62621e-05 3.20633e-06 3.21032e-06 1.60272e-05 4.08986e-05 4.07496e-05 1.58236e-05 3.2214e-06 3.23753e-06 1.55837e-05 4.05454e-05 4.05376e-05 1.53919e-05 3.26485e-06 3.3024e-06 1.51942e-05 4.05022e-05 4.07128e-05 1.50666e-05 3.35664e-06 3.41872e-06 1.50117e-05 4.09693e-05 4.15989e-05 1.5264e-05 3.53581e-06 3.65139e-06 1.54707e-05 4.21675e-05 4.2557e-05 1.52491e-05 3.69347e-06 3.70181e-06 1.5148e-05 4.24962e-05 4.35883e-05 1.49731e-05 3.76067e-06 3.89994e-06 1.57021e-05 4.44604e-05 4.50051e-05 1.54522e-05 4.03977e-06 4.19834e-06 1.61481e-05 4.60906e-05 4.73447e-05 1.62895e-05 4.349e-06 4.57213e-06 1.72024e-05 4.84697e-05 4.9619e-05 1.7589e-05 4.80874e-06 4.9859e-06 1.84803e-05 4.98395e-05 5.09414e-05 1.87771e-05 5.06578e-06 5.30139e-06 1.91755e-05 5.11328e-05 5.26444e-05 2.20019e-05 5.65724e-06 6.02312e-06 2.26273e-05 5.26499e-05 5.20134e-05 2.4354e-05 3.79896e-06 1.52109e-06 6.04954e-06 1.62105e-05 3.73342e-05 1.21787e-05 2.24392e-06 2.37758e-06 1.07041e-05 3.26404e-05 3.25457e-05 1.03622e-05 2.48478e-06 2.67579e-06 1.08985e-05 3.46164e-05 3.38817e-05 1.08912e-05 2.87501e-06 3.0344e-06 1.16789e-05 3.61416e-05 3.58549e-05 1.14542e-05 3.28123e-06 3.52423e-06 1.31952e-05 3.95431e-05 3.84257e-05 1.271e-05 3.77055e-06 4.1242e-06 1.45453e-05 4.14311e-05 4.12769e-05 1.47571e-05 4.3986e-06 4.77209e-06 1.67883e-05 4.40958e-05 4.48241e-05 1.83457e-05 5.41217e-06 3.5606e-06 2.20703e-05 4.71655e-05 1.4758e-05 5.38847e-06 1.76569e-06 2.73459e-06 1.26959e-05 3.83793e-05 3.62077e-05 1.15207e-05 3.25987e-06 3.74072e-06 1.42992e-05 4.38227e-05 4.36789e-05 1.4647e-05 4.0413e-06 4.37842e-06 1.5924e-05 4.81235e-05 4.87882e-05 1.70862e-05 4.80987e-06 5.14856e-06 1.9104e-05 5.16878e-05 5.27966e-05 1.95799e-05 5.57471e-06 6.10544e-06 2.30675e-05 5.50301e-05 5.31398e-05 2.38328e-05 3.93471e-06 1.93667e-06 5.74685e-06 1.59777e-05 4.10361e-05 1.35164e-05 2.91537e-06 3.23779e-06 1.19084e-05 3.74356e-05 3.97932e-05 1.23298e-05 3.6225e-06 4.04909e-06 1.50345e-05 4.32468e-05 4.31202e-05 1.51768e-05 4.40284e-06 4.94132e-06 1.77868e-05 4.69651e-05 4.81454e-05 2.00119e-05 5.64706e-06 3.76106e-06 2.36897e-05 5.02106e-05 1.5585e-05 5.64617e-06 1.95641e-06 3.11826e-06 1.33284e-05 4.27967e-05 4.22711e-05 1.35116e-05 3.84815e-06 4.48144e-06 1.70334e-05 5.1721e-05 5.32083e-05 1.90449e-05 5.10084e-06 5.77463e-06 2.14933e-05 5.76846e-05 5.88602e-05 2.44815e-05 6.48343e-06 4.27533e-06 2.61544e-05 5.71007e-05 1.77775e-05 6.31995e-06 2.2208e-06 3.39636e-06 1.55251e-05 4.65867e-05 4.60997e-05 1.50811e-05 4.11089e-06 4.72765e-06 1.87011e-05 5.17354e-05 5.17341e-05 1.99546e-05 5.5075e-06 3.76167e-06 2.45646e-05 5.37947e-05 1.67887e-05 5.69776e-06 1.96961e-06 3.17975e-06 1.45007e-05 4.71611e-05 4.76563e-05 1.52222e-05 4.03841e-06 4.82018e-06 2.03606e-05 5.92301e-05 6.05297e-05 2.1731e-05 5.62854e-06 6.58294e-06 2.74688e-05 6.63182e-05 6.25138e-05 2.87236e-05 4.48819e-06 2.3217e-06 6.96269e-06 2.01986e-05 5.3666e-05 1.77114e-05 3.60027e-06 4.60267e-06 1.76233e-05 5.28574e-05 6.21924e-05 2.53243e-05 5.76426e-06 4.03467e-06 2.69911e-05 6.14122e-05 2.08185e-05 6.62231e-06 2.18087e-06 3.71092e-06 1.88873e-05 5.86813e-05 6.23529e-05 2.21438e-05 5.00686e-06 6.32069e-06 3.00774e-05 7.49087e-05 7.06217e-05 3.16289e-05 4.46065e-06 2.4198e-06 7.90546e-06 2.50308e-05 6.53415e-05 2.39632e-05 4.14294e-06 5.56513e-06 2.53581e-05 6.66974e-05 6.98292e-05 3.07102e-05 4.00172e-06 2.17118e-06 7.66155e-06 2.54382e-05 6.91289e-05 2.41125e-05 4.15923e-06 5.92288e-06 2.90397e-05 7.63667e-05 8.23653e-05 3.65169e-05 4.51085e-06 2.52291e-06 9.81722e-06 3.24503e-05 8.31644e-05 3.19709e-05 4.88003e-06 3.87935e-06 3.38696e-05 8.20174e-05 3.44989e-05 1.01438e-05 2.30428e-06 4.8574e-06 3.46923e-05 9.3401e-05 9.5891e-05 3.74263e-05 4.04351e-06 2.38364e-06 1.34941e-05 4.5149e-05 0.000112321 4.26194e-05 5.69093e-06 5.15541e-06 4.63808e-05 0.000120794 7.69079e-05 2.6796e-05 3.21772e-06 4.2048e-06 3.97617e-05 0.000105642 0.00011289 4.32308e-05 4.6703e-06 6.26138e-06 5.05614e-05 0.000131027 0.000109409 4.02042e-05 4.59228e-06 3.79903e-06 3.26444e-05 9.00311e-05 9.14202e-05 3.27459e-05 3.92154e-06 4.83344e-06 3.67327e-05 0.000103863 0.000175027 7.46986e-05 7.10815e-06 5.58452e-06 1.46561e-05 3.93242e-05 8.04813e-05 3.99344e-05 5.14971e-06 4.67809e-06 1.16003e-05 2.72201e-05 5.65143e-05 3.26628e-05 4.8552e-06 4.58366e-06 1.03418e-05 2.36454e-05 4.82285e-05 2.78486e-05 4.90666e-06 4.7586e-06 1.10993e-05 2.35206e-05 4.5858e-05 2.85455e-05 5.14693e-06 5.19985e-06 1.10353e-05 2.37968e-05 4.75719e-05 2.62141e-05 6.16453e-06 7.03914e-06 2.11805e-05 4.28083e-05 1.75938e-05 7.84879e-06 3.92147e-06 4.76543e-06 2.01194e-05 3.77146e-05 3.51188e-05 1.83494e-05 5.73638e-06 3.19838e-06 6.2349e-06 1.4278e-05 3.01788e-05 2.16989e-05 3.80669e-06 4.27072e-06 8.08094e-06 1.70622e-05 3.6804e-05 1.99104e-05 5.16304e-06 6.34789e-06 1.76635e-05 3.36913e-05 1.52545e-05 7.26865e-06 3.82626e-06 4.82881e-06 1.87018e-05 3.26897e-05 3.08334e-05 1.705e-05 5.9703e-06 3.47524e-06 6.54045e-06 1.40959e-05 3.03361e-05 1.69012e-05 4.4541e-06 5.84791e-06 1.57254e-05 2.89426e-05 1.36001e-05 6.52908e-06 3.54574e-06 4.44185e-06 1.68027e-05 2.91167e-05 2.77168e-05 1.53349e-05 5.69384e-06 3.47866e-06 6.3517e-06 1.31077e-05 2.7635e-05 1.59388e-05 4.42548e-06 5.6976e-06 1.47789e-05 2.66934e-05 1.28277e-05 6.26767e-06 3.45518e-06 4.41944e-06 1.57237e-05 2.71301e-05 2.61939e-05 1.46952e-05 5.73009e-06 3.52918e-06 6.28447e-06 1.27822e-05 2.6933e-05 1.60373e-05 4.6647e-06 6.46389e-06 1.41517e-05 2.5534e-05 2.31949e-05 1.19706e-05 4.66859e-06 2.73937e-06 4.91563e-06 1.05691e-05 2.15875e-05 1.22495e-05 3.4837e-06 4.82683e-06 1.21967e-05 2.17016e-05 1.05285e-05 5.22956e-06 2.97937e-06 3.61673e-06 1.25799e-05 2.17444e-05 2.15735e-05 1.22042e-05 4.84719e-06 2.98084e-06 5.25134e-06 1.05459e-05 2.11492e-05 1.25714e-05 3.70518e-06 4.93761e-06 1.20371e-05 2.08552e-05 1.02822e-05 5.12254e-06 2.92997e-06 3.66821e-06 1.22499e-05 2.09442e-05 2.08307e-05 1.19196e-05 4.98802e-06 3.05773e-06 5.31586e-06 1.02625e-05 2.01127e-05 1.22387e-05 3.77837e-06 5.07656e-06 1.16685e-05 2.00376e-05 1.00103e-05 5.30764e-06 3.08382e-06 3.77894e-06 1.2209e-05 2.01291e-05 1.99527e-05 1.16705e-05 5.07539e-06 3.08237e-06 5.36215e-06 9.94062e-06 1.94236e-05 1.1945e-05 3.84312e-06 5.16807e-06 1.12076e-05 1.9293e-05 9.94506e-06 5.44704e-06 3.15869e-06 3.91108e-06 1.20778e-05 1.94486e-05 1.94613e-05 1.12767e-05 5.17476e-06 3.14639e-06 5.53704e-06 9.86779e-06 1.9044e-05 1.19301e-05 3.92606e-06 5.16351e-06 1.1028e-05 1.86872e-05 9.66551e-06 5.45142e-06 3.16372e-06 3.87547e-06 1.17436e-05 1.88701e-05 1.84896e-05 1.10631e-05 5.14202e-06 3.17506e-06 5.52354e-06 9.63115e-06 1.86559e-05 1.17142e-05 3.95035e-06 5.27197e-06 1.08049e-05 1.80174e-05 9.52138e-06 5.54848e-06 3.24131e-06 3.96091e-06 1.16732e-05 1.84911e-05 1.76409e-05 1.07335e-05 5.2797e-06 3.23486e-06 5.59887e-06 9.47614e-06 1.81879e-05 1.15126e-05 3.94027e-06 5.18442e-06 1.06087e-05 1.73678e-05 9.14969e-06 5.38327e-06 3.10957e-06 3.8351e-06 1.10478e-05 1.78447e-05 1.70227e-05 1.04212e-05 5.19601e-06 3.18336e-06 5.44892e-06 9.02283e-06 1.72069e-05 1.08864e-05 3.82268e-06 5.08925e-06 9.93591e-06 1.63587e-05 8.7523e-06 5.35025e-06 3.05566e-06 3.74768e-06 1.06839e-05 1.68658e-05 1.6074e-05 9.95201e-06 5.03234e-06 3.10377e-06 5.33474e-06 8.66001e-06 1.63179e-05 1.0401e-05 3.7201e-06 4.90139e-06 9.53887e-06 1.56075e-05 8.20326e-06 5.15027e-06 2.93874e-06 3.64926e-06 1.00163e-05 1.55969e-05 1.48227e-05 9.08244e-06 4.85623e-06 2.75799e-06 4.73375e-06 7.78509e-06 1.31878e-05 1.11719e-05 2.9736e-06 3.60502e-06 5.42012e-06 8.53968e-06 1.65086e-05 1.0423e-05 4.26768e-06 5.43204e-06 9.49485e-06 1.55298e-05 8.55697e-06 5.54177e-06 3.22249e-06 3.95081e-06 1.04124e-05 1.58701e-05 1.51007e-05 9.50406e-06 5.11725e-06 3.03931e-06 5.266e-06 8.23432e-06 1.5308e-05 9.7819e-06 3.72343e-06 4.98838e-06 9.11502e-06 1.47085e-05 7.98133e-06 5.17341e-06 2.97663e-06 3.59358e-06 9.57587e-06 1.48644e-05 1.42165e-05 8.88313e-06 4.77152e-06 2.74471e-06 4.69064e-06 7.44634e-06 1.27527e-05 1.04594e-05 3.01624e-06 3.77695e-06 5.5245e-06 8.40703e-06 1.60515e-05 1.02304e-05 4.39601e-06 5.62085e-06 9.42909e-06 1.50847e-05 8.45032e-06 5.62464e-06 3.40867e-06 3.95265e-06 1.02311e-05 1.55626e-05 1.49574e-05 9.48001e-06 5.12474e-06 3.05701e-06 5.28666e-06 8.0882e-06 1.48706e-05 9.78742e-06 3.69086e-06 4.82174e-06 8.87066e-06 1.40794e-05 7.49567e-06 4.79712e-06 2.7669e-06 3.06291e-06 1.06829e-05 1.25205e-05 8.21748e-06 5.46972e-06 3.6926e-06 4.2884e-06 9.95927e-06 1.54045e-05 1.44226e-05 9.09772e-06 5.43835e-06 3.1128e-06 5.30768e-06 7.97879e-06 1.43101e-05 9.52465e-06 3.73537e-06 4.90586e-06 8.74935e-06 1.3633e-05 7.35499e-06 4.80127e-06 2.77597e-06 3.04434e-06 1.04473e-05 1.20978e-05 8.07778e-06 5.48003e-06 3.72548e-06 4.32538e-06 9.76764e-06 1.51293e-05 1.42347e-05 9.0656e-06 5.49592e-06 3.20741e-06 5.41469e-06 7.98276e-06 1.42836e-05 9.5312e-06 3.76869e-06 4.96199e-06 8.76727e-06 1.35991e-05 7.3156e-06 4.82987e-06 2.86548e-06 3.11404e-06 1.0194e-05 1.22787e-05 8.1577e-06 5.52467e-06 3.775e-06 4.1986e-06 9.8432e-06 1.49034e-05 1.39247e-05 8.9608e-06 5.2903e-06 2.96642e-06 4.96295e-06 7.59488e-06 1.22176e-05 1.07031e-05 3.23668e-06 3.97484e-06 5.76583e-06 8.26817e-06 1.5167e-05 9.84813e-06 4.40871e-06 5.54701e-06 9.03689e-06 1.40716e-05 7.80367e-06 5.25377e-06 3.1547e-06 3.3851e-06 1.07856e-05 1.26781e-05 8.62693e-06 5.95414e-06 4.08116e-06 4.71857e-06 1.0207e-05 1.54648e-05 1.44783e-05 9.39214e-06 5.92528e-06 3.35853e-06 5.67061e-06 8.27914e-06 1.43178e-05 9.7112e-06 3.87582e-06 5.04104e-06 8.8815e-06 1.36924e-05 7.45278e-06 4.92485e-06 2.91861e-06 3.16557e-06 1.03201e-05 1.21474e-05 8.22619e-06 5.59256e-06 3.81686e-06 4.34026e-06 9.58934e-06 1.4674e-05 1.37391e-05 8.84269e-06 5.42584e-06 3.06378e-06 5.08366e-06 7.63673e-06 1.20844e-05 1.06391e-05 3.26913e-06 3.95315e-06 5.76894e-06 8.24812e-06 1.45936e-05 9.63837e-06 4.43916e-06 5.48098e-06 8.80979e-06 1.35872e-05 7.63809e-06 5.01524e-06 3.01703e-06 3.18625e-06 1.04927e-05 1.2209e-05 8.26649e-06 5.70062e-06 3.86858e-06 4.35996e-06 9.55084e-06 1.45065e-05 1.35679e-05 8.8451e-06 5.45822e-06 3.09179e-06 5.13923e-06 7.60722e-06 1.18616e-05 1.06199e-05 3.32773e-06 3.97084e-06 5.8788e-06 8.19805e-06 1.43359e-05 9.47043e-06 4.38702e-06 5.42323e-06 8.68773e-06 1.3384e-05 7.53045e-06 5.14859e-06 3.04491e-06 3.29045e-06 1.0266e-05 1.19713e-05 8.20653e-06 5.70567e-06 3.9208e-06 4.39905e-06 9.62622e-06 1.42374e-05 1.32771e-05 8.87018e-06 5.53069e-06 3.12023e-06 5.14313e-06 7.54664e-06 1.14273e-05 1.06631e-05 3.25754e-06 3.80783e-06 5.8592e-06 8.04057e-06 1.2909e-05 1.00583e-05 3.85249e-06 4.52005e-06 6.27463e-06 8.85618e-06 1.49648e-05 9.85166e-06 4.88883e-06 5.96288e-06 9.03402e-06 1.38982e-05 7.92819e-06 5.43291e-06 3.29648e-06 3.55139e-06 1.0942e-05 1.22176e-05 8.52861e-06 6.15666e-06 4.23129e-06 4.6742e-06 9.85756e-06 1.46238e-05 1.35949e-05 9.05701e-06 5.8138e-06 3.27079e-06 5.36641e-06 7.90557e-06 1.18454e-05 1.09635e-05 3.36585e-06 3.95069e-06 6.10878e-06 8.41606e-06 1.32071e-05 1.02123e-05 4.01475e-06 4.68067e-06 6.54572e-06 9.14621e-06 1.51992e-05 1.00144e-05 4.91956e-06 5.9172e-06 9.18886e-06 1.41017e-05 8.10949e-06 5.55312e-06 3.38845e-06 3.58311e-06 1.08979e-05 1.25179e-05 8.75113e-06 6.19342e-06 4.19977e-06 4.69742e-06 9.99932e-06 1.47144e-05 1.38211e-05 9.13276e-06 5.71918e-06 3.20285e-06 5.36649e-06 7.92987e-06 1.195e-05 1.08306e-05 3.43712e-06 3.94478e-06 6.01236e-06 8.42101e-06 1.31831e-05 1.0482e-05 3.93509e-06 4.6019e-06 6.47902e-06 9.11453e-06 1.499e-05 9.96388e-06 4.97736e-06 6.02827e-06 9.13074e-06 1.38842e-05 8.07271e-06 5.55783e-06 3.38835e-06 3.61048e-06 1.09136e-05 1.23952e-05 8.69599e-06 6.18795e-06 4.25949e-06 4.66174e-06 9.74881e-06 1.43796e-05 1.35047e-05 8.93362e-06 5.73402e-06 3.23627e-06 5.33788e-06 7.87963e-06 1.16033e-05 1.07626e-05 3.43924e-06 3.90275e-06 5.97598e-06 8.30143e-06 1.27841e-05 9.94671e-06 3.96119e-06 4.61607e-06 6.39692e-06 8.96406e-06 1.45901e-05 9.60322e-06 4.82477e-06 5.83265e-06 8.83771e-06 1.34866e-05 7.76816e-06 5.29926e-06 3.23016e-06 3.33377e-06 1.03963e-05 1.15511e-05 8.40108e-06 6.03816e-06 3.95509e-06 3.9834e-06 1.00608e-05 1.27302e-05 8.9511e-06 6.3922e-06 4.53322e-06 4.8769e-06 9.61942e-06 1.4408e-05 1.34342e-05 8.95118e-06 5.91547e-06 3.33176e-06 5.41194e-06 7.88859e-06 1.13705e-05 1.06965e-05 3.42516e-06 3.96441e-06 6.11448e-06 8.33665e-06 1.26845e-05 9.92213e-06 3.9811e-06 4.4759e-06 6.41023e-06 8.97802e-06 1.34165e-05 1.04776e-05 4.36511e-06 4.94056e-06 6.93012e-06 9.50869e-06 1.51294e-05 1.01847e-05 5.25567e-06 6.29972e-06 9.36532e-06 1.39758e-05 8.29005e-06 5.68244e-06 3.49093e-06 3.59896e-06 1.12343e-05 1.186e-05 8.68823e-06 6.3212e-06 4.14369e-06 4.13816e-06 1.0369e-05 1.31495e-05 9.30551e-06 6.71532e-06 4.8318e-06 5.15502e-06 1.00369e-05 1.48809e-05 1.37918e-05 9.23518e-06 6.18869e-06 3.40069e-06 5.53584e-06 8.10952e-06 1.18709e-05 1.07794e-05 3.56284e-06 4.22644e-06 6.34258e-06 8.67822e-06 1.30622e-05 1.03375e-05 4.18792e-06 4.81435e-06 6.74799e-06 9.2827e-06 1.4601e-05 9.95031e-06 5.19879e-06 6.23485e-06 9.16769e-06 1.3544e-05 8.02482e-06 5.51355e-06 3.42101e-06 3.47954e-06 1.07709e-05 1.14484e-05 8.42443e-06 6.10065e-06 4.01858e-06 3.97285e-06 9.95038e-06 1.24139e-05 8.94348e-06 6.38568e-06 4.47099e-06 4.35576e-06 1.01733e-05 1.30529e-05 9.46676e-06 6.92586e-06 5.00859e-06 5.34899e-06 1.00306e-05 1.46699e-05 1.37026e-05 9.30661e-06 6.3735e-06 3.58576e-06 5.74938e-06 8.28477e-06 1.16907e-05 1.09928e-05 3.72756e-06 4.24888e-06 6.44686e-06 8.70048e-06 1.27922e-05 1.02268e-05 4.2035e-06 4.72714e-06 6.70567e-06 9.27334e-06 1.34978e-05 1.06248e-05 4.52427e-06 5.13484e-06 7.15169e-06 9.7968e-06 1.5187e-05 1.03602e-05 5.46429e-06 6.43361e-06 9.49306e-06 1.39761e-05 8.33947e-06 5.75418e-06 3.50798e-06 3.72362e-06 1.0917e-05 1.19596e-05 8.90161e-06 6.5305e-06 4.34842e-06 4.36159e-06 1.06252e-05 1.29111e-05 9.38284e-06 6.82528e-06 4.87453e-06 5.12819e-06 9.80622e-06 1.44575e-05 1.34403e-05 9.09012e-06 6.2207e-06 3.45692e-06 5.58338e-06 8.08534e-06 1.14634e-05 1.06903e-05 3.6116e-06 4.18713e-06 6.27401e-06 8.55106e-06 1.23567e-05 9.76225e-06 4.08099e-06 4.60572e-06 6.4985e-06 9.04413e-06 1.2847e-05 1.00951e-05 4.42147e-06 4.89504e-06 6.86321e-06 9.43057e-06 1.34489e-05 1.07071e-05 4.74453e-06 5.34674e-06 7.37161e-06 9.9335e-06 1.50378e-05 1.04689e-05 5.59249e-06 6.54293e-06 9.6182e-06 1.38825e-05 8.39956e-06 5.77e-06 3.60103e-06 3.73301e-06 1.11089e-05 1.17192e-05 8.85654e-06 6.55072e-06 4.36108e-06 4.32311e-06 1.02334e-05 1.26276e-05 9.35731e-06 6.74691e-06 4.79777e-06 4.64653e-06 1.05276e-05 1.3181e-05 9.76815e-06 7.21191e-06 5.26087e-06 5.48038e-06 1.02152e-05 1.47005e-05 1.36719e-05 9.47896e-06 6.53721e-06 3.73261e-06 5.85186e-06 8.42074e-06 1.1597e-05 1.11127e-05 3.80496e-06 4.35466e-06 6.53229e-06 8.77616e-06 1.25744e-05 1.00798e-05 4.29753e-06 4.8844e-06 6.84595e-06 9.35216e-06 1.31939e-05 1.06236e-05 4.70826e-06 5.24677e-06 7.2509e-06 9.78637e-06 1.45976e-05 1.02123e-05 5.54847e-06 6.54383e-06 9.45263e-06 1.35043e-05 8.33097e-06 5.83592e-06 3.64946e-06 3.78038e-06 1.089e-05 1.15105e-05 8.78675e-06 6.49634e-06 4.33657e-06 4.25175e-06 1.01075e-05 1.23142e-05 9.16081e-06 6.609e-06 4.67158e-06 4.44544e-06 1.01112e-05 1.26225e-05 9.44372e-06 6.8615e-06 4.92294e-06 4.70244e-06 1.05734e-05 1.30393e-05 9.77946e-06 7.31424e-06 5.31293e-06 5.6373e-06 1.02224e-05 1.45015e-05 1.3532e-05 9.55041e-06 6.70355e-06 3.78491e-06 5.96342e-06 8.5005e-06 1.18292e-05 1.09879e-05 3.88114e-06 4.46824e-06 6.69284e-06 9.01846e-06 1.26427e-05 1.03573e-05 4.42493e-06 4.90534e-06 6.8885e-06 9.44817e-06 1.30684e-05 1.05875e-05 4.69253e-06 5.21851e-06 7.20569e-06 9.73577e-06 1.43475e-05 1.00353e-05 5.41115e-06 6.46475e-06 9.31393e-06 1.32802e-05 8.27526e-06 5.6992e-06 3.62394e-06 3.69711e-06 1.07437e-05 1.12025e-05 8.61752e-06 6.34787e-06 4.26302e-06 4.22496e-06 9.69027e-06 1.19417e-05 9.05714e-06 6.60547e-06 4.74197e-06 4.55345e-06 1.00175e-05 1.23046e-05 9.35566e-06 6.88665e-06 4.9645e-06 4.72281e-06 1.0433e-05 1.27609e-05 9.71177e-06 7.28502e-06 5.32964e-06 5.60386e-06 1.00811e-05 1.40894e-05 1.31484e-05 9.42279e-06 6.60983e-06 3.71799e-06 5.83735e-06 8.35167e-06 1.14526e-05 1.08062e-05 3.84638e-06 4.48123e-06 6.59877e-06 8.83738e-06 1.22574e-05 1.00288e-05 4.38567e-06 4.86339e-06 6.80711e-06 9.28243e-06 1.26403e-05 1.02455e-05 4.66005e-06 5.07585e-06 7.0446e-06 9.56754e-06 1.30121e-05 1.06172e-05 4.88365e-06 5.47098e-06 7.46447e-06 9.89358e-06 1.4249e-05 1.02085e-05 5.60478e-06 6.55279e-06 9.47846e-06 1.32816e-05 8.39823e-06 5.88045e-06 3.65646e-06 3.80163e-06 1.08136e-05 1.13229e-05 8.78174e-06 6.51048e-06 4.38357e-06 4.33143e-06 9.90172e-06 1.20005e-05 9.13275e-06 6.69075e-06 4.807e-06 4.5871e-06 1.00168e-05 1.2293e-05 9.42464e-06 6.98104e-06 5.06848e-06 4.84147e-06 1.05274e-05 1.27475e-05 9.80593e-06 7.42389e-06 5.43991e-06 5.71605e-06 1.01514e-05 1.40682e-05 1.31812e-05 9.53737e-06 6.729e-06 3.84431e-06 6.06958e-06 8.51921e-06 1.14799e-05 1.10686e-05 3.9751e-06 4.52635e-06 6.71735e-06 8.92685e-06 1.2254e-05 1.00816e-05 4.40826e-06 4.94244e-06 6.86247e-06 9.35361e-06 1.26237e-05 1.02914e-05 4.75053e-06 5.17081e-06 7.15398e-06 9.65014e-06 1.29331e-05 1.05998e-05 4.91601e-06 5.39973e-06 7.44498e-06 9.9592e-06 1.33854e-05 1.11372e-05 5.22168e-06 5.78884e-06 7.8511e-06 1.02949e-05 1.46933e-05 1.06572e-05 5.96315e-06 7.01367e-06 9.9312e-06 1.36625e-05 8.83074e-06 6.21772e-06 3.99042e-06 4.07233e-06 1.13124e-05 1.17536e-05 9.19061e-06 6.96297e-06 4.67341e-06 4.57111e-06 1.04432e-05 1.24806e-05 9.55405e-06 6.98848e-06 5.004e-06 4.84123e-06 1.04384e-05 1.27375e-05 9.82371e-06 7.27962e-06 5.33061e-06 5.08149e-06 1.08825e-05 1.3088e-05 1.01289e-05 7.69837e-06 5.70693e-06 5.97554e-06 1.04596e-05 1.43533e-05 1.35006e-05 9.8595e-06 7.05489e-06 4.037e-06 6.29658e-06 8.86593e-06 1.17181e-05 1.13358e-05 4.12196e-06 4.69584e-06 6.91929e-06 9.17016e-06 1.24811e-05 1.0445e-05 4.57929e-06 5.07064e-06 7.05899e-06 9.57493e-06 1.27989e-05 1.04697e-05 4.90803e-06 5.40766e-06 7.36123e-06 9.89074e-06 1.32109e-05 1.09676e-05 5.21856e-06 5.84719e-06 7.82948e-06 1.027e-05 1.44684e-05 1.05877e-05 6.02061e-06 7.07245e-06 9.91078e-06 1.34989e-05 8.86051e-06 6.28196e-06 4.03346e-06 4.11111e-06 1.13424e-05 1.17275e-05 9.20718e-06 6.89691e-06 4.6741e-06 4.6209e-06 1.02871e-05 1.22988e-05 9.53499e-06 7.03976e-06 5.12114e-06 4.83355e-06 1.03892e-05 1.2544e-05 9.7798e-06 7.28928e-06 5.31465e-06 5.09106e-06 1.07859e-05 1.28716e-05 1.00656e-05 7.6916e-06 5.69037e-06 6.03839e-06 1.03709e-05 1.40501e-05 1.32681e-05 9.81546e-06 7.12137e-06 4.0889e-06 6.343e-06 8.84693e-06 1.16372e-05 1.13057e-05 4.16892e-06 4.74103e-06 6.96545e-06 9.18375e-06 1.23328e-05 1.0389e-05 4.62613e-06 5.12293e-06 7.0827e-06 9.54458e-06 1.26142e-05 1.03441e-05 4.90686e-06 5.42847e-06 7.4185e-06 9.85101e-06 1.29604e-05 1.08428e-05 5.19942e-06 5.61762e-06 7.6893e-06 1.01653e-05 1.33539e-05 1.1217e-05 5.3669e-06 5.95243e-06 8.05535e-06 1.04581e-05 1.45065e-05 1.0745e-05 6.19902e-06 7.15854e-06 1.00632e-05 1.36326e-05 9.04857e-06 6.37104e-06 4.09088e-06 4.24927e-06 1.13604e-05 1.18707e-05 9.44445e-06 7.13222e-06 4.87034e-06 4.79536e-06 1.05692e-05 1.24622e-05 9.79481e-06 7.27982e-06 5.26707e-06 5.14124e-06 1.06282e-05 1.27363e-05 1.0002e-05 7.55818e-06 5.56797e-06 5.33125e-06 1.10542e-05 1.31025e-05 1.03428e-05 7.9637e-06 5.94217e-06 6.23496e-06 1.06583e-05 1.4306e-05 1.3502e-05 1.00876e-05 7.3268e-06 4.23455e-06 6.50152e-06 9.06889e-06 1.19285e-05 1.14904e-05 4.31541e-06 4.90517e-06 7.16458e-06 9.45426e-06 1.25836e-05 1.06077e-05 4.86107e-06 5.41556e-06 7.39902e-06 9.86619e-06 1.29234e-05 1.08379e-05 5.14917e-06 5.57331e-06 7.61958e-06 1.01139e-05 1.32498e-05 1.11106e-05 5.38171e-06 5.97931e-06 8.00301e-06 1.04017e-05 1.43837e-05 1.0697e-05 6.21033e-06 7.28344e-06 1.00722e-05 1.35297e-05 9.08932e-06 6.47786e-06 4.23648e-06 4.28018e-06 1.13419e-05 1.19591e-05 9.53102e-06 7.17481e-06 4.88872e-06 4.93399e-06 1.06161e-05 1.24355e-05 9.81556e-06 7.33995e-06 5.37441e-06 5.10419e-06 1.06583e-05 1.26708e-05 1.00153e-05 7.59201e-06 5.58431e-06 5.43305e-06 1.1077e-05 1.30571e-05 1.0397e-05 8.05044e-06 6.04749e-06 6.349e-06 1.06971e-05 1.42663e-05 1.34758e-05 1.01293e-05 7.39545e-06 4.21248e-06 6.49987e-06 9.08287e-06 1.19697e-05 1.14276e-05 4.3669e-06 5.06176e-06 7.34261e-06 9.60512e-06 1.26718e-05 1.07902e-05 5.0478e-06 5.535e-06 7.55028e-06 1.00099e-05 1.30151e-05 1.08694e-05 5.32098e-06 5.79837e-06 7.83763e-06 1.03071e-05 1.33928e-05 1.13391e-05 5.57901e-06 6.15986e-06 8.26861e-06 1.06336e-05 1.45601e-05 1.09208e-05 6.42778e-06 7.43274e-06 1.02781e-05 1.37134e-05 9.18215e-06 6.53354e-06 4.29463e-06 4.39151e-06 1.13748e-05 1.20623e-05 9.66791e-06 7.34954e-06 5.08355e-06 5.07127e-06 1.07796e-05 1.25833e-05 1.00128e-05 7.57223e-06 5.56786e-06 5.40372e-06 1.10293e-05 1.29127e-05 1.02976e-05 7.94806e-06 5.95319e-06 6.26144e-06 1.05461e-05 1.40547e-05 1.33205e-05 1.00394e-05 7.35837e-06 4.25843e-06 6.53415e-06 9.07261e-06 1.1812e-05 1.13754e-05 4.34888e-06 5.02777e-06 7.31076e-06 9.5192e-06 1.24802e-05 1.07346e-05 5.04016e-06 5.46162e-06 7.46306e-06 9.88996e-06 1.27612e-05 1.07356e-05 5.25682e-06 5.74196e-06 7.74594e-06 1.01567e-05 1.31214e-05 1.11589e-05 5.591e-06 6.20989e-06 8.20682e-06 1.05195e-05 1.43094e-05 1.0853e-05 6.4947e-06 7.57262e-06 1.02757e-05 1.3493e-05 9.21374e-06 6.64043e-06 4.36964e-06 4.44785e-06 1.15975e-05 1.19671e-05 9.62177e-06 7.37726e-06 5.09847e-06 5.06637e-06 1.06382e-05 1.25024e-05 1.00141e-05 7.58944e-06 5.64191e-06 5.48944e-06 1.09308e-05 1.28395e-05 1.03821e-05 8.07297e-06 6.0906e-06 6.43592e-06 1.06125e-05 1.38791e-05 1.31952e-05 1.012e-05 7.47848e-06 4.35511e-06 6.61693e-06 9.13957e-06 1.18811e-05 1.14238e-05 4.50053e-06 5.15141e-06 7.37818e-06 9.61329e-06 1.24906e-05 1.07461e-05 5.06763e-06 5.60683e-06 7.62587e-06 1.00172e-05 1.28262e-05 1.08887e-05 5.4423e-06 5.85407e-06 7.8848e-06 1.02996e-05 1.31624e-05 1.11991e-05 5.69308e-06 6.33152e-06 8.34499e-06 1.06376e-05 1.43281e-05 1.09454e-05 6.61911e-06 7.60301e-06 1.03666e-05 1.35646e-05 9.39309e-06 6.79766e-06 4.43626e-06 4.62356e-06 1.16278e-05 1.21291e-05 9.82946e-06 7.51376e-06 5.22569e-06 5.14743e-06 1.10328e-05 1.26462e-05 1.01406e-05 7.69777e-06 5.65218e-06 5.55633e-06 1.09656e-05 1.29355e-05 1.04625e-05 8.20774e-06 6.24135e-06 6.62394e-06 1.07808e-05 1.40852e-05 1.34034e-05 1.02987e-05 7.68259e-06 4.51251e-06 6.8267e-06 9.36387e-06 1.2131e-05 1.15833e-05 4.61664e-06 5.26248e-06 7.58596e-06 9.84506e-06 1.27716e-05 1.10624e-05 5.33641e-06 5.88263e-06 7.90017e-06 1.03167e-05 1.31741e-05 1.12624e-05 5.70624e-06 6.29664e-06 8.31333e-06 1.06113e-05 1.42277e-05 1.08689e-05 6.61167e-06 7.64366e-06 1.0348e-05 1.35201e-05 9.38007e-06 6.81646e-06 4.49603e-06 4.60279e-06 1.15982e-05 1.20975e-05 9.81387e-06 7.56586e-06 5.24897e-06 5.32463e-06 1.09294e-05 1.26153e-05 1.02336e-05 7.86993e-06 5.88626e-06 5.74517e-06 1.1232e-05 1.30286e-05 1.05698e-05 8.35347e-06 6.34858e-06 6.73581e-06 1.08983e-05 1.41661e-05 1.35188e-05 1.04468e-05 7.84273e-06 4.69667e-06 7.05156e-06 9.54402e-06 1.21703e-05 1.1922e-05 4.74838e-06 5.41648e-06 7.78185e-06 9.93691e-06 1.29101e-05 1.11649e-05 5.48551e-06 5.97042e-06 8.03782e-06 1.0426e-05 1.33319e-05 1.13823e-05 5.87716e-06 6.46385e-06 8.49641e-06 1.07842e-05 1.44202e-05 1.10844e-05 6.86858e-06 7.93037e-06 1.05996e-05 1.37434e-05 9.67964e-06 7.09688e-06 4.69763e-06 4.90243e-06 1.18328e-05 1.24448e-05 1.01488e-05 7.86803e-06 5.50883e-06 5.60347e-06 1.14644e-05 1.30671e-05 1.06907e-05 8.38958e-06 6.3558e-06 6.78454e-06 1.09136e-05 1.41876e-05 1.3588e-05 1.04826e-05 7.87081e-06 4.72731e-06 7.11284e-06 9.60181e-06 1.24004e-05 1.18366e-05 4.91738e-06 5.51507e-06 7.84972e-06 1.01189e-05 1.30307e-05 1.14125e-05 5.52413e-06 6.09014e-06 8.16342e-06 1.05472e-05 1.34684e-05 1.15723e-05 6.02363e-06 6.64302e-06 8.66794e-06 1.09498e-05 1.46591e-05 1.12849e-05 6.93456e-06 7.98536e-06 1.07686e-05 1.39005e-05 9.7802e-06 7.22543e-06 4.82406e-06 5.03226e-06 1.18513e-05 1.2621e-05 1.03389e-05 8.04659e-06 5.68123e-06 5.82179e-06 1.16264e-05 1.32704e-05 1.08378e-05 8.54339e-06 6.47089e-06 6.90326e-06 1.11208e-05 1.42803e-05 1.37094e-05 1.06866e-05 8.06649e-06 4.82473e-06 7.22348e-06 9.7833e-06 1.25672e-05 1.18622e-05 5.0141e-06 5.7272e-06 8.10035e-06 1.03338e-05 1.33203e-05 1.16745e-05 5.86703e-06 6.5093e-06 8.59695e-06 1.08737e-05 1.44117e-05 1.11642e-05 6.91668e-06 8.05069e-06 1.06896e-05 1.37635e-05 9.77414e-06 7.23723e-06 4.8455e-06 5.04205e-06 1.19505e-05 1.26101e-05 1.03396e-05 8.09601e-06 5.69579e-06 5.77841e-06 1.16672e-05 1.32377e-05 1.08129e-05 8.52818e-06 6.40544e-06 6.85578e-06 1.10736e-05 1.42627e-05 1.36902e-05 1.0638e-05 7.96283e-06 4.80187e-06 7.2071e-06 9.73706e-06 1.24951e-05 1.17943e-05 5.01255e-06 5.73514e-06 8.09939e-06 1.02877e-05 1.32318e-05 1.1591e-05 5.89905e-06 6.52006e-06 8.57343e-06 1.08482e-05 1.43074e-05 1.11487e-05 7.03662e-06 8.14533e-06 1.07165e-05 1.36878e-05 9.7915e-06 7.23782e-06 4.85388e-06 5.10725e-06 1.18424e-05 1.25722e-05 1.04187e-05 8.17539e-06 5.8257e-06 5.92369e-06 1.1708e-05 1.33026e-05 1.09471e-05 8.64885e-06 6.56824e-06 7.10054e-06 1.12407e-05 1.43353e-05 1.37996e-05 1.08544e-05 8.28575e-06 5.05617e-06 7.48876e-06 1.00112e-05 1.27902e-05 1.19525e-05 5.26964e-06 6.03389e-06 8.44142e-06 1.05782e-05 1.40561e-05 1.11069e-05 6.61629e-06 7.72006e-06 1.06275e-05 1.35841e-05 9.65706e-06 7.06765e-06 4.70019e-06 5.01734e-06 1.16775e-05 1.23762e-05 1.02061e-05 8.02651e-06 5.66083e-06 5.74519e-06 1.15343e-05 1.30391e-05 1.06857e-05 8.44615e-06 6.42294e-06 7.00979e-06 1.09707e-05 1.41006e-05 1.35737e-05 1.06403e-05 8.23462e-06 5.05614e-06 7.3999e-06 9.84983e-06 1.26756e-05 1.17549e-05 5.34637e-06 6.17758e-06 8.55295e-06 1.05841e-05 1.40442e-05 1.12365e-05 6.81755e-06 7.93202e-06 1.0786e-05 1.35458e-05 9.7078e-06 7.20215e-06 4.78144e-06 5.10027e-06 1.18301e-05 1.2515e-05 1.03732e-05 8.17993e-06 5.80993e-06 5.9287e-06 1.16689e-05 1.32143e-05 1.09131e-05 8.66578e-06 6.57534e-06 7.19185e-06 1.12235e-05 1.4289e-05 1.37939e-05 1.0895e-05 8.4261e-06 5.16562e-06 7.60567e-06 1.00955e-05 1.28808e-05 1.20288e-05 5.45272e-06 6.21791e-06 8.65718e-06 1.07121e-05 1.42321e-05 1.13417e-05 6.82743e-06 7.93522e-06 1.08909e-05 1.37835e-05 9.88277e-06 7.31882e-06 4.91054e-06 5.35746e-06 1.17056e-05 1.26899e-05 1.05529e-05 8.44689e-06 6.17072e-06 6.92271e-06 1.1187e-05 1.402e-05 1.36083e-05 1.08498e-05 8.21986e-06 5.07481e-06 7.46763e-06 9.94625e-06 1.27321e-05 1.18693e-05 5.42474e-06 6.19654e-06 8.55523e-06 1.05945e-05 1.40778e-05 1.12409e-05 6.79587e-06 8.06672e-06 1.08304e-05 1.36559e-05 9.89674e-06 7.31101e-06 5.00634e-06 5.28979e-06 1.17549e-05 1.26706e-05 1.05517e-05 8.43308e-06 6.13322e-06 6.87564e-06 1.11774e-05 1.39871e-05 1.35676e-05 1.08214e-05 8.11414e-06 5.0385e-06 7.42615e-06 9.90478e-06 1.26927e-05 1.1817e-05 5.38345e-06 6.13902e-06 8.53464e-06 1.05489e-05 1.4043e-05 1.11931e-05 6.80746e-06 7.97061e-06 1.08023e-05 1.36315e-05 9.8222e-06 7.29473e-06 4.8953e-06 5.35001e-06 1.15965e-05 1.26148e-05 1.05221e-05 8.48839e-06 6.22796e-06 7.04643e-06 1.12179e-05 1.39997e-05 1.36121e-05 1.09083e-05 8.36856e-06 5.24508e-06 7.60249e-06 1.00496e-05 1.28444e-05 1.19903e-05 5.53962e-06 6.36397e-06 8.7602e-06 1.073e-05 1.42741e-05 1.14522e-05 7.0922e-06 8.36362e-06 1.11057e-05 1.38736e-05 1.02045e-05 7.64608e-06 5.21607e-06 5.68046e-06 1.20375e-05 1.30437e-05 1.09404e-05 8.90199e-06 6.55106e-06 7.36933e-06 1.17587e-05 1.45378e-05 1.41665e-05 1.15008e-05 8.7946e-06 5.69182e-06 8.31708e-06 1.0732e-05 1.41886e-05 1.19325e-05 6.58889e-06 8.01738e-06 1.14693e-05 1.388e-05 1.01748e-05 7.59369e-06 5.07931e-06 5.48223e-06 1.24479e-05 1.31267e-05 1.08455e-05 8.70842e-06 6.36915e-06 7.26146e-06 1.14227e-05 1.45047e-05 1.41012e-05 1.11595e-05 8.64589e-06 5.60465e-06 8.11912e-06 1.05366e-05 1.39697e-05 1.17048e-05 6.48181e-06 7.93837e-06 1.12923e-05 1.37388e-05 1.01521e-05 7.54499e-06 5.13309e-06 5.63043e-06 1.19348e-05 1.30765e-05 1.0937e-05 8.84854e-06 6.46699e-06 7.41692e-06 1.17775e-05 1.45507e-05 1.42055e-05 1.15252e-05 8.81387e-06 5.77233e-06 8.41236e-06 1.07771e-05 1.42766e-05 1.20359e-05 6.66158e-06 8.10511e-06 1.16243e-05 1.39968e-05 1.03449e-05 7.75263e-06 5.29369e-06 5.75327e-06 1.22693e-05 1.34348e-05 1.11513e-05 9.02698e-06 6.56495e-06 7.36892e-06 1.18987e-05 1.49233e-05 1.45382e-05 1.16231e-05 8.87805e-06 5.93603e-06 8.53292e-06 1.09438e-05 1.45648e-05 1.22843e-05 6.9881e-06 8.59539e-06 1.19559e-05 1.43608e-05 1.09561e-05 8.4696e-06 5.79481e-06 6.82882e-06 1.22269e-05 1.45896e-05 1.43805e-05 1.18451e-05 8.41772e-06 5.6595e-06 8.33915e-06 1.08979e-05 1.44884e-05 1.20562e-05 6.71238e-06 8.31204e-06 1.17243e-05 1.43166e-05 1.07411e-05 8.15351e-06 5.59027e-06 6.54992e-06 1.19027e-05 1.43843e-05 1.41864e-05 1.15191e-05 8.12708e-06 5.43452e-06 8.04065e-06 1.05823e-05 1.41953e-05 1.15994e-05 6.35073e-06 7.78038e-06 1.1392e-05 1.40675e-05 1.02717e-05 7.71952e-06 5.30193e-06 6.443e-06 1.13798e-05 1.38979e-05 1.37306e-05 1.10903e-05 8.06148e-06 5.47374e-06 7.98894e-06 1.03606e-05 1.38994e-05 1.15511e-05 6.5468e-06 8.13203e-06 1.12986e-05 1.37636e-05 1.04849e-05 8.08413e-06 5.53236e-06 6.60663e-06 1.1741e-05 1.40643e-05 1.38905e-05 1.14023e-05 8.16388e-06 5.52554e-06 8.12035e-06 1.05349e-05 1.41358e-05 1.1737e-05 6.61162e-06 8.20765e-06 1.14953e-05 1.40001e-05 1.06203e-05 8.21468e-06 5.59905e-06 6.65567e-06 1.18432e-05 1.43091e-05 1.41739e-05 1.16315e-05 8.14262e-06 5.63223e-06 8.11986e-06 1.05481e-05 1.42932e-05 1.18226e-05 6.89808e-06 8.64313e-06 1.16324e-05 1.41772e-05 1.10403e-05 8.76864e-06 6.16441e-06 7.63557e-06 1.24344e-05 1.48823e-05 1.50078e-05 1.29713e-05 9.85336e-06 7.77272e-06 1.19582e-05 1.44095e-05 1.08717e-05 8.06642e-06 5.38182e-06 6.77704e-06 1.19666e-05 1.46281e-05 1.46213e-05 1.18145e-05 8.58618e-06 6.05616e-06 8.70236e-06 1.11789e-05 1.51051e-05 1.25957e-05 7.37801e-06 9.44971e-06 1.29201e-05 1.514e-05 1.44993e-05 1.16966e-05 7.55611e-06 5.38087e-06 7.92833e-06 1.06837e-05 1.4662e-05 1.17769e-05 6.83939e-06 8.61963e-06 1.16675e-05 1.46612e-05 1.12999e-05 8.85229e-06 6.1884e-06 7.8305e-06 1.27064e-05 1.52826e-05 1.53836e-05 1.32246e-05 1.01134e-05 8.14605e-06 1.23394e-05 1.48516e-05 1.14448e-05 8.60557e-06 5.82739e-06 7.36674e-06 1.25763e-05 1.53288e-05 1.52937e-05 1.2953e-05 9.5677e-06 7.88856e-06 1.21597e-05 1.50748e-05 1.13298e-05 8.47325e-06 5.92624e-06 7.94576e-06 1.26224e-05 1.56357e-05 1.58062e-05 1.27666e-05 1.06435e-05 9.37657e-06 1.29889e-05 1.53892e-05 1.50951e-05 1.22277e-05 7.78367e-06 5.73387e-06 8.51517e-06 1.15032e-05 1.57139e-05 1.26295e-05 7.45773e-06 9.75632e-06 1.28736e-05 1.57978e-05 1.52969e-05 1.23968e-05 8.47367e-06 7.41991e-06 1.17867e-05 1.53572e-05 1.14842e-05 8.39183e-06 5.8942e-06 8.05764e-06 1.27806e-05 1.60822e-05 1.61492e-05 1.29368e-05 1.09321e-05 1.01143e-05 1.31259e-05 1.60261e-05 1.60396e-05 1.3229e-05 9.25321e-06 8.30395e-06 1.2141e-05 1.5613e-05 1.57399e-05 1.19403e-05 7.10916e-06 5.54219e-06 7.98604e-06 1.12228e-05 1.58578e-05 1.24719e-05 7.70864e-06 1.03414e-05 1.26833e-05 1.57648e-05 1.58305e-05 1.29183e-05 9.50518e-06 8.93583e-06 1.25719e-05 1.58721e-05 1.60209e-05 1.23961e-05 8.48842e-06 8.32594e-06 1.1831e-05 1.58017e-05 1.5965e-05 1.18744e-05 8.30099e-06 8.18667e-06 1.18223e-05 1.5938e-05 1.60321e-05 1.18077e-05 7.9696e-06 7.8343e-06 1.19488e-05 1.59276e-05 1.61055e-05 1.22449e-05 7.81164e-06 7.74986e-06 1.25326e-05 1.62142e-05 1.64098e-05 1.28312e-05 7.66166e-06 7.55946e-06 1.31459e-05 1.66762e-05 1.69207e-05 1.34977e-05 7.4476e-06 7.35198e-06 1.36874e-05 1.72971e-05 1.76355e-05 1.40952e-05 7.24345e-06 7.14168e-06 1.41025e-05 1.83271e-05 1.87233e-05 1.44581e-05 7.0381e-06 6.94746e-06 1.44502e-05 1.94214e-05 1.98398e-05 1.48083e-05 6.87738e-06 6.82114e-06 1.47967e-05 2.04915e-05 2.09174e-05 1.51767e-05 6.77448e-06 6.73356e-06 1.51652e-05 2.15151e-05 2.19317e-05 1.55777e-05 6.69913e-06 6.66706e-06 1.55672e-05 2.24497e-05 2.28597e-05 1.6015e-05 6.64122e-06 6.61553e-06 1.60034e-05 2.33163e-05 2.37216e-05 1.64833e-05 6.59709e-06 6.57541e-06 1.64688e-05 2.41288e-05 2.45327e-05 1.69709e-05 6.56575e-06 6.54619e-06 1.69508e-05 2.48999e-05 2.53022e-05 1.74592e-05 6.54517e-06 6.52754e-06 1.7428e-05 2.563e-05 2.60314e-05 1.79294e-05 6.53063e-06 6.51657e-06 1.78843e-05 2.63179e-05 2.67326e-05 1.83749e-05 6.52134e-06 6.50947e-06 1.83228e-05 2.69888e-05 2.73942e-05 1.879e-05 6.51557e-06 6.50551e-06 1.87214e-05 2.76026e-05 2.8007e-05 1.91693e-05 6.51254e-06 6.50361e-06 1.90706e-05 2.81434e-05 2.85854e-05 1.95031e-05 6.51126e-06 6.50292e-06 1.93884e-05 2.86687e-05 2.91191e-05 1.9799e-05 6.51097e-06 6.50315e-06 1.96652e-05 2.91593e-05 2.96177e-05 2.00571e-05 6.51154e-06 6.50413e-06 1.99065e-05 2.96203e-05 3.00858e-05 2.02814e-05 6.51271e-06 6.5056e-06 2.01133e-05 3.0056e-05 3.05298e-05 2.04729e-05 6.51428e-06 6.50749e-06 2.02931e-05 3.04718e-05 3.09529e-05 2.06398e-05 6.51621e-06 6.50974e-06 2.04479e-05 3.08773e-05 3.13602e-05 2.07832e-05 6.51849e-06 6.51238e-06 2.05843e-05 3.12684e-05 3.17533e-05 2.09105e-05 6.52111e-06 6.51526e-06 2.07022e-05 3.16438e-05 3.21288e-05 2.10201e-05 6.52402e-06 6.51842e-06 2.08065e-05 3.20026e-05 3.24837e-05 2.11178e-05 6.52718e-06 6.52177e-06 2.08949e-05 3.23381e-05 3.2811e-05 2.11996e-05 6.53047e-06 6.52519e-06 2.09717e-05 3.26574e-05 3.31233e-05 2.12723e-05 6.53375e-06 6.52855e-06 2.10352e-05 3.29583e-05 3.34213e-05 2.13339e-05 6.53697e-06 6.53185e-06 2.10909e-05 3.32465e-05 3.37056e-05 2.13876e-05 6.54008e-06 6.53503e-06 2.11351e-05 3.35191e-05 3.39763e-05 2.14301e-05 6.54307e-06 6.53809e-06 2.11736e-05 3.37803e-05 3.42337e-05 2.14673e-05 6.54593e-06 6.541e-06 2.1203e-05 3.40259e-05 3.44778e-05 2.14957e-05 6.54865e-06 6.54377e-06 2.1229e-05 3.42609e-05 3.47091e-05 2.15209e-05 6.55122e-06 6.54639e-06 2.12475e-05 3.44807e-05 3.49274e-05 2.15387e-05 6.55365e-06 6.54886e-06 2.12637e-05 3.46901e-05 3.51334e-05 2.15544e-05 6.55593e-06 6.55118e-06 2.12735e-05 3.48851e-05 3.53267e-05 2.15638e-05 6.55811e-06 6.55342e-06 2.12822e-05 3.50702e-05 3.55086e-05 2.15722e-05 6.56014e-06 6.55547e-06 2.12854e-05 3.52417e-05 3.56787e-05 2.15751e-05 6.56206e-06 6.55744e-06 2.12879e-05 3.54039e-05 3.58373e-05 2.15772e-05 6.56381e-06 6.55919e-06 2.12854e-05 3.55529e-05 3.59849e-05 2.15746e-05 6.56543e-06 6.56086e-06 2.1283e-05 3.56931e-05 3.61213e-05 2.15718e-05 6.56689e-06 6.5623e-06 2.1276e-05 3.58204e-05 3.62469e-05 2.15646e-05 6.56821e-06 6.56364e-06 2.12688e-05 3.59375e-05 3.63592e-05 2.15568e-05 6.56935e-06 6.56476e-06 2.12566e-05 3.60397e-05 3.64582e-05 2.15442e-05 6.57033e-06 6.56573e-06 2.1244e-05 3.61316e-05 3.65504e-05 2.15313e-05 6.57108e-06 6.56645e-06 2.12274e-05 3.62124e-05 3.66315e-05 2.15142e-05 6.57164e-06 6.56701e-06 2.12109e-05 3.62846e-05 3.67041e-05 2.14973e-05 6.57201e-06 6.56735e-06 2.11909e-05 3.63456e-05 3.67654e-05 2.14769e-05 6.57221e-06 6.56756e-06 2.11715e-05 3.63987e-05 3.68189e-05 2.1457e-05 6.57225e-06 6.56758e-06 2.1149e-05 3.64419e-05 3.68627e-05 2.14339e-05 6.57216e-06 6.56749e-06 2.11273e-05 3.6479e-05 3.6901e-05 2.14118e-05 6.57192e-06 6.56723e-06 2.1103e-05 3.65083e-05 3.69314e-05 2.13871e-05 6.57158e-06 6.56689e-06 2.10801e-05 3.65332e-05 3.6958e-05 2.13638e-05 6.57113e-06 6.56643e-06 2.10552e-05 3.65515e-05 3.69783e-05 2.13386e-05 6.5706e-06 6.56591e-06 2.10318e-05 3.65661e-05 3.69961e-05 2.1315e-05 6.56999e-06 6.5653e-06 2.1007e-05 3.6576e-05 3.70088e-05 2.12898e-05 6.56932e-06 6.56465e-06 2.0984e-05 3.6584e-05 3.70199e-05 2.12667e-05 6.5686e-06 6.56393e-06 2.09597e-05 3.65881e-05 3.70267e-05 2.12422e-05 6.56784e-06 6.5632e-06 2.09375e-05 3.65911e-05 3.70325e-05 2.12199e-05 6.56704e-06 6.56241e-06 2.09142e-05 3.65909e-05 3.70346e-05 2.11964e-05 6.56623e-06 6.56163e-06 2.08931e-05 3.65901e-05 3.7036e-05 2.11755e-05 6.5654e-06 6.56081e-06 2.0871e-05 3.65867e-05 3.70339e-05 2.11535e-05 6.56456e-06 6.56e-06 2.08509e-05 3.65823e-05 3.7032e-05 2.11338e-05 6.56371e-06 6.55917e-06 2.08299e-05 3.65761e-05 3.70272e-05 2.11129e-05 6.56286e-06 6.55834e-06 2.0811e-05 3.65694e-05 3.70232e-05 2.10944e-05 6.562e-06 6.55749e-06 2.07913e-05 3.65616e-05 3.70168e-05 2.10748e-05 6.56114e-06 6.55667e-06 2.07737e-05 3.6554e-05 3.70112e-05 2.10576e-05 6.56028e-06 6.55582e-06 2.07553e-05 3.65458e-05 3.70034e-05 2.10393e-05 6.55944e-06 6.55501e-06 2.0739e-05 3.65382e-05 3.69962e-05 2.10234e-05 6.5586e-06 6.5542e-06 2.0722e-05 3.65297e-05 3.6988e-05 2.10065e-05 6.55779e-06 6.55342e-06 2.07071e-05 3.65219e-05 3.69807e-05 2.0992e-05 6.55699e-06 6.55264e-06 2.06917e-05 3.65134e-05 3.69726e-05 2.09765e-05 6.55621e-06 6.55188e-06 2.0678e-05 3.65058e-05 3.69655e-05 2.09633e-05 6.55544e-06 6.55114e-06 2.0664e-05 3.64977e-05 3.69577e-05 2.09492e-05 6.55469e-06 6.55041e-06 2.06516e-05 3.64904e-05 3.69508e-05 2.09372e-05 6.55395e-06 6.5497e-06 2.06387e-05 3.64825e-05 3.69434e-05 2.09243e-05 6.55324e-06 6.54901e-06 2.06275e-05 3.64757e-05 3.6937e-05 2.09134e-05 6.55254e-06 6.54834e-06 2.06158e-05 3.64685e-05 3.69302e-05 2.09017e-05 6.55187e-06 6.54769e-06 2.06058e-05 3.64623e-05 3.69245e-05 2.0892e-05 6.55122e-06 6.54706e-06 2.05952e-05 3.64558e-05 3.69183e-05 2.08814e-05 6.5506e-06 6.54646e-06 2.05862e-05 3.64503e-05 3.69133e-05 2.08727e-05 6.55001e-06 6.54589e-06 2.05766e-05 3.64445e-05 3.69078e-05 2.0863e-05 6.54943e-06 6.54534e-06 2.05685e-05 3.64396e-05 3.69034e-05 2.08552e-05 6.54888e-06 6.5448e-06 2.05598e-05 3.64344e-05 3.68985e-05 2.08464e-05 6.54835e-06 6.54429e-06 2.05525e-05 3.64302e-05 3.68947e-05 2.08394e-05 6.54784e-06 6.5438e-06 2.05446e-05 3.64253e-05 3.68904e-05 2.08315e-05 6.54736e-06 6.54333e-06 2.05381e-05 3.64215e-05 3.68872e-05 2.08252e-05 6.5469e-06 6.54288e-06 2.05309e-05 3.64173e-05 3.68836e-05 2.08179e-05 6.54646e-06 6.54246e-06 2.0525e-05 3.64143e-05 3.68811e-05 2.08123e-05 6.54604e-06 6.54205e-06 2.05185e-05 3.64108e-05 3.68781e-05 2.08057e-05 6.54564e-06 6.54167e-06 2.05132e-05 3.64083e-05 3.68762e-05 2.08007e-05 6.54525e-06 6.5413e-06 2.05073e-05 3.64054e-05 3.68737e-05 2.07947e-05 6.54489e-06 6.54095e-06 2.05025e-05 3.64034e-05 3.68722e-05 2.07902e-05 6.54455e-06 6.54062e-06 2.04971e-05 3.6401e-05 3.68702e-05 2.07846e-05 6.54422e-06 6.5403e-06 2.04928e-05 3.63994e-05 3.68692e-05 2.07806e-05 6.5439e-06 6.54e-06 2.04879e-05 3.63974e-05 3.68675e-05 2.07756e-05 6.5436e-06 6.53971e-06 2.0484e-05 3.63963e-05 3.68668e-05 2.07719e-05 6.54332e-06 6.53944e-06 2.04795e-05 3.63947e-05 3.68655e-05 2.07673e-05 6.54305e-06 6.53918e-06 2.0476e-05 3.63938e-05 3.68652e-05 2.0764e-05 6.5428e-06 6.53893e-06 2.04719e-05 3.63926e-05 3.68642e-05 2.07597e-05 6.54255e-06 6.5387e-06 2.04687e-05 3.6392e-05 3.68641e-05 2.07568e-05 6.54232e-06 6.53848e-06 2.04649e-05 3.63911e-05 3.68634e-05 2.07528e-05 6.5421e-06 6.53827e-06 2.0462e-05 3.63908e-05 3.68635e-05 2.07502e-05 6.54189e-06 6.53806e-06 2.04585e-05 3.63901e-05 3.6863e-05 2.07465e-05 6.54169e-06 6.53787e-06 2.04559e-05 3.639e-05 3.68634e-05 2.07442e-05 6.5415e-06 6.53769e-06 2.04526e-05 3.63895e-05 3.68631e-05 2.07407e-05 6.54132e-06 6.53752e-06 2.04502e-05 3.63897e-05 3.68636e-05 2.07386e-05 6.54115e-06 6.53736e-06 2.04472e-05 3.63893e-05 3.68635e-05 2.07354e-05 6.54099e-06 6.5372e-06 2.0445e-05 3.63896e-05 3.68642e-05 2.07335e-05 6.54083e-06 6.53705e-06 2.04422e-05 3.63895e-05 3.68641e-05 2.07304e-05 6.54069e-06 6.53691e-06 2.04402e-05 3.63899e-05 3.6865e-05 2.07287e-05 6.54055e-06 6.53677e-06 2.04376e-05 3.63899e-05 3.68651e-05 2.07259e-05 6.54041e-06 6.53664e-06 2.04358e-05 3.63904e-05 3.6866e-05 2.07243e-05 6.54028e-06 6.53652e-06 2.04333e-05 3.63905e-05 3.68662e-05 2.07216e-05 6.54016e-06 6.5364e-06 2.04316e-05 3.63912e-05 3.68673e-05 2.07202e-05 6.54004e-06 6.53629e-06 2.04293e-05 3.63914e-05 3.68676e-05 2.07177e-05 6.53993e-06 6.53618e-06 2.04278e-05 3.63922e-05 3.68688e-05 2.07164e-05 6.53983e-06 6.53608e-06 2.04256e-05 3.63926e-05 3.68693e-05 2.07141e-05 6.53972e-06 6.53599e-06 2.04242e-05 3.63935e-05 3.68705e-05 2.07129e-05 6.53963e-06 6.5359e-06 2.04222e-05 3.6394e-05 3.68711e-05 2.07107e-05 6.53954e-06 6.53581e-06 2.0421e-05 3.6395e-05 3.68725e-05 2.07097e-05 6.53945e-06 6.53573e-06 2.04191e-05 3.63955e-05 3.68731e-05 2.07076e-05 6.53937e-06 6.53565e-06 2.04179e-05 3.63966e-05 3.68745e-05 2.07067e-05 6.53929e-06 6.53558e-06 2.04161e-05 3.63972e-05 3.68752e-05 2.07047e-05 6.53922e-06 6.5355e-06 2.04151e-05 3.63984e-05 3.68767e-05 2.07039e-05 6.53915e-06 6.53544e-06 2.04134e-05 3.63991e-05 3.68774e-05 2.0702e-05 6.53908e-06 6.53537e-06 2.04124e-05 3.64002e-05 3.68788e-05 2.07012e-05 6.53901e-06 6.5353e-06 2.04108e-05 3.64008e-05 3.68795e-05 2.06994e-05 6.53894e-06 6.53524e-06 2.04099e-05 3.64021e-05 3.68811e-05 2.06988e-05 6.53888e-06 6.53518e-06 2.04084e-05 3.64029e-05 3.6882e-05 2.06971e-05 6.53882e-06 6.53513e-06 2.04076e-05 3.64041e-05 3.68834e-05 2.06965e-05 6.53877e-06 6.53507e-06 2.04061e-05 3.64048e-05 3.6884e-05 2.06948e-05 6.53871e-06 6.53502e-06 2.04053e-05 3.64059e-05 3.68855e-05 2.06943e-05 6.53866e-06 6.53497e-06 2.0404e-05 3.64067e-05 3.68864e-05 2.06927e-05 6.5386e-06 6.53491e-06 2.04033e-05 3.6408e-05 3.6888e-05 2.06922e-05 6.53855e-06 6.53487e-06 2.04019e-05 3.64088e-05 3.68887e-05 2.06906e-05 6.5385e-06 6.53482e-06 2.04012e-05 3.64098e-05 3.68899e-05 2.06902e-05 6.53845e-06 6.53477e-06 2.03999e-05 3.64103e-05 3.68906e-05 2.06887e-05 6.5384e-06 6.53472e-06 2.03993e-05 3.64115e-05 3.68921e-05 2.06883e-05 6.53835e-06 6.53467e-06 2.0398e-05 3.64123e-05 3.68929e-05 2.06868e-05 6.5383e-06 6.53462e-06 2.03975e-05 3.64136e-05 3.68944e-05 2.06865e-05 6.53825e-06 6.53458e-06 2.03963e-05 3.64143e-05 3.68949e-05 2.06851e-05 6.53821e-06 6.53453e-06 2.03957e-05 3.64151e-05 3.6896e-05 2.06847e-05 6.53816e-06 6.53449e-06 2.03945e-05 3.64156e-05 3.68966e-05 2.06833e-05 6.53811e-06 6.53443e-06 2.0394e-05 3.64168e-05 3.68981e-05 2.0683e-05 6.53806e-06 6.53438e-06 2.03928e-05 3.64175e-05 3.68988e-05 2.06816e-05 6.538e-06 6.53433e-06 2.03922e-05 3.64185e-05 3.68998e-05 2.06812e-05 6.53795e-06 6.53428e-06 2.0391e-05 3.64187e-05 3.69e-05 2.06798e-05 6.5379e-06 6.53423e-06 2.03905e-05 3.64194e-05 3.69011e-05 2.06796e-05 6.53785e-06 6.53418e-06 2.03894e-05 3.642e-05 3.69018e-05 2.06783e-05 6.5378e-06 6.53413e-06 2.0389e-05 3.64212e-05 3.69032e-05 2.06781e-05 6.53775e-06 6.53408e-06 2.03879e-05 3.64217e-05 3.69034e-05 2.06767e-05 6.5377e-06 6.53403e-06 2.03874e-05 3.64222e-05 3.69041e-05 2.06765e-05 6.53765e-06 6.53399e-06 2.03863e-05 3.64223e-05 3.69042e-05 2.06753e-05 6.5376e-06 6.53394e-06 2.0386e-05 3.64232e-05 3.69056e-05 2.06752e-05 6.53756e-06 6.5339e-06 2.03851e-05 3.6424e-05 3.69065e-05 2.0674e-05 6.53751e-06 6.53385e-06 2.03847e-05 3.64252e-05 3.69076e-05 2.06738e-05 6.53746e-06 6.53381e-06 2.03837e-05 3.64253e-05 3.69074e-05 2.06726e-05 6.53742e-06 6.53376e-06 2.03833e-05 3.64255e-05 3.69079e-05 2.06725e-05 6.53738e-06 6.53372e-06 2.03824e-05 3.64257e-05 3.69085e-05 2.06714e-05 6.53734e-06 6.53368e-06 2.03822e-05 3.6427e-05 3.69101e-05 2.06713e-05 6.5373e-06 6.53364e-06 2.03812e-05 3.64279e-05 3.69108e-05 2.06701e-05 6.53725e-06 6.5336e-06 2.03809e-05 3.64286e-05 3.69112e-05 2.067e-05 6.53721e-06 6.53356e-06 2.03799e-05 3.64281e-05 3.69106e-05 2.06688e-05 6.53717e-06 6.53352e-06 2.03796e-05 3.64283e-05 3.69114e-05 2.06688e-05 6.53713e-06 6.53348e-06 2.03787e-05 3.64289e-05 3.69125e-05 2.06677e-05 6.53709e-06 6.53344e-06 2.03785e-05 3.64306e-05 3.69142e-05 2.06677e-05 6.53705e-06 6.5334e-06 2.03775e-05 3.64311e-05 3.6914e-05 2.06664e-05 6.53701e-06 6.53336e-06 2.03772e-05 3.64309e-05 3.69136e-05 2.06663e-05 6.53697e-06 6.53333e-06 2.03762e-05 3.643e-05 3.69132e-05 2.06652e-05 6.53694e-06 6.5333e-06 2.0376e-05 3.64308e-05 3.69148e-05 2.06653e-05 6.53691e-06 6.53327e-06 2.03753e-05 3.64322e-05 3.69163e-05 2.06642e-05 6.53688e-06 6.53324e-06 2.0375e-05 3.64337e-05 3.69173e-05 2.06642e-05 6.53685e-06 6.53322e-06 2.03741e-05 3.64332e-05 3.69161e-05 2.0663e-05 6.53683e-06 6.5332e-06 2.03738e-05 3.64325e-05 3.69159e-05 2.0663e-05 6.53682e-06 6.5332e-06 2.03731e-05 3.64324e-05 3.69167e-05 2.06622e-05 6.53682e-06 6.5332e-06 2.03732e-05 3.64345e-05 3.69194e-05 2.06624e-05 6.53683e-06 6.53322e-06 2.03725e-05 3.64364e-05 3.69207e-05 2.06615e-05 6.53684e-06 6.53324e-06 2.03724e-05 3.64372e-05 3.69208e-05 2.06616e-05 6.53687e-06 6.53328e-06 2.03717e-05 3.64362e-05 3.69197e-05 2.06607e-05 6.53693e-06 6.53335e-06 2.03718e-05 3.64363e-05 3.69211e-05 2.06611e-05 6.53701e-06 6.53344e-06 2.03714e-05 3.64382e-05 3.69239e-05 2.06605e-05 6.53711e-06 6.53355e-06 2.03717e-05 3.64415e-05 3.69269e-05 2.06609e-05 6.53722e-06 6.53367e-06 2.03711e-05 3.64428e-05 3.69269e-05 2.06601e-05 6.53736e-06 6.53383e-06 2.03712e-05 3.64425e-05 3.69267e-05 2.06604e-05 6.53753e-06 6.53402e-06 2.03707e-05 3.64425e-05 3.69279e-05 2.06599e-05 6.53773e-06 6.53423e-06 2.03712e-05 3.64454e-05 3.69321e-05 2.06605e-05 6.53796e-06 6.53448e-06 2.03709e-05 3.6449e-05 3.69349e-05 2.06599e-05 6.53821e-06 6.53474e-06 2.0371e-05 3.64508e-05 3.69355e-05 2.06602e-05 6.53849e-06 6.53504e-06 2.03704e-05 3.645e-05 3.69347e-05 2.06594e-05 6.53881e-06 6.53538e-06 2.03706e-05 3.64508e-05 3.69373e-05 2.066e-05 6.53916e-06 6.53575e-06 2.03704e-05 3.64541e-05 3.69415e-05 2.06594e-05 6.53953e-06 6.53613e-06 2.03705e-05 3.64584e-05 3.69447e-05 2.06596e-05 6.53992e-06 6.53654e-06 2.03696e-05 3.64588e-05 3.69431e-05 2.06584e-05 6.54034e-06 6.53697e-06 2.03693e-05 3.64569e-05 3.6942e-05 2.06584e-05 6.54079e-06 6.53744e-06 2.03689e-05 3.64571e-05 3.69446e-05 2.06581e-05 6.54128e-06 6.53796e-06 2.03697e-05 3.64624e-05 3.69358e-05 2.06495e-05 6.54181e-06 6.53852e-06 2.03802e-05 3.64983e-05 3.69541e-05 2.06582e-05 6.54245e-06 6.53928e-06 2.03772e-05 3.65006e-05 3.69862e-05 2.06653e-05 6.54359e-06 6.54027e-06 2.03702e-05 3.65119e-05 3.70766e-05 2.07224e-05 6.56986e-06 6.59151e-06 2.04721e-05 3.6593e-05 3.77412e-05 2.10717e-05 6.68696e-06 6.87787e-06 2.12457e-05 3.80344e-05 3.92036e-05 2.18948e-05 7.23953e-06 7.99703e-06 2.38274e-05 4.34019e-05 4.6355e-05 2.56095e-05 8.88879e-06 9.72962e-06 2.81956e-05 5.06183e-05 9.1372e-05 0.00015418 0.00021291 0.000296455 0.000514517 0.000654911 0.000718768 0.00107901 0.0015437 0.00199245 0.00243364 0.0029495 0.00351991 0.0041638 0.00489331 0.00574365 0.00675173 0.00796703 0.00944191 0.0112307 0.013386 0.0159564 0.0189851 0.0225091 0.0265587 0.0311576 0.0363229 0.042065 0.0483878 0.0552884 0.0627569 0.0707766 0.0793233 0.0883655 0.0978645 0.107773 0.118039 0.128598 0.139384 0.150321 0.161327 0.172316 0.183196 0.193873 0.204248 0.214224 0.223703 0.232594 0.240803 0.248249 0.254807 0.260418 0.264909 0.268304 0.27059 0.27195 0.27257 0.27326 0.274648 0.276778 0.279653 0.283133 0.287172 0.291616 0.296457 0.301641 0.30718 0.313073 0.319335 0.325978 0.333021 0.34049 0.348415 0.356833 0.36579 0.37534 0.385547 0.396488 0.408257 0.420965 0.434754 0.449796 0.46631 0.484862 0.509238 0.546075 0.600752 0.67764 0.781084 0.916491 1.09146 1.31696 1.6086 1.98829 2.48649 3.14549 4.02401 5.20351 6.79619 8.95346 11.8715 15.7846 20.931 27.468 35.3319 44.0952 52.9558 60.9724 67.4459 72.1567 75.309 77.306 78.5513 79.3545 79.9179 80.3594 80.7416 81.0952 81.4345 81.766 82.093 82.4177 82.7416 83.0661 83.3928 83.7229 84.0579 84.399 84.7476 85.1051 85.4727 85.8519 86.2441 86.6508 87.0733 87.5131 87.9719 88.4512 88.9525 89.4777 90.0283 90.6061 91.213 91.8508 92.5214 93.2269 93.9691 94.7502 95.5723 96.4375 97.3481 98.3063 99.3144 100.375 101.49 102.662 103.893 105.186 106.544 107.968 109.462 111.027 112.667 114.384 116.18 118.058 120.021 122.071 124.21 126.442 128.768 131.191 133.714 136.339 139.068 141.904 144.849 147.906 151.077 154.364 157.77 161.297 164.947 168.723 172.626 176.659 180.823 185.122 189.557 194.129 198.842 203.696 208.695 213.839 219.13 224.57 230.162 235.905 241.803 247.856 254.066 260.434 266.962 273.651 280.502 287.515 294.693 302.035 309.543 317.218 325.06 333.069 341.247 349.593 358.108 366.792 375.645 384.667 393.857 403.217 412.744 422.44 432.302 442.331 452.526 462.885 473.408 484.094 494.941 505.948 517.114 528.436 539.913 551.544 563.325 575.256 587.334 599.556 611.921 624.425 637.067 649.842 662.749 675.784 688.944 702.227 715.628 729.145 742.774 756.511 770.353 784.296 798.336 812.469 826.691 840.998 855.387 869.852 884.39 898.996 913.665 928.394 943.178 958.011 972.891 987.811 1002.77 1017.76 1032.77 1047.81 1062.86 1077.93 1093 1108.08 1123.16 1138.23 1153.28 1168.33 1183.35 1198.34 1213.3 1228.23 1243.12 1257.97 1272.76 1287.5 1302.19 1316.81 1331.36 1345.84 1360.25 1374.58 1388.82 1402.97 1417.03 1431 1444.86 1458.62 1472.27 1485.81 1499.24 1512.54 1525.72 1538.78 1551.71 1564.5 1577.16 1589.68 1602.06 1614.29 1626.38 1638.31 1650.1 1661.72 1673.19 1684.49 1695.64 1706.61 1717.42 1728.06 1738.52 1748.81 1758.93 1768.86 1778.61 1788.19 1797.57 1806.77 1815.78 1824.6 1833.24 1841.67 1849.92 1857.96 1865.81 1873.46 1880.91 1888.16 1895.2 1902.04 1908.68 1915.1 1921.32 1927.32 1933.11 1938.69 1944.05 1949.19 1954.1 1958.79 1963.24 1967.46 1971.44 1975.16 1978.62 1981.8 1984.69 1987.25 1989.47 1991.36 1992.93 1994.24 1995.31 1996.2 1996.92 1997.55 1998.05 1998.49 1998.85 1999.16 1999.41 1999.6 1999.64 1999.7 1999.72 1999.72 1999.71 1999.67 1999.63 1999.53 1999.29 1998.83 1998.12 1997.19 1996.14 1995.09 1994.1 1993.21 1992.41 1991.68 1991 1990.37 1989.76 1989.18 1988.61 1988.06 1987.53 1987.01 1986.51 1986.03 1985.55 1985.09 1984.65 1984.21 1983.79 1983.37 1982.96 1982.56 1982.17 1981.78 1981.4 1981.03 1980.66 1980.3 1979.94 1979.59 1979.24 1978.9 1978.56 1978.23 1977.9 1977.58 1977.27 1976.96 1976.65 1976.35 1976.06 1975.78 1975.5 1975.22 1974.96 1974.7 1974.44 1974.2 1973.96 1973.73 1973.51 1973.3 1973.09 1972.89 1972.71 1972.53 1972.36 1972.2 1972.04 1971.9 1971.77 1971.65 1971.54 1971.43 1971.34 1971.26 1971.19 1971.13 1971.08 1971.04 1971.02 1971 1970.99 1971 1971.01 1971.03 1971.05 1971.07 1971.09 1971.09 1971.07 1970.99 1970.83 1970.55 1970.07 1969.28 1968.04 1966.12 1963.17 1958.71 1952.02 1942.08 1927.45 1906.13 1875.49 1832.15 1772.11 1691.2 1585.91 1454.75 1299.75 1127.34 947.719 772.68 612.625 474.371 360.542 270.34 200.913 148.594 109.741 81.1607 60.249 44.9754 33.8033 25.5925 19.5099 14.9553 11.5057 8.87276 6.87052 5.38706 4.35617 3.75083 3.58226 3.88078 4.69771 6.01563 7.38808 6.50044 3.67039 1.71072 0.747898 0.320592 0.132645 0.0495051 0.0142903 0.00291745 0.000927129 0.000741948 0.000748716 0.000643883 0.000655954 0.000586499 0.000600074 0.000546815 0.00056131 0.000517085 0.000531798 0.000493541 0.000508137 0.000474068 0.000488429 0.000457476 0.000471596 0.000443101 0.00045697 0.000430453 0.000444065 0.000419181 0.000432537 0.000409029 0.000422137 0.00039981 0.000412699 0.000391418 0.000404112 0.000383748 0.000396255 0.000376697 0.000389014 0.000370161 0.000382297 0.000364076 0.000376039 0.000358391 0.000370188 0.00035302 0.000364685 0.000347954 0.000359503 0.000343181 0.000354618 0.000338674 0.000350002 0.000334408 0.000345634 0.000330369 0.000341505 0.000326548 0.0003376 0.00032293 0.000333896 0.000319492 0.000330373 0.000316217 0.000327013 0.000313087 0.000323796 0.000310086 0.000320707 0.000307199 0.000317732 0.000304415 0.000314861 0.000301724 0.000312083 0.000299118 0.000309391 0.00029659 0.000306777 0.000294133 0.000304235 0.000291742 0.00030176 0.000289412 0.000299347 0.000287139 0.000296991 0.000284918 0.000294688 0.000282745 0.000292435 0.000280618 0.000290228 0.000278533 0.000288063 0.000276487 0.000285939 0.000274478 0.000283851 0.000272502 0.000281798 0.000270558 0.000279777 0.000268644 0.000277786 0.000266758 0.000275825 0.0002649 0.000273891 0.000263066 0.000271982 0.000261256 0.000270097 0.000259467 0.000268234 0.000257699 0.000266391 0.00025595 0.000264567 0.000254217 0.00026276 0.000252502 0.00026097 0.000250801 0.000259196 0.000249114 0.000257435 0.000247441 0.000255688 0.00024578 0.000253954 0.000244131 0.000252232 0.000242494 0.000250521 0.000240868 0.000248823 0.000239254 0.000247136 0.000237651 0.000245462 0.000236061 0.000243801 0.000234483 0.000242153 0.00023292 0.000240521 0.000231371 0.000238904 0.000229839 0.000237306 0.000228326 0.000235728 0.000226833 0.000234172 0.000225364 0.000232643 0.000223921 0.000231143 0.000222509 0.000229676 0.000221132 0.000228248 0.000219794 0.000226865 0.000218503 0.000225532 0.000217263 0.000224257 0.000216084 0.000223051 0.000214979 0.000221927 0.000213958 0.000220897 0.000213033 0.00021997 0.000212209 0.000219153 0.000211496 0.000218455 0.0002109 0.000217884 0.00021043 0.000217447 0.000210093 0.000217154 0.000209897 0.00021701 0.000209847 0.000217023 0.000209949 0.000217196 0.000210205 0.000217531 0.000210618 0.000218031 0.000211189 0.000218695 0.000211915 0.000219518 0.000212787 0.000220489 0.000213794 0.000221596 0.000214925 0.000222825 0.000216162 0.000224161 0.000217493 0.00022559 0.000218904 0.000227093 0.000220373 0.00022865 0.000221885 0.000230243 0.000223419 0.000231851 0.000224958 0.000233463 0.000226495 0.000235064 0.000228011 0.000236632 0.000229481 0.000238146 0.000230887 0.000239591 0.000232223 0.00024096 0.000233481 0.000242244 0.000234648 0.00024343 0.000235715 0.000244508 0.000236675 0.000245475 0.000237528 0.000246332 0.000238274 0.00024708 0.000238917 0.00024772 0.000239459 0.000248258 0.000239905 0.000248697 0.00024026 0.000249044 0.000240531 0.000249306 0.000240725 0.000249489 0.000240848 0.000249602 0.00024091 0.000249653 0.000240917 0.000249649 0.000240876 0.000249598 0.000240794 0.000249505 0.000240678 0.000249379 0.000240533 0.000249223 0.000240364 0.000249044 0.000240175 0.000248844 0.000239969 0.000248627 0.000239748 0.000248394 0.000239515 0.000248148 0.00023927 0.00024789 0.000239014 0.000247619 0.000238747 0.000247338 0.000238471 0.000247046 0.000238185 0.000246744 0.00023789 0.000246431 0.000237585 0.000246108 0.000237271 0.000245776 0.000236947 0.000245434 0.000236616 0.000245084 0.000236277 0.000244727 0.000235933 0.000244365 0.000235585 0.000244001 0.000235238 0.000243641 0.000234902 0.000243112 0.000234086 0.000243456 0.000232872 0.000245302 0.000234296 0.000254664 0.000264715 0.000270561 0.000272081 0.000545539 0.000534755 0.000524631 0.000893464 0.000888505 0.00088935 0.00114444 0.0011195 0.001083 0.000949045 0.000499531 0.000453969 0.000513501 0.000956049 0.000448191 0.000509494 0.000939086 0.00044958 0.000509755 0.000944163 0.000450216 0.000510979 0.000945702 0.000451132 0.000512017 0.000947625 0.00045196 0.000512993 0.000949806 0.000452778 0.000513944 0.000951859 0.000453564 0.000514867 0.000953796 0.000454324 0.000515754 0.000955581 0.000455056 0.000516601 0.000957205 0.000455753 0.0005174 0.000958647 0.000456411 0.000518147 0.000959893 0.000457027 0.000518835 0.000960926 0.000457594 0.000519458 0.00096173 0.000458107 0.000520008 0.000962289 0.00045856 0.000520476 0.000962545 0.000458947 0.000520855 0.000962461 0.000459265 0.000521137 0.000962098 0.000459501 0.000521311 0.000961369 0.000459651 0.000521368 0.000960235 0.000459716 0.000521306 0.00095876 0.000459679 0.000521111 0.00095688 0.000459537 0.000520773 0.000954607 0.000459276 0.000520279 0.000951912 0.000458888 0.000519617 0.000948793 0.000458361 0.000518777 0.000945245 0.000457683 0.000517745 0.00094125 0.000456845 0.000516511 0.000936804 0.000455836 0.000515064 0.000931919 0.000454646 0.000513396 0.000926584 0.000453267 0.000511499 0.000920816 0.000451691 0.000509368 0.000914618 0.000449913 0.000506999 0.000908015 0.000447929 0.000504391 0.000901019 0.000445738 0.000501547 0.000893661 0.000443341 0.000498474 0.000885968 0.000440744 0.000495181 0.000877979 0.000437957 0.000491684 0.000869723 0.000434995 0.000488003 0.000861257 0.000431874 0.000484161 0.000852645 0.000428608 0.000480171 0.00084384 0.000425206 0.000476068 0.000834979 0.000421688 0.000471899 0.000826128 0.000418117 0.000467704 0.000817355 0.000414528 0.000463521 0.000808724 0.000410956 0.0004594 0.000800294 0.000407458 0.000455415 0.000792162 0.000404112 0.000451581 0.000784466 0.000400902 0.000447932 0.00077728 0.000397846 0.000444498 0.000770641 0.000394978 0.000441326 0.00076469 0.000392338 0.000438464 0.000759624 0.000389942 0.000435911 0.0007553 0.00038781 0.000433688 0.000751745 0.000385958 0.000431813 0.000748974 0.000384402 0.000430301 0.000747008 0.000383153 0.00042916 0.000745837 0.00038222 0.000428394 0.000745461 0.000381605 0.000428002 0.000745859 0.000381305 0.000427975 0.000747013 0.000381314 0.000428302 0.00074889 0.000381621 0.000428967 0.000751449 0.000382212 0.000429954 0.000754649 0.000383074 0.000431242 0.000758462 0.000384188 0.000432811 0.000762834 0.000385536 0.000434636 0.000767717 0.0003871 0.000436693 0.000773073 0.000388857 0.00043896 0.00077876 0.000390796 0.000441419 0.000784734 0.000392904 0.000444058 0.000791033 0.000395168 0.000446864 0.000797618 0.000397579 0.000449833 0.000804451 0.00040014 0.000452976 0.000811498 0.000402869 0.000456261 0.000818748 0.000405731 0.000459635 0.000826189 0.000408671 0.000463089 0.0008338 0.000411678 0.00046661 0.000841564 0.00041474 0.000470188 0.000849464 0.000417852 0.000473816 0.000857487 0.000421005 0.000477486 0.000865622 0.000424194 0.000481192 0.00087386 0.000427413 0.000484929 0.000882196 0.000430658 0.000488694 0.000890623 0.000433927 0.000492483 0.00089914 0.000437217 0.000496294 0.000907744 0.000440525 0.000500126 0.000916435 0.000443851 0.000503977 0.000925216 0.000447193 0.000507847 0.000934088 0.000450552 0.000511736 0.000943054 0.000453927 0.000515646 0.00095212 0.000457318 0.000519575 0.00096129 0.000460728 0.000523527 0.000970572 0.000464155 0.000527502 0.000979972 0.000467604 0.000531503 0.000989499 0.000471074 0.000535532 0.000999163 0.000474569 0.000539593 0.00100897 0.000478091 0.000543688 0.00101894 0.000481642 0.000547822 0.00102908 0.000485226 0.000551996 0.00103941 0.000488845 0.000556217 0.00104993 0.000492504 0.000560488 0.00106066 0.000496206 0.000564813 0.00107163 0.000499954 0.000569197 0.00108283 0.000503753 0.000573645 0.00109431 0.000507607 0.000578163 0.00110607 0.000511519 0.000582754 0.00111813 0.000515495 0.000587425 0.00113052 0.000519538 0.000592182 0.00114326 0.000523655 0.000597031 0.00115638 0.00052785 0.00060198 0.0011699 0.000532131 0.000607037 0.00118387 0.000536503 0.00061221 0.00119831 0.000540975 0.000617508 0.00121327 0.000545554 0.000622942 0.00122877 0.000550249 0.000628521 0.00124487 0.000555069 0.000634258 0.00126162 0.000560023 0.000640166 0.00127906 0.000565124 0.000646257 0.00129726 0.000570383 0.000652549 0.00131627 0.000575814 0.000659057 0.00133618 0.000581433 0.000665803 0.00135706 0.000587257 0.000672807 0.00137898 0.000593307 0.000680096 0.00140205 0.000599606 0.000687698 0.00142637 0.00060618 0.000695649 0.00145206 0.000613064 0.000703991 0.00147923 0.000620297 0.000712774 0.00150801 0.000627932 0.000722056 0.00153856 0.000636045 0.000731902 0.001571 0.000644737 0.000742494 0.00160544 0.000654148 0.000753997 0.00164195 0.000664412 0.000766492 0.00168057 0.000675435 0.000779903 0.00172215 0.00068722 0.000794281 0.00176737 0.000699855 0.000809752 0.00181677 0.000713451 0.000826471 0.00187098 0.000728149 0.000844637 0.00193078 0.000744129 0.000864474 0.00199707 0.000761575 0.000886172 0.00207092 0.000780646 0.00090981 0.00215367 0.000801635 0.000936049 0.00224727 0.000824738 0.000965533 0.002354 0.000850599 0.000998773 0.00247681 0.000879616 0.00103633 0.00261986 0.000912488 0.00107921 0.00278819 0.000950213 0.00112891 0.0029884 0.000994393 0.00118797 0.00323325 0.0010477 0.00126075 0.00355738 0.00111312 0.00135135 0.00398323 0.00119543 0.00146786 0.00456384 0.00130326 0.00162526 0.0054246 0.00145025 0.00185022 0.00673747 0.00167133 0.00221771 0.00910844 0.00205876 0.030843 0.0218452 0.0168726 0.0137351 0.0116048 0.0100599 0.00890298 0.00801323 0.00730668 0.00673127 0.00625375 0.00585138 0.00550796 0.00521161 0.00495337 0.00472634 0.00452518 0.00434573 0.00418464 0.00403924 0.00390732 0.00378706 0.00367695 0.00357545 0.00348144 0.00339405 0.00331256 0.00323637 0.00316496 0.00309787 0.00303471 0.00297512 0.00291878 0.00286541 0.00281477 0.00276661 0.00272074 0.00267697 0.00263515 0.0025951 0.00255671 0.00251984 0.00248438 0.00245022 0.00241726 0.00238543 0.00235463 0.00232479 0.00229585 0.00226774 0.00224041 0.00221379 0.00218784 0.00216252 0.00213777 0.00211356 0.00208985 0.00206661 0.00204379 0.00202137 0.00199933 0.00197763 0.00195625 0.00193518 0.00191439 0.00189386 0.00187359 0.00185357 0.00183377 0.00181421 0.00179486 0.00177574 0.00175684 0.00173817 0.00171973 0.00170156 0.00168365 0.00166603 0.00164874 0.00163181 0.00161527 0.00159917 0.00158356 0.00156848 0.00155401 0.00154019 0.00152714 0.00151482 0.00150347 0.00149293 0.00148368 0.00147556 0.00146831 0.00146242 0.00145803 0.00145501 0.00145342 0.00145331 0.00145467 0.00145752 0.00146181 0.00146752 0.00147458 0.0014829 0.00149235 0.00150287 0.00151432 0.00152655 0.00153947 0.00155298 0.00156696 0.00158129 0.00159585 0.00161056 0.00162524 0.00163997 0.00165442 0.00166859 0.00168246 0.00169592 0.00170889 0.00172131 0.00173314 0.00174431 0.0017548 0.00176458 0.00177366 0.00178191 0.00178946 0.00179631 0.00180237 0.00180769 0.00181229 0.0018162 0.00181943 0.00182202 0.00182398 0.00182535 0.00182615 0.00182643 0.00182618 0.00182548 0.00182431 0.00182279 0.0018208 0.00181862 0.00181587 0.00181329 0.0018097 0.00180724 0.00180352 0.00180216 0.00180214 0.00184088 0.00166428 0.00164351 0.00163074 0.00201505 0.00200739 0.00199225 0.00245483 0.00243916 0.00242822 0.00278565 0.00278312 0.00277359 0.00262683 0.00260438 0.00260865 0.00261203 0.00261803 0.00262275 0.00262783 0.00263218 0.00263643 0.00264012 0.00264348 0.00264631 0.00264865 0.00265042 0.00340697 0.00340194 0.00339636 0.00339028 0.00338372 0.00337679 0.00336941 0.00336181 0.00335371 0.00334571 0.00333664 0.00332888 0.00332027 0.00332718 0.00316273 0.00315145 0.00314279 0.00346244 0.00346322 0.0034589 0.00378771 0.00377771 0.00377002 0.00404472 0.00404815 0.00404823 0.00393806 0.00394109 0.00446019 0.00444917 0.00431798 0.00430826 0.00429997 0.00452337 0.00452941 0.00453304 0.00474145 0.00473125 0.00472196 0.00488819 0.00489654 0.00490314 0.00484962 0.0048666 0.00489021 0.00447852 0.00395477 0.00396745 0.0039805 0.00399305 0.00453243 0.00451453 0.00449653 0.00491352 0.00493688 0.00496039 0.00526456 0.00523578 0.00520735 0.00517939 0.00515017 0.0051285 0.00504698 0.005036 0.0050257 0.00513035 0.00514046 0.00514983 0.00522653 0.00521478 0.00520364 0.00524398 0.00525568 0.0052683 0.00527732 0.00530364 0.0053231 0.00529642 0.00527494 0.00526291 0.00525112 0.00522566 0.00523792 0.00525141 0.00519086 0.00517887 0.00516724 0.00507819 0.00509088 0.00510508 0.00518174 0.00520832 0.00524485 0.00535933 0.00533723 0.00536889 0.0054014 0.00543444 0.00546425 0.00542843 0.00539333 0.0052795 0.00531532 0.00535202 0.00538989 0.00550109 0.00546827 0.00529385 0.00498416 0.00455038 0.00400557 0.00401783 0.00402991 0.00404172 0.0046041 0.00458623 0.00456831 0.00500817 0.00503243 0.00505693 0.00508164 0.00462189 0.00405324 0.00406441 0.00407521 0.00408558 0.0046744 0.00465708 0.00463956 0.00510654 0.0051316 0.00515679 0.00551428 0.00548114 0.00544855 0.0054165 0.005385 0.00535406 0.00532368 0.0055029 0.0055384 0.00557477 0.00561819 0.005578 0.00553898 0.00542899 0.00546942 0.00551123 0.00555451 0.0056596 0.00561204 0.00565024 0.00568938 0.00572949 0.00579165 0.00574628 0.00570228 0.00559931 0.00564573 0.00569385 0.00574375 0.00583844 0.00577057 0.00554794 0.00518208 0.00469147 0.00409546 0.0034114 0.00265161 0.00265216 0.00265203 0.00265118 0.00264958 0.00264717 0.00264392 0.00263978 0.00263472 0.00262869 0.00262168 0.00261364 0.00260456 0.00259443 0.00258323 0.00257091 0.00336786 0.00337922 0.00338916 0.0033977 0.00340488 0.00341077 0.00341541 0.00341887 0.0034212 0.00342248 0.00342276 0.00342211 0.00342059 0.00341827 0.00341518 0.00410481 0.00411355 0.00412164 0.00474065 0.00472466 0.00470825 0.00520742 0.00523276 0.00525804 0.0052832 0.00475608 0.00412899 0.00413555 0.00414122 0.00414591 0.00479867 0.00478524 0.00477097 0.00530818 0.00533289 0.00535721 0.00579556 0.00575925 0.00572314 0.00568731 0.00565183 0.00561675 0.00558211 0.00581265 0.00585575 0.00589987 0.00598789 0.00593651 0.00588671 0.00579553 0.00584929 0.00590513 0.00596316 0.0060409 0.00594501 0.00599115 0.00603828 0.00608637 0.00621016 0.00615199 0.00609558 0.00602349 0.00608624 0.00615154 0.00621949 0.00627012 0.00613538 0.005832 0.00538103 0.00481123 0.00414955 0.00415203 0.00415325 0.00415312 0.00484233 0.0048332 0.00482279 0.00540422 0.00542665 0.00544813 0.0054685 0.00485004 0.00415153 0.00414837 0.00414356 0.004137 0.00486299 0.00486053 0.00485616 0.00548755 0.00550506 0.0055208 0.00607786 0.00604513 0.00601119 0.00597632 0.00594077 0.00590475 0.00586844 0.00618526 0.00623591 0.00628725 0.00646083 0.00639546 0.00633188 0.00629024 0.00636388 0.00644055 0.00652034 0.00652795 0.00633914 0.00639142 0.00644387 0.00649625 0.0067389 0.00666712 0.00659675 0.00660333 0.00668959 0.00677913 0.00687194 0.00681187 0.00654825 0.00610906 0.00553455 0.00486337 0.00412863 0.00335508 0.00255756 0.00254329 0.00252799 0.00251181 0.00249483 0.0024771 0.00245878 0.00244001 0.00242093 0.00240154 0.00238219 0.002363 0.00234412 0.00232573 0.00230801 0.00229113 0.00305682 0.00307602 0.00309642 0.00311775 0.00313976 0.00316213 0.00318466 0.00320689 0.0032288 0.00325007 0.00327047 0.0032899 0.00330809 0.00332514 0.00334087 0.00411837 0.00410621 0.00409214 0.00485079 0.00485738 0.00486152 0.00554573 0.00555466 0.00556096 0.00556411 0.00484164 0.00407605 0.00405823 0.00403887 0.00401799 0.00479907 0.00481553 0.00482986 0.00556411 0.00556072 0.00555383 0.00625446 0.00624415 0.00622972 0.00621155 0.00619002 0.0061655 0.00613836 0.00659951 0.00664958 0.00669786 0.00703508 0.0069603 0.00688578 0.0069679 0.00706683 0.00716839 0.00727211 0.00710973 0.00674364 0.00678656 0.00682599 0.00686128 0.00732417 0.00725512 0.00718334 0.00737746 0.0074837 0.00758995 0.0076951 0.00738948 0.00689168 0.00625967 0.00554384 0.00478041 0.00399585 0.00397273 0.00394902 0.00392509 0.00471452 0.00473774 0.00475985 0.0055309 0.00551511 0.00549678 0.0054766 0.00469087 0.00390117 0.00387791 0.00385561 0.00383474 0.00462244 0.00464418 0.00466724 0.00545526 0.00543387 0.00541294 0.00619388 0.00621084 0.00622692 0.00624095 0.00625178 0.00625881 0.00626116 0.00691657 0.00693619 0.00694991 0.00754957 0.00750335 0.00744979 0.00779797 0.00789708 0.00799077 0.00807737 0.00758785 0.00695754 0.00695869 0.00695473 0.00694805 0.00765031 0.00763779 0.00761723 0.00815387 0.00821761 0.00826615 0.00830025 0.00765567 0.0069384 0.00617746 0.00539343 0.00460258 0.00381565 0.00303907 0.00227526 0.00226057 0.0022472 0.00223529 0.00222506 0.00221667 0.0022102 0.00220577 0.00220346 0.00220333 0.00220543 0.0022097 0.0022164 0.00222544 0.00223594 0.00224869 0.0030683 0.00304606 0.00302683 0.00301026 0.00299753 0.00298677 0.00297908 0.00297488 0.00297366 0.00297536 0.00297987 0.00298706 0.0029968 0.00300886 0.00302301 0.00379872 0.00378425 0.00377255 0.00455943 0.00457062 0.00458514 0.00537626 0.0053622 0.00535182 0.00534566 0.0045519 0.00376384 0.00375843 0.00375653 0.00375831 0.00455505 0.00454922 0.00454839 0.00534411 0.00534799 0.00535775 0.00615789 0.00614576 0.00613835 0.00613727 0.00614132 0.00614992 0.00616223 0.00692868 0.00692084 0.00691591 0.00765963 0.00765688 0.00765678 0.00832229 0.00833719 0.00835072 0.0083675 0.00766622 0.00691607 0.00692145 0.00693208 0.00694907 0.00772094 0.00769627 0.00767822 0.00839041 0.00842008 0.00845749 0.00850168 0.00775229 0.00697274 0.00617619 0.00537163 0.00456592 0.00376404 0.00377421 0.00378744 0.00380462 0.00462519 0.00460011 0.00458025 0.00539159 0.00541796 0.00545042 0.00548901 0.00465541 0.0038261 0.00385167 0.00388103 0.00391422 0.0047757 0.00473077 0.00469064 0.00553369 0.00558435 0.00564092 0.00649932 0.0064318 0.00637186 0.00631878 0.00627276 0.00623369 0.00620149 0.00700354 0.00704172 0.00708707 0.0078907 0.00783703 0.00779055 0.00855047 0.00861054 0.0086832 0.00877158 0.00794845 0.00713941 0.0071997 0.00726529 0.00734284 0.00821302 0.008108 0.00802002 0.00888037 0.00901471 0.00916597 0.00933169 0.00833479 0.0074322 0.00657303 0.00570299 0.00482523 0.00395101 0.00309324 0.00226355 0.00228012 0.00229854 0.00231857 0.00234009 0.00236305 0.00238726 0.00241269 0.00243918 0.00246667 0.00249507 0.00252429 0.00255427 0.00258496 0.00261628 0.0026482 0.00370448 0.00365401 0.00360456 0.00355617 0.00350891 0.00346286 0.0034181 0.00337474 0.00333289 0.00329266 0.0032542 0.00321764 0.00318313 0.0031508 0.00312078 0.00399128 0.00403486 0.00408154 0.0049999 0.00493757 0.00487923 0.00577039 0.00584372 0.00592234 0.00600554 0.00506595 0.00413116 0.00418358 0.00423867 0.0042963 0.00528503 0.0052084 0.00513547 0.00609254 0.00618217 0.00627734 0.00727552 0.00715484 0.00704039 0.00693256 0.00683113 0.00673679 0.00665056 0.00753277 0.00764397 0.00776453 0.00878449 0.00862523 0.0084748 0.00951121 0.00970119 0.00990073 0.0101094 0.00895271 0.00789405 0.00803282 0.0081817 0.00833605 0.00950468 0.00931439 0.00912968 0.0103262 0.0105501 0.0107805 0.0110169 0.00970026 0.00849526 0.0074016 0.00637749 0.005365 0.00435627 0.00441843 0.00448264 0.00454877 0.0056228 0.00553406 0.00544807 0.0064821 0.00659084 0.00670347 0.00681981 0.00571415 0.00461671 0.00468637 0.00475767 0.00483055 0.0060029 0.00590429 0.00580801 0.0069397 0.00706304 0.00718974 0.00841262 0.00825568 0.0081027 0.00795376 0.00780901 0.00766859 0.00753271 0.00865938 0.00882832 0.00900187 0.0103177 0.0101069 0.00990107 0.0112592 0.0115069 0.0117599 0.012018 0.0105331 0.00917985 0.0093621 0.00954849 0.00973891 0.0112058 0.0109772 0.010753 0.0122809 0.0125486 0.012821 0.0130981 0.0114386 0.00993331 0.00857344 0.00731974 0.00610379 0.00490495 0.0037559 0.00268069 0.0027137 0.00274723 0.00278124 0.00281574 0.00285072 0.00288617 0.00292212 0.00295856 0.00299553 0.00303303 0.00307111 0.00310979 0.0031491 0.00318909 0.0032298 0.00463907 0.00457268 0.00450761 0.00444379 0.00438113 0.00431957 0.00425905 0.00419953 0.00414095 0.00408329 0.00402653 0.00397065 0.00391564 0.0038615 0.00380825 0.00498083 0.00505817 0.00513695 0.00641984 0.00631228 0.00620693 0.00745301 0.00758951 0.00772924 0.00787223 0.00652961 0.00521717 0.00529882 0.00538191 0.00546648 0.00687229 0.00675581 0.00664159 0.00801849 0.00816808 0.00832106 0.00980766 0.00961944 0.00943531 0.00925517 0.00907896 0.00890662 0.00873812 0.0101317 0.010334 0.0105403 0.0121627 0.011917 0.0116756 0.01338 0.0136666 0.0139582 0.014255 0.0124129 0.0107506 0.0109652 0.011184 0.0114073 0.0131926 0.0129276 0.0126678 0.0145572 0.0148651 0.0151791 0.0154996 0.0134631 0.0116353 0.0100001 0.00847747 0.00699107 0.00555254 0.00564013 0.00572931 0.00582012 0.0073615 0.00723565 0.00711218 0.00863737 0.00880079 0.00896771 0.00913797 0.00748978 0.00591266 0.00600704 0.0061034 0.00620191 0.00789083 0.00775407 0.00762055 0.00931117 0.00948709 0.00966761 0.0114828 0.0112539 0.0110314 0.010815 0.0106041 0.0103981 0.0101969 0.0118684 0.0121068 0.0123513 0.0143133 0.0140229 0.0137397 0.0158272 0.0161623 0.0165054 0.0168569 0.0146116 0.0126027 0.0128623 0.0131313 0.0134078 0.0155572 0.0152339 0.0149185 0.0172168 0.0175854 0.0179627 0.0183494 0.0158887 0.0136918 0.0117183 0.00985289 0.00803095 0.00630269 0.00470685 0.00327127 0.00331355 0.00335671 0.00340081 0.0034459 0.00349207 0.00353939 0.00358794 0.00363782 0.00368912 0.00374195 0.00379642 0.00385265 0.00391078 0.00397094 0.00403329 0.00597356 0.00586862 0.00576757 0.00567013 0.00557605 0.0054851 0.00539705 0.0053117 0.00522886 0.00514838 0.00507009 0.00499384 0.00491951 0.00484697 0.00477612 0.00640585 0.00651155 0.00661994 0.0084735 0.00832208 0.00817463 0.0100432 0.0102388 0.01044 0.010647 0.00862914 0.00673119 0.00684548 0.006963 0.00708397 0.00912392 0.00895408 0.00878925 0.0108603 0.0110802 0.011307 0.0135781 0.0132867 0.0130047 0.0127315 0.0124668 0.0122099 0.0119605 0.0139838 0.0142843 0.0145937 0.0169382 0.0165785 0.0162289 0.0187461 0.0191536 0.0195726 0.020004 0.0173086 0.0149125 0.0152414 0.015581 0.0159319 0.018492 0.0180846 0.0176904 0.0204489 0.0209082 0.0213833 0.0218757 0.0189137 0.016295 0.0138793 0.0115412 0.00929909 0.00720862 0.0073372 0.00746999 0.00760733 0.00986006 0.00966676 0.00947991 0.0117831 0.0120331 0.0122916 0.0125592 0.0100604 0.00774957 0.0078971 0.00805034 0.0082097 0.0107098 0.0104846 0.0102683 0.0128371 0.0131264 0.013428 0.0163044 0.0159171 0.0155461 0.0151902 0.0148466 0.0145134 0.014191 0.0166709 0.0170606 0.0174651 0.0202809 0.0198059 0.0193511 0.0223871 0.0229196 0.0234753 0.0240563 0.0207796 0.0178863 0.0183261 0.0187856 0.019266 0.0224198 0.021849 0.0213027 0.0246628 0.0252952 0.0259549 0.026644 0.0230169 0.0197686 0.0167091 0.0137429 0.0109446 0.00837567 0.00608267 0.00409801 0.00416527 0.00423528 0.00430827 0.00438447 0.00446415 0.00454762 0.0046352 0.00472726 0.0048242 0.00492648 0.0050346 0.00514913 0.00527073 0.00540012 0.00553814 0.00855615 0.00831551 0.00809061 0.00787986 0.00768189 0.00749548 0.00731958 0.00715323 0.00699561 0.00684596 0.00670362 0.00656799 0.00643854 0.00631479 0.00619629 0.00854876 0.00872952 0.00891859 0.0117149 0.0114463 0.0111899 0.0140721 0.0144168 0.0147782 0.0151576 0.0119966 0.00911666 0.00932447 0.00954289 0.00977286 0.012932 0.0126038 0.0122925 0.0155566 0.0159769 0.0164204 0.0201667 0.0195923 0.0190485 0.0185327 0.0180428 0.0175768 0.0171328 0.0202953 0.0208479 0.0214285 0.0249873 0.0242981 0.0236422 0.0273651 0.0281211 0.0289148 0.0297497 0.0257125 0.0220394 0.0226834 0.0233633 0.0240823 0.0281377 0.027284 0.0264769 0.0306293 0.031558 0.0325405 0.0335828 0.0290424 0.0248437 0.0207742 0.0168891 0.0132786 0.0100155 0.0102719 0.0105435 0.0108318 0.0144476 0.0140342 0.0136453 0.0173853 0.0179118 0.0184718 0.0190695 0.0148882 0.0111387 0.011466 0.011816 0.0121915 0.0164052 0.0158634 0.015359 0.019709 0.0203952 0.0211333 0.0262855 0.0253243 0.0244319 0.0236013 0.022826 0.0221003 0.0214177 0.0256509 0.0265063 0.0274126 0.0321191 0.0310253 0.030003 0.0346926 0.035881 0.0371617 0.0385368 0.033293 0.0283818 0.0294217 0.0305404 0.0317472 0.0373833 0.0359146 0.0345549 0.0400141 0.0416043 0.0433203 0.0498486 0.0479043 0.0460971 0.0444134 0.042842 0.0413744 0.0400051 0.0387247 0.0375232 0.0363918 0.0353232 0.0343112 0.0333508 0.0324373 0.0315671 0.0307364 0.0299422 0.0291814 0.0284518 0.0277512 0.0270782 0.0264319 0.0258108 0.0252136 0.0246385 0.0240838 0.0235476 0.0230286 0.0225254 0.0220367 0.0215615 0.0210987 0.0206476 0.0202074 0.0197773 0.0193569 0.0189455 0.0185429 0.0181488 0.0177629 0.0173848 0.0170142 0.0166505 0.0162934 0.0159426 0.0155977 0.0152584 0.0149247 0.0145963 0.0142731 0.0139553 0.0136427 0.0133355 0.0130339 0.012738 0.0124482 0.0121648 0.0118883 0.0116191 0.0113577 0.0111048 0.0108615 0.0106289 0.0104076 0.0101986 0.0100022 0.00981915 0.0096528 0.00950538 0.00938573 0.00928593 0.00920298 0.00913436 0.00907736 0.0090314 0.00899598 0.00896644 0.0089355 0.00889462 0.00883177 0.0087409 0.00862787 0.00849983 0.00836071 0.00821547 0.0080655 0.00791354 0.00776214 0.00761303 0.00746727 0.00732592 0.00718959 0.00705875 0.00693362 0.00681434 0.00670086 0.00659306 0.00649073 0.00639362 0.00630147 0.00621398 0.00613088 0.0060519 0.00597676 0.00590522 0.00583706 0.00577204 0.00570996 0.00565064 0.00559391 0.00553961 0.00548758 0.0054377 0.00538982 0.00534384 0.00529963 0.00525711 0.00521618 0.00517674 0.00513872 0.00510202 0.00506655 0.00503206 0.00499859 0.00496422 0.00493907 0.00497881 0.00496755 0.00495666 0.00480767 0.00482018 0.00483444 0.00464644 0.00463714 0.00462771 0.00442483 0.00443664 0.00445054 0.00457846 0.00460055 0.00413032 0.00411388 0.00420659 0.00420036 0.00419318 0.00394496 0.00395535 0.00396865 0.00367554 0.00367421 0.00367023 0.0033866 0.00339501 0.00340681 0.00356318 0.00356953 0.00358963 0.00415515 0.00463046 0.00466096 0.00469219 0.0047244 0.00423442 0.0042072 0.00418067 0.00360861 0.00362972 0.00365071 0.00299197 0.00297776 0.00296213 0.00295089 0.00293575 0.00294606 0.00307071 0.0030769 0.00307835 0.00277338 0.00277804 0.00278764 0.00241395 0.00242902 0.00244087 0.00212632 0.00211813 0.00212225 0.00227939 0.00223921 0.00148452 0.00151543 0.0016785 0.00172325 0.00176508 0.00149161 0.0014581 0.00144854 0.00100107 0.0010646 0.00109149 0.000704204 0.000700136 0.000667395 0.000421799 0.000240738 0.000231025 0.000390471 0.000353202 0.000221883 0.000107936 0.000109752 0.000112837 0.000108537 0.0002266 0.000382995 0.000618539 0.000621615 0.00059678 0.000960971 0.000904666 0.00059047 0.000597759 0.000966719 0.000906563 0.000588249 0.00059854 0.00096878 0.00149467 0.00225202 0.00225527 0.00226724 0.00227433 0.00150582 0.00150275 0.00149461 0.000972135 0.000909074 0.000591398 0.000601316 0.000593945 0.000912275 0.000975027 0.000915249 0.00059657 0.000603974 0.000379277 0.000349657 0.000377946 0.000348288 0.000377483 0.000347975 0.000376184 0.000346632 0.000375714 0.000346333 0.000374391 0.000344875 0.000374329 0.000344641 0.000373539 0.000344072 0.000373775 0.000344239 0.000377321 0.00034886 0.000218807 0.000222273 0.000216693 0.000105808 0.000107022 0.000106737 0.000106474 0.000220615 0.00021662 0.000220274 0.000216696 0.000106365 0.00010647 0.000106166 0.0001068 0.000220882 0.000217366 0.000221543 0.000217982 0.000106919 0.000107082 0.000106635 0.00010737 0.000222158 0.000218582 0.000222787 0.000219211 0.000107505 0.000107666 0.000107209 0.000107965 0.000223416 0.000219824 0.000224059 0.000220467 0.000108111 0.000108271 0.000107805 0.000108579 0.0002247 0.000221089 0.000349981 0.000379726 0.000351361 0.000221742 0.000225352 0.000108892 0.000108419 0.000108732 0.000109208 0.000226002 0.000381085 0.000606654 0.000978079 0.000918416 0.000599221 0.00060935 0.000981356 0.00151288 0.00228533 0.00300807 0.00367299 0.00426283 0.00475783 0.00479253 0.00482862 0.00486619 0.00435512 0.00432304 0.00429232 0.00369616 0.00372012 0.00374519 0.00377151 0.00438862 0.00490533 0.00494615 0.00498876 0.00503329 0.00449872 0.0044603 0.00442364 0.00379903 0.00382792 0.00385827 0.00313843 0.00311692 0.00309656 0.00307722 0.00305865 0.00304108 0.00302399 0.00229464 0.00230557 0.00231621 0.0015297 0.00152405 0.00151761 0.000984537 0.000921436 0.000601873 0.00061206 0.000604543 0.000924611 0.000987847 0.00092775 0.00060722 0.000614784 0.00038654 0.000356555 0.000385144 0.00035515 0.000384712 0.000354813 0.000383327 0.000353415 0.000382893 0.000353081 0.000381521 0.000351692 0.000222372 0.000226663 0.000223034 0.000109369 0.000109529 0.000109048 0.000109852 0.000227321 0.000223672 0.000227989 0.000224341 0.000110018 0.000110179 0.000109691 0.000110509 0.000228655 0.000224986 0.00022933 0.000225662 0.000110681 0.000110843 0.000110348 0.000111178 0.000230002 0.000226312 0.000356893 0.000386969 0.000358307 0.000226996 0.000230683 0.000111519 0.000111016 0.000111355 0.00011186 0.000231361 0.000388376 0.000617521 0.000991152 0.000930978 0.000609914 0.000620275 0.000994545 0.00153613 0.00232776 0.00233956 0.00235209 0.00236513 0.00155603 0.00154916 0.00154242 0.000997983 0.000934229 0.000612622 0.000623049 0.000615352 0.000937556 0.00100151 0.000940943 0.000618106 0.000625846 0.000393939 0.000363618 0.000392495 0.00036218 0.000392075 0.000361838 0.000390644 0.000360408 0.000390221 0.000360068 0.000388802 0.000358646 0.000227651 0.000232048 0.00022834 0.000112041 0.000112206 0.000111696 0.000112553 0.000232731 0.000229001 0.000233424 0.000229696 0.000112738 0.000112904 0.000112388 0.000113257 0.000234113 0.000230362 0.000234811 0.000231063 0.000113445 0.000113614 0.00011309 0.000113971 0.000235505 0.000231732 0.000363962 0.000394356 0.000365409 0.000232438 0.000236208 0.000114333 0.000113802 0.000114162 0.000114695 0.000236906 0.000395814 0.000628671 0.00100511 0.000944415 0.00062089 0.000396228 0.000365754 0.000233111 0.000237613 0.000233821 0.000367209 0.0003977 0.000631531 0.00100882 0.00156327 0.00237888 0.00316108 0.00389016 0.00453903 0.00507986 0.00512864 0.00517979 0.00523347 0.00467301 0.00462601 0.0045814 0.00392373 0.00395924 0.00399675 0.00403652 0.00472264 0.00528991 0.0053493 0.00541191 0.005478 0.00488977 0.00483074 0.00477513 0.00407873 0.00412365 0.00417154 0.00336145 0.00332704 0.00329486 0.00326473 0.00323643 0.00320981 0.00318462 0.00239333 0.00240865 0.00242483 0.00158697 0.00157869 0.00157078 0.00101263 0.000947975 0.00062371 0.000634431 0.000626576 0.000951645 0.00101658 0.000955438 0.000629499 0.000637381 0.000401521 0.000370853 0.000400015 0.000369372 0.000399601 0.000369023 0.000398113 0.000367557 0.000234498 0.000238315 0.000115426 0.000114887 0.000115061 0.000114523 0.000115251 0.000115795 0.000239025 0.000235212 0.000115619 0.000116164 0.000239731 0.000235891 0.000240445 0.000236609 0.000116355 0.000116535 0.000115985 0.000116906 0.000241154 0.000237291 0.0003712 0.000401938 0.000372701 0.000238013 0.000241871 0.000117279 0.000116723 0.000117093 0.00011765 0.000242584 0.000403464 0.000640396 0.00102068 0.000959376 0.000632494 0.000643489 0.00102496 0.00159572 0.00244204 0.00246036 0.00248005 0.00250124 0.00162527 0.0016148 0.00160497 0.00102943 0.000963482 0.000635578 0.000646681 0.000638773 0.00096778 0.00103414 0.000972297 0.000642099 0.000649992 0.000409533 0.000378445 0.000407914 0.000376852 0.000407456 0.000376485 0.000405876 0.00037493 0.000405438 0.000374575 0.000403889 0.00037305 0.000238697 0.000243306 0.000239424 0.000117832 0.000118023 0.000117462 0.000118394 0.000244022 0.000240112 0.00024475 0.000240846 0.00011857 0.000118766 0.000118201 0.000119135 0.000245473 0.00024154 0.000246209 0.000242284 0.000119302 0.000119504 0.000118936 0.00011987 0.000246942 0.000242987 0.000378831 0.00041002 0.00038047 0.000243745 0.00024769 0.000120236 0.000119664 0.000120027 0.000120598 0.000248438 0.000411689 0.000653446 0.0010391 0.000977062 0.000645583 0.000657068 0.00104435 0.00163647 0.00252361 0.00339835 0.00422276 0.00495255 0.00554786 0.00562182 0.00570025 0.00578354 0.00516755 0.00509098 0.00501948 0.0042777 0.00433676 0.00440049 0.00446946 0.00524976 0.00587213 0.0059665 0.00606717 0.0061747 0.00553724 0.00543379 0.00533825 0.00454441 0.00462619 0.0047158 0.00376387 0.00369587 0.00363451 0.00357878 0.00352789 0.00348119 0.00343817 0.00254799 0.00257447 0.00260331 0.00167595 0.00166166 0.00164857 0.00104994 0.000982106 0.000649249 0.000660887 0.000653122 0.00098746 0.00105589 0.00099317 0.000657226 0.000664929 0.000418911 0.000387206 0.000416998 0.000385338 0.000416343 0.000384818 0.00041453 0.000383045 0.000413948 0.000382585 0.000412216 0.000380887 0.000244464 0.000249205 0.000245242 0.000120744 0.000120962 0.000120386 0.000121321 0.000249974 0.000245981 0.000250766 0.000246788 0.00012145 0.000121679 0.000121098 0.00012203 0.000251566 0.00024756 0.000252397 0.000248409 0.000122142 0.000122379 0.000121797 0.000122722 0.000253242 0.000249229 0.000387803 0.000419659 0.000389787 0.000250138 0.000254129 0.000123063 0.000122483 0.000122822 0.000123397 0.000255038 0.000421691 0.000669224 0.00106228 0.000999298 0.000661589 0.000673808 0.00106919 0.00169167 0.0026349 0.00266968 0.00270819 0.0027511 0.0017503 0.0017287 0.00170912 0.00107676 0.00100594 0.000666251 0.000678735 0.000671293 0.00101326 0.00108519 0.00102149 0.000676871 0.000684106 0.000431483 0.000398899 0.000429046 0.000396526 0.000427975 0.000395633 0.000425675 0.000393384 0.00042471 0.000392593 0.000422546 0.000390477 0.000251026 0.000256001 0.000252015 0.000123498 0.00012373 0.000123157 0.000124067 0.000256994 0.000252987 0.000258047 0.000254066 0.000124182 0.000124407 0.000123838 0.000124744 0.000259129 0.000255121 0.000260269 0.000256283 0.000124859 0.00012508 0.000124524 0.000125403 0.000261435 0.000257414 0.000399902 0.000432669 0.000402401 0.00025865 0.000262656 0.000125722 0.000125175 0.000125489 0.000126029 0.000263904 0.000435277 0.000690112 0.00109483 0.00103114 0.000683277 0.000436644 0.000403572 0.000259855 0.000265218 0.000261193 0.000406261 0.000439551 0.000697096 0.00110631 0.00177449 0.00279952 0.0038398 0.00481445 0.0056495 0.0062897 0.00641277 0.0065445 0.00668543 0.00604989 0.00590473 0.00577163 0.00492357 0.00504483 0.00518002 0.00533103 0.00620815 0.00683592 0.00699624 0.00716645 0.00734671 0.0067708 0.0065677 0.00638042 0.00549973 0.00568818 0.00589796 0.00478012 0.00457983 0.00440915 0.00426108 0.00413329 0.00402223 0.00392524 0.00285485 0.00291901 0.00299489 0.00187206 0.00183427 0.00180216 0.00112048 0.00104294 0.000691022 0.000705659 0.000700998 0.00105778 0.00113815 0.0010768 0.0007148 0.000716852 0.000451991 0.000417012 0.000447341 0.000413102 0.000444808 0.00041087 0.000441302 0.00040778 0.000262568 0.00026661 0.000126634 0.000126086 0.000126329 0.00012579 0.000126395 0.000127013 0.000268168 0.000264209 0.000126802 0.000127554 0.000269981 0.000266098 0.000272188 0.000268503 0.000128315 0.000128382 0.000127396 0.000129718 0.000274911 0.000271354 0.000420553 0.000456161 0.000425678 0.000274676 0.000278214 0.000131851 0.00012984 0.000132284 0.000134036 0.000283273 0.000463346 0.000732553 0.00115941 0.00110126 0.000735415 0.000755289 0.00118801 0.00192308 0.00308655 0.00319774 0.00333154 0.00350462 0.00217997 0.00206463 0.00198806 0.00122342 0.00113252 0.000762296 0.000787399 0.000801152 0.00116896 0.00126064 0.00119982 0.000860758 0.000835432 0.000528702 0.000485737 0.000513296 0.000471805 0.00050036 0.000459202 0.000486789 0.000447594 0.000478111 0.000439189 0.000468848 0.000431546 0.000279176 0.000287562 0.000284063 0.000137257 0.000138199 0.000134584 0.000140586 0.000293497 0.000290692 0.000300225 0.000298556 0.000146245 0.000144003 0.00014206 0.000150506 0.000310307 0.000308287 0.000321322 0.000319866 0.000156245 0.000156016 0.000150893 0.000161343 0.000334741 0.000334816 0.000500287 0.000542898 0.000515075 0.000361483 0.000354603 0.000170722 0.000163499 0.000177008 0.000193174 0.000403577 0.00055648 0.000936734 0.00128452 0.00121334 0.00122474 0.00104224 0.000530248 0.000519472 0.000447627 0.000263138 0.00011974 9.37158e-05 0.00011387 0.000251552 0.000235697 0.000111 0.000120616 0.000279305 0.000524976 0.000493117 0.000280043 0.000240468 0.000114989 0.000124465 0.000120359 0.000253332 0.000299953 0.000571302 0.0012832 0.0025227 0.00390874 0.00523969 0.00637563 0.00722197 0.00773399 0.00753584 0.00698817 0.00612683 0.00500412 0.00372554 0.00244929 0.0079401 0.00815248 0.00773887 0.00747252 0.00665098 0.00694897 0.00727589 0.00802177 0.00836896 0.00858587 0.00880074 0.00900514 0.00895148 0.00862952 0.00831959 0.0076324 0.00802094 0.00844462 0.00741687 0.00694511 0.00652695 0.00615159 0.00581537 0.00551747 0.00416752 0.00443494 0.00297248 0.00274777 0.0014206 0.00162796 0.00177013 0.00321253 0.00474208 0.00509713 0.005492 0.00594503 0.00423182 0.00384712 0.00351796 0.00200511 0.00224584 0.00253317 0.00138322 0.00116302 0.00117518 0.00103106 0.00101587 0.000862279 0.000882 0.000761704 0.000795964 0.000642924 0.000634096 0.000541591 0.000305879 0.000263814 0.000127305 0.000132022 0.000137636 0.000135283 0.000280636 0.000334236 0.000307042 0.000150347 0.000149799 0.000183972 0.000382886 0.000391959 0.000254941 0.000264505 0.000465705 0.000436021 0.000282436 0.000298274 0.000488704 0.000472655 0.000305457 0.00015286 0.000141621 0.000141119 0.000121782 0.000125328 8.59961e-05 0.000155564 0.000327313 0.000532339 0.000505259 0.00033115 0.000360413 0.00055968 0.000548917 0.00037245 0.000421077 0.000608957 0.000576144 0.000584446 0.00047533 0.000282642 0.000202964 0.000186517 0.000172966 0.000164522 9.62905e-05 0.000132232 0.000125531 0.000274629 0.000262895 0.000128315 0.000142577 0.000314554 0.000619961 0.000668344 0.00078883 0.000884977 0.00139334 0.00162187 0.0028839 0.0046878 0.00646967 0.00796125 0.00892617 0.00928411 0.00918915 0.00933819 0.00944352 0.0095145 0.00999872 0.00983565 0.00959807 0.00947371 0.00996034 0.010307 0.0105492 0.0101245 0.00957302 0.0096358 0.00971113 0.00980346 0.0105139 0.0103684 0.0102414 0.0107479 0.0109458 0.011158 0.0115664 0.0112609 0.0109627 0.0106217 0.0101382 0.00945914 0.00865975 0.00712451 0.00804287 0.00909111 0.00702033 0.00598835 0.00522626 0.00329108 0.00391129 0.00459039 0.00573328 0.00835987 0.0100153 0.010648 0.0111193 0.011562 0.0109688 0.0103306 0.0095159 0.00725159 0.00869703 0.00964461 0.0106006 0.0116644 0.0120315 0.0118905 0.0113889 0.010681 0.00991545 0.0100536 0.010213 0.0103938 0.0113172 0.0110833 0.010871 0.011641 0.0119166 0.0122142 0.0125323 0.0115712 0.0105961 0.0108146 0.0110466 0.0112911 0.0124278 0.0121283 0.0118424 0.0128685 0.0132208 0.0135881 0.0147436 0.014287 0.0138439 0.0134152 0.013003 0.0126091 0.0122367 0.012519 0.013045 0.0135929 0.0138801 0.0131079 0.0123779 0.0116906 0.0127116 0.0138154 0.0148437 0.0146547 0.0141473 0.0147111 0.015282 0.0158599 0.016901 0.0161591 0.015412 0.0158991 0.0168765 0.0178343 0.0186352 0.0174134 0.0161052 0.0147312 0.0133419 0.0117222 0.010342 0.0086803 0.00761673 0.00597825 0.00419348 0.00316695 0.00247267 0.00203768 0.00196629 0.00190213 0.00165294 0.00108859 0.000996983 0.000579327 0.000503434 0.000512341 0.000428612 0.000418108 0.000325145 0.000344788 0.000286385 0.000139063 0.000158366 0.000159646 0.000196865 0.000277823 0.000294376 0.000324287 0.000162948 0.000137659 0.000139812 8.97303e-05 0.000165729 0.000347745 0.000367563 0.00057077 0.000655279 0.000662238 0.000444546 0.000406783 0.000197884 0.000184266 0.000219611 0.000101538 0.000153013 0.000317871 0.000531614 0.000761638 0.00125451 0.00143171 0.000763036 0.000747626 0.000563616 0.000324355 0.000149783 0.000165256 0.000347163 0.000337995 0.000166965 0.000203148 0.000432864 0.000821383 0.000918249 0.00054 0.000450299 0.000291138 0.000315371 0.000355035 0.000552279 0.000649766 0.00114278 0.00122309 0.000759913 0.000656328 0.000428904 0.000390563 0.00018616 0.000179827 0.000148974 0.000147647 9.39641e-05 0.00021834 0.000233603 0.000490582 0.000592024 0.000792589 0.000818365 0.00155052 0.00166324 0.000986 0.00126255 0.00206142 0.00239084 0.00151532 0.00192813 0.0030812 0.0036868 0.00465134 0.0023963 0.00136547 0.00102061 0.000956677 0.000868429 0.000730275 0.000663984 0.000550484 0.00047853 0.00037287 0.0003494 0.000344139 0.000165765 0.000110127 0.000163885 0.000193074 0.000231342 0.000347043 0.000175641 0.000108095 0.000184423 0.000389506 0.000466014 0.000537581 0.000672529 0.000395494 0.00025752 0.000240347 0.000122913 0.000199728 0.000205388 0.000417189 0.000498662 0.000256892 0.00042211 0.000693559 0.00077884 0.000479558 0.000624374 0.000986827 0.00179183 0.00269733 0.00146445 0.001175 0.000796855 0.000490457 0.000308439 0.000237722 0.000214365 0.000120104 0.000142076 0.000259893 0.0002999 0.000563656 0.000819729 0.000518652 0.000281289 0.000148072 0.00036142 0.000689573 0.00112524 0.00239511 0.0037036 0.00614612 0.00824212 0.0102371 0.012388 0.0111596 0.00820827 0.00551449 0.00426831 0.00339354 0.00214845 0.00150751 0.0010344 0.000626999 0.000313959 0.000185676 0.000501094 0.000902943 0.00143858 0.000939094 0.00152158 0.0020809 0.00310333 0.00409177 0.00630402 0.00343958 0.00261306 0.00212334 0.00138287 0.000953793 0.000513125 0.000285908 0.000331788 0.000614282 0.00114801 0.00202375 0.00405821 0.00177232 0.00083486 0.000394171 0.000343181 0.00082986 0.000608613 0.000271308 0.000282363 0.000675018 0.00147317 0.00398493 0.00169211 0.00064302 0.000300346 0.000357321 0.000794424 0.00104043 0.000479969 0.000123353 0.000263605 9.04761e-05 0.000205109 7.53168e-05 0.000176816 7.06288e-05 0.000169643 7.76911e-05 0.000156127 0.000132136 6.03756e-05 0.000123015 0.000111469 4.71899e-05 0.000116523 5.90911e-05 0.00011837 0.000105145 5.17106e-05 0.000109275 9.87081e-05 4.85814e-05 0.000101271 9.35137e-05 4.63628e-05 0.000100454 9.07525e-05 4.42546e-05 9.59695e-05 8.88576e-05 4.32183e-05 9.73099e-05 8.77135e-05 4.27874e-05 0.000107228 7.91966e-05 6.94844e-05 3.49484e-05 8.30578e-05 7.65259e-05 3.56266e-05 8.37046e-05 7.5717e-05 3.42578e-05 8.46975e-05 7.49969e-05 3.47692e-05 8.23701e-05 7.4472e-05 3.31354e-05 8.29597e-05 7.42094e-05 3.40255e-05 8.14303e-05 7.24625e-05 3.24085e-05 8.2211e-05 7.24579e-05 3.22892e-05 7.96893e-05 7.00723e-05 3.13952e-05 8.02091e-05 6.95348e-05 3.13157e-05 7.78988e-05 6.70028e-05 3.01771e-05 7.78326e-05 6.63715e-05 3.002e-05 7.53257e-05 6.24807e-05 2.88072e-05 7.50513e-05 6.21074e-05 2.83706e-05 7.1731e-05 5.82251e-05 2.68996e-05 7.06503e-05 5.69153e-05 2.6697e-05 6.70829e-05 5.38082e-05 2.51043e-05 6.55692e-05 5.19962e-05 2.43774e-05 6.07611e-05 4.77602e-05 2.13595e-05 5.90034e-05 2.71988e-05 6.85577e-05 5.18637e-05 2.43585e-05 6.2314e-05 4.84204e-05 2.32937e-05 5.7606e-05 4.68028e-05 2.29311e-05 5.64637e-05 4.51312e-05 2.03867e-05 5.77702e-05 2.63179e-05 7.13087e-05 5.21244e-05 2.39621e-05 6.11075e-05 4.80137e-05 2.28731e-05 5.70321e-05 4.41611e-05 2.03563e-05 5.22362e-05 2.4748e-05 6.13862e-05 4.49907e-05 2.16446e-05 5.0959e-05 4.0307e-05 1.9525e-05 4.98362e-05 2.40738e-05 6.14861e-05 4.57883e-05 2.17446e-05 5.23803e-05 4.06709e-05 1.91836e-05 4.7196e-05 2.33889e-05 5.48046e-05 4.11807e-05 1.93862e-05 4.96306e-05 2.38591e-05 5.67352e-05 4.138e-05 1.94316e-05 4.7903e-05 2.3624e-05 5.56427e-05 4.10611e-05 2.10293e-05 4.51459e-05 3.6211e-05 1.86012e-05 4.30068e-05 2.21534e-05 5.05315e-05 3.79367e-05 1.86775e-05 4.38977e-05 2.23158e-05 4.77428e-05 3.59214e-05 1.81248e-05 4.17014e-05 2.1731e-05 4.88194e-05 3.63529e-05 1.83689e-05 4.19686e-05 2.17474e-05 4.54789e-05 3.42912e-05 1.78647e-05 3.94808e-05 2.10461e-05 4.58039e-05 3.42527e-05 1.8131e-05 3.96968e-05 1.97004e-05 4.61279e-05 2.23916e-05 4.88898e-05 3.5696e-05 1.85527e-05 3.99942e-05 2.16298e-05 4.5072e-05 3.4039e-05 1.82382e-05 3.80672e-05 1.97541e-05 4.34076e-05 2.19581e-05 4.4332e-05 3.35329e-05 1.80322e-05 3.78637e-05 2.11402e-05 4.26552e-05 3.29804e-05 1.75118e-05 3.67061e-05 1.94018e-05 4.19496e-05 2.17489e-05 4.3905e-05 3.30738e-05 1.75342e-05 3.57838e-05 2.06065e-05 3.96258e-05 3.14413e-05 1.67872e-05 3.35934e-05 1.82341e-05 3.77148e-05 2.02579e-05 3.76458e-05 2.9468e-05 1.60243e-05 3.20322e-05 1.76165e-05 3.65333e-05 1.99293e-05 3.89387e-05 3.04204e-05 1.66058e-05 3.29668e-05 1.76388e-05 3.65256e-05 1.8857e-05 3.98976e-05 2.10711e-05 4.07232e-05 3.12071e-05 1.71156e-05 3.31857e-05 1.81507e-05 3.70511e-05 2.05882e-05 3.89701e-05 3.04569e-05 1.64787e-05 3.28911e-05 1.79391e-05 3.65171e-05 2.03912e-05 3.76108e-05 2.96075e-05 1.6175e-05 3.07333e-05 1.67588e-05 3.32663e-05 1.73919e-05 3.55172e-05 1.97434e-05 3.7318e-05 2.97012e-05 1.64477e-05 3.15847e-05 1.72373e-05 3.44794e-05 1.79641e-05 3.67518e-05 2.02375e-05 3.74506e-05 2.94914e-05 1.63348e-05 3.06805e-05 1.71136e-05 3.3682e-05 1.89509e-05 3.44329e-05 2.80154e-05 1.55377e-05 2.97352e-05 1.63526e-05 3.21127e-05 1.67413e-05 3.37783e-05 1.7542e-05 3.56176e-05 1.97192e-05 3.58982e-05 2.87404e-05 1.61339e-05 2.97698e-05 1.65009e-05 3.18846e-05 1.69857e-05 3.3822e-05 1.88855e-05 3.4611e-05 2.82994e-05 1.59786e-05 2.98376e-05 1.65438e-05 3.20997e-05 1.71134e-05 3.38141e-05 1.8872e-05 3.37629e-05 2.74107e-05 1.55635e-05 2.81797e-05 1.58263e-05 2.99943e-05 1.60145e-05 3.12678e-05 1.65089e-05 3.33052e-05 1.86138e-05 3.36029e-05 2.75253e-05 1.55363e-05 2.91032e-05 1.62685e-05 3.11232e-05 1.66961e-05 3.23092e-05 1.80752e-05 3.07224e-05 2.55078e-05 1.48331e-05 2.67641e-05 1.51227e-05 2.85145e-05 1.53582e-05 3.00135e-05 1.59677e-05 3.1538e-05 1.77969e-05 3.19267e-05 2.65226e-05 1.50297e-05 2.76542e-05 1.56425e-05 2.96055e-05 1.59261e-05 3.0676e-05 1.63493e-05 3.16695e-05 1.79057e-05 3.00844e-05 2.50914e-05 1.46031e-05 2.62546e-05 1.4998e-05 2.81676e-05 1.51833e-05 2.96314e-05 1.57955e-05 3.11284e-05 1.75215e-05 3.12823e-05 2.61328e-05 1.49713e-05 2.72918e-05 1.54518e-05 2.90539e-05 1.57187e-05 3.00564e-05 1.59826e-05 3.11017e-05 1.65991e-05 3.24855e-05 1.83464e-05 3.20169e-05 2.64815e-05 1.53871e-05 2.71335e-05 1.55703e-05 2.86659e-05 1.56399e-05 2.96896e-05 1.60339e-05 3.12181e-05 1.78338e-05 3.09356e-05 2.59543e-05 1.50259e-05 2.73497e-05 1.55921e-05 2.90439e-05 1.57927e-05 3.01312e-05 1.6274e-05 3.123e-05 1.78478e-05 3.06182e-05 2.54964e-05 1.49654e-05 2.59688e-05 1.50526e-05 2.74735e-05 1.51642e-05 2.85645e-05 1.55346e-05 3.01389e-05 1.73395e-05 2.98064e-05 2.51149e-05 1.46648e-05 2.64484e-05 1.51702e-05 2.80815e-05 1.53402e-05 2.91153e-05 1.57415e-05 2.98923e-05 1.62122e-05 3.08035e-05 1.78036e-05 2.92477e-05 2.46116e-05 1.47926e-05 2.57192e-05 1.50319e-05 2.75846e-05 1.52261e-05 2.88958e-05 1.57955e-05 3.01988e-05 1.74356e-05 3.01778e-05 2.55862e-05 1.49978e-05 2.66051e-05 1.53922e-05 2.83439e-05 1.56417e-05 2.93261e-05 1.60706e-05 3.01685e-05 1.74773e-05 2.85525e-05 2.41692e-05 1.45763e-05 2.51791e-05 1.48154e-05 2.71312e-05 1.50199e-05 2.85718e-05 1.56488e-05 2.99603e-05 1.73637e-05 2.99235e-05 2.53727e-05 1.48676e-05 2.63876e-05 1.53756e-05 2.82363e-05 1.56502e-05 2.92767e-05 1.60893e-05 3.01184e-05 1.75961e-05 2.85581e-05 2.42581e-05 1.46803e-05 2.52765e-05 1.49738e-05 2.72422e-05 1.52744e-05 2.88703e-05 1.69348e-05 2.84797e-05 2.43011e-05 1.44803e-05 2.55465e-05 1.4957e-05 2.72218e-05 1.51499e-05 2.84032e-05 1.56396e-05 2.95548e-05 1.72522e-05 2.89463e-05 2.4541e-05 1.4718e-05 2.50527e-05 1.48731e-05 2.66189e-05 1.506e-05 2.80644e-05 1.6507e-05 2.81191e-05 2.41409e-05 1.44482e-05 2.51641e-05 1.4867e-05 2.69409e-05 1.51474e-05 2.80546e-05 1.55296e-05 2.90245e-05 1.70902e-05 2.75604e-05 2.36797e-05 1.45396e-05 2.48122e-05 1.4852e-05 2.68648e-05 1.5118e-05 2.86918e-05 1.68624e-05 2.83416e-05 2.43608e-05 1.45373e-05 2.56803e-05 1.51834e-05 2.75888e-05 1.55025e-05 2.8811e-05 1.70717e-05 2.73625e-05 2.36142e-05 1.44725e-05 2.47614e-05 1.48249e-05 2.68923e-05 1.52202e-05 2.88233e-05 1.70691e-05 2.86313e-05 2.47437e-05 1.4873e-05 2.61835e-05 1.54016e-05 2.80259e-05 1.57712e-05 2.91977e-05 1.73473e-05 2.77832e-05 2.41474e-05 1.48085e-05 2.54384e-05 1.53546e-05 2.7857e-05 1.6866e-05 2.81627e-05 2.45974e-05 1.48503e-05 2.57406e-05 1.53952e-05 2.78557e-05 1.58549e-05 2.94729e-05 1.74862e-05 2.89742e-05 2.49693e-05 1.51081e-05 2.57755e-05 1.5585e-05 2.80153e-05 1.70649e-05 2.81403e-05 2.45278e-05 1.49371e-05 2.62225e-05 1.57311e-05 2.85831e-05 1.72745e-05 2.83934e-05 2.46562e-05 1.50387e-05 2.54041e-05 1.54727e-05 2.76769e-05 1.68815e-05 2.76958e-05 2.42386e-05 1.48029e-05 2.59429e-05 1.55963e-05 2.82391e-05 1.71389e-05 2.81153e-05 2.44877e-05 1.49959e-05 2.53905e-05 1.55403e-05 2.77785e-05 1.703e-05 2.80053e-05 2.45156e-05 1.51271e-05 2.62158e-05 1.68878e-05 2.59834e-05 2.31452e-05 1.45904e-05 2.4735e-05 1.51796e-05 2.73094e-05 1.67045e-05 2.76673e-05 2.44295e-05 1.50288e-05 2.62268e-05 1.6834e-05 2.70552e-05 2.39984e-05 1.48673e-05 2.49589e-05 1.53628e-05 2.74191e-05 1.68979e-05 2.78383e-05 2.45066e-05 1.51786e-05 2.6429e-05 1.70889e-05 2.63645e-05 2.36743e-05 1.49668e-05 2.56797e-05 1.6699e-05 2.68168e-05 2.40121e-05 1.5e-05 2.58805e-05 1.68996e-05 2.5806e-05 2.32504e-05 1.48939e-05 2.53867e-05 1.6601e-05 2.67121e-05 2.38861e-05 1.49747e-05 2.58734e-05 1.68373e-05 2.58756e-05 2.33764e-05 1.48358e-05 2.55658e-05 1.67094e-05 2.69435e-05 2.42527e-05 1.512e-05 2.62955e-05 1.71601e-05 2.64251e-05 2.39559e-05 1.53312e-05 2.64256e-05 1.737e-05 2.83346e-05 2.57206e-05 1.68994e-05 2.65297e-05 2.46982e-05 1.58145e-05 2.64859e-05 1.74098e-05 2.77446e-05 2.50312e-05 1.66157e-05 2.49486e-05 2.34872e-05 1.54089e-05 2.61354e-05 1.73412e-05 2.82177e-05 2.57794e-05 1.70228e-05 2.66543e-05 2.50188e-05 1.60659e-05 2.70019e-05 1.79377e-05 2.85961e-05 2.60049e-05 1.73736e-05 2.63904e-05 2.50179e-05 1.73165e-05 2.63351e-05 2.46848e-05 1.71184e-05 2.56468e-05 2.45364e-05 1.70954e-05 2.58353e-05 2.42859e-05 1.68299e-05 2.50732e-05 2.42515e-05 1.66136e-05 2.52976e-05 2.38715e-05 1.64326e-05 2.49518e-05 2.40279e-05 1.67056e-05 2.55613e-05 2.41338e-05 1.67134e-05 2.53585e-05 2.44667e-05 1.7021e-05 2.61237e-05 2.50093e-05 1.70829e-05 2.64403e-05 2.56353e-05 1.77509e-05 3.09162e-05 2.46891e-05 2.33177e-05 1.72831e-05 2.65932e-05 2.60321e-05 1.80217e-05 3.17665e-05 2.52118e-05 2.39965e-05 1.76497e-05 2.60414e-05 2.56505e-05 1.81987e-05 3.17659e-05 2.56039e-05 2.42546e-05 1.79423e-05 3.05972e-05 2.50696e-05 2.49242e-05 1.88003e-05 3.10765e-05 3.04054e-05 2.47071e-05 2.41019e-05 1.86074e-05 2.99044e-05 2.83693e-05 2.42678e-05 2.47503e-05 1.93016e-05 3.30474e-05 3.233e-05 2.80765e-05 2.7819e-05 2.4483e-05 2.47363e-05 1.90087e-05 3.37314e-05 2.8275e-05 2.83131e-05 2.60839e-05 2.65011e-05 2.49661e-05 2.56315e-05 2.46807e-05 2.55181e-05 2.43057e-05 2.50381e-05 2.42331e-05 2.50106e-05 2.42702e-05 2.51048e-05 2.45049e-05 2.53484e-05 2.49088e-05 2.57551e-05 2.54836e-05 2.62959e-05 2.61471e-05 2.69264e-05 2.68548e-05 2.7611e-05 2.76123e-05 2.83361e-05 2.83349e-05 2.90321e-05 2.90382e-05 2.9716e-05 2.97289e-05 3.04013e-05 3.04388e-05 3.11121e-05 3.11745e-05 3.18567e-05 3.19618e-05 3.26546e-05 3.27822e-05 3.3483e-05 3.36384e-05 3.43694e-05 3.4526e-05 3.5285e-05 3.54478e-05 3.62425e-05 3.63986e-05 3.72319e-05 3.73842e-05 3.8248e-05 3.83825e-05 3.92781e-05 3.94015e-05 4.03206e-05 4.04195e-05 4.13619e-05 4.14428e-05 4.24021e-05 4.24532e-05 4.34345e-05 4.34661e-05 4.44618e-05 4.44598e-05 4.54735e-05 4.54479e-05 4.64721e-05 4.64092e-05 4.74479e-05 4.73589e-05 4.84047e-05 4.82757e-05 4.93332e-05 4.91764e-05 5.02382e-05 5.00396e-05 5.11113e-05 5.08838e-05 5.19578e-05 5.16877e-05 5.27707e-05 5.24713e-05 5.35553e-05 5.32222e-05 5.43102e-05 5.39546e-05 5.50369e-05 5.46466e-05 5.57303e-05 5.53156e-05 5.63937e-05 5.59436e-05 5.70242e-05 5.655e-05 5.76259e-05 5.71206e-05 5.81929e-05 5.76578e-05 5.87363e-05 5.81734e-05 5.92483e-05 5.86551e-05 5.97376e-05 5.91125e-05 6.02007e-05 5.95522e-05 6.06393e-05 5.99566e-05 6.10521e-05 6.03478e-05 6.14439e-05 6.07066e-05 6.18127e-05 6.10548e-05 6.21628e-05 6.13731e-05 6.24923e-05 6.16831e-05 6.28053e-05 6.19654e-05 6.30998e-05 6.22416e-05 6.33799e-05 6.24921e-05 6.36435e-05 6.27387e-05 6.38946e-05 6.29616e-05 6.41311e-05 6.31824e-05 6.43567e-05 6.33809e-05 6.45694e-05 6.3579e-05 6.47727e-05 6.37564e-05 6.49645e-05 6.39348e-05 6.5148e-05 6.40937e-05 6.53214e-05 6.42548e-05 6.54878e-05 6.43977e-05 6.56451e-05 6.45439e-05 6.57964e-05 6.46729e-05 6.59397e-05 6.48061e-05 6.60778e-05 6.4923e-05 6.62088e-05 6.5045e-05 6.63354e-05 6.51514e-05 6.64556e-05 6.52635e-05 6.6572e-05 6.53607e-05 6.66827e-05 6.54642e-05 6.67901e-05 6.55534e-05 6.68925e-05 6.56494e-05 6.69922e-05 6.57318e-05 6.70873e-05 6.58214e-05 6.71802e-05 6.58977e-05 6.72689e-05 6.59815e-05 6.73556e-05 6.60524e-05 6.74385e-05 6.61311e-05 6.75197e-05 6.61973e-05 6.75976e-05 6.62716e-05 6.76741e-05 6.63337e-05 6.77475e-05 6.64039e-05 6.78195e-05 6.64623e-05 6.78888e-05 6.65289e-05 6.7957e-05 6.6584e-05 6.80226e-05 6.66474e-05 6.80872e-05 6.66994e-05 6.81495e-05 6.67599e-05 6.82109e-05 6.68091e-05 6.82701e-05 6.68669e-05 6.83285e-05 6.69135e-05 6.83848e-05 6.69688e-05 6.84404e-05 6.70132e-05 6.84943e-05 6.70663e-05 6.85473e-05 6.71084e-05 6.85986e-05 6.71592e-05 6.86493e-05 6.71994e-05 6.86984e-05 6.72484e-05 6.87469e-05 6.72866e-05 6.87938e-05 6.73335e-05 6.88401e-05 6.73699e-05 6.88851e-05 6.74153e-05 6.89295e-05 6.745e-05 6.89726e-05 6.74935e-05 6.9015e-05 6.75265e-05 6.90564e-05 6.75687e-05 6.90974e-05 6.76005e-05 6.91375e-05 6.76415e-05 6.9177e-05 6.7672e-05 6.92157e-05 6.77117e-05 6.92539e-05 6.77413e-05 6.92916e-05 6.77801e-05 6.93286e-05 6.78085e-05 6.9365e-05 6.78461e-05 6.94006e-05 6.78735e-05 6.94359e-05 6.79101e-05 6.94702e-05 6.79363e-05 6.95041e-05 6.79717e-05 6.95373e-05 6.79971e-05 6.95704e-05 6.80318e-05 6.96024e-05 6.80558e-05 6.96336e-05 6.80886e-05 6.96639e-05 6.81116e-05 6.96946e-05 6.81445e-05 6.97249e-05 6.8167e-05 6.97544e-05 6.8198e-05 6.9782e-05 6.82181e-05 6.98096e-05 6.82484e-05 6.98373e-05 6.82693e-05 6.98655e-05 6.82992e-05 6.98917e-05 6.83178e-05 6.99169e-05 6.83451e-05 6.99412e-05 6.83629e-05 6.99666e-05 6.83911e-05 6.99915e-05 6.84173e-05 7.00077e-05 6.84247e-05 7.00304e-05 6.84448e-05 7.00558e-05 6.84719e-05 7.00793e-05 6.84891e-05 7.01036e-05 6.8516e-05 7.01266e-05 6.85317e-05 7.0148e-05 6.85548e-05 7.01669e-05 6.85671e-05 7.01863e-05 6.85902e-05 7.02068e-05 6.86052e-05 7.02286e-05 6.86292e-05 7.02477e-05 6.86406e-05 7.02646e-05 6.86599e-05 7.02803e-05 6.86705e-05 7.02989e-05 6.86935e-05 7.03189e-05 6.87072e-05 7.0338e-05 6.87276e-05 7.03527e-05 6.87349e-05 7.0366e-05 6.87522e-05 7.03809e-05 6.87632e-05 7.04e-05 6.87863e-05 7.04186e-05 6.87971e-05 7.04333e-05 6.88127e-05 7.04433e-05 6.88167e-05 7.0455e-05 6.88345e-05 7.04717e-05 6.88477e-05 7.04918e-05 6.88698e-05 7.05068e-05 6.88752e-05 7.05152e-05 6.88855e-05 7.0522e-05 6.88896e-05 7.05364e-05 6.89114e-05 7.05563e-05 6.89253e-05 7.05737e-05 6.89418e-05 7.05813e-05 6.89405e-05 7.05854e-05 6.89505e-05 7.05955e-05 6.89602e-05 7.06156e-05 6.89858e-05 7.06358e-05 6.89962e-05 7.06468e-05 6.90056e-05 7.06489e-05 6.90027e-05 7.0656e-05 6.90198e-05 7.06751e-05 6.90375e-05 7.06992e-05 6.90613e-05 7.07122e-05 6.90617e-05 7.07143e-05 6.90676e-05 7.07204e-05 6.90759e-05 7.07426e-05 6.91066e-05 7.0769e-05 6.91221e-05 7.07824e-05 6.91311e-05 7.07827e-05 6.91271e-05 7.07917e-05 6.91497e-05 7.08188e-05 6.91752e-05 7.08483e-05 6.91911e-05 7.08657e-05 6.92034e-05 7.0851e-05 6.91976e-05 7.0869e-05 6.92325e-05 7.08844e-05 6.92811e-05 7.09729e-05 6.93107e-05 7.09664e-05 6.92724e-05 7.09659e-05 6.9314e-05 7.22102e-05 7.14506e-05 7.36883e-05 8.00394e-05 8.22117e-05 0.000139092 0.000133168 0.000116565 0.000193859 0.000110975 0.000118311 0.000167221 0.000109234 0.000118425 0.000171853 0.000108414 0.000117932 0.000161792 0.000108951 0.000118077 0.000167257 0.000108424 0.000117807 0.000162398 0.000108674 0.000117843 0.000166252 0.000108292 0.000117613 0.000162191 0.000108506 0.000117696 0.000165819 0.000108162 0.000117515 0.000162041 0.000108424 0.000117567 0.000165585 0.00010808 0.000117407 0.000161836 0.000108319 0.000117438 0.000165368 0.000107971 0.000117281 0.000161667 0.000108221 0.000117332 0.000165181 0.00010789 0.000117187 0.000161484 0.000108136 0.000117226 0.000164984 0.000107792 0.000117066 0.000161294 0.000108032 0.000117107 0.000164793 0.000107701 0.000116964 0.000161112 0.000107952 0.000117013 0.000164598 0.000107618 0.000116859 0.00016092 0.000107854 0.000116892 0.000164398 0.000107515 0.000116737 0.000160727 0.000107759 0.000116783 0.0001642 0.00010743 0.000116637 0.000160536 0.000107673 0.000116677 0.000163994 0.000107335 0.000116518 0.000160331 0.000107569 0.000116552 0.000163784 0.000107234 0.0001164 0.000160129 0.000107475 0.000116442 0.000163572 0.000107142 0.000116288 0.000159917 0.000107375 0.000116317 0.000163347 0.000107033 0.000116154 0.000159696 0.000107263 0.000116184 0.000163121 0.000106926 0.000116027 0.000159473 0.000107157 0.000116057 0.000162886 0.000106816 0.000115893 0.000159238 0.000107039 0.000115914 0.000162642 0.000106695 0.000115748 0.000158997 0.00010692 0.000115773 0.000162392 0.000106578 0.000115607 0.00015875 0.000106799 0.000115626 0.000162133 0.000106451 0.000115453 0.00015849 0.000106666 0.000115467 0.000161864 0.000106317 0.000115293 0.000158224 0.000106531 0.000115307 0.000161588 0.000106181 0.000115129 0.000157949 0.00010639 0.000115136 0.0001613 0.000106035 0.000114954 0.000157664 0.000106239 0.000114958 0.000161006 0.000105884 0.000114775 0.000157371 0.000106087 0.000114776 0.0001607 0.000105728 0.000114587 0.000157066 0.000105923 0.000114581 0.000160384 0.000105561 0.000114389 0.00015675 0.000105754 0.000114381 0.000160057 0.00010539 0.000114186 0.000156424 0.000105579 0.000114174 0.000159718 0.000105211 0.000113974 0.000156085 0.000105396 0.000113958 0.000159368 0.000105025 0.00011372 0.000155736 0.000105207 0.000113727 0.00015899 0.000104829 0.000113518 0.000155357 0.000105004 0.00011349 0.000158609 0.000104624 0.000113274 0.000154978 0.000104794 0.000113241 0.000158213 0.00010441 0.000113021 0.000154584 0.000104576 0.000112983 0.000157801 0.000104186 0.000112755 0.000154175 0.000104345 0.00011271 0.000157373 0.000103949 0.000112477 0.00015375 0.000104105 0.000112426 0.000156929 0.000103704 0.000112186 0.000153309 0.000103853 0.000112129 0.000156467 0.000103444 0.000111881 0.00015285 0.000103589 0.000111817 0.000155986 0.000103174 0.000111561 0.000152373 0.000103312 0.00011149 0.000155487 0.000102889 0.000111226 0.000151877 0.000103021 0.000111147 0.000154967 0.00010259 0.000110874 0.000151361 0.000102716 0.000110788 0.000154426 0.000102276 0.000110505 0.000150823 0.000102396 0.00011041 0.000153863 0.000101946 0.000110118 0.000150264 0.000102059 0.000110014 0.000153277 0.0001016 0.000109712 0.000149682 0.000101706 0.000109599 0.000152666 0.000101237 0.000109286 0.000149074 0.000101336 0.000109165 0.000152029 0.000100857 0.000108842 0.00014844 0.00010095 0.000108712 0.000151362 0.000100464 0.00010838 0.000147775 0.000100553 0.000108245 0.000150659 0.00010006 0.000107903 0.000147073 0.000100138 0.000107756 0.000149936 9.96349e-05 0.000107401 0.00014634 9.97011e-05 0.000107241 0.000149182 9.91872e-05 0.000106874 0.000145575 9.92406e-05 0.0001067 0.000148396 9.87151e-05 0.000106318 0.000144779 9.87549e-05 0.000106129 0.000147577 9.82171e-05 0.000105732 0.000143948 9.82426e-05 0.000105528 0.000146724 9.76916e-05 0.000105115 0.000143083 9.77016e-05 0.000104894 0.000145835 9.71366e-05 0.000104464 0.000142181 9.71302e-05 0.000104226 0.000144909 9.65503e-05 0.000103778 0.000141241 9.65264e-05 0.000103521 0.000143945 9.59306e-05 0.000103054 0.000140263 9.58881e-05 0.000102776 0.000142942 9.52755e-05 0.000102289 0.000139244 9.52131e-05 0.000101991 0.000141898 9.45826e-05 0.000101482 0.000138184 9.44993e-05 0.000101162 0.000140812 9.38499e-05 0.000100631 0.000137082 9.37441e-05 0.000100287 0.000139683 9.30747e-05 9.9732e-05 0.000135937 9.29454e-05 9.93638e-05 0.00013851 9.2255e-05 9.87836e-05 0.000134748 9.21005e-05 9.83896e-05 0.000137292 9.13881e-05 9.77832e-05 0.000133515 9.12073e-05 9.73624e-05 0.000136029 9.0472e-05 9.6729e-05 0.000132237 9.02638e-05 9.62804e-05 0.00013472 8.9505e-05 9.56192e-05 0.000130913 8.9268e-05 9.51418e-05 0.000133365 8.84851e-05 9.44519e-05 0.000129543 8.82185e-05 9.39454e-05 0.000131961 8.74112e-05 9.32266e-05 0.000128125 8.71145e-05 9.26907e-05 0.000130509 8.62828e-05 9.1943e-05 0.00012666 8.59556e-05 9.13778e-05 0.000129008 8.50999e-05 9.06016e-05 0.000125149 8.47422e-05 9.00075e-05 0.000127459 8.3863e-05 8.92034e-05 0.000123591 8.34749e-05 8.85811e-05 0.000125861 8.25734e-05 8.77501e-05 0.000121987 8.21554e-05 8.71007e-05 0.000124214 8.12327e-05 8.62442e-05 0.000120335 8.07857e-05 8.5569e-05 0.000122517 7.98435e-05 8.46886e-05 0.000118636 7.93687e-05 8.39893e-05 0.000120771 7.84088e-05 8.30871e-05 0.00011689 7.79075e-05 8.23656e-05 0.000118975 7.69316e-05 8.14435e-05 0.000115098 7.64055e-05 8.07023e-05 0.000117131 7.54167e-05 7.97651e-05 0.00011326 7.48722e-05 7.90047e-05 0.000115237 7.38684e-05 7.80564e-05 0.000111375 7.33096e-05 7.72791e-05 0.000113293 7.22918e-05 7.63233e-05 0.000109444 7.17219e-05 7.55319e-05 0.000111303 7.06919e-05 7.4572e-05 0.000107471 7.01132e-05 7.37706e-05 0.00010927 6.90748e-05 7.2811e-05 0.00010546 6.84996e-05 7.20099e-05 0.000107192 6.74543e-05 7.10567e-05 0.000103407 6.68781e-05 7.02566e-05 0.000105079 6.58355e-05 6.93126e-05 0.000101325 6.52511e-05 6.85172e-05 0.000102948 6.42221e-05 6.75893e-05 9.92357e-05 6.36424e-05 6.68112e-05 0.000100806 6.263e-05 6.59088e-05 9.71451e-05 6.20629e-05 6.5158e-05 9.86693e-05 6.10758e-05 6.42913e-05 9.50645e-05 6.05318e-05 6.35788e-05 9.6548e-05 5.95788e-05 6.27596e-05 9.30076e-05 5.90676e-05 6.20993e-05 9.44563e-05 5.81592e-05 6.13431e-05 9.09898e-05 5.7695e-05 6.07518e-05 9.24148e-05 5.68449e-05 6.00767e-05 8.90306e-05 5.64445e-05 5.95733e-05 9.04441e-05 5.56675e-05 5.89989e-05 8.71498e-05 5.53492e-05 5.86054e-05 8.85654e-05 5.46644e-05 5.81509e-05 8.53675e-05 5.44448e-05 5.78904e-05 8.68004e-05 5.38739e-05 5.75724e-05 8.37037e-05 5.37656e-05 5.74643e-05 8.51704e-05 5.33236e-05 5.72986e-05 8.21794e-05 5.33424e-05 5.73621e-05 8.36974e-05 5.30494e-05 5.73623e-05 8.08127e-05 5.32131e-05 5.75791e-05 8.24799e-05 5.30203e-05 5.77025e-05 7.96472e-05 5.32975e-05 5.80226e-05 8.15696e-05 5.31061e-05 5.81356e-05 7.87907e-05 5.34113e-05 5.84251e-05 8.10706e-05 5.31629e-05 5.84747e-05 7.82694e-05 5.34147e-05 5.86957e-05 8.08882e-05 5.31245e-05 5.87038e-05 7.81312e-05 5.33941e-05 5.88857e-05 8.10015e-05 5.30882e-05 5.88172e-05 7.84816e-05 5.33114e-05 5.89104e-05 8.17815e-05 5.28364e-05 5.86172e-05 7.96342e-05 5.29839e-05 5.86403e-05 8.33943e-05 5.25317e-05 5.85392e-05 8.19458e-05 5.2502e-05 5.85337e-05 8.62068e-05 5.2007e-05 5.82865e-05 8.60937e-05 5.18576e-05 5.86753e-05 9.06909e-05 5.16422e-05 5.89514e-05 9.16404e-05 5.19887e-05 5.98687e-05 9.74696e-05 5.22115e-05 6.07852e-05 0.00010034 5.29178e-05 6.17048e-05 0.000110882 5.33268e-05 6.33936e-05 0.000117557 5.52872e-05 6.69681e-05 0.00013923 5.95733e-05 7.85363e-05 0.000166545 7.72897e-05 4.73879e-05 5.01146e-05 5.84649e-05 9.23859e-05 0.000212146 0.00010356 0.000243307 0.000115335 6.34296e-05 7.33417e-05 0.000105822 0.000127807 8.33631e-05 0.000105589 5.08293e-05 5.19491e-05 0.000124941 5.39986e-05 7.21872e-05 0.000170752 7.48274e-05 4.58064e-05 5.10522e-05 6.46213e-05 9.95467e-05 0.000202663 0.000102825 0.00053152 0.000473252 0.000323595 0.000114953 0.000534935 0.00111316 0.000503887 0.000909048 0.000454227 0.000350175 0.000760025 0.000372364 0.000297909 0.000659191 0.000328617 0.000271747 0.000600329 0.000303681 0.000256331 0.00055889 0.00028712 0.000245737 0.000525742 0.000275871 0.000238867 0.000500379 0.000268362 0.000234422 0.000481753 0.000263236 0.000230839 0.000469049 0.000259421 0.000228403 0.000458482 0.000256779 0.000226901 0.000449582 0.000255002 0.000226112 0.000442134 0.000253973 0.000225889 0.00043583 0.000253474 0.000226071 0.000430507 0.00025337 0.000226557 0.000425787 0.000253549 0.000227252 0.000421794 0.000253933 0.000228097 0.00041846 0.000254466 0.00022905 0.000415688 0.000255109 0.000230084 0.000413406 0.000255834 0.000231177 0.000411542 0.000256624 0.000232319 0.000410052 0.000257468 0.000233499 0.000408882 0.000258357 0.000234711 0.000408015 0.000259292 0.000235954 0.000407419 0.000260264 0.000237214 0.000407066 0.00026127 0.000238495 0.000406927 0.000262311 0.000239795 0.000406981 0.000263388 0.000241115 0.000407202 0.000264501 0.000242454 0.000407576 0.00026565 0.000243815 0.000408083 0.000266836 0.000245197 0.000408714 0.000268057 0.000246599 0.000409451 0.000269314 0.000248022 0.00041029 0.000270605 0.000249465 0.000411215 0.000271929 0.000250923 0.000412224 0.000273284 0.000252395 0.000413303 0.000274667 0.000253882 0.000414453 0.000276076 0.000255384 0.00041566 0.00027751 0.000256898 0.000416927 0.000278964 0.000258421 0.00041824 0.000280437 0.00025995 0.000419608 0.000281924 0.000261481 0.000421012 0.000283421 0.000263012 0.000422462 0.000284926 0.000264539 0.000423947 0.000286434 0.000266058 0.00042549 0.000287946 0.000267572 0.000427051 0.000289457 0.000269076 0.000428644 0.000290965 0.00027057 0.000430246 0.000292467 0.000272048 0.000431878 0.00029396 0.000273512 0.000433511 0.000295442 0.000274957 0.000435171 0.000296911 0.000276383 0.000436825 0.000298366 0.000277789 0.000438504 0.000299806 0.000279176 0.000440171 0.000301228 0.00028054 0.000441861 0.000302633 0.000281882 0.000443531 0.000304018 0.0002832 0.000445226 0.000305382 0.000284494 0.000446891 0.000306725 0.000285763 0.000448583 0.000308048 0.000287011 0.000450237 0.000309349 0.000288232 0.000451921 0.000310628 0.000289429 0.000453557 0.000311882 0.000290598 0.000455227 0.000313114 0.000291746 0.000456839 0.000314322 0.000292866 0.000458492 0.000315508 0.000293967 0.000460053 0.00031667 0.000295038 0.000461694 0.000317811 0.000296093 0.000463217 0.000318927 0.000297117 0.000464839 0.000320023 0.000298126 0.000466321 0.000321093 0.000299101 0.000467922 0.000322143 0.000300066 0.000469358 0.000323171 0.000301 0.000470938 0.000324182 0.000301926 0.000472323 0.000325168 0.000302816 0.000473881 0.000326135 0.000303698 0.000475209 0.000327076 0.000304547 0.000476711 0.000328002 0.000305396 0.000477938 0.000328903 0.000306208 0.000479383 0.000329789 0.000307019 0.000480507 0.000330645 0.000307786 0.000481901 0.000331483 0.000308555 0.000482921 0.000332291 0.000309279 0.000484272 0.000333086 0.000310013 0.000485185 0.000333854 0.0003107 0.000486503 0.000334611 0.0003114 0.000487307 0.000335337 0.000312044 0.000488603 0.00033605 0.000312705 0.000489292 0.00033673 0.000313306 0.000490577 0.000337403 0.000313937 0.000491148 0.000338048 0.000314505 0.000492438 0.000338691 0.000315111 0.000492885 0.0003393 0.000315643 0.000494195 0.00033991 0.000316221 0.000494514 0.000340484 0.000316719 0.000495871 0.000341067 0.000317282 0.000496062 0.000341622 0.000317762 0.000497504 0.000342199 0.000318317 0.000497575 0.000342751 0.00031879 0.000499195 0.000343312 0.000319326 0.000498887 0.000343844 0.000319708 0.000502638 0.000344443 0.000320447 0.000500544 0.000345079 0.000320341 0.000522011 0.000346446 0.000322553 0.000514437 0.000346954 0.000333388 0.000656594 0.000647976 0.000431625 0.000211295 0.000190689 0.000191729 0.000183631 0.000366812 0.000617222 0.00121408 0.00118757 0.00173764 0.00181679 0.00234518 0.00229591 0.00287069 0.00290058 0.00349723 0.00347972 0.00414206 0.00415139 0.00488767 0.00488204 0.00573492 0.00573807 0.00674563 0.00674271 0.00795625 0.00795965 0.00943446 0.00943072 0.0112227 0.0112254 0.0133858 0.0133868 0.0159732 0.0159647 0.0190052 0.0190264 0.0225835 0.0225441 0.0266113 0.0266749 0.0313233 0.0312299 0.0364165 0.0365448 0.0423487 0.042181 0.0485268 0.0487375 0.0557074 0.0554508 0.062943 0.0632476 0.0713407 0.0709863 0.0795568 0.0799621 0.08908 0.0886228 0.0981454 0.0986553 0.108641 0.108078 0.118367 0.118984 0.129621 0.128951 0.13976 0.140485 0.151499 0.150721 0.161751 0.162583 0.173649 0.172763 0.183666 0.184605 0.195356 0.194365 0.204763 0.205804 0.215851 0.21476 0.22426 0.225396 0.234345 0.233168 0.241391 0.242605 0.250087 0.24884 0.255422 0.256707 0.262376 0.261047 0.2656 0.266975 0.270408 0.269012 0.271299 0.272693 0.274028 0.272642 0.276176 0.274847 0.272554 0.269094 0.264447 0.258725 0.252048 0.244504 0.236177 0.227154 0.217529 0.2074 0.196866 0.186027 0.174981 0.163825 0.15265 0.141545 0.130591 0.119864 0.109434 0.0993622 0.089703 0.0805038 0.0718044 0.0636372 0.0560277 0.0489939 0.0425476 0.0366933 0.0314289 0.0267455 0.0226268 0.0190495 0.0159823 0.013387 0.011218 0.00942409 0.00794951 0.00673688 0.00572996 0.00487747 0.00413437 0.00346564 0.00284378 0.00224986 0.00167428 0.00108334 0.00108671 0.00165633 0.00164159 0.0010652 0.00106733 0.00164321 0.0022279 0.0022257 0.00223799 0.00283583 0.00282882 0.00283029 0.00282879 0.00222477 0.00163901 0.00106421 0.00106436 0.00164018 0.00163868 0.00106317 0.00106309 0.00163947 0.00222747 0.00222587 0.00222657 0.00283107 0.00283097 0.00283301 0.00283351 0.00222728 0.00163848 0.00106225 0.00106211 0.00163906 0.00163831 0.00106134 0.0010611 0.00163873 0.00223012 0.00222883 0.00222869 0.00283538 0.00283626 0.00283807 0.00283923 0.00223051 0.00163815 0.00106036 0.00106001 0.00163844 0.001638 0.00105929 0.00105885 0.0016382 0.00223346 0.00223229 0.00223172 0.00284102 0.0028424 0.00284422 0.00284579 0.00223418 0.00163785 0.00105812 0.00105758 0.00163799 0.00163772 0.00105683 0.00105621 0.00163781 0.00223737 0.00223619 0.00223534 0.00284767 0.0028494 0.00285137 0.00285325 0.00223833 0.00163761 0.00105543 0.00105472 0.00163769 0.00163755 0.0010539 0.00105312 0.00163762 0.00224184 0.00224059 0.00223953 0.00285531 0.00285734 0.00285952 0.0028617 0.00224299 0.00163755 0.00105226 0.00105142 0.00163764 0.00163764 0.00105051 0.00104959 0.00163777 0.00224691 0.00224554 0.00224429 0.002864 0.00286633 0.00286877 0.00350645 0.00350337 0.00350042 0.00349754 0.00349479 0.0034921 0.00348955 0.00348704 0.00348467 0.00348233 0.00348015 0.00347795 0.00347597 0.00347391 0.00347212 0.00347018 0.00346861 0.00346677 0.00346544 0.00346368 0.00346263 0.00346093 0.00346027 0.00345848 0.00345869 0.00345771 0.00346105 0.00413208 0.00413033 0.00413081 0.00487342 0.00487387 0.00487559 0.00572783 0.00572473 0.00572283 0.00672469 0.00672852 0.00673327 0.00794436 0.00793821 0.00793266 0.00940545 0.00941177 0.00941834 0.0112137 0.0112087 0.0112038 0.0111986 0.00939887 0.00792676 0.00672051 0.00572045 0.00487258 0.00413081 0.00413184 0.00413237 0.00413349 0.00487203 0.00487205 0.00487247 0.00571868 0.00571663 0.0057149 0.0057131 0.00487188 0.00413432 0.00413556 0.00413665 0.00413804 0.00487241 0.00487211 0.00487201 0.00571149 0.0057099 0.00570845 0.00669369 0.00669738 0.00670115 0.00670492 0.0067088 0.00671264 0.00671665 0.00792105 0.0079152 0.00790939 0.00937876 0.00938557 0.0093923 0.0111932 0.0111877 0.0111819 0.011176 0.00937182 0.00790352 0.00789766 0.00789176 0.00788585 0.00935037 0.00935763 0.00936478 0.0111698 0.0111635 0.0111569 0.0133755 0.0133778 0.0133799 0.0133817 0.0133833 0.0133846 0.0133856 0.0133864 0.0133869 0.0133872 0.0133873 0.0159918 0.016001 0.0160101 0.0191222 0.0190981 0.0190737 0.0226726 0.022719 0.0227653 0.0269736 0.026897 0.0268205 0.0315417 0.0316573 0.0317734 0.0371833 0.0370176 0.0368532 0.0427641 0.0429878 0.0432138 0.0434417 0.0373499 0.0318899 0.0270502 0.0228114 0.019146 0.0160188 0.0160272 0.0160354 0.0160433 0.0192166 0.0191932 0.0191697 0.0228575 0.0229037 0.0229501 0.0229966 0.0192398 0.016051 0.0160585 0.0160657 0.0160726 0.0193088 0.019286 0.019263 0.0230433 0.0230902 0.0231372 0.0276022 0.0275213 0.0274412 0.0273617 0.0272828 0.0272047 0.0271271 0.0320072 0.0321258 0.0322457 0.0378612 0.0376885 0.0375181 0.0436722 0.0439062 0.0441437 0.044385 0.0380364 0.032367 0.0324898 0.032614 0.0327397 0.0385769 0.0383941 0.038214 0.0446302 0.0448794 0.0451326 0.04539 0.0387624 0.032867 0.0276838 0.0231844 0.0193315 0.0160792 0.0133728 0.0111501 0.00934299 0.00787992 0.00669004 0.00570705 0.00487274 0.00413937 0.00414092 0.00414247 0.0041442 0.00487446 0.00487377 0.00487323 0.00570576 0.00570455 0.00570345 0.00570243 0.00487522 0.00414596 0.00414788 0.00414985 0.00415196 0.0048782 0.00487709 0.00487611 0.00570151 0.00570069 0.00569997 0.00666612 0.00666935 0.00667265 0.00667601 0.00667943 0.00668291 0.00668645 0.00787398 0.00786803 0.00786206 0.00932019 0.00932791 0.00933551 0.0111431 0.0111359 0.0111285 0.0111208 0.00931236 0.00785608 0.0078501 0.0078441 0.00783811 0.0092882 0.00929637 0.00930442 0.0111128 0.0111047 0.0110962 0.0110876 0.00927992 0.00783212 0.00666296 0.00569935 0.00487941 0.00415415 0.00415647 0.00415888 0.00416142 0.00488374 0.00488218 0.00488074 0.00569884 0.00569844 0.00569814 0.00569796 0.00488542 0.00416405 0.00416681 0.00416969 0.00417269 0.00489121 0.00488915 0.00488722 0.0056979 0.00569795 0.00569813 0.00664312 0.00664568 0.00664834 0.0066511 0.00665394 0.00665687 0.00665988 0.00782613 0.00782015 0.00781418 0.00925444 0.00926304 0.00927153 0.0110786 0.0110695 0.01106 0.0110503 0.00924575 0.00780823 0.00780231 0.00779641 0.00779055 0.00921911 0.00922808 0.00923696 0.0110403 0.0110301 0.0110196 0.0132906 0.0132989 0.0133068 0.0133142 0.0133212 0.0133278 0.013334 0.0133397 0.0133451 0.0133501 0.0133547 0.013359 0.0133629 0.0133665 0.0133698 0.0160855 0.0160915 0.0160971 0.0193985 0.0193764 0.019354 0.0232317 0.0232792 0.0233269 0.0233746 0.0194204 0.0161024 0.0161073 0.0161119 0.016116 0.0194847 0.0194636 0.0194421 0.0234225 0.0234706 0.0235187 0.028276 0.0281891 0.0281029 0.0280176 0.027933 0.0278492 0.0277661 0.0329958 0.0331263 0.0332585 0.0393359 0.0391418 0.0389507 0.0456518 0.0459181 0.046189 0.0464648 0.0395331 0.0333924 0.0335281 0.0336656 0.0338051 0.0401443 0.0399372 0.0397335 0.0467455 0.0470315 0.047323 0.0476201 0.040355 0.0339465 0.0283638 0.0235669 0.0195056 0.0161198 0.0161231 0.0161259 0.0161281 0.0195661 0.0195463 0.0195261 0.0236151 0.0236635 0.0237119 0.0237603 0.0195855 0.01613 0.0161313 0.0161321 0.0161322 0.019641 0.019623 0.0196045 0.0238087 0.023857 0.0239052 0.0290021 0.0289084 0.0288154 0.0287234 0.0286322 0.0285419 0.0284524 0.0340899 0.0342355 0.0343832 0.0410101 0.0407878 0.0405695 0.0479232 0.0482324 0.0485482 0.0488709 0.0412367 0.0345331 0.0346854 0.03484 0.0349971 0.0419435 0.0417031 0.0414676 0.0492006 0.049538 0.0498832 0.0588477 0.0583744 0.057913 0.0574628 0.0570233 0.0565939 0.056174 0.0557633 0.0553613 0.0549676 0.0545818 0.0542037 0.0538328 0.053469 0.0531119 0.0527613 0.0524171 0.052079 0.0517467 0.0514203 0.0510995 0.0507842 0.0504741 0.050169 0.0498681 0.0495703 0.0492766 0.0563856 0.0567602 0.0571416 0.0650221 0.0645454 0.0640791 0.0723381 0.0729062 0.0734902 0.0825189 0.0818161 0.0811364 0.0904408 0.091241 0.0920735 0.102112 0.10114 0.100211 0.110398 0.111463 0.112585 0.113748 0.103116 0.0929288 0.083238 0.0740856 0.0655065 0.0575279 0.0579203 0.0583198 0.0587267 0.0670155 0.0665026 0.0659997 0.0746931 0.0753139 0.075948 0.0765957 0.0675388 0.0591413 0.0595636 0.0599939 0.0604325 0.0691725 0.0686171 0.0680726 0.0772572 0.0779327 0.0786225 0.0887591 0.0879166 0.0870924 0.0862862 0.0854978 0.0847271 0.0839737 0.0938066 0.0947074 0.0956306 0.106304 0.105212 0.104149 0.11495 0.11619 0.117465 0.118777 0.107424 0.0965764 0.0975448 0.098536 0.0995503 0.110955 0.109749 0.108572 0.120124 0.121506 0.122923 0.135395 0.133745 0.132139 0.130576 0.129057 0.127582 0.126151 0.124769 0.123435 0.122155 0.120947 0.131797 0.133152 0.134598 0.146001 0.144383 0.142875 0.154107 0.155771 0.157567 0.16921 0.167232 0.16541 0.176694 0.178676 0.180839 0.192358 0.190009 0.187868 0.198833 0.201133 0.203667 0.20639 0.194872 0.183144 0.171309 0.159465 0.147703 0.136111 0.137686 0.13932 0.14101 0.153249 0.151331 0.149481 0.161455 0.163531 0.165689 0.167926 0.155232 0.142753 0.14455 0.1464 0.148303 0.161567 0.159391 0.15728 0.170241 0.172632 0.175101 0.188807 0.186028 0.183341 0.180745 0.178241 0.175831 0.173518 0.185578 0.188134 0.190805 0.203278 0.20034 0.197535 0.209284 0.21234 0.215551 0.21891 0.206346 0.193587 0.196477 0.199475 0.202582 0.21631 0.212862 0.209541 0.222417 0.226071 0.229872 0.233823 0.219887 0.205798 0.191679 0.177647 0.163808 0.150259 0.13709 0.124377 0.11219 0.100588 0.0896204 0.079327 0.0697393 0.0608795 0.0613352 0.0617999 0.062274 0.0715108 0.070908 0.0703177 0.0800466 0.0807817 0.0815329 0.0823006 0.0721264 0.0627577 0.0632515 0.0637558 0.064271 0.0740554 0.0733981 0.0727553 0.0830855 0.0838882 0.0847094 0.0962197 0.0952111 0.0942258 0.0932628 0.0923214 0.091401 0.0905008 0.10165 0.102737 0.103849 0.116077 0.114751 0.113455 0.125867 0.127395 0.128961 0.130566 0.117436 0.104986 0.106151 0.107343 0.108564 0.121712 0.120252 0.118827 0.13221 0.133896 0.135623 0.137392 0.123207 0.109815 0.0972524 0.08555 0.0747278 0.0647977 0.0653364 0.0658877 0.0664522 0.0768434 0.076121 0.0754161 0.0864108 0.0872929 0.0881973 0.0891253 0.0775844 0.0670308 0.0676241 0.0682332 0.0688588 0.0799296 0.0791262 0.0783449 0.0900783 0.0910577 0.0920652 0.105263 0.104024 0.102819 0.101648 0.100507 0.0993946 0.0983103 0.111096 0.112409 0.113756 0.127921 0.126311 0.12474 0.139206 0.141066 0.142972 0.144927 0.129574 0.115137 0.116556 0.118015 0.119514 0.134803 0.133012 0.13127 0.146932 0.148991 0.151106 0.168395 0.165921 0.16351 0.161159 0.158867 0.156631 0.15445 0.152322 0.150246 0.148222 0.146247 0.144321 0.142443 0.140613 0.138828 0.15227 0.154336 0.156457 0.170926 0.168486 0.166114 0.180271 0.182976 0.185761 0.188628 0.173434 0.158636 0.160872 0.163168 0.165523 0.18138 0.17866 0.176012 0.191579 0.194614 0.197735 0.214492 0.210933 0.207476 0.204119 0.200863 0.197705 0.194645 0.209125 0.212566 0.216123 0.231418 0.227438 0.223595 0.237929 0.242192 0.246617 0.251209 0.235538 0.219797 0.22359 0.227506 0.231543 0.248764 0.244209 0.239801 0.255971 0.260907 0.26602 0.271311 0.253468 0.235703 0.218154 0.200941 0.184171 0.167938 0.170415 0.172954 0.175557 0.192983 0.189972 0.187035 0.204233 0.207611 0.211075 0.214625 0.196069 0.178225 0.180959 0.183761 0.186634 0.205781 0.202466 0.199229 0.21826 0.22198 0.225787 0.246593 0.24224 0.23798 0.233817 0.22975 0.225784 0.221918 0.239986 0.24439 0.248914 0.268457 0.263316 0.258319 0.276782 0.28243 0.288252 0.294242 0.273736 0.253555 0.258308 0.26317 0.268136 0.290339 0.284686 0.279148 0.30039 0.306686 0.313115 0.336365 0.329056 0.321905 0.314932 0.308154 0.301581 0.295222 0.28908 0.283156 0.277448 0.271952 0.266664 0.261579 0.25669 0.251991 0.247476 0.24314 0.238978 0.234987 0.231164 0.22751 0.224026 0.220717 0.217594 0.214664 0.211946 0.20949 0.219739 0.222347 0.225243 0.235301 0.232232 0.229478 0.238608 0.2415 0.244734 0.253443 0.250056 0.247035 0.254669 0.257808 0.261336 0.268326 0.264672 0.261429 0.267222 0.270559 0.274325 0.278457 0.27233 0.265192 0.257137 0.248251 0.238631 0.228376 0.231726 0.235284 0.239039 0.250023 0.246002 0.242201 0.252033 0.256068 0.260345 0.264862 0.25426 0.242988 0.247127 0.251458 0.255984 0.268267 0.263379 0.258712 0.269617 0.274613 0.279855 0.290614 0.28503 0.27972 0.274676 0.269893 0.265372 0.261117 0.269355 0.273815 0.278561 0.286253 0.281303 0.276658 0.282932 0.287738 0.292867 0.298318 0.291508 0.283591 0.288906 0.294511 0.300415 0.30914 0.302942 0.297068 0.304095 0.310206 0.316663 0.322822 0.316147 0.309839 0.303882 0.298267 0.29299 0.288049 0.283453 0.279211 0.275348 0.271931 0.275436 0.278916 0.282856 0.285255 0.281265 0.277752 0.279074 0.282587 0.286604 0.291029 0.289644 0.287184 0.291875 0.296918 0.302311 0.304989 0.299519 0.294403 0.295835 0.300998 0.306515 0.312387 0.310813 0.308051 0.314144 0.320603 0.327443 0.330509 0.323558 0.316998 0.318624 0.325241 0.332257 0.339694 0.337876 0.334688 0.329884 0.323486 0.315678 0.306632 0.296481 0.285353 0.273382 0.260709 0.265641 0.270786 0.276152 0.290179 0.284328 0.278733 0.291117 0.29716 0.303496 0.310141 0.296299 0.281749 0.287585 0.293668 0.300005 0.316385 0.309389 0.302698 0.317111 0.324424 0.332097 0.346933 0.338574 0.330638 0.3231 0.315937 0.309126 0.302647 0.313178 0.320073 0.327339 0.337548 0.329856 0.322575 0.330697 0.338323 0.346396 0.354954 0.345681 0.335003 0.343093 0.351639 0.360677 0.373112 0.363421 0.354292 0.36404 0.373703 0.383999 0.394993 0.383416 0.370243 0.355741 0.340148 0.323695 0.306604 0.313469 0.3206 0.327995 0.347584 0.339292 0.331329 0.348592 0.35744 0.3667 0.376372 0.3562 0.335647 0.343542 0.351659 0.35997 0.38379 0.374333 0.365125 0.386442 0.396885 0.407653 0.431352 0.41908 0.407247 0.395909 0.385093 0.374801 0.365023 0.380374 0.391108 0.402481 0.41855 0.406076 0.394384 0.406757 0.419372 0.432927 0.447518 0.431864 0.41452 0.427243 0.440642 0.454777 0.478792 0.46122 0.446072 0.463247 0.481168 0.504727 0.532303 0.500677 0.47849 0.460911 0.445117 0.430562 0.41711 0.404636 0.393033 0.38221 0.372085 0.362593 0.353673 0.345275 0.337358 0.342364 0.350505 0.359152 0.362798 0.353981 0.345688 0.347585 0.355965 0.364879 0.37438 0.372189 0.368353 0.378163 0.388649 0.399889 0.404476 0.392949 0.382215 0.384532 0.39541 0.407104 0.419725 0.4169 0.411977 0.425024 0.439164 0.454559 0.460987 0.444977 0.430348 0.433409 0.448325 0.464691 0.482935 0.478651 0.471396 0.491224 0.518562 0.558871 0.580336 0.532693 0.500643 0.506511 0.541804 0.594246 0.668389 0.64845 0.617308 0.578412 0.538365 0.502219 0.471247 0.444165 0.418687 0.393448 0.368441 0.343808 0.319662 0.296099 0.273201 0.251039 0.229679 0.209176 0.18958 0.170936 0.15328 0.136646 0.121059 0.10654 0.0931028 0.0807565 0.0695021 0.0593336 0.0502368 0.0421888 0.0351567 0.0290967 0.0239534 0.0196585 0.0161318 0.0132818 0.0110089 0.00921007 0.00778473 0.00664065 0.00569843 0.00489339 0.0041758 0.00350962 0.00287126 0.00224825 0.00163784 0.00104863 0.00104765 0.00163801 0.00163809 0.00104664 0.0010456 0.00163824 0.00225261 0.00225111 0.00224968 0.00287385 0.00287651 0.00287926 0.00288209 0.00225413 0.00163834 0.00104454 0.00104345 0.00163849 0.00163859 0.00104233 0.00104118 0.00163874 0.00225905 0.00225735 0.00225573 0.00288503 0.00288805 0.00289118 0.0028944 0.00226078 0.00163886 0.00104002 0.00103882 0.00163902 0.00163916 0.0010376 0.00103635 0.00163934 0.00226639 0.00226445 0.00226259 0.00289774 0.00290119 0.00290476 0.00290845 0.00226839 0.00163951 0.00103509 0.00103379 0.00163971 0.00163992 0.00103248 0.00103114 0.00164016 0.00227488 0.00227264 0.00227048 0.00291226 0.00291621 0.0029203 0.00292454 0.00227722 0.00164042 0.00102979 0.00102841 0.0016407 0.00164102 0.00102703 0.00102562 0.00164138 0.00228482 0.00228218 0.00227965 0.00292893 0.00293347 0.00293819 0.00294308 0.00228757 0.00164177 0.0010242 0.00102277 0.00164221 0.00164269 0.00102133 0.00101989 0.00164323 0.00229659 0.00229345 0.00229044 0.00294816 0.00295343 0.0029589 0.00296458 0.00229988 0.00164384 0.00101844 0.00101699 0.00164451 0.00164525 0.00101556 0.00101412 0.00164608 0.00231073 0.00230694 0.00230333 0.0029705 0.00297664 0.00298304 0.00298971 0.00231471 0.00164699 0.0010127 0.0010113 0.00164801 0.00164914 0.00100993 0.00100858 0.00165038 0.00232793 0.0023233 0.0023189 0.00299664 0.00300394 0.00301149 0.00301928 0.00233282 0.00165176 0.00100728 0.00100602 0.00165329 0.00165498 0.00100481 0.00100366 0.00165684 0.00234917 0.00234341 0.00233798 0.00302758 0.00303613 0.00304516 0.00305455 0.00235531 0.00165889 0.00100259 0.0010016 0.00166115 0.00166363 0.0010007 0.000999907 0.00166637 0.00237574 0.00236845 0.00236173 0.00306442 0.00307473 0.00308558 0.00309693 0.00238334 0.00166937 0.00099923 0.00099868 0.00167268 0.0016763 0.000998279 0.000998038 0.00168028 0.00240933 0.00240012 0.00239151 0.00310888 0.00312142 0.00313463 0.00314852 0.00241909 0.00168469 0.000997981 0.000998124 0.00168955 0.00169473 0.000998493 0.000999113 0.00170048 0.00245252 0.00244063 0.00242953 0.00316317 0.00317861 0.00319493 0.00321218 0.00246523 0.00170685 0.00100001 0.00100122 0.0017138 0.00172148 0.00100278 0.00100472 0.00172992 0.00250915 0.00249345 0.00247885 0.00323044 0.00324978 0.00327031 0.00329212 0.00252604 0.00173924 0.00100711 0.00100998 0.00174951 0.00176088 0.00101354 0.00101761 0.00177345 0.00258527 0.00256395 0.00254426 0.00331534 0.00334009 0.00336651 0.00339478 0.00260843 0.00178744 0.00102231 0.00102823 0.00180302 0.00182039 0.00103488 0.00104299 0.00183988 0.00269125 0.00266113 0.00263362 0.00342507 0.00345761 0.00349264 0.00353043 0.00272432 0.00186173 0.00105227 0.0010634 0.00188646 0.00191444 0.00107632 0.00109181 0.0019464 0.00284599 0.00280114 0.00276079 0.0035713 0.00361561 0.00366379 0.00437844 0.00432795 0.00428561 0.00424598 0.00420885 0.00417402 0.00414128 0.00411046 0.0040814 0.00405396 0.00402802 0.00400346 0.00398019 0.00395809 0.00393711 0.00391715 0.00389815 0.00388005 0.00386279 0.00384631 0.00383057 0.00381552 0.00380114 0.00378736 0.00377416 0.00376151 0.00374939 0.00373775 0.00372659 0.00371584 0.00370555 0.0036956 0.0036861 0.00367687 0.00366813 0.00365958 0.00365132 0.0036434 0.00363577 0.0036284 0.00362129 0.00361442 0.0036078 0.00360139 0.0035952 0.00358922 0.00358344 0.00357785 0.00357244 0.00356722 0.00356216 0.00355727 0.00355254 0.00354796 0.00354353 0.00353924 0.0035351 0.00353108 0.0035272 0.00352345 0.00351982 0.0035163 0.00351291 0.00417905 0.00418243 0.00418593 0.00490076 0.00489816 0.00489571 0.00569887 0.00569943 0.00570012 0.00570095 0.00490349 0.00418958 0.00419336 0.00419728 0.00420135 0.00491254 0.00490938 0.00490636 0.00570192 0.00570304 0.0057043 0.00662667 0.00662828 0.00663004 0.00663192 0.00663393 0.00663605 0.0066383 0.00777896 0.00777324 0.00776759 0.00918256 0.00919179 0.00920096 0.0109979 0.0109866 0.0109751 0.0109633 0.0091733 0.00776202 0.00775652 0.00775111 0.0077458 0.00914537 0.00915469 0.009164 0.0109514 0.0109391 0.0109267 0.0109141 0.00913606 0.0077406 0.00662519 0.0057057 0.00491586 0.00420556 0.00420993 0.00421445 0.00421914 0.00492675 0.00492296 0.00491933 0.00570726 0.00570897 0.00571084 0.00571287 0.0049307 0.00422398 0.004229 0.0042342 0.00423957 0.00494358 0.00493911 0.00493482 0.00571506 0.00571742 0.00571994 0.00661919 0.00661955 0.00662008 0.00662078 0.00662165 0.00662268 0.00662386 0.00773551 0.00773056 0.00772574 0.00910836 0.00911754 0.00912678 0.0109013 0.0108883 0.0108752 0.010862 0.00909927 0.00772107 0.00771656 0.00771223 0.00770807 0.0090727 0.00908142 0.00909028 0.0108487 0.0108353 0.0108219 0.0130889 0.0131052 0.013121 0.0131365 0.0131514 0.0131658 0.0131798 0.0131932 0.0132061 0.0132184 0.0132303 0.0132416 0.0132524 0.0132627 0.0132725 0.0161306 0.0161289 0.0161264 0.019707 0.0196915 0.0196753 0.0240013 0.024049 0.0240964 0.0241435 0.0197217 0.0161231 0.0161191 0.0161142 0.0161086 0.0197604 0.0197484 0.0197355 0.0241901 0.0242362 0.0242816 0.0297801 0.0296806 0.0295816 0.0294832 0.0293855 0.0292884 0.0291922 0.0353188 0.0354836 0.0356511 0.0429567 0.0426952 0.0424392 0.0505991 0.0509706 0.0513519 0.0517434 0.0432241 0.0358214 0.0359944 0.0361702 0.0363488 0.0440638 0.0437774 0.0434976 0.0521457 0.0525592 0.0529847 0.0534228 0.0443569 0.0365302 0.02988 0.0243262 0.0197713 0.016102 0.0160945 0.016086 0.0160766 0.0197966 0.0197895 0.019781 0.02437 0.0244126 0.0244541 0.0244941 0.0198022 0.0160661 0.0160546 0.016042 0.0160283 0.0198093 0.0198088 0.0198063 0.0245325 0.0245691 0.0246034 0.030575 0.030478 0.0303797 0.0302804 0.0301806 0.0300804 0.0299802 0.0367144 0.0369012 0.0370907 0.0452788 0.0449643 0.044657 0.053874 0.0543391 0.0548187 0.0553136 0.0456009 0.0372825 0.0374767 0.0376727 0.0378705 0.0466125 0.0462677 0.0459305 0.0558244 0.0563519 0.0568967 0.0574595 0.0469647 0.0380694 0.0306704 0.0246354 0.0198076 0.0160136 0.0130722 0.0108086 0.00906416 0.00770411 0.00661901 0.00572264 0.00494823 0.00424513 0.00425088 0.00425683 0.00426298 0.00496329 0.00495808 0.00495306 0.00572552 0.00572858 0.00573182 0.00573525 0.0049687 0.00426934 0.00427592 0.00428273 0.00428977 0.00498621 0.00498015 0.00497432 0.00573888 0.0057427 0.00574673 0.00662314 0.00662193 0.00662094 0.00662016 0.00661958 0.0066192 0.00661901 0.00770035 0.00769681 0.00769349 0.00903983 0.0090477 0.00905582 0.0107953 0.0107821 0.0107691 0.0107563 0.00903224 0.00769041 0.00768757 0.00768499 0.00768268 0.00901141 0.009018 0.00902495 0.0107438 0.0107316 0.0107198 0.0107085 0.0090052 0.00768065 0.00662456 0.00575096 0.00499249 0.00429706 0.0043046 0.00431241 0.0043205 0.00501278 0.00500576 0.004999 0.00575542 0.0057601 0.00576502 0.00577017 0.00502005 0.00432887 0.00433754 0.00434655 0.00435593 0.00504359 0.00503545 0.00502761 0.00577559 0.00578126 0.00578722 0.00664139 0.00663818 0.00663526 0.00663261 0.00663023 0.0066281 0.00662622 0.00767892 0.00767748 0.00767636 0.00898918 0.00899406 0.00899941 0.0106977 0.0106875 0.010678 0.0106692 0.0089848 0.00767556 0.0076751 0.007675 0.00767527 0.0089749 0.00897763 0.00898094 0.0106612 0.0106541 0.0106479 0.0128329 0.0128442 0.0128567 0.0128703 0.0128849 0.0129004 0.0129165 0.0129332 0.0129503 0.0129677 0.0129852 0.0130029 0.0130205 0.0130379 0.0130552 0.0159979 0.015981 0.0159631 0.0197914 0.0197991 0.0198045 0.0246649 0.0246913 0.0247142 0.0247335 0.0197814 0.0159443 0.0159246 0.0159041 0.015883 0.0197374 0.0197545 0.0197691 0.0247487 0.0247595 0.0247656 0.0312377 0.031173 0.0311013 0.0310236 0.0309409 0.0308539 0.0307636 0.0382689 0.0384684 0.0386669 0.0480619 0.04769 0.047324 0.0580408 0.058641 0.0592605 0.059899 0.0484388 0.0388633 0.0390565 0.0392447 0.0394262 0.0495831 0.0492015 0.0488193 0.0605562 0.061231 0.0619216 0.0626249 0.0499608 0.0395986 0.0312944 0.0247665 0.0197182 0.0158615 0.0158396 0.0158177 0.0157959 0.0196493 0.0196739 0.0196968 0.0247615 0.0247526 0.0247384 0.0247191 0.0196235 0.0157746 0.0157539 0.0157342 0.0157158 0.0195442 0.0195704 0.019597 0.0246955 0.0246682 0.0246386 0.0314036 0.0314194 0.0314272 0.0314229 0.0314071 0.0313799 0.031342 0.0397597 0.0399064 0.0400358 0.051023 0.0506868 0.0503305 0.0633367 0.06405 0.064755 0.0654371 0.051331 0.040145 0.0402318 0.0402963 0.0403414 0.0521348 0.0518251 0.0516015 0.0660757 0.0669624 0.0684834 0.0919199 0.0875127 0.0846273 0.0828793 0.0815617 0.0802627 0.0789976 0.0777748 0.076598 0.0754683 0.0743856 0.073349 0.0723567 0.071407 0.0704974 0.0696259 0.0687902 0.0679881 0.0672175 0.0664766 0.0657634 0.0650763 0.0644137 0.063774 0.0631559 0.062558 0.0619791 0.0614182 0.0608741 0.060346 0.0598327 0.0701642 0.0708463 0.0715497 0.0833949 0.0824874 0.0816085 0.0941725 0.0952766 0.0964177 0.0975987 0.0843333 0.0722758 0.0730263 0.0738029 0.0746073 0.0873572 0.0863118 0.0853047 0.0988225 0.100093 0.101413 0.116774 0.115145 0.11358 0.112073 0.110619 0.109214 0.107856 0.122651 0.124293 0.125991 0.142524 0.140502 0.138544 0.155518 0.157823 0.160202 0.162659 0.144616 0.127749 0.129571 0.131463 0.133431 0.151372 0.149033 0.146784 0.165202 0.16784 0.17058 0.173432 0.15381 0.135483 0.118471 0.102788 0.088444 0.0754417 0.0763081 0.0772091 0.0781472 0.0919873 0.0907552 0.0895754 0.104221 0.105719 0.107287 0.108931 0.0932764 0.0791252 0.0801464 0.0812143 0.0823326 0.097538 0.0960458 0.0946273 0.110659 0.112478 0.114399 0.132888 0.13049 0.128225 0.126077 0.124037 0.122095 0.120242 0.137626 0.139868 0.14222 0.161812 0.159018 0.156355 0.176408 0.17952 0.182783 0.186212 0.164749 0.144693 0.147298 0.15005 0.152965 0.174581 0.171115 0.167844 0.189824 0.19364 0.197682 0.222218 0.217578 0.213196 0.209046 0.205103 0.201348 0.197762 0.194329 0.191034 0.187864 0.184809 0.181858 0.179002 0.176234 0.173547 0.192604 0.19571 0.198903 0.219878 0.216219 0.212654 0.233659 0.237731 0.241898 0.246167 0.223636 0.202191 0.205583 0.209087 0.212715 0.235603 0.231487 0.227502 0.250546 0.255046 0.25968 0.284932 0.279748 0.274696 0.269762 0.264935 0.260208 0.255577 0.278361 0.283614 0.288959 0.313941 0.307906 0.301958 0.32631 0.333044 0.339851 0.346732 0.320061 0.294399 0.299938 0.30558 0.311349 0.33891 0.332538 0.326266 0.353701 0.360642 0.368374 0.378201 0.345565 0.317277 0.290269 0.264464 0.239863 0.216479 0.220395 0.224476 0.228742 0.253673 0.248882 0.244284 0.269414 0.274552 0.279874 0.285423 0.258687 0.233215 0.23792 0.242877 0.248162 0.275604 0.269442 0.263958 0.291352 0.298757 0.309245 0.361639 0.338194 0.323622 0.31426 0.307336 0.301494 0.295768 0.323298 0.329965 0.338463 0.381473 0.364378 0.353512 0.392733 0.415207 0.449907 0.501404 0.408232 0.350977 0.371028 0.402501 0.450075 0.592538 0.50898 0.449166 0.574363 0.673552 0.804614 0.975577 0.705335 0.518663 0.398344 0.326403 0.283704 0.253613 0.227117 0.201971 0.178263 0.156061 0.135431 0.116431 0.0991113 0.0835056 0.0847379 0.0860347 0.0874017 0.104404 0.102534 0.100774 0.118587 0.120882 0.123332 0.125957 0.106394 0.0888448 0.0903708 0.0919866 0.0936989 0.113234 0.110793 0.108518 0.128779 0.131829 0.135138 0.159287 0.154969 0.15105 0.147453 0.144123 0.141026 0.138137 0.159362 0.162893 0.166686 0.190915 0.186393 0.18219 0.206545 0.21143 0.216642 0.222637 0.19584 0.170779 0.175185 0.179993 0.185549 0.217306 0.207676 0.201038 0.230818 0.243542 0.264147 0.296354 0.233167 0.193293 0.163945 0.138721 0.115857 0.0955146 0.0974423 0.0994897 0.101661 0.125686 0.121761 0.118689 0.142634 0.147721 0.155566 0.167866 0.131812 0.104456 0.108933 0.115751 0.125078 0.172514 0.154698 0.141297 0.185834 0.210664 0.24372 0.358947 0.297456 0.251777 0.218687 0.195538 0.180061 0.170251 0.205643 0.225114 0.254567 0.351075 0.295671 0.258046 0.344743 0.415769 0.518774 0.667116 0.431118 0.297595 0.358739 0.443665 0.559679 0.925965 0.704556 0.54494 0.879205 1.17996 1.60336 2.84383 2.04123 1.47802 1.08557 0.813558 0.625361 0.495005 0.404666 0.342468 0.300447 0.272959 0.255619 0.245167 0.237961 0.232359 0.260178 0.269274 0.283694 0.347801 0.315992 0.295861 0.353823 0.396139 0.458287 0.546251 0.396012 0.307124 0.343788 0.398545 0.477866 0.705267 0.565667 0.466194 0.668221 0.836575 1.07074 1.63992 1.25678 0.98337 0.784629 0.638469 0.530949 0.453036 0.61363 0.741796 0.913179 1.31433 1.0519 0.854739 1.19887 1.49401 1.89137 2.43788 1.66958 1.14341 1.45727 1.89393 2.5151 3.85788 2.85533 2.1608 3.20599 4.30705 5.90987 8.26081 5.32882 3.41744 2.18837 1.40168 0.901962 0.591188 0.753011 0.985636 1.32297 2.18352 1.58853 1.1825 1.87831 2.57671 3.61161 5.14669 3.06067 1.81498 2.53247 3.57192 5.0593 8.85227 6.21664 4.3495 7.39408 10.5855 14.8938 23.4531 17.2683 12.2634 8.54738 5.94359 4.17623 2.98929 4.74969 6.73062 9.65207 15.259 10.6996 7.504 11.6886 16.5505 23.0506 30.9294 21.3793 13.8294 19.4484 26.322 33.7467 44.0232 36.7517 28.8228 39.272 46.8317 52.7294 56.8134 49.8062 40.7215 30.2901 20.3009 12.4271 7.14835 3.97865 2.19685 1.23146 0.716789 0.440543 0.286753 0.19539 0.137053 0.0978308 0.0709795 0.0527663 0.0403472 0.0313778 0.0246073 0.019519 0.0156989 0.012823 0.0106427 0.00897279 0.00767593 0.0066449 0.00579346 0.00505203 0.00436556 0.00437557 0.004386 0.00439682 0.00507945 0.00506995 0.00506082 0.00580002 0.0058069 0.00581412 0.0058217 0.00508941 0.00440805 0.00441972 0.00443186 0.00444449 0.00512149 0.00511029 0.00509967 0.00582964 0.005838 0.00584679 0.0066796 0.00667338 0.00666764 0.00666233 0.00665742 0.00665289 0.00664873 0.007677 0.00767849 0.00768044 0.00897042 0.00897051 0.00897131 0.0106385 0.0106354 0.0106335 0.0106328 0.00897106 0.00768286 0.00768578 0.00768924 0.00769327 0.00897781 0.00897466 0.00897248 0.0106336 0.0106356 0.0106381 0.0106423 0.00898193 0.0076979 0.00668631 0.00585614 0.00513308 0.00445763 0.00447131 0.00448557 0.00450043 0.00517102 0.00515781 0.0051452 0.00586595 0.00587603 0.00588687 0.00589822 0.00518478 0.00451594 0.00453213 0.00454904 0.00456672 0.00523004 0.00521425 0.00519919 0.00591028 0.00592295 0.00593639 0.00675117 0.00673957 0.00672892 0.00671893 0.00671 0.00670154 0.00669355 0.00770331 0.00770951 0.00771609 0.00899874 0.00899214 0.0089865 0.0106472 0.010653 0.0106597 0.0106672 0.00900631 0.00772373 0.00773239 0.00774207 0.00775294 0.00903491 0.00902437 0.00901478 0.0106749 0.0106832 0.0106905 0.0128394 0.0128333 0.0128337 0.0128336 0.0128272 0.0128181 0.0128111 0.0128053 0.0128008 0.0127984 0.0127985 0.0127997 0.0128027 0.0128078 0.0128146 0.0156837 0.0156706 0.0156598 0.0194548 0.0194737 0.0194953 0.0245759 0.0245449 0.0245176 0.0244807 0.019441 0.0156526 0.0156477 0.0156447 0.0156465 0.0194153 0.0194258 0.0194315 0.0244626 0.0245028 0.0246081 0.0325125 0.0320078 0.0316719 0.0314559 0.0313324 0.0313067 0.0313479 0.0404965 0.040825 0.0413519 0.0574099 0.0554149 0.0538181 0.0742673 0.0783797 0.0832984 0.0890819 0.0598227 0.0421683 0.0432049 0.0444058 0.0457555 0.0693605 0.0658013 0.0626261 0.095814 0.103639 0.112798 0.123689 0.0733851 0.0472158 0.0331032 0.0247751 0.0194302 0.0156547 0.0156649 0.0156669 0.0156784 0.019651 0.0195558 0.0194799 0.0250026 0.0253043 0.025655 0.02607 0.0197698 0.0157004 0.0157305 0.0157709 0.0158321 0.0204347 0.0201543 0.0199358 0.0265901 0.0272452 0.0280631 0.041724 0.0396464 0.0379339 0.0365412 0.0354239 0.0345177 0.0337584 0.0488561 0.0508103 0.0531996 0.0907542 0.0837633 0.0780868 0.136919 0.153284 0.173801 0.199839 0.099489 0.0561681 0.0598743 0.0644707 0.0701439 0.142088 0.124407 0.110496 0.233056 0.275648 0.330435 0.40112 0.164686 0.077144 0.0442078 0.0290693 0.0208012 0.0159335 0.0128514 0.0106926 0.00904644 0.00776509 0.00676369 0.00595059 0.00524657 0.00458522 0.0046046 0.00462492 0.00464625 0.0053013 0.00528213 0.00526392 0.00596564 0.00598159 0.00599854 0.00601657 0.00532147 0.00466866 0.00469224 0.00471709 0.00474331 0.00538902 0.00536523 0.00534275 0.00603576 0.00605624 0.00607811 0.00688691 0.00686464 0.00684409 0.00682525 0.00680791 0.00679197 0.00677728 0.00777878 0.00779395 0.00781072 0.00908449 0.00907348 0.00906003 0.0106958 0.0107052 0.0107211 0.0107482 0.00910087 0.00782973 0.00785015 0.00787191 0.0079022 0.00919345 0.00915287 0.0091232 0.0107924 0.0108593 0.0109408 0.0110426 0.00924863 0.0079384 0.00691024 0.00610156 0.00541425 0.00477103 0.00480038 0.00483154 0.00486468 0.00550044 0.00546962 0.00544106 0.00612679 0.00615203 0.0061877 0.0062273 0.00553389 0.00489997 0.00493789 0.00498338 0.00503388 0.00566998 0.00562287 0.00557556 0.00627536 0.00632254 0.00637573 0.00726302 0.00719684 0.00713741 0.00708266 0.00703037 0.00698235 0.00694356 0.00798307 0.00803752 0.00809274 0.00945859 0.00937966 0.00930894 0.0111621 0.0113036 0.0114667 0.0116592 0.00955129 0.00815421 0.00822099 0.00829751 0.00838495 0.00993484 0.00978563 0.0096584 0.0118842 0.0121493 0.0124585 0.0170964 0.0163906 0.0157956 0.0152862 0.0148478 0.014471 0.0141447 0.0138628 0.0136179 0.01341 0.0132361 0.0130983 0.0129929 0.012917 0.0128743 0.0160807 0.0162758 0.0165301 0.0225228 0.021838 0.0212665 0.0302775 0.0317033 0.0333658 0.0352864 0.0233218 0.0168449 0.0172227 0.0176643 0.0181714 0.0264956 0.0252946 0.0242427 0.0375016 0.040051 0.0430051 0.0826542 0.0730564 0.0655057 0.0594936 0.0546294 0.0505787 0.0471389 0.0857979 0.0965978 0.110268 0.27991 0.231283 0.193718 0.492328 0.609328 0.757379 0.941219 0.341595 0.127531 0.149093 0.176612 0.213115 0.637281 0.513954 0.417831 1.16635 1.43949 1.7609 2.12374 0.789953 0.261573 0.095139 0.0464814 0.0278758 0.0187526 0.0194172 0.0201827 0.0210677 0.033549 0.0313365 0.0294713 0.0506481 0.0557975 0.0624674 0.071611 0.0362117 0.0220968 0.0233068 0.0247611 0.0265586 0.0489112 0.0436455 0.0394823 0.0837558 0.100383 0.122852 0.379834 0.303714 0.245074 0.198169 0.164194 0.134635 0.111853 0.326086 0.40963 0.508232 1.41555 1.18419 0.974064 2.52136 2.94185 3.38638 3.85492 1.67045 0.613746 0.752465 0.900103 1.08008 2.59811 2.25757 1.96213 4.34764 4.85227 5.40133 9.85075 9.07322 8.33221 7.61108 6.90712 6.21504 5.53637 4.86569 4.20919 3.57697 2.98454 2.45089 1.98657 1.59341 1.26916 1.0088 0.804158 0.645356 0.52285 0.428496 0.355744 0.299481 0.255637 0.22113 0.193641 0.171362 0.153026 0.137755 0.124948 0.114196 0.105218 0.151958 0.170238 0.192556 0.305853 0.260433 0.224248 0.342234 0.4137 0.506196 0.626737 0.363183 0.219851 0.253442 0.295207 0.34784 0.652527 0.530193 0.436212 0.785246 0.995584 1.2769 2.58125 1.94728 1.48023 1.13604 0.881163 0.691099 0.54836 0.929231 1.21746 1.61057 3.04223 2.23563 1.65291 3.02687 4.18346 5.77951 7.93667 4.1546 2.14906 2.88749 3.8949 5.24938 10.2563 7.68487 5.67012 10.7476 14.2117 18.1696 22.299 13.3506 7.02121 3.436 1.65477 0.81335 0.415001 0.501773 0.614884 0.7632 1.68444 1.30937 1.02637 2.1619 2.83675 3.71891 4.83926 2.17681 0.958 1.21268 1.54288 1.9653 4.57878 3.6094 2.81159 6.20647 7.79536 9.5422 16.8699 14.5958 12.2368 9.93427 7.83089 6.02915 4.56935 9.2416 11.865 14.7504 23.6631 20.3378 16.8028 26.2146 29.6199 32.3954 34.5773 26.5743 17.6882 20.4705 22.9565 25.0949 32.5822 30.9749 29.0002 36.2806 37.6324 38.7391 43.7396 42.9645 42.0571 40.9472 39.5302 37.6624 35.1765 31.9358 27.9329 23.3802 18.6953 14.3449 10.658 7.74942 5.56659 10.0011 13.7309 18.3037 28.193 22.4133 17.0035 26.4675 32.7401 38.3869 42.9224 33.6984 23.4427 28.6442 33.3594 37.2277 44.6086 41.9938 38.379 46.2506 48.5607 50.139 54.445 53.4928 52.1185 50.0619 46.9984 42.6417 36.9447 46.4466 50.6468 53.4964 58.3325 56.6093 53.9087 59.436 61.0747 62.1207 62.8345 59.448 55.3578 56.5805 57.4226 58.0493 61.2548 60.7854 60.213 63.3704 63.8138 64.21 64.5828 61.6702 58.5575 55.15 51.2429 46.4478 40.1724 42.3237 43.8872 45.0531 49.4769 48.7197 47.7538 52.0579 52.7028 53.2484 53.7361 50.1078 45.9633 46.7124 47.3603 47.9443 51.6502 51.17 50.6621 54.1903 54.6257 55.0521 58.2633 57.8624 57.4626 57.0582 56.6413 56.2001 55.7146 59.0014 59.4106 59.8018 62.7999 62.4314 62.0576 64.9447 65.3031 65.6626 66.0265 63.1685 60.1849 60.5664 60.9507 61.3416 64.3101 63.9207 63.5411 66.3977 66.7783 67.1705 67.5763 64.7116 61.742 58.6694 55.4764 52.1148 48.488 44.4283 39.6785 33.9134 26.9045 18.9595 11.356 5.70666 2.49371 3.13434 3.8825 4.72264 9.61781 8.27796 6.95676 13.1454 14.8434 16.4161 17.8573 10.9334 5.63194 6.58178 7.54192 8.49183 14.5323 13.3941 12.1959 19.1788 20.4017 21.5489 28.5092 27.4815 26.3902 25.2115 23.9149 22.4646 20.8228 28.4401 29.7634 30.9286 36.9323 36.0383 35.046 40.5047 41.2539 41.951 42.6135 37.7573 31.9786 32.9457 33.8536 34.72 40.0046 39.2797 38.5346 43.2543 43.8831 44.508 45.1357 40.7189 35.5587 29.4916 22.6403 15.6223 9.42535 10.3427 11.2493 12.1538 18.7254 17.7072 16.6764 23.6923 24.7183 25.7294 26.7349 19.7402 13.0609 13.9806 14.9188 15.8855 22.8495 21.7949 20.7611 27.7434 28.7616 29.7965 36.0422 35.0847 34.1455 33.2186 32.2976 31.3752 30.443 36.3806 37.1947 38.0088 42.8717 42.146 41.4304 45.772 46.4219 47.0902 47.7812 43.6129 38.8298 39.6636 40.5158 41.3917 45.9779 45.1615 44.3746 48.4989 49.2473 50.0301 53.7484 52.9788 52.2471 51.5501 50.8844 50.2465 49.6329 49.0399 48.4634 47.8991 47.3423 46.7873 46.2277 45.6554 45.0603 49.0071 49.5127 50.0127 53.4924 53.0301 52.5727 55.9038 56.3386 56.7842 57.244 53.9638 50.5136 51.0208 51.5387 52.0714 55.469 54.9488 54.4482 57.7209 58.2177 58.7369 61.915 61.3901 60.8897 60.4113 59.9526 59.5112 59.0844 62.1546 62.5819 63.0261 66.0098 65.5593 65.1273 67.9977 68.4366 68.8948 69.3742 66.4806 63.4894 63.9741 64.4823 65.0162 68.036 67.4917 66.9739 69.8768 70.4046 70.9595 71.5436 68.6089 65.5779 62.4666 59.2812 56.0117 52.6225 53.1956 53.7938 54.4203 57.8031 57.1759 56.5797 59.8532 60.4553 61.0901 61.7601 58.464 55.0782 55.7704 56.5001 57.2702 60.6765 59.8979 59.1613 62.4681 63.2165 64.008 67.2783 66.4719 65.7093 64.9881 64.3057 63.6596 63.0474 66.1698 66.794 67.453 70.5215 69.8494 69.2127 72.159 72.8079 73.4924 74.2148 71.231 68.149 68.8844 69.6618 70.4836 73.609 72.7724 71.9805 74.9775 75.7828 76.6332 77.531 74.4929 71.3523 68.1312 64.8454 61.4999 58.0836 54.5593 50.8509 46.828 42.2961 37.0235 30.8537 23.9299 16.8819 10.6525 5.95834 2.93497 1.26201 0.469005 0.153146 0.0557355 0.0288082 0.0179599 0.0128266 0.0101101 0.00848625 0.00733713 0.00643385 0.00572163 0.00508613 0.00443359 0.00372141 0.00289603 0.00198297 0.00111006 0.00113206 0.00202526 0.0020769 0.00115849 0.00119111 0.00214085 0.00310568 0.00302553 0.00295624 0.00378459 0.00385273 0.0039268 0.00400671 0.00319703 0.00221975 0.00123349 0.00129211 0.00231324 0.00242265 0.00136459 0.00145792 0.00256415 0.00355908 0.00341408 0.00329614 0.00409712 0.00420725 0.0043448 0.00450378 0.00373366 0.00274735 0.00159726 0.00179202 0.00297341 0.00324278 0.00205683 0.00240281 0.00354829 0.00441574 0.00416144 0.00393377 0.00468455 0.00489174 0.0051305 0.00539702 0.00469428 0.00387446 0.00284779 0.00168185 0.0018917 0.000906599 0.000321585 0.000130913 7.60967e-05 0.000103854 5.00467e-05 5.39862e-05 0.000133663 6.63162e-05 9.56973e-05 4.75334e-05 5.39464e-05 9.824e-05 0.000212093 0.000294441 0.000142769 8.01257e-05 0.000108003 4.85853e-05 5.55894e-05 0.000157562 0.000138654 7.75662e-05 4.08792e-05 4.79425e-05 6.73054e-05 0.000120929 0.000266132 0.000111039 0.000537826 0.000455452 0.000857992 0.00163711 0.000862652 0.00100318 0.000353324 0.00017792 9.25065e-05 4.89206e-05 5.75256e-05 8.33289e-05 4.34916e-05 4.99165e-05 9.45019e-05 0.000208208 0.000115052 0.000176034 0.000492558 0.000677658 0.000311802 0.000138504 7.53019e-05 0.000104291 4.80054e-05 5.64155e-05 0.000162754 8.24849e-05 4.55339e-05 5.73393e-05 9.18372e-05 4.47681e-05 5.32205e-05 0.000152783 7.93357e-05 4.342e-05 5.52609e-05 8.88894e-05 4.34029e-05 5.17381e-05 0.000150471 7.63808e-05 4.26582e-05 5.40053e-05 8.69543e-05 4.30651e-05 5.15454e-05 0.000151101 7.83766e-05 4.28028e-05 5.49749e-05 9.0197e-05 4.36455e-05 5.27655e-05 0.000160025 8.05479e-05 4.37654e-05 5.65382e-05 9.4345e-05 4.50962e-05 5.50749e-05 0.000173758 8.86584e-05 4.64733e-05 6.20853e-05 0.000110317 5.59533e-05 7.79586e-05 4.15446e-05 5.12304e-05 0.000105951 0.000211109 0.00016054 0.000346737 0.000135946 0.000587155 0.00120391 0.000902578 0.00164667 0.000791063 0.000478679 0.00101608 0.000308269 0.000118464 0.000132993 0.000475939 0.000285605 0.000113745 0.000125755 0.000681694 0.00147015 0.000767227 0.000921154 0.000439945 0.000276342 0.000113631 0.000121905 0.000651698 0.00144303 0.000715488 0.000827745 0.000288001 0.000117599 0.000123764 0.000414603 0.000516423 0.00071269 0.00134686 0.00216281 0.0026848 0.0039753 0.0034862 0.00271548 0.00216301 0.00352238 0.00285876 0.00246394 0.00117509 0.000564672 0.000376724 0.000585437 0.0036857 0.00311776 0.0041909 0.00462381 0.0049057 0.00400983 0.00460079 0.00493863 0.00396873 0.00463721 0.0050318 0.00570138 0.00474257 0.0035224 0.00212411 0.00280742 0.00409906 0.00490098 0.00363811 0.00231018 0.00291544 0.0038538 0.00250874 0.00313891 0.00185131 0.000976751 0.000501484 0.000179472 7.77695e-05 4.1142e-05 5.02662e-05 8.35158e-05 4.40304e-05 5.9349e-05 0.000106554 5.46852e-05 7.7603e-05 4.0918e-05 5.13587e-05 0.00011076 0.000214837 0.000159444 0.000348951 0.000132199 0.000612306 0.00143021 0.000802036 0.000425545 0.000195774 9.46042e-05 4.7855e-05 6.36169e-05 0.000138572 0.000312165 0.000221011 0.00011373 5.65531e-05 8.36288e-05 4.32777e-05 5.5332e-05 0.000212283 0.000102782 5.2102e-05 8.24126e-05 4.38235e-05 5.7655e-05 0.000102534 5.30861e-05 7.75466e-05 4.17516e-05 5.34712e-05 0.00019386 9.98677e-05 5.07597e-05 8.10714e-05 4.30599e-05 5.72714e-05 0.00012145 0.000292962 0.000196586 0.000385081 0.000165957 0.000736965 0.00130955 0.00057047 0.00029743 0.000128119 0.000122864 0.000200793 0.000404629 0.000171316 0.000705184 0.000996972 0.00168431 0.000949237 0.000592127 0.000802607 0.000736403 0.00121271 0.00209198 0.0013137 0.00343785 0.00277674 0.00414065 0.00482479 0.00603776 0.0054523 0.00449302 0.00568704 0.00513656 0.00424846 0.00540249 0.00634707 0.00592363 0.00519625 0.00607652 0.00676055 0.00714382 0.00791233 0.00753251 0.00682984 0.0064869 0.00585561 0.00553161 0.00627011 0.00569737 0.0054195 0.00609677 0.00566189 0.00533669 0.00499648 0.005694 0.00602093 0.00637418 0.00677485 0.00716971 0.00642642 0.00697216 0.00730995 0.00657682 0.00722738 0.00756697 0.00831892 0.00870591 0.00961498 0.00916573 0.00833378 0.00797919 0.00877144 0.00810183 0.00766852 0.00850515 0.00795478 0.00749307 0.00708172 0.006714 0.00638357 0.006082 0.00581461 0.00557514 0.00536874 0.00518951 0.00503285 0.00489565 0.00478515 0.00469688 0.0046211 0.00455386 0.00449159 0.0051418 0.00520244 0.00527005 0.00591151 0.00584045 0.00577752 0.00650006 0.0065751 0.00666144 0.00676587 0.00599398 0.00534728 0.00544058 0.00555817 0.0056985 0.00638174 0.00622901 0.00609751 0.00689906 0.00706155 0.00724853 0.00840412 0.00815913 0.00795084 0.00777282 0.00763094 0.00751765 0.00742151 0.00860302 0.00874108 0.00891459 0.0109038 0.0105781 0.0103187 0.013279 0.0138399 0.0145204 0.0153498 0.0113013 0.00913385 0.00939884 0.00971419 0.0101001 0.0131207 0.0123741 0.0117809 0.0163892 0.0177187 0.019446 0.0216765 0.0140731 0.0105786 0.00869898 0.00746862 0.00655872 0.00585674 0.00603877 0.00625082 0.00649701 0.00730846 0.00701644 0.00676711 0.00773091 0.00804477 0.00841658 0.00886043 0.00765289 0.00677876 0.00710509 0.00748084 0.0079184 0.00908033 0.00852678 0.00805511 0.00939057 0.0100354 0.0108297 0.0140636 0.0126414 0.0115496 0.0107028 0.0100337 0.00949577 0.00905851 0.0111782 0.0119364 0.0129135 0.0189919 0.0169275 0.0153056 0.024545 0.0283134 0.0332669 0.0400525 0.0216913 0.0141849 0.0158401 0.0179436 0.0207045 0.0363537 0.0299031 0.0252089 0.0494595 0.0633202 0.083208 0.227105 0.169275 0.130454 0.0985895 0.0755814 0.0596894 0.04841 0.0404222 0.034546 0.0300802 0.0266726 0.0240111 0.0219445 0.0203308 0.0190263 0.031629 0.0351495 0.0396737 0.0948434 0.0776157 0.0650286 0.187288 0.230356 0.286604 0.356113 0.11871 0.0456048 0.053531 0.064601 0.0797744 0.23366 0.184643 0.150351 0.439337 0.528224 0.649768 1.57676 1.33573 1.13696 0.963687 0.81124 0.678634 0.564015 1.47655 1.7087 1.97453 4.20961 3.73633 3.33506 6.58616 7.21919 7.94734 8.68554 4.69604 2.26488 2.59796 2.96886 3.39728 6.56771 5.86733 5.26802 9.54187 10.416 11.432 12.4755 7.30945 3.86758 1.83547 0.775773 0.291804 0.101133 0.130455 0.165314 0.212227 0.575315 0.454393 0.370653 0.952686 1.12568 1.39051 1.62615 0.704901 0.274698 0.353843 0.451341 0.585085 1.36661 1.08366 0.88886 2.01693 2.3336 2.90354 5.55668 4.60031 4.08754 3.40586 2.98416 2.50713 2.17202 4.42986 5.02065 5.76998 10.1833 9.09242 8.1786 13.687 14.9321 16.38 17.8526 11.2937 6.49587 7.51151 8.37202 9.76993 15.7748 13.9931 12.6789 19.5836 21.2931 23.3633 25.287 17.2636 10.7526 6.19121 3.31371 1.64531 0.737442 0.299186 0.113024 0.0453781 0.024289 0.0158426 0.0118391 0.00973529 0.00841973 0.00900737 0.0096942 0.0105056 0.00910151 0.00987094 0.0106571 0.00929696 0.0102485 0.010927 0.0123199 0.0107278 0.00958926 0.00871918 0.00790169 0.00709169 0.00620625 0.00667143 0.00747936 0.00655059 0.00705198 0.00793551 0.00878485 0.00833061 0.00751313 0.00831897 0.00918696 0.00966576 0.0106924 0.00972588 0.00882088 0.00792091 0.00695425 0.00583843 0.00453188 0.00314032 0.00387253 0.00258568 0.00341874 0.00207516 0.00117371 0.00070293 0.00093221 0.000576283 0.00020522 5.32523e-05 4.13875e-05 7.80303e-05 5.24909e-05 0.000103542 0.000133268 9.96125e-05 5.05521e-05 8.0685e-05 4.30274e-05 5.72382e-05 0.000103956 5.30036e-05 7.889e-05 4.23072e-05 5.47781e-05 0.000207402 0.000133407 0.000304779 0.000122143 0.000201084 0.000397725 0.000167361 0.000710881 0.00135885 0.00101501 0.00168671 0.000798264 0.00129004 0.00303739 0.00449333 0.00575669 0.00496241 0.00627894 0.00523501 0.00644918 0.00748825 0.00841641 0.00740939 0.00797367 0.00691191 0.00789084 0.0066423 0.00527132 0.00393746 0.00259318 0.00346575 0.00212141 0.00123203 0.000750991 0.000330781 0.000134714 6.24042e-05 4.52884e-05 8.80347e-05 5.30025e-05 0.000106414 0.000181058 0.000416136 0.000219709 0.00077748 0.000592554 0.000121039 6.01267e-05 9.74395e-05 5.07081e-05 7.64625e-05 4.03244e-05 5.35184e-05 0.000118367 0.000242005 0.000160923 0.000627212 0.00100202 0.00178813 0.00136589 0.00090391 0.000479843 0.000225282 0.000109063 5.5332e-05 8.84936e-05 4.44614e-05 5.96447e-05 0.000118871 6.00995e-05 9.49932e-05 4.91694e-05 7.4e-05 4.07183e-05 5.34103e-05 0.000215242 0.000103985 5.21792e-05 8.70715e-05 4.51672e-05 6.29663e-05 0.000126541 6.09287e-05 0.000101182 5.23599e-05 8.14834e-05 4.22676e-05 5.78068e-05 0.000130942 0.000269026 0.000174375 0.000339629 0.000134652 0.000219146 0.0004261 0.000178644 0.00125641 0.000563819 0.000271992 0.000130219 0.000189009 0.000384046 0.000134107 0.00017006 0.000266561 0.000675057 0.00149156 0.000864786 0.000786545 0.00110858 0.00274244 0.00368029 0.00242995 0.00320748 0.00201013 0.00112741 0.000637211 0.00094511 0.000536883 0.000255227 0.000127399 6.16877e-05 0.000107693 5.30725e-05 8.3464e-05 4.4197e-05 6.0885e-05 0.000122248 5.97599e-05 9.87374e-05 5.21697e-05 8.17058e-05 4.23928e-05 5.84831e-05 0.000133815 0.000259001 0.000166979 0.000349528 0.00013441 0.000227157 0.000414351 0.000207096 0.000299686 0.000167026 0.000761948 0.00148606 0.00066656 0.000915814 0.00051972 0.000261858 0.00013117 6.30168e-05 0.000112532 5.44093e-05 8.77763e-05 4.53603e-05 6.36578e-05 0.000133097 6.20107e-05 0.000105727 5.38707e-05 8.64068e-05 4.38449e-05 6.15626e-05 0.000144568 0.000296738 0.000187876 0.00036878 0.000144082 0.000242255 0.000435393 0.000217506 0.000311386 0.000178016 0.000810371 0.00109482 0.000673917 0.000970097 0.000579949 0.000290295 0.000145502 6.71782e-05 0.00012688 5.99381e-05 0.000104328 5.27545e-05 8.72502e-05 4.39824e-05 6.03914e-05 0.000126426 6.34317e-05 0.000106929 5.25386e-05 8.46345e-05 4.39339e-05 6.03659e-05 0.000265258 0.000135123 6.34498e-05 0.000124198 6.07793e-05 0.000111532 5.40488e-05 8.96969e-05 4.59173e-05 6.58935e-05 0.000150326 0.00039291 0.000252938 0.000442463 0.000181704 0.000208982 0.000302488 0.000525841 0.000247554 0.0013751 0.000629255 0.000315181 0.000154279 0.000210703 0.00041402 0.00014212 0.00017102 0.000276325 0.000463945 0.000208184 0.000247915 0.000341989 0.000819348 0.00154738 0.000733725 0.000945428 0.00113936 0.00177244 0.00133874 0.00197871 0.00122399 0.000894551 0.00139116 0.00225425 0.00156058 0.00325678 0.00426264 0.00298673 0.00388851 0.00268453 0.00363213 0.00247371 0.00325693 0.00214461 0.00129233 0.000816774 0.00111771 0.00073829 0.000318991 0.000104453 5.10227e-05 8.38384e-05 4.3009e-05 5.99323e-05 0.000271868 0.000155736 0.00013636 6.24839e-05 0.000124315 6.0217e-05 0.00011188 5.32617e-05 8.92927e-05 4.53387e-05 6.55774e-05 0.000142924 6.54894e-05 0.000117733 6.00207e-05 0.000104276 5.09457e-05 8.41372e-05 4.32731e-05 6.08756e-05 0.000276014 0.000141107 6.41869e-05 0.000131494 6.23725e-05 0.000121745 5.7598e-05 0.000103968 5.17861e-05 8.90087e-05 4.37862e-05 6.1923e-05 0.000134423 6.69285e-05 0.000121301 5.72352e-05 0.000100189 5.16857e-05 8.63933e-05 4.31486e-05 6.2561e-05 0.000151376 0.00030902 0.000184766 0.000359612 0.000230539 0.000431326 0.000174152 0.000282365 0.000471205 0.000208056 0.000230692 0.000327317 0.000546754 0.000264731 0.00139925 0.000896586 0.00133263 0.000859899 0.00116777 0.000787993 0.0011162 0.000693529 0.000996399 0.000611851 0.00031325 0.000154286 6.95911e-05 0.000140194 6.36108e-05 0.00012062 5.88441e-05 0.000109708 5.24282e-05 8.85228e-05 4.50745e-05 6.59084e-05 0.000143954 6.56717e-05 0.000119356 6.09119e-05 0.000107344 5.20442e-05 8.69743e-05 4.45492e-05 6.35382e-05 0.000283098 0.000152539 6.74587e-05 0.000142414 6.60642e-05 0.000132428 6.12703e-05 0.00011384 5.53929e-05 9.82611e-05 4.69774e-05 6.84774e-05 0.000152945 7.39951e-05 0.000139781 6.46807e-05 0.0001203 6.1387e-05 0.000111514 5.25871e-05 9.00981e-05 4.47653e-05 6.47237e-05 0.000305312 0.000172214 0.000344537 0.00021055 0.000400424 0.000258541 0.000464754 0.000166006 0.000194096 0.000307798 0.000516969 0.000255719 0.000363737 0.000568092 0.000290114 0.000960233 0.00150879 0.000729202 0.000338646 0.000161435 0.000208834 0.000397488 0.000149702 0.000254523 0.000474451 0.000181618 0.000205427 0.000319746 0.000514812 0.000243062 0.000273776 0.000377809 0.000885071 0.00164577 0.000831053 0.00105699 0.00121158 0.00181371 0.00135982 0.00198368 0.00153351 0.00217736 0.00307019 0.00400755 0.00286947 0.00378079 0.0026864 0.00357952 0.00254256 0.00331081 0.00229998 0.00145993 0.000966495 0.0013138 0.000926079 0.00123918 0.00081286 0.00115754 0.000770409 0.00109815 0.000684052 0.00098961 0.000605112 0.000299544 0.000145921 6.67881e-05 0.000135638 6.18992e-05 0.000115955 5.57418e-05 9.95903e-05 4.72786e-05 6.91618e-05 0.000155698 7.50929e-05 0.000142278 6.53296e-05 0.000121767 6.22781e-05 0.000113298 5.34036e-05 9.1299e-05 4.58865e-05 6.69374e-05 0.000304245 0.000173303 0.000355622 0.000215296 0.000402305 0.000264038 0.000485048 0.000171279 0.00020062 0.000320176 0.000520948 0.000262936 0.000372693 0.000237126 0.000888933 0.00165219 0.000833443 0.00107268 0.000746564 0.00152717 0.00071065 0.000986795 0.000596816 0.000316006 0.000155516 7.01272e-05 0.000146527 6.58718e-05 0.000129346 6.20799e-05 0.00011975 5.5457e-05 9.74898e-05 4.78014e-05 7.26666e-05 0.000169118 0.000443359 0.000283228 0.00049756 0.000202838 0.000224161 0.000339254 0.000548686 0.000283435 0.000393161 0.000259406 0.000960984 0.0013435 0.000990987 0.0014799 0.00231453 0.00170401 0.00214215 0.00127713 0.000869477 0.00117893 0.000804951 0.0003809 0.000128911 5.92774e-05 0.000107782 5.4677e-05 9.56412e-05 4.5824e-05 6.91789e-05 0.000169306 0.000338008 0.000200771 0.000653856 0.000348956 0.000176 7.662e-05 0.000159803 7.00965e-05 0.000138608 6.523e-05 0.000127221 5.81148e-05 0.000103281 4.99352e-05 7.68015e-05 0.000174873 7.60414e-05 0.000145491 7.16236e-05 0.000136495 6.26248e-05 0.00011457 5.80712e-05 0.000103343 4.86409e-05 7.48628e-05 0.000182922 0.000343999 0.000208026 0.000400534 0.000251719 0.000455 0.000179451 0.00029691 0.000527268 0.00021569 0.000240984 0.000362916 0.000564576 0.000308046 0.000419706 0.000280247 0.000934843 0.00169572 0.000890348 0.00112079 0.000793897 0.00156546 0.000758545 0.0010323 0.000650979 0.00037135 0.000194199 8.30929e-05 0.00017917 7.62184e-05 0.000157374 7.09255e-05 0.000145754 6.547e-05 0.000125874 5.9078e-05 0.000108916 4.99333e-05 7.58203e-05 0.0001728 8.14267e-05 0.000158023 7.02979e-05 0.000135307 6.66037e-05 0.000124963 5.63787e-05 9.98754e-05 4.80419e-05 7.20891e-05 0.000329535 0.000174101 7.51822e-05 0.000165294 7.35391e-05 0.000152905 6.77046e-05 0.000130443 6.09567e-05 0.000112754 5.1155e-05 7.81168e-05 0.000177478 8.31219e-05 0.000160263 7.11338e-05 0.000136036 6.72225e-05 0.000124634 5.67712e-05 9.9077e-05 4.88687e-05 7.30462e-05 0.000322833 0.000171165 7.56937e-05 0.000160568 7.32566e-05 0.000146611 6.52639e-05 0.000119142 5.55141e-05 8.79555e-05 0.000206746 0.000482146 0.000325325 0.000524655 0.000243933 0.000269337 0.000373096 0.000592055 0.000310963 0.00141392 0.000932625 0.00134168 0.000895941 0.00118387 0.000825519 0.0004155 0.000155355 6.87926e-05 0.000129363 6.29899e-05 0.000113265 5.1637e-05 8.02867e-05 0.000191194 0.000366772 0.000229129 0.000665926 0.000368612 0.000201186 8.69391e-05 0.000180668 7.72597e-05 0.000150007 6.76423e-05 0.000125004 5.62343e-05 8.6331e-05 0.000193816 9.07645e-05 0.00017346 7.61092e-05 0.000143549 6.89261e-05 0.000125512 5.60339e-05 8.77954e-05 0.000206446 0.000382657 0.000245043 0.000436421 0.0003038 0.00052702 0.000212546 0.00024794 0.000370912 0.00056916 0.000289017 0.000321486 0.000431442 0.000914116 0.0016365 0.000847127 0.00107243 0.000759833 0.0014811 0.000674411 0.000387658 0.000221031 9.53589e-05 0.000201904 8.63724e-05 0.000174703 7.86645e-05 0.000156749 6.85849e-05 0.000125257 5.75756e-05 9.07684e-05 0.000199231 8.5222e-05 0.000160711 7.40045e-05 0.000134882 5.90892e-05 9.25413e-05 0.000216883 0.000400667 0.000268315 0.000468171 0.0002084 0.000322457 0.000539472 0.00027303 0.000391494 0.000587066 0.000311662 0.000341451 0.000446878 0.000985965 0.00139496 0.000949213 0.00123131 0.000888221 0.00116024 0.000770945 0.00105881 0.000698296 0.000399858 0.000230008 9.88758e-05 0.000206548 8.76085e-05 0.000172168 7.5802e-05 0.000142182 6.17712e-05 9.54062e-05 0.000211151 9.85477e-05 0.000186952 8.20349e-05 0.000155042 7.38634e-05 0.000134168 5.91974e-05 9.13126e-05 0.000208361 0.000381699 0.000253174 0.000442106 0.000318263 0.000542254 0.000228984 0.000265473 0.000391394 0.00059082 0.0003102 0.000347595 0.000459104 0.000918172 0.00162206 0.000841843 0.00105891 0.00075016 0.00144634 0.000654405 0.000372708 0.000216421 9.5883e-05 0.000191412 8.21486e-05 0.000151696 6.69109e-05 0.000106398 0.000235899 0.000503582 0.000359022 0.00056196 0.000279313 0.000317781 0.000424118 0.00095507 0.00133657 0.000905666 0.00115777 0.00081595 0.000418229 0.000154876 6.62169e-05 0.00010442 0.000235643 0.00041798 0.000248245 0.000108964 0.000221148 9.56939e-05 0.000186035 8.26127e-05 0.00015455 6.61874e-05 0.000102292 0.000213554 0.000100787 0.000182085 7.97172e-05 0.000141629 6.54035e-05 0.000100199 0.00035697 0.000206674 9.36597e-05 0.000190651 8.49622e-05 0.000159216 6.83048e-05 0.000104412 0.00021182 9.74954e-05 0.000173571 7.34992e-05 0.000115339 0.000244274 0.000427791 0.000315326 0.000528436 0.000271632 0.000390031 0.000599561 0.000337766 0.00094627 0.00148389 0.000743778 0.000434835 0.000235818 0.000315056 0.000520061 0.00023111 0.000264463 0.000386959 0.000610527 0.000314367 0.000359661 0.000475538 0.000698895 0.000981233 0.00169883 0.00131647 0.00191531 0.0010919 0.00152237 0.00212236 0.00295295 0.00370331 0.0026948 0.00346406 0.00245511 0.00317957 0.00214476 0.00135854 0.000920875 0.00116648 0.000821917 0.00109488 0.000695727 0.000415862 0.000249968 0.000115318 0.00021693 9.51486e-05 0.000170764 7.66732e-05 0.000120377 0.000240879 0.000491373 0.000366282 0.000597324 0.000294485 0.000348296 0.000467773 0.000904695 0.00166383 0.00108136 0.000759061 0.000403337 0.000122091 7.99012e-05 0.000177874 0.000103553 0.000227498 0.00028279 0.000235396 0.000114566 0.000218489 0.000100887 0.000186103 7.97144e-05 0.000123403 0.00023436 0.000113767 0.000193554 8.40202e-05 0.000131547 0.000259026 0.000447166 0.000339507 0.000543586 0.000256092 0.000297146 0.000413224 0.000643128 0.000368731 0.00142468 0.000921224 0.0012442 0.000813691 0.00107979 0.000716712 0.000421321 0.000263814 0.000131682 0.000227532 0.000107725 0.000181591 8.4286e-05 0.00012978 0.000228541 0.000112961 0.000182512 8.35869e-05 0.000125549 0.000372081 0.000223827 0.000112598 0.000195984 9.22538e-05 0.000139502 0.000260673 0.000501236 0.000381316 0.000594415 0.000338696 0.000950082 0.00150307 0.000858506 0.000486614 0.000274175 0.000247176 0.000367415 0.000569685 0.000302796 0.000355404 0.000464099 0.000984803 0.00178019 0.00118272 0.00143895 0.00203643 0.00285429 0.00358241 0.0025069 0.00322091 0.0021168 0.00132451 0.000888063 0.00110479 0.000764857 0.000386363 0.00013164 8.96819e-05 0.000193385 0.000122422 0.000241653 0.00028847 0.000228359 0.000117589 0.000198516 9.69752e-05 0.000141689 0.000239744 0.000124194 0.000187051 8.95216e-05 0.000125706 0.000368349 0.000211999 0.000104894 0.000156764 0.000274155 0.000143497 0.000218525 0.00010517 0.000149844 0.000278673 0.000463159 0.000374355 0.00058212 0.00031481 0.000939493 0.00150991 0.000736849 0.000496335 0.00027909 0.00026027 0.000381343 0.000599819 0.000341416 0.000862226 0.00119714 0.00182229 0.00148547 0.000999422 0.00253415 0.00366685 0.00292748 0.00409487 0.00491657 0.0062606 0.00532689 0.00442359 0.00568157 0.00475256 0.00396416 0.00309673 0.00238917 0.00343006 0.00266603 0.00191217 0.00130387 0.00096763 0.00153548 0.00296499 0.00402533 0.00481999 0.00371023 0.00454778 0.00575021 0.00715221 0.00605123 0.00513757 0.00425916 0.00540357 0.00452815 0.00569559 0.00476408 0.00397805 0.00312343 0.00241163 0.00339179 0.00260548 0.001819 0.00100941 0.00123908 0.00141076 0.0020119 0.00159733 0.00219898 0.0031801 0.00245668 0.00341396 0.00262077 0.00181264 0.00102824 0.000741045 0.00113869 0.00197856 0.0013828 0.00154602 0.00214992 0.00299036 0.00376198 0.00280363 0.00358426 0.00461176 0.00554997 0.00441379 0.00529461 0.00418326 0.00509641 0.00402334 0.00303138 0.00379162 0.00281252 0.00359489 0.00440889 0.00553748 0.00463303 0.00580839 0.00484009 0.00605447 0.0071984 0.00845967 0.00687806 0.0081101 0.00657454 0.00527201 0.00415796 0.00505513 0.00596303 0.00707538 0.00870789 0.00739441 0.00629447 0.00776705 0.00908617 0.0106247 0.0128525 0.0110667 0.00950449 0.0115335 0.0099086 0.0119952 0.0103087 0.00883068 0.00749076 0.00635411 0.00783187 0.00660464 0.00813826 0.00689067 0.0057984 0.00480074 0.00397387 0.00310608 0.00240141 0.00153915 0.000761137 0.000360961 0.000231221 0.000431433 0.000287803 0.00048711 0.000192733 0.000222933 0.000337888 0.000555087 0.00026188 0.000288006 0.000400044 0.000608564 0.000326833 0.000941209 0.00169174 0.000909069 0.0011214 0.000804253 0.00126494 0.00184285 0.001004 0.000717082 0.000373736 0.000233402 0.000423707 0.000281015 0.000489678 0.000216509 0.000331223 0.000540449 0.000252655 0.000274349 0.000387362 0.000600813 0.000330812 0.000447858 0.000306987 0.000991876 0.00130727 0.000909305 0.00120339 0.000845349 0.00116227 0.000760103 0.0010673 0.00141216 0.00200487 0.0015628 0.00216537 0.00136177 0.00102578 0.00150442 0.00233026 0.00172817 0.00328368 0.00255944 0.0035043 0.00268861 0.00184653 0.00103216 0.000725317 0.00113964 0.00198972 0.00139196 0.00154068 0.00298649 0.00401077 0.00314441 0.00420901 0.00327916 0.00254206 0.00351965 0.00266575 0.00180515 0.000972067 0.00121547 0.00134844 0.0019536 0.00151329 0.00211781 0.00167498 0.00297671 0.00406743 0.00315806 0.00430078 0.00531245 0.00668907 0.00561212 0.00447142 0.00580557 0.00476739 0.00610993 0.00502258 0.00640904 0.00527534 0.00428479 0.00322379 0.00246025 0.00154063 0.000799252 0.000404456 0.000203044 0.000318133 0.000156163 0.000637427 0.000954123 0.000730122 0.000151042 0.00025781 0.000453021 0.000183944 0.000213283 0.000315751 0.000545741 0.000254523 0.000903031 0.00173016 0.00111952 0.000926294 0.000640344 0.00105692 0.00192329 0.00128465 0.00148218 0.00283698 0.00404585 0.00307737 0.00438419 0.0053489 0.00672697 0.00579804 0.00456161 0.00598861 0.0049714 0.00642547 0.00523584 0.00671627 0.00559016 0.00465157 0.00349972 0.00263614 0.00173296 0.00087862 0.00108425 0.00131528 0.00296719 0.00389978 0.00524259 0.00435918 0.00579476 0.00460894 0.00604955 0.00509553 0.004037 0.00315329 0.00457048 0.00539142 0.0067365 0.00595128 0.0049244 0.00639107 0.00712655 0.00807978 0.00904365 0.00788691 0.00656159 0.00736754 0.00848733 0.00716435 0.0079957 0.00661491 0.00788439 0.00640857 0.00490765 0.00608148 0.00696834 0.00824632 0.00969329 0.00841253 0.00744028 0.00872651 0.00988785 0.011025 0.0120352 0.0106105 0.0092505 0.0078747 0.00890806 0.00744211 0.00871038 0.0072379 0.008208 0.00973886 0.011272 0.0102016 0.0116743 0.0104111 0.0119445 0.0134566 0.0146111 0.0131079 0.0144417 0.012816 0.0143162 0.01273 0.0111776 0.00962536 0.00804927 0.00650127 0.00507447 0.00378201 0.0026223 0.00355026 0.00443788 0.0056521 0.00709651 0.00582451 0.00478645 0.00616662 0.00732302 0.00860223 0.00976429 0.00814423 0.00664518 0.0079481 0.00918465 0.00759708 0.00888507 0.00728808 0.00859897 0.0070497 0.00821138 0.00988037 0.0114121 0.0096335 0.00796281 0.00644251 0.0050837 0.00387329 0.00281967 0.00368521 0.00484895 0.00616344 0.00735242 0.00590009 0.00462659 0.00562284 0.00435996 0.00544941 0.00652406 0.00519061 0.00628332 0.00497606 0.00383431 0.00283768 0.00366342 0.00476309 0.00578379 0.00455604 0.0055339 0.00432096 0.0053599 0.00418292 0.00316296 0.00398277 0.00299367 0.00381426 0.00283513 0.00365669 0.00268922 0.00349398 0.0025397 0.00333612 0.00409882 0.00505392 0.0063143 0.00522317 0.00432248 0.0054654 0.00451248 0.00569539 0.00471326 0.00593766 0.00491099 0.00618216 0.00510757 0.00640546 0.00764777 0.00898114 0.00735454 0.00867015 0.00707538 0.00836468 0.0068079 0.00805892 0.00653774 0.00777933 0.00910831 0.00744699 0.00601764 0.00719012 0.00845959 0.00991798 0.0119597 0.0102776 0.00880862 0.010672 0.0123564 0.0142647 0.0168322 0.0146917 0.0127869 0.0110169 0.00947287 0.0114086 0.00980336 0.0117801 0.0101468 0.0121559 0.0104898 0.0125306 0.0108265 0.00932095 0.00789974 0.00670675 0.00823573 0.00693127 0.00851437 0.00720292 0.00602993 0.00748174 0.00881459 0.0102851 0.011886 0.00996217 0.0115183 0.00960355 0.011204 0.0128834 0.0151387 0.0132815 0.0155435 0.0136208 0.0159016 0.0139892 0.0122345 0.0106141 0.00912027 0.00777533 0.00945514 0.00803112 0.00684478 0.00839109 0.00706313 0.00866314 0.0100946 0.011583 0.00972167 0.0113044 0.012905 0.0109359 0.0125834 0.0143465 0.0166215 0.0147085 0.016987 0.015024 0.0132889 0.0154066 0.0135828 0.0119443 0.0104076 0.00897126 0.0076422 0.00927415 0.0110309 0.012887 0.014597 0.0126096 0.0107341 0.0122709 0.0139258 0.0157124 0.0179608 0.0160383 0.0142483 0.0163362 0.0182819 0.0203777 0.0230372 0.0207061 0.01856 0.0166822 0.0148511 0.0132691 0.0116607 0.010258 0.0120037 0.0105746 0.0123443 0.0108336 0.0095947 0.0112771 0.0125454 0.0141921 0.0157235 0.0138306 0.0154807 0.0135309 0.0152104 0.0169236 0.019153 0.017252 0.01945 0.0175449 0.0197818 0.0177446 0.0161068 0.0143433 0.0129851 0.0114521 0.010172 0.00888406 0.0076506 0.00916767 0.0104877 0.011787 0.0134391 0.012142 0.0106911 0.0122603 0.0138257 0.0151435 0.0168621 0.0149705 0.0131878 0.0147289 0.0162472 0.0181318 0.0203507 0.0183008 0.0165714 0.0185672 0.0205945 0.0229841 0.0264173 0.0234088 0.0208461 0.0189237 0.016969 0.0155624 0.0138807 0.0155974 0.0174107 0.0190093 0.0215067 0.0194869 0.0174691 0.0159776 0.0177843 0.016196 0.0181287 0.0162936 0.0149626 0.0135695 0.0123011 0.0113324 0.0100117 0.00924088 0.0105165 0.00930405 0.0105288 0.00977725 0.00858727 0.00979215 0.0109946 0.0117351 0.0130604 0.0121349 0.0110591 0.0100599 0.00933378 0.00825627 0.00759183 0.0085965 0.00942398 0.0104043 0.0114153 0.0105884 0.00955343 0.00897094 0.00997712 0.00894672 0.00990764 0.00937011 0.0084139 0.00931471 0.0103342 0.0109136 0.0120489 0.0113667 0.0102503 0.011306 0.012674 0.0136006 0.0157549 0.0145147 0.0127408 0.0119141 0.0106552 0.0101005 0.0091526 0.0100935 0.0112615 0.0120102 0.0139391 0.0129266 0.0113829 0.0132958 0.0153547 0.016786 0.0199211 0.016129 0.0136399 0.014772 0.0170941 0.0187867 0.0234676 0.0209252 0.0176684 0.0222777 0.0274523 0.0318667 0.0417246 0.0288031 0.0222542 0.0182753 0.0155414 0.0135496 0.0121273 0.0110107 0.0116522 0.0105646 0.0117484 0.0125179 0.0138438 0.0124122 0.0111553 0.0123503 0.0133195 0.0145938 0.0164743 0.0147502 0.0136277 0.0151147 0.0167717 0.0188924 0.0210987 0.0182408 0.0161326 0.014537 0.0131278 0.0117831 0.0126651 0.0113197 0.0127204 0.0136638 0.0151871 0.0141277 0.0156846 0.0140551 0.0156154 0.0177135 0.0201871 0.0176251 0.019307 0.0169763 0.019206 0.0169841 0.0152056 0.0165704 0.0183171 0.020501 0.0235906 0.0209636 0.0185508 0.0212439 0.0243569 0.0273931 0.0323334 0.0285439 0.0246412 0.0221761 0.025868 0.0223404 0.0262751 0.0233475 0.0205532 0.0241225 0.0274929 0.031737 0.0375755 0.0306888 0.03505 0.0289873 0.0341016 0.0392891 0.0498894 0.0421908 0.0549892 0.0442996 0.0597246 0.0483929 0.0399248 0.0335068 0.0288916 0.024951 0.0219113 0.0195071 0.0171481 0.0156575 0.0138733 0.01298 0.0145479 0.0128992 0.0145972 0.016912 0.0196685 0.0167291 0.0182668 0.0157436 0.0180937 0.0198668 0.0230702 0.0260218 0.03221 0.0281129 0.0236383 0.0212833 0.0258568 0.0217435 0.0269512 0.0238916 0.0201268 0.0250171 0.030674 0.035784 0.0541191 0.0436079 0.033517 0.0515919 0.0752 0.102202 0.165922 0.0784319 0.0464598 0.0330645 0.0387003 0.0292891 0.0359859 0.0424616 0.063009 0.0502609 0.0838069 0.0578958 0.107955 0.232513 0.367125 0.175379 0.247247 0.116863 0.190144 0.091237 0.054902 0.0392715 0.0305222 0.035928 0.0430883 0.0533782 0.0798723 0.060351 0.0474449 0.0702309 0.10021 0.14963 0.232464 0.112934 0.0678303 0.0908974 0.132498 0.0779838 0.10442 0.0677646 0.0902274 0.0624661 0.0473498 0.037925 0.0314913 0.0267386 0.0229598 0.0199832 0.0225335 0.0196716 0.0220944 0.0248207 0.0284211 0.0244551 0.0213377 0.0237461 0.0271153 0.0307595 0.0360424 0.0316518 0.0275555 0.0321968 0.0372186 0.0428291 0.0503926 0.0417712 0.0353136 0.0301209 0.0258257 0.0225374 0.0199592 0.0223001 0.024858 0.0219017 0.0244969 0.0216087 0.0241078 0.0213312 0.018909 0.0209791 0.0234034 0.0261421 0.0300716 0.0266128 0.0237054 0.0270514 0.0307778 0.0352407 0.0415023 0.0360903 0.0314633 0.0275935 0.0321806 0.0281908 0.0329694 0.0287429 0.0254181 0.0295166 0.0336083 0.0387266 0.0445808 0.0377454 0.0435227 0.0369135 0.0425088 0.0491982 0.0591849 0.0504974 0.0610861 0.0519443 0.0633469 0.0534676 0.0458745 0.0395177 0.0344975 0.0406063 0.0470668 0.0553549 0.068835 0.0573416 0.0485759 0.0597076 0.0723613 0.0895874 0.113868 0.0841069 0.0657839 0.0798688 0.0988875 0.0760586 0.0932855 0.0729624 0.0886412 0.0702116 0.0574414 0.0479997 0.0405949 0.0344756 0.0295039 0.0257423 0.0227113 0.0200662 0.0176505 0.0197202 0.0172896 0.0194186 0.0216796 0.0190506 0.0213454 0.0187096 0.016269 0.0183498 0.0206176 0.0179876 0.020229 0.0175909 0.0198596 0.0172243 0.0147758 0.0168119 0.0143778 0.0164061 0.0139824 0.0159899 0.0135841 0.0155631 0.0131721 0.0151464 0.0172838 0.019658 0.0227364 0.0201222 0.017753 0.0205931 0.0181903 0.0210374 0.0186228 0.021473 0.0190441 0.0218986 0.0194471 0.0223003 0.0250046 0.027984 0.0245719 0.0275245 0.0241334 0.0270559 0.0236825 0.0265761 0.0232107 0.0260918 0.0297838 0.0340092 0.0303059 0.0346397 0.0308338 0.0352988 0.0313677 0.0360056 0.0319146 0.0284523 0.025414 0.0227142 0.02584 0.0230906 0.0262419 0.0234764 0.0209823 0.0238504 0.0266586 0.0298911 0.0337387 0.0293964 0.033084 0.0289104 0.0324925 0.0367544 0.0431359 0.0375771 0.0442937 0.0384749 0.0454697 0.0394372 0.0344265 0.0304117 0.027073 0.0242296 0.0275185 0.0245783 0.0220496 0.024975 0.0223659 0.0253383 0.0284426 0.032184 0.027951 0.0315634 0.0360051 0.0309528 0.0351871 0.0404295 0.0479176 0.0414598 0.0491614 0.0424914 0.0369011 0.0435806 0.0377806 0.032904 0.028943 0.0336568 0.03869 0.0446234 0.0529894 0.0457191 0.0396043 0.0468049 0.0544016 0.0636899 0.075407 0.0618791 0.0516804 0.0602159 0.0503971 0.0586253 0.0686467 0.0570913 0.0666873 0.0555799 0.0466916 0.0540965 0.0629607 0.0526512 0.0612253 0.0512349 0.0594768 0.049819 0.0420404 0.0484305 0.0409889 0.0470931 0.0400187 0.045833 0.0391399 0.0446339 0.0383214 0.0333904 0.02925 0.0255792 0.0222295 0.0191596 0.0163489 0.0138119 0.011547 0.00955613 0.0111249 0.00917311 0.0107306 0.012446 0.0143823 0.0165225 0.0138707 0.0159652 0.0133567 0.0154051 0.018297 0.0215228 0.0189036 0.0221609 0.019496 0.0170769 0.0148778 0.0129144 0.0153842 0.0133568 0.0158672 0.0186604 0.0211897 0.0181464 0.0206379 0.0176104 0.0200792 0.0227774 0.0257444 0.0289868 0.0250836 0.0282832 0.0243983 0.0208624 0.0176705 0.0148255 0.0123263 0.0101577 0.00830203 0.0067288 0.00791526 0.00640292 0.00751484 0.00882059 0.0102744 0.00837198 0.0067677 0.00542235 0.00423458 0.00512305 0.00602051 0.00709849 0.00878741 0.00750158 0.00640899 0.00794409 0.00926667 0.010792 0.0131489 0.0113538 0.00977417 0.0119341 0.0137959 0.0158906 0.0190451 0.0166228 0.0144524 0.0125096 0.0107914 0.00925185 0.0112952 0.00970912 0.0118146 0.014254 0.016401 0.0136717 0.0157583 0.0130966 0.015103 0.0173561 0.0198557 0.022622 0.0266306 0.0235016 0.0206579 0.0180789 0.0214425 0.0187979 0.0222136 0.0194996 0.0170436 0.0201916 0.0229618 0.0260111 0.0301912 0.0267951 0.0236935 0.0275546 0.0310045 0.0347993 0.0389997 0.0339138 0.0293462 0.0251982 0.0284718 0.0243626 0.0275654 0.0310712 0.035981 0.0320518 0.0370156 0.0329999 0.0380196 0.0436966 0.0490205 0.0425788 0.047698 0.041454 0.0463994 0.0403056 0.0349121 0.0300555 0.0256677 0.0217234 0.0182231 0.0151517 0.012496 0.0102228 0.00829836 0.00668488 0.00781434 0.00966477 0.0112278 0.00912922 0.00736087 0.00587511 0.00453768 0.00325422 0.00209864 0.00129642 0.000847551 0.00108969 0.000722305 0.000427082 0.000271035 0.000145325 0.000221514 0.00010999 0.000150082 0.000258315 0.000137266 0.000201568 9.87077e-05 0.000133762 0.000251308 0.000429883 0.00034947 0.000551966 0.000286213 0.000344501 0.000461632 0.00079637 0.00143715 0.00113786 0.00176386 0.000962874 0.00145682 0.00291396 0.00415494 0.00547662 0.00644271 0.00501511 0.00368079 0.00249213 0.00319457 0.0020067 0.00118863 0.000739751 0.000389466 0.000209104 0.000106419 0.000139851 0.000224328 0.000118743 0.000166487 0.0002752 0.000150951 0.000212242 0.000108046 0.000140879 0.000265754 0.000433575 0.000363064 0.000590261 0.000318805 0.000828546 0.00165174 0.00103174 0.000662675 0.000397027 0.00023908 0.000128429 0.000163897 0.000293887 0.000526466 0.000431416 0.000263346 0.000137669 0.000173908 0.00030738 0.000449648 0.000294818 0.000167884 0.000235498 0.000125618 0.000157899 0.000256581 0.000127526 0.000157349 0.000403429 0.000240232 0.000130892 0.00017221 0.000277062 0.000141304 0.000174781 0.000434723 0.000277716 0.000156929 0.000227071 0.000125624 0.000158042 0.000246431 0.000128728 0.000155245 0.000279443 0.000502475 0.000281507 0.000413894 0.000663156 0.000377585 0.000883868 0.00154307 0.000690176 0.000411331 0.000248143 0.000139683 0.000170112 0.000260259 0.000136844 0.000165121 0.000296372 0.000519373 0.000296007 0.000434733 0.000913402 0.00120706 0.000717881 0.00043252 0.000261583 0.000147732 0.000178678 0.000271342 0.000144602 0.000172155 0.000305831 0.000544192 0.000311442 0.000462374 0.000737243 0.00044301 0.000269678 0.000153735 0.000185136 0.000279177 0.000150045 0.000177726 0.000315694 0.000551893 0.000318395 0.000467379 0.000969091 0.00164081 0.000962658 0.00136656 0.00212669 0.00301311 0.00386839 0.00229072 0.00127725 0.000758261 0.000457879 0.000277967 0.000158526 0.000190148 0.000284503 0.000153678 0.000181222 0.000320164 0.000569031 0.000329271 0.000488261 0.000768122 0.000460203 0.00028052 0.00016152 0.000192471 0.000287667 0.000156138 0.000184116 0.000325458 0.000570321 0.000330272 0.000485792 0.00100762 0.00174614 0.00100806 0.00145057 0.00324438 0.00506984 0.00718182 0.00578306 0.00467075 0.00356472 0.00279339 0.00197928 0.00113494 0.000807712 0.00140706 0.00060986 0.000325329 0.000364904 0.000775423 0.000546533 0.0002934 0.000342028 0.000358118 0.000474298 0.000735626 0.0011076 0.000907746 0.00136456 0.00222952 0.00152451 0.00182881 0.000982437 0.00113783 0.00253721 0.00330821 0.00429283 0.00601914 0.00489768 0.00389431 0.00309665 0.00452594 0.00351386 0.00281266 0.00411654 0.00498616 0.00654548 0.00554648 0.00455575 0.00599664 0.00756334 0.00882746 0.00707492 0.00825127 0.0102456 0.0118622 0.00962687 0.00773284 0.00608022 0.00715883 0.00547704 0.00661757 0.00784427 0.00919376 0.00721181 0.00530719 0.00657885 0.00789929 0.0094329 0.0117412 0.0100754 0.00859432 0.0107226 0.0123977 0.0142602 0.0171756 0.0150524 0.0131323 0.0113842 0.0098198 0.00842561 0.0104699 0.00899829 0.0111401 0.0136533 0.0156651 0.0128601 0.0147675 0.0121001 0.0139192 0.0159349 0.0181548 0.0206114 0.0246618 0.0217977 0.0192183 0.016882 0.0203449 0.0178881 0.0215237 0.0189413 0.0165995 0.0144931 0.0125942 0.0109066 0.00940221 0.0080631 0.00691035 0.00859541 0.0106033 0.0129755 0.0149411 0.0122668 0.00998864 0.0115805 0.01336 0.0153523 0.0185675 0.0162384 0.0141441 0.0171414 0.0195813 0.0222801 0.0265227 0.0234232 0.0206063 0.0180537 0.0157541 0.0136965 0.0118546 0.0144206 0.0165769 0.018974 0.02266 0.0198972 0.0174004 0.0208152 0.0236788 0.026827 0.0302799 0.0257043 0.0216341 0.0245675 0.0277897 0.0313261 0.0367168 0.0327069 0.0290449 0.034062 0.0382021 0.0427363 0.0477102 0.0411062 0.0352009 0.0299276 0.0252524 0.0211465 0.0175731 0.0200287 0.0227423 0.0257324 0.0305633 0.0271192 0.0239879 0.0285211 0.0321127 0.0360554 0.0403845 0.0343529 0.0290283 0.0243744 0.0275223 0.0230583 0.0260606 0.0294026 0.0331539 0.0278696 0.0233445 0.0195166 0.0162955 0.0135556 0.0110861 0.00867205 0.0063299 0.00421403 0.00246164 0.00133611 0.000781556 0.000468005 0.000283842 0.00016354 0.000195016 0.00028896 0.00015799 0.000184307 0.000323853 0.000582299 0.000335082 0.000498908 0.000785339 0.000465883 0.000283886 0.00016457 0.000195247 0.000290317 0.000159084 0.000186318 0.000327165 0.000580392 0.000332561 0.000492826 0.00104278 0.00186754 0.00104565 0.00153202 0.00353852 0.00467194 0.00269411 0.00140079 0.000800535 0.000471838 0.000285795 0.000165756 0.000196708 0.000290084 0.000158798 0.000183884 0.000324864 0.000592432 0.00033683 0.000504195 0.000803012 0.000467276 0.000278461 0.000158656 0.000184409 0.000253662 0.000581064 0.000317303 0.000186859 0.000228848 0.000357668 0.000188157 0.000219291 0.000568469 0.000329031 0.000187641 0.000233684 0.000373125 0.00019453 0.000228604 0.000631213 0.000355945 0.000199264 0.0002523 0.00042144 0.000219732 0.000269051 0.00079898 0.000458138 0.00026353 0.000401581 0.000218439 0.000276546 0.000498065 0.0002663 0.000358914 0.000674737 0.00121784 0.000537823 0.000838639 0.00135077 0.000676912 0.00360439 0.00220808 0.00328155 0.00222427 0.00120126 0.000753353 0.000410744 0.000771232 0.000417689 0.000798455 0.000445844 0.000913698 0.00053315 0.00113618 0.000766264 0.00139174 0.00233963 0.0049324 0.00300033 0.00181156 0.00225663 0.00265183 0.00161133 0.001304 0.00174779 0.00228937 0.00117688 0.00114225 0.00158643 0.00394705 0.00649186 0.0050638 0.00405217 0.00705338 0.0110111 0.0090075 0.00832897 0.00836951 0.0098271 0.0128657 0.0134667 0.0142691 0.0161045 0.0177409 0.0193066 0.0198752 0.0179059 0.0158763 0.0155129 0.0180485 0.0203856 0.0210019 0.0183287 0.015543 0.0124326 0.0125314 0.0158595 0.0189659 0.0219331 0.0231713 0.020127 0.0167687 0.0132386 0.014931 0.0182093 0.0216995 0.0247863 0.0267816 0.0237075 0.0200635 0.0170265 0.0131099 0.00978745 0.0122899 0.00965052 0.00625296 0.00451678 0.00351475 0.00941559 0.00626581 0.00401852 0.00193545 0.00107583 0.000500647 0.000623675 0.00159531 0.00247164 0.00126402 0.00246853 0.000892675 0.000445537 0.000520942 0.00117143 0.000802528 0.00043341 0.000489588 0.00149354 0.00309739 0.00185069 0.00205126 0.00108332 0.00108562 0.00164079 0.00397788 0.00625403 0.00878589 0.00701413 0.00556476 0.0078887 0.00956475 0.0114646 0.0134892 0.0106876 0.00796551 0.00538385 0.00731347 0.00478101 0.00659554 0.00901171 0.0120542 0.0093437 0.0121589 0.0100128 0.0127899 0.0156538 0.0186361 0.0151832 0.019112 0.0153541 0.0196789 0.0160734 0.0126597 0.0157922 0.0126438 0.0151263 0.0185938 0.0157039 0.0192136 0.0224227 0.0260523 0.029218 0.0321044 0.0287393 0.025177 0.0217403 0.0247318 0.0216909 0.0182869 0.0217444 0.0190999 0.0226621 0.0254758 0.0287276 0.0250432 0.0281536 0.0317595 0.0282712 0.0318494 0.0354349 0.039243 0.0354455 0.0395731 0.0356964 0.0319927 0.0362697 0.0328023 0.0295022 0.0265137 0.0235605 0.0276995 0.0233571 0.0279685 0.0227945 0.018842 0.0163081 0.01421 0.0122176 0.0103803 0.0129117 0.0148729 0.0169842 0.0201337 0.0176947 0.0155361 0.0185376 0.021052 0.0240279 0.0278622 0.0232019 0.0194054 0.0227437 0.0275882 0.0328423 0.0380008 0.0328685 0.0274507 0.03289 0.0385522 0.0435378 0.0495803 0.044625 0.0389437 0.0333737 0.0287702 0.0251358 0.0221318 0.0264353 0.0300317 0.0343733 0.0407793 0.0357653 0.0315195 0.0374155 0.042312 0.0479095 0.0540349 0.0465351 0.0396368 0.0455042 0.0511616 0.056295 0.0639107 0.0583361 0.0525668 0.0602767 0.066429 0.0727693 0.0797074 0.0697775 0.0613876 0.0541298 0.0477321 0.0420085 0.0368291 0.0320917 0.0352554 0.0306933 0.0338782 0.0373286 0.0410549 0.0451921 0.0401395 0.0442843 0.0485828 0.0435991 0.0477567 0.0431486 0.039138 0.0356594 0.0326596 0.0300847 0.0278986 0.0260837 0.0246207 0.023489 0.0225443 0.0216591 0.0207667 0.0198084 0.0187642 0.0176374 0.016445 0.0152132 0.0139698 0.0127409 0.0115481 0.0118176 0.0120993 0.0123925 0.0137591 0.0134071 0.0130675 0.0143657 0.0147751 0.0151974 0.0156319 0.0141224 0.0126962 0.0130094 0.0133313 0.0136613 0.0152722 0.0148798 0.0144963 0.0160774 0.0165333 0.0169987 0.0188415 0.0182906 0.0177494 0.0172186 0.0166989 0.0161911 0.0156958 0.0170383 0.0176408 0.0182531 0.0198484 0.0191081 0.0183719 0.019677 0.0205786 0.0214742 0.0223681 0.0205944 0.0188755 0.0195077 0.0201495 0.0208004 0.0228748 0.0221072 0.0213472 0.023263 0.0241612 0.0250641 0.0259729 0.0236502 0.0214601 0.0194014 0.0174729 0.0156729 0.013999 0.0143438 0.0146952 0.0150531 0.0169202 0.0164973 0.0160815 0.0179555 0.0184461 0.0189443 0.01945 0.01735 0.0154171 0.0157871 0.016163 0.0165449 0.0186792 0.0182295 0.0177864 0.0199632 0.0204837 0.0210117 0.0235545 0.0229367 0.0223271 0.0217257 0.0211324 0.0205471 0.0199701 0.0221285 0.0228055 0.0234909 0.026026 0.0252256 0.0244338 0.0268885 0.0278118 0.0287433 0.0296839 0.0268352 0.0241849 0.0248876 0.0255991 0.0263197 0.0293193 0.0284815 0.0276536 0.0306339 0.0315941 0.032565 0.036069 0.0349473 0.0338373 0.0327381 0.0316489 0.0305685 0.0294959 0.0284297 0.0273684 0.02631 0.0252521 0.0241913 0.0231232 0.0220418 0.0209403 0.02216 0.0234969 0.0247945 0.0264969 0.0249557 0.0233529 0.0245551 0.0264453 0.0282503 0.0299916 0.0279921 0.0260637 0.0273147 0.0285548 0.0297897 0.0323328 0.0309005 0.0294564 0.031689 0.0333569 0.0350064 0.0378241 0.0359398 0.0340318 0.0320864 0.0300866 0.0280076 0.0258275 0.0272341 0.029698 0.0320465 0.0341771 0.0315663 0.0288785 0.0308399 0.0337229 0.0365343 0.0393019 0.0366964 0.0343086 0.0365106 0.0386711 0.0408054 0.0439788 0.0415809 0.0391589 0.0420251 0.0447156 0.0473897 0.0500592 0.0463647 0.0429256 0.0396952 0.036646 0.0337596 0.0310236 0.0322597 0.0335008 0.0347489 0.0380509 0.0366152 0.0351858 0.0382823 0.0399204 0.0415646 0.0432181 0.0394955 0.0360058 0.037273 0.0385519 0.0398437 0.0439027 0.0424196 0.0409512 0.0448839 0.0465643 0.0482614 0.0529399 0.0510034 0.0490869 0.0471877 0.0453028 0.0434288 0.0415613 0.0450408 0.0471585 0.049285 0.0535419 0.0511388 0.0487486 0.0527338 0.0554213 0.058129 0.0608632 0.0559636 0.0514251 0.053583 0.0557623 0.0579662 0.063385 0.0608812 0.0584086 0.063629 0.0664312 0.0692741 0.0721616 0.0659233 0.0601974 0.0548986 0.0499772 0.0454017 0.0411496 0.0372032 0.0335472 0.0301672 0.0270495 0.0241807 0.0215472 0.0191357 0.0169327 0.0173266 0.0177268 0.0181335 0.0205474 0.0200696 0.0195991 0.0220905 0.0226417 0.0232012 0.0237692 0.0210329 0.0185469 0.0189674 0.0193954 0.0198311 0.0225383 0.022028 0.0215263 0.024346 0.0249321 0.0255277 0.0288227 0.0281293 0.0274467 0.0267745 0.0261121 0.0254592 0.0248155 0.0277889 0.0285382 0.0292977 0.0327765 0.0318953 0.0310257 0.0345411 0.0355475 0.036567 0.0376002 0.0336697 0.0300679 0.0308493 0.0316423 0.0324476 0.0364279 0.0354947 0.0345755 0.0386479 0.0397107 0.0407897 0.0418856 0.0373759 0.0332659 0.0295274 0.0261334 0.0230576 0.0202751 0.0207275 0.0211888 0.0216594 0.0246736 0.0241248 0.0235862 0.0267496 0.0273769 0.028016 0.0286678 0.0252334 0.0221396 0.0226301 0.0231315 0.0236447 0.0269869 0.0263892 0.025805 0.029333 0.0300127 0.030708 0.0348433 0.0340363 0.0332469 0.032474 0.0317166 0.0309736 0.0302442 0.0340978 0.0349444 0.0358064 0.0403178 0.0393199 0.0383396 0.0429994 0.0441322 0.045285 0.0464589 0.0413344 0.0366849 0.0375809 0.0384956 0.0394302 0.0445082 0.0434284 0.0423709 0.0476553 0.0488752 0.0501202 0.0563143 0.0548811 0.0534761 0.0520978 0.0507447 0.0494157 0.0481094 0.0468248 0.0455606 0.0443159 0.0430896 0.0418809 0.0406887 0.0395122 0.0383507 0.0424705 0.0438076 0.0451617 0.050008 0.0484531 0.046918 0.0517133 0.0534714 0.0552529 0.0570594 0.0515841 0.046534 0.0479255 0.0493371 0.0507701 0.056451 0.0548044 0.0531824 0.0588922 0.0607527 0.0626425 0.069394 0.0672268 0.0650947 0.0629958 0.0609285 0.058891 0.0568817 0.0624585 0.0647517 0.0670792 0.0737735 0.0711149 0.068499 0.0750974 0.0780848 0.0811264 0.0842255 0.0764775 0.0694431 0.0718456 0.0742886 0.0767743 0.0848867 0.0820315 0.0792293 0.0873851 0.0906085 0.0938992 0.0972607 0.0877978 0.0793048 0.0715979 0.0645629 0.0581238 0.0522255 0.0537044 0.0552081 0.0567379 0.0633118 0.0615527 0.0598239 0.0665156 0.068502 0.0705239 0.072583 0.0651025 0.0582951 0.0598811 0.0614975 0.0631459 0.0706813 0.0687855 0.0669265 0.0746812 0.0768204 0.0790028 0.0882184 0.0857008 0.083235 0.0808184 0.0784485 0.0761232 0.0738403 0.0818824 0.0845094 0.0871882 0.0968949 0.0937987 0.0907674 0.100697 0.104212 0.10781 0.111496 0.100059 0.0899215 0.0927122 0.0955633 0.0984781 0.110003 0.106609 0.103296 0.115276 0.119155 0.12314 0.138459 0.133724 0.129133 0.124675 0.120341 0.116124 0.112016 0.108011 0.104104 0.100288 0.0965596 0.0929133 0.0893451 0.0858509 0.0824268 0.0790724 0.0757818 0.0725502 0.0693724 0.0662437 0.0631586 0.0601115 0.0570958 0.0541039 0.0511319 0.0481738 0.0452185 0.0422534 0.0392624 0.0362466 0.0331619 0.0358968 0.0391893 0.0424291 0.0461081 0.0426134 0.0390965 0.0428072 0.0465701 0.0503567 0.0542011 0.049633 0.0456722 0.048912 0.0521642 0.0554374 0.0603896 0.0567637 0.0531803 0.0580969 0.0620558 0.0660832 0.0726377 0.0681483 0.0637594 0.0594652 0.0552562 0.0511387 0.0470931 0.0520217 0.0564086 0.0609075 0.0674367 0.0624848 0.0576873 0.053054 0.0591495 0.0542906 0.0496507 0.0557778 0.0509434 0.0464323 0.0423747 0.0386747 0.043978 0.0402593 0.0457888 0.0519571 0.0565888 0.0499027 0.0544265 0.0480276 0.0525083 0.0575075 0.0628039 0.0683999 0.0608444 0.0661798 0.0717777 0.0642184 0.0695041 0.0750002 0.0807126 0.0725591 0.0655373 0.0702935 0.0751825 0.0802109 0.0890025 0.0833364 0.0778576 0.0866548 0.0928374 0.0992669 0.105955 0.0948658 0.085387 0.0772349 0.0701865 0.0640656 0.05874 0.0620784 0.0654587 0.0688881 0.0754613 0.0715945 0.0677983 0.0743725 0.0786486 0.0830221 0.0875001 0.0794052 0.072373 0.0759192 0.0795323 0.0832177 0.0917624 0.0875496 0.0834326 0.0920899 0.0967989 0.101635 0.11311 0.107529 0.102115 0.0968584 0.091751 0.0867835 0.0819475 0.0907194 0.0962173 0.101891 0.113748 0.107227 0.100937 0.112916 0.120164 0.127714 0.135583 0.120514 0.107749 0.113805 0.120069 0.126554 0.142427 0.134838 0.127539 0.14379 0.152355 0.161299 0.183866 0.173259 0.163142 0.153487 0.14427 0.135466 0.127053 0.119013 0.111325 0.103973 0.0969445 0.0902256 0.0837969 0.0776486 0.0871497 0.0805658 0.0743199 0.0837925 0.0771533 0.0709039 0.0650251 0.0594795 0.0674872 0.0617354 0.0702004 0.0642336 0.0589234 0.0669278 0.0731508 0.0800226 0.0914898 0.0835701 0.0763251 0.0873782 0.0957989 0.104973 0.114918 0.100064 0.0874745 0.0767291 0.0837424 0.0736886 0.0802957 0.0873508 0.0992998 0.0912515 0.104112 0.0954919 0.109317 0.125686 0.13734 0.1193 0.13007 0.113382 0.123343 0.107917 0.0948764 0.102894 0.0908332 0.0982923 0.106187 0.0940845 0.101382 0.109049 0.117106 0.125578 0.142517 0.13268 0.123363 0.114538 0.130139 0.1205 0.111427 0.126987 0.117136 0.134036 0.145504 0.157792 0.137505 0.148723 0.160681 0.140375 0.151233 0.162741 0.186972 0.173419 0.200038 0.185009 0.170944 0.1976 0.182083 0.167629 0.15418 0.141679 0.163574 0.149947 0.17373 0.158874 0.145176 0.132556 0.120932 0.110237 0.100419 0.091448 0.0832897 0.0758509 0.0689339 0.0622552 0.0557466 0.0496345 0.0441205 0.0392292 0.034887 0.0310081 0.0366861 0.0326648 0.0385258 0.0451403 0.0503687 0.0431265 0.0482055 0.0411464 0.0461077 0.0516323 0.057751 0.0644115 0.0742163 0.0668099 0.0600094 0.0538167 0.0624603 0.0561222 0.0650525 0.0585051 0.0525666 0.0471654 0.0422445 0.0377569 0.0336625 0.039444 0.0440913 0.0491855 0.0569998 0.0511917 0.0459147 0.0531834 0.0592341 0.0659674 0.0735393 0.0634215 0.0547796 0.0609405 0.0677572 0.0753519 0.087607 0.0786109 0.0705672 0.0820389 0.0915862 0.102277 0.119934 0.107181 0.0958006 0.0856645 0.0766416 0.0686167 0.0615003 0.0551682 0.0494787 0.0443311 0.0396516 0.0353847 0.031488 0.0279302 0.0246833 0.0290081 0.0326649 0.0366708 0.0424371 0.0379188 0.033807 0.0391299 0.0437795 0.0489393 0.0547197 0.0474238 0.0410629 0.0458917 0.0512259 0.0571594 0.0662505 0.0591815 0.0529651 0.0612786 0.0687589 0.0772485 0.090608 0.0803833 0.0713712 0.063459 0.0564987 0.0504463 0.0450951 0.051976 0.0583644 0.0657049 0.0769555 0.0680565 0.0603008 0.0535301 0.0622969 0.0551682 0.064394 0.0568737 0.050368 0.0448104 0.039961 0.0356566 0.0317901 0.0364951 0.032548 0.0373171 0.0332842 0.0296661 0.0263787 0.023381 0.0269951 0.0239576 0.0275853 0.0245201 0.0217203 0.0250624 0.0281566 0.0315751 0.0361091 0.0321836 0.0287138 0.0327912 0.0368203 0.0415303 0.0471922 0.0406347 0.0354077 0.0309578 0.0347091 0.0303199 0.0340036 0.038132 0.0438415 0.0389519 0.0448778 0.0397765 0.0459952 0.0539649 0.0620251 0.0524295 0.0600618 0.0509945 0.0582083 0.0496254 0.042841 0.0483286 0.0418713 0.0471103 0.0409157 0.0459469 0.0532815 0.062456 0.054837 0.0645267 0.0564704 0.0667164 0.0766845 0.0883168 0.0739354 0.0849022 0.0713476 0.060494 0.0517895 0.0586377 0.0665996 0.0758012 0.0899415 0.0786656 0.0689094 0.0816923 0.0936745 0.107526 0.129474 0.112405 0.0976436 0.117618 0.101869 0.123197 0.106384 0.0919558 0.0796009 0.0690443 0.0826986 0.071529 0.0859806 0.0741507 0.0641093 0.0556122 0.0484689 0.0424737 0.0375526 0.043515 0.0498158 0.0573727 0.0686269 0.0592118 0.0512692 0.0611414 0.0528154 0.0631154 0.0544266 0.0651645 0.0560826 0.0672187 0.0577474 0.0693341 0.0813296 0.0961795 0.0786639 0.0926031 0.076022 0.0891546 0.0734588 0.085952 0.0710251 0.0828096 0.0969284 0.0797792 0.0663131 0.0769206 0.0894556 0.104325 0.127886 0.109005 0.093087 0.113935 0.134334 0.158253 0.197212 0.167149 0.14126 0.119273 0.101013 0.124986 0.105232 0.131053 0.109775 0.137751 0.114647 0.144991 0.119654 0.0998804 0.0841657 0.0715389 0.0871604 0.0737513 0.0902251 0.0761017 0.0647992 0.0785989 0.09363 0.112962 0.138241 0.108262 0.131554 0.103961 0.125347 0.15282 0.199395 0.161856 0.213226 0.17187 0.228571 0.183276 0.145937 0.118229 0.097297 0.081131 0.10114 0.0840268 0.0707735 0.0871941 0.0730064 0.0905277 0.110797 0.138032 0.105695 0.130389 0.164477 0.123899 0.154627 0.19648 0.265318 0.211516 0.287349 0.22885 0.176418 0.248746 0.190664 0.146681 0.116363 0.0944696 0.0781332 0.0656896 0.0557945 0.0677238 0.0811692 0.0989641 0.130857 0.104024 0.0845555 0.11005 0.140314 0.185831 0.25247 0.170103 0.123137 0.157157 0.207653 0.271235 0.374063 0.296664 0.228266 0.326424 0.410787 0.507367 0.687435 0.561144 0.452415 0.361785 0.279498 0.206302 0.152016 0.117334 0.166696 0.125914 0.186388 0.136873 0.105844 0.151053 0.211952 0.295916 0.443797 0.334577 0.244953 0.170079 0.124589 0.0962472 0.0764474 0.0627653 0.0521413 0.0445215 0.0380181 0.0332308 0.0289367 0.0255189 0.029685 0.0261877 0.0306124 0.0363627 0.04239 0.0350255 0.0408144 0.0340531 0.0394165 0.0459072 0.0547831 0.0659541 0.0882457 0.0705362 0.0574418 0.0480347 0.0610346 0.050505 0.0655841 0.0534195 0.0444732 0.0569632 0.0712711 0.0917117 0.149496 0.105084 0.0782957 0.123351 0.189143 0.278787 0.406632 0.228231 0.124371 0.08247 0.108301 0.0757052 0.0969392 0.129242 0.225448 0.151209 0.273415 0.183288 0.327914 0.539682 0.730046 0.463638 0.605022 0.385146 0.519885 0.323622 0.187165 0.115276 0.0820502 0.104069 0.138753 0.196602 0.325293 0.232565 0.157931 0.274254 0.381184 0.504158 0.654171 0.443478 0.283222 0.383659 0.499096 0.636829 0.898564 0.722419 0.565118 0.814197 1.03313 1.26685 1.79885 1.47067 1.17074 0.941414 0.748256 0.581224 0.446793 0.678518 0.857946 1.08968 1.57515 1.25747 0.997181 0.793067 1.18508 0.90864 1.34565 1.1067 0.837637 0.662131 0.483514 0.352034 0.236688 0.157761 0.305331 0.201267 0.385347 0.26301 0.173649 0.34105 0.490913 0.666194 1.06257 0.849066 0.605795 0.454864 0.299508 0.210101 0.130012 0.269195 0.418275 0.559153 0.963376 0.760459 0.522198 0.38844 0.728951 0.495043 0.908472 0.70925 0.478169 0.354863 0.224047 0.161558 0.0996197 0.0741842 0.0503137 0.0407625 0.0309339 0.0265676 0.0215678 0.0191379 0.0162553 0.0146974 0.0129111 0.0118041 0.0142886 0.0127218 0.0115132 0.0142749 0.012749 0.0115079 0.0105287 0.0131289 0.0147373 0.0168087 0.01945 0.0229731 0.0162091 0.0186969 0.0218826 0.016076 0.0186501 0.0214521 0.0260987 0.0309999 0.0535259 0.0413909 0.0321114 0.0263437 0.0441202 0.0343583 0.0277066 0.0498333 0.0384275 0.0306189 0.0251758 0.0211475 0.0181634 0.0291975 0.0358982 0.0456937 0.109581 0.0787643 0.0588673 0.152778 0.206377 0.285566 0.380807 0.152112 0.0601781 0.0830263 0.117383 0.16786 0.0677115 0.0959041 0.139699 0.0587612 0.0835543 0.119636 0.182485 0.0774866 0.0405698 0.0508 0.0750258 0.100814 0.228887 0.168742 0.107418 0.246763 0.379445 0.49983 1.00332 0.794604 0.548131 0.411059 0.288549 0.199278 0.456359 0.339997 0.235445 0.558356 0.404519 0.29712 0.210572 0.520447 0.686736 0.91212 1.19152 1.52983 0.748218 0.988849 1.32887 0.655549 0.838072 1.16928 1.48926 1.9375 3.53288 2.66751 2.22221 1.6445 3.09974 2.47629 1.9728 3.55451 3.00439 2.29596 1.91453 1.44281 1.17333 0.87868 0.692981 0.51914 0.398956 0.955071 1.18506 1.53338 3.10713 2.45547 2.07636 4.11831 4.6724 5.77329 6.51351 3.58845 1.85502 2.40586 2.8222 3.64593 6.51508 5.18801 4.53338 8.01533 9.00722 11.0126 17.5009 14.7103 13.3091 11.109 10.0179 8.32092 7.48451 12.6256 13.8072 16.1821 24.1008 21.1919 19.5745 27.7699 29.8405 32.8164 34.9566 25.8724 17.6547 20.5697 22.3622 25.8565 35.2736 31.3632 29.3174 38.4631 40.6424 44.5966 46.881 37.5758 27.9823 19.2603 12.3216 7.41251 4.23179 5.40428 6.2212 7.85804 4.56457 5.36399 6.80577 3.9242 4.69681 6.0183 9.92687 7.86396 12.7404 11.2204 8.98739 14.4765 12.8697 10.438 9.22578 14.9412 16.6331 19.9724 22.1014 26.2322 17.6609 19.7393 23.7948 15.7592 17.7714 11.3607 6.98416 4.20133 2.52799 1.41576 0.741585 0.359283 0.162275 0.222369 0.351904 0.471935 0.91305 0.712891 0.478123 0.945626 1.33548 1.64573 2.2387 1.28928 0.703249 0.90205 1.26971 1.56477 2.59954 2.16231 1.59043 2.69011 3.577 4.23445 6.80401 5.81195 4.44179 3.75902 2.83253 2.36171 1.73848 3.04901 4.02038 4.72943 7.8988 6.50927 5.35288 8.93467 10.3297 12.9668 15.0423 9.90411 6.17534 7.20715 9.28778 10.7599 16.5991 14.5108 11.4691 18.2092 21.6201 25.0374 30.2024 20.7444 13.7009 8.80382 5.5543 3.45825 2.12276 1.27186 1.56308 0.929706 1.29177 1.58084 2.1278 1.32619 0.801611 1.00759 1.37198 1.66253 2.58415 2.1636 1.61483 2.54679 3.3763 3.9981 5.24881 3.41997 2.218 1.41886 0.884346 0.539828 0.717787 0.42992 0.600071 0.773858 1.19397 0.954853 1.46564 1.14175 1.74475 2.64922 3.4875 2.25928 2.76725 1.83073 2.34837 1.56432 1.02766 1.26537 1.65702 1.9908 2.94462 2.48088 1.89457 2.8496 3.69384 4.36713 6.50363 5.48159 4.28337 3.53501 5.38391 4.13879 6.23742 5.30383 4.04726 6.17295 8.02658 9.3816 12.0724 8.09615 9.46826 6.36412 8.20611 9.61003 14.1227 12.1586 17.826 14.0177 20.512 17.8085 14.0007 12.0621 9.36913 8.0171 6.1614 5.23859 3.98719 3.36526 2.53437 2.11295 3.39057 2.55022 4.09766 6.51612 8.45562 5.38206 6.3228 4.01828 5.2804 6.20842 8.07784 9.43501 14.284 12.3302 9.59029 8.21948 12.6378 9.84952 15.0945 13.0864 10.2312 15.7513 19.7865 22.5505 32.492 28.9212 23.5419 33.7257 40.4221 44.6739 52.5216 39.2099 27.8822 19.0504 21.7864 14.6136 18.5071 21.2221 30.659 27.073 38.2161 31.4619 43.5696 57.4237 66.2363 51.5897 56.6751 42.6515 50.8311 37.439 26.4727 18.1322 12.1437 14.0852 17.9052 20.6035 29.6663 26.0613 20.8345 30.0662 36.8696 41.4284 49.8657 36.4961 25.8203 29.4426 36.3056 25.7331 29.3803 20.5453 25.7854 17.9465 12.3176 8.38362 5.68152 3.84665 2.60492 1.75874 2.10903 1.44989 1.84828 2.27042 2.83294 1.94749 1.3499 1.68806 2.09344 2.57454 3.70237 2.99188 2.4351 3.50535 4.30591 5.32415 7.6264 6.24114 5.03172 4.1495 3.27257 2.72511 4.01647 3.08064 4.52812 6.66283 8.60878 5.8831 6.89193 4.73191 6.09499 7.20688 9.08727 10.8561 15.3849 13.1753 10.3587 8.87996 12.8516 10.0427 14.5673 12.5527 9.78633 14.3 18.1682 20.9447 29.6879 25.9678 20.6902 29.4658 36.4233 41.2184 50.0935 36.706 26.266 18.4769 21.2918 14.9019 18.8669 21.7445 30.4881 26.6697 37.1225 30.0323 41.5684 56.0883 66.9445 50.5575 56.6657 42.0578 51.1673 37.6618 27.0961 19.1405 13.3633 9.30657 6.50159 4.55945 3.20495 2.25304 1.58324 1.11495 0.789255 0.559939 0.392002 0.261635 0.347564 0.231524 0.310669 0.401832 0.55976 0.446952 0.626928 0.498443 0.703085 0.987641 1.21349 0.871926 1.07396 0.774 0.955768 0.691709 0.501847 0.621562 0.765032 0.935746 1.28116 1.04634 0.8536 1.17491 1.43953 1.76274 2.15168 1.56667 1.14572 0.841595 0.621056 0.460402 0.341274 0.419852 0.312484 0.384441 0.468816 0.353207 0.429604 0.325479 0.245791 0.300944 0.364249 0.279009 0.336881 0.259361 0.312552 0.241918 0.187178 0.22614 0.176141 0.211923 0.166122 0.199095 0.157082 0.187445 0.148842 0.176823 0.209321 0.2473 0.312041 0.263691 0.222562 0.281698 0.237136 0.301574 0.253198 0.323577 0.270928 0.347965 0.290602 0.375078 0.449461 0.53772 0.415923 0.496468 0.385807 0.459466 0.358706 0.426161 0.334227 0.3961 0.468922 0.368918 0.291915 0.232384 0.186157 0.150093 0.121925 0.0999466 0.116381 0.095825 0.111208 0.129187 0.150108 0.174401 0.142727 0.165359 0.135866 0.156971 0.19155 0.235197 0.202573 0.249704 0.214501 0.184169 0.15807 0.135627 0.166677 0.142583 0.176016 0.218742 0.256824 0.206234 0.241502 0.194751 0.227436 0.26546 0.309623 0.360845 0.290503 0.337718 0.272923 0.22181 0.181339 0.149171 0.123506 0.102952 0.0864272 0.0730932 0.0831042 0.0705213 0.0799483 0.0907544 0.103098 0.0871222 0.0741057 0.0836668 0.094551 0.106906 0.126873 0.111892 0.0987052 0.117174 0.133207 0.15144 0.172155 0.143876 0.120914 0.102191 0.0868587 0.0742458 0.0638222 0.0713801 0.0798884 0.0894797 0.104998 0.0934954 0.0832946 0.09773 0.11 0.123845 0.139445 0.117947 0.100269 0.112398 0.126019 0.141292 0.167249 0.148883 0.132515 0.157008 0.176757 0.198934 0.237769 0.210884 0.186961 0.165704 0.146839 0.130112 0.1153 0.13678 0.154727 0.175012 0.209673 0.184979 0.163151 0.195661 0.222308 0.252484 0.286618 0.237579 0.197913 0.223741 0.252833 0.285558 0.344589 0.304597 0.269081 0.325186 0.368711 0.41777 0.472999 0.389562 0.322321 0.26794 0.223795 0.187823 0.15839 0.134206 0.114245 0.0976873 0.0838814 0.0723041 0.0803974 0.06945 0.0771683 0.085717 0.0950449 0.082271 0.0714973 0.0790053 0.0870429 0.0957797 0.110643 0.100361 0.0909536 0.105187 0.116258 0.128397 0.149696 0.135304 0.122214 0.110278 0.0993682 0.08941 0.103981 0.093398 0.108931 0.127595 0.142441 0.12143 0.135259 0.115675 0.128534 0.142667 0.15822 0.175358 0.20641 0.185909 0.167341 0.150516 0.1771 0.158896 0.187553 0.167866 0.150135 0.177487 0.198769 0.222443 0.265092 0.23649 0.210823 0.25162 0.282715 0.317422 0.356126 0.296936 0.248752 0.209385 0.233586 0.197231 0.219499 0.244133 0.271374 0.229045 0.194248 0.165531 0.141735 0.121928 0.105364 0.115881 0.127385 0.139937 0.162687 0.147865 0.134308 0.156382 0.172447 0.190045 0.209303 0.178872 0.153612 0.1685 0.184697 0.202301 0.236755 0.215786 0.196533 0.230358 0.253355 0.278444 0.329057 0.29891 0.271323 0.246108 0.223084 0.202083 0.182948 0.215057 0.237958 0.263134 0.311857 0.281548 0.25402 0.301475 0.3347 0.371333 0.411677 0.345189 0.29078 0.321106 0.354335 0.3907 0.466017 0.421983 0.381806 0.456055 0.504815 0.558327 0.671816 0.606555 0.547167 0.493187 0.444178 0.399733 0.359475 0.323051 0.290133 0.26041 0.310419 0.277974 0.332367 0.399259 0.447293 0.371771 0.415562 0.346429 0.386362 0.430604 0.479564 0.533682 0.644007 0.577877 0.518121 0.464186 0.560163 0.500744 0.606043 0.540571 0.4818 0.429094 0.381866 0.339577 0.301746 0.363564 0.409777 0.461505 0.560258 0.496745 0.440075 0.535101 0.604854 0.68312 0.77085 0.631373 0.519354 0.583993 0.656153 0.736629 0.899064 0.799826 0.710926 0.869077 0.978977 1.10182 1.23893 1.00976 0.826275 0.678909 0.759906 0.626146 0.699334 0.78041 0.870135 0.717105 0.593432 0.659325 0.731903 0.81176 0.98489 0.886814 0.797803 0.969334 1.07888 1.19972 1.46703 1.31769 1.18247 1.06013 0.949593 0.849836 1.03695 0.926037 1.13308 1.39181 1.5621 1.27029 1.42279 1.16012 1.2967 1.44802 1.6155 1.80066 2.21826 1.98797 1.7799 1.59211 1.96211 1.75155 2.16421 1.92813 1.71613 1.52598 1.35561 1.20313 1.0668 0.945048 0.836464 0.73969 0.653526 0.576896 0.508819 0.44841 0.394868 0.347471 0.305562 0.268549 0.235896 0.207121 0.181789 0.159515 0.139948 0.122783 0.107745 0.094587 0.112674 0.0986474 0.117918 0.141899 0.16304 0.135107 0.154819 0.12875 0.147137 0.168145 0.192114 0.21943 0.266292 0.232669 0.203194 0.177387 0.215105 0.187301 0.227931 0.197956 0.171859 0.209429 0.241768 0.278946 0.34324 0.296952 0.256724 0.316485 0.36672 0.424571 0.49111 0.396433 0.321632 0.262316 0.30171 0.24693 0.283312 0.324856 0.398314 0.346789 0.426647 0.370582 0.457487 0.567545 0.655241 0.527477 0.607614 0.490787 0.564077 0.457137 0.372242 0.304606 0.250525 0.285883 0.326045 0.371614 0.454109 0.397798 0.348215 0.426228 0.487666 0.557504 0.636799 0.517987 0.42326 0.481724 0.54783 0.622489 0.764878 0.67228 0.590366 0.726725 0.828585 0.943813 1.16947 1.02553 0.898427 0.786328 0.687546 0.60062 0.524216 0.647726 0.743085 0.851659 1.05945 0.923358 0.803945 0.699261 0.870735 0.755732 0.944141 0.817699 0.707421 0.611377 0.527832 0.455253 0.392282 0.488775 0.420167 0.525471 0.450649 0.38609 0.330467 0.28261 0.353236 0.301326 0.378176 0.321792 0.273571 0.344236 0.40555 0.477275 0.605552 0.513947 0.435673 0.554444 0.654766 0.772222 0.909537 0.712602 0.561048 0.44399 0.520705 0.413709 0.484041 0.565727 0.713737 0.609983 0.772514 0.658748 0.837505 1.06979 1.2566 0.983007 1.15224 0.904787 1.05835 0.834132 0.660461 0.770176 0.612067 0.712154 0.568015 0.659414 0.827677 1.04359 0.897055 1.13506 0.973637 1.2364 1.44258 1.68094 1.32165 1.53696 1.21259 0.960824 0.764701 0.885814 1.02497 1.18466 1.49275 1.29037 1.1141 1.40733 1.63131 1.88861 2.39879 2.07064 1.7851 2.27333 1.95611 2.49942 2.14665 1.84115 1.57699 1.3489 1.72668 1.47403 1.89376 1.61355 1.37281 1.16632 0.989558 0.838393 0.70931 0.599306 0.505684 0.649101 0.546473 0.704548 0.59185 0.766467 0.642448 0.835794 0.699055 0.583885 0.486841 0.405473 0.528888 0.439343 0.576051 0.477439 0.39503 0.520479 0.629195 0.759433 1.00637 0.833686 0.689486 0.569043 0.757802 0.624277 0.513256 0.68732 0.563683 0.759442 0.924651 1.12452 0.835623 1.01441 1.22891 0.918163 1.11026 1.34043 1.79406 1.48622 1.99885 1.65325 1.36481 1.84515 1.52113 1.2507 1.02735 1.39662 1.70097 2.06689 2.82014 2.3237 1.9086 2.62054 3.18662 3.86294 4.67536 3.41677 2.50572 3.03219 2.23433 2.69975 3.25548 2.41179 2.90424 2.16132 1.61522 1.21257 0.914859 0.693748 0.834117 0.635506 0.762671 0.913574 1.19985 1.0013 1.32116 1.1003 1.45871 1.94291 2.3325 1.7516 2.09944 1.58358 1.89491 1.43564 1.09271 1.30483 0.997614 1.18893 0.913023 1.08592 0.837526 0.994101 0.769954 0.911996 1.07867 1.274 1.64769 1.39436 1.17818 1.52925 1.28965 1.68084 1.41478 1.85163 1.55568 2.04462 1.71472 2.26324 2.69852 3.21161 2.4337 2.89183 2.20019 2.60996 1.99367 2.36086 1.81053 2.14014 2.52575 1.94407 1.50253 1.76945 2.08066 2.44295 3.16372 2.69385 2.29022 2.97609 3.50113 4.11221 5.36328 4.56667 3.8819 3.29434 2.7911 3.65406 3.09082 4.06164 3.43019 4.52458 3.81547 5.05174 4.25394 3.5755 2.99954 2.51181 3.34292 2.79505 3.73561 3.11883 2.59894 3.49029 4.18591 5.01008 5.98381 4.46532 5.32698 3.9905 4.75443 5.65341 7.53484 6.34202 8.48177 7.13186 9.57009 8.03995 6.73938 5.63656 4.70408 3.91744 5.30179 4.41042 3.66065 4.98075 4.13003 5.64295 6.79604 8.16426 5.99358 7.19505 8.61728 6.35933 7.6104 9.08662 12.2692 10.2952 13.9398 11.6938 9.78342 13.3148 11.137 9.29102 7.72894 6.4152 5.30905 4.38508 3.61199 2.96842 2.4344 1.99173 1.62447 1.32525 1.84305 1.49976 2.10346 1.69945 1.38608 1.9473 2.3978 2.95496 3.60705 2.57196 3.15671 2.25868 2.7666 3.3747 4.69627 3.85353 5.38157 4.42561 6.21047 5.08454 4.15596 3.40131 2.74621 3.89735 4.83267 5.85923 8.28784 6.85825 5.56329 7.9587 9.71553 11.7443 14.2993 10.1566 7.18819 8.71428 10.5731 7.53631 9.15857 6.55484 7.94237 5.70997 4.11136 4.99374 6.05218 7.31438 10.0908 8.37001 6.92096 9.60745 11.5826 13.9218 16.6818 12.1341 8.81933 10.6015 12.7123 15.1952 20.7021 17.3819 14.5435 19.9189 23.7057 28.104 37.9125 32.1663 27.1758 22.8681 19.1742 16.0112 13.3376 11.0543 15.3771 12.7819 17.7849 14.822 12.2239 17.1271 20.6855 24.6263 29.4099 21.3322 25.4566 18.4735 22.0664 26.297 35.7972 30.2423 41.0715 34.7934 47.0023 40.1165 33.8407 28.6314 23.9007 20.0218 16.6043 13.7466 11.3527 16.0681 19.4247 23.2879 32.2296 27.3235 22.5109 31.2124 37.9762 43.8666 52.0583 38.3574 27.8437 33.0507 39.1729 45.9472 61.2824 52.7965 45.0088 60.0294 69.7808 79.8198 101.067 89.9326 78.0914 69.0841 58.5529 51.7108 42.7238 57.3905 68.5157 76.3403 96.7137 87.9721 75.0717 67.706 86.7834 74.122 93.6754 85.707 73.3155 66.3207 55.6648 49.783 41.0174 36.2853 49.6359 40.9779 55.3108 49.661 41.1113 55.3918 65.3902 71.7889 89.2898 82.5073 71.5712 65.3948 55.6487 50.2553 41.9391 56.0791 65.5474 71.4851 87.6705 81.5621 71.5147 65.8345 81.1934 71.6388 86.2226 80.8596 71.8087 66.7051 58.5675 53.2023 46.6878 41.0004 36.3726 30.7316 27.418 22.53 19.9782 16.171 14.2309 21.7169 24.294 29.2467 40.3526 34.495 31.3669 26.3954 36.8053 33.7601 28.8261 39.2938 36.3764 31.5548 29.0081 24.8621 22.7119 32.0589 34.5092 39.1316 49.1522 44.4427 41.913 51.1643 53.6067 58.1494 60.7291 51.8746 41.8753 46.975 49.9657 55.4583 44.721 47.956 53.8858 42.4851 45.9299 52.2457 56.0139 43.9679 32.4228 38.3878 42.1351 49.0379 61.9015 54.6309 50.608 62.8281 66.8362 74.0138 84.624 77.7917 73.981 67.3681 63.6935 57.3727 67.7895 64.4499 58.6457 68.0731 65.0599 59.7777 56.8964 65.5041 68.207 73.198 79.9243 75.3062 72.6597 68.2549 65.7201 61.5623 59.0993 55.2345 52.8039 49.287 46.867 43.725 41.3384 38.5512 36.2631 33.7911 31.6642 29.4728 27.5459 25.6124 23.8993 22.205 20.7011 19.2254 17.9141 16.6328 15.4904 14.3767 13.3759 12.4019 11.5145 17.9241 19.0033 20.1474 27.3927 26.1949 25.0444 31.9394 33.058 34.2157 35.4151 28.6339 21.333 22.6032 23.9169 25.3348 32.7076 31.2852 29.9353 36.6633 37.9604 39.3156 44.9589 43.6809 42.4582 41.2858 40.1606 39.0779 38.0338 43.2336 44.2085 45.225 49.6201 48.6452 47.7158 51.7134 52.6209 53.5768 54.5847 50.6439 46.2872 47.399 48.5639 49.7858 54.045 52.853 51.7204 55.6477 56.769 57.952 59.1997 55.2998 51.0678 46.2941 40.7252 34.1811 26.7954 28.379 30.0011 31.764 39.0534 37.3482 35.7393 42.2015 43.7362 45.346 47.0166 40.8063 33.5567 35.5081 37.4742 39.62 46.5934 44.5699 42.6672 48.7706 50.5861 52.494 57.536 55.7051 53.9576 52.2823 50.6835 49.1529 47.6919 52.4136 53.826 55.3086 59.4722 58.0103 56.6205 60.5151 61.9014 63.3614 64.8979 61.009 56.8636 58.4951 60.2041 61.9956 66.0979 64.3191 62.6238 66.5138 68.2118 69.9947 73.7767 71.9804 70.2698 68.6423 67.0952 65.6257 64.231 62.9083 61.6546 60.4671 59.3426 58.2783 57.2708 56.3173 55.4145 58.9433 59.8524 60.8137 64.2674 63.2925 62.371 65.7312 66.6684 67.6596 68.7076 65.2985 61.8303 62.9052 64.0412 65.2413 68.7576 67.5407 66.3887 69.8153 70.9853 72.2206 75.629 74.3752 73.1868 72.0612 70.9956 69.9872 69.0333 72.2706 73.2411 74.2664 77.4539 76.4127 75.4266 78.4789 79.4793 80.5348 81.648 78.5527 75.3491 76.4921 77.698 78.9695 82.2215 80.9338 79.7118 82.8216 84.0581 85.3602 86.7306 83.5776 80.3093 76.951 73.5238 70.0421 66.5085 67.8455 69.2553 70.7406 74.3293 72.8251 71.397 74.8979 76.3454 77.8692 79.472 75.9121 72.3043 73.9489 75.6772 77.4919 81.1595 79.3246 77.5763 81.1563 82.9248 84.7801 88.342 86.4672 84.6792 82.9756 81.3536 79.8106 78.3439 81.7201 83.2046 84.7655 88.0823 86.5053 85.0046 88.1719 89.6868 91.2778 92.9476 89.7382 86.4054 88.1269 89.9327 91.8252 95.2054 93.2971 91.4756 94.6987 96.5338 98.4554 100.466 97.2028 93.8071 90.3062 86.7248 83.0836 79.3954 75.6613 71.8648 67.9624 63.8695 59.4423 54.4624 48.649 41.7548 44.1012 46.3916 48.9499 55.4203 53.051 50.8414 56.5331 58.6615 60.9043 63.1989 57.7817 51.3719 54.1636 56.6851 59.7387 65.6143 62.8477 60.3405 65.6241 68.09 70.7103 75.289 72.7337 70.2968 67.938 65.6864 63.5136 61.4391 65.8317 67.8804 70.0234 74.0979 71.9598 69.9159 73.825 75.8775 78.0251 80.2697 76.331 72.2566 74.5903 77.0172 79.5513 83.6318 81.0953 78.6636 82.6143 85.0605 87.6114 90.2683 86.2712 82.1807 77.919 73.3507 68.2582 62.3303 65.6676 68.3183 71.9442 77.2764 74.0278 71.2551 76.1813 78.9978 82.0561 85.05 80.1768 74.667 78.5718 81.3967 85.5631 90.5165 86.7291 83.6918 88.353 91.528 95.0897 99.4562 95.9929 92.7471 89.5303 86.4952 83.5118 80.6821 84.9252 87.7655 90.7303 94.8489 91.8768 89.0209 93.0347 95.9112 98.9021 102.007 97.9298 93.7893 96.985 100.27 103.707 107.893 104.448 101.134 105.231 108.573 112.039 116.155 112.663 109.294 106.045 102.915 99.9002 97.0002 94.2118 91.5333 88.962 86.4959 84.1327 81.87 79.7055 77.6367 81.3902 83.479 85.6641 89.4161 87.2094 85.0994 88.7614 90.8923 93.12 95.4469 91.7217 87.9478 90.3327 92.8209 95.4148 99.2563 96.6395 94.1287 97.8753 100.408 103.046 106.765 104.106 101.554 99.1064 96.7599 94.5127 92.3622 95.8808 98.0489 100.314 103.755 101.475 99.2919 102.568 104.764 107.057 109.448 106.134 102.678 105.143 107.712 110.388 113.889 111.199 108.614 111.941 114.537 117.239 120.05 116.687 113.172 109.531 105.793 101.981 98.1167 100.929 103.853 106.892 110.829 107.765 104.817 108.651 111.621 114.707 117.91 114.009 110.048 113.323 116.719 120.238 124.274 120.73 117.309 121.232 124.676 128.244 132.123 128.535 125.071 121.728 118.505 115.399 112.409 116.067 119.075 122.198 125.756 122.619 119.597 122.971 126.005 129.153 132.419 129.011 125.438 128.798 132.279 135.885 139.5 135.881 132.385 135.805 139.312 142.943 146.699 143.246 139.616 135.837 131.938 127.944 123.882 119.771 115.625 111.448 107.225 102.919 98.4535 93.7098 88.529 82.719 76.0168 81.196 73.578 76.7051 82.4069 73.8402 77.2997 83.5543 87.1146 93.5303 100.915 94.9242 91.513 85.6514 92.6719 89.5077 84.1697 90.5123 87.5308 92.9383 96.0862 100.721 95.5 98.7082 103.86 98.1552 101.548 107.166 110.826 104.54 97.2274 88.5361 78.1873 66.2322 53.3524 60.7987 65.9894 73.1849 86.4117 78.5432 73.9683 85.618 89.9015 97.4958 101.932 91.4813 79.6904 86.1325 93.9106 99.7157 111.65 104.894 98.9508 109.466 114.341 121.524 129.55 122.495 117.994 110.855 106.657 99.5524 95.5354 103.758 107.649 114.267 120.731 114.527 110.642 116.573 120.535 126.411 130.703 124.919 118.408 125.093 129.545 136.268 142.15 135.747 131.221 136.712 141.358 147.511 152.528 147.048 141.107 134.514 127.065 118.482 108.233 95.6633 101.196 86.9433 96.9912 102.948 113.26 98.3255 81.9924 88.4453 99.6874 106.469 122.222 115.68 104.697 119.344 129.692 135.971 146.186 133.254 118.111 101.096 83.1251 65.5419 72.1495 55.4036 65.8524 72.658 91.2589 83.8608 102.569 90.2223 108.282 125.128 136.839 120.566 128.069 110.147 123.053 104.097 84.7221 92.4076 105.701 114.138 134.134 125.575 112.097 131.067 144.094 152.526 168.664 160.472 148.292 140.454 155.657 144.128 157.947 150.893 140.022 152.732 162.719 169.591 179.322 168.537 175.923 163.258 174.455 182.4 193.944 186.196 196.062 186.559 195.565 188.408 179.378 172.612 163.41 157.014 147.615 141.546 131.966 126.162 116.473 110.852 122.574 113.745 124.637 133.795 140.033 132.116 137.97 128.061 136.955 142.614 151.433 157.391 165.718 159.672 151.662 145.818 153.225 146.413 153.598 146.92 141.386 147.832 153.129 159.835 165.453 158.854 153.549 158.834 164.237 170.708 176.509 171.192 165.63 159.708 166.275 159.464 166.679 172.988 179.477 172.887 178.622 172.338 177.898 183.157 189.36 184.078 190.918 185.394 192.12 186.492 180.467 173.778 166.083 172.41 180.985 187.711 194.983 188.228 180.15 187.003 194.666 201.523 209.344 203.097 196.213 203.344 211.831 204.477 212.027 203.68 213.017 203.931 193.22 180.461 165.329 147.764 128.148 107.387 116.293 95.0968 109.155 118.578 133.406 110.893 89.0154 98.7746 112.417 124.088 147.633 135.885 121.158 143.922 158.854 170.386 184.953 162.376 138.298 114.093 91.254 70.9727 53.889 62.487 72.3529 55.023 63.8522 48.1818 56.2372 42.1364 31.1767 36.8272 43.2899 50.6539 66.7661 57.5699 49.3923 65.2876 75.3381 86.4477 109.491 96.5944 84.6739 73.7856 94.7235 82.9473 105.164 92.9441 81.3391 103.148 116.195 129.652 144.019 118.489 132.378 107.294 120.854 135.177 162.315 147.108 173.976 158.69 184.775 169.929 155.11 141.019 126.96 151.456 166.016 180.082 203.328 189.794 175.264 197.267 211.305 224.061 237.615 217.594 194.822 209.3 224.046 200.016 215.228 189.458 205.268 178.071 150.262 123.314 98.5758 76.9884 58.9747 44.4944 33.1959 24.5776 18.1113 21.5169 15.8727 18.8668 22.3574 16.5719 19.6446 14.5838 10.8233 12.8606 15.2429 11.365 13.4646 10.0651 11.9171 8.93337 6.70924 7.94617 5.98766 7.08341 5.35569 6.32774 4.80084 5.66448 4.31258 5.08103 5.97608 7.01653 9.20389 7.84325 6.67148 8.78353 7.46226 9.85497 8.36332 11.078 9.39207 12.4763 10.5687 14.0774 16.5902 19.5037 14.6952 17.2692 13.0389 15.3136 11.5893 13.6008 10.3189 12.099 15.928 20.9814 17.9453 23.6786 20.2461 26.7509 22.8714 30.2492 25.8672 22.0584 18.7598 15.9132 21.2457 18.0199 24.0943 20.4392 17.289 23.2183 27.3574 32.1311 37.6113 28.3182 33.1794 24.9794 29.2846 34.2289 45.102 38.7494 50.989 43.8724 57.603 49.6594 42.6424 36.4781 31.0921 26.4092 35.3588 30.0699 25.4805 34.2621 29.0714 39.0476 45.7417 53.3437 40.2208 47.0248 54.7455 41.422 48.3343 56.1691 73.202 63.4513 82.2411 71.5413 61.9252 80.4534 69.905 60.4294 51.9754 68.3079 78.6984 90.1667 114.024 100.628 88.2777 111.732 125.85 140.881 156.737 128.429 102.726 116.358 92.0986 104.856 118.714 94.0558 107.001 84.0469 64.9948 74.8731 85.855 66.5421 76.5398 59.0348 68.0796 52.3118 39.8834 46.321 35.2713 41.0036 31.2044 36.2978 27.6235 32.1421 24.4735 18.6134 14.1579 10.7805 8.22364 6.2883 4.82217 3.70979 2.86405 2.21941 2.5973 2.0198 2.35936 2.75213 3.20577 3.72892 2.90621 3.3746 2.6385 3.05829 3.91312 5.02391 4.33132 5.57772 4.80109 4.12654 3.54159 3.03512 3.9188 3.35269 4.34336 5.64556 6.5988 5.07719 5.92571 4.5736 5.32974 6.20145 7.20471 8.35742 6.47043 7.49493 5.81897 4.53136 3.54017 2.7754 2.18379 1.72483 1.36771 1.08897 1.25465 1.00219 1.15228 1.32346 1.51842 1.21434 0.975122 1.1154 1.27455 1.45492 1.81711 1.59037 1.39044 1.74019 1.99214 2.27805 2.86639 2.50477 2.18627 1.9061 1.65995 1.44396 1.81671 1.57721 1.99059 2.52197 2.90891 2.29455 2.64173 2.09013 2.40189 2.75692 3.16072 3.61939 4.58566 4.00233 3.48897 3.03777 3.85556 3.35104 4.26558 3.701 3.20702 4.09256 4.72485 5.44758 6.97847 6.0513 5.24008 6.73025 7.7731 8.96463 10.3238 8.03656 6.27249 4.90996 5.64439 4.43051 5.08483 5.8285 7.43038 6.4803 8.28262 7.21265 9.24219 11.8718 13.6318 10.6138 12.1719 9.49852 10.8782 8.50869 6.67256 5.24764 4.13976 3.27646 2.60211 2.07393 1.65908 1.33228 1.07406 0.869418 0.706707 0.801601 0.908386 1.02848 1.2697 1.12019 0.987326 1.2211 1.3869 1.57364 1.78375 1.43779 1.16338 1.31472 1.48435 1.67425 2.0755 1.83827 1.62654 2.01988 2.28497 2.58223 3.22393 2.85038 2.51751 2.2212 1.95776 1.72378 1.51621 1.8899 2.15057 2.44462 3.06347 2.69284 2.36449 2.96895 3.38375 3.8522 4.38063 3.48133 2.77594 3.14882 3.56802 4.03873 5.07588 4.4812 3.95189 4.97601 5.64601 6.39911 7.2446 5.74325 4.56669 3.64265 2.9152 2.34103 1.88662 2.12386 2.38858 2.68365 3.33929 2.96943 2.63789 3.28775 3.70414 4.16903 4.68751 3.75148 3.01221 2.42685 2.71872 2.19588 2.45515 2.74242 3.40214 3.04275 3.78379 3.37768 4.21036 5.26518 5.90812 4.72071 5.28773 4.23462 4.73462 3.80034 3.0604 2.4729 2.00517 1.63178 1.33285 1.09283 0.899543 0.743445 0.616989 0.514221 0.430453 0.361962 0.305786 0.259566 0.221417 0.189826 0.207247 0.178289 0.194161 0.211263 0.229671 0.249464 0.214241 0.232072 0.251165 0.216088 0.233206 0.201382 0.174937 0.152904 0.134482 0.143839 0.153672 0.164008 0.187648 0.175438 0.163868 0.187864 0.201556 0.216056 0.231407 0.200533 0.174876 0.186303 0.198324 0.210972 0.24363 0.228482 0.214131 0.247658 0.26486 0.283067 0.330782 0.30883 0.288141 0.268647 0.250282 0.232987 0.216703 0.251453 0.270899 0.291612 0.341624 0.316734 0.293421 0.271592 0.318 0.293534 0.270722 0.31747 0.292015 0.268369 0.246425 0.226083 0.264613 0.242151 0.284355 0.335548 0.367905 0.311259 0.340427 0.288919 0.315193 0.343561 0.37416 0.407133 0.344843 0.374254 0.405838 0.344215 0.372272 0.402284 0.434379 0.368184 0.31366 0.337122 0.36208 0.388624 0.458895 0.426709 0.39651 0.468685 0.505336 0.544479 0.586274 0.493191 0.416847 0.354073 0.302339 0.259621 0.224284 0.194992 0.170643 0.150323 0.133273 0.118869 0.106604 0.0960772 0.0869808 0.0908266 0.0947602 0.0987852 0.109695 0.105037 0.1005 0.111716 0.116978 0.1224 0.127991 0.11448 0.102907 0.10713 0.111462 0.115908 0.129678 0.124463 0.119399 0.133762 0.139724 0.14589 0.165152 0.157802 0.150724 0.143902 0.137319 0.130961 0.124815 0.140241 0.147472 0.154983 0.176054 0.167116 0.158546 0.180413 0.190635 0.201338 0.212551 0.185385 0.162793 0.17092 0.179387 0.188216 0.215999 0.205328 0.195134 0.224308 0.236644 0.249598 0.263211 0.227178 0.197433 0.172794 0.152274 0.135055 0.120475 0.125172 0.130005 0.134985 0.152275 0.146341 0.140606 0.158891 0.165759 0.172895 0.180321 0.158423 0.140122 0.145428 0.150916 0.1566 0.178325 0.171428 0.164801 0.18806 0.196137 0.204582 0.23652 0.226113 0.216197 0.206735 0.197693 0.189041 0.180749 0.207065 0.217143 0.2277 0.264141 0.251209 0.238902 0.277528 0.292599 0.308476 0.325217 0.277745 0.238772 0.250398 0.262623 0.275493 0.323106 0.30717 0.29207 0.342885 0.361548 0.38128 0.452381 0.427947 0.404877 0.383077 0.362459 0.342945 0.324462 0.306942 0.290324 0.274552 0.259572 0.245338 0.231802 0.218925 0.206667 0.238299 0.253059 0.268611 0.313168 0.294335 0.276505 0.322738 0.344331 0.367192 0.391398 0.333066 0.285002 0.302286 0.320518 0.33976 0.399842 0.376329 0.354096 0.417035 0.444194 0.472977 0.562192 0.526885 0.493636 0.462318 0.432808 0.404996 0.378782 0.446855 0.478757 0.512672 0.610134 0.568658 0.52973 0.6309 0.678544 0.729409 0.783717 0.654328 0.548737 0.587092 0.627892 0.671306 0.805155 0.751625 0.701424 0.841713 0.903663 0.969858 1.04062 0.862258 0.717521 0.599699 0.503493 0.424721 0.360079 0.381545 0.404239 0.428244 0.50852 0.478956 0.451059 0.535861 0.57021 0.606684 0.645441 0.539872 0.453654 0.480569 0.509103 0.539379 0.646054 0.608486 0.573146 0.686655 0.730516 0.777236 0.939088 0.88083 0.826254 0.775079 0.727054 0.68195 0.639561 0.76674 0.819188 0.875112 1.05782 0.988279 0.923201 1.1163 1.19728 1.28399 1.37691 1.13217 0.934784 0.998503 1.0666 1.13945 1.3883 1.29695 1.21174 1.47654 1.58347 1.69833 1.82183 1.48633 1.21746 1.00134 0.827052 0.686028 0.571531 0.478284 0.402164 0.339941 0.28906 0.247459 0.213426 0.185515 0.162498 0.143349 0.127239 0.113484 0.10146 0.0907904 0.0812306 0.0726158 0.064828 0.0577771 0.0513915 0.0456116 0.040386 0.0356692 0.0314199 0.0275992 0.0241705 0.0247098 0.0252636 0.025833 0.0295342 0.0288717 0.0282271 0.0321496 0.0328983 0.0336674 0.0344583 0.0302162 0.0264193 0.027024 0.0276484 0.0282943 0.032393 0.031644 0.0309189 0.0352725 0.0361114 0.0369767 0.0420909 0.0410946 0.0401272 0.0391871 0.0382727 0.0373826 0.0365152 0.0413642 0.0423663 0.0433936 0.0490779 0.0478949 0.04674 0.0526908 0.0540195 0.0553795 0.0567725 0.0502905 0.0444477 0.0455303 0.0466429 0.0477876 0.054125 0.052812 0.0515346 0.0582005 0.0596657 0.0611704 0.0627173 0.0554759 0.0489663 0.0431181 0.0378698 0.0331674 0.0289631 0.0296566 0.0303761 0.031123 0.0356585 0.0347985 0.0339687 0.0387925 0.0397467 0.0407344 0.0417582 0.0365507 0.031899 0.0327058 0.0335457 0.034421 0.0394462 0.0384418 0.0374775 0.042821 0.0439256 0.0450755 0.0513695 0.0500564 0.0487936 0.0475776 0.046405 0.0452727 0.0441779 0.0501814 0.0514355 0.0527312 0.0597823 0.0583016 0.0568672 0.0643089 0.0659484 0.0676388 0.0693835 0.0613123 0.0540718 0.0554604 0.0569006 0.0583963 0.0662344 0.0645346 0.0628952 0.0711859 0.0730499 0.0749793 0.0847537 0.082562 0.0804416 0.0783884 0.0763987 0.0744686 0.0725947 0.0707738 0.0690026 0.0672784 0.0655984 0.0639599 0.0623607 0.0607984 0.0592712 0.0665455 0.0683006 0.0700953 0.0786737 0.0766098 0.0745913 0.0835062 0.0858324 0.0882117 0.0906473 0.0807857 0.0719318 0.0738126 0.0757404 0.0777178 0.0874378 0.0851647 0.0829483 0.0931424 0.0957004 0.0983252 0.110607 0.107554 0.104582 0.101687 0.0988648 0.0961103 0.09342 0.104514 0.107643 0.110853 0.124503 0.120726 0.117056 0.131461 0.135816 0.140314 0.144972 0.128393 0.114149 0.117537 0.121023 0.124615 0.140843 0.136552 0.132406 0.149802 0.154819 0.16004 0.165489 0.145294 0.128323 0.113749 0.101021 0.089771 0.0797478 0.0818337 0.0839788 0.0861865 0.0971696 0.0946329 0.0921681 0.103792 0.106645 0.109584 0.112616 0.0997829 0.0884608 0.0908058 0.0932257 0.0957255 0.108137 0.105261 0.102478 0.115749 0.118992 0.122355 0.138932 0.134909 0.131053 0.127346 0.123774 0.120324 0.116985 0.132157 0.136129 0.140254 0.159785 0.154743 0.14992 0.171191 0.177176 0.183479 0.19014 0.165073 0.14455 0.149036 0.153737 0.158683 0.182766 0.176522 0.170639 0.197205 0.204728 0.21277 0.221401 0.189425 0.163909 0.143143 0.125851 0.111116 0.0983102 0.0870212 0.0769783 0.0679987 0.0599514 0.0527368 0.0462741 0.040494 0.0353346 0.0362896 0.0372897 0.0383389 0.0439356 0.0427344 0.0415887 0.0475253 0.0488337 0.050204 0.0516417 0.0451977 0.0394419 0.040604 0.0418312 0.0431303 0.0494094 0.047928 0.0465264 0.0531528 0.0547434 0.0564199 0.0642229 0.0623386 0.0605454 0.0588369 0.0572073 0.0556509 0.0541624 0.0615701 0.0632571 0.0650171 0.0737214 0.0717376 0.0698316 0.0790511 0.0812022 0.0834363 0.0857588 0.0757881 0.0668553 0.068777 0.0707881 0.0728947 0.0825408 0.0801917 0.0779429 0.0881752 0.0906919 0.0933161 0.096056 0.0849973 0.0751035 0.0662047 0.0581892 0.0509779 0.0445091 0.0459758 0.0475384 0.0492049 0.0562812 0.0544057 0.0526408 0.0600583 0.0620351 0.064129 0.0663509 0.0582772 0.0509839 0.052885 0.0549204 0.0571046 0.0651103 0.0626776 0.0604051 0.0687127 0.071228 0.0739124 0.0835735 0.0806369 0.0778744 0.0752713 0.0728143 0.0704914 0.0682914 0.0774222 0.0798592 0.0824243 0.0930961 0.0902654 0.0875692 0.0989211 0.101923 0.105074 0.108392 0.096073 0.0851283 0.0879832 0.0910021 0.0941999 0.106032 0.102523 0.0992098 0.111898 0.11562 0.119592 0.13586 0.1311 0.126712 0.122633 0.118813 0.115214 0.111804 0.108562 0.105468 0.102509 0.0996714 0.0969466 0.0943258 0.0918019 0.0893689 0.100986 0.103759 0.106637 0.120758 0.117415 0.114205 0.129495 0.133305 0.137302 0.141516 0.124252 0.109629 0.112747 0.116003 0.119414 0.135844 0.131768 0.127913 0.145978 0.15073 0.155822 0.180823 0.17421 0.168114 0.162461 0.157186 0.152237 0.147568 0.169453 0.175363 0.181694 0.212513 0.20423 0.196559 0.230696 0.240741 0.25163 0.263472 0.221494 0.188511 0.19589 0.203922 0.21271 0.2537 0.241967 0.231274 0.276389 0.290516 0.306007 0.32303 0.266617 0.222379 0.188045 0.161314 0.14018 0.123001 0.126791 0.130816 0.135119 0.155262 0.149825 0.144821 0.167279 0.173805 0.180995 0.188974 0.161217 0.139753 0.144786 0.150302 0.156404 0.183358 0.175128 0.167797 0.197886 0.207901 0.21921 0.266567 0.251136 0.237455 0.2253 0.214454 0.204732 0.195975 0.233055 0.244881 0.258026 0.314133 0.296646 0.280874 0.341775 0.362455 0.385318 0.41065 0.333566 0.27268 0.289064 0.307427 0.328048 0.406392 0.379367 0.355209 0.438787 0.47012 0.505114 0.629168 0.584048 0.543666 0.507396 0.474718 0.445189 0.418436 0.394141 0.37203 0.351866 0.333442 0.316574 0.301098 0.286868 0.273754 0.261639 0.250419 0.239999 0.230293 0.221224 0.212723 0.204728 0.197185 0.190045 0.183266 0.17681 0.170647 0.164747 0.159087 0.153647 0.148406 0.168628 0.175012 0.181673 0.209128 0.200886 0.193026 0.222704 0.232455 0.242723 0.253554 0.21779 0.18864 0.195942 0.203613 0.211693 0.246723 0.236539 0.226912 0.265001 0.277122 0.289981 0.343345 0.327136 0.311884 0.297511 0.283945 0.27112 0.258976 0.303381 0.318518 0.334538 0.396587 0.3766 0.357747 0.424288 0.447752 0.472663 0.499142 0.417801 0.351516 0.369534 0.38868 0.409055 0.489887 0.46433 0.440344 0.527321 0.557348 0.589388 0.623625 0.517154 0.430767 0.3606 0.303649 0.257521 0.220225 0.229259 0.23885 0.249062 0.294258 0.281215 0.268995 0.318203 0.33373 0.350323 0.368087 0.30821 0.259963 0.271631 0.284151 0.297616 0.356504 0.339224 0.323164 0.387137 0.407601 0.429622 0.520182 0.492244 0.466295 0.44215 0.419646 0.398638 0.378995 0.453939 0.478704 0.505213 0.610884 0.577466 0.546289 0.660266 0.699542 0.741716 0.787082 0.646765 0.533635 0.564159 0.597001 0.632401 0.771866 0.726951 0.685359 0.835975 0.888777 0.945918 1.1641 1.09117 1.02394 0.961814 0.904301 0.850949 0.801366 0.755204 0.712153 0.67194 0.634322 0.59908 0.566021 0.53497 0.505771 0.60571 0.642083 0.680835 0.822476 0.774007 0.728606 0.880223 0.937039 0.997824 1.06294 0.874284 0.722172 0.766323 0.813547 0.86413 1.05298 0.989176 0.929738 1.13278 1.20781 1.28853 1.58332 1.48093 1.38596 1.29774 1.21567 1.13922 1.06792 1.30108 1.39081 1.48722 1.82675 1.70485 1.59162 1.95476 2.098 2.25252 2.41943 1.95817 1.59094 1.70266 1.82319 1.95339 2.41932 2.25334 2.10002 2.59995 2.79546 3.00751 3.23785 2.59925 2.09427 1.69387 1.3755 1.12158 0.918397 0.976711 1.03948 1.10717 1.36131 1.27517 1.19546 1.46937 1.57085 1.68076 1.80001 1.45457 1.18031 1.25948 1.34536 1.43871 1.78558 1.66575 1.55576 1.92966 2.07089 2.22505 2.78341 2.58465 2.40291 2.23641 2.08356 1.94298 1.81344 2.24695 2.41268 2.5929 3.2387 3.00716 2.79464 3.48844 3.76153 4.05966 4.38569 3.49144 2.78924 3.00354 3.2379 3.49472 4.40321 4.07069 3.76783 4.74291 5.13509 5.5665 6.04209 4.76908 3.77676 3.00127 2.39368 1.91639 1.54041 1.24337 1.00789 0.820472 0.670637 0.550316 0.453359 0.375131 0.312131 0.327811 0.344782 0.363186 0.440592 0.417007 0.395246 0.478993 0.506726 0.536792 0.569457 0.466205 0.383183 0.404952 0.428699 0.454655 0.557693 0.52447 0.494076 0.605025 0.643852 0.686346 0.847662 0.793182 0.743506 0.698081 0.656433 0.618153 0.582883 0.712024 0.756922 0.805746 0.992972 0.930506 0.873191 1.07526 1.14867 1.22887 1.31669 1.06123 0.858972 0.917151 0.980921 1.05102 1.30869 1.21817 1.13601 1.41314 1.51933 1.6366 1.76648 1.40873 1.12831 0.907586 0.732985 0.594101 0.483088 0.514306 0.548671 0.586607 0.726934 0.678194 0.634106 0.784325 0.841019 0.903836 0.973681 0.781001 0.628613 0.675281 0.727315 0.785557 0.983919 0.908453 0.841191 1.05163 1.13895 1.23716 1.56227 1.43396 1.32014 1.21878 1.12818 1.04689 0.973702 1.21378 1.30863 1.41422 1.78055 1.64295 1.51962 1.91076 2.07154 2.2513 2.45297 1.9346 1.53219 1.66446 1.81331 1.98148 2.52385 2.30288 2.10768 2.68 2.93654 3.22753 4.14286 3.75887 3.42101 3.12258 2.85802 2.62266 2.41256 2.22441 2.05538 1.90307 1.76542 1.64069 1.52734 1.42407 1.32974 1.65146 1.773 1.90633 2.38903 2.21648 2.05951 2.57856 2.78172 3.0055 3.2526 2.5792 2.05299 2.21471 2.39352 2.59178 3.28071 3.0221 2.78932 3.52616 3.82982 4.16783 5.31305 4.87039 4.47348 4.11661 3.79488 3.50408 3.24059 4.08717 4.42961 4.80826 6.11252 5.61848 5.17255 6.56753 7.14939 7.79524 8.51389 6.66123 5.22801 5.6945 6.21433 6.79522 8.71806 7.95436 7.27221 9.3156 10.2124 11.2182 12.3496 9.57553 7.44619 5.80818 4.54516 3.56885 2.81225 3.05814 3.33325 3.64204 4.65773 4.25179 3.89084 4.96765 5.44219 5.97692 6.58152 5.11582 3.98981 4.38287 4.82875 5.33649 6.89695 6.2242 5.63458 7.26754 8.04881 8.94196 11.6281 10.4402 9.40305 8.49408 7.69454 6.98876 6.36365 8.17791 9.00295 9.93622 12.8682 11.632 10.5412 13.626 15.0704 16.7102 18.578 14.2739 10.9955 12.202 13.5812 15.1638 19.8256 17.7144 15.8778 20.7128 23.1613 25.98 34.1102 30.3457 27.0798 24.2364 21.7523 19.5747 17.6597 15.9703 14.4753 13.1486 11.9678 10.9141 9.97117 9.12534 8.36473 7.67912 7.05972 6.49889 5.99004 5.52739 5.10594 4.7213 4.36962 4.04752 3.75202 3.4805 3.23065 3.00039 2.7879 2.59156 2.40992 2.24168 2.08568 1.94089 1.80636 1.68127 1.56484 1.45641 1.35535 1.2611 1.17316 1.09106 1.01438 0.942752 0.875813 0.813249 0.754767 0.700099 0.649001 0.601247 0.55663 0.514955 0.476044 0.439724 0.521859 0.480807 0.442627 0.525951 0.482958 0.443099 0.406178 0.372012 0.44116 0.403043 0.479392 0.436901 0.397836 0.473858 0.521196 0.572767 0.687305 0.624498 0.566929 0.681219 0.751468 0.828233 0.912037 0.755758 0.628888 0.52556 0.575672 0.482462 0.527173 0.575529 0.688872 0.630009 0.75616 0.689895 0.830304 1.00343 1.10301 0.911408 0.999566 0.82808 0.906068 0.752595 0.627779 0.684192 0.57228 0.622171 0.675884 0.565963 0.6133 0.664093 0.718589 0.777034 0.934328 0.862581 0.795809 0.733677 0.881458 0.810698 0.745059 0.896045 0.82153 0.990571 1.08208 1.18111 0.976535 1.06344 1.15726 0.957697 1.03979 1.12815 1.36768 1.25849 1.52923 1.40404 1.28822 1.56663 1.4342 1.31198 1.19925 1.09532 1.32938 1.21143 1.47394 1.34018 1.21752 1.1051 1.00218 0.908028 0.821987 0.995931 1.10165 1.2175 1.48481 1.34181 1.2115 1.4794 1.64056 1.81764 2.01201 1.64156 1.34431 1.48302 1.63461 1.80016 2.20669 2.00118 1.81326 2.2252 2.45885 2.71473 3.35134 3.03183 2.74047 2.47497 2.23323 2.01329 1.81336 2.23084 2.47961 2.75362 3.40699 3.06465 2.75419 3.41205 3.80058 4.22948 4.70257 3.78419 3.05516 3.38675 3.75109 4.15115 5.1585 4.65628 4.19945 5.22398 5.79823 6.43023 7.12534 5.71025 4.59014 3.7015 2.99478 2.43129 1.98081 1.61969 1.77839 1.4576 1.59693 1.74822 1.91244 2.09062 1.71007 1.86536 2.03348 1.66452 1.81069 1.48541 1.22326 1.01141 0.839695 0.906869 0.978876 1.05607 1.27866 1.18314 1.0942 1.32562 1.43579 1.55436 1.68197 1.38128 1.13882 1.22756 1.32274 1.42486 1.7374 1.61002 1.49153 1.81935 1.96727 2.12659 2.61257 2.41276 2.22759 2.05594 1.8968 1.74921 1.61234 1.96858 2.13913 2.32334 2.8561 2.62552 2.41241 2.21545 2.72058 2.4934 2.28386 2.80631 2.56516 2.3432 2.13896 1.9511 2.39258 2.17783 2.6766 3.30108 3.63592 2.94438 3.23653 2.62652 2.88126 3.15855 3.46027 3.78852 3.06823 3.35265 3.66146 2.96687 3.23385 3.52326 3.837 3.10564 2.52235 2.73739 2.9698 3.22105 3.9849 3.66819 3.37575 4.17716 4.54604 4.94622 5.38051 4.32801 3.49277 2.82828 2.29827 1.87439 1.53447 1.65217 1.77864 1.9146 2.35139 2.18047 2.02179 2.48334 2.68295 2.89837 3.13101 2.53563 2.06087 2.21834 2.38802 2.57101 3.18072 2.94891 2.73436 3.38243 3.65435 3.94871 4.91853 4.5439 4.19844 3.87963 3.58516 3.31298 3.06125 3.78676 4.105 4.44971 5.54074 5.10318 4.6999 5.85202 6.36418 6.92082 7.52618 6.0158 4.82331 5.22853 5.66837 6.14621 7.7039 7.09317 6.53195 8.18497 8.90245 9.68452 12.2077 11.2046 10.2857 9.44325 8.67038 7.96084 7.30903 6.70993 6.15902 5.65217 5.18573 4.75631 4.36087 3.99677 4.95605 4.53383 4.14556 5.14271 4.69344 4.28101 3.90248 3.55515 4.40132 4.00176 4.96413 4.50481 4.08501 5.07156 5.59923 6.17731 7.71008 6.98088 6.31606 7.88942 8.72884 9.65057 10.6622 8.50956 6.81034 5.46646 6.01562 4.83753 5.31361 5.83307 7.27158 6.61581 8.26158 7.50329 9.38575 11.7721 12.9894 10.3457 11.3971 9.09118 9.99859 7.98796 6.39977 7.01791 5.63207 6.16506 6.74557 5.41526 5.9147 6.45798 7.04913 7.69246 9.63536 8.81725 8.06665 7.37783 9.22973 8.42756 7.69216 9.62508 8.77045 10.991 12.0762 13.2629 10.5585 11.578 12.6917 10.1048 11.0597 12.1018 15.238 13.9084 17.5321 15.9798 14.5606 18.3537 16.6999 15.1892 13.8091 12.5485 15.7871 14.3241 18.044 16.3477 14.802 13.3938 12.1116 10.9444 9.88248 8.91684 8.03923 7.24211 6.51857 5.86228 5.26743 4.72868 4.24115 5.28863 5.90194 6.58031 8.2445 7.38843 6.6151 5.91713 7.41711 6.623 8.31956 7.41629 6.60445 5.87551 5.22168 4.63584 4.11148 5.1582 5.82018 6.56021 8.26575 7.32895 6.49134 8.19272 9.25468 10.4428 11.7704 9.31233 7.38659 8.30841 9.33562 10.4791 13.232 11.7822 10.4803 13.2524 14.9047 16.7448 21.2296 18.8928 16.7942 14.9118 13.2254 11.7165 10.3679 9.16405 8.09077 7.13504 6.28502 5.52993 4.86 4.26635 3.74093 4.72936 5.39659 6.1507 7.80708 6.84712 5.9979 7.62928 8.71222 9.93636 11.3182 8.8908 7.00193 7.96159 9.04212 10.2572 13.0352 11.4883 10.1126 12.8759 14.6293 16.6003 21.176 18.6642 16.4282 14.4408 12.677 11.1139 9.73081 12.4413 14.2096 16.2069 20.7531 18.201 15.9395 13.9388 17.8932 15.6295 20.1007 17.5397 15.2808 13.2921 11.5445 10.0114 8.66873 11.1933 9.67955 12.5296 10.8219 9.33167 8.03366 6.90513 8.97093 7.70035 10.0323 8.60055 7.36038 9.62126 11.2361 13.0979 17.1255 14.7058 12.6032 16.5336 19.2679 22.4066 25.9997 19.9034 15.2399 11.6821 13.579 10.4337 12.1145 14.0421 18.2475 15.7555 20.514 17.6985 23.0843 30.1012 34.769 26.7173 30.8552 23.7304 27.3955 21.0942 16.248 18.7673 14.4829 16.7126 12.9235 14.8972 19.2528 24.9028 21.6383 28.0273 24.3386 31.5608 36.2819 41.6174 32.2105 36.9423 28.6061 22.1407 17.1447 19.6989 22.596 25.8752 33.3139 29.1255 25.4169 32.7972 37.5284 42.8556 55.0174 48.284 42.28 54.3826 47.6295 61.2181 53.6409 46.8828 40.8761 35.5548 46.0533 40.0648 51.8759 45.1504 39.1921 33.9328 29.3061 25.2494 21.7036 28.4777 33.0544 38.2673 49.806 43.1639 37.2995 48.684 42.1005 54.8898 47.5186 61.8415 53.616 69.593 60.452 78.1871 89.4124 101.799 79.7995 91.1279 71.0681 81.3611 63.1902 72.4903 56.1212 64.4847 73.845 57.298 44.1839 50.8737 58.4079 66.858 85.5828 75.1177 65.7117 84.2686 95.8159 108.538 136.006 120.891 107.013 94.347 82.8562 105.368 92.7786 117.32 103.624 130.155 115.376 143.784 127.979 113.352 99.911 87.6491 111.268 97.9792 123.418 109.145 96.0216 121.074 136.248 152.48 169.704 138.82 155.311 125.726 141.339 158.07 191.3 172.831 206.78 187.837 222.018 202.824 184.284 166.51 149.601 133.646 163.269 146.695 131.034 160.005 143.781 173.324 190.536 208.26 177.006 194.679 212.912 180.666 198.782 217.505 250.598 231.589 263.402 244.8 226.385 256.898 238.937 221.13 203.573 186.373 169.64 153.481 138.011 165.97 182.209 198.87 227.103 210.548 194.163 221.164 237.164 253.146 269.086 243.755 215.843 233.032 250.341 267.693 293.598 277.057 260.427 284.928 300.647 316.222 335.568 320.956 306.2 291.306 276.269 261.128 245.865 230.588 253.205 238.602 259.059 245.348 231.348 250.51 263.69 276.538 289.444 272.796 286.343 267.642 282.013 296.234 313.184 299.831 314.883 302.174 315.539 303.492 291.304 279.22 266.819 254.74 241.989 230.03 216.775 205.121 191.259 180.107 165.697 155.195 140.519 130.767 151.467 137.28 156.83 174.163 186.547 170.23 179.753 161.213 175.169 185.437 198.915 209.615 225.299 215.054 202.621 192.704 207.661 195.757 209.281 200.378 189.014 201.522 211.998 220.65 230.289 221.818 212.046 221.012 230.262 238.62 247.865 239.937 230.865 220.251 229.478 217.21 228.674 238.517 249.663 240.144 249.9 239.845 248.745 256.566 265.882 258.361 267.482 259.182 269.18 260.137 249.64 237.249 222.524 233.56 245.94 257.206 270.045 259.327 247.759 259.732 270.631 280.94 291.729 281.359 269.184 280.583 292.312 303.78 314.432 303.425 292.237 302.23 313.01 323.69 331.919 321.459 310.971 300.728 290.327 280.308 269.917 278.74 288.77 298.592 306.051 296.353 286.566 277.15 284.356 274.906 281.72 272.746 263.623 254.978 246.004 237.706 228.822 220.889 227.895 219.361 225.988 218.442 210.25 216.563 224.551 232.143 237.995 230.335 222.487 215.17 207.571 200.57 193.238 199.038 206.15 213.291 218.797 211.551 204.544 197.526 202.807 196.204 201.362 194.533 188.255 181.663 175.764 169.394 163.872 157.707 152.559 146.585 141.804 136.009 131.584 125.957 121.873 116.405 112.641 107.331 112.566 108.937 104.091 109.053 105.464 101.143 97.7675 102.283 105.849 109.951 113.736 118.111 113.627 117.46 122.278 117.612 121.532 126.774 131.01 136.448 141.131 135.843 131.438 126.384 131.065 126.78 122.135 126.668 122.501 118.237 114.316 110.327 106.64 110.915 114.672 118.624 122.902 118.947 115.143 119.343 123.182 127.159 131.259 126.963 122.63 126.853 131.115 135.616 131.21 135.638 140.461 135.976 140.545 145.72 150.589 145.855 141.019 146.658 151.578 157.426 162.196 156.433 151.377 156.028 161.214 166.919 171.626 165.953 160.653 155.266 150.27 145.166 149.736 144.93 140.145 144.608 140.011 135.511 131.186 135.504 139.873 144.393 149.039 153.843 149.393 154.27 159.345 154.811 159.904 165.271 170.664 176.327 181.021 175.348 169.884 164.511 169.088 163.867 158.772 163.238 158.268 153.435 148.751 144.203 139.797 135.525 131.39 127.386 123.515 127.653 131.554 135.586 139.728 135.669 131.742 135.759 139.71 143.793 148.01 143.92 139.751 144.052 148.49 153.067 157.319 152.714 148.249 152.362 156.852 161.482 165.528 160.877 156.366 151.992 147.755 143.651 139.679 143.475 147.464 151.585 155.257 151.122 147.119 150.583 154.598 158.744 163.024 159.527 155.84 160.231 164.76 169.429 173.157 168.474 163.932 167.44 171.994 176.687 181.523 177.981 174.238 170.32 166.253 162.065 157.784 162.646 167.651 172.804 168.361 173.624 179.046 174.481 180 185.697 190.334 184.609 189.152 183.553 178.102 182.498 177.17 171.989 166.955 171.167 176.226 181.432 186.786 192.291 187.977 193.607 199.391 194.908 200.814 196.204 191.523 186.792 182.029 177.241 172.433 167.596 162.703 168.774 174.412 180.718 185.625 179.355 173.607 178.41 184.26 190.515 196.705 191.725 186.721 193.276 199.642 206.462 211.543 204.719 198.266 203.248 209.781 216.621 221.699 214.835 208.228 201.671 195.4 189.144 183.203 187.993 194.011 200.28 205.148 198.857 192.772 197.528 203.667 209.986 216.444 211.553 206.624 213.202 219.876 226.77 231.819 224.892 218.16 223.082 229.864 236.826 243.937 238.881 233.777 228.644 223.499 218.348 213.191 208.017 215.099 209.87 216.861 224.172 231.534 226.171 220.741 228.164 235.922 243.662 249.224 241.403 233.687 239.123 246.84 254.73 260.217 252.265 244.518 236.873 229.481 222.127 227.376 220.288 225.465 230.644 237.866 232.621 240.043 234.764 242.208 249.9 257.696 265.702 271.195 263.137 255.285 247.549 252.893 245.326 250.607 243.108 235.823 240.991 248.335 255.875 261.11 253.529 246.133 251.226 258.669 266.288 274.067 268.843 263.557 258.234 266.059 260.674 268.585 276.692 282.183 274.027 279.448 271.427 276.755 282.02 290.136 284.826 293.074 287.652 296.013 290.493 284.946 279.392 273.844 268.31 262.788 257.266 251.717 246.094 240.325 234.307 242.231 235.808 244.45 252.728 259.009 250.722 256.689 248.283 254.105 259.793 268.145 262.469 270.829 265.005 273.662 267.713 261.531 270.157 279.165 288.125 294.268 285.297 276.348 282.324 291.255 300.254 306.157 297.117 288.177 279.474 285.216 276.56 282.249 273.773 265.41 270.998 279.39 287.929 296.652 290.933 299.745 293.971 302.937 312.028 317.897 308.75 314.577 305.524 311.321 302.388 293.617 285.016 276.582 282.175 290.659 299.32 305.035 296.318 287.778 293.385 301.981 310.754 319.69 313.916 308.144 317.138 326.3 320.427 329.695 323.784 333.166 327.226 321.31 315.402 309.475 303.486 297.371 291.038 300.328 293.688 303.323 312.951 322.807 316.011 308.725 318.799 329.09 339.411 346.391 336.151 325.982 332.724 342.827 353.03 359.451 349.255 339.179 329.279 319.475 309.877 316.164 306.654 312.784 318.804 328.326 322.288 331.906 325.761 335.55 345.457 355.536 365.748 371.985 361.74 351.639 341.706 347.809 337.98 344.029 334.33 324.774 330.733 340.334 350.087 356.17 346.36 336.706 342.706 352.416 362.286 372.323 366.147 360.008 353.9 363.922 357.782 367.92 378.208 384.448 374.108 380.325 370.085 376.283 382.521 392.881 386.582 397.04 390.722 401.278 394.946 388.655 382.389 376.12 369.808 363.394 356.796 349.899 342.549 334.541 325.602 315.39 326.908 338.494 327.614 339.635 327.495 340.072 326.458 310.345 324.322 338.185 351.936 365.78 352.74 339.634 352.598 365.102 377.586 390.067 378.771 365.59 350.04 331.641 310.013 285.018 302.26 274.924 292.942 310.887 282.097 300.803 269.83 236.718 256.305 276.154 241.748 261.896 226.423 246.65 210.624 175.865 194.649 160.735 178.782 146.132 163.281 132.233 148.361 119.165 134.19 150.447 167.919 203.738 184.163 165.684 200.895 181.557 217.869 197.856 234.804 214.33 251.396 230.695 267.34 288.374 309.639 272.608 294.208 255.956 277.666 238.721 260.298 221.214 242.415 264.39 224.333 186.573 152.366 122.477 97.1681 76.294 59.4391 67.9105 52.8019 60.3797 68.8563 78.3011 88.781 69.6834 79.1051 61.9435 70.3798 89.5502 113.094 100.359 126.2 112.222 99.4558 87.8539 77.3597 98.3868 86.7829 109.927 137.659 154.097 123.903 139.127 111.161 125.15 140.39 156.9 174.686 141.427 157.929 127.034 101.082 79.7592 62.5454 48.8375 38.0328 29.5792 22.9988 26.2721 20.4536 23.3444 26.6023 30.2668 23.6281 18.4592 20.9951 23.8456 27.0443 34.5564 30.4903 26.8612 34.3806 38.9893 44.1417 49.8895 39.1034 30.6275 23.9932 18.8127 14.7723 11.6218 13.1525 14.8671 16.7855 21.3414 18.9017 16.7202 21.2923 24.0675 27.1688 30.6293 24.066 18.929 21.321 23.9868 26.9539 34.252 30.4887 27.1047 34.4845 38.7729 43.5353 55.2999 49.2951 43.8773 38.998 34.6115 30.6748 27.1479 34.6346 39.1074 44.091 56.1123 49.8303 44.1781 56.2869 63.391 71.2606 79.9565 63.0792 49.633 55.784 62.5968 70.127 88.6699 79.2982 70.7881 89.5402 100.074 111.619 124.236 98.9645 78.4321 61.9427 48.8154 38.4309 30.252 23.8287 18.7919 14.8446 11.7507 9.32356 10.4384 8.29839 9.27552 10.358 11.556 9.19138 7.33003 8.15794 9.07151 10.0789 12.6689 11.3935 10.2379 12.881 14.3452 15.9619 20.1524 18.1011 16.2441 14.5643 13.0462 11.6753 14.7311 13.1633 16.6366 21.0665 23.5913 18.6259 20.8318 16.4695 18.3952 20.5264 22.883 25.4864 32.2732 28.9703 25.9801 23.2755 29.4911 26.3907 33.469 29.9192 26.7158 33.9133 37.9721 42.4656 53.8648 48.1942 43.0644 54.6597 61.1173 68.2398 76.0814 60.1232 47.4335 37.3981 41.7416 32.9212 36.7119 40.8964 45.5106 35.9179 28.3602 22.4165 17.7457 14.0753 11.189 12.4115 13.7571 15.2372 19.2112 17.3322 15.6252 19.7127 21.88 24.2666 26.893 21.2784 16.8646 18.6531 20.6177 22.7751 28.7937 26.0494 23.5513 29.7818 32.9573 36.4461 46.1618 41.7331 37.701 34.0323 30.6967 27.6657 24.9136 31.5296 35.0222 38.8678 49.2308 44.3614 39.9359 50.5931 56.1851 62.3307 69.077 54.5836 43.0985 47.7494 52.858 58.4648 73.9811 66.9119 60.4622 76.474 84.5747 93.435 117.629 106.613 96.5122 87.2639 78.8092 71.0909 64.0548 57.6492 51.8253 46.5371 58.9649 52.9182 67.0192 84.6982 94.1485 74.6051 82.9357 65.6213 72.9381 80.9684 89.7679 99.3946 124.871 112.974 102.061 92.0679 115.789 104.492 131.043 118.335 106.673 95.9971 86.2458 77.3589 69.2771 87.5712 97.6046 108.593 135.994 122.567 110.243 137.983 152.912 169.074 186.512 150.582 120.598 133.678 147.893 163.296 201.796 183.438 166.381 205.259 225.342 246.777 269.568 221.485 179.939 144.857 159.834 128.102 141.49 156.014 171.732 137.811 109.909 121.371 133.846 147.396 183.514 167.073 151.858 188.698 206.964 226.576 276.827 253.911 232.4 212.27 193.493 176.03 217.12 197.867 242.529 293.706 319.168 264.942 288.725 237.729 259.714 283.088 307.851 333.989 397.126 368.113 340.342 313.867 373.911 345.92 408.094 378.843 350.698 323.732 298.007 273.571 250.455 228.677 208.244 189.148 171.369 154.879 139.638 125.602 112.719 100.932 90.1827 80.4085 71.547 63.5353 56.3113 49.8144 43.9858 38.7693 34.1114 29.9615 38.4486 33.754 43.3365 55.5358 63.014 49.282 55.9293 43.7154 49.6099 56.1901 63.5165 71.6513 90.798 80.7101 71.5791 63.3404 80.5719 71.3375 90.5628 80.2517 70.9346 90.1482 101.611 114.206 142.752 127.635 113.76 142.22 158.682 176.435 195.479 159.141 127.989 101.932 114.419 90.7827 102.034 114.386 142.963 128.08 159.288 143.004 176.825 215.799 237.363 195.808 216.084 176.866 195.751 159.108 127.897 101.907 80.658 90.6003 101.542 113.543 141.95 127.428 114.097 142.615 158.586 175.842 194.406 157.712 126.665 140.96 156.478 173.261 212.759 193.094 174.75 214.29 235.491 257.992 308.282 283.224 259.347 236.708 215.346 195.288 176.543 215.939 237.414 260.142 309.36 284.329 260.393 237.626 284.011 260.122 307.943 283.146 259.352 236.647 215.105 194.781 175.715 214.025 193.737 233.958 212.584 192.369 173.368 155.615 190.703 171.785 208.722 188.762 169.961 206.356 227.197 249.007 291.243 268.197 245.854 287.019 310.181 333.75 357.605 314.872 271.685 229.776 251.841 210.807 232.04 254.324 298.604 274.82 319.183 295.117 338.959 381.631 405.721 363.38 388.016 343.759 368.719 323.074 277.567 301.666 256.424 279.893 235.504 258.11 304.267 351.961 326.504 373.578 348.107 393.942 419.311 444.72 399.362 425.341 377.911 329.435 281.763 306.371 331.827 358.014 408.488 381.67 355.277 404.228 430.79 457.481 503.362 477.439 451.401 495.274 470.069 510.863 486.622 462.143 437.494 412.754 453.717 429.778 467.862 444.847 421.625 398.262 374.837 351.44 328.173 305.147 282.482 322.269 299.81 338.11 316.079 352.446 331.028 365.116 344.456 323.721 302.988 282.346 316.225 296.158 327.923 308.575 289.185 319.451 337.983 356.356 381.12 363.849 346.373 328.71 353.116 336.336 319.377 342.37 326.276 346.898 361.996 376.94 358.287 374.024 389.587 369.704 386.096 402.291 420.217 404.981 420.947 406.403 391.739 406.719 392.707 378.599 364.38 379.157 392.651 406.085 417.565 404.651 391.723 402.553 415.056 427.584 440.146 430.475 419.472 432.824 420.647 434.506 448.307 435.384 449.726 435.307 418.295 398.178 374.536 347.165 366.252 336.269 356.222 376.024 403.811 385.143 410.238 392.501 415.02 434.118 449.769 431.649 448.073 427.74 445.008 422.237 395.632 415.011 385.636 405.964 373.809 395.045 360.201 382.26 344.928 367.679 390.426 413.086 447.537 425.987 404.211 436.919 416.097 445.899 426.061 452.999 434.138 458.334 440.413 462.047 478.866 495.476 476.004 493.429 471.587 489.903 465.457 484.726 457.475 477.742 497.705 468.82 435.587 457.869 479.885 501.6 530.817 510.476 489.806 517.356 536.694 555.724 576.778 558.913 540.787 522.387 503.702 525.738 507.95 527.589 510.62 528.125 511.891 527.522 511.941 496.221 480.345 464.3 480.614 465.264 479.841 465.105 450.266 463.988 478.184 492.324 506.422 494.486 509.054 495.836 510.942 525.948 538.006 523.557 534.531 520.488 530.556 516.865 503.179 489.489 475.787 462.064 472.783 459.469 446.152 456.328 443.394 452.749 465.399 478.102 469.286 482.277 495.305 486.104 499.439 512.797 521.496 508.376 516.572 503.685 490.863 498.791 486.187 473.661 461.208 448.827 436.512 424.26 412.063 399.917 387.812 375.743 363.695 351.668 361.7 350.071 359.217 347.959 336.73 345.397 356.376 367.415 378.561 370.558 381.961 373.36 385.077 396.849 405.017 393.449 401.129 389.793 397.084 385.959 374.938 364.04 353.227 360.467 371.177 381.993 388.736 377.96 367.304 373.881 384.516 395.284 406.195 399.651 392.941 404.008 415.203 408.328 419.686 412.565 424.108 416.675 408.688 420.596 432.58 444.643 452.207 440.267 428.423 435.756 447.513 459.379 471.355 464.245 456.79 469.022 481.343 493.754 500.963 488.623 476.384 483.44 495.635 507.939 514.775 502.482 490.303 478.24 466.294 454.465 442.754 431.161 437.967 426.522 433.183 421.874 410.695 417.241 428.427 439.749 451.206 444.625 456.197 449.538 461.233 473.052 479.728 467.898 474.523 462.798 469.392 457.766 446.278 434.928 423.718 412.65 401.722 390.941 380.299 386.634 397.301 408.112 414.498 403.645 392.94 399.254 410.007 420.91 431.965 425.501 419.072 430.175 441.423 452.813 459.384 447.945 436.65 443.167 454.516 466.01 472.701 461.147 449.739 438.478 427.367 416.407 405.599 411.99 422.857 433.877 440.442 429.359 418.43 407.657 414.08 403.401 409.797 399.215 388.793 378.533 368.436 358.504 348.734 339.133 345.125 335.628 341.574 332.187 322.968 328.799 338.074 347.519 353.439 343.941 334.612 325.45 316.459 307.633 298.983 304.552 313.254 322.13 327.74 318.818 310.069 301.484 306.879 298.425 303.676 295.349 287.193 279.203 271.384 263.728 256.244 248.919 241.766 234.77 227.946 221.274 214.773 208.422 202.24 206.88 213.1 219.482 224.085 217.674 211.423 205.329 209.72 203.756 197.947 202.143 196.465 190.939 185.564 180.336 175.256 179.192 184.29 189.535 193.32 188.061 182.949 186.501 191.624 196.895 202.314 198.728 194.929 200.473 206.168 212.017 207.974 213.959 220.101 215.84 222.117 228.553 235.148 230.654 226.02 232.723 239.584 246.613 251.336 244.279 237.386 241.906 248.825 255.907 260.299 253.194 246.254 239.475 232.857 226.4 230.496 224.179 218.02 221.876 215.859 209.996 204.286 207.883 213.604 219.478 225.506 231.691 228.05 234.381 240.871 236.972 243.607 250.404 257.362 264.484 268.441 261.305 254.332 247.521 251.196 244.535 238.034 241.435 235.084 228.891 222.854 216.971 211.242 205.665 200.238 194.959 189.827 184.841 179.997 175.296 170.734 166.309 162.021 157.867 153.844 149.951 146.187 142.547 139.032 135.638 132.363 129.206 126.163 123.233 120.413 117.701 115.096 112.593 110.192 107.889 105.682 103.57 101.548 99.6154 97.7691 96.0064 94.3249 92.722 91.1951 89.7416 88.3589 87.0443 85.7952 84.6091 83.4832 82.4151 81.4021 80.4417 79.5315 78.6688 77.8514 77.0768 76.3426 75.6467 74.9867 74.3605 73.7659 73.201 72.6636 72.1518 71.6638 71.1976 70.7514 70.3233 69.9117 69.5147 69.1306 68.7573 68.3931 68.0358 67.683 67.3317 66.9778 66.6148 66.2311 65.8044 65.2913 64.6079 63.5985 61.9933 59.3756 55.2255 49.1538 41.3202 32.6609 24.4792 17.7111 12.6183 8.99644 6.4878 4.76069 3.56378 2.72257 2.12044 1.68048 1.35217 1.10241 0.90966 0.760136 0.645031 0.558435 0.495649 0.452119 0.42313 0.404201 0.391608 0.38233 0.374376 0.366658 0.358982 0.351357 0.377029 0.385686 0.394347 0.424113 0.413139 0.403253 0.430016 0.442866 0.459753 0.483835 0.438091 0.403652 0.414962 0.431073 0.455137 0.531579 0.487691 0.458015 0.519249 0.570777 0.643239 0.795951 0.687545 0.606236 0.547573 0.506681 0.478607 0.458943 0.493219 0.524574 0.569981 0.652156 0.583853 0.535619 0.587039 0.65602 0.750482 0.875413 0.745597 0.634542 0.7232 0.840486 0.991046 1.22656 1.02707 0.868908 1.0362 1.23985 1.49649 1.82104 1.47693 1.18084 0.935853 0.741072 0.59443 0.491356 0.544406 0.61892 0.719317 0.941715 0.794904 0.68077 0.868552 1.0308 1.23534 1.49385 1.12811 0.850347 1.01836 1.23304 1.50961 2.06406 1.66833 1.36478 1.8243 2.25367 2.82182 3.85844 3.0424 2.43339 1.97127 1.61453 1.33475 1.11273 1.41871 1.71818 2.09946 2.7129 2.1943 1.79247 2.23519 2.76994 3.46915 4.39444 3.39184 2.59218 3.23907 4.10139 5.2665 7.1447 5.50325 4.2929 5.63197 7.30091 9.56254 12.4646 9.45743 7.22745 5.57534 4.34633 3.42537 2.72878 2.1963 1.7848 1.46355 1.21087 1.01164 0.855418 0.734833 0.644205 0.698829 0.808411 0.951653 1.02503 0.865044 0.741667 0.768664 0.900336 1.07061 1.28979 1.23062 1.13579 1.37099 1.67174 2.05865 2.27782 1.83521 1.49463 1.57257 1.93964 2.41982 3.05314 2.85794 2.5607 3.21841 4.08821 5.24833 6.01968 4.6473 3.62493 3.89522 5.02324 6.54353 8.60009 7.871 6.8063 8.90714 11.739 15.5283 18.1996 13.7352 10.3718 11.3807 15.1135 20.0378 26.3304 23.9733 20.5098 16.4847 12.6255 9.38386 6.858 4.96837 3.58725 2.58985 1.8715 2.35438 3.01193 3.92483 5.65986 4.28434 3.30208 4.63559 6.09135 8.13241 11.0026 7.60741 5.21368 7.05618 9.70428 13.4854 19.6654 14.2844 10.3762 15.0077 20.4625 27.5405 36.6441 28.2018 21.1348 15.6446 11.5709 8.6188 6.49674 9.04722 12.0617 16.1774 22.0342 16.57 12.4387 16.7365 22.137 28.9605 37.0694 28.9699 21.6695 28.6865 37.0466 46.0699 54.797 46.1575 37.2161 45.9119 54.567 62.0739 67.8473 62.1434 54.6796 45.7156 36.0213 26.7056 18.7481 25.6901 34.0589 42.9385 52.4624 44.1802 35.1673 45.0935 53.5314 60.2946 65.0302 58.9893 51.0173 57.3065 61.5994 64.283 67.9826 66.2974 63.4844 68.0247 69.8183 70.8984 73.293 72.5563 71.3939 69.453 66.2387 61.244 54.2612 61.8568 67.1135 70.5727 73.7007 71.3759 67.657 71.8425 74.3964 75.9621 76.9303 75.1073 72.693 73.965 74.7598 75.3088 77.0154 76.567 75.9789 77.5708 78.0452 78.4401 79.5819 79.2153 78.8022 78.2909 77.5796 76.4869 74.7232 71.8918 67.5667 61.4814 53.772 45.0783 36.3395 28.4031 21.7509 26.8494 34.5115 43.1146 48.2816 39.4302 31.1243 33.9739 42.6084 51.4892 59.6795 56.7808 51.8994 59.9351 66.4917 71.3025 73.5743 69.6664 64.0687 66.4206 71.4101 74.7931 76.9528 76.1149 74.5382 76.5905 77.8665 78.6838 79.374 78.706 77.7049 78.2997 79.1606 79.7543 80.2106 79.867 79.2521 79.694 80.0748 80.4266 80.9821 80.6378 80.2733 80.5997 80.9564 81.2971 81.6293 81.3162 80.7644 79.9268 78.7983 77.3983 75.7392 73.8148 71.5955 69.0095 65.9043 66.9075 67.5786 68.0797 70.5963 70.1837 69.685 72.1009 72.5142 72.8843 73.2348 70.9679 68.4966 68.8725 69.2292 69.5776 72.0075 71.6652 71.3206 73.5767 73.9159 74.2558 76.3074 75.9685 75.6318 75.295 74.9548 74.6051 74.2337 76.1146 76.4651 76.8044 78.4247 78.091 77.7514 79.1395 79.4729 79.803 80.1324 78.7563 77.1393 77.4732 77.8085 78.1469 79.7604 79.4225 79.0883 80.4629 80.796 81.1332 81.476 80.1035 78.4901 76.6504 74.5987 72.3509 69.9238 70.2714 70.6233 70.9816 73.4115 73.0511 72.6981 74.9466 75.3012 75.664 76.0368 73.7813 71.3482 71.725 72.1137 72.516 74.9625 74.5551 74.1619 76.4209 76.8181 77.2298 79.298 78.8828 78.4824 78.0954 77.7202 77.3553 76.9992 78.8395 79.1967 79.5631 81.1784 80.811 80.4532 81.8257 82.1838 82.5516 82.9305 81.5566 79.9401 80.3293 80.732 81.1499 82.7714 82.3516 81.9472 83.3219 83.7274 84.1484 85.2608 84.839 84.4329 84.041 83.6618 83.2939 82.9359 82.5864 82.2441 81.9076 81.5754 81.2463 80.9187 80.5911 80.2614 81.0952 81.4225 81.7485 82.2955 81.9707 81.6449 81.9569 82.2818 82.606 82.9308 82.6208 82.0747 82.4028 82.7341 83.07 83.6142 83.2788 82.9481 83.2577 83.588 83.9231 84.2643 83.9557 83.4118 83.7609 84.1188 84.4866 85.0299 84.6622 84.3045 84.613 84.9705 85.3382 85.7174 85.4092 84.8659 85.258 85.6644 86.0866 86.6303 86.2079 85.8014 86.1096 86.5162 86.9387 87.3785 87.07 86.526 85.6997 84.5864 83.208 81.5844 79.7296 77.6576 75.3856 72.9336 73.3682 73.8215 74.2953 76.7662 76.2858 75.8261 78.1032 78.5682 79.0543 79.5633 77.2693 74.7913 75.3114 75.8575 76.4316 78.9323 78.3505 77.7968 80.0969 80.657 81.2454 83.3504 82.7567 82.1915 81.653 81.1393 80.6486 80.1793 82.0372 82.5098 83.004 84.6348 84.1381 83.663 85.043 85.5197 86.0183 86.5404 85.1549 83.5214 84.0638 84.6329 85.2307 86.8732 86.2723 85.7001 87.0877 87.662 88.2651 88.8991 87.5048 85.8591 83.9746 81.8641 79.5443 77.0355 77.6713 78.3412 79.0472 81.5814 80.8668 80.1884 82.5151 83.2004 83.9223 84.6827 82.3346 79.7916 80.5767 81.4047 82.278 84.8478 83.9655 83.1285 85.484 86.3283 87.218 89.369 88.4734 87.6231 86.816 86.0497 85.3221 84.6311 86.52 87.2154 87.9475 89.6033 88.8678 88.169 89.5657 90.2669 91.0049 91.7817 90.3775 88.7183 89.53 90.3849 91.2852 92.9548 92.0511 91.1927 92.5995 93.4604 94.3667 95.5034 94.5952 93.7325 92.9129 92.1343 91.3945 90.6915 90.0232 89.3876 88.7828 88.207 87.6583 87.1349 86.6351 86.1572 86.9842 87.4627 87.9633 88.5085 88.0075 87.5285 87.8372 88.3164 88.8177 89.3427 89.0332 88.4875 89.0372 89.614 90.2198 90.7673 90.1608 89.5834 89.8932 90.4709 91.0777 91.7153 91.4046 90.8564 91.5259 92.2301 92.971 93.5213 92.7796 92.0747 92.3858 93.0911 93.8332 94.6142 94.3019 93.7509 94.5717 95.4357 96.345 96.8983 95.9882 95.1235 95.4361 96.3013 97.2117 98.1698 97.856 97.302 96.4592 95.3207 93.9062 92.2331 90.3124 88.1555 85.7779 83.199 84.1702 85.194 86.2729 88.8788 87.7909 86.7581 89.1431 90.1833 91.2785 92.4312 90.0243 87.4095 88.6063 89.866 91.191 93.8319 92.4983 91.23 93.6439 94.9192 96.2596 98.4558 97.1102 95.8295 94.6112 93.4528 92.3519 91.3059 93.2312 94.2817 95.387 97.0702 95.9615 94.9077 96.3247 97.381 98.492 99.6602 98.2361 96.5497 97.7722 99.057 100.407 102.102 100.749 99.4617 100.888 102.178 103.532 104.954 103.522 101.823 99.869 97.6677 95.2334 92.5841 94.0478 95.5846 97.1973 99.8706 98.2501 96.7052 99.146 100.697 102.324 104.028 101.569 98.8883 100.66 102.516 104.457 107.159 105.211 103.348 105.813 107.681 109.634 111.866 109.909 108.037 106.248 104.539 102.908 101.352 103.31 104.87 106.504 108.209 106.573 105.011 106.445 108.008 109.646 111.362 109.923 108.216 110.007 111.882 113.842 115.554 113.593 111.717 113.157 115.034 116.996 118.153 116.19 114.312 112.517 110.801 109.162 107.597 106.105 104.682 103.326 102.035 100.805 99.6356 98.5229 97.4649 98.3089 99.3681 100.482 101.038 99.9235 98.8636 99.1778 100.238 101.353 102.525 102.209 101.653 102.883 104.175 105.532 106.091 104.733 103.44 103.756 105.049 106.407 107.831 107.515 106.956 108.449 110.014 111.653 112.213 110.574 109.008 109.325 110.89 112.53 114.247 113.93 113.37 115.166 117.044 119.007 119.568 117.605 115.727 116.044 117.922 119.885 121.935 121.618 121.057 120.203 119.046 117.603 115.889 113.911 111.676 109.196 106.487 108.609 110.823 113.134 115.861 113.545 111.324 113.808 116.033 118.354 120.773 118.276 115.543 118.053 120.666 123.385 126.134 123.41 120.791 123.292 125.914 128.641 130.894 128.165 125.541 123.019 120.598 118.274 116.046 118.026 120.256 122.582 124.299 121.973 119.742 121.185 123.417 125.743 128.167 126.723 125.005 127.528 130.153 132.883 134.603 131.872 129.246 130.691 133.317 136.047 138.885 137.441 135.721 133.731 131.476 128.965 126.212 129.148 132.198 135.362 138.129 134.961 131.907 134.421 137.478 140.649 143.937 141.415 138.643 142.043 145.565 149.21 151.994 148.345 144.819 147.344 150.872 154.524 156.789 153.136 149.607 146.198 142.909 139.736 136.677 138.668 141.727 144.901 146.621 143.447 140.388 141.832 144.891 148.064 151.353 149.911 148.191 151.6 155.13 158.783 160.502 156.849 153.319 154.762 158.291 161.943 163.096 159.444 155.916 152.508 149.219 146.047 142.988 140.042 137.204 134.474 131.848 129.325 126.901 124.574 122.342 123.197 125.429 127.755 128.316 125.989 123.757 124.075 126.307 128.633 131.057 130.739 130.179 132.702 135.328 138.058 138.617 135.887 133.262 133.58 136.205 138.934 141.77 141.453 140.894 143.841 146.898 150.07 150.628 147.457 144.399 144.716 147.773 150.945 154.232 153.916 153.359 156.766 160.294 163.945 164.501 160.85 157.323 157.639 161.166 164.816 168.592 168.277 167.721 166.873 165.721 164.28 162.561 160.567 158.301 155.769 152.981 156.879 160.908 165.068 167.868 163.704 159.671 162.206 166.241 170.407 174.707 172.166 169.362 173.792 178.36 183.067 185.882 181.171 176.6 179.143 183.717 188.431 190.705 185.99 181.415 176.978 172.677 168.509 164.473 166.468 170.504 174.671 176.389 172.222 168.186 169.626 173.661 177.828 182.129 180.691 178.973 183.41 187.986 192.701 194.418 189.703 185.128 186.566 191.141 195.855 200.712 199.275 197.558 195.561 193.286 190.735 187.917 192.909 198.047 203.331 206.162 200.873 195.732 198.285 203.429 208.72 214.159 211.599 208.764 214.347 220.083 225.971 228.818 222.926 217.186 219.749 225.491 231.387 233.672 227.775 222.032 216.44 210.999 205.707 200.561 202.558 207.704 212.997 214.714 209.421 204.275 205.712 210.857 216.15 221.591 220.156 218.439 224.031 229.775 235.673 237.391 231.493 225.748 227.184 232.928 238.827 239.972 234.073 228.329 222.737 217.296 212.003 206.858 201.859 197.003 192.289 187.715 183.279 178.978 174.812 170.778 171.625 175.659 179.825 180.379 176.214 172.18 172.495 176.529 180.694 184.992 184.678 184.124 188.56 193.133 197.847 198.399 193.686 189.113 189.427 194 198.713 203.568 203.254 202.702 207.701 212.846 218.138 218.689 213.397 208.253 208.566 213.71 219.002 224.442 224.13 223.579 229.17 234.915 240.813 241.363 235.465 229.721 230.034 235.778 241.675 247.729 247.416 246.866 246.025 244.88 243.445 241.726 239.724 237.437 234.866 232.014 238.214 244.571 251.087 247.945 254.614 261.445 258.018 265.003 272.15 279.462 275.742 271.77 267.567 263.153 258.556 253.802 261.159 268.679 276.368 281.212 273.493 265.942 270.565 278.142 285.886 293.797 289.097 284.223 292.247 300.437 308.797 313.76 305.37 297.15 301.875 310.121 318.536 323.099 314.664 306.396 298.296 290.364 282.599 275 279.221 286.838 294.621 298.635 290.838 283.207 286.938 294.581 302.389 310.365 306.6 302.571 310.688 318.973 327.427 331.498 323.031 314.731 318.508 326.819 335.298 338.813 330.325 322.005 313.854 305.869 298.052 290.4 282.915 275.595 268.438 271.6 264.6 257.763 260.632 253.951 247.431 241.07 243.644 250.008 256.532 263.216 270.061 267.474 274.478 281.646 278.763 286.09 293.582 301.24 309.064 311.967 304.138 296.475 288.978 291.575 284.239 277.068 279.368 272.358 265.511 258.825 252.299 245.933 247.936 254.303 260.83 262.551 256.023 249.655 251.091 257.459 263.987 270.675 269.239 267.517 274.366 281.378 288.553 286.541 293.879 301.382 299.075 306.742 314.575 322.575 319.963 317.055 325.214 333.541 342.035 344.96 336.459 328.127 330.743 339.079 347.584 349.908 341.4 333.061 324.891 316.887 309.051 311.068 303.397 295.892 297.617 290.277 283.101 276.088 277.525 284.538 291.715 299.057 306.564 305.124 312.796 320.635 318.906 326.911 335.084 343.426 351.935 353.671 345.159 336.816 328.642 330.085 322.077 314.237 315.385 307.711 300.203 292.861 285.684 278.671 271.821 265.132 258.604 252.235 253.076 259.445 265.973 266.523 259.995 253.627 253.939 260.307 266.835 273.523 273.212 272.661 279.512 286.525 293.703 294.253 287.076 280.062 280.374 287.387 294.565 301.907 301.595 301.045 308.553 316.227 324.068 323.226 331.234 339.411 338.261 346.605 355.117 356.269 347.755 348.6 340.254 332.077 332.629 324.62 316.778 309.103 309.415 317.09 324.932 332.941 341.118 340.806 349.152 357.666 357.114 365.797 364.951 363.799 362.351 360.613 358.584 356.256 353.628 350.699 347.469 343.945 340.134 336.048 331.703 327.119 322.318 317.325 312.169 320.833 315.505 324.298 333.262 342.394 336.829 331.171 340.384 349.763 359.312 365.109 355.514 346.088 351.695 361.163 370.8 380.604 374.871 369.028 363.104 357.13 351.129 360.851 354.787 364.616 374.609 380.791 370.738 376.853 366.908 372.937 378.91 388.959 382.935 393.099 386.963 397.237 391.009 384.767 395.088 405.571 416.215 422.635 411.932 401.389 407.675 418.274 429.034 435.384 424.571 413.918 403.427 409.55 399.172 405.153 394.894 384.8 390.574 400.71 411.01 421.474 415.576 426.162 420.091 430.793 441.655 447.815 436.909 442.887 432.1 437.875 427.213 416.713 406.376 396.204 386.196 376.355 366.681 357.175 347.836 338.667 329.665 334.888 326.023 331.044 335.871 344.791 339.939 349.003 343.923 353.126 362.498 372.038 381.745 386.94 377.204 367.636 358.236 363.136 353.879 358.527 349.417 340.476 344.838 353.797 362.924 367.052 357.911 348.938 352.76 361.744 370.897 380.217 376.36 372.218 367.804 377.25 372.561 382.154 391.913 396.643 386.863 391.311 381.681 385.837 389.705 399.36 395.481 405.292 401.108 411.071 406.589 401.839 396.841 391.618 401.658 411.863 422.231 427.538 417.141 406.909 411.931 422.187 432.607 443.189 438.097 432.763 443.457 454.311 448.698 459.68 453.834 464.939 458.88 452.675 446.356 439.953 433.498 427.018 420.539 431.438 424.916 435.908 447.055 458.354 451.678 445.05 456.372 467.842 479.458 486.276 474.597 463.063 469.803 481.401 493.144 505.031 498.1 491.217 484.397 477.646 470.965 464.343 476.012 487.818 481.152 493.045 486.378 498.363 491.684 484.994 497.057 509.24 521.541 528.292 515.968 503.765 510.474 522.711 535.069 541.901 529.499 517.221 505.069 511.829 499.757 506.535 494.542 482.685 489.423 501.338 513.389 525.573 518.66 530.916 524.03 536.357 548.808 555.804 543.298 550.328 537.887 544.944 532.568 520.323 508.211 496.235 503.118 515.157 527.332 534.407 522.167 510.064 517.06 529.227 541.529 553.965 546.779 539.641 552.079 564.646 557.447 570.074 562.894 575.581 568.432 561.381 554.422 547.547 540.734 533.958 527.18 520.351 513.405 506.256 518.849 511.474 524.237 537.082 529.526 542.55 534.667 526.182 539.601 553.057 544.259 557.98 548.561 562.585 552.413 540.865 555.707 542.976 558.319 544.192 560.108 544.351 560.92 543.277 560.582 577.666 594.546 609.617 593.538 577.31 591.543 575.887 588.72 573.563 585.21 570.485 581.137 566.787 576.61 590.642 604.686 595.47 609.793 599.891 614.536 603.803 618.82 607.089 622.538 633.783 643.75 629.154 638.433 624.113 632.827 618.747 627.002 613.13 599.295 585.493 571.723 580.098 566.555 574.519 561.176 547.893 555.644 568.81 582.048 595.359 587.922 601.387 593.687 607.326 621.014 628.5 614.913 622.192 608.74 615.862 602.532 589.28 576.108 563.017 550.008 557.179 544.311 531.534 538.588 525.947 532.87 545.493 558.221 551.329 564.166 577.099 570.137 583.184 596.318 603.245 590.126 597.002 583.977 571.049 577.891 565.055 552.323 539.697 546.489 559.131 571.882 578.744 565.963 553.292 560.141 572.85 585.669 598.596 591.631 584.739 597.699 590.829 603.866 616.999 610.122 623.332 616.452 609.538 622.841 636.226 629.27 642.752 635.714 649.304 642.148 634.752 648.541 640.911 654.859 646.93 661.058 652.758 667.092 658.331 648.699 637.9 625.562 611.236 594.394 574.454 550.825 522.988 490.617 513.07 477.465 500.962 524.16 547.02 569.518 534.812 558.424 520.259 544.964 581.668 613.359 591.634 620.026 599.374 578.35 556.953 535.189 564.728 544.034 570.502 592.895 611.061 589.854 608.889 585.07 605.062 624.711 644.03 663.031 640.31 660.235 634.69 604.519 569.337 529.09 484.192 435.607 384.812 333.642 360.131 308.95 334.844 361.588 389.065 335.4 284.074 309.146 335.277 362.376 418.519 390.093 362.347 417.156 445.735 474.676 528.829 500.163 471.559 443.131 415 387.292 439.738 412.095 462.906 510.825 537.291 490.271 517.599 467.617 495.615 523.622 551.538 579.271 624.813 598.468 571.776 544.795 589.428 563.513 604.468 579.695 554.553 593.34 616.943 640.126 670.611 648.995 626.964 655.629 676.183 696.361 716.178 691.816 662.878 628.838 652.779 614.983 640.134 664.851 699.314 676.274 707.075 685.195 712.619 735.646 754.782 733.029 753.061 728.526 749.555 721.895 689.111 650.76 606.743 557.45 503.857 447.502 390.336 334.45 281.76 233.752 191.342 210.745 231.481 253.551 304.53 279.668 256.062 306.749 332.896 360.124 388.345 330.597 276.939 301.617 327.543 354.66 415.282 386.06 357.8 417.456 447.348 477.902 540.268 509.254 478.572 448.347 418.703 389.763 361.643 419.047 448.386 478.23 536.545 506.639 476.917 533.157 562.466 591.679 620.702 566.519 508.454 538.933 569.546 600.178 655.794 626.24 596.451 649.451 677.854 705.85 733.386 685.032 630.721 571.489 508.994 445.362 382.894 412.163 442.37 473.407 539.589 507.638 476.188 540.5 572.294 604.251 636.252 571.915 505.159 438.361 469.547 403.076 433.338 464.606 496.778 427.315 361.476 301.156 247.57 201.238 162.086 129.624 103.114 81.7214 64.6136 51.0231 40.2773 31.8073 25.1434 19.9049 21.9459 17.3905 19.1475 21.0725 23.1816 25.4922 20.1641 22.1462 24.3165 19.2303 21.0885 16.6913 13.2396 10.5274 8.39282 9.15558 9.98668 10.8928 13.7208 12.5618 11.5002 14.4823 15.8402 17.3244 18.9477 14.9867 11.8812 12.9602 14.1388 15.4274 19.541 17.8842 16.3705 20.7243 22.6697 24.8015 31.5306 28.7872 26.2861 24.0043 21.9212 20.0188 18.2805 23.1224 25.3493 27.7886 35.2771 32.1501 29.2971 26.6934 33.8377 30.7979 28.0239 35.5098 32.2772 29.3282 26.638 24.1841 30.5936 27.7423 35.1152 44.4823 49.0955 38.745 42.7266 33.721 37.1507 40.9112 45.0337 49.5526 39.053 42.937 47.1945 37.1693 40.8215 44.8258 49.2173 38.7054 30.4616 33.392 36.6068 40.1349 51.1225 46.5928 42.4661 54.0347 59.3202 65.1214 82.8889 75.4891 68.7422 62.5898 56.9791 51.862 65.8813 59.9333 54.5054 69.1685 62.8728 57.1252 51.8794 47.0928 59.6984 54.154 68.607 62.202 56.3558 71.3512 78.7279 86.7974 109.534 99.4382 90.1877 113.673 125.176 137.69 151.282 120.54 95.617 75.6197 83.2928 65.7725 72.424 79.7043 100.85 91.6827 115.754 105.248 132.523 166.022 181.981 145.553 159.702 127.204 139.669 110.859 87.6689 96.3779 76.0626 83.6098 91.8695 72.3986 79.5391 87.3613 95.9294 105.313 133.395 121.591 110.788 100.906 127.638 116.291 105.896 133.681 121.778 153.224 167.946 183.914 146.644 160.746 176.073 140.016 153.506 168.198 210.746 192.71 240.107 219.913 201.209 249.834 228.976 209.607 191.654 175.044 217.829 199.227 246.467 225.803 206.566 188.696 172.131 156.808 142.661 177.977 195.132 213.608 262.598 240.736 220.296 269.98 293.826 319.118 345.856 285.914 233.461 254.738 277.484 301.732 364.755 336.987 310.706 374.025 403.596 434.527 509.253 475.823 443.508 412.394 382.553 354.04 326.898 390.271 420.319 451.552 524.067 490.884 458.599 529.742 563.377 597.557 632.151 558.031 483.885 517.223 551.457 586.468 663.345 627.802 592.652 667.026 702.053 737.1 772.043 699.147 622.13 543.697 466.758 393.996 327.507 268.608 292.273 237.854 259.363 282.415 307.06 333.34 272.249 296.284 321.996 261.87 285.276 230.271 184.183 146.286 115.587 91.0053 71.4909 56.0975 44.0087 34.5415 27.1394 21.3561 16.8372 13.3037 10.5377 8.36912 6.6658 5.32518 4.26765 3.43143 2.76854 2.98198 3.21286 3.4629 4.31615 3.99699 3.70284 4.61357 4.98916 5.39743 5.84175 4.66286 3.73403 4.02839 4.3484 4.69682 5.89878 5.45075 5.03999 6.32593 6.85424 7.43153 9.39043 8.64521 7.96439 7.34155 6.77098 6.24763 5.76703 7.23135 7.84756 8.51973 10.7508 9.88594 9.09438 11.4694 12.4879 13.6024 14.8233 11.6968 9.25381 10.0565 10.9354 11.899 15.1169 13.8692 12.733 16.1626 17.6334 19.2508 21.0319 16.4891 12.957 10.2073 8.06327 6.3882 5.07672 5.4916 5.94543 6.44271 8.15462 7.51046 6.92366 8.75568 9.5158 10.3517 11.2725 8.86299 6.98859 7.58893 8.25046 8.98087 11.4578 10.5049 9.64344 12.2887 13.4124 14.6574 18.7965 17.1681 15.7006 14.3756 13.1769 12.0905 11.1042 14.1205 15.402 16.8157 21.5084 19.667 18.0002 22.9961 25.1655 27.5651 30.2236 23.5461 18.378 20.1075 22.0257 24.1573 31.1041 28.3134 25.805 33.1739 36.4535 40.1056 51.7582 46.9853 42.7017 38.8509 35.3837 32.2571 29.4334 26.8795 24.5663 22.4683 20.5628 18.8301 17.2526 15.8146 14.5024 18.3811 20.0735 21.9304 27.9292 25.5302 23.3462 29.7053 32.5237 35.6223 39.032 30.5671 23.9702 26.2132 28.6826 31.4044 40.1992 36.6699 33.4706 42.7877 46.9283 51.498 65.982 60.0801 54.7324 49.8828 45.4813 41.4831 37.8483 48.2654 52.9456 58.0942 74.1825 67.5737 61.5645 78.4856 86.1686 94.611 103.889 81.4545 63.7624 70.0067 76.8898 84.4823 107.986 98.2744 89.4595 114.087 125.296 137.62 151.167 118.688 92.8623 72.5012 56.5465 44.0969 34.4084 37.7279 41.4012 45.4712 58.4661 53.1778 48.4067 62.1295 68.3102 75.1597 82.758 64.3348 49.9873 55.0054 60.5893 66.8116 86.1908 78.1104 70.8558 91.1954 100.574 111.007 142.545 129.182 117.144 106.295 96.5113 87.682 79.7081 102.117 112.343 123.648 157.831 143.491 130.485 166.056 182.416 200.384 220.107 173.642 136.149 149.98 165.281 182.212 231.417 210.271 191.069 241.739 265.439 291.371 319.701 254.683 200.942 157.386 122.624 95.2017 73.7554 57.0847 44.1795 34.2146 26.5304 20.6071 16.0395 12.514 9.78904 10.6852 11.6812 12.7907 16.4506 14.9932 13.6872 17.5772 19.2918 21.208 23.3544 18.0806 14.0296 15.4167 16.9736 18.7257 24.2791 21.9631 19.9084 25.7646 28.4777 31.5397 41.0323 36.9856 33.4035 30.225 27.3977 24.877 22.6244 29.1779 32.1377 35.4535 45.9334 41.5753 37.6883 48.7323 53.8295 59.547 65.972 50.8299 39.1765 43.3657 48.0905 53.4314 69.5933 62.5619 56.3425 73.2056 81.3645 90.5838 101.019 77.5593 59.483 45.6154 35.0045 26.8966 20.7033 22.9415 25.4824 28.3758 37.0797 33.2354 29.8633 38.9358 43.4086 48.5119 54.3512 41.4756 31.6809 35.4686 39.824 44.8493 59.018 52.3201 46.518 61.0521 68.7639 77.6653 102.103 90.3287 80.1181 71.2413 63.5042 56.743 50.8192 66.3559 74.1797 83.1068 108.614 96.8899 86.6027 112.852 126.289 141.57 158.969 122.002 93.3159 105.017 118.456 133.921 174.962 154.851 137.313 178.799 201.414 227.213 292.584 260.083 231.381 206.056 183.719 164.015 146.627 131.27 117.695 105.68 95.0318 85.582 77.1829 69.7059 63.039 81.5153 90.1991 99.93 129.08 116.504 105.261 135.567 149.999 166.097 184.058 143.16 110.848 123.113 136.906 152.431 196.445 176.618 158.935 204.1 226.46 251.394 318.677 287.94 260.167 235.11 212.525 192.184 173.871 221.654 244.545 269.821 339.072 308.322 280.256 350.59 384.191 420.643 460.061 372.689 297.696 328.388 362.114 399.079 492.33 449.183 409.342 502.529 548.091 596.738 648.399 538.858 439.471 352.631 279.172 218.678 169.919 189.628 211.846 236.889 302.752 271.516 243.599 310.082 344.412 382.454 424.48 337.643 265.102 296.855 332.533 372.531 467.551 419.732 376.527 470.736 521.414 576.634 696.885 635.609 578.336 525.181 476.148 431.153 390.047 483.446 531.115 582.529 698.563 642.066 588.787 702.931 760.112 819.635 881.108 758.053 637.658 696.382 758.468 823.566 950.706 884.604 820.21 944.058 1007.94 1072.17 1182.79 1122.86 1062.09 1001.01 940.173 880.107 821.291 764.15 709.046 656.271 606.045 558.522 513.79 471.885 432.793 396.46 362.803 331.711 303.062 276.719 252.54 230.379 210.094 191.547 174.602 159.128 145.008 132.129 120.383 109.672 99.9073 126.834 139.143 152.606 192.418 175.699 160.355 201.555 220.413 240.856 262.984 210.619 167.325 183.409 200.972 220.129 275.215 251.906 230.412 286.895 312.683 340.437 415.664 383.456 353.252 325.006 298.659 274.141 251.373 310.398 337.297 366.025 442.357 409.597 378.624 349.431 422.232 390.915 361.285 434.391 402.768 372.739 344.317 317.501 383.678 354.822 424.682 500.216 534.811 456.767 490.191 414.062 445.942 479.275 513.995 550.021 467.577 502.279 538.429 455.225 489.862 526.091 563.84 476.889 396.624 429.119 463.514 499.797 590.666 551.112 513.159 603.012 643.492 685.138 727.791 631.715 537.93 449.903 370.238 300.449 241.006 263.728 288.425 315.217 388.73 357.114 327.716 402.15 436.221 472.483 510.943 422.639 344.225 375.564 409.332 445.608 538.543 497.535 458.899 551.575 594.318 639.077 743.537 696.472 650.873 606.916 564.746 524.475 486.18 577.846 619.454 662.632 762.384 717.743 674.126 771.27 815.381 859.913 904.649 807.847 707.229 753.061 799.921 847.576 946.877 900.333 853.908 949.365 993.839 1037.85 1118.12 1077.6 1036.2 994.092 951.455 908.478 865.36 822.303 779.506 737.166 695.471 654.597 614.705 575.94 664.859 625.578 587.255 674.131 635.488 597.642 560.73 524.877 606.981 570.438 651.942 615.17 579.044 658.306 694.859 731.648 806.757 770.983 735.07 806.765 841.156 875.113 908.547 842.268 768.531 689.221 726.86 644.31 682.285 720.759 802.629 764.712 842.03 805.37 877.405 941.376 973.532 912.061 946.142 878.385 914.315 840.464 759.577 798.583 713.421 753.202 793.307 704.949 745.688 786.905 828.42 870.052 953.626 913.893 873.821 833.57 915.168 876.531 837.619 915.335 878.078 949.711 984.474 1018.52 952.109 988.286 1023.76 953.388 991.055 1028.05 1092.25 1058.44 1115.64 1084.16 1051.77 1105.42 1075.23 1044.16 1012.26 979.566 1035.6 1004.96 1054.73 1026.06 996.595 966.366 935.41 903.772 871.51 838.692 805.394 771.707 737.729 703.567 669.337 635.16 601.162 567.474 534.224 501.54 570.316 537.504 604.488 668.185 699.944 637.184 669.886 603.468 636.831 670.282 703.7 736.972 798.601 766.928 734.858 702.479 762.564 731.432 786.703 756.957 726.751 696.149 665.229 634.08 602.797 661.077 691.155 720.878 770.207 742.293 713.885 760.423 786.929 812.882 838.266 797.589 750.176 778.993 807.281 835.004 876.283 850.643 824.408 863.076 887.308 910.966 939.773 917.896 895.499 872.57 849.098 825.077 800.504 775.382 749.72 723.534 696.849 669.698 642.123 614.178 585.929 633.885 660.64 686.963 725.879 701.318 676.271 712.899 736.208 759.037 781.389 749.944 712.818 738.179 763.027 787.352 819.124 796.563 773.505 803.271 824.696 845.676 867.767 848.144 828.142 807.744 786.934 765.697 744.021 770.176 790.402 810.248 829.715 811.039 792.05 772.729 792.121 773.601 790.844 773.026 754.954 736.614 717.987 699.059 679.814 700.137 681.728 699.812 682.144 664.234 646.065 627.622 646.624 628.965 645.909 628.944 611.778 627.751 644.106 660.315 672.716 657.1 641.385 653.186 668.405 683.566 698.676 688.245 676.391 662.687 679.293 664.053 681.269 698.285 712.043 695.741 708.19 692.345 703.695 713.741 728.768 719.074 734.391 723.935 739.59 728.213 715.116 731.778 717.252 734.481 718.275 736.156 751.514 764.639 748.281 760.195 744.26 755.162 770.658 786.086 776.027 791.764 780.862 768.362 753.798 771.215 788.422 805.433 817.933 801.561 785.041 796.96 812.943 828.818 838.474 822.982 807.414 816.756 801.45 810.224 795.143 780.023 764.86 749.651 758.722 743.76 752.32 737.57 722.809 708.032 693.237 678.42 663.576 672.902 687.466 702.027 710.169 695.796 681.437 689.395 675.213 682.873 668.846 676.271 662.381 669.623 655.856 662.96 676.681 690.463 683.447 697.326 690.209 704.195 696.939 711.043 703.604 717.842 732.108 724.558 716.588 731.15 745.716 760.286 767.825 753.386 738.964 746.401 760.72 775.063 782.098 767.822 753.576 739.364 725.185 732.303 718.227 725.243 711.259 718.205 704.306 711.21 697.388 683.628 669.934 656.308 663.229 649.689 656.584 643.125 629.746 636.631 650.016 663.484 677.03 670.121 683.733 676.841 690.524 704.275 711.169 697.417 704.346 690.652 697.633 683.992 670.428 656.943 643.541 630.225 637.168 623.917 610.76 617.716 604.623 611.628 624.76 637.99 630.906 644.19 657.565 650.509 663.937 677.448 684.57 671.026 678.23 664.729 651.314 658.556 645.186 631.91 618.731 605.653 592.68 579.815 567.062 574.071 586.876 599.792 607.011 594.039 581.178 588.386 601.306 614.337 627.475 620.091 612.816 625.945 639.175 652.503 659.943 646.56 633.275 640.718 654.062 667.502 675.168 661.669 648.265 634.962 621.762 608.67 595.689 582.823 590.148 577.336 584.665 571.911 559.281 566.531 579.223 592.04 599.434 586.557 573.804 561.177 548.679 536.314 524.085 511.994 500.044 488.238 476.577 465.065 453.703 442.493 449.096 437.979 444.518 451.03 462.262 455.694 467.024 460.367 471.79 483.364 495.086 506.953 513.844 501.919 490.139 478.507 485.186 473.648 480.207 468.769 457.485 463.853 475.185 486.671 493.007 481.478 470.102 476.2 487.615 499.183 510.901 504.687 498.308 491.797 503.536 496.873 508.708 520.688 527.452 515.422 522.027 510.094 516.515 522.767 534.78 528.49 540.609 534.104 546.323 539.625 532.811 525.913 518.964 531.115 543.404 555.829 562.949 550.468 538.122 545.074 557.473 570.008 582.674 575.562 568.386 581.072 593.884 606.82 614.162 601.172 588.305 595.468 608.387 621.429 628.583 615.494 602.527 589.685 576.97 564.387 551.938 558.681 571.175 583.803 590.472 577.803 565.268 552.869 559.233 546.936 553.054 540.865 528.819 516.919 505.167 493.565 482.115 470.82 476.494 465.324 470.738 459.699 448.818 453.933 464.837 475.9 480.787 469.705 458.782 448.018 437.416 426.977 416.7 421.199 431.492 441.948 446.186 435.717 425.41 415.268 419.17 409.182 412.769 402.938 393.274 383.777 374.448 365.287 356.294 359.53 368.53 377.699 380.645 371.471 362.465 365.098 374.107 383.286 392.632 389.987 387.035 396.539 406.211 416.049 419.018 409.174 399.497 402.147 411.828 421.677 424.028 414.176 404.491 394.973 385.623 376.441 367.428 369.461 378.476 387.661 389.404 380.217 371.2 372.649 381.668 390.856 400.213 398.759 397.013 406.534 416.222 426.077 427.829 417.972 408.281 409.737 419.429 429.288 439.314 437.853 436.098 434.047 431.692 429.028 426.053 422.766 432.929 429.323 439.641 450.121 460.765 456.819 452.566 463.346 474.285 485.383 489.676 478.565 467.612 471.569 482.533 493.655 504.933 500.943 496.637 492.025 487.119 481.935 493.287 487.82 499.3 510.932 516.451 504.793 510.022 498.494 503.419 508.047 519.609 514.965 526.664 521.701 533.53 528.258 522.714 534.643 546.718 558.935 564.555 552.312 540.213 545.506 557.627 569.891 574.926 562.644 550.505 538.511 543.186 531.323 535.668 523.941 512.366 516.367 527.953 539.69 551.577 547.544 559.566 555.196 567.35 579.646 584.043 571.733 575.788 563.61 567.324 555.281 543.386 531.64 520.044 508.602 497.315 486.184 475.211 464.398 453.745 443.255 446.557 436.223 439.203 441.872 452.216 449.543 460.047 457.054 467.714 478.534 489.514 500.653 503.669 492.525 481.539 470.712 473.395 462.724 465.091 454.579 444.231 446.285 456.637 467.152 468.913 458.396 448.042 449.505 459.861 470.38 481.062 479.593 477.829 475.765 486.6 484.226 495.217 506.366 508.749 497.595 499.666 488.668 490.434 491.905 502.908 501.435 512.594 510.822 522.136 520.059 517.672 514.97 511.948 523.397 535 546.754 549.794 538.035 526.426 529.133 540.747 552.511 564.425 561.703 558.656 570.706 582.9 579.51 591.839 588.108 600.567 596.491 592.083 587.347 582.294 576.937 571.293 565.384 577.852 571.669 584.24 596.944 609.778 603.27 596.562 609.448 622.458 635.59 642.415 629.245 616.195 622.738 635.822 649.027 655.396 642.161 629.047 616.055 603.19 590.455 596.42 583.789 589.457 594.835 607.51 602.112 614.899 609.183 622.075 635.093 648.235 661.495 667.304 654.02 640.856 627.814 633.253 620.317 625.423 612.598 599.906 604.656 617.364 630.203 634.648 621.797 609.077 613.163 625.894 638.755 651.745 647.628 643.17 638.376 651.454 646.315 659.499 672.802 677.975 664.655 669.478 656.263 660.733 664.861 678.098 673.96 687.306 682.812 696.261 691.41 686.22 680.703 674.872 668.747 662.348 655.702 648.839 641.789 634.589 627.272 619.874 612.431 604.976 597.54 610.531 603.077 616.12 629.275 636.853 623.637 631.197 618.03 625.545 633.045 646.328 638.772 652.108 644.474 657.857 650.176 642.536 655.9 669.364 682.924 690.746 677.126 663.602 671.343 684.927 698.606 712.374 704.457 696.575 688.76 681.034 673.418 665.923 679.434 672.016 685.562 699.19 691.813 705.476 698.194 691.039 704.705 718.444 711.346 725.127 718.109 731.937 724.986 718.089 731.964 725.091 739.029 732.159 746.164 739.275 753.353 746.421 760.578 774.773 789.003 795.833 781.635 767.474 774.316 760.217 767.06 753.019 759.883 745.897 752.8 738.864 745.826 759.772 773.772 766.79 780.829 773.919 788.002 781.146 795.276 788.456 802.635 816.849 810.066 803.264 796.402 789.429 782.278 774.86 767.059 781.79 773.658 788.568 803.457 818.325 833.173 825.269 840.279 832.007 847.206 855.257 862.811 848.002 855.329 840.636 825.936 811.228 796.512 804.022 789.439 796.746 803.817 818.224 811.227 825.719 818.609 833.199 847.79 862.38 876.969 870.012 884.685 877.602 870.202 862.357 853.895 844.593 834.168 822.26 808.424 825.78 810.358 828.327 846.044 863.524 848.092 829.731 848.867 867.674 886.168 901.595 884.017 866.188 880.78 897.826 914.673 931.332 918.935 904.366 887.027 866.226 841.195 811.151 834.423 857.176 879.418 904.6 883.918 862.789 886.363 906.103 925.464 944.463 924.85 901.162 922.423 943.216 963.558 983.185 964.125 944.686 963.118 981.445 999.459 1013.08 995.907 978.477 960.781 942.803 924.529 905.942 922.282 939.932 957.329 969.654 952.953 936.05 947.814 964.128 980.283 996.286 986.165 974.488 991.42 1008.14 1024.65 1034.64 1018.65 1002.49 1012.14 1027.86 1043.45 1058.91 1050.48 1040.97 1030.02 1017.18 1001.88 983.468 961.146 934.057 901.318 862.131 815.93 844.593 793.261 823.459 853.101 882.143 829.801 769.991 802.661 834.895 866.615 919.956 890.529 860.462 910.548 938.289 965.349 1003.27 978.47 953.005 926.877 900.089 872.655 914.531 888.645 925.75 956.592 978.585 949.581 972.82 939.785 964.406 988.399 1011.77 1034.54 1060.12 1039.11 1017.57 995.479 1021.01 1000.05 1022.41 1002.44 982.03 1002.96 1022.06 1040.78 1055.98 1038.27 1020.24 1034.61 1051.78 1068.7 1085.37 1073.4 1059.14 1041.94 1061.05 1041.47 1061.47 1081.01 1100.12 1080.62 1056.71 1027.41 991.715 948.709 897.755 928.259 958.082 987.188 1030.69 1004.09 976.759 1017.38 1042.35 1066.64 1090.24 1056.55 1015.55 1043.15 1069.98 1096.03 1129.78 1106.09 1081.69 1113.17 1135.46 1157.11 1179.15 1159.2 1138.7 1117.65 1096.01 1073.77 1050.91 1078.31 1099.36 1119.86 1139.23 1120.15 1100.62 1118.81 1137.1 1155.02 1172.58 1157.87 1139.86 1159.35 1178.37 1196.94 1211.39 1193.93 1176.1 1189.79 1206.68 1223.26 1233.16 1217.28 1201.13 1184.72 1168.02 1151.03 1133.72 1116.09 1098.11 1079.77 1094.84 1077.16 1090.53 1101.81 1118.03 1107.4 1124.01 1112.22 1129.29 1146.09 1162.61 1178.88 1188.11 1172.42 1156.51 1140.38 1149.84 1134.03 1142.72 1127.18 1111.47 1095.58 1079.5 1063.22 1046.73 1057.1 1073.06 1088.84 1097.1 1081.7 1066.16 1074.24 1089.45 1104.55 1119.53 1112.36 1104.46 1119.93 1135.25 1150.41 1157.38 1142.5 1127.49 1134.4 1149.16 1163.82 1178.37 1172.14 1165.44 1158.09 1173.3 1165.45 1180.88 1196.13 1211.21 1203.6 1194.9 1210.69 1226.25 1241.59 1248.93 1234 1218.9 1226.12 1240.87 1255.47 1261.43 1247.09 1232.61 1218 1203.25 1188.35 1195.09 1180.33 1186.78 1192.81 1207.16 1201.31 1215.72 1209.72 1224.22 1238.59 1252.85 1266.98 1272.26 1258.29 1244.21 1230.02 1235.54 1221.4 1226.86 1212.75 1198.56 1184.27 1169.89 1155.41 1140.84 1126.17 1111.41 1096.55 1081.59 1066.53 1051.37 1036.1 1020.72 1005.23 989.624 973.896 958.041 942.055 925.929 909.657 893.231 876.64 859.876 842.926 855.41 838.916 850.274 860.274 875.866 866.26 882.133 871.755 887.957 904.027 919.97 935.794 944.61 929.133 913.564 897.899 906.804 891.375 899.768 884.539 869.249 877.461 892.521 907.536 914.852 900 885.117 892.372 907.121 921.849 936.554 929.673 922.508 914.938 930.052 922.157 937.437 952.646 960.112 945.109 952.325 937.438 944.461 951.233 965.886 959.216 973.937 967.168 981.968 975.06 967.786 959.998 951.504 967.105 982.602 997.999 1005.66 990.522 975.301 982.859 997.865 1012.81 1027.68 1020.72 1013.3 1028.5 1043.62 1058.64 1065.44 1050.61 1035.71 1042.49 1057.23 1071.91 1078.16 1063.6 1048.98 1034.31 1019.58 1004.79 989.955 996.724 1011.43 1026.1 1032.44 1017.88 1003.27 988.622 995.105 980.511 986.961 972.411 957.837 943.242 928.627 913.994 899.347 906.132 891.553 898.281 883.763 869.245 854.731 840.221 847.084 832.647 839.459 825.086 810.732 817.554 831.87 846.208 852.933 838.619 824.329 831.094 845.368 859.666 873.984 867.267 860.566 853.85 868.256 861.534 875.992 890.457 897.097 882.672 889.326 874.939 881.618 888.32 902.669 895.983 910.357 903.721 918.123 911.527 904.924 919.392 912.796 927.307 920.702 935.261 941.81 948.316 933.857 940.389 925.959 932.527 946.929 961.327 954.814 969.23 962.766 956.302 949.807 964.337 978.848 993.338 999.684 985.242 970.78 977.204 991.626 1006.03 1012.4 998.024 983.635 990.095 975.717 982.245 967.877 953.501 939.119 924.737 931.391 917.027 923.753 909.406 895.068 880.743 866.435 852.147 837.883 823.648 809.444 816.293 802.128 809.044 794.915 801.916 787.821 794.923 780.858 766.842 752.879 738.973 746.12 732.25 739.5 725.663 711.893 719.213 733.021 746.895 754.444 740.528 726.677 712.897 720.462 706.707 693.029 700.632 686.982 694.655 708.361 722.147 714.362 728.169 742.049 734.291 748.188 762.15 770.01 755.997 763.945 749.943 736.009 743.965 730.046 716.203 702.439 710.314 724.136 738.037 746.094 732.135 718.255 726.23 740.167 754.182 768.271 760.127 752.013 766.06 757.955 772.011 786.13 778.009 792.133 784.081 776.173 768.421 760.832 753.401 767.361 760.05 774.036 788.074 795.441 781.375 788.875 774.826 782.456 790.252 804.382 796.543 810.679 802.973 817.116 809.552 802.16 816.289 809.032 823.182 816.053 830.227 823.211 837.412 830.493 844.724 858.983 873.266 880.185 865.904 851.645 858.672 844.435 851.587 837.369 844.66 830.457 837.898 823.706 831.299 845.52 859.772 852.123 866.377 858.894 873.155 865.834 880.105 872.935 887.22 901.521 894.486 887.569 901.887 916.218 930.556 937.461 923.127 908.801 915.836 930.161 944.491 951.676 937.346 923.02 908.702 894.395 901.739 887.438 894.956 880.656 888.354 874.052 881.925 867.615 853.331 839.077 824.858 832.78 818.56 826.609 812.385 798.208 806.31 820.537 834.809 849.121 840.873 855.175 847.038 861.33 875.651 883.871 869.509 877.849 863.469 871.897 857.5 843.138 828.815 814.537 800.307 808.577 794.346 780.172 788.397 774.229 782.429 796.651 810.933 802.626 816.911 831.247 822.86 837.191 851.565 860.056 845.63 854.094 839.659 825.271 833.618 819.229 804.895 790.621 776.41 762.267 748.198 734.206 720.295 706.469 692.734 679.093 665.549 673.218 659.721 667.279 653.833 640.497 647.864 661.25 674.745 688.344 680.829 694.479 686.817 700.513 714.302 722.067 708.227 715.838 702.042 709.469 695.726 682.083 668.543 655.111 662.202 675.676 689.257 696.232 682.614 669.103 675.782 689.327 702.977 716.73 709.952 702.94 716.724 730.602 723.308 737.239 729.725 743.7 735.996 728.181 742.145 756.19 770.311 778.273 764.103 750.009 757.76 771.899 786.114 800.4 792.514 784.504 798.765 813.09 827.473 835.623 821.194 806.823 814.752 829.166 843.638 851.48 836.968 822.514 808.122 793.795 779.54 765.359 751.257 758.629 744.572 751.69 737.685 723.771 730.581 744.526 758.562 772.685 765.782 779.956 772.769 786.987 801.281 808.535 794.209 801.172 786.89 793.542 779.31 765.16 751.097 737.123 723.244 709.463 695.784 682.211 688.362 701.961 715.665 721.562 707.836 694.215 699.752 713.391 727.136 740.982 735.39 729.471 743.375 757.373 771.46 777.442 763.334 749.315 754.926 768.963 783.089 788.39 774.248 760.196 746.236 732.374 718.613 704.957 709.823 723.492 737.267 741.809 728.022 714.341 700.767 704.925 691.454 695.254 681.89 668.644 655.52 642.521 629.651 616.912 604.307 607.711 595.236 598.301 585.959 573.759 576.486 588.691 601.038 603.453 591.102 578.893 566.828 554.91 543.141 531.523 533.604 545.225 556.997 558.78 547.005 535.381 523.91 525.387 514.069 515.242 504.079 493.074 482.23 471.546 461.025 450.668 440.476 430.449 420.588 410.895 401.37 392.012 382.823 373.803 374.649 383.67 392.86 393.414 384.224 375.202 366.35 366.663 357.979 349.464 375.515 384.537 393.728 403.087 402.773 402.218 411.745 421.439 431.3 431.857 421.995 412.3 412.614 422.309 432.171 442.2 441.885 441.328 451.521 461.88 472.402 472.961 462.438 452.079 452.394 462.753 473.276 483.962 483.646 483.086 493.932 504.937 516.101 516.663 505.498 494.492 494.809 505.815 516.98 528.302 527.985 527.422 526.561 538.036 536.86 548.486 560.263 572.19 570.704 568.918 580.987 593.199 605.554 607.348 594.991 582.775 584.263 596.481 608.841 621.34 619.845 618.048 615.944 613.525 610.782 623.401 620.323 633.07 645.947 649.037 636.153 638.906 626.148 628.572 630.68 643.445 641.334 654.227 651.794 664.812 662.049 658.953 672.084 685.337 698.709 701.823 688.445 675.186 677.954 691.218 704.601 707.051 693.664 680.395 667.248 669.367 656.342 658.148 645.248 632.48 633.977 646.748 659.65 672.68 671.176 684.329 682.517 695.789 709.18 710.998 697.604 699.113 685.836 687.033 673.875 660.843 647.939 635.167 622.528 610.027 597.665 585.446 573.371 561.443 549.664 550.527 538.898 539.461 539.779 551.409 551.091 562.872 562.307 574.236 586.313 598.534 610.897 611.465 599.101 586.879 574.802 575.121 563.191 587.199 599.421 611.785 624.289 623.968 623.399 636.039 648.813 661.718 662.289 649.383 636.609 636.93 649.705 662.612 675.646 675.324 674.751 687.91 701.191 700.312 713.711 712.51 726.022 724.507 722.687 720.554 718.1 715.316 712.196 708.734 722.326 718.508 732.2 745.996 759.893 755.696 751.143 765.116 779.182 793.337 797.924 783.758 769.68 773.888 787.975 802.151 816.413 812.176 807.577 802.618 797.301 791.636 785.634 799.889 814.221 807.851 822.234 815.529 829.954 822.932 815.644 830.073 844.563 859.109 866.494 851.915 837.393 844.445 858.996 873.603 880.41 865.778 851.201 836.685 843.101 828.627 834.69 820.264 805.912 811.595 825.965 840.408 854.919 849.184 863.742 857.64 872.239 886.892 893.033 878.36 884.129 869.494 874.886 860.296 845.769 831.311 816.926 821.899 836.297 850.768 855.4 840.918 826.509 830.755 845.174 859.666 874.225 869.95 865.307 879.91 894.572 889.535 904.239 898.819 913.559 907.757 901.597 895.093 888.261 881.124 873.708 866.043 858.163 850.106 841.91 856.397 848.057 862.541 877.066 868.571 883.084 874.519 865.978 880.424 894.9 886.323 900.775 892.254 906.681 898.255 889.996 904.361 896.257 910.605 902.676 917.012 909.272 923.6 916.054 930.379 944.709 959.042 966.614 952.276 937.936 945.71 931.358 939.335 924.966 933.133 918.742 927.075 912.658 921.126 935.582 950.046 941.5 955.93 947.53 961.929 953.708 968.079 960.063 974.413 982.446 990.713 976.325 984.785 970.36 978.978 964.513 973.247 958.74 944.235 929.736 915.247 923.918 909.399 918.087 903.54 889.015 897.629 912.201 926.796 941.408 932.653 947.233 938.452 952.995 967.544 976.414 961.821 970.667 956.034 964.807 950.138 935.48 920.839 906.22 891.628 900.108 885.5 870.929 879.214 864.638 872.737 887.354 902.01 893.829 908.479 923.16 914.745 929.409 944.093 952.591 937.865 946.164 931.42 916.7 924.729 910.003 895.309 880.655 888.354 903.043 917.77 925.278 910.521 895.801 902.966 917.713 932.497 947.314 940.068 932.53 947.319 939.485 954.265 969.065 960.928 975.708 967.332 958.794 973.506 988.225 979.484 994.163 985.303 999.938 991.006 982.093 996.637 987.751 1002.25 993.437 1007.88 999.201 1013.6 1005.09 996.803 988.756 980.948 973.371 966.005 958.823 951.797 944.899 938.105 952.459 945.757 960.122 974.481 988.831 1003.17 996.601 1010.94 1004.46 1018.8 1025.26 1031.79 1017.49 1024.12 1009.81 995.49 981.155 966.81 973.583 959.243 966.132 973.152 987.475 980.463 994.785 987.916 1002.24 1016.54 1030.83 1045.1 1038.4 1052.66 1046.07 1039.56 1033.12 1026.74 1020.41 1014.1 1007.8 1001.48 1015.98 1009.67 1024.19 1038.68 1053.14 1046.97 1040.71 1055.28 1069.79 1084.26 1090.26 1075.88 1061.45 1067.55 1081.91 1096.23 1102.18 1087.92 1073.61 1059.26 1044.87 1030.44 1036.65 1022.24 1028.5 1034.77 1049.09 1042.86 1057.2 1051.03 1065.37 1079.67 1093.93 1108.15 1114.15 1099.97 1085.75 1071.49 1077.65 1063.39 1069.63 1055.36 1041.07 1047.42 1061.69 1075.92 1082.29 1068.08 1053.83 1060.32 1074.54 1088.73 1102.88 1096.46 1090.12 1083.86 1098.05 1091.88 1106.06 1120.2 1126.31 1112.2 1118.41 1104.29 1110.6 1116.99 1131.05 1124.69 1138.73 1132.48 1146.51 1140.36 1134.29 1128.28 1122.32 1116.4 1110.5 1104.6 1098.66 1092.66 1086.53 1080.2 1073.57 1088.42 1103.18 1117.85 1124 1109.48 1094.87 1101.07 1115.55 1129.96 1144.3 1138.45 1132.44 1146.95 1161.36 1175.7 1181.34 1167.12 1152.83 1158.56 1172.76 1186.88 1192.37 1178.33 1164.21 1150.03 1135.78 1121.47 1107.1 1113.02 1127.31 1141.54 1147.27 1133.1 1118.88 1124.72 1138.88 1152.99 1167.05 1161.38 1155.71 1169.82 1183.86 1197.84 1203.32 1189.4 1175.42 1181.04 1194.97 1208.83 1222.63 1217.17 1211.75 1206.34 1200.93 1195.48 1189.95 1204.11 1218.19 1232.18 1237.42 1223.52 1209.54 1214.9 1228.8 1242.62 1256.36 1251.23 1246.08 1240.87 1254.78 1249.58 1263.52 1277.36 1282.34 1268.61 1273.63 1259.9 1264.96 1270.01 1283.59 1278.61 1292.17 1287.27 1300.82 1295.98 1291.1 1286.13 1281 1275.63 1269.91 1263.68 1256.73 1248.8 1239.54 1228.49 1215.08 1198.59 1178.16 1152.78 1121.31 1082.6 1109.65 1065.43 1094.41 1122.53 1149.79 1176.17 1134.7 1163.06 1190.5 1146.18 1175.74 1125.13 1064.26 992.865 911.617 952.934 993.828 1034.13 1106.25 1069.3 1031.47 1099.59 1133.96 1167.29 1199.55 1142.22 1073.7 1112.37 1150.05 1186.61 1243.44 1210.87 1177.11 1230.69 1260.69 1289.53 1326.27 1300.71 1274.1 1246.43 1217.69 1187.88 1157.02 1204.32 1231.9 1258.49 1291.04 1267.26 1242.59 1217 1250.15 1226.34 1201.68 1232.72 1209.69 1185.88 1161.28 1135.87 1169.58 1145.82 1175.09 1198.62 1218.52 1196.74 1217.75 1192.61 1214.92 1236.54 1257.48 1277.78 1255 1276.54 1297.39 1273.15 1295.36 1316.8 1337.5 1313.97 1284.09 1308.73 1332.42 1355.2 1377.83 1357.33 1336.05 1357.49 1376.82 1395.5 1413.57 1397.6 1377.1 1350.8 1317.22 1274.78 1221.98 1157.61 1081.2 993.289 895.773 791.855 685.721 581.889 484.446 525.872 569.875 616.396 724.968 675.248 627.498 734.079 783.928 835.013 887.041 776.44 665.329 716.512 769.725 824.69 938.472 883.524 829.395 939.692 992.62 1045.46 1141.83 1092.72 1042.8 992.36 941.736 891.24 841.181 944.24 992.697 1040.86 1129.29 1084.73 1039.32 1123.68 1165.11 1205.35 1244.26 1172.79 1088.47 1135.23 1180.92 1225.3 1295.17 1255.88 1215.04 1281.72 1317.66 1352.01 1384.75 1332.82 1268.18 1189.84 1097.86 993.854 881.071 938.481 996.49 1054.64 1158.5 1104.28 1049.26 1149.45 1199.9 1248.89 1296.15 1211.52 1112.45 1169.44 1225.16 1279.18 1359.96 1312.55 1262.98 1341.44 1384.59 1425.46 1477.13 1442.24 1405.17 1365.98 1324.71 1281.49 1236.46 1309.4 1348.82 1386.37 1435.26 1402.89 1368.74 1415.87 1445.37 1473.28 1499.66 1465.85 1421.97 1455.61 1487.29 1517.05 1547.39 1521.86 1494.7 1524.55 1548.04 1570.21 1587.26 1567.72 1547.11 1525.38 1502.42 1478.19 1452.61 1425.63 1397.21 1367.32 1335.94 1303.08 1268.77 1233.04 1195.96 1256.07 1288.86 1320.29 1361.33 1333.73 1304.88 1343.76 1369.19 1393.52 1416.79 1387.7 1350.37 1379.09 1406.47 1432.53 1459.79 1436.89 1412.88 1439.04 1460.33 1480.69 1496.67 1478.3 1459.19 1439.28 1418.53 1396.89 1374.33 1398.15 1418.4 1437.87 1452.84 1435.07 1416.66 1431.07 1448.04 1464.49 1480.47 1470.03 1456.62 1474.69 1492.11 1508.93 1518.41 1502.78 1486.66 1496 1511.12 1525.86 1540.24 1533.6 1525.19 1514.33 1500.18 1481.63 1457.32 1480.88 1503.27 1524.56 1541.29 1522.32 1502.45 1518.85 1536.76 1553.95 1570.49 1559.44 1544.8 1564.07 1582.44 1599.97 1609.49 1593.48 1576.81 1586.43 1601.81 1616.68 1622.19 1608.17 1593.76 1578.91 1563.59 1547.75 1531.34 1540.93 1556.19 1571 1576.82 1562.77 1548.38 1554.29 1568.03 1581.49 1594.69 1590.54 1585.41 1599.45 1613.14 1626.53 1630.03 1617.12 1603.96 1607.66 1620.41 1632.97 1645.35 1642.72 1639.63 1635.86 1631.09 1624.91 1616.74 1605.82 1591.13 1571.39 1544.95 1509.87 1463.96 1405.01 1331.13 1241.33 1136.1 1017.9 891.197 761.922 636.415 520.227 417.234 329.329 256.639 198.047 151.75 115.713 87.9691 66.7749 50.6677 38.4656 29.2373 22.2618 16.987 12.9942 9.9671 7.66763 5.917 4.58102 3.55892 2.77501 2.17226 1.70753 1.34809 1.06894 0.851013 0.679772 0.544326 0.436705 0.351254 0.284013 0.232035 0.192666 0.163222 0.141074 0.123861 0.109763 0.0975939 0.086701 0.0767839 0.0677217 0.059455 0.0519459 0.0451768 0.0389742 0.0330524 0.0273239 0.0219297 0.016989 0.0125952 0.00881438 0.00568575 0.00584409 0.00601444 0.00619834 0.00639763 0.00661449 0.00685156 0.00711203 0.00739958 0.00771873 0.008075 0.0084753 0.00892829 0.00944499 0.0100397 0.0107311 0.0181172 0.0167893 0.0156606 0.0146901 0.013847 0.0131081 0.0124552 0.011874 0.0113534 0.0108842 0.0104591 0.010072 0.00971791 0.00939252 0.00909233 0.0130309 0.0135026 0.0140153 0.0190494 0.0183043 0.0176199 0.0227915 0.0237274 0.0247474 0.0258638 0.0198641 0.0145749 0.0151884 0.0158643 0.016613 0.0228448 0.0217474 0.0207591 0.0270914 0.0284488 0.0299584 0.0378191 0.0358438 0.0340687 0.0324639 0.0310046 0.0296714 0.0284488 0.034468 0.0360077 0.0376871 0.044638 0.0425838 0.0407021 0.0471908 0.0493817 0.0517713 0.0543841 0.0468827 0.0395242 0.0415416 0.0437718 0.0462533 0.0550588 0.0520453 0.0493361 0.0572634 0.0604585 0.0640157 0.0679903 0.0584287 0.0490312 0.0400313 0.0316481 0.024071 0.0174471 0.0183823 0.0194386 0.020641 0.0288024 0.0270143 0.0254505 0.0335527 0.0357168 0.0381981 0.0410723 0.0308666 0.0220221 0.0236242 0.0255041 0.0277383 0.039532 0.0361219 0.0332757 0.04444 0.0484376 0.0532536 0.0684745 0.062103 0.0568288 0.0523956 0.048619 0.0453632 0.0425263 0.0521616 0.0557166 0.0597922 0.0714051 0.0665062 0.0622179 0.0724454 0.0774541 0.0831348 0.0896725 0.0770679 0.0645165 0.0700595 0.076652 0.0846135 0.101005 0.0915495 0.0836937 0.0972837 0.106255 0.116981 0.130015 0.11258 0.0943981 0.0763071 0.0591553 0.0436838 0.0304332 0.0197002 0.0115442 0.0125129 0.0136848 0.015128 0.0169427 0.0192821 0.0223838 0.0266311 0.0326944 0.0418521 0.0567603 0.0831946 0.197588 0.128631 0.089963 0.0670373 0.0524879 0.0427033 0.0358071 0.0307575 0.0269407 0.0239752 0.0216159 0.0337393 0.0378762 0.0431728 0.0638433 0.0553597 0.0488333 0.0665306 0.0759614 0.0883495 0.105151 0.0752053 0.0501391 0.0595946 0.0729121 0.0925195 0.14856 0.11379 0.0909702 0.128827 0.163774 0.218402 0.293894 0.218223 0.170309 0.138105 0.115399 0.0987477 0.0861319 0.106666 0.122406 0.143148 0.169558 0.14546 0.127028 0.14615 0.166532 0.192833 0.227543 0.201977 0.171358 0.211208 0.270139 0.362323 0.412112 0.312607 0.247117 0.274721 0.341395 0.438269 0.588953 0.572866 0.517378 0.423015 0.310274 0.205075 0.123034 0.173712 0.264122 0.4336 0.887224 0.495034 0.304477 0.47999 0.830299 1.63755 2.49243 1.19128 0.667018 0.803649 1.39941 2.84699 2.6239 1.38747 0.849366 0.84327 1.31478 2.30411 2.08896 1.26371 0.839995 0.60096 0.454747 0.359198 0.293407 0.246678 0.211776 0.184562 0.163144 0.145981 0.131954 0.120282 0.110418 0.101974 0.0946713 0.0883048 0.0827022 0.0777111 0.0732351 0.0692106 0.0655839 0.0623134 0.0593645 0.0566785 0.054215 0.0619927 0.0647436 0.067739 0.0768688 0.0735733 0.0705341 0.0798634 0.0831741 0.0867414 0.0905932 0.0804526 0.0710182 0.0746244 0.0785938 0.0829693 0.0933047 0.0886272 0.0843591 0.0947635 0.0992957 0.104246 0.116109 0.110816 0.105987 0.101544 0.0974312 0.0936065 0.0900382 0.101205 0.105061 0.109197 0.122687 0.118037 0.113749 0.128488 0.133554 0.139162 0.145448 0.127781 0.11366 0.118515 0.123852 0.129787 0.146982 0.139765 0.133426 0.152582 0.160781 0.17032 0.181537 0.155315 0.136473 0.121964 0.109685 0.0984542 0.0878086 0.0931927 0.0992465 0.106115 0.117717 0.110536 0.10416 0.115709 0.122441 0.130051 0.138768 0.125873 0.113938 0.122915 0.133326 0.14556 0.159018 0.14613 0.135235 0.148905 0.160889 0.175313 0.198233 0.180629 0.166296 0.154436 0.144461 0.135929 0.128511 0.144112 0.152973 0.163413 0.190499 0.176625 0.165065 0.194857 0.21081 0.230065 0.253473 0.207333 0.175904 0.191064 0.209702 0.232891 0.285267 0.253464 0.227961 0.282126 0.317441 0.361298 0.466448 0.406747 0.358392 0.31893 0.286514 0.259712 0.237426 0.218797 0.203142 0.189907 0.178643 0.168981 0.160618 0.153307 0.146846 0.170911 0.179661 0.189697 0.22934 0.21539 0.203261 0.246637 0.263321 0.282448 0.304418 0.245447 0.201289 0.214762 0.230505 0.248985 0.311171 0.285822 0.264112 0.329726 0.358976 0.392911 0.497843 0.453236 0.414651 0.38112 0.351867 0.326261 0.303788 0.377433 0.407049 0.440658 0.552946 0.509311 0.470809 0.588426 0.638226 0.694713 0.759096 0.602614 0.478935 0.522707 0.573003 0.631105 0.800305 0.72475 0.659424 0.832864 0.917858 1.01637 1.13128 0.888239 0.698621 0.549678 0.432445 0.34086 0.270769 0.296556 0.327229 0.363888 0.466095 0.417046 0.375777 0.478731 0.533237 0.597843 0.674984 0.524772 0.407943 0.461239 0.526198 0.606037 0.786819 0.681428 0.59549 0.76784 0.880605 1.01885 1.31727 1.13607 0.988399 0.866896 0.766015 0.681546 0.610265 0.777582 0.870573 0.980909 1.25735 1.11283 0.991264 1.26622 1.42578 1.61587 1.84411 1.43053 1.11287 1.27205 1.46579 1.70388 2.20904 1.89497 1.63981 2.12044 2.45794 2.87405 3.39225 2.59956 1.99947 1.54193 1.1901 0.917374 0.705109 0.540818 0.416248 0.325292 0.262081 0.220199 0.193002 0.174544 0.160167 0.177937 0.200002 0.227954 0.248308 0.217599 0.193634 0.215115 0.243283 0.279832 0.328232 0.288595 0.264142 0.313003 0.381282 0.479909 0.528391 0.419064 0.343099 0.393879 0.485339 0.616661 0.762561 0.594625 0.477224 0.392817 0.330626 0.283843 0.248034 0.299262 0.347206 0.409864 0.526765 0.441585 0.376168 0.48574 0.574611 0.689724 0.841077 0.639354 0.493069 0.605676 0.761541 0.983113 1.29348 0.9993 0.79089 1.04365 1.32061 1.70918 2.27299 1.72301 1.30905 1.01138 0.812306 0.692081 0.628832 0.866807 1.27536 2.03473 2.17746 1.38607 0.950298 1.11874 1.63086 2.54933 3.17676 2.03942 1.39841 1.81195 2.63721 4.08676 5.31652 3.45108 2.38059 3.13094 4.51961 6.92769 9.0239 5.90594 4.10448 2.98789 2.25125 1.74137 1.37638 1.10829 0.907141 0.753516 0.634399 0.829362 0.987068 1.18993 1.55461 1.2882 1.08089 1.40461 1.67659 2.02614 2.48228 1.90223 1.45489 1.80718 2.28564 2.95232 3.86238 2.99042 2.36396 3.0882 3.91027 5.05453 6.63207 5.12265 4.03911 3.24105 2.64072 2.18101 1.82358 2.37052 2.84196 3.449 4.52052 3.7151 3.09049 4.0447 4.87609 5.94987 7.35824 5.57511 4.24268 5.29903 6.73505 8.73838 11.5708 8.89515 6.98093 9.23913 11.8052 15.4004 20.6271 15.4497 11.6349 8.80978 6.70309 5.11811 3.9132 5.36699 7.7101 11.768 15.4016 10.0818 7.01769 9.19987 13.2361 20.2697 26.856 17.4756 12.1153 16.0442 23.2202 35.8299 48.1093 31.0491 21.3734 28.635 41.7568 64.9414 87.9971 56.4263 38.5584 27.6792 20.5988 15.7423 12.2844 9.75533 7.86552 6.42741 5.31589 4.44507 3.75456 3.20099 2.75273 2.38634 2.08426 1.83314 1.62278 1.44526 1.29442 1.16541 1.05437 0.958225 0.874513 0.801234 0.736763 0.924899 1.00868 1.10415 1.39947 1.27454 1.16516 1.47391 1.61729 1.78142 1.97026 1.54289 1.21348 1.33936 1.48509 1.6548 2.12453 1.90043 1.7084 2.18862 2.4425 2.73937 3.54673 3.15241 2.81583 2.5269 2.27753 2.06122 1.87266 2.38957 2.63822 2.92404 3.76885 3.39034 3.06169 3.93791 4.37323 4.87557 5.45804 4.20688 3.25417 3.63741 4.08472 4.60975 6.01288 5.31219 4.71638 6.13687 6.93224 7.86943 8.98032 6.84182 5.2297 4.01145 3.08858 2.38764 1.85365 2.08816 2.36661 2.69964 3.51152 3.06838 2.69854 3.50199 3.99468 4.58608 5.30134 4.04651 3.10098 3.5886 4.18619 4.92542 6.48756 5.49701 4.69764 6.17343 7.246 8.57748 11.3805 9.58554 8.14232 6.97102 6.01212 5.22073 4.56263 5.96637 6.8476 7.9093 10.4393 9.01155 7.82872 10.3054 11.8967 13.821 16.1658 12.1758 9.19814 10.7754 12.7225 15.1487 20.225 16.938 14.3049 19.0459 22.6141 27.0757 36.3319 30.2684 25.4257 21.5228 18.3506 15.7518 13.6067 11.8238 10.3318 9.07562 8.01157 7.1052 6.329 5.66091 5.08308 6.5835 7.35208 8.24247 10.7676 9.57857 8.5542 11.1487 12.5165 14.1072 15.9658 12.1544 9.27896 10.4916 11.918 13.6052 17.9656 15.6956 13.7799 18.1485 20.7251 23.7835 31.5547 27.4308 23.9614 21.027 18.5324 16.4011 14.5717 19.096 21.546 24.4049 32.205 28.368 25.0842 33.0163 37.4183 42.5674 48.6164 36.7088 27.7563 31.704 36.3775 41.9389 55.8055 48.3125 42.0197 55.7539 64.2136 74.286 86.3335 64.7725 48.5924 36.4843 27.4346 20.6713 15.6128 18.0163 20.913 24.4284 32.5933 27.8331 23.9163 31.8197 37.1195 43.5672 51.4656 38.42 28.726 34.0209 40.5989 48.8426 65.7374 54.5395 45.6062 61.2107 73.3238 88.496 119.009 98.5513 82.1828 68.9983 58.3073 49.5806 42.4113 56.5968 66.2811 78.0658 104.447 88.5993 75.5584 100.808 118.276 139.444 165.191 123.802 92.4905 110.249 132.237 159.605 212.997 176.814 147.551 196.608 235.032 282.071 339.614 257.84 193.831 144.744 107.648 79.8967 59.2704 43.998 32.7101 24.3697 18.2026 13.6357 10.2472 7.72745 5.84909 7.01595 8.50804 10.4422 13.9183 11.307 9.29665 12.3644 15.0822 18.6195 23.2967 17.3641 12.9891 16.4049 21.0858 27.6756 37.3285 28.3553 21.9953 29.5956 38.2618 50.5081 68.4979 51.7717 39.9429 31.3563 24.9908 20.1856 16.5007 22.0896 27.0977 33.6396 45.3902 36.4724 29.6538 39.903 49.1941 61.3522 77.4919 57.2305 42.3182 54.0373 70.1867 93.0046 126.242 95.231 73.2199 99.2583 129.131 170.977 231.104 171.26 126.329 92.9969 68.4575 50.4689 37.3074 52.1389 76.5181 119.469 162.139 103.968 70.7222 96.0999 141.275 219.359 294.833 191.523 130.599 177.126 258.269 392.068 513.395 345.153 239.092 320.109 455.12 658.63 823.811 589.221 423.324 309.403 230.461 174.648 134.419 104.934 82.9981 66.4467 53.7921 72.5921 89.7901 112.239 151.477 121.23 97.963 132.014 163.249 203.575 255.95 191.16 141.883 181.486 235.005 308.164 407.169 313.588 243.661 324.237 413.338 529.187 673.308 535.755 425.95 339.423 271.688 218.754 177.314 236.794 290.84 358.824 467.094 382.297 313.451 409.781 494.789 596.669 716.79 570.536 444.042 549.971 679.699 834.986 1005.95 840.437 694.744 855.158 1009.66 1175.55 1345.53 1186.37 1014.95 842.001 678.399 532.623 409.32 550.337 745.263 1000.81 1178.48 916.95 699.878 866.777 1094.32 1345.28 1492.11 1265.79 1042.02 1214.37 1421 1614.06 1710.43 1553.2 1373.08 1510.45 1659.93 1783.53 1837.23 1742.35 1622.96 1484.4 1333.27 1176.9 1022.72 877.174 744.752 627.817 526.897 441.257 369.438 309.674 260.166 219.241 185.417 157.431 134.224 114.926 98.8237 85.3389 74.002 64.4324 56.322 49.4203 43.5236 57.4286 65.3128 74.5403 98.5777 86.2932 75.7876 99.9301 113.853 130.099 149.102 112.987 85.3792 98.1563 113.27 131.207 173.557 149.926 129.936 171.374 197.516 228.231 297.572 258.375 224.72 195.844 171.064 149.782 131.479 172.331 196.119 223.628 289.922 254.995 224.556 290.174 328.335 371.657 420.674 329.937 255.443 292.214 334.645 383.473 486.74 427.743 375.669 475.881 537.691 606.376 681.993 553.138 439.435 343.142 264.326 201.541 152.557 178.035 208.501 244.971 320.642 274.05 234.715 306.711 356.378 414.367 481.695 375.691 288.632 340.829 403.024 476.705 603.543 516.072 440.44 559.243 647.596 746.844 900.468 793.5 695.035 606.018 526.717 456.892 395.961 503.207 575.328 656.091 798.203 709.037 627.231 764.312 852.745 946.291 1043.53 893.909 745.418 842.739 946.874 1055.99 1204.41 1099.08 994.819 1142.65 1241.59 1338.13 1452.39 1367.79 1278.41 1185.93 1092.22 999.115 908.313 821.252 739.046 662.467 591.957 527.68 469.567 417.384 370.778 466.997 522.114 582.78 708.35 640.662 577.917 700.648 769.069 841.241 916.542 780.684 649.056 720.813 797.699 879.098 1019.33 937.022 857.153 994.166 1073.15 1152.4 1272.27 1199.32 1124.8 1049.68 974.969 901.578 830.333 960.764 1031.56 1102.79 1219 1152.78 1085.5 1199.1 1260.56 1319.9 1376.62 1283.45 1173.6 1243.15 1310.61 1375.23 1460.05 1404.48 1345.46 1430.31 1480.67 1527.5 1570.71 1511.84 1436.38 1342.69 1230.76 1102.93 964.116 1051.59 1140.13 1228.19 1348.3 1268.76 1186.52 1307.08 1380.28 1449.43 1513.78 1423.94 1314.18 1396.58 1474.06 1545.58 1618.68 1559.73 1494.67 1572.84 1626.32 1674.21 1715.35 1676.6 1633.08 1584.61 1531.11 1472.71 1409.73 1493.56 1546.44 1594.84 1643.21 1603.42 1559.65 1610.3 1646.38 1679.12 1708.74 1679.16 1638.75 1678.29 1713.68 1745.22 1766.58 1740.53 1711.5 1735.51 1759.72 1781.67 1801.65 1789.99 1773.3 1749.68 1716.67 1671.35 1610.43 1530.79 1430.16 1308.25 1167.65 1014.2 856.349 703.348 563.221 663.521 777.807 905.114 1068.74 937.891 815.233 974.551 1098.85 1225.69 1350.85 1203.91 1042.94 1187.1 1331.94 1471.2 1585.31 1467.24 1338.5 1469.93 1579.05 1675.38 1743.77 1667.27 1578.13 1477.42 1367.38 1251.09 1132.15 1278.94 1386.8 1488.31 1586.57 1501.43 1408.04 1515.86 1593.81 1663.18 1723.65 1662.22 1581.02 1663.28 1734.28 1794.12 1830.3 1783.67 1727.87 1775.46 1819.2 1855.81 1886.4 1868.89 1843.61 1807.67 1757.53 1689.22 1599.01 1710.9 1803.75 1875.68 1902.7 1848.21 1777.08 1825.41 1879.72 1921.39 1934.16 1901.67 1859.9 1884.05 1916.76 1942.79 1948.57 1927 1900.73 1912.1 1933.88 1952.4 1954.91 1938.46 1919.76 1898.37 1873.53 1844.29 1809.7 1768.84 1720.93 1665.4 1601.98 1668.28 1719.15 1763.32 1793.8 1758.5 1717.85 1754.03 1786.75 1815.34 1840.36 1824.33 1801.35 1833.91 1861.75 1885.68 1893.92 1873.74 1850.76 1862.36 1881.89 1899.44 1903.11 1887.37 1870.26 1851.39 1830.36 1806.71 1779.98 1798.31 1820.65 1840.73 1847.81 1830.27 1811.11 1819.96 1836.87 1852.61 1867.41 1864.01 1858.92 1875.58 1891.01 1905.51 1907.07 1893.42 1879.13 1881.48 1894.98 1908.06 1920.88 1920.29 1919.34 1917.83 1915.49 1911.9 1906.48 1924.88 1941.48 1956.53 1957.56 1943.43 1928.26 1930.46 1944.67 1958.2 1958.58 1945.45 1931.87 1932.75 1945.92 1958.79 1958.9 1946.18 1933.29 1933.6 1946.33 1958.94 1958.95 1946.39 1933.78 1921.23 1908.68 1895.98 1883.02 1869.68 1855.84 1841.35 1826.05 1809.74 1792.23 1773.27 1752.64 1730.08 1705.33 1678.13 1648.25 1615.47 1579.62 1540.57 1498.25 1452.69 1403.99 1352.32 1297.98 1380.68 1427.59 1471.69 1524.67 1487.42 1447.52 1500.07 1533.81 1565.21 1594.37 1559.28 1512.87 1551.12 1586.46 1618.99 1648.22 1620.93 1591.33 1621.4 1646.44 1669.64 1685.21 1665.12 1643.6 1620.51 1595.71 1569.08 1540.49 1571.07 1595.51 1618.38 1635.09 1615.14 1593.94 1610.91 1629.63 1647.38 1664.26 1653.91 1639.78 1659.85 1678.7 1696.47 1704.6 1688.56 1671.7 1680.35 1695.74 1710.51 1724.74 1719.91 1713.25 1704.01 1691.17 1673.36 1648.85 1676.2 1701.26 1724.22 1737.71 1717.91 1696.53 1711.17 1729.83 1747.29 1763.72 1756.11 1745.31 1764.76 1782.78 1799.57 1804.65 1789.41 1773.28 1779.25 1794.02 1808.16 1810.61 1797.25 1783.43 1769.08 1754.08 1738.31 1721.67 1729.18 1744.36 1758.9 1762.35 1748.7 1734.58 1738.49 1751.85 1764.86 1777.58 1775.6 1772.88 1786.39 1799.52 1812.32 1813.56 1801.14 1788.51 1790.06 1802.35 1814.49 1815.22 1803.28 1791.24 1779.07 1766.73 1754.18 1741.39 1728.29 1714.84 1701 1686.69 1671.85 1656.42 1640.32 1623.48 1632.81 1648.25 1663.12 1668.15 1654.19 1639.79 1645.09 1658.71 1672.01 1685.01 1681.73 1677.48 1691.4 1704.92 1718.09 1720.59 1707.91 1694.97 1697.75 1710.26 1722.58 1724.24 1712.19 1700 1687.63 1675.06 1662.25 1649.2 1652.49 1665.12 1677.55 1679.68 1667.53 1655.22 1657.56 1669.63 1681.58 1693.4 1691.69 1689.8 1701.9 1713.86 1725.7 1727.04 1715.36 1703.58 1705.13 1716.77 1728.34 1739.84 1738.65 1737.44 1736.15 1734.72 1733.04 1730.96 1743.58 1755.97 1768.18 1769.37 1757.4 1745.3 1746.72 1758.61 1770.4 1782.11 1781.23 1780.25 1792.2 1804.06 1815.85 1816.42 1804.74 1793.02 1793.76 1805.38 1816.97 1817.54 1806.02 1794.49 1782.93 1771.33 1759.68 1747.96 1749.1 1760.7 1772.24 1773.14 1761.69 1750.2 1751.29 1762.69 1774.07 1785.42 1784.56 1783.74 1795.21 1806.68 1818.13 1818.77 1807.37 1795.97 1796.76 1808.1 1819.45 1830.81 1830.18 1829.6 1829.06 1828.56 1828.07 1827.59 1827.09 1826.51 1825.8 1824.88 1823.6 1821.78 1819.14 1815.31 1830.2 1844.39 1858 1859.45 1846.43 1833.04 1834.97 1847.82 1860.41 1872.82 1872.16 1871.18 1884.02 1896.61 1909.06 1909.29 1897.02 1884.67 1885.09 1897.28 1909.44 1909.53 1897.46 1885.38 1873.27 1861.08 1848.77 1836.3 1837.23 1849.44 1861.55 1861.91 1849.94 1837.92 1838.45 1850.34 1862.2 1874.06 1873.84 1873.59 1885.59 1897.59 1909.61 1909.69 1897.71 1885.76 1885.93 1897.83 1909.78 1921.83 1921.77 1921.72 1921.67 1921.63 1921.56 1921.44 1933.87 1946.42 1958.94 1958.92 1946.42 1933.92 1933.94 1946.41 1958.9 1958.89 1946.41 1933.95 1933.97 1946.42 1958.89 1958.9 1946.44 1934 1934.05 1946.47 1958.93 1958.97 1946.52 1934.12 1921.92 1909.89 1897.96 1886.1 1874.28 1862.48 1850.7 1838.9 1839.32 1851.03 1862.76 1863.05 1851.38 1839.72 1840.14 1851.75 1863.38 1875.04 1874.76 1874.51 1886.29 1898.12 1910.02 1910.18 1898.31 1886.51 1886.76 1898.53 1910.37 1910.59 1898.78 1887.04 1875.37 1863.74 1852.15 1840.59 1841.08 1852.59 1864.14 1864.58 1853.08 1841.62 1842.2 1853.62 1865.07 1876.58 1876.13 1875.73 1887.37 1899.07 1910.85 1911.13 1899.39 1887.73 1888.13 1899.75 1911.45 1923.25 1922.98 1922.74 1922.52 1922.33 1922.17 1922.03 1934.21 1946.59 1959.02 1959.09 1946.69 1934.32 1934.46 1946.79 1959.17 1959.27 1946.92 1934.62 1934.8 1947.07 1959.39 1959.52 1947.24 1935.01 1935.24 1947.43 1959.66 1959.82 1947.63 1935.49 1923.56 1911.79 1900.15 1888.58 1877.07 1865.61 1854.2 1842.83 1831.5 1820.19 1808.89 1797.61 1786.33 1775.04 1763.73 1752.39 1741.03 1729.62 1718.15 1706.62 1695.02 1683.34 1671.56 1659.67 1647.67 1635.53 1623.24 1610.79 1598.17 1585.36 1572.34 1559.09 1545.59 1531.82 1517.77 1503.41 1488.71 1473.66 1458.22 1442.38 1426.09 1409.34 1392.09 1374.32 1356 1337.09 1317.56 1335.1 1316.56 1297.47 1314.08 1295.89 1277.19 1257.95 1238.14 1256.71 1237.87 1254.02 1236 1217.53 1232.8 1250.13 1267.09 1277.8 1261.68 1245.25 1255.54 1271.27 1286.74 1301.97 1293.64 1283.69 1271.61 1288.79 1275.05 1292.92 1310.35 1322.01 1305.58 1315.9 1299.96 1309.19 1316.97 1331.74 1324.47 1339.5 1331.54 1346.9 1338.08 1327.35 1343.95 1331.78 1349.01 1365.81 1353.09 1370.58 1387.59 1404.15 1420.28 1429.05 1413.79 1398.17 1382.19 1391.54 1376.02 1360.17 1369.25 1353.82 1361.97 1376.79 1391.36 1384.38 1399.23 1413.81 1406.73 1421.62 1436.22 1442.23 1428.14 1433.71 1419.81 1405.69 1411.28 1397.34 1383.2 1368.86 1354.3 1360.66 1346.3 1352.26 1338.06 1323.69 1309.12 1294.36 1279.39 1264.21 1271.68 1286.43 1301.01 1306.95 1292.69 1278.26 1284.21 1298.38 1312.4 1326.29 1321.06 1315.4 1329.63 1343.7 1357.61 1362.54 1348.85 1335.03 1340.05 1353.68 1367.18 1371.64 1358.28 1344.8 1331.21 1317.5 1303.67 1289.71 1294.9 1308.69 1322.37 1327.09 1313.54 1299.89 1304.74 1318.29 1331.73 1345.08 1340.54 1335.94 1349.4 1362.75 1375.99 1380.28 1367.14 1353.89 1358.34 1371.49 1384.55 1397.52 1393.32 1389.13 1384.89 1380.57 1376.09 1371.37 1366.28 1380.13 1374.82 1388.8 1402.6 1416.23 1429.7 1425.03 1438.59 1451.99 1447.41 1460.92 1456.1 1450.56 1443.99 1436.01 1451.35 1466.34 1481 1487.02 1472.95 1458.62 1464.63 1478.47 1492.08 1505.48 1500.83 1495.35 1509.41 1523.2 1536.73 1540.89 1527.75 1514.4 1518.68 1531.69 1544.53 1547.83 1535.22 1522.47 1509.56 1496.47 1483.21 1469.75 1474.25 1487.4 1500.4 1504.01 1491.23 1478.3 1465.22 1469.19 1456.17 1443.01 1447.11 1434 1420.75 1407.36 1393.82 1398.45 1384.98 1389.51 1393.83 1406.98 1402.8 1415.97 1411.78 1424.98 1438.05 1450.99 1463.82 1460.08 1472.92 1485.64 1482.06 1494.81 1507.43 1519.92 1516.66 1513.24 1525.93 1538.48 1550.9 1553.84 1541.57 1529.18 1532.3 1544.56 1556.72 1568.77 1566.01 1563.2 1560.29 1557.2 1553.83 1550.03 1563.11 1575.99 1588.68 1591.63 1579.19 1566.6 1569.72 1582.1 1594.34 1606.45 1603.92 1601.2 1613.56 1625.77 1637.85 1640.02 1628.1 1616.07 1618.45 1630.33 1642.12 1644.19 1632.51 1620.74 1608.88 1596.9 1584.82 1572.62 1575.38 1587.44 1599.4 1601.86 1590.01 1578.06 1580.72 1592.58 1604.34 1616.02 1613.62 1611.25 1623.02 1634.69 1646.28 1648.4 1636.89 1625.3 1627.61 1639.13 1650.57 1652.8 1641.42 1629.98 1618.46 1606.85 1595.17 1583.39 1571.53 1559.57 1547.51 1535.36 1523.1 1510.72 1498.24 1501.59 1489.11 1476.52 1480.05 1467.46 1454.76 1441.94 1429.01 1432.94 1420.01 1423.99 1411.06 1398.03 1402.16 1415.09 1427.92 1431.87 1419.12 1406.27 1410.39 1423.16 1435.83 1448.42 1444.52 1440.65 1436.8 1449.52 1445.75 1458.45 1471.05 1474.64 1462.13 1465.81 1453.28 1457.07 1460.9 1473.3 1469.53 1481.9 1478.25 1490.59 1487.05 1483.55 1495.94 1492.53 1504.91 1517.19 1513.96 1526.23 1538.4 1550.46 1562.43 1565.33 1553.44 1541.45 1529.37 1532.53 1520.43 1508.23 1511.58 1499.37 1502.83 1514.98 1527.04 1523.71 1535.74 1547.68 1544.54 1556.45 1568.28 1571.29 1559.53 1562.67 1550.88 1539 1542.33 1530.43 1518.43 1506.35 1494.17 1497.81 1485.6 1489.37 1477.13 1464.79 1452.37 1439.85 1427.23 1414.53 1401.73 1388.84 1375.85 1362.78 1349.6 1336.34 1322.98 1309.52 1314.28 1327.65 1340.94 1345.56 1332.34 1319.04 1305.65 1310.5 1297.09 1302.03 1288.6 1275.08 1261.49 1247.82 1234.07 1220.24 1225.58 1239.35 1253.03 1258.29 1244.66 1230.95 1236.35 1250.01 1263.59 1277.1 1271.85 1266.65 1280.18 1293.64 1307.02 1312.06 1298.74 1285.33 1290.54 1303.89 1317.17 1322.34 1309.12 1295.81 1282.42 1268.96 1255.42 1241.81 1228.13 1214.38 1200.57 1186.69 1172.74 1158.74 1144.68 1130.57 1136.44 1150.51 1164.53 1170.36 1156.39 1142.36 1148.34 1162.33 1176.26 1190.14 1184.28 1178.49 1192.38 1206.22 1219.99 1225.66 1211.93 1198.14 1203.96 1217.72 1231.41 1237.23 1223.57 1209.86 1196.07 1182.23 1168.33 1154.37 1160.49 1174.41 1188.28 1194.4 1180.57 1166.68 1152.73 1159.04 1145.07 1151.5 1137.51 1123.47 1109.38 1095.25 1081.09 1066.89 1073.55 1059.34 1066.14 1051.91 1037.66 1023.39 1009.09 1016.09 1001.79 1008.95 994.646 980.33 987.695 1002.01 1016.31 1023.88 1009.59 995.274 1003.09 1017.4 1031.7 1045.97 1038.16 1030.59 1023.24 1037.51 1030.37 1044.63 1058.86 1065.97 1051.76 1059.08 1044.85 1052.41 1060.22 1074.44 1066.63 1080.82 1073.28 1087.45 1080.16 1073.07 1087.24 1080.33 1094.49 1087.73 1101.88 1108.61 1115.48 1101.38 1108.44 1094.32 1101.59 1115.69 1129.74 1122.52 1136.55 1129.54 1122.7 1115.98 1130.04 1144.06 1158.03 1164.67 1150.73 1136.73 1143.56 1157.52 1171.44 1178.36 1164.47 1150.54 1157.71 1143.75 1151.18 1137.2 1123.17 1109.09 1094.98 1102.76 1088.62 1096.69 1082.51 1068.3 1054.05 1039.78 1025.47 1011.15 1019.45 1033.79 1048.11 1056.68 1042.35 1027.99 1036.73 1022.32 1031.2 1016.73 1025.69 1011.17 1020.17 1005.59 1014.57 1029.18 1043.79 1034.73 1049.27 1040.2 1054.68 1045.64 1060.06 1051.12 1065.47 1079.8 1070.98 1062.39 1076.65 1090.86 1105.04 1113.66 1099.48 1085.25 1094.08 1108.33 1122.53 1131.59 1117.37 1103.11 1088.8 1074.44 1083.55 1069.13 1078.28 1063.79 1072.92 1058.37 1067.43 1052.81 1038.17 1023.51 1008.84 1017.66 1002.95 1011.6 996.843 982.085 990.497 1005.29 1020.09 1034.88 1026.36 1041.1 1032.37 1047.07 1061.75 1070.55 1055.84 1064.43 1049.66 1058 1043.18 1028.36 1013.53 998.703 983.879 991.808 976.963 962.131 969.728 954.886 962.158 977.026 991.912 984.588 999.463 1014.35 1006.66 1021.52 1036.38 1044.12 1029.23 1036.63 1021.72 1006.81 1013.83 998.91 984.001 969.11 954.242 939.401 924.593 909.822 916.348 931.14 945.97 952.185 937.338 922.527 928.345 943.172 958.036 972.932 967.065 960.831 975.72 990.631 1005.56 1011.85 996.901 981.972 987.855 1002.8 1017.76 1023.29 1008.32 993.36 978.423 963.513 948.636 933.794 918.994 924.056 909.289 913.965 899.237 884.564 888.848 903.531 918.268 933.055 928.743 943.566 938.868 953.722 968.612 973.331 958.43 962.762 947.888 951.838 936.997 922.201 907.456 892.766 878.134 863.567 849.067 834.639 820.289 806.019 791.834 777.739 763.736 749.831 736.026 739.503 725.795 728.921 731.71 745.428 742.635 756.452 753.314 767.227 781.237 795.34 809.531 812.694 798.496 784.387 770.371 773.175 759.251 761.718 747.891 734.168 736.305 750.031 763.862 765.692 751.858 738.129 739.645 753.377 767.214 781.152 779.628 777.795 775.647 789.672 787.196 801.31 815.514 817.998 803.791 805.946 791.824 793.66 795.187 809.314 807.785 822 820.157 834.454 832.291 829.802 826.977 823.808 838.166 852.6 867.107 870.294 855.781 841.341 844.171 858.617 873.135 887.721 884.875 881.682 896.321 911.018 925.77 928.982 914.223 899.52 902.371 917.08 931.843 934.364 919.596 904.882 890.228 875.637 861.115 846.665 848.831 863.285 877.812 879.667 865.137 850.68 836.299 837.834 823.532 824.748 810.529 796.399 782.362 768.423 754.584 740.85 727.224 728.106 714.591 715.166 701.765 688.483 688.807 702.089 715.49 729.006 728.682 742.31 741.733 755.468 769.309 769.887 756.046 756.372 742.635 770.213 784.156 783.829 783.25 797.288 811.419 825.64 826.222 812 797.868 798.195 812.328 826.55 840.857 840.528 839.945 839.052 853.438 852.217 866.677 881.209 895.809 894.265 892.406 907.064 921.782 936.554 938.422 923.647 908.926 910.474 925.197 939.975 941.208 926.428 911.702 897.036 882.434 867.899 868.795 854.332 854.916 855.245 869.71 869.38 883.917 883.331 897.935 912.603 927.33 942.112 942.701 927.919 913.191 898.522 898.853 884.248 913.522 928.251 943.034 957.867 957.534 956.944 956.038 954.803 953.248 951.376 949.183 946.657 943.79 940.573 955.421 970.309 966.719 981.637 977.671 992.613 988.263 983.534 998.483 1013.45 1028.44 1033.2 1018.2 1003.22 1007.58 1022.57 1037.58 1052.6 1048.21 1043.44 1038.28 1032.74 1026.81 1020.5 1035.45 1028.76 1043.7 1058.63 1051.54 1066.45 1059 1051.24 1066.08 1080.91 1072.8 1087.58 1079.18 1093.91 1085.25 1076.41 1091.04 1082.02 1096.58 1087.45 1101.94 1092.73 1107.15 1097.93 1112.27 1126.56 1140.81 1150.12 1135.84 1121.52 1130.79 1116.39 1125.6 1111.11 1120.2 1105.63 1114.55 1099.91 1108.6 1123.27 1137.9 1129.14 1143.7 1134.72 1149.19 1140.04 1154.43 1145.15 1159.46 1173.7 1164.33 1155 1145.76 1136.67 1127.8 1119.17 1110.82 1124.91 1116.86 1130.91 1144.92 1158.88 1172.78 1165.11 1178.98 1171.61 1185.47 1192.8 1200.4 1186.62 1194.56 1180.75 1166.87 1152.94 1138.95 1147.28 1133.25 1141.88 1150.77 1164.8 1155.91 1169.88 1161.26 1175.18 1189.03 1202.82 1216.54 1208.31 1221.99 1214.12 1206.56 1199.26 1192.19 1185.29 1178.55 1171.94 1165.44 1179.33 1172.96 1186.82 1200.62 1214.36 1208.18 1202.08 1215.83 1229.51 1243.13 1249.11 1235.54 1221.89 1228.04 1241.65 1255.19 1268.67 1262.62 1256.67 1250.81 1245.03 1239.33 1233.7 1247.33 1260.9 1274.39 1279.89 1266.44 1252.92 1258.58 1272.07 1285.47 1298.81 1293.27 1287.81 1301.15 1314.41 1327.6 1332.92 1319.78 1306.57 1312.06 1325.24 1338.33 1343.82 1330.77 1317.64 1304.42 1291.13 1277.77 1264.33 1270.15 1283.55 1296.88 1302.71 1289.42 1276.06 1282.06 1295.39 1308.63 1321.8 1315.92 1310.13 1323.3 1336.39 1349.39 1355.06 1342.09 1329.05 1334.89 1347.89 1360.81 1373.64 1367.93 1362.32 1356.79 1351.34 1345.98 1340.7 1335.49 1330.36 1325.3 1320.31 1315.38 1328.65 1323.82 1337.06 1350.21 1363.28 1358.68 1354.13 1367.23 1380.24 1393.16 1397.52 1384.67 1371.72 1376.26 1389.15 1401.95 1406.44 1393.69 1380.86 1367.94 1354.93 1341.83 1346.65 1333.52 1338.47 1343.47 1356.5 1351.54 1364.54 1359.7 1372.65 1385.52 1398.31 1411 1415.64 1402.99 1390.26 1377.44 1382.3 1369.45 1374.43 1361.54 1348.56 1353.71 1366.65 1379.5 1384.64 1371.84 1358.95 1364.27 1377.11 1389.87 1402.53 1397.35 1392.26 1387.24 1399.96 1395.07 1407.76 1420.35 1432.85 1428.19 1423.61 1419.1 1414.66 1410.29 1405.99 1418.72 1431.36 1443.91 1448.05 1435.55 1422.97 1427.28 1439.81 1452.25 1464.6 1460.45 1456.37 1468.74 1481.02 1493.2 1497.11 1484.98 1472.76 1476.86 1489.02 1501.1 1505.16 1493.14 1481.03 1468.82 1456.53 1444.14 1431.66 1436.12 1448.55 1460.88 1465.31 1453.03 1440.66 1445.27 1457.59 1469.82 1481.96 1477.51 1473.13 1485.28 1497.34 1509.31 1513.53 1501.61 1489.61 1494.01 1505.97 1517.83 1522.21 1510.4 1498.5 1486.5 1474.41 1462.23 1449.96 1437.6 1425.14 1412.6 1417.52 1404.93 1409.98 1415.11 1427.6 1422.52 1434.96 1430.01 1442.42 1454.73 1466.95 1479.08 1483.83 1471.75 1459.58 1447.32 1452.3 1439.99 1445.11 1432.76 1420.32 1407.79 1395.17 1382.46 1369.67 1375.15 1387.9 1400.56 1406.04 1393.43 1380.72 1386.38 1399.04 1411.61 1424.08 1418.56 1413.13 1425.61 1438 1450.3 1455.58 1443.33 1430.99 1436.46 1448.75 1460.94 1473.04 1467.73 1462.5 1457.36 1469.52 1464.51 1476.63 1488.65 1500.58 1495.81 1491.12 1503.06 1514.91 1526.66 1531.2 1519.5 1507.7 1512.42 1524.16 1535.8 1540.49 1528.9 1517.21 1505.43 1493.56 1481.59 1486.62 1474.61 1479.78 1485.04 1496.94 1491.74 1503.61 1498.54 1510.36 1522.09 1533.72 1545.25 1550.08 1538.61 1527.04 1515.37 1520.46 1508.75 1513.98 1502.23 1490.38 1478.43 1466.39 1454.25 1442.02 1429.69 1417.26 1404.75 1392.14 1379.44 1366.66 1353.78 1340.82 1327.78 1314.66 1301.45 1288.17 1274.8 1261.37 1247.86 1234.29 1220.64 1206.93 1193.16 1199.6 1185.8 1192.39 1199.1 1212.84 1206.16 1219.87 1213.34 1227.02 1240.63 1254.18 1267.65 1274.04 1260.6 1247.09 1233.51 1240.13 1226.52 1233.31 1219.66 1205.96 1213 1226.67 1240.27 1247.45 1233.89 1220.25 1227.78 1241.37 1254.88 1268.33 1260.94 1253.81 1246.88 1260.39 1253.67 1267.14 1280.54 1287.18 1273.82 1280.67 1267.27 1274.36 1281.69 1294.99 1287.7 1300.97 1293.98 1307.22 1300.47 1293.87 1287.4 1281.05 1294.37 1307.61 1320.78 1327.01 1313.89 1300.68 1307.11 1320.28 1333.36 1346.36 1340.05 1333.86 1346.86 1359.78 1372.61 1378.66 1365.88 1353.01 1359.27 1372.09 1384.83 1391.12 1378.43 1365.65 1352.79 1339.83 1326.79 1313.67 1320.38 1333.46 1346.45 1353.23 1340.29 1327.27 1314.16 1321.33 1308.2 1315.71 1302.56 1289.33 1276.01 1262.62 1249.15 1235.61 1243.77 1230.19 1238.73 1225.1 1211.4 1197.63 1183.79 1192.68 1178.77 1187.9 1173.92 1159.87 1169.13 1183.2 1197.2 1206.61 1192.58 1178.49 1187.89 1202.01 1216.06 1230.03 1220.56 1211.13 1201.81 1215.65 1206.52 1220.28 1233.97 1243.11 1229.42 1238.76 1224.98 1234.43 1243.93 1257.74 1248.22 1261.93 1252.45 1266.06 1256.71 1247.58 1261.11 1252.27 1265.74 1257.27 1270.69 1279.12 1287.9 1274.55 1283.65 1270.23 1279.57 1293 1306.33 1296.99 1310.23 1301.16 1292.42 1284.04 1297.3 1310.47 1323.57 1331.79 1318.76 1305.63 1314.34 1327.41 1340.39 1349.36 1336.42 1323.37 1332.68 1319.56 1329.07 1315.84 1302.51 1289.07 1275.55 1285.11 1271.47 1281 1267.25 1253.41 1239.49 1225.49 1211.41 1197.26 1183.04 1168.77 1177.99 1163.62 1172.66 1158.2 1167.02 1152.48 1161.04 1146.42 1131.76 1117.07 1102.34 1110.51 1095.72 1103.57 1088.73 1073.87 1081.35 1096.23 1111.09 1118.26 1103.38 1088.48 1073.56 1080.31 1065.36 1050.41 1056.75 1041.78 1047.72 1062.71 1077.69 1071.72 1086.68 1101.64 1095.24 1110.16 1125.06 1131.49 1116.57 1122.59 1107.64 1092.67 1098.27 1083.28 1068.28 1053.28 1058.45 1073.46 1088.47 1093.28 1078.25 1063.23 1067.63 1082.66 1097.69 1112.71 1108.29 1103.48 1118.47 1113.25 1128.22 1143.16 1137.52 1152.43 1146.38 1139.94 1133.12 1125.92 1118.38 1133.16 1125.27 1139.99 1154.67 1162.62 1147.91 1155.5 1140.73 1147.94 1154.78 1169.6 1162.73 1177.49 1170.23 1184.92 1177.29 1169.32 1183.91 1175.61 1190.12 1181.51 1195.94 1187.06 1201.4 1192.3 1206.54 1220.72 1234.83 1244.03 1229.89 1215.68 1224.62 1210.31 1218.98 1204.58 1212.94 1198.46 1206.48 1191.91 1199.56 1214.15 1228.69 1220.99 1235.44 1227.37 1241.73 1233.32 1247.58 1238.86 1253.02 1267.11 1258.09 1248.86 1262.81 1276.68 1290.46 1299.76 1285.96 1272.07 1281.12 1295.04 1308.87 1317.72 1303.86 1289.92 1275.89 1261.77 1270.23 1256.02 1264.13 1249.82 1257.56 1243.16 1250.51 1236.02 1221.47 1206.86 1192.2 1199.09 1184.37 1190.86 1176.07 1161.24 1167.31 1182.15 1196.95 1211.71 1205.6 1220.3 1213.77 1228.4 1242.97 1249.52 1234.94 1241.07 1226.42 1232.13 1217.41 1202.64 1187.82 1172.97 1158.08 1163.33 1148.4 1133.45 1138.28 1123.29 1127.72 1142.72 1157.69 1153.24 1168.18 1183.09 1178.23 1193.1 1207.92 1212.8 1197.97 1202.44 1187.56 1172.64 1176.71 1161.75 1146.77 1131.77 1116.75 1101.72 1086.68 1071.64 1056.61 1041.58 1026.56 1011.56 996.587 1000.19 985.234 988.47 973.539 958.644 961.516 976.417 991.353 1006.32 1003.43 1018.42 1015.17 1030.18 1045.2 1048.46 1033.43 1036.33 1021.32 1023.86 1008.86 993.892 978.951 964.046 966.244 981.153 996.097 997.979 983.031 968.119 969.677 984.592 999.543 1014.53 1012.96 1011.07 1026.08 1041.1 1038.89 1053.92 1051.37 1066.41 1063.5 1060.24 1075.28 1090.33 1105.37 1108.66 1093.61 1078.55 1081.47 1096.52 1111.58 1126.63 1123.7 1120.41 1135.43 1150.44 1165.43 1168.74 1153.75 1138.73 1141.67 1156.69 1171.69 1174.28 1159.28 1144.25 1129.21 1114.16 1099.1 1084.03 1068.98 1071.2 1056.15 1058.04 1042.99 1027.97 1029.53 1044.57 1059.61 1074.68 1073.1 1088.16 1086.26 1101.33 1116.39 1118.3 1103.23 1104.82 1089.75 1091 1075.93 1060.87 1045.81 1030.78 1015.77 1000.78 985.831 970.914 971.821 986.739 1001.69 1002.29 987.332 972.413 972.747 987.667 1002.62 1017.61 1017.28 1016.68 1031.69 1046.73 1061.78 1062.38 1047.33 1032.29 1032.63 1047.66 1062.72 1077.78 1077.45 1076.85 1091.92 1107 1106.07 1121.15 1119.89 1134.95 1133.36 1131.45 1146.5 1161.53 1176.53 1178.46 1163.44 1148.41 1150 1165.04 1180.05 1181.32 1166.3 1151.27 1136.21 1137.14 1122.07 1122.67 1107.6 1092.52 1092.86 1107.94 1123.01 1138.08 1137.74 1152.8 1152.19 1167.23 1182.25 1182.86 1167.84 1168.18 1153.14 1183.2 1198.19 1197.85 1197.24 1196.31 1195.04 1193.44 1191.52 1189.26 1186.66 1183.71 1180.4 1195.33 1191.64 1206.53 1221.38 1217.29 1232.09 1227.59 1222.7 1237.44 1252.11 1246.8 1261.41 1255.67 1270.21 1264.05 1257.48 1271.92 1264.93 1279.29 1271.9 1286.16 1278.37 1292.53 1284.37 1298.43 1312.4 1326.28 1334.5 1320.6 1306.61 1314.44 1300.34 1307.77 1293.57 1300.58 1286.29 1292.89 1278.5 1284.68 1299.08 1313.4 1307.2 1321.43 1314.8 1328.93 1321.88 1335.91 1328.45 1342.37 1349.85 1356.94 1342.98 1349.64 1335.58 1341.81 1327.64 1333.44 1319.19 1304.85 1290.44 1275.96 1281.3 1266.74 1271.66 1257.03 1242.34 1246.84 1261.53 1276.17 1290.75 1286.22 1300.73 1295.79 1310.21 1324.56 1329.51 1315.16 1319.7 1305.26 1309.4 1294.88 1280.29 1265.65 1250.94 1236.19 1239.9 1225.09 1210.23 1213.55 1198.65 1201.61 1216.52 1231.38 1228.42 1243.24 1258.01 1254.66 1269.37 1284.03 1287.38 1272.72 1275.71 1260.98 1246.21 1248.83 1234 1219.12 1204.21 1206.47 1221.39 1236.26 1238.2 1223.32 1208.4 1210 1224.92 1239.81 1254.65 1253.04 1251.1 1265.88 1263.61 1278.33 1293 1290.37 1304.97 1301.98 1298.62 1313.14 1327.6 1323.84 1338.21 1334.06 1348.35 1343.79 1338.82 1353.01 1347.61 1361.7 1355.88 1369.86 1363.61 1377.48 1370.8 1363.7 1356.19 1348.31 1340.06 1331.48 1322.6 1313.47 1304.14 1294.66 1308.23 1298.65 1312.1 1325.44 1338.68 1351.81 1342.19 1355.21 1345.71 1358.62 1368.12 1377.74 1364.83 1374.49 1361.46 1348.31 1335.05 1321.69 1331.22 1317.73 1327.09 1336.24 1349.78 1340.6 1354.01 1344.6 1357.88 1371.04 1384.09 1397.03 1387.41 1400.21 1390.53 1380.91 1371.43 1362.19 1353.28 1344.73 1336.57 1328.78 1341.77 1334.38 1347.35 1360.23 1373.02 1366.09 1359.35 1372.17 1384.9 1397.54 1404.1 1391.52 1378.85 1385.72 1398.33 1410.85 1417.82 1405.37 1392.83 1380.2 1367.48 1354.67 1362.31 1349.49 1357.58 1366.06 1378.75 1370.33 1382.99 1375.05 1387.69 1400.25 1412.7 1425.06 1432.65 1420.38 1408.02 1395.55 1403.81 1391.33 1400.07 1387.55 1374.93 1384.13 1396.71 1409.18 1418.58 1406.14 1393.58 1403.2 1415.75 1428.18 1440.47 1430.9 1421.54 1412.48 1424.78 1416.19 1428.47 1440.64 1449.06 1436.98 1445.9 1433.77 1443.09 1452.64 1464.68 1455.16 1467.11 1457.9 1469.79 1461.03 1452.71 1444.83 1437.33 1430.17 1423.27 1416.59 1410.08 1403.71 1397.47 1391.35 1385.34 1397.99 1410.55 1423.02 1428.88 1416.46 1403.95 1410.02 1422.48 1434.84 1447.11 1441.2 1435.39 1447.67 1459.85 1471.93 1477.58 1465.55 1453.42 1459.28 1471.35 1483.32 1489.17 1477.26 1465.25 1453.14 1440.92 1428.62 1416.21 1422.52 1434.88 1447.13 1453.47 1441.27 1428.98 1435.6 1447.83 1459.96 1471.99 1465.56 1459.28 1471.34 1483.29 1495.14 1501.24 1489.45 1477.56 1483.92 1495.75 1507.47 1519.09 1512.92 1506.89 1500.98 1495.19 1489.51 1483.92 1495.81 1507.6 1519.29 1524.7 1513.07 1501.34 1506.96 1518.63 1530.2 1541.67 1536.23 1530.89 1525.63 1537.18 1532.07 1543.58 1555 1566.31 1561.46 1556.68 1551.98 1547.35 1542.8 1538.33 1533.93 1529.6 1525.36 1521.19 1517.1 1513.09 1509.15 1505.3 1501.52 1513.58 1509.93 1521.95 1533.89 1545.74 1557.5 1554.15 1565.88 1577.52 1574.37 1585.99 1582.97 1580.02 1577.14 1574.31 1586.1 1597.8 1609.41 1612.04 1600.49 1588.85 1591.67 1603.24 1614.73 1626.14 1623.51 1620.95 1632.41 1643.79 1655.1 1657.48 1646.23 1634.9 1637.48 1648.74 1659.93 1662.46 1651.33 1640.13 1628.85 1617.5 1606.07 1594.56 1597.52 1608.97 1620.34 1623.27 1611.95 1600.56 1589.08 1592.26 1580.76 1569.17 1572.54 1560.92 1549.22 1537.43 1525.55 1529.21 1517.3 1521.1 1524.98 1536.78 1532.96 1544.73 1541.04 1552.77 1564.42 1575.98 1587.46 1584.07 1595.51 1606.88 1603.68 1615.01 1626.27 1637.45 1634.51 1631.64 1642.86 1654 1665.07 1667.77 1656.75 1645.67 1648.55 1659.58 1670.53 1673.38 1662.49 1651.52 1640.48 1629.36 1618.16 1621.38 1610.15 1598.85 1602.26 1590.93 1579.51 1568 1556.41 1560.13 1548.5 1552.35 1540.69 1528.94 1532.97 1544.67 1556.28 1560.28 1548.73 1537.09 1541.28 1552.87 1564.36 1575.77 1571.74 1567.79 1563.92 1575.4 1571.66 1583.11 1594.48 1598.1 1586.8 1590.55 1579.22 1583.11 1587.08 1598.3 1594.39 1605.58 1601.8 1612.96 1609.32 1605.75 1616.94 1613.51 1624.67 1635.76 1632.52 1643.58 1654.56 1665.47 1676.3 1679.3 1668.53 1657.68 1646.76 1650.02 1639.07 1628.05 1631.5 1620.45 1624.04 1635.02 1645.93 1642.46 1653.35 1664.14 1660.88 1671.66 1682.37 1685.51 1674.86 1678.14 1667.48 1656.75 1660.22 1649.46 1638.62 1627.7 1616.68 1620.47 1609.43 1613.35 1602.28 1591.12 1579.87 1568.52 1557.08 1545.55 1549.89 1561.37 1572.75 1577.06 1565.73 1554.31 1558.81 1570.17 1581.43 1592.6 1588.28 1584.04 1595.23 1606.34 1617.35 1621.41 1610.46 1599.42 1603.68 1614.66 1625.54 1629.74 1618.92 1608 1596.99 1585.88 1574.68 1563.38 1568.02 1579.26 1590.4 1594.99 1583.91 1572.74 1577.53 1588.64 1599.66 1610.57 1605.98 1601.45 1612.4 1623.25 1634 1638.33 1627.65 1616.86 1621.39 1632.11 1642.73 1653.25 1648.93 1644.66 1640.46 1636.33 1632.27 1628.27 1624.33 1635.22 1631.42 1642.29 1653.07 1663.76 1674.37 1670.89 1681.48 1691.99 1688.71 1699.21 1696.07 1693 1689.99 1687.06 1684.2 1681.42 1678.71 1676.08 1673.53 1671.05 1668.66 1666.34 1664.1 1661.93 1659.83 1657.79 1655.79 1653.81 1651.83 1649.8 1661.64 1673.38 1685.04 1686.71 1675.17 1663.54 1665.42 1676.94 1688.4 1699.79 1698.18 1696.6 1708.1 1719.54 1730.92 1732.25 1720.95 1709.59 1711.12 1722.41 1733.64 1735.09 1723.92 1712.71 1701.44 1690.13 1678.75 1667.3 1669.23 1680.6 1691.9 1693.74 1682.5 1671.2 1673.23 1684.47 1695.65 1706.78 1704.93 1703.15 1714.35 1725.5 1736.61 1738.2 1727.15 1716.06 1717.85 1728.88 1739.87 1750.82 1749.22 1747.69 1746.23 1744.84 1743.52 1742.25 1753.54 1764.81 1776.06 1777.13 1765.95 1754.75 1756.01 1767.15 1778.28 1789.39 1788.31 1787.29 1798.51 1809.74 1820.98 1821.83 1810.65 1799.48 1800.5 1811.62 1822.74 1823.71 1812.65 1801.59 1790.54 1779.49 1768.42 1757.34 1758.74 1769.76 1780.76 1782.11 1771.17 1760.21 1761.75 1772.65 1783.53 1794.39 1793.04 1791.76 1802.75 1813.74 1824.74 1825.83 1814.9 1803.97 1805.25 1816.11 1826.98 1828.19 1817.39 1806.6 1795.81 1785.01 1774.2 1763.36 1752.5 1741.61 1730.68 1719.71 1708.7 1697.63 1686.52 1675.34 1677.52 1688.64 1699.69 1701.83 1690.83 1679.78 1682.11 1693.11 1704.04 1714.93 1712.77 1710.7 1721.65 1732.56 1743.42 1745.31 1734.51 1723.66 1725.76 1736.54 1747.27 1749.31 1738.64 1727.92 1717.16 1706.34 1695.46 1684.52 1687.02 1697.89 1708.71 1711.15 1700.4 1689.59 1692.23 1702.98 1713.67 1724.29 1721.84 1719.46 1730.16 1740.81 1751.42 1753.59 1743.06 1732.48 1734.86 1745.37 1755.84 1766.25 1764.08 1761.97 1759.94 1757.97 1756.07 1754.25 1765.05 1775.82 1786.56 1788.18 1777.51 1766.8 1768.63 1779.26 1789.87 1800.46 1798.84 1797.29 1808.02 1818.73 1829.46 1830.78 1820.13 1809.49 1811.03 1821.59 1832.16 1833.59 1823.11 1812.62 1802.13 1791.62 1781.09 1770.53 1772.49 1782.98 1793.44 1795.31 1784.94 1774.53 1776.62 1786.95 1797.25 1807.52 1805.66 1803.87 1814.28 1824.68 1835.08 1836.62 1826.31 1815.99 1817.76 1827.99 1838.21 1848.42 1846.92 1845.47 1844.07 1842.73 1841.43 1840.19 1839 1837.87 1836.79 1835.76 1834.8 1833.89 1833.03 1832.24 1843.52 1854.84 1866.19 1866.83 1855.52 1844.26 1845.06 1856.26 1867.5 1878.79 1878.17 1877.6 1889.06 1900.58 1912.17 1912.58 1901.04 1889.58 1890.14 1901.54 1913.03 1913.5 1902.08 1890.74 1879.45 1868.23 1857.05 1845.91 1846.81 1857.88 1869 1869.81 1858.77 1847.76 1848.77 1859.7 1870.68 1881.69 1880.9 1880.16 1891.37 1902.65 1914 1914.53 1903.25 1892.05 1892.76 1903.89 1915.09 1926.41 1925.92 1925.46 1925.03 1924.62 1924.24 1923.88 1935.77 1947.86 1959.99 1960.18 1948.1 1936.07 1936.39 1948.36 1960.38 1960.59 1948.64 1936.74 1937.1 1948.94 1960.82 1961.06 1949.25 1937.49 1937.9 1949.58 1961.32 1961.58 1949.93 1938.33 1926.92 1915.68 1904.56 1893.51 1882.52 1871.58 1860.69 1849.83 1850.94 1861.72 1872.53 1873.52 1862.8 1852.1 1853.31 1863.92 1874.56 1885.24 1884.29 1883.39 1894.29 1905.26 1916.3 1916.94 1905.99 1895.11 1895.97 1906.75 1917.62 1918.32 1907.55 1896.86 1886.22 1875.64 1865.09 1854.57 1855.88 1866.31 1876.76 1877.92 1867.57 1857.24 1858.64 1868.87 1879.12 1889.41 1888.31 1887.25 1897.78 1908.38 1919.04 1919.79 1909.23 1898.74 1899.73 1910.12 1920.57 1931.14 1930.47 1929.82 1929.19 1928.59 1928.01 1927.45 1938.77 1950.3 1961.86 1962.15 1950.68 1939.24 1939.73 1951.07 1962.45 1962.77 1951.48 1940.24 1940.77 1951.91 1963.09 1963.43 1952.35 1941.31 1941.87 1952.8 1963.78 1964.14 1953.27 1942.45 1931.83 1921.38 1911.03 1900.76 1890.54 1880.36 1870.21 1860.09 1849.97 1839.85 1829.73 1819.59 1809.43 1799.25 1789.03 1778.78 1768.49 1758.15 1747.76 1737.32 1726.82 1716.26 1705.64 1694.96 1697.75 1708.37 1718.92 1721.66 1711.17 1700.62 1703.55 1714.04 1724.45 1734.8 1732.07 1729.41 1739.84 1750.21 1760.53 1762.97 1752.73 1742.43 1745.09 1755.31 1765.47 1768.03 1757.95 1747.8 1737.6 1727.32 1716.97 1706.56 1709.63 1719.98 1730.25 1733.24 1723.04 1712.77 1702.42 1705.69 1695.33 1684.89 1688.36 1677.91 1667.37 1656.74 1646.03 1649.83 1639.09 1643.03 1647.03 1657.64 1653.7 1664.28 1660.48 1671.04 1681.51 1691.9 1702.2 1698.73 1709.02 1719.23 1715.97 1726.17 1736.29 1746.34 1743.37 1740.45 1750.58 1760.65 1770.65 1773.33 1763.41 1753.42 1756.32 1766.22 1776.06 1785.83 1783.19 1780.59 1778.06 1775.57 1773.15 1770.79 1781 1791.17 1801.31 1803.42 1793.37 1783.29 1785.63 1795.63 1805.59 1815.51 1813.43 1811.4 1821.47 1831.52 1841.54 1843.29 1833.36 1823.41 1825.39 1835.24 1845.07 1846.91 1837.18 1827.43 1817.64 1807.81 1797.94 1788.02 1790.48 1800.31 1810.09 1812.41 1802.72 1792.98 1795.54 1805.19 1814.79 1824.33 1822.05 1819.82 1829.51 1839.17 1848.79 1850.72 1841.2 1831.64 1833.82 1843.27 1852.69 1854.7 1845.39 1836.04 1826.65 1817.21 1807.71 1798.15 1788.53 1778.85 1769.09 1759.27 1749.37 1739.4 1729.35 1732.59 1722.54 1712.41 1715.86 1705.72 1695.49 1685.18 1674.77 1678.57 1668.15 1672.08 1661.63 1651.1 1655.23 1665.7 1676.07 1680.12 1669.82 1659.42 1663.68 1674 1684.23 1694.37 1690.33 1686.35 1682.43 1692.69 1688.91 1699.15 1709.3 1712.94 1702.86 1706.64 1696.54 1700.44 1704.41 1714.35 1710.46 1720.39 1716.64 1726.55 1722.93 1719.37 1729.35 1725.92 1735.89 1745.79 1742.57 1752.46 1762.27 1772.01 1781.68 1784.57 1774.99 1765.33 1755.6 1758.79 1749.06 1739.25 1742.65 1732.84 1736.38 1746.11 1755.76 1752.39 1762.03 1771.6 1768.44 1778.01 1787.5 1790.48 1781.08 1784.19 1774.8 1765.32 1768.66 1759.19 1749.62 1739.97 1730.23 1733.95 1724.2 1728.05 1718.29 1708.42 1698.46 1688.41 1678.25 1668 1657.65 1647.19 1636.64 1625.99 1615.24 1604.39 1593.44 1582.39 1571.24 1559.99 1548.63 1553.77 1542.38 1547.66 1553.03 1564.29 1558.99 1570.21 1565.06 1576.25 1587.33 1598.32 1609.2 1614.09 1603.27 1592.35 1581.33 1586.51 1575.45 1580.79 1569.7 1558.5 1547.21 1535.8 1524.3 1512.69 1518.54 1530.08 1541.52 1547.35 1535.98 1524.5 1530.6 1542 1553.3 1564.5 1558.61 1552.85 1564.08 1575.2 1586.22 1591.76 1580.82 1569.77 1575.58 1586.55 1597.42 1603.2 1592.41 1581.52 1570.51 1559.39 1548.17 1536.84 1525.4 1513.85 1502.2 1490.45 1478.6 1466.64 1454.58 1442.42 1449.5 1461.57 1473.55 1480.75 1468.87 1456.9 1464.68 1476.55 1488.31 1499.97 1492.52 1485.42 1497.19 1508.86 1520.43 1527.23 1515.77 1504.19 1511.53 1522.99 1534.35 1541.83 1530.61 1519.28 1507.84 1496.3 1484.65 1472.9 1481.56 1493.21 1504.75 1513.63 1502.19 1490.62 1478.93 1488.36 1476.59 1486.23 1474.34 1462.31 1450.15 1437.86 1425.43 1412.88 1422.53 1409.84 1419.35 1406.52 1393.56 1380.49 1367.3 1376.53 1363.21 1372.16 1358.7 1345.14 1353.75 1367.33 1380.81 1389.12 1375.62 1362.01 1369.92 1383.54 1397.06 1410.47 1402.51 1394.17 1385.5 1398.74 1389.74 1402.84 1415.81 1424.85 1411.85 1420.57 1407.43 1415.78 1423.76 1436.94 1428.94 1441.98 1433.59 1446.48 1437.72 1428.66 1441.39 1432.06 1444.63 1435.09 1447.52 1457.08 1466.45 1453.99 1463.09 1450.47 1459.25 1471.89 1484.39 1475.58 1487.93 1478.79 1469.4 1459.82 1471.99 1484.02 1495.9 1505.51 1493.61 1481.57 1490.98 1503.03 1514.94 1524.14 1512.21 1500.14 1508.99 1496.76 1505.25 1492.86 1480.34 1467.68 1454.89 1462.93 1450 1457.62 1444.55 1431.35 1418.04 1404.62 1391.08 1377.44 1384.56 1398.21 1411.76 1418.49 1404.93 1391.26 1397.54 1383.75 1389.59 1375.69 1381.1 1367.1 1372.09 1357.98 1362.55 1376.66 1390.68 1386.1 1400.02 1395.01 1408.82 1403.39 1417.09 1411.22 1424.8 1438.26 1431.95 1425.2 1438.53 1451.74 1464.83 1471.61 1458.51 1445.29 1451.62 1464.85 1477.96 1483.88 1470.76 1457.51 1444.15 1430.67 1436.12 1422.53 1427.55 1413.83 1418.43 1404.61 1408.79 1394.86 1380.83 1366.71 1352.5 1356.27 1341.97 1345.35 1330.97 1316.51 1319.51 1333.97 1348.36 1362.67 1359.65 1373.87 1370.48 1384.61 1398.64 1402.04 1388 1391.02 1376.89 1379.54 1365.32 1351 1336.61 1322.14 1307.61 1309.89 1295.28 1280.61 1282.56 1267.82 1269.44 1284.17 1298.85 1297.23 1311.84 1326.39 1324.44 1338.91 1353.3 1355.26 1340.86 1342.49 1328.01 1313.46 1314.75 1300.13 1285.45 1270.72 1255.92 1241.08 1226.2 1211.27 1212.2 1227.13 1242.02 1242.63 1227.74 1212.81 1213.16 1228.08 1242.97 1257.82 1257.47 1256.86 1271.65 1286.39 1301.08 1301.69 1287.01 1272.27 1272.61 1287.35 1302.04 1316.66 1316.31 1315.69 1330.25 1329.3 1343.78 1358.18 1356.89 1371.21 1369.58 1367.62 1381.85 1395.99 1393.68 1407.73 1405.07 1419.02 1415.98 1412.58 1426.42 1422.62 1436.35 1432.15 1445.77 1441.15 1454.65 1449.61 1462.98 1476.24 1489.37 1494.43 1481.29 1468.03 1472.66 1459.27 1463.48 1449.97 1453.78 1440.15 1443.57 1429.83 1432.86 1446.61 1460.24 1457.2 1470.72 1467.29 1480.69 1476.87 1490.15 1485.93 1499.07 1512.1 1507.45 1502.38 1496.88 1490.95 1484.59 1477.79 1470.57 1483.39 1475.74 1488.41 1500.95 1513.36 1525.63 1517.5 1529.61 1521.08 1533.03 1541.57 1549.73 1537.75 1545.48 1533.34 1521.06 1508.64 1496.08 1503.34 1490.63 1497.44 1503.82 1516.55 1510.16 1522.74 1515.91 1528.34 1540.64 1552.79 1564.8 1557.48 1569.33 1561.56 1553.39 1544.83 1535.92 1526.71 1517.26 1507.65 1497.98 1509.59 1500 1511.51 1522.88 1534.12 1524.95 1516.17 1527.48 1538.68 1549.77 1558.18 1547.22 1536.15 1545.23 1556.2 1567.05 1577.77 1569.02 1560.75 1552.96 1545.6 1538.6 1531.89 1543.24 1554.49 1565.64 1572.06 1561.02 1549.86 1556.74 1567.79 1578.73 1589.56 1583.01 1576.67 1587.6 1598.41 1609.12 1615.18 1604.56 1593.84 1600.29 1610.91 1621.42 1627.89 1617.5 1607 1596.4 1585.69 1574.89 1563.97 1571.62 1582.39 1593.05 1600.86 1590.36 1579.75 1588.36 1598.83 1609.17 1619.4 1611.26 1603.6 1614.06 1624.41 1634.65 1641.81 1631.73 1621.54 1629.52 1639.53 1649.43 1659.22 1651.78 1644.8 1638.17 1631.82 1625.68 1619.71 1613.88 1608.18 1602.6 1597.13 1591.77 1602.65 1597.46 1608.3 1619.05 1629.69 1624.8 1619.98 1630.67 1641.25 1651.72 1656.32 1645.92 1635.41 1640.23 1650.66 1660.99 1665.73 1655.48 1645.12 1634.66 1624.1 1613.43 1618.64 1607.94 1613.33 1618.83 1629.37 1623.95 1634.47 1629.23 1639.72 1650.1 1660.38 1670.55 1675.46 1665.37 1655.18 1644.87 1650.13 1639.8 1645.25 1634.91 1624.45 1630.19 1640.56 1650.82 1656.52 1646.35 1636.07 1642.11 1652.29 1662.36 1672.32 1666.58 1660.97 1655.49 1665.62 1660.35 1670.45 1680.46 1690.35 1685.44 1680.62 1675.88 1671.22 1666.63 1662.1 1672.38 1682.56 1692.64 1696.93 1686.93 1676.83 1681.34 1691.36 1701.28 1711.1 1706.83 1702.62 1712.5 1722.28 1731.97 1735.93 1726.33 1716.63 1720.82 1730.44 1739.95 1744.03 1734.6 1725.07 1715.44 1705.7 1695.87 1685.93 1690.58 1700.44 1710.19 1714.75 1705.08 1695.31 1700.13 1709.81 1719.39 1728.85 1724.31 1719.84 1729.38 1738.82 1748.16 1752.35 1743.11 1733.76 1738.21 1747.46 1756.61 1760.94 1751.89 1742.74 1733.48 1724.11 1714.63 1705.05 1695.35 1685.55 1675.64 1680.94 1671.01 1676.52 1682.16 1691.9 1686.35 1696.07 1690.76 1700.46 1710.06 1719.55 1728.92 1733.84 1724.57 1715.18 1705.68 1711.02 1701.51 1707.09 1697.58 1687.95 1678.22 1668.37 1658.41 1648.35 1654.83 1664.77 1674.59 1681.1 1671.43 1661.66 1668.91 1678.5 1687.98 1697.37 1690.67 1684.31 1693.93 1703.43 1712.82 1718.75 1709.49 1700.14 1706.66 1715.85 1724.94 1733.92 1727.89 1722.1 1716.49 1725.77 1720.41 1729.7 1738.87 1747.92 1743.01 1738.19 1747.35 1756.41 1765.35 1769.84 1761.01 1752.06 1756.87 1765.71 1774.43 1779.12 1770.51 1761.78 1752.95 1744 1734.94 1740.32 1731.27 1736.93 1742.8 1751.58 1745.85 1754.67 1749.27 1758.1 1766.81 1775.42 1783.91 1788.81 1780.44 1771.97 1763.37 1768.81 1760.25 1766.07 1757.57 1748.97 1740.28 1731.48 1722.59 1713.6 1704.52 1695.33 1686.05 1676.66 1667.16 1657.56 1647.84 1638 1628.04 1617.96 1607.74 1597.39 1586.91 1576.29 1565.53 1554.62 1543.58 1532.39 1521.06 1530.71 1519.25 1528.86 1538.32 1549.79 1540.32 1551.62 1542.01 1553.17 1564.19 1575.05 1585.76 1595.31 1584.62 1573.78 1562.78 1572.26 1561.1 1570.36 1559.03 1547.55 1556.47 1567.97 1579.31 1587.92 1576.57 1565.05 1573.24 1584.77 1596.15 1607.37 1599.13 1590.5 1581.53 1592.54 1583.26 1594.11 1604.79 1614.08 1603.39 1612.39 1601.53 1610.17 1618.42 1629.32 1621.05 1631.77 1623.1 1633.64 1624.61 1615.31 1605.84 1596.32 1606.73 1617 1627.11 1636.49 1626.43 1616.21 1625.67 1635.87 1645.9 1655.77 1646.39 1637.09 1646.92 1656.62 1666.18 1675.19 1665.74 1656.14 1665.48 1675.02 1684.4 1693.61 1684.26 1674.74 1665.06 1655.2 1645.17 1634.97 1644.01 1654.21 1664.25 1672.97 1662.93 1652.71 1642.32 1650.62 1640.05 1647.92 1637.17 1626.26 1615.19 1603.96 1592.57 1581.02 1588.37 1576.66 1583.56 1571.69 1559.67 1547.5 1535.19 1541.6 1529.14 1535.1 1522.5 1509.76 1515.26 1528.01 1540.63 1545.72 1533.1 1520.34 1524.99 1537.76 1550.39 1562.88 1558.2 1553.1 1547.57 1559.9 1553.92 1566.1 1578.13 1584.13 1572.09 1577.64 1565.44 1570.55 1575.23 1587.44 1582.75 1594.81 1589.69 1601.59 1596.02 1590.01 1601.75 1595.28 1606.85 1599.93 1611.33 1618.27 1624.75 1613.33 1619.35 1607.76 1613.33 1624.93 1636.37 1630.78 1642.05 1636.01 1629.52 1622.58 1633.66 1644.59 1655.34 1662.32 1651.55 1640.62 1647.12 1658.06 1668.84 1674.9 1664.12 1653.17 1658.77 1647.65 1652.8 1641.51 1630.07 1618.47 1606.71 1611.41 1599.5 1603.77 1591.7 1579.49 1567.14 1554.64 1542 1529.24 1516.33 1503.3 1507.13 1493.97 1497.41 1484.12 1487.17 1473.76 1476.45 1462.92 1449.28 1435.53 1421.68 1424 1410.04 1412.02 1397.96 1383.82 1385.45 1399.6 1413.65 1414.95 1400.9 1386.75 1372.51 1373.46 1359.13 1344.73 1345.34 1330.86 1331.21 1345.69 1360.1 1359.75 1374.07 1388.32 1387.7 1401.85 1415.91 1416.53 1402.47 1402.82 1388.67 1374.42 1416.88 1430.84 1430.49 1429.87 1428.92 1427.61 1425.97 1439.83 1437.85 1451.6 1465.24 1467.23 1453.58 1455.23 1441.47 1442.78 1443.73 1457.49 1456.53 1470.18 1468.88 1482.41 1480.76 1478.78 1492.19 1489.86 1503.15 1500.46 1513.63 1510.57 1523.61 1520.17 1533.07 1545.85 1558.49 1561.94 1549.3 1536.52 1539.59 1526.68 1529.37 1516.33 1518.66 1505.49 1507.48 1494.18 1495.83 1509.13 1522.31 1520.66 1533.71 1531.71 1544.63 1542.29 1555.07 1552.37 1565.02 1577.53 1574.45 1570.99 1583.35 1595.57 1607.64 1611.11 1599.03 1586.81 1589.89 1602.12 1614.19 1616.91 1604.83 1592.6 1580.23 1567.72 1570.07 1557.42 1559.42 1546.63 1548.29 1535.36 1536.68 1523.63 1510.44 1497.14 1483.72 1484.68 1471.14 1471.77 1458.12 1444.36 1444.71 1458.47 1472.12 1485.66 1485.31 1498.73 1498.1 1511.41 1524.59 1525.22 1512.03 1512.39 1499.08 1525.57 1538.63 1538.27 1537.64 1550.57 1549.61 1562.4 1561.08 1573.74 1572.07 1584.59 1582.58 1594.96 1607.18 1619.27 1621.27 1609.19 1596.96 1598.63 1586.25 1587.57 1575.06 1576.02 1563.36 1563.99 1551.2 1551.55 1564.35 1577.01 1576.65 1589.17 1588.54 1600.92 1599.95 1612.18 1610.86 1622.94 1624.27 1625.24 1613.15 1613.78 1601.55 1601.91 1589.53 1614.14 1626.22 1625.87 1637.8 1637.17 1636.2 1634.87 1633.21 1631.2 1628.84 1626.12 1623.03 1619.56 1615.69 1627.45 1623.17 1634.78 1646.22 1657.51 1668.64 1663.92 1674.88 1669.72 1680.51 1685.68 1690.41 1679.61 1683.91 1672.94 1661.81 1650.52 1639.06 1642.94 1631.33 1634.8 1637.89 1649.51 1646.42 1657.88 1654.4 1665.69 1676.83 1687.8 1698.6 1694.71 1705.34 1701.04 1696.3 1691.14 1685.52 1679.45 1672.92 1665.94 1658.5 1668.91 1661.02 1671.25 1681.31 1691.2 1682.85 1674.11 1683.8 1693.32 1702.66 1711.42 1702.07 1692.55 1700.91 1710.45 1719.81 1727.77 1718.4 1708.85 1699.13 1689.23 1679.16 1686.62 1676.36 1683.36 1689.89 1700.16 1693.62 1703.71 1696.7 1706.61 1716.34 1725.9 1735.28 1742.32 1732.94 1723.37 1713.63 1720.19 1710.26 1716.35 1706.25 1695.97 1701.59 1711.87 1721.98 1727.16 1717.05 1706.76 1711.5 1721.79 1731.9 1741.84 1737.1 1731.91 1726.28 1736.03 1729.94 1739.51 1748.9 1755.01 1745.61 1751.25 1741.67 1746.86 1751.6 1761.18 1756.44 1765.84 1760.65 1769.87 1764.22 1758.11 1751.53 1744.48 1736.96 1728.99 1720.59 1711.83 1702.8 1693.62 1684.49 1675.62 1684.93 1694.12 1703.2 1711.58 1702.68 1693.66 1702.68 1711.59 1720.36 1728.98 1720.36 1712.17 1721.04 1729.81 1738.47 1745.99 1737.55 1729.01 1737.46 1745.81 1754.03 1762.49 1754.43 1746.22 1737.85 1729.33 1720.65 1711.81 1720.83 1729.65 1738.29 1747.04 1738.4 1729.59 1737.99 1746.81 1755.45 1763.91 1755.5 1746.76 1755.06 1763.2 1771.17 1779.8 1771.88 1763.78 1772.18 1780.28 1788.19 1795.92 1787.55 1778.97 1770.42 1762.14 1754.33 1747.05 1755.53 1763.91 1772.21 1778.77 1770.71 1762.57 1770.14 1778.04 1785.84 1793.55 1786.73 1780.4 1774.46 1782.76 1777.27 1785.61 1793.84 1799.02 1790.94 1796.51 1788.51 1794.61 1801.16 1808.69 1802.39 1810.08 1804.41 1812.21 1806.99 1801.96 1797.06 1792.28 1787.61 1783.05 1778.57 1774.19 1769.88 1765.66 1761.49 1757.39 1753.35 1749.37 1745.44 1741.56 1737.73 1747.3 1743.61 1753.18 1762.66 1772.05 1781.35 1778.05 1787.36 1796.58 1793.51 1802.74 1799.81 1796.92 1794.08 1791.28 1800.81 1810.27 1819.68 1822.19 1812.88 1803.51 1806.26 1815.54 1824.74 1833.89 1831.43 1829.02 1838.31 1847.55 1856.75 1858.83 1849.75 1840.62 1842.97 1851.99 1860.96 1863.13 1854.27 1845.35 1836.38 1827.34 1818.23 1809.06 1811.89 1820.97 1829.98 1832.65 1823.75 1814.77 1805.71 1808.73 1799.69 1790.56 1793.81 1784.69 1775.48 1766.18 1756.79 1760.45 1751.05 1754.84 1758.68 1767.9 1764.15 1773.36 1769.75 1778.96 1788.07 1797.1 1806.04 1802.84 1811.79 1820.65 1817.69 1826.57 1835.37 1844.09 1841.48 1838.91 1847.78 1856.58 1865.32 1867.56 1858.93 1850.24 1852.74 1861.31 1869.82 1878.27 1876.13 1874.01 1871.93 1869.89 1867.88 1865.9 1863.97 1862.07 1860.21 1858.39 1856.62 1854.89 1853.2 1851.56 1861.58 1871.6 1881.64 1882.96 1873.03 1863.12 1864.69 1874.5 1884.32 1894.16 1892.92 1891.71 1901.82 1911.98 1922.21 1923.06 1912.95 1902.91 1904.03 1913.95 1923.94 1924.84 1914.98 1905.18 1895.43 1885.71 1876.01 1866.32 1867.98 1877.56 1887.14 1888.61 1879.15 1869.68 1871.43 1880.77 1890.11 1899.46 1898.08 1896.74 1906.37 1916.04 1925.77 1926.72 1917.12 1907.58 1908.83 1918.23 1927.7 1937.27 1936.43 1935.61 1934.81 1934.04 1933.28 1932.55 1943.05 1953.75 1964.5 1964.88 1954.25 1943.67 1944.3 1954.76 1965.27 1965.67 1955.28 1944.95 1945.62 1955.82 1966.08 1966.49 1956.37 1946.3 1947 1956.93 1966.92 1967.36 1957.5 1947.72 1938.12 1928.7 1919.37 1910.1 1900.87 1891.65 1882.43 1873.21 1875.03 1884.13 1893.22 1894.82 1885.86 1876.88 1878.77 1887.63 1896.46 1905.28 1903.78 1902.31 1911.4 1920.53 1929.72 1930.76 1921.72 1912.74 1914.1 1922.94 1931.83 1932.92 1924.18 1915.48 1906.81 1898.12 1889.42 1880.7 1882.65 1891.25 1899.82 1901.55 1893.11 1884.64 1886.66 1895 1903.3 1911.57 1909.95 1908.36 1916.9 1925.45 1934.03 1935.17 1926.74 1918.34 1919.81 1928.05 1936.33 1944.68 1943.68 1942.71 1941.75 1940.82 1939.9 1939 1948.45 1958.09 1967.8 1968.25 1958.69 1949.19 1949.96 1959.3 1968.71 1969.18 1959.92 1950.74 1951.53 1960.55 1969.66 1970.15 1961.2 1952.34 1953.17 1961.86 1970.64 1971.15 1962.53 1954.02 1945.69 1937.51 1929.39 1921.3 1913.21 1905.08 1896.92 1888.71 1880.45 1872.12 1863.73 1855.27 1846.73 1838.11 1829.42 1832.31 1823.64 1814.88 1818.02 1809.27 1800.43 1791.5 1782.48 1786.05 1777.02 1780.73 1771.71 1762.58 1766.53 1775.56 1784.49 1788.3 1779.47 1770.53 1774.59 1783.43 1792.16 1800.78 1797.03 1793.32 1789.66 1798.49 1794.97 1803.81 1812.54 1815.86 1807.22 1810.68 1802.05 1805.65 1809.31 1817.73 1814.18 1822.61 1819.21 1827.65 1824.4 1821.19 1829.74 1826.67 1835.24 1843.72 1840.9 1849.4 1857.83 1866.18 1874.45 1876.81 1868.66 1860.42 1852.11 1854.85 1846.57 1838.2 1841.2 1832.84 1835.99 1844.23 1852.38 1849.46 1857.63 1865.71 1863.05 1871.16 1879.2 1881.61 1873.7 1876.27 1868.4 1860.43 1863.27 1855.33 1847.3 1839.17 1830.94 1834.27 1826.05 1829.53 1821.33 1813.01 1804.6 1796.08 1787.45 1778.72 1782.92 1791.54 1800.06 1804.11 1795.7 1787.19 1791.55 1799.95 1808.24 1816.42 1812.41 1808.47 1816.77 1824.97 1833.07 1836.66 1828.68 1820.6 1824.49 1832.45 1840.31 1844.02 1836.29 1828.45 1820.5 1812.45 1804.28 1796 1800.55 1808.7 1816.75 1821.14 1813.23 1805.2 1809.96 1817.86 1825.64 1833.3 1828.94 1824.68 1832.5 1840.21 1847.81 1851.68 1844.21 1836.63 1840.86 1848.3 1855.63 1862.84 1859.03 1855.3 1851.65 1848.06 1844.53 1841.06 1837.64 1845.64 1842.38 1850.4 1858.32 1866.14 1873.86 1871.12 1878.87 1886.53 1884.06 1891.76 1889.44 1887.15 1884.89 1882.65 1890.79 1898.87 1906.89 1908.73 1900.84 1892.9 1895.03 1902.84 1910.59 1918.28 1916.57 1914.87 1922.82 1930.76 1938.71 1939.93 1932.14 1924.37 1925.93 1933.55 1941.17 1942.44 1934.98 1927.52 1920.03 1912.48 1904.87 1897.19 1899.37 1906.92 1914.39 1916.32 1908.99 1901.59 1894.1 1896.47 1889.03 1881.49 1884.15 1876.65 1869.05 1861.35 1853.54 1856.73 1848.95 1852.3 1855.7 1863.23 1859.96 1867.51 1864.41 1871.99 1879.46 1886.84 1894.11 1891.56 1898.87 1906.08 1903.82 1911.09 1918.28 1925.39 1923.58 1921.79 1929.13 1936.43 1943.72 1945.03 1937.91 1930.77 1932.42 1939.4 1946.35 1953.32 1952.18 1951.05 1949.94 1948.85 1947.78 1946.72 1954.88 1963.22 1971.66 1972.18 1963.91 1955.75 1956.64 1964.62 1972.71 1973.25 1965.35 1957.55 1958.48 1966.08 1973.8 1974.36 1966.83 1959.42 1960.38 1967.6 1974.93 1975.5 1968.38 1961.36 1954.49 1947.7 1940.92 1934.1 1927.22 1920.26 1913.21 1915.36 1908.37 1901.29 1903.74 1896.7 1889.56 1882.31 1874.96 1877.99 1870.66 1873.86 1866.57 1859.16 1862.68 1869.96 1877.12 1880.44 1873.41 1866.28 1869.95 1876.94 1883.82 1890.59 1887.35 1884.17 1881.05 1888.14 1885.2 1892.32 1899.32 1901.98 1895.11 1897.96 1891.12 1894.15 1897.25 1903.79 1900.85 1907.43 1904.68 1911.3 1908.75 1906.23 1913.03 1910.69 1917.53 1924.29 1922.26 1929.07 1935.8 1942.46 1949.07 1950.45 1944.01 1937.52 1930.95 1932.85 1926.34 1919.73 1921.96 1915.41 1917.82 1924.22 1930.53 1928.42 1934.77 1941.03 1939.26 1945.59 1951.86 1953.29 1947.19 1948.82 1942.82 1936.73 1938.71 1932.67 1926.52 1920.27 1913.9 1916.55 1910.22 1913.07 1906.79 1900.4 1893.89 1887.27 1880.54 1873.69 1866.74 1859.66 1852.48 1845.18 1837.77 1830.24 1822.6 1814.85 1819.91 1827.5 1834.98 1839.89 1832.59 1825.19 1817.68 1823.5 1816.14 1822.68 1815.51 1808.25 1800.9 1793.45 1785.89 1778.22 1786.63 1794.13 1801.5 1809.78 1802.54 1795.13 1803.47 1810.84 1818.03 1825.05 1816.88 1808.73 1815.85 1822.85 1829.75 1837.29 1830.62 1823.82 1831.9 1838.58 1845.11 1852.9 1846.44 1839.81 1833 1826.01 1818.83 1811.47 1803.93 1796.2 1788.29 1780.19 1771.91 1763.44 1754.8 1745.97 1753.49 1762.33 1770.99 1778.06 1769.4 1760.56 1767.14 1775.99 1784.65 1793.13 1786.53 1779.45 1787.74 1795.84 1803.76 1810.84 1802.92 1794.82 1801.42 1809.52 1817.43 1823.55 1815.64 1807.54 1799.25 1790.77 1782.11 1773.26 1778.9 1787.75 1796.42 1801.61 1792.94 1784.09 1775.06 1779.8 1770.58 1774.9 1765.5 1755.91 1746.15 1736.21 1726.1 1715.81 1719.7 1709.24 1712.73 1702.09 1691.29 1680.31 1669.18 1672.27 1660.97 1663.7 1652.23 1640.61 1642.97 1654.59 1666.06 1668.07 1656.61 1644.98 1646.65 1658.28 1669.74 1681.05 1679.38 1677.36 1675 1686.14 1683.41 1694.39 1705.19 1707.92 1697.11 1699.48 1688.5 1690.52 1692.19 1703.17 1701.49 1712.3 1710.29 1720.92 1718.56 1715.83 1726.3 1723.19 1733.48 1729.99 1740.11 1743.6 1746.7 1736.59 1739.32 1729.02 1731.39 1741.68 1751.8 1749.43 1759.37 1756.64 1753.54 1750.05 1759.81 1769.39 1778.79 1782.28 1772.88 1763.3 1766.4 1775.98 1785.38 1788.1 1778.71 1769.13 1771.49 1761.73 1763.75 1753.81 1743.7 1733.4 1722.94 1724.61 1713.97 1715.3 1704.49 1693.52 1682.38 1671.07 1659.6 1647.98 1648.95 1660.58 1672.04 1672.68 1661.21 1649.58 1649.94 1638.16 1661.57 1673.03 1684.34 1683.98 1683.35 1694.49 1705.47 1716.27 1716.91 1706.1 1695.12 1695.48 1706.46 1717.27 1727.9 1727.55 1726.91 1725.94 1736.41 1735.08 1745.37 1755.48 1765.42 1775.18 1773.5 1783.08 1781.07 1790.46 1792.47 1794.14 1784.75 1786.07 1776.5 1766.75 1756.81 1746.7 1747.67 1737.38 1738.01 1738.37 1748.66 1748.3 1758.42 1757.78 1767.72 1777.47 1787.04 1796.43 1795.46 1804.66 1803.34 1801.68 1799.67 1797.31 1794.59 1791.49 1788.01 1784.11 1793.15 1788.84 1797.69 1806.35 1814.82 1810.08 1804.9 1813.19 1821.29 1829.19 1834.37 1826.47 1818.37 1823.11 1831.2 1839.1 1846.81 1842.09 1836.91 1831.27 1825.16 1818.56 1811.48 1819.03 1826.39 1833.56 1840.63 1833.46 1826.11 1832.7 1840.04 1847.2 1854.18 1847.61 1840.55 1847.35 1853.97 1860.4 1867.45 1861.02 1854.41 1860.96 1867.56 1873.98 1880 1873.6 1867.02 1860.25 1853.29 1846.14 1838.8 1844.44 1851.77 1858.91 1864.06 1856.93 1849.6 1854.32 1861.63 1868.75 1875.67 1870.99 1865.85 1872.6 1879.16 1885.53 1890.61 1884.26 1877.72 1882.39 1888.92 1895.24 1899.44 1893.14 1886.63 1879.92 1873.01 1865.9 1858.59 1851.09 1843.39 1835.49 1827.4 1819.12 1810.65 1801.99 1805.88 1797.04 1800.52 1803.62 1812.46 1809.36 1818.02 1814.54 1823.01 1831.28 1839.36 1847.25 1850.71 1842.83 1834.75 1826.48 1829.56 1821.11 1823.82 1815.17 1806.34 1808.69 1817.52 1826.16 1828.16 1819.52 1810.7 1812.36 1821.19 1829.82 1838.27 1836.61 1834.62 1832.27 1840.53 1837.83 1845.9 1853.78 1856.47 1848.6 1850.94 1842.87 1844.87 1846.52 1854.57 1852.92 1860.79 1858.8 1866.47 1864.15 1861.46 1858.4 1854.95 1862.45 1869.75 1876.85 1880.28 1873.19 1865.89 1868.95 1876.23 1883.32 1890.2 1887.17 1883.75 1890.45 1896.94 1903.23 1906.62 1900.34 1893.86 1896.88 1903.35 1909.62 1912.25 1905.99 1899.53 1892.86 1885.98 1878.9 1871.63 1873.94 1881.22 1888.29 1890.24 1883.18 1875.92 1868.45 1870.09 1862.43 1863.73 1855.88 1847.83 1839.58 1831.14 1822.5 1813.68 1814.64 1805.63 1806.26 1797.06 1787.67 1778.1 1768.35 1768.71 1758.77 1778.46 1788.03 1797.42 1806.62 1815.63 1815.27 1824.1 1823.47 1832.1 1832.73 1833.08 1824.45 1841.52 1841.17 1840.54 1848.79 1856.84 1864.69 1865.31 1857.46 1849.41 1849.76 1857.81 1865.66 1873.31 1872.96 1872.34 1871.39 1878.85 1877.55 1884.81 1891.87 1898.72 1897.1 1895.15 1901.81 1908.27 1914.52 1916.44 1910.21 1903.76 1905.37 1911.81 1918.04 1919.31 1913.08 1906.64 1900 1893.15 1886.1 1887.05 1879.8 1880.41 1880.76 1888.01 1887.66 1894.71 1894.1 1900.94 1907.58 1914.01 1920.23 1920.83 1914.61 1908.19 1901.55 1901.89 1895.05 1908.53 1914.95 1921.17 1927.18 1926.84 1926.24 1925.32 1924.06 1922.47 1920.55 1918.29 1915.68 1912.69 1909.32 1905.55 1901.36 1896.76 1891.71 1886.21 1880.21 1873.69 1866.65 1859.18 1851.48 1843.85 1836.55 1829.77 1836.77 1830.77 1837.95 1845.05 1852.04 1847.09 1842.35 1849.61 1856.76 1863.79 1868.04 1861.16 1854.18 1858.94 1865.73 1872.42 1877.01 1870.53 1863.95 1857.29 1850.53 1843.69 1849.9 1843.27 1850.29 1857.72 1863.83 1856.64 1862.89 1856.46 1862.93 1869.33 1875.64 1881.87 1887.12 1881.18 1875.16 1869.07 1875.71 1869.82 1877.07 1871.26 1865.3 1872.72 1878.61 1884.33 1891.31 1885.62 1879.75 1886.26 1892.12 1897.8 1903.29 1896.81 1889.88 1882.74 1888.28 1881.5 1887.21 1892.84 1898.39 1892.99 1888.02 1883.39 1879.01 1874.8 1870.72 1877.52 1884.22 1890.8 1894.4 1887.98 1881.45 1885.48 1891.85 1898.1 1904.24 1900.71 1897.26 1903.62 1909.85 1915.97 1918.94 1912.98 1906.9 1910.26 1916.17 1921.96 1925.06 1919.45 1913.72 1907.87 1901.91 1895.85 1889.67 1894.07 1900.03 1905.89 1910.09 1904.47 1898.77 1903.87 1909.28 1914.61 1919.85 1915.61 1911.64 1917.29 1922.82 1928.25 1931.56 1926.35 1921.03 1925.01 1930.08 1935.05 1938.8 1934.11 1929.33 1924.47 1919.53 1914.52 1909.44 1904.28 1899.04 1893.71 1900.51 1895.27 1902.14 1908.6 1913.72 1907.29 1912.27 1905.61 1910.59 1915.46 1920.24 1924.92 1930.7 1926.29 1921.75 1917.08 1923.42 1918.66 1924.55 1919.63 1914.51 1909.22 1903.74 1898.08 1892.23 1897.71 1903.52 1909.15 1914.07 1908.49 1902.72 1907.29 1913.02 1918.56 1923.92 1919.48 1914.59 1919.86 1924.95 1929.86 1934.61 1929.74 1924.7 1929.08 1934.07 1938.87 1943.5 1939.3 1934.58 1929.29 1933.84 1927.99 1932.39 1936.64 1940.73 1935.01 1929.53 1934.06 1938.51 1942.89 1947.38 1943.34 1939.22 1944.69 1948.53 1952.26 1957.36 1953.85 1950.19 1946.37 1942.38 1938.21 1943.47 1939.12 1943.8 1947.95 1952.23 1948.13 1952.27 1947.63 1951.6 1955.37 1958.95 1962.35 1966.9 1963.54 1959.98 1956.22 1960.24 1956.32 1959.88 1955.85 1951.65 1947.28 1942.72 1937.98 1933.06 1927.95 1922.64 1917.14 1911.45 1915.19 1920.86 1926.33 1929.64 1924.2 1918.55 1921.52 1927.16 1932.58 1937.78 1934.87 1931.59 1936.65 1941.52 1946.19 1949.31 1944.7 1939.89 1942.77 1947.54 1952.1 1954.57 1950.05 1945.3 1940.34 1935.15 1929.75 1924.13 1926.38 1931.99 1937.38 1939.28 1933.89 1928.29 1929.87 1935.46 1940.84 1946 1944.44 1942.56 1947.5 1952.23 1956.72 1958.57 1954.09 1949.38 1950.93 1955.63 1960.1 1964.33 1962.81 1960.99 1958.87 1956.45 1953.73 1950.67 1954.97 1959.09 1963.03 1965.82 1961.98 1957.95 1960.6 1964.55 1968.31 1971.87 1969.48 1966.78 1963.72 1967.39 1963.96 1967.49 1970.83 1973.96 1970.05 1965.56 1960.72 1955.89 1951.34 1947.18 1943.4 1939.92 1936.66 1933.55 1930.55 1927.63 1924.78 1921.98 1919.24 1925.29 1922.76 1928.85 1934.84 1940.72 1946.49 1944.64 1950.47 1956.21 1954.74 1960.61 1959.35 1958.1 1956.88 1955.68 1962.35 1969.17 1976.1 1976.7 1969.98 1963.37 1964.4 1970.8 1977.31 1977.94 1971.65 1965.45 1966.51 1972.5 1978.59 1979.24 1973.38 1967.6 1961.9 1963.21 1957.71 1952.14 1953.85 1948.36 1942.77 1937.05 1931.23 1933.65 1927.87 1930.5 1933.19 1938.62 1936.11 1941.6 1939.3 1944.85 1950.27 1955.58 1960.78 1959.23 1964.54 1969.85 1968.71 1974.28 1979.92 1980.61 1975.2 1976.14 1971 1965.9 1967.29 1962.36 1957.35 1952.22 1946.97 1949.13 1943.94 1946.32 1941.19 1935.93 1938.74 1943.81 1948.76 1951.26 1946.52 1941.65 1944.68 1949.33 1953.86 1958.27 1955.89 1953.58 1951.33 1956.22 1954.2 1959.14 1963.96 1965.6 1960.97 1962.83 1958.27 1960.38 1962.55 1966.7 1964.74 1968.96 1967.26 1971.59 1970.13 1968.7 1973.38 1972.18 1977.1 1982.05 1981.32 1982.8 1978.08 1979.08 1974.61 1975.85 1980.1 1984.36 1983.57 1985.17 1981.15 1977.13 1973.08 1974.6 1970.71 1972.51 1968.73 1964.82 1960.77 1956.59 1952.3 1947.9 1951.39 1955.5 1959.52 1962.71 1959.01 1955.22 1959.43 1962.88 1966.24 1969.51 1966.32 1963.43 1967.22 1970.88 1974.41 1976.44 1973.19 1969.82 1972.68 1975.73 1978.66 1981.12 1978.54 1975.84 1973.03 1970.12 1967.09 1963.97 1968.6 1971.49 1974.23 1978.32 1975.76 1973 1976.87 1979.57 1982.05 1984.31 1980.7 1976.83 1979.3 1981.64 1983.84 1986.76 1984.91 1982.89 1986.33 1988.12 1989.69 1991.08 1988.49 1985.95 1983.61 1981.5 1979.59 1977.83 1976.18 1979.77 1978.43 1982.22 1986 1986.85 1983.32 1984.47 1981.17 1982.65 1984.26 1986.99 1985.68 1988.69 1987.75 1989.71 1990.82 1988.43 1986.03 1987.99 1990.02 1992.05 1993.41 1991.77 1990.14 1992.37 1993.6 1994.85 1996.27 1995.38 1994.47 1993.48 1992.34 1990.96 1989.31 1987.39 1985.2 1982.77 1980.11 1977.23 1974.15 1970.87 1973.76 1970.36 1972.96 1975.25 1978.43 1976.26 1979.36 1976.96 1979.97 1982.77 1985.36 1987.72 1989.73 1987.47 1984.98 1982.27 1984.22 1981.43 1983.2 1980.32 1977.25 1973.98 1970.51 1966.84 1962.96 1965.03 1968.85 1972.44 1974.12 1970.58 1966.82 1968.32 1972.05 1975.54 1978.78 1977.42 1975.82 1978.99 1981.95 1984.7 1985.98 1983.35 1980.5 1981.78 1984.53 1987.04 1987.91 1985.5 1982.84 1979.9 1976.7 1973.24 1969.52 1965.54 1961.32 1956.85 1952.15 1947.23 1942.08 1936.71 1931.12 1932.04 1937.62 1942.98 1943.57 1938.21 1932.63 1932.97 1938.54 1943.9 1949.04 1948.71 1948.13 1953.05 1957.74 1962.2 1962.78 1958.32 1953.63 1953.96 1958.65 1963.1 1967.32 1967 1966.42 1970.4 1974.12 1977.57 1978.15 1974.69 1970.97 1971.3 1975.02 1978.48 1981.66 1981.32 1980.75 1983.65 1986.26 1988.58 1989.05 1986.78 1984.2 1984.54 1987.1 1989.34 1991.25 1991.01 1990.62 1990.05 1989.31 1988.38 1987.25 1985.87 1988.33 1986.81 1989.18 1991.32 1993.2 1991.74 1989.84 1991.68 1993.22 1994.46 1995.98 1994.87 1993.46 1994.78 1996.04 1997 1997.68 1996.87 1995.75 1994.32 1992.58 1990.57 1991.68 1989.57 1990.57 1991.35 1993.16 1992.53 1994.26 1993.55 1995.15 1996.46 1997.44 1998.14 1998.4 1997.8 1996.91 1995.73 1996.07 1994.74 1995.03 1993.61 1991.95 1992.39 1993.9 1995.2 1995.26 1994.1 1992.68 1992.86 1994.18 1995.31 1996.2 1996.26 1996.26 1996.24 1997.2 1997.15 1997.95 1998.53 1998.89 1998.82 1998.61 1998.27 1997.71 1996.82 1995.44 1996.22 1996.88 1997.5 1998.4 1997.96 1997.46 1998.24 1998.64 1998.98 1999.29 1999.03 1998.7 1998.96 1999.22 1999.45 1999.52 1999.32 1999.09 1999.16 1999.38 1999.56 1999.58 1999.38 1999.16 1998.87 1998.48 1997.96 1997.83 1997.14 1997.03 1996.96 1997.58 1997.7 1998.22 1998.38 1998.77 1999.1 1999.36 1999.57 1999.53 1999.29 1999 1998.64 1998.54 1998.1 1998.88 1999.21 1999.43 0.00032464 0.000494779 0.00126995 0.000961355 0.00135129 0.000146723 0.000267964 0.0005139 0.000305742 0.000287996 0.000164534 0.000125398 0.000231577 0.000382865 0.000661684 0.000412334 0.000879755 0.00101146 0.00126207 0.000186549 0.000190773 0.000187431 0.000675439 0.000983988 0.000997003 0.00123506 0.000739643 0.00093359 0.00112137 0.000801248 0.000233343 8.4706e-05 0.000186947 9.81362e-05 0.000225935 0.000292484 0.000246767 7.9956e-05 0.000168246 8.6093e-05 0.000199654 0.000274672 6.79123e-05 0.000137315 7.22992e-05 0.000164361 0.000239102 7.10987e-05 0.000165128 6.83223e-05 0.000155913 0.000969542 0.00068868 0.000229487 0.000148725 6.03461e-05 0.00011801 6.59002e-05 0.000142535 0.000202121 0.000868165 0.000918976 0.000740706 0.000142623 0.000724178 0.00109406 5.48656e-05 0.000104331 0.000270232 0.000125957 0.000126626 6.17631e-05 4.76269e-05 9.02346e-05 0.000180204 0.000410719 0.00019485 0.000638339 0.000277124 0.000109375 0.000117993 0.000416313 0.000140125 0.000120037 0.000427943 0.000947414 0.00286901 0.0045703 0.00137755 0.00171368 0.00581015 0.0295994 0.0405638 0.0136223 0.00387708 0.0979719 0.0975024 0.251077 0.608713 1.51445 3.81124 9.23728 23.2773 27.738 17.7643 11.9025 8.67265 7.49934 7.68716 8.86047 10.7463 13.4619 17.2249 22.2488 28.9031 37.7682 49.6882 65.8384 87.8113 117.707 158.202 212.542 284.365 377.241 493.796 634.472 796.231 971.921 1151.04 1321.99 1474.97 1603.99 1707.35 1786.69 1845.54 1888.06 1918.14 1939.1 1953.52 1963.34 1969.97 1974.41 1977.36 1979.31 1980.57 1981.39 1981.9 1982.21 1982.4 1982.5 1982.54 1982.56 1982.55 1982.53 1982.51 1982.49 1982.48 1982.46 1982.45 1982.45 1982.45 1982.46 1982.48 1982.5 1982.53 1982.57 1982.61 1982.66 1982.72 1982.78 1982.85 1982.92 1983 1983.09 1983.18 1983.28 1983.38 1983.49 1983.61 1983.73 1983.85 1983.98 1984.12 1984.26 1984.4 1984.55 1984.71 1984.86 1985.03 1985.19 1985.36 1985.54 1985.71 1985.89 1986.08 1986.26 1986.46 1986.65 1986.84 1987.04 1987.24 1987.45 1987.66 1987.86 1988.08 1988.29 1988.51 1988.73 1988.95 1989.17 1989.4 1989.63 1989.87 1990.11 1990.35 1990.6 1990.85 1991.12 1991.39 1991.67 1991.96 1992.25 1992.56 1992.88 1993.21 1993.56 1993.92 1994.3 1994.71 1995.15 1995.65 1996.2 1996.82 1997.5 1998.18 1998.79 1999.27 1999.58 1999.73 1999.79 1999.8 1999.82 1999.82 1999.83 1999.82 ) ; boundaryField { bottomEmptyFaces { type empty; } topEmptyFaces { type empty; } inlet { type calculated; value nonuniform List<scalar> 159 ( 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 2000 ) ; } outlet { type calculated; value nonuniform List<scalar> 60 ( 0.27195 0.27059 0.268304 0.264909 0.260418 0.254807 0.248249 0.240803 0.232594 0.223703 0.214224 0.204248 0.193873 0.183196 0.172316 0.161327 0.150321 0.139384 0.128598 0.118039 0.107773 0.0978645 0.0883655 0.0793233 0.0707766 0.0627569 0.0552884 0.0483878 0.042065 0.0363229 0.0311576 0.0265587 0.0225091 0.0189851 0.0159564 0.013386 0.0112307 0.00944191 0.00796703 0.00675173 0.00574365 0.00489331 0.0041638 0.00351991 0.0029495 0.00243364 0.00199245 0.0015437 0.000718768 0.00107901 0.000654911 0.000514517 0.000296455 0.00021291 0.00015418 9.1372e-05 0.27257 9.72962e-06 2.81956e-05 5.06183e-05 ) ; } walls { type calculated; value nonuniform List<scalar> 1732 ( 6.50551e-06 6.51254e-06 6.50361e-06 6.51126e-06 6.50292e-06 6.51097e-06 6.50315e-06 6.51154e-06 6.50413e-06 6.51271e-06 6.5056e-06 6.51428e-06 6.50749e-06 6.51621e-06 6.50974e-06 6.51849e-06 6.51238e-06 6.52111e-06 6.51526e-06 6.52402e-06 6.51842e-06 6.52718e-06 6.52177e-06 6.53047e-06 6.52519e-06 6.53375e-06 6.52855e-06 6.53697e-06 6.53185e-06 6.54008e-06 6.53503e-06 6.54307e-06 6.53809e-06 6.54593e-06 6.541e-06 6.54865e-06 6.54377e-06 6.55122e-06 6.54639e-06 6.55365e-06 6.54886e-06 6.55593e-06 6.55118e-06 6.55811e-06 6.55342e-06 6.56014e-06 6.55547e-06 6.56206e-06 6.55744e-06 6.56381e-06 6.55919e-06 6.56543e-06 6.56086e-06 6.56689e-06 6.5623e-06 6.56821e-06 6.56364e-06 6.56935e-06 6.56476e-06 6.57033e-06 6.56573e-06 6.57108e-06 6.56645e-06 6.57164e-06 6.56701e-06 6.57201e-06 6.56735e-06 6.57221e-06 6.56756e-06 6.57225e-06 6.56758e-06 6.57216e-06 6.56749e-06 6.57192e-06 6.56723e-06 6.57158e-06 6.56689e-06 6.57113e-06 6.56643e-06 6.5706e-06 6.56591e-06 6.56999e-06 6.5653e-06 6.56932e-06 6.56465e-06 6.5686e-06 6.56393e-06 6.56784e-06 6.5632e-06 6.56704e-06 6.56241e-06 6.56623e-06 6.56163e-06 6.5654e-06 6.56081e-06 6.56456e-06 6.56e-06 6.56371e-06 6.55917e-06 6.56286e-06 6.55834e-06 6.562e-06 6.55749e-06 6.56114e-06 6.55667e-06 6.56028e-06 6.55582e-06 6.55944e-06 6.55501e-06 6.5586e-06 6.5542e-06 6.55779e-06 6.55342e-06 6.55699e-06 6.55264e-06 6.55621e-06 6.55188e-06 6.55544e-06 6.55114e-06 6.55469e-06 6.55041e-06 6.55395e-06 6.5497e-06 6.55324e-06 6.54901e-06 6.55254e-06 6.54834e-06 6.55187e-06 6.54769e-06 6.55122e-06 6.54706e-06 6.5506e-06 6.54646e-06 6.55001e-06 6.54589e-06 6.54943e-06 6.54534e-06 6.54888e-06 6.5448e-06 6.54835e-06 6.54429e-06 6.54784e-06 6.5438e-06 6.54736e-06 6.54333e-06 6.5469e-06 6.54288e-06 6.54646e-06 6.54246e-06 6.54604e-06 6.54205e-06 6.54564e-06 6.54167e-06 6.54525e-06 6.5413e-06 6.54489e-06 6.54095e-06 6.54455e-06 6.54062e-06 6.54422e-06 6.5403e-06 6.5439e-06 6.54e-06 6.5436e-06 6.53971e-06 6.54332e-06 6.53944e-06 6.54305e-06 6.53918e-06 6.5428e-06 6.53893e-06 6.54255e-06 6.5387e-06 6.54232e-06 6.53848e-06 6.5421e-06 6.53827e-06 6.54189e-06 6.53806e-06 6.54169e-06 6.53787e-06 6.5415e-06 6.53769e-06 6.54132e-06 6.53752e-06 6.54115e-06 6.53736e-06 6.54099e-06 6.5372e-06 6.54083e-06 6.53705e-06 6.54069e-06 6.53691e-06 6.54055e-06 6.53677e-06 6.54041e-06 6.53664e-06 6.54028e-06 6.53652e-06 6.54016e-06 6.5364e-06 6.54004e-06 6.53629e-06 6.53993e-06 6.53618e-06 6.53983e-06 6.53608e-06 6.53972e-06 6.53599e-06 6.53963e-06 6.5359e-06 6.53954e-06 6.53581e-06 6.53945e-06 6.53573e-06 6.53937e-06 6.53565e-06 6.53929e-06 6.53558e-06 6.53922e-06 6.5355e-06 6.53915e-06 6.53544e-06 6.53908e-06 6.53537e-06 6.53901e-06 6.5353e-06 6.53894e-06 6.53524e-06 6.53888e-06 6.53518e-06 6.53882e-06 6.53513e-06 6.53877e-06 6.53507e-06 6.53871e-06 6.53502e-06 6.53866e-06 6.53497e-06 6.5386e-06 6.53491e-06 6.53855e-06 6.53487e-06 6.5385e-06 6.53482e-06 6.53845e-06 6.53477e-06 6.5384e-06 6.53472e-06 6.53835e-06 6.53467e-06 6.5383e-06 6.53462e-06 6.53825e-06 6.53458e-06 6.53821e-06 6.53453e-06 6.53816e-06 6.53449e-06 6.53811e-06 6.53443e-06 6.53806e-06 6.53438e-06 6.538e-06 6.53433e-06 6.53795e-06 6.53428e-06 6.5379e-06 6.53423e-06 6.53785e-06 6.53418e-06 6.5378e-06 6.53413e-06 6.53775e-06 6.53408e-06 6.5377e-06 6.53403e-06 6.53765e-06 6.53399e-06 6.5376e-06 6.53394e-06 6.53756e-06 6.5339e-06 6.53751e-06 6.53385e-06 6.53746e-06 6.53381e-06 6.53742e-06 6.53376e-06 6.53738e-06 6.53372e-06 6.53734e-06 6.53368e-06 6.5373e-06 6.53364e-06 6.53725e-06 6.5336e-06 6.53721e-06 6.53356e-06 6.53717e-06 6.53352e-06 6.53713e-06 6.53348e-06 6.53709e-06 6.53344e-06 6.53705e-06 6.5334e-06 6.53701e-06 6.53336e-06 6.53697e-06 6.53333e-06 6.53694e-06 6.5333e-06 6.53691e-06 6.53327e-06 6.53688e-06 6.53324e-06 6.53685e-06 6.53322e-06 6.53683e-06 6.5332e-06 6.53682e-06 6.5332e-06 6.53682e-06 6.5332e-06 6.53683e-06 6.53322e-06 6.53684e-06 6.53324e-06 6.53687e-06 6.53328e-06 6.53693e-06 6.53335e-06 6.53701e-06 6.53344e-06 6.53711e-06 6.53355e-06 6.53722e-06 6.53367e-06 6.53736e-06 6.53383e-06 6.53753e-06 6.53402e-06 6.53773e-06 6.53423e-06 6.53796e-06 6.53448e-06 6.53821e-06 6.53474e-06 6.53849e-06 6.53504e-06 6.53881e-06 6.53538e-06 6.53916e-06 6.53575e-06 6.53953e-06 6.53613e-06 6.53992e-06 6.53654e-06 6.54034e-06 6.53697e-06 6.54079e-06 6.53744e-06 6.54128e-06 6.53796e-06 6.54181e-06 6.53852e-06 6.54245e-06 6.53928e-06 6.54359e-06 6.54027e-06 6.56986e-06 6.59151e-06 6.68696e-06 6.87787e-06 7.23953e-06 7.99703e-06 8.88879e-06 5.08149e-06 5.33061e-06 7.05489e-06 4.57929e-06 4.69584e-06 4.12196e-06 4.037e-06 5.97554e-06 5.70693e-06 5.71605e-06 5.43991e-06 4.5871e-06 4.807e-06 4.84147e-06 5.06848e-06 6.55279e-06 3.80163e-06 3.65646e-06 5.60478e-06 5.47098e-06 4.88365e-06 5.07585e-06 4.33143e-06 4.38357e-06 7.01367e-06 5.96315e-06 5.78884e-06 4.75053e-06 4.94244e-06 4.40826e-06 4.52635e-06 5.22168e-06 5.39973e-06 4.91601e-06 5.17081e-06 4.57111e-06 4.67341e-06 4.84123e-06 5.004e-06 4.07233e-06 3.99042e-06 6.729e-06 3.9751e-06 3.84431e-06 5.9172e-06 3.58311e-06 3.38845e-06 4.66174e-06 4.25949e-06 6.02827e-06 4.97736e-06 4.6019e-06 3.61048e-06 3.38835e-06 5.71918e-06 3.93509e-06 3.94478e-06 3.43712e-06 3.20285e-06 4.69742e-06 4.19977e-06 4.13816e-06 4.14369e-06 6.29972e-06 5.25567e-06 4.94056e-06 3.59896e-06 3.49093e-06 3.97285e-06 4.01858e-06 6.43361e-06 5.46429e-06 5.13484e-06 4.52427e-06 4.72714e-06 4.2035e-06 4.24888e-06 5.34899e-06 5.00859e-06 6.3735e-06 3.72756e-06 3.58576e-06 4.35576e-06 4.47099e-06 6.18869e-06 4.18792e-06 4.22644e-06 3.56284e-06 3.40069e-06 6.23485e-06 5.19879e-06 4.81435e-06 3.47954e-06 3.42101e-06 5.15502e-06 4.8318e-06 4.8769e-06 4.53322e-06 4.82477e-06 4.61607e-06 3.96119e-06 3.90275e-06 5.83265e-06 3.33377e-06 3.23016e-06 3.9834e-06 3.95509e-06 4.36511e-06 4.4759e-06 3.9811e-06 3.96441e-06 5.91547e-06 3.42516e-06 3.33176e-06 5.73402e-06 3.43924e-06 3.23627e-06 6.46475e-06 3.69711e-06 3.62394e-06 4.70244e-06 4.92294e-06 4.25175e-06 4.33657e-06 4.44544e-06 4.67158e-06 6.70355e-06 4.42493e-06 4.46824e-06 3.88114e-06 3.78491e-06 5.41115e-06 5.21851e-06 4.69253e-06 4.90534e-06 5.6373e-06 5.31293e-06 4.32311e-06 4.36108e-06 5.48038e-06 5.26087e-06 6.53721e-06 3.80496e-06 3.73261e-06 4.64653e-06 4.79777e-06 4.74453e-06 4.89504e-06 4.42147e-06 4.60572e-06 6.2207e-06 4.36159e-06 4.34842e-06 5.12819e-06 4.87453e-06 4.08099e-06 4.18713e-06 3.6116e-06 3.45692e-06 6.54293e-06 5.59249e-06 5.34674e-06 3.73301e-06 3.60103e-06 6.54383e-06 5.54847e-06 5.24677e-06 4.70826e-06 4.8844e-06 4.29753e-06 4.35466e-06 3.78038e-06 3.64946e-06 5.60386e-06 5.32964e-06 4.66005e-06 4.86339e-06 4.38567e-06 4.48123e-06 6.60983e-06 3.84638e-06 3.71799e-06 4.55345e-06 4.74197e-06 4.72281e-06 4.9645e-06 4.22496e-06 4.26302e-06 3.72362e-06 3.50798e-06 6.34789e-06 4.82881e-06 3.82626e-06 5.6976e-06 4.41944e-06 3.45518e-06 5.84791e-06 4.44185e-06 3.54574e-06 5.9703e-06 4.4541e-06 3.47524e-06 5.69384e-06 4.42548e-06 3.47866e-06 4.84719e-06 5.07539e-06 4.98802e-06 4.93761e-06 3.70518e-06 2.98084e-06 3.66821e-06 2.92997e-06 5.07656e-06 3.77837e-06 3.05773e-06 3.77894e-06 3.08382e-06 6.46389e-06 4.66859e-06 5.73009e-06 4.6647e-06 3.52918e-06 4.82683e-06 3.4837e-06 2.73937e-06 3.61673e-06 2.97937e-06 5.42584e-06 5.12474e-06 4.82174e-06 3.69086e-06 3.05701e-06 5.49592e-06 4.90586e-06 3.04434e-06 2.77597e-06 4.32538e-06 3.72548e-06 4.2884e-06 3.6926e-06 5.43835e-06 3.73537e-06 3.1128e-06 3.06291e-06 2.7669e-06 4.1986e-06 3.775e-06 5.54701e-06 4.40871e-06 3.97484e-06 5.2903e-06 3.23668e-06 2.96642e-06 4.71857e-06 4.08116e-06 5.92528e-06 3.87582e-06 3.35853e-06 5.04104e-06 3.16557e-06 2.91861e-06 4.34026e-06 3.81686e-06 3.3851e-06 3.1547e-06 4.96199e-06 3.76869e-06 3.20741e-06 3.11404e-06 2.86548e-06 5.14202e-06 5.19601e-06 5.2797e-06 5.27197e-06 3.95035e-06 3.17506e-06 3.96091e-06 3.24131e-06 5.18442e-06 3.94027e-06 3.23486e-06 3.8351e-06 3.10957e-06 4.85623e-06 4.98838e-06 3.59358e-06 2.97663e-06 5.43204e-06 3.95081e-06 3.22249e-06 4.26768e-06 3.60502e-06 2.9736e-06 2.75799e-06 5.11725e-06 3.72343e-06 3.03931e-06 5.03234e-06 5.08925e-06 3.82268e-06 3.18336e-06 3.74768e-06 3.05566e-06 4.90139e-06 3.7201e-06 3.10377e-06 3.64926e-06 2.93874e-06 5.17476e-06 5.16807e-06 3.84312e-06 3.08237e-06 3.91108e-06 3.15869e-06 5.16351e-06 3.92606e-06 3.14639e-06 3.87547e-06 3.16372e-06 5.62085e-06 4.39601e-06 3.77695e-06 4.77152e-06 3.01624e-06 2.74471e-06 3.95265e-06 3.40867e-06 5.14693e-06 4.7586e-06 4.90666e-06 4.58366e-06 4.8552e-06 4.67809e-06 5.14971e-06 5.58452e-06 7.10815e-06 4.83344e-06 3.92154e-06 3.79903e-06 4.59228e-06 6.26138e-06 4.2048e-06 4.6703e-06 5.15541e-06 3.21772e-06 5.69093e-06 4.04351e-06 2.38364e-06 5.73638e-06 7.03914e-06 6.16453e-06 5.19985e-06 4.76543e-06 3.92147e-06 5.16304e-06 4.27072e-06 3.80669e-06 3.19838e-06 4.8574e-06 3.87935e-06 2.30428e-06 4.88003e-06 4.51085e-06 2.52291e-06 5.92288e-06 4.15923e-06 4.00172e-06 2.17118e-06 5.56513e-06 4.14294e-06 4.46065e-06 2.4198e-06 6.32069e-06 5.00686e-06 3.71092e-06 4.03467e-06 2.18087e-06 5.76426e-06 4.60267e-06 3.60027e-06 4.48819e-06 2.3217e-06 6.58294e-06 5.62854e-06 4.82018e-06 4.03841e-06 3.17975e-06 3.76167e-06 1.96961e-06 5.5075e-06 4.72765e-06 4.11089e-06 3.39636e-06 4.27533e-06 2.2208e-06 6.48343e-06 5.77463e-06 5.10084e-06 4.48144e-06 3.84815e-06 3.11826e-06 3.76106e-06 1.95641e-06 5.64706e-06 4.94132e-06 4.40284e-06 4.04909e-06 3.6225e-06 3.23779e-06 2.91537e-06 3.93471e-06 1.93667e-06 6.10544e-06 5.57471e-06 5.14856e-06 4.80987e-06 4.37842e-06 4.0413e-06 3.74072e-06 3.25987e-06 2.73459e-06 3.5606e-06 1.76569e-06 5.41217e-06 4.77209e-06 4.3986e-06 4.1242e-06 3.77055e-06 3.52423e-06 3.28123e-06 3.0344e-06 2.87501e-06 2.67579e-06 2.48478e-06 2.37758e-06 2.24392e-06 3.79896e-06 1.52109e-06 6.02312e-06 5.65724e-06 5.30139e-06 5.06578e-06 4.9859e-06 4.80874e-06 4.57213e-06 4.349e-06 4.19834e-06 4.03977e-06 3.89994e-06 3.76067e-06 3.70181e-06 3.69347e-06 3.65139e-06 3.53581e-06 3.41872e-06 3.35664e-06 3.3024e-06 3.26485e-06 3.23753e-06 3.2214e-06 3.21032e-06 3.20633e-06 3.20596e-06 3.20825e-06 3.2123e-06 3.22054e-06 5.53069e-06 5.96288e-06 4.88883e-06 4.52005e-06 3.85249e-06 3.80783e-06 3.25754e-06 3.12023e-06 5.45822e-06 4.38702e-06 3.97084e-06 3.32773e-06 3.09179e-06 5.48098e-06 3.18625e-06 3.01703e-06 4.43916e-06 3.95315e-06 3.26913e-06 3.06378e-06 4.35996e-06 3.86858e-06 5.42323e-06 3.29045e-06 3.04491e-06 4.39905e-06 3.9208e-06 4.6742e-06 4.23129e-06 5.8138e-06 3.36585e-06 3.27079e-06 4.91956e-06 4.68067e-06 4.01475e-06 3.95069e-06 3.55139e-06 3.29648e-06 3.2274e-06 3.2351e-06 3.23982e-06 3.24294e-06 3.24365e-06 3.24351e-06 3.24216e-06 3.24025e-06 3.23616e-06 3.23298e-06 3.22734e-06 3.2232e-06 3.21674e-06 3.21205e-06 3.20521e-06 3.20021e-06 3.19326e-06 3.18819e-06 3.1813e-06 3.17621e-06 3.16945e-06 3.16444e-06 3.15785e-06 3.15291e-06 3.14648e-06 3.14167e-06 3.13541e-06 3.13068e-06 3.12456e-06 3.11996e-06 3.11399e-06 3.10945e-06 3.1036e-06 3.09917e-06 3.09346e-06 3.08908e-06 3.08348e-06 3.07922e-06 3.07374e-06 3.06954e-06 3.06416e-06 3.06006e-06 3.0548e-06 3.05075e-06 3.04559e-06 3.04164e-06 3.03658e-06 3.03267e-06 3.0277e-06 3.0239e-06 3.01903e-06 3.01526e-06 3.01047e-06 3.0068e-06 3.00211e-06 2.99847e-06 2.99384e-06 2.99029e-06 2.98576e-06 2.98223e-06 2.97775e-06 2.97431e-06 2.96992e-06 2.9665e-06 2.96217e-06 2.95884e-06 2.95459e-06 2.95127e-06 2.94708e-06 2.94385e-06 2.93973e-06 2.93651e-06 2.93245e-06 2.92931e-06 2.92532e-06 2.9222e-06 2.91825e-06 2.91522e-06 2.91134e-06 2.90831e-06 2.90449e-06 2.90154e-06 2.89778e-06 2.89483e-06 2.89111e-06 2.88825e-06 2.88459e-06 2.88172e-06 2.8781e-06 2.87531e-06 2.87175e-06 2.86896e-06 2.86543e-06 2.86272e-06 2.85925e-06 2.85654e-06 2.85311e-06 2.85048e-06 2.84711e-06 2.84449e-06 2.84116e-06 2.83861e-06 2.83535e-06 2.83281e-06 2.8296e-06 2.82715e-06 2.824e-06 2.82156e-06 2.81847e-06 2.81613e-06 2.81312e-06 2.81082e-06 2.8079e-06 2.80574e-06 2.80293e-06 2.80093e-06 2.79798e-06 2.80099e-06 2.78847e-06 2.79725e-06 2.79367e-06 2.89407e-06 2.94357e-06 2.95868e-06 2.94129e-06 3.06582e-06 3.19038e-06 7.60301e-06 4.62356e-06 4.43626e-06 6.43592e-06 6.0906e-06 5.06637e-06 5.09847e-06 5.48944e-06 5.64191e-06 5.4423e-06 5.60683e-06 5.06763e-06 5.15141e-06 6.61911e-06 6.33152e-06 5.69308e-06 5.85407e-06 7.47848e-06 4.50053e-06 4.35511e-06 8.06649e-06 5.82179e-06 5.68123e-06 6.90326e-06 6.47089e-06 8.4261e-06 6.82743e-06 6.21791e-06 5.45272e-06 5.16562e-06 7.72006e-06 5.01734e-06 4.70019e-06 7.00979e-06 6.42294e-06 8.23462e-06 5.34637e-06 5.05614e-06 5.74519e-06 5.66083e-06 5.9287e-06 5.80993e-06 7.93202e-06 6.81755e-06 6.17758e-06 5.10027e-06 4.78144e-06 7.19185e-06 6.57534e-06 7.96283e-06 8.28575e-06 5.92369e-06 5.8257e-06 7.10054e-06 6.56824e-06 8.14533e-06 7.03662e-06 6.52006e-06 5.89905e-06 5.73514e-06 5.01255e-06 4.80187e-06 5.10725e-06 4.85388e-06 8.05069e-06 6.91668e-06 6.5093e-06 5.77841e-06 5.69579e-06 6.85578e-06 6.40544e-06 5.04205e-06 4.8455e-06 5.86703e-06 5.7272e-06 5.0141e-06 4.82473e-06 6.61629e-06 6.03389e-06 5.26964e-06 5.05617e-06 7.84273e-06 5.48551e-06 5.41648e-06 4.74838e-06 4.69667e-06 5.74517e-06 5.88626e-06 7.64366e-06 4.60279e-06 4.49603e-06 5.32463e-06 5.24897e-06 6.73581e-06 6.34858e-06 7.93037e-06 4.90243e-06 4.69763e-06 6.78454e-06 6.3558e-06 7.87081e-06 4.91738e-06 4.72731e-06 5.60347e-06 5.50883e-06 7.98536e-06 6.93456e-06 6.64302e-06 6.02363e-06 6.09014e-06 5.52413e-06 5.51507e-06 5.03226e-06 4.82406e-06 6.86858e-06 6.46385e-06 5.87716e-06 5.97042e-06 7.68259e-06 6.61167e-06 6.29664e-06 5.70624e-06 5.88263e-06 5.33641e-06 5.26248e-06 4.61664e-06 4.51251e-06 5.55633e-06 5.65218e-06 6.62394e-06 6.24135e-06 5.14743e-06 5.22569e-06 8.36856e-06 8.11414e-06 6.80746e-06 6.13902e-06 5.38345e-06 5.0385e-06 7.97061e-06 5.35001e-06 4.8953e-06 7.04643e-06 6.22796e-06 8.7946e-06 8.01738e-06 6.58889e-06 5.69182e-06 8.81387e-06 7.93837e-06 5.63043e-06 5.13309e-06 7.41692e-06 6.46699e-06 7.26146e-06 6.36915e-06 8.64589e-06 6.48181e-06 5.60465e-06 5.48223e-06 5.07931e-06 8.36362e-06 5.68046e-06 5.21607e-06 7.0922e-06 6.36397e-06 5.53962e-06 5.24508e-06 7.36933e-06 6.55106e-06 7.36892e-06 6.56495e-06 8.59539e-06 6.82882e-06 5.79481e-06 8.87805e-06 6.9881e-06 5.93603e-06 8.31204e-06 6.54992e-06 5.59027e-06 7.78038e-06 6.443e-06 5.30193e-06 8.12708e-06 6.35073e-06 5.43452e-06 8.41772e-06 6.71238e-06 5.6595e-06 8.13203e-06 6.60663e-06 5.53236e-06 8.20765e-06 6.65567e-06 5.59905e-06 8.16388e-06 6.61162e-06 5.52554e-06 8.64313e-06 7.63557e-06 6.16441e-06 8.58618e-06 9.85336e-06 7.77272e-06 6.77704e-06 5.38182e-06 8.14262e-06 6.89808e-06 5.63223e-06 8.06148e-06 6.5468e-06 5.47374e-06 8.10511e-06 6.66158e-06 5.77233e-06 5.75327e-06 5.29369e-06 8.61963e-06 7.8305e-06 6.1884e-06 1.01134e-05 8.14605e-06 9.5677e-06 7.88856e-06 7.94576e-06 5.92624e-06 7.36674e-06 5.82739e-06 1.06435e-05 9.37657e-06 7.78367e-06 7.45773e-06 5.73387e-06 9.75632e-06 8.47367e-06 7.41991e-06 8.05764e-06 5.8942e-06 1.09321e-05 1.01143e-05 9.25321e-06 8.30395e-06 1.03414e-05 9.50518e-06 7.10916e-06 7.70864e-06 5.54219e-06 8.93583e-06 8.48842e-06 8.32594e-06 8.30099e-06 8.18667e-06 7.9696e-06 7.8343e-06 7.81164e-06 7.74986e-06 7.66166e-06 7.55946e-06 7.4476e-06 7.35198e-06 7.24345e-06 7.14168e-06 7.0381e-06 6.94746e-06 6.87738e-06 6.82114e-06 6.77448e-06 6.73356e-06 6.69913e-06 6.19902e-06 5.95243e-06 5.3669e-06 5.61762e-06 6.66706e-06 6.64122e-06 6.61553e-06 6.59709e-06 6.57541e-06 6.56575e-06 6.54619e-06 6.54517e-06 6.52754e-06 6.53063e-06 6.51657e-06 6.52134e-06 6.50947e-06 6.51557e-06 9.44971e-06 7.37801e-06 6.05616e-06 7.55611e-06 6.83939e-06 5.38087e-06 5.10419e-06 5.37441e-06 7.28344e-06 4.28018e-06 4.23648e-06 4.93399e-06 4.88872e-06 6.21033e-06 5.97931e-06 5.38171e-06 5.57331e-06 8.21986e-06 5.14917e-06 5.41556e-06 4.86107e-06 4.90517e-06 8.06672e-06 5.28979e-06 5.00634e-06 6.79587e-06 6.19654e-06 5.42474e-06 5.07481e-06 5.14124e-06 5.26707e-06 7.93522e-06 6.23496e-06 5.94217e-06 7.3268e-06 4.31541e-06 4.23455e-06 5.33125e-06 5.56797e-06 5.35746e-06 4.91054e-06 6.92271e-06 7.15854e-06 4.24927e-06 4.09088e-06 4.79536e-06 4.87034e-06 6.17072e-06 6.87564e-06 6.13322e-06 5.40372e-06 5.56786e-06 7.35837e-06 5.04016e-06 5.02777e-06 4.34888e-06 4.25843e-06 6.26144e-06 5.95319e-06 6.42778e-06 6.15986e-06 5.57901e-06 5.79837e-06 6.349e-06 6.04749e-06 7.39545e-06 4.3669e-06 4.21248e-06 5.32098e-06 5.535e-06 5.0478e-06 5.06176e-06 7.43274e-06 4.39151e-06 4.29463e-06 5.07127e-06 5.08355e-06 7.57262e-06 6.4947e-06 6.20989e-06 5.591e-06 5.74196e-06 5.25682e-06 5.46162e-06 4.44785e-06 4.36964e-06 5.43305e-06 5.58431e-06 5.09106e-06 5.31465e-06 4.6209e-06 4.6741e-06 4.83355e-06 5.12114e-06 7.12137e-06 4.62613e-06 4.74103e-06 4.16892e-06 4.0889e-06 5.19942e-06 5.42847e-06 4.90686e-06 5.12293e-06 6.03839e-06 5.69037e-06 7.07245e-06 6.02061e-06 5.84719e-06 5.21856e-06 5.40766e-06 4.90803e-06 5.07064e-06 4.11111e-06 4.03346e-06 9.72962e-06 3.2787e-06 1.84072e-05 1.70354e-05 1.60761e-05 1.56398e-05 1.52895e-05 1.49616e-05 1.47966e-05 1.46265e-05 1.43971e-05 1.42571e-05 1.41722e-05 1.40626e-05 1.39989e-05 1.39303e-05 1.38962e-05 1.38463e-05 1.38221e-05 1.378e-05 1.37599e-05 1.37216e-05 1.37035e-05 1.36678e-05 1.3651e-05 1.36172e-05 1.36014e-05 1.35692e-05 1.35541e-05 1.35234e-05 1.35089e-05 1.34793e-05 1.34654e-05 1.34369e-05 1.34235e-05 1.3396e-05 1.3383e-05 1.33563e-05 1.33437e-05 1.33179e-05 1.33056e-05 1.32804e-05 1.32685e-05 1.3244e-05 1.32323e-05 1.32084e-05 1.3197e-05 1.31736e-05 1.31624e-05 1.31394e-05 1.31284e-05 1.31058e-05 1.30949e-05 1.30726e-05 1.30619e-05 1.30398e-05 1.30293e-05 1.30074e-05 1.2997e-05 1.29753e-05 1.29649e-05 1.29435e-05 1.29332e-05 1.29118e-05 1.29015e-05 1.28803e-05 1.28701e-05 1.28489e-05 1.28387e-05 1.28175e-05 1.28073e-05 1.27862e-05 1.27759e-05 1.27548e-05 1.27445e-05 1.27233e-05 1.27129e-05 1.26916e-05 1.26812e-05 1.26597e-05 1.26492e-05 1.26276e-05 1.2617e-05 1.25952e-05 1.25845e-05 1.25624e-05 1.25516e-05 1.25292e-05 1.25182e-05 1.24956e-05 1.24845e-05 1.24615e-05 1.24502e-05 1.24269e-05 1.24154e-05 1.23917e-05 1.238e-05 1.2356e-05 1.23439e-05 1.23195e-05 1.23069e-05 1.22821e-05 1.2269e-05 1.22439e-05 1.22301e-05 1.22048e-05 1.21904e-05 1.21648e-05 1.21498e-05 1.21239e-05 1.21083e-05 1.20821e-05 1.20659e-05 1.20392e-05 1.20224e-05 1.19954e-05 1.19779e-05 1.19504e-05 1.19324e-05 1.19044e-05 1.18856e-05 1.18571e-05 1.18377e-05 1.18085e-05 1.17885e-05 1.17586e-05 1.17379e-05 1.17074e-05 1.1686e-05 1.16546e-05 1.16326e-05 1.16004e-05 1.15777e-05 1.15446e-05 1.15212e-05 1.14871e-05 1.1463e-05 1.1428e-05 1.14032e-05 1.13671e-05 1.13416e-05 1.13044e-05 1.12783e-05 1.12399e-05 1.12131e-05 1.11735e-05 1.11461e-05 1.11052e-05 1.10772e-05 1.1035e-05 1.10064e-05 1.09628e-05 1.09338e-05 1.08888e-05 1.08593e-05 1.08129e-05 1.07829e-05 1.07352e-05 1.07048e-05 1.06557e-05 1.06251e-05 1.05746e-05 1.05439e-05 1.04921e-05 1.04614e-05 1.04084e-05 1.03778e-05 1.03236e-05 1.02934e-05 1.02382e-05 1.02085e-05 1.01525e-05 1.01234e-05 1.00669e-05 1.00387e-05 9.98202e-06 9.95461e-06 9.89849e-06 9.87194e-06 9.81684e-06 9.79125e-06 9.73747e-06 9.71303e-06 9.66098e-06 9.63798e-06 9.58817e-06 9.56687e-06 9.51976e-06 9.50042e-06 9.45645e-06 9.43927e-06 9.39881e-06 9.38397e-06 9.34734e-06 9.33498e-06 9.30244e-06 9.29273e-06 9.26435e-06 9.25867e-06 9.23456e-06 9.23199e-06 9.21141e-06 9.21181e-06 9.19522e-06 9.19876e-06 9.18464e-06 9.19155e-06 9.18015e-06 9.1903e-06 9.18192e-06 9.19498e-06 9.19002e-06 9.2049e-06 9.20253e-06 9.21902e-06 9.21889e-06 9.23666e-06 9.23834e-06 9.25801e-06 9.26113e-06 9.2822e-06 9.2868e-06 9.30914e-06 9.31486e-06 9.33775e-06 9.34409e-06 9.36695e-06 9.37375e-06 9.39644e-06 9.40363e-06 9.42616e-06 9.43366e-06 9.45588e-06 9.46352e-06 9.48524e-06 9.49226e-06 9.51291e-06 9.51942e-06 9.53914e-06 9.54517e-06 9.56398e-06 9.56952e-06 9.58744e-06 9.59251e-06 9.60954e-06 9.61411e-06 9.63027e-06 9.63435e-06 9.64969e-06 9.65337e-06 9.66793e-06 9.67138e-06 9.6852e-06 9.68837e-06 9.70141e-06 9.70429e-06 9.71657e-06 9.71918e-06 9.73075e-06 9.73311e-06 9.74403e-06 9.74616e-06 9.7565e-06 9.75841e-06 9.76824e-06 9.76997e-06 9.77935e-06 9.78092e-06 9.78991e-06 9.79133e-06 9.79999e-06 9.80129e-06 9.80965e-06 9.81081e-06 9.81887e-06 9.8199e-06 9.82769e-06 9.82859e-06 9.83613e-06 9.83691e-06 9.84421e-06 9.84486e-06 9.85193e-06 9.85247e-06 9.8593e-06 9.85971e-06 9.86629e-06 9.86657e-06 9.87291e-06 9.87307e-06 9.87915e-06 9.87918e-06 9.88501e-06 9.88491e-06 9.89051e-06 9.89026e-06 9.89568e-06 9.8953e-06 9.90055e-06 9.90003e-06 9.90514e-06 9.90451e-06 9.90953e-06 9.90884e-06 9.91385e-06 9.91316e-06 9.91837e-06 9.91786e-06 9.92446e-06 9.91762e-06 1.00615e-05 1.00249e-05 1.0087e-05 1.02499e-05 1.0896e-05 1.15721e-05 1.21914e-05 1.25037e-05 1.97379e-05 1.28882e-05 ) ; } rightWall { type calculated; value nonuniform List<scalar> 51 ( 0.000117998 0.000247098 0.000420475 0.000646523 0.000750373 0.000992219 0.00130491 0.0015782 0.00182952 0.00214502 0.00245281 0.00277111 0.0030777 0.00338057 0.00366605 0.0039377 0.00418714 0.00441674 0.0046203 0.00479892 0.00494841 0.0050692 0.00515862 0.00521683 0.00524252 0.00523552 0.00519555 0.00512286 0.00501835 0.00488187 0.00471546 0.00451842 0.00429439 0.00404137 0.00376513 0.00346084 0.00313779 0.00278529 0.00241882 0.00201611 0.0016158 0.00117392 0.000890106 0.000561996 0.0002853 1.28882e-05 4.84916e-05 0.000107909 3.2787e-06 1.74614e-05 4.23772e-05 ) ; } symmetryLine { type symmetryPlane; } } // ************************************************************************* //
d887eafd1014ae3621e9623124c286e07b42dc2b
b6a216e4f00ecee2776334c40ebb09868d381351
/src/xnode.cc
231835e2cd5088ab9041ced7429fc4b24a3eb87f
[ "MIT" ]
permissive
rickyes/node-mini
251cfe1e1c592a19770e92a6ef1140f791096c03
fa7bb8033918aef107becfef2c32de2b67906c6e
refs/heads/master
2021-06-06T16:38:51.019142
2020-10-20T07:33:02
2020-10-20T07:33:02
146,405,819
26
2
null
2018-09-28T09:18:17
2018-08-28T07:02:02
C++
UTF-8
C++
false
false
12,029
cc
xnode.cc
#include "libplatform/libplatform.h" #include "v8.h" #include <iostream> #include <string> #include <fstream> #include <sstream> #include <map> #include "shell.h" #include "process.h" #include "env.h" #include "xnode.h" #include "xnode_binding.h" #include <assert.h> using v8::V8; using std::map; using std::string; using v8::MaybeLocal; using v8::String; using v8::Isolate; using v8::NewStringType; using v8::Local; using v8::Value; using v8::ObjectTemplate; using v8::Handle; using v8::FunctionTemplate; using v8::Context; using v8::Script; using v8::TryCatch; using v8::HandleScope; using v8::Message; using v8::Object; using v8::Function; using v8::FunctionCallbackInfo; using v8::EscapableHandleScope; using v8::ScriptOrigin; using std::cout; using std::endl; namespace xnode { static xnode_module* modlist_builtin; static xnode_module* modlist_internal; static xnode_module* modlist_addon; static xnode_module* modlist_linked; static bool node_is_initialized; void init_v8(const char* argv[]) { V8::InitializeICUDefaultLocation(argv[0]); V8::InitializeExternalStartupData(argv[0]); std::unique_ptr<v8::Platform> plateform = v8::platform::NewDefaultPlatform(); V8::InitializePlatform(plateform.get()); V8::Initialize(); } std::string readFile(const char* filename) { std::ifstream t(filename); std::stringstream buffer; buffer << t.rdbuf(); std::string contents(buffer.str()); return contents; } MaybeLocal<String> ReadFile(Isolate* isolate, const string& name) { FILE* file = fopen(name.c_str(), "rb"); if (file == NULL) return MaybeLocal<String>(); fseek(file, 0 ,SEEK_END); size_t size = ftell(file); rewind(file); std::unique_ptr<char> chars(new char[size + 1]); chars.get()[size] = '\0'; for (size_t i = 0; i < size;) { i += fread(&chars.get()[i], 1, size - i, file); if (ferror(file)) { fclose(file); return MaybeLocal<String>(); } } fclose(file); MaybeLocal<String> result = String::NewFromUtf8( isolate, chars.get(), NewStringType::kNormal, static_cast<int>(size)); return result; } void parseException(Isolate* isolate, TryCatch* try_catch) { HandleScope handle_scope(isolate); String::Utf8Value exception(isolate, try_catch->Exception()); const char* exception_string = process::ToCString(exception); Local<Message> message = try_catch->Message(); if (message.IsEmpty()) { // V8 didn't provide any extra information about this error; just // print the exception. fprintf(stderr, "%s\n", exception_string); } else { // Print (filename):(line number): (message). String::Utf8Value filename(isolate, message->GetScriptOrigin().ResourceName()); Local<v8::Context> context(isolate->GetCurrentContext()); const char* filename_string = process::ToCString(filename); int linenum = message->GetLineNumber(context).FromJust(); fprintf(stderr, "%s:%i: %s\n", filename_string, linenum, exception_string); // Print line of source code. String::Utf8Value sourceline( isolate, message->GetSourceLine(context).ToLocalChecked()); const char* sourceline_string = process::ToCString(sourceline); fprintf(stderr, "%s\n", sourceline_string); // Print wavy underline (GetUnderline is deprecated). int start = message->GetStartColumn(context).FromJust(); for (int i = 0; i < start; i++) { fprintf(stderr, " "); } int end = message->GetEndColumn(context).FromJust(); for (int i = start; i < end; i++) { fprintf(stderr, "^"); } fprintf(stderr, "\n"); Local<v8::Value> stack_trace_string; if (try_catch->StackTrace(context).ToLocal(&stack_trace_string) && stack_trace_string->IsString() && Local<v8::String>::Cast(stack_trace_string)->Length() > 0) { String::Utf8Value stack_trace(isolate, stack_trace_string); const char* stack_trace_string = process::ToCString(stack_trace); fprintf(stderr, "%s\n", stack_trace_string); } } } void compile(Local<String> source, Isolate* isolate, Local<v8::Context> context) { TryCatch try_catch(isolate); Local<Script> script; if (!Script::Compile(context, source).ToLocal(&script)) { parseException(isolate, &try_catch); return; } Local<Value> result; if (!script->Run(context).ToLocal(&result)) { assert(try_catch.HasCaught()); parseException(isolate, &try_catch); return; } } void ParseOptions(int argc, char* argv[], map<string, string>* options, string* file) { for(int i=1; i < argc; i++) { string arg = argv[i]; size_t index = arg.find('=', 0); if (index == string::npos) { *file = arg; } else { string key = arg.substr(0, index); string value = arg.substr(index + 1); (*options)[key] = value; } } } inline struct xnode_module* FindModule(struct xnode_module* list, const char* name, int flag) { struct xnode_module* mp; for(mp = list; mp != nullptr; mp = mp->nm_link) { if (strcmp(mp->nm_modname, name) == 0) break; } cout << (mp == nullptr) << endl; CHECK(mp == nullptr || (mp->nm_flags & flag) != 0); return mp; } xnode_module* get_builtin_module(const char* name) { return FindModule(modlist_builtin, name, NM_F_BUILTIN); } static Local<Object> InitModule(Isolate* isolate, Local<Context> context, xnode_module* mod, Local<String> module) { Local<Object> exports = Object::New(isolate); CHECK_NULL(mod->nm_register); CHECK_NO_NULL(mod->nm_context_register_func); Local<Value> unused = v8::Undefined(isolate); mod->nm_context_register_func(exports, unused, context, mod->nm_priv); return exports; } static void GetBinding(const FunctionCallbackInfo<Value>& args) { Isolate* isolate = args.GetIsolate(); Local<Context> context = isolate->GetCurrentContext(); CHECK(args[0]->IsString()); Local<String> module = args[0].As<String>(); String::Utf8Value module_v(isolate, module); xnode_module* mod = get_builtin_module(*module_v); Local<Object> exports; if (mod != nullptr) { std::cout<< std::string(*module_v) <<std::endl; exports = InitModule(isolate, context, mod, module); } if (!strcmp(*module_v, "natives")) { exports = Object::New(isolate); } args.GetReturnValue().Set(exports); } static MaybeLocal<Value> ExecuteString( Isolate* isolate, Local<Context> context, Local<String> source, Local<String> filename) { EscapableHandleScope scope(isolate); TryCatch try_catch(isolate); try_catch.SetVerbose(false); ScriptOrigin origin(filename); MaybeLocal<Script> script = v8::Script::Compile(context, source, &origin); if (script.IsEmpty()) { parseException(isolate, &try_catch); return MaybeLocal<Value>(); } MaybeLocal<Value> result = script.ToLocalChecked()->Run(context); if (result.IsEmpty()) { if (try_catch.HasTerminated()) { isolate->CancelTerminateExecution(); return MaybeLocal<Value>(); } parseException(isolate, &try_catch); return MaybeLocal<Value>(); } return scope.Escape(result.ToLocalChecked()); } static MaybeLocal<Function> GetBootstrapper( Isolate* isolate, Local<Context> context, Local<String> source, Local<String> script_name) { EscapableHandleScope scope(isolate); TryCatch try_catch(isolate); try_catch.SetVerbose(false); MaybeLocal<Value> bootstrapper_v = ExecuteString(isolate, context, source, script_name); if (bootstrapper_v.IsEmpty()) { return MaybeLocal<Function>(); } if (try_catch.HasCaught()) { parseException(isolate, &try_catch); exit(10); } CHECK(bootstrapper_v.ToLocalChecked()->IsFunction()); return scope.Escape(bootstrapper_v.ToLocalChecked().As<Function>()); } static bool ExecuteBootstrapper(Isolate* isolate, Local<Context> context, Local<Function> bootstrapper, int argc, Local<Value> argv[], Local<Value>* out) { bool ret = bootstrapper->Call(context, Null(isolate), argc, argv).ToLocal(out); return ret; } extern "C" void xnode_module_register(void* m) { struct xnode_module* mp = reinterpret_cast<struct xnode_module*>(m); if (mp->nm_flags & NM_F_BUILTIN) { mp->nm_link = modlist_builtin; modlist_builtin = mp; } else if (mp->nm_flags & NM_F_INTERNAL) { mp->nm_link = modlist_internal; modlist_internal = mp; } else if (!node_is_initialized) { mp->nm_flags = NM_F_LINKED; mp->nm_link = modlist_linked; modlist_linked = mp; } else { // } } } int main(int argc, char *argv[]) { V8::InitializeICUDefaultLocation(argv[0]); V8::InitializeExternalStartupData(argv[0]); std::unique_ptr<v8::Platform> plateform = v8::platform::NewDefaultPlatform(); V8::InitializePlatform(plateform.get()); V8::Initialize(); v8::Isolate::CreateParams create_params; create_params.array_buffer_allocator = v8::ArrayBuffer::Allocator::NewDefaultAllocator(); v8::Isolate* isolate = v8::Isolate::New(create_params); Isolate::Scope isolate_scope(isolate); v8::HandleScope handle_scope(isolate); if (argc > 1) { HandleScope handle_scope(isolate); Handle<ObjectTemplate> global = ObjectTemplate::New(isolate); global->Set(String::NewFromUtf8(isolate, "print").ToLocalChecked(), FunctionTemplate::New(isolate, xnode::process::print)); global->Set(String::NewFromUtf8(isolate, "print_error").ToLocalChecked(), FunctionTemplate::New(isolate, xnode::process::print_error)); Local<Context> context = Context::New(isolate, NULL, global); Context::Scope context_scope(context); xnode::binding::RegisterBuiltinModules(); const char* bootstrapJsCore = "lib/console.js"; Local<String> sourceJsCode; if (!xnode::ReadFile(isolate, bootstrapJsCore).ToLocal(&sourceJsCode)) { fprintf(stderr, "The startup script was not found.\n"); } xnode::compile(sourceJsCode, isolate, context); Local<String> loaders_source; const char* loaders_name = "lib/bootstrap/loaders.js"; if (!xnode::ReadFile(isolate, loaders_name).ToLocal(&loaders_source)) { fprintf(stderr, "The startup script was not found.\n"); } MaybeLocal<Function> loaders_bootstrapper = xnode::GetBootstrapper(isolate, context, loaders_source, String::NewFromUtf8(isolate, loaders_name).ToLocalChecked()); if (loaders_bootstrapper.IsEmpty()) { // Execution was interrupted. return 0; } Local<Function> get_binding_fn = Function::New(isolate->GetCurrentContext(), xnode::GetBinding).ToLocalChecked(); Local<Value> loaders_bootstrapper_args[] = { Object::New(isolate), get_binding_fn }; Local<Value> bootstrapped_loaders; if (!xnode::ExecuteBootstrapper(isolate, context, loaders_bootstrapper.ToLocalChecked(), 2, loaders_bootstrapper_args, &bootstrapped_loaders)) { return 0; } const char* filename = argv[1]; Local<String> source; if (!xnode::ReadFile(isolate, filename).ToLocal(&source)) { fprintf(stderr, "No script was specified.\n"); } xnode::compile(source, isolate, context); } else { return xnode::shell::init(argc, argv); } return 0; }
0689b1e15cf2a711d2dc418c3a6ecfaf40e94876
801f7ed77fb05b1a19df738ad7903c3e3b302692
/refactoringOptimisation/differentiatedCAD/occt-min-topo-src/src/math/math_BissecNewton.cxx
1bead95676a847acaac718cefadc2cc932bdf442
[]
no_license
salvAuri/optimisationRefactoring
9507bdb837cabe10099d9481bb10a7e65331aa9d
e39e19da548cb5b9c0885753fe2e3a306632d2ba
refs/heads/master
2021-01-20T03:47:54.825311
2017-04-27T11:31:24
2017-04-27T11:31:24
89,588,404
0
1
null
null
null
null
UTF-8
C++
false
false
4,474
cxx
math_BissecNewton.cxx
// Copyright (c) 1997-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include <math_BissecNewton.hxx> #include <math_FunctionWithDerivative.hxx> #include <StdFail_NotDone.hxx> //======================================================================= //function : math_BissecNewton //purpose : Constructor //======================================================================= math_BissecNewton::math_BissecNewton(const Standard_Real theXTolerance) : TheStatus(math_NotBracketed), XTol (theXTolerance), x (0.0), dx (0.0), f (0.0), df (0.0), Done (Standard_False) { } //======================================================================= //function : ~math_BissecNewton //purpose : Destructor //======================================================================= math_BissecNewton::~math_BissecNewton() { } //======================================================================= //function : Perform //purpose : //======================================================================= void math_BissecNewton::Perform(math_FunctionWithDerivative& F, const Standard_Real Bound1, const Standard_Real Bound2, const Standard_Integer NbIterations) { Standard_Boolean GOOD; Standard_Integer j; Standard_Real dxold, fh, fl; Standard_Real swap, temp, xh, xl; GOOD = F.Values(Bound1, fl, df); if(!GOOD) { Done = Standard_False; TheStatus = math_FunctionError; return; } GOOD = F.Values(Bound2, fh, df); if(!GOOD) { Done = Standard_False; TheStatus = math_FunctionError; return; } // Modified by Sergey KHROMOV - Wed Jan 22 12:06:45 2003 Begin Standard_Real aFTol = RealEpsilon(); // if(fl * fh >= 0.0) { if(fl * fh > aFTol*aFTol) { Done = Standard_False; TheStatus = math_NotBracketed; return; } // if(fl < 0.0) { if(fl < -aFTol || (fl < aFTol && fh < -aFTol)) { xl = Bound1; xh = Bound2; } else { xl = Bound2; xh = Bound1; swap = fl; fl = fh; fh = swap; } // Modified by Sergey KHROMOV - Wed Jan 22 12:06:49 2003 End x = 0.5 * (Bound1 + Bound2); dxold = fabs(Bound2 - Bound1); dx = dxold; GOOD = F.Values(x, f, df); if(!GOOD) { Done = Standard_False; TheStatus = math_FunctionError; return; } for(j = 1; j <= NbIterations; j++) { if((((x - xh) * df - f) * ((x - xl) * df - f) >= 0.0) || (fabs(2.0 * f) > fabs(dxold * df))) { dxold = dx; dx = 0.5 * (xh - xl); x = xl + dx; if(Abs(dx) < XTol) { TheStatus = math_OK; Done = Standard_True; return; } } else { dxold = dx; dx = f / df; temp = x; x -= dx; if(temp == x) { TheStatus = math_OK; Done = Standard_True; return; } } if(IsSolutionReached(F)) { TheStatus = math_OK; Done = Standard_True; return; } GOOD = F.Values(x, f, df); if(!GOOD) { Done = Standard_False; TheStatus = math_FunctionError; return; } if(f < 0.0) { xl = x; fl = f; } else if(f > 0.0) { xh = x; fh = f; } else { TheStatus = math_OK; Done = Standard_True; return; } } TheStatus = math_TooManyIterations; Done = Standard_False; return; } //======================================================================= //function : Dump //purpose : //======================================================================= void math_BissecNewton::Dump(Standard_OStream& o) const { o << "math_BissecNewton "; if(Done) { o << " Status = Done \n"; o << " The Root is: " << x.getValue() << endl; o << " The value at this Root is: " << f.getValue() << endl; } else { o << " Status = not Done \n"; } }
361e37b19b86a0f29ba218343eeba47e2331ffce
556f5f9648be5f847d68b2e8513229f899e09bfc
/service/company_match/company_match_entry.cpp
725e6a3d617adf3bbe16d3228414003bda1976d4
[]
no_license
hermixy/C
40d704ba38878e7785e95470108fc9e3dd13a987
4d1063106ebc19d9cde4f18ef5f6b6c7b9502332
refs/heads/master
2020-04-27T13:03:36.409527
2019-03-06T12:41:55
2019-03-06T12:41:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,142
cpp
company_match_entry.cpp
// #include "conf.h" // #include "log.h" // #include "company_match.h" #include "conf.h" #include "log.h" #include <errno.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> static bool g_running = true; static const char *pid_file = "./pid"; typedef struct { char log_path[260]; char company_match_config[260]; int log_level; int log_file_size; } config_t; static config_t g_config; /* * initialize setting */ static void read_conf(char *conf_file) { /* initial config */ int ret = conf_init(conf_file); if (ret < 0) { fprintf(stderr, "read config error\n"); exit(1); } /* read server config */ /* read log config */ read_conf_str("LOG", "LOGPATH", g_config.log_path, sizeof(g_config.log_path), "../log/"); read_conf_int("LOG", "LOGLEVEL", &g_config.log_level, 5); read_conf_int("LOG", "LOGFILESIZE", &g_config.log_file_size, 10); read_conf_str("COMPANY", "COMPANY_MATCH_CONFIG", g_config.company_match_config, sizeof(g_config.company_match_config), "company_match.ini"); /* destroy config */ conf_uninit(); } /* * save process id into file */ static void save_pid(pid_t pid) { FILE *fd; if ((fd = fopen(pid_file, "w+")) == NULL) { printf("open process id file %s for write failed", pid_file); exit(0); } fprintf(fd, "%ld", (long)pid); fclose(fd); } static pid_t get_pid() { FILE *fd; char pid_buf[50]; pid_t pid; if ((fd = fopen(pid_file, "r")) == NULL) { fprintf(stderr, "open process id file %s for read failed\n", pid_file); exit(0); } fread(pid_buf, 1, sizeof(pid_buf) - 1, fd); pid = (pid_t)atol(pid_buf); fclose(fd); return pid; } static void remove_pidfile() { if (unlink(pid_file) != 0) { printf("remove process id file %s failed", pid_file); } } static int if_process_run() { pid_t pid; FILE *pfd = NULL; char cmd[50] = {0}, result[20] = {0}; /* if pid file exist */ if (access(pid_file, F_OK) < 0) return 0; /* if process exist */ pid = get_pid(); sprintf(cmd, "ps -p %ld|grep %ld|wc -l", (long)pid, (long)pid); pfd = popen(cmd, "r"); if (pfd == NULL) { fprintf(stderr, "popen failed\n"); exit(1); } fread(result, 1, sizeof(result) - 1, pfd); pclose(pfd); return strtol(result, NULL, 10); } /* * stop server */ static void server_stop() { pid_t pid = get_pid(); kill(pid, SIGUSR1); exit(0); } /* * get server status */ static void state() { pid_t pid = get_pid(); kill(pid, SIGUSR2); exit(0); } /* * stop handle */ static void stop_handle(int /*sig*/) { printf("stop called\n"); /* release buffer */ // buff_free(); /* remove process id file */ remove_pidfile(); /* destroy modules */ g_running = false; } /* * state handle */ static void state_handle(int /*sig*/) {} /* * parse action */ static void parse_action(char *action) { if (strcmp(action, "start") == 0) { return; } else if (strcmp(action, "state") == 0) { state(); } else if (strcmp(action, "stop") == 0) { server_stop(); } } /* * make process to daemon process */ static int daemonize() { switch (fork()) { case -1: printf("fork failed! msg=%s\n", strerror(errno)); return -1; case 0: break; default: exit(0); } return 0; } void usage(void) { // printf(PACKAGE " " VERSION "\n"); printf("-c <file> configure file\n" "-d run as daemon\n" "-h print this help\n" "start start server\n" "stop stop server\n"); exit(0); } int main(int argc, char *argv[]) { int c, daemon = 0; char conf_file[255], action[255]; /* if use crrect */ if (argc == 1) usage(); /* process arguments */ while ((c = getopt(argc, argv, "c:dh?")) != -1) { switch (c) { case 'c': strcpy(conf_file, optarg); break; case 'd': daemon = 1; break; case 'h': case '?': usage(); break; } } if (optind == argc) { usage(); } strcpy(action, argv[optind]); /* parse action */ parse_action(action); /* check if the program is running */ if (if_process_run()) { fprintf(stdout, "the program is already running\n"); exit(1); } /* make process to daemon process */ if (daemon) { /* ignore SIGHUP */ signal(SIGHUP, SIG_IGN); if (daemonize() < 0) { fprintf(stderr, "daemonize error\n"); exit(1); } } read_conf(conf_file); /* initialize log */ if (log_init(g_config.log_level, g_config.log_path, g_config.log_file_size) < 0) { fprintf(stderr, "log_init error\n"); exit(1); } signal(SIGUSR1, stop_handle); signal(SIGUSR2, state_handle); /* save process id to file */ if (daemon) save_pid(getpid()); int ret = company_match_init(g_config.company_match_config); if (ret) { fprintf(stderr, "company match init failed\n"); exit(-1); } while (g_running) { ret = company_match_one(); if (ret <= 0) { /* log_txt_info("no match, sleep 5"); */ sleep(5); } } return 0; }
19506f7df7745fc5728528bb1197978796ba28ba
67f4cb7058b1bb83a662051b13c34ff1307a28df
/include/deviceList.hpp
a4550edd22cced55ef779cc29c20252c2639c04f
[ "MIT" ]
permissive
agauniyal/isaac-core
76b345902cb77a2725163c8796a1669f056160e1
bc68df1d7beb4fe1ae639c671957fb214b59458c
refs/heads/master
2023-03-17T11:46:43.956839
2016-12-05T10:39:16
2016-12-05T10:39:16
64,933,012
5
0
null
2016-12-05T10:39:16
2016-08-04T12:32:10
C++
UTF-8
C++
false
false
2,392
hpp
deviceList.hpp
#ifndef DEVICE_LIST_HPP #define DEVICE_LIST_HPP #include "device.hpp" #include <unordered_map> #include <utility> #include <atomic> #include <uv.h> namespace isaac { // umap is a constant lookup container with device ID // as key and pointer to actual device object as value using umap = std::unordered_map<std::string, std::unique_ptr<Device>>; // array of name and ID tuple using arrIdName = std::vector<std::pair<std::string, std::string>>; class deviceList final { static uv_loop_t loop; uv_timer_t t1_handle; static std::atomic<bool> running; umap list; std::mutex m_list; static std::string genId(const int = 8); static const std::shared_ptr<spdlog::logger> logger; static const std::string JSONDB_PATH; static void cb(uv_timer_t *t) { if (running) { deviceList *dL = static_cast<deviceList *>(t->data); for (auto &el : dL->list) { std::cout << "ID: " << el.first << std::endl; } } else { uv_stop(&loop); uv_run(&loop, UV_RUN_DEFAULT); } } deviceList(const deviceList &) = delete; deviceList &operator=(const deviceList &) = delete; public: deviceList() { uv_timer_init(&loop, &t1_handle); uv_timer_start(&t1_handle, &cb, 0, 2000); t1_handle.data = this; } static auto getLoop() { return &loop; } static void init() { running = false; uv_loop_init(&loop); } static void run() { running = true; uv_run(&loop, UV_RUN_DEFAULT); } arrIdName getAll() const; std::pair<std::string, bool> place(deviceType, const json = json::object()); bool removeId(const std::string); void sync(const bool = 1, const std::string = JSONDB_PATH + "db.json"); auto size() const { return list.size(); } auto empty() const { return list.empty(); } auto max_size() const { return list.max_size(); } auto clear() { return list.clear(); } auto count(const std::string _key) { return list.count(_key); } auto rehash(const size_t n) { return list.rehash(n); } auto reserve(const size_t n) { return list.reserve(n); } std::pair<std::string, bool> mt_place(deviceType _Type, const json _j) { std::lock_guard<std::mutex> lock(m_list); return place(_Type, _j); } bool mt_removeId(const std::string _id) { std::lock_guard<std::mutex> lock(m_list); return removeId(_id); } void mt_sync(const umap &) { std::lock_guard<std::mutex> lock(m_list); sync(); } ~deviceList() { uv_loop_close(&loop); } }; } #endif
2b4f6b235cccb6a349d3814512a679b9cb831d16
ae4ff2f711b844c12cca4c21ebc0a70c83fe612f
/北大 C++程序设计学习笔记/code/main.cpp
5e699158122855d62cf59bf9500061f6e564861b
[]
no_license
jianqiangq/cppLearning
ce7b3f547211c30887be552378de60d613edc35f
81de29f1a0f1d312d0df46dd00348a0429cf168c
refs/heads/master
2020-07-30T05:18:44.183714
2019-09-22T06:19:46
2019-09-22T06:19:46
210,100,272
0
0
null
null
null
null
UTF-8
C++
false
false
3,145
cpp
main.cpp
#include <iostream> #include <stack> #include <queue> using namespace std; typedef struct TNode* BinaryTree; struct TNode { int data; TNode* left; TNode* right; }; //层序生成算法 int CreateBinaryTree(BinaryTree &BT) { queue<TNode*> q; int data; TNode* tnode = NULL; cin >> data; if(data == 0) return 0; else { BT = tnode = new TNode(); tnode->data = data; tnode->left = NULL; tnode->right = NULL; q.push(tnode); } while(!q.empty()) { tnode = q.front(); q.pop(); cin >> data; if(data == 0) { tnode->left = NULL; } else { tnode->left = new TNode(); tnode->left->data = data; tnode->left->left = tnode->left->right = NULL; q.push(tnode->left); } cin >> data; if(data == 0) { tnode->right = NULL; } else { tnode->right = new TNode(); tnode->right->data = data; tnode->right->left = tnode->right->right = NULL; q.push(tnode->right); } } return 0; } //先序 int PreOder(BinaryTree BT) { BinaryTree T = BT; if(T) { cout<<T->data<<endl; PreOder(T->left); PreOder(T->right); } return 0; } // 非递归方法中序(先序可简单修改实现;后序需要二次入栈,然后从该节点的右子树继续深入,与前面类同, // 仍为进入一个节点入栈一个节点,深入不下去再返回,直到第二次从栈中弹出该节点,才访问之) int InorderTravesal(BinaryTree BT) { BinaryTree T = BT; stack<BinaryTree> st; while(T!=NULL || !st.empty()) //注意是或,不是与!! { while(T!=NULL) //一直向左并将沿途结点压入堆栈 { st.push(T); T = T->left; } T = st.top(); //结点弹出堆栈 cout << T->data << endl; //访问结点 st.pop(); T = T->right; } return 0; } //层序遍历 int LevelorderTraversal(BinaryTree BT) { BinaryTree T; queue<BinaryTree> q; q.push(BT); while(!q.empty()) { T = q.front(); cout << T->data << endl; q.pop(); if(T->left != NULL) q.push(T->left); if(T->right != NULL) q.push(T->right); } return 0; } int main() { BinaryTree BT = NULL; CreateBinaryTree(BT); PreOder(BT); InorderTravesal(BT); LevelorderTraversal(BT); return 0; } //int main() { // vector<int> v; // for (int i = 0; i < 10; i++) { // v.push_back(i); // } // v.clear(); // cout << "vector size: " << v.size() << endl; // cout << "vector capacity: " << v.capacity() << endl; // //// cout << "vector size: " << v.size() << endl; //// vector<int>::iterator it = v.begin(); //// for (; it != v.end(); it++) { //// v.erase(it); //// } // // vector <int>().swap(v); // // cout << "vector size: " << v.size() << endl; // cout << "vector capacity: " << v.capacity() << endl; //}
eac2eff8d67d95e1e1126beb787bc607a3548906
cd94e4a89afb36b4d03f4808c6001c65217d63d7
/SpehsEngine/Core/Serial/BinaryReader.h
0c02ccefab42ae42a801b0b8de9b90cba4900e55
[]
no_license
Yuuso/SpehsEngine
61e35a6cc6f800fddd6aa36ad4e3b225c1f222e5
04bbddaf7c3d8d597f6b79cd54732506ce0b34cc
refs/heads/master
2023-08-16T22:59:50.776551
2023-08-10T16:35:01
2023-08-10T16:35:01
51,141,207
1
1
null
2016-09-16T07:11:18
2016-02-05T10:49:43
C++
UTF-8
C++
false
false
2,910
h
BinaryReader.h
#pragma once #include "SpehsEngine/Core/Serial/Serial.h" #include "SpehsEngine/Core/ByteView.h" #include "SpehsEngine/Core/ByteVector.h" #include "SpehsEngine/Core/Endianness.h" #include "SpehsEngine/Core/SE_Assert.h" namespace se { class BinaryReader { public: static inline constexpr bool getKeyEnabled() { return false; } static inline constexpr bool getWritingEnabled() { return false; } static inline constexpr bool getReadingEnabled() { return true; } BinaryReader(const uint8_t* const _data, const size_t _size) : size(_size) , data(_data) { } template<typename T> inline bool serial(T& _value); inline void translate(const int bytes) { offset += bytes; } inline size_t getBytesRemaining() const { return size - offset; } inline size_t getSize() const { return size; } inline size_t getOffset() const { return offset; } inline const uint8_t* getData() const { return data; } private: const unsigned char* data; size_t size; size_t offset = 0; }; template<typename T> inline bool BinaryReader::serial(T& _value) { if constexpr (std::is_enum<T>::value || !std::is_class<T>::value || std::is_same<T, ByteVector>::value || IsStaticByteView<T>::value) { // Built-in if constexpr (std::is_enum<T>::value) { // Enum return serial((typename std::underlying_type<T>::type&)_value); } else if constexpr (!std::is_class<T>::value) { // Not class const size_t bytes = sizeof(T); if (offset + bytes > size) { se_assert(false); return false; } if (hostByteOrder == networkByteOrder) { // Read in native byte order memcpy((void*)&_value, &data[offset], bytes); } else { // Read in reversed byte order size_t readOffset = offset + bytes; for (size_t i = 0; i < bytes; i++) { ((unsigned char*)&_value)[i] = data[--readOffset]; } } offset += bytes; return true; } else if constexpr (std::is_same<T, ByteVector>::value) { // Byte vector uint32_t bytes = 0; if (!serial(bytes)) { return false; } if (offset + bytes > size) { se_assert(false); return false; } std::vector<std::byte> vector; _value.swap(vector); vector.resize(bytes); memcpy(vector.data(), &data[offset], bytes); _value.swap(vector); offset += bytes; return true; } else if constexpr (IsStaticByteView<T>::value) { // Static byte view constexpr uint32_t bytes = uint32_t(T::getSize()); if (offset + bytes > size) { se_assert(false); return false; } memcpy(_value.getData(), &data[offset], bytes); offset += bytes; return true; } else { se_assert(false); return false; } } else { // Free reader return Serial<typename SerialTag<T>::type>::template serial<BinaryReader, T&>(*this, _value); } } }
90d9a1969bba8ae948aab4e9e3a28a762d4a3a93
28f7e229958c8544dd1a70af3b823da29d11fcc4
/Codes/Minimum_addition.cpp
03416cec9262fa02dd04ff47b9895a64aabe0463
[]
no_license
Praveennaik8/my-code-library
c484d70041abcec01bbf6010311977151354f240
ef16542990d6d234a368d8d49c09685adb11ab39
refs/heads/main
2023-06-06T07:06:23.739500
2021-06-24T13:32:37
2021-06-24T13:32:37
379,278,340
1
0
null
null
null
null
UTF-8
C++
false
false
3,979
cpp
Minimum_addition.cpp
// Minimum addition // Max. score: 100 // You are given an array of positive numbers. You are also given queries. Each query contains two integers . For each query, determine the sum of all values that must be added to each number in range to such that bitwise AND of all numbers in the range is greater than 0. // You are required to minimize the total value that must be added. The value you must add to numbers is not necessarily equal for all numbers. // Note: Each query is independent of each other, that is, for each query, you must treat the range over the initial input array. // Input format // The first line contains an integer denoting the number of array elements. // The next line denotes array elements. // The next line contains a number denoting the number of queries. // Next lines contain two integers and . // Output format // For each query, print the minimum sum of values to be added in a new line. // Constraints // SAMPLE INPUT // 5 // 4 3 2 4 1 // 4 // 1 4 // 2 3 // 4 4 // 4 5 // SAMPLE OUTPUT // 3 // 0 // 0 // 1 // Explanation // For the first query we can add 1 to the 1st, 3rd and, 4th numbers. // For the second and third query, we don't need to add as the Bitwise AND is already > 0. // For the last query, we can add 1 to 4th number. #include<bits/stdc++.h> using namespace std; typedef long double ld; typedef long long ll; #define int long long #define vi vector<int> #define vll vector<long long> #define testcase int t; cin>>t ;while(t--) #define fastio ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); #define MOD 1000000007 #define all(x) x.begin(), x.end() #define fill(a) memset(a, 0, sizeof (a)) #define fst first #define snd second #define mp make_pair #define pb push_back #define repi_1n for(int i = 1;i<=n;i++) #define repi_0n for(int i = 0;i<n;i++) #define repj_1n for(int j = 1;j<=n;j++) #define repj_0n for(int j = 0;j<n;j++) #define mpl map<ll,ll> #define SIZE ll(100005)//00002) #define FAIL -5677884 #define BIT_SIZE 35 void test(ll x) { cout<<"\nvisited "<<x<<"\n"; } bool isKthBitSet(int n, int k) { if (n & (1 << (k - 1))) return true; return false; } signed main() { fastio int arr_size; cin>>arr_size; //test(arr_size); int arr[arr_size+10]; for(int i = 1;i<=arr_size;i++) cin>>arr[i]; //test(arr_size); int dp[arr_size+10][BIT_SIZE],costdp[arr_size+10][BIT_SIZE]; int powof2[BIT_SIZE]; powof2[0] = 1; //test(arr_size); int n = arr_size; for(int i = 0;i<BIT_SIZE;i++) { dp[0][i] = 0; powof2[i+1] = powof2[i]*2; costdp[0][i] = 0; } //test(arr_size); //test(1); arr_size = n; for(int i = 1;i<=arr_size;i++) { int tempsum = 0; for(int j = 1;j<BIT_SIZE;j++) { ////test(j); // cout<<"i == "<<i<<"\n"; if(isKthBitSet(arr[i],j)) { dp[i][j] = dp[i-1][j]+1; tempsum+=powof2[j-1]; costdp[i][j] = costdp[i-1][j]; } else { dp[i][j] = dp[i-1][j]; costdp[i][j] = costdp[i-1][j]+(powof2[j-1]-tempsum); } } } //test(2); int q; cin>>q; while(q--) { //test(q); int l,r; cin>>l>>r; int ans = INT_MAX; int x = r-l+1; for(int i = 1;i<BIT_SIZE;i++) { //int y = x - (( dp[r][i] - dp[l][i])+(dp[l][i]-dp[l-1][i])); //cout<<i<<" "<<y<<" * "<<powof2[i-1]<<endl; //ans = min(ans,y*powof2[i-1]); int y = costdp[r][i] - costdp[l-1][i];//+(costdp[l][i]-costdp[l-1][i]); ans = min(ans,y); } cout<<ans<<"\n"; } }
4f3d5446cf3a2528b56aabbd8b43581f74b97483
920351fbbe44741e0ffca786b69ee9b6f2b8e4ea
/src/main.cpp
8e227725a166f0f42fa1cf9f709903ab6f61d8f1
[]
no_license
varunk08/OglCollision
96dac68e256f427fdd94e5563af3db27146535b8
c78a455fbe4df54f1868199d120e6f223b14dbd5
refs/heads/master
2020-04-05T18:53:09.505296
2014-03-17T22:40:54
2014-03-17T22:40:54
17,845,774
5
0
null
null
null
null
UTF-8
C++
false
false
4,145
cpp
main.cpp
// Include standard headers #include <stdio.h> #include <stdlib.h> // Include GLEW #include <GL/glew.h> #include <GL/freeglut.h> #include "Camera.h" #include "LoadShaders.h" #include "CubePrimitive.h" #include "ProceduralSphere.h" // Include GLM #include "glm/glm.hpp" #include "glm/gtc/matrix_transform.hpp" #include "glm/gtx/random.hpp" using namespace glm; using namespace std; GLuint _mainWindow; GLuint _shaderProg; GLuint _mvpMatrixID; CubePrimitive _cube; ProceduralSphere _sphere; Camera _camera; float _rotationX = 0.0; float _rotationY = 0.0; vector<ProceduralSphere> spheres; int _curMouseX, _curMouseY; void DrawSpheres(glm::mat4 vp) { for(int i = 0; i< spheres.size(); i++) { glm::mat4 Model = glm::mat4(1); Model = glm::rotate(Model,(_rotationX),glm::vec3(0,1,0)); Model = glm::rotate(Model,(_rotationY),glm::vec3(-1,0,0)); Model = Model * spheres.at(i).GetModelTransform(); glm::mat4 MVP = vp * Model; glUseProgram(_shaderProg); glUniformMatrix4fv(_mvpMatrixID, 1, GL_FALSE, &MVP[0][0]); spheres.at(i).Draw(); } } void MoveSpheres() { for(int i = 0; i< spheres.size(); i++) { spheres.at(i).Update(); } } void display() { glClearColor(0.0, 0.0, 0.0, 0.0); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // Model matrix : an identity matrix (model will be at the origin) glm::mat4 Model = glm::mat4(1.0f); Model = glm::rotate(Model,(_rotationX),glm::vec3(0,1,0)); Model = glm::rotate(Model,(_rotationY),glm::vec3(-1,0,0)); // Our ModelViewProjection : multiplication of our 3 matrices glm::mat4 MVP = _camera.GetVP() * Model; // Remember, matrix multiplication is the other way around MoveSpheres(); glUseProgram(_shaderProg); glUniformMatrix4fv(_mvpMatrixID, 1, GL_FALSE, &MVP[0][0]); glPolygonMode( GL_FRONT_AND_BACK, GL_LINE ); _cube.Draw(); DrawSpheres(_camera.GetVP()); //_sphere.Draw(); glUseProgram(0); glutPostRedisplay(); glutSwapBuffers(); } void reshape(int w, int h) { } void keyboard(unsigned char key, int x, int y) { switch(key) { /*case 'w': _camera.MoveForward(); break; case 's': _camera.MoveBackward(); break; case 'a': _camera.MoveLeft(); break; case 'd': _camera.MoveRight(); break;*/ case 27: exit(0); break; default: break; } } void mouseFunc(int button, int state, int x, int y) { switch(button) { case GLUT_LEFT_BUTTON: if(state == GLUT_DOWN){ _curMouseX = x; _curMouseY = y; } break; } } void mouseMotionFunc(int x, int y) { int _mousedx = x - _curMouseX; int _mousedy = y - _curMouseY; _rotationX += _mousedx; _rotationY += _mousedy; _curMouseX = x; _curMouseY = y; } void mouseWheel(int wheel, int direction, int x, int y) { switch(direction) { case 1: //forward _camera.MoveForward(); break; case -1: _camera.MoveBackward(); break; } } void InitializeShaders() { _shaderProg = LoadShaders("../src/shaders/vertex.glsl", "../src/shaders/frag.glsl"); _mvpMatrixID = glGetUniformLocation(_shaderProg,"MVP"); } void InitializeAll() { _camera.init(vec3(0,0,-5), vec3(0,0,0), vec3(0,1,0)); _camera.SetProjection(45.0f, 4.0f / 4.0f, 0.1f, 100.0f); // Enable depth test glEnable(GL_DEPTH_TEST); // Accept fragment if it closer to the camera than the former one glDepthFunc(GL_LESS); _cube.Init(); for(int i=0; i< 20; i++) { ProceduralSphere newSphere; newSphere.CreateSphere(0.1f, 20,20); spheres.push_back(newSphere); } //_sphere.CreateSphere(2.0f, 20, 20); } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA); glutInitWindowSize(600,600); glutInitWindowPosition(0,0); _mainWindow = glutCreateWindow("Spheres"); // Initialize GLEW glewExperimental = true; // Needed for core profile if (glewInit() != GLEW_OK) { fprintf(stderr, "Failed to initialize GLEW\n"); return -1; } InitializeShaders(); InitializeAll(); glutDisplayFunc(display); glutReshapeFunc(reshape); glutKeyboardFunc(keyboard); glutMouseFunc(mouseFunc); glutMotionFunc(mouseMotionFunc); glutMouseWheelFunc(mouseWheel); glutMainLoop(); return 0; }
31339560eea9176b4ccb939211ad03b6975ac76a
4591b68e2e07187f19edb4474cb92ddafa6be275
/runtime/skeleton/ZonalSkeleton.hpp
60e2e81fbc30bf8dbb565616db05d9ee0b63d8cc
[]
no_license
mohitsahunitrr/map
2e85abcf9311e2b17eeaa1bea702aca384b2c498
843423ff6b11b9a7535db74907d136a2251f060c
refs/heads/master
2020-07-11T01:17:39.811771
2017-03-23T07:19:11
2017-03-23T07:19:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
731
hpp
ZonalSkeleton.hpp
/** * @file ZonalSkeleton.hpp * @author Jesús Carabaño Bravo <jcaraban@abo.fi> * * Visitor of the dag that composes the kernel codes from skeletons */ #ifndef MAP_RUNTIME_SKELETON_ZONAL_HPP_ #define MAP_RUNTIME_SKELETON_ZONAL_HPP_ #include "Skeleton.hpp" namespace map { namespace detail { #define DECLARE_VISIT(class) virtual void visit(class *node); struct ZonalSkeleton : public Skeleton { // constructor and main function ZonalSkeleton(Version *ver); void generate(); // methods std::string versionCode(); // visit DECLARE_VISIT(ZonalReduc) DECLARE_VISIT(Stats) // vars std::vector<ZonalReduc*> reduc; //!< Stores ZonalReduc nodes }; #undef DECLARE_VISIT } } // namespace map::detail #endif
1d0a1248264776a7c4517a9dcb98a52ff75cd772
3dcaec72fa977745cd85ee9bc884c0ad1a33a079
/network/RampTile.h
49e936e8d11fe25aaf3a89b0483306008929ecbb
[]
no_license
ucsd-cse-125-spring-2019/cse125-sp19-group1
d266b9677e5bc4bab24bc885b20260319ceeebb4
d7d880786653689b067f1751dd189e4d7d3f0624
refs/heads/master
2020-05-04T19:03:59.247001
2019-06-09T02:03:27
2019-06-09T02:03:27
179,378,084
1
0
null
2019-06-07T05:20:01
2019-04-03T22:13:40
C++
UTF-8
C++
false
false
1,208
h
RampTile.h
#pragma once #include "Tile.h" enum class Orientation { NORTH = 4, SOUTH = 2, EAST = 1, WEST = 8}; class RampTile : public Tile { public: // Default constructor RampTile(Orientation aRampDir = Orientation::NORTH, int aWallLayout = 0, int aHeight = 0) : Tile(TileType::RAMP, aWallLayout, aHeight), rampDirection(aRampDir) {} // Getter Orientation getRampDirection() const { return rampDirection; } // Setter // Encode function virtual std::string encodeTileData() { std::stringstream encodedData; // Call base class encode function and encode member variables from this class to the stringstream encodedData << Tile::encodeTileData() << " " << static_cast<int>(rampDirection); return encodedData.str(); } // Decode function virtual void decodeTileData(std::string & value) { // Call base class decode function Tile::decodeTileData(value); // Create a stream for the remaining values std::stringstream valueStream(value); std::string rampDirection_str; // Get values from the stream valueStream >> rampDirection_str; // Update class variables rampDirection = static_cast<Orientation>(stoi(rampDirection_str)); } protected: Orientation rampDirection; };
d9daae8d662739a0c15002b770d1e291fb92ec1b
202b96b76fc7e3270b7a4eec77d6e1fd7d080b12
/modules/ecmascript/carakan/src/builtins/es_regexp_builtins.cpp
a52ee2499c1f2dcea40737dacde1312a3a189242
[]
no_license
prestocore/browser
4a28dc7521137475a1be72a6fbb19bbe15ca9763
8c5977d18f4ed8aea10547829127d52bc612a725
refs/heads/master
2016-08-09T12:55:21.058966
1995-06-22T00:00:00
1995-06-22T00:00:00
51,481,663
98
66
null
null
null
null
UTF-8
C++
false
false
13,889
cpp
es_regexp_builtins.cpp
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup" -*- */ #include "core/pch.h" #include "modules/ecmascript/carakan/src/es_pch.h" #include "modules/ecmascript/carakan/src/builtins/es_builtins.h" #include "modules/ecmascript/carakan/src/builtins/es_regexp_builtins.h" #include "modules/ecmascript/carakan/src/object/es_regexp_object.h" #include "modules/ecmascript/carakan/src/object/es_array_object.h" #include "modules/regexp/include/regexp_advanced_api.h" #define ES_THIS_OBJECT(msg) if (!argv[-2].IsObject() || !argv[-2].GetObject(context)->IsRegExpObject()) { context->ThrowTypeError(msg); return FALSE; } ES_RegExp_Object *this_object = static_cast<ES_RegExp_Object *>(argv[-2].GetObject(context)); /* static */ BOOL ES_RegExpBuiltins::constructor_call(ES_Execution_Context *context, unsigned argc, ES_Value_Internal *argv, ES_Value_Internal *return_value) { if (argc >= 1 && argv[0].IsObject() && argv[0].GetObject(context)->IsRegExpObject() && (argc < 2 || argv[1].IsUndefined())) { return_value->SetObject(argv[0].GetObject()); return TRUE; } else return constructor_construct(context, argc, argv, return_value); } /* static */ BOOL ES_RegExpBuiltins::constructor_construct(ES_Execution_Context *context, unsigned argc, ES_Value_Internal *argv, ES_Value_Internal *return_value) { ES_RegExp_Object *existing; JString *source; if (argc >= 1 && argv[0].IsObject() && argv[0].GetObject(context)->IsRegExpObject()) { existing = static_cast<ES_RegExp_Object *>(argv[0].GetObject(context)); ES_Value_Internal value; existing->GetCachedAtIndex(ES_PropertyIndex(1), value); source = value.GetString(); } else { existing = NULL; if (argc >= 1 && !argv[0].IsUndefined()) { if (!argv[0].ToString(context)) return FALSE; source = argv[0].GetString(); } else source = context->rt_data->strings[STRING_empty]; } ES_CollectorLock gclock(context); RegExpFlags flags; unsigned flagbits; if (argc >= 2 && !argv[1].IsUndefined()) { if (existing) { context->ThrowTypeError("RegExp constructor called with invalid arguments"); return FALSE; } if (!argv[1].ToString(context)) return FALSE; if (!ES_RegExp_Object::ParseFlags(context, flags, flagbits, argv[1].GetString())) return FALSE; } else if (existing) existing->GetFlags(flags, flagbits); else ES_RegExp_Object::ParseFlags(context, flags, flagbits, context->rt_data->strings[STRING_empty]); ES_Object *object = ES_GET_GLOBAL_OBJECT()->GetDynamicRegExp(context, source, flags, flagbits); if (!object) { context->ThrowSyntaxError("RegExp constructor: invalid regular expression"); return FALSE; } else { return_value->SetObject(object); return TRUE; } } /* static */ BOOL ES_RegExpBuiltins::test(ES_Execution_Context *context, unsigned argc, ES_Value_Internal *argv, ES_Value_Internal *return_value) { ES_THIS_OBJECT("RegExp.prototype.test: this is not a RegExp object"); ES_Value_Internal v; if (argc == 0) this_object->GetRegExpConstructor(context)->GetCachedAtIndex(ES_PropertyIndex(ES_RegExp_Constructor::INPUT), v); else v = argv[0]; if (!v.ToString(context)) return FALSE; ES_CollectorLock gclock(context, TRUE); JString *string = v.GetString(); BOOL global = (this_object->GetFlagBits() & REGEXP_FLAG_GLOBAL) != 0; unsigned index; if (global) { ES_Value_Internal lastIndex; this_object->GetCachedAtIndex(ES_PropertyIndex(0), lastIndex); if (!lastIndex.ToNumber(context)) return FALSE; double dindex = lastIndex.GetNumAsInteger(); if (dindex < 0 || dindex > Length(string)) { this_object->PutCachedAtIndex(ES_PropertyIndex(ES_RegExp_Object::LASTINDEX), static_cast<UINT32>(0)); return_value->SetFalse(); return TRUE; } index = lastIndex.GetNumAsUInt32(); } else index = 0; RegExpMatch *matches = this_object->Exec(context, string, index); UINT32 last_index = 0; if (matches) { if (global) last_index = static_cast<UINT32>(matches[0].start + matches[0].length); return_value->SetTrue(); } else return_value->SetFalse(); if (global) this_object->PutCachedAtIndex(ES_PropertyIndex(ES_RegExp_Object::LASTINDEX), last_index); return TRUE; } /* static */ BOOL ES_RegExpBuiltins::exec(ES_Execution_Context *context, unsigned argc, ES_Value_Internal *argv, ES_Value_Internal *return_value) { ES_RegExp_Object *this_object; if (!argv[-2].IsObject() || !argv[-2].GetObject(context)->IsRegExpObject()) { if (argv[-2].IsObject() && argv[-1].GetObject(context)->IsRegExpObject()) this_object = static_cast<ES_RegExp_Object *>(argv[-1].GetObject(context)); else { context->ThrowTypeError("RegExp.prototype.exec: this is not a RegExp object"); return FALSE; } } else this_object = static_cast<ES_RegExp_Object *>(argv[-2].GetObject(context)); BOOL global = (this_object->GetFlagBits() & REGEXP_FLAG_GLOBAL) != 0; ES_Value_Internal v; if (argc == 0) this_object->GetRegExpConstructor(context)->GetCachedAtIndex(ES_PropertyIndex(ES_RegExp_Constructor::INPUT), v); else v = argv[0]; if (!v.ToString(context)) return FALSE; JString *string = v.GetString(); ES_CollectorLock gclock(context, TRUE); ES_Value_Internal lastIndex; this_object->GetCachedAtIndex(ES_PropertyIndex(ES_RegExp_Object::LASTINDEX), lastIndex); if (!lastIndex.ToNumber(context)) return FALSE; unsigned index; if (global) { double dindex = lastIndex.GetNumAsInteger(); if (dindex < 0 || dindex > Length(string)) goto failed; index = lastIndex.GetNumAsUInt32(); } else index = 0; if (RegExpMatch *matches = this_object->Exec(context, string, index)) { unsigned nmatches = this_object->GetValue()->GetNumberOfCaptures() + 1; ES_Object *array = ES_Object::MakeArray(context, ES_GET_GLOBAL_OBJECT()->GetRegExpExecResultClass(), ES_Compact_Indexed_Properties::AppropriateCapacity(nmatches)); array->ChangeGCTag(GCTAG_ES_Object_Array); ES_Array::SetLength(context, array, nmatches); array->PutCachedAtIndex(ES_PropertyIndex(1), matches[0].start); array->PutCachedAtIndex(ES_PropertyIndex(2), string); ES_Compact_Indexed_Properties *indexed = static_cast<ES_Compact_Indexed_Properties *>(array->GetIndexedProperties()); ES_Value_Internal *values = indexed->GetValues(); for (unsigned index = 0; index < nmatches; ++index) SetMatchValue(context, values[index], string, matches[index]); if (global) this_object->PutCachedAtIndex(ES_PropertyIndex(ES_RegExp_Object::LASTINDEX), static_cast<UINT32>(matches[0].start + matches[0].length)); return_value->SetObject(array); return TRUE; } failed: this_object->PutCachedAtIndex(ES_PropertyIndex(ES_RegExp_Object::LASTINDEX), static_cast<UINT32>(0)); return_value->SetNull(); return TRUE; } /* static */ BOOL ES_RegExpBuiltins::toString(ES_Execution_Context *context, unsigned argc, ES_Value_Internal *argv, ES_Value_Internal *return_value) { ES_THIS_OBJECT("RegExp.prototype.toString: this is not a RegExp object"); ES_Value_Internal value; this_object->GetCachedAtIndex(ES_PropertyIndex(1), value); JString *source = value.GetString(); if (Length(source) == 0) source = context->rt_data->strings[STRING_empty_regexp]; unsigned flagbits = this_object->GetFlagBits(); BOOL g = (flagbits & REGEXP_FLAG_GLOBAL) != 0; BOOL i = (flagbits & REGEXP_FLAG_IGNORECASE) != 0; BOOL m = (flagbits & REGEXP_FLAG_MULTILINE) != 0; unsigned length = 1 + Length(source) + 1 + static_cast<int>(g) + static_cast<int>(i) + static_cast<int>(m); #ifdef ES_NON_STANDARD_REGEXP_FEATURES BOOL x = (flagbits & REGEXP_FLAG_EXTENDED) != 0; BOOL y = (flagbits & REGEXP_FLAG_NOSEARCH) != 0; length += x + y; #endif // ES_NON_STANDARD_REGEXP_FEATURES JString *result = JString::Make(context, length); uni_char *storage = Storage(context, result); *storage++ = '/'; op_memcpy(storage, Storage(context, source), Length(source) * sizeof(uni_char)); storage += Length(source); *storage++ = '/'; if (g) *storage++ = 'g'; if (i) *storage++ = 'i'; if (m) *storage++ = 'm'; #ifdef ES_NON_STANDARD_REGEXP_FEATURES if (x) *storage++ = 'x'; if (y) *storage++ = 'y'; #endif // ES_NON_STANDARD_REGEXP_FEATURES return_value->SetString(result); return TRUE; } /* static */ BOOL ES_RegExpBuiltins::compile(ES_Execution_Context *context, unsigned argc, ES_Value_Internal *argv, ES_Value_Internal *return_value) { ES_THIS_OBJECT("RegExp.prototype.compile: this is not a RegExp object"); JString *source; ES_RegExp_Object *existing = NULL; if (argc >= 1 && !argv[0].IsUndefined()) { ES_Object *object; if (argv[0].IsObject() && (object = argv[0].GetObject(context))->IsRegExpObject()) { existing = static_cast<ES_RegExp_Object *>(object); source = existing->GetSource(); } else if (!argv[0].ToString(context)) return FALSE; else source = argv[0].GetString(); } else source = context->rt_data->strings[STRING_empty]; ES_CollectorLock gclock(context); RegExpFlags flags; unsigned flagbits; if (argc >= 2 && !argv[1].IsUndefined()) { if (!argv[1].ToString(context)) return FALSE; if (!ES_RegExp_Object::ParseFlags(context, flags, flagbits, argv[1].GetString())) return FALSE; } else if (existing) existing->GetFlags(flags, flagbits); else if (!ES_RegExp_Object::ParseFlags(context, flags, flagbits, context->rt_data->strings[STRING_empty])) return FALSE; ES_SuspendedUpdateRegExp suspended(context, this_object, source, &flags, flagbits); if (OpStatus::IsError(suspended.status)) if (OpStatus::IsMemoryError(suspended.status)) context->AbortOutOfMemory(); else { context->ThrowSyntaxError("RegExp.compile: invalid regular expression"); return FALSE; } return_value->SetUndefined(); return TRUE; } /* static */ void ES_RegExpBuiltins::PopulatePrototype(ES_Context *context, ES_Global_Object *global_object, ES_Object *prototype) { ES_Value_Internal value; unsigned flags = static_cast<ES_RegExp_Object *>(prototype)->GetFlagBits(); ASSERT_CLASS_SIZE(ES_RegExpBuiltins); APPEND_PROPERTY(ES_RegExpBuiltins, lastIndex, 0); APPEND_PROPERTY(ES_RegExpBuiltins, source, JString::Make(context, "(?:)")); value.SetBoolean((flags & REGEXP_FLAG_GLOBAL) != 0); APPEND_PROPERTY(ES_RegExpBuiltins, global, value); value.SetBoolean((flags & REGEXP_FLAG_IGNORECASE) != 0); APPEND_PROPERTY(ES_RegExpBuiltins, ignoreCase, value); value.SetBoolean((flags & REGEXP_FLAG_MULTILINE) != 0); APPEND_PROPERTY(ES_RegExpBuiltins, multiline, value); ES_Object *toString_fn, *test_fn, *exec_fn, *compile_fn; value.SetUndefined(); APPEND_PROPERTY(ES_RegExpBuiltins, constructor, value); APPEND_PROPERTY(ES_RegExpBuiltins, toString, toString_fn = MAKE_BUILTIN(0, toString)); APPEND_PROPERTY(ES_RegExpBuiltins, test, test_fn = MAKE_BUILTIN(1, test)); APPEND_PROPERTY(ES_RegExpBuiltins, exec, exec_fn = MAKE_BUILTIN(1, exec)); APPEND_PROPERTY(ES_RegExpBuiltins, compile, compile_fn = MAKE_BUILTIN(2, compile)); /* Our optimization to return the same RegExp object again and again from a RegExp literal expression depends on the RegExp prototype changing class ID if it's modified, including if any of the built-in functions are overridden. Setting the 'has been inlined' flag on these functions accomplishes this. */ toString_fn->SetHasBeenInlined(); test_fn->SetHasBeenInlined(); exec_fn->SetHasBeenInlined(); compile_fn->SetHasBeenInlined(); ASSERT_OBJECT_COUNT(ES_RegExpBuiltins); } /* static */ void ES_RegExpBuiltins::PopulatePrototypeClass(ES_Context *context, ES_Class_Singleton *prototype_class) { OP_ASSERT(prototype_class->GetPropertyTable()->Capacity() >= ES_RegExpBuiltinsCount); JString **idents = context->rt_data->idents; ES_Layout_Info layout; DECLARE_PROPERTY(ES_RegExpBuiltins, lastIndex, DE | DD, ES_STORAGE_INT32); DECLARE_PROPERTY(ES_RegExpBuiltins, source, DE | DD | RO, ES_STORAGE_STRING); DECLARE_PROPERTY(ES_RegExpBuiltins, global, DE | DD | RO, ES_STORAGE_BOOLEAN); DECLARE_PROPERTY(ES_RegExpBuiltins, ignoreCase, DE | DD | RO, ES_STORAGE_BOOLEAN); DECLARE_PROPERTY(ES_RegExpBuiltins, multiline, DE | DD | RO, ES_STORAGE_BOOLEAN); DECLARE_PROPERTY(ES_RegExpBuiltins, constructor, DE, ES_STORAGE_WHATEVER); DECLARE_PROPERTY(ES_RegExpBuiltins, toString, DE, ES_STORAGE_OBJECT); DECLARE_PROPERTY(ES_RegExpBuiltins, test, DE | FN, ES_STORAGE_OBJECT); DECLARE_PROPERTY(ES_RegExpBuiltins, exec, DE | FN, ES_STORAGE_OBJECT); DECLARE_PROPERTY(ES_RegExpBuiltins, compile, DE, ES_STORAGE_OBJECT); } #undef ES_THIS_OBJECT
7865770c45bc5c1b888fddf8ca03d2cc02ca02d0
fcceb4f2a4b6600fd601fc2d4b7eeae322c2073b
/Lab 5 - Expressions/ExpressionManagerInterface.h
489b844e2a4b613217bc53348fb6a4e4ce2fb438
[]
no_license
nmcmurdie/CS235
635a12a7b226aca0c59673221eba926ada614133
78dbe280d16100cf7a45c6b20addfed21451b7c3
refs/heads/main
2023-02-25T03:49:18.921626
2021-02-03T05:20:57
2021-02-03T05:20:57
335,514,591
0
0
null
null
null
null
UTF-8
C++
false
false
1,200
h
ExpressionManagerInterface.h
//**** YOU MAY NOT MODIFY THIS DOCUMENT ****/ #ifndef EXPRESSION_INTERFACE_H #define EXPRESSION_INTERFACE_H #include <string> using std::string; class ExpressionManagerInterface { public: ExpressionManagerInterface(void) {} virtual ~ExpressionManagerInterface(void) {} /** Return the integer value of the infix expression */ virtual int value(void) = 0; /** Return the infix items from the expression Throw an error if the expression (in this order) 1) is missing ("Invalid Expression"). 2) is not balanced ("Unbalanced"). 3) has two adjacent operators ("Missing Operand"). 4) has an illegal operator ("Illegal Operator"). 5) has missing operator ("Missing Operator"). */ virtual std::string infix(void) = 0; /** Return a postfix representation of the infix expression */ virtual std::string postfix(void) = 0; /** (BONUS) Return a prefix representation of the infix expression */ virtual std::string prefix(void) { return "NOT IMPLEMENTED"; } /** Return the infix vector'd expression items */ virtual std::string toString(void) const = 0; }; #endif // EXPRESSION_INTERFACE_H
0a3abab1c50027444525c8a0b4c2f85056993e3d
a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e
/SteadyState_Rectangular_0_dt2t10000/processor2/2000/k
a1646c5b409bd39fc5455a95f4006b353c3cb246
[]
no_license
jhargun/FluidIP
4c3f6d9a87ed8ce24ed692a9bf939a9ca04222f6
d6e0f20c1f5e1f86c160497be9d632e6d17abbf7
refs/heads/master
2022-08-26T02:34:26.327956
2020-05-26T22:33:29
2020-05-26T22:33:29
266,886,503
0
0
null
null
null
null
UTF-8
C++
false
false
425,863
k
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "2000"; object k; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 33730 ( 1.5239238 1.522571 1.5299601 1.5246391 1.5222401 1.5265336 1.5232781 1.5243745 1.5231051 1.5222325 1.5226175 1.5229934 1.5219992 1.5228141 1.5210583 1.5209049 1.5403585 1.5402589 1.5220642 1.5240817 1.5658762 1.5265948 1.5269344 1.5226602 1.5226128 1.5310185 1.5305551 1.5223746 1.5223859 1.5263324 1.5267651 1.5223576 1.5225703 1.523062 1.5227189 1.5228445 1.5229345 1.5216541 1.5217005 1.5215927 1.5217616 1.5222876 1.5216941 1.5217615 1.5219748 1.5218419 1.5218124 1.5224172 1.5224558 1.5222123 1.5222202 1.5221746 1.5223987 1.5207585 1.5209248 1.5211209 1.5207945 1.5207351 1.5207753 1.521005 1.5208482 1.5231077 1.5227881 1.5658573 1.5654265 1.5227841 1.5229804 1.5656512 1.5663442 1.5221808 1.5225299 1.5226562 1.5262105 1.5260564 1.549121 1.5490828 1.5987539 1.5990748 1.5226637 1.5310929 1.5306657 1.5226113 1.5314111 1.5315889 1.5227142 1.522722 1.5386198 1.5388691 1.5237315 1.5237688 1.5373212 1.5382462 1.5235948 1.5236191 1.5302673 1.530937 1.5223446 1.5224934 1.5312997 1.5226488 1.5310552 1.5226318 1.5215124 1.5215442 1.5215803 1.5214543 1.522456 1.5224186 1.5222495 1.5222912 1.5221255 1.5220827 1.522266 1.5223021 1.5223367 1.5222868 1.5222376 1.5229264 1.5222946 1.5226784 1.5222116 1.5220542 1.5222578 1.5224002 1.5215745 1.521603 1.5216361 1.5216643 1.5216111 1.521613 1.5216179 1.5216635 1.5216682 1.5215521 1.5215561 1.5215835 1.5215879 1.5216064 1.5216374 1.5216618 1.5217102 1.5216914 1.5214782 1.5215431 1.5217174 1.5217872 1.5217123 1.5218209 1.5217362 1.5217518 1.5218098 1.5219164 1.5220516 1.5219216 1.5220518 1.5219011 1.5213246 1.5218624 1.5214999 1.5215527 1.5214894 1.5214333 1.5214092 1.5214663 1.5224615 1.5224953 1.5225367 1.5225283 1.5235433 1.5235996 1.5236947 1.5237663 1.5221974 1.5223565 1.5224714 1.5224738 1.5208294 1.5207866 1.5207217 1.5209133 1.5210581 1.5207577 1.52071 1.5207455 1.520987 1.5208573 1.521497 1.5213376 1.5249171 1.5251008 1.5248324 1.5211394 1.5211263 1.5248174 1.5483031 1.5483697 1.5997097 1.5992795 1.5481515 1.5481363 1.5973583 1.5988221 1.521116 1.5211436 1.5249127 1.5247621 1.5214396 1.5212891 1.5248473 1.5250802 1.5484037 1.6001159 1.5990142 1.5482191 1.5482994 1.5487723 1.6004657 1.6010831 1.5222687 1.5227581 1.5226151 1.5263881 1.5262495 1.5415008 1.5420824 1.5686387 1.5701574 1.5419073 1.5415952 1.5695342 1.5687746 1.6044173 1.6134205 1.6070078 1.6151242 1.6061114 1.6049071 1.6151284 1.6149477 1.5239024 1.5389826 1.5390099 1.5238385 1.5389305 1.5375334 1.5238115 1.5236823 1.539433 1.5396586 1.5240038 1.523936 1.5394779 1.5402621 1.5240482 1.5239727 1.5546643 1.5533364 1.5262521 1.5262459 1.5542514 1.5547044 1.5263754 1.5262976 1.5523844 1.550498 1.5257936 1.5258398 1.5260422 1.5533551 1.553697 1.5260696 1.5369259 1.5381956 1.5234217 1.5235301 1.5237351 1.538856 1.5387702 1.5237307 1.5392355 1.5394482 1.523917 1.5238727 1.5238826 1.5393625 1.5383629 1.523794 1.521492 1.5216786 1.521675 1.5214961 1.521636 1.5216382 1.5217268 1.5217371 1.5217226 1.5214632 1.5214596 1.5214531 1.5214441 1.521442 1.5214508 1.5221956 1.522194 1.5223696 1.5223733 1.5223426 1.5221572 1.5221695 1.52232 1.5220898 1.5220029 1.5219961 1.5220808 1.5221087 1.5220137 1.5220123 1.5221091 1.5218062 1.5218791 1.5217623 1.5219134 1.5219039 1.5219005 1.5219544 1.5219525 1.5219702 1.5223238 1.5219729 1.5219427 1.5219877 1.5219398 1.5219915 1.5222817 1.522011 1.5219593 1.5219587 1.5220123 1.5219891 1.5219883 1.5219679 1.5219685 1.5223468 1.5219386 1.5219622 1.5219796 1.5222955 1.5219624 1.5222968 1.5222388 1.52194 1.5219922 1.5219539 1.5220018 1.5223274 1.5223502 1.5226964 1.5223447 1.5223385 1.5223592 1.5223636 1.5223029 1.5223053 1.5220657 1.5219324 1.5220793 1.5222066 1.521799 1.5219838 1.5218714 1.5219169 1.5219906 1.5219867 1.5220757 1.5220797 1.5221569 1.5223224 1.5221528 1.5223194 1.5217379 1.5217456 1.5215573 1.5217081 1.5217006 1.5217197 1.5217402 1.5215842 1.5217043 1.5216934 1.5217504 1.5217579 1.5217811 1.5217906 1.5215183 1.5215476 1.5217827 1.521792 1.5217917 1.521801 1.5218373 1.5218348 1.5218467 1.5218447 1.5218407 1.521851 1.5218403 1.52185 1.521909 1.5219412 1.5219064 1.5219141 1.5219478 1.5219128 1.5219446 1.5217348 1.5217328 1.5215331 1.5216945 1.5216956 1.5217388 1.5217376 1.5215367 1.5216991 1.5217002 1.5217832 1.521791 1.5217806 1.5217888 1.5217867 1.5217947 1.5217861 1.5217938 1.5215021 1.5214987 1.5218333 1.521844 1.5218443 1.5218555 1.5217872 1.5217994 1.5218279 1.5218389 1.5218448 1.5218801 1.5218919 1.5219237 1.5219018 1.5219352 1.5219164 1.5219511 1.5214745 1.5214766 1.5214882 1.5214855 1.5214908 1.5215211 1.5215348 1.521507 1.5220586 1.5220539 1.5221374 1.5221293 1.5223348 1.5224519 1.5223249 1.5224414 1.5220498 1.5221268 1.5222095 1.5222677 1.5223223 1.5223738 1.5220368 1.5221107 1.522059 1.5221372 1.5219661 1.5220404 1.522018 1.5220885 1.5222912 1.5223315 1.5224042 1.5224492 1.5226724 1.5227774 1.5227331 1.5228351 1.523118 1.5231896 1.5231901 1.5232511 1.5225682 1.5226775 1.5226276 1.5227247 1.5229969 1.5230762 1.5230511 1.5231165 1.5228657 1.5227407 1.5227296 1.5213911 1.5215024 1.5214182 1.5213801 1.5214424 1.5214523 1.5214972 1.5215045 1.521465 1.5214694 1.5215067 1.521518 1.5214866 1.5214689 1.5214554 1.5214535 1.5214675 1.5214333 1.5214347 1.5214474 1.5214458 1.521409 1.5214209 1.5214184 1.5214395 1.521428 1.5214256 1.5214381 1.5237686 1.5236475 1.5238473 1.5237928 1.5239933 1.5239292 1.5239511 1.5238877 1.5257009 1.5257823 1.5259803 1.5260148 1.526183 1.526192 1.5263258 1.5262223 1.523385 1.5235132 1.5236948 1.5237062 1.5238634 1.5238205 1.5238351 1.5237531 1.5207987 1.5207747 1.5212246 1.5207121 1.5208795 1.5209842 1.5215168 1.5213439 1.5207097 1.5211784 1.5211635 1.5207036 1.5207037 1.5211538 1.5211864 1.5209536 1.5213138 1.5214934 1.5208453 1.5250748 1.5252335 1.5250002 1.5249975 1.5406786 1.5411266 1.568283 1.5694884 1.5410369 1.5408681 1.5687476 1.5694005 1.6045236 1.6163993 1.6065671 1.6172827 1.6064353 1.6172639 1.6052373 1.6149067 1.5405425 1.5410026 1.5676344 1.568917 1.5410576 1.5404519 1.5693006 1.5677976 1.602877 1.605294 1.6153421 1.6115551 1.6170953 1.6158259 1.6058037 1.6037636 1.5250868 1.5249199 1.5249982 1.5252533 1.5410873 1.5693186 1.5687336 1.5409831 1.607316 1.6053742 1.6170881 1.6175426 1.6065059 1.6176686 1.6145504 1.6048178 1.5410104 1.5405079 1.5681202 1.5693721 1.5404115 1.5411918 1.5679216 1.5698182 1.5415137 1.5410058 1.5702529 1.5689897 1.6045036 1.6075087 1.6194108 1.6175434 1.6059466 1.6206642 1.617528 1.6079428 1.5226808 1.5225578 1.5223469 1.5225989 1.5227442 1.5239538 1.5239048 1.5298886 1.5298516 1.548838 1.5482502 1.5238379 1.5237472 1.5481289 1.5296008 1.5299833 1.5491456 1.5656806 1.5653115 1.5870768 1.5882154 1.5903305 1.567251 1.5669879 1.589345 1.5885112 1.5662912 1.5893656 1.5665751 1.565876 1.5654143 1.5885047 1.5871246 1.6081099 1.6065184 1.6300748 1.6323101 1.6115542 1.6451813 1.6481015 1.6140159 1.6353702 1.6103289 1.6090081 1.6331201 1.6491109 1.6501835 1.6147407 1.6154677 1.6325712 1.6080956 1.6091681 1.6334787 1.6332375 1.6083911 1.6064168 1.6300768 1.6138436 1.6473396 1.6490721 1.6156101 1.6464922 1.6484493 1.6147914 1.6142756 1.5559822 1.5536943 1.5263117 1.5264376 1.5548195 1.5552247 1.5263288 1.5262386 1.5560275 1.553786 1.526191 1.5263307 1.5507809 1.5533659 1.5259769 1.5257586 1.5577876 1.5534561 1.5264805 1.5266825 1.5556768 1.5568031 1.5266014 1.5263952 1.5563983 1.5548418 1.5266664 1.5264494 1.5560449 1.5267205 1.526823 1.5585732 1.5530534 1.5517774 1.5528029 1.5531465 1.550914 1.5490276 1.551805 1.5522636 1.5254905 1.5497596 1.5524718 1.5256837 1.5543848 1.5534511 1.5258983 1.5258788 1.5543534 1.5555121 1.5261585 1.5262292 1.5262103 1.5549708 1.5544654 1.5261803 1.5563947 1.5541446 1.5263854 1.526537 1.555505 1.5560419 1.5265105 1.5263307 1.5545142 1.5567662 1.5264563 1.5263973 1.5546515 1.5524949 1.5262774 1.5260451 1.5223554 1.5216077 1.5216048 1.5216037 1.5216067 1.5221182 1.5221166 1.5220586 1.5220541 1.5220515 1.5220511 1.5221093 1.522109 1.5216081 1.5216054 1.5216045 1.5216063 1.5220923 1.5221013 1.5220243 1.5220757 1.5220282 1.5220705 1.5220521 1.5220176 1.5220154 1.5220483 1.5220246 1.522069 1.5220227 1.5220684 1.5215825 1.5215846 1.5215851 1.5215819 1.521583 1.5215853 1.5215826 1.5215816 1.5215644 1.5215679 1.5215701 1.5215655 1.5215506 1.5215561 1.5215585 1.5215529 1.5215561 1.5215595 1.5215535 1.5215511 1.521566 1.5215693 1.5215665 1.521564 1.522747 1.5227248 1.5229256 1.522898 1.5227435 1.5229159 1.5227089 1.5228752 1.5232857 1.5234197 1.5232323 1.523363 1.5233006 1.5234414 1.5232628 1.5233976 1.5231994 1.5231669 1.523334 1.5232928 1.522656 1.5226307 1.5228112 1.5227689 1.5226642 1.5228293 1.5226496 1.5228077 1.5231476 1.5230802 1.5232737 1.5231943 1.522219 1.522392 1.5222135 1.5223828 1.5219302 1.5219315 1.5220515 1.5220493 1.5219482 1.5219832 1.5220655 1.5220867 1.5222239 1.5222353 1.5223896 1.5223833 1.5222621 1.5224484 1.5222442 1.5224245 1.521942 1.5219334 1.5220769 1.5220661 1.5219444 1.522077 1.5219385 1.5220666 1.522255 1.5222413 1.5224461 1.5224302 1.5216884 1.52175 1.5217014 1.521767 1.5216798 1.5216756 1.5217178 1.5217151 1.5216448 1.5216753 1.5217365 1.5217342 1.5218106 1.5218097 1.5216688 1.52169 1.5216639 1.5216862 1.5217009 1.5216971 1.5219304 1.5217211 1.5217247 1.5217182 1.5217123 1.5219894 1.521738 1.5217446 1.5217184 1.5217212 1.5219874 1.5217467 1.5217435 1.5216821 1.5217078 1.5216836 1.52171 1.5219617 1.5219631 1.5216806 1.5217073 1.5216742 1.5217017 1.5216935 1.5217386 1.5216871 1.5217324 1.5217601 1.5218457 1.5217586 1.5218429 1.5216949 1.5217391 1.5216956 1.5217397 1.5217572 1.5218432 1.5217492 1.5218343 1.5220086 1.5220058 1.5220022 1.5220043 1.5217728 1.5218621 1.5217733 1.5218608 1.5217024 1.5216983 1.5217495 1.5217454 1.5217043 1.5217511 1.521707 1.5217536 1.5217694 1.5217643 1.5218594 1.5218536 1.5216877 1.5217157 1.521683 1.5217119 1.5216901 1.5217175 1.521693 1.5217212 1.5217282 1.5217315 1.5220016 1.5217541 1.5217566 1.5217255 1.5217207 1.5220028 1.5217445 1.5217504 1.5219725 1.5219745 1.5217482 1.5217818 1.5219659 1.5217914 1.5217689 1.521744 1.5217482 1.5219916 1.5217717 1.5217692 1.5217077 1.5217319 1.5217127 1.5217376 1.5219643 1.5219333 1.5217179 1.5217428 1.5217621 1.5217866 1.5220112 1.5220134 1.5220166 1.5220144 1.5219651 1.5220012 1.5219987 1.5219673 1.5217332 1.5217746 1.5217835 1.5218194 1.5217945 1.5218737 1.5218418 1.5219109 1.5217182 1.5217607 1.5217241 1.521766 1.5217771 1.5218577 1.521782 1.5218609 1.522239 1.5223534 1.5222638 1.5222591 1.5223129 1.5223888 1.5223396 1.5222699 1.5221348 1.5221744 1.5221369 1.5221765 1.5220572 1.5220767 1.522078 1.5220612 1.5220638 1.5220825 1.5220842 1.522068 1.5221436 1.5221851 1.5221458 1.5221863 1.5220469 1.5220649 1.5220224 1.5220119 1.522122 1.5221632 1.5220817 1.5221208 1.5225951 1.5227446 1.5226039 1.5227516 1.5224237 1.5225459 1.5224978 1.5226222 1.5228438 1.5229462 1.5229457 1.5230396 1.5230815 1.5230944 1.5231966 1.5232056 1.5218173 1.5218409 1.5219108 1.52194 1.5221632 1.5223249 1.5221652 1.522328 1.5220546 1.5221876 1.5220971 1.5222384 1.5218812 1.5218808 1.5219952 1.5219953 1.521917 1.5219053 1.5220447 1.5220304 1.5219217 1.521915 1.5220505 1.52204 1.5222227 1.5222063 1.5224062 1.5223857 1.522213 1.522193 1.5223951 1.5223705 1.5226636 1.5228313 1.5226299 1.5227918 1.5231841 1.5233187 1.5231307 1.5232601 1.5226799 1.5228495 1.5226532 1.5228185 1.5232074 1.5231707 1.5233411 1.5233011 1.5221524 1.5221532 1.522095 1.5220937 1.5221082 1.5221087 1.5221643 1.5221649 1.5216714 1.5216682 1.5216742 1.5216772 1.5221504 1.5221395 1.5219731 1.521991 1.5219337 1.5219572 1.5220646 1.5220695 1.5221179 1.5221217 1.5216726 1.5216655 1.5216701 1.521677 1.5221077 1.5219732 1.5219394 1.5219684 1.5219389 1.5219126 1.5219257 1.5219552 1.52191 1.5219359 1.5220424 1.5220766 1.5220351 1.5220828 1.5220271 1.5220542 1.5220629 1.5220336 1.5216497 1.5216461 1.5216445 1.5216492 1.5216486 1.5216428 1.5216448 1.52165 1.522064 1.5221092 1.5220644 1.5221084 1.5220563 1.5220862 1.5220865 1.5220539 1.5220817 1.5221234 1.522079 1.5221242 1.5220728 1.5221021 1.5221054 1.5220744 1.522122 1.5221087 1.5221023 1.5221139 1.5221092 1.5221108 1.5220988 1.5220974 1.5221534 1.5221614 1.5221597 1.5221527 1.5221481 1.5221469 1.5221504 1.5221492 1.5221055 1.5221176 1.5221058 1.522116 1.5221581 1.5221581 1.5221601 1.5221576 1.5221135 1.5221206 1.5221078 1.5221236 1.5221597 1.5221583 1.5221661 1.5221642 1.5222352 1.5222588 1.5222551 1.5222268 1.5224153 1.5223659 1.5223706 1.5224009 1.5222231 1.5222197 1.522247 1.5222434 1.5222671 1.5222336 1.5222592 1.5222362 1.5224181 1.522371 1.5223812 1.5224179 1.5222403 1.5222645 1.5222331 1.5222575 1.5224142 1.5223684 1.5223767 1.5224131 1.5221887 1.522188 1.5221267 1.5221238 1.5221145 1.5221129 1.522173 1.5221715 1.5216644 1.5216627 1.5216614 1.521663 1.522157 1.5221733 1.5221828 1.522183 1.5221224 1.52212 1.5221283 1.5221283 1.5221901 1.5221902 1.5216686 1.5216671 1.5216666 1.5216675 1.5221752 1.5221684 1.5221428 1.5221395 1.5220939 1.5220901 1.5221139 1.5220841 1.5220777 1.5221178 1.5221308 1.5221285 1.5220825 1.5220839 1.5221077 1.5221061 1.5220737 1.5220727 1.5220887 1.5221381 1.5220907 1.5221357 1.5221143 1.5220803 1.522079 1.5221124 1.5220971 1.5221441 1.5220951 1.5221442 1.5221188 1.5220834 1.5221213 1.522086 1.5216419 1.5216439 1.5216441 1.5216413 1.5216388 1.5216411 1.521638 1.5216368 1.5220764 1.5220885 1.5220772 1.5220861 1.5221254 1.5221251 1.5221271 1.5221246 1.522109 1.522099 1.5221071 1.5220972 1.5221486 1.52215 1.5221502 1.5221514 1.5219598 1.5219323 1.5219317 1.5219613 1.521968 1.5220001 1.5219779 1.5220065 1.5220558 1.5220562 1.5220463 1.5220637 1.5220948 1.5220903 1.5221013 1.5221014 1.5220965 1.5220338 1.5220626 1.522066 1.5221485 1.5221874 1.5221905 1.5222247 1.5221675 1.5221896 1.5221597 1.5221825 1.522322 1.5222792 1.5222873 1.5223212 1.5222254 1.5221943 1.5222171 1.5221972 1.5223635 1.5223197 1.5223309 1.5223657 1.5222257 1.522252 1.5222242 1.5222504 1.5224088 1.5223604 1.5223622 1.522402 1.5216037 1.5216068 1.5216021 1.5215998 1.5216101 1.5216065 1.5216024 1.5216048 1.5216206 1.5216227 1.5216251 1.5216212 1.5216186 1.5216215 1.521619 1.5216165 1.5216091 1.5216092 1.5216062 1.5216071 1.5216097 1.5216068 1.5216059 1.521609 1.5216268 1.5216218 1.5216237 1.521628 1.5216243 1.521625 1.5216268 1.5216267 1.5226599 1.5225763 1.5226477 1.5225769 1.5225716 1.5225699 1.5226419 1.5226391 1.5228684 1.5229495 1.5228845 1.5229629 1.5228579 1.5229606 1.5229372 1.5228624 1.5232321 1.5232506 1.5233444 1.5233265 1.5236534 1.5236827 1.5237256 1.5236799 1.5233366 1.5232492 1.5233453 1.5232192 1.5236837 1.5236679 1.5237083 1.523698 1.5226357 1.5225724 1.5226401 1.5225553 1.5228596 1.5229376 1.5228821 1.5229716 1.5230541 1.5229553 1.5230672 1.523061 1.5231477 1.5231484 1.5233816 1.5232395 1.5232857 1.5233367 1.5234379 1.5234655 1.523442 1.5234691 1.5225089 1.5225132 1.5225743 1.5225781 1.5227844 1.5228589 1.5227773 1.5228525 1.5226422 1.5225653 1.5226369 1.5225573 1.5228554 1.5229374 1.5229604 1.5228617 1.5224268 1.5223141 1.5223818 1.522353 1.5225569 1.5226355 1.5226964 1.5226097 1.5225316 1.5224598 1.5225229 1.5224582 1.522716 1.5227896 1.5227253 1.5227962 1.5231128 1.5232001 1.5232317 1.5231233 1.5232184 1.5233146 1.5232449 1.523336 1.523595 1.5235032 1.5235361 1.5235465 1.5236641 1.5236432 1.5236714 1.5236947 1.5238512 1.5238961 1.5239154 1.5239463 1.5243135 1.5242912 1.5242575 1.5242546 1.5240317 1.5240069 1.5240465 1.5240669 1.5244499 1.5244255 1.5244248 1.5244033 1.524666 1.5246891 1.5247023 1.5247066 1.5251916 1.5252471 1.5252176 1.5251747 1.5248264 1.5248329 1.5248544 1.5248564 1.5253504 1.5253336 1.5253288 1.5253482 1.5235714 1.5236759 1.5236299 1.5237113 1.5240532 1.5240466 1.5239665 1.5239868 1.5237748 1.5238144 1.5238338 1.5237675 1.5241985 1.5241633 1.5241531 1.5241831 1.5243775 1.5244364 1.524419 1.5244528 1.5249112 1.5249269 1.524879 1.5249049 1.5245495 1.5245655 1.524639 1.5245992 1.5251385 1.5250332 1.5250633 1.5251084 1.5245454 1.5245237 1.5245279 1.5245027 1.5240917 1.5240181 1.5240639 1.5240963 1.5240539 1.5240921 1.5240376 1.5226929 1.5214983 1.5214703 1.5215 1.521503 1.5214736 1.5214578 1.5214306 1.5214289 1.5214438 1.5214415 1.5214024 1.5214069 1.5215639 1.5215654 1.5215805 1.5215774 1.5215729 1.5215958 1.5216043 1.521586 1.5216009 1.5216142 1.5216049 1.5215949 1.5215909 1.5215981 1.5215952 1.5215885 1.5215978 1.5215997 1.5215909 1.5215891 1.5216015 1.5216075 1.5215976 1.5215935 1.5216022 1.5216028 1.5215972 1.5215976 1.5215949 1.5216012 1.5216001 1.5215947 1.5215909 1.5215991 1.5216023 1.5215943 1.5215869 1.5215965 1.521599 1.5215901 1.521596 1.5215965 1.5215878 1.521586 1.5215921 1.5216002 1.5215974 1.5215896 1.5215591 1.5215592 1.5215756 1.5215747 1.5215578 1.5215595 1.5215756 1.5215738 1.5215874 1.5215948 1.5215949 1.5215884 1.5215877 1.5215956 1.5215948 1.5215871 1.5215254 1.5215302 1.5215426 1.5215378 1.5215495 1.5215595 1.5215571 1.521549 1.521548 1.5215567 1.5215562 1.5215485 1.5215442 1.5215536 1.5215559 1.5215469 1.5215452 1.5215574 1.5215586 1.5215474 1.5215574 1.5215578 1.5215481 1.5215462 1.5215483 1.5215574 1.5215546 1.521546 1.5261053 1.5262887 1.5258989 1.5256439 1.5262163 1.5263917 1.526252 1.526144 1.526638 1.5267725 1.5265989 1.526339 1.5263897 1.5266455 1.5265347 1.526293 1.5254107 1.5256415 1.5258317 1.5258068 1.5260678 1.5261734 1.5261381 1.5261004 1.5262899 1.526496 1.5264488 1.5262354 1.5263217 1.5264056 1.5262123 1.5259293 1.5207723 1.5208651 1.5206729 1.5207637 1.520849 1.5206732 1.521177 1.5220652 1.5219275 1.5217538 1.5218776 1.5209148 1.5212472 1.5213902 1.5213928 1.5212267 1.5206586 1.5210655 1.5210754 1.521086 1.5210777 1.5210849 1.5210553 1.5206564 1.5210987 1.5210643 1.5213881 1.5212242 1.5209114 1.5212117 1.5214204 1.5225027 1.5225319 1.5288556 1.5285216 1.5483146 1.5472268 1.5226261 1.522732 1.528731 1.5288087 1.5472109 1.5480551 1.5224033 1.522412 1.5285726 1.5287496 1.5475583 1.5483131 1.5224216 1.5223751 1.5286881 1.5286965 1.5482828 1.5478886 1.5654213 1.5651043 1.5872787 1.5881831 1.5664486 1.5665996 1.5897388 1.5891308 1.5661118 1.5655128 1.5893827 1.587801 1.5666201 1.5664054 1.589096 1.589877 1.6082072 1.6068943 1.6305843 1.6326461 1.6161431 1.6474421 1.6506402 1.6191991 1.6090773 1.6098482 1.6345436 1.633617 1.6508052 1.6515868 1.6189046 1.6183429 1.6090542 1.6101796 1.6350525 1.6334124 1.6499656 1.6524554 1.6204383 1.6167985 1.6349163 1.609681 1.6075286 1.6315324 1.6166925 1.650193 1.6473563 1.6133996 1.5647913 1.5643803 1.5861335 1.587223 1.5659703 1.5660174 1.5889253 1.588413 1.5666744 1.5663367 1.5889849 1.5897858 1.5648726 1.5876002 1.5648173 1.5868823 1.6069674 1.605448 1.6307967 1.6285638 1.6081576 1.6088471 1.6322261 1.6329117 1.6497478 1.6161004 1.618359 1.6497278 1.6475311 1.6438932 1.6093328 1.6142227 1.6509333 1.6522841 1.6195213 1.6181597 1.6179446 1.6496519 1.6485077 1.6169835 1.6098312 1.608785 1.6340877 1.6327066 1.6063848 1.6075064 1.6300535 1.6316748 1.5224524 1.5224251 1.5287516 1.5289037 1.5489028 1.547991 1.5223761 1.5223309 1.5287387 1.5283037 1.5471258 1.5484603 1.5224754 1.5224452 1.5286936 1.5283993 1.54814 1.5472722 1.5227664 1.522636 1.5288207 1.5479484 1.5482372 1.5289257 1.566035 1.5666296 1.5900744 1.5885825 1.5889943 1.5658623 1.5655311 1.5878408 1.610345 1.6096501 1.6344726 1.6352727 1.6320483 1.6074022 1.6084002 1.6331776 1.6158668 1.6485153 1.6516819 1.6202635 1.6189684 1.6517867 1.6515416 1.6186827 1.6086135 1.6104911 1.6355066 1.6331594 1.6172203 1.6495867 1.6532135 1.621067 1.6167246 1.6503673 1.6474777 1.6124073 1.6091616 1.6075548 1.6314323 1.6337782 1.5871874 1.5648667 1.5650539 1.5878288 1.5896171 1.5663602 1.5662945 1.5890828 1.5650422 1.5644973 1.5865497 1.5878076 1.5666115 1.5670549 1.5897626 1.5901806 1.5904078 1.5672468 1.567344 1.5907181 1.5657679 1.5661557 1.5893342 1.5881897 1.6306006 1.6062289 1.6078174 1.6323499 1.6103832 1.6099778 1.635161 1.634751 1.6537712 1.6222524 1.620818 1.652747 1.6150013 1.6472047 1.652518 1.6232213 1.6096088 1.6079876 1.6322051 1.6344973 1.6538838 1.655784 1.624405 1.6207542 1.6201331 1.6515691 1.6493085 1.6172309 1.6110471 1.6105409 1.6361587 1.635315 1.524109 1.524161 1.523944 1.5240545 1.522407 1.5224922 1.5226391 1.5226454 1.522519 1.5236798 1.5240025 1.5238522 1.5237771 1.5240429 1.5240988 1.5238887 1.5238408 1.5225813 1.5227281 1.5301565 1.5487141 1.5301314 1.5481549 1.5737249 1.5729653 1.5730423 1.5720508 1.57188 1.548016 1.572774 1.5298768 1.549093 1.5302756 1.5745302 1.5738888 1.5912605 1.5927718 1.594806 1.5936384 1.5926147 1.5937945 1.5930764 1.5912945 1.6129224 1.6108989 1.6468702 1.6498469 1.6243388 1.6610834 1.6642644 1.6273678 1.6531078 1.6150808 1.6135339 1.650331 1.6649938 1.6657683 1.6278466 1.6284247 1.6494876 1.6124623 1.6139471 1.6510246 1.650952 1.6131864 1.6108361 1.6469639 1.6263779 1.6627822 1.6645946 1.6279691 1.6619029 1.6639633 1.6272451 1.6263705 1.5205921 1.5226844 1.5544572 1.5521742 1.5532667 1.5535468 1.5544822 1.5521876 1.549405 1.5518209 1.5562742 1.5519619 1.5540755 1.5550293 1.5546229 1.5532681 1.5543539 1.55689 1.5843016 1.5439859 1.5823834 1.5429865 1.583713 1.5439392 1.5842553 1.5441584 1.5818803 1.5422244 1.5787695 1.5407524 1.5828946 1.5429481 1.5837095 1.5433716 1.5483861 1.5510982 1.5529228 1.551894 1.5526984 1.5538964 1.5533647 1.5530066 1.5547668 1.5524978 1.5538563 1.5542673 1.5528347 1.5551457 1.5530235 1.5509886 1.5220678 1.5220548 1.522033 1.5220444 1.5221424 1.522185 1.5221676 1.5221632 1.5221859 1.5221803 1.5221806 1.5221777 1.5221603 1.5221579 1.5220851 1.5220725 1.5220624 1.522075 1.5221463 1.5221493 1.5221913 1.5221873 1.5221472 1.5221515 1.522194 1.5221877 1.5222375 1.5222103 1.5222421 1.5222038 1.5222832 1.5223345 1.5223332 1.5222779 1.522239 1.5222065 1.5222406 1.5222031 1.5222848 1.5220607 1.5220494 1.5220395 1.5220502 1.5220135 1.5220327 1.522043 1.5220223 1.5219315 1.521923 1.5219089 1.5219092 1.5219162 1.5219117 1.5220389 1.5220295 1.5220212 1.5220295 1.522022 1.5220168 1.522011 1.522015 1.5219957 1.5220064 1.5220099 1.5219968 1.5220232 1.5220155 1.5220003 1.522006 1.523937 1.5240241 1.5241207 1.5240174 1.5238946 1.5238971 1.5239868 1.5239768 1.5245871 1.5244364 1.5244716 1.5245416 1.5243801 1.5244075 1.5243965 1.5244269 1.5241075 1.5238286 1.5239254 1.5240087 1.5243256 1.5243743 1.5245688 1.5245267 1.5239271 1.5238585 1.5239442 1.5238125 1.5243466 1.5243778 1.5243191 1.5243448 1.5250996 1.5248292 1.5248899 1.5250436 1.5255004 1.5254151 1.5256486 1.52565 1.5247899 1.5248326 1.5248308 1.524875 1.525507 1.5254035 1.5253429 1.525376 1.5249345 1.524984 1.5251201 1.5250605 1.5256258 1.5256745 1.5255234 1.5257002 1.5248844 1.5248596 1.5249272 1.5249006 1.5255598 1.5254182 1.5254391 1.5254599 1.5247133 1.5247708 1.5248524 1.5247818 1.5247015 1.5246637 1.524711 1.5247367 1.5254349 1.5252862 1.5253283 1.5253697 1.5252299 1.5252538 1.5252134 1.5252723 1.5237011 1.523783 1.5238648 1.5237717 1.5235564 1.5236438 1.523716 1.5236341 1.5242848 1.5241564 1.524193 1.5242407 1.5239737 1.5240071 1.5240705 1.5240946 1.523858 1.5237102 1.5237994 1.5237537 1.5241826 1.5242291 1.5242968 1.5242401 1.5238332 1.5237043 1.5237869 1.5237259 1.5241613 1.5241948 1.5242088 1.52423 1.5246176 1.5246669 1.5247703 1.5247122 1.5244972 1.5245335 1.5243949 1.5244416 1.5253285 1.5251612 1.5252051 1.5252684 1.5248898 1.5249072 1.5249997 1.5250328 1.522996 1.5228423 1.5229696 1.5228525 1.5232722 1.5233543 1.5233954 1.5233025 1.5229855 1.5228345 1.5229629 1.5228419 1.5232683 1.5233469 1.5232888 1.5233686 1.5221373 1.5222466 1.5222465 1.5221285 1.5221374 1.5222439 1.5222394 1.5221215 1.5224411 1.5225657 1.5225751 1.5224385 1.5224355 1.5225587 1.5225665 1.5224287 1.5221654 1.5222701 1.5222964 1.5221816 1.5222051 1.5222179 1.522313 1.5222942 1.5224623 1.522582 1.5226256 1.5224935 1.5224671 1.5224973 1.5226061 1.5225688 1.5228331 1.5229551 1.5230221 1.5228847 1.5227932 1.5228467 1.522957 1.5228973 1.5233509 1.5234174 1.5232489 1.5233287 1.5231585 1.5232388 1.5233071 1.5232364 1.5231773 1.5229083 1.5230447 1.523026 1.5233617 1.5234529 1.5236091 1.5235205 1.5229063 1.5230364 1.5229195 1.5230581 1.5233881 1.5234727 1.5233535 1.5234379 1.5221867 1.5223072 1.5223239 1.5221921 1.5221614 1.5222831 1.5222872 1.5221546 1.5226999 1.5225257 1.5226628 1.5225457 1.5226552 1.5224987 1.5226393 1.5225007 1.5223409 1.5221606 1.5222777 1.522212 1.5224837 1.5226168 1.5227099 1.5225626 1.5222795 1.52216 1.5222771 1.5221531 1.5224861 1.5226202 1.5224851 1.5226132 1.5229472 1.523088 1.5231574 1.5229944 1.5229242 1.5230707 1.5229389 1.5230777 1.5235427 1.523615 1.5234241 1.5235112 1.5234129 1.5234124 1.5235025 1.5235055 1.5218158 1.5218188 1.5217583 1.5219042 1.5219654 1.5219796 1.5219054 1.5217158 1.5217804 1.5217265 1.5217905 1.5218828 1.5219614 1.5218715 1.5219507 1.5215021 1.5215605 1.5215586 1.5214982 1.5214881 1.5214903 1.5215501 1.5215481 1.5216597 1.5215956 1.5216607 1.5215916 1.5215827 1.5216499 1.521585 1.5216519 1.5216975 1.5215605 1.5215066 1.5216063 1.5216631 1.5215961 1.5216536 1.5217176 1.5217885 1.5217897 1.5217147 1.5217088 1.5217812 1.5217065 1.5217787 1.5219758 1.5219743 1.5218795 1.5218796 1.5218698 1.5218726 1.5219627 1.5219593 1.5213273 1.521327 1.5214002 1.5214009 1.5214108 1.5214804 1.5214787 1.5214119 1.521314 1.521313 1.5213874 1.5213886 1.5214001 1.521398 1.521469 1.5214673 1.5212328 1.5212312 1.5213189 1.52132 1.5213059 1.5213059 1.5212174 1.5212166 1.5217461 1.5217256 1.5217235 1.521744 1.5212095 1.521224 1.5211748 1.5211743 1.5212729 1.5212757 1.5212712 1.5212717 1.5211734 1.5211733 1.521769 1.5217441 1.5217394 1.5217639 1.5211663 1.521167 1.5211954 1.5211941 1.5212895 1.5212917 1.5212802 1.5212805 1.5211821 1.5211814 1.5217678 1.5217432 1.5217465 1.5217713 1.5211746 1.5211868 1.5212978 1.5212986 1.5213802 1.521378 1.5213907 1.5213913 1.5214654 1.521467 1.5213701 1.5212876 1.5213701 1.5212869 1.5214592 1.5213814 1.5213804 1.5214569 1.5217617 1.521744 1.5217471 1.5217654 1.5217415 1.5217431 1.5217623 1.5217588 1.5213676 1.5212804 1.521364 1.5212823 1.5214548 1.5213757 1.5213784 1.5214567 1.5213607 1.521278 1.5213604 1.5212779 1.5214497 1.5213715 1.521371 1.5214474 1.5215455 1.5214753 1.5215421 1.5214763 1.5215784 1.5216528 1.5216595 1.5215815 1.5214659 1.5215311 1.521469 1.5215347 1.5215697 1.5216434 1.5215647 1.5216376 1.5218119 1.5217266 1.5218059 1.5217275 1.5220121 1.5219042 1.5219106 1.5220082 1.521711 1.5217884 1.5217184 1.5217965 1.5219983 1.5218918 1.5218811 1.521978 1.521554 1.5214864 1.5215511 1.5214866 1.5215879 1.52159 1.5216607 1.5216625 1.5215426 1.5214785 1.5215438 1.5214752 1.5216548 1.5215783 1.5215766 1.5216492 1.5218041 1.5217123 1.5217915 1.5217196 1.5219945 1.521887 1.5219019 1.5219994 1.5216935 1.5217704 1.5217012 1.5217792 1.5219794 1.5218727 1.5218605 1.521957 1.5217605 1.5217535 1.5217675 1.5217716 1.5217606 1.5217553 1.521769 1.5217733 1.5217472 1.5217442 1.5217652 1.5217687 1.521764 1.521743 1.5217455 1.5217643 1.5218353 1.5217295 1.52181 1.5217485 1.5219071 1.5220063 1.5220465 1.5219385 1.5217283 1.5218076 1.5217281 1.5218085 1.5219053 1.5220049 1.5219031 1.5220008 1.5214835 1.5215521 1.5215517 1.5214812 1.521479 1.5214804 1.5215474 1.5215456 1.5216688 1.5215907 1.5216674 1.5215887 1.5215823 1.5216578 1.5215844 1.5216601 1.5215614 1.5214842 1.5215518 1.5214907 1.5215887 1.5216638 1.5216792 1.5215997 1.5215524 1.5214834 1.5215516 1.521482 1.5215877 1.5216633 1.5215884 1.5216637 1.5217303 1.5218122 1.5218177 1.5217307 1.5217211 1.5218021 1.5217184 1.5217989 1.5220236 1.5220284 1.5219126 1.5219185 1.5218965 1.5219005 1.5220024 1.5219976 1.5212835 1.5212853 1.5213678 1.5213701 1.5213804 1.5214601 1.5214596 1.5213796 1.5212873 1.5212881 1.5213693 1.5213695 1.5213809 1.5213802 1.5214583 1.5214571 1.5213757 1.521287 1.5213712 1.5212897 1.5213831 1.5214615 1.5214678 1.5213868 1.5213704 1.5212844 1.5213704 1.5212842 1.5213818 1.5214616 1.521381 1.5214608 1.5211807 1.5211804 1.5212791 1.5212826 1.5212768 1.5212772 1.5211745 1.521174 1.5217553 1.5217534 1.5217793 1.5217816 1.5211734 1.5211675 1.521177 1.5211768 1.5212758 1.5212784 1.5212799 1.5212809 1.521183 1.5211837 1.5217753 1.5217495 1.5217454 1.5217705 1.5211767 1.5211701 1.5217714 1.5217506 1.5217534 1.5217739 1.5217468 1.5217482 1.521768 1.5217648 1.5212803 1.5212844 1.5213666 1.521374 1.5215127 1.5215325 1.5214503 1.5214664 1.5217869 1.5217626 1.5217804 1.5218038 1.521449 1.5212749 1.52122 1.5212207 1.5213152 1.5213191 1.5213265 1.521328 1.5212311 1.521232 1.5217917 1.5217674 1.521769 1.5217934 1.5212251 1.5212137 1.5213214 1.5213249 1.521406 1.5214021 1.5214128 1.5214156 1.5214875 1.5214904 1.5214137 1.5213324 1.5214122 1.521334 1.5214973 1.5214221 1.5214234 1.5214967 1.5217832 1.521764 1.5217662 1.521785 1.5217723 1.5217567 1.521775 1.5217893 1.5214559 1.5213726 1.5214462 1.5213812 1.5215278 1.5214571 1.5214671 1.5215359 1.5215956 1.5215178 1.5215717 1.5215425 1.5216378 1.5215826 1.5216089 1.5216592 1.5217709 1.5217466 1.5217505 1.5217745 1.5217711 1.5217547 1.5217601 1.5217763 1.5217595 1.521755 1.5217707 1.521773 1.521769 1.5217468 1.5217481 1.5217689 1.5217642 1.5217543 1.5217684 1.5217786 1.521767 1.5217654 1.5217821 1.5217836 1.5217823 1.5217609 1.521762 1.5217843 1.5217713 1.5217502 1.5217632 1.5217841 1.5216173 1.5215474 1.5216074 1.5215557 1.5216419 1.5217088 1.5217222 1.5216525 1.5216799 1.5217247 1.5216573 1.5217056 1.5217392 1.5217947 1.5217586 1.5218102 1.5218558 1.5217646 1.521836 1.5217798 1.5220217 1.5219248 1.5219481 1.5220353 1.5218629 1.5219201 1.5218482 1.5219098 1.5220804 1.5219946 1.5220021 1.5220751 1.5215737 1.5215062 1.52157 1.5215081 1.5216034 1.5216066 1.521674 1.5216764 1.5215787 1.5215151 1.5215777 1.5215142 1.5216828 1.5216099 1.5216112 1.5216803 1.5218089 1.521729 1.5218035 1.5217303 1.5219924 1.5218919 1.5218968 1.5219872 1.5217339 1.5218063 1.5217368 1.5218096 1.5219951 1.5218964 1.5218922 1.5219825 1.5218366 1.5218868 1.5221891 1.5206344 1.5221548 1.5222152 1.5222184 1.5221925 1.5221895 1.5206706 1.5222002 1.522164 1.522231 1.5222317 1.5222189 1.5222189 1.5222077 1.5221712 1.5221988 1.5221682 1.5218618 1.5218746 1.5218646 1.5219836 1.5219357 1.521855 1.5218671 1.5218664 1.5218581 1.5219281 1.5219795 1.5219752 1.5219272 1.5217859 1.5217751 1.5217811 1.5217924 1.5218135 1.5218184 1.5218215 1.5218198 1.5218163 1.521812 1.5218102 1.5218164 1.5217842 1.5217741 1.5217808 1.5217919 1.5217841 1.5217701 1.5217758 1.5217906 1.5218083 1.5218122 1.5218176 1.521815 1.5218166 1.5218134 1.5218092 1.5218136 1.5217843 1.5217725 1.5217769 1.5217895 1.521857 1.5218702 1.5218744 1.5218632 1.5219314 1.521983 1.5219855 1.5219365 1.5218584 1.5218727 1.5218733 1.5218615 1.5219343 1.5219869 1.5219841 1.521935 1.5217912 1.5217769 1.5217787 1.5217938 1.5218116 1.5218148 1.5218161 1.5218144 1.5217994 1.5218018 1.5217977 1.5217994 1.5217778 1.5217666 1.521771 1.5217855 1.5218568 1.5218696 1.5218694 1.5218589 1.5219278 1.5219763 1.5219737 1.5219283 1.5218415 1.5218555 1.5218444 1.5218366 1.5219112 1.5219585 1.5219392 1.521897 1.5236791 1.5237596 1.5236962 1.5237646 1.5241406 1.5241385 1.5241691 1.5241573 1.523691 1.5237451 1.5237704 1.523809 1.5242087 1.5241893 1.5242006 1.5241503 1.5233363 1.5234608 1.5234062 1.523511 1.5238535 1.5238611 1.5237339 1.5237659 1.5235295 1.5235981 1.5236769 1.523594 1.5240714 1.5239529 1.5239713 1.5240378 1.5241448 1.5241916 1.5243096 1.524252 1.5243732 1.5244087 1.5244853 1.5244971 1.5248229 1.5246348 1.5246675 1.5247687 1.5249723 1.5249618 1.5249751 1.5248781 1.524597 1.5246395 1.524652 1.5245805 1.5246402 1.5246731 1.5246974 1.5246302 1.5252302 1.5251381 1.525182 1.5251501 1.5252419 1.5251754 1.5252152 1.5251948 1.5220863 1.5221638 1.5222031 1.5221096 1.5220943 1.5221893 1.5221892 1.5220824 1.5224948 1.5223338 1.5224212 1.5223887 1.5225004 1.5223786 1.522485 1.5223791 1.5228098 1.5229335 1.5228366 1.5229548 1.5232686 1.5233349 1.5232401 1.5233186 1.5228055 1.5229336 1.5229635 1.5228242 1.5233752 1.5232454 1.5233247 1.5232716 1.5226385 1.522735 1.5227281 1.5228231 1.5230971 1.5231372 1.5229758 1.5230332 1.5227306 1.5228391 1.5228725 1.5227485 1.5232458 1.5231242 1.5231896 1.5231602 1.5221113 1.522216 1.5222229 1.5221085 1.5220976 1.5222048 1.5222108 1.5220932 1.5225523 1.5224113 1.5225308 1.5224192 1.5224005 1.5225238 1.5225423 1.5224065 1.5221376 1.5222537 1.5222698 1.5221431 1.5220911 1.5221202 1.5222353 1.5222033 1.5224604 1.5225943 1.5226277 1.5224799 1.5223978 1.5224398 1.5225729 1.5225275 1.5221587 1.5222759 1.5222821 1.5221537 1.5221411 1.522256 1.5222411 1.5221155 1.5224867 1.522621 1.5226447 1.522495 1.522463 1.5225965 1.5225915 1.5224433 1.5228976 1.5230361 1.5230844 1.5229275 1.5228704 1.5230086 1.5230166 1.5228619 1.5233611 1.5234476 1.5235209 1.5234216 1.5233359 1.5234219 1.5234543 1.5233392 1.5228658 1.5230027 1.5230601 1.5229063 1.5227839 1.5228428 1.5229783 1.5229155 1.5233246 1.5234118 1.5234942 1.5233929 1.5232186 1.5232989 1.5233842 1.5233161 1.5239388 1.523752 1.5238434 1.5238383 1.5242353 1.524276 1.5243797 1.5243347 1.5236426 1.523731 1.5237226 1.523806 1.5241913 1.5242206 1.5241034 1.5241413 1.5248837 1.5247181 1.524769 1.5248261 1.5253788 1.5252821 1.5254026 1.525423 1.5245633 1.5246118 1.5246531 1.5246913 1.5252762 1.5251906 1.5250941 1.5251162 1.5239722 1.5237905 1.5238799 1.5238698 1.5242744 1.5243745 1.5243146 1.524385 1.5239047 1.5237678 1.5238551 1.5237982 1.5243161 1.5242482 1.5242957 1.5243118 1.5247619 1.5248151 1.524903 1.5248363 1.5247523 1.5247608 1.5247994 1.5247829 1.5255035 1.5253357 1.5253827 1.5254305 1.5252884 1.5254259 1.5253197 1.5253193 1.5221964 1.5221973 1.5222115 1.5222125 1.5222282 1.5222281 1.5222108 1.5222109 1.5221265 1.5221166 1.5221251 1.5221357 1.5222013 1.5222003 1.5222387 1.5222397 1.5221866 1.522183 1.5222199 1.5222233 1.5219886 1.5220345 1.5219944 1.5220492 1.5221719 1.5221803 1.5221576 1.5221642 1.5220892 1.5219676 1.5219693 1.5220968 1.5221567 1.522147 1.5221792 1.5221913 1.5219824 1.5219703 1.5220466 1.5220751 1.5220062 1.5220675 1.5220909 1.522025 1.522052 1.5221219 1.5220883 1.5221621 1.52223 1.5221911 1.5222174 1.5222007 1.5223023 1.5222526 1.522266 1.5223122 1.5221037 1.5220975 1.5221069 1.5221142 1.5220729 1.5219627 1.5219651 1.522081 1.5222649 1.5222329 1.5222617 1.5222339 1.5223529 1.5222999 1.5223029 1.5223512 1.5222841 1.5222512 1.5222822 1.5222511 1.5223799 1.5223231 1.5223244 1.522376 1.522483 1.5225723 1.5225515 1.5224608 1.5224513 1.5224615 1.5225484 1.5225365 1.522811 1.5226878 1.5228321 1.5226607 1.5226467 1.5227849 1.5226603 1.5228005 1.522562 1.52247 1.5225583 1.5224677 1.5226725 1.5228156 1.5228315 1.5226756 1.5225737 1.5224782 1.5225665 1.5224778 1.5226807 1.5228243 1.522689 1.522834 1.5230157 1.5232441 1.5232313 1.5229887 1.5239121 1.5235166 1.5235309 1.5238641 1.5229788 1.5229607 1.523201 1.5231795 1.5232686 1.5229976 1.5232238 1.5230163 1.5238869 1.5235088 1.5235628 1.5239206 1.5230191 1.5232497 1.5230067 1.5232344 1.5239035 1.5235215 1.5235395 1.5238927 1.5222375 1.5222344 1.5222543 1.5222503 1.5222405 1.5222354 1.5222222 1.5222178 1.522158 1.5221463 1.5221305 1.5221416 1.5222057 1.5222146 1.5222549 1.5222451 1.5222239 1.5222268 1.5222674 1.5222629 1.5222309 1.5222293 1.5222472 1.5222453 1.5222559 1.522255 1.522238 1.5222374 1.5221539 1.5221428 1.5221485 1.5221598 1.5222286 1.5222283 1.5222682 1.5222679 1.5222179 1.5222176 1.522258 1.5222571 1.5222781 1.522273 1.5223096 1.5223027 1.5223417 1.5224078 1.522391 1.5223509 1.5222644 1.5222588 1.5222894 1.5222959 1.5223368 1.5223292 1.5223885 1.5223795 1.5223006 1.5222706 1.522302 1.5222679 1.5223433 1.5223956 1.5223952 1.5223403 1.5223118 1.5222794 1.5223108 1.5222784 1.5223519 1.5224041 1.5223525 1.5224042 1.5221321 1.5221213 1.5221262 1.522137 1.5221093 1.5221243 1.522135 1.5221194 1.5225024 1.5224171 1.5224991 1.5224142 1.5226052 1.5227383 1.5227546 1.5226087 1.5224434 1.5225299 1.5224486 1.5225366 1.5226504 1.5227934 1.5226418 1.5227827 1.5222919 1.5221376 1.5222027 1.5222157 1.5222894 1.5223848 1.5224004 1.5225027 1.5224574 1.5223626 1.5224401 1.5223725 1.52268 1.5225409 1.5225597 1.5226888 1.522862 1.5225442 1.5227258 1.5226541 1.5229574 1.5231061 1.5232415 1.523404 1.5228541 1.5230605 1.5228444 1.5230497 1.5236543 1.5233087 1.5233203 1.5236378 1.5231638 1.5229073 1.5231176 1.5229275 1.5237356 1.5233828 1.5234394 1.5237754 1.5229628 1.5231877 1.522975 1.5232012 1.5238653 1.5234861 1.523471 1.5238172 1.5220746 1.5220843 1.5220929 1.5220815 1.5220852 1.5220802 1.5220894 1.5220943 1.5221103 1.5220995 1.5221043 1.5221149 1.5221133 1.5221026 1.5220898 1.522099 1.5220628 1.5220579 1.5220669 1.5220719 1.5220378 1.5219547 1.5219553 1.5220458 1.5220547 1.5219572 1.5219596 1.5220637 1.5220872 1.5220768 1.522082 1.5220927 1.5249441 1.5243213 1.5248424 1.5243636 1.5243432 1.5243309 1.5248718 1.5248559 1.5254705 1.526218 1.5255903 1.5263589 1.5254902 1.5263411 1.5262461 1.5255087 1.5271065 1.5272722 1.5282975 1.5281001 1.5292334 1.5304812 1.5308855 1.5294625 1.5282597 1.5272582 1.5282895 1.5271471 1.5294665 1.5294264 1.5307772 1.5307141 1.524861 1.524349 1.524872 1.5242949 1.5255045 1.5262578 1.5259991 1.5268544 1.5273722 1.5263895 1.5267295 1.5266966 1.5276362 1.5276692 1.5296757 1.5278366 1.528924 1.5284048 1.5287418 1.5299252 1.5287055 1.5298935 1.5241415 1.5241919 1.5246289 1.5246905 1.525293 1.5260103 1.5252162 1.5259159 1.524812 1.5243006 1.5248222 1.5242469 1.5254513 1.5262013 1.5262627 1.5254421 1.524264 1.5235981 1.5240283 1.523775 1.524551 1.5251777 1.5255247 1.5248106 1.5245509 1.5240511 1.5245282 1.5240316 1.5251046 1.5257944 1.5251303 1.5258222 1.5267501 1.5276871 1.5279133 1.5268624 1.5270919 1.528094 1.5271642 1.5281756 1.5303773 1.528757 1.5299385 1.5290194 1.5293276 1.5292338 1.530503 1.5305917 1.5312566 1.5326452 1.5317504 1.5331923 1.5347348 1.5362335 1.5341242 1.5355638 1.5319839 1.5318903 1.5333514 1.5334376 1.5349736 1.5364532 1.5349007 1.5364083 1.5370386 1.5384534 1.5377632 1.5392308 1.5410087 1.5401556 1.537944 1.5394155 1.5379486 1.5393661 1.5410687 1.5411823 1.5301394 1.5309648 1.5314167 1.5323144 1.5337514 1.5351391 1.5327725 1.5340862 1.5312077 1.5325929 1.5327558 1.5312292 1.5358382 1.5340667 1.5355074 1.5342189 1.5354293 1.536549 1.5367092 1.5378911 1.5395072 1.5382328 1.5369786 1.5383941 1.5388969 1.5372892 1.5400904 1.5405592 1.5368898 1.5351969 1.5356441 1.5372178 1.5334646 1.531858 1.5323257 1.5338374 1.5322142 1.5337326 1.5321317 1.5226216 1.5227088 1.5226131 1.5227068 1.5216032 1.5215884 1.5215682 1.5215675 1.521582 1.5215927 1.5215748 1.5215585 1.5215581 1.5215459 1.5215425 1.521557 1.5215434 1.5215441 1.5215361 1.5215342 1.5215339 1.5215433 1.5215425 1.5215343 1.5215301 1.5215066 1.521514 1.5215121 1.5215035 1.5218794 1.5218794 1.5219778 1.5219786 1.52188 1.5218659 1.5219413 1.5219714 1.5220088 1.5219672 1.5219749 1.5220249 1.5220369 1.5220195 1.5220206 1.5220402 1.5220472 1.5220431 1.5220451 1.5220496 1.5220288 1.5219725 1.5219661 1.5220287 1.5220292 1.5219603 1.5219567 1.5220323 1.5220511 1.5220474 1.522052 1.5220564 1.5220728 1.5220677 1.5220728 1.5220783 1.5220647 1.5220619 1.5220654 1.52207 1.5220616 1.5220659 1.5220701 1.5220648 1.5220777 1.5220736 1.522067 1.5220702 1.5218841 1.5218862 1.5219906 1.5219872 1.5218837 1.5218848 1.5219883 1.5219884 1.5220544 1.5220335 1.5220343 1.5220571 1.5220582 1.5220366 1.5220323 1.5220544 1.5218346 1.5218438 1.5219416 1.5219335 1.5220081 1.5219864 1.5219798 1.5220037 1.5220021 1.5219795 1.5219749 1.5219977 1.5220144 1.5220147 1.5220109 1.5220103 1.5220163 1.5220164 1.5220125 1.5220136 1.5220049 1.5220099 1.5220105 1.5220045 1.5220062 1.5220086 1.5220013 1.5219981 1.5219121 1.5219177 1.5207538 1.5206227 1.520813 1.5206623 1.5208349 1.5207553 1.520829 1.5206322 1.5206656 1.5208334 1.5210923 1.5220765 1.5219461 1.5221045 1.5222465 1.5226226 1.522461 1.5208483 1.5212084 1.5212527 1.5211089 1.5210347 1.5227296 1.5226857 1.5229276 1.5228121 1.5226179 1.5227078 1.5227965 1.5225201 1.5226416 1.5225863 1.5223908 1.5224285 1.5206107 1.5209161 1.5209216 1.5209552 1.5209612 1.5225815 1.522636 1.5226189 1.5226127 1.5223166 1.5225303 1.5225058 1.5223111 1.5224957 1.5225643 1.5223356 1.5222818 1.5226339 1.5226597 1.5225201 1.5225835 1.5206118 1.5209032 1.5209302 1.5209705 1.5209434 1.5225744 1.522546 1.5223292 1.5223547 1.522424 1.5222265 1.5222866 1.5224773 1.5228354 1.5229888 1.5226209 1.5226622 1.5208645 1.5210346 1.5210993 1.5212902 1.5212645 1.5223343 1.5225737 1.5224954 1.5223722 1.5227463 1.5229272 1.5226909 1.5225487 1.5291567 1.5483806 1.5288034 1.5472158 1.5741788 1.5733148 1.5719387 1.5717394 1.5290037 1.5472041 1.5290926 1.54805 1.5708822 1.571902 1.5731844 1.5729059 1.528854 1.5475187 1.5290314 1.5482526 1.571814 1.5726019 1.5738936 1.573449 1.5289726 1.5482663 1.5290144 1.5479368 1.5733944 1.5740399 1.5724198 1.5735547 1.5916453 1.5928127 1.5943639 1.593601 1.5942371 1.5923621 1.5935308 1.594664 1.6130821 1.6114822 1.6478007 1.650402 1.628527 1.6634412 1.6670468 1.6323892 1.6138009 1.6146951 1.6522944 1.6512208 1.6667292 1.6675063 1.6316011 1.6311265 1.6136858 1.6152412 1.6532694 1.6508911 1.6654182 1.6691501 1.6336303 1.6291287 1.6532234 1.6147797 1.6123938 1.6494159 1.629726 1.6666916 1.6632784 1.6257256 1.5903597 1.5918681 1.5935895 1.5928966 1.5935171 1.594625 1.5922123 1.591386 1.6118398 1.6098818 1.6484063 1.645563 1.6128672 1.6137556 1.6495273 1.6507395 1.6659579 1.6294762 1.6323051 1.6664395 1.6639358 1.659336 1.6223577 1.628161 1.6670897 1.6690192 1.6329599 1.6312625 1.6312695 1.666371 1.6651307 1.6303096 1.6149277 1.6135384 1.6521476 1.6501845 1.6111298 1.6123648 1.6474998 1.6493003 1.5290419 1.5479265 1.5291909 1.5488378 1.5747446 1.5743106 1.5734702 1.5726791 1.5290261 1.5484188 1.5285626 1.5470024 1.5722895 1.5710849 1.5738312 1.5743649 1.5289676 1.5480456 1.5286563 1.5471575 1.5736363 1.5733454 1.5715757 1.5721846 1.5291071 1.5482063 1.5479948 1.5731899 1.5724991 1.5728384 1.5741318 1.5292466 1.594942 1.5929526 1.5936218 1.5924388 1.6151674 1.614482 1.6524635 1.6531847 1.6493857 1.6118666 1.6133057 1.6512683 1.6292372 1.6650785 1.6690097 1.6343246 1.6322414 1.6684459 1.6680387 1.6318573 1.6132276 1.6156932 1.6542351 1.6506917 1.6301351 1.6658745 1.6706895 1.6350896 1.6303678 1.6674466 1.6639757 1.625675 1.6141057 1.612479 1.6494143 1.6519272 1.5913461 1.5924059 1.5941023 1.5935794 1.5908186 1.592451 1.5944255 1.5948442 1.5948287 1.5954581 1.5940147 1.5926826 1.6478611 1.6107257 1.6127119 1.6502723 1.6152958 1.6149086 1.6530175 1.6529136 1.6708476 1.6356771 1.6343109 1.6696962 1.6282849 1.6634837 1.6702657 1.6378129 1.6145214 1.6127908 1.6501626 1.6525841 1.6702617 1.6732205 1.6380441 1.6337101 1.6327154 1.6683313 1.6658149 1.6296664 1.616104 1.6152769 1.6545743 1.6531516 1.5223624 1.5224133 1.5225434 1.5225072 1.5232772 1.5232651 1.5233698 1.5233802 1.5234664 1.5234485 1.5235055 1.5235145 1.5238039 1.52374 1.5237141 1.5237664 1.52355 1.5235331 1.5236593 1.5236726 1.5301618 1.5262423 1.5264371 1.5264521 1.5262157 1.5260212 1.525944 1.5261026 1.5262094 1.5305803 1.5263659 1.5261492 1.5261867 1.5263658 1.526476 1.5262491 1.5262713 1.5264599 1.5304301 1.5304421 1.5225778 1.5226335 1.5225747 1.5235728 1.5235607 1.5235739 1.5440262 1.5487607 1.5496899 1.54444 1.5640146 1.5653184 1.5826795 1.581187 1.5721369 1.5729767 1.5482098 1.5492486 1.5440628 1.543404 1.5630885 1.5646824 1.5712633 1.572428 1.5818159 1.5798666 1.5711396 1.543245 1.5441129 1.5647022 1.5627819 1.5818347 1.5797044 1.5721127 1.5478217 1.549161 1.5738434 1.5448846 1.5658102 1.5647424 1.5444134 1.5730626 1.5819644 1.5832863 1.5492537 1.5500067 1.5936233 1.5954881 1.5973852 1.5960225 1.5949972 1.5964532 1.5957058 1.5936601 1.635035 1.6301465 1.6319773 1.6276023 1.6542369 1.6572156 1.6321772 1.662438 1.6653218 1.634927 1.6602044 1.6328272 1.637225 1.6349065 1.630437 1.6573963 1.6655423 1.6666914 1.6350681 1.6355492 1.6566951 1.6297221 1.6336818 1.6359633 1.6311452 1.6581155 1.6581059 1.630788 1.6351703 1.6317642 1.6274401 1.6541075 1.6333308 1.6638406 1.6653271 1.6346552 1.6622829 1.6645692 1.6336653 1.6326752 1.5206221 1.5206569 1.5226918 1.5226079 1.5226156 1.5226931 1.588311 1.5449381 1.5840693 1.5432117 1.5859579 1.5440081 1.5863775 1.5440924 1.5884281 1.5449168 1.5842461 1.5431233 1.5796591 1.5410265 1.5839595 1.5427519 1.5913993 1.5464725 1.5834879 1.543127 1.5875651 1.5445417 1.5891465 1.545188 1.5876402 1.5449767 1.5852634 1.5441101 1.5875785 1.5448411 1.5917941 1.5468714 1.6001878 1.5684527 1.566671 1.5985512 1.5992892 1.5682219 1.5686686 1.5995851 1.5991908 1.5659221 1.5631306 1.5963247 1.5669946 1.5993823 1.6005748 1.567735 1.5476277 1.5777114 1.5404103 1.5826555 1.5423974 1.586086 1.5437348 1.5839248 1.5428705 1.5853681 1.5434985 1.5871867 1.5444029 1.5861722 1.5439912 1.585562 1.5438647 1.5880592 1.5452313 1.5842356 1.5434443 1.5865414 1.5444637 1.5871396 1.5446884 1.5848074 1.5436545 1.5888604 1.5455245 1.5852249 1.543761 1.5816708 1.5422941 1.5222447 1.5221178 1.5221115 1.5221103 1.522116 1.522099 1.5220969 1.5220961 1.522098 1.5220684 1.5220821 1.522083 1.5220706 1.522101 1.5220952 1.5220815 1.5225087 1.5225572 1.5222552 1.5222447 1.5224328 1.5224131 1.5224212 1.5224088 1.5222501 1.5222434 1.5221277 1.5221216 1.5221184 1.5221243 1.5221104 1.5221085 1.5221054 1.5221074 1.5221033 1.5221051 1.5221066 1.5221051 1.5221247 1.5221183 1.5221166 1.5221225 1.5224978 1.5225124 1.5225591 1.5225426 1.5225172 1.522548 1.5225984 1.5225634 1.5225683 1.5224991 1.5225865 1.5224763 1.5227001 1.5228435 1.5228339 1.5226793 1.5225682 1.5224893 1.5225793 1.5224738 1.522697 1.5220988 1.5220984 1.5220952 1.5220959 1.5220895 1.5220901 1.5220868 1.5220865 1.5220839 1.5220854 1.5220843 1.5220832 1.5220941 1.5220935 1.5220922 1.5220925 1.5220504 1.5220635 1.5220618 1.52205 1.5220774 1.5220774 1.5220764 1.5220766 1.5220861 1.5220854 1.5220854 1.5220856 1.5220709 1.5220709 1.5220579 1.5220586 1.5219682 1.5219672 1.5219586 1.5219602 1.5219586 1.5219587 1.5219501 1.5219508 1.521952 1.5219614 1.5219511 1.5219427 1.5219467 1.5219532 1.5219439 1.5219385 1.5219514 1.5219532 1.5219442 1.5219435 1.5219473 1.5219507 1.5219417 1.5219391 1.5220819 1.5220841 1.5220806 1.5220787 1.5220765 1.5220803 1.5220764 1.5220731 1.5220733 1.522075 1.522071 1.5220697 1.5220764 1.5220785 1.5220772 1.522075 1.5220735 1.52208 1.5220757 1.5220697 1.5220745 1.5220848 1.5220804 1.5220707 1.5220772 1.5220795 1.5220692 1.5220675 1.5220679 1.5220743 1.5220725 1.5220664 1.5220525 1.522063 1.5220519 1.5220421 1.5220733 1.522072 1.5220619 1.5220632 1.5220603 1.5220665 1.5220677 1.5220611 1.5220487 1.522056 1.5220449 1.5220384 1.5220687 1.5220708 1.5220708 1.5220687 1.522063 1.5220665 1.522067 1.5220633 1.522043 1.5220547 1.52205 1.5220392 1.5220546 1.5220572 1.522045 1.522043 1.5317637 1.5333498 1.5341718 1.5323328 1.5314475 1.5315266 1.5331301 1.532993 1.5378855 1.5350364 1.5366661 1.5359388 1.5346281 1.5362134 1.5348357 1.5365071 1.534365 1.5311517 1.5326229 1.5325474 1.534182 1.5356843 1.5379642 1.5360869 1.5332567 1.5317175 1.5333306 1.5315273 1.5350436 1.5367177 1.5349044 1.5365027 1.5414708 1.5372045 1.5386446 1.5396326 1.5403452 1.5433402 1.5381278 1.5396733 1.5384165 1.5400485 1.5419824 1.5414983 1.5383176 1.5398905 1.5415675 1.5396354 1.5435638 1.5417612 1.5382064 1.5378145 1.5398415 1.5393381 1.5411391 1.5417743 1.5371831 1.5386405 1.5400683 1.5382946 1.5377374 1.5375709 1.5391434 1.5392471 1.5403697 1.5418892 1.541036 1.5410031 1.5309664 1.5324337 1.533245 1.5315547 1.5301113 1.53074 1.5321773 1.5314297 1.5366498 1.533994 1.5355021 1.5348656 1.53283 1.5341931 1.5337006 1.5351878 1.5330558 1.5309207 1.5323819 1.5313643 1.5339362 1.5354367 1.5364532 1.5346754 1.5327789 1.5310154 1.5325268 1.5311096 1.5341391 1.535722 1.5343733 1.5359236 1.5370399 1.5385041 1.5400241 1.5382524 1.5366992 1.5381516 1.5355738 1.5368927 1.540249 1.5418511 1.5384504 1.5398755 1.5272232 1.526033 1.5270211 1.5261261 1.5281501 1.5293915 1.5297782 1.5283725 1.5271422 1.5260454 1.5270445 1.5260528 1.5281865 1.5294537 1.5282859 1.5295517 1.5232234 1.523733 1.5237486 1.5231982 1.5232293 1.5237378 1.5236983 1.5231551 1.5243478 1.5250801 1.5251614 1.5243619 1.5243517 1.5250859 1.5250967 1.5243041 1.523291 1.523797 1.5239365 1.523369 1.523281 1.523369 1.5238606 1.5237357 1.5244075 1.525135 1.5253871 1.5245667 1.5242856 1.5244542 1.5251642 1.5249411 1.5260009 1.526974 1.5273916 1.526286 1.525725 1.5260085 1.5269601 1.5266052 1.5294331 1.5299643 1.5280829 1.5285489 1.5276194 1.5280466 1.5292544 1.5287342 1.5280222 1.5261797 1.5271885 1.526805 1.5283382 1.5296017 1.5308248 1.5292863 1.5263384 1.5273912 1.5263772 1.5274532 1.5286809 1.5300395 1.5285872 1.5299055 1.5234017 1.5239603 1.5240414 1.5234243 1.5233103 1.523859 1.5238513 1.523267 1.5256216 1.5246329 1.5254293 1.5247272 1.5253523 1.5245207 1.5253117 1.5245019 1.5241378 1.5232933 1.5238185 1.523512 1.5244512 1.5252027 1.5257278 1.5248295 1.5238874 1.5233354 1.5238859 1.5232975 1.5245502 1.525343 1.5245418 1.5253206 1.5263737 1.5274321 1.5278046 1.5266 1.5262533 1.5273147 1.5262835 1.5273286 1.5301039 1.5306032 1.5286369 1.5290636 1.5285215 1.5285251 1.5298756 1.5298337 1.5223573 1.5224319 1.5221248 1.5226895 1.5229996 1.5229874 1.522628 1.5219903 1.5222114 1.5220409 1.5222649 1.5225467 1.5228887 1.52249 1.5228295 1.5214475 1.5215299 1.5215054 1.5214214 1.5214143 1.5214239 1.5215053 1.5214942 1.5217514 1.5216376 1.5217739 1.521608 1.5215993 1.5217333 1.5216119 1.5217474 1.5219409 1.5215589 1.5214715 1.5218469 1.5216651 1.5218001 1.5219486 1.5221673 1.5221574 1.5219222 1.5219211 1.5221394 1.5219053 1.5221213 1.5228133 1.5228041 1.5224437 1.5224335 1.5223956 1.5224158 1.5227546 1.5227306 1.5212677 1.5212581 1.5212939 1.5212823 1.5213149 1.5213794 1.5213582 1.521329 1.5212495 1.5212448 1.5212698 1.5212755 1.5213105 1.5213036 1.5213567 1.5213485 1.5213257 1.5213602 1.5214055 1.5212318 1.5212254 1.5212466 1.5212388 1.5212286 1.521225 1.521213 1.5212101 1.5212005 1.521205 1.5211887 1.521192 1.5211833 1.5211786 1.5212038 1.5212134 1.5212067 1.5211947 1.5211954 1.5211712 1.5211687 1.5211864 1.5211834 1.5211833 1.5211811 1.5211676 1.5211662 1.5211631 1.5211587 1.5211585 1.5211625 1.5211453 1.5211442 1.5211342 1.521134 1.5211436 1.5211481 1.5211394 1.5211343 1.5211942 1.5211887 1.5212102 1.5212035 1.5211924 1.5211883 1.5211766 1.5211734 1.5211821 1.521177 1.5211664 1.5211706 1.5211515 1.5211551 1.5211447 1.5211399 1.5211636 1.5211715 1.5211645 1.5211541 1.5212313 1.5212233 1.5212502 1.5212596 1.5212979 1.5212868 1.5213481 1.5213352 1.5212333 1.5212116 1.5212377 1.5212063 1.5213246 1.5212731 1.5212674 1.521313 1.5211718 1.5211665 1.5211572 1.5211615 1.5211495 1.52115 1.5211541 1.5211538 1.5212322 1.5212066 1.521234 1.5212029 1.5213253 1.5212713 1.5212692 1.5213182 1.5212262 1.5212025 1.5212288 1.5211992 1.5213168 1.5212646 1.5212604 1.521306 1.5214767 1.5213918 1.5214784 1.5213835 1.5215913 1.5217343 1.5217472 1.5215899 1.5213669 1.5214465 1.5213812 1.5214653 1.5215754 1.5217156 1.5215507 1.5216837 1.5222 1.521954 1.5221845 1.5219454 1.5228618 1.5224749 1.5224972 1.5228605 1.5218956 1.5221199 1.521928 1.5221574 1.5228356 1.5224475 1.522403 1.5227506 1.5214916 1.5214147 1.5215009 1.5213996 1.5216132 1.5216034 1.5217552 1.5217455 1.5214611 1.5213882 1.5214711 1.5213738 1.5217307 1.5215796 1.5215675 1.5217035 1.52219 1.521917 1.5221452 1.5219338 1.5228175 1.5224331 1.5224885 1.522853 1.5218548 1.52207 1.521895 1.5221203 1.5227871 1.5224053 1.5223419 1.5226757 1.5211444 1.5211449 1.521142 1.5211417 1.5211534 1.5211595 1.5211574 1.5211502 1.5211503 1.5211584 1.5211616 1.5211528 1.5211457 1.5211425 1.5211423 1.521145 1.5222689 1.5219486 1.5221784 1.5220008 1.5224675 1.5228179 1.5229939 1.5225803 1.5219316 1.522164 1.5219441 1.5221801 1.522478 1.5228411 1.5224566 1.5228129 1.5214064 1.5214975 1.5214818 1.5213876 1.5213922 1.5213967 1.5214841 1.5214775 1.5217565 1.5216166 1.5217669 1.5215966 1.5215896 1.5217323 1.5215985 1.5217441 1.5215068 1.5214053 1.5214926 1.5214089 1.5216061 1.5217491 1.5217886 1.521625 1.5214764 1.5213945 1.5214819 1.5213838 1.5215961 1.521741 1.5215886 1.5217311 1.5219586 1.5221977 1.5222058 1.521946 1.5219304 1.522164 1.5219149 1.5221439 1.5228981 1.5229147 1.5224982 1.5225094 1.5224336 1.5224587 1.5228193 1.5227868 1.5212095 1.5212052 1.5212374 1.5212318 1.5212682 1.5213311 1.5213166 1.5212756 1.521212 1.5212124 1.5212385 1.5212389 1.5212757 1.5212742 1.5213247 1.521322 1.5212421 1.5212159 1.521244 1.5212121 1.5212822 1.5213325 1.5213348 1.52128 1.5212307 1.5212075 1.5212351 1.5212023 1.5212725 1.5213221 1.5212665 1.5213141 1.5211785 1.5211758 1.5211936 1.5211905 1.5211858 1.521182 1.5211698 1.5211669 1.5211607 1.5211663 1.5211698 1.5211641 1.5211528 1.5211564 1.5211478 1.5211429 1.5211444 1.5211465 1.5211369 1.5211331 1.5211727 1.5211701 1.5211874 1.5211843 1.521191 1.5211918 1.5211757 1.5211767 1.5211671 1.5211635 1.5211702 1.5211736 1.5211542 1.5211509 1.52114 1.5211433 1.5211459 1.5211488 1.5211394 1.5211353 1.521162 1.5211575 1.5211527 1.5211566 1.5211618 1.5211561 1.5211597 1.521166 1.5212764 1.5212851 1.52129 1.5213002 1.5214566 1.5215061 1.5214435 1.5214885 1.5212696 1.5212637 1.521429 1.521439 1.5214886 1.521407 1.5214018 1.5215001 1.5212654 1.5212515 1.5212437 1.5212606 1.5212169 1.5212163 1.5212308 1.5212301 1.5212396 1.5212405 1.5212252 1.5212263 1.5212106 1.5212067 1.5212171 1.5212213 1.5212071 1.5212037 1.5211935 1.521197 1.5211958 1.5211956 1.5211865 1.5211862 1.5212497 1.5212484 1.5212733 1.5212757 1.5213113 1.5213074 1.5213583 1.5213527 1.5212839 1.5212574 1.5212818 1.5212579 1.5213646 1.5213154 1.521317 1.5213612 1.5212022 1.5211971 1.521206 1.5212116 1.5214047 1.5212498 1.521257 1.5214175 1.5213492 1.5213084 1.521334 1.52132 1.5214204 1.5213691 1.5213858 1.5214339 1.5215553 1.5214731 1.5214966 1.5215268 1.5215779 1.5215294 1.5215897 1.521634 1.5211528 1.5211488 1.5211451 1.5211483 1.5211463 1.5211466 1.5211446 1.5211432 1.5211515 1.5211473 1.5211462 1.5211509 1.5211518 1.521148 1.5211531 1.5211569 1.5213526 1.5212208 1.5212253 1.5213634 1.5211875 1.5211812 1.5211824 1.5211893 1.5211914 1.521186 1.5211937 1.5211993 1.521241 1.5212323 1.5213765 1.5213903 1.5215879 1.5214838 1.5215662 1.5214976 1.5216739 1.5218098 1.5218481 1.5216973 1.5216918 1.521766 1.5216377 1.5217155 1.5218173 1.5219463 1.521862 1.5219828 1.5222707 1.5219833 1.5221996 1.5220267 1.5228349 1.5224722 1.5225547 1.5229 1.5221374 1.5223306 1.5221112 1.5223176 1.5229279 1.5225787 1.5225744 1.5228728 1.521499 1.5214211 1.5215025 1.521413 1.521609 1.5216037 1.5217438 1.5217365 1.5215043 1.5214254 1.5215048 1.52142 1.5217532 1.5216088 1.5216071 1.5217379 1.5221398 1.5219162 1.5221315 1.5219066 1.5227655 1.5224034 1.5224124 1.5227451 1.5219061 1.5221171 1.5219246 1.5221393 1.5227725 1.5224105 1.5223833 1.5227094 1.5229633 1.5229773 1.5229024 1.5228525 1.5232152 1.5232933 1.523189 1.5233021 1.5236687 1.5235525 1.5236554 1.5235578 1.5239807 1.5239562 1.5205939 1.5205973 1.5220363 1.5220355 1.5220526 1.5220426 1.5220465 1.5220546 1.522053 1.5220422 1.5220416 1.5220529 1.5205672 1.5206924 1.5205701 1.5207024 1.5220586 1.5220577 1.5220469 1.5220281 1.5220627 1.5220468 1.5220506 1.522064 1.5220661 1.5220505 1.5220503 1.5220656 1.5220507 1.5220359 1.522035 1.5220497 1.5220369 1.522021 1.5220179 1.5219994 1.5212722 1.5213362 1.5212709 1.5216016 1.5214342 1.5212606 1.5213265 1.5213232 1.5212589 1.5214246 1.5215937 1.5215862 1.5214199 1.5211661 1.5211788 1.5211747 1.5211611 1.5211992 1.5212295 1.5212267 1.521196 1.5212154 1.5212171 1.5211867 1.5211853 1.5211522 1.5211657 1.5211649 1.5211517 1.5211515 1.5211626 1.5211622 1.5211502 1.5211819 1.521212 1.521213 1.5211825 1.5212165 1.5212132 1.5211832 1.5211867 1.5211522 1.5211636 1.5211675 1.5211562 1.5212569 1.5213241 1.5213264 1.5212593 1.5214231 1.5215918 1.5215953 1.5214262 1.5212584 1.5213263 1.5213287 1.5212621 1.5214265 1.5215975 1.5215958 1.5214278 1.5211836 1.5211922 1.5211982 1.5211896 1.5212092 1.5212372 1.5212432 1.5212153 1.5213697 1.5212655 1.5212403 1.5213527 1.52122 1.5212258 1.5213454 1.5213456 1.5212804 1.5213459 1.5213516 1.5212871 1.5214426 1.5216055 1.5216034 1.5214464 1.5213065 1.521369 1.521447 1.5214005 1.521458 1.5216046 1.5216339 1.5215152 1.5310562 1.532557 1.5313207 1.5328497 1.5344838 1.5341543 1.5357068 1.5360673 1.5310471 1.5313396 1.5325643 1.5328406 1.5359671 1.5344333 1.5359683 1.5341799 1.5300331 1.5308097 1.5312969 1.5321874 1.5336502 1.5350589 1.5326368 1.5339275 1.5308462 1.5322899 1.5329112 1.5312748 1.5361842 1.5338226 1.5353131 1.5344663 1.535243 1.5364945 1.5380714 1.536486 1.5368271 1.5382821 1.5377097 1.5391513 1.5379821 1.5396974 1.5408707 1.5400089 1.5372841 1.5387891 1.5394823 1.5376835 1.5375771 1.5391252 1.5392352 1.5375202 1.540577 1.5413374 1.5409595 1.5409775 1.5233805 1.5238336 1.5239352 1.5233979 1.5233119 1.5238192 1.5238053 1.5232507 1.5253069 1.524377 1.5250219 1.5245304 1.52523 1.5244304 1.52516 1.5244222 1.5260694 1.5270735 1.5262273 1.5272513 1.5284243 1.5297223 1.5282206 1.529488 1.5260146 1.5270276 1.5271856 1.5260826 1.5297553 1.5281858 1.5294665 1.5283417 1.525789 1.5261536 1.5266464 1.5270969 1.5281713 1.5293545 1.5276252 1.5287023 1.5260278 1.5270008 1.5272021 1.5261127 1.5297258 1.5281099 1.529333 1.5283397 1.5232381 1.5237493 1.5237916 1.5232302 1.5231764 1.5236857 1.5236969 1.5231472 1.525238 1.5243663 1.5251036 1.5244175 1.5243028 1.5250433 1.5251141 1.5243109 1.5232593 1.5237905 1.5238967 1.5233044 1.523092 1.5232263 1.5237557 1.5235926 1.5244309 1.5251963 1.5254149 1.5245557 1.5241992 1.5243944 1.5251593 1.5249231 1.5233047 1.5238365 1.5239025 1.523311 1.523281 1.5238173 1.5237515 1.5231822 1.5244766 1.52524 1.5254203 1.5245612 1.5244645 1.5252395 1.5252193 1.5243871 1.5261492 1.5271724 1.5275238 1.5263625 1.5261621 1.5272034 1.5272658 1.5261343 1.5283367 1.5296239 1.5302191 1.528736 1.5283916 1.5297193 1.5299016 1.5284508 1.5261045 1.5271277 1.5275171 1.5263565 1.5257885 1.526069 1.5270958 1.5267623 1.5282944 1.5295876 1.5302144 1.5287304 1.5278783 1.5282664 1.5295707 1.5291087 1.5334654 1.5310246 1.5325415 1.531709 1.5341564 1.5357281 1.5369906 1.5351444 1.5304731 1.5319122 1.5310075 1.5325326 1.5341549 1.5357434 1.5334323 1.5349132 1.5404948 1.5373332 1.5388665 1.5386525 1.5406873 1.5423842 1.5364187 1.537855 1.5373552 1.538904 1.5407366 1.5395331 1.533473 1.5310548 1.5325588 1.5317153 1.5341544 1.5351519 1.5356995 1.536777 1.5330906 1.5311881 1.5327512 1.5313656 1.5362783 1.534421 1.5347377 1.5363484 1.5372732 1.538777 1.5402535 1.5384281 1.5379904 1.537964 1.5395927 1.5395525 1.5405531 1.5421255 1.541405 1.541518 1.522273 1.5222749 1.5224286 1.5224288 1.5224502 1.5224484 1.5222924 1.5222924 1.5221628 1.5221579 1.5221621 1.5221662 1.5221489 1.5221479 1.5221523 1.5221527 1.5221642 1.5221624 1.5221632 1.5221649 1.5221785 1.522173 1.5221748 1.5221796 1.5225466 1.5225393 1.5225819 1.5225878 1.5225261 1.5225227 1.5225655 1.5225674 1.5220055 1.5221162 1.5220915 1.5222415 1.5223667 1.5223853 1.522226 1.52224 1.5221264 1.5221183 1.5221181 1.5221259 1.521964 1.521964 1.5220315 1.5220255 1.5219653 1.5219636 1.5220326 1.52203 1.5221291 1.5221252 1.5221341 1.5221374 1.5224757 1.522441 1.5224777 1.5225143 1.5220758 1.5220504 1.5223226 1.5223499 1.522141 1.5222935 1.522364 1.5222094 1.5223014 1.5224571 1.5224209 1.5225766 1.5225237 1.522424 1.5225003 1.5224415 1.5227415 1.5226007 1.5226237 1.522752 1.5221501 1.5221484 1.5221463 1.5221482 1.5221416 1.5221368 1.5221345 1.5221391 1.5221403 1.5221408 1.5221457 1.5221445 1.5221534 1.5221537 1.5221559 1.5221552 1.5221176 1.5221112 1.5221081 1.5221146 1.5219658 1.5219675 1.5220343 1.5220262 1.5219639 1.5219649 1.5220321 1.5220248 1.5221119 1.5221133 1.5221209 1.522119 1.5225742 1.5224893 1.5225703 1.5224877 1.5228243 1.5226763 1.5226791 1.5228136 1.5225973 1.5225131 1.5225968 1.5225089 1.52286 1.5227065 1.5227052 1.5228439 1.5231048 1.5233431 1.5232832 1.52304 1.5230401 1.5230546 1.5232828 1.5232673 1.5239634 1.5236461 1.5240214 1.5235705 1.5235567 1.5239159 1.523572 1.5239319 1.5233348 1.5230943 1.5233326 1.5230795 1.5236359 1.5240122 1.5240465 1.5236359 1.5233212 1.523076 1.5233088 1.5230684 1.5236058 1.523976 1.5236195 1.5239912 1.5244897 1.5250651 1.5250295 1.5244172 1.5267022 1.5257318 1.5257716 1.5265765 1.5243816 1.524364 1.524935 1.524914 1.5251618 1.5244807 1.5250554 1.5245212 1.5266935 1.5257639 1.5258893 1.5267632 1.5244563 1.5250284 1.5244379 1.5250077 1.5266389 1.525712 1.5257322 1.5265805 1.5223241 1.5223165 1.522488 1.5224742 1.5224718 1.5224602 1.5223104 1.5222992 1.522204 1.5221986 1.522197 1.5222018 1.5221877 1.5221865 1.5221853 1.5221862 1.5221672 1.5221751 1.5221755 1.5221685 1.5221914 1.5221862 1.5221784 1.5221837 1.5225579 1.5225775 1.5226194 1.5226007 1.5225816 1.5225958 1.5226394 1.5226225 1.5223154 1.5223114 1.5224825 1.5224724 1.5224841 1.5224784 1.5223232 1.5223212 1.5221953 1.5221899 1.5221913 1.522196 1.5221796 1.5221784 1.5221805 1.5221811 1.52219 1.522189 1.5221897 1.5221909 1.5222056 1.5222001 1.5222013 1.5222062 1.5225823 1.5225883 1.5226302 1.5226227 1.5225836 1.5225906 1.5226357 1.5226254 1.5225518 1.522534 1.5226367 1.5226136 1.5227181 1.5229024 1.5228515 1.5227475 1.5225341 1.5225218 1.5226035 1.5226164 1.5227241 1.5227105 1.5228614 1.522847 1.5226223 1.5225475 1.5226339 1.5225333 1.5227471 1.5228912 1.5228816 1.5227305 1.5226273 1.5225468 1.5226301 1.5225389 1.5227393 1.5228789 1.522735 1.5228731 1.5221697 1.5221701 1.5221727 1.5221717 1.5221622 1.5221638 1.5221665 1.5221646 1.5221747 1.5221737 1.5221716 1.5221728 1.5221793 1.5221797 1.522181 1.5221803 1.5221515 1.5221598 1.5221575 1.5221503 1.5221706 1.5221714 1.5221692 1.5221689 1.522177 1.5221773 1.5221767 1.522176 1.5221652 1.5221659 1.5221581 1.522158 1.5232278 1.5230004 1.5232238 1.5229866 1.5235084 1.5238619 1.5239014 1.5235127 1.5230233 1.5232516 1.5230431 1.5232761 1.523573 1.5239429 1.5235428 1.5239059 1.5229482 1.5225763 1.5227754 1.5227313 1.5230314 1.5232059 1.5233515 1.5235283 1.5231475 1.5229093 1.5231227 1.5229169 1.5237675 1.5233952 1.5234201 1.5237609 1.5244823 1.523754 1.5242513 1.523933 1.5248687 1.5251108 1.5256121 1.525868 1.5241893 1.5247171 1.5241973 1.5247274 1.5262451 1.5253822 1.5253677 1.5261536 1.5249586 1.5243016 1.5248416 1.524351 1.5263852 1.5255083 1.525649 1.5264798 1.5243619 1.524924 1.5244039 1.5249718 1.5265944 1.5256725 1.5256167 1.526453 1.5221478 1.5221569 1.522146 1.5221379 1.5221658 1.5221665 1.5221561 1.5221558 1.522156 1.5221629 1.5221624 1.5221553 1.522145 1.5221524 1.5221436 1.5221371 1.5221696 1.5221695 1.522159 1.5221594 1.5221626 1.5221596 1.5221493 1.5221522 1.5221492 1.5221559 1.522159 1.5221518 1.5221587 1.5221659 1.5221665 1.5221593 1.5221563 1.5221594 1.522162 1.5221587 1.5221518 1.5221561 1.5221589 1.5221542 1.5221669 1.5221661 1.522161 1.522162 1.5221653 1.5221685 1.5221697 1.5221662 1.5221633 1.5221666 1.5221656 1.5221625 1.5221587 1.5221632 1.5221624 1.5221579 1.5221436 1.5221523 1.522147 1.5221395 1.5221512 1.5221546 1.5221463 1.5221436 1.5221429 1.522142 1.5221328 1.5221338 1.5221397 1.5221352 1.5221256 1.5221301 1.5221257 1.5221323 1.522137 1.5221298 1.5221337 1.5221401 1.5221413 1.5221348 1.5221148 1.522113 1.5221037 1.522106 1.5219747 1.5219802 1.5220511 1.5220378 1.5219713 1.5219752 1.5220446 1.5220334 1.5221033 1.5221102 1.5221133 1.5221066 1.5221137 1.5221095 1.5221039 1.5221086 1.5219692 1.521972 1.5220403 1.5220304 1.5219671 1.5219693 1.5220369 1.5220277 1.5221054 1.5221095 1.5221151 1.5221109 1.5221304 1.5221341 1.5221385 1.5221347 1.5221275 1.5221322 1.5221367 1.5221315 1.5221425 1.5221411 1.5221363 1.522138 1.5221405 1.5221436 1.5221455 1.5221421 1.5291823 1.5277301 1.5289582 1.5278162 1.5276761 1.5276071 1.5289088 1.5288231 1.5304073 1.5320762 1.5306634 1.5323683 1.5302638 1.5322085 1.5319272 1.5303634 1.5340122 1.5343454 1.5365664 1.5361789 1.5386144 1.5412974 1.5420706 1.5390512 1.5362629 1.5341846 1.5364069 1.5338645 1.5389077 1.538736 1.5416758 1.5414719 1.5277372 1.5289641 1.5275961 1.5304117 1.5320823 1.5322443 1.5342085 1.5351279 1.5329074 1.5332771 1.5332885 1.5353768 1.5353548 1.5402428 1.5364256 1.5388713 1.5374232 1.5376965 1.5402914 1.5377224 1.5403286 1.5273664 1.5274825 1.5285312 1.5286676 1.5300698 1.5316842 1.5299049 1.5314877 1.5287826 1.5276232 1.5288411 1.5274648 1.53028 1.5319402 1.5320309 1.530217 1.5279856 1.526518 1.527595 1.5267864 1.5288733 1.5303512 1.5309498 1.5292932 1.5283461 1.5272084 1.5283534 1.5271043 1.5297085 1.531277 1.5296998 1.5312638 1.533331 1.5354033 1.535866 1.5335552 1.5338666 1.5360377 1.5339711 1.5361517 1.5411774 1.5377356 1.5403182 1.538254 1.538603 1.5384739 1.5411748 1.5412979 1.5430629 1.5460622 1.5440109 1.5470932 1.5501426 1.5532093 1.5490129 1.5519786 1.5441667 1.5440499 1.5471815 1.5472636 1.550305 1.553343 1.550262 1.5533615 1.5548945 1.5576421 1.5562232 1.5590716 1.5624319 1.5608623 1.5564111 1.559289 1.556304 1.5590767 1.5623297 1.5626547 1.5414602 1.5429559 1.5442681 1.5459031 1.5487986 1.5516868 1.5470064 1.5497263 1.543103 1.5461293 1.5463347 1.5430298 1.5526316 1.5491083 1.5521077 1.5492741 1.5523791 1.5544979 1.5548463 1.5571229 1.5602218 1.5577424 1.5550581 1.5578423 1.558697 1.5555298 1.5611005 1.5618874 1.5543984 1.5509602 1.5517539 1.5549444 1.5475435 1.5441291 1.5450083 1.5482071 1.5446301 1.5478523 1.5443828 1.5226602 1.5225726 1.5226589 1.5225784 1.5227445 1.5227458 1.5227455 1.5227441 1.5226484 1.5225552 1.5225511 1.5226466 1.5227409 1.5227421 1.5227417 1.5227405 1.5216863 1.5216833 1.5216713 1.5216698 1.5216635 1.5216628 1.5216639 1.5216618 1.5217706 1.521773 1.5217691 1.521767 1.5217694 1.521768 1.5217699 1.5217661 1.5226611 1.5226574 1.5226562 1.5216302 1.5216261 1.521731 1.5217236 1.5226313 1.52258 1.5225784 1.5226317 1.522627 1.5225763 1.5225777 1.5226298 1.5224585 1.522565 1.5225696 1.5224642 1.5225714 1.5224611 1.5225682 1.5224636 1.5225535 1.5226049 1.5225569 1.5226054 1.5224838 1.5224371 1.5225306 1.5225809 1.5223271 1.5224294 1.5225195 1.5224097 1.5224366 1.5225422 1.5225433 1.5224368 1.5224101 1.5224056 1.522315 1.5223183 1.5222105 1.5222966 1.5223821 1.5222861 1.5222628 1.5221826 1.5221191 1.5221905 1.5222964 1.522291 1.5222248 1.522229 1.5223222 1.5223121 1.5222459 1.5222545 1.5223362 1.5224297 1.5224383 1.5223452 1.5224396 1.5224321 1.5223402 1.5223465 1.5223272 1.5223187 1.5222523 1.522259 1.5222463 1.5222392 1.5221946 1.5222 1.5222415 1.5222325 1.5221881 1.5221958 1.5221537 1.5221829 1.5221906 1.5221606 1.52216 1.5221895 1.5221947 1.5221643 1.5222144 1.5222094 1.5221653 1.5221691 1.5220548 1.5220981 1.5221742 1.5221239 1.5220147 1.5220411 1.522116 1.5220823 1.5221303 1.5221589 1.5221629 1.5221338 1.5221343 1.5221311 1.5221135 1.5221158 1.5219923 1.5220075 1.5220813 1.5220584 1.5219804 1.5219895 1.5220618 1.5220449 1.5221061 1.522118 1.5221203 1.5221078 1.5221286 1.5221414 1.5221462 1.5221329 1.5221364 1.5221548 1.5221613 1.5221417 1.5221648 1.5221613 1.5221426 1.5221451 1.5221348 1.5221474 1.5221494 1.522136 1.5221532 1.5221678 1.5221714 1.5221563 1.5221632 1.5221838 1.5221889 1.5221673 1.5221941 1.522194 1.5221733 1.5221734 1.522163 1.5221776 1.5221777 1.5221631 1.5221826 1.5222138 1.5222207 1.5221883 1.5222185 1.5222658 1.5222736 1.5222258 1.5222749 1.5222753 1.5222291 1.5222288 1.5221931 1.5222246 1.5222246 1.5221936 1.5222643 1.5222713 1.5222237 1.5222173 1.5222756 1.5222748 1.5222281 1.5222281 1.5221913 1.5222233 1.5222234 1.5221918 1.5221855 1.5222183 1.5222115 1.5221795 1.5221604 1.522175 1.5221742 1.5221599 1.5221709 1.5221918 1.5221919 1.5221709 1.5221782 1.5221855 1.5221636 1.5221566 1.5221512 1.5221666 1.5221584 1.5221436 1.5226621 1.5226093 1.5225927 1.5226528 1.5226621 1.522661 1.5226112 1.5226085 1.5226028 1.5224957 1.5226015 1.522498 1.5225878 1.5225997 1.5224953 1.5224796 1.5226003 1.5226631 1.5226123 1.5226568 1.5226585 1.5226582 1.5226071 1.5226058 1.5224905 1.5225977 1.5226013 1.5224936 1.5226028 1.5224993 1.5224877 1.5225967 1.5223557 1.5223469 1.5222792 1.5222863 1.5223686 1.5224637 1.5224706 1.5223756 1.5223765 1.5224721 1.5224649 1.5223721 1.5223548 1.5223569 1.5222891 1.5222873 1.5223578 1.5223566 1.5222889 1.5222888 1.522471 1.5223788 1.5223775 1.5224728 1.5224688 1.522375 1.5223632 1.5224577 1.5223458 1.5223551 1.5222858 1.5222778 1.5224189 1.5225086 1.5225696 1.5225281 1.5225595 1.5225798 1.522536 1.5225688 1.5225227 1.5225233 1.5224305 1.5225317 1.5224202 1.5224234 1.522524 1.5225132 1.5224118 1.5222937 1.522297 1.5222291 1.5222252 1.5224021 1.5224076 1.5223181 1.5223123 1.5223943 1.5224014 1.5223133 1.522306 1.5222897 1.5222943 1.5222267 1.5222222 1.5222901 1.5222874 1.5222197 1.522221 1.5223085 1.5223978 1.5223977 1.5223091 1.5223837 1.522393 1.5223042 1.522295 1.5222777 1.5222854 1.522217 1.5222098 1.5220813 1.5220968 1.5220928 1.5220776 1.5220961 1.5221188 1.5221153 1.5220931 1.5221126 1.5221154 1.5220928 1.5220902 1.5220766 1.5220924 1.5220897 1.5220746 1.5221222 1.5221564 1.5221531 1.5221197 1.5221656 1.5222152 1.5222117 1.522163 1.5222086 1.5222121 1.5221637 1.5221604 1.5221201 1.5221545 1.5221514 1.5221179 1.522195 1.5222021 1.5221531 1.5221465 1.522207 1.522205 1.522157 1.5221585 1.5221134 1.5221476 1.5221494 1.5221157 1.522108 1.5221433 1.5221359 1.5221018 1.5220697 1.5220851 1.5220864 1.5220711 1.522086 1.5221088 1.5221108 1.522088 1.5220951 1.522103 1.5220794 1.5220717 1.5220614 1.5220779 1.5220686 1.5220526 1.5219618 1.5219777 1.5219685 1.5219537 1.5219811 1.5220042 1.5219959 1.5219737 1.5209745 1.5207469 1.5206126 1.5207887 1.520769 1.5205776 1.5205754 1.5207954 1.5207518 1.5208081 1.5206243 1.5207875 1.5205926 1.5208254 1.5205803 1.5222457 1.5221017 1.5224299 1.5222789 1.5226645 1.5225099 1.5225508 1.5227036 1.522537 1.5225403 1.5225533 1.5225505 1.5223415 1.5224815 1.5224803 1.5223495 1.5210061 1.5210707 1.5209153 1.5208285 1.5221613 1.5220412 1.5220433 1.5221384 1.5223607 1.5224626 1.5224341 1.5223521 1.5222761 1.5222735 1.5222492 1.5222331 1.5219453 1.5219288 1.5219108 1.5219035 1.5292917 1.52495 1.5251323 1.5252159 1.5249755 1.5252322 1.5250184 1.5250065 1.5252059 1.5293988 1.5252354 1.5249776 1.5249517 1.5251477 1.5249991 1.5251497 1.5248892 1.5247679 1.5291153 1.529487 1.5207956 1.5207313 1.5207263 1.5207894 1.5218312 1.5218131 1.52191 1.5219264 1.5218754 1.5218521 1.5218393 1.5218362 1.5221314 1.5221325 1.5222414 1.5221982 1.5221751 1.5221447 1.5221606 1.522164 1.5291497 1.5248349 1.5250194 1.5251276 1.5248769 1.5250073 1.5247757 1.5247701 1.5249629 1.5293301 1.5250438 1.5247995 1.5248037 1.5249979 1.5251504 1.5252392 1.524961 1.5248867 1.5293643 1.5292807 1.5207187 1.5207806 1.5208001 1.5207329 1.5218415 1.5218001 1.521783 1.5218192 1.5218838 1.5218664 1.5219022 1.5219052 1.5222347 1.5221973 1.5221734 1.5222034 1.5221411 1.5220945 1.5220731 1.5221149 1.5251103 1.5248691 1.524998 1.5252093 1.5249419 1.5248966 1.5250905 1.5251403 1.5295024 1.5293548 1.5248025 1.5248222 1.5245782 1.5246022 1.5288368 1.5293292 1.5248855 1.524665 1.5250879 1.5248281 1.5208371 1.5209205 1.5211308 1.5210774 1.5218593 1.5219263 1.5219135 1.5218543 1.5222303 1.5221577 1.5221541 1.5222174 1.522632 1.5224154 1.5223962 1.5225664 1.5220872 1.5223402 1.5222836 1.5220836 1.5289239 1.5247811 1.5249504 1.5251191 1.5248725 1.524671 1.5246649 1.5248287 1.5248467 1.5292561 1.5251852 1.5249568 1.5250346 1.5252365 1.5253665 1.5251255 1.5253598 1.5256023 1.529593 1.5294148 1.5495319 1.5488677 1.5436077 1.5440122 1.5656364 1.5647436 1.5822353 1.5726559 1.5735924 1.5833371 1.5477755 1.547989 1.5428243 1.5426706 1.5636814 1.5631298 1.5809744 1.5713206 1.5711254 1.5801895 1.5473226 1.5484102 1.5431397 1.5424549 1.5624409 1.5639426 1.5810851 1.5792322 1.5702106 1.5713303 1.5485785 1.5489347 1.5436052 1.543386 1.5649005 1.564212 1.5816229 1.5823666 1.5725508 1.5721761 1.5429228 1.5477746 1.548513 1.5432148 1.5804072 1.5642565 1.5632555 1.5816887 1.5719239 1.571124 1.5487518 1.543524 1.5438229 1.5489448 1.5649866 1.5645465 1.5731869 1.5826408 1.5821374 1.5726349 1.5440419 1.5434254 1.5483724 1.5493382 1.5726549 1.56417 1.5655462 1.5817374 1.5833819 1.5733429 1.5437907 1.5483414 1.5490534 1.5431296 1.5652261 1.5730551 1.5828425 1.5639498 1.5812472 1.571779 1.5941659 1.5955208 1.596908 1.5961339 1.5970379 1.5950616 1.5959794 1.5974446 1.6353814 1.6304402 1.6331621 1.6284379 1.6552228 1.6577504 1.6352347 1.6642917 1.6672496 1.638915 1.6357986 1.6310411 1.6369118 1.6320767 1.6593227 1.6583626 1.6669122 1.6677301 1.6381219 1.6378825 1.6354606 1.6308819 1.6380161 1.6328973 1.6606096 1.657996 1.6659391 1.6693728 1.6403192 1.6359332 1.6607817 1.6328432 1.6376626 1.6346334 1.6296112 1.6569484 1.6365036 1.6677477 1.6643839 1.6327178 1.5928136 1.5946425 1.5962582 1.5954692 1.5961215 1.5974307 1.5948569 1.593999 1.6340704 1.6289918 1.6311785 1.626586 1.6558851 1.6529075 1.6348244 1.6298957 1.636164 1.6310486 1.6569161 1.6580202 1.666739 1.6368829 1.6397969 1.6671108 1.6649002 1.6608634 1.6302995 1.6359148 1.6676829 1.6693674 1.6401136 1.6386489 1.6380947 1.6669618 1.6655056 1.6372369 1.637569 1.6323048 1.6356468 1.6306589 1.6594795 1.657528 1.6328902 1.6280211 1.6346427 1.6295852 1.6548616 1.656637 1.548748 1.5484045 1.5432333 1.543458 1.5646891 1.5640183 1.5728168 1.5823271 1.5813851 1.5719391 1.544063 1.5491583 1.5443959 1.5497022 1.5831934 1.5652965 1.5660083 1.5839642 1.5739657 1.5735328 1.5489605 1.549266 1.5438619 1.5436355 1.565047 1.565385 1.5828885 1.5731057 1.5736532 1.5832225 1.5422876 1.5469872 1.5480252 1.5427696 1.5622755 1.5637196 1.5794103 1.5703369 1.5716269 1.5811123 1.5486248 1.5486416 1.5434224 1.5433912 1.5644502 1.5645327 1.5728853 1.582264 1.582081 1.5725139 1.5424878 1.5472283 1.5430052 1.5480368 1.5708251 1.5624425 1.5637312 1.5795984 1.5811414 1.5714523 1.5480623 1.5430639 1.5442102 1.5495628 1.5636394 1.5658454 1.5837123 1.5812244 1.5720272 1.5734899 1.5436802 1.5435562 1.564317 1.5646283 1.5726205 1.5821371 1.5815229 1.5719106 1.5486643 1.5488218 1.5978246 1.5954001 1.5963518 1.5952279 1.6374086 1.6326351 1.6365959 1.6318311 1.6596925 1.6603554 1.6568605 1.6292663 1.6332337 1.6355637 1.6307325 1.658626 1.6364225 1.6656441 1.6688836 1.6415 1.6392392 1.6688147 1.6682241 1.639129 1.634988 1.6304881 1.6387357 1.633506 1.6616313 1.6579304 1.6374972 1.6664333 1.6707634 1.642493 1.6378508 1.6681901 1.6652059 1.6336444 1.636682 1.6316555 1.634833 1.6296846 1.6569154 1.6592889 1.5937204 1.5950667 1.5966336 1.5961394 1.5932691 1.5951526 1.5970704 1.5975132 1.5973995 1.5981741 1.5966326 1.5952891 1.6553779 1.6280933 1.6322096 1.634933 1.6300432 1.6577013 1.63773 1.6327009 1.637418 1.6324323 1.6604256 1.6601696 1.670554 1.6425957 1.6415635 1.6701354 1.6354585 1.6643937 1.6697833 1.6448459 1.6369563 1.6320143 1.6348639 1.6299955 1.6575052 1.6598244 1.6704338 1.6727647 1.6448271 1.6407941 1.6391938 1.6685858 1.6661396 1.6363029 1.6388735 1.6337226 1.6376146 1.6327234 1.6617667 1.6603663 1.5226642 1.5227526 1.5226614 1.5225554 1.5229556 1.5228523 1.5229706 1.5230621 1.5230482 1.5231544 1.5231943 1.5230739 1.522749 1.5228422 1.522769 1.5228631 1.5244559 1.5245652 1.5247284 1.5245863 1.5250131 1.5248242 1.524972 1.5251651 1.5251272 1.5253269 1.5253182 1.5250877 1.5246512 1.5248353 1.5248369 1.5246607 1.5247282 1.5247182 1.5248912 1.524849 1.525283 1.5250722 1.5251362 1.5253242 1.5254504 1.5254008 1.5251738 1.5252141 1.5247527 1.5249174 1.5249657 1.5248125 1.5255836 1.5256343 1.5256796 1.5255848 1.5254819 1.5255229 1.5255918 1.5254947 1.5259941 1.5259827 1.5257799 1.5257831 1.5260901 1.5260948 1.5258799 1.5258689 1.5254335 1.5252718 1.5252056 1.5253303 1.5258353 1.5257001 1.5255186 1.52562 1.5260714 1.5260618 1.5258315 1.5258446 1.5255989 1.5254945 1.525502 1.5255535 1.5357551 1.5366702 1.5538448 1.5519502 1.546493 1.547804 1.5372064 1.5377518 1.537441 1.5367233 1.5362474 1.5372411 1.5535967 1.5546692 1.5478158 1.5485688 1.5371102 1.5364039 1.5369665 1.5375235 1.5369373 1.5362312 1.5368477 1.5373989 1.5524491 1.5539077 1.5479177 1.5468823 1.5542805 1.5530361 1.548244 1.5473534 1.5228149 1.5229167 1.5229241 1.5228152 1.5231301 1.5232497 1.5232504 1.5231193 1.5231042 1.5228008 1.5228982 1.522824 1.5248362 1.5248532 1.5250332 1.5249708 1.5254145 1.525207 1.525289 1.5254787 1.524819 1.5250168 1.5250705 1.5248872 1.5656134 1.5671098 1.5815897 1.5833122 1.5992199 1.5971613 1.564757 1.5665036 1.5803454 1.5825807 1.5983446 1.5955842 1.5665185 1.5826124 1.5643861 1.5801441 1.598363 1.5954887 1.5675408 1.5839422 1.5663118 1.5824102 1.5980934 1.5999861 1.6152278 1.6116654 1.6184593 1.6144042 1.6202331 1.6164138 1.6180145 1.6144274 1.6169054 1.6133298 1.6192871 1.6153822 1.6184275 1.6145338 1.6151672 1.6116138 1.6461325 1.6454989 1.6428708 1.6426312 1.6649663 1.6678214 1.6392802 1.6734185 1.6762854 1.6417652 1.6703745 1.6482687 1.6480778 1.6456679 1.6454441 1.6674984 1.6759765 1.6787935 1.6417405 1.6418829 1.6669317 1.6448982 1.6444152 1.6468652 1.6463286 1.6682935 1.6683027 1.6462198 1.6461119 1.6425281 1.6423353 1.6643558 1.6396654 1.6753689 1.6766828 1.6407562 1.6727455 1.6765836 1.6395277 1.6382254 1.5206879 1.5205811 1.5205815 1.5206807 1.5205592 1.5206739 1.5206628 1.5205603 1.5224308 1.5222934 1.52258 1.5227159 1.6064673 1.5712864 1.5677968 1.6014604 1.6035889 1.5693656 1.5695718 1.6034698 1.6066028 1.5713309 1.5677733 1.6017962 1.5974366 1.5639198 1.5674514 1.6014749 1.6101466 1.5739406 1.5674305 1.6008694 1.6055548 1.5705 1.5717661 1.6069658 1.5708922 1.6039948 1.6017545 1.5691452 1.5707044 1.6051178 1.6094488 1.5744112 1.6146722 1.5873474 1.5857379 1.6134412 1.6126829 1.5868303 1.5869925 1.6131601 1.6160046 1.5860217 1.5833538 1.6134043 1.5863014 1.615119 1.6162702 1.5875351 1.5764966 1.5398305 1.5624356 1.5956239 1.6009322 1.566508 1.6045813 1.5693183 1.5675457 1.6016246 1.568706 1.6033558 1.6047931 1.5703381 1.5695467 1.6031658 1.6029413 1.5691871 1.6048892 1.5714444 1.5680721 1.6009078 1.6034013 1.5701036 1.5705286 1.6036021 1.5685862 1.6014157 1.6057856 1.5721522 1.568987 1.6014668 1.5980918 1.5660601 1.5226326 1.5223802 1.5224719 1.5224453 1.5224334 1.5224567 1.5224239 1.5224065 1.5223976 1.5224129 1.522345 1.5223857 1.522401 1.5223604 1.5224454 1.5224198 1.5223795 1.522524 1.5225727 1.5226779 1.5223985 1.5223799 1.5226359 1.52263 1.5225976 1.5223848 1.5226018 1.5225818 1.5223732 1.5226315 1.5226116 1.5225102 1.5224832 1.5224591 1.5224823 1.5224613 1.5224434 1.522423 1.5224385 1.5224072 1.5224168 1.5224325 1.5224224 1.5224772 1.5224516 1.522441 1.5224638 1.5225128 1.5225284 1.5225752 1.5225579 1.5225385 1.5225747 1.5226254 1.5225856 1.5228291 1.5227305 1.5228595 1.5226931 1.5230258 1.5232367 1.5232205 1.5229918 1.5228107 1.5227 1.5228276 1.5226759 1.5229936 1.5224281 1.5224158 1.5223978 1.5224086 1.5224053 1.5223973 1.522381 1.522388 1.5223686 1.5223748 1.5223819 1.5223752 1.5224023 1.5223907 1.5223835 1.5223935 1.5223071 1.5223457 1.5223522 1.522313 1.5223579 1.5223638 1.5223711 1.5223648 1.5223919 1.5223801 1.5223733 1.5223837 1.5223718 1.5223606 1.522321 1.5223311 1.522259 1.5222445 1.5222082 1.5222204 1.5222325 1.5222228 1.5221887 1.522197 1.5221777 1.5222052 1.5222027 1.5221745 1.5222025 1.5222023 1.5221726 1.5221718 1.5222153 1.5222097 1.5221771 1.5221817 1.5222059 1.5222037 1.5221722 1.5221738 1.5223908 1.5223866 1.5223709 1.522375 1.5223829 1.5223809 1.5223656 1.5223676 1.5223544 1.5223593 1.5223613 1.5223562 1.5223688 1.5223643 1.522359 1.5223629 1.5223791 1.5223791 1.522364 1.5223644 1.5223787 1.5223794 1.5223646 1.5223641 1.5223542 1.5223586 1.5223579 1.5223534 1.5223581 1.5223577 1.5223531 1.5223534 1.5223082 1.522337 1.5223352 1.5223048 1.5223447 1.5223472 1.5223463 1.5223435 1.5223464 1.5223461 1.5223428 1.5223428 1.5223334 1.522334 1.5223022 1.5223004 1.5223576 1.5223529 1.5223482 1.5223521 1.5223496 1.5223475 1.5223436 1.5223452 1.5222993 1.5223336 1.5223346 1.5222992 1.5223404 1.5223367 1.5223003 1.5223027 1.5450015 1.5483454 1.5498838 1.5460699 1.5440626 1.5443279 1.5477012 1.5473013 1.5571337 1.5516284 1.5548819 1.5532752 1.5504893 1.5536716 1.5510346 1.5543916 1.5504457 1.5437825 1.5468942 1.5466673 1.5499308 1.5529291 1.5574761 1.5537481 1.5482629 1.5451074 1.5485168 1.5446063 1.5518759 1.5552498 1.5514949 1.5547157 1.5641221 1.5558307 1.5585158 1.5606555 1.5616527 1.5675666 1.557865 1.5608064 1.5585458 1.5616497 1.56527 1.5642352 1.5580452 1.5610003 1.5641271 1.5604761 1.5678146 1.5644577 1.5576889 1.5567671 1.5608103 1.5596669 1.5630629 1.5644485 1.5559595 1.5586954 1.5616251 1.5582428 1.5570123 1.5567868 1.5597907 1.5598902 1.5619066 1.5650352 1.5632588 1.5632948 1.5435022 1.5466432 1.5482945 1.5447106 1.5416233 1.5430523 1.5461596 1.5444915 1.5550789 1.5497251 1.5527801 1.5514683 1.5473019 1.5501035 1.5492074 1.5522689 1.5479495 1.5434285 1.5465354 1.5443764 1.5495796 1.5525925 1.5546788 1.5511063 1.5472179 1.5435707 1.5467896 1.5436792 1.5499694 1.5531747 1.5503509 1.5534797 1.5557637 1.5585479 1.561607 1.5581975 1.5552671 1.5580978 1.5528226 1.5553687 1.5618155 1.5650456 1.5583728 1.5614214 1.5355648 1.5329173 1.5351001 1.5331389 1.5375589 1.5402661 1.5411042 1.5380603 1.5352407 1.5328846 1.5350884 1.5328382 1.5375703 1.5403217 1.5377134 1.5404514 1.5264685 1.527694 1.5277371 1.5264094 1.5264326 1.527653 1.5275113 1.5262093 1.5291381 1.5308013 1.5309992 1.5291785 1.529093 1.5307571 1.5307253 1.528929 1.5265335 1.5277505 1.5280816 1.5267195 1.5262414 1.5265497 1.5277503 1.5273543 1.5291859 1.5308403 1.5314178 1.5295563 1.5286744 1.5291663 1.5308019 1.5301934 1.5327629 1.5349258 1.5358411 1.5333991 1.5319695 1.5326989 1.5348363 1.5339657 1.5403127 1.5414153 1.5373526 1.5383488 1.5362188 1.5372387 1.5399109 1.5386974 1.5372332 1.5331808 1.5353901 1.5345964 1.5378736 1.540602 1.5431917 1.5399214 1.5335394 1.5358464 1.5337035 1.5360658 1.53872 1.5416611 1.5384259 1.5412718 1.5268707 1.5281885 1.5283772 1.5269254 1.5265832 1.527871 1.5278102 1.5264439 1.5319374 1.5297397 1.5315167 1.5299483 1.5311797 1.5293891 1.5311458 1.5292956 1.5286654 1.5266297 1.5278757 1.5271879 1.5293442 1.531032 1.5322559 1.5302542 1.5280315 1.5267668 1.5280812 1.5266282 1.5296312 1.5314205 1.5295505 1.5312995 1.5335736 1.5358788 1.5366491 1.5340486 1.533187 1.5354866 1.533185 1.5354373 1.5416131 1.5425703 1.5384643 1.5393165 1.5379719 1.5380694 1.5409353 1.5407586 1.5241222 1.5242081 1.5235005 1.5248647 1.5256453 1.5257402 1.5248234 1.523276 1.5238555 1.5234005 1.5239869 1.5247071 1.5255683 1.5245672 1.5254203 1.5218421 1.5220768 1.5220102 1.5217681 1.5217547 1.5217832 1.5220106 1.5219779 1.5226922 1.5223763 1.5227491 1.522297 1.5222643 1.5226227 1.5223009 1.522664 1.5229976 1.5220984 1.5218469 1.5228821 1.5223953 1.5227657 1.5232151 1.5237881 1.5237661 1.5231486 1.5231189 1.5236809 1.5230711 1.5236239 1.5254249 1.5254013 1.5244939 1.5244697 1.5243094 1.5243753 1.5252149 1.5251335 1.5213085 1.521279 1.5213876 1.521353 1.5214525 1.5216436 1.5215821 1.5214931 1.5212754 1.5212601 1.5213349 1.521353 1.5214567 1.5214353 1.5215912 1.5215664 1.5214139 1.5215177 1.5216531 1.5212091 1.5211934 1.5212456 1.5212205 1.521214 1.5212013 1.5211831 1.5211765 1.5211845 1.5211874 1.5211919 1.5211895 1.5211957 1.5211927 1.5211902 1.521193 1.5208676 1.5208855 1.5209195 1.5209004 1.5208939 1.5209215 1.5209589 1.5209268 1.5211858 1.5211798 1.5211769 1.5211829 1.5211406 1.5211343 1.521176 1.5211678 1.5211641 1.5211535 1.5211332 1.5211309 1.5211519 1.5211487 1.5211444 1.5211478 1.5211477 1.5211428 1.5211387 1.5211437 1.521143 1.5211411 1.5211457 1.5211475 1.5211489 1.5211458 1.5211479 1.5211504 1.5208042 1.5208109 1.5208472 1.5208379 1.5208132 1.5208199 1.5208587 1.5208502 1.521168 1.5211543 1.52121 1.5211893 1.521173 1.5211579 1.5211432 1.5211363 1.5211742 1.5211709 1.5211648 1.5211679 1.5211693 1.5211645 1.5211587 1.5211637 1.5211489 1.521152 1.5211564 1.5211537 1.5211598 1.521157 1.521154 1.5211567 1.5208078 1.5208156 1.5208519 1.5208405 1.520827 1.5208544 1.5208968 1.5208662 1.5212735 1.5212501 1.5213331 1.5213591 1.5214726 1.5214439 1.5216192 1.5215879 1.5212936 1.521231 1.5213104 1.5212119 1.5215698 1.521417 1.5213959 1.5215302 1.521163 1.5211572 1.5211514 1.5211574 1.521155 1.521148 1.5211424 1.5211495 1.5211332 1.5211363 1.5211433 1.5211405 1.5211508 1.5211449 1.5211419 1.5211478 1.5211283 1.5211267 1.5211335 1.521135 1.5211232 1.5211284 1.5211351 1.5211306 1.521142 1.5211363 1.5211317 1.5211378 1.5211405 1.5211346 1.5211364 1.5211419 1.5213172 1.521237 1.5213202 1.5212274 1.5215901 1.5214314 1.5214287 1.521574 1.5212893 1.5212224 1.5213025 1.5212076 1.521564 1.5214101 1.5213914 1.5215252 1.5220258 1.5217799 1.5220219 1.5217621 1.5223299 1.5227128 1.52276 1.5223361 1.5216998 1.5219236 1.521749 1.5219855 1.5222874 1.5226646 1.5222094 1.522567 1.523907 1.5232495 1.5238358 1.5232517 1.5255042 1.5245564 1.524649 1.525542 1.5231176 1.5236958 1.5232184 1.5238114 1.5255052 1.5245427 1.5244073 1.5252662 1.5220355 1.5218084 1.5220484 1.5217743 1.5223533 1.5223431 1.5227317 1.5227261 1.5219521 1.5217533 1.5219879 1.5217052 1.5226975 1.5222875 1.5222445 1.5226111 1.5239068 1.5231897 1.5237749 1.523248 1.5254434 1.5244952 1.524652 1.5255473 1.5230166 1.5235714 1.5231354 1.5237161 1.5253785 1.524433 1.5242553 1.5250811 1.5210635 1.5210615 1.5210802 1.5210819 1.5210565 1.5210616 1.5210802 1.5210753 1.521098 1.5210827 1.5210777 1.521093 1.5210981 1.5210827 1.5210846 1.5210992 1.5210676 1.5210691 1.5210879 1.5210862 1.5210741 1.5210805 1.5210991 1.5210933 1.5211174 1.5211022 1.5210961 1.5211116 1.521106 1.5210904 1.5210883 1.5211033 1.5211061 1.521109 1.5211207 1.5211179 1.5211325 1.5211208 1.5211148 1.5211268 1.521145 1.5211357 1.5211299 1.5211395 1.5211335 1.5211237 1.5211207 1.5211304 1.5211258 1.5211162 1.5211112 1.5211207 1.5211129 1.5211009 1.5210959 1.5211079 1.5211022 1.5211009 1.5211123 1.5211136 1.5211244 1.5211149 1.5211164 1.5211255 1.5241433 1.5232959 1.5238885 1.5234502 1.5246152 1.5254821 1.5259452 1.5249239 1.5232388 1.5238391 1.5232915 1.523905 1.5246601 1.5255656 1.5245754 1.525458 1.5218262 1.5220819 1.5220366 1.5217698 1.5217531 1.5217727 1.5220161 1.52199 1.5227838 1.5224071 1.5228102 1.5223518 1.5222933 1.5226721 1.5223264 1.5227139 1.5221189 1.521825 1.5220717 1.5218397 1.522384 1.52277 1.5228899 1.5224457 1.5220168 1.5217955 1.5220434 1.521755 1.5223591 1.5227525 1.5223253 1.5227099 1.5233114 1.5239247 1.5239492 1.5232807 1.523198 1.5237938 1.5231444 1.5237254 1.5256625 1.5257062 1.5246762 1.5247078 1.5244431 1.5245269 1.5254103 1.5253035 1.521243 1.5212279 1.5213293 1.5213099 1.5214202 1.5216093 1.5215641 1.5214446 1.5212311 1.5212281 1.521307 1.5213131 1.5214235 1.5214137 1.5215674 1.5215532 1.521341 1.5212597 1.5213474 1.5212467 1.5214638 1.5216136 1.5216228 1.5214574 1.5213046 1.521239 1.521324 1.5212181 1.5214377 1.5215853 1.5214124 1.5215534 1.5211499 1.5211432 1.5211895 1.5211786 1.5211719 1.5211561 1.5211368 1.5211305 1.5211422 1.5211432 1.5211479 1.5211469 1.5211571 1.5211527 1.5211499 1.5211545 1.5211604 1.5211576 1.5211549 1.5211575 1.5211512 1.521148 1.5211469 1.5211496 1.52081 1.5208208 1.5208636 1.52085 1.520799 1.5208074 1.5208465 1.520834 1.52114 1.5211339 1.5211747 1.5211634 1.5211666 1.5211664 1.5211381 1.5211412 1.5211533 1.5211501 1.5211478 1.5211508 1.5211497 1.5211448 1.5211428 1.5211476 1.5211523 1.5211487 1.5211534 1.5211567 1.5211562 1.5211529 1.5211565 1.5211591 1.5208207 1.5208092 1.5208449 1.5208544 1.520804 1.5208105 1.52085 1.52084 1.5211518 1.5211466 1.5211436 1.5211491 1.5211452 1.5211387 1.5211355 1.5211421 1.5211283 1.5211293 1.5211361 1.5211352 1.5211428 1.5211369 1.521136 1.5211417 1.5211393 1.5211354 1.5211423 1.5211458 1.5211291 1.5211324 1.5211388 1.521136 1.5211447 1.5211392 1.5211366 1.5211425 1.5211487 1.5211427 1.5211466 1.5211518 1.5212458 1.5212659 1.5212838 1.5213113 1.52145 1.521598 1.5214061 1.521522 1.5212552 1.5212515 1.5212642 1.521267 1.5212506 1.5212454 1.521258 1.521262 1.5214703 1.5213909 1.5214001 1.5214708 1.5214091 1.5214014 1.5214783 1.5214796 1.5214699 1.5211445 1.5211831 1.5215036 1.5210013 1.5209466 1.5209847 1.5210391 1.5211876 1.5211859 1.5212241 1.5212187 1.521221 1.5212195 1.5211918 1.5211949 1.5212 1.5211974 1.5211981 1.5212003 1.521197 1.5211928 1.5211934 1.5211974 1.5212049 1.5212013 1.5212057 1.5212088 1.5212086 1.5212058 1.5212093 1.5212116 1.5208916 1.5208777 1.5209124 1.5209234 1.5208703 1.5208653 1.5209054 1.5209068 1.5212852 1.5212766 1.5213561 1.5213684 1.5214795 1.5214628 1.5216233 1.5216012 1.5213526 1.5212768 1.5213539 1.5212723 1.5216065 1.5214579 1.5214532 1.5215851 1.5211922 1.5211872 1.5211875 1.5211924 1.5211859 1.5211798 1.5211798 1.5211858 1.5211905 1.5211869 1.5211935 1.5211968 1.5212006 1.5211949 1.5211986 1.5212036 1.5214499 1.5213629 1.5213748 1.5214519 1.5212412 1.5212302 1.5212369 1.5212474 1.5212443 1.5212384 1.5212505 1.5212555 1.5213886 1.5213776 1.5214607 1.5214618 1.5214608 1.5213433 1.5214249 1.5213708 1.5216898 1.5215342 1.5215721 1.5217164 1.5217302 1.5215066 1.5215847 1.5216507 1.5218377 1.5216892 1.5218277 1.5219533 1.5211364 1.5211276 1.5211242 1.5211331 1.5211242 1.5211128 1.5211093 1.5211207 1.5211029 1.5211035 1.5211152 1.5211145 1.5211273 1.5211177 1.521117 1.5211262 1.5211088 1.5210934 1.5210901 1.5211053 1.5210893 1.5210695 1.5210665 1.5210859 1.5210616 1.5210609 1.5210807 1.521081 1.5210999 1.521084 1.5210841 1.5210993 1.5210731 1.521068 1.5210879 1.5210923 1.5210616 1.5210665 1.5210857 1.5210813 1.5211043 1.5210889 1.5210847 1.5211002 1.5211073 1.5210912 1.521096 1.5211109 1.5211307 1.5211215 1.5211181 1.5211272 1.5211188 1.5211072 1.5211034 1.5211151 1.5211143 1.5211103 1.5211219 1.5211255 1.5211338 1.5211242 1.5211283 1.5211371 1.52137 1.5212588 1.5212846 1.5213815 1.5211615 1.5211542 1.5211736 1.5211807 1.5211954 1.5211796 1.5211884 1.5212034 1.5213138 1.5212919 1.5213957 1.5214039 1.5211183 1.5211149 1.5211346 1.5211376 1.5211108 1.521112 1.5211309 1.5211299 1.5211503 1.5211354 1.521135 1.5211497 1.5211555 1.5211396 1.5211432 1.5211581 1.5211773 1.5211688 1.521169 1.5211771 1.5211652 1.5211543 1.5211541 1.5211648 1.5211632 1.5211599 1.5211712 1.5211743 1.5211841 1.5211748 1.5211784 1.521187 1.5212269 1.5212174 1.521228 1.5212364 1.5212126 1.5212006 1.5212104 1.5212215 1.5214172 1.5213204 1.5213375 1.521423 1.5213581 1.521343 1.5214351 1.5214387 1.5221613 1.5218756 1.5221116 1.5219023 1.5224115 1.5227831 1.5228783 1.5224653 1.5221159 1.5223228 1.5220152 1.5222413 1.5225294 1.5228879 1.5225866 1.5229154 1.523991 1.523245 1.5238104 1.5233527 1.5254185 1.5245061 1.524712 1.5255757 1.5233284 1.5238378 1.5233344 1.5238839 1.5254544 1.524562 1.5244666 1.5252258 1.5220303 1.5218088 1.522044 1.5217802 1.5223428 1.5223248 1.5227133 1.5226911 1.5219969 1.5217848 1.5220123 1.5217563 1.5226983 1.5223024 1.5222816 1.5226375 1.5237623 1.5231745 1.5237395 1.5231473 1.5253474 1.5244349 1.5244602 1.5252979 1.5230836 1.5236327 1.5231547 1.5237161 1.5253172 1.5244078 1.5243084 1.5251234 1.5306233 1.5319004 1.5311916 1.5298602 1.5324602 1.5347366 1.5336753 1.5332525 1.5360591 1.53491 1.5373167 1.5360781 1.5374883 1.5205409 1.5205416 1.5205375 1.5205385 1.5205476 1.5205434 1.5205493 1.5205445 1.5219099 1.5219081 1.5219061 1.5219056 1.5217698 1.5217629 1.5217622 1.5205362 1.5205321 1.5205324 1.5205364 1.5206124 1.5206123 1.5207141 1.5207087 1.5205369 1.520542 1.5205381 1.5205433 1.5206207 1.5207362 1.5206222 1.5207369 1.5219193 1.5219192 1.5219174 1.5219145 1.5219085 1.5219099 1.5219012 1.5218989 1.5217652 1.5217693 1.5217702 1.5217717 1.5217695 1.5217682 1.5217649 1.5217755 1.5208695 1.5209482 1.5209412 1.520775 1.5207754 1.5208684 1.5208683 1.5208656 1.5208684 1.5209376 1.5209356 1.5206982 1.5206488 1.5206865 1.5206542 1.5207687 1.5206657 1.5206682 1.5207751 1.5208539 1.5208621 1.5209314 1.5209243 1.5208623 1.5207697 1.5207647 1.520857 1.5207632 1.5207634 1.5208563 1.5208569 1.5208538 1.520857 1.5209269 1.5209249 1.5206592 1.5207646 1.5206643 1.5207648 1.5206472 1.5206861 1.5206842 1.5206404 1.5206359 1.5206359 1.5206743 1.5206791 1.5207562 1.5206554 1.5206547 1.5207644 1.5210783 1.5210547 1.5210482 1.5210721 1.5210547 1.5210258 1.5210192 1.5210483 1.521015 1.5210158 1.5210445 1.5210439 1.5210676 1.521044 1.5210432 1.5210663 1.5210282 1.5209913 1.520984 1.5210218 1.520995 1.5209453 1.5209373 1.5209882 1.5209323 1.5209352 1.520985 1.5209831 1.5210185 1.5209815 1.5209796 1.5210174 1.5209219 1.520925 1.5209755 1.5209737 1.5209206 1.5209284 1.5209778 1.5209711 1.5210109 1.5209742 1.5209675 1.5210052 1.5210104 1.5209726 1.520971 1.5210097 1.5210597 1.5210362 1.5210318 1.5210549 1.5210366 1.5210085 1.521003 1.5210318 1.5210082 1.5210082 1.5210371 1.5210377 1.5210601 1.5210366 1.521038 1.5210614 1.521066 1.5210407 1.5210379 1.5210628 1.5210386 1.5210074 1.5210043 1.5210355 1.5210013 1.521 1.521031 1.5210323 1.5210579 1.5210323 1.5210337 1.5210584 1.5210076 1.5209673 1.5209636 1.5210042 1.5209694 1.5209169 1.5209125 1.5209659 1.5209112 1.5209118 1.5209636 1.5209641 1.5210007 1.5209612 1.5209618 1.5210017 1.5209191 1.5209156 1.5209682 1.5209719 1.5209084 1.5209171 1.5209689 1.5209617 1.5210061 1.5209668 1.5209597 1.5210001 1.5210066 1.5209664 1.5209706 1.5210106 1.521063 1.521038 1.5210335 1.5210582 1.5210362 1.5210057 1.5210001 1.5210311 1.5210111 1.5210063 1.5210376 1.521042 1.5210648 1.5210392 1.5210444 1.5210691 1.5208439 1.5208479 1.5209192 1.5209162 1.5208492 1.5207583 1.5207558 1.5208487 1.5207558 1.5207546 1.520846 1.5208481 1.5208437 1.5208445 1.5209142 1.5209146 1.5206559 1.5206577 1.5207556 1.5207595 1.5206459 1.5206807 1.5206858 1.5206477 1.5206441 1.5206766 1.520652 1.5206889 1.5206566 1.5207515 1.5206536 1.5207596 1.5208398 1.5208493 1.5209195 1.5209116 1.5208509 1.5207595 1.5207519 1.5208442 1.5207637 1.520758 1.5208487 1.5208554 1.5208511 1.5208472 1.5209174 1.5209218 1.5207575 1.5206597 1.5206536 1.5207555 1.520649 1.520684 1.5206504 1.5206841 1.5206482 1.5206513 1.5206908 1.520683 1.5206576 1.5207557 1.5206619 1.5207678 1.5211069 1.5210816 1.5210802 1.5211051 1.5210777 1.5210466 1.5210448 1.5210757 1.5210522 1.5210495 1.5210803 1.5210831 1.5211095 1.5210839 1.5210874 1.5211121 1.521045 1.5210052 1.5210027 1.5210426 1.5210056 1.5209541 1.5209514 1.5210033 1.520959 1.5209582 1.5210089 1.5210102 1.5210477 1.5210084 1.5210102 1.5210495 1.5212391 1.5210742 1.5211284 1.5212681 1.5209968 1.5209949 1.5210441 1.5210467 1.5210832 1.5210446 1.5210481 1.5210868 1.5211738 1.521129 1.5212754 1.5212985 1.5211474 1.5211219 1.5211288 1.5211531 1.5211165 1.5210859 1.5210911 1.5211214 1.521309 1.5211769 1.5212139 1.5213274 1.5212511 1.5212194 1.5213402 1.5213551 1.5208845 1.5208866 1.5209555 1.520954 1.5208885 1.520802 1.5208014 1.5208894 1.5208126 1.520807 1.5208938 1.520898 1.5208936 1.5208918 1.5209593 1.5209609 1.5207107 1.5207114 1.5208028 1.5208076 1.520744 1.5207085 1.5207395 1.5207113 1.5207486 1.5207113 1.520743 1.5207113 1.520808 1.5207159 1.5207196 1.5208184 1.5209326 1.5209312 1.5209959 1.5209978 1.520934 1.5208545 1.5208577 1.5209372 1.5211355 1.5209299 1.5210107 1.5211918 1.5211951 1.5210078 1.5210754 1.5212355 1.520773 1.520858 1.5207716 1.520864 1.5207682 1.5207698 1.520795 1.5207958 1.521031 1.5208391 1.520863 1.5209701 1.520932 1.5208457 1.5210425 1.5211247 1.5438012 1.5470257 1.5442715 1.5475299 1.5507517 1.5501886 1.5533442 1.5539641 1.5435498 1.5440157 1.546799 1.5472099 1.5536468 1.5503539 1.5534817 1.5500057 1.5414882 1.5432539 1.5442237 1.5462119 1.549102 1.5519694 1.5468829 1.5495158 1.5433665 1.546476 1.5477206 1.544219 1.5542996 1.5495258 1.5525705 1.5507966 1.5520707 1.5544391 1.5577846 1.5547458 1.5555395 1.5583296 1.5572815 1.5600435 1.5572251 1.5608392 1.5633002 1.5615971 1.5564156 1.5592786 1.5605758 1.5571188 1.5568099 1.5597967 1.559834 1.5565216 1.5626321 1.5640622 1.5632868 1.5631459 1.5265806 1.5276814 1.5280624 1.5267532 1.5266054 1.5278332 1.5277897 1.5264506 1.5312592 1.5289756 1.5304614 1.529474 1.5310909 1.5292796 1.5309495 1.5292439 1.5329978 1.5352349 1.5333234 1.5355853 1.5381378 1.5409605 1.5377521 1.5405355 1.5327175 1.5349531 1.5352092 1.5327894 1.5407533 1.5374707 1.54026 1.5377013 1.532192 1.5331489 1.5341326 1.5352555 1.5376209 1.540226 1.5363098 1.5386993 1.5328897 1.5350643 1.5354783 1.5330541 1.5409993 1.5375069 1.5402068 1.5379644 1.5264624 1.527696 1.5277913 1.5264398 1.5262332 1.527448 1.5274339 1.5261317 1.5311283 1.5291523 1.5308367 1.5292597 1.5288888 1.5305644 1.5306608 1.5288552 1.5265021 1.5277597 1.5280236 1.5266256 1.526085 1.526433 1.5276881 1.5272746 1.5292425 1.530958 1.5314576 1.5295395 1.5286871 1.5291686 1.5308845 1.5303161 1.5265565 1.5278044 1.5280124 1.5266179 1.5265766 1.5278494 1.5276566 1.5263048 1.5292741 1.530973 1.5314403 1.5295253 1.5293509 1.5310897 1.5309985 1.5291295 1.5329531 1.5351859 1.5360023 1.5334822 1.5331106 1.5353896 1.5354713 1.5329972 1.5376912 1.5404662 1.5417375 1.5385872 1.5379512 1.5407983 1.5411212 1.5380156 1.5329441 1.5351842 1.5360245 1.5335012 1.5322207 1.5328769 1.5351257 1.5343618 1.5377028 1.5404962 1.5417734 1.5386147 1.5367789 1.5376516 1.5404588 1.5394381 1.5485101 1.543462 1.5466881 1.5448232 1.5498626 1.5530345 1.555483 1.5517753 1.5422685 1.5453384 1.5434378 1.5466828 1.5498869 1.5531131 1.5483467 1.5513528 1.5622303 1.5561488 1.5590699 1.5587001 1.5624888 1.5657737 1.5542974 1.5570565 1.5562764 1.5592693 1.5627652 1.5602593 1.5484664 1.5434118 1.5466069 1.5447808 1.5497393 1.5517255 1.552856 1.5549824 1.5477439 1.5438262 1.5471353 1.5441155 1.5541426 1.5504096 1.5509604 1.5542002 1.5559036 1.5587587 1.5616534 1.5581718 1.5573876 1.5574139 1.5605182 1.5603673 1.562082 1.5651455 1.5638557 1.5641345 1.5226328 1.522397 1.5223982 1.5226315 1.5225948 1.5225939 1.5224167 1.5226149 1.5226115 1.5224161 1.5226473 1.5226509 1.5224902 1.5224667 1.5224738 1.5224946 1.5224483 1.5224339 1.5224429 1.5224558 1.522464 1.522453 1.5224665 1.5224772 1.5225069 1.5224836 1.522494 1.5225151 1.5225616 1.5225529 1.5225948 1.5226022 1.5225397 1.522535 1.5225775 1.5225809 1.5221218 1.522064 1.5222162 1.5223964 1.5221774 1.5223718 1.5223369 1.5225124 1.5225394 1.5223559 1.5225352 1.522574 1.5223999 1.5223695 1.5223797 1.5224114 1.522028 1.5220288 1.5222799 1.522284 1.5220364 1.5220293 1.5222914 1.522303 1.5224132 1.5223933 1.5224266 1.5224461 1.5224855 1.5224388 1.5224745 1.5225237 1.5220469 1.5220187 1.5223022 1.5223296 1.5222577 1.522451 1.5225559 1.5223647 1.5225057 1.5226931 1.5226875 1.5228697 1.5227406 1.5225967 1.5227069 1.5226218 1.5230531 1.5228506 1.5228833 1.5230671 1.5224364 1.5224246 1.5224277 1.5224396 1.5224175 1.5224074 1.5224099 1.52242 1.5224227 1.5224148 1.5224249 1.522432 1.5224414 1.522433 1.522445 1.5224527 1.5223815 1.5223564 1.5223556 1.5223822 1.5220472 1.5220567 1.5222891 1.5222834 1.5220323 1.5220384 1.5222795 1.5222781 1.5223617 1.5223571 1.5223852 1.5223907 1.522806 1.5226841 1.5228002 1.5226809 1.523163 1.5229512 1.5229562 1.5231492 1.5228229 1.5227043 1.5228216 1.522698 1.523189 1.5229743 1.5229735 1.5231672 1.523523 1.5238514 1.5237791 1.5234397 1.5234536 1.523455 1.523769 1.523771 1.5247125 1.5242634 1.5247721 1.524174 1.5241699 1.5246627 1.5241619 1.5246487 1.523873 1.5235252 1.5238569 1.5235124 1.5242739 1.5247894 1.5248595 1.524291 1.5238088 1.5234772 1.5237977 1.5234614 1.5242019 1.5247042 1.5242127 1.5247134 1.5253997 1.5261655 1.5261468 1.5253253 1.5283115 1.5270732 1.5270924 1.5281815 1.5252505 1.5252703 1.5259857 1.5260102 1.5263727 1.5254233 1.526195 1.5255058 1.5283595 1.5271325 1.5273391 1.5284941 1.525333 1.5260893 1.5253234 1.5260822 1.5282216 1.5270076 1.5270067 1.5281085 1.5227072 1.5224549 1.5224431 1.5226853 1.5226602 1.5226407 1.5224392 1.5226412 1.52263 1.5224267 1.5226842 1.5226671 1.5225626 1.5225386 1.5225296 1.5225504 1.5225194 1.522504 1.5224983 1.5225114 1.522474 1.5224931 1.5225063 1.5224874 1.5225459 1.522523 1.5225044 1.5225257 1.5225739 1.5225907 1.5226324 1.522617 1.5225947 1.5226089 1.5226517 1.5226352 1.5227064 1.522449 1.5224409 1.5226904 1.5226602 1.5226443 1.5224514 1.5226522 1.5226412 1.5224462 1.5226945 1.5226844 1.5225564 1.5225317 1.5225307 1.5225518 1.5225121 1.5224963 1.5224988 1.5225123 1.5225006 1.5225028 1.5225165 1.5225139 1.5225565 1.5225335 1.5225306 1.5225513 1.5225946 1.5226011 1.5226422 1.5226343 1.5225987 1.5226054 1.5226497 1.5226402 1.5227515 1.5227273 1.5228706 1.5228402 1.5229872 1.5232417 1.5231752 1.5230249 1.52273 1.5227197 1.5228366 1.5228455 1.5229955 1.522988 1.5231869 1.5231812 1.5228612 1.5227544 1.5228773 1.5227332 1.5230368 1.5232401 1.5232313 1.523015 1.522851 1.5227413 1.5228578 1.5227271 1.5230096 1.5232038 1.523 1.5231916 1.5224836 1.5224737 1.5224785 1.5224869 1.5224663 1.5224613 1.5224677 1.5224718 1.5224703 1.5224706 1.522475 1.5224745 1.5224906 1.5224814 1.5224807 1.5224888 1.5224429 1.5224618 1.5224662 1.5224473 1.5224676 1.5224703 1.5224752 1.522472 1.5224916 1.5224821 1.5224784 1.5224866 1.5224815 1.5224725 1.5224538 1.5224622 1.5237383 1.5234125 1.523728 1.5233954 1.5241249 1.5246158 1.5246788 1.5241368 1.5234155 1.52373 1.5234421 1.5237629 1.5241674 1.5246693 1.5241262 1.5246182 1.5234134 1.5229208 1.5232167 1.5230961 1.5235913 1.523784 1.5240564 1.5242452 1.5236289 1.5232919 1.5235945 1.5233016 1.5244967 1.5239764 1.5240104 1.5244849 1.5255866 1.5246324 1.5253373 1.5248163 1.5261985 1.5264518 1.5272289 1.5274883 1.5250745 1.5257949 1.5250888 1.5258139 1.5278577 1.5266975 1.5266699 1.5277219 1.5261246 1.5252187 1.5259534 1.5252958 1.5280207 1.5268477 1.5270495 1.5281567 1.5252288 1.5259757 1.5252875 1.5260441 1.5281731 1.5269653 1.5268827 1.5279731 1.5224448 1.5224632 1.5224624 1.5224435 1.5224683 1.5224701 1.5224694 1.5224676 1.5224668 1.5224683 1.5224666 1.5224653 1.5224599 1.5224613 1.5224422 1.5224407 1.522472 1.522473 1.5224722 1.5224713 1.5224716 1.522466 1.5224649 1.5224708 1.5224613 1.5224633 1.5224695 1.5224679 1.5224693 1.522471 1.5224702 1.5224688 1.5224584 1.5224575 1.5224646 1.5224653 1.5224579 1.5224594 1.5224663 1.5224651 1.5224674 1.5224678 1.5224668 1.5224665 1.5224677 1.5224667 1.5224665 1.5224675 1.5224668 1.5224651 1.5224633 1.5224646 1.5224649 1.5224656 1.5224641 1.5224633 1.5224394 1.5224586 1.5224577 1.5224387 1.5224589 1.5224577 1.5224387 1.5224399 1.5224428 1.5224351 1.5224346 1.5224426 1.5224313 1.5224253 1.522424 1.5224305 1.5224182 1.5224216 1.5224287 1.5224261 1.5224308 1.5224332 1.5224417 1.52244 1.5224012 1.5223875 1.5223863 1.522401 1.5221306 1.5221397 1.5223397 1.5223369 1.5221101 1.5221202 1.5223324 1.5223266 1.5223791 1.5223835 1.5223994 1.5223966 1.522393 1.5223741 1.5223687 1.5223891 1.5220886 1.5220994 1.5223196 1.5223119 1.5220666 1.5220773 1.5223038 1.5222961 1.5223592 1.5223636 1.5223855 1.5223829 1.5224069 1.5224083 1.5224179 1.5224169 1.5224111 1.5224147 1.5224232 1.5224203 1.5224381 1.5224283 1.5224258 1.5224362 1.5224234 1.5224241 1.5224351 1.522435 1.5316393 1.5297044 1.53129 1.5298653 1.5295586 1.5294247 1.5311406 1.5309761 1.5331436 1.5352595 1.5335374 1.535701 1.5327995 1.5353193 1.5348861 1.5329905 1.5376853 1.53818 1.5409842 1.5404183 1.5434908 1.5469067 1.5479532 1.5441192 1.5402883 1.537778 1.5405605 1.5372894 1.5436922 1.5433774 1.5471774 1.5468223 1.5296451 1.5312185 1.5295002 1.5330589 1.5351642 1.5361025 1.5387029 1.5397092 1.5368007 1.536956 1.5370106 1.5396976 1.539621 1.5464211 1.5416393 1.5449189 1.5427111 1.5426298 1.5459881 1.5427178 1.5460965 1.5293122 1.5294733 1.5308387 1.5310208 1.5328355 1.5349038 1.5326221 1.5346566 1.530964 1.5294999 1.5310628 1.5292743 1.5328938 1.5349865 1.5350661 1.5327825 1.5303384 1.5284656 1.529927 1.5287264 1.5316445 1.5336089 1.534254 1.5320741 1.5306107 1.5291318 1.5306396 1.5289766 1.5324087 1.5344349 1.5323715 1.5343849 1.5369985 1.5396508 1.5402172 1.5372706 1.5373878 1.5401127 1.537476 1.5402026 1.5469994 1.5426368 1.5459682 1.5432555 1.543272 1.5431716 1.546584 1.5466742 1.5496719 1.5537588 1.5507728 1.5549153 1.5594029 1.5641813 1.5581684 1.5628766 1.550452 1.5503567 1.5545045 1.5545878 1.5590652 1.5638289 1.5589838 1.5637643 1.567862 1.5730775 1.5692267 1.5745066 1.5800524 1.5785376 1.5688365 1.5741484 1.568854 1.5740997 1.5796055 1.5797094 1.5485618 1.550153 1.5525605 1.5542495 1.5586788 1.563377 1.5568586 1.5614082 1.5498429 1.5539653 1.5541914 1.5496927 1.5638771 1.5584218 1.5631757 1.5586202 1.5662007 1.5683161 1.5711694 1.5734558 1.5788452 1.5763683 1.5682169 1.5734916 1.574748 1.5688953 1.5790104 1.5802478 1.5655876 1.5602407 1.5612092 1.5661595 1.5552477 1.5506743 1.5518304 1.5560967 1.5510391 1.5552861 1.5506381 1.5226962 1.5225621 1.5227087 1.5225801 1.522763 1.5227649 1.5227712 1.5227695 1.5226974 1.5226979 1.5227027 1.522702 1.5225402 1.5225376 1.5226178 1.5226168 1.5225185 1.5226129 1.5225276 1.5226149 1.5226956 1.5226966 1.5227017 1.5227021 1.5227694 1.5227653 1.5227653 1.5227691 1.5227673 1.5227696 1.5227693 1.5227671 1.5227661 1.5227663 1.5227687 1.5227687 1.5227685 1.5227639 1.5227684 1.5227642 1.5225388 1.5224852 1.522582 1.5226064 1.5226725 1.5226202 1.5226167 1.5226753 1.5227261 1.5226472 1.5227276 1.5226435 1.5226516 1.5227306 1.5227318 1.5226453 1.5226769 1.5227748 1.5226826 1.5227765 1.5227784 1.522687 1.5226748 1.5227784 1.5226791 1.522777 1.5226853 1.5227769 1.5226711 1.5227739 1.5226837 1.5227712 1.5226722 1.5226704 1.522664 1.5226638 1.5226703 1.5226702 1.5226622 1.5226612 1.5226684 1.5225868 1.5226774 1.5226008 1.5226721 1.5226661 1.52259 1.5225731 1.5226656 1.5227242 1.5226967 1.5226964 1.522725 1.5227207 1.5226935 1.5226933 1.5227226 1.5225593 1.5226592 1.5226579 1.522559 1.5226629 1.5225631 1.5226619 1.5225634 1.522667 1.5226911 1.5226657 1.5226937 1.5225694 1.5225567 1.5226416 1.5226633 1.5224235 1.52253 1.5226093 1.5224993 1.5225281 1.5226315 1.5226336 1.5225288 1.5224931 1.5224901 1.522457 1.522462 1.5223462 1.5223844 1.5224614 1.5224277 1.5223984 1.5223121 1.5222803 1.522375 1.5224356 1.5224293 1.5224077 1.5224152 1.5224667 1.5224632 1.5224445 1.5224481 1.5224906 1.5225242 1.5225244 1.5224943 1.5225307 1.5225283 1.5224983 1.5225023 1.5224785 1.5224734 1.5224542 1.5224601 1.522447 1.5224404 1.5224319 1.5224389 1.522435 1.5224313 1.5224232 1.5224272 1.5224183 1.5224193 1.5224236 1.522423 1.5224267 1.5224278 1.5224351 1.5224342 1.5224007 1.5223922 1.5223826 1.522392 1.5222252 1.5222522 1.5223575 1.522346 1.5221893 1.5222061 1.5223395 1.522337 1.5223771 1.522378 1.5223882 1.5223879 1.5223901 1.5223789 1.5223817 1.5223934 1.5221654 1.5221768 1.5223371 1.5223383 1.5221475 1.5221562 1.5223398 1.5223402 1.5223868 1.5223846 1.5223969 1.5223996 1.5224253 1.522424 1.5224291 1.5224307 1.5224218 1.5224196 1.5224243 1.5224266 1.5224354 1.522428 1.5224302 1.5224376 1.5224343 1.5224325 1.5224399 1.5224417 1.5224664 1.5224662 1.5224711 1.5224716 1.5224655 1.5224648 1.5224693 1.5224701 1.5224699 1.522471 1.5224717 1.5224705 1.5224731 1.5224726 1.5224714 1.5224719 1.5224649 1.5224668 1.5224714 1.5224695 1.5224714 1.5224801 1.5224848 1.5224766 1.5224852 1.5224861 1.5224779 1.522477 1.5224712 1.5224733 1.5224723 1.5224703 1.5224713 1.5224833 1.522474 1.5224617 1.5224829 1.5224851 1.5224767 1.5224748 1.5224692 1.5224718 1.52247 1.5224677 1.5224648 1.5224682 1.5224551 1.5224511 1.5224703 1.5224699 1.522468 1.5224684 1.5224692 1.5224688 1.5224671 1.5224674 1.5224487 1.5224637 1.5224634 1.5224473 1.5224635 1.5224635 1.5224465 1.5224457 1.522754 1.5227268 1.5227194 1.5227487 1.5227568 1.5227566 1.5227287 1.5227287 1.5226949 1.5226009 1.5226951 1.5226016 1.5226855 1.5226933 1.5225994 1.522589 1.5227287 1.5227587 1.522731 1.5227587 1.5227552 1.5227578 1.5227277 1.5227303 1.5225986 1.5226939 1.5226963 1.5226016 1.5226969 1.5226035 1.5225985 1.5226941 1.5225171 1.5225114 1.5224941 1.5224994 1.5225361 1.5225665 1.52257 1.5225425 1.5225408 1.5225713 1.5225669 1.5225397 1.5225172 1.5225182 1.5225004 1.5224996 1.5225143 1.5225172 1.5224995 1.522497 1.5225697 1.5225424 1.5225391 1.5225691 1.5225677 1.5225401 1.5225274 1.5225574 1.5225048 1.5225171 1.5224987 1.5224867 1.5225246 1.5226354 1.5226549 1.5226362 1.5226546 1.5226648 1.5226454 1.5226572 1.5226385 1.5226158 1.5225385 1.5226222 1.5225324 1.5225292 1.5226129 1.5226109 1.5225249 1.5224507 1.5224581 1.5224387 1.5224302 1.5225032 1.5225096 1.5224836 1.522477 1.5224956 1.5225002 1.5224734 1.5224689 1.5224447 1.5224491 1.5224279 1.5224236 1.5224374 1.5224387 1.5224175 1.5224162 1.5224658 1.5224956 1.5224918 1.5224647 1.5224757 1.5224901 1.5224633 1.522449 1.5224239 1.5224387 1.5224169 1.5224014 1.5223798 1.5223819 1.5223674 1.5223658 1.5223841 1.5223875 1.5223739 1.5223702 1.5223649 1.5223689 1.5223649 1.5223607 1.52236 1.5223621 1.5223578 1.5223558 1.5223925 1.5223994 1.5223875 1.52238 1.5224091 1.5224227 1.522413 1.5223993 1.5224057 1.52241 1.5223956 1.5223913 1.5223754 1.5223845 1.5223801 1.5223717 1.5223816 1.5223982 1.5223829 1.522365 1.5223983 1.5223995 1.5223852 1.522384 1.5223649 1.5223741 1.5223728 1.5223642 1.5223602 1.5223707 1.5223512 1.5223401 1.5223487 1.5223509 1.5223494 1.5223468 1.5223543 1.522359 1.5223579 1.5223532 1.5223312 1.5223532 1.5223478 1.5223239 1.5223399 1.5223435 1.5223179 1.5223128 1.5222085 1.5222137 1.5221885 1.5221828 1.5222199 1.522228 1.5222046 1.5221963 1.520756 1.5207522 1.5205721 1.5207583 1.5205491 1.520748 1.5205482 1.5207583 1.5207305 1.5205243 1.5206464 1.5206711 1.5206648 1.5206375 1.5209062 1.5207299 1.5207729 1.520935 1.5207586 1.5205875 1.520724 1.5205608 1.5207888 1.5205569 1.5207525 1.5205373 1.5207374 1.5207842 1.5210059 1.5209817 1.5206594 1.5206315 1.5206429 1.5206704 1.5227286 1.5225715 1.5227312 1.5225733 1.522577 1.5225814 1.5225604 1.5225574 1.5223987 1.5225288 1.5224987 1.5223707 1.5224918 1.5224459 1.5225679 1.5226196 1.5226644 1.5226228 1.5226185 1.5226611 1.5225324 1.522566 1.5225675 1.5225282 1.5225712 1.5225703 1.5225332 1.5225352 1.5226265 1.5226269 1.5226926 1.5226925 1.5226194 1.5226267 1.5226955 1.522683 1.5223286 1.5222934 1.5224076 1.5224327 1.5225165 1.5224821 1.5224945 1.5225269 1.5225708 1.5226301 1.5226453 1.5225821 1.5223768 1.5224883 1.5225415 1.522442 1.5212347 1.5213524 1.5215709 1.5217031 1.5216002 1.5214648 1.5214455 1.5215687 1.5211311 1.5212339 1.5211129 1.5212172 1.5235001 1.5236146 1.5236481 1.5234405 1.5233387 1.5235305 1.523546 1.5233611 1.5238218 1.5238061 1.523991 1.5240037 1.5240722 1.5239051 1.5238495 1.5241018 1.5243091 1.5242914 1.5241977 1.5242182 1.5242899 1.524328 1.5243852 1.5242883 1.5248138 1.5248216 1.5246077 1.5245928 1.5247263 1.5245127 1.5245863 1.5247513 1.5245903 1.5247453 1.5247768 1.5245158 1.5241766 1.5242296 1.5242507 1.5241509 1.5241556 1.5240642 1.5241628 1.524223 1.5245933 1.5243801 1.5245146 1.5247017 1.5233357 1.5232546 1.5234472 1.5234645 1.5239302 1.5237123 1.523693 1.5239046 1.5236873 1.5236262 1.5238064 1.5238805 1.5231368 1.5233134 1.5233812 1.5232211 1.5352113 1.5357575 1.553129 1.5517203 1.5460354 1.5470603 1.5360072 1.5365692 1.5365392 1.5357804 1.5357676 1.5363309 1.5531439 1.5536705 1.5475142 1.5471553 1.5368562 1.5360484 1.5363011 1.5369027 1.5361157 1.5362174 1.5354392 1.5353899 1.5524315 1.5525955 1.5464807 1.546636 1.554416 1.5536629 1.5480831 1.5474893 1.521374 1.5214082 1.5215252 1.5214923 1.5211701 1.521059 1.5210402 1.5211427 1.5211496 1.5210393 1.5210863 1.5211944 1.5213724 1.521489 1.5215637 1.5214307 1.5231675 1.5231547 1.5233468 1.523303 1.5237645 1.5235424 1.5236126 1.5238079 1.5238089 1.5240334 1.5240616 1.5237949 1.5233354 1.5235024 1.5235309 1.5233754 1.5232433 1.5232183 1.5234026 1.5233693 1.523834 1.5238665 1.523628 1.5236038 1.5239233 1.5238388 1.5236084 1.5236748 1.5231271 1.5233255 1.5234073 1.5232317 1.5244045 1.5245953 1.5245779 1.5243677 1.5239845 1.5240244 1.5241016 1.524003 1.5243186 1.5242005 1.5242346 1.5243017 1.5247548 1.5245054 1.5245855 1.5247917 1.5241155 1.5240889 1.5240047 1.524023 1.5243735 1.5245394 1.5245567 1.5243381 1.5246054 1.5247196 1.5244807 1.5243849 1.5240992 1.5240121 1.5241141 1.5241704 1.5353144 1.5356506 1.5531651 1.5522886 1.5470934 1.5464271 1.5358932 1.5364106 1.5365811 1.535831 1.5358838 1.5361999 1.5533161 1.5535356 1.5472779 1.5474513 1.5363191 1.5355834 1.5361007 1.5366785 1.5369314 1.5366111 1.5357931 1.5361172 1.5531397 1.5540546 1.5477148 1.5470468 1.5541482 1.5528977 1.5478542 1.5469383 1.521041 1.5210447 1.521146 1.5211388 1.5213547 1.5214661 1.5214963 1.5213673 1.5214265 1.5214011 1.5215267 1.5215482 1.5210528 1.5210771 1.5211832 1.5211598 1.523136 1.5234064 1.5233269 1.523235 1.5233056 1.5232199 1.5230596 1.523099 1.5237553 1.5236691 1.523456 1.523516 1.523786 1.5235579 1.5236657 1.5238714 1.5232757 1.5233033 1.5235039 1.5234211 1.5238979 1.5239852 1.5237302 1.5236646 1.5239914 1.5239872 1.5237384 1.5237443 1.5232693 1.5234605 1.5234712 1.5232941 1.5242431 1.5241458 1.5241937 1.5242456 1.5241177 1.524161 1.5242326 1.5241297 1.5244918 1.5246784 1.5246672 1.5244505 1.5246955 1.5244673 1.5245584 1.5247469 1.5240388 1.5239537 1.5240965 1.5241589 1.5238902 1.5239257 1.5239871 1.5238925 1.5244092 1.524413 1.524208 1.524197 1.5244783 1.5242693 1.5244483 1.5246391 1.5365825 1.5358586 1.535809 1.536388 1.53608 1.5363356 1.5369124 1.5366508 1.554474 1.5538233 1.5476833 1.5481747 1.5530386 1.5534161 1.5473226 1.5470277 1.5360542 1.5354316 1.5353085 1.5347315 1.5527105 1.5513111 1.545647 1.5466414 1.5357651 1.5361456 1.5540999 1.5535627 1.5474657 1.5478013 1.5363226 1.5367799 1.5211078 1.5211316 1.5212339 1.5212087 1.5214156 1.5215356 1.5215879 1.5214504 1.5216338 1.5217563 1.5219826 1.5218776 1.5212984 1.521411 1.5216321 1.5215417 1.5231107 1.5233136 1.5232331 1.5230978 1.5231941 1.5233907 1.5234766 1.5232999 1.5239351 1.5238461 1.5236264 1.5236977 1.5236729 1.5234734 1.5235673 1.5237539 1.5241035 1.5240214 1.5241315 1.5241824 1.5239042 1.5239338 1.5240344 1.5239406 1.5244532 1.5244171 1.5242251 1.5242476 1.5245415 1.5243393 1.5244893 1.5246655 1.5245549 1.5244563 1.5246432 1.5247326 1.5241973 1.5242255 1.5244324 1.524317 1.5245657 1.5248504 1.5247214 1.5246165 1.5249832 1.5247497 1.524962 1.5251899 1.5233128 1.5236425 1.5234538 1.5234313 1.5236535 1.5238094 1.5239618 1.5238365 1.524268 1.5240248 1.5241861 1.5244292 1.5239011 1.5237088 1.5238955 1.5241039 1.5458679 1.5347549 1.5353179 1.5525821 1.5512619 1.546609 1.5356409 1.536139 1.5365302 1.5357775 1.5352618 1.5358506 1.5532057 1.55309 1.5471678 1.5471187 1.5361086 1.5354141 1.5363924 1.5370111 1.536632 1.5358761 1.5362731 1.5369614 1.5474975 1.5536643 1.5533277 1.5474211 1.5545109 1.5523844 1.5481102 1.5466285 1.5675845 1.566595 1.5841592 1.5829567 1.5988474 1.6003385 1.5649973 1.5654735 1.5817599 1.580927 1.5976325 1.596428 1.5641848 1.5658653 1.5799109 1.5819367 1.597627 1.5951368 1.5660157 1.566724 1.5831743 1.5822305 1.5980268 1.5991748 1.5649868 1.5661121 1.5966277 1.5810593 1.5824176 1.5983838 1.5663132 1.566674 1.5832687 1.5826894 1.599454 1.5986688 1.5658524 1.5673874 1.5822557 1.5841065 1.5982178 1.6004501 1.5658838 1.5671371 1.5837959 1.5999892 1.5820305 1.5977302 1.6166508 1.6126883 1.6187099 1.6145886 1.6198612 1.6160218 1.6189702 1.6150147 1.6207767 1.6164718 1.6181187 1.613839 1.618479 1.6147196 1.6211189 1.6169086 1.6465638 1.6458771 1.6442891 1.6437073 1.6661936 1.6683414 1.6408906 1.6746183 1.6768447 1.644286 1.6468872 1.6463391 1.6478301 1.6473441 1.6695348 1.6687359 1.6772541 1.6780341 1.6437091 1.643629 1.6464839 1.6461263 1.6493133 1.6485124 1.6711335 1.6684661 1.6770337 1.6796917 1.6459154 1.6418027 1.6717605 1.6488292 1.6491876 1.6461679 1.6452235 1.668148 1.642545 1.6801942 1.6765264 1.6389622 1.614874 1.6109707 1.6177768 1.6135048 1.6195279 1.6153917 1.6182311 1.6141902 1.6191342 1.6150072 1.6209129 1.6166657 1.6179605 1.6138472 1.6164959 1.6124201 1.6453156 1.6444114 1.6421707 1.641672 1.6668167 1.6638772 1.6459953 1.645222 1.6472717 1.6464249 1.6677687 1.6686641 1.6770462 1.6432573 1.6459579 1.6762218 1.6750951 1.6721195 1.6371898 1.6424812 1.6777251 1.6794554 1.6462216 1.644866 1.6439647 1.6767934 1.6749752 1.6429674 1.6488874 1.6477995 1.646919 1.6460256 1.670265 1.6684978 1.6441294 1.6433084 1.6458442 1.6450095 1.6658367 1.6675071 1.566472 1.5658362 1.5830376 1.582052 1.5992314 1.5978442 1.567023 1.5678087 1.6000008 1.5837571 1.5846255 1.6010618 1.5668242 1.5672706 1.5835111 1.5839208 1.5998086 1.6001159 1.5639332 1.5655927 1.5799367 1.5818694 1.5954609 1.5978013 1.5662294 1.5662039 1.5826439 1.5828109 1.5990735 1.5986779 1.5640517 1.565488 1.5800665 1.5818068 1.595654 1.5977868 1.565304 1.5677441 1.5816381 1.5845361 1.6009562 1.5976029 1.5662854 1.5824251 1.5664607 1.5829319 1.5990268 1.5980865 1.6217792 1.6174991 1.6178524 1.6141636 1.6196496 1.6155555 1.6184565 1.6140842 1.6485021 1.6161979 1.648061 1.647862 1.6155307 1.6472623 1.6698385 1.6704917 1.6674315 1.644749 1.6443284 1.6124604 1.6468253 1.6145361 1.6462347 1.6687995 1.6425119 1.6760365 1.6774808 1.6472969 1.6453606 1.6791658 1.678413 1.6453563 1.646011 1.6457746 1.6501542 1.6492075 1.6718604 1.6682615 1.6438762 1.6769664 1.6804308 1.6486917 1.644571 1.6794547 1.6772116 1.6408858 1.6480736 1.6472957 1.6464376 1.6452982 1.6681343 1.6700558 1.6156677 1.6181158 1.6195238 1.6190492 1.6154682 1.6116615 1.6181729 1.6141241 1.6203837 1.6163653 1.6207864 1.6166708 1.6205876 1.6165706 1.6218222 1.6176793 1.6198213 1.6158328 1.6181609 1.6140759 1.6662481 1.6435712 1.6433088 1.6461586 1.6455041 1.6680921 1.6491424 1.6483038 1.6485811 1.6479409 1.6711903 1.6704568 1.6790824 1.6482933 1.6476984 1.6797953 1.6414716 1.6747381 1.6766052 1.650163 1.6481629 1.6475334 1.6461382 1.6454349 1.6681218 1.670176 1.6805038 1.6814542 1.6503489 1.6468053 1.6448454 1.6788023 1.6766123 1.6420282 1.6501619 1.6492941 1.6489092 1.6482445 1.6719611 1.6709844 1.5231364 1.5232128 1.5232766 1.5231924 1.5235237 1.5234369 1.5235029 1.5235611 1.5233982 1.5232765 1.5233449 1.523455 1.5229793 1.5230523 1.5231516 1.5230693 1.5238214 1.5238965 1.523886 1.5237814 1.5238066 1.5236956 1.5235857 1.523711 1.524116 1.523995 1.5241625 1.5240607 1.5241965 1.5242059 1.5242568 1.5242465 1.5238614 1.5238587 1.523937 1.5239381 1.5243208 1.5243261 1.5242427 1.5242392 1.5242968 1.5243531 1.5244025 1.5243501 1.5238805 1.5239594 1.5240085 1.5239057 1.5232424 1.523309 1.5232964 1.5232089 1.5235156 1.523523 1.5235808 1.5235856 1.5232447 1.5232779 1.5233458 1.5233169 1.5235375 1.523563 1.5236254 1.5236022 1.532136 1.5331862 1.5351561 1.5338562 1.5348407 1.5344403 1.5353895 1.5356585 1.5353633 1.5355236 1.5355349 1.5351324 1.5331132 1.5351472 1.534916 1.5328552 1.532906 1.5332568 1.5352644 1.5347475 1.5355022 1.5350723 1.5354963 1.5357252 1.5357856 1.535678 1.5352773 1.5352982 1.53317 1.535145 1.5349569 1.5329924 1.536567 1.5357151 1.5356645 1.5362539 1.5363043 1.5354847 1.5359449 1.5366326 1.5374016 1.5370211 1.5371915 1.5376018 1.537303 1.5369159 1.5370406 1.5374834 1.5358076 1.5348406 1.535454 1.5364579 1.5371858 1.536136 1.5363028 1.5373449 1.5373443 1.5375752 1.5378043 1.5375145 1.5358552 1.5365831 1.5364164 1.5355705 1.5496016 1.5513853 1.5657355 1.5631623 1.5655585 1.5678226 1.5520803 1.5535361 1.552944 1.5511197 1.5510699 1.5529509 1.565203 1.5666068 1.5674598 1.5687345 1.5524307 1.5506101 1.5517365 1.5532509 1.5520062 1.5501494 1.5514563 1.5529819 1.5637247 1.5657047 1.56779 1.5659482 1.5661754 1.5644801 1.5683322 1.5667516 1.5232844 1.5233652 1.5234012 1.5233081 1.5235927 1.5236282 1.5236947 1.5236644 1.5237043 1.5237096 1.5236231 1.523616 1.523305 1.5233794 1.5233698 1.5232758 1.5239685 1.5239644 1.5240455 1.5240499 1.5243643 1.5244252 1.5244434 1.524356 1.524349 1.5244111 1.5244717 1.524382 1.5239225 1.5239547 1.5240377 1.5240082 1.5240195 1.5240046 1.5239006 1.5239144 1.5232783 1.523348 1.5233486 1.5232581 1.5235695 1.5235629 1.5236273 1.5236353 1.5233013 1.5234576 1.523377 1.5233711 1.5328346 1.5334286 1.5354275 1.5346177 1.535382 1.5349767 1.5356512 1.5358742 1.5331604 1.5351858 1.5352074 1.5331142 1.523296 1.5798541 1.5818303 1.59627 1.5977851 1.5984209 1.6000525 1.6162998 1.6138756 1.5787482 1.5811275 1.5948459 1.5964826 1.597657 1.5993269 1.6154556 1.6122552 1.5812089 1.5977074 1.5994635 1.5783907 1.5946927 1.5962798 1.6155722 1.6122393 1.5823626 1.5991721 1.600709 1.5806981 1.5972227 1.5987388 1.6149287 1.6170943 1.6265561 1.628047 1.6299263 1.6312515 1.6314872 1.6331304 1.6292027 1.6308304 1.6280642 1.6296817 1.6305796 1.6320722 1.6297882 1.6312507 1.6263846 1.6278551 1.6552438 1.6590922 1.6521659 1.6562091 1.6615856 1.6567657 1.6545164 1.6586924 1.6582003 1.6533038 1.6556793 1.6596051 1.659652 1.6550315 1.6516089 1.6556739 1.5207357 1.52057 1.5205346 1.5205682 1.5207007 1.5206646 1.5205329 1.6226839 1.5927534 1.5883231 1.6167333 1.6196644 1.5900875 1.5898509 1.6190776 1.6232098 1.5927463 1.5883883 1.6177988 1.6144628 1.5843908 1.5879599 1.6178812 1.6267879 1.5961805 1.5878921 1.6161622 1.6220001 1.5917369 1.592912 1.6232103 1.5904725 1.618517 1.6160985 1.5887337 1.5914603 1.6209301 1.625179 1.5955058 1.6046861 1.6033888 1.6028809 1.6032788 1.6057703 1.6032577 1.6048761 1.6060839 1.5942494 1.5614618 1.5830122 1.612415 1.6180678 1.5877237 1.6216017 1.5909956 1.5882362 1.6181302 1.5897595 1.6199413 1.6210828 1.5911023 1.589662 1.6187471 1.6184924 1.5896741 1.6194635 1.5915502 1.5878305 1.6155026 1.6183476 1.5901004 1.590198 1.6181395 1.588277 1.6160009 1.6204382 1.5923869 1.5883462 1.6156428 1.6125329 1.5854029 1.522646 1.5225233 1.5224851 1.5224563 1.5224429 1.5224682 1.522433 1.5224141 1.5224038 1.5224205 1.5223487 1.5223903 1.522407 1.522366 1.5224554 1.5224275 1.5223875 1.5225685 1.5226186 1.5227027 1.5225545 1.5225258 1.522657 1.5228407 1.5227968 1.5225271 1.5227883 1.5227617 1.5225101 1.5226455 1.5226253 1.5225343 1.5225045 1.5224752 1.5225008 1.5224802 1.5224603 1.5224348 1.5224522 1.5224148 1.5224253 1.5224425 1.5224315 1.5224911 1.5224633 1.5224518 1.5224766 1.5225557 1.5225711 1.5226199 1.5226026 1.5225867 1.5226243 1.5226784 1.5226371 1.5231186 1.5229791 1.5231575 1.5229294 1.5233852 1.5236741 1.5236567 1.5233423 1.5230689 1.5229201 1.5230906 1.5228884 1.5233101 1.5224434 1.5224294 1.5224065 1.5224187 1.5224176 1.5224081 1.5223872 1.5223954 1.5223722 1.5223791 1.522387 1.5223797 1.5224095 1.5223968 1.5223888 1.5223998 1.5223055 1.5223465 1.5223536 1.5223124 1.5223604 1.5223675 1.5223755 1.522368 1.5223983 1.5223854 1.5223774 1.5223887 1.5223752 1.5223629 1.5223216 1.5223331 1.5222715 1.5222555 1.5222151 1.5222289 1.5222422 1.5222314 1.522193 1.5222026 1.5221761 1.5222103 1.5222081 1.5221733 1.5222075 1.5222073 1.5221719 1.5221717 1.5222229 1.5222164 1.5221792 1.5221849 1.5222118 1.5222089 1.5221727 1.522175 1.5224007 1.5223951 1.5223755 1.5223803 1.522391 1.5223884 1.5223692 1.5223716 1.5223559 1.5223614 1.5223637 1.522358 1.5223723 1.5223672 1.5223613 1.5223658 1.5223869 1.5223863 1.5223672 1.5223677 1.5223864 1.5223869 1.5223678 1.5223672 1.5223556 1.5223604 1.5223597 1.5223547 1.52236 1.5223595 1.5223544 1.5223547 1.522304 1.5223364 1.5223343 1.5223004 1.5223451 1.5223482 1.5223473 1.5223437 1.5223475 1.5223471 1.522343 1.522343 1.5223325 1.5223331 1.5222979 1.5222961 1.5223605 1.5223552 1.5223493 1.5223538 1.5223513 1.5223488 1.522344 1.5223459 1.5222953 1.5223327 1.5223338 1.5222955 1.5223405 1.5223363 1.522297 1.5223001 1.5522261 1.5567597 1.5584981 1.5534275 1.550686 1.5510232 1.555496 1.5550239 1.5693186 1.5616337 1.5667886 1.563456 1.5597167 1.5647056 1.5603257 1.5654798 1.5596955 1.5508656 1.555155 1.554574 1.5597689 1.5646464 1.5704782 1.5646534 1.5569986 1.55261 1.5572355 1.5520221 1.5622136 1.5675039 1.5618557 1.5669983 1.5823941 1.5697631 1.5750541 1.5759837 1.5805702 1.5883209 1.5724316 1.5780779 1.5730743 1.5788874 1.584948 1.5839503 1.5722039 1.5778375 1.5814083 1.5749003 1.5875211 1.583719 1.5709353 1.5699602 1.576654 1.5754405 1.5811997 1.5826405 1.5699585 1.5753129 1.5791869 1.5729472 1.5711877 1.5706779 1.5762892 1.5767011 1.5809047 1.5850211 1.5824723 1.5821497 1.550664 1.555004 1.5570719 1.5521857 1.5487897 1.550255 1.5545517 1.5528642 1.5674915 1.559676 1.5646196 1.5618467 1.5572587 1.561911 1.5591759 1.564097 1.5566664 1.5504722 1.5547464 1.5518042 1.5593558 1.5642373 1.5669931 1.5614079 1.5556164 1.550648 1.5550128 1.5508123 1.5597255 1.5647514 1.5603132 1.5652962 1.5698275 1.5752394 1.5791181 1.5728585 1.5692931 1.574725 1.5667917 1.5718654 1.5808969 1.5849784 1.5772165 1.5804153 1.5402726 1.5367591 1.5395519 1.5371483 1.5426973 1.546199 1.5474079 1.5434762 1.5397638 1.5367531 1.5395768 1.5366739 1.5427563 1.5463035 1.5429369 1.5464764 1.5284399 1.5300469 1.5301713 1.5284169 1.5284113 1.5300169 1.5298087 1.5280938 1.5319204 1.534061 1.5344103 1.5320526 1.531892 1.5340367 1.5339756 1.5316558 1.5285198 1.5301218 1.5305808 1.5287856 1.528207 1.5285774 1.5301731 1.5297061 1.5319925 1.5341297 1.534907 1.5325017 1.5314685 1.532036 1.5341659 1.5334773 1.5365858 1.5393711 1.5405688 1.5374303 1.535798 1.5366062 1.5393765 1.5384252 1.5463417 1.5477519 1.5424964 1.5437871 1.5413981 1.5424905 1.5459818 1.544713 1.5423147 1.5370511 1.5398677 1.5389531 1.5430371 1.5465643 1.549922 1.5457348 1.537596 1.5405491 1.5378115 1.5408294 1.54422 1.5479982 1.5438508 1.5475268 1.5289092 1.5306202 1.530878 1.5289945 1.5284666 1.5301253 1.5300232 1.5282637 1.5354214 1.5326156 1.5348808 1.5328915 1.5342989 1.5320631 1.5342847 1.5319153 1.5313747 1.5286366 1.5302627 1.5294408 1.5321614 1.5343233 1.5359903 1.5334262 1.5305206 1.5288699 1.5305936 1.5286769 1.5326063 1.5349058 1.5324937 1.5347415 1.5374734 1.5403985 1.5413441 1.5380643 1.5368356 1.5397254 1.5368007 1.5396275 1.5477079 1.5488246 1.5436799 1.5447011 1.5428102 1.5429684 1.5465884 1.5463408 1.5254099 1.5254729 1.5245369 1.526378 1.52745 1.5276342 1.5263758 1.5242222 1.525025 1.5243538 1.5251622 1.5261408 1.527306 1.5259954 1.5271518 1.5221609 1.5224988 1.5224063 1.5220564 1.5220248 1.5220628 1.5223835 1.52234 1.5233701 1.5229234 1.5234482 1.5228132 1.5227382 1.5232325 1.5227867 1.523288 1.5238238 1.5225553 1.5221876 1.523632 1.5229809 1.5235065 1.5240953 1.5248842 1.524852 1.5240027 1.5239083 1.5246689 1.5238425 1.5245879 1.5271004 1.5270576 1.525842 1.525803 1.5255003 1.5255959 1.5267118 1.5265911 1.5213724 1.5213308 1.5214927 1.5214443 1.5215931 1.5218718 1.5217848 1.5216497 1.5213269 1.5213051 1.5214179 1.5214431 1.5215945 1.5215652 1.5217888 1.5217552 1.5216966 1.5219005 1.521025 1.5211949 1.521172 1.5209857 1.5212731 1.5212374 1.5211641 1.5212312 1.5212126 1.5211524 1.5209791 1.5209578 1.5208263 1.5208429 1.5208464 1.5208301 1.5208645 1.5208528 1.5208365 1.5208472 1.5208693 1.5208874 1.5209245 1.5209051 1.5208978 1.5209293 1.5209709 1.5209348 1.5208405 1.5208386 1.520822 1.5208239 1.5209257 1.5211214 1.521114 1.5209141 1.5211945 1.5211854 1.5211113 1.5211798 1.521163 1.5211035 1.5209101 1.5208966 1.5207948 1.5207802 1.5207769 1.5207895 1.5207716 1.5207668 1.5207645 1.5207687 1.5207609 1.5207636 1.5207676 1.5207648 1.5207879 1.5207748 1.5207717 1.520783 1.5208062 1.5208129 1.5208516 1.5208428 1.5208147 1.5208214 1.5208623 1.5208539 1.5209688 1.5211542 1.5211344 1.5209339 1.5212366 1.5212115 1.52112 1.5211896 1.5211657 1.5211078 1.5209157 1.5208985 1.5208265 1.5208098 1.5207888 1.5208021 1.5207994 1.5207932 1.5207757 1.5207802 1.5207671 1.5207698 1.5207736 1.5207706 1.5207931 1.5207805 1.5207769 1.5207875 1.520809 1.5208185 1.5208583 1.5208448 1.5208321 1.5208605 1.5209052 1.5208747 1.5213341 1.521307 1.5214323 1.5214609 1.5216249 1.5215953 1.5218343 1.5218044 1.5213759 1.5212814 1.5214019 1.5212513 1.5217831 1.5215596 1.5215273 1.5217237 1.5207897 1.5207875 1.5207714 1.520773 1.5207857 1.5207833 1.5207674 1.5207697 1.5207591 1.5207621 1.5207644 1.5207617 1.5207676 1.520766 1.5207635 1.5207649 1.520753 1.5207559 1.5207581 1.5207554 1.5207573 1.5207601 1.5207618 1.5207593 1.5207644 1.520763 1.5207607 1.5207621 1.5207612 1.5207596 1.520757 1.5207586 1.5214136 1.5212889 1.5214127 1.5212785 1.5218025 1.5215743 1.5215765 1.5217862 1.5213734 1.521271 1.5213912 1.5212488 1.521771 1.5215485 1.5215244 1.5217195 1.5224252 1.522071 1.5224102 1.5220535 1.5228358 1.5233615 1.5234386 1.5228549 1.5219704 1.5222884 1.5220334 1.5223658 1.5227841 1.523303 1.5226884 1.5231848 1.5249937 1.5240693 1.524852 1.5241104 1.5270461 1.5258011 1.5259757 1.5271503 1.5239399 1.5247238 1.524082 1.524885 1.5271381 1.5258605 1.5256734 1.5268132 1.5224407 1.5221007 1.5224352 1.5220707 1.522854 1.5228678 1.5233702 1.523395 1.5223273 1.5220465 1.5223798 1.5219754 1.5233683 1.5227988 1.5227363 1.5232447 1.5249865 1.5240077 1.5247942 1.5240998 1.5270013 1.5257488 1.5259716 1.5271485 1.5238009 1.5245536 1.523942 1.5247236 1.5269226 1.5256745 1.5254671 1.5265636 1.520694 1.5206942 1.5207039 1.5207036 1.5206965 1.5206987 1.5207087 1.5207063 1.5207291 1.5207187 1.5207163 1.5207258 1.5207241 1.5207137 1.520713 1.5207221 1.5206954 1.5206968 1.5207069 1.5207052 1.5207035 1.5207175 1.5207282 1.5207138 1.52075 1.5207389 1.5207242 1.5207342 1.5207282 1.5207173 1.5207153 1.5207251 1.5207342 1.5207373 1.5207453 1.5207423 1.5207678 1.5207591 1.5207435 1.5207515 1.5207796 1.5207742 1.5207582 1.5207634 1.520758 1.5207521 1.5207492 1.5207547 1.5207569 1.5207522 1.5207491 1.5207537 1.5207457 1.5207376 1.5207346 1.5207422 1.5207305 1.5207328 1.5207404 1.5207379 1.5207522 1.5207467 1.5207442 1.5207491 1.5253929 1.5241949 1.5249996 1.5244448 1.5259719 1.5271262 1.5278046 1.5264401 1.5241387 1.5249591 1.524213 1.5250517 1.5260686 1.5272812 1.5259499 1.5271304 1.5221445 1.5225049 1.5224495 1.5220703 1.5220314 1.5220607 1.5224017 1.5223629 1.5234885 1.5229559 1.5235113 1.5228893 1.5227813 1.5232995 1.5228297 1.5233605 1.5225885 1.52215 1.5224998 1.5221872 1.5229364 1.5234724 1.523671 1.523049 1.5224352 1.5221182 1.5224726 1.5220593 1.5229175 1.5234676 1.5228702 1.5234075 1.5241933 1.5250209 1.525071 1.5241662 1.5240152 1.5248141 1.5239367 1.524713 1.5273285 1.5274021 1.5260206 1.5260795 1.525659 1.5257825 1.5269434 1.5267865 1.5212995 1.5212792 1.5214287 1.521403 1.5215657 1.5218353 1.521775 1.5215972 1.5212796 1.5212734 1.5213918 1.5214022 1.521563 1.5215474 1.5217696 1.5217479 1.5214549 1.5213252 1.5214575 1.5213105 1.5216288 1.5218465 1.5218722 1.5216283 1.5213995 1.5213002 1.5214294 1.521267 1.521598 1.5218142 1.52156 1.5217671 1.5209368 1.5211331 1.5211232 1.5209192 1.5212151 1.5212023 1.5211169 1.5211938 1.5211683 1.5211043 1.5209142 1.5208952 1.5207543 1.5207556 1.52076 1.5207581 1.5207661 1.5207601 1.5207571 1.5207619 1.5207927 1.5207759 1.5207704 1.5207843 1.5207824 1.520768 1.5207651 1.5207768 1.5208141 1.5208252 1.5208704 1.5208574 1.5208009 1.5208108 1.5208529 1.5208389 1.5209183 1.5211194 1.5211099 1.5209024 1.5211931 1.5211774 1.5211138 1.521179 1.5211769 1.5211159 1.5209066 1.520913 1.520785 1.5207701 1.5207687 1.520781 1.5207612 1.5207565 1.5207571 1.520761 1.5207773 1.5207627 1.5207665 1.520781 1.5207865 1.5207736 1.5207879 1.5207994 1.5208221 1.5208107 1.5208485 1.520858 1.5208054 1.5208121 1.5208537 1.5208437 1.520757 1.5207557 1.5207539 1.5207547 1.5207553 1.5207548 1.5207531 1.5207536 1.5207507 1.5207519 1.5207524 1.5207515 1.5207535 1.5207527 1.5207519 1.5207526 1.520773 1.5207592 1.5207599 1.520774 1.5207537 1.5207537 1.5207538 1.5207543 1.5207544 1.5207538 1.5207546 1.5207553 1.5207609 1.5207602 1.5207746 1.5207754 1.5210517 1.5212311 1.5212599 1.5211048 1.5213096 1.5213486 1.5214009 1.5214885 1.5216794 1.5215619 1.52125 1.5215611 1.5209224 1.5209086 1.5209638 1.5209771 1.5209007 1.5208968 1.5209499 1.5209549 1.5214106 1.5210858 1.5210928 1.5214193 1.5211188 1.521103 1.521431 1.521446 1.5214899 1.5211655 1.5212058 1.5215238 1.5210113 1.5209498 1.5209906 1.5210514 1.5209752 1.5211697 1.5211661 1.5209708 1.5212473 1.5212401 1.5211699 1.5212381 1.5212327 1.5211713 1.5209736 1.5209799 1.5208394 1.5208243 1.5208353 1.5208474 1.5208155 1.520811 1.5208243 1.5208278 1.5208524 1.5208344 1.5208377 1.5208555 1.5208562 1.5208441 1.5208615 1.5208719 1.5208938 1.5208801 1.5209177 1.5209284 1.5208725 1.5208669 1.5209094 1.5209119 1.5213444 1.5213333 1.521456 1.5214712 1.5216364 1.5216162 1.5218471 1.5218214 1.5214406 1.5213277 1.5214458 1.5213172 1.5218202 1.5216009 1.5215906 1.5217847 1.5208095 1.5208097 1.520823 1.520823 1.5208106 1.5208114 1.5208235 1.5208234 1.5208493 1.5208326 1.520833 1.5208501 1.5208331 1.5208329 1.5208505 1.520851 1.5213804 1.5210663 1.5210704 1.5213866 1.5209413 1.5208961 1.5208958 1.5209431 1.5208954 1.5208954 1.5209448 1.5209467 1.5210798 1.5210748 1.5213937 1.5214013 1.52158 1.5214039 1.5215279 1.5214429 1.5219177 1.5216898 1.521745 1.5219567 1.5218827 1.5215795 1.5216997 1.521762 1.5220775 1.5218566 1.5220283 1.5222153 1.5207536 1.5207512 1.5207494 1.5207518 1.5207474 1.5207419 1.5207401 1.5207453 1.5207358 1.520738 1.5207433 1.5207415 1.5207503 1.5207473 1.5207458 1.5207488 1.5207349 1.5207264 1.5207247 1.5207327 1.5207166 1.5207061 1.5207049 1.5207147 1.5207001 1.5207019 1.5207119 1.52071 1.5207304 1.5207212 1.5207194 1.5207278 1.5207201 1.5207077 1.520718 1.5207307 1.5207043 1.5207069 1.5207167 1.5207143 1.5207346 1.5207258 1.5207237 1.520732 1.5207371 1.5207277 1.5207406 1.5207494 1.5207528 1.5207505 1.5207494 1.5207521 1.5207467 1.5207411 1.5207391 1.5207448 1.5207569 1.5207442 1.5207499 1.520763 1.5207575 1.5207542 1.5207675 1.5207708 1.5212895 1.5209789 1.5209952 1.5213066 1.5208748 1.5208456 1.5208573 1.5208885 1.5208775 1.5208678 1.5209009 1.5209118 1.5210242 1.5210102 1.5213211 1.521334 1.5207939 1.5207803 1.5207915 1.5208056 1.5207768 1.5207699 1.5207797 1.5207874 1.5207968 1.5207885 1.5207969 1.5208051 1.5208114 1.5208017 1.5208163 1.5208256 1.5208115 1.5208103 1.5208208 1.5208228 1.5208074 1.5208026 1.5208119 1.520817 1.5208334 1.5208187 1.5208243 1.5208395 1.5208312 1.5208283 1.5208441 1.5208473 1.5208956 1.5208937 1.5209344 1.5209384 1.52089 1.5208844 1.520921 1.5209283 1.5213457 1.5210358 1.5210453 1.5213558 1.5210604 1.5210534 1.5213646 1.5213725 1.5225968 1.5221853 1.5225221 1.5222252 1.5229441 1.5234639 1.5236054 1.5230256 1.5224547 1.5227576 1.522337 1.5226645 1.5230758 1.5235842 1.5231385 1.5236106 1.5251376 1.5241013 1.5248753 1.5242612 1.5270411 1.525814 1.5261101 1.5272691 1.5241962 1.5249121 1.5242088 1.5249708 1.5271104 1.5258973 1.5257822 1.5268268 1.5224448 1.5221149 1.522451 1.5220825 1.5228718 1.5228636 1.5233898 1.5233805 1.5223786 1.5220786 1.5224051 1.5220327 1.5233724 1.5228155 1.5227808 1.5232797 1.524864 1.5240257 1.5247976 1.5240148 1.5269574 1.5257337 1.5258094 1.526938 1.5238968 1.5246491 1.5240038 1.5247738 1.526932 1.5257086 1.5255606 1.526654 1.531841 1.5336995 1.5357926 1.5381029 1.5423819 1.5452135 1.5434886 1.5405402 1.5460916 1.5511373 1.5486734 1.5479879 1.5538403 1.5511823 1.5563748 1.5535185 1.5562902 1.5205089 1.520509 1.5205052 1.5205056 1.5205129 1.5205162 1.5205133 1.5205165 1.5205103 1.5205106 1.5205106 1.5205109 1.5205196 1.5205158 1.5205184 1.5205125 1.5205128 1.5205149 1.5205151 1.5206272 1.5206431 1.5205069 1.5205066 1.5205049 1.5206284 1.5206287 1.5205044 1.5206244 1.5205047 1.5206176 1.520505 1.5205226 1.5205166 1.5205165 1.5205223 1.5206045 1.5205999 1.5207313 1.5207254 1.5205219 1.5205208 1.5205222 1.5205211 1.5205291 1.5205257 1.5205258 1.5205292 1.520524 1.5205226 1.5205249 1.5205258 1.5205318 1.520528 1.5205298 1.5205335 1.5206107 1.5206038 1.5206106 1.5206039 1.5206856 1.5207739 1.5206846 1.5207733 1.5206056 1.5206139 1.5206086 1.5206159 1.5206881 1.5207929 1.5206906 1.5207823 1.5206373 1.5205185 1.5206283 1.5205192 1.5206445 1.5205196 1.5205198 1.5206262 1.520523 1.5206344 1.5205233 1.5206419 1.5205261 1.5206344 1.5206427 1.5205283 1.5205994 1.5206029 1.5206981 1.5207065 1.5207008 1.5207043 1.5206083 1.520611 1.5206854 1.5207626 1.5207649 1.5206909 1.5207612 1.5208323 1.5209306 1.5208252 1.5206375 1.5206502 1.5206437 1.520615 1.5206129 1.5206231 1.5206247 1.5206325 1.5206313 1.5206381 1.520639 1.5205262 1.5205119 1.5205255 1.5205117 1.5205974 1.5205418 1.5205427 1.5206003 1.5206317 1.5206317 1.520638 1.5206379 1.5206233 1.5206124 1.5206138 1.5206233 1.5206098 1.5206093 1.5206194 1.5206181 1.5206254 1.5206275 1.5206342 1.520632 1.520543 1.5205982 1.5205415 1.5205998 1.5205105 1.5205238 1.5205251 1.5205105 1.5205107 1.5205119 1.5205243 1.5205246 1.5205938 1.5205406 1.5205395 1.5205965 1.5207063 1.5206958 1.5206836 1.5206926 1.5206866 1.5206787 1.5206683 1.5206749 1.5206631 1.5206633 1.5206695 1.5206693 1.5206864 1.520677 1.5206767 1.5206851 1.520672 1.5206665 1.5206578 1.5206623 1.5206613 1.5206559 1.5206489 1.5206532 1.5206444 1.5206437 1.5206483 1.520649 1.5206576 1.5206526 1.5206531 1.5206575 1.520638 1.5206399 1.5206448 1.5206433 1.520643 1.5206432 1.5206476 1.5206475 1.5206571 1.5206519 1.5206517 1.5206564 1.5206548 1.5206494 1.5206484 1.5206539 1.5206881 1.5206784 1.5206771 1.5206859 1.5206698 1.5206626 1.5206619 1.5206686 1.5206599 1.5206604 1.5206669 1.5206671 1.5206838 1.5206744 1.5206749 1.5206839 1.5206953 1.5206843 1.5206832 1.5206936 1.5206736 1.5206635 1.5206626 1.5206721 1.5206588 1.5206596 1.5206691 1.5206683 1.5206905 1.5206791 1.5206784 1.5206887 1.5206541 1.5206454 1.5206448 1.5206529 1.5206373 1.5206295 1.5206294 1.5206365 1.520626 1.5206258 1.5206331 1.5206333 1.5206498 1.5206408 1.5206409 1.5206491 1.5206377 1.5206295 1.5206372 1.5206462 1.5206283 1.5206291 1.5206364 1.5206357 1.5206532 1.5206441 1.5206434 1.5206517 1.5206547 1.5206453 1.520655 1.5206644 1.5206955 1.520684 1.520682 1.5206926 1.5206728 1.5206622 1.5206608 1.5206706 1.5206745 1.520664 1.5206739 1.5206852 1.520696 1.5206843 1.5206964 1.5207077 1.5206143 1.5206145 1.5206216 1.5206215 1.5206064 1.5205974 1.5205985 1.5206063 1.5205952 1.5205943 1.5206026 1.5206032 1.5206106 1.5206102 1.5206176 1.520618 1.5205412 1.5205406 1.520586 1.5205879 1.5205204 1.5205288 1.5205298 1.5205213 1.5205213 1.5205291 1.5205215 1.520529 1.5205391 1.5205827 1.5205393 1.5205842 1.5206128 1.5206138 1.5206211 1.5206201 1.5206057 1.5205968 1.5205963 1.5206044 1.5206053 1.5205973 1.5206058 1.520613 1.5206207 1.5206135 1.5206211 1.5206286 1.5205862 1.5205413 1.5205416 1.5205856 1.5205239 1.520531 1.5205235 1.5205307 1.5205262 1.5205308 1.5205382 1.5205331 1.520543 1.5205859 1.520548 1.5205951 1.5207581 1.5207459 1.5207521 1.520764 1.5207335 1.5207216 1.5207273 1.5207389 1.5207417 1.5207298 1.5207416 1.5207543 1.5207671 1.5207538 1.5207672 1.5207801 1.5207099 1.520699 1.5207048 1.5207151 1.5206889 1.5206795 1.520685 1.5206941 1.520696 1.5206862 1.5206956 1.5207062 1.5207173 1.5207057 1.520717 1.5207284 1.5211237 1.5208363 1.5208511 1.5211445 1.5207579 1.5207414 1.5207514 1.5207699 1.5207753 1.5207624 1.5207829 1.5207965 1.5208852 1.5208674 1.5211663 1.5211873 1.5208315 1.5208171 1.5208433 1.5208587 1.5208023 1.5207879 1.5208111 1.5208263 1.5212089 1.5209035 1.5209217 1.5212303 1.5209597 1.5209402 1.521251 1.5212708 1.5206669 1.5206624 1.5206704 1.5206752 1.520654 1.5206455 1.5206507 1.5206582 1.5206613 1.5206518 1.5206596 1.5206685 1.5206765 1.5206676 1.5206761 1.5206854 1.5206034 1.5205995 1.5206365 1.520642 1.5205974 1.5205901 1.5205929 1.5205949 1.520606 1.5205985 1.5206004 1.5206035 1.5206426 1.5206055 1.5206113 1.5206525 1.5207363 1.5207228 1.5207311 1.5207459 1.5207152 1.520709 1.5207209 1.5207276 1.521049 1.5207948 1.5208017 1.521066 1.5210845 1.5208108 1.520822 1.5211034 1.5206821 1.5207027 1.5206713 1.5207132 1.5206802 1.5206713 1.5206699 1.5206797 1.5209395 1.5207597 1.5207586 1.5209028 1.5207878 1.5207597 1.5209672 1.5210281 1.5511879 1.5556426 1.5516044 1.5560439 1.560846 1.560432 1.5655133 1.5659227 1.5504047 1.550957 1.5548072 1.5553162 1.5651548 1.560024 1.5650144 1.5595564 1.5488742 1.5509636 1.5528352 1.5551465 1.5596477 1.5643937 1.5570854 1.5615623 1.5507559 1.5550748 1.5567635 1.5519105 1.567055 1.5597165 1.5646267 1.5614864 1.566255 1.5710976 1.575126 1.5693566 1.5697939 1.5751743 1.5723124 1.5777486 1.576162 1.5805092 1.5834319 1.5807874 1.5708414 1.5763627 1.5775213 1.5712815 1.5705132 1.5761153 1.5763761 1.5702703 1.5821305 1.5833782 1.5819691 1.5821065 1.5287169 1.530202 1.5307589 1.5289999 1.5286896 1.53032 1.5303085 1.5285276 1.5349839 1.5319378 1.5339146 1.5326325 1.5346303 1.5322232 1.5343995 1.5322203 1.5369826 1.5398701 1.5373489 1.5402486 1.5435199 1.5471612 1.5431199 1.5467501 1.5363799 1.5392294 1.5395028 1.5364221 1.5465898 1.5424372 1.5460154 1.542674 1.536193 1.5374364 1.538774 1.5401967 1.5433014 1.5467561 1.5416779 1.5449175 1.5368993 1.5397215 1.5402973 1.5371542 1.5474983 1.5428938 1.5464315 1.5435222 1.5284792 1.5301111 1.5302158 1.5284329 1.5280472 1.5296334 1.5295893 1.5278944 1.5345464 1.5320197 1.534206 1.5321303 1.5314983 1.533646 1.5337288 1.5314199 1.528378 1.5300058 1.5303508 1.5285459 1.5278784 1.5282914 1.5299124 1.5294262 1.5319074 1.5340869 1.5347136 1.5322849 1.5312478 1.5318066 1.5339801 1.5333273 1.5284063 1.5300124 1.5303457 1.5285449 1.5285357 1.5301868 1.5299319 1.5281717 1.5318882 1.5340384 1.5347001 1.5322753 1.5321155 1.5343259 1.5342122 1.5318274 1.5365182 1.5393355 1.5404175 1.537248 1.5368641 1.5397431 1.5398615 1.5367272 1.5425011 1.5460375 1.5476492 1.543665 1.5429777 1.546593 1.5470388 1.5430819 1.5365805 1.5394119 1.5404395 1.5372647 1.5357316 1.5364745 1.5393071 1.5384503 1.5425957 1.5461554 1.5476857 1.5436928 1.5415241 1.5424888 1.5460493 1.544948 1.5566039 1.5501095 1.5544643 1.5517096 1.5591637 1.5641609 1.5670327 1.5613849 1.5487568 1.5529412 1.5499915 1.5543342 1.559028 1.5640402 1.5574433 1.5622307 1.5787397 1.5694452 1.5749514 1.5724289 1.5807221 1.5846415 1.5673018 1.5725838 1.5693415 1.5748944 1.5807178 1.5781063 1.5565524 1.5499723 1.554297 1.5516655 1.5589619 1.5613269 1.563919 1.5663998 1.5558763 1.5505976 1.5550087 1.5510273 1.565412 1.5597798 1.5606158 1.5656697 1.5691558 1.5746192 1.5780007 1.5717589 1.5710268 1.5708235 1.5764998 1.5765897 1.5803272 1.5838511 1.5824286 1.5824362 1.5226419 1.5225273 1.5225283 1.5226427 1.5227616 1.5227631 1.5225469 1.5227791 1.5227749 1.522546 1.5226568 1.5226621 1.5225009 1.5224755 1.522484 1.5225066 1.5224553 1.5224392 1.5224496 1.5224641 1.5224727 1.5224606 1.5224755 1.5224875 1.5225192 1.5224941 1.5225059 1.5225287 1.5225924 1.5225839 1.5226265 1.5226338 1.5225719 1.5225627 1.5226072 1.522615 1.5220924 1.5221183 1.522313 1.5223739 1.5222442 1.5224796 1.5224489 1.5226454 1.5226924 1.5224771 1.5225285 1.5225806 1.5224038 1.522364 1.5223749 1.5224168 1.5219874 1.5219862 1.5222556 1.5222604 1.5220014 1.521991 1.5222687 1.5222815 1.5224104 1.5223893 1.5224335 1.5224546 1.5225026 1.5224272 1.522466 1.5225429 1.5219958 1.521957 1.5222513 1.5222854 1.5223616 1.5225925 1.5227415 1.5225168 1.5227192 1.5229347 1.5229799 1.5231843 1.5229679 1.5227614 1.5229123 1.5228054 1.5233834 1.5231074 1.5231612 1.5234103 1.5224396 1.5224269 1.5224311 1.522444 1.5224185 1.522407 1.5224107 1.5224223 1.5224265 1.522417 1.5224284 1.5224371 1.5224475 1.5224377 1.5224508 1.5224598 1.5223802 1.5223481 1.5223477 1.5223819 1.5220002 1.5220095 1.5222638 1.5222578 1.5219877 1.5219921 1.5222539 1.5222529 1.5223552 1.5223497 1.5223862 1.522393 1.5230523 1.5228823 1.5230391 1.5228818 1.5235245 1.5232406 1.5232545 1.5235144 1.5230551 1.522898 1.5230525 1.52289 1.5235324 1.5232516 1.5232514 1.5235039 1.5239447 1.5243661 1.5242995 1.5238575 1.5239087 1.5238778 1.5242847 1.5243282 1.5255027 1.52489 1.5255368 1.5248087 1.5248508 1.5254954 1.524789 1.5254133 1.5244526 1.5239679 1.5243992 1.523975 1.5249369 1.5256011 1.5257405 1.5249992 1.5243056 1.5238899 1.5243037 1.5238604 1.5248217 1.5254648 1.5248186 1.5254531 1.5263298 1.5272932 1.5273283 1.5262849 1.5299633 1.5284898 1.5284467 1.5298752 1.5261794 1.5262839 1.5271106 1.527238 1.5276872 1.5264117 1.5273933 1.526574 1.530113 1.5285722 1.5289094 1.5303661 1.5262331 1.5271806 1.5262517 1.5272117 1.5298868 1.5283699 1.5283169 1.5296801 1.5227159 1.5225911 1.5225754 1.5226955 1.5228298 1.5228087 1.522574 1.5228129 1.5228079 1.522562 1.5226947 1.5226818 1.5225745 1.5225488 1.5225395 1.522562 1.5225282 1.5225116 1.5225053 1.5225198 1.522482 1.5225 1.5225144 1.522497 1.5225574 1.5225326 1.5225159 1.5225394 1.5226117 1.522625 1.5226684 1.5226577 1.5226282 1.5226424 1.5226859 1.52267 1.5227167 1.5225892 1.5225773 1.5227024 1.5228358 1.5228189 1.5225849 1.5228184 1.5228022 1.5225761 1.5227032 1.5226929 1.5225698 1.5225432 1.5225424 1.5225653 1.5225218 1.5225045 1.5225071 1.5225222 1.5225077 1.5225102 1.5225251 1.5225223 1.5225681 1.5225434 1.5225403 1.5225625 1.5226254 1.5226321 1.5226738 1.5226657 1.5226321 1.5226365 1.522682 1.5226751 1.5229496 1.5229243 1.5231047 1.5230739 1.5232664 1.5235828 1.5235124 1.5233032 1.5229311 1.5229296 1.5230872 1.5230835 1.5232794 1.5232892 1.5235291 1.5235467 1.523111 1.5229609 1.5231228 1.5229391 1.5233307 1.523596 1.5236022 1.523315 1.5230763 1.5229358 1.5230882 1.522915 1.5232844 1.523536 1.5232682 1.5235143 1.5224903 1.5224791 1.522484 1.5224937 1.5224702 1.522464 1.5224708 1.5224759 1.5224733 1.5224736 1.5224789 1.5224785 1.5224968 1.5224864 1.5224856 1.5224948 1.5224454 1.5224642 1.5224695 1.522451 1.5224702 1.5224736 1.5224795 1.5224756 1.522498 1.5224874 1.522483 1.5224924 1.5224871 1.5224769 1.5224587 1.5224685 1.5243028 1.5238575 1.5242774 1.5238442 1.5248012 1.5254482 1.5255443 1.5248292 1.5238265 1.524234 1.5238617 1.5242783 1.524799 1.5254446 1.5247424 1.5253723 1.5239492 1.5233124 1.5237323 1.5235031 1.5242579 1.5244637 1.5249079 1.5251015 1.5241681 1.5237074 1.5241173 1.5237268 1.5253274 1.5246299 1.5246763 1.525307 1.5269317 1.5257043 1.5266709 1.5258832 1.5278345 1.5280897 1.5292197 1.5294703 1.5260849 1.5270296 1.5261135 1.5270717 1.5297357 1.5282254 1.5281615 1.5295191 1.5274279 1.5262358 1.5271905 1.52635 1.5298432 1.5283391 1.528613 1.5300273 1.5261485 1.5270928 1.526234 1.527196 1.5298707 1.5283547 1.5282254 1.5295842 1.522446 1.5224656 1.5224641 1.5224442 1.5224711 1.5224734 1.5224718 1.5224696 1.522468 1.5224701 1.5224679 1.5224661 1.5224604 1.5224624 1.5224424 1.5224406 1.5224756 1.5224764 1.5224748 1.522474 1.5224751 1.5224689 1.5224667 1.5224733 1.5224614 1.5224641 1.5224712 1.522469 1.5224706 1.5224729 1.5224721 1.5224702 1.52246 1.5224581 1.5224658 1.5224673 1.522458 1.5224593 1.5224671 1.5224659 1.5224685 1.5224689 1.5224679 1.5224677 1.5224699 1.5224681 1.522468 1.5224696 1.5224692 1.5224668 1.5224644 1.5224663 1.522466 1.5224667 1.5224646 1.5224639 1.5224393 1.5224589 1.5224582 1.5224388 1.5224604 1.5224585 1.5224394 1.5224414 1.5224477 1.5224392 1.5224374 1.5224463 1.5224346 1.5224272 1.5224245 1.5224325 1.5224164 1.5224209 1.5224294 1.5224259 1.5224317 1.522435 1.5224442 1.5224418 1.5224052 1.5223878 1.5223845 1.5224032 1.522095 1.5221067 1.5223317 1.5223258 1.522069 1.5220816 1.5223179 1.5223091 1.5223734 1.5223796 1.5223999 1.5223956 1.5223909 1.522367 1.5223606 1.5223865 1.5220434 1.5220558 1.5222994 1.5222896 1.5220195 1.5220305 1.5222798 1.5222712 1.5223505 1.5223549 1.5223828 1.5223806 1.5224054 1.522406 1.5224172 1.5224168 1.5224086 1.5224124 1.5224224 1.5224194 1.5224393 1.5224286 1.5224261 1.5224374 1.5224246 1.5224246 1.5224366 1.5224371 1.5342802 1.5317824 1.5337379 1.5320772 1.5315399 1.5312951 1.5334851 1.5331868 1.5360033 1.5386076 1.5366072 1.5392764 1.5353926 1.5385951 1.5379334 1.5357391 1.5415676 1.5423076 1.5457392 1.544905 1.5486563 1.5528358 1.5542727 1.549572 1.5444674 1.5415817 1.5449639 1.5408382 1.5487695 1.5482034 1.5530253 1.5523818 1.5316045 1.5335289 1.5315073 1.5357598 1.5383308 1.5408217 1.5441778 1.5452881 1.541549 1.5411783 1.5413752 1.5447675 1.5445186 1.5538562 1.5479557 1.5521652 1.5491261 1.5482896 1.5524979 1.5485782 1.5528448 1.5314819 1.5316914 1.5334066 1.5336326 1.5358876 1.5384764 1.5356334 1.5381927 1.5332657 1.5315178 1.5334459 1.5311904 1.535685 1.5382605 1.5382689 1.5354748 1.5332051 1.5308624 1.5327852 1.5310992 1.535019 1.5375916 1.5382729 1.5354412 1.5331968 1.5313742 1.5333002 1.5311219 1.5355378 1.5381206 1.5354053 1.5379505 1.5411139 1.5444223 1.5450649 1.5414106 1.5411924 1.5445229 1.541192 1.544503 1.5534622 1.548143 1.5522949 1.5488234 1.548234 1.5482599 1.5524453 1.5523757 1.5569158 1.5620101 1.5581308 1.5632506 1.5688605 1.5749132 1.5675715 1.5735969 1.5569782 1.5570687 1.5621451 1.5620158 1.567535 1.5734997 1.5676857 1.573678 1.5800986 1.5870989 1.5814139 1.5883952 1.5958434 1.5945484 1.5801478 1.5870994 1.5799158 1.5868047 1.5941666 1.5944969 1.5568455 1.5586096 1.5619716 1.5638141 1.5695134 1.5756487 1.5675605 1.5735801 1.5575729 1.5627618 1.5627684 1.557141 1.5751206 1.5684342 1.5745649 1.5683841 1.5800696 1.5822306 1.5870297 1.5892911 1.596821 1.59444 1.5811855 1.5883051 1.589543 1.5817068 1.5958762 1.597105 1.5758555 1.5691721 1.5705192 1.5767119 1.5630234 1.5574433 1.5590134 1.5642232 1.5577339 1.5629034 1.5570148 1.5227225 1.522567 1.522729 1.5227336 1.5227325 1.5225522 1.5226685 1.5225917 1.5227695 1.5227728 1.5227779 1.522778 1.5227809 1.5227751 1.5227795 1.5227748 1.522728 1.5227327 1.5225545 1.5226734 1.5225001 1.5225949 1.5225991 1.5224968 1.522673 1.5226684 1.52267 1.5226744 1.5226111 1.52253 1.5226781 1.5226748 1.522725 1.5227255 1.5227278 1.5227272 1.522727 1.5227287 1.5227311 1.5227305 1.5227324 1.522733 1.5227317 1.522733 1.5227746 1.5227794 1.5227807 1.5227776 1.5227752 1.5227775 1.5227776 1.522775 1.5227748 1.5227768 1.5227795 1.5227796 1.5227797 1.5227796 1.5227786 1.5227787 1.5227784 1.5227785 1.5227783 1.5227784 1.5227753 1.5227717 1.5227712 1.5227751 1.5227773 1.5227772 1.5227741 1.522771 1.5225523 1.5226548 1.5226963 1.5226995 1.5227332 1.5227352 1.5227375 1.5227388 1.5227746 1.522772 1.5227758 1.5227758 1.5227739 1.5227741 1.5227668 1.5227709 1.5226806 1.522671 1.5226781 1.5226698 1.5226802 1.5226831 1.5226827 1.5226753 1.522675 1.522668 1.5226679 1.5226671 1.5226674 1.5226659 1.5226665 1.522679 1.5226725 1.5226697 1.5226777 1.5226655 1.5226648 1.5226892 1.5226499 1.5226471 1.5226863 1.5226859 1.5226463 1.5226461 1.5226883 1.5226137 1.522532 1.5226032 1.522612 1.5226022 1.5225314 1.522618 1.5226094 1.5226166 1.5225363 1.5226067 1.5225387 1.5226144 1.5226549 1.5226158 1.5226551 1.5225558 1.5225246 1.5225887 1.5226287 1.5224974 1.5223971 1.522492 1.5225605 1.5225502 1.5224688 1.5225839 1.5224971 1.5225731 1.5225864 1.5225756 1.5225012 1.5224687 1.522463 1.5224343 1.5224415 1.5223178 1.5223582 1.5224335 1.5224032 1.5223792 1.5222853 1.5222549 1.5223615 1.5224205 1.522412 1.5223962 1.5224059 1.5224532 1.5224496 1.5224362 1.5224401 1.5224714 1.5225005 1.5225008 1.5224751 1.5225095 1.5225057 1.5224799 1.5224851 1.5224662 1.52246 1.5224459 1.5224531 1.5224451 1.5224372 1.5224329 1.5224413 1.5224321 1.5224278 1.5224237 1.5224284 1.5224235 1.5224226 1.5224277 1.5224289 1.5224331 1.522432 1.5224404 1.5224415 1.5223973 1.5223864 1.5223815 1.5223935 1.5222026 1.5222279 1.5223497 1.5223427 1.5221658 1.5221833 1.5223392 1.5223381 1.5223819 1.5223804 1.5223933 1.5223953 1.5223984 1.5223845 1.522387 1.5224017 1.5221396 1.5221519 1.5223381 1.5223382 1.5221173 1.5221281 1.5223373 1.5223353 1.5223891 1.5223886 1.5224042 1.5224055 1.5224288 1.5224288 1.522435 1.5224355 1.5224275 1.5224255 1.5224311 1.5224332 1.5224434 1.5224352 1.5224374 1.5224456 1.5224398 1.522439 1.5224472 1.522448 1.5224706 1.5224713 1.5224764 1.5224762 1.5224713 1.5224707 1.5224752 1.522476 1.5224755 1.5224767 1.5224773 1.5224761 1.5224775 1.5224777 1.5224766 1.5224765 1.5224702 1.5224705 1.5224751 1.5224747 1.5224726 1.5224778 1.5224824 1.5224775 1.522483 1.5224837 1.5224788 1.522478 1.5224761 1.5224767 1.5224757 1.5224751 1.5224668 1.5224793 1.5224733 1.52246 1.5224798 1.5224824 1.5224772 1.5224748 1.5224738 1.5224747 1.5224724 1.5224715 1.5224682 1.5224699 1.5224555 1.5224528 1.5224745 1.5224749 1.5224723 1.5224721 1.5224746 1.5224741 1.5224716 1.522472 1.5224511 1.5224678 1.5224676 1.5224499 1.5224668 1.5224674 1.5224488 1.5224476 1.5227184 1.5226813 1.5226716 1.5227089 1.5227216 1.5227213 1.5226824 1.5226825 1.5226519 1.5226408 1.5225765 1.5226419 1.5226532 1.5225788 1.5226419 1.5226332 1.5226419 1.5226513 1.5225759 1.5225658 1.5226835 1.5227253 1.5226866 1.5227249 1.5227214 1.5227244 1.5226836 1.5226863 1.5226508 1.5225748 1.5226424 1.5226531 1.5226446 1.5225779 1.522645 1.5226546 1.5225799 1.5225754 1.5226505 1.5226414 1.5225054 1.5225003 1.5224873 1.5224922 1.5225205 1.5225467 1.5225499 1.5225262 1.5225254 1.5225517 1.5225478 1.5225246 1.5225063 1.522507 1.5224936 1.5224929 1.5225025 1.5225062 1.5224926 1.5224895 1.5225507 1.522527 1.5225227 1.5225486 1.5225478 1.5225239 1.5225113 1.5225377 1.5224925 1.5225049 1.5224905 1.5224782 1.5225035 1.5225989 1.5226281 1.5225977 1.5226284 1.5226338 1.5226059 1.5226277 1.5225998 1.5225812 1.5225721 1.5225864 1.5225197 1.5225776 1.5225129 1.5225782 1.5225089 1.5225666 1.5225751 1.5225659 1.5225043 1.5224361 1.5224454 1.5224292 1.5224187 1.5224849 1.5224926 1.5224682 1.5224599 1.522476 1.5224807 1.5224552 1.5224507 1.5224289 1.5224332 1.5224149 1.5224108 1.5224212 1.5224222 1.5224041 1.5224033 1.5224466 1.522475 1.5224715 1.5224458 1.5224552 1.522471 1.5224452 1.5224292 1.5224058 1.5224225 1.5224034 1.5223856 1.5223878 1.522389 1.5223703 1.5223689 1.5223904 1.5223924 1.5223752 1.5223725 1.5223646 1.5223689 1.5223657 1.5223613 1.5223617 1.5223635 1.5223589 1.5223571 1.5223953 1.5223999 1.5223854 1.5223797 1.5224068 1.5224168 1.5224048 1.5223942 1.5223962 1.5224003 1.5223891 1.5223849 1.5223737 1.5223806 1.5223762 1.5223698 1.5223685 1.5223877 1.5223752 1.5223543 1.5223888 1.5223896 1.5223783 1.5223774 1.5223628 1.5223698 1.5223686 1.5223619 1.5223571 1.5223654 1.5223428 1.5223334 1.5223496 1.5223517 1.5223497 1.5223472 1.5223545 1.5223583 1.5223569 1.5223531 1.5223258 1.5223514 1.5223468 1.5223193 1.5223393 1.5223429 1.5223137 1.5223087 1.522214 1.5222185 1.5221857 1.5221807 1.5222239 1.5222303 1.5221924 1.5205084 1.5207136 1.5205102 1.5207089 1.5206184 1.5206018 1.5205941 1.5206099 1.520848 1.5206766 1.5207055 1.5208696 1.5206235 1.520817 1.5206556 1.5205509 1.5205568 1.5205782 1.5205713 1.5207363 1.5207454 1.5207811 1.5207707 1.520853 1.5208395 1.5209022 1.5209163 1.5208381 1.5208998 1.5209306 1.5208566 1.5207318 1.5207657 1.5207764 1.5207368 1.5210793 1.5210454 1.520911 1.520956 1.5208547 1.5208165 1.5207994 1.5208363 1.5209256 1.5209917 1.5209759 1.5209039 1.5210222 1.5210976 1.5207153 1.5205246 1.5206846 1.520523 1.5209272 1.5206837 1.5207147 1.5209422 1.520589 1.5205975 1.5206145 1.5206051 1.5208811 1.5206423 1.5206678 1.5208965 1.520569 1.5205505 1.5205586 1.5205763 1.5208241 1.5208011 1.5208392 1.5208601 1.5209068 1.5209293 1.5209955 1.5209747 1.5210876 1.5213398 1.5213879 1.5211637 1.5209656 1.5210167 1.5212506 1.5212189 1.5209012 1.5208395 1.5208353 1.5209023 1.5207626 1.5207272 1.5207305 1.520765 1.5207734 1.5207356 1.5207505 1.5207866 1.5208449 1.5209094 1.5209298 1.5208597 1.5227405 1.5227448 1.5227086 1.5227054 1.5225621 1.5225313 1.5226618 1.5227043 1.5227631 1.5227592 1.5227153 1.522565 1.5225031 1.5225015 1.5224927 1.5224948 1.5225002 1.5225024 1.5225067 1.5225045 1.5225003 1.5224964 1.5225102 1.5225072 1.5224974 1.5225075 1.5225002 1.5224887 1.5222783 1.5222862 1.5223857 1.5223778 1.522463 1.5224515 1.5224536 1.5224615 1.5224585 1.5224475 1.5224569 1.5224677 1.5222669 1.522375 1.5223798 1.5222747 1.5224008 1.5224819 1.5224503 1.522368 1.522423 1.5223344 1.5223112 1.5224028 1.5224704 1.5224878 1.5224932 1.5224787 1.5225431 1.5225166 1.5225208 1.5225485 1.5225585 1.5225893 1.5225853 1.5225645 1.5225392 1.5225338 1.5225189 1.5225235 1.5225192 1.5225356 1.5225265 1.5225118 1.5225872 1.522578 1.5225541 1.5225625 1.5226397 1.522631 1.5226554 1.5226647 1.5227251 1.5227627 1.5227564 1.5227134 1.5227269 1.5227558 1.522797 1.522766 1.5226342 1.5226599 1.5226807 1.5226481 1.5227641 1.5227192 1.5227375 1.5227777 1.5227232 1.5227349 1.5227754 1.5227622 1.5226334 1.5226404 1.5226668 1.5226587 1.5226309 1.522656 1.52267 1.5226399 1.5228681 1.5228503 1.5229055 1.5229244 1.5228698 1.5228525 1.5229263 1.522908 1.5230575 1.5230329 1.5230951 1.5231191 1.5230367 1.5230587 1.5231214 1.5231 1.5229119 1.5228509 1.5228428 1.5228957 1.5228564 1.5229114 1.5229616 1.5228962 1.5231754 1.5231152 1.5230413 1.5231028 1.5230408 1.5230207 1.5230804 1.5230981 1.5224477 1.5224881 1.5225503 1.5225127 1.5224493 1.5224262 1.5223638 1.5223875 1.5225376 1.5225121 1.5225401 1.5225629 1.5225939 1.5226246 1.5226586 1.5226275 1.5226663 1.5226937 1.5227025 1.5227305 1.5226245 1.5225954 1.5225804 1.5226042 1.5226228 1.5225947 1.5226097 1.5226345 1.5226818 1.5226963 1.5227333 1.5227179 1.5228232 1.5227871 1.5228388 1.5228745 1.523006 1.5230314 1.5230603 1.5229617 1.5230931 1.5230624 1.5229922 1.5230252 1.522804 1.5228558 1.5228833 1.5228227 1.5225718 1.5226931 1.5226261 1.5226379 1.5227112 1.5227624 1.5228075 1.5227484 1.5230053 1.5229552 1.5228854 1.5229384 1.5227474 1.5228081 1.5228863 1.5228207 1.5224299 1.5224335 1.5225972 1.5217218 1.5218066 1.521867 1.5217706 1.5221428 1.5220438 1.5221078 1.5221805 1.5224564 1.5225277 1.5224131 1.5225427 1.5228539 1.5228707 1.5229343 1.5229148 1.5228982 1.5227744 1.5228116 1.5228316 1.5224468 1.5223376 1.5223334 1.5224177 1.5223365 1.5222654 1.5223502 1.5224169 1.5226648 1.5227418 1.522799 1.5227266 1.521669 1.5217423 1.5217308 1.5216337 1.5219676 1.5219753 1.5220416 1.5220362 1.5216041 1.5217219 1.5216804 1.5216311 1.5219088 1.5219781 1.5220392 1.5219497 1.531657 1.5334211 1.5340508 1.5318895 1.5320754 1.5341531 1.5339942 1.5318653 1.5344159 1.5343975 1.5345948 1.5346744 1.5343884 1.5344401 1.5339085 1.5347063 1.5348527 1.5348816 1.5356075 1.5355219 1.5350611 1.5342848 1.5348664 1.5355265 1.5362639 1.5357284 1.5358582 1.536429 1.5364043 1.5366302 1.5366349 1.536267 1.5369846 1.5368009 1.5366505 1.5369928 1.5357149 1.5348711 1.5350865 1.5358009 1.5345338 1.5352226 1.5353726 1.5345826 1.5359852 1.536184 1.5363486 1.5360493 1.5321029 1.5321369 1.5342189 1.5340572 1.534738 1.5344232 1.534264 1.5346546 1.5340169 1.5338911 1.5340977 1.5343188 1.5315179 1.5335046 1.5334344 1.5314398 1.5494275 1.5506404 1.5651145 1.5632187 1.5654606 1.5672259 1.5511087 1.5526417 1.5525433 1.550624 1.5510279 1.5522296 1.5650666 1.5658289 1.5679743 1.5672715 1.5532341 1.5512017 1.5517828 1.5533958 1.5519805 1.5520732 1.5500792 1.5501248 1.5642472 1.5645266 1.5663585 1.5667162 1.5668134 1.5658344 1.5689287 1.5679227 1.5222305 1.5223186 1.5223809 1.5222704 1.5223337 1.5224152 1.5223989 1.5222861 1.5227303 1.5227512 1.5227867 1.5228064 1.5226426 1.5227974 1.5227039 1.522711 1.5219188 1.521969 1.5219867 1.5220292 1.5217071 1.5216167 1.5215774 1.5216573 1.5216274 1.521529 1.521591 1.521666 1.5218638 1.5219028 1.5219703 1.5219337 1.5219974 1.521919 1.5219103 1.5219862 1.5216525 1.5215612 1.5215736 1.5216533 1.5217655 1.5216687 1.5217055 1.5217796 1.5220233 1.5220293 1.5220945 1.5220886 1.522272 1.5222626 1.5223467 1.5223528 1.5226827 1.5226739 1.5227303 1.5227385 1.5228742 1.5228371 1.5229232 1.5228871 1.5223775 1.5224581 1.5224913 1.5223818 1.5315504 1.5320007 1.5340932 1.5334657 1.5341288 1.5337267 1.5342834 1.5344927 1.5350221 1.5353262 1.5352365 1.5346715 1.5327236 1.534847 1.5343382 1.532261 1.5317314 1.5320241 1.5340723 1.5335814 1.5343925 1.5345667 1.5341429 1.5339159 1.5346217 1.5341807 1.5338536 1.5341856 1.5317061 1.5337792 1.5340392 1.5318782 1.5363883 1.5365257 1.5360068 1.5367464 1.5350509 1.5341819 1.5347748 1.5355085 1.535454 1.5361392 1.5358201 1.5350322 1.5369015 1.5370585 1.5367695 1.5364911 1.5345996 1.5343123 1.5349383 1.5352914 1.5359769 1.5356408 1.5360626 1.5362651 1.5361637 1.5364762 1.5366539 1.5364267 1.5343748 1.5351325 1.5355136 1.5346366 1.5498901 1.5505949 1.5652027 1.5640307 1.5673914 1.5662645 1.5508842 1.5523049 1.5526396 1.5507493 1.5514942 1.5521204 1.565296 1.565576 1.5675215 1.5678152 1.5522625 1.5503813 1.5514807 1.5530328 1.55359 1.5528823 1.5507833 1.551555 1.5652172 1.5665012 1.5685426 1.5673183 1.5664933 1.5648037 1.5686684 1.5670467 1.5215668 1.5216376 1.5216459 1.5215548 1.5215635 1.5216969 1.5216417 1.5216072 1.5219365 1.5218797 1.522001 1.5219486 1.5218614 1.5218789 1.521942 1.521925 1.5221854 1.522205 1.5222848 1.5222687 1.5225848 1.5226458 1.5226847 1.5225992 1.5226553 1.5227498 1.5227996 1.5227132 1.5222169 1.5223013 1.5223832 1.5222766 1.5223696 1.5224548 1.5224312 1.5223138 1.5224595 1.5224321 1.5223195 1.5223459 1.522805 1.5227744 1.5228581 1.5228316 1.5227702 1.5227942 1.5228525 1.5228285 1.5216878 1.5216989 1.5216027 1.5215866 1.5216033 1.5216881 1.5217441 1.5216476 1.521991 1.5219341 1.5220064 1.5220577 1.5219447 1.5220121 1.5220301 1.5219371 1.5319676 1.5341965 1.534058 1.5320429 1.5340422 1.5329389 1.5309936 1.5318364 1.5346225 1.5339265 1.533478 1.5341509 1.5345154 1.5341214 1.534567 1.5348744 1.5320515 1.5326381 1.5348156 1.5340396 1.5346402 1.5350861 1.5346714 1.5342146 1.5346244 1.5347555 1.5343685 1.5341675 1.5322281 1.5343394 1.5339077 1.5318205 1.534861 1.5355951 1.5354238 1.5345874 1.5355612 1.5346747 1.5351667 1.53591 1.5367282 1.5367398 1.536335 1.5369744 1.5364017 1.5366331 1.5364855 1.5361438 1.5346045 1.5353339 1.5358305 1.5349808 1.53467 1.5338732 1.5345727 1.5352363 1.5359809 1.5353592 1.5355108 1.5361514 1.536136 1.5363751 1.5369074 1.5365648 1.5526766 1.5508535 1.5506056 1.5522217 1.5512377 1.5517679 1.5533044 1.5528136 1.5668455 1.5659797 1.5682487 1.5690475 1.5649615 1.5655028 1.5676763 1.5671363 1.5521177 1.5508208 1.5502066 1.5489494 1.5647419 1.5628047 1.565159 1.566914 1.5509209 1.5515364 1.5664397 1.5657397 1.5680159 1.5686045 1.5524322 1.5532301 1.5216128 1.5215906 1.5216682 1.5216835 1.521691 1.521592 1.521683 1.521757 1.522079 1.522014 1.5219217 1.5219919 1.5219033 1.5218934 1.5219607 1.5219667 1.5222199 1.5222153 1.522299 1.5223019 1.5226947 1.5227018 1.5226096 1.5226037 1.5227156 1.5228186 1.5228706 1.522777 1.522279 1.5223655 1.5224569 1.522351 1.5224223 1.5225154 1.5225979 1.5225141 1.52283 1.5229 1.5230079 1.5229218 1.5231762 1.5233669 1.5233922 1.5232261 1.5227325 1.5228165 1.5229904 1.5229022 1.5218307 1.5217585 1.5218386 1.5219078 1.5220616 1.5221466 1.5222162 1.5221376 1.5225934 1.5224358 1.5223479 1.5225298 1.5220193 1.5220973 1.5222712 1.5221997 1.5310022 1.5335097 1.5327788 1.5313601 1.5316798 1.5337376 1.5340529 1.5319019 1.5345983 1.5340926 1.533773 1.5341674 1.5336608 1.5332462 1.5338141 1.5340319 1.5342896 1.5350428 1.5354847 1.5346143 1.5344549 1.533653 1.5342657 1.5349487 1.5357111 1.5351509 1.5353204 1.5359131 1.5358683 1.5361448 1.536616 1.5362401 1.535159 1.5358269 1.5363226 1.5355879 1.5349895 1.5341236 1.5354465 1.536149 1.5361553 1.5369383 1.5357534 1.5371188 1.5365685 1.5367354 1.5371699 1.5369472 1.5312057 1.5346657 1.5330597 1.5323723 1.5323771 1.5343977 1.5346524 1.5326668 1.5349909 1.534544 1.535091 1.5355182 1.5338307 1.5334801 1.5347978 1.5350603 1.5651897 1.5488727 1.5500356 1.5644911 1.5626929 1.5667196 1.5504476 1.5518318 1.5525552 1.5506596 1.5503675 1.5515192 1.5651821 1.5650286 1.5674167 1.5673272 1.5516876 1.5498854 1.5519 1.553542 1.5527974 1.5508603 1.5513823 1.5532498 1.5677657 1.565857 1.5654604 1.5678211 1.566991 1.5640797 1.5690959 1.5664389 1.5828154 1.5815255 1.5997584 1.6016295 1.5982478 1.600134 1.6162897 1.6180021 1.5795429 1.5802297 1.5969747 1.598677 1.5959495 1.5978818 1.6149383 1.6137229 1.5783747 1.5806192 1.5945811 1.5963818 1.5971119 1.5990134 1.6149747 1.6120335 1.580713 1.5816935 1.5985282 1.600244 1.5973591 1.5991334 1.6152797 1.6165095 1.5794991 1.5809847 1.5960076 1.6137627 1.5977968 1.5977106 1.599476 1.6157449 1.5811156 1.5816082 1.5985944 1.6001135 1.5979107 1.5995968 1.6166522 1.6159305 1.5805946 1.5826318 1.5974002 1.5990462 1.5997193 1.6014594 1.6154159 1.6180837 1.5806946 1.5824268 1.5994828 1.6014003 1.6178685 1.5973198 1.5993652 1.6153855 1.6282062 1.6294257 1.6302596 1.6315678 1.6311611 1.6328124 1.6304532 1.6318569 1.6327319 1.633903 1.6301154 1.6310296 1.6299492 1.631472 1.6327809 1.634135 1.6557306 1.6595783 1.6537317 1.6575294 1.656025 1.6599356 1.6565713 1.660672 1.6556239 1.6596626 1.6584754 1.6622781 1.6630477 1.6587722 1.6561232 1.6595134 1.6263113 1.6274683 1.6294024 1.630463 1.6310086 1.6323319 1.6297833 1.6310299 1.6308473 1.6319926 1.6326507 1.633831 1.6294929 1.6308058 1.6281922 1.629232 1.6546748 1.658265 1.6515749 1.655373 1.655335 1.6590847 1.6563225 1.6600541 1.6581916 1.6616683 1.6564123 1.6599352 1.6537325 1.6572775 1.6550818 1.6588487 1.5814401 1.5805362 1.598461 1.6000716 1.5972425 1.5990292 1.6166822 1.6152256 1.5820758 1.5830813 1.5992022 1.6175295 1.6008817 1.6002755 1.6019407 1.6186832 1.581895 1.582449 1.5989895 1.6006101 1.5994864 1.601352 1.6172606 1.6178532 1.5782363 1.5804593 1.5947397 1.5964364 1.5971633 1.5989789 1.6125031 1.6152378 1.5810924 1.5810178 1.597898 1.5995373 1.5981308 1.5995728 1.616258 1.6159931 1.5782405 1.5802543 1.5948155 1.5963498 1.5970214 1.5986611 1.6125561 1.6150442 1.5798651 1.5831223 1.5966902 1.5982149 1.6002853 1.6020935 1.618788 1.6147009 1.5811922 1.5977732 1.5999224 1.581393 1.5983672 1.6001227 1.6166562 1.6158618 1.6335952 1.634912 1.6292541 1.6309126 1.6314448 1.6327912 1.6305634 1.6313606 1.657331 1.633271 1.6615118 1.6571008 1.6326821 1.6609306 1.6585362 1.6536437 1.6292465 1.655959 1.6317028 1.6598797 1.6551321 1.6593029 1.6594465 1.6630125 1.6575414 1.6612562 1.6564868 1.6596125 1.6270252 1.6295613 1.630806 1.6305585 1.6269993 1.6283379 1.6298177 1.6311281 1.6319269 1.6334326 1.632655 1.6339045 1.6322863 1.6336987 1.6334476 1.634906 1.6313769 1.6329003 1.6298262 1.6310453 1.6574964 1.6528002 1.655456 1.6592709 1.6586888 1.6623511 1.6576497 1.6615794 1.6572911 1.6612477 1.6556239 1.6593135 1.6592866 1.6630402 1.658291 1.6621013 1.5248014 1.5253797 1.5256716 1.5250094 1.5269672 1.5260796 1.5264014 1.5272135 1.5263424 1.5260416 1.5268104 1.5271667 1.5246949 1.5252713 1.5255405 1.5248844 1.5281462 1.5291558 1.5290821 1.5279132 1.5292943 1.5287473 1.527693 1.5281247 1.5305409 1.529851 1.5317326 1.5308805 1.5303461 1.5303401 1.5314721 1.531587 1.5282098 1.5281261 1.5291653 1.5291863 1.5317618 1.5315663 1.530336 1.5304036 1.5305349 1.5306204 1.5316881 1.5317177 1.528154 1.5291816 1.529349 1.5282695 1.5250944 1.5256945 1.525578 1.5249364 1.5262901 1.5264172 1.5270903 1.5272003 1.5250206 1.5251563 1.5257601 1.5256128 1.5263264 1.5264871 1.5272724 1.5271228 1.5360658 1.5366179 1.5390538 1.5417194 1.538431 1.5405558 1.5404962 1.5409391 1.5423844 1.5416514 1.5422047 1.5412603 1.5413456 1.5413918 1.541381 1.5418731 1.5359648 1.5383491 1.5388557 1.5362491 1.5367645 1.5365051 1.5389264 1.5416865 1.539161 1.5414832 1.541386 1.5418184 1.5424561 1.5416747 1.5418887 1.5417453 1.5416092 1.5415888 1.5420949 1.5421158 1.5365435 1.5389583 1.5396681 1.5370199 1.5453025 1.5433685 1.5432499 1.5447379 1.5448651 1.5430189 1.5437511 1.5454385 1.5471605 1.5464515 1.5487101 1.5495895 1.5469706 1.5462222 1.5483412 1.5493284 1.5436394 1.5421037 1.5436101 1.5452747 1.5469338 1.5451183 1.5472513 1.549289 1.5469305 1.5473743 1.54985 1.5492469 1.5435584 1.5452998 1.5450085 1.5431167 1.5605163 1.562922 1.5796745 1.5825111 1.5767688 1.5795298 1.5780382 1.5808959 1.5636682 1.563388 1.5630428 1.5628345 1.5623443 1.5624143 1.5606346 1.5601025 1.5629988 1.5624555 1.5788564 1.5817163 1.5803266 1.5833257 1.580273 1.5818833 1.5622848 1.56173 1.5617602 1.563282 1.5631895 1.5627336 1.5618606 1.5612115 1.5611424 1.5629085 1.5629054 1.5624143 1.5773385 1.5800034 1.5795145 1.5823516 1.5807933 1.5784449 1.5799853 1.5828843 1.5781182 1.5808939 1.5813944 1.5794166 1.5249681 1.5255504 1.525677 1.5250295 1.5262524 1.5263906 1.5271899 1.5270564 1.5273126 1.5273701 1.5264828 1.5264099 1.5250943 1.5256906 1.525627 1.524987 1.5283009 1.528274 1.5293304 1.5292931 1.5304478 1.5315255 1.5319391 1.5305791 1.5304033 1.53164 1.531704 1.5304159 1.5279926 1.5281078 1.5291069 1.5290299 1.529299 1.5291477 1.5280673 1.5281394 1.5250295 1.525611 1.5256033 1.5249672 1.5263099 1.5263086 1.5270775 1.5271088 1.5251189 1.5261016 1.5257205 1.5253951 1.5365207 1.5366061 1.539022 1.5418016 1.5388857 1.5411696 1.5411049 1.5415486 1.5425799 1.5417963 1.5359326 1.5382906 1.538996 1.5363936 1.5252591 1.5948967 1.5971153 1.6106558 1.6079025 1.6130401 1.6101976 1.6326428 1.6303347 1.5937169 1.5964389 1.6092211 1.6066577 1.6122987 1.60953 1.6319641 1.6289568 1.5966189 1.6124657 1.6097832 1.5934276 1.6091435 1.6065378 1.6323053 1.6292217 1.597649 1.6137697 1.6107709 1.5957926 1.6116621 1.6088241 1.631294 1.6332673 1.6371637 1.6430681 1.6402296 1.646143 1.6413245 1.6475429 1.6392646 1.6453584 1.6382202 1.6442316 1.6405708 1.646612 1.639913 1.6459227 1.6367635 1.642607 1.6120627 1.6064372 1.6091121 1.608465 1.6124638 1.6073098 1.6041769 1.6073071 1.616009 1.6059751 1.6112108 1.6122669 1.6078919 1.6058187 1.6102305 1.6143561 1.6107466 1.58182 1.6025095 1.6078367 1.6110376 1.6077065 1.6092976 1.6104474 1.6082042 1.6080709 1.6090495 1.6051751 1.6079274 1.6076625 1.60567 1.6100078 1.6053007 1.6024851 1.5226824 1.5226769 1.5225253 1.5224911 1.5224747 1.5225051 1.5224635 1.5224407 1.5224277 1.522448 1.5223679 1.52241 1.5224305 1.52239 1.5224892 1.5224554 1.5224169 1.5227472 1.5227275 1.5226891 1.5227012 1.5226804 1.5226585 1.5226817 1.5226619 1.522578 1.5225414 1.5225115 1.5225434 1.522512 1.5224879 1.5224621 1.5224835 1.5224408 1.5224507 1.5224713 1.5224611 1.5225293 1.5224962 1.5224854 1.5225152 1.5224677 1.522451 1.5224278 1.5224427 1.5224369 1.5224253 1.5224037 1.5224142 1.5223866 1.5223941 1.5224041 1.5223964 1.5224319 1.5224162 1.5224082 1.5224224 1.5223119 1.522356 1.5223651 1.5223214 1.5223741 1.5223833 1.5223936 1.5223837 1.5224217 1.5224058 1.5223953 1.5224093 1.5223916 1.5223765 1.5223334 1.5223482 1.5223023 1.5222833 1.5222426 1.5222596 1.5222673 1.5222541 1.5222151 1.5222271 1.5221842 1.5222209 1.5222199 1.522183 1.5222213 1.5222201 1.5221829 1.522184 1.5222433 1.5222348 1.5221968 1.5222045 1.5222285 1.522224 1.5221866 1.5221907 1.5224159 1.5224086 1.5223879 1.5223946 1.5224032 1.5223994 1.5223786 1.5223824 1.5223638 1.5223697 1.5223733 1.5223672 1.5223852 1.5223783 1.5223718 1.5223781 1.5223969 1.5223956 1.5223744 1.522376 1.5223951 1.5223951 1.5223735 1.5223737 1.5223598 1.5223649 1.522365 1.5223597 1.5223672 1.5223657 1.5223602 1.5223615 1.5222998 1.5223379 1.5223364 1.522297 1.5223497 1.5223535 1.5223534 1.5223492 1.5223555 1.5223541 1.5223493 1.5223502 1.5223357 1.5223357 1.522295 1.522294 1.5223742 1.5223671 1.5223597 1.5223657 1.5223617 1.5223579 1.522352 1.522355 1.5222941 1.5223367 1.5223389 1.5222957 1.5223482 1.5223425 1.5222989 1.5223041 1.5600404 1.5656375 1.5675225 1.5613268 1.5576862 1.5582079 1.563672 1.5629807 1.5809707 1.5717224 1.5782574 1.5736507 1.568777 1.5750339 1.569632 1.5760789 1.5692954 1.5583305 1.5636139 1.5630159 1.5693745 1.5755797 1.5827871 1.5754573 1.566324 1.5608234 1.5665398 1.5601513 1.5727615 1.5794661 1.5724295 1.5789924 1.5983666 1.5822485 1.5893834 1.589901 1.5969711 1.6064335 1.5860732 1.5936528 1.5866634 1.5943868 1.6025778 1.6016787 1.5852648 1.5927771 1.5965582 1.5880943 1.6047174 1.6007638 1.5830239 1.5817579 1.590496 1.5889752 1.5966943 1.5984459 1.5825084 1.5896963 1.5947131 1.5864579 1.5845122 1.5837119 1.5911671 1.5919056 1.5973454 1.6026398 1.5997817 1.5990832 1.558496 1.5639047 1.566459 1.5603937 1.5569973 1.5583445 1.5637372 1.5621887 1.5796464 1.5698001 1.5761396 1.5724661 1.567873 1.573997 1.5696179 1.5759704 1.5658068 1.5578967 1.5631654 1.5598056 1.5689182 1.5751191 1.5787929 1.5717328 1.5646263 1.5584034 1.563811 1.5586644 1.569715 1.5760936 1.5705313 1.5768887 1.5829653 1.5902851 1.5949557 1.5866378 1.5828134 1.5901731 1.5805722 1.5876294 1.5980729 1.6029527 1.5951921 1.5980062 1.5455314 1.5409615 1.544418 1.541635 1.548302 1.5526257 1.5543726 1.5495032 1.5449222 1.5411384 1.5446565 1.541056 1.548607 1.5530149 1.5488743 1.5532756 1.5305947 1.5326104 1.5329008 1.5306812 1.5306711 1.5327016 1.5324343 1.5302615 1.5349355 1.5376131 1.5382189 1.5352506 1.5350457 1.5377458 1.5376769 1.5347477 1.530763 1.5327912 1.5334197 1.5311443 1.5306152 1.5309699 1.5330141 1.5325672 1.5351338 1.5378337 1.5388605 1.535825 1.5348379 1.5353732 1.5380908 1.5374399 1.5409115 1.5444027 1.5459356 1.5420129 1.540423 1.5411753 1.5446762 1.5437884 1.5531107 1.5548834 1.5483128 1.5499467 1.5475844 1.5485983 1.5529823 1.5518042 1.5479622 1.5412957 1.5447773 1.5438066 1.5486854 1.5530309 1.5573066 1.5521672 1.5422187 1.5459014 1.5424823 1.5462367 1.5504419 1.5551199 1.5500076 1.5545701 1.5311746 1.5333168 1.5336433 1.5312901 1.5305399 1.532598 1.5324296 1.5302529 1.5392639 1.535788 1.5386117 1.5361264 1.5376854 1.5349794 1.537723 1.5347457 1.5344104 1.5308412 1.5328747 1.5319812 1.5352251 1.5379204 1.5401469 1.5369516 1.5333635 1.5312835 1.5334601 1.5310314 1.5359739 1.5388626 1.5358289 1.5386541 1.5418181 1.5454377 1.5465274 1.5425039 1.5408446 1.5443818 1.5407409 1.5441904 1.5544655 1.5556944 1.5494937 1.5506389 1.5480748 1.5483492 1.5527859 1.5523853 1.5269866 1.5269704 1.5258186 1.5281595 1.5295665 1.5299096 1.5282581 1.5253258 1.5263817 1.5254966 1.526562 1.5278363 1.5293505 1.527641 1.5291365 1.5225533 1.5230107 1.5228956 1.5224193 1.5223394 1.5223929 1.5228193 1.5227561 1.5241898 1.5235787 1.5242786 1.5234427 1.5232777 1.5239235 1.5233503 1.5240097 1.5248596 1.5231042 1.5226043 1.5245399 1.5236751 1.5243769 1.5251339 1.52617 1.526147 1.5250285 1.5248191 1.5258069 1.5247131 1.5256723 1.5290397 1.5290056 1.5274123 1.5273812 1.5268342 1.526997 1.528427 1.5282192 1.5214686 1.5214145 1.5216375 1.5215752 1.5217821 1.5221592 1.5220469 1.5218544 1.5214008 1.52137 1.5215255 1.5215607 1.5217655 1.5217248 1.5220266 1.5219798 1.5219294 1.5222109 1.5210396 1.5211954 1.5211641 1.5209961 1.5213272 1.52128 1.5211565 1.5212666 1.5212403 1.5211398 1.5209853 1.5209635 1.5208186 1.5208352 1.5208397 1.5208233 1.5208624 1.5208479 1.5208315 1.5208448 1.5209038 1.5209244 1.5209652 1.5209427 1.5209418 1.5209831 1.521029 1.5209834 1.5208326 1.5208311 1.5208143 1.5208158 1.5209287 1.5211127 1.5211046 1.5209173 1.5212224 1.5212141 1.5211008 1.5212079 1.5211884 1.5210881 1.5209144 1.5209026 1.5207928 1.5207754 1.5207723 1.5207875 1.5207647 1.5207587 1.5207569 1.5207621 1.5207529 1.5207559 1.520761 1.5207579 1.5207861 1.5207702 1.5207668 1.5207809 1.520837 1.5208427 1.5208847 1.5208773 1.520844 1.5208518 1.5208957 1.5208863 1.5209762 1.5211524 1.5211285 1.5209431 1.5212732 1.5212514 1.5211098 1.5212251 1.521191 1.5210912 1.5209233 1.520904 1.5208284 1.5208083 1.5207857 1.5208024 1.5207952 1.5207874 1.5207684 1.5207744 1.5207586 1.5207615 1.5207665 1.5207631 1.5207914 1.5207756 1.5207713 1.5207846 1.5208412 1.5208565 1.5209002 1.520881 1.5208739 1.5209014 1.5209475 1.5209195 1.5214052 1.5213846 1.521556 1.5215741 1.5217895 1.521775 1.5220628 1.5220539 1.5214857 1.5213545 1.5215213 1.5213122 1.5220378 1.5217357 1.5216927 1.5219592 1.520783 1.5207807 1.5207632 1.5207649 1.5207793 1.5207777 1.5207607 1.5207621 1.5207519 1.5207549 1.5207562 1.5207537 1.5207586 1.5207573 1.5207548 1.520756 1.5207462 1.5207492 1.5207505 1.5207477 1.5207505 1.5207525 1.5207535 1.5207517 1.5207557 1.5207543 1.5207527 1.520754 1.520753 1.5207516 1.5207487 1.5207501 1.5215266 1.5213518 1.5215188 1.5213429 1.5220357 1.5217335 1.5217444 1.522023 1.5214826 1.5213346 1.5214984 1.5213096 1.5220063 1.5217093 1.5216885 1.5219529 1.5228636 1.5223889 1.5228332 1.5223753 1.5233858 1.5240667 1.5241768 1.5234213 1.52229 1.5227144 1.5223532 1.5227903 1.5233347 1.5240081 1.5232417 1.5238931 1.5261749 1.5249295 1.5259199 1.5250469 1.5286668 1.5271088 1.5274109 1.5288833 1.5248821 1.5258961 1.5250565 1.5260913 1.5289527 1.5273324 1.5271086 1.5285584 1.5228923 1.5224086 1.5228412 1.5224057 1.5233783 1.5234466 1.5240394 1.5241282 1.5227677 1.5223902 1.5228331 1.5222974 1.52413 1.5233839 1.5233071 1.523975 1.5261568 1.5248975 1.5259034 1.5250246 1.5286931 1.5271113 1.5273978 1.5288762 1.524695 1.5256676 1.5248304 1.5258305 1.528608 1.5270335 1.5268329 1.5282279 1.5206926 1.5206928 1.5207027 1.5207023 1.5206947 1.5206968 1.520707 1.5207047 1.5207268 1.5207169 1.5207146 1.5207237 1.5207224 1.5207125 1.5207116 1.5207203 1.5206928 1.5206948 1.5207053 1.520703 1.5207017 1.5207285 1.5207124 1.5207499 1.5207392 1.5207229 1.5207326 1.5207263 1.5207157 1.5207131 1.5207226 1.5207312 1.5207347 1.5207417 1.5207385 1.5207658 1.5207583 1.5207412 1.5207483 1.5207752 1.5207711 1.5207539 1.5207579 1.520752 1.5207474 1.5207443 1.5207487 1.5207504 1.5207469 1.5207445 1.520748 1.5207417 1.5207346 1.5207319 1.5207387 1.5207281 1.5207304 1.5207371 1.5207346 1.5207466 1.5207424 1.5207397 1.5207435 1.5268234 1.5251871 1.5262252 1.5255873 1.5274649 1.5289344 1.5299114 1.5281667 1.5251909 1.5262637 1.5252863 1.5263829 1.527696 1.5292574 1.5275418 1.5290598 1.5225017 1.5229781 1.5229171 1.5224132 1.5223444 1.5223835 1.522832 1.5227801 1.5242796 1.5235681 1.5242926 1.5234947 1.5233241 1.5239955 1.5233889 1.5240777 1.5231383 1.522511 1.5229743 1.5225975 1.5235467 1.5242481 1.5245729 1.52375 1.522935 1.5225038 1.5229813 1.5224275 1.523574 1.5243044 1.5235147 1.5242273 1.5251756 1.526242 1.5263245 1.525158 1.5249204 1.5259435 1.524813 1.5258028 1.5291801 1.5292862 1.5275159 1.5276067 1.5269957 1.5271688 1.5286336 1.5284121 1.5213696 1.5213465 1.5215459 1.5215168 1.5217369 1.5220907 1.5220185 1.5217722 1.5213418 1.5213326 1.5214943 1.5215087 1.5217237 1.5217025 1.5219985 1.5219692 1.521601 1.5214054 1.5215857 1.5213991 1.5218156 1.5221069 1.5221711 1.5218387 1.5215258 1.5213855 1.5215656 1.5213394 1.5217967 1.5220917 1.5217473 1.5220307 1.5209433 1.521129 1.5211174 1.5209277 1.521253 1.5212455 1.5211104 1.5212344 1.5211986 1.5210905 1.5209215 1.5209013 1.5207459 1.5207476 1.5207534 1.5207509 1.5207602 1.5207523 1.5207488 1.5207552 1.5207928 1.5207725 1.5207663 1.5207837 1.5207815 1.5207637 1.52076 1.5207746 1.5208509 1.5208602 1.5209089 1.5208989 1.5208329 1.5208461 1.5208928 1.5208754 1.5209217 1.52111 1.5210973 1.5209062 1.5212222 1.521204 1.5211004 1.5212022 1.5211984 1.5211013 1.5209099 1.5209165 1.5207829 1.5207651 1.5207639 1.5207787 1.520754 1.5207478 1.520749 1.5207541 1.5207697 1.520755 1.52076 1.5207746 1.5207846 1.5207689 1.5207833 1.5207972 1.5208488 1.5208388 1.5208795 1.5208877 1.5208345 1.5208432 1.5208884 1.5208763 1.5207481 1.5207463 1.5207441 1.5207453 1.5207459 1.5207459 1.520744 1.5207439 1.5207423 1.5207435 1.5207435 1.5207425 1.5207446 1.5207436 1.5207426 1.5207434 1.5207657 1.5207514 1.5207515 1.520766 1.5207455 1.5207445 1.5207441 1.5207456 1.5207449 1.520744 1.5207457 1.5207465 1.5207525 1.5207517 1.5207664 1.5207672 1.5210579 1.5212285 1.521268 1.5211172 1.5213485 1.521404 1.5214121 1.5215517 1.5217739 1.5216141 1.5212721 1.5215794 1.5209216 1.5209046 1.5209671 1.5209832 1.5208942 1.5208887 1.5209491 1.5209557 1.5214265 1.5210969 1.5211054 1.5214358 1.5211365 1.5211177 1.5214482 1.5214644 1.5215178 1.5212171 1.5212597 1.5215545 1.5210523 1.5209821 1.5210267 1.5210957 1.5209786 1.5211635 1.5211591 1.5209765 1.5212794 1.5212764 1.5211604 1.5212711 1.5212621 1.5211595 1.5209797 1.520986 1.5208369 1.5208183 1.52083 1.5208453 1.5208069 1.5208006 1.5208151 1.5208201 1.5208451 1.5208264 1.5208309 1.5208493 1.5208545 1.5208394 1.5208572 1.5208702 1.5209234 1.5209103 1.5209521 1.5209622 1.5209016 1.5208945 1.5209406 1.5209453 1.5214146 1.5214089 1.5215806 1.5215883 1.5218107 1.5218004 1.5220931 1.5220807 1.5215555 1.5213987 1.521564 1.5213825 1.5220762 1.5217767 1.5217617 1.5220272 1.520798 1.5207977 1.5208127 1.5208129 1.5207986 1.5208 1.5208142 1.5208134 1.5208423 1.5208246 1.5208243 1.5208424 1.5208243 1.5208239 1.5208425 1.520843 1.521397 1.5210745 1.5210786 1.5214025 1.5209387 1.5208868 1.5208861 1.5209402 1.5208863 1.5208857 1.5209421 1.5209447 1.5210895 1.5210834 1.5214091 1.5214169 1.5217275 1.5214806 1.5216514 1.521537 1.5221784 1.5218706 1.5219526 1.5222401 1.5220637 1.5216815 1.5218506 1.5218921 1.5223739 1.5220681 1.5222687 1.5225325 1.5207454 1.5207441 1.5207422 1.5207435 1.5207415 1.5207373 1.5207352 1.5207393 1.5207314 1.5207338 1.5207381 1.5207361 1.5207428 1.520741 1.5207394 1.5207413 1.5207314 1.5207238 1.5207218 1.5207289 1.5207149 1.5207048 1.5207032 1.5207125 1.5206984 1.5207008 1.5207104 1.520708 1.5207274 1.5207192 1.5207168 1.5207245 1.5207203 1.5207069 1.5207167 1.5207304 1.5207026 1.5207048 1.5207142 1.5207122 1.5207304 1.5207226 1.520721 1.5207286 1.5207342 1.5207258 1.5207395 1.5207473 1.5207443 1.5207431 1.520743 1.5207447 1.5207404 1.520736 1.5207348 1.5207395 1.5207539 1.5207404 1.5207451 1.5207588 1.5207505 1.5207483 1.5207623 1.5207644 1.5213284 1.5209971 1.5210117 1.5213406 1.5208811 1.5208463 1.5208569 1.5208937 1.5208744 1.5208661 1.5209048 1.5209144 1.5210372 1.5210248 1.5213505 1.5213599 1.5207958 1.5207813 1.5207917 1.5208066 1.5207765 1.5207679 1.5207769 1.5207863 1.5207917 1.5207847 1.5207948 1.5208019 1.5208095 1.5208011 1.5208163 1.5208244 1.520801 1.520801 1.5208136 1.5208144 1.5207995 1.5207962 1.5208073 1.5208112 1.520831 1.5208155 1.5208197 1.5208359 1.5208242 1.5208225 1.5208392 1.5208412 1.5208871 1.5208864 1.5209333 1.5209364 1.5208841 1.5208799 1.5209222 1.5209283 1.5213685 1.5210472 1.5210553 1.5213763 1.5210689 1.5210624 1.5213832 1.52139 1.5231038 1.5225378 1.5229886 1.5226029 1.5235483 1.5242365 1.5244462 1.5236751 1.5228692 1.5232936 1.5227308 1.5231793 1.5237368 1.5244238 1.5238211 1.5244727 1.526458 1.5250734 1.526084 1.5253095 1.5288762 1.5272952 1.5277145 1.5292074 1.5252733 1.5262447 1.5252596 1.5262729 1.5290739 1.5274884 1.5274073 1.528797 1.5229246 1.5224502 1.5228967 1.5224347 1.5234508 1.5234837 1.524131 1.5241712 1.5228318 1.5224264 1.5228669 1.5223639 1.5241565 1.523415 1.5233691 1.5240334 1.5261204 1.524959 1.5259585 1.525007 1.5287191 1.5271562 1.5273413 1.5287942 1.5248479 1.5258341 1.5249883 1.5259972 1.5287839 1.5272064 1.5270127 1.5284219 1.5358132 1.5383063 1.5411225 1.5442819 1.5315373 1.5334181 1.5493982 1.5534057 1.5520257 1.5477797 1.5561859 1.5628071 1.5605759 1.5577199 1.5676481 1.5651827 1.5726949 1.5699482 1.5749958 1.5205635 1.520561 1.5204989 1.5205028 1.5204986 1.5204995 1.5204953 1.5204976 1.5204969 1.5204961 1.5204993 1.520504 1.5204977 1.5204986 1.5205091 1.5205091 1.5205053 1.520505 1.520502 1.5205023 1.520502 1.5205018 1.5205055 1.5205055 1.5205001 1.5205001 1.5205 1.5204999 1.5205006 1.5205012 1.5205004 1.5205011 1.520504 1.5205034 1.5205034 1.5205033 1.5205043 1.5205043 1.5205028 1.5205028 1.5205038 1.5205028 1.5205181 1.5205107 1.5205122 1.5205139 1.5205109 1.5205174 1.5205215 1.5205176 1.5206007 1.5205937 1.5206033 1.5205948 1.5207629 1.5207986 1.5206883 1.5207544 1.5205149 1.5205131 1.5205181 1.5205223 1.520517 1.520517 1.5205172 1.5205171 1.5205144 1.5205146 1.5205157 1.5205156 1.5205174 1.5205184 1.5205192 1.5205189 1.5205233 1.5205234 1.5205265 1.5205267 1.5205202 1.5205203 1.5205207 1.5205205 1.5205223 1.5205226 1.520528 1.5205253 1.5206042 1.5205946 1.520682 1.5208023 1.5205943 1.520595 1.5205994 1.5205991 1.5206095 1.5206057 1.5206053 1.5206095 1.5205976 1.5206017 1.5206071 1.5206103 1.5206894 1.5206815 1.5206808 1.5206894 1.5207663 1.5208528 1.5208647 1.5207659 1.5206902 1.5206835 1.5208391 1.5207625 1.5205175 1.5205161 1.5205179 1.5205176 1.5205204 1.5205208 1.5205234 1.5205268 1.5205916 1.5205969 1.5206013 1.5206053 1.520677 1.5206853 1.5207628 1.5208643 1.5206317 1.5206449 1.5206369 1.5206106 1.5206096 1.5206191 1.5206198 1.5206269 1.5206265 1.5206323 1.5206324 1.5205446 1.5205257 1.5205444 1.5205255 1.5205613 1.5205959 1.520563 1.5205623 1.520563 1.520597 1.5206267 1.520627 1.5206322 1.5206319 1.5206194 1.5206092 1.5206102 1.5206191 1.5206052 1.5206074 1.5206166 1.5206141 1.5206214 1.520624 1.5206297 1.5206275 1.5205627 1.5205636 1.5205612 1.5205959 1.5205618 1.5205972 1.520524 1.5205417 1.520544 1.5205249 1.5205253 1.5205287 1.5205431 1.520544 1.52056 1.5205941 1.520562 1.5205583 1.5205598 1.5205927 1.5206802 1.5206901 1.5206625 1.5206703 1.5206567 1.5206575 1.5206648 1.5206639 1.5206836 1.5206733 1.5206724 1.5206818 1.5206609 1.5206501 1.5206554 1.5206554 1.5206501 1.5206412 1.5206453 1.5206369 1.520637 1.5206411 1.520641 1.5206509 1.5206454 1.5206453 1.5206502 1.5206328 1.5206346 1.520639 1.5206378 1.5206364 1.5206366 1.5206407 1.5206405 1.520651 1.5206452 1.520645 1.5206502 1.5206496 1.5206437 1.5206431 1.520649 1.5206857 1.5206752 1.5206738 1.5206835 1.5206656 1.5206574 1.5206566 1.5206642 1.5206559 1.520656 1.5206633 1.5206638 1.5206819 1.5206718 1.5206725 1.5206819 1.5206941 1.5206831 1.5206815 1.520692 1.5206721 1.5206615 1.5206598 1.5206699 1.5206559 1.5206577 1.5206676 1.520666 1.5206895 1.5206781 1.5206766 1.5206871 1.5206515 1.5206422 1.5206407 1.5206494 1.5206336 1.5206257 1.5206245 1.5206319 1.5206212 1.520622 1.5206295 1.5206287 1.5206473 1.5206377 1.5206368 1.5206455 1.5206355 1.5206262 1.5206341 1.5206443 1.5206237 1.520624 1.5206316 1.5206313 1.5206496 1.5206398 1.5206395 1.5206483 1.5206526 1.5206426 1.5206537 1.5206636 1.5206935 1.520682 1.5206803 1.520691 1.5206704 1.5206592 1.5206581 1.5206684 1.5206743 1.5206625 1.5206728 1.5206854 1.5206953 1.5206836 1.5206969 1.5207083 1.5206095 1.5206106 1.5206178 1.5206166 1.5206021 1.5205925 1.5205925 1.5206009 1.520589 1.5205896 1.5205984 1.5205977 1.5206056 1.5206064 1.5206139 1.5206131 1.5205548 1.520555 1.5205554 1.5205544 1.5205814 1.5205815 1.5205287 1.5205407 1.5205414 1.5205289 1.5205288 1.5205402 1.5205281 1.5205385 1.5205518 1.5205503 1.5205524 1.5205783 1.5205528 1.5205776 1.520608 1.5206086 1.5206159 1.5206155 1.5206 1.5205905 1.5205904 1.5205992 1.5205993 1.5205924 1.5206015 1.5206085 1.5206174 1.5206098 1.5206177 1.520626 1.5205541 1.5205795 1.5205533 1.5205544 1.5205534 1.5205794 1.5205305 1.5205407 1.5205301 1.5205406 1.5205331 1.5205402 1.5205499 1.5205435 1.5205565 1.5205559 1.5205812 1.5205612 1.5205604 1.520588 1.5207567 1.5207447 1.5207525 1.5207642 1.5207324 1.5207201 1.5207271 1.5207391 1.5207435 1.5207308 1.520743 1.5207566 1.5207686 1.5207554 1.5207697 1.5207824 1.5207082 1.520697 1.5207035 1.5207144 1.5206865 1.5206769 1.5206827 1.5206923 1.5206952 1.5206849 1.5206948 1.520706 1.5207178 1.5207055 1.5207175 1.5207296 1.5211748 1.5208524 1.5208694 1.5211982 1.5207612 1.5207405 1.5207513 1.5207743 1.5207766 1.5207629 1.5207883 1.5208029 1.5209062 1.5208873 1.5212203 1.5212413 1.5208331 1.5208191 1.5208506 1.5208657 1.5208043 1.5207897 1.5208182 1.5208336 1.5212609 1.5209254 1.5209434 1.5212796 1.5209794 1.5209612 1.5212973 1.5213138 1.5206638 1.5206594 1.5206676 1.5206726 1.5206501 1.5206404 1.5206451 1.5206541 1.5206549 1.5206468 1.520656 1.5206643 1.5206739 1.5206652 1.5206744 1.5206838 1.5206125 1.5206117 1.52061 1.5206092 1.5206304 1.5206346 1.5206027 1.5205924 1.5205987 1.5205963 1.5206121 1.5205998 1.5206053 1.5206065 1.5206142 1.5206361 1.5206137 1.5206204 1.5206196 1.5206439 1.5207365 1.5207201 1.5207294 1.5207477 1.5207103 1.5207012 1.5207156 1.5207253 1.521083 1.5207941 1.5208065 1.5211073 1.52113 1.5208205 1.5208355 1.5211528 1.5206875 1.5206868 1.5206766 1.5206923 1.520676 1.5207054 1.5206799 1.5206697 1.5206719 1.5206827 1.5210359 1.5207698 1.5207744 1.5209922 1.5207654 1.5207828 1.5207746 1.5209983 1.5210505 1.5210573 1.5592759 1.5648455 1.5597533 1.565276 1.5713224 1.5709107 1.5774524 1.577805 1.557992 1.5584303 1.5634569 1.5638247 1.5765095 1.569724 1.5760767 1.5694172 1.5569519 1.55954 1.561996 1.5648146 1.5705777 1.5767657 1.5675009 1.5734188 1.5589572 1.5643747 1.566298 1.5602308 1.5794522 1.5702725 1.5766109 1.5722967 1.5797851 1.5866013 1.5912684 1.5833912 1.583424 1.5907391 1.5863937 1.5938077 1.5938572 1.5988319 1.6016936 1.5984968 1.584454 1.5919383 1.5930519 1.5847778 1.5834529 1.590916 1.5910069 1.5829081 1.5998826 1.6010087 1.5988308 1.5988154 1.5312139 1.5331324 1.5339437 1.5316791 1.5311296 1.5332123 1.5331611 1.5308971 1.5393441 1.535355 1.5379046 1.5363278 1.5386172 1.5356206 1.5383932 1.5355649 1.5415177 1.5451365 1.5419885 1.5456127 1.5496919 1.5542257 1.5491987 1.5537312 1.5405587 1.5441086 1.5442805 1.5404626 1.5530371 1.5480977 1.5525438 1.548203 1.5408189 1.5424558 1.5441151 1.5459571 1.549885 1.5542354 1.5478113 1.5519218 1.541547 1.5451072 1.5457222 1.5417833 1.5547138 1.5490981 1.5535318 1.549754 1.5308013 1.5328719 1.533028 1.5307646 1.5301217 1.5321216 1.5319792 1.5298592 1.5384828 1.5352699 1.5380361 1.5354303 1.5344506 1.5371509 1.5371265 1.534246 1.5304138 1.5324362 1.532845 1.530614 1.529884 1.530314 1.5323208 1.5318157 1.5347773 1.5374789 1.5381974 1.5352087 1.5340681 1.5346435 1.5373244 1.536653 1.5303517 1.5323315 1.5328359 1.5306138 1.530702 1.5327538 1.5324677 1.5302677 1.5346256 1.5372749 1.5381682 1.5351905 1.5351271 1.537862 1.5377746 1.5348095 1.5403085 1.5437605 1.5451266 1.5412663 1.5409724 1.5445011 1.5447263 1.54087 1.5476438 1.55199 1.5539365 1.5490808 1.5484627 1.5528919 1.5535363 1.5486812 1.5405411 1.544019 1.5451784 1.5413064 1.5396179 1.5403743 1.5438383 1.5429658 1.5479274 1.5523014 1.5540086 1.549142 1.5467486 1.5477273 1.5520789 1.5509582 1.5648644 1.5571613 1.5625086 1.5589104 1.5683486 1.5746476 1.5777778 1.570751 1.555649 1.5608024 1.5568952 1.5621997 1.5679955 1.5742761 1.5664137 1.5724787 1.592835 1.5814413 1.5887287 1.5846474 1.5964892 1.6006886 1.5790422 1.5860875 1.5810456 1.5883302 1.5960923 1.5935834 1.5647764 1.5568295 1.5621464 1.5588299 1.5679494 1.5706558 1.5742193 1.5769977 1.5643808 1.5577951 1.5631906 1.5584346 1.576114 1.5690872 1.5702637 1.5766257 1.5809817 1.5882589 1.5919433 1.5838285 1.5834963 1.583008 1.5904328 1.5908301 1.5959989 1.5997526 1.59865 1.5983169 1.5226646 1.5226627 1.5226667 1.5226702 1.5226821 1.5226814 1.5226809 1.5226864 1.5225246 1.5224947 1.5225078 1.5225347 1.5224708 1.5224516 1.5224664 1.5224841 1.5224914 1.5224788 1.5224966 1.522509 1.5225472 1.5225182 1.5225303 1.5225566 1.5220462 1.5221482 1.522388 1.5223334 1.5225506 1.5226006 1.5225176 1.522595 1.5224091 1.5223428 1.5223548 1.5224243 1.521905 1.5219001 1.5221915 1.5221974 1.5219304 1.5219132 1.5222077 1.5222242 1.5223949 1.5223708 1.5224437 1.5224681 1.5224483 1.5224349 1.5224414 1.5224549 1.5224248 1.5224096 1.5224154 1.5224308 1.522436 1.5224238 1.5224394 1.5224507 1.5224629 1.5224503 1.5224639 1.5224755 1.5223778 1.5223244 1.522324 1.522381 1.5219048 1.5219119 1.5221982 1.5221916 1.5218979 1.5218989 1.5221875 1.5221873 1.5223327 1.5223263 1.5223869 1.5223958 1.5227413 1.5227321 1.5227149 1.5227232 1.5227164 1.5227087 1.5227234 1.5227159 1.5226051 1.5225755 1.5225654 1.522592 1.5225514 1.5225317 1.5225243 1.522542 1.5225007 1.5225184 1.5225363 1.5225198 1.5225877 1.5225583 1.5225432 1.5225721 1.5227404 1.5227338 1.5227216 1.5227302 1.5227228 1.5227104 1.5227268 1.5227167 1.5225975 1.5225667 1.5225681 1.522595 1.5225418 1.5225214 1.5225263 1.5225442 1.5225267 1.5225291 1.5225466 1.5225441 1.5225963 1.5225679 1.522565 1.5225906 1.5225046 1.5224907 1.5224979 1.5225101 1.5224796 1.5224712 1.52248 1.5224874 1.5224829 1.5224833 1.5224907 1.5224901 1.5225132 1.5225002 1.5224994 1.5225111 1.5224529 1.5224725 1.5224798 1.5224608 1.5224797 1.522484 1.5224919 1.5224871 1.5225153 1.5225019 1.5224966 1.5225084 1.5225023 1.5224893 1.522471 1.5224837 1.5224457 1.522468 1.5224662 1.5224439 1.5224746 1.5224771 1.5224754 1.522473 1.522472 1.5224736 1.5224713 1.5224698 1.5224626 1.5224644 1.5224422 1.5224409 1.5224791 1.5224795 1.5224777 1.5224774 1.5224774 1.5224693 1.5224668 1.5224754 1.5224618 1.5224642 1.5224732 1.5224713 1.5224738 1.5224758 1.5224757 1.5224741 1.5224652 1.5224615 1.5224712 1.5224744 1.52246 1.5224603 1.52247 1.5224699 1.522473 1.5224728 1.5224728 1.522473 1.5224777 1.5224743 1.5224744 1.5224775 1.5224777 1.5224737 1.5224707 1.5224741 1.5224717 1.5224713 1.5224689 1.5224691 1.5224403 1.5224617 1.5224619 1.5224409 1.5224668 1.5224634 1.522443 1.5224467 1.5224515 1.5224422 1.5224397 1.5224495 1.5224366 1.5224267 1.5224229 1.5224336 1.5224136 1.5224185 1.52243 1.5224263 1.5224333 1.5224367 1.522447 1.5224445 1.5224058 1.5223775 1.5223711 1.522402 1.5220031 1.522017 1.5222909 1.5222799 1.5219723 1.5219867 1.5222665 1.5222534 1.5223542 1.5223631 1.5223971 1.5223916 1.5223862 1.5223459 1.522338 1.5223816 1.5219437 1.5219568 1.52224 1.5222275 1.5219204 1.5219303 1.5222156 1.5222058 1.5223265 1.5223313 1.5223782 1.5223767 1.522406 1.5224051 1.5224197 1.5224209 1.5224065 1.5224097 1.5224229 1.5224206 1.5224424 1.5224307 1.522429 1.5224413 1.5224306 1.5224288 1.5224416 1.5224437 1.5227364 1.5227411 1.5227225 1.5227256 1.5227304 1.5225668 1.5226947 1.5225625 1.5226876 1.5225872 1.5227602 1.5227784 1.5227755 1.5227635 1.5227609 1.5227564 1.5227764 1.5227612 1.5227546 1.5227707 1.5227372 1.5227352 1.5227338 1.5227413 1.5227398 1.5227384 1.5225222 1.5226402 1.5225663 1.5227002 1.5226962 1.5226959 1.5226515 1.522542 1.5226959 1.5226996 1.5227345 1.5227366 1.522739 1.5227408 1.5227735 1.5227701 1.5227681 1.5227741 1.5227773 1.5227771 1.5227789 1.5227788 1.5227758 1.5227727 1.5227746 1.5227773 1.5227767 1.5227742 1.522778 1.5227781 1.522776 1.5227764 1.5227686 1.5227729 1.5225698 1.5226596 1.5226892 1.5226907 1.5227222 1.5227244 1.522726 1.5227247 1.522761 1.5227579 1.5227623 1.5227617 1.5227582 1.5227584 1.5227473 1.5227549 1.5226806 1.5226699 1.5226711 1.5226611 1.5226675 1.5226679 1.5226685 1.5226743 1.5226841 1.5226788 1.5226821 1.5226723 1.5226672 1.5226662 1.5226558 1.5226633 1.5226541 1.5226536 1.5226611 1.5226229 1.5226162 1.5226555 1.5226566 1.5226176 1.5226188 1.5226599 1.5225699 1.5225008 1.522573 1.5225688 1.5225755 1.5225019 1.5225756 1.5225789 1.5225738 1.5225071 1.5225805 1.522511 1.5225799 1.5226239 1.5225848 1.5226229 1.5225236 1.5224891 1.5225511 1.5225957 1.5224513 1.5223601 1.5224542 1.5225125 1.5225113 1.5224345 1.522538 1.5224632 1.5225398 1.5225411 1.5225403 1.5224702 1.5224437 1.5224354 1.522413 1.5224229 1.5222813 1.5223236 1.5224048 1.5223802 1.5223607 1.5222423 1.5222058 1.5223462 1.522408 1.5223967 1.5223859 1.5223991 1.5224411 1.5224366 1.5224277 1.5224329 1.5224524 1.522475 1.5224764 1.5224567 1.5224873 1.5224815 1.5224615 1.5224688 1.5224556 1.5224473 1.5224384 1.5224475 1.5224436 1.5224341 1.5224332 1.522443 1.5224292 1.5224232 1.522422 1.5224288 1.5224256 1.5224232 1.5224304 1.5224331 1.5224375 1.5224347 1.5224445 1.522447 1.5223951 1.5223801 1.5223782 1.522395 1.5221406 1.5221718 1.5223358 1.5223286 1.5220949 1.5221162 1.5223235 1.5223199 1.5223811 1.5223789 1.5223974 1.522401 1.5224046 1.5223833 1.5223845 1.5224073 1.5220595 1.5220761 1.5223161 1.5223118 1.52203 1.5220436 1.5223059 1.5222989 1.5223816 1.5223839 1.5224085 1.5224081 1.5224295 1.5224306 1.522439 1.5224385 1.52243 1.5224281 1.5224358 1.5224379 1.5224495 1.5224403 1.5224426 1.5224516 1.5224438 1.5224438 1.5224528 1.5224528 1.5224714 1.5224727 1.5224797 1.522479 1.5224729 1.5224723 1.5224787 1.5224795 1.5224794 1.5224802 1.5224811 1.5224804 1.5224809 1.5224814 1.5224807 1.5224803 1.5224712 1.5224703 1.5224765 1.5224775 1.5224706 1.522473 1.5224788 1.5224768 1.5224798 1.5224804 1.5224782 1.5224777 1.5224789 1.522478 1.5224774 1.5224783 1.5224606 1.5224756 1.522472 1.5224559 1.5224769 1.5224793 1.5224768 1.5224747 1.5224769 1.5224763 1.5224742 1.5224747 1.5224701 1.5224705 1.5224532 1.5224516 1.5224784 1.522479 1.5224764 1.5224759 1.5224787 1.5224779 1.5224756 1.5224762 1.5224506 1.5224704 1.5224706 1.5224498 1.5224695 1.5224704 1.5224488 1.5224475 1.5226903 1.5226525 1.522639 1.5226778 1.5226942 1.5226942 1.5226557 1.5226558 1.5226111 1.5226138 1.5225498 1.5226169 1.5226139 1.5225531 1.5226002 1.5225998 1.5226143 1.5226112 1.5225507 1.5225383 1.5226573 1.5226985 1.5226616 1.5226979 1.5226931 1.5226972 1.5226574 1.5226609 1.5226103 1.5225482 1.522618 1.5226129 1.522622 1.5225523 1.5226232 1.5226153 1.5225555 1.5225502 1.52261 1.5226172 1.5224938 1.5224881 1.5224791 1.5224847 1.5225034 1.5225245 1.5225286 1.5225096 1.5225099 1.5225314 1.5225272 1.5225088 1.5224951 1.522496 1.5224865 1.5224859 1.5224916 1.522495 1.5224856 1.5224828 1.5225298 1.5225109 1.5225067 1.5225271 1.5225272 1.5225081 1.5224946 1.5225155 1.5224799 1.5224935 1.5224831 1.522469 1.5224771 1.5225742 1.5226075 1.5225715 1.5226069 1.522611 1.5225812 1.5226046 1.5225719 1.5225457 1.5225415 1.5225515 1.5224956 1.522552 1.522486 1.5225418 1.5224819 1.522534 1.5225375 1.5225352 1.5224791 1.5224218 1.5224342 1.5224219 1.5224081 1.5224621 1.5224724 1.5224525 1.5224414 1.5224542 1.5224579 1.5224366 1.5224327 1.5224144 1.5224186 1.5224039 1.5223998 1.5224067 1.5224079 1.5223934 1.5223921 1.5224281 1.5224525 1.5224486 1.5224271 1.5224297 1.5224476 1.5224253 1.5224069 1.5223865 1.5224064 1.5223905 1.5223691 1.5223955 1.5223959 1.5223745 1.5223739 1.5223966 1.5223975 1.5223773 1.5223757 1.5223654 1.5223697 1.5223677 1.5223632 1.5223654 1.5223664 1.5223616 1.5223606 1.5223991 1.5224018 1.5223838 1.5223801 1.5224061 1.522413 1.5223976 1.5223899 1.5223883 1.5223926 1.522384 1.5223798 1.522373 1.5223778 1.5223735 1.522369 1.5223544 1.5223778 1.5223677 1.5223424 1.5223808 1.5223822 1.5223738 1.5223722 1.5223626 1.5223676 1.5223657 1.5223609 1.5223537 1.5223601 1.5223328 1.522325 1.5223541 1.5223553 1.5223524 1.5223509 1.5223571 1.5223596 1.5223574 1.5223547 1.5223184 1.5223493 1.5223457 1.5223128 1.5223401 1.5223428 1.522308 1.5223038 1.5222232 1.5222264 1.5221906 1.5221872 1.5222304 1.5222353 1.5221957 1.5205102 1.5205143 1.5205336 1.5205285 1.5206028 1.5205755 1.5204992 1.520503 1.5205694 1.5206998 1.5206784 1.5206848 1.5206928 1.520668 1.520658 1.5206525 1.520662 1.5206489 1.5206581 1.5206581 1.5206481 1.5206738 1.5206878 1.5206898 1.5206741 1.5208267 1.520841 1.5207165 1.5207399 1.5207294 1.5207259 1.520772 1.5207559 1.5207571 1.5207405 1.5208533 1.5208723 1.5209976 1.5206655 1.5206812 1.5206718 1.5206559 1.5207975 1.5208129 1.5206982 1.5207122 1.5207013 1.5206873 1.5205931 1.5205921 1.5206055 1.520606 1.5206151 1.5206002 1.520596 1.5206098 1.5206246 1.5206301 1.5206422 1.5206368 1.5206202 1.5206323 1.5206333 1.5206205 1.5208684 1.5208819 1.5209082 1.5208932 1.5209066 1.5209382 1.5209065 1.5208768 1.5209716 1.5210116 1.5210499 1.5210093 1.5209567 1.5209937 1.5210215 1.5209761 1.5211544 1.5211697 1.5212106 1.5211036 1.5210864 1.5211425 1.5211879 1.5211213 1.521331 1.5212759 1.5213385 1.5213915 1.521357 1.5214154 1.5213812 1.5213063 1.5211008 1.5211137 1.521171 1.5211567 1.5213665 1.521294 1.5213124 1.5213744 1.5214536 1.5213762 1.5214876 1.5214117 1.5211515 1.5212109 1.521241 1.5211703 1.5208707 1.5208769 1.5209023 1.5208953 1.5209603 1.5209693 1.5210071 1.5209972 1.5210516 1.5210365 1.52099 1.5210032 1.5208865 1.520913 1.5209232 1.5208904 1.5212306 1.5212741 1.5211321 1.5211623 1.5210592 1.5210275 1.5210281 1.5210585 1.5211249 1.5211275 1.5211733 1.5211669 1.5210495 1.5210735 1.5210877 1.5211112 1.5209968 1.5209664 1.5209522 1.5209778 1.5209614 1.5209331 1.5209357 1.5209623 1.5210259 1.5210292 1.5210681 1.521062 1.5212132 1.5211837 1.5212404 1.5212685 1.5214118 1.5213775 1.5214404 1.5214707 1.521379 1.5213538 1.5214386 1.5214142 1.521155 1.5212086 1.5212287 1.521164 1.5212625 1.5213222 1.5213447 1.5212728 1.5214594 1.5215685 1.5215269 1.5214876 1.5206302 1.520613 1.5208276 1.5208504 1.5205289 1.5205205 1.5205337 1.5205416 1.5207915 1.5206078 1.5205212 1.5205133 1.5210876 1.521102 1.5208772 1.5208539 1.5207203 1.5207055 1.5207253 1.5207393 1.5207586 1.5207376 1.5207784 1.5207573 1.5208933 1.520922 1.5211534 1.521134 1.5206517 1.5206412 1.5206408 1.5206516 1.5206568 1.5206684 1.5206559 1.5206445 1.5206907 1.5206739 1.5206868 1.5207029 1.5206686 1.5206831 1.5206849 1.5206688 1.5209886 1.5208097 1.5208202 1.5210073 1.5206596 1.5206458 1.5206618 1.5206755 1.5206904 1.5206728 1.5206886 1.5207066 1.5208263 1.5208415 1.5210566 1.5210339 1.5206116 1.5206116 1.5206242 1.5206244 1.5205964 1.5205829 1.5205836 1.5205962 1.5205868 1.5205998 1.5206085 1.5205941 1.5206139 1.5206238 1.5206379 1.5206276 1.5209446 1.5209782 1.5210042 1.5209696 1.5209592 1.5209737 1.5209436 1.5209309 1.5210219 1.5210414 1.5210788 1.5210583 1.5210307 1.521068 1.5211166 1.5210723 1.521176 1.5212124 1.5212301 1.5211491 1.5211575 1.5212139 1.5212819 1.5212163 1.5214246 1.5213432 1.5214846 1.5214069 1.5213668 1.521344 1.5214047 1.5214247 1.5213076 1.5213696 1.5214275 1.5213597 1.5215727 1.5216333 1.5218067 1.521757 1.5219592 1.5217697 1.5219961 1.521829 1.521504 1.5215699 1.5216323 1.5215711 1.5210653 1.5211138 1.5211418 1.5210958 1.5211603 1.5212112 1.5212523 1.5212057 1.5214273 1.5214679 1.5216385 1.5216123 1.5213235 1.5215117 1.5215277 1.5213547 1.5213177 1.5213046 1.5213623 1.5213737 1.5211099 1.521166 1.5211896 1.5211229 1.5211116 1.5211658 1.521156 1.5210928 1.521306 1.5213665 1.5214053 1.5213335 1.5209563 1.5209699 1.5209916 1.5210057 1.5208978 1.5208692 1.5208636 1.5208874 1.520901 1.5208717 1.5208808 1.520907 1.5209679 1.520976 1.5210142 1.521004 1.5210299 1.5209726 1.5209842 1.5210111 1.5209091 1.5208784 1.5208749 1.5209006 1.5209188 1.5208883 1.5209075 1.5209346 1.5209864 1.5210056 1.5210455 1.5210248 1.5211327 1.5211082 1.5211664 1.5211904 1.5213363 1.5213987 1.5213845 1.5213063 1.5213351 1.5213773 1.5214403 1.5214003 1.5211229 1.5211811 1.5212165 1.5211478 1.5227335 1.5226989 1.5226952 1.5227326 1.5226993 1.522737 1.5227381 1.5227031 1.5226645 1.5226604 1.522623 1.5226275 1.5226611 1.5226164 1.5226246 1.5226561 1.5225637 1.5226076 1.5225237 1.5225956 1.5225637 1.5224846 1.5225223 1.5224416 1.5226262 1.5226229 1.5225878 1.522583 1.5227019 1.5226658 1.5226686 1.5227043 1.5224899 1.5224895 1.5224905 1.522491 1.522498 1.522493 1.5224924 1.522497 1.522482 1.5224841 1.5224892 1.5224874 1.5224806 1.5224786 1.5224798 1.5224819 1.5224914 1.5224919 1.5224966 1.5224965 1.5224898 1.5224892 1.5224882 1.522489 1.522492 1.5224932 1.5224928 1.5224921 1.5224945 1.5224954 1.5225004 1.5224991 1.5225075 1.5225054 1.5225143 1.5225172 1.5225033 1.5225037 1.5225134 1.5225125 1.5225341 1.5225593 1.5225299 1.5225642 1.5225308 1.5225615 1.5225588 1.5225286 1.5225035 1.5225049 1.5225143 1.5225125 1.5225622 1.5225285 1.522531 1.5225571 1.5225553 1.5225235 1.5225263 1.5225602 1.5224961 1.5225056 1.5225061 1.5224949 1.5222863 1.5222532 1.522254 1.5222891 1.5222569 1.5222613 1.5222868 1.5222852 1.5223856 1.5223835 1.5223889 1.52239 1.5223844 1.5223863 1.5223946 1.5223915 1.522454 1.5224526 1.5224518 1.5224554 1.5224491 1.5224452 1.522444 1.5224497 1.522441 1.5224419 1.522443 1.5224423 1.5224598 1.5224549 1.5224584 1.5224634 1.5224712 1.5224668 1.5224758 1.5224809 1.522466 1.5224561 1.5224565 1.5224651 1.5225149 1.522481 1.5224832 1.5225084 1.5224922 1.5224988 1.5225294 1.5225205 1.5222616 1.5222555 1.5223041 1.5222962 1.5223925 1.5224028 1.5224115 1.5223998 1.5224301 1.5224155 1.522442 1.5224605 1.5222727 1.5223214 1.52235 1.5222965 1.522353 1.522447 1.5224238 1.5223236 1.5224079 1.5223016 1.5222931 1.5222836 1.5222706 1.5222904 1.5223967 1.5223898 1.5223926 1.5223982 1.5224434 1.5224482 1.5224477 1.5224447 1.5224575 1.5224663 1.5224579 1.5224542 1.5224554 1.5224585 1.5224964 1.5224741 1.5224817 1.5225048 1.5225184 1.5225446 1.5225418 1.5225229 1.5225077 1.5225036 1.5224951 1.5224948 1.5224909 1.5224916 1.5224988 1.5224948 1.5224945 1.5224988 1.5224956 1.5224955 1.5224921 1.5224923 1.522505 1.5224948 1.5224864 1.5224831 1.5224812 1.5224856 1.5225429 1.5225338 1.5225116 1.5225212 1.5227182 1.5227072 1.5229115 1.5229287 1.5230675 1.5232411 1.5232306 1.5230457 1.5230869 1.5231535 1.5233514 1.5232663 1.5227155 1.5229317 1.5229817 1.5227373 1.5232278 1.5230432 1.5230755 1.5232516 1.5230639 1.5230931 1.523275 1.5232369 1.5227089 1.5227189 1.5229363 1.5229152 1.5227016 1.5228993 1.5229243 1.5227137 1.5235023 1.5234539 1.5237204 1.5237803 1.5234725 1.5234422 1.523744 1.5237063 1.524128 1.5240538 1.5244549 1.5245437 1.5240376 1.5240828 1.5244898 1.5244363 1.5237506 1.523458 1.5234455 1.5237095 1.5234907 1.5237658 1.5239262 1.5235971 1.5247957 1.5245636 1.5241095 1.5243029 1.5240886 1.5240398 1.5244378 1.5244928 1.5227755 1.5229474 1.5230468 1.5228615 1.5227168 1.5225135 1.5224304 1.5226286 1.5227786 1.5225851 1.5226235 1.5228336 1.5229075 1.5229732 1.5231483 1.5230699 1.5229981 1.5230643 1.5231667 1.5232497 1.5229035 1.5226779 1.5226537 1.5228533 1.5228798 1.5226703 1.5226917 1.52291 1.5230164 1.5230524 1.5232304 1.5231875 1.5234815 1.5233785 1.523639 1.5237638 1.5241163 1.5244021 1.5245368 1.5239666 1.524593 1.5244748 1.5240292 1.5241314 1.5234019 1.5236653 1.5237517 1.5234527 1.5231635 1.5235537 1.5234289 1.5232622 1.5232748 1.5235286 1.5236627 1.5233672 1.524456 1.5242746 1.5238483 1.5240042 1.5237621 1.5241622 1.5243373 1.5238905 1.5224138 1.5224182 1.5224193 1.5224243 1.5224158 1.5224143 1.522411 1.5224124 1.5225032 1.5224652 1.5224325 1.5224438 1.5226965 1.5234988 1.5241116 1.5243921 1.5236868 1.5257769 1.5248495 1.5251651 1.5260138 1.52699 1.527968 1.5267606 1.5280402 1.5292633 1.5292695 1.5304386 1.5305264 1.5306758 1.5293174 1.5293621 1.5305804 1.5280015 1.5268507 1.5267921 1.5278787 1.5268764 1.526595 1.5276365 1.5278738 1.5288675 1.5290345 1.5301175 1.5300576 1.5235862 1.5242135 1.5241237 1.52345 1.5248676 1.5249657 1.5257914 1.5257071 1.5234084 1.5241932 1.5240108 1.5235135 1.5247356 1.5255482 1.5258362 1.5249405 1.5359798 1.5384084 1.540483 1.538182 1.5408128 1.5354638 1.5352387 1.5377123 1.540612 1.5382795 1.5408367 1.535554 1.5415286 1.5414873 1.5406458 1.5407814 1.5403171 1.5415104 1.5406868 1.5407603 1.5427918 1.5428451 1.5445993 1.5444318 1.543594 1.5418249 1.5427781 1.5444298 1.5460997 1.5450822 1.5472017 1.5484642 1.5463764 1.5488641 1.5487339 1.5460807 1.5494145 1.5470857 1.5467457 1.549605 1.5448022 1.5428893 1.5432356 1.5449853 1.5423855 1.5440764 1.5442511 1.5424314 1.5457912 1.5482075 1.5482758 1.5457802 1.5360588 1.5353808 1.5378716 1.5407786 1.5385697 1.5410583 1.5409356 1.5415998 1.5413676 1.5407812 1.540987 1.5407988 1.5399702 1.5399943 1.5404347 1.5403207 1.534858 1.5372783 1.5381743 1.5354919 1.5606307 1.5622989 1.5792551 1.5821067 1.5771797 1.5798641 1.5781824 1.5804086 1.5629009 1.5627557 1.5623349 1.5628511 1.562262 1.5622614 1.5610049 1.5603317 1.5624226 1.5618531 1.5792003 1.582054 1.5798813 1.5828642 1.5813142 1.5804237 1.5638748 1.5631656 1.5630742 1.5638574 1.5638453 1.563335 1.5620472 1.561579 1.5624978 1.5617618 1.5616214 1.5616778 1.5785129 1.5812175 1.5784533 1.5814083 1.5794325 1.5798663 1.5812162 1.5841761 1.5803238 1.5830791 1.5825127 1.5813032 1.5265181 1.5276 1.5278713 1.526714 1.5270504 1.5280845 1.5279577 1.5267513 1.5292513 1.5292803 1.5304986 1.5303844 1.5288856 1.5304306 1.53015 1.5290993 1.5248148 1.5251249 1.5256618 1.5259711 1.5242741 1.5235741 1.5233862 1.5239993 1.5238985 1.5232457 1.5234642 1.5240866 1.5246219 1.5248323 1.5256598 1.5254485 1.5257903 1.5248918 1.5248725 1.5257534 1.5240542 1.5233837 1.5234346 1.5240612 1.5245304 1.5237794 1.5238794 1.5245644 1.5253521 1.5253843 1.5262546 1.5262563 1.5267554 1.5267527 1.5278527 1.5277878 1.5290012 1.5291616 1.5304349 1.5301441 1.529766 1.5299024 1.5308888 1.5311709 1.5272997 1.5284275 1.5284046 1.5272387 1.5351482 1.5351437 1.5376302 1.5405592 1.5375843 1.5401067 1.5400822 1.5405821 1.5414347 1.540589 1.5425694 1.5419297 1.541815 1.5419047 1.5416784 1.542016 1.5365345 1.5391474 1.5396509 1.5368014 1.5358367 1.5353706 1.537865 1.5406837 1.5383135 1.5406005 1.5404609 1.5406664 1.5411875 1.540864 1.5407732 1.5407393 1.5399737 1.5400793 1.5407004 1.541229 1.5345866 1.5370082 1.5381272 1.5354161 1.5484358 1.5467089 1.5457451 1.5492536 1.5437844 1.5418542 1.542809 1.5445842 1.5438835 1.5456078 1.5450064 1.5431755 1.5473448 1.5498074 1.549025 1.5465292 1.5424999 1.5420484 1.5435985 1.5441974 1.5476592 1.545151 1.5459211 1.5483546 1.5459977 1.5464506 1.5488443 1.5485188 1.5420911 1.5438712 1.5444655 1.5425095 1.5613496 1.5622835 1.579236 1.5822 1.5781799 1.5809325 1.5806322 1.579256 1.5625552 1.5621548 1.5618698 1.5629038 1.5623785 1.5624306 1.5616446 1.5610026 1.5622075 1.5617402 1.5793644 1.5822906 1.5793484 1.5824518 1.5807382 1.5810658 1.5624515 1.5619191 1.5619678 1.5634738 1.5633274 1.562885 1.5643494 1.5636925 1.5636902 1.5628376 1.5626118 1.5636587 1.5799238 1.5825676 1.5811353 1.5839923 1.5822171 1.5806595 1.5807513 1.5837782 1.5788614 1.5817456 1.5822168 1.5801873 1.5234885 1.524111 1.5241415 1.5234531 1.5234363 1.524302 1.5240626 1.5235902 1.5250825 1.524816 1.5259294 1.5256637 1.5248606 1.524898 1.5257406 1.5256629 1.5265791 1.5267171 1.5277756 1.5275467 1.5286728 1.5297181 1.5303665 1.5290206 1.5291599 1.5294456 1.5306117 1.5304174 1.5266504 1.5277336 1.5280702 1.5269021 1.5270002 1.5280502 1.5280391 1.5268056 1.5282662 1.5281159 1.5269156 1.5269893 1.5296481 1.529388 1.5309907 1.5305875 1.5293661 1.529273 1.5304223 1.5306539 1.5241195 1.524187 1.5234869 1.5234267 1.5234549 1.524085 1.5242922 1.5235844 1.5250675 1.5248404 1.5257018 1.5259184 1.5249591 1.5258156 1.5258516 1.5248844 1.5352941 1.5388248 1.5413233 1.5377976 1.5406608 1.5360341 1.5382467 1.5409252 1.5378127 1.5399471 1.5351387 1.5354862 1.5408331 1.5398305 1.5402438 1.5412975 1.540656 1.5412084 1.5418865 1.5411852 1.5357228 1.5357575 1.53831 1.5414002 1.538238 1.5408507 1.5407916 1.541401 1.5419661 1.5412826 1.5407897 1.540721 1.5408793 1.5409094 1.541483 1.5411704 1.5354342 1.5379419 1.5383057 1.5355895 1.5428556 1.5446222 1.5442827 1.542398 1.5445408 1.5425725 1.5433515 1.5451455 1.5489575 1.5469775 1.546233 1.5495484 1.5464095 1.5489162 1.5484369 1.5458749 1.5425642 1.5443203 1.5450591 1.5431271 1.5432196 1.5414143 1.5425694 1.5442357 1.5459287 1.5447516 1.5469358 1.5483354 1.5461059 1.5486222 1.549393 1.5467055 1.5627997 1.5623957 1.5625678 1.5622405 1.5624829 1.5618687 1.563085 1.563787 1.5635875 1.5631722 1.5631466 1.5626032 1.5810621 1.5841331 1.5803378 1.5832588 1.5816668 1.5826229 1.579179 1.5819845 1.5794645 1.5824803 1.5809888 1.5803118 1.5624021 1.561839 1.5608271 1.5601987 1.5618894 1.5601509 1.5788939 1.5817944 1.5767578 1.5795334 1.5779397 1.5801625 1.5627465 1.5635945 1.5811091 1.5839342 1.5798557 1.5828723 1.5813945 1.5821874 1.5625576 1.5621455 1.5639063 1.5632227 1.5234527 1.5233185 1.5239074 1.5240552 1.5238713 1.5232347 1.5235389 1.5241567 1.5258083 1.5254737 1.5245785 1.5248968 1.524781 1.5246147 1.5254169 1.5255685 1.526471 1.5263488 1.5273699 1.5274265 1.5299036 1.5297195 1.5285381 1.5285787 1.5288841 1.5292798 1.5304566 1.5301351 1.5264276 1.5274861 1.5279137 1.5267621 1.5265845 1.5270254 1.5281131 1.5275718 1.5287368 1.5298457 1.5308181 1.5294069 1.5297051 1.5303051 1.5313675 1.5309053 1.5272509 1.5283126 1.5289942 1.5278714 1.5237096 1.5234788 1.5240726 1.5243363 1.5247868 1.5250902 1.5259359 1.5255721 1.5268183 1.5261759 1.5252642 1.5259031 1.5238381 1.5244519 1.5250504 1.5243496 1.5349174 1.537149 1.539886 1.5372976 1.5394916 1.534526 1.5345026 1.5368982 1.5398492 1.5381021 1.5407478 1.5354058 1.5407078 1.5399491 1.5405698 1.5411965 1.5394124 1.5398477 1.5406899 1.5398983 1.5419561 1.5437325 1.5444244 1.5424736 1.5428311 1.5410256 1.5419866 1.5436676 1.5453803 1.5443698 1.5465557 1.5477932 1.5455438 1.548069 1.5487801 1.5460947 1.5432204 1.5448993 1.5455907 1.5438317 1.5435298 1.5416133 1.5437434 1.5454941 1.5478518 1.5472794 1.5451897 1.5498038 1.5465924 1.5490022 1.5494737 1.5470463 1.5347057 1.5384602 1.5413582 1.5370766 1.5395119 1.5357041 1.5360933 1.538617 1.5412371 1.5401712 1.5422416 1.5373778 1.5411651 1.5416502 1.5424618 1.5419264 1.5395419 1.5400718 1.5421126 1.5413191 1.5792632 1.5778206 1.559992 1.5615709 1.5783301 1.5813225 1.5764465 1.5798386 1.562001 1.5615232 1.5612837 1.5628056 1.562279 1.5623302 1.5601035 1.5595649 1.5614103 1.5609921 1.579252 1.5821687 1.5786652 1.5818007 1.5806318 1.5804847 1.5615828 1.561129 1.5612405 1.5640302 1.5640648 1.5635237 1.5631896 1.5626071 1.5626359 1.5633308 1.5642086 1.5632402 1.5826585 1.5810626 1.5808021 1.5833193 1.5797875 1.5812686 1.5814745 1.5844371 1.577887 1.5808176 1.5827834 1.579377 1.598708 1.5973625 1.6149263 1.6122188 1.6133249 1.6108392 1.6336825 1.6350968 1.5951767 1.5956946 1.6117814 1.6090058 1.6109064 1.6085437 1.6317829 1.6312205 1.5936595 1.5962201 1.6092026 1.6068351 1.612036 1.6095199 1.6320734 1.6292637 1.5962686 1.5972523 1.6133685 1.610565 1.6122212 1.6096071 1.6323336 1.6331856 1.5950078 1.596536 1.6108205 1.6310406 1.60834 1.6126006 1.6098598 1.6325703 1.5966431 1.5969597 1.6132566 1.6102021 1.6127451 1.6099759 1.6328983 1.6327414 1.5960963 1.5984343 1.6121994 1.6094427 1.6148157 1.6119324 1.6322959 1.6349432 1.5967154 1.5985362 1.6148403 1.6122056 1.6353864 1.6126336 1.6103531 1.6334435 1.638966 1.644692 1.6405978 1.6465623 1.641029 1.6473062 1.6407924 1.646804 1.6435567 1.6494841 1.6414413 1.6469888 1.6403526 1.6464044 1.6430862 1.6491828 1.6370721 1.642655 1.6399792 1.6456679 1.641222 1.647196 1.6403366 1.6461859 1.6416437 1.6473592 1.643152 1.6490342 1.6398661 1.6458701 1.6391146 1.6447012 1.5969941 1.5961704 1.6133469 1.6103753 1.6122055 1.6095852 1.6333784 1.6324762 1.5978929 1.5988524 1.6142873 1.6347338 1.611485 1.6153405 1.6123532 1.6354243 1.5975314 1.5984974 1.6139228 1.6109733 1.6147863 1.6121604 1.6339956 1.6353534 1.5936003 1.5961017 1.6094676 1.6069296 1.6121453 1.6094821 1.6298298 1.6322966 1.596363 1.5965553 1.6127577 1.609913 1.6127511 1.6095872 1.6323971 1.6327942 1.5933891 1.5956479 1.6093541 1.606609 1.6117805 1.6088985 1.6294468 1.6316164 1.5951816 1.5991228 1.6113683 1.6084741 1.6155592 1.6127214 1.6358783 1.6314163 1.5973908 1.6132318 1.6110777 1.5971858 1.6134834 1.6107304 1.6339506 1.6341394 1.6440626 1.6501518 1.6395506 1.6457841 1.6421328 1.6481907 1.6420519 1.647451 1.6478893 1.6477951 1.6443777 1.6466828 1.6375035 1.6397112 1.6405969 1.6408807 1.6378165 1.6436461 1.6403366 1.6462787 1.6421588 1.648342 1.6434797 1.6493951 1.6429039 1.6489668 1.6436611 1.6498924 1.6415967 1.6478461 1.6405239 1.6463914 1.5252904 1.5259686 1.5263193 1.5255367 1.5278417 1.5267786 1.5271715 1.5281789 1.5271855 1.5268717 1.5278716 1.5282103 1.5252514 1.5259524 1.5262392 1.5254554 1.5293529 1.5307096 1.5304368 1.5289776 1.5309223 1.530526 1.5290378 1.5293988 1.5325243 1.5320928 1.5343464 1.5338667 1.5319801 1.5322661 1.5340404 1.5337446 1.5295953 1.5293538 1.5307112 1.5309682 1.5342477 1.5345227 1.5325451 1.5322735 1.5324928 1.53295 1.534772 1.5342928 1.5294064 1.5307648 1.5311836 1.5296605 1.52569 1.5264179 1.5262443 1.5254779 1.5270822 1.5272768 1.5280748 1.5282888 1.5255843 1.5257411 1.5264717 1.5262915 1.5271323 1.5273359 1.5283539 1.5281249 1.5378092 1.5382256 1.5408949 1.5435162 1.5404774 1.5428892 1.5450834 1.5472451 1.5486489 1.5459644 1.5479727 1.5425605 1.545168 1.5431896 1.5456162 1.5479296 1.5372491 1.5398158 1.5405105 1.5376507 1.5384754 1.538032 1.5406743 1.5433133 1.5411438 1.5436482 1.5459299 1.5481438 1.5485512 1.5458199 1.5442467 1.5464786 1.5433437 1.5458009 1.5481551 1.5486361 1.5381045 1.5407482 1.5417436 1.5387648 1.5542375 1.5508701 1.551173 1.5539553 1.5539897 1.5507428 1.5513073 1.5543407 1.55759 1.5570537 1.5605796 1.5613093 1.5574235 1.5569003 1.5602807 1.5610706 1.5513704 1.5497833 1.5525718 1.5543537 1.5575422 1.5555317 1.5589433 1.5611937 1.5574338 1.5575801 1.5613647 1.5610295 1.5507851 1.5538687 1.5538962 1.550591 1.5727529 1.5754353 1.5927981 1.591666 1.5906092 1.5887314 1.5906053 1.5936924 1.5759285 1.5704339 1.5727325 1.5702472 1.5722398 1.5746649 1.5682673 1.5699949 1.5704863 1.5724651 1.5917545 1.5906849 1.5925834 1.5921568 1.5928044 1.594476 1.5698845 1.5717074 1.574029 1.5756668 1.5704879 1.5725966 1.5696104 1.5712524 1.5734123 1.5752844 1.5702646 1.5722943 1.5910005 1.5891552 1.5924161 1.5913949 1.593484 1.5909679 1.5926997 1.5918696 1.5914106 1.5899584 1.594051 1.5919467 1.5254594 1.5261403 1.5262881 1.5255277 1.5269507 1.5271168 1.5280975 1.5279128 1.5282878 1.5283917 1.5272771 1.5271856 1.5256354 1.5263458 1.5262696 1.5255117 1.5295816 1.5294614 1.5308191 1.5309516 1.5325264 1.53431 1.5343514 1.532381 1.5319918 1.5337388 1.5341826 1.5322431 1.5290334 1.5292384 1.5305607 1.5303314 1.5307753 1.5307398 1.5292802 1.5292961 1.5255545 1.5262461 1.5262398 1.5254873 1.5270644 1.5270639 1.5280321 1.5280398 1.525691 1.5269122 1.5264094 1.5260497 1.5380845 1.5380692 1.5406954 1.5433813 1.5407131 1.5432538 1.5455217 1.5477173 1.548626 1.5458962 1.5371745 1.5397069 1.5405644 1.5377248 1.6096659 1.6115622 1.6237629 1.6169843 1.6259217 1.618955 1.6087707 1.6110639 1.6225831 1.616001 1.6253229 1.6184361 1.6114544 1.6257097 1.618856 1.6087183 1.6227352 1.6160664 1.6118071 1.6264312 1.6192902 1.6103353 1.6246057 1.6177014 1.6009349 1.5210901 1.5212186 1.5211768 1.5210396 1.5211634 1.5211403 1.5210201 1.5209954 1.5208348 1.5208514 1.5208593 1.5208426 1.5208931 1.5208721 1.520855 1.5208738 1.5208465 1.5208437 1.5208273 1.52083 1.5209547 1.5211115 1.521104 1.5209435 1.5210997 1.521085 1.5209412 1.5209318 1.5208176 1.5207941 1.5207905 1.5208112 1.5207787 1.5207691 1.5207674 1.5207758 1.5207642 1.5207665 1.5207749 1.5207726 1.5208103 1.5207883 1.5207858 1.5208056 1.5210086 1.5211602 1.5211376 1.5209805 1.5211147 1.5210879 1.5209589 1.5209351 1.5208648 1.5208392 1.5208151 1.5208381 1.520822 1.5208109 1.5207885 1.5207985 1.5207705 1.5207765 1.5207856 1.5207785 1.5208227 1.5207997 1.5207912 1.5208105 1.5208042 1.5208004 1.5207787 1.5207822 1.5207981 1.5207962 1.5207745 1.5207765 1.52076 1.5207645 1.520766 1.5207615 1.5207709 1.5207678 1.5207631 1.5207656 1.5207535 1.520756 1.5207571 1.5207547 1.5207573 1.520759 1.5207598 1.5207584 1.5207638 1.5207611 1.5207597 1.5207623 1.5207612 1.5207585 1.5207563 1.5207589 1.5207042 1.5207039 1.5207143 1.5207143 1.5207048 1.5207071 1.5207177 1.5207154 1.5207371 1.5207275 1.5207254 1.5207343 1.5207336 1.520724 1.5207236 1.520732 1.5207037 1.520707 1.5207182 1.5207147 1.5207158 1.5207479 1.5207275 1.5207697 1.520759 1.5207384 1.5207483 1.5207392 1.5207288 1.5207251 1.5207346 1.5207427 1.5207473 1.5207537 1.5207493 1.5207851 1.520778 1.5207567 1.5207634 1.5207938 1.5207901 1.5207684 1.520772 1.5207622 1.5207586 1.5207542 1.5207577 1.5207575 1.5207549 1.5207526 1.5207554 1.5207506 1.5207444 1.5207419 1.5207479 1.5207391 1.5207409 1.5207467 1.5207447 1.5207542 1.520751 1.5207488 1.5207516 1.5209738 1.5211348 1.5211269 1.5209634 1.521118 1.5210903 1.5209556 1.5209329 1.5207564 1.5207589 1.5207689 1.5207652 1.5207771 1.5207649 1.5207612 1.5207721 1.5208215 1.5207943 1.5207887 1.520813 1.5208095 1.5207845 1.5207791 1.5207999 1.5209491 1.5211089 1.5210945 1.5209331 1.5210951 1.5210953 1.5209345 1.5209407 1.520808 1.5207837 1.5207816 1.5208021 1.5207676 1.5207577 1.5207589 1.5207672 1.5207797 1.5207653 1.5207733 1.5207874 1.5208074 1.5207862 1.5207999 1.5208188 1.5207576 1.5207537 1.5207511 1.5207544 1.5207521 1.5207515 1.5207494 1.5207497 1.5207476 1.5207484 1.5207486 1.5207479 1.5207526 1.5207497 1.5207488 1.5207512 1.520772 1.5207574 1.5207575 1.5207723 1.5207512 1.5207489 1.5207489 1.5207513 1.5207522 1.5207496 1.520752 1.5207541 1.5207605 1.5207583 1.520773 1.5207751 1.5210871 1.5212361 1.5212917 1.5211546 1.5214428 1.5216774 1.5213173 1.521605 1.5209473 1.5209234 1.520996 1.5210181 1.5209077 1.520898 1.5209695 1.5209795 1.5214428 1.5211303 1.5211419 1.5214532 1.5211829 1.5211582 1.5214677 1.5214877 1.5210028 1.5211641 1.5211637 1.5210048 1.5211629 1.5211603 1.5210088 1.521015 1.5208582 1.5208332 1.5208463 1.5208677 1.5208167 1.5208066 1.5208227 1.5208312 1.5208552 1.5208355 1.5208435 1.5208627 1.5208782 1.5208566 1.520875 1.5208936 1.5208012 1.520799 1.5208161 1.5208179 1.5207988 1.5207997 1.5208167 1.520816 1.520848 1.5208288 1.5208285 1.5208481 1.5208308 1.5208289 1.5208488 1.5208507 1.5214129 1.5211001 1.521105 1.5214175 1.5209519 1.5208891 1.520889 1.5209541 1.5208925 1.5208898 1.5209574 1.5209621 1.5211201 1.5211115 1.5214238 1.5214319 1.5207512 1.5207504 1.5207486 1.5207492 1.5207485 1.5207451 1.5207435 1.5207467 1.5207402 1.5207421 1.5207453 1.5207439 1.5207482 1.5207472 1.5207461 1.5207472 1.52074 1.5207332 1.5207319 1.5207383 1.5207247 1.5207148 1.520714 1.5207232 1.5207096 1.5207119 1.5207211 1.5207191 1.5207366 1.5207293 1.5207274 1.5207344 1.5207334 1.5207186 1.5207281 1.520743 1.5207139 1.5207148 1.5207238 1.5207234 1.5207386 1.5207316 1.5207316 1.5207384 1.5207441 1.5207365 1.5207514 1.5207584 1.520749 1.5207485 1.5207499 1.5207509 1.5207467 1.5207432 1.5207437 1.5207474 1.5207638 1.5207494 1.5207531 1.5207677 1.5207569 1.5207556 1.5207701 1.5207715 1.5213716 1.5210311 1.5210427 1.5213762 1.5209004 1.5208557 1.5208653 1.5209118 1.5208802 1.5208733 1.5209217 1.5209301 1.5210642 1.5210533 1.5213801 1.5213852 1.5208093 1.5207933 1.520803 1.5208195 1.5207867 1.5207744 1.5207826 1.5207958 1.5207953 1.5207894 1.5208034 1.5208093 1.5208185 1.5208113 1.5208282 1.5208352 1.5208008 1.5208014 1.5208174 1.5208174 1.5208009 1.5207987 1.5208135 1.5208161 1.5208405 1.5208233 1.5208264 1.5208442 1.5208289 1.5208282 1.5208465 1.5208476 1.5208893 1.5208891 1.5209466 1.5209493 1.5208876 1.5208845 1.5209369 1.5209422 1.5213903 1.5210727 1.52108 1.5213955 1.5210937 1.5210867 1.5214005 1.5214061 1.5402124 1.5434006 1.5469912 1.5510096 1.5347203 1.5371444 1.5618323 1.5608852 1.5554748 1.56629 1.5738778 1.572113 1.5673195 1.5802962 1.5783826 1.5851322 1.5923459 1.5205549 1.5205658 1.5205612 1.5205029 1.5204984 1.520509 1.520507 1.5205113 1.5204981 1.5204973 1.5205054 1.5205059 1.5205064 1.5205577 1.5204996 1.5204997 1.5205004 1.5205022 1.5205067 1.5205054 1.5204985 1.5204984 1.5204993 1.5204997 1.520499 1.5205003 1.5205068 1.5205019 1.5204998 1.5204997 1.5204985 1.5204985 1.5204989 1.5204997 1.5205077 1.520508 1.5205062 1.5205073 1.5205108 1.5205079 1.5205117 1.5205133 1.5205165 1.5205166 1.5205178 1.5205163 1.5205214 1.5205235 1.5205207 1.520526 1.5205884 1.5205994 1.520597 1.5205995 1.5205883 1.5208323 1.5206865 1.5207926 1.5206911 1.5208658 1.520515 1.5205151 1.5205149 1.5205127 1.520514 1.5205133 1.5205177 1.520518 1.5205176 1.5205212 1.5205243 1.5205228 1.520515 1.5205151 1.5205128 1.5205142 1.520521 1.5205248 1.5205178 1.5205182 1.5206033 1.5205995 1.5205999 1.5205937 1.5205885 1.5205891 1.5206846 1.5206753 1.5206793 1.520871 1.5207788 1.5208393 1.5205891 1.5205943 1.5205994 1.5206042 1.5206756 1.5206857 1.5208844 1.520771 1.5205187 1.5205177 1.5205188 1.5205188 1.520521 1.5205215 1.5205242 1.5205298 1.5205886 1.5205932 1.5205972 1.5206029 1.5206701 1.5206805 1.5207679 1.5209274 1.5206359 1.5206514 1.5206404 1.5206181 1.5206177 1.5206255 1.5206256 1.5206314 1.5206315 1.5206362 1.5206359 1.5205546 1.520538 1.5205551 1.5205377 1.5205782 1.5206062 1.5205709 1.520579 1.5205705 1.5206068 1.5206308 1.5206313 1.5206356 1.5206352 1.5206251 1.5206168 1.5206175 1.5206247 1.5206129 1.5206156 1.5206232 1.5206205 1.5206266 1.5206291 1.520634 1.520632 1.5205796 1.5205725 1.5205782 1.5206057 1.5205701 1.5206069 1.5205361 1.5205523 1.5205553 1.5205372 1.5205374 1.5205426 1.5205537 1.5205561 1.5205771 1.5206046 1.5205714 1.5205754 1.5205718 1.5206026 1.5206914 1.5207029 1.5206703 1.5206798 1.5206627 1.5206642 1.520673 1.5206713 1.5206947 1.520683 1.520681 1.5206916 1.5206695 1.5206549 1.5206616 1.5206629 1.5206569 1.5206446 1.5206492 1.5206399 1.5206404 1.5206446 1.520644 1.5206561 1.5206496 1.5206489 1.5206549 1.5206371 1.5206384 1.520643 1.5206425 1.5206392 1.5206396 1.5206439 1.5206436 1.5206558 1.520649 1.5206488 1.5206551 1.5206551 1.5206483 1.5206485 1.5206555 1.5206952 1.5206837 1.5206822 1.5206928 1.5206729 1.5206633 1.5206626 1.5206715 1.5206636 1.5206627 1.5206713 1.5206726 1.5206923 1.520681 1.5206824 1.5206928 1.520704 1.5206926 1.520692 1.5207028 1.5206812 1.52067 1.5206691 1.52068 1.5206654 1.5206669 1.5206777 1.5206763 1.5207006 1.5206888 1.5206873 1.5206982 1.5206593 1.5206495 1.5206481 1.5206578 1.5206404 1.5206321 1.5206304 1.5206385 1.5206274 1.5206282 1.5206363 1.5206356 1.5206556 1.5206452 1.5206444 1.5206541 1.520645 1.5206336 1.5206422 1.5206546 1.5206306 1.5206304 1.5206385 1.5206389 1.5206579 1.5206474 1.5206479 1.5206577 1.5206622 1.5206514 1.5206648 1.5206756 1.5207037 1.5206921 1.5206914 1.5207025 1.5206801 1.5206683 1.5206682 1.5206792 1.520687 1.5206728 1.5206838 1.5206986 1.5207071 1.5206951 1.5207102 1.5207216 1.520615 1.520617 1.5206242 1.5206223 1.5206089 1.5206 1.520599 1.520607 1.5205957 1.5205968 1.5206049 1.5206039 1.5206115 1.5206125 1.5206199 1.520619 1.5205669 1.5205597 1.5205618 1.5205672 1.5205899 1.520589 1.5205363 1.5205475 1.5205478 1.5205359 1.5205355 1.520546 1.5205343 1.520543 1.5205628 1.5205526 1.5205641 1.5205865 1.5205569 1.5205854 1.5206146 1.5206148 1.5206221 1.5206222 1.5206066 1.5205976 1.5205979 1.5206063 1.5206083 1.5206003 1.5206088 1.5206173 1.5206261 1.5206169 1.5206248 1.5206351 1.520565 1.5205873 1.5205554 1.5205655 1.5205559 1.5205877 1.5205366 1.5205455 1.5205363 1.5205454 1.5205394 1.5205492 1.5205576 1.5205492 1.5205617 1.520568 1.52059 1.5205735 1.5205666 1.520598 1.5207638 1.5207521 1.5207634 1.520775 1.5207398 1.5207273 1.5207376 1.52075 1.5207573 1.5207423 1.5207551 1.5207708 1.5207811 1.5207678 1.520784 1.5207966 1.5207149 1.5207032 1.5207125 1.5207242 1.5206923 1.5206823 1.5206903 1.5207005 1.5207051 1.5206931 1.5207038 1.520717 1.5207285 1.5207153 1.5207295 1.5207426 1.5212614 1.5208914 1.5209112 1.5212851 1.5207771 1.5207476 1.5207592 1.5207921 1.5207863 1.5207718 1.5208074 1.5208232 1.5209495 1.5209304 1.5213045 1.521321 1.5208433 1.5208297 1.5208716 1.5208861 1.520815 1.5208 1.5208392 1.520855 1.5213352 1.5209679 1.5209845 1.521347 1.521016 1.5210003 1.5213563 1.5213642 1.5206708 1.520665 1.520673 1.5206798 1.5206561 1.520647 1.5206522 1.5206612 1.5206624 1.5206541 1.5206633 1.5206722 1.5206822 1.5206726 1.5206821 1.5206928 1.5206217 1.520614 1.5206153 1.5206192 1.5206373 1.5206419 1.5206053 1.5205946 1.5206015 1.5205988 1.5206165 1.5206023 1.5206082 1.5206109 1.5206234 1.5206436 1.5206168 1.52063 1.5206238 1.5206515 1.5207488 1.520726 1.5207358 1.5207619 1.5207157 1.5207057 1.5207243 1.5207358 1.521158 1.5208166 1.5208351 1.5211886 1.5212158 1.5208538 1.5208719 1.5212394 1.520694 1.5206903 1.520682 1.5206961 1.5206748 1.5207129 1.520682 1.5206698 1.5206719 1.5206866 1.521208 1.5207853 1.5208069 1.5210964 1.5207745 1.5207991 1.5208033 1.5210466 1.5212322 1.5211182 1.5226803 1.5226841 1.5226411 1.5226942 1.5226996 1.5226497 1.5227186 1.5227178 1.522691 1.5226896 1.5227222 1.5227229 1.5226956 1.5226943 1.5226069 1.5225537 1.5225274 1.5226068 1.5225466 1.5226875 1.5226896 1.5226651 1.5226616 1.522662 1.5225467 1.5225039 1.5226099 1.5225947 1.5227167 1.5227183 1.5226779 1.522729 1.5227313 1.5226828 1.5227559 1.5227275 1.5227261 1.5227561 1.5227528 1.5227241 1.5227248 1.522754 1.5227143 1.5227128 1.5227216 1.522729 1.5226803 1.5226738 1.5227239 1.5227538 1.522754 1.5227252 1.522748 1.5227199 1.5227156 1.5227466 1.5227321 1.5227312 1.5227305 1.5227292 1.5226941 1.5226948 1.5227067 1.5227085 1.5227361 1.5227344 1.5227343 1.5227333 1.522698 1.5226999 1.5227105 1.5227129 1.5225478 1.5225227 1.5226644 1.52266 1.5225993 1.5225375 1.5225208 1.5226477 1.5227034 1.5227025 1.5226999 1.5226986 1.5226642 1.5226792 1.5226834 1.5226671 1.5226669 1.5225731 1.5226972 1.5227008 1.5227284 1.5227301 1.5227321 1.5227342 1.5227635 1.5227626 1.5227591 1.5227563 1.5227228 1.5227254 1.5227316 1.5227384 1.5227663 1.5227307 1.5227298 1.5227402 1.5227421 1.522766 1.5227672 1.5227669 1.5227688 1.5227677 1.5227688 1.5227679 1.5227328 1.5227325 1.5227439 1.522744 1.5227636 1.5227298 1.5227291 1.5227397 1.5227412 1.5227668 1.5227653 1.5227679 1.5227662 1.5227639 1.5227673 1.522767 1.5227644 1.522765 1.5227558 1.5227615 1.5225665 1.5226411 1.5226663 1.5226679 1.5226972 1.5226994 1.5227011 1.5226998 1.5227355 1.5227323 1.5227369 1.5227359 1.5227323 1.5227327 1.5227194 1.5227289 1.5226056 1.5226475 1.522662 1.5226658 1.5226455 1.5226402 1.5226545 1.5226348 1.5226334 1.5226542 1.5226375 1.5226367 1.5226622 1.5226465 1.5226447 1.5226613 1.5226616 1.5226624 1.5226664 1.5226662 1.5226768 1.5226772 1.5226483 1.5226437 1.5226497 1.5226598 1.5226726 1.5226636 1.52266 1.5226589 1.5226378 1.5226449 1.5226374 1.5226358 1.5226552 1.5226179 1.5225904 1.5226468 1.5226502 1.522612 1.5226128 1.5226537 1.5225349 1.522569 1.5225359 1.5225738 1.5225413 1.522561 1.5225414 1.5225798 1.5225528 1.5226186 1.5225753 1.5226148 1.5224992 1.5224236 1.5225146 1.5225847 1.5224025 1.5223848 1.522471 1.5224802 1.5224997 1.5225302 1.5225034 1.5225193 1.5226851 1.52265 1.5226273 1.5226705 1.5226887 1.522689 1.5226536 1.5226536 1.5225804 1.5226144 1.5226172 1.5225843 1.5225677 1.5225923 1.5226138 1.5225818 1.5226536 1.5226927 1.5226597 1.5226917 1.5226852 1.5226909 1.522652 1.5226579 1.5225799 1.5226164 1.5225842 1.5226236 1.5226259 1.5225877 1.5225809 1.522618 1.5225698 1.5226061 1.5225634 1.522604 1.5226072 1.5225671 1.5225988 1.5225453 1.5225144 1.5225192 1.5225234 1.5225421 1.5225108 1.5225209 1.5225099 1.5225404 1.5205179 1.520536 1.5205365 1.5205178 1.5205421 1.5205221 1.5205206 1.5205387 1.5205581 1.5205619 1.5205807 1.5205765 1.5205549 1.5205741 1.520573 1.5205552 1.5206149 1.5206217 1.5206434 1.520635 1.5205781 1.5205985 1.5205933 1.5205749 1.5208113 1.5207629 1.5207726 1.5207951 1.5207258 1.5207226 1.5207339 1.5207377 1.5207282 1.5207338 1.5207462 1.5207395 1.5207611 1.520756 1.5207878 1.5207954 1.5207083 1.5207121 1.5207184 1.5207142 1.5207007 1.5206945 1.5206925 1.5206977 1.5206874 1.5206925 1.5206941 1.5206882 1.5207025 1.5207085 1.5207111 1.5207042 1.5206861 1.5206906 1.520685 1.5206913 1.5207073 1.5207007 1.5207016 1.5207078 1.5207013 1.5207012 1.520707 1.5207072 1.5206853 1.5206903 1.5206905 1.5206846 1.5207205 1.5207318 1.520733 1.5207205 1.5207545 1.5207872 1.5207912 1.5207557 1.5207976 1.5207955 1.5207587 1.5207594 1.5207335 1.5207209 1.5207217 1.5207338 1.520842 1.5208497 1.5208442 1.5208367 1.5208595 1.5208678 1.5208615 1.5208527 1.5207471 1.5207551 1.5207494 1.5207518 1.5207798 1.5207825 1.5207885 1.5207855 1.520766 1.5207713 1.5207693 1.5207634 1.5207649 1.5207611 1.520767 1.5207705 1.5208757 1.5208388 1.5208346 1.5208676 1.5208022 1.5208138 1.5208107 1.5207985 1.5208175 1.520815 1.520849 1.5208498 1.5207797 1.5207834 1.5207941 1.5207911 1.520873 1.5208802 1.5208924 1.5208855 1.5209135 1.5209461 1.5209425 1.5209065 1.5210277 1.521057 1.5206977 1.5207155 1.520702 1.5206845 1.5208061 1.5208183 1.520831 1.5208274 1.5208164 1.5207317 1.5207549 1.5207426 1.5207433 1.5207529 1.5207285 1.5207387 1.5207374 1.5207274 1.5207167 1.5206208 1.5206209 1.5206375 1.5206375 1.5206459 1.5206281 1.5206239 1.5206405 1.5206558 1.5206616 1.5206727 1.5206721 1.5206821 1.5206836 1.5206665 1.5206768 1.5206777 1.5206666 1.520653 1.5206747 1.5206637 1.5206638 1.5206741 1.5206644 1.5206743 1.5206754 1.5206645 1.520653 1.5209467 1.5209642 1.5211872 1.5211554 1.521172 1.5212503 1.521001 1.5209555 1.5213137 1.5214113 1.5216113 1.5214916 1.5212944 1.5214693 1.5215383 1.5213351 1.5218597 1.5220155 1.5221616 1.5217145 1.5216886 1.5219586 1.5220902 1.5217736 1.5224539 1.5222963 1.5227039 1.5228892 1.5225372 1.5229845 1.5228228 1.5223629 1.5217341 1.5217724 1.5220619 1.5220129 1.5228219 1.5223619 1.5224242 1.5228592 1.5231482 1.5226269 1.5232341 1.5227013 1.5218835 1.5221972 1.5222591 1.5219086 1.5209518 1.5209609 1.5211833 1.5211665 1.5213094 1.5213313 1.521517 1.521488 1.5216252 1.5216056 1.5213869 1.5214017 1.5209773 1.5212147 1.5212258 1.5209799 1.5213277 1.5211053 1.5211055 1.521337 1.5214731 1.5214902 1.5216817 1.5216552 1.5214145 1.5214635 1.5215988 1.5216582 1.5212947 1.5210573 1.5210359 1.5212558 1.521238 1.5210179 1.5210195 1.5212452 1.5213813 1.5213935 1.5215786 1.5215602 1.521901 1.5218291 1.5221112 1.5221967 1.5225654 1.5224644 1.5228881 1.5230048 1.522511 1.5224352 1.5229421 1.5228532 1.5217837 1.5220579 1.5221188 1.5218091 1.5218832 1.5221637 1.5222409 1.5219202 1.5225147 1.523095 1.522937 1.5226093 1.5206319 1.5206318 1.5206187 1.5206462 1.5206088 1.5206009 1.5206183 1.5206056 1.5208037 1.5208053 1.5208923 1.520842 1.5208033 1.5209304 1.5209588 1.5208064 1.5205314 1.5205432 1.5205466 1.5205327 1.5205249 1.5205376 1.5205383 1.520525 1.5205517 1.5205524 1.520567 1.5205664 1.5205564 1.5205614 1.5205767 1.5205708 1.5212033 1.5211304 1.5211273 1.5212164 1.5212423 1.5211397 1.5211463 1.5212524 1.5209125 1.5208895 1.5209005 1.5209242 1.5208689 1.5208772 1.5208965 1.5208848 1.5207666 1.5207655 1.5207721 1.5207732 1.520753 1.5207463 1.5207479 1.520754 1.520766 1.520772 1.520781 1.5207727 1.5207834 1.5207901 1.5208026 1.5207942 1.5208189 1.5208043 1.520816 1.5208318 1.5207867 1.5207876 1.5207989 1.5207984 1.520857 1.5208381 1.5208688 1.5208921 1.5208572 1.5208218 1.5208213 1.5208525 1.5209153 1.5209304 1.5209593 1.5209423 1.5209536 1.5209874 1.5210258 1.5209863 1.5212037 1.5212394 1.5213917 1.5213408 1.5212817 1.5211615 1.5211769 1.5212993 1.5206982 1.5206984 1.520704 1.5207041 1.520683 1.5206874 1.5206816 1.5206883 1.5206813 1.5206865 1.5206869 1.520681 1.5207047 1.5206982 1.5206992 1.5207053 1.5207022 1.5207041 1.5207101 1.5207085 1.5207214 1.5207145 1.5207203 1.520727 1.5207026 1.5206967 1.5207074 1.5207003 1.5206849 1.5206905 1.5206923 1.520686 1.5207936 1.5207598 1.5207584 1.5207924 1.5207241 1.5207225 1.5207339 1.5207355 1.5207423 1.5207357 1.5207472 1.5207547 1.5207705 1.5208036 1.5208172 1.5207794 1.5207177 1.5207181 1.5207292 1.5207284 1.5207506 1.5207521 1.5207845 1.520782 1.5207576 1.520754 1.5207866 1.520792 1.5207186 1.5207296 1.5207323 1.5207194 1.5210389 1.5208043 1.5208188 1.521073 1.5206924 1.5206734 1.5206898 1.5207097 1.5207293 1.5207102 1.5207223 1.5207229 1.5207352 1.5207339 1.5207418 1.5207439 1.5207584 1.5207536 1.5208357 1.5208457 1.5208512 1.5208689 1.5208575 1.5211146 1.5211191 1.5211743 1.5211403 1.5211077 1.5206482 1.5206479 1.5206593 1.5206592 1.5206696 1.5206698 1.5206596 1.5206701 1.5206714 1.5206598 1.5206305 1.5206123 1.520613 1.5206305 1.520616 1.5206336 1.5206441 1.5206243 1.5206505 1.5206621 1.5206852 1.5206737 1.520675 1.5206876 1.5206621 1.5206733 1.5206743 1.5206623 1.5210135 1.5210579 1.5212763 1.5212096 1.521214 1.5212552 1.521026 1.5210056 1.5213512 1.5214053 1.5215927 1.5215237 1.5213426 1.5215107 1.5216242 1.5214228 1.5218265 1.5220329 1.5221117 1.5217402 1.5217222 1.5219837 1.5221726 1.521858 1.5225345 1.5223114 1.5229671 1.522707 1.5224678 1.5223711 1.5227777 1.5228916 1.5218951 1.5221721 1.522327 1.5220085 1.5222043 1.5224908 1.5229157 1.5225794 1.5232998 1.5228472 1.5237524 1.5232736 1.522518 1.5226927 1.5231302 1.5229312 1.5211266 1.5211933 1.5214161 1.5213341 1.5214752 1.5215657 1.5217524 1.5216517 1.5217671 1.5219514 1.522306 1.5220882 1.5213967 1.5216645 1.5219145 1.5216083 1.52247 1.5224431 1.5228776 1.5229081 1.5217717 1.5220617 1.5221278 1.5218026 1.5217804 1.5220709 1.5220501 1.521741 1.5224243 1.5228596 1.5229927 1.5225011 1.5213131 1.5213373 1.5214931 1.5215237 1.5211763 1.5209524 1.5209447 1.5211583 1.5211821 1.5209557 1.5209664 1.5211976 1.5213306 1.5213501 1.5215409 1.5215161 1.5215538 1.5213262 1.5213455 1.5215102 1.5211822 1.5209576 1.5209528 1.5211683 1.5211944 1.5209692 1.5209924 1.5212239 1.521343 1.5213777 1.5215701 1.5215288 1.5217951 1.5217409 1.5220244 1.5220905 1.5224595 1.5229015 1.5228502 1.5223797 1.5224403 1.5225403 1.52299 1.5228762 1.5217614 1.5220471 1.5221323 1.5218099 1.5226705 1.5226674 1.5226715 1.5226738 1.5226252 1.5226226 1.5225791 1.522582 1.5226228 1.5225715 1.52258 1.5226181 1.5225021 1.5225731 1.5225301 1.522449 1.522486 1.5223982 1.5225873 1.5225803 1.5225427 1.5225349 1.5226341 1.5226399 1.5224944 1.5224938 1.5224975 1.5224982 1.5225155 1.5225049 1.522504 1.5225136 1.5224941 1.5224965 1.5225065 1.522505 1.5224853 1.5224822 1.5224863 1.5224892 1.5225031 1.5225033 1.5225129 1.5225134 1.5224965 1.5224957 1.5224917 1.5224928 1.5224953 1.5225002 1.5224987 1.5224961 1.5225048 1.522507 1.522517 1.5225139 1.5225311 1.5225268 1.5225455 1.5225514 1.5225263 1.5225279 1.5225488 1.5225457 1.5225806 1.5226203 1.5225725 1.5226287 1.5225792 1.5226293 1.5226235 1.5225737 1.5225272 1.5225296 1.5225498 1.5225468 1.5226307 1.5225753 1.5225791 1.5226225 1.5226254 1.5225726 1.522581 1.5226371 1.5225207 1.5225409 1.522545 1.5225206 1.5223147 1.5222541 1.5222592 1.5223238 1.5222519 1.5222536 1.5223058 1.5223087 1.5223922 1.5223945 1.5224048 1.522401 1.5223996 1.5224079 1.5224224 1.5224116 1.5224606 1.5224591 1.5224552 1.5224652 1.5224658 1.5224565 1.5224552 1.5224658 1.5224447 1.5224483 1.5224499 1.5224464 1.522476 1.5224656 1.5224726 1.5224834 1.5224983 1.5224898 1.5225095 1.5225197 1.5225021 1.52248 1.522479 1.5224979 1.5225859 1.5225255 1.5225323 1.5225712 1.5225381 1.5225504 1.5226011 1.5225853 1.5222845 1.5222681 1.5223569 1.5223368 1.5224201 1.522437 1.5224578 1.522438 1.5224876 1.5224641 1.5225073 1.5225366 1.5223085 1.5223846 1.5224307 1.5223506 1.5222473 1.5223131 1.522313 1.5222474 1.5224003 1.522392 1.522392 1.5224005 1.5223888 1.5223984 1.5223996 1.5223903 1.5222398 1.522244 1.5223121 1.5223116 1.5223886 1.5223963 1.5224001 1.5223887 1.5223997 1.5223989 1.5222752 1.5222997 1.5222389 1.5222377 1.5223149 1.522313 1.5222583 1.5223062 1.5223929 1.5224007 1.522444 1.5224481 1.5224472 1.5224459 1.5224351 1.5224382 1.5224388 1.5224358 1.5224588 1.5224567 1.5224504 1.5224447 1.5224456 1.522452 1.5224544 1.5224591 1.5224352 1.5224365 1.5224388 1.5224375 1.5224365 1.522434 1.5224367 1.5224394 1.5224429 1.5224459 1.5224507 1.522448 1.5224442 1.5224484 1.5224501 1.5224457 1.5224793 1.5224816 1.522484 1.5224819 1.522486 1.5224865 1.5224873 1.5224868 1.5224835 1.5224812 1.5224824 1.5224846 1.5224865 1.5224844 1.522484 1.5224864 1.5224974 1.5224851 1.5224852 1.5224859 1.5224858 1.5224976 1.5224934 1.5224942 1.5224806 1.5224814 1.5224836 1.5224829 1.5224909 1.5224921 1.5224947 1.5224953 1.5224953 1.5224951 1.522493 1.5224935 1.5224835 1.5224844 1.5224836 1.5224827 1.5224761 1.5224768 1.5224696 1.5224688 1.5224839 1.5224858 1.5224844 1.5224813 1.522485 1.5224856 1.5224845 1.5224841 1.5224705 1.522478 1.5224788 1.5224714 1.5224758 1.5224681 1.5224706 1.5224778 1.5224818 1.5224827 1.5224842 1.522485 1.5228647 1.5228328 1.5228522 1.5228187 1.5230556 1.5230741 1.5232402 1.5234474 1.5234405 1.5232176 1.5232743 1.5233634 1.5236023 1.5234906 1.5228711 1.5228342 1.5230856 1.5228725 1.5231542 1.5229082 1.523428 1.5232078 1.5232465 1.5234548 1.5232407 1.5232742 1.5234912 1.5234482 1.5228547 1.5228215 1.5228695 1.5228367 1.5230855 1.5230606 1.5228375 1.5228081 1.5230349 1.5228273 1.5230657 1.5228531 1.52376 1.5237059 1.524022 1.5240888 1.5237137 1.5236804 1.5240317 1.5239905 1.524494 1.5244112 1.5248846 1.5249849 1.5243737 1.5244227 1.5248977 1.5248392 1.5240511 1.523704 1.5236958 1.5240091 1.5237588 1.5240873 1.5242923 1.5238966 1.5253314 1.5250318 1.5244913 1.5247377 1.5244449 1.5243945 1.524864 1.5249216 1.5229485 1.5231574 1.5232679 1.523043 1.5226273 1.5228663 1.522668 1.5225601 1.5225374 1.5227685 1.5226898 1.522913 1.5227145 1.52277 1.5227371 1.522978 1.5230677 1.523145 1.5233531 1.5232615 1.5231724 1.5232608 1.523376 1.5234854 1.5228027 1.5230647 1.5228331 1.5227933 1.5227626 1.5229958 1.5227855 1.5230299 1.522814 1.5228471 1.5228112 1.5230636 1.5231959 1.5232355 1.5234494 1.5234027 1.5237634 1.5236293 1.5239406 1.5241023 1.5245189 1.524844 1.5250229 1.5243256 1.5250701 1.5249355 1.5244042 1.5245188 1.5236595 1.5239746 1.5240714 1.5237139 1.5234174 1.5238758 1.5237368 1.5235259 1.5235036 1.5238029 1.5239597 1.5236109 1.5248873 1.5246743 1.5241739 1.524356 1.5241318 1.5246128 1.5248053 1.5242724 1.5224254 1.5224347 1.5224365 1.5224472 1.5224256 1.5224204 1.5224134 1.5224175 1.5225906 1.5225276 1.5224647 1.5224894 1.522883 1.5228359 1.5240406 1.5247634 1.5250977 1.5242612 1.5267466 1.5256222 1.5260041 1.5270712 1.5283117 1.5294763 1.5279433 1.5297409 1.5310911 1.5313802 1.5332422 1.5329323 1.5336977 1.5311973 1.5316086 1.5330554 1.5297859 1.528215 1.5280161 1.5294147 1.5283231 1.5278553 1.5292285 1.5297494 1.5308087 1.5313792 1.5332192 1.532607 1.5241819 1.5249334 1.5247993 1.5240018 1.5256681 1.5258203 1.5268673 1.526695 1.5239785 1.5249207 1.5246968 1.5241007 1.5255495 1.5265589 1.5269625 1.5258092 1.5379413 1.5406973 1.5430738 1.5400985 1.5427547 1.5371042 1.5366646 1.5393408 1.542131 1.5400811 1.5428381 1.5370799 1.5480142 1.5475899 1.5447525 1.5453025 1.5452218 1.5479306 1.5473407 1.5452174 1.5507569 1.5504438 1.5535751 1.5537581 1.5530273 1.5498634 1.5506742 1.5536865 1.5569007 1.555982 1.5593826 1.5605843 1.5569142 1.5607406 1.5610539 1.5569455 1.5621634 1.55801 1.5580378 1.5618785 1.554423 1.5510397 1.5510579 1.5542049 1.5500515 1.5531067 1.5538823 1.5506154 1.5563692 1.5601139 1.5608676 1.5569289 1.5377855 1.5368808 1.5395865 1.5423616 1.5405703 1.5432389 1.5456424 1.5478162 1.547954 1.5449784 1.5476371 1.5469074 1.5416709 1.5441709 1.5427983 1.5450771 1.536397 1.5390407 1.5402526 1.5372406 1.5732364 1.5750051 1.5927538 1.591446 1.5914924 1.5893254 1.5910225 1.5933957 1.575479 1.5700805 1.5723167 1.5706563 1.572587 1.5749777 1.5689829 1.5705837 1.57008 1.5720418 1.5927792 1.5914061 1.5926789 1.5919797 1.5941932 1.5933881 1.5720298 1.5738362 1.5761502 1.5767851 1.5714573 1.573637 1.5694873 1.5716016 1.5706596 1.5723197 1.574499 1.5741337 1.5928553 1.5908184 1.591443 1.5905227 1.5925414 1.5926754 1.5944701 1.5935536 1.5944968 1.5927329 1.5956949 1.5945706 1.5276104 1.5289715 1.5294738 1.5279368 1.5285038 1.5299657 1.529538 1.527984 1.5311759 1.5316329 1.5330414 1.5335123 1.5305378 1.5331145 1.5323313 1.5310857 1.5256226 1.5260279 1.5266566 1.5271111 1.5250215 1.5241808 1.5239434 1.5246691 1.524508 1.5237438 1.5240009 1.5247325 1.5253434 1.5255993 1.5266227 1.5263331 1.5268094 1.5256845 1.5256659 1.5267318 1.524711 1.5239173 1.5239834 1.5247199 1.5253144 1.5244216 1.5245571 1.5253881 1.5262786 1.5263638 1.527504 1.5274077 1.5280275 1.5279478 1.5293556 1.5294298 1.5310413 1.5309758 1.5328264 1.5328682 1.5324099 1.5321193 1.5343809 1.5340864 1.5287153 1.5302181 1.5304853 1.5288197 1.536616 1.5365513 1.5392368 1.5420527 1.5392866 1.5420174 1.544463 1.5468089 1.5475632 1.544698 1.549329 1.5439124 1.5464943 1.5446178 1.5469172 1.549151 1.5382487 1.5411114 1.5420042 1.5387786 1.5376034 1.5368945 1.539608 1.5423711 1.5403761 1.5429656 1.5452606 1.5449412 1.547381 1.5474872 1.5426189 1.5451363 1.5412708 1.5439318 1.5464447 1.5475214 1.5358604 1.5384605 1.5398031 1.5368414 1.5606263 1.557434 1.5564979 1.5613274 1.5528916 1.5495214 1.5504479 1.553613 1.5521975 1.5553466 1.5551032 1.5517935 1.5586949 1.562527 1.5621426 1.5581735 1.5501797 1.5501031 1.5529758 1.553243 1.5599602 1.5560231 1.556515 1.5602678 1.5561966 1.55733 1.5610405 1.5600364 1.5492959 1.5524232 1.5536824 1.5502686 1.5741151 1.5748653 1.5922802 1.5913721 1.5923764 1.5904446 1.593522 1.5922538 1.5748508 1.5691702 1.571566 1.5705465 1.5725938 1.5750685 1.5696105 1.5713441 1.5696381 1.5717667 1.5925943 1.5915168 1.5915677 1.5912891 1.5936376 1.5937024 1.5701612 1.5721516 1.5746016 1.5762496 1.5707719 1.5730308 1.5723525 1.5743452 1.5722761 1.5738168 1.5759262 1.5768067 1.5949985 1.5925417 1.5949643 1.5936272 1.5956328 1.5941502 1.5936791 1.5930103 1.5923001 1.5910292 1.595282 1.5930922 1.5241122 1.524872 1.5248886 1.5240615 1.5240237 1.5250476 1.524769 1.5241951 1.5259694 1.5256531 1.5270515 1.5266981 1.5257687 1.5257852 1.5268434 1.526822 1.5280465 1.5280718 1.5294881 1.529452 1.5310653 1.5328879 1.5331596 1.5311142 1.5310997 1.5317553 1.5336677 1.5329608 1.5279118 1.5293147 1.529904 1.5283066 1.5283295 1.5297698 1.5295745 1.5280116 1.5297765 1.529795 1.5282009 1.5281794 1.5314553 1.5314686 1.5333676 1.533365 1.5312197 1.5314156 1.5332806 1.5330908 1.5247794 1.5248722 1.524044 1.5239666 1.5240178 1.52476 1.5249897 1.5241523 1.5258969 1.5256378 1.5266784 1.5269622 1.5257729 1.5268359 1.5268188 1.5256638 1.5368688 1.5408412 1.5435564 1.539595 1.5423159 1.5377466 1.5402642 1.5429106 1.5400206 1.5424609 1.536994 1.5372182 1.5453958 1.5446718 1.5468503 1.5477742 1.5449099 1.5473856 1.548674 1.5459805 1.5372475 1.5371664 1.5399119 1.5428335 1.5400022 1.5427988 1.5452957 1.5455624 1.5481291 1.547683 1.5428734 1.5453009 1.5424123 1.545068 1.5475834 1.5476162 1.5368958 1.5396073 1.5401419 1.5371386 1.5504555 1.5536013 1.5536284 1.5502964 1.5538845 1.550448 1.5510426 1.5542358 1.5612995 1.5576518 1.5571232 1.5615583 1.5569488 1.5607835 1.5607458 1.5567422 1.5502339 1.5533666 1.5548257 1.5514088 1.5526419 1.549422 1.5505347 1.553574 1.5568267 1.5556639 1.5591495 1.5605566 1.5567128 1.5605612 1.5621805 1.558033 1.5701108 1.572379 1.5750413 1.5750396 1.5703309 1.5721866 1.575999 1.5765195 1.5709479 1.5732613 1.5709493 1.5729622 1.5938039 1.5932961 1.5940685 1.5927374 1.5948398 1.5956462 1.5930322 1.5914343 1.5921147 1.5915194 1.5938213 1.5933585 1.5701279 1.5721252 1.5688186 1.5705032 1.5745977 1.5727251 1.5923465 1.5911209 1.5910111 1.5889809 1.5908101 1.5931674 1.5753908 1.5768344 1.5953368 1.5936644 1.592785 1.5920421 1.5943304 1.5956054 1.5699633 1.572192 1.5720599 1.5739151 1.5240449 1.5238655 1.5245663 1.5247745 1.5244559 1.5237111 1.5240688 1.5247954 1.5267768 1.5263408 1.5252717 1.525655 1.5256382 1.5253963 1.5263818 1.5266534 1.5278353 1.5275265 1.528852 1.5291926 1.5323128 1.5327043 1.530751 1.5303795 1.530501 1.5312724 1.5331143 1.5322729 1.5274829 1.5288095 1.529498 1.5279725 1.5278183 1.5282828 1.5296972 1.5291693 1.5307269 1.5324992 1.5333675 1.5313224 1.5318569 1.5330693 1.5350061 1.5337436 1.5286033 1.5300375 1.5311721 1.5295255 1.5242828 1.5240058 1.5247131 1.5250251 1.525551 1.5259056 1.5269462 1.5265398 1.5281027 1.527246 1.5260989 1.5268886 1.5244053 1.5251393 1.5258644 1.5250079 1.5366336 1.538875 1.5415078 1.5392935 1.5417576 1.5360108 1.5357387 1.5383075 1.5411015 1.5397517 1.5425658 1.5368061 1.5450808 1.5437476 1.5462537 1.5474639 1.5439843 1.546162 1.5467305 1.544006 1.549098 1.5522215 1.5536219 1.5502102 1.5519157 1.5487195 1.5494825 1.552509 1.5557519 1.5549212 1.5583875 1.559467 1.5555623 1.5593968 1.5609634 1.556833 1.5512625 1.5543369 1.5559304 1.5526997 1.5524755 1.5491339 1.5517228 1.5548869 1.5597251 1.5582717 1.555641 1.562143 1.5576078 1.5613677 1.562804 1.5589223 1.5361611 1.5402247 1.5430144 1.538767 1.5413907 1.5372226 1.5377604 1.5405349 1.5432121 1.54264 1.5451215 1.5394504 1.5456997 1.548097 1.5497597 1.5472783 1.5437833 1.546094 1.548467 1.5456297 1.5884862 1.5904623 1.5723598 1.5739544 1.5910719 1.5903293 1.5901492 1.5925618 1.5741523 1.5684025 1.5708383 1.5704417 1.5724875 1.5749637 1.5677538 1.5695434 1.5686729 1.5708333 1.5924525 1.5913898 1.5906667 1.5905282 1.5935335 1.5930179 1.5690999 1.5711312 1.5736194 1.5770278 1.5717183 1.57388 1.5710126 1.5730052 1.575484 1.5769002 1.5730091 1.5743809 1.5921254 1.5942001 1.5963461 1.5935131 1.5934521 1.5949617 1.5947388 1.5938496 1.5910728 1.589929 1.5960426 1.5920863 1.6138153 1.6130498 1.6284263 1.6214148 1.6272328 1.6205366 1.6109797 1.6105112 1.6250537 1.6180477 1.6249263 1.6183805 1.6093068 1.6114345 1.6230482 1.6166006 1.6256109 1.6188685 1.6114951 1.6119274 1.6264896 1.619464 1.6257768 1.6189706 1.610637 1.6113953 1.624664 1.618046 1.6258873 1.6189124 1.6115817 1.6111229 1.6259495 1.6187035 1.6260545 1.6190971 1.6111688 1.6132626 1.6256101 1.6186832 1.6280785 1.6209055 1.6131566 1.614125 1.6287287 1.6217686 1.627173 1.6206478 1.6115748 1.6116154 1.6264331 1.6192085 1.6259294 1.619113 1.6132742 1.6135287 1.6279569 1.6209169 1.6284712 1.6212028 1.6122737 1.6142553 1.627091 1.6199059 1.6287424 1.6218543 1.6092652 1.6112622 1.6233638 1.6166958 1.6256705 1.6187715 1.6103584 1.6114669 1.626046 1.6190109 1.62532 1.6179683 1.6085568 1.6102193 1.6228162 1.6159872 1.624816 1.6177368 1.6100319 1.6142286 1.6246108 1.6175671 1.6290299 1.6218851 1.6141794 1.6280206 1.6216278 1.6125622 1.627185 1.6201743 1.525529 1.526262 1.5266344 1.5257871 1.5282829 1.5271374 1.5275586 1.5286485 1.527662 1.5273248 1.5284286 1.5287837 1.5255379 1.52631 1.5266231 1.5257628 1.5299324 1.5314303 1.5311225 1.5295212 1.531795 1.531407 1.5297293 1.5300977 1.5335897 1.533189 1.5356379 1.5352281 1.5328252 1.5331598 1.5351421 1.5347725 1.5303067 1.5300114 1.5315206 1.5318486 1.5354733 1.5358763 1.5336291 1.5332649 1.5335209 1.5340561 1.5361403 1.5355425 1.530077 1.5315899 1.5320599 1.5303512 1.5259979 1.5267979 1.5266001 1.5257608 1.5275181 1.5277438 1.5286017 1.5288572 1.5258812 1.5260373 1.5268373 1.5266561 1.527578 1.5277856 1.5289028 1.5286627 1.5438739 1.5434435 1.547097 1.5507991 1.5517845 1.5476148 1.5505231 1.5426708 1.546384 1.5434251 1.5471381 1.5508764 1.5436138 1.5441204 1.5478069 1.5515206 1.5515028 1.5473447 1.5447752 1.5484965 1.5436798 1.5473951 1.5511551 1.5522242 1.5598808 1.5551474 1.556174 1.5603793 1.560152 1.5554671 1.5555256 1.5598451 1.5645157 1.564737 1.5696742 1.5695417 1.5645147 1.5649063 1.5697669 1.569502 1.5558236 1.5547399 1.5589533 1.5601373 1.5648001 1.5635007 1.5684134 1.5698126 1.5646132 1.5639866 1.5690381 1.5695851 1.5545349 1.558843 1.5595136 1.5548264 1.5843415 1.586338 1.5995359 1.5972676 1.6025775 1.6051084 1.5860037 1.5745487 1.579908 1.5750701 1.580132 1.5853693 1.5738772 1.578646 1.5753268 1.5804134 1.5984309 1.5993541 1.6040115 1.6052159 1.5751354 1.5800174 1.5851381 1.5862022 1.5750364 1.5802213 1.5751938 1.5798968 1.5848683 1.585984 1.5749766 1.5800769 1.5975436 1.5991111 1.6047231 1.6027447 1.5994239 1.5980234 1.6051208 1.6034287 1.5256971 1.5264322 1.5265759 1.5257561 1.5273071 1.5274706 1.5285267 1.5283419 1.5288037 1.5289066 1.5276906 1.527605 1.5259004 1.5266741 1.5266062 1.52578 1.5302191 1.5300932 1.5315958 1.5317467 1.5335144 1.5355336 1.5355253 1.5333317 1.5328092 1.534733 1.5352297 1.5330781 1.5295612 1.5297687 1.5312209 1.5309831 1.5315359 1.5314737 1.5298586 1.5299031 1.5258027 1.5265532 1.5265711 1.525752 1.5274688 1.5274418 1.5284919 1.5285264 1.5259906 1.5273403 1.5267778 1.5263903 1.5436262 1.5436395 1.547293 1.5509736 1.5515013 1.5473525 1.5205897 1.5205851 1.5206137 1.5205779 1.5206031 1.5205673 1.5205659 1.5205801 1.5205828 1.520532 1.5205303 1.5205243 1.5205283 1.5205523 1.5205483 1.5205275 1.5205114 1.5205113 1.5205265 1.5205165 1.5205321 1.5205296 1.5205145 1.5205277 1.5205271 1.520523 1.5205231 1.5205467 1.5205457 1.5205104 1.5205104 1.5205256 1.5205256 1.520511 1.5205257 1.5205264 1.5205111 1.5205802 1.5205774 1.5205712 1.5205043 1.5205056 1.5205044 1.5205055 1.5205231 1.5205231 1.520518 1.5205181 1.5205061 1.5205073 1.5205107 1.5205128 1.5205251 1.5205196 1.5205259 1.5205287 1.5205034 1.5205045 1.5205033 1.5205044 1.5205221 1.5205221 1.520517 1.520517 1.5205044 1.5205065 1.5205037 1.5205048 1.5205225 1.5205223 1.5205172 1.5205183 1.5205059 1.5205042 1.5205042 1.5205033 1.5205034 1.5205036 1.5205042 1.520519 1.5205194 1.5205178 1.5205188 1.5205223 1.5205192 1.5205321 1.5205322 1.5205455 1.5205454 1.5205277 1.5205283 1.52052 1.5205199 1.5205296 1.5205295 1.5205209 1.520521 1.5205301 1.52053 1.52054 1.5205378 1.5205307 1.5205469 1.5205539 1.5205368 1.5205232 1.5205233 1.5205321 1.520532 1.5205284 1.5205368 1.52054 1.5205298 1.5206053 1.5205936 1.5206053 1.520617 1.5206048 1.5206103 1.520604 1.5206001 1.5206018 1.5206069 1.5205893 1.5205933 1.5205967 1.5205915 1.5209093 1.5206949 1.5207896 1.5208634 1.5207078 1.520944 1.5206764 1.5206821 1.5206881 1.5206776 1.5208487 1.5208531 1.5209617 1.5209027 1.520517 1.5205177 1.5205171 1.520518 1.5205282 1.5205284 1.5205246 1.5205249 1.5205153 1.5205162 1.5205165 1.5205171 1.5205278 1.5205277 1.520524 1.5205243 1.5205193 1.52052 1.5205197 1.5205203 1.5205303 1.5205304 1.5205266 1.5205268 1.5205226 1.5205233 1.5205267 1.5205281 1.5205347 1.5205375 1.5205296 1.5205352 1.5205165 1.5205165 1.520515 1.5205162 1.5205221 1.5205269 1.5205189 1.5205195 1.5206015 1.5206022 1.5205967 1.5205971 1.5206057 1.5206027 1.5205983 1.5206041 1.5205921 1.5205924 1.5205869 1.5205864 1.5205957 1.520593 1.5205887 1.5205943 1.5206808 1.5206824 1.5206702 1.52067 1.5206753 1.5206835 1.5206685 1.5206823 1.520905 1.5209237 1.5207768 1.5207835 1.5209505 1.5208291 1.5207862 1.5209836 1.5205874 1.520592 1.5205963 1.5206021 1.5206705 1.5206819 1.5209225 1.5207723 1.5205246 1.520524 1.5205241 1.5205244 1.520526 1.5205267 1.5205293 1.5205365 1.5205895 1.5205937 1.5205976 1.5206045 1.5206682 1.5206801 1.5207723 1.5209818 1.5205605 1.5205433 1.5205595 1.5205434 1.5205921 1.520576 1.5205929 1.520577 1.5205938 1.5205803 1.520592 1.5205762 1.5205423 1.5205583 1.520562 1.5205431 1.5205431 1.5205514 1.5205593 1.5205722 1.5205911 1.520576 1.5205903 1.5205842 1.5205774 1.5205646 1.5205664 1.5205781 1.5205411 1.5205531 1.5205517 1.5205396 1.5205388 1.5205498 1.5205389 1.5205498 1.5205738 1.520562 1.5205748 1.520562 1.5205758 1.5205633 1.5205763 1.5205638 1.5205404 1.5205512 1.5205403 1.5205511 1.520543 1.5205555 1.5205715 1.5205544 1.5205668 1.5205786 1.5205867 1.5205829 1.520631 1.5206197 1.5206146 1.5206272 1.5206089 1.520596 1.5206039 1.5206009 1.5206247 1.520604 1.5206111 1.5206147 1.5206327 1.5206217 1.5206403 1.5206326 1.520703 1.5207033 1.5206872 1.520675 1.5206844 1.5206696 1.5206716 1.5206978 1.5213676 1.5207968 1.5208712 1.5211494 1.5207857 1.5208654 1.5210891 1.5213804 1.522596 1.5226055 1.5225538 1.5225491 1.5225331 1.5225293 1.5226048 1.5226546 1.5226561 1.5226096 1.5226596 1.5226133 1.5226129 1.5226614 1.5225611 1.5225614 1.5225416 1.5225406 1.522666 1.5226649 1.5226708 1.522669 1.52251 1.5225009 1.52259 1.5225827 1.5224569 1.5225369 1.5226403 1.5226308 1.5226362 1.5226268 1.5225784 1.5225833 1.5224637 1.522481 1.5224068 1.5224528 1.5223814 1.5225229 1.5225284 1.5225062 1.5225009 1.5225655 1.5226351 1.5226401 1.5225953 1.5225911 1.5225764 1.5225723 1.5226431 1.5226903 1.5226908 1.5226473 1.522694 1.5226505 1.5226453 1.522692 1.5226017 1.5225966 1.5225778 1.5225821 1.5227041 1.522704 1.5227001 1.5227018 1.5226381 1.5226312 1.5226808 1.5226368 1.5226406 1.5226868 1.5226445 1.5226435 1.5226901 1.5226913 1.5225957 1.5225954 1.5225771 1.5225763 1.5225927 1.522574 1.5225664 1.5225878 1.5227021 1.5227007 1.5226972 1.5226929 1.5227162 1.5227149 1.522715 1.5227129 1.5226713 1.5226729 1.5226765 1.5226789 1.5227204 1.5227158 1.5227183 1.5227168 1.522675 1.5226785 1.5226804 1.5226802 1.5225594 1.5225522 1.5226605 1.5226576 1.5226167 1.5225101 1.5225382 1.5226255 1.5226911 1.5226889 1.5226876 1.5226862 1.5226441 1.5226503 1.5226534 1.5226487 1.5226576 1.5225808 1.522682 1.5226857 1.5227106 1.5227126 1.5227146 1.5227169 1.522746 1.5227449 1.5227408 1.5227346 1.522697 1.522704 1.5226965 1.5227094 1.522748 1.5227076 1.5227053 1.5227095 1.5227122 1.5227476 1.5227495 1.5227492 1.5227511 1.5227487 1.5227513 1.5227501 1.5227095 1.5227095 1.5227149 1.5227129 1.5227456 1.522706 1.5227051 1.5227095 1.5227105 1.5227486 1.5227481 1.5227505 1.5227481 1.5227452 1.5227494 1.5227484 1.5227454 1.5227457 1.5227353 1.5227424 1.5225686 1.5226358 1.522658 1.522662 1.5226857 1.5226877 1.5226897 1.5226925 1.5227235 1.5227204 1.522725 1.5227237 1.5227209 1.5227212 1.5227097 1.522718 1.5225332 1.5225273 1.5225098 1.522515 1.5225751 1.5225803 1.5226194 1.522614 1.5225711 1.5226097 1.5226263 1.5226206 1.522616 1.522615 1.5226218 1.5226195 1.5226508 1.5226263 1.5226217 1.5226488 1.5226503 1.5226513 1.5226544 1.522653 1.5226641 1.5226623 1.5226328 1.5226245 1.5226275 1.5226342 1.5226585 1.5226506 1.5226482 1.5226467 1.5226344 1.5226413 1.5226325 1.5226307 1.5205501 1.5205492 1.5205553 1.5205528 1.5205772 1.5205805 1.520604 1.5206002 1.5205744 1.5205973 1.5205973 1.5205733 1.5206355 1.5206452 1.5206716 1.52066 1.5206154 1.5206079 1.5208989 1.5208184 1.5208379 1.520868 1.5207634 1.5207592 1.5207813 1.520787 1.5207637 1.5207751 1.5208002 1.5207856 1.5208198 1.5208119 1.5208607 1.5208722 1.5207328 1.5207403 1.5207551 1.520746 1.5207271 1.5207159 1.5207113 1.5207209 1.520707 1.5207168 1.520718 1.5207073 1.520728 1.5207413 1.5207445 1.5207296 1.5207059 1.5207154 1.5207046 1.5207161 1.5207419 1.520727 1.5207279 1.5207422 1.5207273 1.5207275 1.5207412 1.5207409 1.5207051 1.5207151 1.5207151 1.5207045 1.5207584 1.5207812 1.5207822 1.5207578 1.5208127 1.5208631 1.5208689 1.5208141 1.5208802 1.5208789 1.5208206 1.5208209 1.5207848 1.5207594 1.5207602 1.5207844 1.5208567 1.520867 1.5208561 1.5208461 1.5208787 1.5208925 1.5208812 1.5208669 1.5207642 1.5207803 1.5207696 1.5207736 1.520805 1.5208103 1.5208247 1.5208184 1.5207868 1.5207973 1.5207928 1.5207823 1.5207917 1.5207847 1.520798 1.5208051 1.5209603 1.5209023 1.5208934 1.5209448 1.5208426 1.5208665 1.5208593 1.5208351 1.5208776 1.5208728 1.5209257 1.5209282 1.520815 1.5208219 1.5208441 1.520838 1.5208981 1.5209096 1.5209324 1.520921 1.5209641 1.5210151 1.52101 1.5209535 1.5207522 1.5207446 1.5207475 1.5207632 1.5207601 1.520755 1.520758 1.5207481 1.5207455 1.520737 1.52074 1.5207372 1.5207341 1.5207266 1.5207293 1.5208217 1.5208264 1.5208224 1.520837 1.5208449 1.5208301 1.5208472 1.5208378 1.520754 1.5207521 1.5207813 1.5207723 1.5207666 1.5207749 1.5207775 1.5207736 1.5207381 1.5207608 1.520756 1.5207354 1.520748 1.5207569 1.5207647 1.5207557 1.5206673 1.520671 1.5206696 1.5206655 1.5206699 1.5206704 1.5206662 1.5206657 1.5206786 1.5206818 1.5206819 1.5206779 1.5206779 1.5206811 1.5206833 1.5206793 1.5206925 1.5206888 1.5206836 1.5206872 1.5206798 1.5206756 1.5206714 1.5206749 1.5206715 1.5206675 1.5206688 1.5206725 1.5206836 1.5206797 1.5206807 1.5206842 1.5206767 1.5206764 1.5206932 1.5206927 1.520701 1.5207017 1.5206835 1.5206817 1.520711 1.5207018 1.520696 1.5207045 1.5207027 1.5207067 1.5206982 1.5206985 1.5206741 1.5206739 1.5206999 1.5206909 1.5206908 1.5206992 1.5206963 1.5206958 1.5206737 1.5206958 1.520697 1.5206741 1.520699 1.5206902 1.5206922 1.5207004 1.5210833 1.5210579 1.5211081 1.521083 1.5213344 1.5212955 1.5210724 1.5213207 1.5211375 1.5214219 1.5211673 1.5210954 1.5214915 1.5216152 1.5218549 1.5217051 1.5214615 1.5216694 1.5217515 1.5215101 1.5221501 1.5223287 1.5225092 1.52197 1.5219275 1.522245 1.5223997 1.5220274 1.5228201 1.5226356 1.5231119 1.5233289 1.5229494 1.5234808 1.5232789 1.5227346 1.5219837 1.5220369 1.5223785 1.522312 1.5232578 1.5227167 1.5227991 1.5233095 1.5236754 1.5230578 1.5237891 1.5231528 1.5221812 1.5225538 1.5226321 1.5222135 1.5210924 1.5210664 1.5211085 1.5210802 1.5213348 1.5213098 1.5214803 1.5215125 1.521734 1.5216926 1.5218753 1.5218496 1.5215865 1.5216064 1.5211373 1.5211054 1.5213783 1.5211132 1.5213935 1.5211398 1.5212256 1.5214796 1.5212511 1.5212532 1.5212291 1.5214912 1.5216544 1.5216746 1.5219026 1.5218723 1.5215989 1.5216629 1.5218197 1.5218968 1.5211872 1.5214586 1.5212166 1.521184 1.5211547 1.5214069 1.5211385 1.5213932 1.5211677 1.5211707 1.5211414 1.5214 1.5215667 1.5215787 1.5218008 1.5217826 1.5221859 1.5220932 1.5224279 1.5225379 1.5229702 1.5228401 1.52334 1.5234918 1.5229073 1.5228229 1.523421 1.5233197 1.52205 1.5223778 1.5224453 1.5220752 1.5221427 1.5224747 1.5225635 1.522184 1.5228836 1.5235647 1.5233806 1.5229921 1.5206502 1.5206439 1.5206312 1.5206645 1.5206152 1.5206247 1.5207856 1.5209155 1.5207849 1.5209593 1.5209974 1.5207903 1.5205533 1.5205572 1.5205487 1.5205489 1.5205685 1.5205687 1.5205892 1.5205889 1.5205723 1.5205778 1.5205993 1.5205925 1.5212877 1.5211481 1.5211365 1.5213129 1.5213394 1.5211609 1.5211764 1.5213674 1.5209432 1.5209065 1.5209211 1.5209608 1.5208823 1.5208931 1.5209266 1.5209113 1.520794 1.5207922 1.5208063 1.5208076 1.5207791 1.5207677 1.5207708 1.5207813 1.5207865 1.520797 1.5208111 1.5207981 1.5208086 1.520822 1.5208409 1.5208245 1.5208595 1.5208382 1.5208593 1.5208836 1.5208237 1.520824 1.5208455 1.5208467 1.5209164 1.5208881 1.5209335 1.520968 1.5209333 1.5208785 1.5208749 1.5209219 1.5209389 1.5209619 1.5210091 1.5209814 1.5209931 1.5210417 1.5211003 1.5210437 1.521257 1.5213086 1.5215534 1.5214821 1.5213981 1.5211959 1.521221 1.5214346 1.5207254 1.5207247 1.5207381 1.5207392 1.5207038 1.5207132 1.5207024 1.520714 1.5207026 1.5207127 1.5207125 1.5207018 1.5207393 1.5207247 1.5207258 1.5207396 1.5207278 1.5207294 1.5207429 1.5207414 1.5207549 1.52074 1.5207492 1.5207639 1.5207274 1.5207164 1.5207357 1.5207238 1.5207053 1.5207154 1.5207171 1.5207062 1.5208673 1.5208147 1.5208135 1.5208645 1.5207596 1.5207581 1.5207803 1.5207816 1.5207822 1.5207722 1.5207952 1.5208064 1.5208271 1.5208783 1.5208968 1.5208397 1.5207547 1.5207564 1.5207792 1.5207767 1.5208073 1.5208109 1.5208618 1.5208566 1.5208173 1.5208125 1.520864 1.520871 1.5207561 1.5207787 1.5207819 1.5207569 1.5212285 1.5212371 1.5210219 1.5210067 1.5208069 1.520849 1.5208175 1.5208368 1.5208292 1.5208394 1.5208734 1.5208635 1.5210351 1.5210542 1.5212667 1.5212626 1.5207445 1.5207399 1.5207439 1.5207483 1.520723 1.5207284 1.5207326 1.5207261 1.5207351 1.5207415 1.5207564 1.5207487 1.5207686 1.5207527 1.5207582 1.5207734 1.5207527 1.5207581 1.5207857 1.5207695 1.5207795 1.5207965 1.5207337 1.5207353 1.5207593 1.5207546 1.5207637 1.5207686 1.5207609 1.520758 1.520787 1.5207766 1.5208528 1.5208661 1.5208634 1.5208512 1.5209027 1.5208883 1.5208978 1.5208722 1.5211137 1.5211257 1.5212643 1.5211842 1.5210689 1.521086 1.5213191 1.5212947 1.5206712 1.5206704 1.5206992 1.5206901 1.5207021 1.5206931 1.5206703 1.5206701 1.5206991 1.5206899 1.5206903 1.5206987 1.5206929 1.5206935 1.5206934 1.5206948 1.5206758 1.5206793 1.5206799 1.5206758 1.5206612 1.5206655 1.5206656 1.5206605 1.5206614 1.5206657 1.5206691 1.5206639 1.5206795 1.5206751 1.5206826 1.5206785 1.52067 1.5206643 1.5206654 1.5206701 1.5206795 1.5206798 1.5206838 1.5206833 1.5206925 1.5206878 1.5206979 1.5207019 1.520677 1.5206714 1.520681 1.5206864 1.5206736 1.5206731 1.5206931 1.5207019 1.5207034 1.5206937 1.5207026 1.5207127 1.5207223 1.5207113 1.5206843 1.5206878 1.5207072 1.5207138 1.5206962 1.520697 1.5211331 1.5211161 1.5211948 1.5211732 1.5214194 1.5213391 1.5211178 1.5213588 1.5211501 1.5214141 1.5211727 1.521139 1.5215254 1.5215961 1.5218227 1.5217338 1.5214981 1.521698 1.5218331 1.5215937 1.522103 1.5223438 1.5224452 1.5219928 1.5219472 1.5222546 1.5224771 1.5221072 1.5228952 1.5226337 1.5234009 1.5230958 1.5228659 1.5227413 1.5232243 1.5233736 1.5221386 1.5224669 1.5226553 1.5222763 1.5224655 1.5228077 1.5232989 1.5228968 1.5237509 1.5232268 1.5242943 1.5237343 1.5228706 1.5230825 1.5235994 1.523359 1.5212448 1.5212341 1.5213359 1.5213119 1.5215676 1.5214687 1.521638 1.5217475 1.5219711 1.521849 1.5219409 1.5221626 1.5225712 1.5223109 1.5215177 1.5215066 1.5218987 1.5218097 1.5221031 1.5217487 1.5228878 1.5228542 1.5233742 1.5234148 1.5220514 1.5223977 1.5224661 1.5220787 1.5220642 1.5224135 1.5223881 1.5220159 1.5228234 1.5233402 1.5234869 1.5229031 1.5214988 1.5215289 1.521717 1.5217546 1.521074 1.5213324 1.5210992 1.5210897 1.5210603 1.5213093 1.5210788 1.5213408 1.5211041 1.5211192 1.5210908 1.5213552 1.5215208 1.5215386 1.5217671 1.5217447 1.5217767 1.5215039 1.5215276 1.5217233 1.5210774 1.5213317 1.5210963 1.5210912 1.5210674 1.5213137 1.5210903 1.5213488 1.5211124 1.5211418 1.5211157 1.521378 1.5215279 1.5215614 1.5217896 1.5217506 1.5220614 1.5219957 1.5223297 1.5224095 1.5228377 1.5233569 1.5232932 1.5227415 1.5228252 1.5229268 1.5234546 1.5233381 1.5220268 1.5223652 1.5224521 1.5220717 1.5226012 1.5225646 1.522563 1.5226015 1.5225559 1.5225941 1.5225932 1.5225561 1.5225976 1.522561 1.5225604 1.5225985 1.5226028 1.5226027 1.5225659 1.5225662 1.5225395 1.52254 1.5225234 1.5225228 1.5225348 1.5225349 1.5225184 1.522519 1.5224897 1.5225027 1.5225035 1.522492 1.5225069 1.5225076 1.5224956 1.5224949 1.5225372 1.5225387 1.5225219 1.522521 1.522492 1.5224976 1.5224866 1.5224803 1.5225052 1.5225062 1.5224941 1.5224933 1.5225303 1.5225145 1.52251 1.5225288 1.5224221 1.5223739 1.5224017 1.5224401 1.5225245 1.5225256 1.5224853 1.5224829 1.5224559 1.5224528 1.5224365 1.5224327 1.5223699 1.5223381 1.5223485 1.522313 1.5224193 1.5224143 1.522401 1.5224076 1.522329 1.5222871 1.5222653 1.5223175 1.5224992 1.5224975 1.5224826 1.5224805 1.5224872 1.5224868 1.5224711 1.5224704 1.5224642 1.5224526 1.5224553 1.522467 1.5224557 1.5224546 1.522445 1.5224432 1.5225562 1.5225172 1.5225162 1.522557 1.5225663 1.5225667 1.5225289 1.5225277 1.5225089 1.5225085 1.5225201 1.5225206 1.5225577 1.522536 1.5225354 1.5225554 1.5225286 1.5225299 1.5225503 1.5225514 1.5225015 1.5224969 1.5225099 1.5225132 1.5225349 1.5225344 1.5225539 1.5225559 1.5225184 1.5225178 1.5225051 1.5225065 1.5225079 1.5225225 1.5225188 1.5225099 1.5225331 1.522538 1.5225581 1.5225518 1.5225846 1.5225764 1.5226093 1.5226199 1.5225796 1.5225836 1.5226208 1.522614 1.5226686 1.5227275 1.5226549 1.5227398 1.5226724 1.5227481 1.5227383 1.5226619 1.5225816 1.5225844 1.52262 1.5226167 1.5227471 1.5226654 1.5226691 1.522737 1.5227484 1.5226674 1.5226874 1.5227722 1.5225771 1.5226131 1.5226254 1.5225815 1.5223686 1.5222635 1.5222791 1.5223861 1.5222512 1.5222438 1.5223441 1.5223541 1.5224057 1.5224153 1.5224344 1.5224225 1.5224283 1.5224457 1.5224707 1.5224493 1.5224789 1.5224787 1.5224669 1.5224913 1.522506 1.5224852 1.5224841 1.5225041 1.5224568 1.5224679 1.5224698 1.5224586 1.5225147 1.5224935 1.5225077 1.522529 1.5225571 1.5225408 1.522576 1.5225948 1.5225729 1.522533 1.5225292 1.522563 1.5227074 1.5226103 1.5226247 1.52268 1.5226251 1.5226471 1.5227237 1.5226972 1.5223341 1.5223007 1.5224436 1.5224093 1.5224689 1.522497 1.5225325 1.5225003 1.5225818 1.5225443 1.5226093 1.522654 1.5223792 1.522489 1.5225568 1.5224473 1.5222443 1.5223279 1.5223304 1.5222358 1.5224026 1.522393 1.5223885 1.5223999 1.5223875 1.5223997 1.5224002 1.5223873 1.5222335 1.5222325 1.5223318 1.5223307 1.5223878 1.5223897 1.5224021 1.5223894 1.5224043 1.5224017 1.5222358 1.5223193 1.5222323 1.5222329 1.5223365 1.5223337 1.5222369 1.5223268 1.5223934 1.5224073 1.522442 1.5224404 1.5224372 1.5224447 1.5224311 1.5224349 1.5224375 1.5224338 1.5224549 1.5224474 1.5224506 1.5224411 1.5224441 1.5224546 1.5224521 1.5224611 1.5224336 1.5224295 1.5224331 1.5224366 1.5224296 1.5224291 1.5224329 1.5224334 1.5224384 1.5224392 1.5224478 1.5224462 1.5224422 1.5224479 1.5224456 1.5224385 1.5224746 1.5224778 1.5224788 1.5224758 1.5224835 1.5224839 1.5224795 1.5224793 1.5224817 1.5224786 1.5224746 1.5224778 1.5224805 1.5224795 1.5224794 1.5224805 1.5224876 1.5224825 1.5224828 1.5224864 1.5224881 1.5224859 1.5224834 1.5224857 1.522478 1.5224816 1.5224846 1.5224809 1.5224887 1.5224908 1.5224926 1.5224935 1.5224866 1.5224858 1.5224915 1.5224922 1.5224817 1.5224854 1.5224849 1.5224807 1.5224752 1.5224789 1.5224789 1.5224701 1.5224719 1.5224655 1.5224846 1.5224782 1.5224822 1.5224779 1.5224771 1.5224815 1.5224664 1.5224758 1.5224717 1.5224615 1.5224717 1.5224617 1.5224628 1.5224728 1.5224772 1.5224781 1.5224783 1.5224792 1.5228562 1.5229381 1.5228473 1.5229231 1.5231348 1.5231493 1.5233264 1.5235473 1.5235496 1.5233092 1.5233755 1.5234741 1.5237322 1.5236091 1.5228669 1.5229456 1.5231713 1.5229981 1.5232478 1.5229 1.5235286 1.5232926 1.5233312 1.5235522 1.5233349 1.5233664 1.5235986 1.5235583 1.5228496 1.5229268 1.5228613 1.5229453 1.5231639 1.5231402 1.522831 1.5229068 1.5231071 1.5229313 1.5231385 1.5228433 1.5238861 1.5238353 1.5241768 1.5242397 1.5238268 1.5237978 1.5241656 1.52413 1.5246726 1.5245941 1.5251018 1.5251979 1.5245374 1.5245795 1.5250828 1.5250323 1.5241939 1.523821 1.5238241 1.5241625 1.5238987 1.5242553 1.5244808 1.5240501 1.5256053 1.5252737 1.5246904 1.524962 1.5246134 1.5245754 1.5250786 1.5251218 1.5230385 1.5232644 1.5233909 1.5231467 1.5227363 1.5229549 1.5226669 1.5225525 1.5226368 1.522843 1.5227875 1.5229866 1.5227083 1.5227622 1.5228421 1.5230543 1.5231523 1.5232321 1.5234538 1.5233595 1.5232662 1.5233643 1.5234865 1.523607 1.522919 1.523152 1.5228258 1.5227889 1.5228649 1.5230747 1.522894 1.5231137 1.5228092 1.5228404 1.5229224 1.5231458 1.5232935 1.5233306 1.5235606 1.5235172 1.5239074 1.5237601 1.5240979 1.5242757 1.5247254 1.5250718 1.5252702 1.5245125 1.5253081 1.525175 1.5246011 1.5247135 1.5237948 1.5241372 1.524232 1.523845 1.5235455 1.5240509 1.523893 1.52367 1.5236182 1.5239392 1.524102 1.5237282 1.5250896 1.5248677 1.5243342 1.5245233 1.5243198 1.5248404 1.5250548 1.5244787 1.522462 1.52248 1.5224855 1.5225053 1.5224588 1.5224426 1.5224282 1.5224422 1.5227407 1.5226458 1.522538 1.5225813 1.5228768 1.5229656 1.5243111 1.5250956 1.5254424 1.5245344 1.5272449 1.5260279 1.5264278 1.5275855 1.5289448 1.5302438 1.5285545 1.5305271 1.5320328 1.5323536 1.5344417 1.5340755 1.5350663 1.5321908 1.5327062 1.5342603 1.5306625 1.5289113 1.5286654 1.5302123 1.5290451 1.5285326 1.5300602 1.5306464 1.5318252 1.5324891 1.5345906 1.5338406 1.5244863 1.5253084 1.5251539 1.5242844 1.5261013 1.52628 1.5274247 1.5272163 1.524281 1.5252965 1.5250678 1.5243988 1.5260019 1.5271035 1.5275376 1.5262716 1.5437651 1.5431487 1.5423211 1.5431368 1.5512628 1.5504085 1.546148 1.5469871 1.5474679 1.5512107 1.5511955 1.5469613 1.5553868 1.5545302 1.5589518 1.5597839 1.5598682 1.5551631 1.5553098 1.5596933 1.5644283 1.5644575 1.5693875 1.5695195 1.5637163 1.5688638 1.5701771 1.5645189 1.5718888 1.565184 1.5661562 1.5704215 1.5608479 1.5559526 1.5553442 1.5598215 1.554396 1.5587768 1.5605941 1.5557764 1.563508 1.5686179 1.5708761 1.5652835 1.5426045 1.5436761 1.547528 1.5507467 1.5513989 1.5464541 1.5512855 1.5499023 1.5419831 1.545725 1.5433171 1.5470885 1.5852827 1.586236 1.5995794 1.5981622 1.603325 1.6051341 1.5860318 1.574499 1.5798816 1.5758512 1.5809754 1.5862862 1.5749322 1.5796388 1.5751371 1.580259 1.599614 1.5995544 1.6053865 1.6051685 1.5776557 1.5827282 1.5880206 1.5877569 1.5761599 1.5815595 1.574221 1.5794674 1.5765458 1.5814116 1.5865369 1.5848713 1.5996289 1.5982798 1.6049051 1.6040248 1.6014353 1.601362 1.6072577 1.606806 1.5281639 1.5296546 1.5301968 1.5285077 1.5292411 1.5308789 1.5303614 1.5286417 1.5321832 1.5327594 1.534264 1.5349007 1.5313775 1.5342366 1.5333512 1.5319815 1.5260608 1.5265123 1.5271843 1.5276996 1.525408 1.5244876 1.52423 1.5250211 1.5248089 1.5239838 1.5242478 1.5250375 1.525711 1.5259739 1.527077 1.526775 1.5273066 1.5261034 1.5260677 1.5272361 1.5250318 1.5241714 1.5242577 1.525057 1.5257306 1.524754 1.5249042 1.5258157 1.5267864 1.5268888 1.5281441 1.5280192 1.5286392 1.528565 1.5301147 1.5301887 1.5319794 1.5319061 1.5339556 1.5340225 1.533665 1.533253 1.5359322 1.5354611 1.5294603 1.5311313 1.5314821 1.5296076 1.5422245 1.5422682 1.5460549 1.5498714 1.5503612 1.5460719 1.5527085 1.5442898 1.5482776 1.5452757 1.5492351 1.553196 1.5426356 1.5434683 1.5472712 1.5464759 1.5503513 1.5510917 1.5428249 1.5466708 1.5413547 1.5451254 1.5489406 1.5505254 1.5696014 1.5643078 1.5639402 1.5695332 1.5587168 1.5539149 1.554515 1.5589721 1.5569811 1.5615435 1.5623249 1.5573814 1.5664553 1.5717355 1.5728362 1.5671257 1.5544546 1.5551441 1.5594669 1.5588414 1.5696884 1.5641245 1.5635772 1.5686906 1.5625267 1.5646784 1.5698009 1.5676273 1.552981 1.5573261 1.559429 1.5545965 1.5860214 1.5856625 1.5991514 1.5991566 1.6049098 1.6044903 1.5848753 1.5732032 1.5786704 1.5754581 1.5806747 1.5860495 1.5753198 1.5802176 1.5743072 1.5795756 1.5994442 1.5984341 1.6051349 1.6044215 1.575262 1.5804261 1.5857818 1.5869231 1.5752334 1.5806853 1.5775432 1.5828379 1.5786481 1.583496 1.5886342 1.588304 1.6018778 1.6019491 1.6076653 1.6070985 1.6006506 1.5991342 1.6065885 1.6047542 1.5244438 1.5252831 1.5253057 1.5243936 1.5243339 1.5254277 1.5251504 1.5244966 1.5264362 1.526119 1.5276188 1.5272596 1.5262757 1.5262953 1.5274598 1.5274414 1.5288101 1.5288243 1.5304115 1.5304012 1.5322407 1.5343426 1.5345505 1.5322412 1.5321464 1.5328575 1.5350214 1.5342281 1.5285977 1.5301566 1.5307823 1.5290032 1.528967 1.5305631 1.5303721 1.5286498 1.5305442 1.5305861 1.5288257 1.5287928 1.5323946 1.5324469 1.5345033 1.5345676 1.5321932 1.5323989 1.5344947 1.5342676 1.5251098 1.5252048 1.5243074 1.5242299 1.524304 1.5251107 1.525328 1.5244201 1.5263136 1.5260646 1.5271909 1.527469 1.5261822 1.5273329 1.5273109 1.526066 1.5439876 1.5426242 1.5433638 1.5430968 1.5472229 1.5468457 1.5506286 1.5511077 1.546468 1.5503578 1.5522146 1.547887 1.5429698 1.5430706 1.5469453 1.5469028 1.5508677 1.5508427 1.5432016 1.5470441 1.5426177 1.5464843 1.550388 1.5508915 1.5545223 1.5589549 1.5597669 1.5549546 1.5598727 1.5549746 1.5550458 1.5595248 1.5703825 1.5643614 1.564658 1.5695748 1.5637253 1.5688784 1.5700482 1.5644572 1.5544914 1.558928 1.5613151 1.5563798 1.5594214 1.5546504 1.5552259 1.5596387 1.564412 1.5640875 1.5691183 1.5695459 1.5637104 1.5688824 1.5718585 1.5661224 1.5745088 1.5799169 1.5854551 1.5865999 1.5756811 1.5807125 1.5874324 1.5870148 1.5752617 1.5807548 1.5761066 1.5813337 1.6007927 1.6010245 1.6067501 1.6068013 1.5998552 1.5989953 1.6049091 1.6053439 1.5752142 1.5803993 1.5747399 1.5795648 1.5857821 1.5846837 1.5992106 1.597776 1.6031 1.604857 1.5860846 1.5887567 1.6022923 1.599705 1.6056026 1.6078706 1.5745323 1.5799019 1.5776261 1.5827412 1.5243503 1.5241545 1.5249226 1.5251529 1.5247369 1.5239336 1.5243074 1.5250911 1.5272282 1.5267656 1.5256167 1.5260191 1.5261049 1.5258319 1.5269072 1.5272223 1.528536 1.5281696 1.5296421 1.5300621 1.5335055 1.5340534 1.5318257 1.5313457 1.5313143 1.5321666 1.5342155 1.5332618 1.5280067 1.5294576 1.5302058 1.5285305 1.5284149 1.5289385 1.5305037 1.5299137 1.5316512 1.533641 1.5345861 1.5323095 1.5329451 1.5343843 1.5366316 1.5350715 1.5293078 1.5309083 1.5322195 1.5303557 1.5245717 1.5242554 1.5250251 1.5253814 1.5259377 1.5263412 1.527472 1.5270124 1.5287672 1.5278079 1.5265509 1.5274248 1.5246939 1.5254984 1.5262958 1.5253549 1.5417951 1.5422574 1.5411635 1.5427555 1.5465914 1.5449016 1.5486934 1.5504369 1.5459188 1.5496151 1.5496439 1.5455037 1.5527127 1.5570411 1.559331 1.554504 1.5582104 1.553544 1.5536573 1.5579687 1.5626375 1.5627783 1.5677106 1.5676708 1.561714 1.5667833 1.5696803 1.5640449 1.5559785 1.5604537 1.563528 1.5586262 1.5582495 1.5534947 1.5560963 1.5605988 1.5685004 1.5654612 1.5629135 1.5706928 1.5652743 1.5704758 1.5739271 1.5682802 1.5432783 1.5416677 1.5436046 1.5458782 1.5474719 1.5513815 1.5540366 1.5497461 1.5453619 1.5490989 1.5514718 1.5471584 1.5968639 1.6022919 1.5838213 1.5844824 1.5978883 1.6036854 1.5839736 1.5722982 1.5777705 1.5753199 1.5805374 1.5859113 1.5732041 1.5780582 1.5731915 1.5784281 1.5992975 1.5975204 1.6050061 1.6035673 1.5740843 1.5792255 1.5845697 1.5880134 1.576419 1.5818132 1.576186 1.5814051 1.5868388 1.590072 1.5797058 1.5843922 1.6003798 1.606085 1.6031919 1.6082581 1.6017223 1.5978729 1.607601 1.6035453 1.5206373 1.5206254 1.5206704 1.5206737 1.5206013 1.5206246 1.5206207 1.5205972 1.5206513 1.5206458 1.5206555 1.5206615 1.5205921 1.5205961 1.5205731 1.520569 1.5205445 1.5205652 1.5205661 1.5205437 1.5205719 1.5205491 1.5205465 1.5205674 1.52059 1.520595 1.5205993 1.5206039 1.5205875 1.5205887 1.5205975 1.5205964 1.5205379 1.520538 1.5205439 1.5205401 1.520567 1.5205655 1.5205427 1.5205421 1.5205623 1.5205623 1.5205647 1.5205425 1.5205426 1.5205633 1.5205856 1.520587 1.5205946 1.5205957 1.5205844 1.5205838 1.5205924 1.520593 1.5205368 1.5205371 1.520537 1.5205368 1.5205883 1.5205865 1.5205131 1.5205152 1.5205131 1.5205146 1.5205355 1.5205353 1.5205319 1.5205329 1.5205147 1.5205163 1.5205194 1.5205214 1.520539 1.5205423 1.5205336 1.5205369 1.5205122 1.5205134 1.5205121 1.5205137 1.5205343 1.5205344 1.5205312 1.5205307 1.5205127 1.5205163 1.5205122 1.5205136 1.5205342 1.5205345 1.5205309 1.5205332 1.5205159 1.5205142 1.5205145 1.5205137 1.5205138 1.5205138 1.5205141 1.5205272 1.5205276 1.5205268 1.5205269 1.5205271 1.5205267 1.5205611 1.520561 1.5205758 1.5205741 1.5205818 1.5205832 1.5205746 1.5205754 1.520583 1.5205821 1.5205407 1.5205411 1.5205563 1.5205556 1.5205408 1.5205554 1.5205568 1.5205411 1.5205377 1.5205373 1.5205379 1.5205376 1.5205697 1.5205621 1.5205425 1.5205429 1.5205573 1.520557 1.5205835 1.520575 1.5205746 1.5205828 1.5205864 1.5205795 1.5205875 1.5205944 1.520547 1.5205514 1.5205667 1.5205611 1.5205396 1.5205393 1.5205436 1.5205475 1.5206099 1.5206199 1.5206263 1.5206142 1.5206112 1.5205999 1.5206035 1.520614 1.5206291 1.5206264 1.5206362 1.5206337 1.5206172 1.5206344 1.5206423 1.52065 1.5206422 1.5206298 1.5206075 1.5206115 1.5205981 1.5206015 1.5210096 1.5208524 1.5208514 1.5210567 1.5206864 1.5206802 1.5206946 1.5207037 1.5207174 1.5209766 1.520716 1.5206969 1.5207247 1.5207059 1.5208524 1.521098 1.5211038 1.5208689 1.5206885 1.520677 1.5208334 1.5209944 1.5205212 1.5205221 1.5205214 1.5205226 1.5205352 1.5205356 1.5205323 1.5205331 1.5205204 1.5205219 1.5205211 1.520522 1.5205357 1.5205352 1.5205334 1.5205325 1.5205233 1.5205243 1.5205237 1.5205245 1.5205369 1.5205371 1.5205344 1.5205342 1.5205263 1.520527 1.5205312 1.5205334 1.5205397 1.520546 1.5205367 1.5205443 1.5205214 1.5205216 1.5205211 1.5205217 1.5205265 1.5205324 1.5205236 1.5205241 1.5206019 1.5206026 1.5205965 1.5205968 1.5206097 1.5206034 1.5206007 1.5206073 1.5205926 1.5205931 1.5205878 1.5205882 1.5205998 1.520595 1.5205936 1.5205976 1.5206789 1.5206794 1.5206675 1.5206678 1.5206702 1.5206852 1.5206684 1.5206809 1.5209372 1.5209658 1.5207733 1.5207754 1.5210391 1.5207879 1.5207749 1.5210442 1.5205888 1.5205928 1.5205965 1.5206031 1.5206682 1.5206805 1.5209694 1.5207729 1.5205293 1.5205292 1.5205291 1.5205288 1.5205308 1.5205311 1.5205334 1.5205398 1.5205919 1.5205958 1.5205991 1.5206059 1.5206682 1.5206809 1.5207749 1.5210112 1.5225015 1.5225048 1.5224835 1.5224806 1.5225369 1.5225384 1.522547 1.5225477 1.5224913 1.5224885 1.5225125 1.5225141 1.5225331 1.5225284 1.5224715 1.5224679 1.5225767 1.5226266 1.5226278 1.5225815 1.5226308 1.5225845 1.522585 1.5226333 1.5225392 1.522541 1.5224811 1.5224765 1.5225854 1.5225831 1.5225903 1.5225871 1.5224565 1.522477 1.5225265 1.5225582 1.5224352 1.5225112 1.5225585 1.522602 1.5225519 1.5225971 1.5225482 1.5225541 1.5223511 1.5224215 1.5223954 1.5223247 1.5223965 1.5224261 1.5224621 1.5223892 1.5223927 1.5223139 1.5224997 1.5225065 1.5224411 1.5224762 1.5224326 1.5224705 1.5225048 1.5225067 1.5224531 1.5224469 1.5225465 1.52255 1.5225303 1.5225271 1.5225795 1.5225811 1.522585 1.522584 1.5225295 1.5225328 1.5225556 1.5225515 1.5225769 1.5225717 1.5225195 1.5225152 1.5226168 1.5226634 1.5226652 1.522622 1.522668 1.5226249 1.5226212 1.5226675 1.5225825 1.522579 1.522521 1.5225234 1.5226278 1.5226264 1.5226216 1.5226238 1.5225507 1.5225832 1.5225829 1.5225308 1.5225292 1.5225512 1.522574 1.5225769 1.5225177 1.5225263 1.5225483 1.5225398 1.5226556 1.5226119 1.5226156 1.5226613 1.5226179 1.5226198 1.522666 1.5226641 1.5225762 1.5225778 1.5225191 1.52252 1.522574 1.5225173 1.5225096 1.5225695 1.5226252 1.522622 1.5226224 1.5226127 1.5226912 1.5226921 1.5226898 1.5226907 1.522628 1.5226281 1.5226307 1.5226296 1.5226534 1.5226555 1.5226957 1.5226946 1.5226934 1.5226942 1.5226317 1.5226317 1.5226334 1.5226353 1.5226574 1.5226581 1.522555 1.5225497 1.5226398 1.5226401 1.5225761 1.5225735 1.5225085 1.5224987 1.5225268 1.5226034 1.5226671 1.5226677 1.5226632 1.5226646 1.5226002 1.5225994 1.5226267 1.5226041 1.5226304 1.5226043 1.5227213 1.522722 1.5227149 1.522713 1.5226511 1.5226551 1.5226636 1.5226633 1.522675 1.5226869 1.5227254 1.5226663 1.5226667 1.5226638 1.5226638 1.522687 1.5226899 1.5227251 1.5227245 1.5227244 1.5227264 1.5227266 1.522727 1.5227272 1.5226673 1.5226681 1.5226693 1.5226687 1.5226922 1.522691 1.5227233 1.5226644 1.5226643 1.5226633 1.5226641 1.5226871 1.5226876 1.5227261 1.5227227 1.5227258 1.522514 1.522507 1.5224473 1.5224566 1.5225498 1.5225559 1.5225965 1.5225906 1.5225466 1.522587 1.5225618 1.5225567 1.5225542 1.5225509 1.5225908 1.5225901 1.5225851 1.5225866 1.5226355 1.5226098 1.5226053 1.522634 1.5226338 1.5226352 1.5226374 1.5226377 1.5226471 1.5226466 1.5225961 1.5225979 1.5225918 1.522592 1.5226112 1.5226181 1.520585 1.5206038 1.5206046 1.5205849 1.5205833 1.5205833 1.5206019 1.5206018 1.5205916 1.5206111 1.5206107 1.5205908 1.5205872 1.5205873 1.5206062 1.5206059 1.5206204 1.5206199 1.5206299 1.5206308 1.5206248 1.5206256 1.5206363 1.5206349 1.5206456 1.5206477 1.52066 1.5206571 1.5206417 1.5206408 1.5206525 1.5206538 1.5206184 1.5206178 1.5206281 1.5206284 1.5206397 1.5206382 1.52065 1.5206517 1.5206391 1.520639 1.5206511 1.5206509 1.5206159 1.5206261 1.5206276 1.5206162 1.5206823 1.5206849 1.520696 1.5206921 1.5206993 1.5206967 1.5207077 1.52071 1.5207193 1.5207307 1.5207027 1.5207079 1.5207196 1.5207134 1.5206817 1.5206584 1.5206577 1.5206792 1.5206458 1.5206673 1.5206661 1.5206449 1.5210311 1.5209065 1.5209416 1.5209783 1.5208248 1.5208179 1.5208517 1.520861 1.5208212 1.5208427 1.5208818 1.5208549 1.5209119 1.520899 1.5209691 1.5209869 1.5207763 1.5207905 1.5208118 1.5207947 1.5207729 1.5207593 1.5207498 1.520761 1.520747 1.5207584 1.5207601 1.5207475 1.5207727 1.5207912 1.5207962 1.520775 1.5207465 1.5207579 1.5207451 1.5207588 1.5207948 1.5207732 1.5207747 1.5207955 1.520773 1.5207738 1.5207932 1.5207922 1.5207461 1.5207577 1.5207571 1.5207447 1.5208188 1.5208537 1.5208555 1.5208176 1.5209026 1.520975 1.5209857 1.5209054 1.5210065 1.5210048 1.5209185 1.5209191 1.5208614 1.5208216 1.5208233 1.5208611 1.520893 1.5209057 1.5208865 1.5208735 1.5209216 1.520942 1.5209242 1.520902 1.5208012 1.5208255 1.5208126 1.5208132 1.520851 1.5208611 1.5208819 1.5208703 1.5208311 1.5208438 1.5208349 1.5208223 1.5208406 1.5208285 1.5208485 1.52086 1.5210876 1.5210028 1.5209874 1.5210621 1.5209093 1.5209463 1.5209335 1.5208958 1.5209734 1.5209672 1.5210447 1.5210472 1.5208752 1.5208855 1.5209202 1.5209115 1.5209518 1.520969 1.5210054 1.5209891 1.521056 1.5211305 1.5211253 1.5210414 1.5207825 1.5207545 1.5207764 1.5207998 1.5207909 1.5207846 1.5207926 1.5207847 1.5207763 1.5207651 1.5207722 1.5207675 1.5207452 1.5207364 1.520757 1.5208392 1.5208551 1.520847 1.5208547 1.5208681 1.5208507 1.5207922 1.5207854 1.5208166 1.520808 1.5208007 1.5208086 1.5208057 1.5207983 1.5207753 1.5207884 1.5207782 1.5207654 1.5207793 1.5207926 1.5208002 1.5207862 1.5206801 1.5207028 1.5207011 1.5206778 1.5207001 1.5207017 1.5206784 1.5206769 1.5207097 1.5207175 1.5207165 1.5207082 1.520709 1.5207166 1.5207183 1.5207105 1.5207292 1.5207207 1.5207132 1.5207211 1.5207117 1.520688 1.5206819 1.5207044 1.5207021 1.520679 1.5206805 1.5207034 1.5207187 1.5207102 1.5207114 1.5207192 1.520712 1.5207114 1.5207267 1.5207264 1.5207336 1.5207339 1.5207217 1.5207148 1.5207449 1.520737 1.5207289 1.5207363 1.5207271 1.5207347 1.5207239 1.5207244 1.5207104 1.5207095 1.5207328 1.5207251 1.5207241 1.5207313 1.5207228 1.5207219 1.5207094 1.5207218 1.5207234 1.5207106 1.5207316 1.520724 1.5207252 1.5207318 1.5210719 1.5211591 1.5210933 1.5211896 1.5214055 1.5213666 1.5211798 1.5213986 1.5212619 1.5215103 1.5211537 1.5210845 1.5215836 1.5217186 1.5219767 1.5218142 1.5215447 1.5217672 1.5218503 1.5215927 1.5222944 1.5224888 1.522683 1.5220998 1.5220431 1.5223837 1.522542 1.5221437 1.522988 1.5227994 1.5233062 1.5235283 1.5231559 1.5237276 1.5235104 1.5229249 1.5221017 1.5221678 1.5225361 1.5224539 1.5234624 1.5228848 1.5229858 1.5235315 1.5239437 1.5232778 1.5240676 1.5233801 1.5223313 1.522735 1.5228186 1.5223644 1.5210794 1.52117 1.5210971 1.5211894 1.521413 1.521381 1.5215633 1.521604 1.521842 1.52179 1.5219994 1.521973 1.5216885 1.5217089 1.5211261 1.5212232 1.5214633 1.5212347 1.5214791 1.5211257 1.5213359 1.5215594 1.5212398 1.5212379 1.5213401 1.5215659 1.5217479 1.5217623 1.5220063 1.5219822 1.5216935 1.5217655 1.5219318 1.5220178 1.521306 1.5215443 1.5212043 1.5211734 1.5212634 1.5214854 1.5212506 1.5214777 1.5211591 1.521159 1.5212527 1.5214792 1.5216661 1.5216719 1.5219113 1.5219002 1.5223296 1.5222267 1.522589 1.522711 1.5231759 1.5230317 1.5235682 1.5237372 1.5231063 1.523028 1.52366 1.5235642 1.52219 1.5225467 1.5226083 1.522207 1.5222727 1.5226309 1.5227152 1.5223071 1.5230684 1.5237844 1.5235998 1.5231723 1.5207027 1.5206863 1.5206892 1.5207051 1.5206788 1.5206737 1.5206851 1.5206924 1.5206608 1.5206722 1.5206748 1.5206623 1.5207075 1.5206984 1.5207143 1.5207259 1.5206474 1.5206464 1.5206294 1.52063 1.5206592 1.5206423 1.5206437 1.5206622 1.5207256 1.5207367 1.5207472 1.5207297 1.5209857 1.5210143 1.5210559 1.5209816 1.5207615 1.5207469 1.5207592 1.5207771 1.5209805 1.5209808 1.5211122 1.5210872 1.5211413 1.5209839 1.5209916 1.5211804 1.5207923 1.5207709 1.5207862 1.5208119 1.5205947 1.5205947 1.5205766 1.5205766 1.5205843 1.5205852 1.5206037 1.520601 1.5205937 1.5205759 1.5205757 1.5205925 1.5205755 1.5205923 1.5205938 1.5205758 1.5206061 1.5206071 1.5206174 1.5206166 1.5206075 1.5206058 1.5206164 1.5206183 1.5206459 1.5206434 1.5206285 1.5206307 1.5206287 1.5206295 1.5206433 1.5206426 1.5206084 1.5206083 1.5206193 1.5206194 1.5206187 1.5206146 1.5206254 1.5206309 1.5206529 1.5206377 1.5206446 1.5206608 1.5206316 1.5206461 1.5206472 1.5206318 1.5214503 1.5211706 1.5211529 1.5214751 1.521503 1.5211901 1.521213 1.521534 1.5209959 1.5209387 1.5209574 1.521017 1.5209111 1.5209228 1.5209777 1.5209626 1.5208388 1.5208362 1.5208553 1.5208563 1.5208205 1.5208085 1.5208138 1.5208243 1.5208252 1.5208358 1.5208586 1.520846 1.5208489 1.5208657 1.5208942 1.5208734 1.5209199 1.5208882 1.5209189 1.520955 1.520881 1.5208797 1.5209119 1.5209162 1.5210042 1.5209623 1.5210271 1.5210769 1.5210474 1.5209662 1.5209575 1.521026 1.520982 1.5210154 1.5210827 1.521044 1.5210623 1.5211317 1.5212134 1.5211332 1.5213296 1.5214018 1.5217656 1.5216759 1.5215698 1.5212409 1.5212768 1.5216138 1.5207707 1.5207688 1.5207875 1.5207902 1.5207449 1.5207542 1.5207423 1.5207562 1.5207434 1.5207548 1.5207534 1.5207416 1.5207887 1.5207684 1.5207709 1.5207903 1.5207702 1.5207723 1.5207905 1.5207884 1.5208034 1.5207826 1.5207977 1.5208177 1.520767 1.520755 1.5207813 1.5207687 1.5207448 1.5207554 1.5207575 1.5207461 1.5209763 1.5209004 1.5208981 1.5209728 1.520815 1.5208128 1.5208463 1.5208486 1.5208445 1.5208292 1.5208648 1.520881 1.520915 1.52099 1.5210152 1.5209324 1.5208126 1.5208161 1.5208517 1.5208471 1.520896 1.5209019 1.5209768 1.5209692 1.5209119 1.5209036 1.5209796 1.5209906 1.5208142 1.5208493 1.5208554 1.5208164 1.5212808 1.5213487 1.5210503 1.521014 1.5208217 1.5208911 1.5208536 1.5208535 1.5208642 1.520874 1.5209177 1.5209043 1.5210665 1.521083 1.5213983 1.5213725 1.5207814 1.5207766 1.5207841 1.5207893 1.5207398 1.5207673 1.5207718 1.5207432 1.5207509 1.52078 1.5207977 1.5207662 1.5208076 1.5207894 1.5207979 1.5208167 1.5207911 1.5208089 1.5208251 1.5208058 1.5208127 1.5208326 1.5207748 1.52078 1.5207967 1.5207911 1.5207972 1.5208032 1.5207924 1.520787 1.5208224 1.5208036 1.5208755 1.5209181 1.5208918 1.5208832 1.5209412 1.5209297 1.5209346 1.5208884 1.5211024 1.5211207 1.5213893 1.5213509 1.5210993 1.5211145 1.5214483 1.5214237 1.5207122 1.5207095 1.5207305 1.5207239 1.5207322 1.5207259 1.5207096 1.5207089 1.5207311 1.5207243 1.5207237 1.5207298 1.5207206 1.5207215 1.5207212 1.5207237 1.5207095 1.5207168 1.5207163 1.5207085 1.5206757 1.5207008 1.5206998 1.5206748 1.5206758 1.5207005 1.5207032 1.5206783 1.5207165 1.5207085 1.5207187 1.520711 1.5207044 1.5206787 1.5206794 1.5207047 1.5207125 1.5207129 1.5207204 1.5207198 1.5207288 1.5207206 1.5207342 1.5207422 1.5207115 1.5206856 1.520697 1.5207247 1.5207137 1.5207122 1.5207266 1.5207327 1.5207343 1.5207275 1.5207359 1.5207497 1.5207565 1.5207335 1.5207422 1.5207219 1.5207338 1.5207461 1.5207237 1.5207253 1.5211202 1.5212087 1.5211788 1.5212763 1.5214863 1.5214015 1.5212217 1.5214356 1.521264 1.5214954 1.52116 1.5211294 1.5216169 1.5216926 1.521938 1.5218431 1.5215718 1.5217855 1.5219265 1.5216714 1.5222414 1.5225063 1.5226138 1.5221236 1.5220514 1.5223807 1.5226129 1.5222176 1.5230562 1.5227836 1.5235927 1.5232747 1.5230684 1.5229355 1.5234568 1.5236175 1.5222494 1.522603 1.5228177 1.522407 1.5225921 1.5229639 1.5235042 1.5230689 1.5239907 1.5234158 1.524577 1.5239635 1.5230346 1.5232765 1.5238316 1.5235573 1.5212289 1.5213299 1.5213232 1.5214199 1.5216437 1.5215312 1.5217125 1.5218373 1.5220778 1.5219384 1.5220255 1.5222646 1.5227192 1.5224406 1.5215052 1.5216059 1.5219053 1.52195 1.5222195 1.5218179 1.5231071 1.5230767 1.5236412 1.5236795 1.5221967 1.5225737 1.5226321 1.5222129 1.5222109 1.5225922 1.5225697 1.522162 1.5230331 1.5235906 1.523729 1.5231012 1.5215985 1.5216292 1.5218362 1.5218742 1.5211863 1.5214153 1.5210884 1.5210818 1.5211681 1.5213911 1.5211929 1.5214256 1.5210937 1.5211058 1.521204 1.5214342 1.521621 1.5216316 1.5218772 1.5218636 1.5218821 1.5215914 1.521615 1.5218269 1.5211854 1.5214046 1.5210809 1.5210787 1.5211716 1.5213862 1.5212016 1.5214292 1.5211006 1.5211266 1.5212267 1.5214523 1.5216226 1.5216481 1.5218916 1.5218628 1.5221863 1.5221187 1.5224779 1.5225596 1.5230156 1.523569 1.5235063 1.5229171 1.5230203 1.523107 1.5236699 1.5235699 1.5221602 1.5225261 1.5226007 1.5221924 1.5225378 1.5225379 1.5225325 1.5225268 1.5225343 1.5225366 1.5225384 1.5225398 1.5225214 1.5225227 1.5225083 1.5225072 1.5225196 1.5225172 1.5225029 1.5225054 1.5224839 1.5224922 1.5224947 1.5224871 1.5224966 1.5224974 1.5224896 1.5224889 1.5225209 1.5225208 1.5225065 1.5225065 1.5224804 1.522489 1.5224813 1.5224723 1.5224955 1.5224957 1.5224878 1.5224874 1.5225154 1.5225009 1.5224926 1.522509 1.5223337 1.5223853 1.5224583 1.522454 1.5224396 1.5224345 1.5224245 1.5224184 1.5223651 1.5223085 1.5223481 1.5222858 1.5224138 1.5224066 1.5223985 1.522407 1.5223363 1.5222677 1.5222542 1.5223301 1.5224823 1.5224794 1.5224687 1.522465 1.5224699 1.5224723 1.5224583 1.5224558 1.5224546 1.5224473 1.5224519 1.522459 1.5224481 1.5224456 1.5224413 1.5224386 1.5224894 1.5224916 1.5225013 1.522499 1.5225003 1.522519 1.5225 1.5225192 1.5225327 1.5225324 1.5225733 1.5225495 1.52255 1.522572 1.5225445 1.5225452 1.5225677 1.5225694 1.5224931 1.5225125 1.5224875 1.5225085 1.5225235 1.5225261 1.5225491 1.5225486 1.5225701 1.522572 1.5225303 1.5225297 1.5224966 1.5225149 1.5224985 1.5225163 1.5225 1.5225172 1.522534 1.5225299 1.5225014 1.5225194 1.522546 1.5225511 1.5225729 1.5225665 1.5226007 1.5225927 1.5226264 1.5226365 1.5225977 1.5226014 1.5226395 1.5226332 1.5226839 1.5227378 1.5226713 1.5227478 1.5226901 1.5227586 1.5227509 1.5226805 1.5226 1.5226015 1.5226378 1.5226362 1.5227569 1.5226844 1.5226858 1.5227495 1.5227625 1.5226879 1.522708 1.5227849 1.5225965 1.5226336 1.5226466 1.5226013 1.5223837 1.5222725 1.5222903 1.5224032 1.5222581 1.5222405 1.5222486 1.5223373 1.5223561 1.5223674 1.5223991 1.522413 1.5224244 1.5224455 1.5224146 1.5224315 1.5224393 1.5224587 1.5224859 1.5224623 1.5224699 1.5224897 1.5224897 1.5224589 1.5224755 1.5225041 1.5225217 1.5224982 1.5224974 1.5225193 1.5224488 1.5224655 1.5224787 1.5224804 1.5224511 1.5224669 1.5225303 1.5225065 1.5225225 1.5225459 1.522576 1.5225585 1.5225952 1.5226148 1.5225924 1.5225508 1.5225465 1.5225817 1.5227194 1.5226288 1.5226435 1.5226925 1.522644 1.5226663 1.5227359 1.5227098 1.5223495 1.522314 1.5224648 1.5224285 1.5224838 1.522514 1.5225504 1.5225163 1.5225988 1.5225598 1.522619 1.5226641 1.5223945 1.5225101 1.5225722 1.5224568 1.5222404 1.5222393 1.5223499 1.5223319 1.5223373 1.5222365 1.522404 1.5224012 1.5223922 1.5223905 1.522388 1.5224003 1.5223869 1.5224 1.5224003 1.5223864 1.5222345 1.5222333 1.522337 1.5223369 1.5223868 1.5223925 1.5224086 1.5223881 1.5224039 1.5224015 1.5222345 1.5223406 1.5222328 1.5222329 1.5223397 1.5223379 1.5222383 1.5223473 1.5223982 1.5224157 1.5224468 1.5224419 1.5224384 1.5224494 1.52243 1.522434 1.5224367 1.5224327 1.5224608 1.522449 1.5224508 1.5224402 1.5224433 1.5224548 1.522457 1.5224703 1.5224302 1.522431 1.5224284 1.5224321 1.5224342 1.5224338 1.5224284 1.522428 1.5224319 1.5224324 1.5224375 1.5224383 1.5224479 1.5224462 1.5224382 1.5224396 1.5224462 1.5224462 1.5224455 1.5224375 1.522474 1.5224774 1.5224786 1.5224754 1.5224779 1.5224804 1.5224783 1.5224807 1.5224785 1.5224784 1.5224769 1.5224788 1.5224734 1.5224757 1.5224736 1.5224769 1.5224802 1.5224789 1.5224789 1.5224803 1.5224912 1.5224825 1.5224827 1.5224922 1.5224865 1.522486 1.5224873 1.5224901 1.5224779 1.5224816 1.5224848 1.5224809 1.5224963 1.5224987 1.5224997 1.522501 1.5224914 1.522491 1.5225005 1.5225005 1.5224817 1.5224856 1.5224853 1.5224809 1.5224757 1.5224849 1.5224797 1.5224769 1.5224704 1.5224656 1.5224944 1.5224875 1.5224763 1.522479 1.522477 1.522476 1.5224781 1.5224751 1.5224587 1.5224628 1.5224706 1.5224728 1.5224709 1.5224602 1.5224715 1.5224609 1.5224625 1.5224729 1.5224766 1.5224775 1.5224781 1.522479 1.5228349 1.5229947 1.5228298 1.5229828 1.522849 1.5230103 1.5230684 1.5228764 1.522832 1.522987 1.5228396 1.5230042 1.5228128 1.5229615 1.5229866 1.5228216 1.5228044 1.522654 1.522532 1.5226904 1.522843 1.5226912 1.5227421 1.5228998 1.5229841 1.5228044 1.5227723 1.522924 1.5229568 1.5227912 1.5228194 1.5229842 1.5224807 1.5224998 1.5225064 1.5225271 1.5224763 1.5224577 1.5224422 1.5224584 1.5227563 1.5226694 1.5225616 1.5226057 1.5228542 1.5230394 1.5206887 1.5206683 1.5206697 1.5207004 1.5206981 1.5206854 1.5206765 1.5206547 1.5206569 1.5206882 1.5206815 1.5206695 1.5207006 1.5207046 1.5206159 1.5206394 1.5206342 1.5206107 1.5206624 1.5206556 1.520685 1.5206945 1.5206308 1.5206377 1.5206165 1.520612 1.5206222 1.5206268 1.5206014 1.5205996 1.5205961 1.5205966 1.520621 1.52062 1.5206089 1.52061 1.5205556 1.5205757 1.5205773 1.5205557 1.5205838 1.5205619 1.5205577 1.5205779 1.5205973 1.5206035 1.5206242 1.520631 1.5205949 1.5205964 1.5206227 1.5206219 1.5205741 1.5205748 1.520582 1.520576 1.5206078 1.520607 1.5206171 1.5206177 1.5205942 1.5205939 1.5205923 1.5205926 1.520616 1.5206164 1.5206054 1.5206048 1.5205536 1.5205542 1.5205739 1.5205727 1.5205759 1.5205543 1.5205546 1.5205745 1.5205935 1.5205949 1.52062 1.5206212 1.5205927 1.5205912 1.5206178 1.5206193 1.5205731 1.5205734 1.5205727 1.5205722 1.5206096 1.5206095 1.5205963 1.520526 1.5205257 1.520526 1.5205254 1.5205552 1.5205554 1.5205541 1.5205549 1.5205423 1.5205429 1.5205277 1.520527 1.5205337 1.5205322 1.5205616 1.5205498 1.5205617 1.5205557 1.520544 1.5205567 1.5205251 1.5205241 1.520525 1.5205243 1.5205536 1.520554 1.5205527 1.5205539 1.5205413 1.5205407 1.520525 1.5205255 1.5205249 1.520524 1.5205529 1.5205535 1.5205541 1.5205534 1.5205406 1.5205422 1.5205943 1.5205849 1.5205846 1.5206044 1.5206047 1.5205935 1.5205842 1.5205851 1.520593 1.5206032 1.5206056 1.5205946 1.5205827 1.5205813 1.5206065 1.5206076 1.5205816 1.5205827 1.5206078 1.5206066 1.5205496 1.5205503 1.5205657 1.5205647 1.5205496 1.5205645 1.5205659 1.5205499 1.5205638 1.520562 1.5205625 1.520562 1.5206065 1.5205988 1.5206092 1.5206174 1.5205955 1.5205925 1.5205947 1.520605 1.5206058 1.5205942 1.5205859 1.5205859 1.5205511 1.5205514 1.5205661 1.5205658 1.5206076 1.5205818 1.5205815 1.5206072 1.5205932 1.5205861 1.5206114 1.5206202 1.520555 1.52056 1.5205756 1.5205695 1.5205633 1.5205634 1.5205657 1.5205735 1.5206151 1.5206264 1.5206336 1.5206203 1.5206191 1.5206064 1.5206098 1.5206216 1.5206358 1.5206332 1.5206613 1.5206473 1.5206583 1.5206445 1.5206396 1.5206387 1.5206552 1.5206583 1.5206403 1.5206485 1.5206754 1.520662 1.5206659 1.5206531 1.5206542 1.5206506 1.5206642 1.5206738 1.5206211 1.5206285 1.5206147 1.5206182 1.5210394 1.5208346 1.5208367 1.5210813 1.5206896 1.5206812 1.5206959 1.520706 1.5207152 1.5207356 1.5207475 1.5207261 1.5207299 1.5207377 1.5209691 1.5210468 1.5211441 1.5208866 1.5208747 1.5211266 1.5207184 1.5207006 1.5207434 1.5207232 1.5208415 1.5211142 1.5211614 1.5208573 1.520697 1.5206811 1.5207944 1.5211059 1.5205283 1.5205279 1.5205286 1.5205282 1.5205471 1.5205481 1.520548 1.5205487 1.5205384 1.520539 1.5205284 1.5205282 1.5205286 1.520528 1.5205493 1.5205495 1.5205474 1.5205484 1.52054 1.5205388 1.5205302 1.5205298 1.5205305 1.52053 1.5205491 1.5205498 1.5205485 1.5205498 1.5205403 1.5205401 1.5205328 1.5205324 1.5205386 1.520539 1.5205511 1.5205523 1.5205593 1.5205592 1.5205424 1.5205505 1.5206047 1.5206045 1.5205987 1.5205983 1.5206168 1.5206179 1.5206098 1.5206111 1.5206034 1.5206102 1.5205953 1.5205949 1.5205907 1.5205904 1.520607 1.5206079 1.520604 1.5206044 1.5205967 1.5206005 1.5206793 1.5206787 1.5206669 1.520667 1.5206733 1.5206747 1.5206863 1.5206892 1.5206687 1.5206811 1.5209858 1.5209946 1.5207718 1.520771 1.5211005 1.5210759 1.5207787 1.5207879 1.5207714 1.5210731 1.5224526 1.5224559 1.5224452 1.5224637 1.522442 1.5224608 1.5224686 1.5224725 1.522455 1.5224487 1.5224608 1.5224663 1.5224657 1.5224915 1.5224608 1.5224871 1.522448 1.5224445 1.5224961 1.5225409 1.5225435 1.5225018 1.5225453 1.5225041 1.5225065 1.5225491 1.5224706 1.5224971 1.5224751 1.5225005 1.5224588 1.5224526 1.5225464 1.5225441 1.5225528 1.5225485 1.5224202 1.5224118 1.5224837 1.5224801 1.5223619 1.5224325 1.5225175 1.5225145 1.5225106 1.5225069 1.5224621 1.5224706 1.5222892 1.5223742 1.5223615 1.5223726 1.5222695 1.5222951 1.5223929 1.522416 1.5223137 1.5223414 1.5223671 1.5222793 1.5224254 1.5224541 1.5224347 1.5224619 1.5224156 1.5224245 1.5224059 1.5224154 1.5224245 1.5224318 1.522413 1.5224034 1.5225004 1.5225045 1.5224934 1.5225112 1.5224895 1.5225081 1.5225135 1.5225108 1.5224936 1.5224949 1.5225077 1.5225058 1.5225145 1.5225382 1.5225095 1.5225335 1.5224973 1.5224932 1.522542 1.5225826 1.5225853 1.5225475 1.5225894 1.5225514 1.5225471 1.5225876 1.5225199 1.5225432 1.5225167 1.5225402 1.5224989 1.5225005 1.5225915 1.5225904 1.5225855 1.522587 1.5225049 1.5225105 1.5225119 1.5224936 1.5224921 1.5225042 1.5224982 1.5225075 1.5224805 1.5224896 1.5225021 1.5224937 1.5225736 1.5225362 1.5225437 1.522584 1.5225437 1.5225463 1.5225867 1.5225835 1.5225141 1.5225379 1.5225159 1.5225392 1.5224971 1.5224979 1.5225133 1.5225359 1.5224951 1.5225297 1.5224867 1.5225055 1.5225895 1.5225866 1.5225866 1.5225767 1.5226617 1.5226602 1.5226093 1.5225868 1.5226118 1.5225886 1.522626 1.5226279 1.5226663 1.5226641 1.5226134 1.5225907 1.5226157 1.5225945 1.5226304 1.5226331 1.5225396 1.5226111 1.5225571 1.5225303 1.5224947 1.5224669 1.5225148 1.5225753 1.5226378 1.5226336 1.5225807 1.5225563 1.5225981 1.5225853 1.5226033 1.5225617 1.5226932 1.5226851 1.5226338 1.5226159 1.5226461 1.5226252 1.5226517 1.5226614 1.5226963 1.522649 1.5226284 1.5226463 1.5226254 1.5226615 1.5226647 1.5226965 1.5226977 1.5226986 1.52265 1.5226295 1.5226514 1.5226303 1.5226665 1.5226658 1.5226935 1.5226462 1.5226254 1.5226455 1.5226252 1.5226608 1.5226614 1.5226971 1.5224538 1.5224762 1.5224448 1.5224679 1.5224208 1.5224324 1.5224808 1.5224874 1.5225265 1.5225212 1.5224777 1.5225185 1.5225297 1.5225243 1.522522 1.5225174 1.5225767 1.522558 1.522571 1.5225533 1.5226151 1.5225901 1.5225857 1.5226136 1.5226168 1.5226258 1.522583 1.5225649 1.522578 1.5225597 1.5225915 1.5225992 1.520619 1.5206185 1.5206179 1.5206173 1.5206274 1.520624 1.5206215 1.5206207 1.5206324 1.5206315 1.5206423 1.5206433 1.5206348 1.5206387 1.52065 1.5206457 1.5206564 1.5206613 1.5206736 1.5206681 1.5206543 1.5206531 1.520665 1.5206664 1.5206293 1.52063 1.520641 1.5206401 1.5206535 1.5206514 1.5206636 1.5206659 1.520651 1.520652 1.5206642 1.5206629 1.5206283 1.5206394 1.5206414 1.520629 1.5206926 1.5206984 1.5207096 1.5207031 1.5207113 1.5207085 1.5207195 1.5207229 1.52073 1.5207413 1.5207131 1.5207204 1.5207319 1.5207239 1.5206983 1.5206959 1.5206856 1.5206807 1.5210381 1.5209196 1.5209561 1.5209849 1.5208379 1.5208312 1.5208651 1.5208741 1.5208347 1.5208579 1.5208973 1.5208687 1.5209234 1.5209113 1.5209748 1.5209909 1.5207885 1.520804 1.5208259 1.5208073 1.5207861 1.5207496 1.5207726 1.5207411 1.5207622 1.5207731 1.520738 1.5207595 1.5207706 1.520772 1.5207383 1.5207596 1.5207849 1.5208037 1.5208086 1.5207869 1.5207371 1.5207587 1.5207704 1.5207359 1.5207576 1.520771 1.5208084 1.5207859 1.5207873 1.5208088 1.5207853 1.5207859 1.5208057 1.520805 1.5207369 1.5207584 1.5207697 1.5207692 1.5207358 1.520757 1.5208319 1.5208668 1.5208698 1.5208313 1.5209144 1.5209799 1.5209926 1.5209187 1.5210127 1.5210131 1.5209335 1.5209327 1.5208769 1.5208362 1.5208374 1.5208756 1.5208832 1.5209075 1.52092 1.5208986 1.5208642 1.5208856 1.5209359 1.5209568 1.5209371 1.5209143 1.5207923 1.5208142 1.5208396 1.5208037 1.520827 1.5208261 1.5208645 1.5208751 1.5208963 1.5208842 1.5208213 1.5208453 1.5208576 1.5208484 1.5208133 1.520836 1.5208549 1.5208416 1.5208622 1.5208748 1.5210947 1.5210171 1.5210018 1.5210696 1.5209244 1.5209616 1.5209486 1.5209103 1.5209891 1.5209814 1.5210519 1.5210563 1.5208897 1.5209012 1.5209364 1.5209263 1.5209652 1.5209843 1.5210207 1.5210024 1.52107 1.5211375 1.5211297 1.5210531 1.5207957 1.5207789 1.5207684 1.5207895 1.5208113 1.5208034 1.520797 1.5208042 1.5207965 1.520789 1.5207763 1.5207824 1.5207808 1.5207596 1.5207708 1.5207597 1.5207497 1.5207689 1.5208631 1.5208619 1.520895 1.5208728 1.5208251 1.5208171 1.5208251 1.5208181 1.520811 1.5208174 1.5208348 1.5208266 1.5208085 1.5208179 1.5208032 1.5207938 1.5207881 1.520803 1.5208091 1.5207936 1.5207086 1.5206949 1.5207155 1.5207145 1.520693 1.5207059 1.5207134 1.5206919 1.5207149 1.5206935 1.520706 1.5207043 1.5207219 1.5207283 1.5207275 1.5207204 1.5207212 1.5207274 1.5207283 1.520722 1.5207403 1.5207332 1.5207254 1.520732 1.5207252 1.5207033 1.520716 1.5207081 1.5206964 1.5207175 1.5207155 1.5206941 1.5207062 1.5207078 1.5206953 1.5207163 1.5207298 1.5207226 1.5207233 1.5207298 1.5207414 1.5207413 1.5207358 1.5207359 1.5207415 1.5207414 1.5207528 1.520744 1.5207527 1.5207465 1.5207383 1.5207441 1.5207526 1.5207618 1.5207499 1.5207498 1.5207403 1.5207388 1.5207403 1.5207343 1.5207334 1.5207389 1.5207486 1.5207472 1.520739 1.5207474 1.5207474 1.5207388 1.520739 1.5207332 1.5207335 1.5207384 1.521048 1.5212115 1.5210656 1.5212418 1.5212372 1.5213272 1.5211247 1.5210609 1.5210533 1.5212222 1.5210719 1.5212466 1.5210989 1.5212854 1.5212974 1.5210961 1.5213948 1.521215 1.5212082 1.5213942 1.5213692 1.5211774 1.5211491 1.5213211 1.5213131 1.5211364 1.5211323 1.5213105 1.5207219 1.520705 1.5207084 1.5207247 1.520697 1.520688 1.5207014 1.5207122 1.5206764 1.5206897 1.520693 1.5206785 1.5207282 1.5207159 1.5207322 1.5207462 1.5206653 1.5206634 1.5206748 1.5206822 1.5207469 1.5207625 1.5211152 1.5209577 1.5207765 1.5207576 1.5207704 1.5207925 1.5209636 1.5209712 1.5211721 1.5211417 1.5212035 1.5209814 1.5209953 1.5212402 1.5208101 1.5207849 1.5208019 1.5208304 1.5206107 1.5206106 1.5206227 1.5206166 1.5206095 1.5206092 1.5206086 1.5206102 1.5206203 1.5206209 1.5206331 1.5206324 1.5206217 1.5206199 1.520632 1.5206341 1.5206622 1.5206597 1.5206447 1.520647 1.5206449 1.5206457 1.5206597 1.5206588 1.5206222 1.5206223 1.5206348 1.5206346 1.5206354 1.5206281 1.5206406 1.5206491 1.5206691 1.5206536 1.5206634 1.5206793 1.5206479 1.5206623 1.520663 1.5206476 1.5214306 1.5214939 1.5211813 1.5211372 1.5211643 1.5215174 1.5215444 1.5212004 1.5212235 1.521575 1.5210069 1.5209464 1.5209654 1.5210283 1.5209011 1.5209197 1.5209308 1.5209888 1.5209503 1.5209745 1.5208495 1.5208468 1.5208667 1.5208678 1.5208309 1.5208001 1.5208191 1.5208057 1.5208247 1.5208348 1.5208167 1.5208352 1.5208451 1.5208687 1.5208363 1.5208566 1.520858 1.5208751 1.5209047 1.5208835 1.5209309 1.5208981 1.5209289 1.5209659 1.5208935 1.5208922 1.5209251 1.5209294 1.5210136 1.5209713 1.5210301 1.5210791 1.5210534 1.5209786 1.5209703 1.521033 1.5209905 1.521024 1.5210953 1.521056 1.5210698 1.5211328 1.5212186 1.5211448 1.52134 1.5214061 1.5217938 1.5217131 1.5216105 1.5212519 1.521288 1.5216535 1.5207825 1.5207805 1.5208003 1.5208027 1.5207363 1.5207556 1.5207649 1.520734 1.5207531 1.5207669 1.5207348 1.5207547 1.5207661 1.5207646 1.5207335 1.5207528 1.520801 1.5207795 1.520782 1.5208022 1.5207802 1.5207827 1.5208016 1.5207987 1.520815 1.5207933 1.520809 1.5208296 1.5207773 1.5207465 1.5207654 1.5207924 1.5207596 1.5207799 1.5207362 1.5207548 1.5207652 1.5207676 1.5207378 1.5207563 1.5209794 1.5209121 1.520908 1.520978 1.5208269 1.5208237 1.5208573 1.5208609 1.5208571 1.520842 1.5208783 1.5208938 1.5209278 1.5209963 1.5210193 1.5209437 1.5208268 1.5208299 1.5208662 1.5208624 1.5209112 1.5209157 1.5209841 1.5209786 1.520925 1.5209178 1.5209874 1.5209965 1.5208277 1.5208637 1.5208691 1.5208292 1.5213882 1.5213234 1.5213931 1.5210677 1.5210329 1.5210398 1.5208594 1.5208419 1.5209099 1.5208767 1.5208695 1.5208972 1.5208778 1.5208852 1.5209314 1.5209206 1.5210822 1.5210966 1.5214376 1.5214145 1.520795 1.5207891 1.5207945 1.5208007 1.5207764 1.5207583 1.5207821 1.5207877 1.5207627 1.5207817 1.5207878 1.5207701 1.5207954 1.5208136 1.5207866 1.5208058 1.5208213 1.5208026 1.5208089 1.5208281 1.5208194 1.5208398 1.5208342 1.5208145 1.5208193 1.5208394 1.5208033 1.5208095 1.5208057 1.5207992 1.5208033 1.52081 1.5208162 1.5208099 1.5208471 1.5208262 1.5208992 1.5209511 1.5208979 1.5208918 1.5209492 1.5209405 1.5209607 1.5209065 1.5211289 1.5211422 1.5214969 1.521472 1.5211103 1.5211229 1.5214804 1.5214595 1.5207382 1.5207366 1.5207367 1.520732 1.5207381 1.5207337 1.5207375 1.5207361 1.5207373 1.5207325 1.520732 1.5207363 1.5207432 1.5207447 1.5207435 1.5207451 1.5207214 1.520727 1.5207268 1.5207208 1.5207081 1.5206923 1.5207144 1.5207139 1.5206917 1.5207076 1.5207083 1.5206924 1.5207143 1.5207168 1.520695 1.5207108 1.5207267 1.5207206 1.5207287 1.5207229 1.520718 1.5206957 1.5207112 1.5207125 1.5206963 1.5207187 1.5207244 1.5207252 1.5207308 1.5207299 1.5207389 1.5207327 1.5207468 1.5207529 1.5207255 1.5207027 1.5207181 1.5207327 1.520715 1.5207391 1.5207404 1.5207389 1.5207347 1.520739 1.5207407 1.5207359 1.5207438 1.5207584 1.5207633 1.5207632 1.5207485 1.5207482 1.5207554 1.5207705 1.5207456 1.5207472 1.5210952 1.5212538 1.5211492 1.5213247 1.5212779 1.5213229 1.521132 1.5211064 1.5211997 1.5213736 1.5212955 1.5214748 1.5214789 1.5216548 1.5218978 1.5220453 1.5212468 1.5210632 1.5210593 1.5212277 1.5212548 1.5210686 1.5210775 1.5212615 1.5212387 1.5210526 1.5210527 1.5212245 1.5212603 1.5210744 1.5210967 1.521281 1.5224971 1.522496 1.5224927 1.5224829 1.5224935 1.5224965 1.5224967 1.5224987 1.522483 1.522484 1.5224816 1.5224809 1.5224823 1.5224792 1.5224768 1.5224801 1.5224743 1.5224755 1.5224788 1.5224778 1.5224796 1.5224802 1.5224791 1.5224787 1.5224813 1.5224822 1.5224797 1.5224788 1.5224614 1.5224729 1.5224716 1.5224598 1.5224773 1.5224782 1.5224772 1.5224761 1.5224776 1.5224748 1.5224636 1.5224669 1.5222698 1.5223569 1.5224167 1.5224082 1.5224047 1.5223947 1.5224041 1.5223935 1.522346 1.5222439 1.5223457 1.5222404 1.5224043 1.5223934 1.5223932 1.5224045 1.522347 1.5222396 1.5222399 1.5223489 1.522448 1.5224416 1.522447 1.5224402 1.5224342 1.5224373 1.522436 1.5224329 1.5224397 1.5224392 1.5224466 1.5224468 1.5224355 1.5224322 1.5224349 1.5224315 1.5224465 1.5224493 1.5224591 1.522454 1.5225079 1.5225248 1.522508 1.5225259 1.5225406 1.5225392 1.5225815 1.522557 1.5225589 1.5225816 1.5225535 1.522555 1.5225783 1.5225789 1.5225014 1.5225199 1.5224961 1.5225152 1.5225313 1.5225348 1.5225569 1.5225572 1.5225796 1.5225804 1.5225378 1.5225365 1.5225039 1.5225205 1.5225058 1.5225223 1.5225069 1.5225228 1.5225404 1.5225365 1.5225085 1.5225247 1.5225536 1.5225581 1.5225803 1.5225747 1.522608 1.5226012 1.5226345 1.5226428 1.5226075 1.5226099 1.5226472 1.5226427 1.5226869 1.5227359 1.5226766 1.5227429 1.5226945 1.5227547 1.5227502 1.5226873 1.5226101 1.5226097 1.5226451 1.5226458 1.522753 1.5226911 1.52269 1.5227487 1.5227625 1.5226958 1.5227133 1.5227811 1.5226075 1.5226442 1.5226555 1.5226109 1.5223944 1.522276 1.5222946 1.5224148 1.5222607 1.5222433 1.5222501 1.5223472 1.5223649 1.522377 1.5224041 1.5224165 1.522429 1.5224518 1.5224213 1.5224367 1.5224451 1.5224654 1.522494 1.5224695 1.5224779 1.5224959 1.5224956 1.522465 1.52248 1.5225114 1.5225297 1.5225057 1.5225043 1.5225279 1.5224549 1.5224699 1.5224843 1.5224865 1.5224568 1.5224714 1.5225386 1.5225136 1.5225308 1.5225549 1.5225852 1.5225674 1.5226038 1.5226233 1.5226004 1.5225592 1.5225557 1.5225909 1.5227162 1.5226355 1.5226485 1.5226923 1.52265 1.5226716 1.522733 1.5227086 1.5223545 1.5223189 1.5224773 1.5224407 1.522491 1.5225223 1.5225581 1.5225234 1.5226033 1.5225646 1.5226171 1.522661 1.5223972 1.5225205 1.5225757 1.5224525 1.5222446 1.522239 1.5223547 1.5223386 1.5223461 1.52224 1.5224054 1.5224015 1.5223936 1.5223899 1.5223889 1.522402 1.5223871 1.522401 1.5224007 1.522386 1.5222375 1.5222353 1.5223428 1.5223443 1.5223858 1.5223909 1.5224079 1.5223869 1.5224035 1.5224014 1.5222337 1.5223428 1.5222338 1.5222329 1.5223429 1.5223424 1.5222363 1.5223479 1.5223959 1.522414 1.5224446 1.522441 1.5224372 1.5224475 1.5224287 1.5224328 1.5224355 1.5224313 1.5224606 1.522448 1.5224505 1.522439 1.522442 1.5224544 1.522455 1.5224688 1.5224305 1.5224296 1.5224279 1.5224317 1.522433 1.5224341 1.5224273 1.5224272 1.5224312 1.5224314 1.5224367 1.5224372 1.5224478 1.5224464 1.5224384 1.5224382 1.5224467 1.5224457 1.522446 1.522437 1.5224736 1.5224773 1.5224786 1.522475 1.5224777 1.5224787 1.5224782 1.522479 1.5224782 1.5224781 1.5224769 1.5224773 1.5224732 1.522474 1.5224732 1.5224769 1.52248 1.5224787 1.5224786 1.52248 1.5224911 1.5224823 1.5224825 1.5224919 1.5224861 1.5224857 1.522487 1.5224901 1.5224775 1.5224811 1.5224847 1.5224809 1.5224948 1.5224976 1.5224984 1.5224995 1.5224913 1.5224912 1.5224995 1.5224992 1.5224816 1.5224855 1.5224855 1.522481 1.5224763 1.5224855 1.5224804 1.5224769 1.5224704 1.5224655 1.5224938 1.5224861 1.5224761 1.5224772 1.5224767 1.5224756 1.5224762 1.5224748 1.522458 1.5224605 1.5224704 1.5224712 1.5224709 1.5224593 1.5224717 1.5224603 1.5224622 1.5224733 1.5224764 1.5224773 1.5224781 1.5224789 1.5224927 1.5225125 1.5225191 1.5225401 1.522488 1.5224683 1.5224519 1.5224693 1.5227546 1.5226774 1.5225745 1.5226175 1.5207138 1.5207097 1.5207126 1.5207214 1.5207178 1.5207097 1.5207036 1.5206924 1.5207006 1.5207112 1.5207008 1.5206932 1.5207126 1.5207169 1.5206589 1.5206797 1.5206714 1.5206507 1.5206969 1.5206839 1.5206869 1.5206755 1.5206958 1.5207068 1.5206491 1.5206568 1.5206396 1.5206327 1.5206404 1.5206332 1.5206476 1.5206383 1.5206308 1.5206316 1.5206393 1.5206388 1.5206303 1.520631 1.5205915 1.5206081 1.5206097 1.5205921 1.5206179 1.5205998 1.5205935 1.5206102 1.5206241 1.5206149 1.5206319 1.5206216 1.5206344 1.5206418 1.5206219 1.5206125 1.520623 1.5206137 1.5206326 1.5206321 1.5205903 1.5205908 1.5205986 1.5205922 1.5206294 1.5206284 1.5206362 1.5206281 1.5206372 1.5206287 1.5206275 1.5206274 1.5206362 1.5206367 1.5206278 1.5206268 1.5205887 1.5205898 1.5206059 1.5206042 1.5206079 1.5205903 1.5205905 1.5206066 1.52062 1.5206107 1.5206213 1.5206121 1.52063 1.5206311 1.5206195 1.52061 1.5206175 1.5206084 1.5206282 1.5206296 1.5205891 1.5205888 1.5205882 1.520587 1.5206174 1.5206291 1.5206086 1.5205404 1.5205403 1.520563 1.5205732 1.5205622 1.5205726 1.520556 1.5205561 1.5205421 1.5205483 1.5205702 1.5205642 1.5205801 1.5205638 1.5205579 1.5205745 1.5205391 1.5205392 1.5205614 1.5205716 1.5205604 1.5205712 1.5205547 1.5205544 1.5205389 1.5205388 1.5205604 1.5205707 1.5205611 1.5205703 1.5205541 1.5205538 1.5206178 1.5206168 1.520617 1.5206282 1.520628 1.5206166 1.5206156 1.5206181 1.5206165 1.5206271 1.520629 1.5206176 1.5206054 1.5205982 1.520604 1.5205969 1.5206178 1.5206189 1.5206043 1.5205972 1.520606 1.5205984 1.5206192 1.520618 1.5205755 1.5205775 1.5205916 1.5205898 1.5205755 1.5205896 1.5205912 1.520576 1.5205763 1.5205742 1.5205744 1.5205738 1.5206314 1.5206218 1.5206327 1.5206218 1.5206431 1.5206311 1.5206176 1.5206283 1.5206176 1.520629 1.5206184 1.5206174 1.5205767 1.5205766 1.5205907 1.5205908 1.5205975 1.520619 1.5206043 1.5205974 1.5206043 1.5206186 1.5206175 1.5206097 1.5206078 1.5206016 1.5206226 1.5206324 1.5205791 1.5205875 1.5206022 1.5205933 1.520575 1.5205754 1.5205774 1.5205855 1.5206325 1.5206462 1.5206555 1.5206404 1.5206407 1.5206262 1.5206297 1.5206433 1.5206576 1.5206511 1.5206547 1.5206483 1.520674 1.5206727 1.5206704 1.5206694 1.5206722 1.5206688 1.5206815 1.5206852 1.5206608 1.5206554 1.5206704 1.5206644 1.5206884 1.5206877 1.5206784 1.5206774 1.5206889 1.520678 1.5206901 1.5207013 1.5206306 1.5206381 1.5206245 1.5206279 1.5211379 1.5208033 1.520815 1.5211657 1.520702 1.5206896 1.5207067 1.520719 1.5207348 1.5207566 1.5207719 1.5207629 1.5207482 1.5207394 1.5208959 1.5211712 1.5212123 1.5208868 1.5208703 1.5211868 1.5207331 1.5207313 1.5207155 1.520713 1.5207549 1.5207343 1.5208289 1.520844 1.5211853 1.5211411 1.5212015 1.520863 1.5207027 1.5206872 1.520795 1.5211422 1.5205373 1.5205377 1.5205523 1.5205604 1.520553 1.5205611 1.5205479 1.5205484 1.5205383 1.5205378 1.5205548 1.5205625 1.5205527 1.5205608 1.5205497 1.5205485 1.520539 1.5205391 1.5205542 1.520562 1.5205536 1.5205619 1.5205495 1.5205494 1.5205413 1.5205482 1.5205559 1.5205642 1.5205647 1.5205719 1.5205515 1.5205595 1.5206093 1.5206029 1.5206198 1.5206266 1.5206127 1.5206196 1.5206093 1.5206161 1.5205999 1.5205956 1.5206101 1.5206167 1.520607 1.5206135 1.5206028 1.5206067 1.5206806 1.5206685 1.5206741 1.5206795 1.5206869 1.5206937 1.5206717 1.5206837 1.5210516 1.5207706 1.5211307 1.5211077 1.5207762 1.520787 1.5207709 1.5211236 1.522437 1.5224402 1.5224361 1.5224388 1.5224332 1.5224359 1.5224425 1.5224494 1.5224472 1.5224398 1.5224446 1.5224515 1.5224541 1.5224614 1.5224494 1.5224574 1.5224354 1.5224322 1.5224748 1.5225086 1.5225112 1.5224802 1.5225135 1.5224829 1.5224869 1.5225188 1.522459 1.5224665 1.5224648 1.5224716 1.5224475 1.5224396 1.5225183 1.5225159 1.5225269 1.5225211 1.5223944 1.5223786 1.5224527 1.5224441 1.5223379 1.5224085 1.5224886 1.5224805 1.5224804 1.5224724 1.5224389 1.522448 1.5222644 1.5223582 1.5223539 1.5223551 1.5222548 1.5222561 1.5223802 1.522383 1.5223018 1.5223015 1.522355 1.5222637 1.5224126 1.5224206 1.5224225 1.5224297 1.5224024 1.5224075 1.5223916 1.5223975 1.5223968 1.5224067 1.5224036 1.5223934 1.5224852 1.5224892 1.522484 1.5224861 1.5224803 1.5224824 1.5224873 1.5224865 1.5224846 1.5224854 1.5224917 1.5224905 1.522504 1.5225103 1.5224994 1.522506 1.5224853 1.5224814 1.5225228 1.5225532 1.5225554 1.5225278 1.5225597 1.5225317 1.522528 1.5225583 1.5225092 1.5225146 1.5225065 1.5225123 1.5224869 1.522488 1.522566 1.5225653 1.5225598 1.5225612 1.5224895 1.5224848 1.5224859 1.522484 1.522483 1.5224889 1.522472 1.5224819 1.5224705 1.5224803 1.5224865 1.5224775 1.5225446 1.522517 1.5225246 1.5225548 1.5225251 1.5225273 1.5225575 1.5225549 1.5225042 1.5225103 1.5225058 1.5225114 1.5224852 1.522486 1.5225032 1.5225084 1.5224831 1.5225007 1.5224739 1.5224952 1.5225646 1.5225617 1.5225616 1.5225522 1.5225895 1.5225529 1.5225918 1.5225551 1.5225944 1.5225576 1.5225981 1.5225623 1.522536 1.5224943 1.5224826 1.5224384 1.5225596 1.5225203 1.5225659 1.5225272 1.5226179 1.5225852 1.5226281 1.5225947 1.5226314 1.5225978 1.5226281 1.5225947 1.5226323 1.5225987 1.522633 1.5225994 1.5226276 1.5225943 1.5226267 1.5225934 1.5224443 1.522448 1.5224345 1.5224378 1.5224058 1.5224193 1.5224618 1.5224693 1.5224995 1.5224934 1.5224584 1.5224906 1.5225077 1.522501 1.5224987 1.522494 1.5225617 1.5225307 1.5225569 1.522526 1.5225699 1.5225387 1.5225631 1.5225326 1.5206403 1.5206396 1.5206398 1.5206395 1.5206503 1.5206445 1.5206429 1.5206421 1.5206624 1.5206614 1.5206704 1.5206718 1.5206635 1.5206706 1.5206799 1.5206725 1.5206824 1.5206902 1.520702 1.520694 1.5206821 1.5206806 1.5206923 1.520694 1.5206595 1.5206604 1.5206698 1.5206687 1.5206835 1.5206806 1.5206923 1.5206953 1.5206788 1.5206802 1.5206921 1.5206905 1.5206601 1.5206695 1.5206722 1.5206616 1.52072 1.52073 1.5207377 1.5207278 1.5207416 1.5207373 1.520745 1.5207539 1.5207649 1.5207365 1.5207465 1.5207573 1.5207468 1.520724 1.5207205 1.5207122 1.520703 1.5210285 1.52092 1.5209556 1.5209779 1.5208415 1.5208359 1.5208684 1.5208759 1.5208397 1.520863 1.5209007 1.5208723 1.5209213 1.5209113 1.5209674 1.5209806 1.5207953 1.5208112 1.5208321 1.5208132 1.5207943 1.5207624 1.5207819 1.5207531 1.5207711 1.5207809 1.5207503 1.5207685 1.5207785 1.5207793 1.5207503 1.5207682 1.5207917 1.5208095 1.5208135 1.5207931 1.5207487 1.5207665 1.5207779 1.520748 1.5207662 1.5207778 1.5208142 1.5207925 1.5207932 1.5208138 1.5207918 1.5207921 1.5208107 1.5208106 1.520749 1.5207669 1.520777 1.5207767 1.5207478 1.5207656 1.5208358 1.5208691 1.5208731 1.5208359 1.5209131 1.5209707 1.5209846 1.5209187 1.5210021 1.5210048 1.5209337 1.5209311 1.5208805 1.5208411 1.5208413 1.5208779 1.520897 1.5209188 1.5209301 1.5209061 1.5208759 1.5208942 1.5209449 1.5209645 1.5209421 1.5209206 1.5208045 1.5208228 1.5208492 1.5208174 1.5208377 1.5208337 1.5208725 1.520883 1.5209031 1.5208912 1.5208351 1.5208556 1.5208667 1.5208575 1.5208266 1.5208464 1.5208634 1.5208483 1.520868 1.5208824 1.5210861 1.5210171 1.5210026 1.5210628 1.5209298 1.5209654 1.5209529 1.5209162 1.5209911 1.520981 1.5210432 1.5210507 1.5208944 1.5209078 1.5209416 1.5209296 1.5209687 1.5209906 1.5210251 1.521004 1.5210706 1.52113 1.5211183 1.5210507 1.5208073 1.5207829 1.5207812 1.5208014 1.5208225 1.5208149 1.5208089 1.5208157 1.5208081 1.520801 1.5207867 1.5207923 1.5207929 1.5207727 1.5207747 1.5207632 1.5207615 1.5207796 1.5208685 1.5208701 1.5208996 1.5208757 1.5208315 1.5208238 1.5208341 1.5208284 1.5208216 1.5208268 1.5208384 1.5208305 1.5208152 1.5208218 1.5208058 1.5207992 1.5207971 1.5208136 1.5208184 1.5208014 1.520713 1.5207082 1.520727 1.5207263 1.5207066 1.5207104 1.5207252 1.5207054 1.5207266 1.5207071 1.5207102 1.5207085 1.520733 1.5207387 1.520738 1.5207317 1.5207324 1.5207378 1.5207379 1.5207326 1.5207512 1.5207448 1.5207368 1.5207427 1.5207375 1.5207171 1.5207204 1.5207123 1.5207095 1.5207293 1.5207279 1.5207076 1.5207105 1.5207119 1.5207086 1.5207281 1.520741 1.5207346 1.5207347 1.5207404 1.5207468 1.5207471 1.5207452 1.5207459 1.5207502 1.5207494 1.5207584 1.5207497 1.5207609 1.5207561 1.5207479 1.5207523 1.5207558 1.5207647 1.5207531 1.5207527 1.5207457 1.5207444 1.5207481 1.5207435 1.5207428 1.5207469 1.5207514 1.5207502 1.5207443 1.5207501 1.5207494 1.5207434 1.5207467 1.5207423 1.5207419 1.5207454 1.5207613 1.5207459 1.5207515 1.5207662 1.5207427 1.520728 1.5207419 1.5207578 1.5207174 1.5207309 1.5207364 1.5207218 1.5207731 1.5207563 1.5207715 1.5207892 1.5206895 1.5206856 1.5206953 1.5207075 1.520757 1.5207827 1.5212055 1.5209111 1.5208216 1.5207921 1.5208079 1.5208392 1.5209478 1.5209677 1.5212928 1.5212659 1.5213224 1.5209898 1.5210142 1.5213551 1.5208575 1.5208243 1.5208415 1.520877 1.5206332 1.5206325 1.5206475 1.520637 1.5206315 1.5206315 1.5206304 1.5206327 1.5206576 1.5206579 1.5206694 1.5206689 1.5206595 1.520657 1.5206684 1.5206712 1.5206971 1.5206942 1.5206804 1.5206833 1.5206808 1.5206813 1.5206941 1.5206935 1.5206602 1.5206598 1.5206717 1.5206719 1.5206774 1.5206646 1.5206766 1.5206904 1.5207037 1.5206892 1.5207037 1.5207178 1.520684 1.5206971 1.5206983 1.5206842 1.521474 1.52154 1.5211859 1.5211499 1.5211708 1.5215603 1.5215842 1.5212035 1.5212254 1.5216119 1.521011 1.5209472 1.5209651 1.5210313 1.5209102 1.5209232 1.5209329 1.5209944 1.5209628 1.5209817 1.5208544 1.5208508 1.5208699 1.520872 1.5208357 1.5208104 1.5208251 1.5208163 1.5208314 1.5208406 1.5208269 1.520841 1.5208497 1.5208738 1.5208473 1.5208631 1.5208615 1.5208777 1.5209072 1.5208872 1.5209321 1.5208995 1.520929 1.5209652 1.5208958 1.5208958 1.5209277 1.5209304 1.5210091 1.5209683 1.5210201 1.5210666 1.5210431 1.5209764 1.5209701 1.5210258 1.520989 1.5210211 1.5210957 1.5210578 1.5210635 1.5211194 1.521208 1.5211419 1.5213363 1.5213954 1.5218077 1.5217381 1.5216446 1.5212528 1.5212875 1.5216844 1.5207879 1.5207864 1.5208058 1.5208076 1.5207465 1.5207622 1.520771 1.5207444 1.5207601 1.5207727 1.5207456 1.5207618 1.5207723 1.520771 1.520744 1.5207599 1.5208058 1.5207849 1.520787 1.5208064 1.5207846 1.5207875 1.5208056 1.5208022 1.5208187 1.5207977 1.520814 1.5208335 1.5207825 1.5207566 1.5207716 1.5207985 1.5207707 1.5207873 1.5207464 1.5207613 1.5207706 1.5207732 1.5207479 1.520763 1.5209684 1.5209107 1.5209051 1.520969 1.5208301 1.520826 1.5208581 1.5208628 1.5208598 1.520845 1.5208801 1.5208947 1.5209265 1.5209872 1.5210078 1.5209409 1.5208319 1.5208339 1.5208691 1.5208667 1.5209127 1.5209154 1.5209761 1.5209729 1.5209234 1.5209179 1.5209798 1.5209866 1.5208319 1.5208668 1.5208711 1.5208326 1.5214133 1.5213699 1.5214434 1.5210825 1.5210513 1.5210481 1.5208653 1.5208594 1.5209254 1.5208972 1.5208822 1.5209039 1.5208888 1.5208944 1.5209428 1.5209342 1.5210954 1.5211077 1.5214805 1.5214615 1.5208071 1.5208001 1.5208039 1.5208112 1.5207822 1.5207743 1.5207947 1.5208015 1.5207797 1.520788 1.5207938 1.5207868 1.5208084 1.5208273 1.5208043 1.5208118 1.5208333 1.5208141 1.5208189 1.5208384 1.5208237 1.5208442 1.5208426 1.5208227 1.5208257 1.520846 1.5208072 1.5208141 1.5208144 1.5208069 1.5208093 1.5208169 1.5208183 1.5208113 1.5208491 1.5208281 1.5209028 1.5209564 1.520903 1.520899 1.520956 1.5209497 1.5209632 1.5209075 1.5211343 1.5211446 1.5215186 1.5214993 1.5211191 1.5211294 1.5215136 1.5214975 1.5207421 1.5207408 1.5207433 1.5207403 1.5207446 1.5207418 1.5207417 1.5207405 1.5207438 1.5207406 1.5207405 1.5207432 1.5207452 1.5207465 1.5207454 1.5207467 1.5207323 1.5207366 1.5207369 1.5207323 1.5207133 1.5207069 1.5207265 1.5207266 1.5207066 1.520713 1.5207135 1.520707 1.5207266 1.520729 1.5207097 1.5207158 1.5207365 1.5207318 1.5207383 1.5207339 1.5207299 1.5207105 1.5207161 1.5207177 1.5207112 1.5207309 1.5207351 1.5207363 1.5207406 1.5207394 1.5207481 1.5207433 1.5207583 1.520763 1.5207374 1.5207177 1.5207232 1.5207381 1.5207308 1.5207521 1.5207447 1.5207431 1.5207429 1.5207457 1.5207475 1.5207443 1.5207515 1.5207669 1.5207678 1.5207702 1.5207524 1.5207544 1.520757 1.5207727 1.5207475 1.5207492 1.5224815 1.522487 1.5224808 1.522486 1.5224774 1.5224825 1.5224667 1.5224723 1.5224787 1.5224837 1.5224822 1.5224868 1.5224827 1.5224874 1.5224833 1.5224886 1.5224811 1.5224816 1.5224807 1.5224802 1.5224802 1.5224771 1.5224761 1.5224794 1.5224743 1.5224753 1.5224786 1.5224778 1.5224795 1.5224799 1.5224791 1.5224787 1.5224788 1.5224797 1.5224786 1.5224778 1.5224604 1.5224724 1.5224714 1.5224591 1.5224769 1.5224778 1.522477 1.5224759 1.5224749 1.5224736 1.5224619 1.5224637 1.5222493 1.5222523 1.5223546 1.5223496 1.5224053 1.522408 1.5223953 1.5223987 1.5224056 1.5223952 1.5224063 1.5223956 1.522351 1.5222438 1.5223526 1.5222439 1.5224068 1.5223957 1.5223952 1.5224066 1.5223541 1.5222445 1.5222449 1.522355 1.5224478 1.522451 1.5224408 1.522445 1.5224479 1.5224407 1.5224338 1.5224378 1.5224367 1.5224406 1.5224366 1.5224336 1.5224404 1.5224398 1.5224475 1.5224479 1.5224364 1.5224331 1.5224356 1.5224321 1.5224339 1.5224367 1.5224477 1.5224405 1.5225121 1.5225128 1.5225069 1.522501 1.5225078 1.5225101 1.5225108 1.5225123 1.5222432 1.5223548 1.522406 1.5224249 1.5224824 1.5224677 1.5224574 1.5224596 1.52225 1.5222427 1.5223613 1.5223485 1.5224084 1.5224036 1.5223965 1.5223912 1.5223894 1.522407 1.5222329 1.5223449 1.5222344 1.5223486 1.5223936 1.5224122 1.5224421 1.5224396 1.5224355 1.5224454 1.5224598 1.5224465 1.5224527 1.5224669 1.522432 1.5224294 1.522433 1.5224357 1.52244 1.522438 1.5224484 1.5224464 1.5224788 1.5224782 1.5224793 1.5224786 1.522478 1.5224771 1.5224742 1.5224735 1.5224906 1.5224911 1.5224862 1.5224897 1.5224929 1.5224963 1.522497 1.5224977 1.5224907 1.5224911 1.5224982 1.5224975 1.5224859 1.5224766 1.522493 1.5224844 1.5224771 1.5224767 1.5224756 1.522476 1.5224586 1.5224592 1.5224715 1.5224709 1.5207222 1.5207243 1.5207283 1.5207266 1.5207226 1.5207178 1.5207122 1.5207073 1.5207181 1.5207166 1.5207052 1.5207005 1.52072 1.5207243 1.5206746 1.5206902 1.5206805 1.5206653 1.5207024 1.5206994 1.5206912 1.5206893 1.5207012 1.5207142 1.520662 1.5206713 1.5206477 1.5206401 1.5206457 1.5206487 1.5206534 1.5206561 1.5206471 1.5206477 1.5206445 1.5206441 1.5206379 1.5206383 1.5206043 1.5206163 1.5206175 1.5206047 1.5206262 1.5206129 1.5206063 1.5206184 1.5206283 1.5206274 1.5206362 1.5206346 1.5206404 1.5206482 1.5206261 1.520625 1.5206269 1.5206258 1.5206384 1.5206381 1.5206023 1.5206024 1.5206111 1.5206044 1.5206369 1.5206359 1.5206416 1.5206447 1.5206426 1.5206457 1.5206455 1.5206459 1.5206423 1.5206424 1.5206357 1.5206349 1.5206002 1.520602 1.5206137 1.5206114 1.5206158 1.520603 1.5206026 1.5206143 1.5206238 1.5206229 1.5206252 1.5206241 1.5206359 1.5206369 1.5206233 1.5206224 1.5206209 1.5206206 1.5206342 1.5206356 1.5206007 1.5206002 1.5205996 1.5205973 1.5206258 1.5206445 1.520572 1.5205875 1.5205719 1.5205873 1.5205805 1.5205957 1.5205739 1.5205893 1.5205706 1.5205859 1.5205701 1.5205855 1.5205697 1.5205849 1.5205688 1.5205834 1.5206275 1.5206402 1.52064 1.5206363 1.5206361 1.5206264 1.5206392 1.5206412 1.5206262 1.5206351 1.5206372 1.5206274 1.5206085 1.52061 1.5206073 1.5206088 1.5206248 1.520626 1.5206077 1.5206092 1.5206093 1.5206105 1.5206264 1.5206252 1.5205856 1.5205878 1.5205985 1.5205965 1.5205853 1.5205962 1.5205976 1.5205859 1.5205856 1.5205837 1.5205836 1.5205831 1.5206419 1.5206314 1.5206407 1.5206452 1.5206521 1.5206567 1.5206275 1.5206366 1.5206407 1.5206371 1.5206414 1.5206271 1.5205867 1.5205865 1.5205973 1.5205975 1.5206098 1.5206263 1.5206076 1.5206094 1.5206077 1.5206258 1.5206208 1.5206223 1.5206109 1.5206133 1.5206297 1.5206401 1.5205888 1.5205975 1.5206088 1.5205997 1.5205843 1.5205845 1.5205865 1.5205948 1.5206412 1.5206524 1.5206615 1.5206491 1.5206468 1.520635 1.5206386 1.5206496 1.5206609 1.5206636 1.5206577 1.5206604 1.5206823 1.5206842 1.5206781 1.5206803 1.5206997 1.5206957 1.5206909 1.5206952 1.520664 1.5206677 1.5206733 1.5206771 1.5206965 1.5206994 1.5206863 1.5206887 1.5207171 1.5207049 1.5206998 1.5207114 1.5206387 1.5206459 1.5206324 1.5206361 1.5211762 1.5208055 1.5208179 1.5212013 1.5207066 1.5206958 1.5207123 1.520723 1.5207454 1.5207677 1.5207819 1.5207901 1.5207578 1.5207646 1.5209065 1.5212411 1.5212482 1.5208959 1.5208783 1.5212261 1.5207348 1.520742 1.5207176 1.5207234 1.5207616 1.5207412 1.5208315 1.5208475 1.5212171 1.5211751 1.5212551 1.5208698 1.5207074 1.5206929 1.5207964 1.5211953 1.5205594 1.5205712 1.5205599 1.5205717 1.5205616 1.5205736 1.5205601 1.5205718 1.5205609 1.5205726 1.5205607 1.5205725 1.5205627 1.5205746 1.5205711 1.5205827 1.5206246 1.5206349 1.5206177 1.5206279 1.5206151 1.5206253 1.5206115 1.5206218 1.5206767 1.5206846 1.5206889 1.5206982 1.5211727 1.5211635 1.5207745 1.5207865 1.5224297 1.5224326 1.5224323 1.5224348 1.5224297 1.5224321 1.5224385 1.5224462 1.5224446 1.522436 1.5224365 1.522445 1.5224476 1.5224428 1.5224432 1.5224391 1.5224615 1.5224871 1.5224897 1.5224666 1.5224928 1.5224698 1.5224754 1.5224997 1.5224528 1.5224475 1.5224597 1.5224545 1.5223571 1.52242 1.5223246 1.5223932 1.5224585 1.5224493 1.5224239 1.5224341 1.5222555 1.5223522 1.522353 1.5223539 1.5222515 1.5222501 1.5223731 1.5223639 1.522298 1.5222794 1.5224052 1.5223997 1.5224161 1.5224102 1.5223999 1.522389 1.5223928 1.522403 1.5224003 1.5223894 1.5224778 1.5224815 1.5224799 1.5224814 1.5224763 1.5224778 1.5224825 1.522482 1.5224807 1.5224811 1.5224835 1.5224829 1.5224982 1.5224931 1.5224939 1.522489 1.5225108 1.522534 1.5225359 1.5225154 1.5225403 1.5225193 1.5225164 1.5225396 1.5225032 1.5224967 1.522501 1.5224952 1.5224818 1.5224802 1.5224809 1.5224797 1.5224789 1.5224812 1.5224666 1.5224771 1.5224656 1.522476 1.5224786 1.5224689 1.5225267 1.522506 1.5225131 1.5225361 1.5225138 1.5225158 1.5225389 1.5225365 1.5224988 1.5224933 1.5225004 1.5224943 1.5224977 1.5224915 1.5224828 1.5224903 1.52244 1.5224306 1.5224294 1.5224187 1.5224501 1.522459 1.5224827 1.5224751 1.5224468 1.5224724 1.5206555 1.5206514 1.5206545 1.5206507 1.520657 1.520652 1.5206556 1.5206511 1.5206659 1.5206618 1.5206582 1.5206552 1.5206574 1.5206537 1.5206566 1.5206529 1.5206709 1.5206699 1.5206787 1.5206799 1.5206717 1.5206793 1.5206882 1.5206804 1.5206899 1.5206978 1.5207083 1.5207002 1.5206896 1.5206882 1.5206986 1.5207001 1.5206681 1.520669 1.5206781 1.520677 1.5206917 1.5206886 1.5206989 1.5207019 1.5206865 1.5206877 1.5206982 1.5206968 1.5206692 1.5206782 1.5206812 1.5206712 1.5207268 1.5207129 1.5207368 1.5207225 1.5207444 1.5207343 1.5207481 1.5207339 1.520744 1.52073 1.5207516 1.5207604 1.5207705 1.5207427 1.5207529 1.5207627 1.5207519 1.5207358 1.5207317 1.5207255 1.520715 1.5207726 1.5207629 1.5207603 1.5207599 1.5207573 1.5207574 1.5207585 1.5207573 1.520909 1.5208851 1.5208139 1.520829 1.5208463 1.5208378 1.5207859 1.5207923 1.5207841 1.5207776 1.5207658 1.5207716 1.5208751 1.5209052 1.5208799 1.5208387 1.5208313 1.5208431 1.5208356 1.5208227 1.5208269 1.5208095 1.5208052 1.5207168 1.5207199 1.5207187 1.5207141 1.5207172 1.5207187 1.5207131 1.5207119 1.5207292 1.5207239 1.5207157 1.5207209 1.5207197 1.5207142 1.5207152 1.52072 1.5207532 1.5207539 1.5207648 1.5207563 1.5207601 1.5207687 1.5207576 1.5207568 1.5207517 1.5207506 1.5207553 1.5207542 1.5207502 1.5207538 1.5207524 1.5207487 1.5207701 1.5207573 1.5207636 1.5207755 1.5207584 1.5207273 1.5207433 1.520714 1.5207558 1.5207718 1.5207321 1.5207038 1.5207442 1.5207504 1.5207371 1.5207081 1.5207851 1.5207682 1.5207807 1.5207983 1.5207169 1.5207124 1.5207223 1.5207357 1.5207839 1.520776 1.5208111 1.5208031 1.5212727 1.5212362 1.5209298 1.5209276 1.5208386 1.5208079 1.5208223 1.5208548 1.5209654 1.5209849 1.5213283 1.5213022 1.5213559 1.5210053 1.5210264 1.5213848 1.5208709 1.5208365 1.5208507 1.5208873 1.5206556 1.5206486 1.520655 1.5206479 1.5206724 1.5206643 1.5206598 1.5206526 1.520654 1.5206466 1.520654 1.5206466 1.5206531 1.5206457 1.5206553 1.520648 1.5206701 1.5206701 1.5206805 1.5206805 1.5206719 1.5206694 1.5206799 1.5206825 1.5207047 1.5207021 1.5206904 1.5206931 1.5206909 1.520691 1.5207017 1.5207016 1.5206726 1.520672 1.5206828 1.5206833 1.5206907 1.5206773 1.5206883 1.5207025 1.5207115 1.5206993 1.5207142 1.5207259 1.5206936 1.5207046 1.520706 1.5206941 1.5215219 1.521158 1.5209153 1.5209716 1.5208174 1.5208241 1.520834 1.5208552 1.5207539 1.5207521 1.5207535 1.5207519 1.5207637 1.5207791 1.5207539 1.5207556 1.5214396 1.5214233 1.5210674 1.5210544 1.5208693 1.5208735 1.5209145 1.5209088 1.5207866 1.5207879 1.5207946 1.5207933 1.5207984 1.5208007 1.5208193 1.5208165 1.5208283 1.520849 1.5208114 1.5208191 1.5208214 1.5208136 1.5208518 1.5208308 1.5209061 1.5209612 1.5209659 1.520909 1.5211385 1.5211468 1.5215406 1.5215274 1.5207469 1.5207458 1.5207465 1.5207457 1.5207484 1.5207493 1.5207485 1.5207496 1.5207175 1.5207195 1.5207198 1.5207177 1.520718 1.5207197 1.5207225 1.5207203 1.5207231 1.5207201 1.5207219 1.5207239 1.5207304 1.5207274 1.5207426 1.5207446 1.52075 1.5207482 1.520773 1.520757 1.5207596 1.5207759 1.5207507 1.5207526 1.5224796 1.5224817 1.522479 1.5224809 1.5224755 1.5224772 1.5224643 1.5224664 1.522477 1.5224789 1.5224804 1.522482 1.5224811 1.5224828 1.5224814 1.5224835 1.5224815 1.5224819 1.5224817 1.5224813 1.5224807 1.5224775 1.5224771 1.5224805 1.5224755 1.5224765 1.52248 1.5224792 1.5224807 1.5224812 1.5224804 1.5224799 1.5224789 1.5224797 1.5224794 1.5224785 1.5224608 1.5224735 1.5224726 1.5224597 1.5224779 1.5224789 1.5224781 1.5224771 1.5224749 1.5224743 1.5224619 1.5224628 1.5222489 1.5222458 1.5223567 1.5223506 1.5224048 1.5224056 1.5223946 1.5223957 1.5224094 1.5223988 1.5224105 1.5223997 1.5223606 1.5222505 1.5223625 1.5222517 1.5224108 1.5223997 1.5223986 1.5224101 1.5223634 1.5222521 1.5222516 1.522363 1.5224501 1.5224482 1.5224425 1.5224415 1.5224506 1.5224428 1.5224358 1.5224346 1.5224386 1.5224373 1.5224389 1.522436 1.5224425 1.5224416 1.5224497 1.5224505 1.5224386 1.5224354 1.5224375 1.5224341 1.522433 1.5224356 1.5224471 1.5224394 1.5207274 1.5207268 1.5207309 1.5207301 1.5207259 1.520723 1.5207173 1.5207095 1.5207209 1.5207201 1.5207072 1.520704 1.520686 1.5206978 1.5206866 1.5206751 1.5207065 1.5207095 1.5206938 1.5206972 1.5206526 1.5206447 1.5206491 1.520652 1.5206572 1.5206598 1.5206504 1.520651 1.5206477 1.5206473 1.5206424 1.5206427 1.5206135 1.5206224 1.5206234 1.5206136 1.5206327 1.5206226 1.5206157 1.5206247 1.5206315 1.5206352 1.5206394 1.5206429 1.5206292 1.5206329 1.5206298 1.5206334 1.5206412 1.5206403 1.520645 1.5206482 1.5206459 1.5206492 1.5206493 1.5206501 1.520646 1.5206458 1.5206403 1.5206396 1.5206077 1.5206106 1.5206193 1.5206162 1.5206215 1.5206118 1.5206113 1.52062 1.5206267 1.5206306 1.520628 1.5206317 1.5206261 1.5206302 1.520623 1.5206281 1.5206338 1.5206463 1.5206461 1.5206417 1.5206414 1.5206327 1.5206452 1.5206473 1.5206324 1.5206404 1.5206425 1.5206336 1.5206109 1.5206179 1.5206097 1.5206167 1.5206101 1.5206171 1.5206118 1.5206185 1.5205933 1.5205952 1.5206036 1.5206018 1.5205927 1.5206013 1.5206026 1.5205932 1.5206487 1.5206376 1.520646 1.5206512 1.5206579 1.5206634 1.520634 1.5206421 1.5206468 1.5206425 1.5206473 1.5206335 1.5205941 1.5205939 1.5206024 1.5206026 1.5206181 1.5206102 1.5206175 1.5206103 1.5206228 1.5206308 1.5206134 1.5206211 1.5205961 1.5206048 1.5206138 1.5206048 1.5206482 1.5206574 1.5206661 1.5206557 1.5206515 1.5206417 1.5206456 1.5206546 1.5206633 1.5206723 1.5206597 1.5206685 1.5206918 1.5206873 1.5207073 1.5207027 1.5206969 1.5207019 1.5206663 1.520676 1.5206752 1.5206856 1.5207069 1.520696 1.5207248 1.5207123 1.5207063 1.520718 1.5212257 1.5208077 1.52082 1.5212465 1.5207102 1.5207009 1.5207164 1.5207257 1.520752 1.5207742 1.5207876 1.5207979 1.5207637 1.520772 1.5209149 1.5212736 1.5212934 1.5209034 1.520886 1.5212762 1.5207351 1.5207487 1.5207188 1.5207302 1.5208329 1.5208522 1.5212582 1.5212323 1.5224337 1.5224313 1.5224374 1.522446 1.522356 1.5222507 1.5223918 1.5224027 1.5224797 1.5224763 1.5224807 1.5224805 1.5224785 1.5224791 1.5224641 1.5224753 1.5206569 1.5206603 1.5206559 1.5206595 1.5206589 1.5206619 1.5206572 1.5206603 1.5206674 1.5206707 1.5206594 1.5206634 1.5206587 1.5206624 1.5206579 1.5206615 1.520677 1.520676 1.5206848 1.5206859 1.5206776 1.5206858 1.5206946 1.5206864 1.5206956 1.5207039 1.5207134 1.5207052 1.5206952 1.5206941 1.5207037 1.5207048 1.5206742 1.5206751 1.520684 1.5206829 1.5206981 1.5206947 1.520704 1.5207073 1.5206922 1.5206933 1.5207028 1.5207016 1.5206757 1.5206845 1.520688 1.5206781 1.5207309 1.5207198 1.5207415 1.5207298 1.5207492 1.5207386 1.5207407 1.5207485 1.5207367 1.5207565 1.5207654 1.520775 1.520747 1.5207578 1.520767 1.5207559 1.5207363 1.5207323 1.5207263 1.5207151 1.5207769 1.5207659 1.5207731 1.5207832 1.52077 1.520744 1.5207545 1.5207299 1.5207661 1.5207823 1.520743 1.5207193 1.5207541 1.5207612 1.5207487 1.5207241 1.5207941 1.5207773 1.5207878 1.5208053 1.5207212 1.5207163 1.5207264 1.52074 1.520788 1.5207927 1.5208155 1.520821 1.5213005 1.5212736 1.5209354 1.5209445 1.5208507 1.5208192 1.5208325 1.5208658 1.5209795 1.5209985 1.5213712 1.5213475 1.5213949 1.5210174 1.5210358 1.5214178 1.5208806 1.5208453 1.5208573 1.5208947 1.5206588 1.5206614 1.5206583 1.5206608 1.520676 1.5206785 1.5206631 1.5206658 1.5206573 1.5206594 1.5206573 1.5206594 1.5206564 1.5206586 1.5206587 1.5206609 1.5206796 1.5206793 1.5206891 1.5206894 1.5206812 1.5206787 1.5206886 1.5206911 1.5207109 1.5207085 1.5206983 1.5207008 1.520699 1.5206987 1.520708 1.5207083 1.5206818 1.5206812 1.5206912 1.5206918 1.5207008 1.5206866 1.5206968 1.5207116 1.5207176 1.5207069 1.5207222 1.5207324 1.520701 1.5207104 1.5207122 1.5207017 1.5224793 1.52248 1.5224788 1.5224793 1.5224752 1.5224755 1.5224635 1.5224638 1.5224769 1.5224776 1.5224803 1.5224809 1.522481 1.5224817 1.5224812 1.522482 1.5222519 1.522249 1.5223602 1.5223579 1.5224059 1.5224075 1.5223952 1.5223971 1.5224492 1.5224415 1.5224351 1.5224377 1.5224336 1.522436 1.5224481 1.5224396 1.520729 1.5207332 1.5207105 1.5207231 1.5206542 1.5206624 1.5206525 1.5206529 1.5206503 1.5206512 1.5206514 1.5206524 1.5206501 1.52065 1.520649 1.5206512 1.5206551 1.5206677 1.5206509 1.5206513 1.5207125 1.5207073 1.5207298 1.5207172 1.5208019 1.5207763 1.520921 1.5213132 1.5206574 1.5206662 1.5206566 1.5206653 1.5206596 1.5206687 1.5206579 1.5206666 1.5206685 1.5206769 1.5206602 1.5206689 1.5206591 1.520668 1.5206585 1.5206672 1.5207235 1.5207342 1.520745 1.5207409 1.5207373 1.5207331 1.5207271 1.520715 1.5207561 1.5207415 1.5207305 1.5207359 1.5207238 1.5207183 1.5207287 1.5207422 1.5207896 1.5208043 1.5208169 1.5208337 1.5213327 1.5213229 1.5209388 1.5209586 1.5206606 1.5206707 1.5206602 1.5206702 1.5206781 1.5206888 1.5206648 1.5206753 1.5206591 1.5206686 1.5206592 1.5206688 1.5206581 1.5206679 1.5206605 1.5206703 ) ; boundaryField { frontAndBack { type zeroGradient; } inlet { type fixedValue; value nonuniform 0(); } outlet { type zeroGradient; } solidWall { type kqRWallFunction; value nonuniform List<scalar> 6753 ( 1.5405644 1.5377248 1.5397069 1.5371745 1.5515013 1.5436262 1.5473525 1.5509736 1.5436395 1.547293 1.5406954 1.5380692 1.5407131 1.5380845 1.5697669 1.5649063 1.569502 1.5645147 1.5603793 1.556174 1.5598808 1.5551474 1.5695417 1.5645157 1.5696742 1.564737 1.5598451 1.5555256 1.560152 1.5554671 1.5522242 1.5447752 1.5484965 1.5511551 1.5436798 1.5473951 1.5417436 1.5387648 1.5407482 1.5381045 1.5515028 1.5436138 1.5473447 1.5515206 1.5441204 1.5478069 1.5406743 1.538032 1.5411438 1.5384754 1.5695851 1.5646132 1.5690381 1.5639866 1.5595136 1.5548264 1.558843 1.5545349 1.5698126 1.5648001 1.5684134 1.5635007 1.5601373 1.5558236 1.5589533 1.5547399 1.5508764 1.5434251 1.5471381 1.5505231 1.5426708 1.546384 1.5405105 1.5376507 1.5398158 1.5372491 1.5517845 1.5438739 1.5476148 1.5507991 1.5434435 1.547097 1.5408949 1.5382256 1.5404774 1.5378092 1.5227087 1.5227159 1.5227164 1.5227234 1.5226577 1.5226117 1.5226684 1.522625 1.5227149 1.5227232 1.5227321 1.5227413 1.52267 1.5226282 1.5226859 1.5226424 1.5227104 1.5227167 1.5227228 1.5227268 1.5226657 1.5226254 1.5226738 1.5226321 1.5227216 1.5227302 1.5227338 1.5227404 1.5226751 1.5226321 1.522682 1.5226365 1.5226814 1.5226864 1.5226821 1.5226809 1.5226338 1.5225924 1.5226265 1.5225839 1.5226667 1.5226702 1.5226627 1.5226646 1.522615 1.5225719 1.5226072 1.5225627 1.5226006 1.522595 1.5225506 1.5225176 1.5225429 1.5225026 1.522466 1.5224272 1.522388 1.5223334 1.5221482 1.5220462 1.5222854 1.5222513 1.5219958 1.521957 1.5315359 1.5299031 1.5314737 1.5298586 1.5273403 1.5263903 1.5267778 1.5259906 1.5285264 1.5274688 1.5284919 1.5274418 1.5265711 1.525752 1.5265532 1.5258027 1.5352297 1.5330781 1.534733 1.5328092 1.5312209 1.5297687 1.5309831 1.5295612 1.5355253 1.5333317 1.5355336 1.5335144 1.5315958 1.5300932 1.5317467 1.5302191 1.5285267 1.5274706 1.5283419 1.5273071 1.5265759 1.5257561 1.5264322 1.5256971 1.5288037 1.527605 1.5289066 1.5276906 1.5266062 1.52578 1.5266741 1.5259004 1.5256053 1.524962 1.5252737 1.5246904 1.5244808 1.5240501 1.5242553 1.5238987 1.5250786 1.5245754 1.5251218 1.5246134 1.5241625 1.5238241 1.5241939 1.523821 1.5237322 1.5234741 1.5236091 1.5233755 1.5230684 1.5228764 1.5230103 1.522849 1.5232478 1.5231713 1.5235496 1.5233092 1.5235473 1.5233264 1.5229828 1.5228298 1.5229947 1.5228349 1.5231348 1.5231493 1.5250828 1.5245795 1.5250323 1.5245374 1.5241656 1.5238268 1.52413 1.5237978 1.5251018 1.5245941 1.5251979 1.5246726 1.5241768 1.5238353 1.5242397 1.5238861 1.5235522 1.5233312 1.5235286 1.5232926 1.5229866 1.5228216 1.5229615 1.5228128 1.5231385 1.5231071 1.5235583 1.5233349 1.5235986 1.5233664 1.522987 1.522832 1.5230042 1.5228396 1.5231402 1.5231639 1.5361403 1.5340561 1.5355425 1.5335209 1.5320599 1.5303512 1.5315899 1.530077 1.5354733 1.5332649 1.5358763 1.5336291 1.5315206 1.5300114 1.5318486 1.5303067 1.5289028 1.5277856 1.5286627 1.527578 1.5268373 1.5260373 1.5266561 1.5258812 1.5286017 1.5275181 1.5288572 1.5277438 1.5266001 1.5257608 1.5267979 1.5259979 1.5351421 1.5331598 1.5347725 1.5328252 1.5314303 1.5299324 1.5311225 1.5295212 1.5356379 1.5335897 1.5352281 1.533189 1.531795 1.5300977 1.531407 1.5297293 1.5286485 1.5275586 1.5282829 1.5271374 1.5266344 1.5257871 1.526262 1.525529 1.5287837 1.527662 1.5284286 1.5273248 1.5266231 1.5257628 1.52631 1.5255379 1.5253081 1.5247135 1.525175 1.5246011 1.524232 1.523845 1.5241372 1.5237948 1.5250718 1.5245125 1.5252702 1.5247254 1.5240979 1.5237601 1.5242757 1.5239074 1.5235606 1.5233306 1.5235172 1.5232935 1.5229842 1.5228194 1.5229568 1.5227912 1.5231458 1.5231137 1.5234865 1.5232662 1.523607 1.5233643 1.522924 1.5227723 1.5229841 1.5228044 1.5230747 1.523152 1.5250896 1.5245233 1.5248677 1.5243342 1.524102 1.5237282 1.5239392 1.5236182 1.5250548 1.5244787 1.5248404 1.5243198 1.5240509 1.52367 1.523893 1.5235455 1.5234538 1.5232321 1.5233595 1.5231523 1.5228998 1.5227421 1.522843 1.5226912 1.5230543 1.5229866 1.5233909 1.5231467 1.5232644 1.5230385 1.5228044 1.522654 1.5226904 1.522532 1.5229549 1.522843 1.5222596 1.5222426 1.5223023 1.5222833 1.5222271 1.5222151 1.5222673 1.5222541 1.5222045 1.5221968 1.5222433 1.5222348 1.5221907 1.5221866 1.5222285 1.522224 1.522184 1.5221829 1.5222213 1.5222201 1.522183 1.5221842 1.5222199 1.5222209 1.5224169 1.5224892 1.5224554 1.52239 1.5223679 1.5224305 1.52241 1.5225051 1.5224747 1.5225253 1.5224911 1.522448 1.5224277 1.5224635 1.5224407 1.5223482 1.5223334 1.5223916 1.5223765 1.5223214 1.5223119 1.5223651 1.522356 1.5224093 1.5223953 1.5224217 1.5224058 1.5223837 1.5223741 1.5223936 1.5223833 1.5225152 1.5224854 1.5225293 1.5224962 1.5224611 1.5224408 1.5224713 1.5224507 1.5225434 1.5225115 1.522578 1.5225414 1.5224835 1.5224621 1.522512 1.5224879 1.5224224 1.5224082 1.5224319 1.5224162 1.5223964 1.5223866 1.5224041 1.5223941 1.5224427 1.5224278 1.5224677 1.522451 1.5224142 1.5224037 1.5224369 1.5224253 1.5223041 1.5222989 1.5223482 1.5223425 1.5222957 1.5222941 1.5223389 1.5223367 1.5223657 1.5223597 1.5223742 1.5223671 1.522355 1.522352 1.5223617 1.5223579 1.522294 1.522295 1.5223357 1.5223357 1.522297 1.5222998 1.5223364 1.5223379 1.5223502 1.5223493 1.5223555 1.5223541 1.5223492 1.5223497 1.5223534 1.5223535 1.5223781 1.5223718 1.5223852 1.5223783 1.5223672 1.5223638 1.5223733 1.5223697 1.5223946 1.5223879 1.5224159 1.5224086 1.5223824 1.5223786 1.5224032 1.5223994 1.5223615 1.5223602 1.5223672 1.5223657 1.5223597 1.5223598 1.522365 1.5223649 1.522376 1.5223744 1.5223969 1.5223956 1.5223737 1.5223735 1.5223951 1.5223951 1.5227546 1.5226774 1.5226175 1.5225745 1.5225191 1.5224927 1.5225401 1.5225125 1.5224693 1.5224519 1.522488 1.5224683 1.5221872 1.5221906 1.5222232 1.5222264 1.5221957 1.5222304 1.5222353 1.5223038 1.522308 1.5223401 1.5223428 1.5223128 1.5223184 1.5223457 1.5223493 1.5223509 1.5223524 1.5223541 1.5223553 1.5223547 1.5223574 1.5223571 1.5223596 1.522325 1.5223328 1.5223537 1.5223601 1.5223424 1.5223544 1.5223677 1.5223778 1.5223609 1.5223657 1.5223626 1.5223676 1.5223722 1.5223808 1.5223738 1.5223822 1.5223606 1.5223616 1.5223654 1.5223664 1.5223632 1.5223654 1.5223677 1.5223697 1.5223739 1.5223745 1.5223955 1.5223959 1.5223757 1.5223773 1.5223966 1.5223975 1.522369 1.5223735 1.522373 1.5223778 1.5223798 1.5223883 1.522384 1.5223926 1.5223801 1.5223838 1.5223991 1.5224018 1.5223899 1.5223976 1.5224061 1.522413 1.5223691 1.5223865 1.5223905 1.5224064 1.5224069 1.5224297 1.5224253 1.5224476 1.5223921 1.5224067 1.5223934 1.5224079 1.5224271 1.5224486 1.5224281 1.5224525 1.5224771 1.5223998 1.5224144 1.5224039 1.5224186 1.5224327 1.5224542 1.5224366 1.5224579 1.5224081 1.5224218 1.5224219 1.5224342 1.5224414 1.5224621 1.5224525 1.5224724 1.5224791 1.5224819 1.5225099 1.5225404 1.5225108 1.5225209 1.5225698 1.522604 1.5225634 1.5226061 1.522486 1.5224956 1.5225144 1.5225192 1.5225234 1.5225421 1.5225453 1.5225988 1.5225671 1.5226072 1.522526 1.5225569 1.5225307 1.5225617 1.5225857 1.5226136 1.5225901 1.5226151 1.5225326 1.5225631 1.5225387 1.5225699 1.5225915 1.5226168 1.5225992 1.5226258 1.5224468 1.5224724 1.5224187 1.5224294 1.5224306 1.52244 1.5224058 1.5224193 1.5224501 1.5224751 1.522459 1.5224827 1.522494 1.5224987 1.522501 1.5225077 1.5225721 1.5225432 1.5225877 1.5225583 1.5225198 1.5225007 1.5225363 1.5225184 1.522592 1.5225654 1.5226051 1.5225755 1.522542 1.5225243 1.5225514 1.5225317 1.5224837 1.522471 1.5225023 1.5224893 1.5224608 1.5224529 1.5224798 1.5224725 1.5225084 1.5224966 1.5225153 1.5225019 1.5224871 1.5224797 1.5224919 1.522484 1.5225906 1.522565 1.5225963 1.5225679 1.5225441 1.5225267 1.5225466 1.5225291 1.522595 1.5225681 1.5225975 1.5225667 1.5225442 1.5225263 1.5225418 1.5225214 1.5225111 1.5224994 1.5225132 1.5225002 1.5224901 1.5224829 1.5224907 1.5224833 1.5225101 1.5224979 1.5225046 1.5224907 1.5224874 1.52248 1.5224796 1.5224712 1.5224467 1.522443 1.5224668 1.5224634 1.5224409 1.5224403 1.5224619 1.5224617 1.5224741 1.5224707 1.5224777 1.5224737 1.5224691 1.5224689 1.5224717 1.5224713 1.5224409 1.5224422 1.5224626 1.5224644 1.5224439 1.5224457 1.5224662 1.522468 1.5224698 1.5224713 1.522472 1.5224736 1.522473 1.5224746 1.5224754 1.5224771 1.5224775 1.5224744 1.5224777 1.5224743 1.522473 1.522473 1.5224728 1.5224728 1.5224744 1.5224712 1.5224652 1.5224615 1.5224699 1.52247 1.52246 1.5224603 1.5224741 1.5224757 1.5224738 1.5224758 1.5224774 1.5224791 1.5224777 1.5224795 1.5224713 1.5224732 1.5224618 1.5224642 1.5224754 1.5224774 1.5224668 1.5224693 1.522501 1.5224844 1.5224766 1.5225069 1.522493 1.5224859 1.5224704 1.5224655 1.5224804 1.5224763 1.5225128 1.5224982 1.5224911 1.5225121 1.5224975 1.5224907 1.5224855 1.522481 1.5224855 1.5224816 1.5224622 1.5224603 1.5224733 1.5224717 1.5224592 1.5224586 1.5224709 1.5224715 1.5224593 1.5224709 1.5224781 1.5224764 1.5224789 1.5224773 1.5224756 1.522476 1.5224767 1.5224771 1.5224756 1.5224767 1.5225123 1.5224977 1.5224911 1.5225108 1.522497 1.5224906 1.5224861 1.5224825 1.5224857 1.5224823 1.5225101 1.5224963 1.5224897 1.5225078 1.5224929 1.5224862 1.5224847 1.5224809 1.5224811 1.5224775 1.52248 1.5224786 1.52248 1.5224787 1.5224782 1.5224788 1.5224786 1.5224793 1.5224781 1.5224782 1.5224786 1.5224773 1.522475 1.5224736 1.5224771 1.522478 1.5224735 1.5224742 1.5224769 1.5224732 1.5225566 1.5225303 1.5225472 1.5225182 1.522509 1.5224914 1.5224966 1.5224788 1.5225347 1.5225078 1.5225246 1.5224947 1.5224841 1.5224664 1.5224708 1.5224516 1.5224755 1.5224639 1.5224629 1.5224503 1.5224549 1.5224483 1.5224414 1.5224349 1.5224507 1.5224394 1.522436 1.5224238 1.5224308 1.5224248 1.5224154 1.5224096 1.5224681 1.5224437 1.5223949 1.5223708 1.5224243 1.5224091 1.5223548 1.5223428 1.5222242 1.5222077 1.5219304 1.5219132 1.5221974 1.5221915 1.521905 1.5219001 1.5223958 1.5223869 1.5223327 1.5223263 1.522381 1.5223778 1.522324 1.5223244 1.5221873 1.5221875 1.5218979 1.5218989 1.5221916 1.5221982 1.5219048 1.5219119 1.5224437 1.5224416 1.5224306 1.5224288 1.5224413 1.5224424 1.522429 1.5224307 1.5224209 1.5224197 1.522406 1.5224051 1.5224206 1.5224229 1.5224065 1.5224097 1.5224445 1.522447 1.5224333 1.5224367 1.5224495 1.5224515 1.5224397 1.5224422 1.5224263 1.52243 1.5224136 1.5224185 1.5224336 1.5224366 1.5224229 1.5224267 1.5223767 1.5223782 1.5223265 1.5223313 1.5223816 1.5223862 1.522338 1.5223459 1.5222058 1.5222156 1.5219204 1.5219303 1.5222275 1.52224 1.5219437 1.5219568 1.5223916 1.5223971 1.5223542 1.5223631 1.522402 1.5224058 1.5223711 1.5223775 1.5222534 1.5222665 1.5219723 1.5219867 1.5222799 1.5222909 1.5220031 1.522017 1.5224824 1.5224669 1.5224598 1.5224677 1.5224527 1.5224465 1.5224544 1.5224505 1.522442 1.522439 1.5224596 1.5224454 1.5224396 1.5224574 1.5224421 1.5224355 1.5224355 1.5224328 1.5224313 1.5224287 1.5224478 1.5224464 1.5224372 1.5224367 1.5224464 1.5224484 1.522438 1.52244 1.522446 1.522437 1.5224314 1.5224312 1.5224273 1.5224272 1.522433 1.5224357 1.5224294 1.522432 1.5224317 1.5224279 1.5224249 1.5224122 1.522407 1.522406 1.5223936 1.5223894 1.5224035 1.5224014 1.5223869 1.5223858 1.5223548 1.5223486 1.5223449 1.5222432 1.5222344 1.5222329 1.5223429 1.5223424 1.5222329 1.5222338 1.5224007 1.522401 1.522386 1.5223871 1.5224036 1.5224084 1.5223912 1.5223965 1.522402 1.5223889 1.5223428 1.5223443 1.5222353 1.5222375 1.5223485 1.5223613 1.5222427 1.52225 1.5223461 1.52224 1.5227811 1.5227133 1.5227625 1.5226958 1.5226555 1.5226109 1.5226442 1.5226075 1.5227487 1.5226911 1.522753 1.52269 1.5226458 1.5226101 1.5226451 1.5226097 1.5225789 1.5225535 1.5225783 1.522555 1.5225313 1.5225152 1.5225348 1.5225199 1.5225816 1.5225589 1.5225815 1.522557 1.5225406 1.5225259 1.5225392 1.5225248 1.5227429 1.5226869 1.5227359 1.5226766 1.5226428 1.522608 1.5226345 1.5226012 1.5227502 1.5226873 1.5227547 1.5226945 1.5226427 1.5226075 1.5226472 1.5226099 1.5225803 1.5225581 1.5225747 1.5225536 1.5225404 1.5225247 1.5225365 1.5225228 1.5225796 1.5225572 1.5225804 1.5225569 1.5225378 1.5225223 1.5225365 1.5225205 1.522733 1.5226716 1.5227086 1.52265 1.5226233 1.5225852 1.5226038 1.5225674 1.5226923 1.5226355 1.5227162 1.5226485 1.5225909 1.5225557 1.5226004 1.5225592 1.5225549 1.5225308 1.5225386 1.5225136 1.5225114 1.5224959 1.5224956 1.52248 1.5225279 1.5225057 1.5225297 1.5225043 1.5224865 1.5224714 1.5224843 1.5224699 1.522661 1.5226033 1.5226171 1.5225646 1.5225581 1.5225223 1.5225234 1.522491 1.5225757 1.5225205 1.5224525 1.5223972 1.5224773 1.5224407 1.5223545 1.5223189 1.522494 1.5224695 1.5224654 1.5224451 1.5224518 1.5224367 1.522429 1.5224165 1.5224148 1.5223944 1.5222946 1.522276 1.522377 1.5223649 1.5222607 1.5222501 1.5224475 1.5224488 1.5224695 1.5224704 1.5224498 1.5224506 1.5224706 1.5224704 1.5224759 1.5224764 1.5224784 1.522479 1.5224762 1.5224756 1.5224787 1.5224779 1.5224516 1.5224532 1.5224701 1.5224705 1.5224559 1.5224606 1.522472 1.5224756 1.5224747 1.5224742 1.5224769 1.5224763 1.5224747 1.5224769 1.5224768 1.5224793 1.5224803 1.5224807 1.5224809 1.5224814 1.5224804 1.5224794 1.5224811 1.5224802 1.522479 1.5224797 1.5224714 1.5224727 1.5224795 1.5224787 1.5224729 1.5224723 1.5224783 1.5224774 1.5224789 1.522478 1.5224777 1.5224798 1.5224782 1.5224804 1.5224775 1.5224765 1.5224712 1.5224703 1.5224768 1.5224788 1.5224706 1.522473 1.5224597 1.5224608 1.5224726 1.5224735 1.5224619 1.5224628 1.5224743 1.5224749 1.5224771 1.5224779 1.5224781 1.5224789 1.5224785 1.5224789 1.5224794 1.5224797 1.5224638 1.5224635 1.5224641 1.5224755 1.5224752 1.5224753 1.5224656 1.5224689 1.522476 1.5224786 1.5224793 1.5224788 1.5224785 1.52248 1.5224793 1.5224791 1.5224789 1.5224812 1.5224797 1.5224818 1.5224799 1.5224807 1.5224804 1.5224812 1.5224813 1.5224815 1.5224817 1.5224819 1.5224792 1.52248 1.5224755 1.5224765 1.5224805 1.5224807 1.5224771 1.5224775 1.5224817 1.522481 1.5224805 1.522482 1.5224812 1.5224807 1.5224807 1.5224829 1.5224811 1.5224835 1.5224809 1.5224803 1.5224797 1.5224776 1.5224769 1.5224763 1.5224799 1.5224815 1.5224763 1.5224778 1.522469 1.5224799 1.5224831 1.5224935 1.5224946 1.5225155 1.5225081 1.5225272 1.5224828 1.5224916 1.5224856 1.522495 1.5225067 1.5225271 1.5225109 1.5225298 1.5225383 1.5225507 1.5225677 1.5225923 1.5225818 1.5226138 1.5226273 1.5226705 1.52265 1.5226851 1.5225498 1.5225531 1.5225804 1.5226144 1.5225843 1.5226172 1.5226536 1.522689 1.5226536 1.5226887 1.5225852 1.5226179 1.5225947 1.5226281 1.5226517 1.5226851 1.5226614 1.5226932 1.5225947 1.5226281 1.5225978 1.5226314 1.5226615 1.5226965 1.5226647 1.5226963 1.5224859 1.5224951 1.5224865 1.522496 1.5225088 1.5225272 1.5225099 1.5225314 1.5224847 1.5224938 1.5224791 1.5224881 1.5225096 1.5225286 1.5225034 1.5225245 1.5225502 1.5225555 1.5225809 1.522618 1.5225877 1.5226259 1.5226536 1.5226917 1.5226597 1.5226927 1.5225523 1.5225482 1.5225842 1.5226236 1.5225799 1.5226164 1.5226579 1.5226909 1.522652 1.5226852 1.5225987 1.5226323 1.5225994 1.522633 1.5226658 1.5226977 1.5226665 1.5226986 1.5225943 1.5226276 1.5225934 1.5226267 1.5226614 1.5226971 1.5226608 1.5226935 1.5224828 1.5224903 1.5224915 1.5224977 1.5224739 1.5224831 1.522506 1.5225267 1.5225131 1.5225361 1.5224933 1.5224988 1.5224943 1.5225004 1.5224852 1.522486 1.5225138 1.5225365 1.5225158 1.5225389 1.5225522 1.5225616 1.5225617 1.5225646 1.5224952 1.522501 1.5224967 1.5225032 1.5224869 1.522488 1.5225164 1.5225396 1.5225193 1.5225403 1.5224931 1.5224982 1.522489 1.5224939 1.5224853 1.5224814 1.5225154 1.5225359 1.5225108 1.522534 1.5225653 1.522566 1.5225612 1.5225598 1.5224528 1.5224528 1.5224438 1.5224438 1.5224516 1.5224495 1.5224426 1.5224403 1.5224385 1.522439 1.5224295 1.5224306 1.5224379 1.5224358 1.52243 1.5224281 1.522447 1.5224445 1.5224375 1.5224347 1.522443 1.5224436 1.5224332 1.5224341 1.5224331 1.5224304 1.5224256 1.5224232 1.5224288 1.5224292 1.522422 1.5224232 1.5224081 1.5224085 1.5223816 1.5223839 1.5224073 1.5224046 1.5223845 1.5223833 1.5222989 1.5223059 1.52203 1.5220436 1.5223118 1.5223161 1.5220595 1.5220761 1.522401 1.5223974 1.5223811 1.5223789 1.522395 1.5223951 1.5223782 1.5223801 1.5223199 1.5223235 1.5220949 1.5221162 1.5223286 1.5223358 1.5221406 1.5221718 1.5224497 1.5224505 1.5224416 1.5224425 1.5224506 1.5224501 1.5224428 1.5224425 1.5224375 1.5224386 1.5224341 1.5224354 1.5224389 1.5224386 1.522436 1.5224358 1.5224492 1.5224481 1.522446 1.5224415 1.5224396 1.5224374 1.5224446 1.522445 1.522436 1.5224365 1.5224377 1.522436 1.5224337 1.5224351 1.5224336 1.5224313 1.5224323 1.5224326 1.5224297 1.5224297 1.5224101 1.5224108 1.5223986 1.5223997 1.5224105 1.5224094 1.5223997 1.5223988 1.522363 1.5223634 1.5222516 1.5222521 1.5223625 1.5223606 1.5222517 1.5222505 1.5224075 1.5224059 1.5224027 1.5223971 1.5223952 1.5223918 1.5224003 1.5223999 1.5223894 1.522389 1.5223579 1.5223602 1.522356 1.522249 1.5222519 1.5222507 1.522353 1.5223522 1.5222515 1.5222555 1.5224475 1.5224556 1.5224384 1.5224473 1.5224688 1.5224873 1.5224615 1.5224815 1.5224329 1.5224411 1.5224277 1.5224366 1.5224567 1.5224764 1.5224524 1.522475 1.522511 1.5225071 1.5225413 1.522561 1.5225414 1.5225798 1.5225904 1.5226468 1.5226179 1.5226552 1.5225019 1.5225008 1.5225359 1.5225738 1.5225349 1.522569 1.5226128 1.5226537 1.522612 1.5226502 1.5225623 1.5225981 1.5225576 1.5225944 1.5226331 1.5226663 1.5226304 1.5226641 1.5225551 1.5225918 1.5225529 1.5225895 1.5226279 1.5226617 1.522626 1.5226602 1.5223991 1.522408 1.5223859 1.5223967 1.5224229 1.5224437 1.522413 1.5224354 1.5223462 1.5223607 1.5222058 1.5222423 1.5223802 1.5224048 1.5222813 1.5223236 1.5224702 1.5224632 1.5225034 1.5225193 1.5224997 1.5225302 1.5225528 1.5226148 1.5225753 1.5226186 1.5224345 1.5223601 1.522471 1.5224802 1.5224025 1.5223848 1.5225146 1.5225847 1.5224236 1.5224992 1.5225272 1.5225659 1.5225203 1.5225596 1.5226033 1.5226378 1.5225981 1.5226336 1.5224943 1.522536 1.5224384 1.5224826 1.5225753 1.5226111 1.5225148 1.5225396 1.5224545 1.5224597 1.5224475 1.5224528 1.5224475 1.5224396 1.5224754 1.5224997 1.5224698 1.5224928 1.5224428 1.5224476 1.5224391 1.5224432 1.5224354 1.5224322 1.5224666 1.5224897 1.5224615 1.5224871 1.5225269 1.5225211 1.5225183 1.5225159 1.5224102 1.5224161 1.5223997 1.5224052 1.5224024 1.5223916 1.5224341 1.5224585 1.5224239 1.5224493 1.5223639 1.5223731 1.5222794 1.522298 1.522355 1.5222637 1.5223932 1.52242 1.5223246 1.5223571 1.5224886 1.5224804 1.5224527 1.5223944 1.6420519 1.647451 1.6421328 1.6481907 1.6341394 1.6339506 1.6216278 1.6280206 1.6201743 1.627185 1.6440626 1.6501518 1.6395506 1.6457841 1.6358783 1.6314163 1.6218851 1.6290299 1.6175671 1.6246108 1.6141794 1.6125622 1.6142286 1.6100319 1.6031919 1.6082581 1.6003798 1.606085 1.5963461 1.5934521 1.590072 1.5797058 1.5843922 1.5868388 1.576186 1.5814051 1.6017223 1.607601 1.5978729 1.6035453 1.5947388 1.5910728 1.5880134 1.576419 1.5818132 1.5845697 1.5740843 1.5792255 1.6408807 1.6477951 1.6405969 1.6478893 1.6327942 1.6323971 1.6190109 1.626046 1.6179683 1.62532 1.6397112 1.6466828 1.6375035 1.6443777 1.6316164 1.6294468 1.6177368 1.624816 1.6159872 1.6228162 1.6114669 1.6103584 1.6102193 1.6085568 1.5992975 1.6050061 1.5975204 1.6035673 1.5924525 1.5906667 1.5859113 1.5753199 1.5805374 1.5839736 1.5722982 1.5777705 1.5978883 1.6036854 1.5968639 1.6022919 1.5910719 1.5901492 1.5844824 1.5731915 1.5784281 1.5838213 1.5732041 1.5780582 1.6405239 1.6463914 1.6415967 1.6478461 1.6324762 1.6333784 1.619113 1.6259294 1.6192085 1.6264331 1.6436611 1.6498924 1.6429039 1.6489668 1.6354243 1.6347338 1.6212028 1.6284712 1.6209169 1.6279569 1.6116154 1.6115748 1.6135287 1.6132742 1.5998552 1.6053439 1.5989953 1.6049091 1.5930322 1.5921147 1.5865999 1.5756811 1.5807125 1.5854551 1.5745088 1.5799169 1.6007927 1.6068013 1.6010245 1.6067501 1.5938039 1.5940685 1.5870148 1.5752617 1.5807548 1.5874324 1.5761066 1.5813337 1.6434797 1.6493951 1.6421588 1.648342 1.6353534 1.6339956 1.6218543 1.6287424 1.6199059 1.627091 1.6403366 1.6462787 1.6378165 1.6436461 1.6322966 1.6298298 1.6187715 1.6256705 1.6166958 1.6233638 1.6142553 1.6122737 1.6112622 1.6092652 1.6022923 1.6078706 1.599705 1.6056026 1.5953368 1.592785 1.5887567 1.5776261 1.5827412 1.5860846 1.5745323 1.5799019 1.5992106 1.604857 1.597776 1.6031 1.5923465 1.5910111 1.5857821 1.5752142 1.5803993 1.5846837 1.5747399 1.5795648 1.5739271 1.5682802 1.5704758 1.5652743 1.563528 1.5586262 1.5604537 1.5559785 1.5706928 1.5654612 1.5685004 1.5629135 1.5605988 1.5560963 1.5582495 1.5534947 1.5540366 1.5458782 1.5497461 1.5513815 1.5436046 1.5474719 1.54264 1.5394504 1.5405349 1.5377604 1.5514718 1.5432783 1.5471584 1.5490989 1.5416677 1.5453619 1.5402247 1.5372226 1.538767 1.5361611 1.5696803 1.5640449 1.5667833 1.561714 1.559331 1.554504 1.5570411 1.5527127 1.5676708 1.5626375 1.5677106 1.5627783 1.5579687 1.5536573 1.5582104 1.553544 1.5504369 1.5427555 1.5465914 1.5486934 1.5411635 1.5449016 1.5397517 1.5368061 1.5383075 1.5357387 1.5496439 1.5417951 1.5455037 1.5496151 1.5422574 1.5459188 1.538875 1.5360108 1.5392935 1.5366336 1.5700482 1.5644572 1.5688784 1.5637253 1.5597669 1.5549546 1.5589549 1.5545223 1.5695748 1.5643614 1.5703825 1.564658 1.5595248 1.5550458 1.5598727 1.5549746 1.5508915 1.5432016 1.5470441 1.550388 1.5426177 1.5464843 1.5401419 1.5371386 1.5396073 1.5368958 1.5508677 1.5429698 1.5469028 1.5508427 1.5430706 1.5469453 1.5399119 1.5371664 1.5400022 1.5372475 1.5718585 1.5661224 1.5688824 1.5637104 1.5613151 1.5563798 1.558928 1.5544914 1.5695459 1.564412 1.5691183 1.5640875 1.5596387 1.5552259 1.5594214 1.5546504 1.5522146 1.5439876 1.547887 1.5503578 1.5426242 1.546468 1.5408412 1.5377466 1.539595 1.5368688 1.5511077 1.5433638 1.5472229 1.5506286 1.5430968 1.5468457 1.5402642 1.5372182 1.5400206 1.536994 1.5216774 1.521605 1.5214428 1.5213173 1.5215545 1.5215178 1.5212597 1.5212171 1.5212917 1.5211546 1.5212361 1.5210871 1.5210957 1.5210523 1.5210267 1.5209821 1.5211603 1.521015 1.5211629 1.5210088 1.5209622 1.5209234 1.5209521 1.5209103 1.5211637 1.5210048 1.5211641 1.5210028 1.5209453 1.5209016 1.5209406 1.5208945 1.5210953 1.5209407 1.5210951 1.5209345 1.5208877 1.5208488 1.5208795 1.5208388 1.5210945 1.5209331 1.5211089 1.5209491 1.5208763 1.5208345 1.5208884 1.5208432 1.5210903 1.5209329 1.521118 1.5209556 1.5208754 1.5208329 1.5208928 1.5208461 1.5211269 1.5209634 1.5211348 1.5209738 1.5208989 1.5208509 1.5209089 1.5208602 1.5366316 1.5343843 1.5350715 1.5329451 1.5322195 1.5303557 1.5309083 1.5293078 1.5345861 1.5323095 1.533641 1.5316512 1.5305037 1.5289385 1.5299137 1.5284149 1.5287672 1.5274248 1.5278079 1.5265509 1.5262958 1.5253549 1.5254984 1.5246939 1.527472 1.5263412 1.5270124 1.5259377 1.5253814 1.5245717 1.5250251 1.5242554 1.5342155 1.5321666 1.5332618 1.5313143 1.5302058 1.5285305 1.5294576 1.5280067 1.5335055 1.5313457 1.5340534 1.5318257 1.5296421 1.5281696 1.5300621 1.528536 1.5272282 1.5260191 1.5267656 1.5256167 1.5250911 1.5243074 1.5247369 1.5239336 1.5269072 1.5258319 1.5272223 1.5261049 1.5249226 1.5241545 1.5251529 1.5243503 1.524577 1.5239907 1.5239635 1.5234158 1.5235042 1.5230689 1.5229639 1.5225921 1.5238316 1.5232765 1.5235573 1.5230346 1.5228177 1.522407 1.522603 1.5222494 1.5227192 1.5224406 1.5222646 1.5220255 1.5220453 1.5218978 1.5216548 1.5214789 1.5222195 1.5218179 1.5220778 1.5218373 1.5219384 1.5217125 1.5214748 1.5212955 1.5213736 1.5211997 1.5216437 1.5215312 1.5235927 1.5230562 1.5232747 1.5227836 1.5226129 1.5222176 1.5223807 1.5220514 1.5234568 1.5229355 1.5236175 1.5230684 1.5225063 1.5221236 1.5226138 1.5222414 1.5219265 1.5216714 1.5217855 1.5215718 1.5213247 1.5211492 1.5212538 1.5210952 1.5214863 1.5214015 1.5218431 1.5216169 1.521938 1.5216926 1.5212779 1.5211064 1.5213229 1.521132 1.5214356 1.5214954 1.5344947 1.5323989 1.5342676 1.5321932 1.5305631 1.528967 1.5303721 1.5286498 1.5345033 1.5323946 1.5345676 1.5324469 1.5305442 1.5287928 1.5305861 1.5288257 1.527469 1.5263136 1.5271909 1.5260646 1.525328 1.5244201 1.5251107 1.524304 1.5273109 1.526066 1.5273329 1.5261822 1.5251098 1.5242299 1.5252048 1.5243074 1.5350214 1.5328575 1.5342281 1.5321464 1.5307823 1.5290032 1.5301566 1.5285977 1.5345505 1.5322412 1.5343426 1.5322407 1.5304115 1.5288243 1.5304012 1.5288101 1.5276188 1.5264362 1.5272596 1.526119 1.5254277 1.5244966 1.5251504 1.5243339 1.5274598 1.5262953 1.5274414 1.5262757 1.5253057 1.5243936 1.5252831 1.5244438 1.5236699 1.523107 1.5235699 1.5230203 1.5226007 1.5221924 1.5225261 1.5221602 1.5235063 1.5229171 1.523569 1.5230156 1.5224779 1.5221187 1.5225596 1.5221863 1.5218916 1.5216481 1.5218628 1.5216226 1.521281 1.5210967 1.5212603 1.5210744 1.5214523 1.5214292 1.5218269 1.5215914 1.5218821 1.521615 1.5212245 1.5210527 1.5212387 1.5210526 1.5213862 1.5214046 1.523729 1.5231012 1.5235906 1.5230331 1.5226321 1.5222129 1.5225737 1.5221967 1.5236412 1.5230767 1.5236795 1.5231071 1.5225697 1.522162 1.5225922 1.5222109 1.5218772 1.5216316 1.5218636 1.521621 1.5212615 1.5210775 1.5212548 1.5210686 1.5214342 1.5214256 1.5218362 1.5215985 1.5218742 1.5216292 1.5212277 1.5210593 1.5212468 1.5210632 1.5213911 1.5214153 1.6414413 1.6469888 1.6435567 1.6494841 1.6334435 1.6353864 1.6206478 1.627173 1.6217686 1.6287287 1.6430862 1.6491828 1.6403526 1.6464044 1.6349432 1.6322959 1.6209055 1.6280785 1.6186832 1.6256101 1.6131566 1.614125 1.6132626 1.6111688 1.6018778 1.6070985 1.6019491 1.6076653 1.5949985 1.5949643 1.5886342 1.5786481 1.583496 1.588304 1.5775432 1.5828379 1.6006506 1.6065885 1.5991342 1.6047542 1.5936791 1.5923001 1.5869231 1.5752334 1.5806853 1.5857818 1.575262 1.5804261 1.6407924 1.646804 1.641029 1.6473062 1.6327414 1.6328983 1.6190971 1.6260545 1.6187035 1.6259495 1.6405978 1.6465623 1.638966 1.644692 1.6325703 1.6310406 1.6189124 1.6258873 1.618046 1.624664 1.6115817 1.6111229 1.6113953 1.610637 1.5994442 1.6051349 1.5984341 1.6044215 1.5925943 1.5915677 1.5860495 1.5754581 1.5806747 1.5848753 1.5732032 1.5786704 1.5991514 1.6049098 1.5991566 1.6044903 1.5922802 1.5923764 1.5856625 1.5743072 1.5795756 1.5860214 1.5753198 1.5802176 1.6391146 1.6447012 1.6398661 1.6458701 1.6312205 1.6317829 1.6183805 1.6249263 1.6180477 1.6250537 1.643152 1.6490342 1.6416437 1.6473592 1.6350968 1.6336825 1.6214148 1.6284263 1.6205366 1.6272328 1.6109797 1.6105112 1.6138153 1.6130498 1.5996289 1.6049051 1.5982798 1.6040248 1.5928553 1.591443 1.5865369 1.5765458 1.5814116 1.5848713 1.574221 1.5794674 1.6014353 1.6072577 1.601362 1.606806 1.5944701 1.5944968 1.5877569 1.5761599 1.5815595 1.5880206 1.5776557 1.5827282 1.6403366 1.6461859 1.641222 1.647196 1.6323336 1.6331856 1.6189706 1.6257768 1.619464 1.6264896 1.6399792 1.6456679 1.6370721 1.642655 1.6320734 1.6292637 1.6188685 1.6256109 1.6166006 1.6230482 1.6114951 1.6119274 1.6114345 1.6093068 1.599614 1.6051685 1.5995544 1.6053865 1.5927792 1.5926789 1.5862862 1.5758512 1.5809754 1.5860318 1.574499 1.5798816 1.5995794 1.6051341 1.5981622 1.603325 1.5927538 1.5914924 1.586236 1.5751371 1.580259 1.5852827 1.5749322 1.5796388 1.5728362 1.5671257 1.5717355 1.5664553 1.5623249 1.5573814 1.5615435 1.5569811 1.5695332 1.5643078 1.5696014 1.5639402 1.5589721 1.554515 1.5587168 1.5539149 1.553196 1.5452757 1.5492351 1.5527085 1.5442898 1.5482776 1.5420042 1.5387786 1.5411114 1.5382487 1.5503612 1.5422245 1.5460719 1.5498714 1.5422682 1.5460549 1.5392368 1.5365513 1.5392866 1.536616 1.5698009 1.5646784 1.5676273 1.5625267 1.559429 1.5545965 1.5573261 1.552981 1.5686906 1.5635772 1.5696884 1.5641245 1.5588414 1.5544546 1.5594669 1.5551441 1.5505254 1.5428249 1.5466708 1.5489406 1.5413547 1.5451254 1.5398031 1.5368414 1.5384605 1.5358604 1.5503513 1.5426356 1.5464759 1.5510917 1.5434683 1.5472712 1.539608 1.5368945 1.5403761 1.5376034 1.5708761 1.5652835 1.5686179 1.563508 1.5605941 1.5557764 1.5587768 1.554396 1.5704215 1.565184 1.5718888 1.5661562 1.5598215 1.5553442 1.5608479 1.5559526 1.5512855 1.5433171 1.5470885 1.5499023 1.5419831 1.545725 1.5402526 1.5372406 1.5390407 1.536397 1.5507467 1.5426045 1.5464541 1.5513989 1.5436761 1.547528 1.5395865 1.5368808 1.5405703 1.5377855 1.5701771 1.5645189 1.5688638 1.5637163 1.5597839 1.5553868 1.5589518 1.5545302 1.5695195 1.5644283 1.5693875 1.5644575 1.5596933 1.5553098 1.5598682 1.5551631 1.5512628 1.5431368 1.5469871 1.5504085 1.5423211 1.546148 1.5400811 1.5370799 1.5393408 1.5366646 1.5512107 1.5431487 1.5469613 1.5511955 1.5437651 1.5474679 1.5400985 1.5371042 1.5406973 1.5379413 1.521085 1.5209318 1.5210997 1.5209412 1.5208773 1.520837 1.5208847 1.5208427 1.521104 1.5209435 1.5211115 1.5209547 1.5208863 1.520844 1.5208957 1.5208518 1.5210879 1.5209351 1.5211147 1.5209589 1.520881 1.5208412 1.5209002 1.5208565 1.5211376 1.5209805 1.5211602 1.5210086 1.5209195 1.5208739 1.5209475 1.5209014 1.5211403 1.5209954 1.5211634 1.5210201 1.5209427 1.5209038 1.5209652 1.5209244 1.5211768 1.5210396 1.5212186 1.5210901 1.5209834 1.5209418 1.521029 1.5209831 1.5359322 1.533665 1.5354611 1.533253 1.5314821 1.5296076 1.5311313 1.5294603 1.5339556 1.5319061 1.5340225 1.5319794 1.5301147 1.528565 1.5301887 1.5286392 1.5281441 1.5268888 1.5280192 1.5267864 1.5258157 1.5249042 1.5257306 1.524754 1.5272361 1.5261034 1.5273066 1.5260677 1.525057 1.5242577 1.5250318 1.5241714 1.5342366 1.5319815 1.5333512 1.5313775 1.5301968 1.5285077 1.5296546 1.5281639 1.534264 1.5321832 1.5349007 1.5327594 1.5303614 1.5286417 1.5308789 1.5292411 1.527077 1.5259739 1.526775 1.525711 1.5250375 1.5242478 1.5248089 1.5239838 1.5271843 1.5260608 1.5276996 1.5265123 1.5250211 1.52423 1.525408 1.5244876 1.5240676 1.5233801 1.5239437 1.5232778 1.5228186 1.5223644 1.522735 1.5223313 1.5235315 1.5229858 1.5234624 1.5228848 1.5225361 1.5221678 1.5224539 1.5221017 1.5219994 1.5217089 1.521973 1.5216885 1.5212974 1.5210961 1.5212854 1.5210989 1.5214791 1.5214633 1.521842 1.521604 1.52179 1.5215633 1.5212466 1.5210719 1.5212222 1.5210533 1.521413 1.521381 1.5235283 1.522988 1.5233062 1.5227994 1.522542 1.5221437 1.5223837 1.5220431 1.5235104 1.5229249 1.5237276 1.5231559 1.5224888 1.5220998 1.522683 1.5222944 1.5218503 1.5215927 1.5217672 1.5215447 1.5212418 1.5210656 1.5212115 1.521048 1.5214055 1.5213666 1.5218142 1.5215836 1.5219767 1.5217186 1.5212372 1.5210609 1.5213272 1.5211247 1.5213986 1.5215103 1.5345906 1.5324891 1.5338406 1.5318252 1.5306464 1.5290451 1.5300602 1.5285326 1.5342603 1.5321908 1.5350663 1.5327062 1.5302123 1.5286654 1.5306625 1.5289113 1.5275376 1.5262716 1.5271035 1.5260019 1.5252965 1.5243988 1.5250678 1.524281 1.5272163 1.5261013 1.5274247 1.52628 1.5251539 1.5242844 1.5253084 1.5244863 1.5344417 1.5323536 1.5340755 1.5320328 1.5305271 1.5289448 1.5302438 1.5285545 1.5275855 1.5264278 1.5272449 1.5260279 1.5254424 1.5245344 1.5250956 1.5243111 1.52366 1.5231063 1.5235642 1.523028 1.5226083 1.522207 1.5225467 1.52219 1.5235682 1.5230317 1.5237372 1.5231759 1.522589 1.5222267 1.522711 1.5223296 1.5219113 1.5216719 1.5219002 1.5216661 1.5213105 1.5211323 1.5213131 1.5211364 1.5214792 1.5214777 1.5219318 1.5216935 1.5220178 1.5217655 1.5213211 1.5211491 1.5213692 1.5211774 1.5214854 1.5215443 1.5237844 1.5231723 1.5235998 1.5230684 1.5227152 1.5223071 1.5226309 1.5222727 1.5220063 1.5217623 1.5219822 1.5217479 1.5213942 1.5212082 1.5213948 1.521215 1.5215659 1.5215594 1.6126829 1.6131601 1.6146722 1.6134412 1.6162702 1.615119 1.6160046 1.6134043 1.6144628 1.6178812 1.6232098 1.6177988 1.6196644 1.6190776 1.6226839 1.6167333 1.6160985 1.618517 1.625179 1.6209301 1.6220001 1.6232103 1.6267879 1.6161622 1.6125329 1.6156428 1.6204382 1.6160009 1.6183476 1.6181395 1.6194635 1.6155026 1.6184924 1.6187471 1.6210828 1.6199413 1.6216017 1.6181302 1.6180678 1.612415 1.5214877 1.5214677 1.5211829 1.5211582 1.5214532 1.5214428 1.5211419 1.5211303 1.5210181 1.520996 1.5209473 1.5209234 1.5209795 1.5209695 1.5209077 1.520898 1.5214319 1.5214238 1.5211201 1.5211115 1.5214175 1.5214129 1.521105 1.5211001 1.5209621 1.5209574 1.5208925 1.5208898 1.5209541 1.5209519 1.520889 1.5208891 1.5208936 1.520875 1.5208782 1.5208566 1.5208627 1.5208552 1.5208435 1.5208355 1.5208677 1.5208463 1.5208582 1.5208332 1.5208312 1.5208227 1.5208167 1.5208066 1.5208507 1.5208488 1.5208308 1.5208289 1.5208481 1.520848 1.5208285 1.5208288 1.5208179 1.5208161 1.5208012 1.520799 1.520816 1.5208167 1.5207988 1.5207997 1.5214061 1.5214005 1.5210937 1.5210867 1.5213955 1.5213903 1.52108 1.5210727 1.5209493 1.5209466 1.5208893 1.5208891 1.5209422 1.5209369 1.5208876 1.5208845 1.5213852 1.5213801 1.5210642 1.5210533 1.5213762 1.5213716 1.5210427 1.5210311 1.5209301 1.5209217 1.5208802 1.5208733 1.5209118 1.5209004 1.5208653 1.5208557 1.5208476 1.5208465 1.5208289 1.5208282 1.5208442 1.5208405 1.5208264 1.5208233 1.5208174 1.5208174 1.5208008 1.5208014 1.5208161 1.5208135 1.5208009 1.5207987 1.5208352 1.5208282 1.5208185 1.5208113 1.5208195 1.5208093 1.520803 1.5207933 1.5208093 1.5208034 1.5207953 1.5207894 1.5207958 1.5207867 1.5207826 1.5207744 1.5215219 1.5215406 1.5215274 1.521158 1.5211468 1.5211385 1.5215136 1.5214975 1.5211294 1.5211191 1.5209716 1.5209659 1.5209612 1.5209153 1.520909 1.5209061 1.5233101 1.520956 1.5230689 1.5228884 1.5230906 1.5209497 1.5229201 1.5236567 1.5233423 1.520903 1.5236741 1.5233852 1.5231186 1.520899 1.5229294 1.5231575 1.5229791 1.5214805 1.5227617 1.5227883 1.5227968 1.5214615 1.5228407 1.5211077 1.5210954 1.5214233 1.5214396 1.5210674 1.5210544 1.5214434 1.5210825 1.5209428 1.5209342 1.5208944 1.5208888 1.5209145 1.5209088 1.5208735 1.5208693 1.5209254 1.5208822 1.5570148 1.5208552 1.5629034 1.5577339 1.5208518 1.5767119 1.5705192 1.5758555 1.520849 1.5691721 1.520834 1.5642232 1.5590134 1.5208308 1.5630234 1.5574433 1.5208283 1.520846 1.5208426 1.5208257 1.5208227 1.5208241 1.5208214 1.5208191 1.5208174 1.5208136 1.5208114 1.5383308 1.5357598 1.5208169 1.5315073 1.5335289 1.5208144 1.5316045 1.5523818 1.5482034 1.5208093 1.5530253 1.5487695 1.5444674 1.5208069 1.5408382 1.5449639 1.5415817 1.5208384 1.5542727 1.549572 1.5528358 1.5208333 1.5486563 1.5457392 1.5423076 1.5208189 1.544905 1.5415676 1.5379334 1.5208141 1.5353926 1.5208193 1.5385951 1.5357391 1.5208165 1.5331868 1.5208007 1.5312951 1.5334851 1.5207984 1.5315399 1.5392764 1.5366072 1.5208273 1.5386076 1.5360033 1.5342802 1.5320772 1.5337379 1.5317824 1.5208084 1.6028809 1.5941666 1.6032788 1.5944969 1.5868047 1.5799158 1.5208112 1.5870994 1.5801478 1.6046861 1.5208071 1.5958434 1.6033888 1.5945484 1.5208039 1.5883952 1.5814139 1.5870989 1.5208001 1.5800986 1.5207946 1.5734997 1.567535 1.5207933 1.573678 1.5207879 1.5676857 1.5620158 1.5207866 1.5569782 1.5621451 1.5570687 1.5208015 1.5749132 1.5688605 1.5735969 1.5675715 1.5632506 1.5581308 1.5207947 1.5620101 1.5569158 1.6060839 1.597105 1.6048761 1.5958762 1.589543 1.5208188 1.5817068 1.5883051 1.5811855 1.5207999 1.6057703 1.596821 1.6032577 1.5208074 1.59444 1.5892911 1.5822306 1.5207862 1.5870297 1.5800696 1.5751206 1.5207874 1.5683841 1.5745649 1.5684342 1.5207797 1.5627684 1.557141 1.5627618 1.5207733 1.5575729 1.5756487 1.5695134 1.5207653 1.5735801 1.5675605 1.5638141 1.5208021 1.5586096 1.5619716 1.5568455 1.5207816 1.5523757 1.548234 1.5524453 1.520808 1.5482599 1.544503 1.541192 1.5207837 1.5445229 1.5411924 1.5534622 1.5207672 1.5488234 1.5522949 1.548143 1.5207589 1.5450649 1.5414106 1.5444223 1.5207676 1.5411139 1.5382689 1.5354748 1.5207577 1.5382605 1.535685 1.5332657 1.5207751 1.5311904 1.5334459 1.5315178 1.520773 1.5384764 1.5358876 1.5381927 1.5207605 1.5356334 1.5336326 1.5316914 1.5207583 1.5334066 1.5314819 1.5524979 1.5207723 1.5482896 1.5528448 1.5485782 1.520772 1.5445186 1.5411783 1.5447675 1.5207575 1.5413752 1.5538562 1.5491261 1.5207574 1.5521652 1.5479557 1.5452881 1.5207541 1.541549 1.5441778 1.5408217 1.520752 1.5379505 1.5354053 1.5381206 1.5207522 1.5355378 1.5331968 1.5311219 1.5207496 1.5333002 1.5313742 1.5382729 1.5207513 1.5354412 1.5375916 1.535019 1.5207512 1.5332051 1.5310992 1.5327852 1.5207489 1.5308624 1.5207489 1.527238 1.5207999 1.5262839 1.5271106 1.5261794 1.5207791 1.5298752 1.5284898 1.5299633 1.5208095 1.5284467 1.5273283 1.5262849 1.5207845 1.5272932 1.5263298 1.5254954 1.5207652 1.5248508 1.5254133 1.524789 1.5207564 1.5243282 1.5239087 1.5242847 1.5207689 1.5238778 1.5255027 1.5248087 1.5207589 1.5255368 1.52489 1.5242995 1.520813 1.5238575 1.5243661 1.5239447 1.5207887 1.5296801 1.5283169 1.5298868 1.5208215 1.5283699 1.5271806 1.5262331 1.5207943 1.5272117 1.5262517 1.5303661 1.5207721 1.5289094 1.530113 1.5285722 1.5207612 1.5276872 1.526574 1.5273933 1.5207771 1.5264117 1.5254531 1.5248186 1.5207649 1.5254648 1.5248217 1.5243056 1.5207512 1.5238604 1.5243037 1.5238899 1.5207488 1.5257405 1.5249992 1.5256011 1.5207526 1.5249369 1.5244526 1.523975 1.5207497 1.5243992 1.5239679 1.5235467 1.5207479 1.5232892 1.5235291 1.5232794 1.5207476 1.5230872 1.5229296 1.5230835 1.5207486 1.5229311 1.5235124 1.5232664 1.5207484 1.5235828 1.5233032 1.5230739 1.5207544 1.5229243 1.5231047 1.5229496 1.5207511 1.5228079 1.5228129 1.5228087 1.5207576 1.5228298 1.5235143 1.5232682 1.5207537 1.523536 1.5232844 1.5230763 1.5207497 1.522915 1.5230882 1.5229358 1.5207494 1.5236022 1.523315 1.523596 1.5207521 1.5233307 1.523111 1.5229391 1.5207515 1.5231228 1.5229609 1.5228022 1.5207715 1.5228184 1.5228189 1.5228358 1.5207701 1.5295842 1.5282254 1.5298707 1.5207569 1.5283547 1.5270928 1.5261485 1.5207556 1.527196 1.526234 1.5300273 1.5207677 1.528613 1.5298432 1.5283391 1.5207638 1.5274279 1.52635 1.5271905 1.5207531 1.5262358 1.5253723 1.5247424 1.5207494 1.5254446 1.524799 1.524234 1.5207509 1.5238265 1.5242783 1.5238617 1.5207499 1.5255443 1.5248292 1.5254482 1.520749 1.5248012 1.5243028 1.5238442 1.5207485 1.5242774 1.5238575 1.5295191 1.5207474 1.5281615 1.5297357 1.5282254 1.5207437 1.5270296 1.5260849 1.5270717 1.5207467 1.5261135 1.5294703 1.5280897 1.5207432 1.5292197 1.5278345 1.5269317 1.5207584 1.5258832 1.5266709 1.5257043 1.5207514 1.525307 1.5246763 1.5253274 1.5207441 1.5246299 1.5241681 1.5237268 1.5207365 1.5241173 1.5237074 1.5251015 1.520743 1.5244637 1.5249079 1.5242579 1.5207334 1.5239492 1.5235031 1.5237323 1.5207281 1.5233124 1.5235039 1.5232514 1.5207186 1.5235324 1.5232516 1.5230551 1.5207384 1.52289 1.5230525 1.522898 1.5207316 1.5235144 1.5232545 1.5235245 1.5207386 1.5232406 1.5230523 1.5228818 1.5207316 1.5230391 1.5228823 1.5227749 1.5207234 1.5227791 1.5227631 1.5227616 1.5207139 1.5234103 1.5231612 1.5233834 1.5207238 1.5231074 1.5229679 1.5228054 1.5207148 1.5229123 1.5227614 1.5231843 1.5207472 1.5229347 1.5229799 1.5227192 1.5207461 1.5227415 1.5225925 1.5225168 1.5207482 1.5223616 1.5226924 1.5226454 1.5207472 1.5224796 1.5222442 1.6041769 1.5207439 1.5951921 1.6073071 1.5980062 1.5207402 1.5876294 1.5805722 1.5901731 1.5207453 1.5828134 1.6124638 1.6029527 1.5207421 1.6073098 1.5980729 1.5949557 1.5207492 1.5866378 1.5902851 1.5829653 1.5207486 1.573997 1.567873 1.5759704 1.5207512 1.5696179 1.5621887 1.5569973 1.5207504 1.5637372 1.5583445 1.5796464 1.5207467 1.5724661 1.5761396 1.5698001 1.5207435 1.566459 1.5603937 1.5639047 1.5207485 1.558496 1.6091121 1.5997817 1.5207451 1.608465 1.5990832 1.5919056 1.5207344 1.5845122 1.5911671 1.5837119 1.5207274 1.6120627 1.6026398 1.6064372 1.5207366 1.5973454 1.5947131 1.5864579 1.5207293 1.5896963 1.5825084 1.5768887 1.5207191 1.5705313 1.5760936 1.569715 1.5207096 1.5646263 1.5586644 1.563811 1.5207211 1.5584034 1.5787929 1.5717328 1.5207119 1.5751191 1.5689182 1.5658068 1.5207383 1.5598056 1.5631654 1.5578967 1.5207319 1.5518042 1.5475844 1.5529823 1.52074 1.5485983 1.5437884 1.540423 1.5207332 1.5446762 1.5411753 1.5548834 1.5207232 1.5499467 1.5531107 1.5483128 1.520714 1.5459356 1.5420129 1.5444027 1.5207247 1.5409115 1.5374399 1.5348379 1.5207148 1.5207791 1.5380908 1.5353732 1.5207759 1.5325672 1.5306152 1.5330141 1.520773 1.5309699 1.5207637 1.5388605 1.535825 1.5207596 1.5378337 1.5351338 1.5334197 1.520757 1.5311443 1.5327912 1.530763 1.5207702 1.5532756 1.5488743 1.5530149 1.5207669 1.548607 1.5449222 1.541056 1.5207544 1.5446565 1.5411384 1.5543726 1.5207515 1.5495032 1.5207556 1.5526257 1.548302 1.5207526 1.5455314 1.541635 1.544418 1.52075 1.5409615 1.5207539 1.5376769 1.5347477 1.5207507 1.5377458 1.5350457 1.5324343 1.5207482 1.5302615 1.5327016 1.5306711 1.5207475 1.5382189 1.5352506 1.5376131 1.5207443 1.5349355 1.5329008 1.5306812 1.5207457 1.5326104 1.5305947 1.6058187 1.5207429 1.5966943 1.6078919 1.5984459 1.520763 1.5889752 1.5817579 1.590496 1.5207583 1.5830239 1.6143561 1.6047174 1.5207481 1.6102305 1.6007638 1.5965582 1.5207433 1.5880943 1.5207446 1.5927771 1.5852648 1.5207426 1.5750339 1.5207304 1.568777 1.5760789 1.5207274 1.569632 1.5629807 1.5576862 1.5207521 1.563672 1.5582079 1.5809707 1.5736507 1.5782574 1.5717224 1.5207374 1.5675225 1.5613268 1.5656375 1.5600404 1.6112108 1.6016787 1.5207406 1.6122669 1.6025778 1.5936528 1.5207363 1.5860732 1.5943868 1.5866634 1.5207394 1.616009 1.6064335 1.6059751 1.5207351 1.5969711 1.5207239 1.5983666 1.589901 1.5207219 1.5893834 1.5207231 1.5822485 1.5789924 1.5207201 1.5724295 1.5794661 1.5727615 1.5207309 1.566324 1.5601513 1.5665398 1.5608234 1.5827871 1.5754573 1.5207299 1.5755797 1.5693745 1.5692954 1.5630159 1.5207539 1.5636139 1.5583305 1.5207496 1.5523853 1.5480748 1.5527859 1.5207469 1.5483492 1.5207521 1.5441904 1.5407409 1.5207485 1.5443818 1.5408446 1.5556944 1.5207458 1.5506389 1.5544655 1.5494937 1.5207446 1.5465274 1.5425039 1.5454377 1.5207418 1.5418181 1.5376854 1.5347457 1.5207433 1.537723 1.5349794 1.5324296 1.5207403 1.5302529 1.5207519 1.532598 1.5305399 1.5207484 1.5392639 1.5361264 1.5386117 1.5207457 1.535788 1.5207535 1.5336433 1.5312901 1.5207493 1.5333168 1.5311746 1.5545701 1.5207465 1.5500076 1.5551199 1.5504419 1.5207432 1.5459014 1.5422187 1.5462367 1.5207405 1.5424823 1.5573066 1.5521672 1.5207438 1.5530309 1.5486854 1.5479622 1.5207406 1.5438066 1.5447773 1.5412957 1.5207383 1.5386541 1.5358289 1.5388626 1.5207339 1.5359739 1.5333635 1.5310314 1.5207365 1.5334601 1.5312835 1.5401469 1.5207318 1.5369516 1.5207225 1.5379204 1.5352251 1.5207203 1.5344104 1.5207197 1.5319812 1.5328747 1.520718 1.5308412 1.528797 1.5274073 1.520729 1.5290739 1.5274884 1.5262447 1.5252733 1.5262729 1.5252596 1.5207266 1.5292074 1.5277145 1.5288762 1.5272952 1.526458 1.5253095 1.5207369 1.526084 1.5250734 1.5244727 1.5207323 1.5238211 1.5244238 1.5237368 1.5207366 1.5232936 1.5228692 1.5231793 1.5207323 1.5227308 1.5207198 1.5244462 1.5236751 1.5207177 1.5242365 1.5207195 1.5235483 1.5231038 1.5207175 1.5226029 1.5229886 1.5225378 1.5207266 1.5284219 1.5270127 1.5287839 1.5272064 1.5258341 1.5248479 1.5207265 1.5259972 1.5249883 1.5287942 1.5273413 1.5287191 1.5271562 1.5218077 1.5261204 1.525007 1.5259585 1.5217381 1.524959 1.5240334 1.5233691 1.5213954 1.5241565 1.523415 1.5228318 1.5213363 1.5223639 1.5228669 1.5224264 1.5241712 1.5234837 1.524131 1.5234508 1.5229246 1.5224347 1.5228967 1.5224502 1.5225325 1.5222687 1.5223739 1.5220681 1.5216844 1.5220637 1.5218921 1.5218506 1.5216446 1.5216815 1.5222401 1.5219526 1.5212875 1.5221784 1.5218706 1.5217275 1.5212528 1.521537 1.5216514 1.5214806 1.5217739 1.5215517 1.521404 1.5213485 1.5220272 1.5217617 1.5220762 1.5217767 1.5215555 1.5213825 1.521564 1.5213987 1.521208 1.5220807 1.5218004 1.5220931 1.5211419 1.5218107 1.5215806 1.5214089 1.5211194 1.5215883 1.5214146 1.5212621 1.5210635 1.5212711 1.5212764 1.5212794 1.5284121 1.5269957 1.5286336 1.5271688 1.5258028 1.524813 1.5259435 1.5249204 1.5292862 1.5276067 1.5291801 1.5275159 1.5210957 1.5263245 1.525158 1.526242 1.5210578 1.5251756 1.5239955 1.5233241 1.5210211 1.5240777 1.5233889 1.5227801 1.520989 1.5223444 1.522832 1.5223835 1.5242796 1.5234947 1.5242926 1.5235681 1.5229171 1.5224132 1.5229781 1.5225017 1.5290598 1.5275418 1.5292574 1.527696 1.5262637 1.5251909 1.5263829 1.5252863 1.5299114 1.5281667 1.5289344 1.5274649 1.5268234 1.5255873 1.5262252 1.5251871 1.5216119 1.5242273 1.5235147 1.5243044 1.5215842 1.523574 1.522935 1.5224275 1.5212254 1.5229813 1.5225038 1.5245729 1.5212035 1.52375 1.5242481 1.5235467 1.5231383 1.5225975 1.5229743 1.522511 1.5219692 1.5217025 1.5219985 1.5217237 1.5214943 1.5213326 1.5215087 1.5213418 1.5215603 1.5220185 1.5217369 1.5220907 1.52154 1.5217722 1.5215168 1.5213465 1.5211859 1.5215459 1.5213696 1.5211984 1.5211708 1.5212022 1.521204 1.5212222 1.5220307 1.5217473 1.5220917 1.5217967 1.5215258 1.5213394 1.5215656 1.5213855 1.5221711 1.5218387 1.5221069 1.5218156 1.5210313 1.521601 1.5213991 1.5215857 1.521011 1.5214054 1.5211986 1.5212344 1.5209651 1.5212455 1.521253 1.6024851 1.5209472 1.5935834 1.6053007 1.5960923 1.5860875 1.5790422 1.5883302 1.5810456 1.6100078 1.6006886 1.60567 1.5964892 1.592835 1.5846474 1.5887287 1.5814413 1.5209944 1.5724787 1.5664137 1.5742761 1.5209817 1.5679955 1.5608024 1.555649 1.5209329 1.5621997 1.5568952 1.5777778 1.5209232 1.570751 1.5746476 1.5683486 1.5648644 1.5589104 1.5625086 1.5571613 1.6079274 1.59865 1.6076625 1.5983169 1.5908301 1.5834963 1.5904328 1.583008 1.6090495 1.5997526 1.6051751 1.5959989 1.5919433 1.5838285 1.5882589 1.5809817 1.5766257 1.5702637 1.576114 1.5690872 1.5210666 1.5643808 1.5584346 1.5631906 1.5210091 1.5577951 1.5769977 1.5706558 1.5210201 1.5742193 1.5679494 1.5647764 1.5209683 1.5588299 1.5621464 1.5568295 1.5509582 1.5467486 1.5520789 1.5477273 1.5429658 1.5396179 1.5438383 1.5403743 1.5540086 1.549142 1.5523014 1.5479274 1.5209652 1.5451784 1.5413064 1.544019 1.5209321 1.5405411 1.536653 1.5340681 1.520929 1.5373244 1.5346435 1.5318157 1.5208995 1.529884 1.5323208 1.530314 1.5381974 1.5352087 1.5374789 1.5347773 1.532845 1.530614 1.5324362 1.5304138 1.5535363 1.5486812 1.5528919 1.5484627 1.5210258 1.5447263 1.54087 1.5445011 1.5209701 1.5409724 1.5539365 1.5490808 1.5210431 1.55199 1.5476438 1.5451266 1.5209764 1.5412663 1.5437605 1.5403085 1.5377746 1.5348095 1.537862 1.5351271 1.5324677 1.5302677 1.5327538 1.530702 1.5381682 1.5351905 1.5372749 1.5346256 1.5209277 1.5328359 1.5306138 1.5323315 1.5208958 1.5303517 1.6080709 1.5988154 1.5209304 1.6082042 1.5988308 1.5910069 1.5208958 1.5829081 1.590916 1.5834529 1.6104474 1.6010087 1.6092976 1.5998826 1.5930519 1.5847778 1.5919383 1.584454 1.5760767 1.569724 1.5765095 1.5694172 1.5638247 1.5584303 1.5634569 1.557992 1.577805 1.5713224 1.5774524 1.5709107 1.565276 1.5597533 1.5648455 1.5592759 1.5209072 1.6110376 1.6016936 1.6077065 1.5208872 1.5984968 1.5938077 1.5863937 1.5208777 1.5907391 1.583424 1.6078367 1.5208615 1.5988319 1.6025095 1.5938572 1.5912684 1.5833912 1.5866013 1.5797851 1.5794522 1.5722967 1.5766109 1.5702725 1.566298 1.5602308 1.5643747 1.5589572 1.5208738 1.5767657 1.5705777 1.5734188 1.5208631 1.5675009 1.5648146 1.55954 1.5208497 1.561996 1.5569519 1.5530371 1.520841 1.548203 1.5525438 1.5480977 1.5442805 1.5404626 1.5441086 1.5405587 1.5542257 1.5496919 1.5537312 1.5491987 1.5456127 1.5419885 1.5451365 1.5415177 1.520872 1.5371265 1.534246 1.5371509 1.5208544 1.5344506 1.5319792 1.5298592 1.5208699 1.5321216 1.5301217 1.5384828 1.5208508 1.5354303 1.5380361 1.5352699 1.533028 1.5307646 1.5328719 1.5308013 1.5547138 1.549754 1.5535318 1.5490981 1.5457222 1.5417833 1.5451072 1.541547 1.5208406 1.5542354 1.549885 1.5519218 1.5208314 1.5478113 1.5459571 1.5424558 1.5208357 1.5441151 1.5408189 1.5386172 1.5208251 1.5355649 1.5383932 1.5356206 1.5331611 1.5308971 1.5332123 1.5311296 1.5393441 1.5363278 1.5379046 1.535355 1.5339437 1.5316791 1.5331324 1.5312139 1.5282279 1.5268329 1.528608 1.5270335 1.5256676 1.524695 1.5258305 1.5248304 1.5288762 1.5273978 1.5286931 1.5271113 1.5261568 1.5250246 1.5259034 1.5248975 1.5238931 1.5232417 1.5240081 1.5233347 1.5227144 1.52229 1.5227903 1.5223532 1.5241768 1.5234213 1.5240667 1.5233858 1.5228636 1.5223753 1.5228332 1.5223889 1.5285584 1.5271086 1.5289527 1.5273324 1.5258961 1.5248821 1.5260913 1.5250565 1.5288833 1.5274109 1.5286668 1.5271088 1.5261749 1.5250469 1.5259199 1.5249295 1.523975 1.5233071 1.52413 1.5233839 1.5227677 1.5222974 1.5228331 1.5223902 1.5241282 1.5234466 1.5240394 1.5233783 1.5228923 1.5224057 1.5228412 1.5224086 1.5219529 1.5216885 1.5220063 1.5217093 1.5214826 1.5213096 1.5214984 1.5213346 1.522023 1.5217444 1.5220357 1.5217335 1.5215266 1.5213429 1.5215188 1.5213518 1.5211884 1.5212079 1.5212141 1.5212224 1.5219592 1.5216927 1.5220378 1.5217357 1.5214857 1.5213122 1.5215213 1.5213545 1.5220539 1.521775 1.5220628 1.5217895 1.521556 1.5213846 1.5215741 1.5214052 1.521191 1.5212251 1.5212514 1.5212732 1.5282192 1.5268342 1.528427 1.526997 1.5256723 1.5247131 1.5258069 1.5248191 1.5290056 1.5273812 1.5290397 1.5274123 1.526147 1.5250285 1.52617 1.5251339 1.5239235 1.5232777 1.5240097 1.5233503 1.5227561 1.5223394 1.5228193 1.5223929 1.5241898 1.5234427 1.5242786 1.5235787 1.5228956 1.5224193 1.5230107 1.5225533 1.5291365 1.527641 1.5293505 1.5278363 1.5263817 1.5253258 1.526562 1.5254966 1.5299096 1.5282581 1.5295665 1.5281595 1.5269866 1.5258186 1.5269704 1.5243769 1.5236751 1.5245399 1.5231042 1.5226043 1.5248596 1.5219798 1.5217248 1.5220266 1.5217655 1.5215255 1.52137 1.5215607 1.5214008 1.5220469 1.5217821 1.5221592 1.5218544 1.5215752 1.5214145 1.5216375 1.5214686 1.5212403 1.5212666 1.52128 1.5213272 1.5222109 1.5219294 1.5210078 1.5209409 1.5209872 1.5209265 1.5208947 1.5208598 1.5208801 1.520845 1.520969 1.5209107 1.5209684 1.5209051 1.5208628 1.5208301 1.5208581 1.520826 1.5208335 1.520814 1.5208187 1.5207977 1.5207985 1.5207873 1.5207825 1.5207716 1.5208056 1.5207875 1.5208022 1.5207846 1.5207732 1.520763 1.5207706 1.5207613 1.5209866 1.5209234 1.5209798 1.5209179 1.5208711 1.5208326 1.5208668 1.5208319 1.5209729 1.5209127 1.5209761 1.5209154 1.5208667 1.5208319 1.5208691 1.5208339 1.5208064 1.520787 1.5208058 1.5207849 1.5207727 1.5207622 1.520771 1.5207601 1.5208058 1.5207864 1.5208076 1.5207879 1.6107466 1.520771 1.5207599 1.5207723 1.5207618 1.6009349 1.5923459 1.5851322 1.5783826 1.5802962 1.572113 1.56629 1.5738778 1.5673195 1.5608852 1.5554748 1.5618323 1.5510096 1.5469912 1.5434006 1.5402124 1.5371444 1.5347203 1.5213642 1.5213563 1.521016 1.5210003 1.521347 1.5213352 1.5209845 1.5209679 1.5208861 1.5208716 1.5208433 1.5208297 1.520855 1.5208392 1.520815 1.5208 1.521321 1.5213045 1.5209495 1.5209304 1.5212851 1.5212614 1.5209112 1.5208914 1.5208232 1.5208074 1.5207863 1.5207718 1.5207921 1.5207771 1.5207592 1.5207476 1.5207966 1.520784 1.5207811 1.5207678 1.5207708 1.5207573 1.5207551 1.5207423 1.520775 1.5207634 1.5207638 1.5207521 1.52075 1.5207376 1.5207398 1.5207273 1.5207426 1.5207295 1.5207285 1.5207153 1.520717 1.5207051 1.5207038 1.5206931 1.5207242 1.5207125 1.5207149 1.5207032 1.5207005 1.5206903 1.5206923 1.5206823 1.5214178 1.5213949 1.5210358 1.5210174 1.5213712 1.5213475 1.5209985 1.5209795 1.5208947 1.5208806 1.5208573 1.5208453 1.5208658 1.5208507 1.5208325 1.5208192 1.5213229 1.5213327 1.5213132 1.5209586 1.5209388 1.520921 1.5212934 1.5212762 1.5209034 1.520886 1.5208337 1.5208169 1.5208019 1.5208043 1.5207896 1.5207763 1.5207876 1.5207742 1.5207637 1.520752 1.5208053 1.5207941 1.5207878 1.5207773 1.5207823 1.52077 1.5207661 1.5207545 1.5207832 1.5207731 1.5207769 1.5207659 1.5207612 1.5207487 1.5207541 1.520743 1.5207561 1.5207422 1.5207298 1.5207415 1.5207287 1.5207172 1.520718 1.5207069 1.5207063 1.520696 1.5207359 1.5207238 1.5207125 1.5207305 1.5207183 1.5207073 1.5207019 1.5206918 1.5206969 1.5206873 1.5212394 1.5212158 1.5208719 1.5208538 1.5211886 1.521158 1.5208351 1.5208166 1.5207619 1.5207488 1.5207358 1.520726 1.5207358 1.5207243 1.5207157 1.5207057 1.5211182 1.5207991 1.5210891 1.5213804 1.5207857 1.5208654 1.5213676 1.5211494 1.5208712 1.5207968 1.5207129 1.5206961 1.520703 1.5207033 1.5206872 1.520675 1.5206978 1.5206844 1.5206716 1.5206696 1.5211635 1.5211727 1.5207865 1.5207745 1.5211236 1.5210516 1.5207709 1.5207706 1.5206982 1.5206889 1.5206846 1.5206767 1.5206837 1.5206806 1.5206717 1.5206685 1.5206928 1.5206822 1.5206821 1.5206726 1.5206722 1.5206624 1.5206633 1.5206541 1.5206798 1.5206708 1.520673 1.520665 1.5206612 1.5206522 1.5206561 1.520647 1.5206515 1.5206436 1.5206403 1.5206326 1.5206327 1.5206217 1.5206247 1.5206147 1.5206111 1.520604 1.5206419 1.5206373 1.520631 1.5206197 1.5206272 1.5206146 1.5206089 1.5206009 1.5206039 1.520596 1.5206349 1.5206246 1.5206279 1.5206177 1.5206161 1.5206093 1.5206093 1.5206029 1.5206253 1.5206151 1.5206218 1.5206115 1.5206067 1.5205999 1.5206028 1.5205956 1.5212323 1.5212582 1.5208522 1.5208329 1.5212551 1.5208698 1.5212465 1.5212257 1.52082 1.5208077 1.5207487 1.5207351 1.5207302 1.5207188 1.5207616 1.5207412 1.5207257 1.5207164 1.5207102 1.5207009 1.5211953 1.5207964 1.5207074 1.5206929 1.5206856 1.5206752 1.520676 1.5206663 1.5206965 1.5206863 1.5206661 1.5206557 1.5206574 1.5206482 1.5206723 1.5206633 1.5206685 1.5206597 1.5206823 1.5206781 1.5206546 1.5206456 1.5206515 1.5206417 1.5206459 1.5206387 1.5206361 1.5206324 1.5207216 1.5207102 1.5207071 1.5206951 1.5206986 1.520687 1.5206838 1.5206728 1.5207025 1.5206914 1.5207037 1.5206921 1.5206792 1.5206682 1.5206801 1.5206683 1.5206756 1.5206648 1.5206622 1.5206514 1.5206546 1.520645 1.5206422 1.5206336 1.5206577 1.5206479 1.5206579 1.5206474 1.5206389 1.5206306 1.5206385 1.5206304 1.5206982 1.5206873 1.5207006 1.5206888 1.5206763 1.5206654 1.5206777 1.5206669 1.5207028 1.520692 1.520704 1.5206926 1.52068 1.5206691 1.5206812 1.52067 1.5206541 1.5206444 1.5206556 1.5206452 1.5206356 1.5206274 1.5206363 1.5206282 1.5206578 1.5206481 1.5206593 1.5206495 1.5206385 1.5206304 1.5206404 1.5206321 1.5207324 1.5207222 1.5207176 1.5207069 1.5207116 1.5207008 1.5206968 1.5206866 1.5207122 1.5207017 1.5207104 1.520701 1.5206918 1.5206818 1.5206912 1.5206812 1.5206888 1.5206781 1.5206677 1.5206753 1.5206648 1.5206551 1.5206579 1.5206487 1.520646 1.5206376 1.5206707 1.5206606 1.5206513 1.5206702 1.5206602 1.5206509 1.5206425 1.5206335 1.5206421 1.520634 1.5207109 1.5207008 1.5207085 1.5206983 1.5206911 1.5206812 1.5206886 1.5206787 1.5207083 1.520699 1.520708 1.5206987 1.5206894 1.5206796 1.5206891 1.5206793 1.5206703 1.5206605 1.5206512 1.5206679 1.5206581 1.520649 1.5206425 1.5206336 1.5206404 1.5206324 1.5206688 1.5206592 1.52065 1.5206686 1.5206591 1.5206501 1.5206414 1.5206327 1.5206417 1.5206338 1.5206351 1.5206261 1.5206248 1.5206169 1.5206173 1.5206083 1.5206088 1.5206003 1.5206222 1.5206146 1.5206221 1.5206148 1.5206063 1.5205979 1.5206066 1.5205976 1.520598 1.52059 1.5205867 1.5205829 1.5205786 1.5205668 1.5205715 1.5205555 1.5205544 1.520543 1.5205877 1.5205873 1.5205763 1.5205638 1.5205758 1.5205633 1.5205512 1.5205404 1.5205511 1.5205403 1.5205827 1.5205711 1.5205746 1.5205627 1.5205595 1.5205482 1.5205515 1.5205413 1.5205725 1.5205607 1.5205726 1.5205609 1.5205494 1.5205391 1.5205495 1.520539 1.520619 1.5206115 1.5206199 1.5206125 1.5206039 1.5205957 1.5206049 1.5205968 1.5206223 1.520615 1.5206242 1.520617 1.520607 1.520599 1.5206089 1.5206 1.5205854 1.5205865 1.5205738 1.520562 1.5205748 1.520562 1.5205498 1.5205389 1.5205498 1.5205388 1.520589 1.5205899 1.5205774 1.5205646 1.5205781 1.5205664 1.5205517 1.5205396 1.5205531 1.5205411 1.5205717 1.5205599 1.5205712 1.5205594 1.5205484 1.5205377 1.5205479 1.5205373 1.5205718 1.5205601 1.5205736 1.5205616 1.5205485 1.5205378 1.5205497 1.5205383 1.5206308 1.5206228 1.5206211 1.5206134 1.5206401 1.5206297 1.5206138 1.5206048 1.5206048 1.5205961 1.5206175 1.5206102 1.5206181 1.5206103 1.5206258 1.5206263 1.5206024 1.5205939 1.5206026 1.5205941 1.5205948 1.5205865 1.5205843 1.5205845 1.5206179 1.5206109 1.5206167 1.5206097 1.520626 1.5206248 1.5206026 1.5205932 1.5206013 1.5205927 1.5206171 1.5206101 1.5206185 1.5206118 1.5206252 1.5206264 1.5206018 1.5205933 1.5206036 1.5205952 1.5205836 1.5205831 1.5205837 1.5205856 1.5208056 1.5207858 1.5208103 1.5207883 1.5207726 1.5207642 1.5207749 1.5207665 1.5208112 1.5207905 1.5208176 1.5207941 1.5207758 1.5207674 1.5207787 1.5207691 1.5207589 1.5207563 1.5207612 1.5207585 1.5207547 1.5207535 1.5207571 1.520756 1.5207623 1.5207597 1.5207638 1.5207611 1.5207584 1.5207573 1.5207598 1.520759 1.5208105 1.5207912 1.5208227 1.5207997 1.5207785 1.5207705 1.5207856 1.5207765 1.5208381 1.5208151 1.5208648 1.5208392 1.5207985 1.5207885 1.520822 1.5208109 1.5207656 1.5207631 1.5207709 1.5207678 1.5207615 1.52076 1.520766 1.5207645 1.5207822 1.5207787 1.5208042 1.5208004 1.5207765 1.5207745 1.5207981 1.5207962 1.5207516 1.5207488 1.5207542 1.520751 1.5207447 1.5207391 1.5207467 1.5207409 1.5207554 1.5207526 1.5207575 1.5207549 1.5207479 1.5207419 1.5207506 1.5207444 1.520732 1.5207236 1.5207336 1.520724 1.5207143 1.5207042 1.5207143 1.5207039 1.5207343 1.5207254 1.5207371 1.5207275 1.5207154 1.5207048 1.5207177 1.5207071 1.5207577 1.5207542 1.5207622 1.5207586 1.5207493 1.5207427 1.5207537 1.5207473 1.520772 1.5207684 1.5207938 1.5207901 1.5207634 1.5207567 1.5207851 1.520778 1.5207346 1.5207251 1.5207392 1.5207288 1.5207147 1.5207037 1.5207182 1.520707 1.5207483 1.5207384 1.5207697 1.520759 1.5207275 1.5207158 1.5207479 1.5207573 1.5207524 1.5207487 1.5207574 1.5207538 1.5207502 1.5207454 1.5207419 1.5207467 1.5207423 1.5207573 1.5207542 1.5207506 1.5207585 1.5207553 1.5207517 1.5207469 1.5207428 1.5207481 1.5207435 1.5207379 1.5207326 1.5207378 1.5207324 1.5207199 1.5207168 1.5207187 1.5207141 1.520727 1.5207263 1.520738 1.5207317 1.5207387 1.520733 1.5207172 1.5207119 1.5207187 1.5207131 1.5207252 1.5207266 1.5207599 1.5207568 1.5207532 1.5207603 1.5207576 1.5207539 1.5207494 1.5207452 1.5207502 1.5207459 1.5207629 1.5207601 1.5207563 1.5207726 1.5207687 1.5207648 1.5207523 1.5207479 1.5207609 1.5207561 1.5207404 1.5207347 1.520741 1.5207346 1.52072 1.5207152 1.5207197 1.5207142 1.5207281 1.5207279 1.5207427 1.5207368 1.5207512 1.5207448 1.5207209 1.5207157 1.5207292 1.5207239 1.5207293 1.5207375 1.5208738 1.520855 1.5208931 1.5208721 1.5208426 1.5208348 1.5208593 1.5208514 1.52083 1.5208273 1.5208465 1.5208437 1.5208139 1.5208095 1.5208052 1.520829 1.5208269 1.5208227 1.5208014 1.5207971 1.5208184 1.5208136 1.5208378 1.5208356 1.5208313 1.5208463 1.5208431 1.5208387 1.5208268 1.5208216 1.5208341 1.5208284 1.5207923 1.5207867 1.5208081 1.520801 1.5207716 1.5207658 1.5207841 1.5207776 1.5207796 1.5207929 1.5208157 1.5208089 1.5208225 1.5208149 1.5207923 1.5207859 1.5208014 1.5208073 1.5208851 1.5208799 1.5208751 1.520909 1.5209052 1.5208701 1.5210021 1.5209311 1.5210048 1.5209337 1.5208779 1.5208413 1.5208805 1.5208411 1.5209846 1.5209187 1.5209707 1.5209131 1.5208731 1.5208359 1.5208691 1.5208358 1.5208138 1.5207932 1.5208142 1.5207925 1.5207778 1.5207665 1.5207779 1.5207662 1.5208106 1.5207918 1.5208107 1.5207921 1.5207767 1.5207656 1.520777 1.5207669 1.5209806 1.5209213 1.5209674 1.5209113 1.5208759 1.5208415 1.5208684 1.5208359 1.5209779 1.52092 1.5210285 1.5209556 1.5208723 1.5208397 1.5209007 1.520863 1.5208135 1.5207931 1.5208095 1.5207917 1.5207793 1.5207682 1.5207785 1.5207685 1.5208132 1.5207953 1.5208321 1.5208112 1.5207809 1.5207711 1.5207943 1.5207819 1.5210432 1.520981 1.5210507 1.5209911 1.5209296 1.5208944 1.5209416 1.5209078 1.5210628 1.5210026 1.5210861 1.5210171 1.5209529 1.5209162 1.5209654 1.5209298 1.520868 1.5208483 1.5208824 1.5208634 1.5208337 1.5208228 1.5208492 1.5208377 1.5208912 1.5208725 1.5209031 1.520883 1.5208575 1.5208464 1.5208667 1.5208556 1.5211183 1.5210507 1.52113 1.5210706 1.521004 1.5209687 1.5210251 1.5209906 1.5209421 1.5209206 1.5209645 1.5209449 1.5209061 1.5208942 1.5209301 1.5209188 1.5206928 1.5206824 1.5206923 1.520681 1.5206726 1.5206636 1.5206713 1.5206627 1.5206928 1.5206822 1.5206952 1.5206837 1.5206715 1.5206626 1.5206729 1.5206633 1.5206555 1.5206485 1.5206551 1.5206483 1.5206425 1.5206371 1.520643 1.5206384 1.5206551 1.5206488 1.5206558 1.520649 1.5206436 1.5206392 1.5206439 1.5206396 1.5206916 1.520681 1.5206947 1.520683 1.5206713 1.5206627 1.520673 1.5206642 1.5207029 1.5206914 1.5206798 1.5206703 1.5206549 1.5206489 1.5206561 1.5206496 1.520644 1.5206399 1.5206446 1.5206404 1.5206616 1.5206549 1.5206695 1.5206492 1.5206446 1.5206629 1.5206569 1.5207073 1.5206981 1.520704 1.5206947 1.520688 1.5206781 1.5206845 1.5206757 1.5207016 1.5206922 1.5207028 1.5206933 1.5206829 1.5206742 1.520684 1.5206751 1.5206687 1.5206596 1.5206524 1.5206666 1.5206579 1.5206514 1.520646 1.5206396 1.5206458 1.5206403 1.5206653 1.5206566 1.5206503 1.5206662 1.5206574 1.5206512 1.520645 1.5206403 1.5206459 1.5206412 1.5207048 1.5206952 1.5207037 1.5206941 1.5206859 1.520677 1.5206848 1.520676 1.5207052 1.5206956 1.5207134 1.5207039 1.5206864 1.5206776 1.5206946 1.5206858 1.520668 1.5206591 1.5206529 1.5206672 1.5206585 1.5206525 1.5206477 1.5206427 1.5206473 1.5206424 1.5206689 1.5206602 1.5206542 1.5206769 1.5206685 1.5206624 1.5206491 1.5206447 1.5206572 1.5206526 1.520632 1.5206266 1.520634 1.5206291 1.5206205 1.5206129 1.5206232 1.5206156 1.5206352 1.5206308 1.5206356 1.5206313 1.5206247 1.5206175 1.5206251 1.5206168 1.5206026 1.5206046 1.5205903 1.5205842 1.5205911 1.520576 1.5205722 1.5205514 1.5205593 1.5205431 1.5206069 1.5206057 1.5205938 1.5205803 1.520592 1.5205762 1.520562 1.5205431 1.5205583 1.5205423 1.5205834 1.5205688 1.5205849 1.5205697 1.5205538 1.5205389 1.5205541 1.5205388 1.5205855 1.5205701 1.5205859 1.5205706 1.5205544 1.5205391 1.5205547 1.5205392 1.5206359 1.5206314 1.5206362 1.5206315 1.5206256 1.5206181 1.5206255 1.5206177 1.5206404 1.5206359 1.5206514 1.5206068 1.5206062 1.5205929 1.520577 1.5205921 1.520576 1.5205605 1.5205434 1.5205595 1.5205433 1.5205875 1.520572 1.5205873 1.5205719 1.5205561 1.5205404 1.520556 1.5205403 1.5205893 1.5205739 1.5205957 1.5205805 1.5205579 1.5205421 1.5205642 1.5205483 1.5206281 1.520623 1.5206302 1.5206261 1.5206342 1.5206356 1.5206162 1.5206077 1.5206193 1.5206106 1.5206306 1.5206267 1.5206317 1.520628 1.5206359 1.5206369 1.52062 1.5206113 1.5206215 1.5206118 1.5205973 1.5205996 1.5206002 1.5206007 1.5206334 1.5206298 1.5206329 1.5206292 1.5206384 1.5206381 1.5206234 1.5206136 1.5206224 1.5206135 1.5206352 1.5206315 1.5206429 1.5206394 1.5206404 1.5206482 1.5206247 1.5206157 1.5206327 1.5206226 1.5206024 1.5206023 1.5206044 1.5206111 1.5207559 1.520747 1.520767 1.5207578 1.5207386 1.5207309 1.5207492 1.5207415 1.520775 1.5207654 1.5207565 1.5207485 1.5207235 1.520715 1.5207105 1.5207342 1.5207271 1.5207231 1.5207072 1.520704 1.5207201 1.5207173 1.5207409 1.5207331 1.520729 1.520745 1.5207373 1.5207332 1.5207259 1.520723 1.5207301 1.5207274 1.5206445 1.5206258 1.5206086 1.5206972 1.5206938 1.5207095 1.5207065 1.5207012 1.5207142 1.5206866 1.5206751 1.5206978 1.520686 1.52072 1.5207243 1.520662 1.5206713 1.5226307 1.5226325 1.5226344 1.5226413 1.5226467 1.5226482 1.5226338 1.5226352 1.5226506 1.5226585 1.5226374 1.5226471 1.5227097 1.522718 1.5227209 1.5227212 1.5227353 1.5227424 1.5227149 1.5227213 1.5227454 1.5227457 1.5227244 1.5227245 1.5227237 1.522725 1.5227235 1.5227204 1.5227484 1.5227494 1.5227264 1.522727 1.5227481 1.5227452 1.5227258 1.5227227 1.5226925 1.5226897 1.5226877 1.5226857 1.5227169 1.5227146 1.5226957 1.5226934 1.5227126 1.5227106 1.5226912 1.5226898 1.522662 1.522658 1.5226358 1.5225686 1.5226857 1.522682 1.5226671 1.5226632 1.5226576 1.5225808 1.5226398 1.522555 1.5210112 1.5207749 1.5206809 1.5206682 1.5209694 1.5207729 1.5209858 1.5207718 1.5206805 1.5206682 1.5206793 1.5206669 1.5206059 1.5205991 1.5205958 1.5205919 1.5206031 1.5205965 1.5206047 1.5205987 1.5205928 1.5205888 1.5205953 1.5205907 1.5205398 1.5205334 1.5205311 1.5205308 1.5205324 1.5205265 1.5205386 1.5205328 1.5205241 1.5205236 1.5205305 1.5205302 1.5205291 1.5205288 1.5205293 1.5205292 1.5205216 1.5205214 1.5205286 1.5205283 1.5205217 1.5205211 1.5205286 1.5205284 1.5205271 1.5205267 1.5205269 1.5205268 1.5205141 1.5205138 1.520525 1.5205249 1.5205138 1.5205137 1.5205251 1.520525 1.5205276 1.5205272 1.5205145 1.5205142 1.520526 1.520526 1.5205159 1.5205277 1.5205337 1.6382254 1.6395277 1.6727455 1.6765836 1.6407562 1.6396654 1.6766828 1.6753689 1.6643558 1.6683027 1.6516089 1.6556739 1.6550315 1.659652 1.6682935 1.6669317 1.6556793 1.6596051 1.6533038 1.6582003 1.6418829 1.6417405 1.6759765 1.6787935 1.6417652 1.6392802 1.6762854 1.6734185 1.6674984 1.6703745 1.6545164 1.6586924 1.6567657 1.6615856 1.6678214 1.6649663 1.6552438 1.6590922 1.6521659 1.6562091 1.6408858 1.644571 1.6772116 1.6794547 1.6486917 1.6438762 1.6804308 1.6769664 1.6681343 1.6700558 1.6564868 1.6596125 1.6575414 1.6612562 1.6718604 1.6682615 1.6594465 1.6630125 1.6551321 1.6593029 1.6453563 1.6453606 1.678413 1.6791658 1.6472969 1.6425119 1.6774808 1.6760365 1.6698385 1.6704917 1.6571008 1.6609306 1.657331 1.6615118 1.6687995 1.6674315 1.655959 1.6598797 1.6536437 1.6585362 1.6420282 1.6448454 1.6766123 1.6788023 1.6503489 1.6468053 1.6814542 1.6805038 1.6681218 1.670176 1.6556239 1.6593135 1.6572911 1.6612477 1.6719611 1.6709844 1.6592866 1.6630402 1.658291 1.6621013 1.6476984 1.6482933 1.6797953 1.6790824 1.650163 1.6414716 1.6766052 1.6747381 1.6711903 1.6704568 1.6586888 1.6623511 1.6576497 1.6615794 1.6680921 1.6662481 1.655456 1.6592709 1.6528002 1.6574964 1.6389622 1.642545 1.6765264 1.6801942 1.6459154 1.6418027 1.6796917 1.6770337 1.668148 1.6717605 1.6561232 1.6595134 1.6587722 1.6630477 1.6711335 1.6684661 1.6584754 1.6622781 1.6556239 1.6596626 1.643629 1.6437091 1.6772541 1.6780341 1.644286 1.6408906 1.6768447 1.6746183 1.6687359 1.6695348 1.656025 1.6599356 1.6565713 1.660672 1.6683414 1.6661936 1.6557306 1.6595783 1.6537317 1.6575294 1.6429674 1.6439647 1.6749752 1.6767934 1.6462216 1.644866 1.6794554 1.6777251 1.6658367 1.6675071 1.6537325 1.6572775 1.6550818 1.6588487 1.670265 1.6684978 1.6581916 1.6616683 1.6564123 1.6599352 1.6459579 1.6432573 1.6762218 1.6770462 1.6424812 1.6371898 1.6750951 1.6721195 1.6677687 1.6686641 1.655335 1.6590847 1.6563225 1.6600541 1.6668167 1.6638772 1.6546748 1.658265 1.6515749 1.655373 1.5226769 1.5226824 1.5226186 1.5225685 1.5226585 1.5226619 1.5226804 1.5226817 1.5226026 1.5225557 1.5226199 1.5225711 1.5226891 1.5227012 1.5227275 1.5227472 1.5226371 1.5225867 1.5226784 1.5226243 1.5230394 1.5228542 1.6367635 1.642607 1.639913 1.6459227 1.6289568 1.6319641 1.616001 1.6225831 1.6184361 1.6253229 1.6405708 1.646612 1.6382202 1.6442316 1.6326428 1.6303347 1.618955 1.6259217 1.6169843 1.6237629 1.6087707 1.6110639 1.6115622 1.6096659 1.5975436 1.6027447 1.5991111 1.6047231 1.5910005 1.5924161 1.5848683 1.5751938 1.5798968 1.585984 1.5749766 1.5800769 1.5994239 1.6051208 1.5980234 1.6034287 1.5926997 1.5914106 1.5862022 1.5750364 1.5802213 1.5851381 1.5751354 1.5800174 1.6392646 1.6453584 1.6413245 1.6475429 1.631294 1.6332673 1.6177014 1.6246057 1.6192902 1.6264312 1.6402296 1.646143 1.6371637 1.6430681 1.6323053 1.6292217 1.618856 1.6257097 1.6160664 1.6227352 1.6103353 1.6118071 1.6114544 1.6087183 1.5984309 1.6040115 1.5993541 1.6052159 1.5917545 1.5925834 1.5853693 1.5750701 1.580132 1.5860037 1.5745487 1.579908 1.5995359 1.6051084 1.5972676 1.6025775 1.5927981 1.5906092 1.586338 1.5753268 1.5804134 1.5843415 1.5738772 1.578646 ) ; } procBoundary2to0 { type processor; value nonuniform List<scalar> 52 ( 1.5241724 1.5242389 1.5241399 1.5297042 1.5225874 1.5242352 1.5242352 1.5241499 1.5241499 1.5241499 1.5241499 1.5210289 1.5220187 1.5242275 1.5242275 1.5242275 1.5242275 1.5243262 1.5243262 1.5243262 1.520858 1.5207982 1.524362 1.524362 1.524517 1.524517 1.520858 1.5207982 1.5245477 1.5245477 1.5245477 1.5207501 1.5207538 1.5248037 1.520753 1.5207604 1.520657 1.522428 1.5207561 1.5207656 1.5207807 1.520448 1.5207593 1.5207695 1.5207663 1.5207672 1.5207672 1.5207663 1.520763 1.5207726 1.5207748 1.5207681 ) ; } procBoundary2to3 { type processor; value nonuniform List<scalar> 1155 ( 1.5306596 1.5231248 1.5215468 1.5223214 1.5413209 1.5250947 1.52118 1.52113 1.5228369 1.5215886 1.5209712 1.5218051 1.5226744 1.5246973 1.5655243 1.5291059 1.5213482 1.5206689 1.520533 1.5217953 1.5217832 1.52216 1.5228369 1.5228369 1.5228369 1.5225816 1.5225816 1.5225816 1.5209388 1.5206897 1.5212837 1.5214635 1.5219417 1.5227907 1.5230826 1.5265049 1.5492182 1.5962315 1.535922 1.5226153 1.5208156 1.5217953 1.5207754 1.5216353 1.5216648 1.5217953 1.5217832 1.52216 1.52216 1.5221091 1.5226468 1.5198646 1.5226468 1.5226468 1.5226468 1.5221817 1.5221836 1.5210355 1.5211297 1.5208834 1.520925 1.5226615 1.5214628 1.5219464 1.5228764 1.5231462 1.5266886 1.5415752 1.5683882 1.6034438 1.609956 1.5247136 1.5488561 1.5197652 1.5216648 1.5212442 1.521766 1.521238 1.5216353 1.5216648 1.5216648 1.5216481 1.5215156 1.5215668 1.5216313 1.5216481 1.5216555 1.5218227 1.5216786 1.5219171 1.5219171 1.521969 1.5219531 1.5210355 1.5210355 1.5211297 1.5221814 1.5200384 1.5220828 1.5222208 1.5221814 1.5220381 1.5220139 1.5221308 1.5220899 1.521875 1.5219332 1.5219825 1.5222264 1.5213385 1.521369 1.5215388 1.5215898 1.5246447 1.5214058 1.5221155 1.5229581 1.5230893 1.5231062 1.52418 1.5298852 1.5480952 1.5650521 1.5866686 1.6057979 1.6290059 1.6435715 1.6078873 1.5234871 1.5488561 1.521766 1.521766 1.5216286 1.5217157 1.5217107 1.5217072 1.5216499 1.5216499 1.5215668 1.5215156 1.5215668 1.5214846 1.5216971 1.5213502 1.5214143 1.5214846 1.5214263 1.5214143 1.5214263 1.5214846 1.5213417 1.5212662 1.5216811 1.5216951 1.521259 1.5212184 1.5217428 1.5212123 1.5217415 1.5212184 1.5217272 1.5217415 1.5217415 1.5217509 1.521759 1.5217334 1.5217487 1.5215898 1.521878 1.521929 1.52224 1.5222264 1.5222264 1.5222264 1.5233553 1.5207073 1.5207202 1.5220828 1.5221548 1.5221162 1.5218123 1.5218086 1.5217739 1.5217815 1.5218541 1.521875 1.521875 1.5219332 1.5219825 1.5219825 1.5218303 1.5218573 1.5220215 1.5220501 1.5222733 1.5223161 1.5225517 1.5225597 1.5246447 1.5246447 1.5212928 1.5223294 1.5221226 1.5230177 1.5229767 1.5230335 1.5243429 1.524085 1.5242464 1.5301506 1.5480979 1.5715754 1.5908272 1.6102757 1.646148 1.6589676 1.6209167 1.5233468 1.5500997 1.5222089 1.5222089 1.5227 1.5229254 1.5232002 1.5220305 1.5217993 1.5215885 1.5215045 1.5216971 1.5216971 1.5212978 1.5213471 1.5212978 1.5213852 1.5214343 1.5212775 1.5212625 1.5212394 1.5212327 1.5212184 1.5212123 1.5212076 1.5212157 1.5211906 1.5211906 1.5212062 1.5211891 1.5211851 1.5211845 1.5211865 1.5226532 1.5225597 1.523069 1.5230323 1.5233995 1.5233516 1.5237471 1.5237274 1.5241345 1.5241345 1.524103 1.5207073 1.5207073 1.5207202 1.52198 1.5220148 1.522017 1.5217712 1.5212565 1.5212294 1.5212104 1.5211973 1.5212973 1.5213372 1.5208778 1.5213372 1.521434 1.5216036 1.523542 1.5239529 1.524452 1.5250487 1.525832 1.5266448 1.5275831 1.5286027 1.5211478 1.5223381 1.5225361 1.5230696 1.522845 1.5214733 1.5213649 1.5229103 1.521701 1.5218135 1.5235716 1.5218135 1.5236187 1.5239159 1.5239351 1.5304444 1.5265379 1.5263242 1.5481673 1.5435267 1.5630651 1.5797664 1.5708836 1.6209167 1.5932948 1.6315978 1.626977 1.6534412 1.6605788 1.6289104 1.5232733 1.52329 1.5207063 1.5811516 1.5416726 1.5236255 1.5236255 1.5242928 1.5248774 1.5255803 1.5231522 1.5225982 1.5221709 1.5219333 1.522472 1.522472 1.5213305 1.5214762 1.5213305 1.5215255 1.5215875 1.5217307 1.5212705 1.5212346 1.5209585 1.5209941 1.5212044 1.5212076 1.5211977 1.5212027 1.5208738 1.5208983 1.5211675 1.5211774 1.5211747 1.5211747 1.5211891 1.5211954 1.5211065 1.5211236 1.5211248 1.5211388 1.5211411 1.5211524 1.5211551 1.5211646 1.525832 1.5266448 1.5292695 1.5275831 1.5286027 1.5286027 1.5324339 1.5309696 1.5338299 1.5351616 1.5380374 1.5365201 1.5390813 1.5390813 1.5206472 1.5206499 1.520666 1.5206683 1.5205194 1.5218839 1.5217712 1.5205194 1.5217712 1.5209838 1.5210329 1.5210298 1.521065 1.5210617 1.5210878 1.5210857 1.5211066 1.5209852 1.5208778 1.5208726 1.5208778 1.5207772 1.5208726 1.5206687 1.520777 1.5206973 1.5206564 1.5264313 1.5274428 1.5286489 1.5300462 1.5209802 1.5225496 1.5228009 1.523118 1.5231632 1.5207872 1.5228443 1.5228513 1.5211579 1.5212179 1.5213649 1.5214733 1.521701 1.5218135 1.5246712 1.5230715 1.5248503 1.5230206 1.5253212 1.5251498 1.5256251 1.5256494 1.5261307 1.5259448 1.536192 1.5524285 1.5468808 1.5368853 1.56475 1.580349 1.595516 1.6289104 1.6152351 1.6113416 1.642553 1.6420705 1.6643347 1.67264 1.6359709 1.5207063 1.5228627 1.5207063 1.5207063 1.5985748 1.5654932 1.5246563 1.5246563 1.525435 1.5262477 1.5272211 1.523988 1.5232495 1.5226269 1.5222856 1.5230535 1.5230535 1.5213971 1.5215255 1.5215255 1.5217813 1.5219915 1.5213008 1.5212215 1.5210575 1.5209697 1.5210107 1.5208634 1.5208738 1.5208531 1.5208568 1.5208731 1.5209009 1.520816 1.5208359 1.5208195 1.5208195 1.5208478 1.5208503 1.5207489 1.5207581 1.5207679 1.5207779 1.5207877 1.5207966 1.5208043 1.5208108 1.5207164 1.5326324 1.5300462 1.5345865 1.539499 1.539499 1.5367968 1.5286489 1.5300462 1.5460556 1.5428363 1.5488986 1.551733 1.5575644 1.5545072 1.5598686 1.5598686 1.5205955 1.5205955 1.5205903 1.5205903 1.5205996 1.5206008 1.5206022 1.5205194 1.5205194 1.5205094 1.5206448 1.5207107 1.520715 1.5207181 1.5207208 1.5207239 1.5207279 1.5207333 1.5207401 1.5207037 1.5206426 1.5206291 1.5206426 1.5206195 1.5206291 1.5205465 1.5206053 1.5205283 1.5205137 1.5207048 1.5206936 1.5206834 1.5206746 1.5206671 1.5283836 1.5297577 1.5232005 1.5207488 1.5207672 1.5207558 1.5232288 1.5207529 1.5229236 1.5209648 1.5209529 1.5228947 1.5209852 1.5207872 1.5207872 1.5229778 1.5209084 1.520929 1.5211579 1.5226202 1.5213397 1.5213742 1.5225819 1.5212589 1.5212291 1.5211579 1.5212179 1.5218563 1.521955 1.5222819 1.5222134 1.5226382 1.5225514 1.522961 1.5230206 1.5322851 1.530387 1.5341997 1.5304438 1.5352131 1.5347982 1.5361539 1.5353699 1.5368261 1.5369623 1.5501245 1.563729 1.5659922 1.5519709 1.5787642 1.594923 1.5966475 1.6123041 1.6359709 1.6265732 1.6277712 1.6518546 1.65575 1.6141668 1.5858127 1.5258841 1.5258841 1.5267656 1.5278421 1.5291273 1.5249905 1.5240803 1.523196 1.5227343 1.5237667 1.5237667 1.5215066 1.5216901 1.5216901 1.5220469 1.5223344 1.5213672 1.5212256 1.5210778 1.5210344 1.5210802 1.52086 1.5208731 1.5208468 1.5208514 1.5209097 1.5209472 1.5208103 1.5208293 1.5208126 1.5208126 1.5208419 1.5208439 1.5207557 1.5207662 1.5207764 1.5207859 1.5207942 1.520801 1.5208064 1.5207164 1.5207164 1.5363943 1.5389463 1.5454031 1.5454031 1.541834 1.5297577 1.5320282 1.5339497 1.5540937 1.5496405 1.5563194 1.5584506 1.563077 1.5736774 1.5679618 1.5786625 1.5879443 1.5786625 1.5207558 1.5207397 1.5205648 1.5205648 1.5205637 1.5205692 1.5205667 1.5205667 1.5205681 1.5205672 1.5205107 1.5205075 1.5205075 1.5205063 1.5207031 1.5207059 1.5207085 1.5206982 1.5206382 1.520624 1.5206382 1.5206149 1.520624 1.5205666 1.5205679 1.5206017 1.5205473 1.5205273 1.5207048 1.5206936 1.5206834 1.5206746 1.5206671 1.5206671 1.5306472 1.5324302 1.5207488 1.5207672 1.5207529 1.5209648 1.5209529 1.5209852 1.5209852 1.5226033 1.5210901 1.5211287 1.520759 1.5207797 1.5207797 1.5209084 1.520929 1.5213397 1.5215649 1.5213742 1.5213756 1.5217449 1.5212589 1.5212291 1.521197 1.5214102 1.5214474 1.5213756 1.5215839 1.5216618 1.5236535 1.5243295 1.5259932 1.5251534 1.5280218 1.5269657 1.5292601 1.5304438 1.5361375 1.5337143 1.5387341 1.5409538 1.5331674 1.5409233 1.5413614 1.5445683 1.5427888 1.5460698 1.5481857 1.5611452 1.5773937 1.5801603 1.5785676 1.5618051 1.561205 1.593841 1.609401 1.6069186 1.6292729 1.6371385 1.6428291 1.6041802 1.5212602 1.5211405 1.5208894 1.5209097 1.5208668 1.5208752 1.5208232 1.5208417 1.5208254 1.5208254 1.5208582 1.5208615 1.5207692 1.5207805 1.5207912 1.5208008 1.5208088 1.5208151 1.5208198 1.5207351 1.5207351 1.5405295 1.543735 1.5517999 1.5473495 1.5324302 1.5350187 1.5374545 1.562207 1.5563194 1.5563194 1.567683 1.5736074 1.5800016 1.5879443 1.5879443 1.5953414 1.5207388 1.5205637 1.5205863 1.5205692 1.5205664 1.5205574 1.5205632 1.5205597 1.5205752 1.5205571 1.5205125 1.520511 1.5205089 1.5205089 1.5207041 1.5207066 1.5207097 1.5207006 1.5206451 1.5206297 1.5206451 1.5206223 1.5206297 1.520584 1.5205766 1.5206114 1.5205589 1.5205402 1.520722 1.5207092 1.5206972 1.5206865 1.5206772 1.5206772 1.5207015 1.5206951 1.5207101 1.5207354 1.5209847 1.5209895 1.5209724 1.520977 1.5209985 1.521009 1.521009 1.5210901 1.521062 1.5211287 1.52111 1.5207726 1.520749 1.5207901 1.5207901 1.5209503 1.520959 1.5209643 1.5215649 1.5217449 1.521197 1.5214102 1.5222742 1.5219702 1.5226248 1.5230882 1.5242317 1.5250415 1.527069 1.5260157 1.5297024 1.528291 1.5313238 1.5331674 1.5378024 1.5352604 1.540722 1.5432117 1.5344775 1.5454634 1.5476387 1.5537264 1.5505417 1.5567044 1.5601084 1.5734376 1.5911202 1.5893481 1.5911639 1.5695284 1.5712461 1.6090643 1.6229397 1.6163711 1.5207039 1.5206659 1.5205863 1.520658 1.5206621 1.5205863 1.5205737 1.5205882 1.5205857 1.5205585 1.5205597 1.5205597 1.5205934 1.5205752 1.520511 1.520511 1.5205207 1.5205207 1.5205977 1.5205815 1.5205641 1.5205465 1.5207018 1.5207219 1.520747 1.5207229 1.5207344 1.5209874 1.5209983 1.52097 1.5209776 1.5210127 1.5210329 1.521062 1.52111 1.520749 1.5208028 1.520749 1.5208143 1.5208095 1.520828 1.5208143 1.520957 1.5209389 1.5208655 1.5209433 1.5208738 1.5209628 1.5217432 1.5219605 1.5213298 1.5213104 1.5215549 1.522594 1.5222298 1.5230066 1.5235592 1.5245342 1.5254236 1.5276501 1.5264947 1.5305796 1.5290032 1.5323993 1.5344775 1.5436953 1.5473743 1.5510707 1.5601081 1.5554208 1.5646802 1.5695851 1.5849088 1.5977585 1.6030191 1.5750822 1.5798731 1.5206892 1.5207157 1.520658 1.520658 1.5206621 1.5206061 1.5206298 1.5206006 1.5205657 1.5205683 1.5205683 1.5205934 1.5205902 1.520522 1.520522 1.5205302 1.5205302 1.5207101 1.5207329 1.5207502 1.5207634 1.5207229 1.5207229 1.5207344 1.5210005 1.5210206 1.5209732 1.5209843 1.5210475 1.5210838 1.5211345 1.5212089 1.5208235 1.5207743 1.5207599 1.5208388 1.5208312 1.5208388 1.5209482 1.5208832 1.5208655 1.5208547 1.5208738 1.5209555 1.5218336 1.522069 1.5213179 1.5214138 1.5216283 1.5227577 1.5223607 1.5232033 1.5238012 1.5207203 1.5207467 1.520732 1.520749 1.52069 1.5206684 1.5206942 1.5206202 1.5206437 1.5206406 1.5206151 1.5205775 1.5205778 1.5205778 1.5206146 1.5206151 1.5206009 1.520748 1.52076 1.5207713 1.5207347 1.5207501 1.5207347 1.5207463 1.5210119 1.5210329 1.5209646 1.5209826 1.5209946 1.5210608 1.5210976 1.5211473 1.521215 1.520834 1.5207873 1.5207743 1.5207846 1.5208483 1.5208413 1.5208832 1.5208832 1.5208547 1.5208547 1.5208834 1.520964 1.5212915 1.521466 1.5207592 1.5207673 1.5207588 1.5207626 1.52069 1.5207053 1.5207021 1.5207096 1.520662 1.5206833 1.5206601 1.5206354 1.5205912 1.5205912 1.5206232 1.5206354 1.520615 1.5207701 1.5207851 1.5207501 1.5207501 1.5207594 1.5207706 1.5210169 1.5210372 1.5209726 1.5209884 1.5210001 1.521064 1.5210993 1.5211455 1.5212056 1.5208428 1.5207981 1.5207873 1.5207882 1.5208575 1.5208505 1.5208909 1.5208909 1.5208638 1.5208638 1.5208934 1.5209651 1.5207733 1.5207721 1.5207679 1.5207701 1.5207053 1.5207155 1.5207077 1.5207197 1.5206782 1.5206941 1.5206752 1.5206524 1.5206333 1.5206524 1.5207792 1.5207788 1.5207893 1.5207567 1.5207524 1.5207567 1.5207656 1.5207758 1.5209781 1.5207981 1.5207903 1.5208992 1.5208992 1.5209673 1.5207752 1.5207746 1.5207727 1.5207155 1.5207123 1.5206903 1.5207024 1.5207788 1.5207837 1.5207524 1.5207524 1.5207605 1.5207695 1.5207793 1.5207762 1.5207785 1.5207853 ) ; } procBoundary2to4 { type processor; value nonuniform List<scalar> 468 ( 1.5222451 1.5218176 1.5214139 1.521306 1.5212908 1.5218176 1.5214139 1.5214145 1.521407 1.5212908 1.5212908 1.5213597 1.5213409 1.5214145 1.5214145 1.5214145 1.521407 1.521407 1.5214027 1.521004 1.522641 1.522641 1.522641 1.5224471 1.5214264 1.5214264 1.5214264 1.5214014 1.5214072 1.521524 1.5215393 1.5215393 1.5215382 1.5215207 1.5215134 1.5206639 1.5209835 1.5219583 1.5217577 1.5224616 1.5208057 1.5226254 1.5226225 1.5226254 1.5226225 1.5226225 1.5215284 1.5215094 1.5215005 1.521833 1.5219329 1.5219329 1.5219329 1.5219293 1.5219026 1.521924 1.5208057 1.5206641 1.5209326 1.5219622 1.5221398 1.5225335 1.5226149 1.5226184 1.5226587 1.5226587 1.5226462 1.5226393 1.5226379 1.5216235 1.5217207 1.5225622 1.5225197 1.5225182 1.5224169 1.5225182 1.5224169 1.5224164 1.522403 1.5222902 1.5222079 1.5221883 1.5221238 1.5206659 1.5208474 1.5221328 1.5223302 1.5225706 1.5226041 1.5224706 1.5224824 1.5223321 1.5226304 1.5226667 1.5226667 1.5226539 1.5226522 1.5226522 1.52265 1.5226487 1.5225802 1.5226557 1.5226484 1.5226314 1.5225241 1.5225743 1.5226091 1.5225241 1.5225227 1.5225078 1.5223828 1.5223546 1.5223275 1.5223053 1.5226245 1.5226301 1.5225116 1.5224896 1.5225497 1.5225898 1.522506 1.5224658 1.5225677 1.5226383 1.5225116 1.5225116 1.5224658 1.5232723 1.5231018 1.5226732 1.5226732 1.5226605 1.5226579 1.522666 1.5226601 1.5226579 1.522658 1.5226564 1.5226573 1.5226205 1.5225935 1.5225743 1.5225031 1.5225371 1.5225631 1.5225031 1.5225026 1.522487 1.5223648 1.5223368 1.5223117 1.5222922 1.522654 1.5226258 1.5226668 1.522436 1.5224244 1.5224681 1.5224519 1.5225218 1.5224955 1.5227019 1.5227429 1.5226306 1.5229004 1.5228441 1.5231018 1.5230424 1.5224208 1.5224244 1.5224235 1.5224519 1.522436 1.522436 1.5224244 1.5224244 1.5226306 1.5225765 1.5251938 1.5246731 1.5258935 1.522666 1.5226612 1.522666 1.522666 1.5226526 1.522637 1.5226595 1.5226604 1.5226589 1.5226456 1.522598 1.5225659 1.5225371 1.522476 1.5225054 1.5225269 1.522476 1.5224751 1.522458 1.5223459 1.5223219 1.5223009 1.5222851 1.5226214 1.5226489 1.522557 1.5225896 1.5224299 1.5224173 1.5224207 1.5224726 1.5224477 1.5231088 1.5233083 1.5229477 1.5238566 1.5235557 1.5246731 1.5242301 1.5224018 1.5224074 1.5224267 1.5224173 1.5223993 1.5224146 1.5224006 1.5224904 1.522457 1.5224267 1.5224375 1.522667 1.5229477 1.5258935 1.5226317 1.522598 1.5225661 1.522637 1.522637 1.522637 1.5226289 1.5226056 1.522648 1.5226555 1.5226317 1.5226408 1.5226557 1.5226528 1.522629 1.5225927 1.5225456 1.5225054 1.5225156 1.5225945 1.5225107 1.5225515 1.5224076 1.522406 1.52242 1.522419 1.5224094 1.5224091 1.5224049 1.5224075 1.52332 1.5235604 1.523126 1.524217 1.5238563 1.5251908 1.5246585 1.522414 1.522425 1.5224536 1.522419 1.5224025 1.5224126 1.5224066 1.522568 1.5225124 1.5224536 1.5224766 1.5228407 1.5228013 1.523126 1.5262226 1.5225661 1.5225232 1.5225046 1.5224807 1.5224871 1.5226056 1.522569 1.5225232 1.522611 1.5225829 1.5226448 1.5226169 1.5226208 1.5226455 1.5226414 1.5226265 1.5225324 1.5224975 1.522436 1.5224214 1.5224535 1.5224713 1.5224137 1.5224112 1.5224075 1.5224195 1.5224046 1.5223994 1.5224005 1.5224029 1.523432 1.523691 1.523223 1.5244021 1.5240102 1.5254546 1.5248787 1.5224518 1.522475 1.5225189 1.5224316 1.5224195 1.5224179 1.5224336 1.5227058 1.5226216 1.5225189 1.52256 1.522837 1.522928 1.523223 1.522514 1.5224663 1.5224871 1.5225035 1.5224428 1.522427 1.5224377 1.5225829 1.5225442 1.5225035 1.5225499 1.5225115 1.5226304 1.5225857 1.5225858 1.522605 1.5226299 1.5224686 1.5224219 1.5224119 1.5224347 1.5224507 1.5224316 1.5224227 1.5224164 1.5224099 1.5224359 1.5223954 1.5224002 1.522399 1.5224013 1.5224047 1.5224702 1.5224954 1.5225422 1.5224436 1.5224339 1.5224287 1.52245 1.5227224 1.5226458 1.5225422 1.5225844 1.5228182 1.5230033 1.5224454 1.5224236 1.5224377 1.5224411 1.5224639 1.5224159 1.522407 1.5224201 1.5225115 1.5224731 1.5224411 1.5225177 1.5224829 1.5226105 1.522572 1.5225538 1.522586 1.5224272 1.5223976 1.5223958 1.5224007 1.5224054 1.5224436 1.522425 1.5224186 1.5224121 1.5224364 1.5223949 1.5223981 1.5223996 1.5224026 1.5224065 1.5224822 1.522508 1.5225554 1.5224522 1.5224438 1.5224362 1.5224611 1.5227231 1.5226553 1.5225554 1.5225971 1.5224125 1.5224118 1.5224201 1.5224306 1.5224335 1.5224006 1.522396 1.5224112 1.5224829 1.5224536 1.5224306 1.5224944 1.5224649 1.5225578 1.5225268 1.5224044 1.5224129 1.5223957 1.5223949 1.5223973 1.5223998 1.5224522 1.5224266 1.5224362 1.5223957 1.5223977 1.5224057 1.5224064 1.5224112 1.5224256 1.5224141 1.5224649 1.5224424 1.5224256 1.5224013 1.5224039 1.5223959 1.5223956 1.5223966 1.5223978 1.522403 1.5224007 1.5223998 ) ; } procBoundary2to5 { type processor; value nonuniform List<scalar> 743 ( 1.523939 1.5301289 1.5244464 1.5244464 1.5244464 1.5230051 1.5230051 1.5225488 1.5221885 1.5219377 1.5216798 1.5216798 1.5408324 1.5408324 1.5408324 1.5221885 1.5267274 1.5225852 1.5222049 1.5219155 1.5219377 1.5214323 1.5214323 1.5222949 1.5243543 1.5663045 1.5315457 1.5223968 1.5216563 1.521666 1.5215613 1.5215613 1.5215613 1.5215613 1.52225 1.52225 1.52225 1.52225 1.5219155 1.5217838 1.5219155 1.5219155 1.5214628 1.5222264 1.5211892 1.5215559 1.5215559 1.5223973 1.5228152 1.5264296 1.5495444 1.6005453 1.5400205 1.5239352 1.5216743 1.5216245 1.5215727 1.5215727 1.5215074 1.5215074 1.5215389 1.5217342 1.5215603 1.5214428 1.5219417 1.5217838 1.5217838 1.5220508 1.5221273 1.5220423 1.5220423 1.5218979 1.5228522 1.5214628 1.5239191 1.521229 1.521229 1.5215831 1.5215831 1.5224698 1.5229 1.5266133 1.5421282 1.5694413 1.6059515 1.6178501 1.5560132 1.5267815 1.5218578 1.5217831 1.5217831 1.5217942 1.5216757 1.5214551 1.521636 1.5216373 1.5216373 1.5217227 1.5217342 1.5217342 1.5214248 1.5214154 1.5214214 1.5219417 1.5219417 1.5223323 1.5224494 1.5223323 1.5220508 1.5221273 1.5229667 1.5228727 1.5232639 1.5233577 1.5228522 1.5232639 1.5228522 1.5227393 1.5241121 1.5214057 1.521416 1.5267419 1.5218623 1.5217291 1.5217291 1.5217291 1.5228228 1.5225353 1.5228625 1.5225353 1.5225353 1.5241004 1.5301596 1.5489383 1.5877479 1.5659594 1.6313127 1.6070755 1.6177409 1.6484228 1.5545513 1.5221632 1.5221843 1.5220538 1.5220538 1.5220406 1.5220519 1.5220902 1.5220878 1.5221027 1.5220472 1.521542 1.5215453 1.5220611 1.5220851 1.5220851 1.5220851 1.5220851 1.522065 1.5220209 1.5220167 1.5220497 1.5220521 1.5220497 1.5220497 1.5215255 1.5215232 1.5215232 1.5215255 1.5215084 1.5215084 1.5215017 1.5215017 1.52151 1.52151 1.5215136 1.5215136 1.5223653 1.5224111 1.5223653 1.5223599 1.5233368 1.5232433 1.5236685 1.5237199 1.5232433 1.5228727 1.5226374 1.522568 1.5228727 1.5229667 1.5250498 1.5251 1.5256996 1.5257357 1.5250498 1.5245243 1.5245361 1.5249947 1.5241121 1.5241121 1.5245243 1.5240614 1.5215184 1.5215067 1.5215121 1.5215013 1.5215013 1.5215121 1.5243073 1.5227629 1.5242074 1.5240245 1.5224959 1.522631 1.5227258 1.5227629 1.5235816 1.5304485 1.5488532 1.5724387 1.5917924 1.6480825 1.611398 1.6310497 1.6647434 1.5872302 1.5453413 1.5229195 1.5231329 1.5224065 1.5224065 1.5224909 1.5224056 1.5225992 1.5227337 1.5221543 1.5221543 1.5221733 1.5219417 1.5219536 1.5220885 1.522126 1.5221398 1.5221398 1.522181 1.5221996 1.5222342 1.5223457 1.5222862 1.5223457 1.5222862 1.5219417 1.5218956 1.5218899 1.5218896 1.521886 1.5218863 1.5218849 1.5235071 1.5238858 1.5235071 1.5234812 1.5282604 1.52724 1.5294193 1.5308271 1.52724 1.5255524 1.5248423 1.5289233 1.5243201 1.5255524 1.5263851 1.538653 1.540355 1.5423877 1.538653 1.5355483 1.5373573 1.5390576 1.533797 1.533797 1.5355483 1.5322507 1.5219288 1.5219245 1.5218969 1.5219046 1.5219245 1.523886 1.523865 1.526563 1.5263503 1.5307451 1.522631 1.522631 1.522631 1.5225091 1.5229353 1.5235505 1.5235816 1.523886 1.5235816 1.5486495 1.5438301 1.5635801 1.5716631 1.5804958 1.5941752 1.6554579 1.6284588 1.6324274 1.6376968 1.6650985 1.6040525 1.5709343 1.5244317 1.5249904 1.5230442 1.5230442 1.5232777 1.5230354 1.523573 1.5239369 1.5222375 1.5224175 1.5224175 1.5219782 1.5219807 1.5220885 1.5220885 1.5219927 1.5224808 1.5224916 1.5224916 1.5225374 1.5224867 1.5225782 1.5228613 1.5226935 1.5228613 1.5226935 1.5219782 1.5219695 1.5219354 1.5219356 1.5219293 1.5219278 1.5219402 1.5219289 1.5219297 1.5219222 1.5219252 1.5219225 1.5219252 1.5219205 1.5256837 1.526598 1.5256837 1.525658 1.5364261 1.5342159 1.5389032 1.5419159 1.5342159 1.5289233 1.5289233 1.5276174 1.5303727 1.5322012 1.5578278 1.561082 1.5648872 1.5578278 1.551437 1.5551082 1.5585355 1.5478981 1.5478981 1.551437 1.5448292 1.5221064 1.5220577 1.5220453 1.5220116 1.5219596 1.5219425 1.5220116 1.5219881 1.5220051 1.5219647 1.5257184 1.5256406 1.5261555 1.5259584 1.5369949 1.5364711 1.5528375 1.5472989 1.5232339 1.5232339 1.5231583 1.5229353 1.5229353 1.5227695 1.5248077 1.5249394 1.5257184 1.5253303 1.5258088 1.525514 1.525514 1.5255631 1.5227695 1.5652408 1.5809176 1.596258 1.615825 1.6122513 1.6657352 1.6435966 1.6431574 1.6430831 1.6741876 1.6184859 1.5910501 1.525515 1.5262974 1.5235308 1.5235308 1.5238701 1.5235165 1.524294 1.5248142 1.5226077 1.5223683 1.5225992 1.5225992 1.5222764 1.5222967 1.5224057 1.5224057 1.5223212 1.5224931 1.5225053 1.5225053 1.5225516 1.522699 1.5228285 1.5232269 1.5229882 1.5232269 1.5229882 1.5222764 1.5222367 1.522186 1.5221988 1.5221686 1.5221763 1.5221638 1.5221598 1.522157 1.5221552 1.5221578 1.5221621 1.5221548 1.5221554 1.5269697 1.5281652 1.5269697 1.5269995 1.5406049 1.5378306 1.5437164 1.5475301 1.5378306 1.5312126 1.5312126 1.5294773 1.5330602 1.5353759 1.5713028 1.5772943 1.5836082 1.5713028 1.5603882 1.5658817 1.5719908 1.5552787 1.5552787 1.5603882 1.5513831 1.5222835 1.5222657 1.5222508 1.5222378 1.5221768 1.5221696 1.5222378 1.5221943 1.5222161 1.5222004 1.5221848 1.535561 1.5361885 1.5368921 1.5370594 1.5519532 1.5504669 1.5641156 1.5664048 1.5244015 1.5243451 1.5243451 1.5243597 1.5240932 1.5239829 1.5236245 1.5236945 1.5237107 1.5233857 1.5236245 1.5328811 1.5347176 1.535561 1.5355935 1.536283 1.5357408 1.5414765 1.5418784 1.5233857 1.5792727 1.5954427 1.5970155 1.6128611 1.6269668 1.6285079 1.6570074 1.6521421 1.608373 1.5267582 1.5278028 1.524076 1.524076 1.5245386 1.5240627 1.5251118 1.5258156 1.5226202 1.5225063 1.5227862 1.5227862 1.5222906 1.5223132 1.5224167 1.5224167 1.5223403 1.5225319 1.5225465 1.5225465 1.5225944 1.5229194 1.5230913 1.523619 1.5233048 1.523619 1.5233048 1.5222906 1.5222472 1.5221889 1.5222031 1.5221693 1.5221781 1.5221601 1.5221564 1.522154 1.5221526 1.5221567 1.5221619 1.5221527 1.5221538 1.5283446 1.5298389 1.5283446 1.5284993 1.5449349 1.5415689 1.5487078 1.5533439 1.5415689 1.5336156 1.5336156 1.5314614 1.5358638 1.5387064 1.5831343 1.5909818 1.5993722 1.5831343 1.569161 1.5759701 1.5840996 1.5626449 1.5626449 1.569161 1.5580261 1.522274 1.5222592 1.5222474 1.5222379 1.5221723 1.5221655 1.5222004 1.5222379 1.5222004 1.5221796 1.5429937 1.5445274 1.5460721 1.5482537 1.561583 1.5610464 1.561458 1.5776375 1.5803716 1.5788911 1.5315325 1.5304347 1.5304347 1.5306911 1.5295585 1.5283923 1.5265213 1.527339 1.5269585 1.5259533 1.5265213 1.5364144 1.5387649 1.5414765 1.5429937 1.5424403 1.5441481 1.5415689 1.5427378 1.5435886 1.5259533 1.5941877 1.6097454 1.6070956 1.6293759 1.6372043 1.6431234 1.5226553 1.5226551 1.5223252 1.5223525 1.5224533 1.5224533 1.5223856 1.5223252 1.5222818 1.522211 1.5222289 1.5221863 1.5221974 1.5221635 1.522161 1.5221599 1.5221599 1.5221693 1.5221766 1.5221615 1.5221645 1.5222702 1.5222583 1.5222489 1.5222413 1.5221729 1.5221675 1.522202 1.5222413 1.522202 1.5221788 1.5506383 1.5534593 1.5564589 1.5599026 1.569072 1.5708533 1.5736245 1.5909908 1.5894076 1.5913307 1.5342133 1.5324454 1.5324454 1.5324955 1.5312312 1.5296936 1.5273537 1.5283779 1.5279413 1.5267394 1.5273537 1.53787 1.5404542 1.5427378 1.5506383 1.5481783 1.5517463 1.5453606 1.542829 1.5437694 1.6090068 1.6229136 1.6162564 1.5553053 1.5595036 1.5640332 1.5689086 1.5743077 1.5791159 1.584785 1.5975563 1.6028779 1.5353567 1.5333723 1.5333723 1.5334438 1.5320987 1.5303861 1.5278129 1.5289332 1.5284765 1.5271546 1.5278129 1.542829 1.5553053 1.5506858 1.5559433 1.5465454 ) ; } } // ************************************************************************* //
f3aa25be3f328adda50b22b240f562b37aa9d505
0872e0bc42c1ff5699dd14d22a12f09e38a6ec67
/MIG_SFML_WINDOWS/State/MainMenu.h
cd3c85d0c29a1cb3d99f0bdaa4700d57deb06fac
[]
no_license
WearyWanderer/MIG_SFML_WINDOWS
7d50470a729df955c56dff3ee59126fad36c9676
7536051a8972f9e217a9c4a741674796927bf879
refs/heads/master
2021-01-20T10:30:41.070884
2017-01-31T16:49:43
2017-01-31T16:49:43
71,495,227
0
0
null
null
null
null
UTF-8
C++
false
false
1,021
h
MainMenu.h
#pragma once #include "../Base/BaseLoopClass.h" #include "../Base/stdafx.h" #include "../Base/Application.h" enum ActiveMenu { MAIN_ROOT, LOBBY_SEARCH, HOST_INFO, LOGIN, FAIL_LOGIN }; class MainMenu : public BaseLoopClass { public: MainMenu() {}; MainMenu(tgui::Gui* gui, sf::RenderWindow* window); ~MainMenu(); void Init() override; void Simulate(float deltaTime) override; void Render() override; void SwitchMenu(ActiveMenu menu); inline ActiveMenu GetActiveMenu() { return m_active; } inline sf::Font GetDefaultFont() { return m_defaultFont; } void InitHosting(); void InitLogin(); void InitLobbySearch(); void RefreshLobbySearch(); void AddLobbyListing(std::string lobbyString, unsigned int lobbyNum); void AttemptJoinLobby(); #pragma region Thread Safe Queue Objects std::mutex lock; std::vector<std::string> lobbiesQueue; #pragma endregion private: sf::Font m_defaultFont; sf::Text lobbyCount; std::string selectedLobby = ""; tgui::Gui* m_gui; ActiveMenu m_active = MAIN_ROOT; };
ec35a9b06a19c0f96ed37efbb55ae8f747ddd50b
9443a143d4bcc429a433d5518dd9cb060875000e
/src/nseof/flowmodels/ke/KEStencil.cpp
ed81ae08db3ccdd55c9502685b7a721dc866b567
[]
no_license
martenlienen/turbulence
a8f5cc583aef44a6765ed81ab53db2c1bdbdd56b
3512685f3e4f50f00361b50e1fa891eed42e8e1c
refs/heads/master
2021-06-19T18:41:47.032523
2016-01-29T23:27:20
2016-01-29T23:27:20
45,708,901
1
0
null
null
null
null
UTF-8
C++
false
false
1,146
cpp
KEStencil.cpp
#include "../../stencils/StencilFunctions.h" #include "KEStencil.h" namespace nseof { namespace flowmodels { namespace ke { KEStencil::KEStencil(const Parameters& parameters) : FieldStencil<FlowField>(parameters) {} void KEStencil::apply(FlowField& flowField, int i, int j) { // calculate new value from old value and rhs flowField.getTke(i, j) += _parameters.timestep.dt * flowField.getRHSTke(i, j); flowField.getTke(i, j) *= flowField.getTke(i, j) < 0.0 ? 0.0 : 1.0; flowField.getEpsilon(i, j) += _parameters.timestep.dt * flowField.getRHSEpsilon(i, j); flowField.getEpsilon(i, j) *= flowField.getEpsilon(i, j) < 0.0 ? 0.0 : 1.0; } void KEStencil::apply(FlowField& flowField, int i, int j, int k) { // calculate new value from old value and rhs flowField.getTke(i, j, k) += _parameters.timestep.dt * flowField.getRHSTke(i, j, k); flowField.getTke(i, j, k) *= flowField.getTke(i, j, k) < 0.0 ? 0.0 : 1.0; flowField.getEpsilon(i, j, k) += _parameters.timestep.dt * flowField.getRHSEpsilon(i, j, k); flowField.getEpsilon(i, j, k) *= flowField.getEpsilon(i, j, k) < 0.0 ? 0.0 : 1.0; } } } }
21feb6dd348453ab04754cbd0e61ddc253e14ef0
59418b5794f251391650d8593704190606fa2b41
/plugin_api/qsf/qsf/renderer/helper/OgreManualObjectHelper.h
430db6936c632aa5391aa867420e68d5ed6e83bb
[]
no_license
JeveruBerry/emergency5_sdk
8e5726f28123962541f7e9e4d70b2d8d5cc76cff
e5b23d905c356aab6f8b26432c72d18e5838ccf6
refs/heads/master
2023-08-25T12:25:19.117165
2018-12-18T16:55:16
2018-12-18T17:09:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,779
h
OgreManualObjectHelper.h
// Copyright (C) 2012-2018 Promotion Software GmbH //[-------------------------------------------------------] //[ Header guard ] //[-------------------------------------------------------] #pragma once //[-------------------------------------------------------] //[ Includes ] //[-------------------------------------------------------] #include "qsf/Export.h" #include <OGRE/OgreFrameListener.h> #include <OGRE/OgreColourValue.h> //[-------------------------------------------------------] //[ Forward declarations ] //[-------------------------------------------------------] namespace Ogre { class ManualObject; } //[-------------------------------------------------------] //[ Namespace ] //[-------------------------------------------------------] namespace qsf { //[-------------------------------------------------------] //[ Classes ] //[-------------------------------------------------------] /** * @brief * Helper class for building OGRE manual object geometry * * @todo * - TODO(fw): Should we rewrite method interface to use GLM and QSF classes instead of OGRE? (This is already done for addPolygon, which was added last.) */ class QSF_API_EXPORT OgreManualObjectHelper { //[-------------------------------------------------------] //[ Public methods ] //[-------------------------------------------------------] public: /** * @brief * Constructor * * @param[in] ogreManualObject * Target OGRE manual object to be edited/expanded, must stay valid as long as this OGRE manual object helper instance exists */ explicit OgreManualObjectHelper(Ogre::ManualObject& ogreManualObject); /** * @brief * Destructor */ virtual ~OgreManualObjectHelper(); /** * @brief * Set material name to be used for geometry created by following calls */ void setMaterial(const Ogre::String& materialName); /** * @brief * Set vertex color to be used for geometry created by following calls */ void setColor(const Ogre::ColourValue& color); /** * @brief * Add box geometry to the manual object instance * * @param[in] center * Center point of the box. Transformation matrix not automatically applied to this. * @param[in] transformation * Transformation matrix that is applied to all generated vertices * @param[in] extents * Extents of the box describing HALF side lengths (x, y, z) */ void addBox(const Ogre::Vector3& center, const Ogre::Matrix3& transformation, const Ogre::Vector3& extents); /** * @brief * Add torus geometry around the x-axis to the manual object instance * * @param[in] center * Center point of the torus in local space. Transformation matrix not automatically applied to this. * @param[in] transformation * Transformation matrix that is applied to all generated vertices * @param[in] outerRadius * Outer radius of the torus, i.e. radius of the circle the torus is built around * @param[in] innerRadius * Inner radius of the torus, i.e. distance of every point of the torus surface from the circle with outerRadius. Should be less than outerRadius. * @param[in] segments * Number of segments, i.e. detail level for the circle with outerRadius that the torus is built around. Recommended values range from 8 to 64. * @param[in] slices * Number of slices, i.e. detail level for torus curved surface around the circle the torus is built around. Recommended values range from 4 to 32. */ void addTorus(const Ogre::Vector3& center, const Ogre::Matrix3& transformation, float outerRadius, float innerRadius, int segments, int slices); /** * @brief * Add cylinder mantle geometry along x-axis to the manual object instance * * @param[in] startPoint * Center point of lower ring in local space. Transformation matrix not automatically applied to this. * @param[in] transformation * Transformation matrix that is applied to all generated vertices * @param[in] radius * Radius of the cylinder (results in expansion along y- and z-axis) * @param[in] height * Height of the cylinder (along x-axis) * @param[in] slices * Number of slices, i.e. detail level for cylinder's curved surface. Recommended values range from 8 to 64. */ void addCylinderMantle(const Ogre::Vector3& startPoint, const Ogre::Matrix3& transformation, float radius, float height, int slices); void addCylinderMantle(const Ogre::Vector3& startPoint, const Ogre::Matrix3& transformation, float radius, float radiusAtTop, float height, int slices); /** * @brief * Add cone mantle geometry to the manual object instance * * @param[in] startPoint * Center point of lower ring in local space. Transformation matrix not automatically applied to this. * @param[in] transformation * Transformation matrix that is applied to all generated vertices * @param[in] radius * Radius of the cone's base surface (results in expansion along y- and z-axis) * @param[in] height * Height of the cone (along x-axis) * @param[in] slices * Number of slices, i.e. detail level for cones's curved surface. Recommended values range from 8 to 64. */ void addConeMantle(const Ogre::Vector3& startPoint, const Ogre::Matrix3& transformation, float radius, float height, int slices); /** * @brief * Add a polygon to the manual object instance * * @param[in] vertices * Array of vertices forming the polygon * @param[in] filledOpacity * Opacity between 0.0f and 1.0f of the inner area; if 0.0f (or below), the inner area will not be drawn at all * @param[in] closed * If true, a closed polygon is drawn (i.e. first and last vertices are connected by a segment) */ void addPolygon(const std::vector<glm::vec3>& vertices, float filledOpacity, bool closed = true); //[-------------------------------------------------------] //[ Private data ] //[-------------------------------------------------------] private: Ogre::ManualObject* mOgreObject; ///< Pointer to OGRE manual object we are editing, always valid, do not destroy the instance Ogre::String mMaterialName; ///< OGRE Material name used for all geometry created Ogre::ColourValue mColor; ///< Vertex color to be used }; //[-------------------------------------------------------] //[ Namespace ] //[-------------------------------------------------------] } // qsf
c9535492cfbb7ea2e745376733474a0d6c46561a
99d91bdfa1b50c9a78493def1f081a0608127821
/MSSFMLView.h
008fc0c130c4db5daad5f18606d16ed3130044fd
[]
no_license
xdawxd/SFML-Saper
015c994967e1ef9b0625e2d92d57616bc666f374
b729e04c7e1a9174c1c1a8d215605c4cc42e79b4
refs/heads/master
2023-04-21T21:57:22.204920
2021-05-02T21:33:28
2021-05-02T21:33:28
363,751,127
0
0
null
null
null
null
UTF-8
C++
false
false
553
h
MSSFMLView.h
#ifndef MSSFMLVIEW_H__ #define MSSFMLVIEW_H__ #include <SFML/Graphics.hpp> #include "MinesweeperBoard.h" class MSSFMLView { int height; int width; int screen_height; int screen_width; GameMode mode; GameState state; MinesweeperBoard& displayableBoard; sf::RectangleShape addShadow(sf::RectangleShape field); void drawNumber(sf::RenderWindow& win, char number, int x, int y); void displayInfo(GameState state, sf::Font font, sf::RenderWindow& win); public: MSSFMLView(MinesweeperBoard& board); void draw(sf::RenderWindow& win); }; #endif
93c1ea68eff81979d24e931f85aa50c8638184c7
36d041252ad9f1c3c5471e218f6df5bfcfc33023
/cm-lib/source/controllers/INavigationController.h
3a645cf350176011085c77fdff6f7c78c9a7b46f
[]
no_license
sancheg31/Database-Client-Management-Application
c37c3d1dbd1d243ef013306ced6ad717325542fd
bdc39d3767d04f6ba1057ab0121e28a704c37309
refs/heads/master
2020-12-29T12:39:34.414994
2020-02-06T04:43:14
2020-02-06T04:43:14
238,609,011
0
0
null
null
null
null
UTF-8
C++
false
false
579
h
INavigationController.h
#pragma once #include <QObject> #include "cm-lib_global.h" #include "models/Client.h" namespace cm { namespace controllers { class CMLIB_EXPORT INavigationController : public QObject { Q_OBJECT public: INavigationController(QObject* parent) : QObject(parent){} virtual ~INavigationController(){} signals: void goCreateAppointmentView(cm::models::Client* client); void goCreateClientView(); void goDashboardView(); void goEditClientView(cm::models::Client* client); void goFindClientView(); void goRssView(); }; } //controllers } //cm
5d3532be6a7ba0a3211b55e927c9ac1f622135ad
f6104142bb6d6ed5bc84d08fed73e7087c80b881
/Equipe.hpp
fc74e04276f96a7834f6f0ec80a0f5456cfd82bb
[]
no_license
landrieu/Pokemon-Fight-Mode
5af3ab3be853a5e60b7d97a7b73da7ec09d87789
3a838e61b8f37f4069d51b0aac8ff06086162511
refs/heads/master
2021-01-11T16:24:17.878480
2017-04-05T02:20:49
2017-04-05T02:20:49
80,076,667
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
617
hpp
Equipe.hpp
#ifndef EQUIPE_HPP #define EQUIPE_HPP #include <string> #include "Pokemon.hpp" #include <vector> using namespace std; class Equipe{ private: vector<Pokemon> equipe; //liste de 6 Pokémon public: Equipe(); Equipe(Pokemon); Equipe(Pokemon, Pokemon); Equipe(Pokemon,Pokemon,Pokemon); Equipe(Pokemon,Pokemon,Pokemon,Pokemon,Pokemon,Pokemon); vector<Pokemon> getListePokemon(); void affiche(); void removePokemon(int); void addPokemon(Pokemon); void insertPokemon(Pokemon, int); bool estVide(); }; #endif