blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
d1ca515dbd6e3f6ffda85a6ca227775807b84ab3
1869c2a060195e38c3daaf5953125b28249b0065
/05-ScenceManager/BreakBrick.cpp
c02b17306806f5facc8aa8d456d772355f51749b
[]
no_license
ThanhDoNgoc/mariobros3
1488cfbdbcf77cebee293eb4a4216e8117b824fc
558839be3dd48ef791402566b3a6f18a1dc8c94c
refs/heads/master
2023-06-29T21:56:14.286662
2021-07-23T14:27:23
2021-07-23T14:27:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,212
cpp
#include "BreakBrick.h" #include "Camera.h" #include "Game.h" BreakBrick::BreakBrick(float x, float y, bool ishigh, bool isDirecRight) { AddAnimation(ID_ANI_BREAK_BRICK); this->x = x; this->y = y; if (ishigh) this->vy = -BREAK_SPEED_Y_H; else if (!ishigh) this->vy = -BREAK_SPEED_Y_L; if (isDirecRight) { this->direction.x = 1.0f; this->vx = BREAK_SPEED_X; } else if (!isDirecRight) { this->direction.x = -1.0f; this->vx = -BREAK_SPEED_X; } this->objectLayer = LAYER_PIPE; this->ObjectGroup = Group::effect; } void BreakBrick::Render() { int ani = ANI_ID_BREAK; Camera* camera = CGame::GetInstance()->GetCurrentScene()->GetCamera(); animation_set[ani]->Render(x - camera->GetCamPosX() + BREAK_WIDTH / 2, y - camera->GetCamPosY() + BREAK_HEIGHT / 2, direction, 255); RenderBoundingBox(); } void BreakBrick::Update(DWORD dt, vector<LPGAMEOBJECT>* coObjects) { CGameObject::Update(dt); //this->x += vx * dt; x += dx; y += dy; this->vy += BREAK_GRAVITY * dt; //this->y += vy * dt; Camera* camera = CGame::GetInstance()->GetCurrentScene()->GetCamera(); if (this->y > camera->GetCamPosY() + CAMERA_HEIGHT) { CGame::GetInstance()->GetCurrentScene()->DeleteObject(this); } }
[ "18520358@gm.uit.edu.vn" ]
18520358@gm.uit.edu.vn
1bba47d630cdbb777c5c05c4697df4b0f8e580aa
e9cf4952514ccb929efdc398ee4692239cfbf5db
/src/chapter1/optional_example.cpp
695ac44e642c717807befc27d30910465f93b289
[]
no_license
Nathaniel100/BoostCookbook
0949f79e04355467d1053546a4ff8c6bef3922f2
cb13e0cf5865b4d994eb0099a14b5125014cb5f0
refs/heads/master
2023-04-13T03:55:31.393932
2017-03-31T01:03:05
2017-03-31T01:03:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
926
cpp
// // Created by 吴凡 on 2017/3/7. // #include <boost/optional.hpp> #include <iostream> class DeviceLock { public: explicit DeviceLock(const char* device) { // acquire lock std::cout << "Device is locked\n"; } ~DeviceLock() { // release lock } void use() { // already has lock std::cout << "Success!\n"; } static boost::optional<DeviceLock> try_lock_device() { if(rand() % 2) { return boost::none; } return boost::optional<DeviceLock>(DeviceLock("device name")); } }; int main() { srand((unsigned int) time(nullptr)); for(int i = 0; i < 10; ++i) { boost::optional<DeviceLock> t = DeviceLock::try_lock_device(); if(t) { t->use(); return 0; } else { std::cout << "Try again...\n"; } } std::cout << "Failure\n"; return 0; }
[ "386534960@qq.com" ]
386534960@qq.com
30987751cacf47f56a76cbd155c95c8887144b03
40bac5da80f610c33c038baf9e10f40495a1586b
/LeetCode_131_JudgeByNewCharAndCount.cpp
60b846ac51fe1cc535c4a2e2a40a71d6b5f46e6b
[]
no_license
earnestzhao/LeetCode
209d205c178e8ac3b40c214a6f711275a545fda4
5cefe55d8c4a6d9fe86c5e2fc8965f71e4073a35
refs/heads/master
2020-04-15T14:03:35.628692
2019-08-24T13:10:04
2019-08-24T13:10:04
57,934,937
0
0
null
null
null
null
UTF-8
C++
false
false
3,042
cpp
class Solution { public: vector<vector<string>> partition(string s) { vector<string> vecSubResult; vector<vector<string>> vecResult; partition(s, 0, vecSubResult, vecResult); return vecResult; } private: void partition(const string & strSrc, int iStartIndex, vector<string> & vecSubResult, vector<vector<string>> & vecResult) { if (iStartIndex >= strSrc.size()) { vecResult.push_back(vecSubResult); return; } vecSubResult.push_back(string(1, strSrc[iStartIndex])); partition(strSrc, iStartIndex + 1, vecSubResult, vecResult); vecSubResult.pop_back(); int iAppearOddCharCount = 1; unordered_map<char, int> hmapCharCount; hmapCharCount[strSrc[iStartIndex]] = 1; for (int iIndex = iStartIndex + 1, iPossibleIndex = iIndex; iIndex < strSrc.size() && iPossibleIndex < strSrc.size(); iIndex ++) { int iCurrCharNum = iIndex - iStartIndex + 1; unordered_map<char, int>::iterator hmapIterator = hmapCharCount.find(strSrc[iIndex]); if (hmapIterator != hmapCharCount.end()) { hmapIterator -> second ++; } else { hmapCharCount[strSrc[iIndex]] = 1; } if (hmapCharCount[strSrc[iIndex]] % 2) { iAppearOddCharCount ++; } else { iAppearOddCharCount --; } if (hmapCharCount[strSrc[iIndex]] == 1) { iPossibleIndex = iIndex + iCurrCharNum - 1; continue; } if (hmapCharCount.size() == 1) { vecSubResult.push_back(strSrc.substr(iStartIndex, iCurrCharNum)); partition(strSrc, iIndex + 1, vecSubResult, vecResult); vecSubResult.pop_back(); continue; } if ((iCurrCharNum % 2 == 1 && iAppearOddCharCount == 1) || (iCurrCharNum % 2 == 0 && iAppearOddCharCount == 0)) { if (isPalindrome(strSrc, iStartIndex, iIndex)) { vecSubResult.push_back(strSrc.substr(iStartIndex, iCurrCharNum)); partition(strSrc, iIndex + 1, vecSubResult, vecResult); vecSubResult.pop_back(); } } } } bool isPalindrome(const string & strSrc, int iStartIndex, int iEndIndex) { while (iStartIndex < iEndIndex) { if (strSrc[iStartIndex] != strSrc[iEndIndex]) { return false; } iStartIndex ++; iEndIndex --; } return true; } }; /* Combine new character and count judgement. Optiminize is not so good as expected. */
[ "earnest001@163.com" ]
earnest001@163.com
8dcba8b4d71826599dfaada076ede58462171719
ecafd57a7d57b416c497ebc20cdeadd7aed259b1
/src/main.cpp
cd1f3decba216be7fddcfc2fc03e6897d11960eb
[ "MIT" ]
permissive
Ztegritycoin/ZtegrityCoin
0f86baa2e9240fc6916c325360b74bf7cf663afc
1e46bae6afb014c3251bef448396cf00976aef20
refs/heads/main
2023-03-23T22:07:26.142513
2021-03-18T19:35:17
2021-03-18T19:35:17
349,194,786
0
0
null
null
null
null
UTF-8
C++
false
false
311,885
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2019 The PIVX developers // Copyright (c) 2017-2018 The NavCoin Core developers // Copyright (c) 2018-2019 The Myce developers // Copyright (c) 2018 The ztegritycoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "main.h" #include "accumulators.h" #include "accumulatormap.h" #include "addrman.h" #include "alert.h" #include "blocksignature.h" #include "chainparams.h" #include "checkpoints.h" #include "checkqueue.h" #include "init.h" #include "kernel.h" #include "masternode-budget.h" #include "masternode-payments.h" #include "masternodeman.h" #include "merkleblock.h" #include "net.h" #include "obfuscation.h" #include "pow.h" #include "spork.h" #include "sporkdb.h" #include "swifttx.h" #include "txdb.h" #include "txmempool.h" #include "ui_interface.h" #include "util.h" #include "utilmoneystr.h" #include "validationinterface.h" #include "zecachain.h" #include "primitives/zerocoin.h" #include "libzerocoin/Denominations.h" #include "invalid.h" #include <sstream> #include <boost/algorithm/string/replace.hpp> #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #include <boost/lexical_cast.hpp> #include <boost/thread.hpp> #include <atomic> #include <queue> using namespace boost; using namespace std; using namespace libzerocoin; #if defined(NDEBUG) #error "ztegritycoin cannot be compiled without assertions." #endif /** * Global state */ CCriticalSection cs_main; BlockMap mapBlockIndex; map<unsigned int, unsigned int> mapHashedBlocks; CChain chainActive; CBlockIndex* pindexBestHeader = NULL; int64_t nTimeBestReceived = 0; CWaitableCriticalSection csBestBlock; CConditionVariable cvBlockChange; int nScriptCheckThreads = 0; bool fImporting = false; bool fReindex = false; bool fTxIndex = true; bool fIsBareMultisigStd = true; bool fCheckBlockIndex = false; bool fVerifyingBlocks = false; unsigned int nCoinCacheSize = 5000; bool fAlerts = DEFAULT_ALERTS; int nLastOldPoSBlock = 17100; int nHardForkBlock = 112200; unsigned int nStakeMinAge = 12 * 60 * 60; // 12 hours unsigned int nStakeMinAgeOld = 24 * 60 * 60; // 24 hours unsigned int nStakeMaxAge = 30 * 24 * 60 * 60; // 30 days unsigned int nStakeMaxAgeNew = 30 * 24 * 60 * 60; // 30 days int64_t nReserveBalance = 0; /** Fees smaller than this (in ueca) are considered zero fee (for relaying and mining) * We are ~100 times smaller then bitcoin now (2015-06-23), set minRelayTxFee only 10 times higher * so it's still 10 times lower comparing to bitcoin. */ CFeeRate minRelayTxFee = CFeeRate(10000); CTxMemPool mempool(::minRelayTxFee); struct COrphanTx { CTransaction tx; NodeId fromPeer; }; map<uint256, COrphanTx> mapOrphanTransactions; map<uint256, set<uint256> > mapOrphanTransactionsByPrev; map<uint256, int64_t> mapRejectedBlocks; map<uint256, int64_t> mapZerocoinspends; //txid, time received void EraseOrphansFor(NodeId peer); static void CheckBlockIndex(); /** Constant stuff for coinbase transactions we create: */ CScript COINBASE_FLAGS; const string strMessageMagic = "ztegritycoin very Signed Message:\n"; // Internal stuff namespace { struct CBlockIndexWorkComparator { bool operator()(CBlockIndex* pa, CBlockIndex* pb) const { // First sort by most total work, ... if (pa->nChainWork > pb->nChainWork) return false; if (pa->nChainWork < pb->nChainWork) return true; // ... then by earliest time received, ... if (pa->nSequenceId < pb->nSequenceId) return false; if (pa->nSequenceId > pb->nSequenceId) return true; // Use pointer address as tie breaker (should only happen with blocks // loaded from disk, as those all have id 0). if (pa < pb) return false; if (pa > pb) return true; // Identical blocks. return false; } }; CBlockIndex* pindexBestInvalid; /** * The set of all CBlockIndex entries with BLOCK_VALID_TRANSACTIONS (for itself and all ancestors) and * as good as our current tip or better. Entries may be failed, though. */ set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexCandidates; /** Number of nodes with fSyncStarted. */ int nSyncStarted = 0; /** All pairs A->B, where A (or one if its ancestors) misses transactions, but B has transactions. */ multimap<CBlockIndex*, CBlockIndex*> mapBlocksUnlinked; CCriticalSection cs_LastBlockFile; std::vector<CBlockFileInfo> vinfoBlockFile; int nLastBlockFile = 0; /** * Every received block is assigned a unique and increasing identifier, so we * know which one to give priority in case of a fork. */ CCriticalSection cs_nBlockSequenceId; /** Blocks loaded from disk are assigned id 0, so start the counter at 1. */ uint32_t nBlockSequenceId = 1; /** * Sources of received blocks, to be able to send them reject messages or ban * them, if processing happens afterwards. Protected by cs_main. */ map<uint256, NodeId> mapBlockSource; /** Blocks that are in flight, and that are in the queue to be downloaded. Protected by cs_main. */ struct QueuedBlock { uint256 hash; const CBlockIndex* pindex; //! Optional. int64_t nTime; //! Time of "getdata" request in microseconds. int nValidatedQueuedBefore; //! Number of blocks queued with validated headers (globally) at the time this one is requested. bool fValidatedHeaders; //! Whether this block has validated headers at the time of request. }; map<uint256, pair<NodeId, list<QueuedBlock>::iterator> > mapBlocksInFlight; /** Number of blocks in flight with validated headers. */ int nQueuedValidatedHeaders = 0; /** Number of preferable block download peers. */ int nPreferredDownload = 0; /** Dirty block index entries. */ set<CBlockIndex*> setDirtyBlockIndex; /** Dirty block file entries. */ set<int> setDirtyFileInfo; } // anon namespace ////////////////////////////////////////////////////////////////////////////// // // Registration of network node signals. // namespace { struct CBlockReject { unsigned char chRejectCode; string strRejectReason; uint256 hashBlock; }; class CNodeHeaders { public: CNodeHeaders(): maxSize(0), maxAvg(0) { maxSize = GetArg("-headerspamfiltermaxsize", DEFAULT_HEADER_SPAM_FILTER_MAX_SIZE); maxAvg = GetArg("-headerspamfiltermaxavg", DEFAULT_HEADER_SPAM_FILTER_MAX_AVG); } bool addHeaders(int nBegin, int nEnd) { if (nBegin > 0 && nEnd > 0 && maxSize && maxAvg) { for(int point = nBegin; point<= nEnd; point++) { addPoint(point); } return true; } return false; } bool updateState(CValidationState& state, bool ret) { // No headers size_t size = points.size(); if (size == 0) return ret; // Compute the number of the received headers size_t nHeaders = 0; for (auto point : points) { nHeaders += point.second; } // Compute the average value per height double nAvgValue = (double)nHeaders / size; // Ban the node if try to spam bool banNode = (nAvgValue >= 1.5 * maxAvg && size >= maxAvg) || (nAvgValue >= maxAvg && nHeaders >= maxSize) || (nHeaders >= maxSize * 3); if (banNode) { // Clear the points and ban the node points.clear(); return state.DoS(100, false, REJECT_INVALID, "header-spam", false); } return ret; } private: void addPoint(int height) { // Remove the last element in the list if (points.size() == maxSize) { points.erase(points.begin()); } // Add the point to the list int occurrence = 0; auto mi = points.find(height); if (mi != points.end()) occurrence = (*mi).second; occurrence++; points[height] = occurrence; } private: std::map<int,int> points; size_t maxSize; size_t maxAvg; }; /** * Maintain validation-specific state about nodes, protected by cs_main, instead * by CNode's own locks. This simplifies asynchronous operation, where * processing of incoming data is done after the ProcessMessage call returns, * and we're no longer holding the node's locks. */ struct CNodeState { //! The peer's address CService address; //! Whether we have a fully established connection. bool fCurrentlyConnected; //! Accumulated misbehaviour score for this peer. int nMisbehavior; //! Whether this peer should be disconnected and banned (unless whitelisted). bool fShouldBan; //! String name of this peer (debugging/logging purposes). std::string name; //! List of asynchronously-determined block rejections to notify this peer about. std::vector<CBlockReject> rejects; //! The best known block we know this peer has announced. CBlockIndex* pindexBestKnownBlock; //! The hash of the last unknown block this peer has announced. uint256 hashLastUnknownBlock; //! The last full block we both have. CBlockIndex* pindexLastCommonBlock; //! The best header we have sent our peer. const CBlockIndex *pindexBestHeaderSent; //! Whether we've started headers synchronization with this peer. bool fSyncStarted; //! Since when we're stalling block download progress (in microseconds), or 0. int64_t nStallingSince; list<QueuedBlock> vBlocksInFlight; int nBlocksInFlight; //! Whether we consider this a preferred download peer. bool fPreferredDownload; //! Whether this peer wants invs or headers (when possible) for block announcements. bool fPreferHeaders; CNodeHeaders headers; CNodeState() { fCurrentlyConnected = false; nMisbehavior = 0; fShouldBan = false; pindexBestKnownBlock = NULL; hashLastUnknownBlock = uint256(0); pindexLastCommonBlock = NULL; pindexBestHeaderSent = NULL; fSyncStarted = false; nStallingSince = 0; nBlocksInFlight = 0; fPreferredDownload = false; fPreferHeaders = false; } }; /** Map maintaining per-node state. Requires cs_main. */ map<NodeId, CNodeState> mapNodeState; // Requires cs_main. CNodeState* State(NodeId pnode) { map<NodeId, CNodeState>::iterator it = mapNodeState.find(pnode); if (it == mapNodeState.end()) return NULL; return &it->second; } int GetHeight() { while (true) { TRY_LOCK(cs_main, lockMain); if (!lockMain) { MilliSleep(50); continue; } return chainActive.Height(); } } void UpdatePreferredDownload(CNode* node, CNodeState* state) { nPreferredDownload -= state->fPreferredDownload; // Whether this node should be marked as a preferred download node. state->fPreferredDownload = (!node->fInbound || node->fWhitelisted) && !node->fOneShot && !node->fClient; nPreferredDownload += state->fPreferredDownload; } void InitializeNode(NodeId nodeid, const CNode* pnode) { LOCK(cs_main); CNodeState& state = mapNodeState.insert(std::make_pair(nodeid, CNodeState())).first->second; state.name = pnode->addrName; state.address = pnode->addr; } void FinalizeNode(NodeId nodeid) { LOCK(cs_main); CNodeState* state = State(nodeid); if (state->fSyncStarted) nSyncStarted--; if (state->nMisbehavior == 0 && state->fCurrentlyConnected) { AddressCurrentlyConnected(state->address); } BOOST_FOREACH(const QueuedBlock& entry, state->vBlocksInFlight) { nQueuedValidatedHeaders -= entry.fValidatedHeaders; mapBlocksInFlight.erase(entry.hash); } EraseOrphansFor(nodeid); nPreferredDownload -= state->fPreferredDownload; mapNodeState.erase(nodeid); } // Requires cs_main. bool MarkBlockAsReceived(const uint256& hash) { map<uint256, pair<NodeId, list<QueuedBlock>::iterator> >::iterator itInFlight = mapBlocksInFlight.find(hash); if (itInFlight != mapBlocksInFlight.end()) { CNodeState* state = State(itInFlight->second.first); nQueuedValidatedHeaders -= itInFlight->second.second->fValidatedHeaders; state->vBlocksInFlight.erase(itInFlight->second.second); state->nBlocksInFlight--; state->nStallingSince = 0; mapBlocksInFlight.erase(itInFlight); return true; } return false; } // Requires cs_main. void MarkBlockAsInFlight(NodeId nodeid, const uint256& hash, const CBlockIndex* pindex = NULL) { CNodeState* state = State(nodeid); assert(state != NULL); // Make sure it's not listed somewhere already. MarkBlockAsReceived(hash); QueuedBlock newentry = {hash, pindex, GetTimeMicros(), nQueuedValidatedHeaders, pindex != NULL}; nQueuedValidatedHeaders += newentry.fValidatedHeaders; list<QueuedBlock>::iterator it = state->vBlocksInFlight.insert(state->vBlocksInFlight.end(), newentry); state->nBlocksInFlight++; mapBlocksInFlight[hash] = std::make_pair(nodeid, it); } /** Check whether the last unknown block a peer advertized is not yet known. */ void ProcessBlockAvailability(NodeId nodeid) { CNodeState* state = State(nodeid); assert(state != NULL); if (state->hashLastUnknownBlock != 0) { BlockMap::iterator itOld = mapBlockIndex.find(state->hashLastUnknownBlock); if (itOld != mapBlockIndex.end() && itOld->second->nChainWork > 0) { if (state->pindexBestKnownBlock == NULL || itOld->second->nChainWork >= state->pindexBestKnownBlock->nChainWork) state->pindexBestKnownBlock = itOld->second; state->hashLastUnknownBlock = uint256(0); } } } /** Update tracking information about which blocks a peer is assumed to have. */ void UpdateBlockAvailability(NodeId nodeid, const uint256& hash) { CNodeState* state = State(nodeid); assert(state != NULL); ProcessBlockAvailability(nodeid); BlockMap::iterator it = mapBlockIndex.find(hash); if (it != mapBlockIndex.end() && it->second->nChainWork > 0) { // An actually better block was announced. if (state->pindexBestKnownBlock == NULL || it->second->nChainWork >= state->pindexBestKnownBlock->nChainWork) state->pindexBestKnownBlock = it->second; } else { // An unknown block was announced; just assume that the latest one is the best one. state->hashLastUnknownBlock = hash; } } // Requires cs_main bool CanDirectFetch() { return chainActive.Tip()->GetBlockTime() > GetAdjustedTime() - Params().TargetSpacing() * 20; } // Requires cs_main bool PeerHasHeader(CNodeState *state, CBlockIndex *pindex) { if (state->pindexBestKnownBlock && pindex == state->pindexBestKnownBlock->GetAncestor(pindex->nHeight)) return true; if (state->pindexBestHeaderSent && pindex == state->pindexBestHeaderSent->GetAncestor(pindex->nHeight)) return true; return false; } /** Find the last common ancestor two blocks have. * Both pa and pb must be non-NULL. */ CBlockIndex* LastCommonAncestor(CBlockIndex* pa, CBlockIndex* pb) { if (pa->nHeight > pb->nHeight) { pa = pa->GetAncestor(pb->nHeight); } else if (pb->nHeight > pa->nHeight) { pb = pb->GetAncestor(pa->nHeight); } while (pa != pb && pa && pb) { pa = pa->pprev; pb = pb->pprev; } // Eventually all chain branches meet at the genesis block. assert(pa == pb); return pa; } /** Update pindexLastCommonBlock and add not-in-flight missing successors to vBlocks, until it has * at most count entries. */ void FindNextBlocksToDownload(NodeId nodeid, unsigned int count, std::vector<CBlockIndex*>& vBlocks, NodeId& nodeStaller) { if (count == 0) return; vBlocks.reserve(vBlocks.size() + count); CNodeState* state = State(nodeid); assert(state != NULL); // Make sure pindexBestKnownBlock is up to date, we'll need it. ProcessBlockAvailability(nodeid); if (state->pindexBestKnownBlock == NULL || state->pindexBestKnownBlock->nChainWork < chainActive.Tip()->nChainWork) { // This peer has nothing interesting. return; } if (state->pindexLastCommonBlock == NULL) { // Bootstrap quickly by guessing a parent of our best tip is the forking point. // Guessing wrong in either direction is not a problem. state->pindexLastCommonBlock = chainActive[std::min(state->pindexBestKnownBlock->nHeight, chainActive.Height())]; } // If the peer reorganized, our previous pindexLastCommonBlock may not be an ancestor // of their current tip anymore. Go back enough to fix that. state->pindexLastCommonBlock = LastCommonAncestor(state->pindexLastCommonBlock, state->pindexBestKnownBlock); if (state->pindexLastCommonBlock == state->pindexBestKnownBlock) return; std::vector<CBlockIndex*> vToFetch; CBlockIndex* pindexWalk = state->pindexLastCommonBlock; // Never fetch further than the best block we know the peer has, or more than BLOCK_DOWNLOAD_WINDOW + 1 beyond the last // linked block we have in common with this peer. The +1 is so we can detect stalling, namely if we would be able to // download that next block if the window were 1 larger. int nWindowEnd = state->pindexLastCommonBlock->nHeight + BLOCK_DOWNLOAD_WINDOW; int nMaxHeight = std::min<int>(state->pindexBestKnownBlock->nHeight, nWindowEnd + 1); NodeId waitingfor = -1; while (pindexWalk->nHeight < nMaxHeight) { // Read up to 128 (or more, if more blocks than that are needed) successors of pindexWalk (towards // pindexBestKnownBlock) into vToFetch. We fetch 128, because CBlockIndex::GetAncestor may be as expensive // as iterating over ~100 CBlockIndex* entries anyway. int nToFetch = std::min(nMaxHeight - pindexWalk->nHeight, std::max<int>(count - vBlocks.size(), 128)); vToFetch.resize(nToFetch); pindexWalk = state->pindexBestKnownBlock->GetAncestor(pindexWalk->nHeight + nToFetch); vToFetch[nToFetch - 1] = pindexWalk; for (unsigned int i = nToFetch - 1; i > 0; i--) { vToFetch[i - 1] = vToFetch[i]->pprev; } // Iterate over those blocks in vToFetch (in forward direction), adding the ones that // are not yet downloaded and not in flight to vBlocks. In the mean time, update // pindexLastCommonBlock as long as all ancestors are already downloaded. BOOST_FOREACH (CBlockIndex* pindex, vToFetch) { if (!pindex->IsValid(BLOCK_VALID_TREE)) { // We consider the chain that this peer is on invalid. return; } if (pindex->nStatus & BLOCK_HAVE_DATA) { if (pindex->nChainTx) state->pindexLastCommonBlock = pindex; } else if (mapBlocksInFlight.count(pindex->GetBlockHash()) == 0) { // The block is not already downloaded, and not yet in flight. if (pindex->nHeight > nWindowEnd) { // We reached the end of the window. if (vBlocks.size() == 0 && waitingfor != nodeid) { // We aren't able to fetch anything, but we would be if the download window was one larger. nodeStaller = waitingfor; } return; } vBlocks.push_back(pindex); if (vBlocks.size() == count) { return; } } else if (waitingfor == -1) { // This is the first already-in-flight block. waitingfor = mapBlocksInFlight[pindex->GetBlockHash()].first; } } } } } // anon namespace bool GetNodeStateStats(NodeId nodeid, CNodeStateStats& stats) { LOCK(cs_main); CNodeState* state = State(nodeid); if (state == NULL) return false; stats.nMisbehavior = state->nMisbehavior; stats.nSyncHeight = state->pindexBestKnownBlock ? state->pindexBestKnownBlock->nHeight : -1; stats.nCommonHeight = state->pindexLastCommonBlock ? state->pindexLastCommonBlock->nHeight : -1; BOOST_FOREACH (const QueuedBlock& queue, state->vBlocksInFlight) { if (queue.pindex) stats.vHeightInFlight.push_back(queue.pindex->nHeight); } return true; } void RegisterNodeSignals(CNodeSignals& nodeSignals) { nodeSignals.GetHeight.connect(&GetHeight); nodeSignals.ProcessMessages.connect(&ProcessMessages); nodeSignals.SendMessages.connect(&SendMessages); nodeSignals.InitializeNode.connect(&InitializeNode); nodeSignals.FinalizeNode.connect(&FinalizeNode); } void UnregisterNodeSignals(CNodeSignals& nodeSignals) { nodeSignals.GetHeight.disconnect(&GetHeight); nodeSignals.ProcessMessages.disconnect(&ProcessMessages); nodeSignals.SendMessages.disconnect(&SendMessages); nodeSignals.InitializeNode.disconnect(&InitializeNode); nodeSignals.FinalizeNode.disconnect(&FinalizeNode); } CBlockIndex* FindForkInGlobalIndex(const CChain& chain, const CBlockLocator& locator) { // Find the first block the caller has in the main chain BOOST_FOREACH (const uint256& hash, locator.vHave) { BlockMap::iterator mi = mapBlockIndex.find(hash); if (mi != mapBlockIndex.end()) { CBlockIndex* pindex = (*mi).second; if (chain.Contains(pindex)) return pindex; } } return chain.Genesis(); } CCoinsViewCache* pcoinsTip = NULL; CBlockTreeDB* pblocktree = NULL; CZerocoinDB* zerocoinDB = NULL; CSporkDB* pSporkDB = NULL; ////////////////////////////////////////////////////////////////////////////// // // mapOrphanTransactions // bool AddOrphanTx(const CTransaction& tx, NodeId peer) { uint256 hash = tx.GetHash(); if (mapOrphanTransactions.count(hash)) return false; // Ignore big transactions, to avoid a // send-big-orphans memory exhaustion attack. If a peer has a legitimate // large transaction with a missing parent then we assume // it will rebroadcast it later, after the parent transaction(s) // have been mined or received. // 10,000 orphans, each of which is at most 5,000 bytes big is // at most 500 megabytes of orphans: unsigned int sz = tx.GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION); if (sz > 5000) { LogPrint("mempool", "ignoring large orphan tx (size: %u, hash: %s)\n", sz, hash.ToString()); return false; } mapOrphanTransactions[hash].tx = tx; mapOrphanTransactions[hash].fromPeer = peer; BOOST_FOREACH (const CTxIn& txin, tx.vin) mapOrphanTransactionsByPrev[txin.prevout.hash].insert(hash); LogPrint("mempool", "stored orphan tx %s (mapsz %u prevsz %u)\n", hash.ToString(), mapOrphanTransactions.size(), mapOrphanTransactionsByPrev.size()); return true; } void static EraseOrphanTx(uint256 hash) { map<uint256, COrphanTx>::iterator it = mapOrphanTransactions.find(hash); if (it == mapOrphanTransactions.end()) return; BOOST_FOREACH (const CTxIn& txin, it->second.tx.vin) { map<uint256, set<uint256> >::iterator itPrev = mapOrphanTransactionsByPrev.find(txin.prevout.hash); if (itPrev == mapOrphanTransactionsByPrev.end()) continue; itPrev->second.erase(hash); if (itPrev->second.empty()) mapOrphanTransactionsByPrev.erase(itPrev); } mapOrphanTransactions.erase(it); } void EraseOrphansFor(NodeId peer) { int nErased = 0; map<uint256, COrphanTx>::iterator iter = mapOrphanTransactions.begin(); while (iter != mapOrphanTransactions.end()) { map<uint256, COrphanTx>::iterator maybeErase = iter++; // increment to avoid iterator becoming invalid if (maybeErase->second.fromPeer == peer) { EraseOrphanTx(maybeErase->second.tx.GetHash()); ++nErased; } } if (nErased > 0) LogPrint("mempool", "Erased %d orphan tx from peer %d\n", nErased, peer); } unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) { unsigned int nEvicted = 0; while (mapOrphanTransactions.size() > nMaxOrphans) { // Evict a random orphan: uint256 randomhash = GetRandHash(); map<uint256, COrphanTx>::iterator it = mapOrphanTransactions.lower_bound(randomhash); if (it == mapOrphanTransactions.end()) it = mapOrphanTransactions.begin(); EraseOrphanTx(it->first); ++nEvicted; } return nEvicted; } bool IsStandardTx(const CTransaction& tx, string& reason) { AssertLockHeld(cs_main); if (tx.nVersion > CTransaction::CURRENT_VERSION || tx.nVersion < 7 || tx.nTime != 0) { reason = "version"; return false; } // Treat non-final transactions as non-standard to prevent a specific type // of double-spend attack, as well as DoS attacks. (if the transaction // can't be mined, the attacker isn't expending resources broadcasting it) // Basically we don't want to propagate transactions that can't be included in // the next block. // // However, IsFinalTx() is confusing... Without arguments, it uses // chainActive.Height() to evaluate nLockTime; when a block is accepted, chainActive.Height() // is set to the value of nHeight in the block. However, when IsFinalTx() // is called within CBlock::AcceptBlock(), the height of the block *being* // evaluated is what is used. Thus if we want to know if a transaction can // be part of the *next* block, we need to call IsFinalTx() with one more // than chainActive.Height(). // // Timestamps on the other hand don't get any special treatment, because we // can't know what timestamp the next block will have, and there aren't // timestamp applications where it matters. if (!IsFinalTx(tx, chainActive.Height() + 1)) { reason = "non-final"; return false; } // Extremely large transactions with lots of inputs can cost the network // almost as much to process as they cost the sender in fees, because // computing signature hashes is O(ninputs*txsize). Limiting transactions // to MAX_STANDARD_TX_SIZE mitigates CPU exhaustion attacks. unsigned int sz = tx.GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION); unsigned int nMaxSize = tx.ContainsZerocoins() ? MAX_ZEROCOIN_TX_SIZE : MAX_STANDARD_TX_SIZE; if (sz >= nMaxSize) { reason = "tx-size"; return false; } for (const CTxIn& txin : tx.vin) { if (txin.scriptSig.IsZerocoinSpend()) continue; // Biggest 'standard' txin is a 15-of-15 P2SH multisig with compressed // keys. (remember the 520 byte limit on redeemScript size) That works // out to a (15*(33+1))+3=513 byte redeemScript, 513+1+15*(73+1)+3=1627 // bytes of scriptSig, which we round off to 1650 bytes for some minor // future-proofing. That's also enough to spend a 20-of-20 // CHECKMULTISIG scriptPubKey, though such a scriptPubKey is not // considered standard) if (txin.scriptSig.size() > 1650) { reason = "scriptsig-size"; return false; } if (!txin.scriptSig.IsPushOnly()) { reason = "scriptsig-not-pushonly"; return false; } } unsigned int nDataOut = 0; txnouttype whichType; BOOST_FOREACH (const CTxOut& txout, tx.vout) { if (!::IsStandard(txout.scriptPubKey, whichType)) { reason = "scriptpubkey"; return false; } if (whichType == TX_NULL_DATA) nDataOut++; else if ((whichType == TX_MULTISIG || whichType == TX_MULTISIG_DATA) && (!fIsBareMultisigStd)) { reason = "bare-multisig"; return false; } else if (txout.IsDust(::minRelayTxFee)) { reason = "dust"; return false; } } // only one OP_RETURN txout is permitted if (nDataOut > 1) { reason = "multi-op-return"; return false; } return true; } bool IsFinalTx(const CTransaction& tx, int nBlockHeight, int64_t nBlockTime) { AssertLockHeld(cs_main); // Time based nLockTime implemented in 0.1.6 if (tx.nLockTime == 0) return true; if (nBlockHeight == 0) nBlockHeight = chainActive.Height(); if (nBlockTime == 0) nBlockTime = GetAdjustedTime(); if ((int64_t)tx.nLockTime < ((int64_t)tx.nLockTime < LOCKTIME_THRESHOLD ? (int64_t)nBlockHeight : nBlockTime)) return true; BOOST_FOREACH (const CTxIn& txin, tx.vin) { if (!(txin.nSequence == CTxIn::SEQUENCE_FINAL)) return false; } return true; } /** * Check transaction inputs to mitigate two * potential denial-of-service attacks: * * 1. scriptSigs with extra data stuffed into them, * not consumed by scriptPubKey (or P2SH script) * 2. P2SH scripts with a crazy number of expensive * CHECKSIG/CHECKMULTISIG operations */ bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs) { if (tx.IsCoinBase() || tx.IsZerocoinSpend()) return true; // coinbase has no inputs and zerocoinspend has a special input //todo should there be a check for a 'standard' zerocoinspend here? for (unsigned int i = 0; i < tx.vin.size(); i++) { const CTxOut& prev = mapInputs.GetOutputFor(tx.vin[i]); vector<vector<unsigned char> > vSolutions; txnouttype whichType; // get the scriptPubKey corresponding to this input: const CScript& prevScript = prev.scriptPubKey; if (!Solver(prevScript, whichType, vSolutions)) return false; int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions); if (nArgsExpected < 0) return false; // Transactions with extra stuff in their scriptSigs are // non-standard. Note that this EvalScript() call will // be quick, because if there are any operations // beside "push data" in the scriptSig // IsStandard() will have already returned false // and this method isn't called. vector<vector<unsigned char> > stack; if (!EvalScript(stack, tx.vin[i].scriptSig, false, BaseSignatureChecker())) return false; if (whichType == TX_SCRIPTHASH) { if (stack.empty()) return false; CScript subscript(stack.back().begin(), stack.back().end()); vector<vector<unsigned char> > vSolutions2; txnouttype whichType2; if (Solver(subscript, whichType2, vSolutions2)) { int tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2); if (tmpExpected < 0) return false; nArgsExpected += tmpExpected; } else { // Any other Script with less than 15 sigops OK: unsigned int sigops = subscript.GetSigOpCount(true); // ... extra data left on the stack after execution is OK, too: return (sigops <= MAX_P2SH_SIGOPS); } } if (stack.size() != (unsigned int)nArgsExpected) return false; } return true; } unsigned int GetLegacySigOpCount(const CTransaction& tx) { unsigned int nSigOps = 0; BOOST_FOREACH (const CTxIn& txin, tx.vin) { nSigOps += txin.scriptSig.GetSigOpCount(false); } BOOST_FOREACH (const CTxOut& txout, tx.vout) { nSigOps += txout.scriptPubKey.GetSigOpCount(false); } return nSigOps; } unsigned int GetP2SHSigOpCount(const CTransaction& tx, const CCoinsViewCache& inputs) { if (tx.IsCoinBase() || tx.IsZerocoinSpend()) return 0; unsigned int nSigOps = 0; for (unsigned int i = 0; i < tx.vin.size(); i++) { const CTxOut& prevout = inputs.GetOutputFor(tx.vin[i]); if (prevout.scriptPubKey.IsPayToScriptHash()) nSigOps += prevout.scriptPubKey.GetSigOpCount(tx.vin[i].scriptSig); } return nSigOps; } int GetInputAge(CTxIn& vin) { CCoinsView viewDummy; CCoinsViewCache view(&viewDummy); { LOCK(mempool.cs); CCoinsViewMemPool viewMempool(pcoinsTip, mempool); view.SetBackend(viewMempool); // temporarily switch cache backend to db+mempool view const CCoins* coins = view.AccessCoins(vin.prevout.hash); if (coins) { if (coins->nHeight < 0) return 0; return (chainActive.Tip()->nHeight + 1) - coins->nHeight; } else return -1; } } int GetIXConfirmations(uint256 nTXHash) { int sigs = 0; std::map<uint256, CTransactionLock>::iterator i = mapTxLocks.find(nTXHash); if (i != mapTxLocks.end()) { sigs = (*i).second.CountSignatures(); } if (sigs >= SWIFTTX_SIGNATURES_REQUIRED) { return nSwiftTXDepth; } return 0; } // ppcoin: total coin age spent in transaction, in the unit of coin-days. // Only those coins meeting minimum age requirement counts. As those // transactions not in main chain are not currently indexed so we // might not find out about their coin age. Older transactions are // guaranteed to be in main chain by sync-checkpoint. This rule is // introduced to help nodes establish a consistent view of the coin // age (trust score) of competing branches. bool GetCoinAge(const CTransaction& tx, const unsigned int nTxTime, int nBestHeight, uint64_t& nCoinAge) { uint256 bnCentSecond = 0; // coin age in the unit of cent-seconds nCoinAge = 0; CBlockIndex* pindex = NULL; BOOST_FOREACH (const CTxIn& txin, tx.vin) { // First try finding the previous transaction in database CTransaction txPrev; uint256 hashBlockPrev; if (!GetTransaction(txin.prevout.hash, txPrev, hashBlockPrev, true)) { LogPrintf("GetCoinAge: failed to find vin transaction \n"); continue; // previous transaction not in main chain } BlockMap::iterator it = mapBlockIndex.find(hashBlockPrev); if (it != mapBlockIndex.end()) pindex = it->second; else { LogPrintf("GetCoinAge() failed to find block index \n"); continue; } // Read block header CBlockHeader prevblock = pindex->GetBlockHeader(); if (prevblock.nTime + (nBestHeight+1>=nHardForkBlock ? nStakeMinAge : nStakeMinAgeOld) > nTxTime) continue; // only count coins meeting min age requirement if (nTxTime < prevblock.nTime) { LogPrintf("GetCoinAge: Timestamp Violation: txtime less than txPrev.nTime"); return false; // Transaction timestamp violation } unsigned int nTimeDiff = nTxTime - (nBestHeight+1>=Params().WALLET_UPGRADE_BLOCK() || Params().NetworkID() != CBaseChainParams::MAIN ? prevblock.nTime : txPrev.nTime); // switch to prevblock.nTime after upgrade if (nTimeDiff > nStakeMaxAgeNew && (nBestHeight + 1 >= Params().WALLET_UPGRADE_BLOCK() || Params().NetworkID() != CBaseChainParams::MAIN)) nTimeDiff = nStakeMaxAgeNew; //else if (nBestHeight + 1 >= nHardForkBlock && nTimeDiff > nStakeMaxAge) //nTimeDiff = nStakeMaxAge; int64_t nValueIn = txPrev.vout[txin.prevout.n].nValue; bnCentSecond += uint256(nValueIn) * nTimeDiff; //LogPrintf("coin age nValueIn=%"PRId64" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTimeDiff, bnCentSecond.ToString().c_str()); } uint256 bnCoinDay; if (nBestHeight > nLastOldPoSBlock) bnCoinDay = bnCentSecond / COIN / (24 * 60 * 60); else bnCoinDay = bnCentSecond / (24 * 60 * 60); nCoinAge = bnCoinDay.Get64(); LogPrint("net", "coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str()); return true; } bool MoneyRange(CAmount nValueOut) { return nValueOut >= 0 && nValueOut <= Params().MaxMoneyOut(); } bool CheckZerocoinMint(const uint256& txHash, const CTxOut& txout, CValidationState& state, bool fCheckOnly) { PublicCoin pubCoin(Params().Zerocoin_Params(false)); if(!TxOutToPublicCoin(txout, pubCoin, state)) return state.DoS(100, error("CheckZerocoinMint(): TxOutToPublicCoin() failed")); if (!pubCoin.validate()) return state.DoS(100, error("CheckZerocoinMint() : PubCoin does not validate")); return true; } bool ContextualCheckZerocoinMint(const CTransaction& tx, const PublicCoin& coin, const CBlockIndex* pindex) { if (pindex->nHeight >= Params().Zerocoin_Block_V2_Start() && Params().NetworkID() != CBaseChainParams::TESTNET) { //See if this coin has already been added to the blockchain uint256 txid; int nHeight; if (zerocoinDB->ReadCoinMint(coin.getValue(), txid) && IsTransactionInChain(txid, nHeight)) return error("%s: pubcoin %s was already accumulated in tx %s", __func__, coin.getValue().GetHex().substr(0, 10), txid.GetHex()); } return true; } bool ContextualCheckZerocoinSpend(const CTransaction& tx, const CoinSpend& spend, CBlockIndex* pindex, const uint256& hashBlock) { if(!ContextualCheckZerocoinSpendNoSerialCheck(tx, spend, pindex, hashBlock)){ return false; } //Reject serial's that are already in the blockchain int nHeightTx = 0; if (IsSerialInBlockchain(spend.getCoinSerialNumber(), nHeightTx)) return error("%s : zECA spend with serial %s is already in block %d\n", __func__, spend.getCoinSerialNumber().GetHex(), nHeightTx); return true; } bool ContextualCheckZerocoinSpendNoSerialCheck(const CTransaction& tx, const CoinSpend& spend, CBlockIndex* pindex, const uint256& hashBlock) { //Check to see if the zECA is properly signed if (pindex->nHeight >= Params().Zerocoin_Block_V2_Start()) { try { if (!spend.HasValidSignature()) return error("%s: V2 zECA spend does not have a valid signature\n", __func__); } catch (libzerocoin::InvalidSerialException &e) { return error("%s: Invalid serial detected, txid %s, in block %d\n", __func__, tx.GetHash().GetHex(), pindex->nHeight); } libzerocoin::SpendType expectedType = libzerocoin::SpendType::SPEND; if (tx.IsCoinStake()) expectedType = libzerocoin::SpendType::STAKE; if (spend.getSpendType() != expectedType) { return error("%s: trying to spend zECA without the correct spend type. txid=%s\n", __func__, tx.GetHash().GetHex()); } } //Reject serial's that are not in the acceptable value range bool fUseV1Params = spend.getVersion() < libzerocoin::PrivateCoin::PUBKEY_VERSION; if (pindex->nHeight > Params().Zerocoin_Block_EnforceSerialRange() && !spend.HasValidSerial(Params().Zerocoin_Params(fUseV1Params))) return error("%s : zECA spend with serial %s from tx %s is not in valid range\n", __func__, spend.getCoinSerialNumber().GetHex(), tx.GetHash().GetHex()); return true; } bool CheckZerocoinSpend(const CTransaction& tx, bool fVerifySignature, CValidationState& state) { //max needed non-mint outputs should be 2 - one for redemption address and a possible 2nd for change if (tx.vout.size() > 2) { int outs = 0; for (const CTxOut& out : tx.vout) { if (out.IsZerocoinMint()) continue; outs++; } if (outs > 2 && !tx.IsCoinStake()) return state.DoS(100, error("CheckZerocoinSpend(): over two non-mint outputs in a zerocoinspend transaction")); } //compute the txout hash that is used for the zerocoinspend signatures CMutableTransaction txTemp; for (const CTxOut& out : tx.vout) { txTemp.vout.push_back(out); } uint256 hashTxOut = txTemp.GetHash(); bool fValidated = false; set<CBigNum> serials; list<CoinSpend> vSpends; CAmount nTotalRedeemed = 0; for (const CTxIn& txin : tx.vin) { //only check txin that is a zcspend if (!txin.scriptSig.IsZerocoinSpend()) continue; CoinSpend newSpend = TxInToZerocoinSpend(txin); vSpends.push_back(newSpend); //check that the denomination is valid if (newSpend.getDenomination() == ZQ_ERROR) return state.DoS(100, error("Zerocoinspend does not have the correct denomination")); //check that denomination is what it claims to be in nSequence if (newSpend.getDenomination() != txin.nSequence) return state.DoS(100, error("Zerocoinspend nSequence denomination does not match CoinSpend")); //make sure the txout has not changed if (newSpend.getTxOutHash() != hashTxOut) return state.DoS(100, error("Zerocoinspend does not use the same txout that was used in the SoK")); // Skip signature verification during initial block download if (fVerifySignature) { //see if we have record of the accumulator used in the spend tx CBigNum bnAccumulatorValue = 0; if (!zerocoinDB->ReadAccumulatorValue(newSpend.getAccumulatorChecksum(), bnAccumulatorValue)) { uint32_t nChecksum = newSpend.getAccumulatorChecksum(); return state.DoS(100, error("%s: Zerocoinspend could not find accumulator associated with checksum %s", __func__, HexStr(BEGIN(nChecksum), END(nChecksum)))); } Accumulator accumulator(Params().Zerocoin_Params(chainActive.Height() < Params().Zerocoin_Block_V2_Start()), newSpend.getDenomination(), bnAccumulatorValue); //Check that the coin has been accumulated if(!newSpend.Verify(accumulator)) return state.DoS(100, error("CheckZerocoinSpend(): zerocoin spend did not verify")); } if (serials.count(newSpend.getCoinSerialNumber())) return state.DoS(100, error("Zerocoinspend serial is used twice in the same tx")); serials.insert(newSpend.getCoinSerialNumber()); //make sure that there is no over redemption of coins nTotalRedeemed += ZerocoinDenominationToAmount(newSpend.getDenomination()); fValidated = true; } if (!tx.IsCoinStake() && nTotalRedeemed < tx.GetValueOut()) { LogPrintf("redeemed = %s , spend = %s \n", FormatMoney(nTotalRedeemed), FormatMoney(tx.GetValueOut())); return state.DoS(100, error("Transaction spend more than was redeemed in zerocoins")); } return fValidated; } bool CheckTransaction(const CTransaction& tx, bool fZerocoinActive, bool fRejectBadUTXO, CValidationState& state) { // Basic checks that don't depend on any context if (tx.vin.empty()) return state.DoS(10, error("CheckTransaction() : vin empty"), REJECT_INVALID, "bad-txns-vin-empty"); if (tx.vout.empty()) return state.DoS(10, error("CheckTransaction() : vout empty"), REJECT_INVALID, "bad-txns-vout-empty"); // Size limits unsigned int nMaxSize = MAX_ZEROCOIN_TX_SIZE; if (::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION) > nMaxSize) return state.DoS(100, error("CheckTransaction() : size limits failed"), REJECT_INVALID, "bad-txns-oversize"); // Check for negative or overflow output values CAmount nValueOut = 0; int nZCSpendCount = 0; BOOST_FOREACH (const CTxOut& txout, tx.vout) { // if (txout.IsEmpty() && !tx.IsCoinBase() && !tx.IsCoinStake()) // return state.DoS(100, error("CheckTransaction(): txout empty for user transaction")); if (txout.nValue < 0) return state.DoS(100, error("CheckTransaction() : txout.nValue negative"), REJECT_INVALID, "bad-txns-vout-negative"); if (txout.nValue > Params().MaxMoneyOut()) return state.DoS(100, error("CheckTransaction() : txout.nValue too high"), REJECT_INVALID, "bad-txns-vout-toolarge"); nValueOut += txout.nValue; if (!MoneyRange(nValueOut)) return state.DoS(100, error("CheckTransaction() : txout total out of range"), REJECT_INVALID, "bad-txns-txouttotal-toolarge"); if (fZerocoinActive && txout.IsZerocoinMint()) { if(!CheckZerocoinMint(tx.GetHash(), txout, state, true)) return state.DoS(100, error("CheckTransaction() : invalid zerocoin mint")); } if (fZerocoinActive && txout.scriptPubKey.IsZerocoinSpend()) nZCSpendCount++; } if (fZerocoinActive) { if (nZCSpendCount > Params().Zerocoin_MaxSpendsPerTransaction()) return state.DoS(100, error("CheckTransaction() : there are more zerocoin spends than are allowed in one transaction")); if (tx.IsZerocoinSpend()) { //require that a zerocoinspend only has inputs that are zerocoins for (const CTxIn& in : tx.vin) { if (!in.scriptSig.IsZerocoinSpend()) return state.DoS(100, error("CheckTransaction() : zerocoinspend contains inputs that are not zerocoins")); } // Do not require signature verification if this is initial sync and a block over 24 hours old bool fVerifySignature = !IsInitialBlockDownload() && (GetTime() - chainActive.Tip()->GetBlockTime() < (60*60*24)); if (!CheckZerocoinSpend(tx, fVerifySignature, state)) return state.DoS(100, error("CheckTransaction() : invalid zerocoin spend")); } } // Check for duplicate inputs set<COutPoint> vInOutPoints; set<CBigNum> vZerocoinSpendSerials; for (const CTxIn& txin : tx.vin) { if (vInOutPoints.count(txin.prevout)) return state.DoS(100, error("CheckTransaction() : duplicate inputs"), REJECT_INVALID, "bad-txns-inputs-duplicate"); //duplicate zcspend serials are checked in CheckZerocoinSpend() if (!txin.scriptSig.IsZerocoinSpend()) vInOutPoints.insert(txin.prevout); } if (tx.IsCoinBase()) { if (tx.vin[0].scriptSig.size() < 2 || tx.vin[0].scriptSig.size() > 150) return state.DoS(100, error("CheckTransaction() : coinbase script size=%d", tx.vin[0].scriptSig.size()), REJECT_INVALID, "bad-cb-length"); } else if (fZerocoinActive && tx.IsZerocoinSpend()) { if(tx.vin.size() < 1 || static_cast<int>(tx.vin.size()) > Params().Zerocoin_MaxSpendsPerTransaction()) return state.DoS(10, error("CheckTransaction() : Zerocoin Spend has more than allowed txin's"), REJECT_INVALID, "bad-zerocoinspend"); } else { BOOST_FOREACH (const CTxIn& txin, tx.vin) if (txin.prevout.IsNull()) return state.DoS(10, error("CheckTransaction() : prevout is null"), REJECT_INVALID, "bad-txns-prevout-null"); } return true; } bool CheckFinalTx(const CTransaction& tx, int flags) { AssertLockHeld(cs_main); // By convention a negative value for flags indicates that the // current network-enforced consensus rules should be used. In // a future soft-fork scenario that would mean checking which // rules would be enforced for the next block and setting the // appropriate flags. At the present time no soft-forks are // scheduled, so no flags are set. flags = std::max(flags, 0); // CheckFinalTx() uses chainActive.Height()+1 to evaluate // nLockTime because when IsFinalTx() is called within // CBlock::AcceptBlock(), the height of the block *being* // evaluated is what is used. Thus if we want to know if a // transaction can be part of the *next* block, we need to call // IsFinalTx() with one more than chainActive.Height(). const int nBlockHeight = chainActive.Height() + 1; // BIP113 will require that time-locked transactions have nLockTime set to // less than the median time of the previous block they're contained in. // When the next block is created its previous block will be the current // chain tip, so we use that to calculate the median time passed to // IsFinalTx() if LOCKTIME_MEDIAN_TIME_PAST is set. const int64_t nBlockTime = (flags & LOCKTIME_MEDIAN_TIME_PAST) ? chainActive.Tip()->GetMedianTimePast() : GetAdjustedTime(); return IsFinalTx(tx, nBlockHeight, nBlockTime); } /** * Calculates the block height and previous block's median time past at * which the transaction will be considered final in the context of BIP 68. * Also removes from the vector of input heights any entries which did not * correspond to sequence locked inputs as they do not affect the calculation. */ static std::pair<int, int64_t> CalculateSequenceLocks(const CTransaction &tx, int flags, std::vector<int>* prevHeights, const CBlockIndex& block) { assert(prevHeights->size() == tx.vin.size()); // Will be set to the equivalent height- and time-based nLockTime // values that would be necessary to satisfy all relative lock- // time constraints given our view of block chain history. // The semantics of nLockTime are the last invalid height/time, so // use -1 to have the effect of any height or time being valid. int nMinHeight = -1; int64_t nMinTime = -1; // tx.nVersion is signed integer so requires cast to unsigned otherwise // we would be doing a signed comparison and half the range of nVersion // wouldn't support BIP 68. bool fEnforceBIP68 = static_cast<uint32_t>(tx.nVersion) >= 1 && flags & LOCKTIME_VERIFY_SEQUENCE; // Do not enforce sequence numbers as a relative lock time // unless we have been instructed to if (!fEnforceBIP68) { return std::make_pair(nMinHeight, nMinTime); } for (size_t txinIndex = 0; txinIndex < tx.vin.size(); txinIndex++) { const CTxIn& txin = tx.vin[txinIndex]; // Sequence numbers with the most significant bit set are not // treated as relative lock-times, nor are they given any // consensus-enforced meaning at this point. if (txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_DISABLE_FLAG) { // The height of this input is not relevant for sequence locks (*prevHeights)[txinIndex] = 0; continue; } int nCoinHeight = (*prevHeights)[txinIndex]; if (txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG) { int64_t nCoinTime = block.GetAncestor(std::max(nCoinHeight-1, 0))->GetMedianTimePast(); // NOTE: Subtract 1 to maintain nLockTime semantics // BIP 68 relative lock times have the semantics of calculating // the first block or time at which the transaction would be // valid. When calculating the effective block time or height // for the entire transaction, we switch to using the // semantics of nLockTime which is the last invalid block // time or height. Thus we subtract 1 from the calculated // time or height. // Time-based relative lock-times are measured from the // smallest allowed timestamp of the block containing the // txout being spent, which is the median time past of the // block prior. nMinTime = std::max(nMinTime, nCoinTime + (int64_t)((txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_MASK) << CTxIn::SEQUENCE_LOCKTIME_GRANULARITY) - 1); } else { nMinHeight = std::max(nMinHeight, nCoinHeight + (int)(txin.nSequence & CTxIn::SEQUENCE_LOCKTIME_MASK) - 1); } } return std::make_pair(nMinHeight, nMinTime); } static bool EvaluateSequenceLocks(const CBlockIndex& block, std::pair<int, int64_t> lockPair) { assert(block.pprev); int64_t nBlockTime = block.pprev->GetMedianTimePast(); if (lockPair.first >= block.nHeight || lockPair.second >= nBlockTime) return false; return true; } bool SequenceLocks(const CTransaction &tx, int flags, std::vector<int>* prevHeights, const CBlockIndex& block) { return EvaluateSequenceLocks(block, CalculateSequenceLocks(tx, flags, prevHeights, block)); } bool CheckSequenceLocks(const CTransaction &tx, int flags) { AssertLockHeld(cs_main); AssertLockHeld(mempool.cs); CBlockIndex* tip = chainActive.Tip(); CBlockIndex index; index.pprev = tip; // CheckSequenceLocks() uses chainActive.Height()+1 to evaluate // height based locks because when SequenceLocks() is called within // ConnectBlock(), the height of the block *being* // evaluated is what is used. // Thus if we want to know if a transaction can be part of the // *next* block, we need to use one more than chainActive.Height() index.nHeight = tip->nHeight + 1; // pcoinsTip contains the UTXO set for chainActive.Tip() CCoinsViewMemPool viewMemPool(pcoinsTip, mempool); std::vector<int> prevheights; prevheights.resize(tx.vin.size()); for (size_t txinIndex = 0; txinIndex < tx.vin.size(); txinIndex++) { const CTxIn& txin = tx.vin[txinIndex]; CCoins coins; if (!viewMemPool.GetCoins(txin.prevout.hash, coins)) { return error("%s: Missing input", __func__); } if (coins.nHeight == MEMPOOL_HEIGHT) { // Assume all mempool transaction confirm in the next block prevheights[txinIndex] = tip->nHeight + 1; } else { prevheights[txinIndex] = coins.nHeight; } } std::pair<int, int64_t> lockPair = CalculateSequenceLocks(tx, flags, &prevheights, index); return EvaluateSequenceLocks(index, lockPair); } CAmount GetMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree) { { LOCK(mempool.cs); uint256 hash = tx.GetHash(); double dPriorityDelta = 0; CAmount nFeeDelta = 0; mempool.ApplyDeltas(hash, dPriorityDelta, nFeeDelta); if (dPriorityDelta > 0 || nFeeDelta > 0) return 0; } CAmount nMinFee = ::minRelayTxFee.GetFee(nBytes); if (fAllowFree) { // There is a free transaction area in blocks created by most miners, // * If we are relaying we allow transactions up to DEFAULT_BLOCK_PRIORITY_SIZE - 1000 // to be considered to fall into this category. We don't want to encourage sending // multiple transactions instead of one big transaction to avoid fees. if (nBytes < (DEFAULT_BLOCK_PRIORITY_SIZE - 1000)) nMinFee = 0; } if (!MoneyRange(nMinFee)) nMinFee = Params().MaxMoneyOut(); return nMinFee; } /** Convert CValidationState to a human-readable message for logging */ std::string FormatStateMessage(const CValidationState &state) { return strprintf("%s%s (code %i)", state.GetRejectReason(), state.GetDebugMessage().empty() ? "" : ", "+state.GetDebugMessage(), state.GetRejectCode()); } bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState& state, const CTransaction& tx, bool fLimitFree, bool* pfMissingInputs, bool fRejectInsaneFee, bool ignoreFees) { AssertLockHeld(cs_main); if (pfMissingInputs) *pfMissingInputs = false; // Temporarily disable zerocoin for maintenance if (GetAdjustedTime() >= GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE) && tx.ContainsZerocoins()) return state.DoS(10, error("AcceptToMemoryPool : Zerocoin transactions are temporarily disabled for maintenance"), REJECT_INVALID, "bad-tx"); int chainHeight = chainActive.Height(); if ((Params().NetworkID() != CBaseChainParams::REGTEST || (chainHeight < Params().Zerocoin_Block_V2_Start() && !IsInitialBlockDownload())) && tx.ContainsZerocoins()) return state.DoS(10, error("AcceptToMemoryPool: : Zerocoin is not yet active"), REJECT_INVALID, "bad-tx"); if (!CheckTransaction(tx, chainHeight >= Params().Zerocoin_StartHeight(), true, state)) return state.DoS(100, error("AcceptToMemoryPool: : CheckTransaction failed"), REJECT_INVALID, "bad-tx"); // Coinbase is only valid in a block, not as a loose transaction if (tx.IsCoinBase()) return state.DoS(100, error("AcceptToMemoryPool: : coinbase as individual tx"), REJECT_INVALID, "coinbase"); // Coinstake is also only valid in a block, not as a loose transaction if (tx.IsCoinStake()) return state.DoS(100, error("AcceptToMemoryPool: coinstake as individual tx. txid=%s", tx.GetHash().GetHex()), REJECT_INVALID, "coinstake"); // Only accept nLockTime-using transactions that can be mined in the next // block; we don't want our mempool filled up with transactions that can't // be mined yet. if (!CheckFinalTx(tx, STANDARD_LOCKTIME_VERIFY_FLAGS) || !CheckSequenceLocks(tx, STANDARD_LOCKTIME_VERIFY_FLAGS)) return state.DoS(0, false, REJECT_NONSTANDARD, "non-final"); // Rather not work on nonstandard transactions (unless -testnet/-regtest) string reason; if (Params().RequireStandard() && !IsStandardTx(tx, reason)) return state.DoS(0, error("AcceptToMemoryPool : nonstandard transaction: %s", reason), REJECT_NONSTANDARD, reason); // is it already in the memory pool? uint256 hash = tx.GetHash(); if (pool.exists(hash)) { LogPrintf("%s tx already in mempool\n", __func__); return false; } // ----------- swiftTX transaction scanning ----------- BOOST_FOREACH (const CTxIn& in, tx.vin) { if (mapLockedInputs.count(in.prevout)) { if (mapLockedInputs[in.prevout] != tx.GetHash()) { return state.DoS(0, error("AcceptToMemoryPool : conflicts with existing transaction lock: %s", reason), REJECT_INVALID, "tx-lock-conflict"); } } } // Check for conflicts with in-memory transactions if (!tx.IsZerocoinSpend()) { LOCK(pool.cs); // protect pool.mapNextTx for (const auto &in : tx.vin) { COutPoint outpoint = in.prevout; if (pool.mapNextTx.count(outpoint)) { // Disable replacement feature for now return false; } } } { CCoinsView dummy; CCoinsViewCache view(&dummy); CAmount nValueIn = 0; if(tx.IsZerocoinSpend()){ nValueIn = tx.GetZerocoinSpent(); //Check that txid is not already in the chain int nHeightTx = 0; if (IsTransactionInChain(tx.GetHash(), nHeightTx)) return state.Invalid(error("AcceptToMemoryPool : zECA spend tx %s already in block %d", tx.GetHash().GetHex(), nHeightTx), REJECT_DUPLICATE, "bad-txns-inputs-spent"); //Check for double spending of serial #'s for (const CTxIn& txIn : tx.vin) { if (!txIn.scriptSig.IsZerocoinSpend()) continue; CoinSpend spend = TxInToZerocoinSpend(txIn); if (!ContextualCheckZerocoinSpend(tx, spend, chainActive.Tip(), 0)) return state.Invalid(error("%s: ContextualCheckZerocoinSpend failed for tx %s", __func__, tx.GetHash().GetHex()), REJECT_INVALID, "bad-txns-invalid-zeca"); } } else { LOCK(pool.cs); CCoinsViewMemPool viewMemPool(pcoinsTip, pool); view.SetBackend(viewMemPool); // do we already have it? if (view.HaveCoins(hash)) return false; // do all inputs exist? // Note that this does not check for the presence of actual outputs (see the next check for that), // only helps filling in pfMissingInputs (to determine missing vs spent). for (const CTxIn& txin : tx.vin) { if (!view.HaveCoins(txin.prevout.hash)) { if (pfMissingInputs) *pfMissingInputs = true; return false; } //Check for invalid/fraudulent inputs if (!ValidOutPoint(txin.prevout, chainActive.Height(), GetAdjustedTime())) { return state.Invalid(error("%s : tried to spend invalid input %s in tx %s", __func__, txin.prevout.ToString(), tx.GetHash().GetHex()), REJECT_INVALID, "bad-txns-invalid-inputs"); } } // Check that zECA mints are not already known if (tx.IsZerocoinMint()) { for (auto& out : tx.vout) { if (!out.IsZerocoinMint()) continue; PublicCoin coin(Params().Zerocoin_Params(false)); if (!TxOutToPublicCoin(out, coin, state)) return state.Invalid(error("%s: failed final check of zerocoinmint for tx %s", __func__, tx.GetHash().GetHex())); if (!ContextualCheckZerocoinMint(tx, coin, chainActive.Tip())) return state.Invalid(error("%s: zerocoin mint failed contextual check", __func__)); } } // are the actual inputs available? if (!view.HaveInputs(tx)) return state.Invalid(error("AcceptToMemoryPool : inputs already spent"), REJECT_DUPLICATE, "bad-txns-inputs-spent"); // Bring the best block into scope view.GetBestBlock(); nValueIn = view.GetValueIn(tx); // we have all inputs cached now, so switch back to dummy, so we don't need to keep lock on mempool view.SetBackend(dummy); } // Check for non-standard pay-to-script-hash in inputs if (Params().RequireStandard() && !AreInputsStandard(tx, view)) return error("AcceptToMemoryPool: : nonstandard transaction input"); // Check that the transaction doesn't have an excessive number of // sigops, making it impossible to mine. Since the coinbase transaction // itself can contain sigops MAX_TX_SIGOPS is less than // MAX_BLOCK_SIGOPS; we still consider this an invalid rather than // merely non-standard transaction. if (!tx.IsZerocoinSpend()) { unsigned int nSigOps = GetLegacySigOpCount(tx); unsigned int nMaxSigOps = MAX_TX_SIGOPS_CURRENT; nSigOps += GetP2SHSigOpCount(tx, view); if(nSigOps > nMaxSigOps) return state.DoS(0, error("AcceptToMemoryPool : too many sigops %s, %d > %d", hash.ToString(), nSigOps, nMaxSigOps), REJECT_NONSTANDARD, "bad-txns-too-many-sigops"); } CAmount nValueOut = tx.GetValueOut(); CAmount nFees = nValueIn - nValueOut; double dPriority = 0; if (!tx.IsZerocoinSpend()) view.GetPriority(tx, chainActive.Height()); CTxMemPoolEntry entry(tx, nFees, GetTime(), dPriority, chainActive.Height()); unsigned int nSize = entry.GetTxSize(); // Don't accept it if it can't get into a block // but prioritise dstx and don't check fees for it if (mapObfuscationBroadcastTxes.count(hash)) { mempool.PrioritiseTransaction(hash, hash.ToString(), 1000, 0.1 * COIN); } else if (!ignoreFees) { CAmount txMinFee = GetMinRelayFee(tx, nSize, true); if (fLimitFree && nFees < txMinFee && !tx.IsZerocoinSpend()) return state.DoS(0, error("AcceptToMemoryPool : not enough fees %s, %d < %d", hash.ToString(), nFees, txMinFee), REJECT_INSUFFICIENTFEE, "insufficient fee"); // Require that free transactions have sufficient priority to be mined in the next block. if (tx.IsZerocoinMint()) { if(nFees < Params().Zerocoin_MintFee() * tx.GetZerocoinMintCount()) return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient fee for zerocoinmint"); } else if (!tx.IsZerocoinSpend() && GetBoolArg("-relaypriority", true) && nFees < ::minRelayTxFee.GetFee(nSize) && !AllowFree(view.GetPriority(tx, chainActive.Height() + 1))) { return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient priority"); } // Continuously rate-limit free (really, very-low-fee) transactions // This mitigates 'penny-flooding' -- sending thousands of free transactions just to // be annoying or make others' transactions take longer to confirm. if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize) && !tx.IsZerocoinSpend()) { static CCriticalSection csFreeLimiter; static double dFreeCount; static int64_t nLastTime; int64_t nNow = GetTime(); LOCK(csFreeLimiter); // Use an exponentially decaying ~10-minute window: dFreeCount *= pow(1.0 - 1.0 / 600.0, (double)(nNow - nLastTime)); nLastTime = nNow; // -limitfreerelay unit is thousand-bytes-per-minute // At default rate it would take over a month to fill 1GB if (dFreeCount >= GetArg("-limitfreerelay", 30) * 10 * 1000) return state.DoS(0, error("AcceptToMemoryPool : free transaction rejected by rate limiter"), REJECT_INSUFFICIENTFEE, "rate limited free transaction"); LogPrint("mempool", "Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount + nSize); dFreeCount += nSize; } } if (fRejectInsaneFee && nFees > ::minRelayTxFee.GetFee(nSize) * 10000) return error("AcceptToMemoryPool: : insane fees %s, %d > %d", hash.ToString(), nFees, ::minRelayTxFee.GetFee(nSize) * 10000); // Check against previous transactions // This is done last to help prevent CPU exhaustion denial-of-service attacks. if (!CheckInputs(tx, state, view, true, STANDARD_SCRIPT_VERIFY_FLAGS, true)) { return error("AcceptToMemoryPool: : ConnectInputs failed %s", hash.ToString()); } // Check again against just the consensus-critical mandatory script // verification flags, in case of bugs in the standard flags that cause // transactions to pass as valid when they're actually invalid. For // instance the STRICTENC flag was incorrectly allowing certain // CHECKSIG NOT scripts to pass, even though they were invalid. // // There is a similar check in CreateNewBlock() to prevent creating // invalid blocks, however allowing such transactions into the mempool // can be exploited as a DoS attack. if (!CheckInputs(tx, state, view, true, MANDATORY_SCRIPT_VERIFY_FLAGS, true)) { return error("%s: ConnectInputs failed against MANDATORY but not STANDARD flags due to promiscuous mempool %s, %s", __func__, hash.ToString(), FormatStateMessage(state)); } // Store transaction in memory pool.addUnchecked(hash, entry); } SyncWithWallets(tx, NULL); //Track zerocoinspends and ensure that they are given priority to make it into the blockchain if (tx.IsZerocoinSpend()) mapZerocoinspends[tx.GetHash()] = GetAdjustedTime(); return true; } bool AcceptableInputs(CTxMemPool& pool, CValidationState& state, const CTransaction& tx, bool fLimitFree, bool* pfMissingInputs, bool fRejectInsaneFee, bool isDSTX) { AssertLockHeld(cs_main); if (pfMissingInputs) *pfMissingInputs = false; if (!CheckTransaction(tx, chainActive.Height() >= Params().Zerocoin_StartHeight(), true, state)) return error("AcceptableInputs: : CheckTransaction failed"); // Coinbase is only valid in a block, not as a loose transaction if (tx.IsCoinBase()) return state.DoS(100, error("AcceptableInputs: : coinbase as individual tx"), REJECT_INVALID, "coinbase"); // Rather not work on nonstandard transactions (unless -testnet/-regtest) string reason; // for any real tx this will be checked on AcceptToMemoryPool anyway // if (Params().RequireStandard() && !IsStandardTx(tx, reason)) // return state.DoS(0, // error("AcceptableInputs : nonstandard transaction: %s", reason), // REJECT_NONSTANDARD, reason); // is it already in the memory pool? uint256 hash = tx.GetHash(); if (pool.exists(hash)) return false; // ----------- swiftTX transaction scanning ----------- BOOST_FOREACH (const CTxIn& in, tx.vin) { if (mapLockedInputs.count(in.prevout)) { if (mapLockedInputs[in.prevout] != tx.GetHash()) { return state.DoS(0, error("AcceptableInputs : conflicts with existing transaction lock: %s", reason), REJECT_INVALID, "tx-lock-conflict"); } } } // Check for conflicts with in-memory transactions if (!tx.IsZerocoinSpend()) { LOCK(pool.cs); // protect pool.mapNextTx for (unsigned int i = 0; i < tx.vin.size(); i++) { COutPoint outpoint = tx.vin[i].prevout; if (pool.mapNextTx.count(outpoint)) { // Disable replacement feature for now return false; } } } { CCoinsView dummy; CCoinsViewCache view(&dummy); CAmount nValueIn = 0; { LOCK(pool.cs); CCoinsViewMemPool viewMemPool(pcoinsTip, pool); view.SetBackend(viewMemPool); // do we already have it? if (view.HaveCoins(hash)) return false; // do all inputs exist? // Note that this does not check for the presence of actual outputs (see the next check for that), // only helps filling in pfMissingInputs (to determine missing vs spent). for (const CTxIn& txin : tx.vin) { if (!view.HaveCoins(txin.prevout.hash)) { if (pfMissingInputs) *pfMissingInputs = true; return false; } // check for invalid/fraudulent inputs if (!ValidOutPoint(txin.prevout, chainActive.Height(), GetAdjustedTime())) { return state.Invalid(error("%s : tried to spend invalid input %s in tx %s", __func__, txin.prevout.ToString(), tx.GetHash().GetHex()), REJECT_INVALID, "bad-txns-invalid-inputs"); } } // are the actual inputs available? if (!view.HaveInputs(tx)) return state.Invalid(error("AcceptableInputs : inputs already spent"), REJECT_DUPLICATE, "bad-txns-inputs-spent"); // Bring the best block into scope view.GetBestBlock(); nValueIn = view.GetValueIn(tx); // we have all inputs cached now, so switch back to dummy, so we don't need to keep lock on mempool view.SetBackend(dummy); // Only accept BIP68 sequence locked transactions that can be mined in the next // block; we don't want our mempool filled up with transactions that can't // be mined yet. // Must keep pool.cs for this unless we change CheckSequenceLocks to take a // CoinsViewCache instead of create its own if (!CheckSequenceLocks(tx, STANDARD_LOCKTIME_VERIFY_FLAGS)) return state.DoS(0, false, REJECT_NONSTANDARD, "non-BIP68-final"); } // Check for non-standard pay-to-script-hash in inputs // for any real tx this will be checked on AcceptToMemoryPool anyway // if (Params().RequireStandard() && !AreInputsStandard(tx, view)) // return error("AcceptableInputs: : nonstandard transaction input"); // Check that the transaction doesn't have an excessive number of // sigops, making it impossible to mine. Since the coinbase transaction // itself can contain sigops MAX_TX_SIGOPS is less than // MAX_BLOCK_SIGOPS; we still consider this an invalid rather than // merely non-standard transaction. unsigned int nSigOps = GetLegacySigOpCount(tx); unsigned int nMaxSigOps = MAX_TX_SIGOPS_CURRENT; nSigOps += GetP2SHSigOpCount(tx, view); if (nSigOps > nMaxSigOps) return state.DoS(0, error("AcceptableInputs : too many sigops %s, %d > %d", hash.ToString(), nSigOps, nMaxSigOps), REJECT_NONSTANDARD, "bad-txns-too-many-sigops"); CAmount nValueOut = tx.GetValueOut(); CAmount nFees = nValueIn - nValueOut; double dPriority = view.GetPriority(tx, chainActive.Height()); CTxMemPoolEntry entry(tx, nFees, GetTime(), dPriority, chainActive.Height()); unsigned int nSize = entry.GetTxSize(); // Don't accept it if it can't get into a block // but prioritise dstx and don't check fees for it if (isDSTX) { mempool.PrioritiseTransaction(hash, hash.ToString(), 1000, 0.1 * COIN); } else { // same as !ignoreFees for AcceptToMemoryPool CAmount txMinFee = GetMinRelayFee(tx, nSize, true); if (fLimitFree && nFees < txMinFee && !tx.IsZerocoinSpend()) return state.DoS(0, error("AcceptableInputs : not enough fees %s, %d < %d", hash.ToString(), nFees, txMinFee), REJECT_INSUFFICIENTFEE, "insufficient fee"); // Require that free transactions have sufficient priority to be mined in the next block. if (GetBoolArg("-relaypriority", true) && nFees < ::minRelayTxFee.GetFee(nSize) && !AllowFree(view.GetPriority(tx, chainActive.Height() + 1))) { return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient priority"); } // Continuously rate-limit free (really, very-low-fee) transactions // This mitigates 'penny-flooding' -- sending thousands of free transactions just to // be annoying or make others' transactions take longer to confirm. if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize) && !tx.IsZerocoinSpend()) { static CCriticalSection csFreeLimiter; static double dFreeCount; static int64_t nLastTime; int64_t nNow = GetTime(); LOCK(csFreeLimiter); // Use an exponentially decaying ~10-minute window: dFreeCount *= pow(1.0 - 1.0 / 600.0, (double)(nNow - nLastTime)); nLastTime = nNow; // -limitfreerelay unit is thousand-bytes-per-minute // At default rate it would take over a month to fill 1GB if (dFreeCount >= GetArg("-limitfreerelay", 30) * 10 * 1000) return state.DoS(0, error("AcceptableInputs : free transaction rejected by rate limiter"), REJECT_INSUFFICIENTFEE, "rate limited free transaction"); LogPrint("mempool", "Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount + nSize); dFreeCount += nSize; } } if (fRejectInsaneFee && nFees > ::minRelayTxFee.GetFee(nSize) * 10000) return error("AcceptableInputs: : insane fees %s, %d > %d", hash.ToString(), nFees, ::minRelayTxFee.GetFee(nSize) * 10000); // Check against previous transactions // This is done last to help prevent CPU exhaustion denial-of-service attacks. if (!CheckInputs(tx, state, view, false, STANDARD_SCRIPT_VERIFY_FLAGS, true)) { return error("AcceptableInputs: : ConnectInputs failed %s", hash.ToString()); } // Check again against just the consensus-critical mandatory script // verification flags, in case of bugs in the standard flags that cause // transactions to pass as valid when they're actually invalid. For // instance the STRICTENC flag was incorrectly allowing certain // CHECKSIG NOT scripts to pass, even though they were invalid. // // There is a similar check in CreateNewBlock() to prevent creating // invalid blocks, however allowing such transactions into the mempool // can be exploited as a DoS attack. // for any real tx this will be checked on AcceptToMemoryPool anyway // if (!CheckInputs(tx, state, view, false, MANDATORY_SCRIPT_VERIFY_FLAGS, true)) // { // return error("AcceptableInputs: : BUG! PLEASE REPORT THIS! ConnectInputs failed against MANDATORY but not STANDARD flags %s", hash.ToString()); // } // Store transaction in memory // pool.addUnchecked(hash, entry); } // SyncWithWallets(tx, NULL); return true; } /** Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock */ bool GetTransaction(const uint256& hash, CTransaction& txOut, uint256& hashBlock, bool fAllowSlow, CBlockIndex* blockIndex) { CBlockIndex* pindexSlow = blockIndex; LOCK(cs_main); if (!blockIndex) { if (mempool.lookup(hash, txOut)) { return true; } if (fTxIndex) { CDiskTxPos postx; if (pblocktree->ReadTxIndex(hash, postx)) { CAutoFile file(OpenBlockFile(postx, true), SER_DISK, CLIENT_VERSION); if (file.IsNull()) return error("%s: OpenBlockFile failed", __func__); CBlockHeader header; try { file >> header; fseek(file.Get(), postx.nTxOffset, SEEK_CUR); file >> txOut; } catch (std::exception& e) { return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } hashBlock = header.GetHash(); if (txOut.GetHash() != hash) return error("%s : txid mismatch", __func__); return true; } // transaction not found in the index, nothing more can be done return false; } if (fAllowSlow) { // use coin database to locate block that contains transaction, and scan it int nHeight = -1; { CCoinsViewCache& view = *pcoinsTip; const CCoins* coins = view.AccessCoins(hash); if (coins) nHeight = coins->nHeight; } if (nHeight > 0) pindexSlow = chainActive[nHeight]; } } if (pindexSlow) { CBlock block; if (ReadBlockFromDisk(block, pindexSlow)) { BOOST_FOREACH (const CTransaction& tx, block.vtx) { if (tx.GetHash() == hash) { txOut = tx; hashBlock = pindexSlow->GetBlockHash(); return true; } } } } return false; } ////////////////////////////////////////////////////////////////////////////// // // CBlock and CBlockIndex // bool WriteBlockToDisk(CBlock& block, CDiskBlockPos& pos) { // Open history file to append CAutoFile fileout(OpenBlockFile(pos), SER_DISK, CLIENT_VERSION); if (fileout.IsNull()) return error("WriteBlockToDisk : OpenBlockFile failed"); // Write index header unsigned int nSize = fileout.GetSerializeSize(block); fileout << FLATDATA(Params().MessageStart()) << nSize; // Write block long fileOutPos = ftell(fileout.Get()); if (fileOutPos < 0) return error("WriteBlockToDisk : ftell failed"); pos.nPos = (unsigned int)fileOutPos; fileout << block; return true; } bool ReadBlockFromDisk(CBlock& block, const CDiskBlockPos& pos) { block.SetNull(); // Open history file to read CAutoFile filein(OpenBlockFile(pos, true), SER_DISK, CLIENT_VERSION); if (filein.IsNull()) return error("ReadBlockFromDisk : OpenBlockFile failed"); // Read block try { filein >> block; } catch (std::exception& e) { return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } // Check the header if (block.IsProofOfWork()) { if (!CheckProofOfWork(block.GetHash(), block.nBits)) return error("ReadBlockFromDisk : Errors in block header"); } return true; } bool ReadBlockFromDisk(CBlock& block, const CBlockIndex* pindex) { if (!ReadBlockFromDisk(block, pindex->GetBlockPos())) return false; if (block.GetHash() != pindex->GetBlockHash()) { LogPrintf("%s : block=%s index=%s\n", __func__, block.GetHash().ToString().c_str(), pindex->GetBlockHash().ToString().c_str()); return error("ReadBlockFromDisk(CBlock&, CBlockIndex*) : GetHash() doesn't match index"); } return true; } double ConvertBitsToDouble(unsigned int nBits) { int nShift = (nBits >> 24) & 0xff; double dDiff = (double)0x0000ffff / (double)(nBits & 0x00ffffff); while (nShift < 29) { dDiff *= 256.0; nShift++; } while (nShift > 29) { dDiff /= 256.0; nShift--; } return dDiff; } int64_t GetBlockValue(int nHeight, bool fProofOfStake, uint64_t nCoinAge) { if (Params().NetworkID() != CBaseChainParams::MAIN) { if (nHeight < 200 && nHeight > 0) return 250000 * COIN; } int64_t nRewardCoinYear = 50 * CENT; // 50% interest int64_t nSubsidy = 0; if (fProofOfStake) { if (nHeight > nHardForkBlock) // 1350 blocks per day (~492750 blocks per year) { if (nHeight < nHardForkBlock + 492750) // first year nRewardCoinYear = 50 * CENT; // 2.5% interest else if (nHeight < nHardForkBlock + 492750 * 2) // second year nRewardCoinYear = 50 * CENT; // 1.25% interest else if (nHeight < nHardForkBlock + 492750 * 3) // third year nRewardCoinYear = 50 * CENT; // 0.63% interest else if (nHeight < nHardForkBlock + 492750 * 4) // fourth year nRewardCoinYear = 50 * CENT; // 0.31% interest else if (nHeight < nHardForkBlock + 492750 * 5) // fifth year nRewardCoinYear = 50 * CENT; // 0.16% interest else if (nHeight < nHardForkBlock + 492750 * 6) // sixth year nRewardCoinYear = 50 * CENT; // 0.08% interest else if (nHeight < nHardForkBlock + 492750 * 7) // seventh year nRewardCoinYear = 50 * CENT; // 0.04% interest else // eighth year and beyond nRewardCoinYear = 50 * CENT; // 0.02% interest if (nCoinAge == uint64_t(0)) nSubsidy = nRewardCoinYear / 500; else nSubsidy = nCoinAge * nRewardCoinYear / 365; } else if (nHeight > nLastOldPoSBlock+1) // Legacy wallet calculated PoS reward with height-1 nSubsidy = nCoinAge * nRewardCoinYear / 365; else nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN; } else { if (nHeight == 2) { nSubsidy = 10000000 * COIN; } else if (nHeight <= 103680 && nHeight > 2) { nSubsidy = 25 * COIN; } else if (nHeight <= 207360 && nHeight > 103681) { nSubsidy = 12 * COIN; } else if (nHeight > 207361) { nSubsidy = 6 * COIN; } else { nSubsidy = 0 * COIN; } } return nSubsidy; } int64_t GetMasternodePayment(int nHeight, int64_t blockValue, int nMasternodeCount, bool isZECAStake) { int64_t ret = 0; if (Params().NetworkID() == CBaseChainParams::TESTNET) { if (nHeight < 200) return 0; } ret = blockValue * .80; // Masternode receives 80% of block reward return ret; } bool IsInitialBlockDownload() { LOCK(cs_main); if (fImporting || fReindex || fVerifyingBlocks || chainActive.Height() < Checkpoints::GetTotalBlocksEstimate()) return true; static bool lockIBDState = false; if (lockIBDState) return false; bool state = (chainActive.Height() < pindexBestHeader->nHeight - 24 * 6 || pindexBestHeader->GetBlockTime() < GetTime() - 6 * 60 * 60); // ~144 blocks behind -> 2 x fork detection time if (!state) lockIBDState = true; return state; } bool fLargeWorkForkFound = false; bool fLargeWorkInvalidChainFound = false; CBlockIndex *pindexBestForkTip = NULL, *pindexBestForkBase = NULL; void CheckForkWarningConditions() { AssertLockHeld(cs_main); // Before we get past initial download, we cannot reliably alert about forks // (we assume we don't get stuck on a fork before the last checkpoint) if (IsInitialBlockDownload()) return; // If our best fork is no longer within 72 blocks (+/- 3 hours if no one mines it) // of our head, drop it if (pindexBestForkTip && chainActive.Height() - pindexBestForkTip->nHeight >= 72) pindexBestForkTip = NULL; if (pindexBestForkTip || (pindexBestInvalid && pindexBestInvalid->nChainWork > chainActive.Tip()->nChainWork + (GetBlockProof(*chainActive.Tip()) * 6))) { if (!fLargeWorkForkFound && pindexBestForkBase) { if (pindexBestForkBase->phashBlock) { std::string warning = std::string("'Warning: Large-work fork detected, forking after block ") + pindexBestForkBase->phashBlock->ToString() + std::string("'"); CAlert::Notify(warning, true); } } if (pindexBestForkTip && pindexBestForkBase) { if (pindexBestForkBase->phashBlock) { LogPrintf("CheckForkWarningConditions: Warning: Large valid fork found\n forking the chain at height %d (%s)\n lasting to height %d (%s).\nChain state database corruption likely.\n", pindexBestForkBase->nHeight, pindexBestForkBase->phashBlock->ToString(), pindexBestForkTip->nHeight, pindexBestForkTip->phashBlock->ToString()); fLargeWorkForkFound = true; } } else { LogPrintf("CheckForkWarningConditions: Warning: Found invalid chain at least ~6 blocks longer than our best chain.\nChain state database corruption likely.\n"); fLargeWorkInvalidChainFound = true; } } else { fLargeWorkForkFound = false; fLargeWorkInvalidChainFound = false; } } void CheckForkWarningConditionsOnNewFork(CBlockIndex* pindexNewForkTip) { AssertLockHeld(cs_main); // If we are on a fork that is sufficiently large, set a warning flag CBlockIndex* pfork = pindexNewForkTip; CBlockIndex* plonger = chainActive.Tip(); while (pfork && pfork != plonger) { while (plonger && plonger->nHeight > pfork->nHeight) plonger = plonger->pprev; if (pfork == plonger) break; pfork = pfork->pprev; } // We define a condition which we should warn the user about as a fork of at least 7 blocks // who's tip is within 72 blocks (+/- 3 hours if no one mines it) of ours // or a chain that is entirely longer than ours and invalid (note that this should be detected by both) // We use 7 blocks rather arbitrarily as it represents just under 10% of sustained network // hash rate operating on the fork. // We define it this way because it allows us to only store the highest fork tip (+ base) which meets // the 7-block condition and from this always have the most-likely-to-cause-warning fork if (pfork && (!pindexBestForkTip || (pindexBestForkTip && pindexNewForkTip->nHeight > pindexBestForkTip->nHeight)) && pindexNewForkTip->nChainWork - pfork->nChainWork > (GetBlockProof(*pfork) * 7) && chainActive.Height() - pindexNewForkTip->nHeight < 72) { pindexBestForkTip = pindexNewForkTip; pindexBestForkBase = pfork; } CheckForkWarningConditions(); } // Requires cs_main. void Misbehaving(NodeId pnode, int howmuch) { if (howmuch == 0) return; CNodeState* state = State(pnode); if (state == NULL) return; state->nMisbehavior += howmuch; int banscore = GetArg("-banscore", 100); if (state->nMisbehavior >= banscore && state->nMisbehavior - howmuch < banscore) { LogPrintf("Misbehaving: %s (%d -> %d) BAN THRESHOLD EXCEEDED\n", state->name, state->nMisbehavior - howmuch, state->nMisbehavior); state->fShouldBan = true; } else LogPrintf("Misbehaving: %s (%d -> %d)\n", state->name, state->nMisbehavior - howmuch, state->nMisbehavior); } void static InvalidChainFound(CBlockIndex* pindexNew) { if (!pindexBestInvalid || pindexNew->nChainWork > pindexBestInvalid->nChainWork) pindexBestInvalid = pindexNew; LogPrintf("InvalidChainFound: invalid block=%s height=%d log2_work=%.8g date=%s\n", pindexNew->GetBlockHash().ToString(), pindexNew->nHeight, log(pindexNew->nChainWork.getdouble()) / log(2.0), DateTimeStrFormat("%Y-%m-%d %H:%M:%S", pindexNew->GetBlockTime())); LogPrintf("InvalidChainFound: current best=%s height=%d log2_work=%.8g date=%s\n", chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), log(chainActive.Tip()->nChainWork.getdouble()) / log(2.0), DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime())); CheckForkWarningConditions(); } void static InvalidBlockFound(CBlockIndex* pindex, const CValidationState& state) { int nDoS = 0; if (state.IsInvalid(nDoS)) { std::map<uint256, NodeId>::iterator it = mapBlockSource.find(pindex->GetBlockHash()); if (it != mapBlockSource.end() && State(it->second)) { CBlockReject reject = {state.GetRejectCode(), state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), pindex->GetBlockHash()}; State(it->second)->rejects.push_back(reject); if (nDoS > 0) Misbehaving(it->second, nDoS); } } if (!state.CorruptionPossible()) { pindex->nStatus |= BLOCK_FAILED_VALID; setDirtyBlockIndex.insert(pindex); setBlockIndexCandidates.erase(pindex); InvalidChainFound(pindex); } } void UpdateCoins(const CTransaction& tx, CValidationState& state, CCoinsViewCache& inputs, CTxUndo& txundo, int nHeight) { // mark inputs spent if (!tx.IsCoinBase() && !tx.IsZerocoinSpend()) { txundo.vprevout.reserve(tx.vin.size()); BOOST_FOREACH (const CTxIn& txin, tx.vin) { txundo.vprevout.push_back(CTxInUndo()); bool ret = inputs.ModifyCoins(txin.prevout.hash)->Spend(txin.prevout, txundo.vprevout.back()); assert(ret); } } // add outputs inputs.ModifyCoins(tx.GetHash())->FromTx(tx, nHeight); } bool CScriptCheck::operator()() { const CScript& scriptSig = ptxTo->vin[nIn].scriptSig; if (!VerifyScript(scriptSig, scriptPubKey, nFlags, CachingTransactionSignatureChecker(ptxTo, nIn, cacheStore), &error)) { return ::error("CScriptCheck(): %s:%d VerifySignature failed: %s", ptxTo->GetHash().ToString(), nIn, ScriptErrorString(error)); } return true; } map<COutPoint, COutPoint> mapInvalidOutPoints; map<CBigNum, CAmount> mapInvalidSerials; void AddInvalidSpendsToMap(const CBlock& block) { for (const CTransaction& tx : block.vtx) { if (!tx.ContainsZerocoins()) continue; //Check all zerocoinspends for bad serials for (const CTxIn& in : tx.vin) { if (in.scriptSig.IsZerocoinSpend()) { CoinSpend spend = TxInToZerocoinSpend(in); //If serial is not valid, mark all outputs as bad if (!spend.HasValidSerial(Params().Zerocoin_Params(false))) { mapInvalidSerials[spend.getCoinSerialNumber()] = spend.getDenomination() * COIN; // Derive the actual valid serial from the invalid serial if possible CBigNum bnActualSerial = spend.CalculateValidSerial(Params().Zerocoin_Params(false)); uint256 txHash; if (zerocoinDB->ReadCoinSpend(bnActualSerial, txHash)) { mapInvalidSerials[bnActualSerial] = spend.getDenomination() * COIN; CTransaction txPrev; uint256 hashBlock; if (!GetTransaction(txHash, txPrev, hashBlock, true)) continue; //Record all txouts from txPrev as invalid for (unsigned int i = 0; i < txPrev.vout.size(); i++) { //map to an empty outpoint to represent that this is the first in the chain of bad outs mapInvalidOutPoints[COutPoint(txPrev.GetHash(), i)] = COutPoint(); } } //Record all txouts from this invalid zerocoin spend tx as invalid for (unsigned int i = 0; i < tx.vout.size(); i++) { //map to an empty outpoint to represent that this is the first in the chain of bad outs mapInvalidOutPoints[COutPoint(tx.GetHash(), i)] = COutPoint(); } } } } } } bool ValidOutPoint(const COutPoint& out, int nHeight, uint32_t nTime) { //bool isInvalid = nHeight >= Params().Block_Enforce_Invalid() && invalid_out::ContainsOutPoint(out); //return !isInvalid; static const uint256 MAIN_ADDR_INPUTS[] = { // ESF7Wt9JV4LxR8RJnUTQkBsnvG6SV2XNVD uint256("f05fe625b5c877f796c4616bc19b377bb440838d4bb38fa9ba882eee45bd4b86"), uint256("c988f56d289983be9cce7f14052715a4886c194053194c4cec2408068df38cc3"), uint256("25f69a62fa6253a7b6cc96f0f36837815e929cdb31aec1e015b32939a625edf8"), uint256("aefd5351300278b01ad693bc49a10f840fd18542512c500ebfe507f6e162749e"), uint256("7897714828aae8175a31a19d956dbae1335b669eb802a58b3a132f4f3e00cd6c"), uint256("c8ba74505c604f1bb34a758a9fe3794d9f9353fae9ab638700cebb8b83a99425"), uint256("6027940854600a9c900ac3b2bdebc3dfb2f735042bb9f739ec7a03629b314951"), uint256("ed3835c69ee4d866407614a976508578307f9996a7b1edc31a67acf319392a7f")}; static const uint256 OTHER_ADDR_INPUTS[] = { // EQ8ecFkHKzc8pgb3g9VZyeKnew2TkD69r2 uint256("17b044ba2cd05c61a7470c0e4d7f380da6e08bbcc1613669dd28c5f815b81f8d"), uint256("3443f173e4549e9d90a47361aaeec281140316a85103dabe9cc8078a8fe8350f"), uint256("f32ca84a668b8c27f5d4fac5b83ef266e97442d720c421dff24bb6043d69598b"), uint256("c1f3c80d7f254145174b0f390f3428e0f9daefc06ce6cdf581925a154b6933a0"), uint256("6ade69dcc1dbc95ad73ca4707b83cf6b7ad20db50984eefa58bfb3e55f352f87"), uint256("b6ecf992359d2697a72bb75dcd05c4f490a0aa9fc2504f925b877258a4af6741"), uint256("00146bed419d7ee87f1e97d08e584f65b80df3371344fad3425133e40deea65a"), uint256("2c6c763c64a07f525da8ce9636ff95166328e90ae812d83f1136e40219fa836f"), uint256("f40883d73cebc98d5060c619aaa1ddec4aa0c6aa112d1342f26db6ea0b0451ba"), uint256("4464d06f52406b5db400b44d725f08bfe10e23ec1a2fe70e166c7b2cd3322560"), uint256("a0c973a772689a646346b32891ab5f642c2cdd3cfa8b0f05952dae4cbd14c6b6")}; //uint256("c1f3c80d7f254145174b0f390f3428e0f9daefc06ce6cdf581925a154b6933a0"), // EUvPSZGVejEz2w4VyyMUPv8JBtnTcLCYBb //uint256("a0c973a772689a646346b32891ab5f642c2cdd3cfa8b0f05952dae4cbd14c6b6"), // EWq79WQgds5wroyr5eukcoHmtYkog3Dxna //uint256("f32ca84a668b8c27f5d4fac5b83ef266e97442d720c421dff24bb6043d69598b"), // EUXGAR8RSCFsFSHrbR83pHg7DSPfUzVpTA //uint256("f40883d73cebc98d5060c619aaa1ddec4aa0c6aa112d1342f26db6ea0b0451ba"), // EWt5DSnczYuSfiKFCiN3eMyDdqxtQFwCzm if (nTime >= GetSporkValue(SPORK_17_INPUT_BLACKLIST_MAIN_ADDRESS)) { for (const uint256& inputHash : MAIN_ADDR_INPUTS) { if (out.hash == inputHash) { LogPrintf("Main address attempted to spend input %s with input blacklist active\n", out.hash.GetHex()); return false; } } } if (nTime >= GetSporkValue(SPORK_18_INPUT_BLACKLIST_MULTI_ADDRESS)) { for (const uint256& inputHash : OTHER_ADDR_INPUTS) { if (out.hash == inputHash) { LogPrintf("Other address attempted to spend input %s with input blacklist active\n", out.hash.GetHex()); return false; } } } return true; } CAmount GetInvalidUTXOValue() { CAmount nValue = 0; for (auto out : invalid_out::setInvalidOutPoints) { bool fSpent = false; CCoinsViewCache cache(pcoinsTip); const CCoins *coins = cache.AccessCoins(out.hash); if(!coins || !coins->IsAvailable(out.n)) fSpent = true; if (!fSpent) nValue += coins->vout[out.n].nValue; } return nValue; } bool CheckInputs(const CTransaction& tx, CValidationState& state, const CCoinsViewCache& inputs, bool fScriptChecks, unsigned int flags, bool cacheStore, std::vector<CScriptCheck>* pvChecks) { if (!tx.IsCoinBase() && !tx.IsZerocoinSpend()) { if (pvChecks) pvChecks->reserve(tx.vin.size()); // This doesn't trigger the DoS code on purpose; if it did, it would make it easier // for an attacker to attempt to split the network. if (!inputs.HaveInputs(tx)) return state.Invalid(error("CheckInputs() : %s inputs unavailable", tx.GetHash().ToString())); // While checking, GetBestBlock() refers to the parent block. // This is also true for mempool checks. CBlockIndex* pindexPrev = mapBlockIndex.find(inputs.GetBestBlock())->second; int nSpendHeight = pindexPrev->nHeight + 1; CAmount nValueIn = 0; CAmount nFees = 0; for (unsigned int i = 0; i < tx.vin.size(); i++) { const COutPoint& prevout = tx.vin[i].prevout; const CCoins* coins = inputs.AccessCoins(prevout.hash); assert(coins); // If prev is coinbase, check that it's matured if (coins->IsCoinBase() || coins->IsCoinStake()) { if (nSpendHeight - coins->nHeight < Params().COINBASE_MATURITY()) return state.Invalid( error("CheckInputs() : tried to spend coinbase at depth %d, coinstake=%d", nSpendHeight - coins->nHeight, coins->IsCoinStake()), REJECT_INVALID, "bad-txns-premature-spend-of-coinbase"); } // Check for negative or overflow input values nValueIn += coins->vout[prevout.n].nValue; if (!MoneyRange(coins->vout[prevout.n].nValue) || !MoneyRange(nValueIn)) return state.DoS(100, error("CheckInputs() : txin values out of range"), REJECT_INVALID, "bad-txns-inputvalues-outofrange"); } if (!tx.IsCoinStake()) { if (nValueIn < tx.GetValueOut()) return state.DoS(100, error("CheckInputs() : %s value in (%s) < value out (%s)", tx.GetHash().ToString(), FormatMoney(nValueIn), FormatMoney(tx.GetValueOut())), REJECT_INVALID, "bad-txns-in-belowout"); // Tally transaction fees CAmount nTxFee = nValueIn - tx.GetValueOut(); if (nTxFee < 0) return state.DoS(100, error("CheckInputs() : %s nTxFee < 0", tx.GetHash().ToString()), REJECT_INVALID, "bad-txns-fee-negative"); nFees += nTxFee; if (!MoneyRange(nFees)) return state.DoS(100, error("CheckInputs() : nFees out of range"), REJECT_INVALID, "bad-txns-fee-outofrange"); } // The first loop above does all the inexpensive checks. // Only if ALL inputs pass do we perform expensive ECDSA signature checks. // Helps prevent CPU exhaustion attacks. // Skip ECDSA signature verification when connecting blocks // before the last block chain checkpoint. This is safe because block merkle hashes are // still computed and checked, and any change will be caught at the next checkpoint. if (fScriptChecks) { for (unsigned int i = 0; i < tx.vin.size(); i++) { const COutPoint& prevout = tx.vin[i].prevout; const CCoins* coins = inputs.AccessCoins(prevout.hash); assert(coins); // Verify signature CScriptCheck check(*coins, tx, i, flags, cacheStore); if (pvChecks) { pvChecks->push_back(CScriptCheck()); check.swap(pvChecks->back()); } else if (!check()) { if (flags & STANDARD_NOT_MANDATORY_VERIFY_FLAGS) { // Check whether the failure was caused by a // non-mandatory script verification check, such as // non-standard DER encodings or non-null dummy // arguments; if so, don't trigger DoS protection to // avoid splitting the network between upgraded and // non-upgraded nodes. CScriptCheck check(*coins, tx, i, flags & ~STANDARD_NOT_MANDATORY_VERIFY_FLAGS, cacheStore); if (check()) return state.Invalid(false, REJECT_NONSTANDARD, strprintf("non-mandatory-script-verify-flag (%s)", ScriptErrorString(check.GetScriptError()))); } // Failures of other flags indicate a transaction that is // invalid in new blocks, e.g. a invalid P2SH. We DoS ban // such nodes as they are not following the protocol. That // said during an upgrade careful thought should be taken // as to the correct behavior - we may want to continue // peering with non-upgraded nodes even after a soft-fork // super-majority vote has passed. return state.DoS(100, false, REJECT_INVALID, strprintf("mandatory-script-verify-flag-failed (%s)", ScriptErrorString(check.GetScriptError()))); } } } } return true; } bool DisconnectBlock(CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& view, bool* pfClean) { if (pindex->GetBlockHash() != view.GetBestBlock()) LogPrintf("%s : pindex=%s view=%s\n", __func__, pindex->GetBlockHash().GetHex(), view.GetBestBlock().GetHex()); assert(pindex->GetBlockHash() == view.GetBestBlock()); if (pfClean) *pfClean = false; bool fClean = true; CBlockUndo blockUndo; CDiskBlockPos pos = pindex->GetUndoPos(); if (pos.IsNull()) return error("DisconnectBlock() : no undo data available"); if (!blockUndo.ReadFromDisk(pos, pindex->pprev->GetBlockHash())) return error("DisconnectBlock() : failure reading undo data"); if (blockUndo.vtxundo.size() + 1 != block.vtx.size()) return error("DisconnectBlock() : block and undo data inconsistent"); // undo transactions in reverse order for (int i = block.vtx.size() - 1; i >= 0; i--) { const CTransaction& tx = block.vtx[i]; /** UNDO ZEROCOIN DATABASING * note we only undo zerocoin databasing in the following statement, value to and from ztegritycoin * addresses should still be handled by the typical bitcoin based undo code * */ if (tx.ContainsZerocoins()) { if (tx.IsZerocoinSpend()) { //erase all zerocoinspends in this transaction for (const CTxIn& txin : tx.vin) { if (txin.scriptSig.IsZerocoinSpend()) { CoinSpend spend = TxInToZerocoinSpend(txin); if (!zerocoinDB->EraseCoinSpend(spend.getCoinSerialNumber())) return error("failed to erase spent zerocoin in block"); //if this was our spend, then mark it unspent now if (pwalletMain) { if (pwalletMain->IsMyZerocoinSpend(spend.getCoinSerialNumber())) { if (!pwalletMain->SetMintUnspent(spend.getCoinSerialNumber())) LogPrintf("%s: failed to automatically reset mint", __func__); } } } } } if (tx.IsZerocoinMint()) { //erase all zerocoinmints in this transaction for (const CTxOut& txout : tx.vout) { if (txout.scriptPubKey.empty() || !txout.scriptPubKey.IsZerocoinMint()) continue; PublicCoin pubCoin(Params().Zerocoin_Params(false)); if (!TxOutToPublicCoin(txout, pubCoin, state)) return error("DisconnectBlock(): TxOutToPublicCoin() failed"); if(!zerocoinDB->EraseCoinMint(pubCoin.getValue())) return error("DisconnectBlock(): Failed to erase coin mint"); } } } uint256 hash = tx.GetHash(); // Check that all outputs are available and match the outputs in the block itself // exactly. Note that transactions with only provably unspendable outputs won't // have outputs available even in the block itself, so we handle that case // specially with outsEmpty. { CCoins outsEmpty; CCoinsModifier outs = view.ModifyCoins(hash); outs->ClearUnspendable(); CCoins outsBlock(tx, pindex->nHeight); // The CCoins serialization does not serialize negative numbers. // No network rules currently depend on the version here, so an inconsistency is harmless // but it must be corrected before txout nversion ever influences a network rule. if (outsBlock.nVersion < 0) outs->nVersion = outsBlock.nVersion; if (*outs != outsBlock) fClean = fClean && error("DisconnectBlock() : added transaction mismatch? database corrupted"); // remove outputs outs->Clear(); } // restore inputs if (!tx.IsCoinBase() && !tx.IsZerocoinSpend()) { // not coinbases or zerocoinspend because they dont have traditional inputs const CTxUndo& txundo = blockUndo.vtxundo[i - 1]; if (txundo.vprevout.size() != tx.vin.size()) return error("DisconnectBlock() : transaction and undo data inconsistent - txundo.vprevout.siz=%d tx.vin.siz=%d", txundo.vprevout.size(), tx.vin.size()); for (unsigned int j = tx.vin.size(); j-- > 0;) { const COutPoint& out = tx.vin[j].prevout; const CTxInUndo& undo = txundo.vprevout[j]; CCoinsModifier coins = view.ModifyCoins(out.hash); if (undo.nHeight != 0) { // undo data contains height: this is the last output of the prevout tx being spent if (!coins->IsPruned()) fClean = fClean && error("DisconnectBlock() : undo data overwriting existing transaction"); coins->Clear(); coins->fCoinBase = undo.fCoinBase; coins->nHeight = undo.nHeight; coins->nVersion = undo.nVersion; } else { if (coins->IsPruned()) fClean = fClean && error("DisconnectBlock() : undo data adding output to missing transaction"); } if (coins->IsAvailable(out.n)) fClean = fClean && error("DisconnectBlock() : undo data overwriting existing output"); if (coins->vout.size() < out.n + 1) coins->vout.resize(out.n + 1); coins->vout[out.n] = undo.txout; } } } // move best block pointer to prevout block view.SetBestBlock(pindex->pprev->GetBlockHash()); if (!fVerifyingBlocks) { //if block is an accumulator checkpoint block, remove checkpoint and checksums from db uint256 nCheckpoint = pindex->nAccumulatorCheckpoint; if(nCheckpoint != pindex->pprev->nAccumulatorCheckpoint) { if(!EraseAccumulatorValues(nCheckpoint, pindex->pprev->nAccumulatorCheckpoint)) return error("DisconnectBlock(): failed to erase checkpoint"); } } if (pfClean) { *pfClean = fClean; return true; } else { return fClean; } } void static FlushBlockFile(bool fFinalize = false) { LOCK(cs_LastBlockFile); CDiskBlockPos posOld(nLastBlockFile, 0); FILE* fileOld = OpenBlockFile(posOld); if (fileOld) { if (fFinalize) TruncateFile(fileOld, vinfoBlockFile[nLastBlockFile].nSize); FileCommit(fileOld); fclose(fileOld); } fileOld = OpenUndoFile(posOld); if (fileOld) { if (fFinalize) TruncateFile(fileOld, vinfoBlockFile[nLastBlockFile].nUndoSize); FileCommit(fileOld); fclose(fileOld); } } bool FindUndoPos(CValidationState& state, int nFile, CDiskBlockPos& pos, unsigned int nAddSize); static CCheckQueue<CScriptCheck> scriptcheckqueue(128); void ThreadScriptCheck() { RenameThread("ztegritycoin-scriptch"); scriptcheckqueue.Thread(); } void RecalculateZECAMinted() { CBlockIndex *pindex = chainActive[Params().Zerocoin_StartHeight()]; uiInterface.ShowProgress(_("Recalculating minted ZECA..."), 0); while (true) { // Log Message and feedback message every 1000 blocks if (pindex->nHeight % 1000 == 0) { LogPrintf("%s : block %d...\n", __func__, pindex->nHeight); int percent = std::max(1, std::min(99, (int)((double)(pindex->nHeight - Params().Zerocoin_StartHeight()) * 100 / (chainActive.Height() - Params().Zerocoin_StartHeight())))); uiInterface.ShowProgress(_("Recalculating minted ZECA..."), percent); } //overwrite possibly wrong vMintsInBlock data CBlock block; assert(ReadBlockFromDisk(block, pindex)); std::list<CZerocoinMint> listMints; BlockToZerocoinMintList(block, listMints, true); vector<libzerocoin::CoinDenomination> vDenomsBefore = pindex->vMintDenominationsInBlock; pindex->vMintDenominationsInBlock.clear(); for (auto mint : listMints) pindex->vMintDenominationsInBlock.emplace_back(mint.GetDenomination()); if (pindex->nHeight < chainActive.Height()) pindex = chainActive.Next(pindex); else break; } uiInterface.ShowProgress("", 100); } void RecalculateZECASpent() { CBlockIndex* pindex = chainActive[Params().Zerocoin_StartHeight()]; uiInterface.ShowProgress(_("Recalculating spent ZECA..."), 0); while (true) { if (pindex->nHeight % 1000 == 0) { LogPrintf("%s : block %d...\n", __func__, pindex->nHeight); int percent = std::max(1, std::min(99, (int)((double)(pindex->nHeight - Params().Zerocoin_StartHeight()) * 100 / (chainActive.Height() - Params().Zerocoin_StartHeight())))); uiInterface.ShowProgress(_("Recalculating spent ZECA..."), percent); } //Rewrite zECA supply CBlock block; assert(ReadBlockFromDisk(block, pindex)); list<libzerocoin::CoinDenomination> listDenomsSpent = ZerocoinSpendListFromBlock(block, true); //Reset the supply to previous block pindex->mapZerocoinSupply = pindex->pprev->mapZerocoinSupply; //Add mints to zECA supply for (auto denom : libzerocoin::zerocoinDenomList) { long nDenomAdded = count(pindex->vMintDenominationsInBlock.begin(), pindex->vMintDenominationsInBlock.end(), denom); pindex->mapZerocoinSupply.at(denom) += nDenomAdded; } //Remove spends from zECA supply for (auto denom : listDenomsSpent) pindex->mapZerocoinSupply.at(denom)--; //Rewrite money supply assert(pblocktree->WriteBlockIndex(CDiskBlockIndex(pindex))); if (pindex->nHeight < chainActive.Height()) pindex = chainActive.Next(pindex); else break; } uiInterface.ShowProgress("", 100); } bool RecalculateECASupply(int nHeightStart) { if (nHeightStart > chainActive.Height()) return false; CBlockIndex* pindex = chainActive[nHeightStart]; CAmount nSupplyPrev = pindex->pprev->nMoneySupply; // if (nHeightStart == Params().Zerocoin_StartHeight()) // nSupplyPrev = CAmount(5449796547496199); uiInterface.ShowProgress(_("Recalculating ztegritycoin supply..."), 0); while (true) { if (pindex->nHeight % 1000 == 0) { LogPrintf("%s : block %d...\n", __func__, pindex->nHeight); int percent = std::max(1, std::min(99, (int)((double)((pindex->nHeight - nHeightStart) * 100) / (chainActive.Height() - nHeightStart)))); uiInterface.ShowProgress(_("Recalculating ztegritycoin supply..."), percent); } CBlock block; assert(ReadBlockFromDisk(block, pindex)); CAmount nValueIn = 0; CAmount nValueOut = 0; for (const CTransaction& tx : block.vtx) { for (unsigned int i = 0; i < tx.vin.size(); i++) { if (tx.IsCoinBase()) break; if (tx.vin[i].scriptSig.IsZerocoinSpend()) { nValueIn += tx.vin[i].nSequence * COIN; continue; } COutPoint prevout = tx.vin[i].prevout; CTransaction txPrev; uint256 hashBlock; assert(GetTransaction(prevout.hash, txPrev, hashBlock, true)); nValueIn += txPrev.vout[prevout.n].nValue; } for (unsigned int i = 0; i < tx.vout.size(); i++) { if (i == 0 && tx.IsCoinStake()) continue; nValueOut += tx.vout[i].nValue; } } // Rewrite money supply pindex->nMoneySupply = nSupplyPrev + nValueOut - nValueIn; nSupplyPrev = pindex->nMoneySupply; // Add fraudulent funds to the supply and remove any recovered funds. if (pindex->nHeight == Params().Zerocoin_Block_RecalculateAccumulators()) { LogPrintf("%s : Original money supply=%s\n", __func__, FormatMoney(pindex->nMoneySupply)); pindex->nMoneySupply += Params().InvalidAmountFiltered(); LogPrintf("%s : Adding filtered funds to supply + %s : supply=%s\n", __func__, FormatMoney(Params().InvalidAmountFiltered()), FormatMoney(pindex->nMoneySupply)); CAmount nLocked = GetInvalidUTXOValue(); pindex->nMoneySupply -= nLocked; LogPrintf("%s : Removing locked from supply - %s : supply=%s\n", __func__, FormatMoney(nLocked), FormatMoney(pindex->nMoneySupply)); } assert(pblocktree->WriteBlockIndex(CDiskBlockIndex(pindex))); if (pindex->nHeight < chainActive.Height()) pindex = chainActive.Next(pindex); else break; } uiInterface.ShowProgress("", 100); return true; } bool ReindexAccumulators(list<uint256>& listMissingCheckpoints, string& strError) { // ztegritycoin: recalculate Accumulator Checkpoints that failed to database properly if (!listMissingCheckpoints.empty()) { uiInterface.ShowProgress(_("Calculating missing accumulators..."), 0); LogPrintf("%s : finding missing checkpoints\n", __func__); //search the chain to see when zerocoin started int nZerocoinStart = Params().Zerocoin_Block_V2_Start(); // find each checkpoint that is missing CBlockIndex* pindex = chainActive[nZerocoinStart]; while (pindex) { uiInterface.ShowProgress(_("Calculating missing accumulators..."), std::max(1, std::min(99, (int)((double)(pindex->nHeight - nZerocoinStart) / (double)(chainActive.Height() - nZerocoinStart) * 100)))); if (ShutdownRequested()) return false; // find checkpoints by iterating through the blockchain beginning with the first zerocoin block if (pindex->nAccumulatorCheckpoint != pindex->pprev->nAccumulatorCheckpoint) { if (find(listMissingCheckpoints.begin(), listMissingCheckpoints.end(), pindex->nAccumulatorCheckpoint) != listMissingCheckpoints.end()) { uint256 nCheckpointCalculated = 0; AccumulatorMap mapAccumulators(Params().Zerocoin_Params(false)); if (!CalculateAccumulatorCheckpoint(pindex->nHeight, nCheckpointCalculated, mapAccumulators)) { // GetCheckpoint could have terminated due to a shutdown request. Check this here. if (ShutdownRequested()) break; strError = _("Failed to calculate accumulator checkpoint"); return error("%s: %s", __func__, strError); } //check that the calculated checkpoint is what is in the index. if (nCheckpointCalculated != pindex->nAccumulatorCheckpoint) { LogPrintf("%s : height=%d calculated_checkpoint=%s actual=%s\n", __func__, pindex->nHeight, nCheckpointCalculated.GetHex(), pindex->nAccumulatorCheckpoint.GetHex()); strError = _("Calculated accumulator checkpoint is not what is recorded by block index"); return error("%s: %s", __func__, strError); } DatabaseChecksums(mapAccumulators); auto it = find(listMissingCheckpoints.begin(), listMissingCheckpoints.end(), pindex->nAccumulatorCheckpoint); listMissingCheckpoints.erase(it); } } pindex = chainActive.Next(pindex); } uiInterface.ShowProgress("", 100); } return true; } bool UpdateZECASupply(const CBlock& block, CBlockIndex* pindex, bool fJustCheck) { std::list<CZerocoinMint> listMints; bool fFilterInvalid = pindex->nHeight >= Params().Zerocoin_Block_RecalculateAccumulators(); BlockToZerocoinMintList(block, listMints, fFilterInvalid); std::list<libzerocoin::CoinDenomination> listSpends = ZerocoinSpendListFromBlock(block, fFilterInvalid); // Initialize zerocoin supply to the supply from previous block if (pindex->pprev && pindex->pprev->GetBlockHeader().nVersion >= Params().Zerocoin_HeaderVersion()) { for (auto& denom : zerocoinDenomList) { pindex->mapZerocoinSupply.at(denom) = pindex->pprev->GetZcMints(denom); } } // Track zerocoin money supply CAmount nAmountZerocoinSpent = 0; pindex->vMintDenominationsInBlock.clear(); if (pindex->pprev) { std::set<uint256> setAddedToWallet; for (auto& m : listMints) { libzerocoin::CoinDenomination denom = m.GetDenomination(); pindex->vMintDenominationsInBlock.push_back(m.GetDenomination()); pindex->mapZerocoinSupply.at(denom)++; //Remove any of our own mints from the mintpool if (!fJustCheck && pwalletMain) { if (pwalletMain->IsMyMint(m.GetValue())) { pwalletMain->UpdateMint(m.GetValue(), pindex->nHeight, m.GetTxHash(), m.GetDenomination()); // Add the transaction to the wallet for (auto& tx : block.vtx) { uint256 txid = tx.GetHash(); if (setAddedToWallet.count(txid)) continue; if (txid == m.GetTxHash()) { CWalletTx wtx(pwalletMain, tx); wtx.nTimeReceived = block.GetBlockTime(); wtx.SetMerkleBranch(block); pwalletMain->AddToWallet(wtx); setAddedToWallet.insert(txid); } } } } } for (auto& denom : listSpends) { pindex->mapZerocoinSupply.at(denom)--; nAmountZerocoinSpent += libzerocoin::ZerocoinDenominationToAmount(denom); // zerocoin failsafe if (pindex->GetZcMints(denom) < 0) return error("Block contains zerocoins that spend more than are in the available supply to spend"); } } for (auto& denom : zerocoinDenomList) LogPrint("zero", "%s coins for denomination %d pubcoin %s\n", __func__, denom, pindex->mapZerocoinSupply.at(denom)); return true; } bool ContextualCheckZerocoinStake(int nHeight, CStakeInput* stake) { if (nHeight < Params().Zerocoin_Block_V2_Start()) return error("%s: zECA stake block is less than allowed start height", __func__); if (CZEcaStake* zECA = dynamic_cast<CZEcaStake*>(stake)) { CBlockIndex* pindexFrom = zECA->GetIndexFrom(); if (!pindexFrom) return error("%s: failed to get index associated with zECA stake checksum", __func__); if (chainActive.Height() - pindexFrom->nHeight < Params().Zerocoin_RequiredStakeDepth()) return error("%s: zECA stake does not have required confirmation depth. Current height %d, stakeInput height %d.", __func__, chainActive.Height(), pindexFrom->nHeight); //The checksum needs to be the exact checksum from 200 blocks ago uint256 nCheckpoint200 = chainActive[nHeight - Params().Zerocoin_RequiredStakeDepth()]->nAccumulatorCheckpoint; uint32_t nChecksum200 = ParseChecksum(nCheckpoint200, libzerocoin::AmountToZerocoinDenomination(zECA->GetValue())); if (nChecksum200 != zECA->GetChecksum()) return error("%s: accumulator checksum is different than the block 200 blocks previous. stake=%d block200=%d", __func__, zECA->GetChecksum(), nChecksum200); } else { return error("%s: dynamic_cast of stake ptr failed", __func__); } return true; } static int64_t nTimeVerify = 0; static int64_t nTimeConnect = 0; static int64_t nTimeIndex = 0; static int64_t nTimeCallbacks = 0; static int64_t nTimeTotal = 0; bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pindex, CCoinsViewCache& view, bool fJustCheck, bool fAlreadyChecked) { AssertLockHeld(cs_main); // Check it again in case a previous version let a bad block in if (!fAlreadyChecked && !CheckBlock(block, state, !fJustCheck, !fJustCheck)) return error("%s: Consensus::CheckBlock: %s", __func__, FormatStateMessage(state)); // verify that the view's current state corresponds to the previous block uint256 hashPrevBlock = pindex->pprev == NULL ? uint256(0) : pindex->pprev->GetBlockHash(); if (hashPrevBlock != view.GetBestBlock()) LogPrintf("%s: hashPrev=%s view=%s\n", __func__, hashPrevBlock.ToString().c_str(), view.GetBestBlock().ToString().c_str()); assert(hashPrevBlock == view.GetBestBlock()); // Special case for the genesis block, skipping connection of its transactions // (its coinbase is unspendable) if (block.GetHash() == Params().HashGenesisBlock()) { if (!fJustCheck) view.SetBestBlock(pindex->GetBlockHash()); return true; } if (pindex->nHeight < Params().POS_START_BLOCK() && block.IsProofOfStake()) return state.DoS(100, error("ConnectBlock() : PoS period not active"), REJECT_INVALID, "PoS-early"); if (pindex->nHeight > Params().LAST_POW_BLOCK() && block.IsProofOfWork()) return state.DoS(100, error("ConnectBlock() : PoW period ended"), REJECT_INVALID, "PoW-ended"); bool fScriptChecks = pindex->nHeight >= Checkpoints::GetTotalBlocksEstimate(); if (block.IsProofOfStake()) { uint256 hashProofOfStake = 0; unique_ptr<CStakeInput> stake; if (!CheckProofOfStake(block, hashProofOfStake, stake)) return state.DoS(100, error("%s: proof of stake check failed", __func__)); if (!stake) return error("%s: null stake ptr", __func__); if (stake->IsZECA() && !ContextualCheckZerocoinStake(pindex->nHeight - 1, stake.get())) return state.DoS(100, error("%s: staked zECA fails context checks", __func__)); } // Do not allow blocks that contain transactions which 'overwrite' older transactions, // unless those are already completely spent. // If such overwrites are allowed, coinbases and transactions depending upon those // can be duplicated to remove the ability to spend the first instance -- even after // being sent to another address. // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information. // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool // already refuses previously-known transaction ids entirely. // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC. // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the // two in the chain that violate it. This prevents exploiting the issue against nodes in their // initial block download. bool fEnforceBIP30 = !pindex->phashBlock; // Enforce on CreateNewBlock invocations which don't have a hash. if (fEnforceBIP30) { BOOST_FOREACH (const CTransaction& tx, block.vtx) { const CCoins* coins = view.AccessCoins(tx.GetHash()); if (coins && !coins->IsPruned()) return state.DoS(100, error("ConnectBlock() : tried to overwrite transaction"), REJECT_INVALID, "bad-txns-BIP30"); } } CCheckQueueControl<CScriptCheck> control(fScriptChecks && nScriptCheckThreads ? &scriptcheckqueue : NULL); int64_t nTimeStart = GetTimeMicros(); std::vector<int> prevheights; int nLockTimeFlags = 0; CAmount nFees = 0; int nInputs = 0; unsigned int nSigOps = 0; CDiskTxPos pos(pindex->GetBlockPos(), GetSizeOfCompactSize(block.vtx.size())); std::vector<std::pair<uint256, CDiskTxPos> > vPos; std::vector<std::pair<CoinSpend, uint256> > vSpends; std::vector<std::pair<PublicCoin, uint256> > vMints; vPos.reserve(block.vtx.size()); CBlockUndo blockundo; blockundo.vtxundo.reserve(block.vtx.size() - 1); CAmount nValueOut = 0; CAmount nValueIn = 0; unsigned int nMaxBlockSigOps = MAX_BLOCK_SIGOPS_CURRENT; vector<uint256> vSpendsInBlock; uint256 hashBlock = block.GetHash(); for (unsigned int i = 0; i < block.vtx.size(); i++) { const CTransaction& tx = block.vtx[i]; nInputs += tx.vin.size(); nSigOps += GetLegacySigOpCount(tx); if (nSigOps > nMaxBlockSigOps) return state.DoS(100, error("ConnectBlock() : too many sigops"), REJECT_INVALID, "bad-blk-sigops"); //Temporarily disable zerocoin transactions for maintenance if (block.nTime >= GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE) && !IsInitialBlockDownload() && tx.ContainsZerocoins()) { return state.DoS(100, error("ConnectBlock() : zerocoin transactions are currently in maintenance mode")); } if ((Params().NetworkID() != CBaseChainParams::REGTEST || pindex->nHeight < Params().Zerocoin_Block_V2_Start()) && tx.ContainsZerocoins()) { return state.DoS(100, error("ConnectBlock() : zerocoin protocol is not active")); } if (tx.IsZerocoinSpend()) { int nHeightTx = 0; uint256 txid = tx.GetHash(); vSpendsInBlock.emplace_back(txid); if (IsTransactionInChain(txid, nHeightTx)) { //when verifying blocks on init, the blocks are scanned without being disconnected - prevent that from causing an error if (!fVerifyingBlocks || (fVerifyingBlocks && pindex->nHeight > nHeightTx)) return state.DoS(100, error("%s : txid %s already exists in block %d , trying to include it again in block %d", __func__, tx.GetHash().GetHex(), nHeightTx, pindex->nHeight), REJECT_INVALID, "bad-txns-inputs-missingorspent"); } // Check that transaction is BIP68 final // BIP68 lock checks (as opposed to nLockTime checks) must // be in ConnectBlock because they require the UTXO set prevheights.resize(tx.vin.size()); for (size_t j = 0; j < tx.vin.size(); j++) { prevheights[j] = view.AccessCoins(tx.vin[j].prevout.hash)->nHeight; } if (!SequenceLocks(tx, nLockTimeFlags, &prevheights, *pindex)) { return state.DoS(100, error("%s: contains a non-BIP68-final transaction", __func__), REJECT_INVALID, "bad-txns-nonfinal"); } //Check for double spending of serial #'s set<CBigNum> setSerials; for (const CTxIn& txIn : tx.vin) { if (!txIn.scriptSig.IsZerocoinSpend()) continue; CoinSpend spend = TxInToZerocoinSpend(txIn); nValueIn += spend.getDenomination() * COIN; //queue for db write after the 'justcheck' section has concluded vSpends.emplace_back(make_pair(spend, tx.GetHash())); if (!ContextualCheckZerocoinSpend(tx, spend, pindex, hashBlock)) return state.DoS(100, error("%s: failed to add block %s with invalid zerocoinspend", __func__, tx.GetHash().GetHex()), REJECT_INVALID); } // Check that zECA mints are not already known if (tx.IsZerocoinMint()) { for (auto& out : tx.vout) { if (!out.IsZerocoinMint()) continue; PublicCoin coin(Params().Zerocoin_Params(false)); if (!TxOutToPublicCoin(out, coin, state)) return state.DoS(100, error("%s: failed final check of zerocoinmint for tx %s", __func__, tx.GetHash().GetHex())); if (!ContextualCheckZerocoinMint(tx, coin, pindex)) return state.DoS(100, error("%s: zerocoin mint failed contextual check", __func__)); vMints.emplace_back(make_pair(coin, tx.GetHash())); } } } else if (!tx.IsCoinBase()) { if (!view.HaveInputs(tx)) return state.DoS(100, error("ConnectBlock() : inputs missing/spent"), REJECT_INVALID, "bad-txns-inputs-missingorspent"); // Check that the inputs are not marked as invalid/fraudulent for (const CTxIn& in : tx.vin) { if (!ValidOutPoint(in.prevout, pindex->nHeight, block.nTime)) { return state.DoS(100, error("%s : tried to spend invalid input %s in tx %s", __func__, in.prevout.ToString(), tx.GetHash().GetHex()), REJECT_INVALID, "bad-txns-invalid-inputs"); } } // Check that zECA mints are not already known if (tx.IsZerocoinMint()) { for (auto& out : tx.vout) { if (!out.IsZerocoinMint()) continue; PublicCoin coin(Params().Zerocoin_Params(false)); if (!TxOutToPublicCoin(out, coin, state)) return state.DoS(100, error("%s: failed final check of zerocoinmint for tx %s", __func__, tx.GetHash().GetHex())); if (!ContextualCheckZerocoinMint(tx, coin, pindex)) return state.DoS(100, error("%s: zerocoin mint failed contextual check", __func__)); vMints.emplace_back(make_pair(coin, tx.GetHash())); } } // Add in sigops done by pay-to-script-hash inputs; // this is to prevent a "rogue miner" from creating // an incredibly-expensive-to-validate block. nSigOps += GetP2SHSigOpCount(tx, view); if (nSigOps > nMaxBlockSigOps) return state.DoS(100, error("ConnectBlock() : too many sigops"), REJECT_INVALID, "bad-blk-sigops"); if (!tx.IsCoinStake()) nFees += view.GetValueIn(tx) - tx.GetValueOut(); nValueIn += view.GetValueIn(tx); std::vector<CScriptCheck> vChecks; if (!CheckInputs(tx, state, view, fScriptChecks, MANDATORY_SCRIPT_VERIFY_FLAGS, false, nScriptCheckThreads ? &vChecks : NULL)) return error("ConnectBlock(): CheckInputs on %s failed with %s", tx.GetHash().ToString(), FormatStateMessage(state)); control.Add(vChecks); } nValueOut += tx.GetValueOut(); CTxUndo undoDummy; if (i > 0) { blockundo.vtxundo.push_back(CTxUndo()); } UpdateCoins(tx, state, view, i == 0 ? undoDummy : blockundo.vtxundo.back(), pindex->nHeight); vPos.push_back(std::make_pair(tx.GetHash(), pos)); pos.nTxOffset += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION); } //A one-time event where money supply counts were off and recalculated on a certain block. if (pindex->nHeight == Params().Zerocoin_Block_RecalculateAccumulators() + 1) { RecalculateZECAMinted(); RecalculateZECASpent(); RecalculateECASupply(Params().Zerocoin_StartHeight()); } //Track zECA money supply in the block index if (!UpdateZECASupply(block, pindex, fJustCheck)) return state.DoS(100, error("%s: Failed to calculate new zECA supply for block=%s height=%d", __func__, block.GetHash().GetHex(), pindex->nHeight), REJECT_INVALID); // track money supply and mint amount info CAmount nMoneySupplyPrev = pindex->pprev ? pindex->pprev->nMoneySupply : 0; pindex->nMoneySupply = nMoneySupplyPrev + nValueOut - nValueIn; pindex->nMint = pindex->nMoneySupply - nMoneySupplyPrev + nFees; // LogPrintf("XX69----------> ConnectBlock(): nValueOut: %s, nValueIn: %s, nFees: %s, nMint: %s zEcaSpent: %s\n", // FormatMoney(nValueOut), FormatMoney(nValueIn), // FormatMoney(nFees), FormatMoney(pindex->nMint), FormatMoney(nAmountZerocoinSpent)); int64_t nTime1 = GetTimeMicros(); nTimeConnect += nTime1 - nTimeStart; LogPrint("bench", " - Connect %u transactions: %.2fms (%.3fms/tx, %.3fms/txin) [%.2fs]\n", (unsigned)block.vtx.size(), 0.001 * (nTime1 - nTimeStart), 0.001 * (nTime1 - nTimeStart) / block.vtx.size(), nInputs <= 1 ? 0 : 0.001 * (nTime1 - nTimeStart) / (nInputs - 1), nTimeConnect * 0.000001); //PoW phase redistributed fees to miner. PoS stage destroys fees. // CAmount nExpectedMint = GetBlockValue(pindex->nHeight, block.IsProofOfStake()); // if ((pindex->nHeight < Params().WALLET_UPGRADE_BLOCK() && Params().NetworkID() == CBaseChainParams::MAIN) || block.IsProofOfWork()) // nExpectedMint += nFees; CAmount nExpectedMint = 0; uint64_t nCoinAge = 0; if (block.IsProofOfStake()) { if (pindex->nHeight < Params().WALLET_UPGRADE_BLOCK() && Params().NetworkID() == CBaseChainParams::MAIN) { nExpectedMint = nFees; if (!GetCoinAge(block.vtx[1], block.vtx[1].nTime, pindex->nHeight-1, nCoinAge)) return error("ConnectBlock() : %s unable to get coin age for coinstake", block.vtx[1].GetHash().ToString().substr(0,10).c_str()); } else { if (!GetCoinAge(block.vtx[1], block.nTime, pindex->nHeight-1, nCoinAge)) // need to use block time instead of transaction time since tx.nTime=0 after upgrade return error("ConnectBlock() : %s unable to get coin age for coinstake", block.vtx[1].GetHash().ToString().substr(0,10).c_str()); } nExpectedMint += GetBlockValue(pindex->nHeight, true, nCoinAge); } else { nExpectedMint = GetBlockValue(pindex->nHeight, false, nCoinAge) + nFees; } //LogPrintf("ConnectBlock() : INFO : Block reward (actual=%s vs limit=%s)\n", FormatMoney(pindex->nMint), FormatMoney(nExpectedMint)); //Check that the block does not overmint if (!IsBlockValueValid(block, nExpectedMint, pindex->nMint)) { return state.DoS(100, error("ConnectBlock() : reward pays too much (actual=%s vs limit=%s)", FormatMoney(pindex->nMint), FormatMoney(nExpectedMint)), REJECT_INVALID, "bad-cb-amount"); } // Ensure that accumulator checkpoints are valid and in the same state as this instance of the chain /*AccumulatorMap mapAccumulators(Params().Zerocoin_Params(pindex->nHeight < Params().Zerocoin_Block_V2_Start())); if (!ValidateAccumulatorCheckpoint(block, pindex, mapAccumulators)) { if (!ShutdownRequested()) { return state.DoS(100, error("%s: Failed to validate accumulator checkpoint for block=%s height=%d", __func__, block.GetHash().GetHex(), pindex->nHeight), REJECT_INVALID, "bad-acc-checkpoint"); } return error("%s: Failed to validate accumulator checkpoint for block=%s height=%d because wallet is shutting down", __func__, block.GetHash().GetHex(), pindex->nHeight); }*/ if (!control.Wait()) return state.DoS(100, error("%s: CheckQueue failed", __func__), REJECT_INVALID, "block-validation-failed"); int64_t nTime2 = GetTimeMicros(); nTimeVerify += nTime2 - nTimeStart; LogPrint("bench", " - Verify %u txins: %.2fms (%.3fms/txin) [%.2fs]\n", nInputs - 1, 0.001 * (nTime2 - nTimeStart), nInputs <= 1 ? 0 : 0.001 * (nTime2 - nTimeStart) / (nInputs - 1), nTimeVerify * 0.000001); //IMPORTANT NOTE: Nothing before this point should actually store to disk (or even memory) if (fJustCheck) return true; // Write undo information to disk if (pindex->GetUndoPos().IsNull() || !pindex->IsValid(BLOCK_VALID_SCRIPTS)) { if (pindex->GetUndoPos().IsNull()) { CDiskBlockPos pos; if (!FindUndoPos(state, pindex->nFile, pos, ::GetSerializeSize(blockundo, SER_DISK, CLIENT_VERSION) + 40)) return error("ConnectBlock() : FindUndoPos failed"); if (!blockundo.WriteToDisk(pos, pindex->pprev->GetBlockHash())) return state.Abort("Failed to write undo data"); // update nUndoPos in block index pindex->nUndoPos = pos.nPos; pindex->nStatus |= BLOCK_HAVE_UNDO; } pindex->RaiseValidity(BLOCK_VALID_SCRIPTS); setDirtyBlockIndex.insert(pindex); } //Record zECA serials if (pwalletMain) { std::set<uint256> setAddedTx; for (const std::pair<libzerocoin::CoinSpend, uint256>& pSpend : vSpends) { // Send signal to wallet if this is ours if (pwalletMain->IsMyZerocoinSpend(pSpend.first.getCoinSerialNumber())) { LogPrintf("%s: %s detected zerocoinspend in transaction %s \n", __func__, pSpend.first.getCoinSerialNumber().GetHex(), pSpend.second.GetHex()); pwalletMain->NotifyZerocoinChanged(pwalletMain, pSpend.first.getCoinSerialNumber().GetHex(), "Used", CT_UPDATED); //Don't add the same tx multiple times if (setAddedTx.count(pSpend.second)) continue; //Search block for matching tx, turn into wtx, set merkle branch, add to wallet for (const CTransaction& tx : block.vtx) { if (tx.GetHash() == pSpend.second) { CWalletTx wtx(pwalletMain, tx); wtx.nTimeReceived = pindex->GetBlockTime(); wtx.SetMerkleBranch(block); pwalletMain->AddToWallet(wtx); setAddedTx.insert(pSpend.second); } } } } } // Flush spend/mint info to disk if (!zerocoinDB->WriteCoinSpendBatch(vSpends)) return state.Abort(("Failed to record coin serials to database")); if (!zerocoinDB->WriteCoinMintBatch(vMints)) return state.Abort(("Failed to record new mints to database")); //Record accumulator checksums //DatabaseChecksums(mapAccumulators); if (fTxIndex) if (!pblocktree->WriteTxIndex(vPos)) return state.Abort("Failed to write transaction index"); // add this block to the view's block chain view.SetBestBlock(pindex->GetBlockHash()); int64_t nTime3 = GetTimeMicros(); nTimeIndex += nTime3 - nTime2; LogPrint("bench", " - Index writing: %.2fms [%.2fs]\n", 0.001 * (nTime3 - nTime2), nTimeIndex * 0.000001); // Watch for changes to the previous coinbase transaction. static uint256 hashPrevBestCoinBase; GetMainSignals().UpdatedTransaction(hashPrevBestCoinBase); hashPrevBestCoinBase = block.vtx[0].GetHash(); int64_t nTime4 = GetTimeMicros(); nTimeCallbacks += nTime4 - nTime3; LogPrint("bench", " - Callbacks: %.2fms [%.2fs]\n", 0.001 * (nTime4 - nTime3), nTimeCallbacks * 0.000001); //Continue tracking possible movement of fraudulent funds until they are completely frozen //if (pindex->nHeight >= Params().Zerocoin_Block_FirstFraudulent() && pindex->nHeight <= Params().Zerocoin_Block_RecalculateAccumulators() + 1) //AddInvalidSpendsToMap(block); //Remove zerocoinspends from the pending map for (const uint256& txid : vSpendsInBlock) { auto it = mapZerocoinspends.find(txid); if (it != mapZerocoinspends.end()) mapZerocoinspends.erase(it); } return true; } enum FlushStateMode { FLUSH_STATE_IF_NEEDED, FLUSH_STATE_PERIODIC, FLUSH_STATE_ALWAYS }; /** * Update the on-disk chain state. * The caches and indexes are flushed if either they're too large, forceWrite is set, or * fast is not set and it's been a while since the last write. */ bool static FlushStateToDisk(CValidationState& state, FlushStateMode mode) { LOCK(cs_main); static int64_t nLastWrite = 0; try { if ((mode == FLUSH_STATE_ALWAYS) || ((mode == FLUSH_STATE_PERIODIC || mode == FLUSH_STATE_IF_NEEDED) && pcoinsTip->GetCacheSize() > nCoinCacheSize) || (mode == FLUSH_STATE_PERIODIC && GetTimeMicros() > nLastWrite + DATABASE_WRITE_INTERVAL * 1000000)) { // Typical CCoins structures on disk are around 100 bytes in size. // Pushing a new one to the database can cause it to be written // twice (once in the log, and once in the tables). This is already // an overestimation, as most will delete an existing entry or // overwrite one. Still, use a conservative safety factor of 2. if (!CheckDiskSpace(100 * 2 * 2 * pcoinsTip->GetCacheSize())) return state.Error("out of disk space"); // First make sure all block and undo data is flushed to disk. FlushBlockFile(); // Then update all block file information (which may refer to block and undo files). { std::vector<std::pair<int, const CBlockFileInfo*> > vFiles; vFiles.reserve(setDirtyFileInfo.size()); for (set<int>::iterator it = setDirtyFileInfo.begin(); it != setDirtyFileInfo.end(); ) { vFiles.push_back(make_pair(*it, &vinfoBlockFile[*it])); setDirtyFileInfo.erase(it++); } std::vector<const CBlockIndex*> vBlocks; vBlocks.reserve(setDirtyBlockIndex.size()); for (set<CBlockIndex*>::iterator it = setDirtyBlockIndex.begin(); it != setDirtyBlockIndex.end(); ) { vBlocks.push_back(*it); setDirtyBlockIndex.erase(it++); } if (!pblocktree->WriteBatchSync(vFiles, nLastBlockFile, vBlocks)) { return state.Abort("Files to write to block index database"); } } // Finally flush the chainstate (which may refer to block index entries). if (!pcoinsTip->Flush()) return state.Abort("Failed to write to coin database"); // Update best block in wallet (so we can detect restored wallets). if (mode != FLUSH_STATE_IF_NEEDED) { GetMainSignals().SetBestChain(chainActive.GetLocator()); } nLastWrite = GetTimeMicros(); } } catch (const std::runtime_error& e) { return state.Abort(std::string("System error while flushing: ") + e.what()); } return true; } void FlushStateToDisk() { CValidationState state; FlushStateToDisk(state, FLUSH_STATE_ALWAYS); } /** Update chainActive and related internal data structures. */ void static UpdateTip(CBlockIndex* pindexNew) { chainActive.SetTip(pindexNew); #ifdef ENABLE_WALLET // If turned on AutoZeromint will automatically convert ztegritycoin to zECA if (pwalletMain && pwalletMain->isZeromintEnabled()) pwalletMain->AutoZeromint(); #endif // ENABLE_WALLET // New best block nTimeBestReceived = GetTime(); mempool.AddTransactionsUpdated(1); LogPrintf("UpdateTip: new best=%s height=%d version=%d log2_work=%.8g tx=%lu date=%s progress=%f cache=%u\n", chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), chainActive.Tip()->nVersion, log(chainActive.Tip()->nChainWork.getdouble()) / log(2.0), (unsigned long)chainActive.Tip()->nChainTx, DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()), Checkpoints::GuessVerificationProgress(chainActive.Tip()), (unsigned int)pcoinsTip->GetCacheSize()); cvBlockChange.notify_all(); // Check the version of the last 100 blocks to see if we need to upgrade: static bool fWarned = false; if (!IsInitialBlockDownload() && !fWarned) { int nUpgraded = 0; const CBlockIndex* pindex = chainActive.Tip(); for (int i = 0; i < 100 && pindex != NULL; i++) { if (pindex->nVersion > CBlock::CURRENT_VERSION) ++nUpgraded; pindex = pindex->pprev; } if (nUpgraded > 0) LogPrintf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, (int)CBlock::CURRENT_VERSION); if (nUpgraded > 100 / 2) { // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user: strMiscWarning = _("Warning: This version is obsolete, upgrade required!"); CAlert::Notify(strMiscWarning, true); fWarned = true; } } } /** Disconnect chainActive's tip. */ bool static DisconnectTip(CValidationState& state) { CBlockIndex* pindexDelete = chainActive.Tip(); assert(pindexDelete); mempool.check(pcoinsTip); // Read block from disk. CBlock block; if (!ReadBlockFromDisk(block, pindexDelete)) return state.Abort("Failed to read block"); // Apply the block atomically to the chain state. int64_t nStart = GetTimeMicros(); { CCoinsViewCache view(pcoinsTip); if (!DisconnectBlock(block, state, pindexDelete, view)) return error("DisconnectTip() : DisconnectBlock %s failed", pindexDelete->GetBlockHash().ToString()); assert(view.Flush()); } LogPrint("bench", "- Disconnect block: %.2fms\n", (GetTimeMicros() - nStart) * 0.001); // Write the chain state to disk, if necessary. if (!FlushStateToDisk(state, FLUSH_STATE_ALWAYS)) return false; // Resurrect mempool transactions from the disconnected block. BOOST_FOREACH (const CTransaction& tx, block.vtx) { // ignore validation errors in resurrected transactions list<CTransaction> removed; CValidationState stateDummy; if (tx.IsCoinBase() || tx.IsCoinStake() || !AcceptToMemoryPool(mempool, stateDummy, tx, false, NULL)) mempool.remove(tx, removed, true); } mempool.removeCoinbaseSpends(pcoinsTip, pindexDelete->nHeight); mempool.check(pcoinsTip); // Update chainActive and related variables. UpdateTip(pindexDelete->pprev); // Let wallets know transactions went from 1-confirmed to // 0-confirmed or conflicted: BOOST_FOREACH (const CTransaction& tx, block.vtx) { SyncWithWallets(tx, NULL); } return true; } static int64_t nTimeReadFromDisk = 0; static int64_t nTimeConnectTotal = 0; static int64_t nTimeFlush = 0; static int64_t nTimeChainState = 0; static int64_t nTimePostConnect = 0; /** * Connect a new block to chainActive. pblock is either NULL or a pointer to a CBlock * corresponding to pindexNew, to bypass loading it again from disk. */ bool static ConnectTip(CValidationState& state, CBlockIndex* pindexNew, CBlock* pblock, bool fAlreadyChecked) { assert(pindexNew->pprev == chainActive.Tip()); mempool.check(pcoinsTip); CCoinsViewCache view(pcoinsTip); if (pblock == NULL) fAlreadyChecked = false; // Read block from disk. int64_t nTime1 = GetTimeMicros(); CBlock block; if (!pblock) { if (!ReadBlockFromDisk(block, pindexNew)) return state.Abort("Failed to read block"); pblock = &block; } // Apply the block atomically to the chain state. int64_t nTime2 = GetTimeMicros(); nTimeReadFromDisk += nTime2 - nTime1; int64_t nTime3; LogPrint("bench", " - Load block from disk: %.2fms [%.2fs]\n", (nTime2 - nTime1) * 0.001, nTimeReadFromDisk * 0.000001); { CInv inv(MSG_BLOCK, pindexNew->GetBlockHash()); bool rv = ConnectBlock(*pblock, state, pindexNew, view, false, fAlreadyChecked); GetMainSignals().BlockChecked(*pblock, state); if (!rv) { if (state.IsInvalid()) InvalidBlockFound(pindexNew, state); return error("ConnectTip() : ConnectBlock %s failed", pindexNew->GetBlockHash().ToString()); } mapBlockSource.erase(inv.hash); nTime3 = GetTimeMicros(); nTimeConnectTotal += nTime3 - nTime2; LogPrint("bench", " - Connect total: %.2fms [%.2fs]\n", (nTime3 - nTime2) * 0.001, nTimeConnectTotal * 0.000001); assert(view.Flush()); } int64_t nTime4 = GetTimeMicros(); nTimeFlush += nTime4 - nTime3; LogPrint("bench", " - Flush: %.2fms [%.2fs]\n", (nTime4 - nTime3) * 0.001, nTimeFlush * 0.000001); // Write the chain state to disk, if necessary. Always write to disk if this is the first of a new file. FlushStateMode flushMode = FLUSH_STATE_IF_NEEDED; if (pindexNew->pprev && (pindexNew->GetBlockPos().nFile != pindexNew->pprev->GetBlockPos().nFile)) flushMode = FLUSH_STATE_ALWAYS; if (!FlushStateToDisk(state, flushMode)) return false; int64_t nTime5 = GetTimeMicros(); nTimeChainState += nTime5 - nTime4; LogPrint("bench", " - Writing chainstate: %.2fms [%.2fs]\n", (nTime5 - nTime4) * 0.001, nTimeChainState * 0.000001); // Remove conflicting transactions from the mempool. list<CTransaction> txConflicted; mempool.removeForBlock(pblock->vtx, pindexNew->nHeight, txConflicted); mempool.check(pcoinsTip); // Update chainActive & related variables. UpdateTip(pindexNew); // Tell wallet about transactions that went from mempool // to conflicted: BOOST_FOREACH (const CTransaction& tx, txConflicted) { SyncWithWallets(tx, NULL); } // ... and about transactions that got confirmed: BOOST_FOREACH (const CTransaction& tx, pblock->vtx) { SyncWithWallets(tx, pblock); } int64_t nTime6 = GetTimeMicros(); nTimePostConnect += nTime6 - nTime5; nTimeTotal += nTime6 - nTime1; LogPrint("bench", " - Connect postprocess: %.2fms [%.2fs]\n", (nTime6 - nTime5) * 0.001, nTimePostConnect * 0.000001); LogPrint("bench", "- Connect block: %.2fms [%.2fs]\n", (nTime6 - nTime1) * 0.001, nTimeTotal * 0.000001); return true; } bool DisconnectBlocksAndReprocess(int blocks) { LOCK(cs_main); CValidationState state; LogPrintf("DisconnectBlocksAndReprocess: Got command to replay %d blocks\n", blocks); for (int i = 0; i <= blocks; i++) DisconnectTip(state); return true; } /* DisconnectBlockAndInputs Remove conflicting blocks for successful SwiftX transaction locks This should be very rare (Probably will never happen) */ // ***TODO*** clean up here bool DisconnectBlockAndInputs(CValidationState& state, CTransaction txLock) { // All modifications to the coin state will be done in this cache. // Only when all have succeeded, we push it to pcoinsTip. // CCoinsViewCache view(*pcoinsTip, true); CBlockIndex* BlockReading = chainActive.Tip(); CBlockIndex* pindexNew = NULL; bool foundConflictingTx = false; //remove anything conflicting in the memory pool list<CTransaction> txConflicted; mempool.removeConflicts(txLock, txConflicted); // List of what to disconnect (typically nothing) vector<CBlockIndex*> vDisconnect; for (unsigned int i = 1; BlockReading && BlockReading->nHeight > 0 && !foundConflictingTx && i < 6; i++) { vDisconnect.push_back(BlockReading); pindexNew = BlockReading->pprev; //new best block CBlock block; if (!ReadBlockFromDisk(block, BlockReading)) return state.Abort(_("Failed to read block")); // Queue memory transactions to resurrect. // We only do this for blocks after the last checkpoint (reorganisation before that // point should only happen with -reindex/-loadblock, or a misbehaving peer. BOOST_FOREACH (const CTransaction& tx, block.vtx) { if (!tx.IsCoinBase()) { BOOST_FOREACH (const CTxIn& in1, txLock.vin) { BOOST_FOREACH (const CTxIn& in2, tx.vin) { if (in1.prevout == in2.prevout) foundConflictingTx = true; } } } } if (BlockReading->pprev == NULL) { assert(BlockReading); break; } BlockReading = BlockReading->pprev; } if (!foundConflictingTx) { LogPrintf("DisconnectBlockAndInputs: Can't find a conflicting transaction to inputs\n"); return false; } if (vDisconnect.size() > 0) { LogPrintf("REORGANIZE: Disconnect Conflicting Blocks %lli blocks; %s..\n", vDisconnect.size(), pindexNew->GetBlockHash().ToString()); BOOST_FOREACH (CBlockIndex* pindex, vDisconnect) { LogPrintf(" -- disconnect %s\n", pindex->GetBlockHash().ToString()); DisconnectTip(state); } } return true; } /** * Return the tip of the chain with the most work in it, that isn't * known to be invalid (it's however far from certain to be valid). */ static CBlockIndex* FindMostWorkChain() { do { CBlockIndex* pindexNew = NULL; // Find the best candidate header. { std::set<CBlockIndex*, CBlockIndexWorkComparator>::reverse_iterator it = setBlockIndexCandidates.rbegin(); if (it == setBlockIndexCandidates.rend()) return NULL; pindexNew = *it; } // Check whether all blocks on the path between the currently active chain and the candidate are valid. // Just going until the active chain is an optimization, as we know all blocks in it are valid already. CBlockIndex* pindexTest = pindexNew; bool fInvalidAncestor = false; while (pindexTest && !chainActive.Contains(pindexTest)) { assert(pindexTest->nChainTx || pindexTest->nHeight == 0); // Pruned nodes may have entries in setBlockIndexCandidates for // which block files have been deleted. Remove those as candidates // for the most work chain if we come across them; we can't switch // to a chain unless we have all the non-active-chain parent blocks. bool fFailedChain = pindexTest->nStatus & BLOCK_FAILED_MASK; bool fMissingData = !(pindexTest->nStatus & BLOCK_HAVE_DATA); if (fFailedChain || fMissingData) { // Candidate chain is not usable (either invalid or missing data) if (fFailedChain && (pindexBestInvalid == NULL || pindexNew->nChainWork > pindexBestInvalid->nChainWork)) pindexBestInvalid = pindexNew; CBlockIndex* pindexFailed = pindexNew; // Remove the entire chain from the set. while (pindexTest != pindexFailed) { if (fFailedChain) { pindexFailed->nStatus |= BLOCK_FAILED_CHILD; } else if (fMissingData) { // If we're missing data, then add back to mapBlocksUnlinked, // so that if the block arrives in the future we can try adding // to setBlockIndexCandidates again. mapBlocksUnlinked.insert(std::make_pair(pindexFailed->pprev, pindexFailed)); } setBlockIndexCandidates.erase(pindexFailed); pindexFailed = pindexFailed->pprev; } setBlockIndexCandidates.erase(pindexTest); fInvalidAncestor = true; break; } pindexTest = pindexTest->pprev; } if (!fInvalidAncestor) return pindexNew; } while (true); } /** Delete all entries in setBlockIndexCandidates that are worse than the current tip. */ static void PruneBlockIndexCandidates() { // Note that we can't delete the current block itself, as we may need to return to it later in case a // reorganization to a better block fails. std::set<CBlockIndex*, CBlockIndexWorkComparator>::iterator it = setBlockIndexCandidates.begin(); while (it != setBlockIndexCandidates.end() && setBlockIndexCandidates.value_comp()(*it, chainActive.Tip())) { setBlockIndexCandidates.erase(it++); } // Either the current tip or a successor of it we're working towards is left in setBlockIndexCandidates. assert(!setBlockIndexCandidates.empty()); } /** * Try to make some progress towards making pindexMostWork the active block. * pblock is either NULL or a pointer to a CBlock corresponding to pindexMostWork. */ static bool ActivateBestChainStep(CValidationState& state, CBlockIndex* pindexMostWork, CBlock* pblock, bool fAlreadyChecked, bool& fInvalidFound) { AssertLockHeld(cs_main); if (pblock == NULL) fAlreadyChecked = false; const CBlockIndex* pindexOldTip = chainActive.Tip(); const CBlockIndex* pindexFork = chainActive.FindFork(pindexMostWork); // Disconnect active blocks which are no longer in the best chain. while (chainActive.Tip() && chainActive.Tip() != pindexFork) { if (!DisconnectTip(state)) return false; } // Build list of new blocks to connect. std::vector<CBlockIndex*> vpindexToConnect; bool fContinue = true; int nHeight = pindexFork ? pindexFork->nHeight : -1; while (fContinue && nHeight != pindexMostWork->nHeight) { // Don't iterate the entire list of potential improvements toward the best tip, as we likely only need // a few blocks along the way. int nTargetHeight = std::min(nHeight + 32, pindexMostWork->nHeight); vpindexToConnect.clear(); vpindexToConnect.reserve(nTargetHeight - nHeight); CBlockIndex* pindexIter = pindexMostWork->GetAncestor(nTargetHeight); while (pindexIter && pindexIter->nHeight != nHeight) { vpindexToConnect.push_back(pindexIter); pindexIter = pindexIter->pprev; } nHeight = nTargetHeight; // Connect new blocks. BOOST_REVERSE_FOREACH (CBlockIndex* pindexConnect, vpindexToConnect) { if (!ConnectTip(state, pindexConnect, pindexConnect == pindexMostWork ? pblock : NULL, fAlreadyChecked)) { if (state.IsInvalid()) { // The block violates a consensus rule. if (!state.CorruptionPossible()) InvalidChainFound(vpindexToConnect.back()); state = CValidationState(); fInvalidFound = true; fContinue = false; break; } else { // A system error occurred (disk space, database error, ...). return false; } } else { PruneBlockIndexCandidates(); if (!pindexOldTip || chainActive.Tip()->nChainWork > pindexOldTip->nChainWork) { // We're in a better position than we were. Return temporarily to release the lock. fContinue = false; break; } } } } // Callbacks/notifications for a new best chain. if (fInvalidFound) CheckForkWarningConditionsOnNewFork(vpindexToConnect.back()); else CheckForkWarningConditions(); return true; } /** * Make the best chain active, in multiple steps. The result is either failure * or an activated best chain. pblock is either NULL or a pointer to a block * that is already loaded (to avoid loading it again from disk). */ bool ActivateBestChain(CValidationState& state, CBlock* pblock, bool fAlreadyChecked) { CBlockIndex* pindexNewTip = NULL; CBlockIndex* pindexMostWork = NULL; do { boost::this_thread::interruption_point(); const CBlockIndex *pindexFork; bool fInitialDownload; int nNewHeight; { LOCK(cs_main); CBlockIndex *pindexOldTip = chainActive.Tip(); if (pindexMostWork == NULL) { pindexMostWork = FindMostWorkChain(); } // Whether we have anything to do at all. if (pindexMostWork == NULL || pindexMostWork == chainActive.Tip()) return true; bool fInvalidFound = false; if (!ActivateBestChainStep(state, pindexMostWork, pblock && pblock->GetHash() == pindexMostWork->GetBlockHash() ? pblock : NULL, fAlreadyChecked, fInvalidFound)) return false; if (fInvalidFound) { // Wipe cache, we may need another branch now. pindexMostWork = NULL; } pindexNewTip = chainActive.Tip(); pindexFork = chainActive.FindFork(pindexOldTip); fInitialDownload = IsInitialBlockDownload(); nNewHeight = chainActive.Height(); } // When we reach this point, we switched to a new tip (stored in pindexNewTip). // Notifications/callbacks that can run without cs_main // Always notify the UI if a new block tip was connected if (pindexFork != pindexNewTip) { uiInterface.NotifyBlockTip(fInitialDownload, pindexNewTip); if (!fInitialDownload) { // Find the hashes of all blocks that weren't previously in the best chain. std::vector<uint256> vHashes; CBlockIndex *pindexToAnnounce = pindexNewTip; while (pindexToAnnounce != pindexFork) { vHashes.push_back(pindexToAnnounce->GetBlockHash()); pindexToAnnounce = pindexToAnnounce->pprev; if (vHashes.size() == MAX_BLOCKS_TO_ANNOUNCE) { // Limit announcements in case of a huge reorganization. // Rely on the peer's synchronization mechanism in that case. break; } } uint256 hashNewTip = pindexNewTip->GetBlockHash(); // Relay inventory, but don't relay old inventory during initial block download. { LOCK(cs_vNodes); for(auto* pnode : vNodes) { if (nNewHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 0)) { if (pnode->nVersion >= SENDHEADERS_VERSION) { for(const auto& hash : vHashes) pnode->PushBlockHash(hash); } else { pnode->PushInventory(CInv(MSG_BLOCK, hashNewTip)); } } } } // Notify external listeners about the new tip. if (!vHashes.empty()) { GetMainSignals().UpdatedBlockTip(pindexNewTip); } unsigned size = 0; if (pblock) size = GetSerializeSize(*pblock, SER_NETWORK, PROTOCOL_VERSION); // If the size is over 1 MB notify external listeners, and it is within the last 5 minutes if (size > MAX_BLOCK_SIZE_LEGACY && pblock->GetBlockTime() > GetAdjustedTime() - 300) { uiInterface.NotifyBlockSize(static_cast<int>(size), pindexNewTip->GetBlockHash()); } } } } while (pindexMostWork != chainActive.Tip()); CheckBlockIndex(); // Write changes periodically to disk, after relay. if (!FlushStateToDisk(state, FLUSH_STATE_PERIODIC)) { return false; } return true; } bool InvalidateBlock(CValidationState& state, CBlockIndex* pindex) { AssertLockHeld(cs_main); // Mark the block itself as invalid. pindex->nStatus |= BLOCK_FAILED_VALID; setDirtyBlockIndex.insert(pindex); setBlockIndexCandidates.erase(pindex); while (chainActive.Contains(pindex)) { CBlockIndex* pindexWalk = chainActive.Tip(); pindexWalk->nStatus |= BLOCK_FAILED_CHILD; setDirtyBlockIndex.insert(pindexWalk); setBlockIndexCandidates.erase(pindexWalk); // ActivateBestChain considers blocks already in chainActive // unconditionally valid already, so force disconnect away from it. if (!DisconnectTip(state)) { return false; } } // The resulting new best tip may not be in setBlockIndexCandidates anymore, so // add them again. BlockMap::iterator it = mapBlockIndex.begin(); while (it != mapBlockIndex.end()) { if (it->second->IsValid(BLOCK_VALID_TRANSACTIONS) && it->second->nChainTx && !setBlockIndexCandidates.value_comp()(it->second, chainActive.Tip())) { setBlockIndexCandidates.insert(it->second); } it++; } InvalidChainFound(pindex); uiInterface.NotifyBlockTip(IsInitialBlockDownload(), pindex->pprev); return true; } bool ReconsiderBlock(CBlockIndex* pindex) { AssertLockHeld(cs_main); int nHeight = pindex->nHeight; // Remove the invalidity flag from this block and all its descendants. BlockMap::iterator it = mapBlockIndex.begin(); while (it != mapBlockIndex.end()) { if (!it->second->IsValid() && it->second->GetAncestor(nHeight) == pindex) { it->second->nStatus &= ~BLOCK_FAILED_MASK; setDirtyBlockIndex.insert(it->second); if (it->second->IsValid(BLOCK_VALID_TRANSACTIONS) && it->second->nChainTx && setBlockIndexCandidates.value_comp()(chainActive.Tip(), it->second)) { setBlockIndexCandidates.insert(it->second); } if (it->second == pindexBestInvalid) { // Reset invalid block marker if it was pointing to one of those. pindexBestInvalid = NULL; } } it++; } // Remove the invalidity flag from all ancestors too. while (pindex != NULL) { if (pindex->nStatus & BLOCK_FAILED_MASK) { pindex->nStatus &= ~BLOCK_FAILED_MASK; setDirtyBlockIndex.insert(pindex); } pindex = pindex->pprev; } return true; } CBlockIndex* AddToBlockIndex(const CBlock& block) { // Check for duplicate uint256 hash = block.GetHash(); BlockMap::iterator it = mapBlockIndex.find(hash); if (it != mapBlockIndex.end()) return it->second; // Construct new block index object CBlockIndex* pindexNew = new CBlockIndex(block); assert(pindexNew); // We assign the sequence id to blocks only when the full data is available, // to avoid miners withholding blocks but broadcasting headers, to get a // competitive advantage. pindexNew->nSequenceId = 0; BlockMap::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first; pindexNew->phashBlock = &((*mi).first); BlockMap::iterator miPrev = mapBlockIndex.find(block.hashPrevBlock); if (miPrev != mapBlockIndex.end()) { pindexNew->pprev = (*miPrev).second; pindexNew->nHeight = pindexNew->pprev->nHeight + 1; pindexNew->BuildSkip(); //update previous block pointer pindexNew->pprev->pnext = pindexNew; // ppcoin: compute chain trust score pindexNew->bnChainTrust = (pindexNew->pprev ? pindexNew->pprev->bnChainTrust : 0) + pindexNew->GetBlockTrust(); // ppcoin: compute stake entropy bit for stake modifier if (!pindexNew->SetStakeEntropyBit(pindexNew->GetStakeEntropyBit())) LogPrintf("AddToBlockIndex() : SetStakeEntropyBit() failed \n"); // ppcoin: compute stake modifier uint64_t nStakeModifier = 0; bool fGeneratedStakeModifier = false; if (!ComputeNextStakeModifier(pindexNew->pprev, nStakeModifier, fGeneratedStakeModifier)) LogPrintf("AddToBlockIndex() : ComputeNextStakeModifier() failed \n"); pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier); pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew); if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum)) LogPrintf("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=%s \n", pindexNew->nHeight, std::to_string(nStakeModifier)); } pindexNew->nChainWork = (pindexNew->pprev ? pindexNew->pprev->nChainWork : 0) + GetBlockProof(*pindexNew); pindexNew->RaiseValidity(BLOCK_VALID_TREE); if (pindexBestHeader == NULL || pindexBestHeader->nChainWork < pindexNew->nChainWork) pindexBestHeader = pindexNew; //update previous block pointer if (pindexNew->nHeight) pindexNew->pprev->pnext = pindexNew; setDirtyBlockIndex.insert(pindexNew); return pindexNew; } /** Mark a block as having its data received and checked (up to BLOCK_VALID_TRANSACTIONS). */ bool ReceivedBlockTransactions(const CBlock& block, CValidationState& state, CBlockIndex* pindexNew, const CDiskBlockPos& pos) { if (block.IsProofOfStake()) pindexNew->SetProofOfStake(); pindexNew->nTx = block.vtx.size(); pindexNew->nChainTx = 0; pindexNew->nFile = pos.nFile; pindexNew->nDataPos = pos.nPos; pindexNew->nUndoPos = 0; pindexNew->nStatus |= BLOCK_HAVE_DATA; pindexNew->RaiseValidity(BLOCK_VALID_TRANSACTIONS); setDirtyBlockIndex.insert(pindexNew); if (pindexNew->pprev == NULL || pindexNew->pprev->nChainTx) { // If pindexNew is the genesis block or all parents are BLOCK_VALID_TRANSACTIONS. deque<CBlockIndex*> queue; queue.push_back(pindexNew); // Recursively process any descendant blocks that now may be eligible to be connected. while (!queue.empty()) { CBlockIndex* pindex = queue.front(); queue.pop_front(); pindex->nChainTx = (pindex->pprev ? pindex->pprev->nChainTx : 0) + pindex->nTx; { LOCK(cs_nBlockSequenceId); pindex->nSequenceId = nBlockSequenceId++; } if (chainActive.Tip() == NULL || !setBlockIndexCandidates.value_comp()(pindex, chainActive.Tip())) { setBlockIndexCandidates.insert(pindex); } std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> range = mapBlocksUnlinked.equal_range(pindex); while (range.first != range.second) { std::multimap<CBlockIndex*, CBlockIndex*>::iterator it = range.first; queue.push_back(it->second); range.first++; mapBlocksUnlinked.erase(it); } } } else { if (pindexNew->pprev && pindexNew->pprev->IsValid(BLOCK_VALID_TREE)) { mapBlocksUnlinked.insert(std::make_pair(pindexNew->pprev, pindexNew)); } } return true; } bool FindBlockPos(CValidationState& state, CDiskBlockPos& pos, unsigned int nAddSize, unsigned int nHeight, uint64_t nTime, bool fKnown = false) { LOCK(cs_LastBlockFile); unsigned int nFile = fKnown ? pos.nFile : nLastBlockFile; if (vinfoBlockFile.size() <= nFile) { vinfoBlockFile.resize(nFile + 1); } if (!fKnown) { while (vinfoBlockFile[nFile].nSize + nAddSize >= MAX_BLOCKFILE_SIZE) { LogPrintf("Leaving block file %i: %s\n", nFile, vinfoBlockFile[nFile].ToString()); FlushBlockFile(true); nFile++; if (vinfoBlockFile.size() <= nFile) { vinfoBlockFile.resize(nFile + 1); } } pos.nFile = nFile; pos.nPos = vinfoBlockFile[nFile].nSize; } nLastBlockFile = nFile; vinfoBlockFile[nFile].AddBlock(nHeight, nTime); if (fKnown) vinfoBlockFile[nFile].nSize = std::max(pos.nPos + nAddSize, vinfoBlockFile[nFile].nSize); else vinfoBlockFile[nFile].nSize += nAddSize; if (!fKnown) { unsigned int nOldChunks = (pos.nPos + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE; unsigned int nNewChunks = (vinfoBlockFile[nFile].nSize + BLOCKFILE_CHUNK_SIZE - 1) / BLOCKFILE_CHUNK_SIZE; if (nNewChunks > nOldChunks) { if (CheckDiskSpace(nNewChunks * BLOCKFILE_CHUNK_SIZE - pos.nPos)) { FILE* file = OpenBlockFile(pos); if (file) { LogPrintf("Pre-allocating up to position 0x%x in blk%05u.dat\n", nNewChunks * BLOCKFILE_CHUNK_SIZE, pos.nFile); AllocateFileRange(file, pos.nPos, nNewChunks * BLOCKFILE_CHUNK_SIZE - pos.nPos); fclose(file); } } else return state.Error("out of disk space"); } } setDirtyFileInfo.insert(nFile); return true; } bool FindUndoPos(CValidationState& state, int nFile, CDiskBlockPos& pos, unsigned int nAddSize) { pos.nFile = nFile; LOCK(cs_LastBlockFile); unsigned int nNewSize; pos.nPos = vinfoBlockFile[nFile].nUndoSize; nNewSize = vinfoBlockFile[nFile].nUndoSize += nAddSize; setDirtyFileInfo.insert(nFile); unsigned int nOldChunks = (pos.nPos + UNDOFILE_CHUNK_SIZE - 1) / UNDOFILE_CHUNK_SIZE; unsigned int nNewChunks = (nNewSize + UNDOFILE_CHUNK_SIZE - 1) / UNDOFILE_CHUNK_SIZE; if (nNewChunks > nOldChunks) { if (CheckDiskSpace(nNewChunks * UNDOFILE_CHUNK_SIZE - pos.nPos)) { FILE* file = OpenUndoFile(pos); if (file) { LogPrintf("Pre-allocating up to position 0x%x in rev%05u.dat\n", nNewChunks * UNDOFILE_CHUNK_SIZE, pos.nFile); AllocateFileRange(file, pos.nPos, nNewChunks * UNDOFILE_CHUNK_SIZE - pos.nPos); fclose(file); } } else return state.Error("out of disk space"); } return true; } bool CheckBlockHeader(const CBlockHeader& block, CValidationState& state, bool fCheckPOW) { // Check proof of work matches claimed amount if (fCheckPOW && !CheckProofOfWork(block.GetHash(), block.nBits)) return state.DoS(50, error("CheckBlockHeader() : proof of work failed"), REJECT_INVALID, "high-hash"); return true; } bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) { // These are checks that are independent of context. // Check that the header is valid (particularly PoW). This is mostly // redundant with the call in AcceptBlockHeader. if (!CheckBlockHeader(block, state, fCheckPOW && block.IsProofOfWork())) return state.DoS(100, error("CheckBlock() : CheckBlockHeader failed"), REJECT_INVALID, "bad-header", true); // Check timestamp LogPrint("debug", "%s: block=%s is proof of stake=%d\n", __func__, block.GetHash().ToString().c_str(), block.IsProofOfStake()); if (Params().NetworkID() != CBaseChainParams::REGTEST && block.GetBlockTime() > GetAdjustedTime() + 180) // 3 minute future drift for PoS return state.Invalid(error("CheckBlock() : block timestamp too far in the future"), REJECT_INVALID, "time-too-new"); // Check the merkle root. if (fCheckMerkleRoot) { bool mutated; uint256 hashMerkleRoot2 = block.BuildMerkleTree(&mutated); if (block.hashMerkleRoot != hashMerkleRoot2) return state.DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"), REJECT_INVALID, "bad-txnmrklroot", true); // Check for merkle tree malleability (CVE-2012-2459): repeating sequences // of transactions in a block without affecting the merkle root of a block, // while still invalidating it. if (mutated) return state.DoS(100, error("CheckBlock() : duplicate transaction"), REJECT_INVALID, "bad-txns-duplicate", true); } // All potential-corruption validation must be done before we do any // transaction validation, as otherwise we may mark the header as invalid // because we receive the wrong transactions for it. // Size limits unsigned int nMaxBlockSize = MAX_BLOCK_SIZE_CURRENT; if (block.vtx.empty() || block.vtx.size() > nMaxBlockSize || ::GetSerializeSize(block, SER_NETWORK, PROTOCOL_VERSION) > nMaxBlockSize) return state.DoS(100, error("CheckBlock() : size limits failed"), REJECT_INVALID, "bad-blk-length"); // First transaction must be coinbase, the rest must not be if (block.vtx.empty() || !block.vtx[0].IsCoinBase()) return state.DoS(100, error("CheckBlock() : first tx is not coinbase"), REJECT_INVALID, "bad-cb-missing"); for (unsigned int i = 1; i < block.vtx.size(); i++) if (block.vtx[i].IsCoinBase()) return state.DoS(100, error("CheckBlock() : more than one coinbase"), REJECT_INVALID, "bad-cb-multiple"); if (block.IsProofOfStake()) { // Coinbase output should be empty if proof-of-stake block if (block.vtx[0].vout.size() != 1 || !block.vtx[0].vout[0].IsEmpty()) return state.DoS(100, error("CheckBlock() : coinbase output not empty for proof-of-stake block")); // Second transaction must be coinstake, the rest must not be if (block.vtx.empty() || !block.vtx[1].IsCoinStake()) return state.DoS(100, error("CheckBlock() : second tx is not coinstake")); for (unsigned int i = 2; i < block.vtx.size(); i++) if (block.vtx[i].IsCoinStake()) return state.DoS(100, error("CheckBlock() : more than one coinstake")); } // ----------- swiftTX transaction scanning ----------- if (IsSporkActive(SPORK_3_SWIFTTX_BLOCK_FILTERING)) { BOOST_FOREACH (const CTransaction& tx, block.vtx) { if (!tx.IsCoinBase()) { //only reject blocks when it's based on complete consensus BOOST_FOREACH (const CTxIn& in, tx.vin) { if (mapLockedInputs.count(in.prevout)) { if (mapLockedInputs[in.prevout] != tx.GetHash()) { mapRejectedBlocks.insert(make_pair(block.GetHash(), GetTime())); LogPrintf("CheckBlock() : found conflicting transaction with transaction lock %s %s\n", mapLockedInputs[in.prevout].ToString(), tx.GetHash().ToString()); return state.DoS(0, error("CheckBlock() : found conflicting transaction with transaction lock"), REJECT_INVALID, "conflicting-tx-ix"); } } } } } } else { LogPrintf("CheckBlock() : skipping transaction locking checks\n"); } // masternode payments / budgets CBlockIndex* pindexPrev = chainActive.Tip(); int nHeight = 0; if (pindexPrev != NULL) { if (pindexPrev->GetBlockHash() == block.hashPrevBlock) { nHeight = pindexPrev->nHeight + 1; } else { //out of order BlockMap::iterator mi = mapBlockIndex.find(block.hashPrevBlock); if (mi != mapBlockIndex.end() && (*mi).second) nHeight = (*mi).second->nHeight + 1; } // ztegritycoin // It is entierly possible that we don't have enough data and this could fail // (i.e. the block could indeed be valid). Store the block for later consideration // but issue an initial reject message. // The case also exists that the sending peer could not have enough data to see // that this block is invalid, so don't issue an outright ban. if (nHeight != 0 && !IsInitialBlockDownload()) { if (!IsBlockPayeeValid(block, nHeight)) { mapRejectedBlocks.insert(make_pair(block.GetHash(), GetTime())); return state.DoS(0, error("CheckBlock() : Couldn't find masternode/budget payment"), REJECT_INVALID, "bad-cb-payee"); } } else { if (fDebug) LogPrintf("CheckBlock(): Masternode payment check skipped on sync - skipping IsBlockPayeeValid()\n"); } } // Check transactions bool fZerocoinActive = nHeight >= Params().Zerocoin_StartHeight(); vector<CBigNum> vBlockSerials; for (const CTransaction& tx : block.vtx) { if (tx.nVersion < 7 && block.nVersion >= 7 && block.nTime >= 1559347200) //2019-6-1 return state.DoS(100, error("%s : Transaction %s has invalid version %d", __func__, tx.GetHash().ToString(), tx.nVersion), REJECT_INVALID, "bad-txns-version"); if (!CheckTransaction(tx, fZerocoinActive, nHeight >= Params().Zerocoin_Block_EnforceSerialRange(), state)) return error("CheckBlock() : CheckTransaction failed"); // double check that there are no double spent zECA spends in this block if (tx.IsZerocoinSpend()) { for (const CTxIn& txIn : tx.vin) { if (txIn.scriptSig.IsZerocoinSpend()) { libzerocoin::CoinSpend spend = TxInToZerocoinSpend(txIn); if (count(vBlockSerials.begin(), vBlockSerials.end(), spend.getCoinSerialNumber())) return state.DoS(100, error("%s : Double spending of zECA serial %s in block\n Block: %s", __func__, spend.getCoinSerialNumber().GetHex(), block.ToString())); vBlockSerials.emplace_back(spend.getCoinSerialNumber()); } } } } unsigned int nSigOps = 0; BOOST_FOREACH (const CTransaction& tx, block.vtx) { nSigOps += GetLegacySigOpCount(tx); } unsigned int nMaxBlockSigOps = nHeight >= Params().WALLET_UPGRADE_BLOCK() || Params().NetworkID() != CBaseChainParams::MAIN ? MAX_BLOCK_SIGOPS_CURRENT : MAX_BLOCK_SIGOPS_LEGACY; if (nSigOps > nMaxBlockSigOps) return state.DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"), REJECT_INVALID, "bad-blk-sigops", true); return true; } bool CheckWork(const CBlock& block, CBlockIndex* const pindexPrev) { unsigned int nBitsRequired; if (block.nVersion >= Params().WALLET_UPGRADE_VERSION() || Params().NetworkID() != CBaseChainParams::MAIN) nBitsRequired = GetNextWorkRequired(pindexPrev, &block, block.IsProofOfStake()); else nBitsRequired = GetLegacyNextWorkRequired(pindexPrev, &block, block.IsProofOfStake()); if (block.nBits != nBitsRequired) return error("%s : incorrect proof of work at %d", __func__, pindexPrev->nHeight + 1); return true; } bool ContextualCheckBlockHeader(const CBlockHeader& block, CValidationState& state, CBlockIndex* const pindexPrev) { uint256 hash = block.GetHash(); if (hash == Params().HashGenesisBlock()) return true; assert(pindexPrev); int nHeight = pindexPrev->nHeight + 1; //If this is a reorg, check that it is not too deep int nMaxReorgDepth = GetArg("-maxreorg", Params().MaxReorganizationDepth()); if (chainActive.Height() - nHeight >= nMaxReorgDepth) return state.DoS(1, error("%s: forked chain older than max reorganization depth (height %d)", __func__, chainActive.Height() - nHeight)); // Check timestamp against prev if ((block.nVersion >= Params().WALLET_UPGRADE_VERSION() || Params().NetworkID() != CBaseChainParams::MAIN) && block.GetBlockTime() <= pindexPrev->GetMedianTimePast()) { LogPrintf("Block time = %d , GetMedianTimePast = %d \n", block.GetBlockTime(), pindexPrev->GetMedianTimePast()); return state.Invalid(error("%s : block's timestamp is too early", __func__), REJECT_INVALID, "time-too-old"); } // Version 10 header must be used after Params().Zerocoin_StartHeight(). And never before. if (nHeight >= Params().Zerocoin_StartHeight()) { if (block.nVersion < Params().Zerocoin_HeaderVersion()) return state.DoS(50, error("ContextualCheckBlockHeader() : block version must be at least %d after ZerocoinStartHeight", Params().Zerocoin_HeaderVersion()), REJECT_INVALID, "block-version"); } else { if (block.nVersion >= Params().Zerocoin_HeaderVersion()) return state.DoS(50, error("ContextualCheckBlockHeader() : block version must be below %d before ZerocoinStartHeight", Params().Zerocoin_HeaderVersion()), REJECT_INVALID, "block-version"); } // Check that the block chain matches the known block chain up to a checkpoint if (!Checkpoints::CheckBlock(nHeight, hash)) return state.DoS(100, error("%s : rejected by checkpoint lock-in at %d", __func__, nHeight), REJECT_CHECKPOINT, "checkpoint mismatch"); // Don't accept any forks from the main chain prior to last checkpoint CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(); if (pcheckpoint && nHeight < pcheckpoint->nHeight) return state.DoS(0, error("%s : forked chain older than last checkpoint (height %d)", __func__, nHeight)); return true; } bool IsBlockHashInChain(const uint256& hashBlock) { if (hashBlock == 0 || !mapBlockIndex.count(hashBlock)) return false; return chainActive.Contains(mapBlockIndex[hashBlock]); } bool IsTransactionInChain(const uint256& txId, int& nHeightTx, CTransaction& tx) { uint256 hashBlock; if (!GetTransaction(txId, tx, hashBlock, true)) return false; if (!IsBlockHashInChain(hashBlock)) return false; nHeightTx = mapBlockIndex.at(hashBlock)->nHeight; return true; } bool IsTransactionInChain(const uint256& txId, int& nHeightTx) { CTransaction tx; return IsTransactionInChain(txId, nHeightTx, tx); } bool ContextualCheckBlock(const CBlock& block, CValidationState& state, CBlockIndex* const pindexPrev) { const int nHeight = pindexPrev == NULL ? 0 : pindexPrev->nHeight + 1; // Check that all transactions are finalized BOOST_FOREACH (const CTransaction& tx, block.vtx) if (!IsFinalTx(tx, nHeight, block.GetBlockTime())) { return state.DoS(10, error("%s : contains a non-final transaction", __func__), REJECT_INVALID, "bad-txns-nonfinal"); } // Enforce block.nVersion=2 rule that the coinbase starts with serialized block height // if 750 of the last 1,000 blocks are version 2 or greater (51/100 if testnet): if (Params().NetworkID() != CBaseChainParams::MAIN || (Params().HashGenesisBlock() != uint256("0x00000f98da995de0ef1665c7d3338687923c1199230a44ecbdb5cec9306e4f4e") && block.nVersion >= Params().WALLET_UPGRADE_VERSION()) || CBlockIndex::IsSuperMajority(Params().WALLET_UPGRADE_VERSION(), pindexPrev, Params().EnforceBlockUpgradeMajority())) { CScript expect = CScript() << nHeight; if (block.vtx[0].vin[0].scriptSig.size() < expect.size() || !std::equal(expect.begin(), expect.end(), block.vtx[0].vin[0].scriptSig.begin())) { return state.DoS(100, error("%s : block height mismatch in coinbase", __func__), REJECT_INVALID, "bad-cb-height"); } } return true; } static bool AcceptBlockHeader(const CBlockHeader& block, CValidationState& state, CBlockIndex** ppindex, CBlockIndex* pindexPrev) { AssertLockHeld(cs_main); // Check for duplicate uint256 hash = block.GetHash(); BlockMap::iterator miSelf = mapBlockIndex.find(hash); CBlockIndex* pindex = NULL; if (hash != Params().HashGenesisBlock()) { if (miSelf != mapBlockIndex.end()) { // Block header is already known. pindex = miSelf->second; if (ppindex) *ppindex = pindex; if (pindex->nStatus & BLOCK_FAILED_MASK) return state.Invalid(error("%s : block %s is marked invalid", __func__, hash.ToString()), 0, "duplicate"); return true; } if (!CheckBlockHeader(block, state, block.nNonce != 0)) // nNonce = 0 for PoS blocks return error("%s: Consensus::CheckBlockHeader: %s, %s", __func__, hash.ToString(), FormatStateMessage(state)); // Get prev block index BlockMap::iterator mi = mapBlockIndex.find(block.hashPrevBlock); if (mi == mapBlockIndex.end()) return state.DoS(0, error("%s : prev block %s not found", __func__, block.hashPrevBlock.ToString().c_str()), 0, "bad-prevblk"); pindexPrev = (*mi).second; if (pindexPrev->nStatus & BLOCK_FAILED_MASK) { //If this "invalid" block is an exact match from the checkpoints, then reconsider it if (pindex && Checkpoints::CheckBlock(pindex->nHeight - 1, block.hashPrevBlock, true)) { LogPrintf("%s : Reconsidering block %s height %d\n", __func__, pindexPrev->GetBlockHash().GetHex(), pindexPrev->nHeight); ReconsiderBlock(pindexPrev); CValidationState statePrev; ActivateBestChain(statePrev); return true; } return state.DoS(100, error("%s : prev block height=%d hash=%s is invalid, unable to add block %s", __func__, pindexPrev->nHeight, block.hashPrevBlock.GetHex(), block.GetHash().GetHex()), REJECT_INVALID, "bad-prevblk"); } assert(pindexPrev); if (!ContextualCheckBlockHeader(block, state, pindexPrev)) return error("%s: Consensus::ContextualCheckBlockHeader: %s, %s", __func__, hash.ToString(), FormatStateMessage(state)); } if (pindex == NULL) pindex = AddToBlockIndex(block); if (ppindex) *ppindex = pindex; return true; } static bool AcceptBlock(CBlock& block, CValidationState& state, CBlockIndex** ppindex, bool fRequested, CDiskBlockPos* dbp, bool fAlreadyCheckedBlock) { AssertLockHeld(cs_main); CBlockIndex*& pindex = *ppindex; // Get prev block index CBlockIndex* pindexPrev = NULL; if (!AcceptBlockHeader(block, state, &pindex, pindexPrev)) return false; if (block.GetHash() != Params().HashGenesisBlock() && pindexPrev != NULL && !CheckWork(block, pindexPrev)) return false; // Try to process all requested blocks that we don't have, but only // process an unrequested block if it's new and has enough work to // advance our tip, and isn't too many blocks ahead. bool fAlreadyHave = pindex->nStatus & BLOCK_HAVE_DATA; // Blocks that are too out-of-order needlessly limit the effectiveness of // pruning, because pruning will not delete block files that contain any // blocks which are too close in height to the tip. Apply this test // regardless of whether pruning is enabled; it should generally be safe to // not process unrequested blocks. bool fTooFarAhead = (pindex->nHeight > int(chainActive.Height() + MIN_BLOCKS_TO_KEEP)); // TODO: deal better with return value and error conditions for duplicate // and unrequested blocks. if (fAlreadyHave) return true; if (!fRequested) { // If we didn't ask for it: if (fTooFarAhead) return true; // Block height is too high } if ((!fAlreadyCheckedBlock && !CheckBlock(block, state)) || !ContextualCheckBlock(block, state, pindex->pprev)) { if (state.IsInvalid() && !state.CorruptionPossible()) { pindex->nStatus |= BLOCK_FAILED_VALID; setDirtyBlockIndex.insert(pindex); } return error("%s: %s", __func__, FormatStateMessage(state)); } // Write block to history file try { unsigned int nBlockSize = ::GetSerializeSize(block, SER_DISK, CLIENT_VERSION); CDiskBlockPos blockPos; if (dbp != NULL) blockPos = *dbp; if (!FindBlockPos(state, blockPos, nBlockSize + 8, pindex->nHeight, block.GetBlockTime(), dbp != NULL)) return error("AcceptBlock() : FindBlockPos failed"); if (dbp == NULL) if (!WriteBlockToDisk(block, blockPos)) return state.Abort("Failed to write block"); if (!ReceivedBlockTransactions(block, state, pindex, blockPos)) return error("AcceptBlock() : ReceivedBlockTransactions failed"); } catch (std::runtime_error& e) { return state.Abort(std::string("System error: ") + e.what()); } return true; } bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired) { unsigned int nToCheck = Params().ToCheckBlockUpgradeMajority(); unsigned int nFound = 0; for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++) { if (pstart->nVersion >= minVersion) ++nFound; pstart = pstart->pprev; } return (nFound >= nRequired); } /** Turn the lowest '1' bit in the binary representation of a number into a '0'. */ int static inline InvertLowestOne(int n) { return n & (n - 1); } /** Compute what height to jump back to with the CBlockIndex::pskip pointer. */ int static inline GetSkipHeight(int height) { if (height < 2) return 0; // Determine which height to jump back to. Any number strictly lower than height is acceptable, // but the following expression seems to perform well in simulations (max 110 steps to go back // up to 2**18 blocks). return (height & 1) ? InvertLowestOne(InvertLowestOne(height - 1)) + 1 : InvertLowestOne(height); } CBlockIndex* CBlockIndex::GetAncestor(int height) { if (height > nHeight || height < 0) return NULL; CBlockIndex* pindexWalk = this; int heightWalk = nHeight; while (heightWalk > height) { int heightSkip = GetSkipHeight(heightWalk); int heightSkipPrev = GetSkipHeight(heightWalk - 1); if (heightSkip == height || (heightSkip > height && !(heightSkipPrev < heightSkip - 2 && heightSkipPrev >= height))) { // Only follow pskip if pprev->pskip isn't better than pskip->pprev. pindexWalk = pindexWalk->pskip; heightWalk = heightSkip; } else { pindexWalk = pindexWalk->pprev; heightWalk--; } } return pindexWalk; } const CBlockIndex* CBlockIndex::GetAncestor(int height) const { return const_cast<CBlockIndex*>(this)->GetAncestor(height); } void CBlockIndex::BuildSkip() { if (pprev) pskip = pprev->GetAncestor(GetSkipHeight(nHeight)); } bool ProcessNewBlock(CValidationState& state, CNode* pfrom, CBlock* pblock, CDiskBlockPos* dbp) { // Preliminary checks bool checked = CheckBlock(*pblock, state); int nMints = 0; int nSpends = 0; for (const CTransaction& tx : pblock->vtx) { if (tx.ContainsZerocoins()) { for (const CTxIn& in : tx.vin) { if (in.scriptSig.IsZerocoinSpend()) nSpends++; } for (const CTxOut& out : tx.vout) { if (out.IsZerocoinMint()) nMints++; } } } if (nMints || nSpends) LogPrintf("%s : block contains %d zECA mints and %d zECA spends\n", __func__, nMints, nSpends); if (!CheckBlockSignature(*pblock)) return error("ProcessNewBlock() : bad proof-of-stake block signature"); // Not required for header sync enabled clients if (pblock->GetHash() != Params().HashGenesisBlock() && pfrom != NULL && pfrom->nVersion < SENDHEADERS_VERSION) { //if we get this far, check if the prev block is our prev block, if not then request sync and return false BlockMap::iterator mi = mapBlockIndex.find(pblock->hashPrevBlock); if (mi == mapBlockIndex.end()) { pfrom->PushMessage("getblocks", chainActive.GetLocator(), uint256(0)); return false; } } { LOCK(cs_main); // Replaces the former TRY_LOCK loop because busy waiting wastes too much resources bool fRequested = MarkBlockAsReceived(pblock->GetHash()); if (!checked) { return error ("%s : CheckBlock FAILED for block %s", __func__, pblock->GetHash().GetHex()); } // Store to disk CBlockIndex* pindex = NULL; bool ret = AcceptBlock(*pblock, state, &pindex, fRequested, dbp, checked); if (pindex && pfrom) { mapBlockSource[pindex->GetBlockHash()] = pfrom->GetId(); } CheckBlockIndex (); if (!ret) return error ("%s : AcceptBlock FAILED", __func__); } if (!ActivateBestChain(state, pblock, checked)) return error("%s : ActivateBestChain failed", __func__); if (!fLiteMode) { if (masternodeSync.RequestedMasternodeAssets > MASTERNODE_SYNC_LIST) { obfuScationPool.NewBlock(); masternodePayments.ProcessBlock(GetHeight() + 10); budget.NewBlock(); } } if (pwalletMain) { // If turned on MultiSend will send a transaction (or more) on the after maturity of a stake if (pwalletMain->isMultiSendEnabled()) pwalletMain->MultiSend(); // If turned on Auto Combine will scan wallet for dust to combine if (pwalletMain->fCombineDust) pwalletMain->AutoCombineDust(); } return true; } bool TestBlockValidity(CValidationState& state, const CBlock& block, CBlockIndex* const pindexPrev, bool fCheckPOW, bool fCheckMerkleRoot) { AssertLockHeld(cs_main); assert(pindexPrev); if (pindexPrev != chainActive.Tip()) { LogPrintf("%s : No longer working on chain tip\n", __func__); return false; } CCoinsViewCache viewNew(pcoinsTip); CBlockIndex indexDummy(block); indexDummy.pprev = pindexPrev; indexDummy.nHeight = pindexPrev->nHeight + 1; // NOTE: CheckBlockHeader is called by CheckBlock if (!ContextualCheckBlockHeader(block, state, pindexPrev)) return error("%s: Consensus::ContextualCheckBlockHeader: %s", __func__, FormatStateMessage(state)); if (!CheckBlock(block, state, fCheckPOW, fCheckMerkleRoot)) return error("%s: Consensus::CheckBlock: %s", __func__, FormatStateMessage(state)); if (!ContextualCheckBlock(block, state, pindexPrev)) return error("%s: Consensus::ContextualCheckBlock: %s", __func__, FormatStateMessage(state)); if (!ConnectBlock(block, state, &indexDummy, viewNew, true)) return false; assert(state.IsValid()); return true; } bool AbortNode(const std::string& strMessage, const std::string& userMessage) { strMiscWarning = strMessage; LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox( userMessage.empty() ? _("Error: A fatal internal error occured, see debug.log for details") : userMessage, "", CClientUIInterface::MSG_ERROR); StartShutdown(); return false; } bool CheckDiskSpace(uint64_t nAdditionalBytes) { uint64_t nFreeBytesAvailable = filesystem::space(GetDataDir()).available; // Check for nMinDiskSpace bytes (currently 50MB) if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes) return AbortNode("Disk space is low!", _("Error: Disk space is low!")); return true; } FILE* OpenDiskFile(const CDiskBlockPos& pos, const char* prefix, bool fReadOnly) { if (pos.IsNull()) return NULL; boost::filesystem::path path = GetBlockPosFilename(pos, prefix); boost::filesystem::create_directories(path.parent_path()); FILE* file = fopen(path.string().c_str(), "rb+"); if (!file && !fReadOnly) file = fopen(path.string().c_str(), "wb+"); if (!file) { LogPrintf("Unable to open file %s\n", path.string()); return NULL; } if (pos.nPos) { if (fseek(file, pos.nPos, SEEK_SET)) { LogPrintf("Unable to seek to position %u of %s\n", pos.nPos, path.string()); fclose(file); return NULL; } } return file; } FILE* OpenBlockFile(const CDiskBlockPos& pos, bool fReadOnly) { return OpenDiskFile(pos, "blk", fReadOnly); } FILE* OpenUndoFile(const CDiskBlockPos& pos, bool fReadOnly) { return OpenDiskFile(pos, "rev", fReadOnly); } boost::filesystem::path GetBlockPosFilename(const CDiskBlockPos& pos, const char* prefix) { return GetDataDir() / "blocks" / strprintf("%s%05u.dat", prefix, pos.nFile); } CBlockIndex* InsertBlockIndex(uint256 hash) { if (hash == 0) return NULL; // Return existing BlockMap::iterator mi = mapBlockIndex.find(hash); if (mi != mapBlockIndex.end()) return (*mi).second; // Create new CBlockIndex* pindexNew = new CBlockIndex(); if (!pindexNew) throw runtime_error("LoadBlockIndex() : new CBlockIndex failed"); mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first; pindexNew->phashBlock = &((*mi).first); return pindexNew; } bool static LoadBlockIndexDB(string& strError) { if (!pblocktree->LoadBlockIndexGuts()) return false; boost::this_thread::interruption_point(); // Calculate nChainWork vector<pair<int, CBlockIndex*> > vSortedByHeight; vSortedByHeight.reserve(mapBlockIndex.size()); for (const std::pair<const uint256, CBlockIndex*>& item : mapBlockIndex) { CBlockIndex* pindex = item.second; vSortedByHeight.push_back(make_pair(pindex->nHeight, pindex)); } std::sort(vSortedByHeight.begin(), vSortedByHeight.end()); for (const PAIRTYPE(int, CBlockIndex*) & item : vSortedByHeight) { // Stop if shutdown was requested if (ShutdownRequested()) return false; CBlockIndex* pindex = item.second; pindex->nChainWork = (pindex->pprev ? pindex->pprev->nChainWork : 0) + GetBlockProof(*pindex); if (pindex->nStatus & BLOCK_HAVE_DATA) { if (pindex->pprev) { if (pindex->pprev->nChainTx) { pindex->nChainTx = pindex->pprev->nChainTx + pindex->nTx; } else { pindex->nChainTx = 0; mapBlocksUnlinked.insert(std::make_pair(pindex->pprev, pindex)); } } else { pindex->nChainTx = pindex->nTx; } } if (pindex->IsValid(BLOCK_VALID_TRANSACTIONS) && (pindex->nChainTx || pindex->pprev == NULL)) setBlockIndexCandidates.insert(pindex); if (pindex->nStatus & BLOCK_FAILED_MASK && (!pindexBestInvalid || pindex->nChainWork > pindexBestInvalid->nChainWork)) pindexBestInvalid = pindex; if (pindex->pprev) pindex->BuildSkip(); if (pindex->IsValid(BLOCK_VALID_TREE) && (pindexBestHeader == NULL || CBlockIndexWorkComparator()(pindexBestHeader, pindex))) pindexBestHeader = pindex; } // Load block file info pblocktree->ReadLastBlockFile(nLastBlockFile); vinfoBlockFile.resize(nLastBlockFile + 1); LogPrintf("%s: last block file = %i\n", __func__, nLastBlockFile); for (int nFile = 0; nFile <= nLastBlockFile; nFile++) { pblocktree->ReadBlockFileInfo(nFile, vinfoBlockFile[nFile]); } LogPrintf("%s: last block file info: %s\n", __func__, vinfoBlockFile[nLastBlockFile].ToString()); for (int nFile = nLastBlockFile + 1; true; nFile++) { CBlockFileInfo info; if (pblocktree->ReadBlockFileInfo(nFile, info)) { vinfoBlockFile.push_back(info); } else { break; } } // Check presence of blk files LogPrintf("Checking all blk files are present...\n"); set<int> setBlkDataFiles; for (const std::pair<const uint256, CBlockIndex*>& item : mapBlockIndex) { CBlockIndex* pindex = item.second; if (pindex->nStatus & BLOCK_HAVE_DATA) { setBlkDataFiles.insert(pindex->nFile); } } for (std::set<int>::iterator it = setBlkDataFiles.begin(); it != setBlkDataFiles.end(); it++) { CDiskBlockPos pos(*it, 0); if (CAutoFile(OpenBlockFile(pos, true), SER_DISK, CLIENT_VERSION).IsNull()) { return false; } } //Check if the shutdown procedure was followed on last client exit bool fLastShutdownWasPrepared = true; pblocktree->ReadFlag("shutdown", fLastShutdownWasPrepared); LogPrintf("%s: Last shutdown was prepared: %s\n", __func__, fLastShutdownWasPrepared); // Check whether we need to continue reindexing bool fReindexing = false; pblocktree->ReadReindexing(fReindexing); fReindex |= fReindexing; // Check whether we have a transaction index pblocktree->ReadFlag("txindex", fTxIndex); LogPrintf("LoadBlockIndexDB(): transaction index %s\n", fTxIndex ? "enabled" : "disabled"); // If this is written true before the next client init, then we know the shutdown process failed pblocktree->WriteFlag("shutdown", false); // Load pointer to end of best chain BlockMap::iterator it = mapBlockIndex.find(pcoinsTip->GetBestBlock()); if (it == mapBlockIndex.end()) return true; chainActive.SetTip(it->second); PruneBlockIndexCandidates(); LogPrintf("LoadBlockIndexDB(): hashBestChain=%s height=%d date=%s progress=%f\n", chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()), Checkpoints::GuessVerificationProgress(chainActive.Tip())); return true; } CVerifyDB::CVerifyDB() { uiInterface.ShowProgress(_("Verifying blocks..."), 0); } CVerifyDB::~CVerifyDB() { uiInterface.ShowProgress("", 100); } bool CVerifyDB::VerifyDB(CCoinsView* coinsview, int nCheckLevel, int nCheckDepth) { LOCK(cs_main); if (chainActive.Tip() == NULL || chainActive.Tip()->pprev == NULL) return true; // Verify blocks in the best chain if (nCheckDepth <= 0) nCheckDepth = 1000000000; // suffices until the year 19000 if (nCheckDepth > chainActive.Height()) nCheckDepth = chainActive.Height(); nCheckLevel = std::max(0, std::min(4, nCheckLevel)); LogPrintf("Verifying last %i blocks at level %i\n", nCheckDepth, nCheckLevel); CCoinsViewCache coins(coinsview); CBlockIndex* pindexState = chainActive.Tip(); CBlockIndex* pindexFailure = NULL; int nGoodTransactions = 0; CValidationState state; for (CBlockIndex* pindex = chainActive.Tip(); pindex && pindex->pprev; pindex = pindex->pprev) { boost::this_thread::interruption_point(); uiInterface.ShowProgress(_("Verifying blocks..."), std::max(1, std::min(99, (int)(((double)(chainActive.Height() - pindex->nHeight)) / (double)nCheckDepth * (nCheckLevel >= 4 ? 50 : 100))))); if (pindex->nHeight < chainActive.Height() - nCheckDepth) break; CBlock block; // check level 0: read from disk if (!ReadBlockFromDisk(block, pindex)) return error("VerifyDB() : *** ReadBlockFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString()); // check level 1: verify block validity if (nCheckLevel >= 1 && !CheckBlock(block, state)) return error("VerifyDB() : *** found bad block at %d, hash=%s (%s)\n", pindex->nHeight, pindex->GetBlockHash().ToString(), FormatStateMessage(state)); // check level 2: verify undo validity if (nCheckLevel >= 2 && pindex) { CBlockUndo undo; CDiskBlockPos pos = pindex->GetUndoPos(); if (!pos.IsNull()) { if (!undo.ReadFromDisk(pos, pindex->pprev->GetBlockHash())) return error("VerifyDB() : *** found bad undo data at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString()); } } // check level 3: check for inconsistencies during memory-only disconnect of tip blocks if (nCheckLevel >= 3 && pindex == pindexState && (coins.GetCacheSize() + pcoinsTip->GetCacheSize()) <= nCoinCacheSize) { bool fClean = true; if (!DisconnectBlock(block, state, pindex, coins, &fClean)) return error("VerifyDB() : *** irrecoverable inconsistency in block data at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString()); pindexState = pindex->pprev; if (!fClean) { nGoodTransactions = 0; pindexFailure = pindex; } else nGoodTransactions += block.vtx.size(); } if (ShutdownRequested()) return true; } if (pindexFailure) return error("VerifyDB() : *** coin database inconsistencies found (last %i blocks, %i good transactions before that)\n", chainActive.Height() - pindexFailure->nHeight + 1, nGoodTransactions); // check level 4: try reconnecting blocks if (nCheckLevel >= 4) { CBlockIndex* pindex = pindexState; while (pindex != chainActive.Tip()) { boost::this_thread::interruption_point(); uiInterface.ShowProgress(_("Verifying blocks..."), std::max(1, std::min(99, 100 - (int)(((double)(chainActive.Height() - pindex->nHeight)) / (double)nCheckDepth * 50)))); pindex = chainActive.Next(pindex); CBlock block; if (!ReadBlockFromDisk(block, pindex)) return error("VerifyDB() : *** ReadBlockFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString()); if (!ConnectBlock(block, state, pindex, coins, false)) return error("VerifyDB() : *** found unconnectable block at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString()); } } LogPrintf("No coin database inconsistencies in last %i blocks (%i transactions)\n", chainActive.Height() - pindexState->nHeight, nGoodTransactions); return true; } void UnloadBlockIndex() { LOCK(cs_main); setBlockIndexCandidates.clear(); chainActive.SetTip(NULL); pindexBestInvalid = NULL; pindexBestHeader = NULL; mempool.clear(); mapOrphanTransactions.clear(); mapOrphanTransactionsByPrev.clear(); nSyncStarted = 0; mapBlocksUnlinked.clear(); vinfoBlockFile.clear(); nLastBlockFile = 0; nBlockSequenceId = 1; mapBlockSource.clear(); mapBlocksInFlight.clear(); nQueuedValidatedHeaders = 0; nPreferredDownload = 0; setDirtyBlockIndex.clear(); setDirtyFileInfo.clear(); mapNodeState.clear(); for (BlockMap::value_type& entry : mapBlockIndex) { delete entry.second; } mapBlockIndex.clear(); } bool LoadBlockIndex(string& strError) { // Load block index from databases if (!fReindex && !LoadBlockIndexDB(strError)) return false; return true; } bool InitBlockIndex() { LOCK(cs_main); // Check whether we're already initialized if (chainActive.Genesis() != NULL) return true; // Use the provided setting for -txindex in the new database fTxIndex = GetBoolArg("-txindex", true); pblocktree->WriteFlag("txindex", fTxIndex); LogPrintf("Initializing databases...\n"); // Only add the genesis block if not reindexing (in which case we reuse the one already on disk) if (!fReindex) { try { CBlock& block = const_cast<CBlock&>(Params().GenesisBlock()); // Start new block file unsigned int nBlockSize = ::GetSerializeSize(block, SER_DISK, CLIENT_VERSION); CDiskBlockPos blockPos; CValidationState state; if (!FindBlockPos(state, blockPos, nBlockSize + 8, 0, block.GetBlockTime())) return error("LoadBlockIndex() : FindBlockPos failed"); if (!WriteBlockToDisk(block, blockPos)) return error("LoadBlockIndex() : writing genesis block to disk failed"); CBlockIndex* pindex = AddToBlockIndex(block); if (!ReceivedBlockTransactions(block, state, pindex, blockPos)) return error("LoadBlockIndex() : genesis block not accepted"); if (!ActivateBestChain(state, &block)) return error("LoadBlockIndex() : genesis block cannot be activated"); // Force a chainstate write so that when we VerifyDB in a moment, it doesnt check stale data return FlushStateToDisk(state, FLUSH_STATE_ALWAYS); } catch (std::runtime_error& e) { return error("LoadBlockIndex() : failed to initialize block database: %s", e.what()); } } return true; } bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos* dbp) { // Map of disk positions for blocks with unknown parent (only used for reindex) static std::multimap<uint256, CDiskBlockPos> mapBlocksUnknownParent; int64_t nStart = GetTimeMillis(); int nLoaded = 0; try { // This takes over fileIn and calls fclose() on it in the CBufferedFile destructor CBufferedFile blkdat(fileIn, 2 * MAX_BLOCK_SIZE_CURRENT, MAX_BLOCK_SIZE_CURRENT + 8, SER_DISK, CLIENT_VERSION); uint64_t nRewind = blkdat.GetPos(); while (!blkdat.eof()) { boost::this_thread::interruption_point(); blkdat.SetPos(nRewind); nRewind++; // start one byte further next time, in case of failure blkdat.SetLimit(); // remove former limit unsigned int nSize = 0; try { // locate a header unsigned char buf[MESSAGE_START_SIZE]; blkdat.FindByte(Params().MessageStart()[0]); nRewind = blkdat.GetPos() + 1; blkdat >> FLATDATA(buf); if (memcmp(buf, Params().MessageStart(), MESSAGE_START_SIZE)) continue; // read size blkdat >> nSize; if (nSize < 80 || nSize > MAX_BLOCK_SIZE_CURRENT) continue; } catch (const std::exception&) { // no valid block header found; don't complain break; } try { // read block uint64_t nBlockPos = blkdat.GetPos(); if (dbp) dbp->nPos = nBlockPos; blkdat.SetLimit(nBlockPos + nSize); blkdat.SetPos(nBlockPos); CBlock block; blkdat >> block; nRewind = blkdat.GetPos(); // detect out of order blocks, and store them for later uint256 hash = block.GetHash(); if (hash != Params().HashGenesisBlock() && mapBlockIndex.find(block.hashPrevBlock) == mapBlockIndex.end()) { LogPrint("reindex", "%s: Out of order block %s, parent %s not known\n", __func__, hash.ToString(), block.hashPrevBlock.ToString()); if (dbp) mapBlocksUnknownParent.insert(std::make_pair(block.hashPrevBlock, *dbp)); continue; } // process in case the block isn't known yet if (mapBlockIndex.count(hash) == 0 || (mapBlockIndex[hash]->nStatus & BLOCK_HAVE_DATA) == 0) { CValidationState state; if (ProcessNewBlock(state, NULL, &block, dbp)) nLoaded++; if (state.IsError()) break; } else if (hash != Params().HashGenesisBlock() && mapBlockIndex[hash]->nHeight % 1000 == 0) { LogPrintf("Block Import: already had block %s at height %d\n", hash.ToString(), mapBlockIndex[hash]->nHeight); } // Recursively process earlier encountered successors of this block deque<uint256> queue; queue.push_back(hash); while (!queue.empty()) { uint256 head = queue.front(); queue.pop_front(); std::pair<std::multimap<uint256, CDiskBlockPos>::iterator, std::multimap<uint256, CDiskBlockPos>::iterator> range = mapBlocksUnknownParent.equal_range(head); while (range.first != range.second) { std::multimap<uint256, CDiskBlockPos>::iterator it = range.first; if (ReadBlockFromDisk(block, it->second)) { LogPrintf("%s: Processing out of order child %s of %s\n", __func__, block.GetHash().ToString(), head.ToString()); CValidationState dummy; if (ProcessNewBlock(dummy, NULL, &block, &it->second)) { nLoaded++; queue.push_back(block.GetHash()); } } range.first++; mapBlocksUnknownParent.erase(it); } } } catch (std::exception& e) { LogPrintf("%s : Deserialize or I/O error - %s", __func__, e.what()); } } } catch (std::runtime_error& e) { AbortNode(std::string("System error: ") + e.what()); } if (nLoaded > 0) LogPrintf("Loaded %i blocks from external file in %dms\n", nLoaded, GetTimeMillis() - nStart); return nLoaded > 0; } void static CheckBlockIndex() { if (!fCheckBlockIndex) { return; } LOCK(cs_main); // During a reindex, we read the genesis block and call CheckBlockIndex before ActivateBestChain, // so we have the genesis block in mapBlockIndex but no active chain. (A few of the tests when // iterating the block tree require that chainActive has been initialized.) if (chainActive.Height() < 0) { assert(mapBlockIndex.size() <= 1); return; } // Build forward-pointing map of the entire block tree. std::multimap<CBlockIndex*, CBlockIndex*> forward; for (BlockMap::iterator it = mapBlockIndex.begin(); it != mapBlockIndex.end(); it++) { forward.insert(std::make_pair(it->second->pprev, it->second)); } assert(forward.size() == mapBlockIndex.size()); std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> rangeGenesis = forward.equal_range(NULL); CBlockIndex* pindex = rangeGenesis.first->second; rangeGenesis.first++; assert(rangeGenesis.first == rangeGenesis.second); // There is only one index entry with parent NULL. // Iterate over the entire block tree, using depth-first search. // Along the way, remember whether there are blocks on the path from genesis // block being explored which are the first to have certain properties. size_t nNodes = 0; int nHeight = 0; CBlockIndex* pindexFirstInvalid = NULL; // Oldest ancestor of pindex which is invalid. CBlockIndex* pindexFirstMissing = NULL; // Oldest ancestor of pindex which does not have BLOCK_HAVE_DATA. CBlockIndex* pindexFirstNotTreeValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_TREE (regardless of being valid or not). CBlockIndex* pindexFirstNotChainValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_CHAIN (regardless of being valid or not). CBlockIndex* pindexFirstNotScriptsValid = NULL; // Oldest ancestor of pindex which does not have BLOCK_VALID_SCRIPTS (regardless of being valid or not). while (pindex != NULL) { nNodes++; if (pindexFirstInvalid == NULL && pindex->nStatus & BLOCK_FAILED_VALID) pindexFirstInvalid = pindex; if (pindexFirstMissing == NULL && !(pindex->nStatus & BLOCK_HAVE_DATA)) pindexFirstMissing = pindex; if (pindex->pprev != NULL && pindexFirstNotTreeValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_TREE) pindexFirstNotTreeValid = pindex; if (pindex->pprev != NULL && pindexFirstNotChainValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_CHAIN) pindexFirstNotChainValid = pindex; if (pindex->pprev != NULL && pindexFirstNotScriptsValid == NULL && (pindex->nStatus & BLOCK_VALID_MASK) < BLOCK_VALID_SCRIPTS) pindexFirstNotScriptsValid = pindex; // Begin: actual consistency checks. if (pindex->pprev == NULL) { // Genesis block checks. assert(pindex->GetBlockHash() == Params().HashGenesisBlock()); // Genesis block's hash must match. assert(pindex == chainActive.Genesis()); // The current active chain's genesis block must be this block. } // HAVE_DATA is equivalent to VALID_TRANSACTIONS and equivalent to nTx > 0 (we stored the number of transactions in the block) assert(!(pindex->nStatus & BLOCK_HAVE_DATA) == (pindex->nTx == 0)); assert(((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TRANSACTIONS) == (pindex->nTx > 0)); if (pindex->nChainTx == 0) assert(pindex->nSequenceId == 0); // nSequenceId can't be set for blocks that aren't linked // All parents having data is equivalent to all parents being VALID_TRANSACTIONS, which is equivalent to nChainTx being set. assert((pindexFirstMissing != NULL) == (pindex->nChainTx == 0)); // nChainTx == 0 is used to signal that all parent block's transaction data is available. assert(pindex->nHeight == nHeight); // nHeight must be consistent. assert(pindex->pprev == NULL || pindex->nChainWork >= pindex->pprev->nChainWork); // For every block except the genesis block, the chainwork must be larger than the parent's. assert(nHeight < 2 || (pindex->pskip && (pindex->pskip->nHeight < nHeight))); // The pskip pointer must point back for all but the first 2 blocks. assert(pindexFirstNotTreeValid == NULL); // All mapBlockIndex entries must at least be TREE valid if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_TREE) assert(pindexFirstNotTreeValid == NULL); // TREE valid implies all parents are TREE valid if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_CHAIN) assert(pindexFirstNotChainValid == NULL); // CHAIN valid implies all parents are CHAIN valid if ((pindex->nStatus & BLOCK_VALID_MASK) >= BLOCK_VALID_SCRIPTS) assert(pindexFirstNotScriptsValid == NULL); // SCRIPTS valid implies all parents are SCRIPTS valid if (pindexFirstInvalid == NULL) { // Checks for not-invalid blocks. assert((pindex->nStatus & BLOCK_FAILED_MASK) == 0); // The failed mask cannot be set for blocks without invalid parents. } if (!CBlockIndexWorkComparator()(pindex, chainActive.Tip()) && pindexFirstMissing == NULL) { if (pindexFirstInvalid == NULL) { // If this block sorts at least as good as the current tip and is valid, it must be in setBlockIndexCandidates. assert(setBlockIndexCandidates.count(pindex)); } } else { // If this block sorts worse than the current tip, it cannot be in setBlockIndexCandidates. assert(setBlockIndexCandidates.count(pindex) == 0); } // Check whether this block is in mapBlocksUnlinked. std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> rangeUnlinked = mapBlocksUnlinked.equal_range(pindex->pprev); bool foundInUnlinked = false; while (rangeUnlinked.first != rangeUnlinked.second) { assert(rangeUnlinked.first->first == pindex->pprev); if (rangeUnlinked.first->second == pindex) { foundInUnlinked = true; break; } rangeUnlinked.first++; } if (pindex->pprev && pindex->nStatus & BLOCK_HAVE_DATA && pindexFirstMissing != NULL) { if (pindexFirstInvalid == NULL) { // If this block has block data available, some parent doesn't, and has no invalid parents, it must be in mapBlocksUnlinked. assert(foundInUnlinked); } } else { // If this block does not have block data available, or all parents do, it cannot be in mapBlocksUnlinked. assert(!foundInUnlinked); } // assert(pindex->GetBlockHash() == pindex->GetBlockHeader().GetHash()); // Perhaps too slow // End: actual consistency checks. // Try descending into the first subnode. std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> range = forward.equal_range(pindex); if (range.first != range.second) { // A subnode was found. pindex = range.first->second; nHeight++; continue; } // This is a leaf node. // Move upwards until we reach a node of which we have not yet visited the last child. while (pindex) { // We are going to either move to a parent or a sibling of pindex. // If pindex was the first with a certain property, unset the corresponding variable. if (pindex == pindexFirstInvalid) pindexFirstInvalid = NULL; if (pindex == pindexFirstMissing) pindexFirstMissing = NULL; if (pindex == pindexFirstNotTreeValid) pindexFirstNotTreeValid = NULL; if (pindex == pindexFirstNotChainValid) pindexFirstNotChainValid = NULL; if (pindex == pindexFirstNotScriptsValid) pindexFirstNotScriptsValid = NULL; // Find our parent. CBlockIndex* pindexPar = pindex->pprev; // Find which child we just visited. std::pair<std::multimap<CBlockIndex*, CBlockIndex*>::iterator, std::multimap<CBlockIndex*, CBlockIndex*>::iterator> rangePar = forward.equal_range(pindexPar); while (rangePar.first->second != pindex) { assert(rangePar.first != rangePar.second); // Our parent must have at least the node we're coming from as child. rangePar.first++; } // Proceed to the next one. rangePar.first++; if (rangePar.first != rangePar.second) { // Move to the sibling. pindex = rangePar.first->second; break; } else { // Move up further. pindex = pindexPar; nHeight--; continue; } } } // Check that we actually traversed the entire map. assert(nNodes == forward.size()); } ////////////////////////////////////////////////////////////////////////////// // // CAlert // string GetWarnings(string strFor) { int nPriority = 0; string strStatusBar; string strRPC; if (!CLIENT_VERSION_IS_RELEASE) strStatusBar = _("This is a pre-release test build - use at your own risk - do not use for staking or merchant applications!"); if (GetBoolArg("-testsafemode", false)) strStatusBar = strRPC = "testsafemode enabled"; // Misc warnings like out of disk space and clock is wrong if (strMiscWarning != "") { nPriority = 1000; strStatusBar = strMiscWarning; } if (fLargeWorkForkFound) { nPriority = 2000; strStatusBar = strRPC = _("Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues."); } else if (fLargeWorkInvalidChainFound) { nPriority = 2000; strStatusBar = strRPC = _("Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade."); } // Alerts { LOCK(cs_mapAlerts); BOOST_FOREACH (PAIRTYPE(const uint256, CAlert) & item, mapAlerts) { const CAlert& alert = item.second; if (alert.AppliesToMe() && alert.nPriority > nPriority) { nPriority = alert.nPriority; strStatusBar = alert.strStatusBar; } } } if (strFor == "statusbar") return strStatusBar; else if (strFor == "rpc") return strRPC; assert(!"GetWarnings() : invalid parameter"); return "error"; } ////////////////////////////////////////////////////////////////////////////// // // Messages // bool static AlreadyHave(const CInv& inv) { switch (inv.type) { case MSG_TX: { bool txInMap = false; txInMap = mempool.exists(inv.hash); return txInMap || mapOrphanTransactions.count(inv.hash) || pcoinsTip->HaveCoins(inv.hash); } case MSG_DSTX: return mapObfuscationBroadcastTxes.count(inv.hash); case MSG_BLOCK: return mapBlockIndex.count(inv.hash); case MSG_TXLOCK_REQUEST: return mapTxLockReq.count(inv.hash) || mapTxLockReqRejected.count(inv.hash); case MSG_TXLOCK_VOTE: return mapTxLockVote.count(inv.hash); case MSG_SPORK: return mapSporks.count(inv.hash); case MSG_MASTERNODE_WINNER: if (masternodePayments.mapMasternodePayeeVotes.count(inv.hash)) { masternodeSync.AddedMasternodeWinner(inv.hash); return true; } return false; case MSG_BUDGET_VOTE: if (budget.mapSeenMasternodeBudgetVotes.count(inv.hash)) { masternodeSync.AddedBudgetItem(inv.hash); return true; } return false; case MSG_BUDGET_PROPOSAL: if (budget.mapSeenMasternodeBudgetProposals.count(inv.hash)) { masternodeSync.AddedBudgetItem(inv.hash); return true; } return false; case MSG_BUDGET_FINALIZED_VOTE: if (budget.mapSeenFinalizedBudgetVotes.count(inv.hash)) { masternodeSync.AddedBudgetItem(inv.hash); return true; } return false; case MSG_BUDGET_FINALIZED: if (budget.mapSeenFinalizedBudgets.count(inv.hash)) { masternodeSync.AddedBudgetItem(inv.hash); return true; } return false; case MSG_MASTERNODE_ANNOUNCE: if (mnodeman.mapSeenMasternodeBroadcast.count(inv.hash)) { masternodeSync.AddedMasternodeList(inv.hash); return true; } return false; case MSG_MASTERNODE_PING: return mnodeman.mapSeenMasternodePing.count(inv.hash); } // Don't know what it is, just say we already got one return true; } void static ProcessGetData(CNode* pfrom) { std::deque<CInv>::iterator it = pfrom->vRecvGetData.begin(); vector<CInv> vNotFound; LOCK(cs_main); while (it != pfrom->vRecvGetData.end()) { // Don't bother if send buffer is too full to respond anyway if (pfrom->nSendSize >= SendBufferSize()) break; const CInv& inv = *it; { boost::this_thread::interruption_point(); it++; if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK) { bool send = false; BlockMap::iterator mi = mapBlockIndex.find(inv.hash); if (mi != mapBlockIndex.end()) { if (chainActive.Contains(mi->second)) { send = true; } else { // To prevent fingerprinting attacks, only send blocks outside of the active // chain if they are valid, and no more than a max reorg depth than the best header // chain we know about. send = mi->second->IsValid(BLOCK_VALID_SCRIPTS) && (pindexBestHeader != NULL) && (chainActive.Height() - mi->second->nHeight < Params().MaxReorganizationDepth()); if (!send) { LogPrintf("ProcessGetData(): ignoring request from peer=%i for old block that isn't in the main chain\n", pfrom->GetId()); } } } // Don't send not-validated blocks if (send && (mi->second->nStatus & BLOCK_HAVE_DATA)) { // Send block from disk CBlock block; if (!ReadBlockFromDisk(block, (*mi).second)) assert(!"cannot load block from disk"); if (inv.type == MSG_BLOCK) pfrom->PushMessage("block", block); else // MSG_FILTERED_BLOCK) { LOCK(pfrom->cs_filter); if (pfrom->pfilter) { CMerkleBlock merkleBlock(block, *pfrom->pfilter); pfrom->PushMessage("merkleblock", merkleBlock); // CMerkleBlock just contains hashes, so also push any transactions in the block the client did not see // This avoids hurting performance by pointlessly requiring a round-trip // Note that there is currently no way for a node to request any single transactions we didnt send here - // they must either disconnect and retry or request the full block. // Thus, the protocol spec specified allows for us to provide duplicate txn here, // however we MUST always provide at least what the remote peer needs typedef std::pair<unsigned int, uint256> PairType; BOOST_FOREACH (PairType& pair, merkleBlock.vMatchedTxn) if (!pfrom->setInventoryKnown.count(CInv(MSG_TX, pair.second))) pfrom->PushMessage("tx", block.vtx[pair.first]); } // else // no response } // Trigger them to send a getblocks request for the next batch of inventory if (inv.hash == pfrom->hashContinue) { // Bypass PushInventory, this must send even if redundant, // and we want it right after the last block so they don't // wait for other stuff first. vector<CInv> vInv; vInv.push_back(CInv(MSG_BLOCK, chainActive.Tip()->GetBlockHash())); pfrom->PushMessage("inv", vInv); pfrom->hashContinue = 0; } } } else if (inv.IsKnownType()) { // Send stream from relay memory bool pushed = false; { LOCK(cs_mapRelay); map<CInv, CDataStream>::iterator mi = mapRelay.find(inv); if (mi != mapRelay.end()) { pfrom->PushMessage(inv.GetCommand(), (*mi).second); pushed = true; } } if (!pushed && inv.type == MSG_TX) { CTransaction tx; if (mempool.lookup(inv.hash, tx)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << tx; pfrom->PushMessage("tx", ss); pushed = true; } } if (!pushed && inv.type == MSG_TXLOCK_VOTE) { if (mapTxLockVote.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << mapTxLockVote[inv.hash]; pfrom->PushMessage("txlvote", ss); pushed = true; } } if (!pushed && inv.type == MSG_TXLOCK_REQUEST) { if (mapTxLockReq.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << mapTxLockReq[inv.hash]; pfrom->PushMessage("ix", ss); pushed = true; } } if (!pushed && inv.type == MSG_SPORK) { if (mapSporks.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << mapSporks[inv.hash]; pfrom->PushMessage("spork", ss); pushed = true; } } if (!pushed && inv.type == MSG_MASTERNODE_WINNER) { if (masternodePayments.mapMasternodePayeeVotes.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << masternodePayments.mapMasternodePayeeVotes[inv.hash]; pfrom->PushMessage("mnw", ss); pushed = true; } } if (!pushed && inv.type == MSG_BUDGET_VOTE) { if (budget.mapSeenMasternodeBudgetVotes.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << budget.mapSeenMasternodeBudgetVotes[inv.hash]; pfrom->PushMessage("mvote", ss); pushed = true; } } if (!pushed && inv.type == MSG_BUDGET_PROPOSAL) { if (budget.mapSeenMasternodeBudgetProposals.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << budget.mapSeenMasternodeBudgetProposals[inv.hash]; pfrom->PushMessage("mprop", ss); pushed = true; } } if (!pushed && inv.type == MSG_BUDGET_FINALIZED_VOTE) { if (budget.mapSeenFinalizedBudgetVotes.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << budget.mapSeenFinalizedBudgetVotes[inv.hash]; pfrom->PushMessage("fbvote", ss); pushed = true; } } if (!pushed && inv.type == MSG_BUDGET_FINALIZED) { if (budget.mapSeenFinalizedBudgets.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << budget.mapSeenFinalizedBudgets[inv.hash]; pfrom->PushMessage("fbs", ss); pushed = true; } } if (!pushed && inv.type == MSG_MASTERNODE_ANNOUNCE) { if (mnodeman.mapSeenMasternodeBroadcast.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << mnodeman.mapSeenMasternodeBroadcast[inv.hash]; pfrom->PushMessage("mnb", ss); pushed = true; } } if (!pushed && inv.type == MSG_MASTERNODE_PING) { if (mnodeman.mapSeenMasternodePing.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << mnodeman.mapSeenMasternodePing[inv.hash]; pfrom->PushMessage("mnp", ss); pushed = true; } } if (!pushed && inv.type == MSG_DSTX) { if (mapObfuscationBroadcastTxes.count(inv.hash)) { CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); ss.reserve(1000); ss << mapObfuscationBroadcastTxes[inv.hash].tx << mapObfuscationBroadcastTxes[inv.hash].vin << mapObfuscationBroadcastTxes[inv.hash].vchSig << mapObfuscationBroadcastTxes[inv.hash].sigTime; pfrom->PushMessage("dstx", ss); pushed = true; } } if (!pushed) { vNotFound.push_back(inv); } } // Track requests for our stuff. GetMainSignals().Inventory(inv.hash); if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK) break; } } pfrom->vRecvGetData.erase(pfrom->vRecvGetData.begin(), it); if (!vNotFound.empty()) { // Let the peer know that we didn't find what it asked for, so it doesn't // have to wait around forever. Currently only SPV clients actually care // about this message: it's needed when they are recursively walking the // dependencies of relevant unconfirmed transactions. SPV clients want to // do that because they want to know about (and store and rebroadcast and // risk analyze) the dependencies of transactions relevant to them, without // having to download the entire memory pool. pfrom->PushMessage("notfound", vNotFound); } } bool fRequestedSporksIDB = false; bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, int64_t nTimeReceived) { RandAddSeedPerfmon(); LogPrint("net", "received: %s (%u bytes) peer=%d\n", SanitizeString(strCommand), vRecv.size(), pfrom->id); if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0) { LogPrintf("dropmessagestest DROPPING RECV MESSAGE\n"); return true; } if (strCommand == "version") { // Each connection can only send one version message if (pfrom->nVersion != 0) { pfrom->PushMessage("reject", strCommand, REJECT_DUPLICATE, string("Duplicate version message")); LOCK(cs_main); Misbehaving(pfrom->GetId(), 1); return false; } // ztegritycoin: We use certain sporks during IBD, so check to see if they are // available. If not, ask the first peer connected for them. bool fMissingSporks = !pSporkDB->SporkExists(SPORK_14_NEW_PROTOCOL_ENFORCEMENT) && !pSporkDB->SporkExists(SPORK_15_NEW_PROTOCOL_ENFORCEMENT_2) && !pSporkDB->SporkExists(SPORK_16_ZEROCOIN_MAINTENANCE_MODE); if (fMissingSporks || !fRequestedSporksIDB){ LogPrint("net", "asking peer for sporks\n"); pfrom->PushMessage("getsporks"); fRequestedSporksIDB = true; } int64_t nTime; CAddress addrMe; CAddress addrFrom; uint64_t nNonce = 1; vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe; if (pfrom->DisconnectOldProtocol(ActiveProtocol(), strCommand)) return false; // Disconnect from old peers once we are at the upgrade block if (pfrom->nVersion < 70915 && (chainActive.Height() + 1 >= Params().WALLET_UPGRADE_BLOCK() || Params().NetworkID() != CBaseChainParams::MAIN)) { LogPrintf("peer=%d using obsolete version %i; disconnecting\n", pfrom->id, pfrom->nVersion); pfrom->PushMessage("reject", strCommand, REJECT_OBSOLETE, strprintf("Version must be %d or greater", 70915)); pfrom->fDisconnect = true; return false; } if (!vRecv.empty()) vRecv >> addrFrom >> nNonce; if (!vRecv.empty()) { vRecv >> LIMITED_STRING(pfrom->strSubVer, 256); pfrom->cleanSubVer = SanitizeString(pfrom->strSubVer); } if (!vRecv.empty()) vRecv >> pfrom->nStartingHeight; if (!vRecv.empty()) vRecv >> pfrom->fRelayTxes; // set to true after we get the first filter* message else pfrom->fRelayTxes = true; // Disconnect if we connected to ourself if (nNonce == nLocalHostNonce && nNonce > 1) { LogPrintf("connected to self at %s, disconnecting\n", pfrom->addr.ToString()); pfrom->fDisconnect = true; return true; } pfrom->addrLocal = addrMe; if (pfrom->fInbound && addrMe.IsRoutable()) { SeenLocal(addrMe); } // Be shy and don't send version until we hear if (pfrom->fInbound) pfrom->PushVersion(); pfrom->fClient = !(pfrom->nServices & NODE_NETWORK); // Potentially mark this peer as a preferred download peer. UpdatePreferredDownload(pfrom, State(pfrom->GetId())); // Change version pfrom->PushMessage("verack"); pfrom->ssSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION)); if (!pfrom->fInbound) { // Advertise our address if (fListen && !IsInitialBlockDownload()) { CAddress addr = GetLocalAddress(&pfrom->addr); if (addr.IsRoutable()) { LogPrintf("ProcessMessages: advertizing address %s\n", addr.ToString()); pfrom->PushAddress(addr); } else if (IsPeerAddrLocalGood(pfrom)) { addr.SetIP(pfrom->addrLocal); LogPrintf("ProcessMessages: advertizing address %s\n", addr.ToString()); pfrom->PushAddress(addr); } } // Get recent addresses if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000) { pfrom->PushMessage("getaddr"); pfrom->fGetAddr = true; } addrman.Good(pfrom->addr); } else { if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom) { addrman.Add(addrFrom, addrFrom); addrman.Good(addrFrom); } } // Relay alerts { LOCK(cs_mapAlerts); BOOST_FOREACH (PAIRTYPE(const uint256, CAlert) & item, mapAlerts) item.second.RelayTo(pfrom); } pfrom->fSuccessfullyConnected = true; string remoteAddr; if (fLogIPs) remoteAddr = ", peeraddr=" + pfrom->addr.ToString(); LogPrintf("receive version message: %s: version %d, blocks=%d, us=%s, peer=%d%s\n", pfrom->cleanSubVer, pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString(), pfrom->id, remoteAddr); int64_t nTimeOffset = nTime - GetTime(); pfrom->nTimeOffset = nTimeOffset; AddTimeData(pfrom->addr, nTimeOffset); } else if (pfrom->nVersion == 0) { // Must have a version message before anything else LOCK(cs_main); Misbehaving(pfrom->GetId(), 1); return false; } else if (strCommand == "verack") { pfrom->SetRecvVersion(min(pfrom->nVersion, PROTOCOL_VERSION)); // Mark this node as currently connected, so we update its timestamp later. if (pfrom->fNetworkNode) { LOCK(cs_main); State(pfrom->GetId())->fCurrentlyConnected = true; } if (pfrom->nVersion >= SENDHEADERS_VERSION) { // Tell our peer we prefer to receive headers rather than inv's // We send this to non-NODE NETWORK peers as well, because even // non-NODE NETWORK peers can announce blocks (such as pruning // nodes) pfrom->PushMessage("sendheaders"); } } else if (strCommand == "addr") { vector<CAddress> vAddr; vRecv >> vAddr; // Don't want addr from older versions unless seeding if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000) return true; if (vAddr.size() > 1000) { LOCK(cs_main); Misbehaving(pfrom->GetId(), 20); return error("message addr size() = %u", vAddr.size()); } // Store the new addresses vector<CAddress> vAddrOk; int64_t nNow = GetAdjustedTime(); int64_t nSince = nNow - 10 * 60; BOOST_FOREACH (CAddress& addr, vAddr) { boost::this_thread::interruption_point(); if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60) addr.nTime = nNow - 5 * 24 * 60 * 60; pfrom->AddAddressKnown(addr); bool fReachable = IsReachable(addr); if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable()) { // Relay to a limited number of other nodes { LOCK(cs_vNodes); // Use deterministic randomness to send to the same nodes for 24 hours // at a time so the setAddrKnowns of the chosen nodes prevent repeats static uint256 hashSalt; if (hashSalt == 0) hashSalt = GetRandHash(); uint64_t hashAddr = addr.GetHash(); uint256 hashRand = hashSalt ^ (hashAddr << 32) ^ ((GetTime() + hashAddr) / (24 * 60 * 60)); hashRand = Hash(BEGIN(hashRand), END(hashRand)); multimap<uint256, CNode*> mapMix; BOOST_FOREACH (CNode* pnode, vNodes) { if (pnode->nVersion < CADDR_TIME_VERSION) continue; unsigned int nPointer; memcpy(&nPointer, &pnode, sizeof(nPointer)); uint256 hashKey = hashRand ^ nPointer; hashKey = Hash(BEGIN(hashKey), END(hashKey)); mapMix.insert(make_pair(hashKey, pnode)); } int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s) for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi) ((*mi).second)->PushAddress(addr); } } // Do not store addresses outside our network if (fReachable) vAddrOk.push_back(addr); } addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60); if (vAddr.size() < 1000) pfrom->fGetAddr = false; if (pfrom->fOneShot) pfrom->fDisconnect = true; } else if (strCommand == "sendheaders") { LOCK(cs_main); State(pfrom->GetId())->fPreferHeaders = true; } else if (strCommand == "inv") { vector<CInv> vInv; vRecv >> vInv; if (vInv.size() > MAX_INV_SZ) { LOCK(cs_main); Misbehaving(pfrom->GetId(), 20); return error("message inv size() = %u", vInv.size()); } LOCK(cs_main); std::vector<CInv> vToFetch; for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) { const CInv& inv = vInv[nInv]; boost::this_thread::interruption_point(); pfrom->AddInventoryKnown(inv); bool fAlreadyHave = AlreadyHave(inv); LogPrint("net", "got inv: %s %s peer=%d\n", inv.ToString(), fAlreadyHave ? "have" : "new", pfrom->id); if (inv.type == MSG_BLOCK) { UpdateBlockAvailability(pfrom->GetId(), inv.hash); if (!fAlreadyHave && !fImporting && !fReindex && !mapBlocksInFlight.count(inv.hash)) { if (pfrom->nVersion >= SENDHEADERS_VERSION) { // First request the headers preceding the announced block. In the normal fully-synced // case where a new block is announced that succeeds the current tip (no reorganization), // there are no such headers. // Secondly, and only when we are close to being synced, we request the announced block directly, // to avoid an extra round-trip. Note that we must *first* ask for the headers, so by the // time the block arrives, the header chain leading up to it is already validated. Not // doing this will result in the received block being rejected as an orphan in case it is // not a direct successor. pfrom->PushMessage("getheaders", chainActive.GetLocator(pindexBestHeader), inv.hash); CNodeState *nodestate = State(pfrom->GetId()); if (CanDirectFetch() && nodestate->nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) { vToFetch.push_back(inv); // Mark block as in flight already, even though the actual "getdata" message only goes out // later (within the same cs_main lock, though). MarkBlockAsInFlight(pfrom->GetId(), inv.hash); } LogPrint("net", "getheaders (%d) %s to peer=%d\n", pindexBestHeader->nHeight, inv.hash.ToString(), pfrom->id); } else { // Add this to the list of blocks to request vToFetch.push_back(inv); LogPrint("net", "getblocks (%d) %s to peer=%d\n", pindexBestHeader->nHeight, inv.hash.ToString(), pfrom->id); } } } else { if (!fAlreadyHave && !fImporting && !fReindex && !IsInitialBlockDownload()) pfrom->AskFor(inv); } // Track requests for our stuff GetMainSignals().Inventory(inv.hash); if (pfrom->nSendSize > (SendBufferSize() * 2)) { Misbehaving(pfrom->GetId(), 50); return error("send buffer size() = %u", pfrom->nSendSize); } } if (!vToFetch.empty()) pfrom->PushMessage("getdata", vToFetch); } else if (strCommand == "getdata") { vector<CInv> vInv; vRecv >> vInv; if (vInv.size() > MAX_INV_SZ) { LOCK(cs_main); Misbehaving(pfrom->GetId(), 20); return error("message getdata size() = %u", vInv.size()); } if (fDebug || (vInv.size() != 1)) LogPrint("net", "received getdata (%u invsz) peer=%d\n", vInv.size(), pfrom->id); if ((fDebug && vInv.size() > 0) || (vInv.size() == 1)) LogPrint("net", "received getdata for: %s peer=%d\n", vInv[0].ToString(), pfrom->id); pfrom->vRecvGetData.insert(pfrom->vRecvGetData.end(), vInv.begin(), vInv.end()); ProcessGetData(pfrom); } else if (strCommand == "getblocks") { CBlockLocator locator; uint256 hashStop; vRecv >> locator >> hashStop; LOCK(cs_main); // Find the last block the caller has in the main chain CBlockIndex* pindex = FindForkInGlobalIndex(chainActive, locator); // Send the rest of the chain if (pindex) pindex = chainActive.Next(pindex); int nLimit = 500; LogPrint("net", "getblocks %d to %s limit %d from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop == uint256(0) ? "end" : hashStop.ToString(), nLimit, pfrom->id); for (; pindex; pindex = chainActive.Next(pindex)) { if (pindex->GetBlockHash() == hashStop) { LogPrint("net", " getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString()); break; } pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash())); if (--nLimit <= 0) { // When this block is requested, we'll send an inv that'll make them // getblocks the next batch of inventory. LogPrint("net", " getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString()); pfrom->hashContinue = pindex->GetBlockHash(); break; } } } else if (strCommand == "getheaders") { CBlockLocator locator; uint256 hashStop; vRecv >> locator >> hashStop; LOCK(cs_main); if (IsInitialBlockDownload()) return true; CNodeState *nodestate = State(pfrom->GetId()); const CBlockIndex* pindex = nullptr; if (locator.IsNull()) { // If locator is null, return the hashStop block BlockMap::iterator mi = mapBlockIndex.find(hashStop); if (mi == mapBlockIndex.end()) return true; pindex = (*mi).second; } else { // Find the last block the caller has in the main chain pindex = FindForkInGlobalIndex(chainActive, locator); if (pindex) pindex = chainActive.Next(pindex); } // we must use CBlocks, as CBlockHeaders won't include the 0x00 nTx count at the end vector<CBlock> vHeaders; int nLimit = MAX_HEADERS_RESULTS; if (fDebug) LogPrintf("getheaders %d to %s from peer=%d\n", (pindex ? pindex->nHeight : -1), hashStop.IsNull() ? "end" : hashStop.ToString(), pfrom->GetId()); for (; pindex; pindex = chainActive.Next(pindex)) { vHeaders.push_back(pindex->GetBlockHeader()); if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop) break; } // pindex can be nullptr either if we sent chainActive.Tip() OR // if our peer has chainActive.Tip() (and thus we are sending an empty // headers message). In both cases it's safe to update // pindexBestHeaderSent to be our tip. nodestate->pindexBestHeaderSent = pindex ? pindex : chainActive.Tip(); pfrom->PushMessage("headers", vHeaders); } else if (strCommand == "tx" || strCommand == "dstx") { vector<uint256> vWorkQueue; vector<uint256> vEraseQueue; CTransaction tx; //masternode signed transaction bool ignoreFees = false; CTxIn vin; vector<unsigned char> vchSig; int64_t sigTime; if (strCommand == "tx") { vRecv >> tx; } else if (strCommand == "dstx") { //these allow masternodes to publish a limited amount of free transactions vRecv >> tx >> vin >> vchSig >> sigTime; CMasternode* pmn = mnodeman.Find(vin); if (pmn != NULL) { if (!pmn->allowFreeTx) { //multiple peers can send us a valid masternode transaction if (fDebug) LogPrintf("dstx: Masternode sending too many transactions %s\n", tx.GetHash().ToString()); return true; } std::string strMessage = tx.GetHash().ToString() + std::to_string(sigTime); std::string errorMessage = ""; if (!obfuScationSigner.VerifyMessage(pmn->pubKeyMasternode, vchSig, strMessage, errorMessage)) { LogPrintf("dstx: Got bad masternode address signature %s \n", vin.ToString()); //pfrom->Misbehaving(20); return false; } LogPrintf("dstx: Got Masternode transaction %s\n", tx.GetHash().ToString()); ignoreFees = true; pmn->allowFreeTx = false; if (!mapObfuscationBroadcastTxes.count(tx.GetHash())) { CObfuscationBroadcastTx dstx; dstx.tx = tx; dstx.vin = vin; dstx.vchSig = vchSig; dstx.sigTime = sigTime; mapObfuscationBroadcastTxes.insert(make_pair(tx.GetHash(), dstx)); } } } CInv inv(MSG_TX, tx.GetHash()); pfrom->AddInventoryKnown(inv); LOCK(cs_main); bool fMissingInputs = false; bool fMissingZerocoinInputs = false; CValidationState state; mapAlreadyAskedFor.erase(inv); if (!tx.IsZerocoinSpend() && AcceptToMemoryPool(mempool, state, tx, true, &fMissingInputs, false, ignoreFees)) { mempool.check(pcoinsTip); RelayTransaction(tx); vWorkQueue.push_back(inv.hash); LogPrint("mempool", "AcceptToMemoryPool: peer=%d %s : accepted %s (poolsz %u)\n", pfrom->id, pfrom->cleanSubVer, tx.GetHash().ToString(), mempool.mapTx.size()); // Recursively process any orphan transactions that depended on this one set<NodeId> setMisbehaving; for(unsigned int i = 0; i < vWorkQueue.size(); i++) { map<uint256, set<uint256> >::iterator itByPrev = mapOrphanTransactionsByPrev.find(vWorkQueue[i]); if(itByPrev == mapOrphanTransactionsByPrev.end()) continue; for(set<uint256>::iterator mi = itByPrev->second.begin(); mi != itByPrev->second.end(); ++mi) { const uint256 &orphanHash = *mi; const CTransaction &orphanTx = mapOrphanTransactions[orphanHash].tx; NodeId fromPeer = mapOrphanTransactions[orphanHash].fromPeer; bool fMissingInputs2 = false; // Use a dummy CValidationState so someone can't setup nodes to counter-DoS based on orphan // resolution (that is, feeding people an invalid transaction based on LegitTxX in order to get // anyone relaying LegitTxX banned) CValidationState stateDummy; if(setMisbehaving.count(fromPeer)) continue; if(AcceptToMemoryPool(mempool, stateDummy, orphanTx, true, &fMissingInputs2)) { LogPrint("mempool", " accepted orphan tx %s\n", orphanHash.ToString()); RelayTransaction(orphanTx); vWorkQueue.push_back(orphanHash); vEraseQueue.push_back(orphanHash); } else if(!fMissingInputs2) { int nDos = 0; if(stateDummy.IsInvalid(nDos) && nDos > 0) { // Punish peer that gave us an invalid orphan tx Misbehaving(fromPeer, nDos); setMisbehaving.insert(fromPeer); LogPrint("mempool", " invalid orphan tx %s\n", orphanHash.ToString()); } // Has inputs but not accepted to mempool // Probably non-standard or insufficient fee/priority LogPrint("mempool", " removed orphan tx %s\n", orphanHash.ToString()); vEraseQueue.push_back(orphanHash); } mempool.check(pcoinsTip); } } BOOST_FOREACH (uint256 hash, vEraseQueue)EraseOrphanTx(hash); } else if (tx.IsZerocoinSpend() && AcceptToMemoryPool(mempool, state, tx, true, &fMissingZerocoinInputs, false, ignoreFees)) { //Presstab: ZCoin has a bunch of code commented out here. Is this something that should have more going on? //Also there is nothing that handles fMissingZerocoinInputs. Does there need to be? RelayTransaction(tx); LogPrint("mempool", "AcceptToMemoryPool: Zerocoinspend peer=%d %s : accepted %s (poolsz %u)\n", pfrom->id, pfrom->cleanSubVer, tx.GetHash().ToString(), mempool.mapTx.size()); } else if (fMissingInputs) { AddOrphanTx(tx, pfrom->GetId()); // DoS prevention: do not allow mapOrphanTransactions to grow unbounded unsigned int nMaxOrphanTx = (unsigned int)std::max((int64_t)0, GetArg("-maxorphantx", DEFAULT_MAX_ORPHAN_TRANSACTIONS)); unsigned int nEvicted = LimitOrphanTxSize(nMaxOrphanTx); if (nEvicted > 0) LogPrint("mempool", "mapOrphan overflow, removed %u tx\n", nEvicted); } else { if (pfrom->fWhitelisted) { // Always relay transactions received from whitelisted peers, even // if they were already in the mempool or rejected from it due // to policy, allowing the node to function as a gateway for // nodes hidden behind it. // // Never relay transactions that we would assign a non-zero DoS // score for, as we expect peers to do the same with us in that // case. int nDoS = 0; if (!state.IsInvalid(nDoS) || nDoS == 0) { LogPrintf("Force relaying tx %s from whitelisted peer=%d\n", tx.GetHash().ToString(), pfrom->id); RelayTransaction(tx); } else { LogPrintf("Not relaying invalid transaction %s from whitelisted peer=%d (%s)\n", tx.GetHash().ToString(), pfrom->id, state.GetRejectReason()); } } } if (strCommand == "dstx") { CInv inv(MSG_DSTX, tx.GetHash()); RelayInv(inv); } int nDoS = 0; if (state.IsInvalid(nDoS)) { LogPrint("mempool", "%s from peer=%d %s was not accepted into the memory pool: %s\n", tx.GetHash().ToString(), pfrom->id, pfrom->cleanSubVer, state.GetRejectReason()); pfrom->PushMessage("reject", strCommand, state.GetRejectCode(), state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), inv.hash); if (nDoS > 0) Misbehaving(pfrom->GetId(), nDoS); } } else if (strCommand == "headers" && !fImporting && !fReindex) { std::vector<CBlock> headers; // Bypass the normal CBlock deserialization, as we don't want to risk deserializing 2000 full blocks. unsigned int nCount = ReadCompactSize(vRecv); if (nCount > MAX_HEADERS_RESULTS) { LOCK(cs_main); Misbehaving(pfrom->GetId(), 20); return error("headers message size = %u", nCount); } headers.resize(nCount); for (unsigned int n = 0; n < nCount; n++) { vRecv >> headers[n]; } if (nCount == 0) { // Nothing interesting. Stop asking this peers for more headers. return true; } CNodeState *nodestate = State(pfrom->GetId()); CBlockIndex *pindexLast = NULL; bool ret = true; bool bFirst = true; string strError = ""; int nFirst = 0; int nLast = 0; { LOCK(cs_main); for (const CBlock& header : headers) { CValidationState state; if (pindexLast != NULL && header.hashPrevBlock != pindexLast->GetBlockHash()) { Misbehaving(pfrom->GetId(), 20); ret = false; strError = "non-continuous headers sequence"; break; } CBlockHeader pblockheader = CBlockHeader(header); if (!AcceptBlockHeader(pblockheader, state, &pindexLast, NULL)) { int nDoS; if (state.IsInvalid(nDoS)) { if (nDoS > 0) Misbehaving(pfrom->GetId(), nDoS); ret = false; strError = "invalid header received " + header.GetHash().ToString(); break; } } if (pindexLast) { nLast = pindexLast->nHeight; if (bFirst){ nFirst = pindexLast->nHeight; bFirst = false; } } } if (GetBoolArg("-headerspamfilter", DEFAULT_HEADER_SPAM_FILTER)) { CValidationState state; CNodeState *nodestate = State(pfrom->GetId()); nodestate->headers.addHeaders(nFirst, nLast); int nDoS; ret = nodestate->headers.updateState(state, ret); if (state.IsInvalid(nDoS)) { if (nDoS > 0) Misbehaving(pfrom->GetId(), nDoS); ret = false; strError = strError!="" ? strError + " / ": ""; strError = "header spam protection"; } } if (!ret) return error(strError.c_str()); assert(pindexLast); UpdateBlockAvailability(pfrom->GetId(), pindexLast->GetBlockHash()); if (nCount == MAX_HEADERS_RESULTS) { // Headers message had its maximum size; the peer may have more headers. // TODO: optimize: if pindexLast is an ancestor of chainActive.Tip or pindexBestHeader, continue // from there instead. LogPrint("net", "more getheaders (%d) to end to peer=%d (startheight:%d)\n", pindexLast->nHeight, pfrom->id, pfrom->nStartingHeight); pfrom->PushMessage("getheaders", chainActive.GetLocator(pindexLast), uint256(0)); } bool fCanDirectFetch = CanDirectFetch(); // If this set of headers is valid and ends in a block with at least as // much work as our tip, download as much as possible. if (fCanDirectFetch && pindexLast->IsValid(BLOCK_VALID_TREE) && chainActive.Tip()->nChainWork <= pindexLast->nChainWork) { vector<const CBlockIndex *> vToFetch; const CBlockIndex *pindexWalk = pindexLast; // Calculate all the blocks we'd need to switch to pindexLast, up to a limit. while (pindexWalk && !chainActive.Contains(pindexWalk) && vToFetch.size() <= MAX_BLOCKS_IN_TRANSIT_PER_PEER) { if (!(pindexWalk->nStatus & BLOCK_HAVE_DATA) && !mapBlocksInFlight.count(pindexWalk->GetBlockHash())) { // We don't have this block, and it's not yet in flight. vToFetch.push_back(pindexWalk); } pindexWalk = pindexWalk->pprev; } // If pindexWalk still isn't on our main chain, we're looking at a // very large reorg at a time we think we're close to caught up to // the main chain -- this shouldn't really happen. Bail out on the // direct fetch and rely on parallel download instead. if (!chainActive.Contains(pindexWalk)) { LogPrint("net", "Large reorg, won't direct fetch to %s (%d)\n", pindexLast->GetBlockHash().ToString(), pindexLast->nHeight); } else { vector<CInv> vGetData; // Download as much as possible, from earliest to latest. BOOST_REVERSE_FOREACH(const CBlockIndex *pindex, vToFetch) { if (nodestate->nBlocksInFlight >= MAX_BLOCKS_IN_TRANSIT_PER_PEER) { // Can't download any more from this peer break; } vGetData.push_back(CInv(MSG_BLOCK, pindex->GetBlockHash())); MarkBlockAsInFlight(pfrom->GetId(), pindex->GetBlockHash(), pindex); LogPrint("net", "Requesting block %s from peer=%d\n", pindex->GetBlockHash().ToString(), pfrom->id); } if (vGetData.size() > 1) { LogPrint("net", "Downloading blocks toward %s (%d) via headers direct fetch\n", pindexLast->GetBlockHash().ToString(), pindexLast->nHeight); } if (vGetData.size() > 0) { pfrom->PushMessage("getdata", vGetData); } } } CheckBlockIndex(); } } else if (strCommand == "block" && !fImporting && !fReindex) // Ignore blocks received while importing { CBlock block; vRecv >> block; uint256 hashBlock = block.GetHash(); CInv inv(MSG_BLOCK, hashBlock); LogPrint("net", "received block %s peer=%d\n", inv.hash.ToString(), pfrom->id); //sometimes we will be sent their most recent block and its not the one we want, in that case tell where we are if (pfrom->nVersion < SENDHEADERS_VERSION && !mapBlockIndex.count(block.hashPrevBlock)) { if (find(pfrom->vBlockRequested.begin(), pfrom->vBlockRequested.end(), hashBlock) != pfrom->vBlockRequested.end()) { //we already asked for this block, so lets work backwards and ask for the previous block pfrom->PushMessage("getblocks", chainActive.GetLocator(), block.hashPrevBlock); pfrom->vBlockRequested.push_back(block.hashPrevBlock); } else { //ask to sync to this block pfrom->PushMessage("getblocks", chainActive.GetLocator(), hashBlock); pfrom->vBlockRequested.push_back(hashBlock); } } else { pfrom->AddInventoryKnown(inv); CValidationState state; // Process all blocks from whitelisted peers, even if not requested, // unless we're still syncing with the network. // Such an unrequested block may still be processed, subject to the // conditions in AcceptBlock(). ProcessNewBlock(state, pfrom, &block, NULL); int nDoS; if (state.IsInvalid(nDoS)) { pfrom->PushMessage("reject", strCommand, (unsigned char)state.GetRejectCode(), state.GetRejectReason().substr(0, MAX_REJECT_MESSAGE_LENGTH), block.GetHash()); if (nDoS > 0) { LOCK(cs_main); Misbehaving(pfrom->GetId(), nDoS); } //disconnect this node if its old protocol version pfrom->DisconnectOldProtocol(ActiveProtocol(), strCommand); } } } // This asymmetric behavior for inbound and outbound connections was introduced // to prevent a fingerprinting attack: an attacker can send specific fake addresses // to users' AddrMan and later request them by sending getaddr messages. // Making users (which are behind NAT and can only make outgoing connections) ignore // getaddr message mitigates the attack. else if ((strCommand == "getaddr") && (pfrom->fInbound)) { pfrom->vAddrToSend.clear(); vector<CAddress> vAddr = addrman.GetAddr(); BOOST_FOREACH (const CAddress& addr, vAddr) pfrom->PushAddress(addr); } else if (strCommand == "mempool") { LOCK2(cs_main, pfrom->cs_filter); std::vector<uint256> vtxid; mempool.queryHashes(vtxid); vector<CInv> vInv; BOOST_FOREACH (uint256& hash, vtxid) { CInv inv(MSG_TX, hash); CTransaction tx; bool fInMemPool = mempool.lookup(hash, tx); if (!fInMemPool) continue; // another thread removed since queryHashes, maybe... if ((pfrom->pfilter && pfrom->pfilter->IsRelevantAndUpdate(tx)) || (!pfrom->pfilter)) vInv.push_back(inv); if (vInv.size() == MAX_INV_SZ) { pfrom->PushMessage("inv", vInv); vInv.clear(); } } if (vInv.size() > 0) pfrom->PushMessage("inv", vInv); } else if (strCommand == "ping") { if (pfrom->nVersion > BIP0031_VERSION) { uint64_t nonce = 0; vRecv >> nonce; // Echo the message back with the nonce. This allows for two useful features: // // 1) A remote node can quickly check if the connection is operational // 2) Remote nodes can measure the latency of the network thread. If this node // is overloaded it won't respond to pings quickly and the remote node can // avoid sending us more work, like chain download requests. // // The nonce stops the remote getting confused between different pings: without // it, if the remote node sends a ping once per second and this node takes 5 // seconds to respond to each, the 5th ping the remote sends would appear to // return very quickly. pfrom->PushMessage("pong", nonce); } } else if (strCommand == "pong") { int64_t pingUsecEnd = nTimeReceived; uint64_t nonce = 0; size_t nAvail = vRecv.in_avail(); bool bPingFinished = false; std::string sProblem; if (nAvail >= sizeof(nonce)) { vRecv >> nonce; // Only process pong message if there is an outstanding ping (old ping without nonce should never pong) if (pfrom->nPingNonceSent != 0) { if (nonce == pfrom->nPingNonceSent) { // Matching pong received, this ping is no longer outstanding bPingFinished = true; int64_t pingUsecTime = pingUsecEnd - pfrom->nPingUsecStart; if (pingUsecTime > 0) { // Successful ping time measurement, replace previous pfrom->nPingUsecTime = pingUsecTime; } else { // This should never happen sProblem = "Timing mishap"; } } else { // Nonce mismatches are normal when pings are overlapping sProblem = "Nonce mismatch"; if (nonce == 0) { // This is most likely a bug in another implementation somewhere, cancel this ping bPingFinished = true; sProblem = "Nonce zero"; } } } else { sProblem = "Unsolicited pong without ping"; } } else { // This is most likely a bug in another implementation somewhere, cancel this ping bPingFinished = true; sProblem = "Short payload"; } if (!(sProblem.empty())) { LogPrint("net", "pong peer=%d %s: %s, %x expected, %x received, %u bytes\n", pfrom->id, pfrom->cleanSubVer, sProblem, pfrom->nPingNonceSent, nonce, nAvail); } if (bPingFinished) { pfrom->nPingNonceSent = 0; } } else if (fAlerts && strCommand == "alert") { CAlert alert; vRecv >> alert; uint256 alertHash = alert.GetHash(); if (pfrom->setKnown.count(alertHash) == 0) { if (alert.ProcessAlert()) { // Relay pfrom->setKnown.insert(alertHash); { LOCK(cs_vNodes); BOOST_FOREACH (CNode* pnode, vNodes) alert.RelayTo(pnode); } } else { // Small DoS penalty so peers that send us lots of // duplicate/expired/invalid-signature/whatever alerts // eventually get banned. // This isn't a Misbehaving(100) (immediate ban) because the // peer might be an older or different implementation with // a different signature key, etc. LOCK(cs_main); Misbehaving(pfrom->GetId(), 10); } } } else if (!(nLocalServices & NODE_BLOOM) && (strCommand == "filterload" || strCommand == "filteradd" || strCommand == "filterclear")) { LogPrintf("bloom message=%s\n", strCommand); LOCK(cs_main); Misbehaving(pfrom->GetId(), 100); } else if (strCommand == "filterload") { CBloomFilter filter; vRecv >> filter; if (!filter.IsWithinSizeConstraints()) { // There is no excuse for sending a too-large filter LOCK(cs_main); Misbehaving(pfrom->GetId(), 100); } else { LOCK(pfrom->cs_filter); delete pfrom->pfilter; pfrom->pfilter = new CBloomFilter(filter); pfrom->pfilter->UpdateEmptyFull(); } pfrom->fRelayTxes = true; } else if (strCommand == "filteradd") { vector<unsigned char> vData; vRecv >> vData; // Nodes must NEVER send a data item > 520 bytes (the max size for a script data object, // and thus, the maximum size any matched object can have) in a filteradd message if (vData.size() > MAX_SCRIPT_ELEMENT_SIZE) { LOCK(cs_main); Misbehaving(pfrom->GetId(), 100); } else { LOCK(pfrom->cs_filter); if (pfrom->pfilter) pfrom->pfilter->insert(vData); else { LOCK(cs_main); Misbehaving(pfrom->GetId(), 100); } } } else if (strCommand == "filterclear") { LOCK(pfrom->cs_filter); delete pfrom->pfilter; pfrom->pfilter = new CBloomFilter(); pfrom->fRelayTxes = true; } else if (strCommand == "reject") { if (fDebug) { try { string strMsg; unsigned char ccode; string strReason; vRecv >> LIMITED_STRING(strMsg, CMessageHeader::COMMAND_SIZE) >> ccode >> LIMITED_STRING(strReason, MAX_REJECT_MESSAGE_LENGTH); ostringstream ss; ss << strMsg << " code " << itostr(ccode) << ": " << strReason; if (strMsg == "block" || strMsg == "tx") { uint256 hash; vRecv >> hash; ss << ": hash " << hash.ToString(); } LogPrint("net", "Reject %s\n", SanitizeString(ss.str())); } catch (std::ios_base::failure& e) { // Avoid feedback loops by preventing reject messages from triggering a new reject message. LogPrint("net", "Unparseable reject message received\n"); } } } else { //probably one the extensions //obfuScationPool.ProcessMessageObfuscation(pfrom, strCommand, vRecv); mnodeman.ProcessMessage(pfrom, strCommand, vRecv); budget.ProcessMessage(pfrom, strCommand, vRecv); masternodePayments.ProcessMessageMasternodePayments(pfrom, strCommand, vRecv); ProcessMessageSwiftTX(pfrom, strCommand, vRecv); ProcessSpork(pfrom, strCommand, vRecv); masternodeSync.ProcessMessage(pfrom, strCommand, vRecv); } return true; } // Note: whenever a protocol update is needed toggle between both implementations (comment out the formerly active one) // so we can leave the existing clients untouched (old SPORK will stay on so they don't see even older clients). // Those old clients won't react to the changes of the other (new) SPORK because at the time of their implementation // it was the one which was commented out int ActiveProtocol() { if (IsSporkActive(SPORK_15_NEW_PROTOCOL_ENFORCEMENT_2)) return MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT_2; if (IsSporkActive(SPORK_14_NEW_PROTOCOL_ENFORCEMENT)) return MIN_PEER_PROTO_VERSION_AFTER_ENFORCEMENT; return MIN_PEER_PROTO_VERSION_BEFORE_ENFORCEMENT; } // requires LOCK(cs_vRecvMsg) bool ProcessMessages(CNode* pfrom) { //if (fDebug) // LogPrintf("ProcessMessages(%u messages)\n", pfrom->vRecvMsg.size()); // // Message format // (4) message start // (12) command // (4) size // (4) checksum // (x) data // bool fOk = true; if (!pfrom->vRecvGetData.empty()) ProcessGetData(pfrom); // this maintains the order of responses if (!pfrom->vRecvGetData.empty()) return fOk; std::deque<CNetMessage>::iterator it = pfrom->vRecvMsg.begin(); while (!pfrom->fDisconnect && it != pfrom->vRecvMsg.end()) { // Don't bother if send buffer is too full to respond anyway if (pfrom->nSendSize >= SendBufferSize()) break; // get next message CNetMessage& msg = *it; //if (fDebug) // LogPrintf("ProcessMessages(message %u msgsz, %u bytes, complete:%s)\n", // msg.hdr.nMessageSize, msg.vRecv.size(), // msg.complete() ? "Y" : "N"); // end, if an incomplete message is found if (!msg.complete()) break; // at this point, any failure means we can delete the current message it++; // Scan for message start if (memcmp(msg.hdr.pchMessageStart, Params().MessageStart(), MESSAGE_START_SIZE) != 0) { LogPrintf("PROCESSMESSAGE: INVALID MESSAGESTART %s peer=%d\n", SanitizeString(msg.hdr.GetCommand()), pfrom->id); fOk = false; break; } // Read header CMessageHeader& hdr = msg.hdr; if (!hdr.IsValid()) { LogPrintf("PROCESSMESSAGE: ERRORS IN HEADER %s peer=%d\n", SanitizeString(hdr.GetCommand()), pfrom->id); continue; } string strCommand = hdr.GetCommand(); // Message size unsigned int nMessageSize = hdr.nMessageSize; // Checksum CDataStream& vRecv = msg.vRecv; uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize); unsigned int nChecksum = 0; memcpy(&nChecksum, &hash, sizeof(nChecksum)); if (nChecksum != hdr.nChecksum) { LogPrintf("ProcessMessages(%s, %u bytes): CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n", SanitizeString(strCommand), nMessageSize, nChecksum, hdr.nChecksum); continue; } // Process message bool fRet = false; try { fRet = ProcessMessage(pfrom, strCommand, vRecv, msg.nTime); boost::this_thread::interruption_point(); } catch (std::ios_base::failure& e) { pfrom->PushMessage("reject", strCommand, REJECT_MALFORMED, string("error parsing message")); if (strstr(e.what(), "end of data")) { // Allow exceptions from under-length message on vRecv LogPrintf("ProcessMessages(%s, %u bytes): Exception '%s' caught, normally caused by a message being shorter than its stated length\n", SanitizeString(strCommand), nMessageSize, e.what()); } else if (strstr(e.what(), "size too large")) { // Allow exceptions from over-long size LogPrintf("ProcessMessages(%s, %u bytes): Exception '%s' caught\n", SanitizeString(strCommand), nMessageSize, e.what()); } else { PrintExceptionContinue(&e, "ProcessMessages()"); } } catch (boost::thread_interrupted) { throw; } catch (std::exception& e) { PrintExceptionContinue(&e, "ProcessMessages()"); } catch (...) { PrintExceptionContinue(NULL, "ProcessMessages()"); } if (!fRet) LogPrintf("ProcessMessage(%s, %u bytes) FAILED peer=%d\n", SanitizeString(strCommand), nMessageSize, pfrom->id); break; } // In case the connection got shut down, its receive buffer was wiped if (!pfrom->fDisconnect) pfrom->vRecvMsg.erase(pfrom->vRecvMsg.begin(), it); return fOk; } bool SendMessages(CNode* pto, bool fSendTrickle) { { // Don't send anything until we get their version message if (pto->nVersion == 0) return true; // // Message: ping // bool pingSend = false; if (pto->fPingQueued) { // RPC ping request by user pingSend = true; } if (pto->nPingNonceSent == 0 && pto->nPingUsecStart + PING_INTERVAL * 1000000 < GetTimeMicros()) { // Ping automatically sent as a latency probe & keepalive. pingSend = true; } if (pingSend) { uint64_t nonce = 0; while (nonce == 0) { GetRandBytes((unsigned char*)&nonce, sizeof(nonce)); } pto->fPingQueued = false; pto->nPingUsecStart = GetTimeMicros(); if (pto->nVersion > BIP0031_VERSION) { pto->nPingNonceSent = nonce; pto->PushMessage("ping", nonce); } else { // Peer is too old to support ping command with nonce, pong will never arrive. pto->nPingNonceSent = 0; pto->PushMessage("ping"); } } TRY_LOCK(cs_main, lockMain); // Acquire cs_main for IsInitialBlockDownload() and CNodeState() if (!lockMain) return true; // Address refresh broadcast static int64_t nLastRebroadcast; if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60)) { LOCK(cs_vNodes); BOOST_FOREACH (CNode* pnode, vNodes) { // Periodically clear setAddrKnown to allow refresh broadcasts if (nLastRebroadcast) pnode->setAddrKnown.clear(); // Rebroadcast our address AdvertizeLocal(pnode); } if (!vNodes.empty()) nLastRebroadcast = GetTime(); } // // Message: addr // if (fSendTrickle) { vector<CAddress> vAddr; vAddr.reserve(pto->vAddrToSend.size()); BOOST_FOREACH (const CAddress& addr, pto->vAddrToSend) { // returns true if wasn't already contained in the set if (pto->setAddrKnown.insert(addr).second) { vAddr.push_back(addr); // receiver rejects addr messages larger than 1000 if (vAddr.size() >= 1000) { pto->PushMessage("addr", vAddr); vAddr.clear(); } } } pto->vAddrToSend.clear(); if (!vAddr.empty()) pto->PushMessage("addr", vAddr); } CNodeState& state = *State(pto->GetId()); if (state.fShouldBan) { if (pto->fWhitelisted) LogPrintf("Warning: not punishing whitelisted peer %s!\n", pto->addr.ToString()); else { pto->fDisconnect = true; if (pto->addr.IsLocal()) LogPrintf("Warning: not banning local peer %s!\n", pto->addr.ToString()); else { CNode::Ban(pto->addr, BanReasonNodeMisbehaving); } } state.fShouldBan = false; } BOOST_FOREACH (const CBlockReject& reject, state.rejects) pto->PushMessage("reject", (string) "block", reject.chRejectCode, reject.strRejectReason, reject.hashBlock); state.rejects.clear(); // Start block sync if (pindexBestHeader == NULL) pindexBestHeader = chainActive.Tip(); bool fFetch = state.fPreferredDownload || (nPreferredDownload == 0 && !pto->fClient && !pto->fOneShot); // Download if this is a nice peer, or we have no nice peers and this one might do. if (!state.fSyncStarted && !pto->fClient && fFetch && /*!fImporting &&*/ !fReindex) { // Only actively request headers from a single peer, unless we're close to end of initial download. if (nSyncStarted == 0 || pindexBestHeader->GetBlockTime() > GetAdjustedTime() - 6 * 60 * 60) { // NOTE: was "close to today" and 24h in Bitcoin state.fSyncStarted = true; nSyncStarted++; if (pto->nVersion >= SENDHEADERS_VERSION) { const CBlockIndex *pindexStart = pindexBestHeader; /* If possible, start at the block preceding the currently best known header. This ensures that we always get a non-empty list of headers back as long as the peer is up-to-date. With a non-empty response, we can initialise the peer's known best block. This wouldn't be possible if we requested starting at pindexBestHeader and got back an empty response. */ if (pindexStart->pprev) pindexStart = pindexStart->pprev; pto->PushMessage("getheaders", chainActive.GetLocator(pindexStart), uint256(0)); } else { pto->PushMessage("getblocks", chainActive.GetLocator(chainActive.Tip()), uint256(0)); } } } // Resend wallet transactions that haven't gotten in a block yet // Except during reindex, importing and IBD, when old wallet // transactions become unconfirmed and spams other nodes. if (!fReindex /*&& !fImporting && !IsInitialBlockDownload()*/) { GetMainSignals().Broadcast(); } // // Try sending block announcements via headers // if (pto->nVersion >= SENDHEADERS_VERSION) { // If we have less than MAX_BLOCKS_TO_ANNOUNCE in our // list of block hashes we're relaying, and our peer wants // headers announcements, then find the first header // not yet known to our peer but would connect, and send. // If no header would connect, or if we have too many // blocks, or if the peer doesn't want headers, just // add all to the inv queue. LOCK(pto->cs_inventory); vector<CBlock> vHeaders; bool fRevertToInv = (!state.fPreferHeaders || pto->vBlockHashesToAnnounce.size() > MAX_BLOCKS_TO_ANNOUNCE); CBlockIndex *pBestIndex = NULL; // last header queued for delivery ProcessBlockAvailability(pto->id); // ensure pindexBestKnownBlock is up-to-date if (!fRevertToInv) { bool fFoundStartingHeader = false; // Try to find first header that our peer doesn't have, and // then send all headers past that one. If we come across any // headers that aren't on chainActive, give up. BOOST_FOREACH(const uint256 &hash, pto->vBlockHashesToAnnounce) { BlockMap::iterator mi = mapBlockIndex.find(hash); assert(mi != mapBlockIndex.end()); CBlockIndex *pindex = mi->second; if (chainActive[pindex->nHeight] != pindex) { // Bail out if we reorged away from this block fRevertToInv = true; break; } if (pBestIndex != NULL && pindex->pprev != pBestIndex) { // This means that the list of blocks to announce don't // connect to each other. // This shouldn't really be possible to hit during // regular operation (because reorgs should take us to // a chain that has some block not on the prior chain, // which should be caught by the prior check), but one // way this could happen is by using invalidateblock / // reconsiderblock repeatedly on the tip, causing it to // be added multiple times to vBlockHashesToAnnounce. // Robustly deal with this rare situation by reverting // to an inv. fRevertToInv = true; break; } pBestIndex = pindex; if (fFoundStartingHeader) { // add this to the headers message vHeaders.push_back(pindex->GetBlockHeader()); } else if (PeerHasHeader(&state, pindex)) { continue; // keep looking for the first new block } else if (pindex->pprev == NULL || PeerHasHeader(&state, pindex->pprev)) { // Peer doesn't have this header but they do have the prior one. // Start sending headers. fFoundStartingHeader = true; vHeaders.push_back(pindex->GetBlockHeader()); } else { // Peer doesn't have this header or the prior one -- nothing will // connect, so bail out. fRevertToInv = true; break; } } } if (fRevertToInv) { // If falling back to using an inv, just try to inv the tip. // The last entry in vBlockHashesToAnnounce was our tip at some point // in the past. if (!pto->vBlockHashesToAnnounce.empty()) { const uint256 &hashToAnnounce = pto->vBlockHashesToAnnounce.back(); BlockMap::iterator mi = mapBlockIndex.find(hashToAnnounce); assert(mi != mapBlockIndex.end()); CBlockIndex *pindex = mi->second; // Warn if we're announcing a block that is not on the main chain. // This should be very rare and could be optimized out. // Just log for now. if (chainActive[pindex->nHeight] != pindex) { LogPrint("net", "Announcing block %s not on main chain (tip=%s)\n", hashToAnnounce.ToString(), chainActive.Tip()->GetBlockHash().ToString()); } // If the peer's chain has this block, don't inv it back. if (!PeerHasHeader(&state, pindex)) { pto->PushInventory(CInv(MSG_BLOCK, hashToAnnounce)); LogPrint("net", "%s: sending inv peer=%d hash=%s\n", __func__, pto->id, hashToAnnounce.ToString()); } } } else if (!vHeaders.empty()) { if (vHeaders.size() > 1) { LogPrint("net", "%s: %u headers, range (%s, %s), to peer=%d\n", __func__, vHeaders.size(), vHeaders.front().GetHash().ToString(), vHeaders.back().GetHash().ToString(), pto->id); } else { LogPrint("net", "%s: sending header %s to peer=%d\n", __func__, vHeaders.front().GetHash().ToString(), pto->id); } pto->PushMessage("headers", vHeaders); state.pindexBestHeaderSent = pBestIndex; } pto->vBlockHashesToAnnounce.clear(); } // // Message: inventory // vector<CInv> vInv; vector<CInv> vInvWait; { LOCK(pto->cs_inventory); vInv.reserve(pto->vInventoryToSend.size()); vInvWait.reserve(pto->vInventoryToSend.size()); BOOST_FOREACH (const CInv& inv, pto->vInventoryToSend) { if (pto->setInventoryKnown.count(inv)) continue; // trickle out tx inv to protect privacy if (inv.type == MSG_TX && !fSendTrickle) { // 1/4 of tx invs blast to all immediately static uint256 hashSalt; if (hashSalt == 0) hashSalt = GetRandHash(); uint256 hashRand = inv.hash ^ hashSalt; hashRand = Hash(BEGIN(hashRand), END(hashRand)); bool fTrickleWait = ((hashRand & 3) != 0); if (fTrickleWait) { vInvWait.push_back(inv); continue; } } // returns true if wasn't already contained in the set if (pto->setInventoryKnown.insert(inv).second) { vInv.push_back(inv); if (vInv.size() >= 1000) { pto->PushMessage("inv", vInv); vInv.clear(); } } } pto->vInventoryToSend = vInvWait; } if (!vInv.empty()) pto->PushMessage("inv", vInv); // Detect whether we're stalling int64_t nNow = GetTimeMicros(); if (!pto->fDisconnect && state.nStallingSince && state.nStallingSince < nNow - 1000000 * BLOCK_STALLING_TIMEOUT) { // Stalling only triggers when the block download window cannot move. During normal steady state, // the download window should be much larger than the to-be-downloaded set of blocks, so disconnection // should only happen during initial block download. LogPrintf("Peer=%d is stalling block download, disconnecting\n", pto->id); pto->fDisconnect = true; } // In case there is a block that has been in flight from this peer for (2 + 0.5 * N) times the block interval // (with N the number of validated blocks that were in flight at the time it was requested), disconnect due to // timeout. We compensate for in-flight blocks to prevent killing off peers due to our own downstream link // being saturated. We only count validated in-flight blocks so peers can't advertize nonexisting block hashes // to unreasonably increase our timeout. if (!pto->fDisconnect && state.vBlocksInFlight.size() > 0 && state.vBlocksInFlight.front().nTime < nNow - 500000 * (Params().TargetSpacing() * 10) * (4 + state.vBlocksInFlight.front().nValidatedQueuedBefore)) { LogPrintf("Timeout downloading block %s from peer=%d, disconnecting\n", state.vBlocksInFlight.front().hash.ToString(), pto->id); pto->fDisconnect = true; } // // Message: getdata (blocks) // vector<CInv> vGetData; if (!pto->fDisconnect && !pto->fClient && fFetch && state.nBlocksInFlight < MAX_BLOCKS_IN_TRANSIT_PER_PEER) { vector<CBlockIndex*> vToDownload; NodeId staller = -1; FindNextBlocksToDownload(pto->GetId(), MAX_BLOCKS_IN_TRANSIT_PER_PEER - state.nBlocksInFlight, vToDownload, staller); BOOST_FOREACH (CBlockIndex* pindex, vToDownload) { vGetData.push_back(CInv(MSG_BLOCK, pindex->GetBlockHash())); MarkBlockAsInFlight(pto->GetId(), pindex->GetBlockHash(), pindex); LogPrint("net", "Requesting block %s (%d) peer=%d\n", pindex->GetBlockHash().ToString(), pindex->nHeight, pto->id); } if (state.nBlocksInFlight == 0 && staller != -1) { if (State(staller)->nStallingSince == 0) { State(staller)->nStallingSince = nNow; LogPrint("net", "Stall started peer=%d\n", staller); } } } // // Message: getdata (non-blocks) // while (!pto->fDisconnect && !pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow) { const CInv& inv = (*pto->mapAskFor.begin()).second; if (!AlreadyHave(inv)) { if (fDebug) LogPrint("net", "Requesting %s peer=%d\n", inv.ToString(), pto->id); vGetData.push_back(inv); if (vGetData.size() >= 1000) { pto->PushMessage("getdata", vGetData); vGetData.clear(); } } pto->mapAskFor.erase(pto->mapAskFor.begin()); } if (!vGetData.empty()) pto->PushMessage("getdata", vGetData); } return true; } bool CBlockUndo::WriteToDisk(CDiskBlockPos& pos, const uint256& hashBlock) { // Open history file to append CAutoFile fileout(OpenUndoFile(pos), SER_DISK, CLIENT_VERSION); if (fileout.IsNull()) return error("CBlockUndo::WriteToDisk : OpenUndoFile failed"); // Write index header unsigned int nSize = fileout.GetSerializeSize(*this); fileout << FLATDATA(Params().MessageStart()) << nSize; // Write undo data long fileOutPos = ftell(fileout.Get()); if (fileOutPos < 0) return error("CBlockUndo::WriteToDisk : ftell failed"); pos.nPos = (unsigned int)fileOutPos; fileout << *this; // calculate & write checksum CHashWriter hasher(SER_GETHASH, PROTOCOL_VERSION); hasher << hashBlock; hasher << *this; fileout << hasher.GetHash(); return true; } bool CBlockUndo::ReadFromDisk(const CDiskBlockPos& pos, const uint256& hashBlock) { // Open history file to read CAutoFile filein(OpenUndoFile(pos, true), SER_DISK, CLIENT_VERSION); if (filein.IsNull()) return error("CBlockUndo::ReadFromDisk : OpenBlockFile failed"); // Read block uint256 hashChecksum; try { filein >> *this; filein >> hashChecksum; } catch (std::exception& e) { return error("%s : Deserialize or I/O error - %s", __func__, e.what()); } // Verify checksum CHashWriter hasher(SER_GETHASH, PROTOCOL_VERSION); hasher << hashBlock; hasher << *this; if (hashChecksum != hasher.GetHash()) return error("CBlockUndo::ReadFromDisk : Checksum mismatch"); return true; } std::string CBlockFileInfo::ToString() const { return strprintf("CBlockFileInfo(blocks=%u, size=%u, heights=%u...%u, time=%s...%s)", nBlocks, nSize, nHeightFirst, nHeightLast, DateTimeStrFormat("%Y-%m-%d", nTimeFirst), DateTimeStrFormat("%Y-%m-%d", nTimeLast)); } class CMainCleanup { public: CMainCleanup() {} ~CMainCleanup() { // block headers BlockMap::iterator it1 = mapBlockIndex.begin(); for (; it1 != mapBlockIndex.end(); it1++) delete (*it1).second; mapBlockIndex.clear(); // orphan transactions mapOrphanTransactions.clear(); mapOrphanTransactionsByPrev.clear(); } } instance_of_cmaincleanup;
[ "ztegritycoin@gmail.com" ]
ztegritycoin@gmail.com
c4ced398e3147dd85ab4729dd6dc565ce4a34a03
e4cf94694330f3f7fdbb6ecf932c19a8637e1878
/mediasourse.cpp
f6000ae89440485f73afda45b4e5294e75708ace
[]
no_license
Reader6/ReadClient
20a77f4ea6bf648aaab7a25c1bd51d28bd1eee9a
78a0175956675cf3f5c8b5e2ef97d5be5544dfca
refs/heads/master
2021-01-16T04:01:31.107972
2020-07-02T16:47:06
2020-07-02T16:47:06
242,971,016
0
1
null
null
null
null
UTF-8
C++
false
false
3,220
cpp
#include "mediasourse.h" #include <unistd.h> #include <QDebug> #include <QDir> #include "filedownload.h" #include "downthread.h" MediaSourse::MediaSourse(QObject *parent) :QObject(parent), available{false}, file{nullptr}, alreadyTs{nullptr},len{-1}{} bool MediaSourse::loadSourse(QString url) { if(available == true){ qDebug() << "当前源已加载"; return false; } if(url.isEmpty()){ qDebug() << "参数为空"; return false; } sourse = url; QString soursefile = url + "/index.m3u8"; if(!FileDownload::get_instance().downLoad(soursefile, true)){ qDebug() << "加载源文件"<<soursefile<<"失败"; return false; } QString s = FileDownload::localaddr + soursefile; try{ file = new m3uFile(s.toStdString()); alreadyTs = new QVector<bool>(file->length()); }catch(const char* str){ qDebug() << str; return false; } len = alreadyTs->length(); for (int i=0; i<len; i++) { (*alreadyTs)[i] = isTsFileOk(i); } available = true; return true; } int MediaSourse::loadTsFile(int index, bool b) { if(!available){ qDebug() << "当前源不可用"; return -1; } if(index < 0) return -1; if(index > len-1) return -1; if((*alreadyTs).at(index)){ qDebug() << index << ".ts,已存在"; return 0; } QString url = QString(sourse + "/index%1.ts").arg(index); if(!FileDownload::get_instance().downLoad(url, b)){ qDebug() << "加载文件"<<url<<"失败"; return 1; } (*alreadyTs)[index] = true; return 0; } int MediaSourse::getDuration(int index) { if(!available){ qDebug() << "当前源不可用"; return -1; } return static_cast<int>(file->getExtinfSum(index) * 1000); } QString MediaSourse::absDir() { QDir dir = FileDownload::localaddr; return dir.absolutePath(); } void MediaSourse::clear() { available = false; len = -1; sourse.clear(); if( file != nullptr){ delete file; } if( alreadyTs != nullptr){ delete alreadyTs; } } int MediaSourse::length() const { if(available) return len; return -1; } int MediaSourse::poslocation(int postion) { if(!available){ qDebug() << "当前源不可用"; return -1; } //(,] if(postion < 0) return -1; double sec = static_cast<double>(postion/1000); int left = 0; int right = file->length()-1;//[left:0 right:len-1] // for(int i=0; i<right; i++) // if(x < postime[i]) // return i; if(sec > file->getExtinfSum(right)) return -1; while(left != right){ int m = (left+right)/2; if(sec < file->getExtinfSum(m)){//[0,m] right = m; }else {//[m+1 , right] left = m+1; } } return left; //return -1; } bool MediaSourse::isTsFileOk(int i) { if((*alreadyTs).at(i)) return true; QString path = QString(sourse + "/index%1.ts").arg(i); if(access(path.toStdString().c_str(),F_OK) == 0){ return true; } return false; } MediaSourse::~MediaSourse() { clear(); }
[ "1305665118@qq.com" ]
1305665118@qq.com
d60931cfc025b34ef8638d62851c3c8670818dd2
aab77b2a871638ca4ce0a162431206cb8e930e13
/data/input/boost_1_53_0 (1)/boost_1_53_0/libs/functional/hash/test/hash_custom_test.cpp
bec2fbb34d746c3e5dedb86b751c8c781d3875c7
[ "BSL-1.0" ]
permissive
tl66365561/Search_engine
0ddc51b3baa3eaddc4865d7411d75b08bf905ffb
7adcf988f0e25e3e1ed2f0bbf762ebd6d76bf810
refs/heads/master
2020-05-05T11:05:55.593848
2019-07-02T04:34:48
2019-07-02T04:34:48
179,975,031
3
0
null
null
null
null
UTF-8
C++
false
false
2,395
cpp
// Copyright 2005-2009 Daniel James. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "./config.hpp" #include <boost/config.hpp> #include <cstddef> namespace test { struct custom { int value_; std::size_t hash() const { return value_ * 10; } #if !defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP) friend std::size_t hash_value(custom const& x ) { return x.hash(); } #endif custom(int x) : value_(x) {} }; } #if defined(BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP) namespace boost { std::size_t hash_value(test::custom x) { return x.hash(); } } #endif #include "./config.hpp" #ifdef BOOST_HASH_TEST_EXTENSIONS # ifdef BOOST_HASH_TEST_STD_INCLUDES # include <functional> # else # include <boost/functional/hash.hpp> # endif #endif #include <boost/detail/lightweight_test.hpp> #ifdef BOOST_HASH_TEST_EXTENSIONS #include <vector> #include <string> #include <cctype> void custom_tests() { BOOST_HASH_TEST_NAMESPACE::hash<test::custom> custom_hasher; BOOST_TEST(custom_hasher(10) == 100u); test::custom x(55); BOOST_TEST(custom_hasher(x) == 550u); { using namespace BOOST_HASH_TEST_NAMESPACE; BOOST_TEST(custom_hasher(x) == hash_value(x)); } std::vector<test::custom> custom_vector; custom_vector.push_back(5); custom_vector.push_back(25); custom_vector.push_back(35); std::size_t seed = 0; BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom(5)); BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom(25)); BOOST_HASH_TEST_NAMESPACE::hash_combine(seed, test::custom(35)); std::size_t seed2 = 0; BOOST_HASH_TEST_NAMESPACE::hash_combine(seed2, 50u); BOOST_HASH_TEST_NAMESPACE::hash_combine(seed2, 250u); BOOST_HASH_TEST_NAMESPACE::hash_combine(seed2, 350u); BOOST_TEST(seed == BOOST_HASH_TEST_NAMESPACE::hash_range( custom_vector.begin(), custom_vector.end())); BOOST_TEST(seed == seed2); } #endif // BOOST_HASH_TEST_EXTENSIONS int main() { #ifdef BOOST_HASH_TEST_EXTENSIONS custom_tests(); #endif return boost::report_errors(); }
[ "1270733576@qq.com" ]
1270733576@qq.com
748c61ebca331e293aed8e3e065d2372b3b1ed5f
6070c8fd739b1a3dca1615882f6d03f16e67f2b0
/hack/snake.cpp
d980cbbe8a95fab2a9e8c33ebc1e8b3ebf9872ea
[]
no_license
mdmuneerhasan/competitive
14410133f677ed9dbb39309055ed9cf6ea89d4e7
2797e9bab26f740259f99a8ee153a457ce02a41a
refs/heads/master
2022-08-24T16:10:13.749169
2022-08-21T09:41:23
2022-08-21T09:41:23
207,476,804
0
0
null
null
null
null
UTF-8
C++
false
false
2,989
cpp
/* This code is submitted by Muneer Hasan * Computer-scince student ( @ Jamia Millia Islamia : New Delhi) * Email : md.muneerhasan@gmail.com * 23:01:15 Wednesday 05-August:2020*/ #include<bits/stdc++.h> using namespace std; #define int long long int #define SF(v) sort(v.begin(),v.end()) #define F first #define S second #define UP(x) for(int i=0;i<x.size();i++){if(x[i]<='z' && x[i]>='a')x[i]=char(x[i]-'a'+'A');} #define LO(x) for(int i=0;i<x.size();i++){if(x[i]<='Z' && x[i]>='A')x[i]=char(x[i]-'A'+'a');} #define MP make_pair #define PII pair<int, int> #define MAXHEAP priority_queue<int> #define MINHEAP priority_queue<int, vector<int>, greater<int> > #define SETBIT(x) __builtin_popcountll(x) #define ZEROBIT(x) __builtin_ctzll(x) #define INF INT_MAX #define PS(x,y) fixed<<setprecision(y)<<x #define MOD 1000000007 #define db(...) __f(#__VA_ARGS__, __VA_ARGS__) template <typename Arg1>void __f(const char* name, Arg1&& arg1) { cout << name << " : " << arg1 << '\n'; }template <typename Arg1, typename... Args>void __f(const char* names, Arg1&& arg1, Args&&... args) { const char* comma = strchr(names + 1, ','); cout.write(names, comma - names) << " : " << arg1 << " | "; __f(comma + 1, args...);} vector<int> vec1,vec2,vec3,primes; int n=0,m=0,k=0,n1=0,n2=0,n3=0,stt=0,ent=0,q=0,qry=0; int nodes,edges; unordered_map<int,int> visited; unordered_map<int,vector<pair<int,int>>> adjList; void show(){ for(auto i=0;i<=100;i++){ auto x=adjList[i]; cout<< i << "->"; for(auto y:x){ cout <<"("<< y.first <<","<<y.second<<")"; } cout <<endl; } } int dfs(int src){ if(src>100)return 0; int k=INF; for(auto x: adjList[src]){ if(visited[x.first]>visited[src]+1){ visited[x.first]=visited[src]+1; dfs(x.first); } } return k; } void Muneer(){ int ans=0,cnt=0,x=0,y=0,z=0,a=0,b=0,c=0; adjList.clear(); visited.clear(); cin >>nodes;edges=nodes; for(int i=0;i<edges;i++){ cin >> stt >> ent; adjList[stt].push_back(make_pair(ent,k)); } cin >>nodes;edges=nodes; for(int i=0;i<edges;i++){ cin >> stt >> ent; adjList[stt].push_back(make_pair(ent,k)); } for(int i=0;i<=100;i++){ visited[i]=INF; for(int j=1;j<=6;j++){ if(adjList[i+j].size()==0){ adjList[i].push_back({i+j,0}); }else{ adjList[i].push_back(adjList[i+j][0]); } } } // show(); visited[1]=0; dfs(1); cout << ((visited[100]==INF)?-1:visited[100])<<endl; } int32_t main(){ ios_base::sync_with_stdio(false); cin.tie(NULL);cout.tie(NULL); int t=1; cin >>t; while (t--)Muneer(); return 0; }
[ "md.muneerhasan@gmail.com" ]
md.muneerhasan@gmail.com
7081b7faa57d4ab6836fd512a127e0700b127e3b
f7bbeee021ae30cb35def098b374a0cabd0a36fc
/longestvalidparentheses.cpp
d698bda9b4bc88f6e6e892d0c19f3e5b6445c60f
[]
no_license
jxie418/leetcodecpp
e8e8ad9fb8adbbe389738523ee266735d124d2df
6a778367726dd47247d99e94d7a0a29efe2b0cb8
refs/heads/master
2021-01-10T09:30:10.960584
2016-04-24T03:10:07
2016-04-24T03:10:07
49,180,832
0
0
null
null
null
null
UTF-8
C++
false
false
1,208
cpp
#include <iostream> #include <string> using namespace std; class Solution { public: int longestValidParentheses(string s) { if (s.length() == 0) { return 0; } int count = 0, m =0, len =0; for ( int i = 0 ; i < s.length() ; i++ ) { if (s[i] == '(') { ++count; ++len; } else if (s[i] == ')') { --count; ++len; if (count == 0) { m = max(m, len); } else if (count < 0) { count = 0; len = 0; } } } count = 0 ; len = 0 ; for (int i = s.length() - 1 ; i >= 0 ; i--) { if (s[i] == ')') { ++count; ++len; } else if (s[i] == '(') { --count; ++len; if (count == 0) { m = max(m, len); } else if (count < 0) { count = 0; len = 0; } } } return m; } }; int main() { Solution s; cout<<s.longestValidParentheses(")()())")<<endl; return 0; }
[ "jxie418@gmail.com" ]
jxie418@gmail.com
6ad62e981ef06396f4d8f0c6f66d69abdfc660ea
55fa93532e1377d3dc7b77833fb024e6d1bda62e
/libs/ossia/include/ossia/detail/algorithms.hpp
966a7045d075988e4b56b78ed7f92cb51776d4e0
[]
no_license
avilleret/ofxOSSIA
14293f0d762748b77fc646d9807874b807719a31
86474907447004ba0db98ff04c527215378cf50a
refs/heads/master
2021-01-18T11:20:03.269109
2016-08-17T19:41:25
2016-08-17T19:41:30
67,735,146
0
0
null
2016-09-08T19:47:37
2016-09-08T19:47:37
null
UTF-8
C++
false
false
1,366
hpp
#pragma once #include <algorithm> #include <type_traits> #include <iterator> /** * This header contains various range-style functions that mimic std::algorithm functions. * This won't be necessary anymore when ranges are introduced in C++20 (hopefully). */ namespace ossia { template <typename Vector> using iterator_t = typename std::remove_reference<Vector>::type::iterator; template <typename Vector, typename Value> auto find(Vector&& v, const Value& val) { return std::find(std::begin(v), std::end(v), val); } template <typename Vector, typename Fun> auto find_if(Vector&& v, Fun fun) { return std::find_if(std::begin(v), std::end(v), fun); } template <typename Vector, typename Value> bool contains(Vector&& v, const Value& val) { return find(v, val) != std::end(v); } template <typename Vector, typename Value> void remove_one(Vector&& v, const Value& val) { auto it = find(v, val); if (it != v.end()) { v.erase(it); } } template <typename Vector, typename Fun> bool any_of(Vector&& v, Fun fun) { return std::any_of(std::begin(v), std::end(v), fun); } template <typename Vector, typename Fun> bool none_of(Vector&& v, Fun fun) { return std::none_of(std::begin(v), std::end(v), fun); } template <typename Vector, typename Fun> auto remove_if(Vector&& v, Fun fun) { return std::remove_if(std::begin(v), std::end(v), fun); } }
[ "jeanmichael.celerier@gmail.com" ]
jeanmichael.celerier@gmail.com
866c0fc3f4306eca6e4533b7c539681de429f090
f5678fd67c0d88142d9629fca67444e8a7c4d0bc
/camera/QCamera2/HAL/QCameraMem.cpp
97d7e38f653b0a6bdb895e870f12edba19ffaf9c
[]
no_license
gimmeitorilltell/device_oneplus_onyx
e2ca12cd527e132dc2e0908020d77720f82d8885
37402715c44a40dcc09d2021892c907d89932095
refs/heads/c7.1.1
2020-12-31T07:11:41.602115
2017-02-02T05:31:00
2017-02-02T05:31:00
80,563,612
0
0
null
2017-01-31T21:22:11
2017-01-31T21:22:10
null
UTF-8
C++
false
false
55,042
cpp
/* Copyright (c) 2012-2013, The Linux Foundataion. 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 Linux Foundation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT * 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. * */ #define LOG_TAG "QCameraHWI_Mem" #include <string.h> #include <fcntl.h> #include <sys/mman.h> #include <utils/Errors.h> #include <gralloc_priv.h> #include <QComOMXMetadata.h> #include "QCamera2HWI.h" #include "QCameraMem.h" extern "C" { #include <mm_camera_interface.h> } using namespace android; namespace qcamera { // QCaemra2Memory base class /*=========================================================================== * FUNCTION : QCameraMemory * * DESCRIPTION: default constructor of QCameraMemory * * PARAMETERS : * @cached : flag indicates if using cached memory * * RETURN : None *==========================================================================*/ QCameraMemory::QCameraMemory(bool cached, QCameraMemoryPool *pool, cam_stream_type_t streamType) :m_bCached(cached), mMemoryPool(pool), mStreamType(streamType) { mBufferCount = 0; memset(mMemInfo, 0, sizeof(mMemInfo)); } /*=========================================================================== * FUNCTION : ~QCameraMemory * * DESCRIPTION: deconstructor of QCameraMemory * * PARAMETERS : none * * RETURN : None *==========================================================================*/ QCameraMemory::~QCameraMemory() { } /*=========================================================================== * FUNCTION : cacheOpsInternal * * DESCRIPTION: ion related memory cache operations * * PARAMETERS : * @index : index of the buffer * @cmd : cache ops command * @vaddr : ptr to the virtual address * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraMemory::cacheOpsInternal(int index, unsigned int cmd, void *vaddr) { if (!m_bCached) { // Memory is not cached, no need for cache ops CDBG("%s: No cache ops here for uncached memory", __func__); return OK; } struct ion_flush_data cache_inv_data; struct ion_custom_data custom_data; int ret = OK; if (index >= mBufferCount) { ALOGE("%s: index %d out of bound [0, %d)", __func__, index, mBufferCount); return BAD_INDEX; } memset(&cache_inv_data, 0, sizeof(cache_inv_data)); memset(&custom_data, 0, sizeof(custom_data)); cache_inv_data.vaddr = vaddr; cache_inv_data.fd = mMemInfo[index].fd; cache_inv_data.handle = mMemInfo[index].handle; cache_inv_data.length = mMemInfo[index].size; custom_data.cmd = cmd; custom_data.arg = (unsigned long)&cache_inv_data; CDBG("%s: addr = %p, fd = %d, handle = %lx length = %d, ION Fd = %d", __func__, cache_inv_data.vaddr, cache_inv_data.fd, (unsigned long)cache_inv_data.handle, cache_inv_data.length, mMemInfo[index].main_ion_fd); ret = ioctl(mMemInfo[index].main_ion_fd, ION_IOC_CUSTOM, &custom_data); if (ret < 0) ALOGE("%s: Cache Invalidate failed: %s\n", __func__, strerror(errno)); return ret; } /*=========================================================================== * FUNCTION : getFd * * DESCRIPTION: return file descriptor of the indexed buffer * * PARAMETERS : * @index : index of the buffer * * RETURN : file descriptor *==========================================================================*/ int QCameraMemory::getFd(int index) const { if (index >= mBufferCount) return BAD_INDEX; return mMemInfo[index].fd; } /*=========================================================================== * FUNCTION : getSize * * DESCRIPTION: return buffer size of the indexed buffer * * PARAMETERS : * @index : index of the buffer * * RETURN : buffer size *==========================================================================*/ int QCameraMemory::getSize(int index) const { if (index >= mBufferCount) return BAD_INDEX; return (int)mMemInfo[index].size; } /*=========================================================================== * FUNCTION : getCnt * * DESCRIPTION: query number of buffers allocated * * PARAMETERS : none * * RETURN : number of buffers allocated *==========================================================================*/ int QCameraMemory::getCnt() const { return mBufferCount; } /*=========================================================================== * FUNCTION : getBufDef * * DESCRIPTION: query detailed buffer information * * PARAMETERS : * @offset : [input] frame buffer offset * @bufDef : [output] reference to struct to store buffer definition * @index : [input] index of the buffer * * RETURN : none *==========================================================================*/ void QCameraMemory::getBufDef(const cam_frame_len_offset_t &offset, mm_camera_buf_def_t &bufDef, int index) const { if (!mBufferCount) { ALOGE("Memory not allocated"); return; } bufDef.fd = mMemInfo[index].fd; bufDef.frame_len = mMemInfo[index].size; bufDef.mem_info = (void *)this; bufDef.num_planes = offset.num_planes; bufDef.buffer = getPtr(index); bufDef.buf_idx = index; /* Plane 0 needs to be set separately. Set other planes in a loop */ bufDef.planes[0].length = offset.mp[0].len; bufDef.planes[0].m.userptr = mMemInfo[index].fd; bufDef.planes[0].data_offset = offset.mp[0].offset; bufDef.planes[0].reserved[0] = 0; for (int i = 1; i < bufDef.num_planes; i++) { bufDef.planes[i].length = offset.mp[i].len; bufDef.planes[i].m.userptr = mMemInfo[i].fd; bufDef.planes[i].data_offset = offset.mp[i].offset; bufDef.planes[i].reserved[0] = bufDef.planes[i-1].reserved[0] + bufDef.planes[i-1].length; } } /*=========================================================================== * FUNCTION : alloc * * DESCRIPTION: allocate requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * @heap_id : heap id to indicate where the buffers will be allocated from * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraMemory::alloc(int count, int size, int heap_id) { int rc = OK; if (mBufferCount < 0) { mBufferCount = 0; } int new_bufCnt = mBufferCount + count; if (new_bufCnt > MM_CAMERA_MAX_NUM_FRAMES) { ALOGE("%s: Buffer count %d out of bound. Max is %d", __func__, new_bufCnt, MM_CAMERA_MAX_NUM_FRAMES); return BAD_INDEX; } for (int i = mBufferCount; i < new_bufCnt; i ++) { if ( NULL == mMemoryPool ) { ALOGE("%s : No memory pool available", __func__); rc = allocOneBuffer(mMemInfo[i], heap_id, size, m_bCached); if (rc < 0) { ALOGE("%s: AllocateIonMemory failed", __func__); for (int j = i-1; j >= 0; j--) deallocOneBuffer(mMemInfo[j]); break; } } else { rc = mMemoryPool->allocateBuffer(mMemInfo[i], heap_id, size, m_bCached, mStreamType); if (rc < 0) { ALOGE("%s: Memory pool allocation failed", __func__); for (int j = i-1; j >= 0; j--) mMemoryPool->releaseBuffer(mMemInfo[j], mStreamType); break; } } } return rc; } /*=========================================================================== * FUNCTION : dealloc * * DESCRIPTION: deallocate buffers * * PARAMETERS : none * * RETURN : none *==========================================================================*/ void QCameraMemory::dealloc() { for (int i = 0; i < mBufferCount; i++) { if ( NULL == mMemoryPool ) { deallocOneBuffer(mMemInfo[i]); } else { mMemoryPool->releaseBuffer(mMemInfo[i], mStreamType); } } } /*=========================================================================== * FUNCTION : allocOneBuffer * * DESCRIPTION: impl of allocating one buffers of certain size * * PARAMETERS : * @memInfo : [output] reference to struct to store additional memory allocation info * @heap : [input] heap id to indicate where the buffers will be allocated from * @size : [input] lenght of the buffer to be allocated * @cached : [input] flag whether buffer needs to be cached * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraMemory::allocOneBuffer(QCameraMemInfo &memInfo, int heap_id, int size, bool cached) { int rc = OK; struct ion_handle_data handle_data; struct ion_allocation_data alloc; struct ion_fd_data ion_info_fd; int main_ion_fd = 0; main_ion_fd = open("/dev/ion", O_RDONLY); if (main_ion_fd < 0) { ALOGE("Ion dev open failed: %s\n", strerror(errno)); goto ION_OPEN_FAILED; } memset(&alloc, 0, sizeof(alloc)); alloc.len = size; /* to make it page size aligned */ alloc.len = (alloc.len + 4095) & (~4095); alloc.align = 4096; if (cached) { alloc.flags = ION_FLAG_CACHED; } alloc.heap_mask = heap_id; rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc); if (rc < 0) { ALOGE("ION allocation failed: %s\n", strerror(errno)); goto ION_ALLOC_FAILED; } memset(&ion_info_fd, 0, sizeof(ion_info_fd)); ion_info_fd.handle = alloc.handle; rc = ioctl(main_ion_fd, ION_IOC_SHARE, &ion_info_fd); if (rc < 0) { ALOGE("ION map failed %s\n", strerror(errno)); goto ION_MAP_FAILED; } memInfo.main_ion_fd = main_ion_fd; memInfo.fd = ion_info_fd.fd; memInfo.handle = ion_info_fd.handle; memInfo.size = alloc.len; memInfo.cached = cached; memInfo.heap_id = heap_id; CDBG_HIGH("%s : ION buffer %lx with size %d allocated", __func__, (unsigned long)memInfo.handle, memInfo.size); return OK; ION_MAP_FAILED: memset(&handle_data, 0, sizeof(handle_data)); handle_data.handle = ion_info_fd.handle; ioctl(main_ion_fd, ION_IOC_FREE, &handle_data); ION_ALLOC_FAILED: close(main_ion_fd); ION_OPEN_FAILED: return NO_MEMORY; } /*=========================================================================== * FUNCTION : deallocOneBuffer * * DESCRIPTION: impl of deallocating one buffers * * PARAMETERS : * @memInfo : reference to struct that stores additional memory allocation info * * RETURN : none *==========================================================================*/ void QCameraMemory::deallocOneBuffer(QCameraMemInfo &memInfo) { struct ion_handle_data handle_data; if (memInfo.fd > 0) { close(memInfo.fd); memInfo.fd = 0; } if (memInfo.main_ion_fd > 0) { memset(&handle_data, 0, sizeof(handle_data)); handle_data.handle = memInfo.handle; ioctl(memInfo.main_ion_fd, ION_IOC_FREE, &handle_data); close(memInfo.main_ion_fd); memInfo.main_ion_fd = 0; } memInfo.handle = 0; memInfo.size = 0; } /*=========================================================================== * FUNCTION : QCameraMemoryPool * * DESCRIPTION: default constructor of QCameraMemoryPool * * PARAMETERS : None * * RETURN : None *==========================================================================*/ QCameraMemoryPool::QCameraMemoryPool() { pthread_mutex_init(&mLock, NULL); } /*=========================================================================== * FUNCTION : ~QCameraMemoryPool * * DESCRIPTION: deconstructor of QCameraMemoryPool * * PARAMETERS : None * * RETURN : None *==========================================================================*/ QCameraMemoryPool::~QCameraMemoryPool() { clear(); pthread_mutex_destroy(&mLock); } /*=========================================================================== * FUNCTION : releaseBuffer * * DESCRIPTION: release one cached buffers * * PARAMETERS : * @memInfo : reference to struct that stores additional memory allocation info * @streamType: Type of stream the buffers belongs to * * RETURN : none *==========================================================================*/ void QCameraMemoryPool::releaseBuffer( struct QCameraMemory::QCameraMemInfo &memInfo, cam_stream_type_t streamType) { pthread_mutex_lock(&mLock); mPools[streamType].push_back(memInfo); pthread_mutex_unlock(&mLock); } /*=========================================================================== * FUNCTION : clear * * DESCRIPTION: clears all cached buffers * * PARAMETERS : none * * RETURN : none *==========================================================================*/ void QCameraMemoryPool::clear() { pthread_mutex_lock(&mLock); for (int i = CAM_STREAM_TYPE_DEFAULT; i < CAM_STREAM_TYPE_MAX; i++ ) { List<struct QCameraMemory::QCameraMemInfo>::iterator it = mPools[i].begin(); for( ; it != mPools[i].end() ; it++) { QCameraMemory::deallocOneBuffer(*it); } mPools[i].clear(); } pthread_mutex_unlock(&mLock); } /*=========================================================================== * FUNCTION : findBufferLocked * * DESCRIPTION: search for a appropriate cached buffer * * PARAMETERS : * @memInfo : reference to struct that stores additional memory allocation info * @heap_id : type of heap * @size : size of the buffer * @cached : whether the buffer should be cached * @streaType: type of stream this buffer belongs to * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraMemoryPool::findBufferLocked( struct QCameraMemory::QCameraMemInfo &memInfo, int heap_id, uint32_t size, bool cached, cam_stream_type_t streamType) { int rc = NAME_NOT_FOUND; if (mPools[streamType].empty()) { return NAME_NOT_FOUND; } List<struct QCameraMemory::QCameraMemInfo>::iterator it = mPools[streamType].begin(); if (streamType == CAM_STREAM_TYPE_OFFLINE_PROC) { for( ; it != mPools[streamType].end() ; it++) { if( ((*it).size == size) && ((*it).heap_id == heap_id) && ((*it).cached == cached) ) { memInfo = *it; ALOGE("%s : Found buffer %lx size %d", __func__, (unsigned long)memInfo.handle, memInfo.size); mPools[streamType].erase(it); rc = NO_ERROR; break; } } } else { for( ; it != mPools[streamType].end() ; it++) { if(((*it).size >= size) && ((*it).heap_id == heap_id) && ((*it).cached == cached) ) { memInfo = *it; ALOGE("%s : Found buffer %lx size %d", __func__, (unsigned long)memInfo.handle, memInfo.size); mPools[streamType].erase(it); rc = NO_ERROR; break; } } } return rc; } /*=========================================================================== * FUNCTION : allocateBuffer * * DESCRIPTION: allocates a buffer from the memory pool, * it will re-use cached buffers if possible * * PARAMETERS : * @memInfo : reference to struct that stores additional memory allocation info * @heap_id : type of heap * @size : size of the buffer * @cached : whether the buffer should be cached * @streaType: type of stream this buffer belongs to * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraMemoryPool::allocateBuffer( struct QCameraMemory::QCameraMemInfo &memInfo, int heap_id, int size, bool cached, cam_stream_type_t streamType) { int rc = NO_ERROR; pthread_mutex_lock(&mLock); rc = findBufferLocked(memInfo, heap_id, size, cached, streamType); if (NAME_NOT_FOUND == rc ) { ALOGE("%s : Buffer not found!", __func__); rc = QCameraMemory::allocOneBuffer(memInfo, heap_id, size, cached); } pthread_mutex_unlock(&mLock); return rc; } /*=========================================================================== * FUNCTION : QCameraHeapMemory * * DESCRIPTION: constructor of QCameraHeapMemory for ion memory used internally in HAL * * PARAMETERS : * @cached : flag indicates if using cached memory * * RETURN : none *==========================================================================*/ QCameraHeapMemory::QCameraHeapMemory(bool cached) : QCameraMemory(cached) { for (int i = 0; i < MM_CAMERA_MAX_NUM_FRAMES; i ++) mPtr[i] = NULL; } /*=========================================================================== * FUNCTION : ~QCameraHeapMemory * * DESCRIPTION: deconstructor of QCameraHeapMemory * * PARAMETERS : none * * RETURN : none *==========================================================================*/ QCameraHeapMemory::~QCameraHeapMemory() { } /*=========================================================================== * FUNCTION : getPtr * * DESCRIPTION: return buffer pointer * * PARAMETERS : * @index : index of the buffer * * RETURN : buffer ptr *==========================================================================*/ void *QCameraHeapMemory::getPtr(int index) const { if (index >= mBufferCount) { ALOGE("index out of bound"); return (void *)BAD_INDEX; } return mPtr[index]; } /*=========================================================================== * FUNCTION : allocate * * DESCRIPTION: allocate requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraHeapMemory::allocate(int count, int size) { int heap_mask = 0x1 << ION_IOMMU_HEAP_ID; int rc = alloc(count, size, heap_mask); if (rc < 0) return rc; for (int i = 0; i < count; i ++) { void *vaddr = mmap(NULL, mMemInfo[i].size, PROT_READ | PROT_WRITE, MAP_SHARED, mMemInfo[i].fd, 0); if (vaddr == MAP_FAILED) { for (int j = i-1; j >= 0; j --) { munmap(mPtr[j], mMemInfo[j].size); mPtr[j] = NULL; deallocOneBuffer(mMemInfo[j]); } return NO_MEMORY; } else mPtr[i] = vaddr; } if (rc == 0) mBufferCount = count; return OK; } /*=========================================================================== * FUNCTION : allocateMore * * DESCRIPTION: allocate more requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraHeapMemory::allocateMore(int count, int size) { int heap_mask = 0x1 << ION_IOMMU_HEAP_ID; int rc = alloc(count, size, heap_mask); if (rc < 0) return rc; for (int i = mBufferCount; i < count + mBufferCount; i ++) { void *vaddr = mmap(NULL, mMemInfo[i].size, PROT_READ | PROT_WRITE, MAP_SHARED, mMemInfo[i].fd, 0); if (vaddr == MAP_FAILED) { for (int j = i-1; j >= mBufferCount; j --) { munmap(mPtr[j], mMemInfo[j].size); mPtr[j] = NULL; deallocOneBuffer(mMemInfo[j]); } return NO_MEMORY; } else { mPtr[i] = vaddr; } } mBufferCount += count; return OK; } /*=========================================================================== * FUNCTION : deallocate * * DESCRIPTION: deallocate buffers * * PARAMETERS : none * * RETURN : none *==========================================================================*/ void QCameraHeapMemory::deallocate() { for (int i = 0; i < mBufferCount; i++) { munmap(mPtr[i], mMemInfo[i].size); mPtr[i] = NULL; } dealloc(); mBufferCount = 0; } /*=========================================================================== * FUNCTION : cacheOps * * DESCRIPTION: ion related memory cache operations * * PARAMETERS : * @index : index of the buffer * @cmd : cache ops command * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraHeapMemory::cacheOps(int index, unsigned int cmd) { if (index >= mBufferCount) return BAD_INDEX; return cacheOpsInternal(index, cmd, mPtr[index]); } /*=========================================================================== * FUNCTION : getRegFlags * * DESCRIPTION: query initial reg flags * * PARAMETERS : * @regFlags: initial reg flags of the allocated buffers * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraHeapMemory::getRegFlags(uint8_t * /*regFlags*/) const { return INVALID_OPERATION; } /*=========================================================================== * FUNCTION : getMemory * * DESCRIPTION: get camera memory * * PARAMETERS : * @index : buffer index * @metadata: flag if it's metadata * * RETURN : camera memory ptr * NULL if not supported or failed *==========================================================================*/ camera_memory_t *QCameraHeapMemory::getMemory( int /*index*/, bool /*metadata*/) const { return NULL; } /*=========================================================================== * FUNCTION : getMatchBufIndex * * DESCRIPTION: query buffer index by opaque ptr * * PARAMETERS : * @opaque : opaque ptr * @metadata: flag if it's metadata * * RETURN : buffer index if match found, * -1 if failed *==========================================================================*/ int QCameraHeapMemory::getMatchBufIndex(const void *opaque, bool metadata) const { int index = -1; if (metadata) { return -1; } for (int i = 0; i < mBufferCount; i++) { if (mPtr[i] == opaque) { index = i; break; } } return index; } /*=========================================================================== * FUNCTION : QCameraStreamMemory * * DESCRIPTION: constructor of QCameraStreamMemory * ION memory allocated directly from /dev/ion and shared with framework * * PARAMETERS : * @getMemory : camera memory request ops table * @cached : flag indicates if using cached memory * * RETURN : none *==========================================================================*/ QCameraStreamMemory::QCameraStreamMemory(camera_request_memory getMemory, bool cached, QCameraMemoryPool *pool, cam_stream_type_t streamType) :QCameraMemory(cached, pool, streamType), mGetMemory(getMemory) { for (int i = 0; i < MM_CAMERA_MAX_NUM_FRAMES; i ++) mCameraMemory[i] = NULL; } /*=========================================================================== * FUNCTION : ~QCameraStreamMemory * * DESCRIPTION: deconstructor of QCameraStreamMemory * * PARAMETERS : none * * RETURN : none *==========================================================================*/ QCameraStreamMemory::~QCameraStreamMemory() { } /*=========================================================================== * FUNCTION : allocate * * DESCRIPTION: allocate requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraStreamMemory::allocate(int count, int size) { int heap_mask = 0x1 << ION_IOMMU_HEAP_ID; int rc = alloc(count, size, heap_mask); if (rc < 0) return rc; for (int i = 0; i < count; i ++) { mCameraMemory[i] = mGetMemory(mMemInfo[i].fd, mMemInfo[i].size, 1, this); } mBufferCount = count; return NO_ERROR; } /*=========================================================================== * FUNCTION : allocateMore * * DESCRIPTION: allocate more requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraStreamMemory::allocateMore(int count, int size) { int heap_mask = 0x1 << ION_IOMMU_HEAP_ID; int rc = alloc(count, size, heap_mask); if (rc < 0) return rc; for (int i = mBufferCount; i < mBufferCount + count; i++) { mCameraMemory[i] = mGetMemory(mMemInfo[i].fd, mMemInfo[i].size, 1, this); } mBufferCount += count; return NO_ERROR; } /*=========================================================================== * FUNCTION : deallocate * * DESCRIPTION: deallocate buffers * * PARAMETERS : none * * RETURN : none *==========================================================================*/ void QCameraStreamMemory::deallocate() { for (int i = 0; i < mBufferCount; i ++) { mCameraMemory[i]->release(mCameraMemory[i]); mCameraMemory[i] = NULL; } dealloc(); mBufferCount = 0; } /*=========================================================================== * FUNCTION : cacheOps * * DESCRIPTION: ion related memory cache operations * * PARAMETERS : * @index : index of the buffer * @cmd : cache ops command * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraStreamMemory::cacheOps(int index, unsigned int cmd) { if (index >= mBufferCount) return BAD_INDEX; return cacheOpsInternal(index, cmd, mCameraMemory[index]->data); } /*=========================================================================== * FUNCTION : getRegFlags * * DESCRIPTION: query initial reg flags * * PARAMETERS : * @regFlags: initial reg flags of the allocated buffers * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraStreamMemory::getRegFlags(uint8_t *regFlags) const { for (int i = 0; i < mBufferCount; i ++) regFlags[i] = 1; return NO_ERROR; } /*=========================================================================== * FUNCTION : getMemory * * DESCRIPTION: get camera memory * * PARAMETERS : * @index : buffer index * @metadata: flag if it's metadata * * RETURN : camera memory ptr * NULL if not supported or failed *==========================================================================*/ camera_memory_t *QCameraStreamMemory::getMemory(int index, bool metadata) const { if (index >= mBufferCount || metadata) return NULL; return mCameraMemory[index]; } /*=========================================================================== * FUNCTION : getMatchBufIndex * * DESCRIPTION: query buffer index by opaque ptr * * PARAMETERS : * @opaque : opaque ptr * @metadata: flag if it's metadata * * RETURN : buffer index if match found, * -1 if failed *==========================================================================*/ int QCameraStreamMemory::getMatchBufIndex(const void *opaque, bool metadata) const { int index = -1; if (metadata) { return -1; } for (int i = 0; i < mBufferCount; i++) { if (mCameraMemory[i]->data == opaque) { index = i; break; } } return index; } /*=========================================================================== * FUNCTION : getPtr * * DESCRIPTION: return buffer pointer * * PARAMETERS : * @index : index of the buffer * * RETURN : buffer ptr *==========================================================================*/ void *QCameraStreamMemory::getPtr(int index) const { if (index >= mBufferCount) { ALOGE("index out of bound"); return (void *)BAD_INDEX; } return mCameraMemory[index]->data; } /*=========================================================================== * FUNCTION : QCameraVideoMemory * * DESCRIPTION: constructor of QCameraVideoMemory * VideoStream buffers also include metadata buffers * * PARAMETERS : * @getMemory : camera memory request ops table * @cached : flag indicates if using cached ION memory * * RETURN : none *==========================================================================*/ QCameraVideoMemory::QCameraVideoMemory(camera_request_memory getMemory, bool cached) : QCameraStreamMemory(getMemory, cached) { memset(mMetadata, 0, sizeof(mMetadata)); } /*=========================================================================== * FUNCTION : ~QCameraVideoMemory * * DESCRIPTION: deconstructor of QCameraVideoMemory * * PARAMETERS : none * * RETURN : none *==========================================================================*/ QCameraVideoMemory::~QCameraVideoMemory() { } /*=========================================================================== * FUNCTION : allocate * * DESCRIPTION: allocate requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraVideoMemory::allocate(int count, int size) { int rc = QCameraStreamMemory::allocate(count, size); if (rc < 0) return rc; for (int i = 0; i < count; i ++) { mMetadata[i] = mGetMemory(-1, sizeof(struct encoder_media_buffer_type), 1, this); if (!mMetadata[i]) { ALOGE("allocation of video metadata failed."); for (int j = 0; j <= i-1; j ++) mMetadata[j]->release(mMetadata[j]); QCameraStreamMemory::deallocate(); return NO_MEMORY; } struct encoder_media_buffer_type * packet = (struct encoder_media_buffer_type *)mMetadata[i]->data; packet->meta_handle = native_handle_create(1, 2); //1 fd, 1 offset and 1 size packet->buffer_type = kMetadataBufferTypeCameraSource; native_handle_t * nh = const_cast<native_handle_t *>(packet->meta_handle); nh->data[0] = mMemInfo[i].fd; nh->data[1] = 0; nh->data[2] = mMemInfo[i].size; } mBufferCount = count; return NO_ERROR; } /*=========================================================================== * FUNCTION : allocateMore * * DESCRIPTION: allocate more requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraVideoMemory::allocateMore(int count, int size) { int rc = QCameraStreamMemory::allocateMore(count, size); if (rc < 0) return rc; for (int i = mBufferCount; i < count + mBufferCount; i ++) { mMetadata[i] = mGetMemory(-1, sizeof(struct encoder_media_buffer_type), 1, this); if (!mMetadata[i]) { ALOGE("allocation of video metadata failed."); for (int j = mBufferCount; j <= i-1; j ++) { mMetadata[j]->release(mMetadata[j]); mCameraMemory[j]->release(mCameraMemory[j]); mCameraMemory[j] = NULL; deallocOneBuffer(mMemInfo[j]);; } return NO_MEMORY; } struct encoder_media_buffer_type * packet = (struct encoder_media_buffer_type *)mMetadata[i]->data; packet->meta_handle = native_handle_create(1, 2); //1 fd, 1 offset and 1 size packet->buffer_type = kMetadataBufferTypeCameraSource; native_handle_t * nh = const_cast<native_handle_t *>(packet->meta_handle); nh->data[0] = mMemInfo[i].fd; nh->data[1] = 0; nh->data[2] = mMemInfo[i].size; } mBufferCount += count; return NO_ERROR; } /*=========================================================================== * FUNCTION : deallocate * * DESCRIPTION: deallocate buffers * * PARAMETERS : none * * RETURN : none *==========================================================================*/ void QCameraVideoMemory::deallocate() { for (int i = 0; i < mBufferCount; i ++) { struct encoder_media_buffer_type * packet = (struct encoder_media_buffer_type *)mMetadata[i]->data; if (NULL != packet) { native_handle_t * nh = const_cast<native_handle_t *>(packet->meta_handle); if (NULL != nh) { if (native_handle_delete(nh)) { ALOGE("Unable to delete native handle"); } } else { ALOGE("native handle not available"); } } else { ALOGE("packet not available"); } mMetadata[i]->release(mMetadata[i]); mMetadata[i] = NULL; } QCameraStreamMemory::deallocate(); mBufferCount = 0; } /*=========================================================================== * FUNCTION : getMemory * * DESCRIPTION: get camera memory * * PARAMETERS : * @index : buffer index * @metadata: flag if it's metadata * * RETURN : camera memory ptr * NULL if not supported or failed *==========================================================================*/ camera_memory_t *QCameraVideoMemory::getMemory(int index, bool metadata) const { if (index >= mBufferCount) return NULL; if (metadata) return mMetadata[index]; else return mCameraMemory[index]; } /*=========================================================================== * FUNCTION : getMatchBufIndex * * DESCRIPTION: query buffer index by opaque ptr * * PARAMETERS : * @opaque : opaque ptr * @metadata: flag if it's metadata * * RETURN : buffer index if match found, * -1 if failed *==========================================================================*/ int QCameraVideoMemory::getMatchBufIndex(const void *opaque, bool metadata) const { int index = -1; for (int i = 0; i < mBufferCount; i++) { if (metadata) { if (mMetadata[i]->data == opaque) { index = i; break; } } else { if (mCameraMemory[i]->data == opaque) { index = i; break; } } } return index; } /*=========================================================================== * FUNCTION : QCameraGrallocMemory * * DESCRIPTION: constructor of QCameraGrallocMemory * preview stream buffers are allocated from gralloc native_windoe * * PARAMETERS : * @getMemory : camera memory request ops table * * RETURN : none *==========================================================================*/ QCameraGrallocMemory::QCameraGrallocMemory(camera_request_memory getMemory) : QCameraMemory(true) { mMinUndequeuedBuffers = 0; mWindow = NULL; mWidth = mHeight = mStride = mScanline = 0; mFormat = HAL_PIXEL_FORMAT_YCrCb_420_SP; mGetMemory = getMemory; for (int i = 0; i < MM_CAMERA_MAX_NUM_FRAMES; i ++) { mBufferHandle[i] = NULL; mLocalFlag[i] = BUFFER_NOT_OWNED; mPrivateHandle[i] = NULL; } } /*=========================================================================== * FUNCTION : ~QCameraGrallocMemory * * DESCRIPTION: deconstructor of QCameraGrallocMemory * * PARAMETERS : none * * RETURN : none *==========================================================================*/ QCameraGrallocMemory::~QCameraGrallocMemory() { } /*=========================================================================== * FUNCTION : setWindowInfo * * DESCRIPTION: set native window gralloc ops table * * PARAMETERS : * @window : gralloc ops table ptr * @width : width of preview frame * @height : height of preview frame * @stride : stride of preview frame * @scanline: scanline of preview frame * @foramt : format of preview image * * RETURN : none *==========================================================================*/ void QCameraGrallocMemory::setWindowInfo(preview_stream_ops_t *window, int width, int height, int stride, int scanline, int format) { mWindow = window; mWidth = width; mHeight = height; mStride = stride; mScanline = scanline; mFormat = format; } /*=========================================================================== * FUNCTION : displayBuffer * * DESCRIPTION: send received frame to display * * PARAMETERS : * @index : index of preview frame * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraGrallocMemory::displayBuffer(int index) { int err = NO_ERROR; int dequeuedIdx = BAD_INDEX; if (BUFFER_NOT_OWNED == mLocalFlag[index]) { ALOGE("%s: buffer to be enqueued is not owned", __func__); return INVALID_OPERATION; } err = mWindow->enqueue_buffer(mWindow, (buffer_handle_t *)mBufferHandle[index]); if(err != 0) { ALOGE("%s: enqueue_buffer failed, err = %d", __func__, err); } else { CDBG("%s: enqueue_buffer hdl=%p", __func__, *mBufferHandle[index]); mLocalFlag[index] = BUFFER_NOT_OWNED; } buffer_handle_t *buffer_handle = NULL; int stride = 0; err = mWindow->dequeue_buffer(mWindow, &buffer_handle, &stride); if (err == NO_ERROR && buffer_handle != NULL) { int i; CDBG("%s: dequed buf hdl =%p", __func__, *buffer_handle); for(i = 0; i < mBufferCount; i++) { if(mBufferHandle[i] == buffer_handle) { CDBG("%s: Found buffer in idx:%d", __func__, i); mLocalFlag[i] = BUFFER_OWNED; dequeuedIdx = i; break; } } } else { CDBG_HIGH("%s: dequeue_buffer, no free buffer from display now", __func__); } return dequeuedIdx; } /*=========================================================================== * FUNCTION : allocate * * DESCRIPTION: allocate requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraGrallocMemory::allocate(int count, int /*size*/) { int err = 0; status_t ret = NO_ERROR; int gralloc_usage = 0; struct ion_fd_data ion_info_fd; memset(&ion_info_fd, 0, sizeof(ion_info_fd)); CDBG_HIGH(" %s : E ", __func__); if (!mWindow) { ALOGE("Invalid native window"); return INVALID_OPERATION; } // Increment buffer count by min undequeued buffer. err = mWindow->get_min_undequeued_buffer_count(mWindow,&mMinUndequeuedBuffers); if (err != 0) { ALOGE("get_min_undequeued_buffer_count failed: %s (%d)", strerror(-err), -err); ret = UNKNOWN_ERROR; goto end; } err = mWindow->set_buffer_count(mWindow, count); if (err != 0) { ALOGE("set_buffer_count failed: %s (%d)", strerror(-err), -err); ret = UNKNOWN_ERROR; goto end; } err = mWindow->set_buffers_geometry(mWindow, mStride, mScanline, mFormat); if (err != 0) { ALOGE("%s: set_buffers_geometry failed: %s (%d)", __func__, strerror(-err), -err); ret = UNKNOWN_ERROR; goto end; } err = mWindow->set_crop(mWindow, 0, 0, mWidth, mHeight); if (err != 0) { ALOGE("%s: set_crop failed: %s (%d)", __func__, strerror(-err), -err); ret = UNKNOWN_ERROR; goto end; } gralloc_usage = GRALLOC_USAGE_HW_CAMERA_WRITE | GRALLOC_USAGE_PRIVATE_IOMMU_HEAP; err = mWindow->set_usage(mWindow, gralloc_usage); if(err != 0) { /* set_usage error out */ ALOGE("%s: set_usage rc = %d", __func__, err); ret = UNKNOWN_ERROR; goto end; } CDBG_HIGH("%s: usage = %d, geometry: %p, %d, %d, %d, %d, %d", __func__, gralloc_usage, mWindow, mWidth, mHeight, mStride, mScanline, mFormat); //Allocate cnt number of buffers from native window for (int cnt = 0; cnt < count; cnt++) { int stride; err = mWindow->dequeue_buffer(mWindow, &mBufferHandle[cnt], &stride); if(!err) { CDBG("dequeue buf hdl =%p", mBufferHandle[cnt]); mLocalFlag[cnt] = BUFFER_OWNED; } else { mLocalFlag[cnt] = BUFFER_NOT_OWNED; ALOGE("%s: dequeue_buffer idx = %d err = %d", __func__, cnt, err); } CDBG("%s: dequeue buf: %p\n", __func__, mBufferHandle[cnt]); if(err != 0) { ALOGE("%s: dequeue_buffer failed: %s (%d)", __func__, strerror(-err), -err); ret = UNKNOWN_ERROR; for(int i = 0; i < cnt; i++) { struct ion_handle_data ion_handle; memset(&ion_handle, 0, sizeof(ion_handle)); ion_handle.handle = mMemInfo[i].handle; if (ioctl(mMemInfo[i].main_ion_fd, ION_IOC_FREE, &ion_handle) < 0) { ALOGE("ion free failed"); } if(mLocalFlag[i] != BUFFER_NOT_OWNED) { err = mWindow->cancel_buffer(mWindow, mBufferHandle[i]); CDBG_HIGH("%s: cancel_buffer: hdl =%p", __func__, (*mBufferHandle[i])); } mLocalFlag[i] = BUFFER_NOT_OWNED; mBufferHandle[i] = NULL; } memset(&mMemInfo, 0, sizeof(mMemInfo)); goto end; } mPrivateHandle[cnt] = (struct private_handle_t *)(*mBufferHandle[cnt]); mMemInfo[cnt].main_ion_fd = open("/dev/ion", O_RDONLY); if (mMemInfo[cnt].main_ion_fd < 0) { ALOGE("%s: failed: could not open ion device", __func__); for(int i = 0; i < cnt; i++) { struct ion_handle_data ion_handle; memset(&ion_handle, 0, sizeof(ion_handle)); ion_handle.handle = mMemInfo[i].handle; if (ioctl(mMemInfo[i].main_ion_fd, ION_IOC_FREE, &ion_handle) < 0) { ALOGE("%s: ion free failed", __func__); } close(mMemInfo[i].main_ion_fd); if(mLocalFlag[i] != BUFFER_NOT_OWNED) { err = mWindow->cancel_buffer(mWindow, mBufferHandle[i]); CDBG_HIGH("%s: cancel_buffer: hdl =%p", __func__, (*mBufferHandle[i])); } mLocalFlag[i] = BUFFER_NOT_OWNED; mBufferHandle[i] = NULL; } memset(&mMemInfo, 0, sizeof(mMemInfo)); ret = UNKNOWN_ERROR; goto end; } else { ion_info_fd.fd = mPrivateHandle[cnt]->fd; if (ioctl(mMemInfo[cnt].main_ion_fd, ION_IOC_IMPORT, &ion_info_fd) < 0) { ALOGE("%s: ION import failed\n", __func__); for(int i = 0; i < cnt; i++) { struct ion_handle_data ion_handle; memset(&ion_handle, 0, sizeof(ion_handle)); ion_handle.handle = mMemInfo[i].handle; if (ioctl(mMemInfo[i].main_ion_fd, ION_IOC_FREE, &ion_handle) < 0) { ALOGE("ion free failed"); } close(mMemInfo[i].main_ion_fd); if(mLocalFlag[i] != BUFFER_NOT_OWNED) { err = mWindow->cancel_buffer(mWindow, mBufferHandle[i]); CDBG_HIGH("%s: cancel_buffer: hdl =%p", __func__, (*mBufferHandle[i])); } mLocalFlag[i] = BUFFER_NOT_OWNED; mBufferHandle[i] = NULL; } close(mMemInfo[cnt].main_ion_fd); memset(&mMemInfo, 0, sizeof(mMemInfo)); ret = UNKNOWN_ERROR; goto end; } } mCameraMemory[cnt] = mGetMemory(mPrivateHandle[cnt]->fd, mPrivateHandle[cnt]->size, 1, (void *)this); CDBG("%s: idx = %d, fd = %d, size = %d, offset = %d", __func__, cnt, mPrivateHandle[cnt]->fd, mPrivateHandle[cnt]->size, mPrivateHandle[cnt]->offset); mMemInfo[cnt].fd = mPrivateHandle[cnt]->fd; mMemInfo[cnt].size = mPrivateHandle[cnt]->size; mMemInfo[cnt].handle = ion_info_fd.handle; } mBufferCount = count; //Cancel min_undequeued_buffer buffers back to the window for (int i = 0; i < mMinUndequeuedBuffers; i ++) { err = mWindow->cancel_buffer(mWindow, mBufferHandle[i]); mLocalFlag[i] = BUFFER_NOT_OWNED; } end: CDBG_HIGH(" %s : X ",__func__); return ret; } /*=========================================================================== * FUNCTION : allocateMore * * DESCRIPTION: allocate more requested number of buffers of certain size * * PARAMETERS : * @count : number of buffers to be allocated * @size : lenght of the buffer to be allocated * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraGrallocMemory::allocateMore(int /*count*/, int /*size*/) { ALOGE("%s: Not implenmented yet", __func__); return UNKNOWN_ERROR; } /*=========================================================================== * FUNCTION : deallocate * * DESCRIPTION: deallocate buffers * * PARAMETERS : none * * RETURN : none *==========================================================================*/ void QCameraGrallocMemory::deallocate() { CDBG("%s: E ", __FUNCTION__); for (int cnt = 0; cnt < mBufferCount; cnt++) { mCameraMemory[cnt]->release(mCameraMemory[cnt]); struct ion_handle_data ion_handle; memset(&ion_handle, 0, sizeof(ion_handle)); ion_handle.handle = mMemInfo[cnt].handle; if (ioctl(mMemInfo[cnt].main_ion_fd, ION_IOC_FREE, &ion_handle) < 0) { ALOGE("ion free failed"); } close(mMemInfo[cnt].main_ion_fd); if(mLocalFlag[cnt] != BUFFER_NOT_OWNED) { if (mWindow) { mWindow->cancel_buffer(mWindow, mBufferHandle[cnt]); CDBG_HIGH("cancel_buffer: hdl =%p", (*mBufferHandle[cnt])); } else { ALOGE("Preview window is NULL, cannot cancel_buffer: hdl =%p", (*mBufferHandle[cnt])); } } mLocalFlag[cnt] = BUFFER_NOT_OWNED; CDBG_HIGH("put buffer %d successfully", cnt); } mBufferCount = 0; CDBG(" %s : X ",__FUNCTION__); } /*=========================================================================== * FUNCTION : cacheOps * * DESCRIPTION: ion related memory cache operations * * PARAMETERS : * @index : index of the buffer * @cmd : cache ops command * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraGrallocMemory::cacheOps(int index, unsigned int cmd) { if (index >= mBufferCount) return BAD_INDEX; return cacheOpsInternal(index, cmd, mCameraMemory[index]->data); } /*=========================================================================== * FUNCTION : getRegFlags * * DESCRIPTION: query initial reg flags * * PARAMETERS : * @regFlags: initial reg flags of the allocated buffers * * RETURN : int32_t type of status * NO_ERROR -- success * none-zero failure code *==========================================================================*/ int QCameraGrallocMemory::getRegFlags(uint8_t *regFlags) const { int i = 0; for (i = 0; i < mMinUndequeuedBuffers; i ++) regFlags[i] = 0; for (; i < mBufferCount; i ++) regFlags[i] = 1; return NO_ERROR; } /*=========================================================================== * FUNCTION : getMemory * * DESCRIPTION: get camera memory * * PARAMETERS : * @index : buffer index * @metadata: flag if it's metadata * * RETURN : camera memory ptr * NULL if not supported or failed *==========================================================================*/ camera_memory_t *QCameraGrallocMemory::getMemory(int index, bool metadata) const { if (index >= mBufferCount || metadata) return NULL; return mCameraMemory[index]; } /*=========================================================================== * FUNCTION : getMatchBufIndex * * DESCRIPTION: query buffer index by opaque ptr * * PARAMETERS : * @opaque : opaque ptr * @metadata: flag if it's metadata * * RETURN : buffer index if match found, * -1 if failed *==========================================================================*/ int QCameraGrallocMemory::getMatchBufIndex(const void *opaque, bool metadata) const { int index = -1; if (metadata) { return -1; } for (int i = 0; i < mBufferCount; i++) { if (mCameraMemory[i]->data == opaque) { index = i; break; } } return index; } /*=========================================================================== * FUNCTION : getPtr * * DESCRIPTION: return buffer pointer * * PARAMETERS : * @index : index of the buffer * * RETURN : buffer ptr *==========================================================================*/ void *QCameraGrallocMemory::getPtr(int index) const { if (index >= mBufferCount) { ALOGE("index out of bound"); return (void *)BAD_INDEX; } return mCameraMemory[index]->data; } }; //namespace qcamera
[ "rjmurdok@linux.com" ]
rjmurdok@linux.com
ffbb1255deee16ea8846976abe126f093276a9a2
f78e962ee838d872c7098b89bed9a327ad4e0d78
/Plugins/frame_grabbers/src/cv_capture.h
e276e1e2fff2bd669e6c9adfb8a7789bc3e448a7
[ "BSD-3-Clause" ]
permissive
siyu828/EagleEye
83dc739bcf9380e02aa78d6df6fdc10a7b4b69a3
5b04ab52cdb03f710eff836e84f695446282848d
refs/heads/master
2020-03-22T03:27:43.349215
2017-12-23T00:51:09
2017-12-23T00:51:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,179
h
#pragma once #include "Aquila/framegrabbers/IFrameGrabber.hpp" #include "Aquila/types/SyncedMemory.hpp" #include "Aquila/rcc/external_includes/cv_cudacodec.hpp" #include "Aquila/rcc/external_includes/cv_imgcodec.hpp" #include "Aquila/rcc/external_includes/cv_videoio.hpp" #include <MetaObject/params/detail/TParamPtrImpl.hpp> #include "RuntimeObjectSystem/RuntimeSourceDependency.h" namespace aq { namespace nodes { class GrabberCV : public IGrabber { public: MO_ABSTRACT(GrabberCV, IGrabber) PROPERTY(cv::Ptr<cv::VideoCapture>, h_cam, cv::Ptr<cv::VideoCapture>()) PROPERTY(cv::Ptr<cv::cudacodec::VideoReader>, d_cam, cv::Ptr<cv::cudacodec::VideoReader>()) MO_SIGNAL(void, eos) SOURCE(SyncedMemory, image, {}) APPEND_FLAGS(image, mo::ParamFlags::Source_e) MO_END; bool loadData(const std::string& path); bool grab(); protected: virtual bool LoadGPU(const std::string& path); virtual bool LoadCPU(const std::string& path); mo::OptionalTime_t initial_time; }; } }
[ "dtmoodie@gmail.com" ]
dtmoodie@gmail.com
1e13b77192cec4672c08816ea718232908c5e015
64178ab5958c36c4582e69b6689359f169dc6f0d
/vscode/wg/sdk/EParameterLUTChannel.hpp
e7eaaa958f89de1738b1771b4ca77c72180d9732
[]
no_license
c-ber/cber
47bc1362f180c9e8f0638e40bf716d8ec582e074
3cb5c85abd8a6be09e0283d136c87761925072de
refs/heads/master
2023-06-07T20:07:44.813723
2023-02-28T07:43:29
2023-02-28T07:43:29
40,457,301
5
5
null
2023-05-30T19:14:51
2015-08-10T01:37:22
C++
UTF-8
C++
false
false
439
hpp
#pragma once #ifdef _MSC_VER #pragma pack(push, 1) #endif namespace PUBGSDK { enum EParameterLUTChannel { EParameterLUTChannel__R = 0, EParameterLUTChannel__G = 1, EParameterLUTChannel__B = 2, EParameterLUTChannel__A = 3, EParameterLUTChannel__RGBA = 4, EParameterLUTChannel__Undefined = 5, EParameterLUTChannel__EParameterLUTChannel_MAX = 6, };} #ifdef _MSC_VER #pragma pack(pop) #endif
[ "1395329153@qq.com" ]
1395329153@qq.com
e30546a26f4ef2bf2f030453aef2b7ee9a1f1710
22d687b5f01d097efa1fd5c95f5b116db3b12475
/CWhileLoopNode.cpp
c0ecc22228fa788a444f7af0b042e32f786df23f
[ "Zlib" ]
permissive
PaulMcClernan/Forge
ee2b52be89899ecfb667d38aee95cc284e4cf808
c03d8f27d5178a57e85e29b8331438bded49ccc7
refs/heads/main
2022-09-15T16:24:37.878564
2020-05-30T14:41:45
2020-05-30T14:41:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,733
cpp
/* * CWhileLoopNode.cpp * HyperCompiler * * Created by Uli Kusterer on 19.05.07. * Copyright 2007 M. Uli Kusterer. All rights reserved. * */ #include "CWhileLoopNode.h" #include "CCodeBlock.h" #include "CNodeTransformation.h" #include "LEOInterpreter.h" namespace Carlson { void CWhileLoopNode::GenerateCode( CCodeBlock* inBlock ) { if( !mCondition ) { inBlock->GenerateParseErrorInstruction("Expected a condition after a repeat statement.", mFileName, mLineNum, SIZE_MAX); return; } int32_t lineMarkerInstructionOffset = (int32_t) inBlock->GetNextInstructionOffset(); inBlock->GenerateLineMarkerInstruction( (int32_t) mLineNum, LEOFileIDForFileName(mFileName.c_str()) ); // Make sure debugger indicates condition as current line on every iteration. // Push condition: mCondition->GenerateCode(inBlock); // Check condition, jump to end of loop if FALSE: int32_t compareInstructionOffset = (int32_t) inBlock->GetNextInstructionOffset(); inBlock->GenerateJumpRelativeIfFalseInstruction( 0 ); // Generate loop commands: CCodeBlockNode::GenerateCode( inBlock ); // At end of loop section, jump back to compare instruction: int32_t jumpBackInstructionOffset = (int32_t) inBlock->GetNextInstructionOffset(); inBlock->GenerateJumpRelativeInstruction( lineMarkerInstructionOffset -jumpBackInstructionOffset ); // Retroactively fill in the address of the Else section in the if's jump instruction: int32_t loopEndOffset = (int32_t) inBlock->GetNextInstructionOffset(); inBlock->SetJumpAddressOfInstructionAtIndex( compareInstructionOffset, loopEndOffset -compareInstructionOffset ); } void CWhileLoopNode::Simplify() { if( !mCondition ) return; CValueNode * originalNode = mCondition; originalNode->Simplify(); // Give subnodes a chance to apply transformations first. Might expose simpler sub-nodes we can then simplify. CNode* newNode = CNodeTransformationBase::Apply( originalNode ); // Returns either originalNode, or a totally new object, in which case we delete the old one. if( newNode != originalNode ) { assert( dynamic_cast<CValueNode*>(newNode) != NULL ); mCondition = (CValueNode*)newNode; } CCodeBlockNode::Simplify(); } void CWhileLoopNode::Visit( std::function<void(CNode*)> visitorBlock ) { if( mCondition ) mCondition->Visit(visitorBlock); CCodeBlockNode::Visit(visitorBlock); } void CWhileLoopNode::DebugPrint( std::ostream& destStream, size_t indentLevel ) { INDENT_PREPARE(indentLevel); destStream << indentChars << "While" << std::endl << indentChars << "(" << std::endl; mCondition->DebugPrint( destStream, indentLevel +1 ); destStream << indentChars << ")" << std::endl; DebugPrintInner( destStream, indentLevel ); } } /*Carlson*/
[ "ulivc@zathras.de" ]
ulivc@zathras.de
cb7b762d2f0197dcf6411eed7dee65f1e9ccc634
dde7dc50b7231f03d215091ebf41d3f242b22024
/INF1010_TP/TP4/TP4/ProduitSolde.cpp
436c636dc0c2207ad85184e39b37e545028bf041
[]
no_license
jmlasnier/INF1010
2f7f4f29fb90d74faf27867451f5fdd514b30499
7687a931132df96a7d59e9a850f765fd64755b52
refs/heads/master
2021-05-02T18:39:41.024516
2020-09-19T22:18:53
2020-09-19T22:18:53
120,663,957
0
0
null
null
null
null
UTF-8
C++
false
false
781
cpp
#include "ProduitSolde.h" ProduitSolde::ProduitSolde(int pourcentageRabais) : Produit(), Solde(pourcentageRabais) { } ProduitSolde::ProduitSolde(Fournisseur *fournisseur, const string &nom, int reference, double prix, int pourcentageRabais) : Produit(fournisseur, nom, reference, prix), Solde(pourcentageRabais) { } double ProduitSolde::obtenirPrix() const { // TODO // problemes eventuelles entre int et double??? return (prix_ * pourcentageRabais_)/100; } void ProduitSolde::afficher() const { // TODO cout << "\t" << obtenirNom() << endl << "\t \t reference: \t" << obtenirReference() << endl << "\t \t prix: \t" << obtenirPrix() << endl << "\t \t rabais: \t" << obtenirPourcentageRabais() << "%" << endl; }
[ "j-m.lasnier@hotmail.com" ]
j-m.lasnier@hotmail.com
d06ff624d824d68dec69dfac5aafd4df3227376c
ad9df9df768a1f28d3049026e7bdc37ac78f9f2a
/Chilkat/AuthAzureSAS.h
e11f37be41dfe4be082b171f241c4b195fd03e1d
[]
no_license
gencer/Chilkat-for-Universal-Windows-Platform-UWP-VS2015
bd402183f0e275307e25496ba90c93a75f4ced7d
f28778dd5dfc2f78a4515672b96a8c6c6578611e
refs/heads/master
2021-01-12T10:48:35.998727
2017-08-09T15:16:30
2017-08-09T15:16:30
72,678,446
0
0
null
2016-11-02T20:26:53
2016-11-02T20:26:52
null
UTF-8
C++
false
false
1,712
h
// This header is generated for Chilkat v9.5.0 #pragma once class CkAuthAzureSASW; #if !defined(CK_SFX_INCLUDED) #define CK_SFX_INCLUDED #endif #include "chilkatClassDecls.h" using namespace Platform; using namespace Windows::Foundation; using namespace concurrency; namespace Chilkat { public ref class AuthAzureSAS sealed { #include "friendDecls.h" private: CkAuthAzureSASW *m_impl; public: virtual ~AuthAzureSAS(void); AuthAzureSAS(void); //AuthAzureSAS(Platform::IntPtr p); //Platform::IntPtr ImplObj(void); // ---------------------- // Properties // ---------------------- property Platform::String ^AccessKey { Platform::String ^get(); void set(Platform::String ^); } property Platform::String ^DebugLogFilePath { Platform::String ^get(); void set(Platform::String ^); } property Platform::String ^LastErrorHtml { Platform::String ^get(); } property Platform::String ^LastErrorText { Platform::String ^get(); } property Platform::String ^LastErrorXml { Platform::String ^get(); } property Boolean LastMethodSuccess { Boolean get(); void set(Boolean); } property Platform::String ^StringToSign { Platform::String ^get(); void set(Platform::String ^); } property Boolean VerboseLogging { Boolean get(); void set(Boolean); } property Platform::String ^Version { Platform::String ^get(); } // ---------------------- // Methods // ---------------------- void Clear(void); Platform::String ^GenerateToken(void); Boolean SetNonTokenParam(Platform::String ^name, Platform::String ^value); Boolean SetTokenParam(Platform::String ^name, Platform::String ^authParamName, Platform::String ^value); }; }
[ "admin@chilkatsoft.com" ]
admin@chilkatsoft.com
37bf3748a29a601313608ac2e3281b620b673790
696ce3cf5153b853f8f75d1a25c16c19c258f891
/practice/inheritance.cpp
7a3cc38e5b638003d70fd0cef98ecbe2fba2180a
[]
no_license
xutu10/cpp
0ac2ebad8ad09d684af002e0df51697eb63d2af8
62c341ab7144bee8bee73a8b08998d72b362e7f9
refs/heads/master
2021-01-11T12:26:38.129957
2020-11-30T19:52:21
2020-11-30T19:52:21
76,443,284
0
0
null
null
null
null
UTF-8
C++
false
false
1,439
cpp
#include<iostream> using namespace std; class Base{ public: Base(int a):a_(a){ cout<<"constructor base"<<endl; } ~Base(){ cout<<"destructor base"<<endl; } virtual void increment(){ a_++; } void show(){ cout<<"show in base: "<<a_<<endl; } int a_; }; class Derived : public Base{ public: Derived(int b, int c, int a):b_(b), c_(c), Base(a){ cout<<"constructor Derived"<<endl; } ~Derived(){ cout<<"destructor Derived"<<endl; } void increment(){ a_ = a_+ b_+c_; } void display(){ cout<<a_<<","<<b_<<","<<c_<<endl; } int b_,c_; }; int main(){ //1. an object of Base will be created in the Derived object // show() is inherited from Base Derived d(1,2,3); d.increment(); d.show(); d.display(); // 2. layout and size Base b(8); b.increment(); b.show(); // 4+8+alignment = 16, 4+8+4+4+alignment = 24 cout<<sizeof(Base)<<","<<sizeof(Derived)<<endl; // memory layout cout<<&d<<"\n"<<&d.a_<<"\n"<<&d.b_<<"\n"<<&d.c_<<"\n"<<&d.Base::a_<<endl; // 3. Polymorphism Derived dd(4,5,6); Base *bb = &dd; cout<<"--------------"<<endl; cout<<"size of bb: "<<sizeof(*bb)<<endl;; bb->increment(); // from Derived bb->show(); // bb->display(); Base doesn't have the member func cout<<&dd<<","<<&dd.a_<<","<<&dd.b_<<","<<&dd.c_<<","<<&dd.Base::a_<<endl; // Base doesn't have b_ and c_ // &(bb->b_)<<"\n"<<&(bb->c_) cout<<bb<<","<<&(bb->a_)<<","<<&bb->Base::a_<<endl; return 0; }
[ "billxu89@gmail.com" ]
billxu89@gmail.com
c8654cb0445697a707ad02572c48029bde4f5596
cf3cc3eb4ee02d1905b4a587359cc859875ba10b
/visualization/src/image_viewer.cpp
de6d0acadea49364b21c37308712ff41316d617c
[ "BSD-3-Clause" ]
permissive
thomas-moulard/pcl-deb
5a65897ade36975d47feb82bc9a8487683e1da44
3b4126835092f111330dd5da39aa84443737fab0
refs/heads/master
2021-01-01T05:35:55.683546
2013-06-22T16:11:31
2013-06-22T16:11:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
35,607
cpp
/* * Software License Agreement (BSD License) * * Point Cloud Library (PCL) - www.pointclouds.org * Copyright (c) 2009-2012, Willow Garage, Inc. * * 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 Willow Garage, Inc. nor the names of its * 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 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. * * $Id: image_viewer.cpp 5433 2012-03-30 04:34:55Z rusu $ */ #include <pcl/visualization/image_viewer.h> #include <pcl/visualization/common/float_image_utils.h> #include <pcl/visualization/keyboard_event.h> #include <pcl/visualization/mouse_event.h> #include <pcl/common/time.h> ///////////////////////////////////////////////////////////////////////////////////////////// pcl::visualization::ImageViewer::ImageViewer (const std::string& window_title) : interactor_ (vtkSmartPointer<vtkRenderWindowInteractor>::New ()) , mouse_command_ (vtkSmartPointer<vtkCallbackCommand>::New ()) , keyboard_command_ (vtkSmartPointer<vtkCallbackCommand>::New ()) , image_viewer_ (vtkSmartPointer<vtkImageViewer>::New ()) , data_ () , data_size_ (0) , stopped_ () , timer_id_ () , blend_ (vtkSmartPointer<vtkImageBlend>::New ()) , layer_map_ () { blend_->SetBlendModeToNormal (); blend_->SetNumberOfThreads (1); image_viewer_->SetColorLevel (127.5); image_viewer_->SetColorWindow (255); // Set the mouse/keyboard callbacks mouse_command_->SetClientData (this); mouse_command_->SetCallback (ImageViewer::MouseCallback); keyboard_command_->SetClientData (this); keyboard_command_->SetCallback (ImageViewer::KeyboardCallback); // Create our own interactor and set the window title image_viewer_->SetupInteractor (interactor_); image_viewer_->GetRenderWindow ()->SetWindowName (window_title.c_str ()); // Initialize and create timer interactor_->Initialize (); timer_id_ = interactor_->CreateRepeatingTimer (0); // Set the exit callbacks exit_main_loop_timer_callback_ = vtkSmartPointer<ExitMainLoopTimerCallback>::New (); exit_main_loop_timer_callback_->window = this; exit_main_loop_timer_callback_->right_timer_id = -1; interactor_->AddObserver (vtkCommand::TimerEvent, exit_main_loop_timer_callback_); exit_callback_ = vtkSmartPointer<ExitCallback>::New (); exit_callback_->window = this; interactor_->AddObserver (vtkCommand::ExitEvent, exit_callback_); resetStoppedFlag (); } ///////////////////////////////////////////////////////////////////////////////////////////// pcl::visualization::ImageViewer::~ImageViewer () { interactor_->DestroyTimer (timer_id_); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::addRGBImage ( const unsigned char* rgb_data, unsigned width, unsigned height, const std::string &layer_id, double opacity) { if (unsigned (image_viewer_->GetRenderWindow ()->GetSize ()[0]) != width || unsigned (image_viewer_->GetRenderWindow ()->GetSize ()[1]) != height) image_viewer_->SetSize (width, height); // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addRGBImage] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, width, height, opacity, false); } vtkSmartPointer<vtkImageImport> importer = vtkSmartPointer<vtkImageImport>::New (); importer->SetNumberOfScalarComponents (3); importer->SetDataScalarTypeToUnsignedChar (); importer->SetWholeExtent (0, width - 1, 0, height - 1, 0, 0); importer->SetDataExtentToWholeExtent (); void* data = const_cast<void*> (reinterpret_cast<const void*> (rgb_data)); importer->SetImportVoidPointer (data, 1); importer->Update (); vtkSmartPointer<vtkMatrix4x4> transform = vtkSmartPointer<vtkMatrix4x4>::New (); transform->Identity (); transform->SetElement (1, 1, -1.0); transform->SetElement (1, 3, height); vtkSmartPointer<vtkTransform> imageTransform = vtkSmartPointer<vtkTransform>::New (); imageTransform->SetMatrix (transform); // Now create filter and set previously created transformation vtkSmartPointer<vtkImageReslice> algo = vtkSmartPointer<vtkImageReslice>::New (); algo->SetInput (importer->GetOutput ()); algo->SetInformationInput (importer->GetOutput ()); algo->SetResliceTransform (imageTransform); algo->SetInterpolationModeToCubic (); algo->Update (); // If we already have other layers, then it makes sense to use a blender // if (layer_map_.size () != 1) // { #if ((VTK_MAJOR_VERSION == 5)&&(VTK_MINOR_VERSION <= 6)) image_viewer_->SetInput (algo->GetOutput ()); #else am_it->canvas->SetNumberOfScalarComponents (3); am_it->canvas->DrawImage (algo->GetOutput ()); blend_->ReplaceNthInputConnection (int (am_it - layer_map_.begin ()), am_it->canvas->GetOutputPort ()); image_viewer_->SetInputConnection (blend_->GetOutputPort ()); #endif // } // // If not, pass the data directly to the viewer // else // image_viewer_->SetInput (algo->GetOutput ()); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::showRGBImage ( const unsigned char* rgb_data, unsigned width, unsigned height, const std::string &layer_id, double opacity) { addRGBImage (rgb_data, width, height, layer_id, opacity); image_viewer_->Render (); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::addMonoImage ( const unsigned char* rgb_data, unsigned width, unsigned height, const std::string &layer_id, double opacity) { if (unsigned (image_viewer_->GetRenderWindow ()->GetSize ()[0]) != width || unsigned (image_viewer_->GetRenderWindow ()->GetSize ()[1]) != height) image_viewer_->SetSize (width, height); // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::showMonoImage] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, width, height, opacity, false); } vtkSmartPointer<vtkImageImport> importer = vtkSmartPointer<vtkImageImport>::New (); importer->SetNumberOfScalarComponents (1); importer->SetWholeExtent (0, width - 1, 0, height - 1, 0, 0); importer->SetDataScalarTypeToUnsignedChar (); importer->SetDataExtentToWholeExtent (); void* data = const_cast<void*> (reinterpret_cast<const void*> (rgb_data)); importer->SetImportVoidPointer (data, 1); importer->Update (); vtkSmartPointer<vtkMatrix4x4> transform = vtkSmartPointer<vtkMatrix4x4>::New (); transform->Identity (); transform->SetElement (1, 1, -1.0); transform->SetElement (1, 3, height); vtkSmartPointer<vtkTransform> imageTransform = vtkSmartPointer<vtkTransform>::New (); imageTransform->SetMatrix (transform); // Now create filter and set previously created transformation vtkSmartPointer<vtkImageReslice> algo = vtkSmartPointer<vtkImageReslice>::New (); algo->SetInput (importer->GetOutput ()); algo->SetInformationInput (importer->GetOutput ()); algo->SetResliceTransform (imageTransform); algo->SetInterpolationModeToCubic (); algo->Update (); // If we already have other layers, then it makes sense to use a blender // if (layer_map_.size () != 1) // { #if ((VTK_MAJOR_VERSION == 5)&&(VTK_MINOR_VERSION <= 6)) image_viewer_->SetInput (algo->GetOutput ()); #else am_it->canvas->SetNumberOfScalarComponents (1); am_it->canvas->DrawImage (algo->GetOutput ()); blend_->ReplaceNthInputConnection (int (am_it - layer_map_.begin ()), am_it->canvas->GetOutputPort ()); image_viewer_->SetInputConnection (blend_->GetOutputPort ()); #endif // } // // If not, pass the data directly to the viewer // else // image_viewer_->SetInput (algo->GetOutput ()); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::showMonoImage ( const unsigned char* rgb_data, unsigned width, unsigned height, const std::string &layer_id, double opacity) { addMonoImage (rgb_data, width, height, layer_id, opacity); image_viewer_->Render (); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::addFloatImage ( const float* float_image, unsigned int width, unsigned int height, float min_value, float max_value, bool grayscale, const std::string &layer_id, double opacity) { unsigned char* rgb_image = FloatImageUtils::getVisualImage (float_image, width, height, min_value, max_value, grayscale); showRGBImage (rgb_image, width, height, layer_id, opacity); delete[] rgb_image; } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::showFloatImage ( const float* float_image, unsigned int width, unsigned int height, float min_value, float max_value, bool grayscale, const std::string &layer_id, double opacity) { addFloatImage (float_image, width, height, min_value, max_value, grayscale, layer_id, opacity); image_viewer_->Render (); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::addAngleImage ( const float* angle_image, unsigned int width, unsigned int height, const std::string &layer_id, double opacity) { unsigned char* rgb_image = FloatImageUtils::getVisualAngleImage (angle_image, width, height); showRGBImage (rgb_image, width, height, layer_id, opacity); delete[] rgb_image; } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::showAngleImage ( const float* angle_image, unsigned int width, unsigned int height, const std::string &layer_id, double opacity) { addAngleImage (angle_image, width, height, layer_id, opacity); image_viewer_->Render (); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::addHalfAngleImage ( const float* angle_image, unsigned int width, unsigned int height, const std::string &layer_id, double opacity) { unsigned char* rgb_image = FloatImageUtils::getVisualHalfAngleImage (angle_image, width, height); showRGBImage (rgb_image, width, height, layer_id, opacity); delete[] rgb_image; } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::showHalfAngleImage ( const float* angle_image, unsigned int width, unsigned int height, const std::string &layer_id, double opacity) { addHalfAngleImage (angle_image, width, height, layer_id, opacity); image_viewer_->Render (); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::addShortImage ( const unsigned short* short_image, unsigned int width, unsigned int height, unsigned short min_value, unsigned short max_value, bool grayscale, const std::string &layer_id, double opacity) { unsigned char* rgb_image = FloatImageUtils::getVisualImage (short_image, width, height, min_value, max_value, grayscale); showRGBImage (rgb_image, width, height, layer_id, opacity); delete[] rgb_image; } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::showShortImage ( const unsigned short* short_image, unsigned int width, unsigned int height, unsigned short min_value, unsigned short max_value, bool grayscale, const std::string &layer_id, double opacity) { addShortImage (short_image, width, height, min_value, max_value, grayscale, layer_id, opacity); image_viewer_->Render (); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::spin () { image_viewer_->Render (); resetStoppedFlag (); // Render the window before we start the interactor interactor_->Render (); interactor_->Start (); } /////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::spinOnce (int time, bool force_redraw) { if (force_redraw) { image_viewer_->Render (); interactor_->Render (); } if (time <= 0) time = 1; DO_EVERY (1.0 / interactor_->GetDesiredUpdateRate (), exit_main_loop_timer_callback_->right_timer_id = interactor_->CreateRepeatingTimer (time); interactor_->Start (); interactor_->DestroyTimer (exit_main_loop_timer_callback_->right_timer_id); ); } ///////////////////////////////////////////////////////////////////////////////////////////// boost::signals2::connection pcl::visualization::ImageViewer::registerMouseCallback ( boost::function<void (const pcl::visualization::MouseEvent&)> callback) { // just add observer at first time when a callback is registered if (mouse_signal_.empty ()) { interactor_->AddObserver (vtkCommand::MouseMoveEvent, mouse_command_); interactor_->AddObserver (vtkCommand::MiddleButtonPressEvent, mouse_command_); interactor_->AddObserver (vtkCommand::MiddleButtonReleaseEvent, mouse_command_); interactor_->AddObserver (vtkCommand::MouseWheelBackwardEvent, mouse_command_); interactor_->AddObserver (vtkCommand::MouseWheelForwardEvent, mouse_command_); interactor_->AddObserver (vtkCommand::LeftButtonPressEvent, mouse_command_); interactor_->AddObserver (vtkCommand::LeftButtonReleaseEvent, mouse_command_); interactor_->AddObserver (vtkCommand::RightButtonPressEvent, mouse_command_); interactor_->AddObserver (vtkCommand::RightButtonReleaseEvent, mouse_command_); } return (mouse_signal_.connect (callback)); } ///////////////////////////////////////////////////////////////////////////////////////////// boost::signals2::connection pcl::visualization::ImageViewer::registerKeyboardCallback ( boost::function<void (const pcl::visualization::KeyboardEvent&)> callback) { // just add observer at first time when a callback is registered if (keyboard_signal_.empty ()) { interactor_->AddObserver (vtkCommand::KeyPressEvent, keyboard_command_); interactor_->AddObserver (vtkCommand::KeyReleaseEvent, keyboard_command_); } return (keyboard_signal_.connect (callback)); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::emitMouseEvent (unsigned long event_id) { //interactor_->GetMousePosition (&x, &y); int x = this->interactor_->GetEventPosition()[0]; int y = this->interactor_->GetEventPosition()[1]; MouseEvent event (MouseEvent::MouseMove, MouseEvent::NoButton, x, y, interactor_->GetAltKey (), interactor_->GetControlKey (), interactor_->GetShiftKey ()); bool repeat = false; switch (event_id) { case vtkCommand::MouseMoveEvent : event.setType(MouseEvent::MouseMove); break; case vtkCommand::LeftButtonPressEvent : event.setButton(MouseEvent::LeftButton); if (interactor_->GetRepeatCount () == 0) event.setType(MouseEvent::MouseButtonPress); else event.setType(MouseEvent::MouseDblClick); break; case vtkCommand::LeftButtonReleaseEvent : event.setButton(MouseEvent::LeftButton); event.setType(MouseEvent::MouseButtonRelease); break; case vtkCommand::RightButtonPressEvent : event.setButton(MouseEvent::RightButton); if (interactor_->GetRepeatCount () == 0) event.setType(MouseEvent::MouseButtonPress); else event.setType(MouseEvent::MouseDblClick); break; case vtkCommand::RightButtonReleaseEvent : event.setButton(MouseEvent::RightButton); event.setType(MouseEvent::MouseButtonRelease); break; case vtkCommand::MiddleButtonPressEvent : event.setButton(MouseEvent::MiddleButton); if (interactor_->GetRepeatCount () == 0) event.setType(MouseEvent::MouseButtonPress); else event.setType(MouseEvent::MouseDblClick); break; case vtkCommand::MiddleButtonReleaseEvent : event.setButton(MouseEvent::MiddleButton); event.setType(MouseEvent::MouseButtonRelease); break; case vtkCommand::MouseWheelBackwardEvent : event.setButton(MouseEvent::VScroll); event.setType(MouseEvent::MouseScrollDown); if (interactor_->GetRepeatCount () != 0) repeat = true; break; case vtkCommand::MouseWheelForwardEvent : event.setButton(MouseEvent::VScroll); event.setType(MouseEvent::MouseScrollUp); if (interactor_->GetRepeatCount () != 0) repeat = true; break; default: return; } mouse_signal_ (event); if (repeat) mouse_signal_ (event); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::emitKeyboardEvent (unsigned long event_id) { KeyboardEvent event (bool(event_id == vtkCommand::KeyPressEvent), interactor_->GetKeySym (), interactor_->GetKeyCode (), interactor_->GetAltKey (), interactor_->GetControlKey (), interactor_->GetShiftKey ()); keyboard_signal_ (event); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::MouseCallback (vtkObject*, unsigned long eid, void* clientdata, void*) { ImageViewer* window = reinterpret_cast<ImageViewer*> (clientdata); window->emitMouseEvent (eid); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::KeyboardCallback (vtkObject*, unsigned long eid, void* clientdata, void*) { ImageViewer* window = reinterpret_cast<ImageViewer*> (clientdata); window->emitKeyboardEvent (eid); } //////////////////////////////////////////////////////////////////////////////////////////// pcl::visualization::ImageViewer::LayerMap::iterator pcl::visualization::ImageViewer::createLayer ( const std::string &layer_id, int width, int height, double opacity, bool fill_box) { Layer l; l.layer_name = layer_id; l.opacity = opacity; // Create a new layer l.canvas = vtkSmartPointer<PCLImageCanvasSource2D>::New (); l.canvas->SetScalarTypeToUnsignedChar (); l.canvas->SetExtent (0, width, 0, height, 0, 0); l.canvas->SetNumberOfScalarComponents (4); if (fill_box) { l.canvas->SetDrawColor (0.0, 0.0, 0.0, 0.0); l.canvas->FillBox (0, width, 0, height); l.canvas->Update (); l.canvas->Modified (); } blend_->AddInputConnection (l.canvas->GetOutputPort ()); blend_->SetOpacity (blend_->GetNumberOfInputs () - 1, opacity); // Add another element layer_map_.push_back (l); return (layer_map_.end () - 1); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addLayer ( const std::string &layer_id, int width, int height, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it != layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addLayer] Layer with ID'=%s' already exists!\n", layer_id.c_str ()); return (false); } Layer l; l.layer_name = layer_id; l.opacity = opacity; // Create a new layer l.canvas = vtkSmartPointer<PCLImageCanvasSource2D>::New (); l.canvas->SetScalarTypeToUnsignedChar (); l.canvas->SetExtent (0, width, 0, height, 0, 0); l.canvas->SetNumberOfScalarComponents (4); blend_->AddInputConnection (l.canvas->GetOutputPort ()); blend_->SetOpacity (blend_->GetNumberOfInputs () - 1, opacity); // Add another element layer_map_.push_back (l); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::removeLayer (const std::string &layer_id) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::removeLayer] No layer with ID'=%s' found.\n", layer_id.c_str ()); return; } // Remove the layers that we don't want anymore layer_map_.erase (layer_map_.begin () + int (am_it - layer_map_.begin ())); // Clear the blender blend_->RemoveAllInputs (); // Add the remaining layers back to the blender for (size_t i = 0; i < layer_map_.size (); ++i) { blend_->AddInputConnection (layer_map_[i].canvas->GetOutputPort ()); blend_->SetOpacity (blend_->GetNumberOfInputs () - 1, layer_map_[i].opacity); } image_viewer_->SetInputConnection (blend_->GetOutputPort ()); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addCircle ( unsigned int x, unsigned int y, double radius, double r, double g, double b, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addCircle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (r * 255.0, g * 255.0, b * 255.0, opacity * 255.0); am_it->canvas->DrawCircle (x, y, radius); // blend_->ReplaceNthInputConnection (int (am_it - layer_map_.begin ()), am_it->canvas->GetOutputPort ()); // image_viewer_->SetInputConnection (blend_->GetOutputPort ()); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addCircle (unsigned int x, unsigned int y, double radius, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addCircle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (0.0, 255.0, 0.0, opacity * 255.0); am_it->canvas->DrawCircle (x, y, radius); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addFilledRectangle ( unsigned int x_min, unsigned int x_max, unsigned int y_min, unsigned int y_max, double r, double g, double b, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addFilledRectangle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (r * 255.0, g * 255.0, b * 255.0, opacity * 255.0); am_it->canvas->FillBox (x_min, x_max, y_min, y_max); // blend_->ReplaceNthInputConnection (int (am_it - layer_map_.begin ()), am_it->canvas->GetOutputPort ()); // image_viewer_->SetInputConnection (blend_->GetOutputPort ()); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addFilledRectangle ( unsigned int x_min, unsigned int x_max, unsigned int y_min, unsigned int y_max, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addFilledRectangle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (0.0, 255.0, 0.0, opacity * 255.0); am_it->canvas->FillBox (x_min, x_max, y_min, y_max); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addRectangle ( unsigned int x_min, unsigned int x_max, unsigned int y_min, unsigned int y_max, double r, double g, double b, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addRectangle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (r * 255.0, g * 255.0, b * 255.0, opacity * 255.0); am_it->canvas->DrawSegment (x_min, y_min, x_min, y_max); am_it->canvas->DrawSegment (x_min, y_max, x_max, y_max); am_it->canvas->DrawSegment (x_max, y_max, x_max, y_min); am_it->canvas->DrawSegment (x_max, y_min, x_min, y_min); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addRectangle ( unsigned int x_min, unsigned int x_max, unsigned int y_min, unsigned int y_max, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addRectangle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (0.0, 255.0, 0.0, opacity * 255.0); am_it->canvas->DrawSegment (x_min, y_min, x_min, y_max); am_it->canvas->DrawSegment (x_min, y_max, x_max, y_max); am_it->canvas->DrawSegment (x_max, y_max, x_max, y_min); am_it->canvas->DrawSegment (x_max, y_min, x_min, y_min); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addRectangle ( const pcl::PointXY &min_pt, const pcl::PointXY &max_pt, double r, double g, double b, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addRectangle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (r * 255.0, g * 255.0, b * 255.0, opacity * 255.0); am_it->canvas->DrawSegment (int (min_pt.x), int (min_pt.y), int (min_pt.x), int (max_pt.y)); am_it->canvas->DrawSegment (int (min_pt.x), int (max_pt.y), int (max_pt.x), int (max_pt.y)); am_it->canvas->DrawSegment (int (max_pt.x), int (max_pt.y), int (max_pt.x), int (min_pt.y)); am_it->canvas->DrawSegment (int (max_pt.x), int (min_pt.y), int (min_pt.x), int (min_pt.y)); return (true); } //////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addRectangle ( const pcl::PointXY &min_pt, const pcl::PointXY &max_pt, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addRectangle] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (0.0, 255.0, 0.0, opacity * 255.0); am_it->canvas->DrawSegment (int (min_pt.x), int (min_pt.y), int (min_pt.x), int (max_pt.y)); am_it->canvas->DrawSegment (int (min_pt.x), int (max_pt.y), int (max_pt.x), int (max_pt.y)); am_it->canvas->DrawSegment (int (max_pt.x), int (max_pt.y), int (max_pt.x), int (min_pt.y)); am_it->canvas->DrawSegment (int (max_pt.x), int (min_pt.y), int (min_pt.x), int (min_pt.y)); return (true); } ///////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addLine (unsigned int x_min, unsigned int y_min, unsigned int x_max, unsigned int y_max, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addLine] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (0.0, 255.0, 0.0, opacity * 255.0); am_it->canvas->DrawSegment (x_min, y_min, x_max, y_max); return (true); } ///////////////////////////////////////////////////////////////////////////////////////////// bool pcl::visualization::ImageViewer::addLine (unsigned int x_min, unsigned int y_min, unsigned int x_max, unsigned int y_max, double r, double g, double b, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::addLine] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (r * 255.0, g * 255.0, b * 255.0, opacity * 255.0); am_it->canvas->DrawSegment (x_min, y_min, x_max, y_max); return (true); } ///////////////////////////////////////////////////////////////////////////////////////////// void pcl::visualization::ImageViewer::markPoint ( size_t u, size_t v, Vector3ub fg_color, Vector3ub bg_color, double radius, const std::string &layer_id, double opacity) { // Check to see if this ID entry already exists (has it been already added to the visualizer?) LayerMap::iterator am_it = std::find_if (layer_map_.begin (), layer_map_.end (), LayerComparator (layer_id)); if (am_it == layer_map_.end ()) { PCL_DEBUG ("[pcl::visualization::ImageViewer::markPoint] No layer with ID'=%s' found. Creating new one...\n", layer_id.c_str ()); am_it = createLayer (layer_id, image_viewer_->GetRenderWindow ()->GetSize ()[0] - 1, image_viewer_->GetRenderWindow ()->GetSize ()[1] - 1, opacity, true); } am_it->canvas->SetDrawColor (fg_color[0], fg_color[1], fg_color[2], opacity * 255.0); am_it->canvas->DrawPoint (int (u), int (v)); am_it->canvas->SetDrawColor (bg_color[0], bg_color[1], bg_color[2], opacity * 255.0); am_it->canvas->DrawCircle (int (u), int (v), radius); }
[ "thomas.moulard@gmail.com" ]
thomas.moulard@gmail.com
afd20f31e642a7340e8b05676d0037f9c9fb4fa8
0fd62f6c085b59d59bf2740d92955a6e0a3a678d
/Firmware/Output.h
1b8af2d018f84913d9cca4ac7ee31f1fdba891b5
[]
no_license
KushlaVR/WiFi-relay
6592839262e78304d01f91b4626818abcaf1e08b
aa8343dee39a81d85af49b83a94d460d0cd47128
refs/heads/master
2023-06-07T23:52:38.749701
2022-05-19T20:43:58
2022-05-19T20:43:58
160,420,004
12
4
null
2023-05-31T20:49:31
2018-12-04T21:17:28
JavaScript
UTF-8
C++
false
false
763
h
#pragma once #include <FS.h> #include "Collection.h" #include "Json.h" class Output : public Item { String configFile; String name; int pin; int onState; int offState; bool _on; public: Output(String name, int pin, int onState, int offState); ~Output(); String getName() { return name; } bool isOn() { return _on; } void setup(String configDir); void saveStartup(bool state); void loop(); void setState(bool isOn); int getSort() { return Index + 1; }; void printInfo(JsonString * json); }; class Outputs : public Collection { public: String configDir; Outputs(); ~Outputs() {}; Output * get(int index); Output * add(String name, int pin, int onState, int offState); void setup(String configDir); void loop(); }; extern Outputs outs;
[ "KushlaVR@gmail.com" ]
KushlaVR@gmail.com
a052e7d3d03b89d931b32855aec25c2c98487f08
5945d6e644a25dcc1b1552205b6f96fffe159f5f
/src/lib/statuses/statusesdestroy.cpp
97f981556bc7e35154ffbe50e3e120245ddeb633
[ "BSD-3-Clause" ]
permissive
yuntan/twitter4qml
5cba11e7f10eb53b547484ce680b115f3511d9c9
67a7ea7c5467293f6b288435e73bc9db18639985
refs/heads/master
2016-09-08T01:20:37.275268
2014-02-18T09:03:39
2014-02-18T09:03:39
16,941,630
3
0
null
null
null
null
UTF-8
C++
false
false
1,697
cpp
/* Copyright (c) 2012-2013 Twitter4QML Project. * 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 Twitter4QML nor the * names of its 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 TWITTER4QML 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 "statusesdestroy.h" StatusesDestroy::StatusesDestroy(QObject *parent) : AbstractStatusAction(parent) { }
[ "stasuku@gmail.com" ]
stasuku@gmail.com
560b32b3836c368fc011eac2e05e26246aeead6b
868e8628acaa0bf276134f9cc3ced379679eab10
/firstCrude2D/we123/h10/0.096/phiAlpha
e92ea2f03a60d1611983e2a7b2818038ecaab2ac
[]
no_license
stigmn/droplet
921af6851f88c0acf8b1cd84f5e2903f1d0cb87a
1649ceb0a9ce5abb243fb77569211558c2f0dc96
refs/heads/master
2020-04-04T20:08:37.912624
2015-11-25T11:20:32
2015-11-25T11:20:32
45,102,907
0
0
null
2015-10-28T09:46:30
2015-10-28T09:46:29
null
UTF-8
C++
false
false
1,525,567
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "0.096"; object phiAlpha; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 119500 ( -1.88954e-13 1.88954e-13 -4.34873e-13 2.46433e-13 -7.1962e-13 2.85182e-13 -1.01103e-12 2.91821e-13 -1.30176e-12 2.91106e-13 -1.59087e-12 2.89447e-13 -1.87707e-12 2.86503e-13 -2.1604e-12 2.83603e-13 -2.44021e-12 2.8007e-13 -2.71625e-12 2.76269e-13 -2.98832e-12 2.72285e-13 -3.25629e-12 2.68156e-13 -3.51988e-12 2.63757e-13 -3.77857e-12 2.58837e-13 -4.03197e-12 2.53534e-13 -4.27966e-12 2.47797e-13 -4.5217e-12 2.4212e-13 -4.75848e-12 2.36836e-13 -4.99097e-12 2.32507e-13 -5.21964e-12 2.28676e-13 -5.44471e-12 2.25037e-13 -5.6669e-12 2.22141e-13 -5.88561e-12 2.18627e-13 -6.10041e-12 2.1468e-13 -6.30988e-12 2.0931e-13 -6.5121e-12 2.02025e-13 -6.70438e-12 1.92067e-13 -6.88376e-12 1.79174e-13 -7.04663e-12 1.62664e-13 -7.18917e-12 1.42369e-13 -7.3072e-12 1.17879e-13 -7.396e-12 8.86842e-14 -7.45044e-12 5.43527e-14 -7.4659e-12 1.54149e-14 -7.43737e-12 -2.85356e-14 -7.35857e-12 -7.87574e-14 -7.225e-12 -1.33479e-13 -7.03356e-12 -1.91299e-13 -6.78134e-12 -2.5203e-13 -6.46665e-12 -3.14472e-13 -6.08865e-12 -3.77749e-13 -5.64669e-12 -4.41698e-13 -5.14178e-12 -5.04639e-13 -4.5753e-12 -5.6621e-13 -3.9504e-12 -6.24605e-13 -3.27294e-12 -6.77168e-13 -2.54642e-12 -7.26225e-13 -1.77602e-12 -7.701e-13 -9.68954e-13 -8.06785e-13 -1.31581e-13 -8.37109e-13 7.29838e-13 -8.61174e-13 1.60911e-12 -8.79042e-13 2.5004e-12 -8.91056e-13 3.39697e-12 -8.96336e-13 4.29207e-12 -8.94857e-13 5.1796e-12 -8.87281e-13 6.05318e-12 -8.73318e-13 6.90636e-12 -8.52932e-13 7.73349e-12 -8.2689e-13 8.52963e-12 -7.95902e-13 9.28966e-12 -7.59782e-13 1.00095e-11 -7.19538e-13 1.06855e-11 -6.757e-13 1.13165e-11 -6.30586e-13 1.18992e-11 -5.82344e-13 1.24346e-11 -5.3489e-13 1.29223e-11 -4.87227e-13 1.33629e-11 -4.40111e-13 1.37572e-11 -3.93709e-13 1.41073e-11 -3.49535e-13 1.44146e-11 -3.06719e-13 1.46795e-11 -2.64228e-13 1.49034e-11 -2.2326e-13 1.50877e-11 -1.83581e-13 1.52319e-11 -1.4354e-13 1.5335e-11 -1.02563e-13 1.5397e-11 -6.13788e-14 1.54168e-11 -1.93395e-14 1.53932e-11 2.39592e-14 1.53222e-11 7.13697e-14 1.52006e-11 1.21846e-13 1.50262e-11 1.74671e-13 1.47937e-11 2.32752e-13 1.44982e-11 2.95711e-13 1.41359e-11 3.62584e-13 1.37017e-11 4.34337e-13 1.3191e-11 5.10837e-13 1.25999e-11 5.91165e-13 1.19252e-11 6.74655e-13 1.11657e-11 7.59426e-13 1.03213e-11 8.44346e-13 9.39353e-12 9.2788e-13 8.38659e-12 1.0071e-12 7.30023e-12 1.08665e-12 6.16798e-12 1.13265e-12 4.90565e-12 1.26277e-12 3.70851e-12 1.19758e-12 2.31469e-12 1.3942e-12 1.08456e-12 1.23043e-12 1.15201e-12 -6.72008e-14 -2.99686e-13 4.89136e-13 -7.73067e-13 7.20675e-13 -1.30319e-12 8.16044e-13 -1.85324e-12 8.4256e-13 -2.39883e-12 8.37323e-13 -2.94113e-12 8.32314e-13 -3.48002e-12 8.25924e-13 -4.01537e-12 8.19436e-13 -4.54652e-12 8.11675e-13 -5.07297e-12 8.03126e-13 -5.59445e-12 7.94133e-13 -6.11103e-12 7.85066e-13 -6.62249e-12 7.75512e-13 -7.12852e-12 7.65124e-13 -7.62896e-12 7.54189e-13 -8.12351e-12 7.42508e-13 -8.61179e-12 7.30506e-13 -9.09431e-12 7.1941e-13 -9.57182e-12 7.10024e-13 -1.00446e-11 7.01381e-13 -1.05134e-11 6.93812e-13 -1.09789e-11 6.87456e-13 -1.14403e-11 6.79788e-13 -1.18968e-11 6.70954e-13 -1.23474e-11 6.59596e-13 -1.27889e-11 6.43121e-13 -1.32193e-11 6.22121e-13 -1.36346e-11 5.94188e-13 -1.40305e-11 5.58281e-13 -1.44031e-11 5.14728e-13 -1.47463e-11 4.60928e-13 -1.50551e-11 3.97374e-13 -1.53219e-11 3.2115e-13 -1.55396e-11 2.33149e-13 -1.56998e-11 1.31774e-13 -1.57947e-11 1.63632e-14 -1.58157e-11 -1.12209e-13 -1.57578e-11 -2.48917e-13 -1.5615e-11 -3.94466e-13 -1.53834e-11 -5.45589e-13 -1.50593e-11 -7.01431e-13 -1.46395e-11 -8.61035e-13 -1.41222e-11 -1.02154e-12 -1.35063e-11 -1.18167e-12 -1.27936e-11 -1.33676e-12 -1.1989e-11 -1.48131e-12 -1.1095e-11 -1.61976e-12 -1.01158e-11 -1.74883e-12 -9.05945e-12 -1.86275e-12 -7.93172e-12 -1.96443e-12 -6.73854e-12 -2.05396e-12 -5.48746e-12 -2.12972e-12 -4.18551e-12 -2.19258e-12 -2.84136e-12 -2.24004e-12 -1.46408e-12 -2.27168e-12 -6.26247e-14 -2.28827e-12 1.35309e-12 -2.28857e-12 2.77448e-12 -2.27387e-12 4.19227e-12 -2.24421e-12 5.59713e-12 -2.20027e-12 6.97895e-12 -2.14106e-12 8.32994e-12 -2.06991e-12 9.64147e-12 -1.98654e-12 1.09085e-11 -1.8968e-12 1.2124e-11 -1.797e-12 1.32865e-11 -1.69652e-12 1.43917e-11 -1.59151e-12 1.54381e-11 -1.48556e-12 1.64226e-11 -1.37725e-12 1.73449e-11 -1.27085e-12 1.82033e-11 -1.16397e-12 1.8995e-11 -1.05478e-12 1.97181e-11 -9.45317e-13 2.037e-11 -8.34359e-13 2.09486e-11 -7.21141e-13 2.14512e-11 -6.04242e-13 2.1874e-11 -4.83466e-13 2.2214e-11 -3.58697e-13 2.24673e-11 -2.28742e-13 2.26286e-11 -8.94011e-14 2.26896e-11 6.12864e-14 2.26454e-11 2.19345e-13 2.24859e-11 3.92753e-13 2.22008e-11 5.81162e-13 2.17802e-11 7.83492e-13 2.1215e-11 9.99726e-13 2.04946e-11 1.23127e-12 1.96106e-11 1.47523e-12 1.85566e-11 1.72868e-12 1.73266e-11 1.98948e-12 1.59184e-11 2.25277e-12 1.43324e-11 2.51426e-12 1.25723e-11 2.76777e-12 1.06448e-11 3.01478e-12 8.57819e-12 3.19999e-12 6.32697e-12 3.51467e-12 4.04823e-12 3.4769e-12 1.63964e-12 3.80324e-12 -4.52383e-13 3.32284e-12 2.63204e-12 -1.93202e-12 -3.28097e-13 8.17671e-13 -8.82684e-13 1.27605e-12 -1.51021e-12 1.44425e-12 -2.15642e-12 1.48942e-12 -2.80178e-12 1.4833e-12 -3.44256e-12 1.47366e-12 -4.08015e-12 1.46406e-12 -4.71453e-12 1.45434e-12 -5.34524e-12 1.44287e-12 -5.97161e-12 1.42995e-12 -6.5933e-12 1.41624e-12 -7.21031e-12 1.40245e-12 -7.82237e-12 1.3879e-12 -8.42946e-12 1.37251e-12 -9.03163e-12 1.3566e-12 -9.6288e-12 1.33986e-12 -1.0221e-11 1.32283e-12 -1.08086e-11 1.30714e-12 -1.13917e-11 1.29317e-12 -1.19711e-11 1.28077e-12 -1.25478e-11 1.27051e-12 -1.31215e-11 1.26107e-12 -1.36925e-11 1.2507e-12 -1.426e-11 1.23824e-12 -1.48223e-11 1.2217e-12 -1.53774e-11 1.19808e-12 -1.59231e-11 1.16762e-12 -1.64553e-11 1.12626e-12 -1.69705e-11 1.07337e-12 -1.74637e-11 1.00787e-12 -1.79292e-11 9.26317e-13 -1.83612e-11 8.29425e-13 -1.8752e-11 7.12032e-13 -1.90943e-11 5.75524e-13 -1.93787e-11 4.16299e-13 -1.95976e-11 2.3534e-13 -1.97427e-11 3.30966e-14 -1.98063e-11 -1.85036e-13 -1.97826e-11 -4.17934e-13 -1.96667e-11 -6.61291e-13 -1.94535e-11 -9.14458e-13 -1.91396e-11 -1.17473e-12 -1.87215e-11 -1.43943e-12 -1.81986e-11 -1.70433e-12 -1.75715e-11 -1.96369e-12 -1.6842e-11 -2.21051e-12 -1.60142e-11 -2.44737e-12 -1.50913e-11 -2.67143e-12 -1.40783e-11 -2.87546e-12 -1.29807e-11 -3.06175e-12 -1.18043e-11 -3.23013e-12 -1.05558e-11 -3.37789e-12 -9.24259e-12 -3.50538e-12 -7.87294e-12 -3.60929e-12 -6.45547e-12 -3.68874e-12 -4.99922e-12 -3.7441e-12 -3.51335e-12 -3.77401e-12 -2.00839e-12 -3.7784e-12 -4.94131e-13 -3.75803e-12 1.01896e-12 -3.71289e-12 2.52483e-12 -3.64643e-12 4.01295e-12 -3.55751e-12 5.47308e-12 -3.4461e-12 6.8963e-12 -3.31943e-12 8.28472e-12 -3.18481e-12 9.62436e-12 -3.03554e-12 1.09147e-11 -2.88119e-12 1.21478e-11 -2.71805e-12 1.3328e-11 -2.55676e-12 1.44456e-11 -2.3878e-12 1.54994e-11 -2.21706e-12 1.64851e-11 -2.03976e-12 1.73995e-11 -1.85898e-12 1.8237e-11 -1.67118e-12 1.89941e-11 -1.47761e-12 1.96667e-11 -1.27635e-12 2.02495e-11 -1.06575e-12 2.0735e-11 -8.43711e-13 2.11181e-11 -6.11347e-13 2.13901e-11 -3.61029e-13 2.15426e-11 -9.07173e-14 2.15627e-11 1.99631e-13 2.1442e-11 5.13864e-13 2.1165e-11 8.58517e-13 2.07195e-11 1.22931e-12 2.00916e-11 1.6278e-12 1.92698e-11 2.05325e-12 1.82429e-11 2.5023e-12 1.70021e-11 2.96964e-12 1.554e-11 3.45172e-12 1.38527e-11 3.94041e-12 1.19393e-11 4.42797e-12 9.80461e-12 4.90286e-12 7.45765e-12 5.36215e-12 4.92132e-12 5.73671e-12 2.201e-12 6.23531e-12 -6.90189e-13 6.36834e-12 -3.54794e-12 6.66118e-12 -6.14644e-12 5.9215e-12 4.18454e-12 -7.69875e-12 -3.63269e-13 1.18137e-12 -9.28638e-13 1.8422e-12 -1.58202e-12 2.09833e-12 -2.25927e-12 2.16735e-12 -2.93814e-12 2.16283e-12 -3.61373e-12 2.14989e-12 -4.28639e-12 2.13734e-12 -4.95596e-12 2.12451e-12 -5.62231e-12 2.1098e-12 -6.28504e-12 2.09321e-12 -6.9438e-12 2.07549e-12 -7.59815e-12 2.05725e-12 -8.24777e-12 2.03794e-12 -8.8925e-12 2.01759e-12 -9.53211e-12 1.99651e-12 -1.01664e-11 1.97442e-12 -1.07961e-11 1.9527e-12 -1.14216e-11 1.9328e-12 -1.20432e-11 1.91489e-12 -1.26621e-11 1.89977e-12 -1.3279e-11 1.88739e-12 -1.38936e-11 1.87569e-12 -1.45065e-11 1.86364e-12 -1.51173e-11 1.84897e-12 -1.5724e-11 1.8284e-12 -1.63263e-11 1.80029e-12 -1.69205e-11 1.76183e-12 -1.75038e-11 1.70958e-12 -1.80725e-11 1.64213e-12 -1.86206e-11 1.55606e-12 -1.91433e-11 1.44909e-12 -1.96328e-11 1.31901e-12 -2.00826e-11 1.16192e-12 -2.04841e-11 9.77213e-13 -2.08293e-11 7.61622e-13 -2.11098e-11 5.15915e-13 -2.13179e-11 2.41326e-13 -2.14457e-11 -5.71956e-14 -2.1486e-11 -3.77593e-13 -2.14334e-11 -7.13784e-13 -2.12822e-11 -1.06569e-12 -2.10288e-11 -1.42815e-12 -2.06704e-11 -1.79787e-12 -2.02048e-11 -2.16995e-12 -1.96338e-11 -2.53472e-12 -1.8957e-11 -2.8873e-12 -1.81777e-11 -3.2266e-12 -1.73011e-11 -3.54789e-12 -1.633e-11 -3.84641e-12 -1.52692e-11 -4.12241e-12 -1.41257e-11 -4.37338e-12 -1.29061e-11 -4.59718e-12 -1.16185e-11 -4.79268e-12 -1.02711e-11 -4.9563e-12 -8.87234e-12 -5.0871e-12 -7.43141e-12 -5.18462e-12 -5.95765e-12 -5.24735e-12 -4.46064e-12 -5.27499e-12 -2.95009e-12 -5.26814e-12 -1.43503e-12 -5.22751e-12 7.42825e-14 -5.1553e-12 1.57104e-12 -5.05383e-12 3.0465e-12 -4.92112e-12 4.4931e-12 -4.76562e-12 5.90287e-12 -4.59418e-12 7.27335e-12 -4.40565e-12 8.59604e-12 -4.20352e-12 9.86648e-12 -3.98812e-12 1.10809e-11 -3.77086e-12 1.22367e-11 -3.54321e-12 1.33296e-11 -3.30956e-12 1.43546e-11 -3.06437e-12 1.53096e-11 -2.81363e-12 1.61885e-11 -2.5498e-12 1.69871e-11 -2.27582e-12 1.76995e-11 -1.98853e-12 1.83192e-11 -1.68504e-12 1.88404e-11 -1.36462e-12 1.92521e-11 -1.02261e-12 1.95435e-11 -6.52057e-13 1.97077e-11 -2.54536e-13 1.97285e-11 1.79181e-13 1.95939e-11 6.48898e-13 1.92911e-11 1.16165e-12 1.88048e-11 1.71587e-12 1.81217e-11 2.31124e-12 1.72274e-11 2.94786e-12 1.61096e-11 3.62037e-12 1.47567e-11 4.32283e-12 1.31615e-11 5.04724e-12 1.13186e-11 5.7836e-12 9.22729e-12 6.51948e-12 6.89225e-12 7.23809e-12 4.32401e-12 7.93052e-12 1.53847e-12 8.52231e-12 -1.41829e-12 9.19207e-12 -4.56612e-12 9.51613e-12 -7.72907e-12 9.8241e-12 -1.0654e-11 8.84643e-12 6.03738e-12 -1.25068e-11 -3.81377e-13 1.56319e-12 -9.55968e-13 2.41759e-12 -1.6117e-12 2.7548e-12 -2.29612e-12 2.85249e-12 -2.98395e-12 2.85139e-12 -3.66999e-12 2.83665e-12 -4.35371e-12 2.82177e-12 -5.03477e-12 2.80626e-12 -5.713e-12 2.7887e-12 -6.38801e-12 2.76885e-12 -7.05927e-12 2.74733e-12 -7.72625e-12 2.72477e-12 -8.3885e-12 2.70066e-12 -9.04559e-12 2.67511e-12 -9.69731e-12 2.64861e-12 -1.03438e-11 2.62122e-12 -1.09856e-11 2.59472e-12 -1.16233e-11 2.57074e-12 -1.22577e-11 2.54951e-12 -1.28895e-11 2.53174e-12 -1.35195e-11 2.51746e-12 -1.4148e-11 2.50436e-12 -1.47752e-11 2.49089e-12 -1.5401e-11 2.47488e-12 -1.60246e-11 2.45216e-12 -1.66446e-11 2.42037e-12 -1.72588e-11 2.37626e-12 -1.78641e-11 2.31499e-12 -1.8456e-11 2.23428e-12 -1.90298e-11 2.12999e-12 -1.95784e-11 1.99789e-12 -2.00955e-11 1.8363e-12 -2.05727e-11 1.63933e-12 -2.10025e-11 1.40709e-12 -2.13759e-11 1.13519e-12 -2.16856e-11 8.25668e-13 -2.19226e-11 4.78345e-13 -2.20802e-11 1.00346e-13 -2.21496e-11 -3.08365e-13 -2.2125e-11 -7.38459e-13 -2.2001e-11 -1.1899e-12 -2.17724e-11 -1.65694e-12 -2.14381e-11 -2.13242e-12 -2.09956e-11 -2.61264e-12 -2.04446e-11 -3.08593e-12 -1.97859e-11 -3.54609e-12 -1.90229e-11 -3.98972e-12 -1.81592e-11 -4.41158e-12 -1.71981e-11 -4.80747e-12 -1.61451e-11 -5.17532e-12 -1.50071e-11 -5.51117e-12 -1.37914e-11 -5.81267e-12 -1.25066e-11 -6.07718e-12 -1.11611e-11 -6.30142e-12 -9.76355e-12 -6.48432e-12 -8.3235e-12 -6.6243e-12 -6.85048e-12 -6.72e-12 -5.35373e-12 -6.77136e-12 -3.84274e-12 -6.77875e-12 -2.32671e-12 -6.74315e-12 -8.14518e-13 -6.66713e-12 6.84805e-13 -6.55283e-12 2.16529e-12 -6.40133e-12 3.61885e-12 -6.21894e-12 5.03684e-12 -6.01199e-12 6.41371e-12 -5.78236e-12 7.74171e-12 -5.53139e-12 9.02399e-12 -5.27029e-12 1.02479e-11 -4.99469e-12 1.14112e-11 -4.70646e-12 1.25094e-11 -4.40766e-12 1.35439e-11 -4.0988e-12 1.45054e-11 -3.77516e-12 1.53946e-11 -3.43889e-12 1.62027e-11 -3.08387e-12 1.6925e-11 -2.71069e-12 1.75551e-11 -2.31491e-12 1.80827e-11 -1.89204e-12 1.85005e-11 -1.44007e-12 1.87987e-11 -9.49921e-13 1.89619e-11 -4.17411e-13 1.89805e-11 1.60835e-13 1.88382e-11 7.9154e-13 1.85213e-11 1.47889e-12 1.80158e-11 2.22162e-12 1.7306e-11 3.02133e-12 1.63779e-11 3.87632e-12 1.52182e-11 4.78047e-12 1.38155e-11 5.72594e-12 1.21606e-11 6.70241e-12 1.02475e-11 7.69695e-12 8.07478e-12 8.6923e-12 5.64501e-12 9.66782e-12 2.97195e-12 1.06034e-11 5.6994e-14 1.1437e-11 -3.03119e-12 1.228e-11 -6.28796e-12 1.27727e-11 -9.5686e-12 1.31046e-11 -1.25952e-11 1.1873e-11 7.8454e-12 -1.44033e-11 -3.88785e-13 1.95243e-12 -9.70519e-13 3.00013e-12 -1.62784e-12 3.41287e-12 -2.31198e-12 3.53738e-12 -3.00097e-12 3.54114e-12 -3.68958e-12 3.52602e-12 -4.37653e-12 3.50949e-12 -5.06121e-12 3.49168e-12 -5.74333e-12 3.47154e-12 -6.42248e-12 3.44868e-12 -7.09797e-12 3.42345e-12 -7.76913e-12 3.39651e-12 -8.43542e-12 3.36749e-12 -9.09622e-12 3.3364e-12 -9.75123e-12 3.30405e-12 -1.04009e-11 3.27129e-12 -1.10459e-11 3.24005e-12 -1.16867e-11 3.2118e-12 -1.23244e-11 3.18744e-12 -1.29597e-11 3.16732e-12 -1.3593e-11 3.15101e-12 -1.42255e-11 3.13707e-12 -1.48574e-11 3.12299e-12 -1.54884e-11 3.1061e-12 -1.61187e-11 3.08278e-12 -1.67467e-11 3.04861e-12 -1.73703e-11 3.00009e-12 -1.79868e-11 2.93175e-12 -1.85911e-11 2.83887e-12 -1.91787e-11 2.71785e-12 -1.97424e-11 2.56186e-12 -2.02751e-11 2.36922e-12 -2.07688e-11 2.1332e-12 -2.1215e-11 1.85334e-12 -2.16051e-11 1.52538e-12 -2.19311e-11 1.15167e-12 -2.21847e-11 7.31861e-13 -2.23573e-11 2.72773e-13 -2.24419e-11 -2.23935e-13 -2.24305e-11 -7.50077e-13 -2.2318e-11 -1.30275e-12 -2.21e-11 -1.87518e-12 -2.17734e-11 -2.45937e-12 -2.13371e-11 -3.04922e-12 -2.07912e-11 -3.63216e-12 -2.01346e-11 -4.20286e-12 -1.93705e-11 -4.75396e-12 -1.85032e-11 -5.27896e-12 -1.75364e-11 -5.77432e-12 -1.6476e-11 -6.23559e-12 -1.53294e-11 -6.65772e-12 -1.4104e-11 -7.0379e-12 -1.28085e-11 -7.37245e-12 -1.1452e-11 -7.65773e-12 -1.00432e-11 -7.89284e-12 -8.59171e-12 -8.07557e-12 -7.10732e-12 -8.20412e-12 -5.59947e-12 -8.27893e-12 -4.07754e-12 -8.30041e-12 -2.55075e-12 -8.26968e-12 -1.02783e-12 -8.18983e-12 4.82904e-13 -8.06341e-12 1.9739e-12 -7.89223e-12 3.43754e-12 -7.68256e-12 4.86577e-12 -7.44024e-12 6.25312e-12 -7.16976e-12 7.59317e-12 -6.87151e-12 8.88016e-12 -6.55738e-12 1.01105e-11 -6.22511e-12 1.12819e-11 -5.878e-12 1.23878e-11 -5.51372e-12 1.34279e-11 -5.13909e-12 1.43973e-11 -4.74474e-12 1.5291e-11 -4.33276e-12 1.61068e-11 -3.89975e-12 1.68373e-11 -3.44125e-12 1.74756e-11 -2.95313e-12 1.8015e-11 -2.43127e-12 1.84432e-11 -1.86809e-12 1.87503e-11 -1.25676e-12 1.89233e-11 -5.90231e-13 1.89492e-11 1.35184e-13 1.88126e-11 9.28288e-13 1.85014e-11 1.79031e-12 1.79976e-11 2.72561e-12 1.72866e-11 3.73266e-12 1.63544e-11 4.80883e-12 1.51862e-11 5.94912e-12 1.37701e-11 7.14233e-12 1.20964e-11 8.37639e-12 1.0158e-11 9.63543e-12 7.95213e-12 1.08981e-11 5.48106e-12 1.21387e-11 2.75575e-12 1.33284e-11 -2.20648e-13 1.44131e-11 -3.37871e-12 1.54378e-11 -6.70384e-12 1.60976e-11 -1.00517e-11 1.64523e-11 -1.31132e-11 1.49344e-11 9.65963e-12 -1.49275e-11 -3.92164e-13 2.34505e-12 -9.79177e-13 3.58792e-12 -1.63805e-12 4.07246e-12 -2.32077e-12 4.22083e-12 -3.00918e-12 4.23028e-12 -3.69824e-12 4.21584e-12 -4.38624e-12 4.19825e-12 -5.07235e-12 4.17854e-12 -5.75606e-12 4.15597e-12 -6.43695e-12 4.13026e-12 -7.11422e-12 4.10137e-12 -7.78693e-12 4.06983e-12 -8.45446e-12 4.03559e-12 -9.11627e-12 3.99873e-12 -9.77188e-12 3.96014e-12 -1.04219e-11 3.92172e-12 -1.10673e-11 3.88587e-12 -1.17083e-11 3.8532e-12 -1.23459e-11 3.82536e-12 -1.29815e-11 3.80322e-12 -1.36153e-11 3.78511e-12 -1.42484e-11 3.7705e-12 -1.48819e-11 3.75687e-12 -1.55156e-11 3.74005e-12 -1.61495e-11 3.71708e-12 -1.67828e-11 3.68223e-12 -1.74129e-11 3.63047e-12 -1.80372e-11 3.55642e-12 -1.86512e-11 3.45316e-12 -1.92492e-11 3.3161e-12 -1.98252e-11 3.13807e-12 -2.03705e-11 2.91477e-12 -2.08778e-11 2.64062e-12 -2.13375e-11 2.31315e-12 -2.17418e-11 1.92969e-12 -2.20807e-11 1.49058e-12 -2.23475e-11 9.98529e-13 -2.25317e-11 4.56764e-13 -2.26264e-11 -1.29373e-13 -2.26246e-11 -7.52192e-13 -2.25194e-11 -1.40822e-12 -2.23068e-11 -2.0881e-12 -2.19847e-11 -2.78178e-12 -2.155e-11 -3.48418e-12 -2.10021e-11 -4.18033e-12 -2.0342e-11 -4.86319e-12 -1.95718e-11 -5.52434e-12 -1.86954e-11 -6.15542e-12 -1.77186e-11 -6.75123e-12 -1.6647e-11 -7.30717e-12 -1.54878e-11 -7.81688e-12 -1.4249e-11 -8.27668e-12 -1.29391e-11 -8.68222e-12 -1.15676e-11 -9.0292e-12 -1.01436e-11 -9.31675e-12 -8.6765e-12 -9.54261e-12 -7.17624e-12 -9.70428e-12 -5.65257e-12 -9.8025e-12 -4.11485e-12 -9.83802e-12 -2.57247e-12 -9.81199e-12 -1.03456e-12 -9.72771e-12 4.90419e-13 -9.58842e-12 1.99416e-12 -9.39606e-12 3.46894e-12 -9.15748e-12 4.90667e-12 -8.87812e-12 6.30159e-12 -8.56486e-12 7.65227e-12 -8.22237e-12 8.94907e-12 -7.85437e-12 1.01886e-11 -7.46489e-12 1.13654e-11 -7.05503e-12 1.248e-11 -6.62857e-12 1.35257e-11 -6.18516e-12 1.45007e-11 -5.72002e-12 1.54043e-11 -5.23657e-12 1.62294e-11 -4.72502e-12 1.69702e-11 -4.18213e-12 1.762e-11 -3.60295e-12 1.8172e-11 -2.98326e-12 1.8614e-11 -2.30994e-12 1.89363e-11 -1.57897e-12 1.91255e-11 -7.7943e-13 1.91675e-11 9.31742e-14 1.90487e-11 1.04711e-12 1.87525e-11 2.0866e-12 1.82635e-11 3.21463e-12 1.75659e-11 4.43047e-12 1.6644e-11 5.73101e-12 1.54828e-11 7.11059e-12 1.40694e-11 8.55591e-12 1.23933e-11 1.00526e-11 1.04471e-11 1.15816e-11 8.22672e-12 1.31183e-11 5.73343e-12 1.46316e-11 2.97428e-12 1.60872e-11 -4.74747e-14 1.74345e-11 -3.2568e-12 1.86468e-11 -6.64353e-12 1.94842e-11 -1.0062e-11 1.98707e-11 -1.3177e-11 1.80494e-11 1.15165e-11 -1.50338e-11 -3.94193e-13 2.73968e-12 -9.84938e-13 4.17936e-12 -1.64504e-12 4.73321e-12 -2.32679e-12 4.90324e-12 -3.01467e-12 4.91885e-12 -3.70386e-12 4.90572e-12 -4.39244e-12 4.88752e-12 -5.07957e-12 4.86635e-12 -5.76443e-12 4.84149e-12 -6.44641e-12 4.81288e-12 -7.1248e-12 4.78038e-12 -7.79846e-12 4.74407e-12 -8.46642e-12 4.70412e-12 -9.12839e-12 4.66122e-12 -9.78406e-12 4.61631e-12 -1.04337e-11 4.57186e-12 -1.10785e-11 4.5311e-12 -1.17189e-11 4.49403e-12 -1.23555e-11 4.46233e-12 -1.29899e-11 4.43799e-12 -1.36231e-11 4.41878e-12 -1.42561e-11 4.40385e-12 -1.48903e-11 4.39134e-12 -1.55261e-11 4.37624e-12 -1.61632e-11 4.35456e-12 -1.68011e-11 4.32048e-12 -1.74377e-11 4.26739e-12 -1.80696e-11 4.18856e-12 -1.86933e-11 4.07711e-12 -1.9302e-11 3.92502e-12 -1.989e-11 3.72633e-12 -2.04486e-11 3.47351e-12 -2.09698e-11 3.16189e-12 -2.14437e-11 2.78715e-12 -2.18623e-11 2.34832e-12 -2.22154e-11 1.84363e-12 -2.24946e-11 1.27765e-12 -2.26909e-11 6.5291e-13 -2.27958e-11 -2.46235e-14 -2.28017e-11 -7.46372e-13 -2.27034e-11 -1.50672e-12 -2.24949e-11 -2.29676e-12 -2.21735e-11 -3.10335e-12 -2.17378e-11 -3.92004e-12 -2.11871e-11 -4.73123e-12 -2.05225e-11 -5.52792e-12 -1.9746e-11 -6.30098e-12 -1.88616e-11 -7.03995e-12 -1.7874e-11 -7.73895e-12 -1.67897e-11 -8.39156e-12 -1.56165e-11 -8.99009e-12 -1.43628e-11 -9.5305e-12 -1.30373e-11 -1.00078e-11 -1.16493e-11 -1.04173e-11 -1.02083e-11 -1.07579e-11 -8.72407e-12 -1.1027e-11 -7.20637e-12 -1.12221e-11 -5.66523e-12 -1.13437e-11 -4.11054e-12 -1.13928e-11 -2.55176e-12 -1.13709e-11 -9.98113e-13 -1.12815e-11 5.41991e-13 -1.11287e-11 2.05773e-12 -1.0912e-11 3.54394e-12 -1.06439e-11 4.99588e-12 -1.03303e-11 6.40332e-12 -9.97253e-12 7.76024e-12 -9.57951e-12 9.06339e-12 -9.15775e-12 1.0307e-11 -8.7087e-12 1.14947e-11 -8.24301e-12 1.26141e-11 -7.74831e-12 1.36687e-11 -7.24007e-12 1.46528e-11 -6.70442e-12 1.55634e-11 -6.14745e-12 1.63973e-11 -5.55912e-12 1.7149e-11 -4.93392e-12 1.78123e-11 -4.26636e-12 1.83777e-11 -3.54874e-12 1.88359e-11 -2.76811e-12 1.91754e-11 -1.91862e-12 1.93847e-11 -9.88871e-13 1.9448e-11 2.97366e-14 1.93511e-11 1.1439e-12 1.9077e-11 2.36055e-12 1.86097e-11 3.68183e-12 1.79329e-11 5.10727e-12 1.703e-11 6.63404e-12 1.58848e-11 8.25585e-12 1.44833e-11 9.95737e-12 1.28135e-11 1.17223e-11 1.08667e-11 1.35283e-11 8.63741e-12 1.53473e-11 6.12559e-12 1.71432e-11 3.33871e-12 1.88738e-11 2.8975e-13 2.04833e-11 -2.98907e-12 2.19255e-11 -6.44685e-12 2.29419e-11 -9.95394e-12 2.33779e-11 -1.31485e-11 2.12441e-11 1.34247e-11 -1.50567e-11 -3.95459e-13 3.13553e-12 -9.88608e-13 4.77309e-12 -1.64988e-12 5.39503e-12 -2.33134e-12 5.58525e-12 -3.01916e-12 5.60723e-12 -3.70873e-12 5.59587e-12 -4.39797e-12 5.57733e-12 -5.08611e-12 5.55506e-12 -5.77216e-12 5.52811e-12 -6.45519e-12 5.49646e-12 -7.13449e-12 5.46023e-12 -7.80903e-12 5.41915e-12 -8.47747e-12 5.37308e-12 -9.13939e-12 5.32367e-12 -9.79498e-12 5.27241e-12 -1.04444e-11 5.22176e-12 -1.10881e-11 5.17531e-12 -1.17272e-11 5.13357e-12 -1.23625e-11 5.09809e-12 -1.29952e-11 5.07109e-12 -1.36272e-11 5.05119e-12 -1.426e-11 5.037e-12 -1.48944e-11 5.02612e-12 -1.55321e-11 5.01425e-12 -1.61727e-11 4.99553e-12 -1.68154e-11 4.96344e-12 -1.7459e-11 4.91129e-12 -1.80996e-11 4.82936e-12 -1.87336e-11 4.71125e-12 -1.93547e-11 4.54629e-12 -1.9956e-11 4.32773e-12 -2.05294e-11 4.04702e-12 -2.10659e-11 3.69844e-12 -2.15562e-11 3.2775e-12 -2.19903e-11 2.78251e-12 -2.23594e-11 2.21272e-12 -2.26531e-11 1.57135e-12 -2.2862e-11 8.61831e-13 -2.29782e-11 9.15963e-14 -2.29933e-11 -7.313e-13 -2.29009e-11 -1.59904e-12 -2.26973e-11 -2.50034e-12 -2.23787e-11 -3.42194e-12 -2.19427e-11 -4.35607e-12 -2.13891e-11 -5.28489e-12 -2.07187e-11 -6.19836e-12 -1.99345e-11 -7.08537e-12 -1.904e-11 -7.93447e-12 -1.80404e-11 -8.73874e-12 -1.69426e-11 -9.48952e-12 -1.57544e-11 -1.01785e-11 -1.44842e-11 -1.08009e-11 -1.31414e-11 -1.13509e-11 -1.17355e-11 -1.18236e-11 -1.0276e-11 -1.22177e-11 -8.77289e-12 -1.25304e-11 -7.23636e-12 -1.27589e-11 -5.67665e-12 -1.29037e-11 -4.10378e-12 -1.2966e-11 -2.52745e-12 -1.29475e-11 -9.57316e-13 -1.2852e-11 5.97862e-13 -1.26842e-11 2.12872e-12 -1.24432e-11 3.63096e-12 -1.21465e-11 5.09217e-12 -1.17918e-11 6.50917e-12 -1.13898e-11 7.87566e-12 -1.09462e-11 9.18789e-12 -1.04702e-11 1.04414e-11 -9.96244e-12 1.16299e-11 -9.43173e-12 1.27592e-11 -8.87787e-12 1.38174e-11 -8.29849e-12 1.48107e-11 -7.69796e-12 1.57304e-11 -7.06733e-12 1.65726e-11 -6.40157e-12 1.73377e-11 -5.69916e-12 1.80147e-11 -4.94345e-12 1.85964e-11 -4.13058e-12 1.90728e-11 -3.24471e-12 1.94333e-11 -2.27935e-12 1.96648e-11 -1.22065e-12 1.97523e-11 -5.80855e-14 1.96799e-11 1.21606e-12 1.94331e-11 2.60703e-12 1.89927e-11 4.12209e-12 1.83412e-11 5.75855e-12 1.74611e-11 7.514e-12 1.63372e-11 9.37956e-12 1.49524e-11 1.13421e-11 1.32934e-11 1.33812e-11 1.13497e-11 1.54717e-11 9.11452e-12 1.75823e-11 6.58651e-12 1.9671e-11 3.77024e-12 2.169e-11 6.77633e-13 2.35759e-11 -2.66598e-12 2.52692e-11 -6.20777e-12 2.64838e-11 -9.82386e-12 2.69941e-11 -1.31232e-11 2.45435e-11 1.53859e-11 -1.50842e-11 -3.96045e-13 3.53189e-12 -9.90465e-13 5.36795e-12 -1.65297e-12 6.05794e-12 -2.33486e-12 6.26754e-12 -3.02312e-12 6.29592e-12 -3.71344e-12 6.28662e-12 -4.40359e-12 6.26792e-12 -5.09277e-12 6.24468e-12 -5.78009e-12 6.21586e-12 -6.46445e-12 6.18125e-12 -7.14478e-12 6.141e-12 -7.82019e-12 6.09502e-12 -8.48934e-12 6.0427e-12 -9.15149e-12 5.9863e-12 -9.80686e-12 5.92825e-12 -1.04559e-11 5.87129e-12 -1.10986e-11 5.81851e-12 -1.17358e-11 5.77119e-12 -1.23694e-11 5.73207e-12 -1.30003e-11 5.70246e-12 -1.36305e-11 5.68172e-12 -1.42625e-11 5.66936e-12 -1.48974e-11 5.66129e-12 -1.55365e-11 5.65369e-12 -1.61807e-11 5.63998e-12 -1.68289e-11 5.61191e-12 -1.74799e-11 5.56239e-12 -1.81307e-11 5.48037e-12 -1.87762e-11 5.35683e-12 -1.94113e-11 5.18147e-12 -2.00279e-11 4.94434e-12 -2.06181e-11 4.63728e-12 -2.1172e-11 4.25251e-12 -2.16809e-11 3.78646e-12 -2.21336e-11 3.23533e-12 -2.25204e-11 2.59957e-12 -2.28312e-11 1.88228e-12 -2.30555e-11 1.08631e-12 -2.31844e-11 2.20735e-13 -2.32107e-11 -7.04826e-13 -2.31274e-11 -1.68207e-12 -2.293e-11 -2.69759e-12 -2.26136e-11 -3.73814e-12 -2.2177e-11 -4.79258e-12 -2.16195e-11 -5.84227e-12 -2.09425e-11 -6.87539e-12 -2.0149e-11 -7.87893e-12 -1.92429e-11 -8.84069e-12 -1.82296e-11 -9.75215e-12 -1.71164e-11 -1.06029e-11 -1.59112e-11 -1.1384e-11 -1.46229e-11 -1.20895e-11 -1.32611e-11 -1.27131e-11 -1.18352e-11 -1.325e-11 -1.03551e-11 -1.36983e-11 -8.83137e-12 -1.40547e-11 -7.27423e-12 -1.43165e-11 -5.69397e-12 -1.44845e-11 -4.10099e-12 -1.45594e-11 -2.50555e-12 -1.45434e-11 -9.17547e-13 -1.44404e-11 6.51939e-13 -1.42541e-11 2.20289e-12 -1.39945e-11 3.71723e-12 -1.36611e-11 5.18888e-12 -1.32637e-11 6.61304e-12 -1.28141e-11 7.98923e-12 -1.23226e-11 9.30984e-12 -1.1791e-11 1.05732e-11 -1.1226e-11 1.17729e-11 -1.06315e-11 1.29062e-11 -1.00114e-11 1.39744e-11 -9.36688e-12 1.49729e-11 -8.69663e-12 1.59004e-11 -7.99495e-12 1.67572e-11 -7.25856e-12 1.75339e-11 -6.47598e-12 1.82263e-11 -5.63605e-12 1.88263e-11 -4.73079e-12 1.93244e-11 -3.74303e-12 1.97087e-11 -2.66398e-12 1.99658e-11 -1.47803e-12 2.00813e-11 -1.74028e-13 2.00399e-11 1.25717e-12 1.98228e-11 2.82374e-12 1.9413e-11 4.53157e-12 1.87912e-11 6.38009e-12 1.79391e-11 8.36578e-12 1.6839e-11 1.04794e-11 1.54735e-11 1.27072e-11 1.38275e-11 1.50269e-11 1.18882e-11 1.74109e-11 9.6475e-12 1.98229e-11 7.10117e-12 2.22173e-11 4.25097e-12 2.45402e-11 1.10788e-12 2.6719e-11 -2.30989e-12 2.86871e-11 -5.95154e-12 3.01256e-11 -9.69908e-12 3.07417e-11 -1.31341e-11 2.79786e-11 1.74217e-11 -1.51698e-11 -3.96027e-13 3.92816e-12 -9.90813e-13 5.96304e-12 -1.6546e-12 6.72201e-12 -2.33761e-12 6.95083e-12 -3.02672e-12 6.98531e-12 -3.71801e-12 6.97819e-12 -4.40936e-12 6.95955e-12 -5.09979e-12 6.9354e-12 -5.78848e-12 6.90484e-12 -6.47447e-12 6.86755e-12 -7.15625e-12 6.82313e-12 -7.83265e-12 6.77178e-12 -8.50259e-12 6.71303e-12 -9.16539e-12 6.6495e-12 -9.82069e-12 6.58396e-12 -1.0469e-11 6.52003e-12 -1.11106e-11 6.46054e-12 -1.17458e-11 6.40679e-12 -1.23768e-11 6.36346e-12 -1.30057e-11 6.33164e-12 -1.36338e-11 6.31023e-12 -1.42643e-11 6.3001e-12 -1.48993e-11 6.29657e-12 -1.554e-11 6.29464e-12 -1.61874e-11 6.28756e-12 -1.68419e-11 6.26655e-12 -1.75009e-11 6.22148e-12 -1.81627e-11 6.14228e-12 -1.88216e-11 6.0158e-12 -1.94721e-11 5.83197e-12 -2.01062e-11 5.57854e-12 -2.07154e-11 5.24656e-12 -2.129e-11 4.82715e-12 -2.18197e-11 4.31632e-12 -2.22938e-11 3.70958e-12 -2.27009e-11 3.00697e-12 -2.30309e-11 2.21252e-12 -2.32729e-11 1.3286e-12 -2.34177e-11 3.65792e-13 -2.34559e-11 -6.66184e-13 -2.3382e-11 -1.75568e-12 -2.31908e-11 -2.88841e-12 -2.28774e-11 -4.05129e-12 -2.24402e-11 -5.22959e-12 -2.18786e-11 -6.4037e-12 -2.11943e-11 -7.5596e-12 -2.03906e-11 -8.68268e-12 -1.94715e-11 -9.7599e-12 -1.8443e-11 -1.07809e-11 -1.73126e-11 -1.17336e-11 -1.60888e-11 -1.26082e-11 -1.47807e-11 -1.3398e-11 -1.33978e-11 -1.40965e-11 -1.19497e-11 -1.46986e-11 -1.0447e-11 -1.52015e-11 -8.90033e-12 -1.56019e-11 -7.32013e-12 -1.58973e-11 -5.71724e-12 -1.60879e-11 -4.10231e-12 -1.61748e-11 -2.4856e-12 -1.61606e-11 -8.77025e-13 -1.60494e-11 7.15147e-13 -1.58467e-11 2.27861e-12 -1.55583e-11 3.80181e-12 -1.51846e-11 5.29151e-12 -1.47536e-11 6.73098e-12 -1.42538e-11 8.1167e-12 -1.37085e-11 9.44548e-12 -1.31199e-11 1.07128e-11 -1.24935e-11 1.19168e-11 -1.18356e-11 1.30594e-11 -1.11541e-11 1.4135e-11 -1.04426e-11 1.51434e-11 -9.70507e-12 1.60822e-11 -8.93389e-12 1.6949e-11 -8.12544e-12 1.77397e-11 -7.26685e-12 1.84498e-11 -6.34638e-12 1.90704e-11 -5.35159e-12 1.95925e-11 -4.26539e-12 2.00042e-11 -3.07603e-12 2.02922e-11 -1.76625e-12 2.04413e-11 -3.23481e-13 2.04332e-11 1.26498e-12 2.0252e-11 3.00458e-12 1.98785e-11 4.90468e-12 1.92913e-11 6.96695e-12 1.8471e-11 9.18567e-12 1.73994e-11 1.15506e-11 1.60568e-11 1.40495e-11 1.44263e-11 1.66571e-11 1.24932e-11 1.93438e-11 1.02472e-11 2.20688e-11 7.68138e-12 2.47832e-11 4.79511e-12 2.74266e-11 1.5942e-12 2.992e-11 -1.90499e-12 3.21863e-11 -5.66155e-12 3.38822e-11 -9.55961e-12 3.46398e-11 -1.31593e-11 3.15783e-11 1.95578e-11 -1.52955e-11 -3.95546e-13 4.32386e-12 -9.90112e-13 6.5578e-12 -1.65509e-12 7.38715e-12 -2.33971e-12 7.6356e-12 -3.03001e-12 7.67577e-12 -3.72241e-12 7.67074e-12 -4.41518e-12 7.65247e-12 -5.10728e-12 7.62766e-12 -5.79767e-12 7.5954e-12 -6.48546e-12 7.55554e-12 -7.16908e-12 7.50696e-12 -7.84686e-12 7.44982e-12 -8.51772e-12 7.38416e-12 -9.18136e-12 7.31344e-12 -9.83696e-12 7.23988e-12 -1.04843e-11 7.16772e-12 -1.11243e-11 7.10079e-12 -1.17574e-11 7.04024e-12 -1.23855e-11 6.99184e-12 -1.30112e-11 6.95767e-12 -1.36372e-11 6.9364e-12 -1.42657e-11 6.92888e-12 -1.49001e-11 6.93118e-12 -1.55425e-11 6.93714e-12 -1.61932e-11 6.93843e-12 -1.68537e-11 6.92719e-12 -1.75219e-11 6.88987e-12 -1.81952e-11 6.81565e-12 -1.88692e-11 6.68982e-12 -1.95367e-11 6.49961e-12 -2.01906e-11 6.23255e-12 -2.08212e-11 5.87729e-12 -2.14188e-11 5.42487e-12 -2.19724e-11 4.87013e-12 -2.24702e-11 4.20768e-12 -2.29009e-11 3.43797e-12 -2.32528e-11 2.56476e-12 -2.35146e-11 1.59079e-12 -2.36767e-11 5.28205e-13 -2.37294e-11 -6.13014e-13 -2.36664e-11 -1.81834e-12 -2.34819e-11 -3.07251e-12 -2.31713e-11 -4.36156e-12 -2.27335e-11 -5.66716e-12 -2.21677e-11 -6.96943e-12 -2.14753e-11 -8.25189e-12 -2.06601e-11 -9.49796e-12 -1.97265e-11 -1.06937e-11 -1.86812e-11 -1.18264e-11 -1.7532e-11 -1.28831e-11 -1.62874e-11 -1.38532e-11 -1.49568e-11 -1.4729e-11 -1.35503e-11 -1.55034e-11 -1.20778e-11 -1.61716e-11 -1.05497e-11 -1.673e-11 -8.97727e-12 -1.71748e-11 -7.37137e-12 -1.75036e-11 -5.74296e-12 -1.77167e-11 -4.10288e-12 -1.78154e-11 -2.4617e-12 -1.78022e-11 -8.29952e-13 -1.76815e-11 7.84175e-13 -1.74611e-11 2.36122e-12 -1.71357e-11 3.91374e-12 -1.67374e-11 5.41656e-12 -1.62567e-11 6.86758e-12 -1.57051e-11 8.26394e-12 -1.5105e-11 9.60099e-12 -1.44572e-11 1.08776e-11 -1.37702e-11 1.20906e-11 -1.30488e-11 1.3238e-11 -1.23016e-11 1.43194e-11 -1.15241e-11 1.53365e-11 -1.07222e-11 1.62854e-11 -9.88295e-12 1.71649e-11 -9.005e-12 1.7971e-11 -8.0731e-12 1.87003e-11 -7.07589e-12 1.93437e-11 -5.99514e-12 1.98923e-11 -4.81422e-12 2.03341e-11 -3.51809e-12 2.06562e-11 -2.08854e-12 2.08412e-11 -5.08725e-13 2.08743e-11 1.23167e-12 2.07336e-11 3.14502e-12 2.03999e-11 5.23808e-12 1.98523e-11 7.5142e-12 1.90696e-11 9.96796e-12 1.80299e-11 1.25898e-11 1.67145e-11 1.53647e-11 1.5103e-11 1.82684e-11 1.3179e-11 2.12677e-11 1.09291e-11 2.43187e-11 8.34387e-12 2.73684e-11 5.41978e-12 3.03507e-11 2.15811e-12 3.31817e-11 -1.42542e-12 3.57698e-11 -5.30628e-12 3.77629e-11 -9.36047e-12 3.86939e-11 -1.31299e-11 3.53476e-11 2.17953e-11 -1.53675e-11 -3.94726e-13 4.71867e-12 -9.88868e-13 7.15204e-12 -1.6548e-12 8.05317e-12 -2.34119e-12 8.32207e-12 -3.03296e-12 8.36761e-12 -3.72674e-12 8.36459e-12 -4.42115e-12 8.34693e-12 -5.11531e-12 8.32187e-12 -5.80788e-12 8.28804e-12 -6.49771e-12 8.24546e-12 -7.18329e-12 8.19266e-12 -7.863e-12 8.12966e-12 -8.53528e-12 8.05661e-12 -9.19977e-12 7.97811e-12 -9.85566e-12 7.89597e-12 -1.05022e-11 7.81448e-12 -1.11399e-11 7.73871e-12 -1.17704e-11 7.67093e-12 -1.23955e-11 7.61708e-12 -1.30175e-11 7.57991e-12 -1.36402e-11 7.55929e-12 -1.42667e-11 7.55547e-12 -1.48998e-11 7.56452e-12 -1.55429e-11 7.58034e-12 -1.61973e-11 7.59305e-12 -1.68637e-11 7.59376e-12 -1.75419e-11 7.56818e-12 -1.8228e-11 7.50189e-12 -1.8918e-11 7.37996e-12 -1.96046e-11 7.18645e-12 -2.02802e-11 6.90831e-12 -2.09349e-11 6.53223e-12 -2.15582e-11 6.04839e-12 -2.21382e-11 5.45047e-12 -2.26627e-11 4.73246e-12 -2.31199e-11 3.89549e-12 -2.3496e-11 2.94127e-12 -2.37808e-11 1.87587e-12 -2.39629e-11 7.10687e-13 -2.40328e-11 -5.42695e-13 -2.39826e-11 -1.86826e-12 -2.38055e-11 -3.24931e-12 -2.34983e-11 -4.66857e-12 -2.30594e-11 -6.10589e-12 -2.24884e-11 -7.54039e-12 -2.17868e-11 -8.9534e-12 -2.09585e-11 -1.03263e-11 -2.00088e-11 -1.16436e-11 -1.89445e-11 -1.28909e-11 -1.77737e-11 -1.40541e-11 -1.65053e-11 -1.51219e-11 -1.51491e-11 -1.60855e-11 -1.37153e-11 -1.69376e-11 -1.22144e-11 -1.76728e-11 -1.06575e-11 -1.82872e-11 -9.05575e-12 -1.87769e-11 -7.42032e-12 -1.91395e-11 -5.76234e-12 -1.93751e-11 -4.09325e-12 -1.94849e-11 -2.42444e-12 -1.94714e-11 -7.67051e-13 -1.93393e-11 8.64511e-13 -1.9093e-11 2.4769e-12 -1.87484e-11 4.04317e-12 -1.8304e-11 5.55779e-12 -1.77716e-11 7.02704e-12 -1.71746e-11 8.43638e-12 -1.65147e-11 9.78416e-12 -1.58053e-11 1.10676e-11 -1.50539e-11 1.22864e-11 -1.42678e-11 1.34378e-11 -1.34532e-11 1.45298e-11 -1.26161e-11 1.55541e-11 -1.17466e-11 1.65139e-11 -1.08429e-11 1.74072e-11 -9.89839e-12 1.82309e-11 -8.89694e-12 1.89806e-11 -7.82579e-12 1.96476e-11 -6.6623e-12 2.02266e-11 -5.39343e-12 2.07026e-11 -3.99416e-12 2.10619e-11 -2.44795e-12 2.12886e-11 -7.35481e-13 2.13647e-11 1.15548e-12 2.12694e-11 3.24014e-12 2.09816e-11 5.52556e-12 2.04789e-11 8.01662e-12 1.97381e-11 1.07085e-11 1.87368e-11 1.35908e-11 1.74523e-11 1.66489e-11 1.58637e-11 1.98568e-11 1.39517e-11 2.31796e-11 1.16995e-11 2.65707e-11 9.09521e-12 2.99725e-11 6.13042e-12 3.33153e-11 2.80527e-12 3.65067e-11 -8.62398e-13 3.94372e-11 -4.87713e-12 4.17774e-11 -9.08797e-12 4.29045e-11 -1.30185e-11 3.9278e-11 2.41229e-11 -1.53463e-11 -3.93612e-13 5.11232e-12 -9.87402e-13 7.74589e-12 -1.65403e-12 8.71985e-12 -2.34212e-12 9.0102e-12 -3.03556e-12 9.06106e-12 -3.73115e-12 9.06019e-12 -4.4275e-12 9.04328e-12 -5.12389e-12 9.01825e-12 -5.81901e-12 8.98315e-12 -6.51133e-12 8.93779e-12 -7.19919e-12 8.88054e-12 -7.88115e-12 8.81167e-12 -8.55547e-12 8.73097e-12 -9.22099e-12 8.64369e-12 -9.87677e-12 8.55181e-12 -1.05224e-11 8.46019e-12 -1.11579e-11 8.37432e-12 -1.17851e-11 8.29818e-12 -1.24064e-11 8.23851e-12 -1.30244e-11 8.19804e-12 -1.3643e-11 8.17794e-12 -1.42661e-11 8.17869e-12 -1.48976e-11 8.19622e-12 -1.55406e-11 8.22353e-12 -1.61984e-11 8.25105e-12 -1.68715e-11 8.2671e-12 -1.75597e-11 8.25661e-12 -1.82599e-11 8.20238e-12 -1.89672e-11 8.08751e-12 -1.96749e-11 7.89445e-12 -2.03744e-11 7.60817e-12 -2.10557e-11 7.21384e-12 -2.17076e-11 6.70065e-12 -2.23173e-11 6.06042e-12 -2.28717e-11 5.28716e-12 -2.33577e-11 4.38181e-12 -2.37617e-11 3.34562e-12 -2.40719e-11 2.18634e-12 -2.42762e-11 9.15208e-13 -2.43645e-11 -4.54127e-13 -2.43282e-11 -1.90444e-12 -2.41605e-11 -3.41689e-12 -2.38577e-11 -4.97128e-12 -2.34179e-11 -6.54561e-12 -2.28414e-11 -8.11698e-12 -2.21298e-11 -9.66501e-12 -2.12872e-11 -1.11691e-11 -2.03195e-11 -1.26114e-11 -1.9234e-11 -1.39766e-11 -1.80393e-11 -1.52489e-11 -1.67448e-11 -1.64165e-11 -1.53604e-11 -1.74701e-11 -1.38968e-11 -1.84014e-11 -1.23651e-11 -1.92047e-11 -1.07768e-11 -1.98758e-11 -9.14288e-12 -2.0411e-11 -7.47511e-12 -2.08075e-11 -5.78533e-12 -2.10652e-11 -4.08553e-12 -2.1185e-11 -2.3872e-12 -2.117e-11 -7.01204e-13 -2.10256e-11 9.63643e-13 -2.07582e-11 2.5917e-12 -2.03768e-11 4.17723e-12 -1.98898e-11 5.71661e-12 -1.93114e-11 7.19666e-12 -1.86551e-11 8.61656e-12 -1.7935e-11 9.97128e-12 -1.71604e-11 1.12633e-11 -1.63463e-11 1.24903e-11 -1.54951e-11 1.36549e-11 -1.4618e-11 1.47523e-11 -1.37138e-11 1.57837e-11 -1.27781e-11 1.67557e-11 -1.1815e-11 1.76626e-11 -1.08055e-11 1.85036e-11 -9.73804e-12 1.92734e-11 -8.59579e-12 1.99694e-11 -7.35848e-12 2.05782e-11 -6.00227e-12 2.10882e-11 -4.50429e-12 2.14893e-11 -2.84907e-12 2.17613e-11 -1.00751e-12 2.18859e-11 1.03084e-12 2.18428e-11 3.28321e-12 2.16067e-11 5.76144e-12 2.11553e-11 8.46781e-12 2.04643e-11 1.13992e-11 1.95077e-11 1.45471e-11 1.82614e-11 1.7895e-11 1.67012e-11 2.14167e-11 1.48057e-11 2.50748e-11 1.25543e-11 2.88219e-11 9.93145e-12 3.25951e-11 6.92544e-12 3.6321e-11 3.53435e-12 3.98974e-11 -2.19903e-13 4.31912e-11 -4.37907e-12 4.59363e-11 -8.75769e-12 4.72828e-11 -1.28636e-11 4.33837e-11 2.65437e-11 -1.52847e-11 -3.92247e-13 5.5046e-12 -9.85721e-13 8.33943e-12 -1.65294e-12 9.38712e-12 -2.34268e-12 9.69997e-12 -3.0379e-12 9.7563e-12 -3.73555e-12 9.75782e-12 -4.43418e-12 9.74188e-12 -5.133e-12 9.71702e-12 -5.83085e-12 9.68096e-12 -6.52616e-12 9.63306e-12 -7.21694e-12 9.57127e-12 -7.90151e-12 9.49617e-12 -8.57799e-12 9.40739e-12 -9.24486e-12 9.31049e-12 -9.90047e-12 9.20737e-12 -1.05448e-11 9.1045e-12 -1.11779e-11 9.0074e-12 -1.18014e-11 8.92164e-12 -1.2418e-11 8.85513e-12 -1.30307e-11 8.81077e-12 -1.3644e-11 8.79141e-12 -1.42627e-11 8.79749e-12 -1.48913e-11 8.82505e-12 -1.55343e-11 8.86669e-12 -1.6195e-11 8.91208e-12 -1.68749e-11 8.9473e-12 -1.75737e-11 8.95574e-12 -1.82887e-11 8.91775e-12 -1.90149e-11 8.81419e-12 -1.97454e-11 8.62535e-12 -2.04718e-11 8.33495e-12 -2.11829e-11 7.92538e-12 -2.18667e-11 7.38476e-12 -2.25096e-11 6.70366e-12 -2.30975e-11 5.87533e-12 -2.36161e-11 4.90069e-12 -2.40513e-11 3.78105e-12 -2.43899e-11 2.52501e-12 -2.46185e-11 1.14396e-12 -2.47262e-11 -3.46396e-13 -2.47048e-11 -1.92587e-12 -2.45472e-11 -3.57444e-12 -2.42497e-11 -5.26891e-12 -2.38101e-11 -6.9853e-12 -2.32278e-11 -8.69935e-12 -2.25057e-11 -1.03872e-11 -2.1648e-11 -1.20269e-11 -2.06606e-11 -1.3599e-11 -1.95517e-11 -1.50855e-11 -1.8331e-11 -1.64698e-11 -1.7008e-11 -1.77395e-11 -1.55932e-11 -1.8885e-11 -1.40973e-11 -1.98974e-11 -1.25318e-11 -2.07702e-11 -1.0909e-11 -2.14986e-11 -9.24079e-12 -2.20793e-11 -7.53842e-12 -2.251e-11 -5.81438e-12 -2.27894e-11 -4.08131e-12 -2.29183e-11 -2.35111e-12 -2.29005e-11 -6.34882e-13 -2.27421e-11 1.05784e-12 -2.24512e-11 2.71067e-12 -2.20299e-11 4.32168e-12 -2.15013e-11 5.87482e-12 -2.08649e-11 7.37228e-12 -2.0153e-11 8.80677e-12 -1.937e-11 1.01736e-11 -1.85277e-11 1.14728e-11 -1.7646e-11 1.27056e-11 -1.67283e-11 1.38733e-11 -1.5786e-11 1.49776e-11 -1.48183e-11 1.60196e-11 -1.38205e-11 1.70007e-11 -1.27964e-11 1.79223e-11 -1.17273e-11 1.87823e-11 -1.05983e-11 1.95773e-11 -9.39101e-12 2.03005e-11 -8.08187e-12 2.09434e-11 -6.64534e-12 2.14951e-11 -5.05608e-12 2.1939e-11 -3.29301e-12 2.22611e-11 -1.3296e-12 2.24388e-11 8.53047e-13 2.24506e-11 3.27129e-12 2.22711e-11 5.94079e-12 2.18757e-11 8.86309e-12 2.12376e-11 1.20371e-11 2.03301e-11 1.54544e-11 1.91268e-11 1.9098e-11 1.76007e-11 2.29426e-11 1.5727e-11 2.69482e-11 1.34824e-11 3.10662e-11 1.08465e-11 3.52306e-11 7.80334e-12 3.93638e-11 4.34427e-12 4.33561e-11 4.68652e-13 4.70664e-11 -3.80936e-12 5.0214e-11 -8.35977e-12 5.1833e-11 -1.26429e-11 4.76666e-11 2.90827e-11 -1.51822e-11 -3.90694e-13 5.89532e-12 -9.83643e-13 8.93245e-12 -1.65154e-12 1.00551e-11 -2.34287e-12 1.03913e-11 -3.03998e-12 1.04534e-11 -3.73975e-12 1.04576e-11 -4.44082e-12 1.04429e-11 -5.14235e-12 1.04185e-11 -5.84325e-12 1.03818e-11 -6.54184e-12 1.03316e-11 -7.23604e-12 1.02654e-11 -7.92374e-12 1.01837e-11 -8.60267e-12 1.00862e-11 -9.27093e-12 9.9786e-12 -9.92652e-12 9.86282e-12 -1.05693e-11 9.74714e-12 -1.11991e-11 9.63713e-12 -1.18176e-11 9.54006e-12 -1.2428e-11 9.46548e-12 -1.3034e-11 9.41682e-12 -1.36406e-11 9.3981e-12 -1.42539e-11 9.41101e-12 -1.48793e-11 9.45064e-12 -1.55215e-11 9.50918e-12 -1.61851e-11 9.57609e-12 -1.68718e-11 9.63436e-12 -1.75817e-11 9.66612e-12 -1.83126e-11 9.64908e-12 -1.90598e-11 9.56188e-12 -1.9816e-11 9.382e-12 -2.05721e-11 9.09155e-12 -2.13165e-11 8.67019e-12 -2.20362e-11 8.10488e-12 -2.27161e-11 7.38384e-12 -2.33409e-11 6.50035e-12 -2.38959e-11 5.45579e-12 -2.4365e-11 4.25031e-12 -2.47343e-11 2.89424e-12 -2.49899e-11 1.39954e-12 -2.51198e-11 -2.1662e-13 -2.51153e-11 -1.93045e-12 -2.49693e-11 -3.72064e-12 -2.46771e-11 -5.56127e-12 -2.42368e-11 -7.42582e-12 -2.36479e-11 -9.28836e-12 -2.29137e-11 -1.11216e-11 -2.2039e-11 -1.29017e-11 -2.10301e-11 -1.4608e-11 -1.98959e-11 -1.62198e-11 -1.86463e-11 -1.77194e-11 -1.7292e-11 -1.90939e-11 -1.5844e-11 -2.03331e-11 -1.43131e-11 -2.14283e-11 -1.27113e-11 -2.2372e-11 -1.10513e-11 -2.31586e-11 -9.3455e-12 -2.37852e-11 -7.6057e-12 -2.42499e-11 -5.84451e-12 -2.45508e-11 -4.07492e-12 -2.4688e-11 -2.3095e-12 -2.46661e-11 -5.6037e-13 -2.44915e-11 1.15836e-12 -2.41703e-11 2.84555e-12 -2.37175e-11 4.473e-12 -2.31292e-11 6.05456e-12 -2.2447e-11 7.56807e-12 -2.16671e-11 9.0118e-12 -2.08143e-11 1.03908e-11 -1.99072e-11 1.16989e-11 -1.89547e-11 1.29372e-11 -1.7967e-11 1.41104e-11 -1.69596e-11 1.52199e-11 -1.59282e-11 1.62704e-11 -1.48714e-11 1.72627e-11 -1.37891e-11 1.81995e-11 -1.26645e-11 1.90797e-11 -1.14789e-11 1.99001e-11 -1.02118e-11 2.06542e-11 -8.83627e-12 2.13355e-11 -7.32687e-12 2.19308e-11 -5.65158e-12 2.24249e-11 -3.78732e-12 2.28e-11 -1.7049e-12 2.30377e-11 6.15159e-13 2.31103e-11 3.19851e-12 2.29933e-11 6.05766e-12 2.26603e-11 9.196e-12 2.20823e-11 1.26149e-11 2.1231e-11 1.63055e-11 2.00763e-11 2.02525e-11 1.85895e-11 2.44291e-11 1.67424e-11 2.87949e-11 1.45081e-11 3.33001e-11 1.18624e-11 3.78759e-11 8.7844e-12 4.24414e-11 5.25897e-12 4.68812e-11 1.27878e-12 5.10463e-11 -3.13606e-12 5.46285e-11 -7.85314e-12 5.65497e-11 -1.23074e-11 5.21205e-11 3.17243e-11 -1.49493e-11 -3.88929e-13 6.2843e-12 -9.81054e-13 9.52467e-12 -1.64972e-12 1.07238e-11 -2.34252e-12 1.10842e-11 -3.04156e-12 1.11525e-11 -3.74351e-12 1.11595e-11 -4.4471e-12 1.11465e-11 -5.15155e-12 1.11229e-11 -5.85581e-12 1.1086e-11 -6.55808e-12 1.10337e-11 -7.25614e-12 1.09633e-11 -7.9474e-12 1.08748e-11 -8.62933e-12 1.07679e-11 -9.29927e-12 1.06484e-11 -9.95488e-12 1.05182e-11 -1.05957e-11 1.03878e-11 -1.12218e-11 1.02631e-11 -1.18345e-11 1.01527e-11 -1.24374e-11 1.00684e-11 -1.30358e-11 1.00152e-11 -1.36348e-11 9.99729e-12 -1.42411e-11 1.00175e-11 -1.48621e-11 1.0072e-11 -1.55029e-11 1.01504e-11 -1.61687e-11 1.02422e-11 -1.68623e-11 1.03284e-11 -1.7584e-11 1.03883e-11 -1.83324e-11 1.0398e-11 -1.91024e-11 1.03324e-11 -1.98871e-11 1.01672e-11 -2.06767e-11 9.88161e-12 -2.14579e-11 9.45171e-12 -2.22169e-11 8.86424e-12 -2.29375e-11 8.10458e-12 -2.36031e-11 7.16612e-12 -2.41975e-11 6.05024e-12 -2.47037e-11 4.75655e-12 -2.51066e-11 3.29706e-12 -2.53915e-11 1.68432e-12 -2.55465e-11 -6.17962e-14 -2.55611e-11 -1.91605e-12 -2.54274e-11 -3.85462e-12 -2.51407e-11 -5.84811e-12 -2.46991e-11 -7.86759e-12 -2.41029e-11 -9.88471e-12 -2.33552e-11 -1.18695e-11 -2.24611e-11 -1.37959e-11 -2.14284e-11 -1.56408e-11 -2.02667e-11 -1.73817e-11 -1.89859e-11 -1.90002e-11 -1.75973e-11 -2.04826e-11 -1.61127e-11 -2.18177e-11 -1.4544e-11 -2.2997e-11 -1.29033e-11 -2.40127e-11 -1.12032e-11 -2.48587e-11 -9.45647e-12 -2.5532e-11 -7.67584e-12 -2.60307e-11 -5.87434e-12 -2.63524e-11 -4.06499e-12 -2.64976e-11 -2.26087e-12 -2.64705e-11 -4.75043e-13 -2.62776e-11 1.28251e-12 -2.59282e-11 2.98722e-12 -2.54226e-11 4.65423e-12 -2.47966e-11 6.2504e-12 -2.40437e-11 7.78398e-12 -2.32012e-11 9.2455e-12 -2.22764e-11 1.0632e-11 -2.12943e-11 1.19442e-11 -2.02674e-11 1.31907e-11 -1.92141e-11 1.43688e-11 -1.81383e-11 1.54835e-11 -1.70433e-11 1.65418e-11 -1.59303e-11 1.75443e-11 -1.47922e-11 1.84953e-11 -1.36161e-11 1.93936e-11 -1.23777e-11 2.02403e-11 -1.1059e-11 2.103e-11 -9.62643e-12 2.17527e-11 -8.05005e-12 2.23961e-11 -6.2955e-12 2.29449e-11 -4.33655e-12 2.3382e-11 -2.14234e-12 2.3682e-11 3.14814e-13 2.38231e-11 3.05714e-12 2.37764e-11 6.10414e-12 2.35127e-11 9.45955e-12 2.30022e-11 1.31252e-11 2.22135e-11 1.7094e-11 2.11142e-11 2.13515e-11 1.96729e-11 2.58701e-11 1.78578e-11 3.06096e-11 1.56392e-11 3.55184e-11 1.2988e-11 4.05267e-11 9.87895e-12 4.55501e-11 6.29138e-12 5.04685e-11 2.2138e-12 5.51236e-11 -2.34084e-12 5.91829e-11 -7.22037e-12 6.14289e-11 -1.18502e-11 5.67499e-11 3.44594e-11 -1.45857e-11 -3.86745e-13 6.6711e-12 -9.77908e-13 1.01159e-11 -1.64736e-12 1.13933e-11 -2.34151e-12 1.17784e-11 -3.04249e-12 1.18535e-11 -3.74667e-12 1.18637e-11 -4.45288e-12 1.18527e-11 -5.1604e-12 1.18304e-11 -5.8683e-12 1.17938e-11 -6.57468e-12 1.174e-11 -7.27732e-12 1.16658e-11 -7.97276e-12 1.15701e-11 -8.65807e-12 1.14531e-11 -9.33025e-12 1.13204e-11 -9.98636e-12 1.11742e-11 -1.06251e-11 1.10265e-11 -1.12468e-11 1.08847e-11 -1.18534e-11 1.07593e-11 -1.24481e-11 1.06631e-11 -1.30369e-11 1.06041e-11 -1.36271e-11 1.05877e-11 -1.42254e-11 1.0616e-11 -1.48402e-11 1.0687e-11 -1.54787e-11 1.07892e-11 -1.6146e-11 1.09099e-11 -1.68462e-11 1.1029e-11 -1.75805e-11 1.1123e-11 -1.83477e-11 1.11656e-11 -1.91428e-11 1.11279e-11 -1.99587e-11 1.09834e-11 -2.07842e-11 1.07075e-11 -2.16056e-11 1.02734e-11 -2.24082e-11 9.66701e-12 -2.31734e-11 8.86998e-12 -2.38845e-11 7.87723e-12 -2.45224e-11 6.68818e-12 -2.507e-11 5.3041e-12 -2.55106e-11 3.73754e-12 -2.58279e-11 2.00151e-12 -2.60097e-11 1.19854e-13 -2.60449e-11 -1.88106e-12 -2.59247e-11 -3.975e-12 -2.56442e-11 -6.12881e-12 -2.52009e-11 -8.31098e-12 -2.45961e-11 -1.04896e-11 -2.38337e-11 -1.2632e-11 -2.29189e-11 -1.47108e-11 -2.18601e-11 -1.66998e-11 -2.06678e-11 -1.8574e-11 -1.93531e-11 -2.0315e-11 -1.79275e-11 -2.19083e-11 -1.64034e-11 -2.33419e-11 -1.47935e-11 -2.4607e-11 -1.31106e-11 -2.56958e-11 -1.13674e-11 -2.66021e-11 -9.57667e-12 -2.73229e-11 -7.75189e-12 -2.78557e-11 -5.90663e-12 -2.8198e-11 -4.05428e-12 -2.83503e-11 -2.20853e-12 -2.83166e-11 -3.83741e-13 -2.81028e-11 1.4016e-12 -2.77139e-11 3.15468e-12 -2.71761e-11 4.83641e-12 -2.64788e-11 6.46506e-12 -2.56728e-11 8.01479e-12 -2.47514e-11 9.4912e-12 -2.37533e-11 1.08903e-11 -2.26939e-11 1.22129e-11 -2.15905e-11 1.34609e-11 -2.04627e-11 1.46419e-11 -1.93199e-11 1.57621e-11 -1.81642e-11 1.68263e-11 -1.69953e-11 1.78386e-11 -1.58052e-11 1.88024e-11 -1.45806e-11 1.97248e-11 -1.33008e-11 2.0599e-11 -1.1934e-11 2.14226e-11 -1.04507e-11 2.21878e-11 -8.81604e-12 2.28831e-11 -6.99147e-12 2.34917e-11 -4.94577e-12 2.39933e-11 -2.64459e-12 2.43646e-11 -5.70031e-14 2.45792e-11 2.84218e-12 2.461e-11 6.07296e-12 2.44237e-11 9.64556e-12 2.39882e-11 1.35604e-11 2.32699e-11 1.78121e-11 2.22337e-11 2.23873e-11 2.08456e-11 2.7258e-11 1.90698e-11 3.23851e-11 1.68728e-11 3.77151e-11 1.42218e-11 4.31776e-11 1.10863e-11 4.86853e-11 7.44046e-12 5.41141e-11 3.26714e-12 5.92966e-11 -1.4404e-12 6.389e-11 -6.49447e-12 6.64825e-11 -1.13326e-11 6.15876e-11 3.73157e-11 -1.41895e-11 -3.83763e-13 7.05493e-12 -9.73897e-13 1.07062e-11 -1.64422e-12 1.20637e-11 -2.33977e-12 1.2474e-11 -3.04271e-12 1.25565e-11 -3.74906e-12 1.257e-11 -4.4579e-12 1.25615e-11 -5.16871e-12 1.25412e-11 -5.88069e-12 1.25058e-11 -6.59166e-12 1.24509e-11 -7.29954e-12 1.23736e-11 -8.00015e-12 1.22706e-11 -8.68972e-12 1.21425e-11 -9.36449e-12 1.1995e-11 -1.00214e-11 1.18311e-11 -1.06585e-11 1.16635e-11 -1.12753e-11 1.15014e-11 -1.18744e-11 1.13584e-11 -1.24602e-11 1.1249e-11 -1.30383e-11 1.11824e-11 -1.36174e-11 1.11669e-11 -1.42063e-11 1.12052e-11 -1.48136e-11 1.12944e-11 -1.54479e-11 1.14238e-11 -1.6116e-11 1.15782e-11 -1.68226e-11 1.17359e-11 -1.75697e-11 1.18705e-11 -1.83572e-11 1.19534e-11 -1.91787e-11 1.19497e-11 -2.00285e-11 1.18335e-11 -2.08924e-11 1.15717e-11 -2.17586e-11 1.11397e-11 -2.26084e-11 1.05169e-11 -2.34237e-11 9.68533e-12 -2.41856e-11 8.63919e-12 -2.48724e-11 7.37494e-12 -2.54661e-11 5.89784e-12 -2.59482e-11 4.21957e-12 -2.63024e-11 2.35569e-12 -2.65145e-11 3.3181e-13 -2.65718e-11 -1.82386e-12 -2.64665e-11 -4.08033e-12 -2.61929e-11 -6.40248e-12 -2.57482e-11 -8.75572e-12 -2.51342e-11 -1.11037e-11 -2.43553e-11 -1.3411e-11 -2.34181e-11 -1.56481e-11 -2.23315e-11 -1.77865e-11 -2.11061e-11 -1.97996e-11 -1.97541e-11 -2.16672e-11 -1.82881e-11 -2.33745e-11 -1.6721e-11 -2.49093e-11 -1.50663e-11 -2.62619e-11 -1.33375e-11 -2.74249e-11 -1.15477e-11 -2.83923e-11 -9.70997e-12 -2.9161e-11 -7.83803e-12 -2.9728e-11 -5.94575e-12 -3.00907e-11 -4.04712e-12 -3.02493e-11 -2.15648e-12 -3.02077e-11 -2.88428e-13 -2.99713e-11 1.54434e-12 -2.95471e-11 3.31779e-12 -2.895e-11 5.04419e-12 -2.82056e-11 6.68732e-12 -2.73164e-11 8.26552e-12 -2.63301e-11 9.75561e-12 -2.52438e-11 1.11666e-11 -2.41054e-11 1.24965e-11 -2.2921e-11 1.37492e-11 -2.1716e-11 1.49322e-11 -2.05035e-11 1.60539e-11 -1.92867e-11 1.71226e-11 -1.80648e-11 1.81449e-11 -1.68283e-11 1.91253e-11 -1.55618e-11 2.00664e-11 -1.42427e-11 2.09688e-11 -1.28372e-11 2.18302e-11 -1.13129e-11 2.26405e-11 -9.62726e-12 2.33905e-11 -7.7424e-12 2.40618e-11 -5.61788e-12 2.46332e-11 -3.21671e-12 2.5081e-11 -5.05435e-13 2.53772e-11 2.54537e-12 2.54917e-11 5.95805e-12 2.53914e-11 9.74537e-12 2.50399e-11 1.39116e-11 2.44007e-11 1.84508e-11 2.34371e-11 2.33507e-11 2.21094e-11 2.85853e-11 2.03804e-11 3.41139e-11 1.82113e-11 3.98839e-11 1.55669e-11 4.58218e-11 1.24103e-11 5.18416e-11 8.7113e-12 5.78127e-11 4.44252e-12 6.3565e-11 -4.1548e-13 6.87475e-11 -5.6668e-12 7.17333e-11 -1.07371e-11 6.66574e-11 4.03301e-11 -1.37521e-11 -3.79616e-13 7.43461e-12 -9.68518e-13 1.12951e-11 -1.64002e-12 1.27353e-11 -2.33725e-12 1.31712e-11 -3.04225e-12 1.32615e-11 -3.75071e-12 1.32785e-11 -4.46219e-12 1.3273e-11 -5.17646e-12 1.32555e-11 -5.89311e-12 1.32225e-11 -6.60952e-12 1.31674e-11 -7.32339e-12 1.30875e-11 -8.03e-12 1.29772e-11 -8.72497e-12 1.28375e-11 -9.40329e-12 1.26733e-11 -1.00613e-11 1.24891e-11 -1.06967e-11 1.2299e-11 -1.13085e-11 1.21133e-11 -1.18992e-11 1.19492e-11 -1.24741e-11 1.1824e-11 -1.30401e-11 1.17486e-11 -1.36063e-11 1.17334e-11 -1.41834e-11 1.17825e-11 -1.4781e-11 1.18922e-11 -1.54095e-11 1.20526e-11 -1.6077e-11 1.22459e-11 -1.67895e-11 1.24485e-11 -1.75503e-11 1.26314e-11 -1.83587e-11 1.2762e-11 -1.92097e-11 1.28007e-11 -2.00955e-11 1.27193e-11 -2.1002e-11 1.24782e-11 -2.19162e-11 1.20538e-11 -2.28173e-11 1.14181e-11 -2.36867e-11 1.05547e-11 -2.45028e-11 9.4553e-12 -2.5243e-11 8.11522e-12 -2.58868e-11 6.54168e-12 -2.64144e-11 4.74719e-12 -2.68086e-11 2.7499e-12 -2.70535e-11 5.76827e-13 -2.71358e-11 -1.74157e-12 -2.70466e-11 -4.1694e-12 -2.67802e-11 -6.66882e-12 -2.63341e-11 -9.20181e-12 -2.57098e-11 -1.17279e-11 -2.49124e-11 -1.42084e-11 -2.395e-11 -1.66106e-11 -2.28326e-11 -1.89041e-11 -2.15713e-11 -2.10611e-11 -2.01792e-11 -2.30596e-11 -1.867e-11 -2.4884e-11 -1.70575e-11 -2.65221e-11 -1.53554e-11 -2.79644e-11 -1.35777e-11 -2.92031e-11 -1.17378e-11 -3.02327e-11 -9.84954e-12 -3.10498e-11 -7.9268e-12 -3.16513e-11 -5.98374e-12 -3.20343e-11 -4.03508e-12 -3.21985e-11 -2.09609e-12 -3.21472e-11 -1.82042e-13 -3.18858e-11 1.69002e-12 -3.14197e-11 3.5126e-12 -3.07731e-11 5.25754e-12 -2.9951e-11 6.94042e-12 -2.89997e-11 8.52953e-12 -2.79196e-11 1.00416e-11 -2.67563e-11 1.1458e-11 -2.55222e-11 1.27965e-11 -2.42601e-11 1.40525e-11 -2.29726e-11 1.52377e-11 -2.16894e-11 1.63596e-11 -2.04093e-11 1.74304e-11 -1.91365e-11 1.84609e-11 -1.78597e-11 1.94568e-11 -1.65585e-11 2.04202e-11 -1.5207e-11 2.13539e-11 -1.37719e-11 2.22535e-11 -1.22134e-11 2.31149e-11 -1.04897e-11 2.39237e-11 -8.55214e-12 2.46625e-11 -6.35752e-12 2.53105e-11 -3.86548e-12 2.58411e-11 -1.03682e-12 2.62266e-11 2.15922e-12 2.64333e-11 5.75071e-12 2.64253e-11 9.75282e-12 2.61668e-11 1.41696e-11 2.56167e-11 1.90005e-11 2.47348e-11 2.42322e-11 2.34784e-11 2.98413e-11 2.18065e-11 3.57856e-11 1.96779e-11 4.20122e-11 1.70519e-11 4.84475e-11 1.38897e-11 5.50035e-11 1.01502e-11 6.15518e-11 5.7961e-12 6.79185e-11 8.15621e-13 7.37274e-11 -4.65387e-12 7.72022e-11 -9.96062e-12 7.19636e-11 4.34857e-11 -1.31168e-11 -3.7401e-13 7.80865e-12 -9.61267e-13 1.18824e-11 -1.6345e-12 1.34085e-11 -2.33392e-12 1.38706e-11 -3.0411e-12 1.39687e-11 -3.75169e-12 1.39892e-11 -4.46604e-12 1.39874e-11 -5.18419e-12 1.39737e-11 -5.90606e-12 1.39444e-11 -6.62889e-12 1.38903e-11 -7.34999e-12 1.38087e-11 -8.06371e-12 1.3691e-11 -8.76515e-12 1.3539e-11 -9.44827e-12 1.33566e-11 -1.01083e-11 1.31493e-11 -1.0742e-11 1.29328e-11 -1.13482e-11 1.27196e-11 -1.19297e-11 1.2531e-11 -1.24921e-11 1.23867e-11 -1.30435e-11 1.23001e-11 -1.35941e-11 1.22842e-11 -1.41561e-11 1.23447e-11 -1.47413e-11 1.24776e-11 -1.53615e-11 1.26728e-11 -1.60274e-11 1.29118e-11 -1.67448e-11 1.31658e-11 -1.75204e-11 1.3407e-11 -1.83507e-11 1.35922e-11 -1.92339e-11 1.36839e-11 -2.01584e-11 1.36437e-11 -2.11117e-11 1.34314e-11 -2.20774e-11 1.30194e-11 -2.30351e-11 1.23758e-11 -2.39637e-11 1.14832e-11 -2.48386e-11 1.03302e-11 -2.56371e-11 8.91379e-12 -2.63356e-11 7.24031e-12 -2.69128e-11 5.32444e-12 -2.73496e-11 3.18686e-12 -2.76293e-11 8.56708e-13 -2.77381e-11 -1.63262e-12 -2.76657e-11 -4.24157e-12 -2.74059e-11 -6.92844e-12 -2.69567e-11 -9.65088e-12 -2.63203e-11 -1.23642e-11 -2.5502e-11 -1.50267e-11 -2.45107e-11 -1.76019e-11 -2.33582e-11 -2.00568e-11 -2.20578e-11 -2.23618e-11 -2.06235e-11 -2.44942e-11 -1.90694e-11 -2.64385e-11 -1.74092e-11 -2.81828e-11 -1.56571e-11 -2.97171e-11 -1.38274e-11 -3.10334e-11 -1.19342e-11 -3.21265e-11 -9.99136e-12 -3.29932e-11 -8.01341e-12 -3.36298e-11 -6.01548e-12 -3.40328e-11 -4.01315e-12 -3.42014e-11 -2.02254e-12 -3.41384e-11 -5.96433e-14 -3.38493e-11 1.85914e-12 -3.3339e-11 3.71087e-12 -3.26253e-11 5.5043e-12 -3.17449e-11 7.20695e-12 -3.07027e-11 8.82356e-12 -2.95366e-11 1.03446e-11 -2.82778e-11 1.17732e-11 -2.69512e-11 1.31114e-11 -2.55988e-11 1.43678e-11 -2.42296e-11 1.55519e-11 -2.28742e-11 1.66729e-11 -2.15311e-11 1.77473e-11 -2.02117e-11 1.8783e-11 -1.88962e-11 1.97891e-11 -1.75655e-11 2.07763e-11 -1.61951e-11 2.17433e-11 -1.47398e-11 2.26881e-11 -1.31591e-11 2.36031e-11 -1.14056e-11 2.44778e-11 -9.42762e-12 2.52935e-11 -7.17407e-12 2.60264e-11 -4.59919e-12 2.66497e-11 -1.66084e-12 2.7134e-11 1.67417e-12 2.74424e-11 5.4416e-12 2.75382e-11 9.65641e-12 2.73819e-11 1.43252e-11 2.6932e-11 1.94498e-11 2.61449e-11 2.50188e-11 2.49758e-11 3.101e-11 2.33787e-11 3.73822e-11 2.13082e-11 4.40822e-11 1.87167e-11 5.10385e-11 1.55573e-11 5.81622e-11 1.17803e-11 6.53281e-11 7.34606e-12 7.2352e-11 2.23294e-12 7.88398e-11 -3.42768e-12 8.28621e-11 -8.96452e-12 7.74998e-11 4.67655e-11 -1.22449e-11 -3.66629e-13 8.17527e-12 -9.5175e-13 1.24675e-11 -1.62751e-12 1.40842e-11 -2.32963e-12 1.45727e-11 -3.03913e-12 1.46782e-11 -3.75186e-12 1.4702e-11 -4.4691e-12 1.47048e-11 -5.19143e-12 1.46962e-11 -5.91915e-12 1.46723e-11 -6.6495e-12 1.46208e-11 -7.37929e-12 1.45386e-11 -8.10188e-12 1.44138e-11 -8.81146e-12 1.42488e-11 -9.50055e-12 1.40459e-11 -1.01634e-11 1.38124e-11 -1.07957e-11 1.35653e-11 -1.13959e-11 1.332e-11 -1.19668e-11 1.31021e-11 -1.25144e-11 1.29345e-11 -1.30482e-11 1.28341e-11 -1.35799e-11 1.2816e-11 -1.41233e-11 1.28881e-11 -1.46934e-11 1.30476e-11 -1.53027e-11 1.32822e-11 -1.59648e-11 1.35738e-11 -1.66871e-11 1.3888e-11 -1.74766e-11 1.41964e-11 -1.83309e-11 1.44462e-11 -1.92477e-11 1.46005e-11 -2.02142e-11 1.461e-11 -2.12187e-11 1.44357e-11 -2.22409e-11 1.40414e-11 -2.32602e-11 1.33949e-11 -2.42531e-11 1.24759e-11 -2.51929e-11 1.127e-11 -2.60552e-11 9.77608e-12 -2.68142e-11 7.99941e-12 -2.74462e-11 5.95661e-12 -2.7931e-11 3.67187e-12 -2.82505e-11 1.17637e-12 -2.83893e-11 -1.49355e-12 -2.83367e-11 -4.29396e-12 -2.8086e-11 -7.17897e-12 -2.7635e-11 -1.01017e-11 -2.69866e-11 -1.30126e-11 -2.61471e-11 -1.58662e-11 -2.51263e-11 -1.86228e-11 -2.3937e-11 -2.12462e-11 -2.25941e-11 -2.37049e-11 -2.11126e-11 -2.5976e-11 -1.95078e-11 -2.80436e-11 -1.77949e-11 -2.98961e-11 -1.59889e-11 -3.15237e-11 -1.41042e-11 -3.29187e-11 -1.2155e-11 -3.40763e-11 -1.01551e-11 -3.49937e-11 -8.11939e-12 -3.56662e-11 -6.06327e-12 -3.60895e-11 -4.00308e-12 -3.62623e-11 -1.95558e-12 -3.61865e-11 6.2283e-14 -3.58678e-11 2.02739e-12 -3.53047e-11 3.93729e-12 -3.45358e-11 5.76092e-12 -3.3569e-11 7.49793e-12 -3.24402e-11 9.13816e-12 -3.11772e-11 1.06704e-11 -2.98105e-11 1.21115e-11 -2.83927e-11 1.34496e-11 -2.69375e-11 1.47064e-11 -2.5487e-11 1.58865e-11 -2.40549e-11 1.70044e-11 -2.26497e-11 1.80767e-11 -2.12847e-11 1.9116e-11 -1.99362e-11 2.01348e-11 -1.8585e-11 2.11411e-11 -1.72021e-11 2.21392e-11 -1.57385e-11 2.31298e-11 -1.41504e-11 2.4103e-11 -1.23794e-11 2.50475e-11 -1.03728e-11 2.59434e-11 -8.07069e-12 2.6769e-11 -5.42553e-12 2.74927e-11 -2.38519e-12 2.80831e-11 1.08299e-12 2.85033e-11 5.02064e-12 2.87141e-11 9.44481e-12 2.86716e-11 1.43671e-11 2.8332e-11 1.97888e-11 2.76498e-11 2.57005e-11 2.65761e-11 3.20831e-11 2.50618e-11 3.88959e-11 2.30556e-11 4.60877e-11 2.05064e-11 5.35871e-11 1.73594e-11 6.13085e-11 1.35566e-11 6.91301e-11 9.04829e-12 7.68596e-11 3.8022e-12 8.40852e-11 -2.04392e-12 8.87077e-11 -7.81951e-12 8.3275e-11 5.0174e-11 -1.12285e-11 -3.57354e-13 8.5326e-12 -9.39862e-13 1.30499e-11 -1.61913e-12 1.47634e-11 -2.32449e-12 1.52781e-11 -3.03628e-12 1.539e-11 -3.75095e-12 1.54167e-11 -4.47086e-12 1.54248e-11 -5.1974e-12 1.54229e-11 -5.93157e-12 1.54066e-11 -6.67069e-12 1.53601e-11 -7.41061e-12 1.52788e-11 -8.14376e-12 1.51472e-11 -8.86327e-12 1.49685e-11 -9.56004e-12 1.47429e-11 -1.02267e-11 1.44793e-11 -1.08576e-11 1.41964e-11 -1.14509e-11 1.39136e-11 -1.201e-11 1.36614e-11 -1.25404e-11 1.34651e-11 -1.30532e-11 1.3347e-11 -1.3563e-11 1.33258e-11 -1.40846e-11 1.34098e-11 -1.46347e-11 1.35977e-11 -1.52317e-11 1.38791e-11 -1.58864e-11 1.42283e-11 -1.66137e-11 1.46151e-11 -1.74153e-11 1.49978e-11 -1.82954e-11 1.5326e-11 -1.9247e-11 1.55518e-11 -2.02602e-11 1.56229e-11 -2.13202e-11 1.54953e-11 -2.2405e-11 1.5126e-11 -2.3492e-11 1.44817e-11 -2.45542e-11 1.3538e-11 -2.55652e-11 1.22809e-11 -2.64967e-11 1.07076e-11 -2.73222e-11 8.82498e-12 -2.80162e-11 6.65068e-12 -2.85553e-11 4.21111e-12 -2.89193e-11 1.54062e-12 -2.9092e-11 -1.32065e-12 -2.90616e-11 -4.32421e-12 -2.88209e-11 -7.41951e-12 -2.83684e-11 -1.0554e-11 -2.77067e-11 -1.36741e-11 -2.6843e-11 -1.67298e-11 -2.57891e-11 -1.96768e-11 -2.45593e-11 -2.2476e-11 -2.31695e-11 -2.50949e-11 -2.16361e-11 -2.75097e-11 -1.99762e-11 -2.97038e-11 -1.82067e-11 -3.16661e-11 -1.63434e-11 -3.33875e-11 -1.44002e-11 -3.48623e-11 -1.23912e-11 -3.60859e-11 -1.03305e-11 -3.70549e-11 -8.23314e-12 -3.77642e-11 -6.11485e-12 -3.82084e-11 -3.99244e-12 -3.83853e-11 -1.88403e-12 -3.82956e-11 1.91307e-13 -3.79438e-11 2.21835e-12 -3.73324e-11 4.16676e-12 -3.64847e-11 6.03965e-12 -3.54424e-11 7.81172e-12 -3.42127e-11 9.47049e-12 -3.28365e-11 1.10287e-11 -3.13692e-11 1.24733e-11 -2.98378e-11 1.38133e-11 -2.82781e-11 1.50634e-11 -2.67376e-11 1.62356e-11 -2.52277e-11 1.73467e-11 -2.37613e-11 1.84135e-11 -2.2352e-11 1.9453e-11 -2.09762e-11 2.04798e-11 -1.96123e-11 2.15046e-11 -1.82274e-11 2.25365e-11 -1.67709e-11 2.35727e-11 -1.51871e-11 2.46066e-11 -1.34138e-11 2.56253e-11 -1.13919e-11 2.66095e-11 -9.05534e-12 2.75328e-11 -6.34938e-12 2.83662e-11 -3.2193e-12 2.9072e-11 3.76432e-13 2.9615e-11 4.47695e-12 2.99499e-11 9.10914e-12 3.00312e-11 1.4285e-11 2.9813e-11 2.00063e-11 2.92444e-11 2.62684e-11 2.82763e-11 3.30506e-11 2.68525e-11 4.03189e-11 2.49192e-11 4.80202e-11 2.2419e-11 5.60865e-11 1.92918e-11 6.44348e-11 1.54719e-11 7.29492e-11 1.09008e-11 8.14301e-11 5.53411e-12 8.94514e-11 -4.8623e-13 9.47276e-11 -6.49801e-12 8.92864e-11 5.3736e-11 -1.00604e-11 -3.46657e-13 8.87922e-12 -9.26094e-13 1.36293e-11 -1.60981e-12 1.54472e-11 -2.31887e-12 1.59872e-11 -3.03265e-12 1.61039e-11 -3.74863e-12 1.61329e-11 -4.4708e-12 1.61472e-11 -5.20171e-12 1.6154e-11 -5.94282e-12 1.6148e-11 -6.69178e-12 1.61093e-11 -7.44352e-12 1.60308e-11 -8.18956e-12 1.58935e-11 -8.92115e-12 1.57004e-11 -9.62719e-12 1.54492e-11 -1.02987e-11 1.5151e-11 -1.09287e-11 1.48266e-11 -1.15145e-11 1.44996e-11 -1.20595e-11 1.42066e-11 -1.25708e-11 1.39764e-11 -1.30595e-11 1.38358e-11 -1.35422e-11 1.38087e-11 -1.40384e-11 1.39059e-11 -1.45651e-11 1.41244e-11 -1.51449e-11 1.44588e-11 -1.57912e-11 1.48744e-11 -1.65204e-11 1.53441e-11 -1.73353e-11 1.58124e-11 -1.82415e-11 1.6232e-11 -1.92313e-11 1.65413e-11 -2.02953e-11 1.66866e-11 -2.14154e-11 1.66152e-11 -2.25695e-11 1.62799e-11 -2.37313e-11 1.56432e-11 -2.48716e-11 1.46781e-11 -2.59612e-11 1.33704e-11 -2.6969e-11 1.17154e-11 -2.78668e-11 9.72272e-12 -2.86269e-11 7.41077e-12 -2.92237e-11 4.80793e-12 -2.96352e-11 1.95223e-12 -2.98438e-11 -1.11195e-12 -2.98365e-11 -4.33144e-12 -2.96058e-11 -7.65015e-12 -2.91499e-11 -1.10099e-11 -2.84723e-11 -1.43517e-11 -2.75813e-11 -1.76207e-11 -2.64905e-11 -2.07676e-11 -2.52159e-11 -2.37507e-11 -2.37751e-11 -2.65358e-11 -2.21862e-11 -2.90986e-11 -2.04681e-11 -3.14222e-11 -1.86388e-11 -3.34957e-11 -1.67141e-11 -3.53125e-11 -1.47085e-11 -3.68684e-11 -1.26356e-11 -3.81592e-11 -1.051e-11 -3.9181e-11 -8.34675e-12 -3.99279e-11 -6.16191e-12 -4.03938e-11 -3.97278e-12 -4.0575e-11 -1.7989e-12 -4.047e-11 3.38858e-13 -4.00821e-11 2.41563e-12 -3.94097e-11 4.4315e-12 -3.85011e-11 6.3462e-12 -3.73576e-11 8.14739e-12 -3.60144e-11 9.84157e-12 -3.45311e-11 1.14113e-11 -3.29394e-11 1.28607e-11 -3.12876e-11 1.42004e-11 -2.96183e-11 1.54415e-11 -2.79791e-11 1.66022e-11 -2.63888e-11 1.77019e-11 -2.48613e-11 1.87599e-11 -2.34105e-11 1.97958e-11 -2.20125e-11 2.08328e-11 -2.06496e-11 2.18788e-11 -1.92737e-11 2.29428e-11 -1.78352e-11 2.40261e-11 -1.62706e-11 2.51226e-11 -1.45105e-11 2.62187e-11 -1.24883e-11 2.72947e-11 -1.01316e-11 2.83239e-11 -7.37914e-12 2.92742e-11 -4.17016e-12 3.01057e-11 -4.55677e-13 3.07804e-11 3.80158e-12 3.12521e-11 8.63677e-12 3.14704e-11 1.4066e-11 3.13872e-11 2.00888e-11 3.0948e-11 2.67069e-11 3.00994e-11 3.38984e-11 2.87828e-11 4.16347e-11 2.69386e-11 4.98635e-11 2.45039e-11 5.85203e-11 2.14132e-11 6.75248e-11 1.75936e-11 7.67682e-11 1.29797e-11 8.60436e-11 7.51397e-12 9.49168e-11 1.31504e-12 1.00926e-10 -4.86925e-12 9.54704e-11 5.7423e-11 -8.5567e-12 -3.35541e-13 9.21473e-12 -9.11752e-13 1.42056e-11 -1.60044e-12 1.61359e-11 -2.31328e-12 1.67002e-11 -3.02851e-12 1.68193e-11 -3.74488e-12 1.68494e-11 -4.4685e-12 1.6871e-11 -5.20367e-12 1.68894e-11 -5.95228e-12 1.68968e-11 -6.71238e-12 1.68696e-11 -7.47789e-12 1.67965e-11 -8.23947e-12 1.66553e-11 -8.98584e-12 1.6447e-11 -9.70318e-12 1.61667e-11 -1.03808e-11 1.58288e-11 -1.10103e-11 1.54562e-11 -1.15886e-11 1.50781e-11 -1.21178e-11 1.47359e-11 -1.26059e-11 1.44646e-11 -1.30668e-11 1.42968e-11 -1.35188e-11 1.42608e-11 -1.39827e-11 1.43697e-11 -1.44838e-11 1.46254e-11 -1.50409e-11 1.50159e-11 -1.56775e-11 1.55109e-11 -1.64055e-11 1.60719e-11 -1.72351e-11 1.66418e-11 -1.81681e-11 1.71647e-11 -1.91995e-11 1.75724e-11 -2.03182e-11 1.7805e-11 -2.15042e-11 1.78009e-11 -2.27339e-11 1.75094e-11 -2.39782e-11 1.68872e-11 -2.52049e-11 1.59045e-11 -2.63817e-11 1.45469e-11 -2.74751e-11 1.28085e-11 -2.84525e-11 1.06999e-11 -2.9284e-11 8.24211e-12 -2.99423e-11 5.46612e-12 -3.04037e-11 2.41353e-12 -3.06494e-11 -8.66283e-13 -3.06652e-11 -4.31572e-12 -3.0443e-11 -7.87241e-12 -2.99813e-11 -1.14716e-11 -2.92847e-11 -1.50483e-11 -2.83631e-11 -1.85422e-11 -2.72313e-11 -2.18994e-11 -2.59075e-11 -2.50744e-11 -2.44115e-11 -2.80318e-11 -2.27637e-11 -3.07465e-11 -2.09838e-11 -3.32022e-11 -1.90902e-11 -3.53894e-11 -1.70998e-11 -3.73032e-11 -1.50274e-11 -3.8941e-11 -1.2887e-11 -4.02999e-11 -1.06931e-11 -4.13753e-11 -8.46019e-12 -4.21611e-11 -6.20444e-12 -4.26499e-11 -3.94398e-12 -4.28358e-11 -1.69985e-12 -4.27145e-11 5.05147e-13 -4.22875e-11 2.6561e-12 -4.15611e-11 4.71901e-12 -4.05645e-11 6.6739e-12 -3.93129e-11 8.5238e-12 -3.78647e-11 1.0241e-11 -3.62487e-11 1.18249e-11 -3.45237e-11 1.3275e-11 -3.2738e-11 1.46122e-11 -3.09558e-11 1.58417e-11 -2.9209e-11 1.69846e-11 -2.7532e-11 1.80691e-11 -2.5946e-11 1.91129e-11 -2.44545e-11 2.01489e-11 -2.30486e-11 2.11892e-11 -2.16901e-11 2.22542e-11 -2.03388e-11 2.33522e-11 -1.89333e-11 2.44852e-11 -1.74037e-11 2.56476e-11 -1.56731e-11 2.6826e-11 -1.36669e-11 2.80001e-11 -1.13061e-11 2.91404e-11 -8.51976e-12 3.02144e-11 -5.24461e-12 3.11823e-11 -1.42406e-12 3.19999e-11 2.98348e-12 3.26202e-11 8.01597e-12 3.29901e-11 1.36955e-11 3.30558e-11 2.00225e-11 3.27609e-11 2.70012e-11 3.20473e-11 3.46111e-11 3.08524e-11 4.28288e-11 2.9114e-11 5.16011e-11 2.67627e-11 6.0871e-11 2.3729e-11 7.0558e-11 1.99328e-11 8.05641e-11 1.53022e-11 9.06739e-11 9.76969e-12 1.00449e-10 3.45239e-12 1.07243e-10 -2.87545e-12 1.01798e-10 6.12224e-11 -6.67522e-12 -3.25071e-13 9.5398e-12 -8.98774e-13 1.47794e-11 -1.59263e-12 1.68299e-11 -2.30867e-12 1.74164e-11 -3.02423e-12 1.75351e-11 -3.7397e-12 1.75651e-11 -4.46353e-12 1.7595e-11 -5.20241e-12 1.76285e-11 -5.95901e-12 1.76536e-11 -6.73202e-12 1.76428e-11 -7.5138e-12 1.75784e-11 -8.29368e-12 1.74353e-11 -9.05759e-12 1.72111e-11 -9.78917e-12 1.68985e-11 -1.04752e-11 1.65149e-11 -1.11049e-11 1.6086e-11 -1.16747e-11 1.5648e-11 -1.21863e-11 1.52475e-11 -1.26481e-11 1.49265e-11 -1.30755e-11 1.47242e-11 -1.34925e-11 1.46778e-11 -1.3919e-11 1.47963e-11 -1.43876e-11 1.5094e-11 -1.49186e-11 1.55468e-11 -1.55398e-11 1.6132e-11 -1.62636e-11 1.67957e-11 -1.71046e-11 1.74827e-11 -1.80647e-11 1.81246e-11 -1.91401e-11 1.86478e-11 -2.03173e-11 1.89819e-11 -2.15752e-11 1.90587e-11 -2.28867e-11 1.88206e-11 -2.42199e-11 1.82202e-11 -2.55402e-11 1.72245e-11 -2.68112e-11 1.58177e-11 -2.79968e-11 1.39938e-11 -2.90617e-11 1.17645e-11 -2.9973e-11 9.15308e-12 -3.0701e-11 6.19385e-12 -3.12199e-11 2.93222e-12 -3.15088e-11 -5.77635e-13 -3.1552e-11 -4.27273e-12 -3.13411e-11 -8.08344e-12 -3.08745e-11 -1.19383e-11 -3.01575e-11 -1.57654e-11 -2.92018e-11 -1.94979e-11 -2.80244e-11 -2.30768e-11 -2.66459e-11 -2.64528e-11 -2.50892e-11 -2.95885e-11 -2.33769e-11 -3.24587e-11 -2.15304e-11 -3.50487e-11 -1.9569e-11 -3.73508e-11 -1.751e-11 -3.93623e-11 -1.53683e-11 -4.10828e-11 -1.31578e-11 -4.25105e-11 -1.0892e-11 -4.36412e-11 -8.58555e-12 -4.44678e-11 -6.25434e-12 -4.49813e-11 -3.91767e-12 -4.51727e-11 -1.59747e-12 -4.5035e-11 6.85742e-13 -4.45709e-11 2.89577e-12 -4.37713e-11 5.01762e-12 -4.26866e-11 7.03943e-12 -4.1335e-11 8.92383e-12 -3.97494e-11 1.0667e-11 -3.79923e-11 1.22606e-11 -3.61175e-11 1.37199e-11 -3.41976e-11 1.50454e-11 -3.22816e-11 1.62568e-11 -3.04205e-11 1.73771e-11 -2.86525e-11 1.84374e-11 -2.70065e-11 1.9463e-11 -2.54802e-11 2.04833e-11 -2.4069e-11 2.15233e-11 -2.27301e-11 2.26018e-11 -2.14174e-11 2.37315e-11 -2.0063e-11 2.49154e-11 -1.85877e-11 2.61479e-11 -1.69056e-11 2.74155e-11 -1.49346e-11 2.86968e-11 -1.25875e-11 2.99605e-11 -9.78373e-12 3.11725e-11 -6.45689e-12 3.22877e-11 -2.53953e-12 3.32609e-11 2.01004e-12 3.40416e-11 7.2349e-12 3.45743e-11 1.31625e-11 3.48021e-11 1.97943e-11 3.46641e-11 2.71386e-11 3.40989e-11 3.51758e-11 3.30413e-11 4.38859e-11 3.14232e-11 5.32187e-11 2.91732e-11 6.31207e-11 2.62121e-11 7.35189e-11 2.24573e-11 8.43187e-11 1.78292e-11 9.53019e-11 1.22477e-11 1.0603e-10 5.8293e-12 1.13661e-10 -6.28074e-13 1.08255e-10 6.51427e-11 -4.54881e-12 -3.16437e-13 9.85629e-12 -8.89531e-13 1.53527e-11 -1.5886e-12 1.75292e-11 -2.30647e-12 1.81345e-11 -3.02023e-12 1.82491e-11 -3.73266e-12 1.82777e-11 -4.45515e-12 1.83177e-11 -5.19709e-12 1.83705e-11 -5.9621e-12 1.84187e-11 -6.74962e-12 1.84304e-11 -7.55062e-12 1.83795e-11 -8.35252e-12 1.82373e-11 -9.13753e-12 1.79961e-11 -9.88654e-12 1.76475e-11 -1.05835e-11 1.7212e-11 -1.12152e-11 1.67177e-11 -1.17758e-11 1.62087e-11 -1.22671e-11 1.57389e-11 -1.2699e-11 1.53585e-11 -1.30892e-11 1.51145e-11 -1.34612e-11 1.50498e-11 -1.38462e-11 1.51814e-11 -1.42725e-11 1.55203e-11 -1.4772e-11 1.60464e-11 -1.53695e-11 1.67295e-11 -1.60867e-11 1.75129e-11 -1.69378e-11 1.83338e-11 -1.79278e-11 1.91145e-11 -1.90512e-11 1.97711e-11 -2.02932e-11 2.02237e-11 -2.16301e-11 2.03954e-11 -2.30311e-11 2.02214e-11 -2.44622e-11 1.9651e-11 -2.58848e-11 1.86467e-11 -2.72586e-11 1.71911e-11 -2.85448e-11 1.52797e-11 -2.97049e-11 1.29241e-11 -3.07036e-11 1.01513e-11 -3.15084e-11 6.99832e-12 -3.20906e-11 3.51405e-12 -3.24274e-11 -2.41184e-13 -3.25016e-11 -4.19884e-12 -3.23037e-11 -8.28165e-12 -3.18316e-11 -1.24106e-11 -3.10919e-11 -1.65053e-11 -3.00978e-11 -2.0492e-11 -2.88696e-11 -2.43051e-11 -2.74307e-11 -2.78917e-11 -2.58069e-11 -3.12123e-11 -2.40242e-11 -3.42414e-11 -2.21064e-11 -3.69664e-11 -2.00738e-11 -3.93834e-11 -1.79437e-11 -4.14924e-11 -1.573e-11 -4.32966e-11 -1.34457e-11 -4.47949e-11 -1.1104e-11 -4.59828e-11 -8.71942e-12 -4.68524e-11 -6.3082e-12 -4.73926e-11 -3.89016e-12 -4.75907e-11 -1.48899e-12 -4.74361e-11 8.63298e-13 -4.69232e-11 3.16346e-12 -4.60715e-11 5.35835e-12 -4.48815e-11 7.42783e-12 -4.34046e-11 9.35368e-12 -4.16754e-11 1.11219e-11 -3.97606e-11 1.27375e-11 -3.77334e-11 1.41933e-11 -3.56535e-11 1.55043e-11 -3.35926e-11 1.66918e-11 -3.16082e-11 1.7782e-11 -2.97427e-11 1.8811e-11 -2.80356e-11 1.98091e-11 -2.64784e-11 2.08083e-11 -2.50684e-11 2.18429e-11 -2.37648e-11 2.29328e-11 -2.25074e-11 2.40916e-11 -2.1222e-11 2.53267e-11 -1.98229e-11 2.66328e-11 -1.82117e-11 2.79953e-11 -1.62973e-11 2.93908e-11 -1.39832e-11 3.07892e-11 -1.11822e-11 3.21485e-11 -7.81627e-12 3.34238e-11 -3.81491e-12 3.4565e-11 8.68826e-13 3.55191e-11 6.28067e-12 3.62295e-11 1.2452e-11 3.66309e-11 1.93926e-11 3.66646e-11 2.71046e-11 3.62631e-11 3.5577e-11 3.53591e-11 4.47896e-11 3.38804e-11 5.46972e-11 3.17497e-11 6.52513e-11 2.88855e-11 7.63831e-11 2.51967e-11 8.80074e-11 2.05977e-11 9.99007e-11 1.49943e-11 1.11633e-10 8.49946e-12 1.20156e-10 1.88346e-12 1.1487e-10 6.91489e-11 -2.12331e-12 -3.11539e-13 1.01679e-11 -8.86921e-13 1.59283e-11 -1.5907e-12 1.82332e-11 -2.3081e-12 1.88521e-11 -3.01689e-12 1.8958e-11 -3.72321e-12 1.89842e-11 -4.4422e-12 1.90368e-11 -5.18622e-12 1.91146e-11 -5.96013e-12 1.91926e-11 -6.764e-12 1.92343e-11 -7.58741e-12 1.9203e-11 -8.41554e-12 1.90654e-11 -9.22632e-12 1.88069e-11 -9.99728e-12 1.84185e-11 -1.07083e-11 1.7923e-11 -1.13434e-11 1.73528e-11 -1.18948e-11 1.67601e-11 -1.23638e-11 1.6208e-11 -1.27599e-11 1.57545e-11 -1.31057e-11 1.54603e-11 -1.34273e-11 1.53715e-11 -1.37613e-11 1.55155e-11 -1.41408e-11 1.59e-11 -1.46026e-11 1.65083e-11 -1.51757e-11 1.73027e-11 -1.58856e-11 1.82228e-11 -1.67482e-11 1.91965e-11 -1.77697e-11 2.01359e-11 -1.89447e-11 2.09461e-11 -2.02567e-11 2.15357e-11 -2.16802e-11 2.18187e-11 -2.31809e-11 2.17218e-11 -2.472e-11 2.11898e-11 -2.62555e-11 2.01819e-11 -2.77431e-11 1.86784e-11 -2.914e-11 1.66761e-11 -3.04045e-11 1.41882e-11 -3.14976e-11 1.1244e-11 -3.23842e-11 7.88446e-12 -3.30331e-11 4.16252e-12 -3.34187e-11 1.44096e-13 -3.35227e-11 -4.09525e-12 -3.33341e-11 -8.47054e-12 -3.28521e-11 -1.28928e-11 -3.20842e-11 -1.72734e-11 -3.10461e-11 -2.15303e-11 -2.97609e-11 -2.55904e-11 -2.82557e-11 -2.93969e-11 -2.65595e-11 -3.29085e-11 -2.47009e-11 -3.61e-11 -2.27053e-11 -3.89621e-11 -2.05957e-11 -4.1493e-11 -1.83888e-11 -4.36992e-11 -1.60989e-11 -4.55864e-11 -1.37378e-11 -4.7156e-11 -1.1317e-11 -4.84035e-11 -8.85008e-12 -4.93192e-11 -6.35337e-12 -4.98891e-11 -3.84728e-12 -5.00966e-11 -1.3567e-12 -4.99265e-11 1.09418e-12 -4.93739e-11 3.46434e-12 -4.84415e-11 5.72767e-12 -4.71448e-11 7.8546e-12 -4.55315e-11 9.83106e-12 -4.36519e-11 1.16375e-11 -4.15671e-11 1.32611e-11 -3.9357e-11 1.47107e-11 -3.71032e-11 1.60012e-11 -3.48833e-11 1.71574e-11 -3.27645e-11 1.82106e-11 -3.07961e-11 1.91995e-11 -2.90246e-11 2.01636e-11 -2.74426e-11 2.11391e-11 -2.6044e-11 2.21605e-11 -2.47863e-11 2.32556e-11 -2.36025e-11 2.44439e-11 -2.24104e-11 2.57293e-11 -2.11085e-11 2.71109e-11 -1.95935e-11 2.85733e-11 -1.77598e-11 3.00916e-11 -1.55016e-11 3.1631e-11 -1.27216e-11 3.3149e-11 -9.3342e-12 3.45973e-11 -5.26312e-12 3.59202e-11 -4.53949e-13 3.70645e-11 5.13651e-12 3.7966e-11 1.15504e-11 3.85589e-11 1.87996e-11 3.87801e-11 2.68834e-11 3.85597e-11 3.57972e-11 3.78295e-11 4.55198e-11 3.65117e-11 5.6015e-11 3.45285e-11 6.72346e-11 3.17912e-11 7.91204e-11 2.82017e-11 9.15967e-11 2.36626e-11 1.0444e-10 1.80778e-11 1.17218e-10 1.15588e-11 1.26674e-10 4.88765e-12 1.21541e-10 7.32116e-11 8.24344e-13 -3.12467e-13 1.04805e-11 -8.9363e-13 1.65097e-11 -1.60143e-12 1.89413e-11 -2.31477e-12 1.95657e-11 -3.0144e-12 1.96578e-11 -3.71072e-12 1.96806e-11 -4.42322e-12 1.97493e-11 -5.16764e-12 1.9859e-11 -5.95087e-12 1.99759e-11 -6.77341e-12 2.00568e-11 -7.62308e-12 2.00526e-11 -8.48218e-12 1.99245e-11 -9.32423e-12 1.9649e-11 -1.01222e-11 1.92164e-11 -1.08511e-11 1.8652e-11 -1.14914e-11 1.79931e-11 -1.20325e-11 1.73012e-11 -1.24749e-11 1.66504e-11 -1.28314e-11 1.61111e-11 -1.31264e-11 1.57554e-11 -1.33899e-11 1.56352e-11 -1.36658e-11 1.57915e-11 -1.39904e-11 1.62246e-11 -1.44075e-11 1.69255e-11 -1.49508e-11 1.7846e-11 -1.56496e-11 1.89217e-11 -1.65222e-11 2.00692e-11 -1.75762e-11 2.11899e-11 -1.88061e-11 2.2176e-11 -2.01946e-11 2.29241e-11 -2.17125e-11 2.33365e-11 -2.33226e-11 2.33318e-11 -2.49805e-11 2.28475e-11 -2.66391e-11 2.18402e-11 -2.82508e-11 2.02898e-11 -2.97685e-11 1.81934e-11 -3.11467e-11 1.55661e-11 -3.23433e-11 1.24401e-11 -3.33193e-11 8.86016e-12 -3.40412e-11 4.88395e-12 -3.44804e-11 5.82978e-13 -3.46164e-11 -3.95964e-12 -3.44379e-11 -8.64936e-12 -3.39444e-11 -1.33867e-11 -3.31444e-11 -1.80736e-11 -3.20561e-11 -2.26188e-11 -3.07071e-11 -2.69396e-11 -2.91279e-11 -3.09763e-11 -2.73519e-11 -3.46847e-11 -2.54107e-11 -3.80413e-11 -2.33332e-11 -4.10396e-11 -2.11416e-11 -4.36846e-11 -1.88544e-11 -4.59865e-11 -1.64849e-11 -4.79558e-11 -1.40435e-11 -4.95972e-11 -1.15401e-11 -5.09068e-11 -8.98624e-12 -5.18728e-11 -6.39835e-12 -5.24768e-11 -3.79795e-12 -5.26967e-11 -1.21166e-12 -5.25125e-11 1.32705e-12 -5.19123e-11 3.78331e-12 -5.08975e-11 6.13567e-12 -4.94969e-11 8.33963e-12 -4.77354e-11 1.03653e-11 -4.56774e-11 1.21981e-11 -4.33999e-11 1.38314e-11 -4.09904e-11 1.52707e-11 -3.85425e-11 1.65339e-11 -3.61465e-11 1.76499e-11 -3.38806e-11 1.86567e-11 -3.1803e-11 1.95947e-11 -2.99627e-11 2.05144e-11 -2.83625e-11 2.14564e-11 -2.69861e-11 2.24601e-11 -2.57902e-11 2.3558e-11 -2.47007e-11 2.47703e-11 -2.36229e-11 2.61077e-11 -2.2446e-11 2.75691e-11 -2.1055e-11 2.91378e-11 -1.93286e-11 3.07863e-11 -1.71502e-11 3.24788e-11 -1.4414e-11 3.41683e-11 -1.10235e-11 3.58033e-11 -6.89785e-12 3.73248e-11 -1.97533e-12 3.86711e-11 3.79036e-12 3.978e-11 1.04417e-11 4.05812e-11 1.79984e-11 4.10077e-11 2.6457e-11 4.0988e-11 3.5817e-11 4.04525e-11 4.60554e-11 3.93214e-11 5.71463e-11 3.75119e-11 6.90441e-11 3.4926e-11 8.17061e-11 3.14585e-11 9.50639e-11 2.70074e-11 1.0889e-10 2.14747e-11 1.2275e-10 1.49809e-11 1.33168e-10 8.31798e-12 1.28204e-10 7.72766e-11 4.25249e-12 -3.21054e-13 1.08018e-11 -9.12578e-13 1.71015e-11 -1.62357e-12 1.96525e-11 -2.32794e-12 2.02702e-11 -3.01296e-12 2.03429e-11 -3.69422e-12 2.03619e-11 -4.3963e-12 2.04514e-11 -5.13891e-12 2.06016e-11 -5.9318e-12 2.07687e-11 -6.77562e-12 2.09006e-11 -7.65638e-12 2.09334e-11 -8.55254e-12 2.08207e-11 -9.4322e-12 2.05287e-11 -1.02631e-11 2.00474e-11 -1.1014e-11 1.94029e-11 -1.16616e-11 1.86407e-11 -1.21923e-11 1.7832e-11 -1.26064e-11 1.70646e-11 -1.29157e-11 1.64205e-11 -1.31519e-11 1.59916e-11 -1.33467e-11 1.58301e-11 -1.3551e-11 1.59959e-11 -1.38082e-11 1.6482e-11 -1.41689e-11 1.72863e-11 -1.46732e-11 1.83504e-11 -1.53556e-11 1.96042e-11 -1.62373e-11 2.09509e-11 -1.73266e-11 2.22792e-11 -1.8618e-11 2.34674e-11 -2.00917e-11 2.43977e-11 -2.17147e-11 2.49595e-11 -2.34453e-11 2.50623e-11 -2.52341e-11 2.46362e-11 -2.70289e-11 2.36349e-11 -2.87768e-11 2.20376e-11 -3.04263e-11 1.98427e-11 -3.19288e-11 1.70683e-11 -3.32383e-11 1.37493e-11 -3.43125e-11 9.93414e-12 -3.51145e-11 5.68567e-12 -3.56133e-11 1.08142e-12 -3.57857e-11 -3.78748e-12 -3.56194e-11 -8.81604e-12 -3.51131e-11 -1.38932e-11 -3.42768e-11 -1.89102e-11 -3.31333e-11 -2.37626e-11 -3.17126e-11 -2.83606e-11 -3.00516e-11 -3.26375e-11 -2.81878e-11 -3.65487e-11 -2.61581e-11 -4.00713e-11 -2.39927e-11 -4.32052e-11 -2.17159e-11 -4.59615e-11 -1.93455e-11 -4.83569e-11 -1.68939e-11 -5.04075e-11 -1.43693e-11 -5.21218e-11 -1.17796e-11 -5.34964e-11 -9.13508e-12 -5.45171e-11 -6.45135e-12 -5.51603e-11 -3.75027e-12 -5.53975e-11 -1.0599e-12 -5.52026e-11 1.58656e-12 -5.45585e-11 4.14754e-12 -5.34583e-11 6.58146e-12 -5.19307e-11 8.85418e-12 -5.0008e-11 1.09332e-11 -4.77564e-11 1.27983e-11 -4.52649e-11 1.4441e-11 -4.26331e-11 1.5867e-11 -3.99686e-11 1.70963e-11 -3.73758e-11 1.81627e-11 -3.49471e-11 1.91106e-11 -3.27511e-11 1.99878e-11 -3.084e-11 2.08494e-11 -2.92243e-11 2.17469e-11 -2.78837e-11 2.27253e-11 -2.67686e-11 2.3821e-11 -2.57965e-11 2.5059e-11 -2.48612e-11 2.64524e-11 -2.38396e-11 2.79979e-11 -2.26007e-11 2.9679e-11 -2.10097e-11 3.14673e-11 -1.89385e-11 3.33225e-11 -1.62691e-11 3.51959e-11 -1.28967e-11 3.70309e-11 -8.73266e-12 3.87648e-11 -3.7091e-12 4.03306e-11 2.22465e-12 4.16621e-11 9.11023e-12 4.26892e-11 1.69713e-11 4.33377e-11 2.58086e-11 4.35379e-11 3.56169e-11 4.32141e-11 4.63794e-11 4.22881e-11 5.80723e-11 4.06661e-11 7.0666e-11 3.82499e-11 8.4122e-11 3.49281e-11 9.83854e-11 3.05928e-11 1.13225e-10 2.51413e-11 1.28201e-10 1.87017e-11 1.39607e-10 1.2065e-11 1.3484e-10 8.13632e-11 7.97784e-12 -3.40116e-13 1.1142e-11 -9.48331e-13 1.771e-11 -1.65983e-12 2.03641e-11 -2.34901e-12 2.09595e-11 -3.01268e-12 2.10067e-11 -3.67255e-12 2.10218e-11 -4.35925e-12 2.11381e-11 -5.0973e-12 2.13397e-11 -5.90004e-12 2.15715e-11 -6.76817e-12 2.17688e-11 -7.68588e-12 2.18512e-11 -8.62661e-12 2.17615e-11 -9.55202e-12 2.14542e-11 -1.04238e-11 2.09193e-11 -1.1203e-11 2.01823e-11 -1.18614e-11 1.92992e-11 -1.23811e-11 1.83518e-11 -1.27626e-11 1.74463e-11 -1.30199e-11 1.6678e-11 -1.31846e-11 1.61564e-11 -1.33029e-11 1.59485e-11 -1.34213e-11 1.61144e-11 -1.36018e-11 1.66625e-11 -1.3895e-11 1.75796e-11 -1.43526e-11 1.8808e-11 -1.5013e-11 2.02646e-11 -1.59013e-11 2.18393e-11 -1.70277e-11 2.34056e-11 -1.8386e-11 2.48256e-11 -1.99529e-11 2.59646e-11 -2.16917e-11 2.66983e-11 -2.3555e-11 2.69256e-11 -2.54875e-11 2.65687e-11 -2.74315e-11 2.55788e-11 -2.93283e-11 2.39343e-11 -3.1122e-11 2.16363e-11 -3.27598e-11 1.87061e-11 -3.41923e-11 1.51817e-11 -3.53737e-11 1.11154e-11 -3.62636e-11 6.57535e-12 -3.68275e-11 1.64517e-12 -3.70394e-11 -3.57577e-12 -3.68856e-11 -8.97015e-12 -3.63635e-11 -1.44155e-11 -3.54858e-11 -1.97883e-11 -3.42786e-11 -2.49701e-11 -3.27775e-11 -2.9862e-11 -3.10251e-11 -3.43903e-11 -2.90654e-11 -3.85087e-11 -2.69387e-11 -4.21983e-11 -2.46793e-11 -4.54648e-11 -2.23128e-11 -4.83281e-11 -1.98566e-11 -5.08132e-11 -1.73208e-11 -5.29433e-11 -1.47113e-11 -5.47312e-11 -1.20332e-11 -5.61745e-11 -9.29444e-12 -5.72558e-11 -6.50951e-12 -5.79451e-11 -3.70055e-12 -5.82064e-11 -8.9795e-13 -5.8005e-11 1.86295e-12 -5.73193e-11 4.52766e-12 -5.61229e-11 7.05662e-12 -5.44596e-11 9.40661e-12 -5.23579e-11 1.15459e-11 -4.98956e-11 1.34462e-11 -4.71652e-11 1.50991e-11 -4.4286e-11 1.65096e-11 -4.13791e-11 1.76986e-11 -3.85649e-11 1.87057e-11 -3.59544e-11 1.95822e-11 -3.36276e-11 2.03861e-11 -3.16441e-11 2.11792e-11 -3.00174e-11 2.20223e-11 -2.87269e-11 2.29672e-11 -2.77137e-11 2.40555e-11 -2.6885e-11 2.53164e-11 -2.61221e-11 2.67639e-11 -2.52872e-11 2.83959e-11 -2.42328e-11 3.01952e-11 -2.2809e-11 3.21305e-11 -2.08738e-11 3.41596e-11 -1.82981e-11 3.623e-11 -1.4967e-11 3.82801e-11 -1.07828e-11 4.02426e-11 -5.67164e-12 4.20465e-11 4.20691e-13 4.36178e-11 7.53896e-12 4.48893e-11 1.56998e-11 4.57795e-11 2.49184e-11 4.62187e-11 3.51777e-11 4.6129e-11 4.64691e-11 4.5428e-11 5.87732e-11 4.40202e-11 7.20735e-11 4.18022e-11 8.63396e-11 3.8654e-11 1.01533e-10 3.44627e-11 1.17416e-10 2.91233e-11 1.3354e-10 2.27646e-11 1.45965e-10 1.61981e-11 1.41406e-10 8.54814e-11 1.20795e-11 -3.73094e-13 1.15152e-11 -1.00512e-12 1.83421e-11 -1.71315e-12 2.10723e-11 -2.37973e-12 2.16261e-11 -3.01366e-12 2.16406e-11 -3.64431e-12 2.16525e-11 -4.30968e-12 2.18035e-11 -5.03985e-12 2.20699e-11 -5.85245e-12 2.23842e-11 -6.7484e-12 2.26649e-11 -7.71006e-12 2.2813e-11 -8.70476e-12 2.27564e-11 -9.68644e-12 2.24361e-11 -1.06078e-11 2.18409e-11 -1.14231e-11 2.09979e-11 -1.20955e-11 1.99718e-11 -1.26068e-11 1.88634e-11 -1.29494e-11 1.77892e-11 -1.31486e-11 1.68773e-11 -1.32329e-11 1.62409e-11 -1.32594e-11 1.59751e-11 -1.32822e-11 1.61373e-11 -1.33716e-11 1.6752e-11 -1.35872e-11 1.77953e-11 -1.39888e-11 1.92097e-11 -1.46205e-11 2.08963e-11 -1.55126e-11 2.27314e-11 -1.66768e-11 2.45699e-11 -1.81061e-11 2.62549e-11 -1.97747e-11 2.76333e-11 -2.16411e-11 2.85647e-11 -2.36504e-11 2.8935e-11 -2.57411e-11 2.86595e-11 -2.78484e-11 2.76862e-11 -2.99083e-11 2.59943e-11 -3.18598e-11 2.35878e-11 -3.36455e-11 2.04919e-11 -3.52124e-11 1.67485e-11 -3.65112e-11 1.24143e-11 -3.74974e-11 7.56146e-12 -3.81325e-11 2.28019e-12 -3.83867e-11 -3.32174e-12 -3.8244e-11 -9.11293e-12 -3.77021e-11 -1.49577e-11 -3.67761e-11 -2.07145e-11 -3.5496e-11 -2.62505e-11 -3.39036e-11 -3.14546e-11 -3.20488e-11 -3.62455e-11 -2.99821e-11 -4.05757e-11 -2.77497e-11 -4.44309e-11 -2.53897e-11 -4.78251e-11 -2.29294e-11 -5.07885e-11 -2.0385e-11 -5.33578e-11 -1.77642e-11 -5.55643e-11 -1.50693e-11 -5.74262e-11 -1.23012e-11 -5.89427e-11 -9.46516e-12 -6.0092e-11 -6.57366e-12 -6.08367e-11 -3.64914e-12 -6.1131e-11 -7.25211e-13 -6.0929e-11 2.14695e-12 -6.01915e-11 4.94256e-12 -5.89186e-11 7.58552e-12 -5.71026e-11 1.00296e-11 -5.4802e-11 1.22324e-11 -5.20984e-11 1.41665e-11 -4.90994e-11 1.58211e-11 -4.59407e-11 1.72022e-11 -4.27603e-11 1.83403e-11 -3.97031e-11 1.9277e-11 -3.68912e-11 2.00712e-11 -3.44219e-11 2.07877e-11 -3.23606e-11 2.14981e-11 -3.07278e-11 2.22721e-11 -2.95009e-11 2.31711e-11 -2.86128e-11 2.42439e-11 -2.79578e-11 2.55244e-11 -2.74027e-11 2.7029e-11 -2.67918e-11 2.87554e-11 -2.59592e-11 3.06856e-11 -2.47392e-11 3.27859e-11 -2.29742e-11 3.5008e-11 -2.05203e-11 3.72934e-11 -1.72525e-11 3.95769e-11 -1.30665e-11 4.17862e-11 -7.88117e-12 4.3843e-11 -1.63625e-12 4.56773e-11 5.70447e-12 4.72096e-11 1.41675e-11 4.83671e-11 2.37608e-11 4.90679e-11 3.44769e-11 4.92343e-11 4.63025e-11 4.8779e-11 5.92283e-11 4.76071e-11 7.3245e-11 4.56065e-11 8.834e-11 4.26591e-11 1.0448e-10 3.86383e-11 1.21437e-10 3.34448e-11 1.38734e-10 2.71993e-11 1.52211e-10 2.07187e-11 1.47887e-10 8.95605e-11 1.66393e-11 -4.22904e-13 1.19382e-11 -1.08677e-12 1.90061e-11 -1.78665e-12 2.17722e-11 -2.42175e-12 2.22613e-11 -3.01576e-12 2.22347e-11 -3.6077e-12 2.22445e-11 -4.24427e-12 2.24402e-11 -4.96229e-12 2.27881e-11 -5.78471e-12 2.32068e-11 -6.71309e-12 2.35935e-11 -7.72706e-12 2.38272e-11 -8.78618e-12 2.38158e-11 -9.83654e-12 2.34868e-11 -1.08192e-11 2.28239e-11 -1.16794e-11 2.18583e-11 -1.23716e-11 2.06644e-11 -1.2871e-11 1.93631e-11 -1.31752e-11 1.80936e-11 -1.33035e-11 1.70058e-11 -1.32965e-11 1.62341e-11 -1.32151e-11 1.58938e-11 -1.31272e-11 1.60495e-11 -1.31095e-11 1.67344e-11 -1.32343e-11 1.79202e-11 -1.35686e-11 1.9544e-11 -1.41643e-11 2.14921e-11 -1.50572e-11 2.36244e-11 -1.62606e-11 2.57733e-11 -1.77671e-11 2.77615e-11 -1.95477e-11 2.9414e-11 -2.15546e-11 3.05718e-11 -2.37255e-11 3.1106e-11 -2.59904e-11 3.09245e-11 -2.8277e-11 2.9973e-11 -3.05152e-11 2.82326e-11 -3.26386e-11 2.57113e-11 -3.45856e-11 2.2439e-11 -3.62993e-11 1.84624e-11 -3.77268e-11 1.38419e-11 -3.88189e-11 8.65358e-12 -3.95322e-11 2.99344e-12 -3.98333e-11 -3.02069e-12 -3.9702e-11 -9.24433e-12 -3.91368e-11 -1.55229e-11 -3.81548e-11 -2.16967e-11 -3.67912e-11 -2.76144e-11 -3.50954e-11 -3.31507e-11 -3.31254e-11 -3.82157e-11 -3.09401e-11 -4.27614e-11 -2.85928e-11 -4.67785e-11 -2.61258e-11 -5.02924e-11 -2.35675e-11 -5.33471e-11 -2.09329e-11 -5.59926e-11 -1.82271e-11 -5.82703e-11 -1.54461e-11 -6.02074e-11 -1.25868e-11 -6.18023e-11 -9.64991e-12 -6.30292e-11 -6.64594e-12 -6.38409e-11 -3.59742e-12 -6.41798e-11 -5.40013e-13 -6.39868e-11 2.48329e-12 -6.32152e-11 5.40113e-12 -6.18367e-11 8.16201e-12 -5.98637e-11 1.07055e-11 -5.73457e-11 1.29809e-11 -5.4374e-11 1.49543e-11 -5.1073e-11 1.66135e-11 -4.76e-11 1.79659e-11 -4.41128e-11 1.90415e-11 -4.07787e-11 1.98901e-11 -3.77399e-11 2.05813e-11 -3.51133e-11 2.11927e-11 -3.2972e-11 2.18027e-11 -3.13378e-11 2.24932e-11 -3.01914e-11 2.33344e-11 -2.94541e-11 2.43838e-11 -2.90072e-11 2.56795e-11 -2.86985e-11 2.72411e-11 -2.83534e-11 2.90669e-11 -2.7785e-11 3.11363e-11 -2.68087e-11 3.34115e-11 -2.52494e-11 3.58395e-11 -2.29485e-11 3.83562e-11 -1.97696e-11 4.08899e-11 -1.56005e-11 4.33634e-11 -1.0355e-11 4.56956e-11 -3.96879e-12 4.78086e-11 3.59129e-12 4.96219e-11 1.2354e-11 5.10646e-11 2.2318e-11 5.20457e-11 3.34956e-11 5.24893e-11 4.58587e-11 5.23039e-11 5.94135e-11 5.13919e-11 7.41568e-11 4.96398e-11 9.00919e-11 4.69253e-11 1.07195e-10 4.31084e-11 1.25253e-10 3.80817e-11 1.4376e-10 3.19537e-11 1.58339e-10 2.55438e-11 1.54296e-10 9.36246e-11 2.14795e-11 -4.92267e-13 1.24306e-11 -1.19732e-12 1.97113e-11 -1.8834e-12 2.24583e-11 -2.47639e-12 2.28543e-11 -3.01856e-12 2.27769e-11 -3.56047e-12 2.27865e-11 -4.15889e-12 2.30388e-11 -4.85922e-12 2.34886e-11 -5.69117e-12 2.40391e-11 -6.65733e-12 2.456e-11 -7.73373e-12 2.4904e-11 -8.87085e-12 2.49533e-11 -1.00036e-11 2.46199e-11 -1.10624e-11 2.38831e-11 -1.19758e-11 2.27721e-11 -1.26954e-11 2.13844e-11 -1.31843e-11 1.98524e-11 -1.34425e-11 1.83521e-11 -1.34902e-11 1.70538e-11 -1.33763e-11 1.61205e-11 -1.31699e-11 1.56876e-11 -1.29521e-11 1.58319e-11 -1.28096e-11 1.65921e-11 -1.2828e-11 1.79389e-11 -1.30827e-11 1.97988e-11 -1.36354e-11 2.2045e-11 -1.45261e-11 2.45153e-11 -1.57718e-11 2.70192e-11 -1.73636e-11 2.93535e-11 -1.92677e-11 3.13184e-11 -2.14297e-11 3.27339e-11 -2.37786e-11 3.34551e-11 -2.62351e-11 3.33812e-11 -2.87181e-11 3.24562e-11 -3.11499e-11 3.06645e-11 -3.34593e-11 2.80208e-11 -3.55812e-11 2.4561e-11 -3.74551e-11 2.03365e-11 -3.90238e-11 1.54106e-11 -4.02329e-11 9.8628e-12 -4.10336e-11 3.79421e-12 -4.13866e-11 -2.66769e-12 -4.12685e-11 -9.36245e-12 -4.06767e-11 -1.61149e-11 -3.96299e-11 -2.27435e-11 -3.81713e-11 -2.90732e-11 -3.63587e-11 -3.49636e-11 -3.426e-11 -4.03146e-11 -3.19432e-11 -4.50785e-11 -2.9471e-11 -4.92509e-11 -2.6889e-11 -5.28746e-11 -2.42278e-11 -5.60086e-11 -2.15027e-11 -5.87181e-11 -1.87106e-11 -6.10628e-11 -1.58433e-11 -6.30751e-11 -1.28908e-11 -6.47552e-11 -9.84859e-12 -6.60718e-11 -6.72465e-12 -6.69654e-11 -3.54158e-12 -6.73634e-11 -3.3902e-13 -6.71899e-11 2.81949e-12 -6.63742e-11 5.88824e-12 -6.49059e-11 8.78638e-12 -6.27622e-11 1.14439e-11 -6.00035e-11 1.38014e-11 -5.67318e-11 1.58231e-11 -5.30949e-11 1.74858e-11 -4.92629e-11 1.87991e-11 -4.54263e-11 1.9799e-11 -4.17787e-11 2.05451e-11 -3.84861e-11 2.1114e-11 -3.56822e-11 2.15954e-11 -3.34535e-11 2.20869e-11 -3.18292e-11 2.26773e-11 -3.07818e-11 2.34478e-11 -3.02245e-11 2.4464e-11 -3.00234e-11 2.57701e-11 -3.00046e-11 2.73887e-11 -2.99719e-11 2.93176e-11 -2.9714e-11 3.15342e-11 -2.90255e-11 3.39957e-11 -2.77112e-11 3.66439e-11 -2.5597e-11 3.94082e-11 -2.25343e-11 4.22101e-11 -1.84028e-11 4.49668e-11 -1.3112e-11 4.75922e-11 -6.59442e-12 5.00031e-11 1.18023e-12 5.21186e-11 1.02383e-11 5.38562e-11 2.05802e-11 5.51394e-11 3.22122e-11 5.58806e-11 4.51172e-11 5.59902e-11 5.93038e-11 5.53687e-11 7.47781e-11 5.39045e-11 9.15561e-11 5.14566e-11 1.09643e-10 4.78794e-11 1.28831e-10 4.30368e-11 1.48603e-10 3.702e-11 1.64355e-10 3.06473e-11 1.60669e-10 9.77415e-11 2.65302e-11 -5.83791e-13 1.30144e-11 -1.34051e-12 2.0468e-11 -2.00633e-12 2.31242e-11 -2.54509e-12 2.33932e-11 -3.02137e-12 2.32533e-11 -3.49945e-12 2.32648e-11 -4.04833e-12 2.35879e-11 -4.72431e-12 2.4165e-11 -5.56519e-12 2.48803e-11 -6.57538e-12 2.55706e-11 -7.72576e-12 2.60548e-11 -8.95754e-12 2.61855e-11 -1.01905e-11 2.58532e-11 -1.13411e-11 2.50342e-11 -1.23231e-11 2.37545e-11 -1.30736e-11 2.21353e-11 -1.35566e-11 2.03358e-11 -1.37614e-11 1.85574e-11 -1.37171e-11 1.70099e-11 -1.34795e-11 1.58833e-11 -1.31275e-11 1.53359e-11 -1.27578e-11 1.54625e-11 -1.24695e-11 1.63041e-11 -1.23621e-11 1.78318e-11 -1.25222e-11 1.99592e-11 -1.30212e-11 2.25443e-11 -1.39057e-11 2.54001e-11 -1.51956e-11 2.83094e-11 -1.6881e-11 3.1039e-11 -1.89229e-11 3.33605e-11 -2.12582e-11 3.50694e-11 -2.38055e-11 3.60026e-11 -2.64741e-11 3.605e-11 -2.91729e-11 3.51551e-11 -3.18165e-11 3.33082e-11 -3.43283e-11 3.05328e-11 -3.66402e-11 2.6873e-11 -3.86884e-11 2.23848e-11 -4.04115e-11 1.71337e-11 -4.17495e-11 1.12009e-11 -4.26471e-11 4.69183e-12 -4.3057e-11 -2.25776e-12 -4.29528e-11 -9.46665e-12 -4.23289e-11 -1.67387e-11 -4.12066e-11 -2.38659e-11 -3.96384e-11 -3.06416e-11 -3.76915e-11 -3.69106e-11 -3.54458e-11 -4.25604e-11 -3.29844e-11 -4.75401e-11 -3.03747e-11 -5.18609e-11 -2.767e-11 -5.55795e-11 -2.49054e-11 -5.87736e-11 -2.20883e-11 -6.15355e-11 -1.9213e-11 -6.39385e-11 -1.62623e-11 -6.60263e-11 -1.32181e-11 -6.78e-11 -1.00691e-11 -6.92214e-11 -6.82003e-12 -7.02151e-11 -3.49291e-12 -7.06912e-11 -1.3016e-13 -7.05532e-11 3.20914e-12 -6.9714e-11 6.44197e-12 -6.81392e-11 9.48976e-12 -6.58104e-11 1.22716e-11 -6.27857e-11 1.4718e-11 -5.91785e-11 1.67808e-11 -5.51579e-11 1.84381e-11 -5.09204e-11 1.97062e-11 -4.66946e-11 2.06164e-11 -4.2689e-11 2.12398e-11 -3.91096e-11 2.16652e-11 -3.61077e-11 2.19977e-11 -3.3786e-11 2.23455e-11 -3.21772e-11 2.28154e-11 -3.12518e-11 2.34989e-11 -3.09081e-11 2.44714e-11 -3.09959e-11 2.57833e-11 -3.13165e-11 2.74595e-11 -3.16482e-11 2.9498e-11 -3.17526e-11 3.18729e-11 -3.14005e-11 3.4536e-11 -3.03745e-11 3.74227e-11 -2.8484e-11 4.04549e-11 -2.55668e-11 4.35476e-11 -2.14957e-11 4.66099e-11 -1.61746e-11 4.95521e-11 -9.53682e-12 5.22826e-11 -1.55041e-12 5.47171e-11 7.80366e-12 5.67737e-11 1.85234e-11 5.83751e-11 3.06107e-11 5.94335e-11 4.40586e-11 5.98623e-11 5.88749e-11 5.95628e-11 7.50775e-11 5.84187e-11 9.27003e-11 5.62796e-11 1.11782e-10 5.2977e-11 1.32133e-10 4.83469e-11 1.53233e-10 4.24449e-11 1.70257e-10 3.60903e-11 1.67023e-10 1.01908e-10 3.19238e-11 -6.9935e-13 1.37138e-11 -1.51927e-12 2.1288e-11 -2.15819e-12 2.37632e-11 -2.62935e-12 2.38645e-11 -3.02334e-12 2.36475e-11 -3.42105e-12 2.36628e-11 -3.90623e-12 2.40735e-11 -4.54934e-12 2.48085e-11 -5.39831e-12 2.57297e-11 -6.46001e-12 2.66327e-11 -7.69932e-12 2.72945e-11 -9.04456e-12 2.75312e-11 -1.04009e-11 2.721e-11 -1.16609e-11 2.62947e-11 -1.27291e-11 2.48232e-11 -1.35226e-11 2.29293e-11 -1.39974e-11 2.08111e-11 -1.41432e-11 1.87037e-11 -1.3992e-11 1.68591e-11 -1.36095e-11 1.55012e-11 -1.30889e-11 1.48158e-11 -1.25411e-11 1.49151e-11 -1.20827e-11 1.58461e-11 -1.18271e-11 1.75767e-11 -1.18756e-11 2.00081e-11 -1.23093e-11 2.29784e-11 -1.31831e-11 2.62742e-11 -1.45199e-11 2.96466e-11 -1.63087e-11 3.28281e-11 -1.85049e-11 3.5557e-11 -2.10346e-11 3.75993e-11 -2.38033e-11 3.87714e-11 -2.6707e-11 3.89538e-11 -2.96429e-11 3.80912e-11 -3.25175e-11 3.61828e-11 -3.52492e-11 3.32646e-11 -3.77667e-11 2.93906e-11 -4.0004e-11 2.46222e-11 -4.18958e-11 1.90256e-11 -4.33761e-11 1.26813e-11 -4.43817e-11 5.69742e-12 -4.48549e-11 -1.78453e-12 -4.47653e-11 -9.55625e-12 -4.41022e-11 -1.74019e-11 -4.28949e-11 -2.50733e-11 -4.11979e-11 -3.23387e-11 -3.90954e-11 -3.90132e-11 -3.66845e-11 -4.49715e-11 -3.40582e-11 -5.01665e-11 -3.12978e-11 -5.46216e-11 -2.84662e-11 -5.84114e-11 -2.55936e-11 -6.16465e-11 -2.2688e-11 -6.44414e-11 -1.97344e-11 -6.68925e-11 -1.67053e-11 -6.90559e-11 -1.35725e-11 -7.09332e-11 -1.03174e-11 -7.24771e-11 -6.93793e-12 -7.35951e-11 -3.45659e-12 -7.4173e-11 8.12815e-14 -7.40916e-11 3.59749e-12 -7.32307e-11 7.01586e-12 -7.1558e-11 1.02395e-11 -6.90344e-11 1.31694e-11 -6.57159e-11 1.57223e-11 -6.17317e-11 1.78386e-11 -5.72745e-11 1.94961e-11 -5.25782e-11 2.07031e-11 -4.79018e-11 2.15061e-11 -4.34921e-11 2.19847e-11 -3.95884e-11 2.224e-11 -3.63632e-11 2.23946e-11 -3.39408e-11 2.25734e-11 -3.23562e-11 2.28994e-11 -3.15779e-11 2.34782e-11 -3.14871e-11 2.43958e-11 -3.19136e-11 2.57073e-11 -3.26281e-11 2.74423e-11 -3.33833e-11 2.95971e-11 -3.39074e-11 3.21418e-11 -3.39454e-11 3.50227e-11 -3.32556e-11 3.81675e-11 -3.1629e-11 4.14896e-11 -2.88891e-11 4.48957e-11 -2.4902e-11 4.82877e-11 -1.95666e-11 5.15688e-11 -1.2818e-11 5.46431e-11 -4.62477e-12 5.7418e-11 5.02867e-12 5.98145e-11 1.61267e-11 6.17516e-11 2.86735e-11 6.31501e-11 4.266e-11 6.39214e-11 5.81036e-11 6.39774e-11 7.50215e-11 6.31906e-11 9.3487e-11 6.14086e-11 1.13564e-10 5.84221e-11 1.3512e-10 5.40358e-11 1.57619e-10 4.82463e-11 1.76046e-10 4.18861e-11 1.73383e-10 1.06112e-10 3.7682e-11 -8.40557e-13 1.45544e-11 -1.73636e-12 2.2184e-11 -2.34175e-12 2.43688e-11 -2.73053e-12 2.42535e-11 -3.02327e-12 2.39406e-11 -3.32068e-12 2.39605e-11 -3.72471e-12 2.44779e-11 -4.32432e-12 2.54085e-11 -5.18023e-12 2.6586e-11 -6.30177e-12 2.77546e-11 -7.64771e-12 2.86409e-11 -9.13073e-12 2.90146e-11 -1.06363e-11 2.8716e-11 -1.2033e-11 2.76918e-11 -1.32043e-11 2.5995e-11 -1.40519e-11 2.37774e-11 -1.45202e-11 2.12799e-11 -1.45993e-11 1.87833e-11 -1.43241e-11 1.65844e-11 -1.37737e-11 1.49513e-11 -1.30563e-11 1.4099e-11 -1.23019e-11 1.41612e-11 -1.16449e-11 1.51897e-11 -1.12168e-11 1.71491e-11 -1.11338e-11 1.99255e-11 -1.14895e-11 2.33346e-11 -1.23474e-11 2.71325e-11 -1.37342e-11 3.10337e-11 -1.56378e-11 3.4732e-11 -1.80064e-11 3.79259e-11 -2.07536e-11 4.03467e-11 -2.37692e-11 4.17872e-11 -2.69331e-11 4.21178e-11 -3.01292e-11 4.12873e-11 -3.32548e-11 3.93085e-11 -3.6224e-11 3.62338e-11 -3.89638e-11 3.21303e-11 -4.14068e-11 2.70651e-11 -4.3484e-11 2.11028e-11 -4.51226e-11 1.43198e-11 -4.62476e-11 6.82242e-12 -4.67977e-11 -1.23455e-12 -4.67214e-11 -9.63257e-12 -4.60136e-11 -1.81098e-11 -4.47034e-11 -2.63836e-11 -4.28577e-11 -3.41844e-11 -4.05775e-11 -4.12935e-11 -3.79757e-11 -4.75734e-11 -3.51646e-11 -5.29778e-11 -3.22411e-11 -5.75453e-11 -2.92713e-11 -6.13813e-11 -2.62902e-11 -6.4628e-11 -2.32997e-11 -6.74322e-11 -2.02741e-11 -6.99185e-11 -1.71742e-11 -7.21561e-11 -1.39575e-11 -7.41503e-11 -1.05954e-11 -7.58395e-11 -7.08055e-12 -7.71104e-11 -3.43366e-12 -7.78203e-11 2.97401e-13 -7.7823e-11 4.02978e-12 -7.69634e-11 7.66247e-12 -7.51909e-11 1.10809e-11 -7.2453e-11 1.41715e-11 -6.88068e-11 1.68367e-11 -6.43971e-11 1.90101e-11 -5.94481e-11 2.06624e-11 -5.42307e-11 2.18012e-11 -4.90409e-11 2.24782e-11 -4.41694e-11 2.27849e-11 -3.98953e-11 2.28395e-11 -3.64181e-11 2.27838e-11 -3.38854e-11 2.27628e-11 -3.23356e-11 2.29187e-11 -3.17341e-11 2.33722e-11 -3.19408e-11 2.42212e-11 -3.27627e-11 2.55273e-11 -3.39342e-11 2.73215e-11 -3.51776e-11 2.95996e-11 -3.61857e-11 3.23273e-11 -3.66732e-11 3.54437e-11 -3.63721e-11 3.88675e-11 -3.50528e-11 4.25027e-11 -3.25244e-11 4.62467e-11 -2.86459e-11 4.99928e-11 -2.33127e-11 5.36365e-11 -1.64617e-11 5.70757e-11 -8.06403e-12 6.02152e-11 1.8892e-12 6.29693e-11 1.33725e-11 6.52604e-11 2.63824e-11 6.70227e-11 4.08976e-11 6.81639e-11 5.69623e-11 6.86058e-11 7.45796e-11 6.82184e-11 9.38743e-11 6.68368e-11 1.14945e-10 6.42175e-11 1.37739e-10 6.01097e-11 1.61726e-10 5.44322e-11 1.81724e-10 4.8007e-11 1.79808e-10 1.10397e-10 4.37212e-11 -1.00917e-12 1.55636e-11 -1.99435e-12 2.31693e-11 -2.56011e-12 2.49347e-11 -2.85061e-12 2.45442e-11 -3.02002e-12 2.41103e-11 -3.1929e-12 2.41338e-11 -3.49445e-12 2.47798e-11 -4.03696e-12 2.59513e-11 -4.89728e-12 2.74467e-11 -6.08935e-12 2.89471e-11 -7.56274e-12 3.01146e-11 -9.21252e-12 3.06647e-11 -1.08982e-11 3.04021e-11 -1.24624e-11 2.92565e-11 -1.37597e-11 2.72928e-11 -1.4675e-11 2.46932e-11 -1.51401e-11 2.17455e-11 -1.51426e-11 1.87863e-11 -1.47244e-11 1.61667e-11 -1.39779e-11 1.42053e-11 -1.30318e-11 1.31533e-11 -1.20365e-11 1.31665e-11 -1.11493e-11 1.4303e-11 -1.05204e-11 1.65206e-11 -1.02836e-11 1.96892e-11 -1.05466e-11 2.35981e-11 -1.13828e-11 2.79691e-11 -1.28231e-11 3.24744e-11 -1.48546e-11 3.67638e-11 -1.74168e-11 4.04883e-11 -2.04087e-11 4.33387e-11 -2.37009e-11 4.50796e-11 -2.71535e-11 4.55706e-11 -3.06347e-11 4.47686e-11 -3.40323e-11 4.27061e-11 -3.72572e-11 3.94587e-11 -4.02365e-11 3.51095e-11 -4.29031e-11 2.97316e-11 -4.51848e-11 2.33843e-11 -4.70006e-11 1.61355e-11 -4.82638e-11 8.0855e-12 -4.8897e-11 -6.0154e-13 -4.88377e-11 -9.69203e-12 -4.80769e-11 -1.88707e-11 -4.66459e-11 -2.78148e-11 -4.4627e-11 -3.62034e-11 -4.21396e-11 -4.37811e-11 -3.93192e-11 -5.03941e-11 -3.63005e-11 -5.59967e-11 -3.31947e-11 -6.06513e-11 -3.0079e-11 -6.44973e-11 -2.69892e-11 -6.7718e-11 -2.3919e-11 -7.05026e-11 -2.08337e-11 -7.3004e-11 -1.76715e-11 -7.53185e-11 -1.43778e-11 -7.74441e-11 -1.09107e-11 -7.93066e-11 -7.25488e-12 -8.07663e-11 -3.43062e-12 -8.16446e-11 4.964e-13 -8.175e-11 4.47218e-12 -8.09392e-11 8.34903e-12 -7.90679e-11 1.19928e-11 -7.60969e-11 1.52706e-11 -7.20848e-11 1.80689e-11 -6.71956e-11 2.03073e-11 -6.16867e-11 2.19503e-11 -5.5874e-11 2.3007e-11 -5.00978e-11 2.35352e-11 -4.46978e-11 2.36411e-11 -4.00016e-11 2.34619e-11 -3.62392e-11 2.3163e-11 -3.35868e-11 2.29087e-11 -3.20816e-11 2.28652e-11 -3.16909e-11 2.31687e-11 -3.22445e-11 2.3931e-11 -3.35252e-11 2.52221e-11 -3.52255e-11 2.70775e-11 -3.70332e-11 2.94888e-11 -3.85971e-11 3.24158e-11 -3.96002e-11 3.57875e-11 -3.97438e-11 3.95131e-11 -3.87784e-11 4.3485e-11 -3.64962e-11 4.75925e-11 -3.27532e-11 5.17184e-11 -2.74384e-11 5.57488e-11 -2.04921e-11 5.95766e-11 -1.18918e-11 6.31001e-11 -1.63433e-12 6.62371e-11 1.02355e-11 6.89051e-11 2.37143e-11 7.10453e-11 3.87574e-11 7.2586e-11 5.54216e-11 7.34433e-11 7.37221e-11 7.34972e-11 9.38202e-11 7.2571e-11 1.15871e-10 7.03873e-11 1.39922e-10 6.66154e-11 1.65498e-10 6.10593e-11 1.8728e-10 5.45114e-11 1.86356e-10 1.14829e-10 5.00795e-11 -1.20673e-12 1.67704e-11 -2.29567e-12 2.42585e-11 -2.817e-12 2.54563e-11 -2.99233e-12 2.47198e-11 -3.01282e-12 2.41311e-11 -3.03202e-12 2.41533e-11 -3.20443e-12 2.49525e-11 -3.67331e-12 2.64205e-11 -4.53544e-12 2.83091e-11 -5.8102e-12 3.02221e-11 -7.4372e-12 3.17419e-11 -9.28831e-12 3.25162e-11 -1.11924e-11 3.23065e-11 -1.29594e-11 3.10238e-11 -1.4411e-11 2.87449e-11 -1.541e-11 2.56925e-11 -1.58742e-11 2.22102e-11 -1.57889e-11 1.87015e-11 -1.52044e-11 1.55827e-11 -1.42296e-11 1.3231e-11 -1.30171e-11 1.19414e-11 -1.17424e-11 1.18922e-11 -1.05877e-11 1.31487e-11 -9.72549e-12 1.56589e-11 -9.30918e-12 1.92733e-11 -9.4625e-12 2.37518e-11 -1.02697e-11 2.87766e-11 -1.17676e-11 3.39726e-11 -1.39422e-11 3.89387e-11 -1.67235e-11 4.32698e-11 -1.99923e-11 4.66077e-11 -2.35958e-11 4.86832e-11 -2.73697e-11 4.93447e-11 -3.11634e-11 4.85623e-11 -3.48547e-11 4.63974e-11 -3.83527e-11 4.29567e-11 -4.15875e-11 3.83442e-11 -4.44947e-11 3.26386e-11 -4.70003e-11 2.58897e-11 -4.90146e-11 1.81495e-11 -5.04352e-11 9.50583e-12 -5.1164e-11 1.2702e-13 -5.11302e-11 -9.7261e-12 -5.03054e-11 -1.96957e-11 -4.87339e-11 -2.93866e-11 -4.65122e-11 -3.84253e-11 -4.37834e-11 -4.651e-11 -4.07121e-11 -5.34656e-11 -3.74573e-11 -5.92516e-11 -3.41512e-11 -6.39576e-11 -3.08816e-11 -6.77671e-11 -2.76834e-11 -7.09162e-11 -2.45464e-11 -7.36397e-11 -2.14116e-11 -7.61387e-11 -1.82044e-11 -7.85256e-11 -1.48428e-11 -8.08055e-11 -1.12737e-11 -8.28756e-11 -7.47144e-12 -8.45684e-11 -3.4529e-12 -8.56629e-11 7.25826e-13 -8.59286e-11 4.95391e-12 -8.51671e-11 9.09889e-12 -8.32127e-11 1.29996e-11 -7.99976e-11 1.64937e-11 -7.55789e-11 1.94428e-11 -7.01447e-11 2.17537e-11 -6.39978e-11 2.33853e-11 -5.75057e-11 2.43428e-11 -5.10555e-11 2.46954e-11 -4.50506e-11 2.45655e-11 -3.98719e-11 2.41142e-11 -3.57882e-11 2.35262e-11 -3.29991e-11 2.30002e-11 -3.15558e-11 2.27204e-11 -3.14113e-11 2.28475e-11 -3.23717e-11 2.35079e-11 -3.41858e-11 2.47772e-11 -3.64949e-11 2.66956e-11 -3.89518e-11 2.92494e-11 -4.1151e-11 3.23927e-11 -4.27435e-11 3.60437e-11 -4.33948e-11 4.0098e-11 -4.28327e-11 4.44372e-11 -4.08352e-11 4.89361e-11 -3.7252e-11 5.34692e-11 -3.19715e-11 5.7913e-11 -2.49359e-11 6.21522e-11 -1.6131e-11 6.60835e-11 -5.56564e-12 6.96171e-11 6.70193e-12 7.26851e-11 2.06463e-11 7.5224e-11 3.62184e-11 7.71835e-11 5.34621e-11 7.84877e-11 7.24177e-11 7.90271e-11 9.32807e-11 7.86288e-11 1.16269e-10 7.69672e-11 1.41584e-10 7.36319e-11 1.68833e-10 6.82518e-11 1.9266e-10 6.15788e-11 1.93029e-10 1.1941e-10 5.69972e-11 -1.43395e-12 1.82045e-11 -2.64218e-12 2.5467e-11 -3.11683e-12 2.59312e-11 -3.1598e-12 2.47631e-11 -3.00195e-12 2.39735e-11 -2.83208e-12 2.39837e-11 -2.84244e-12 2.49632e-11 -3.21719e-12 2.67955e-11 -4.07751e-12 2.91697e-11 -5.44768e-12 3.15925e-11 -7.25916e-12 3.35536e-11 -9.35373e-12 3.4611e-11 -1.15236e-11 3.44767e-11 -1.35362e-11 3.30367e-11 -1.51763e-11 3.03853e-11 -1.6278e-11 2.67946e-11 -1.67444e-11 2.2677e-11 -1.65581e-11 1.85155e-11 -1.57795e-11 1.48045e-11 -1.45386e-11 1.19905e-11 -1.30165e-11 1.04197e-11 -1.14182e-11 1.02942e-11 -9.95371e-12 1.16846e-11 -8.8217e-12 1.45272e-11 -8.19649e-12 1.86484e-11 -8.22028e-12 2.37759e-11 -8.98971e-12 2.95463e-11 -1.05478e-11 3.55309e-11 -1.28821e-11 4.12731e-11 -1.59113e-11 4.62992e-11 -1.94944e-11 5.01909e-11 -2.34489e-11 5.26378e-11 -2.75806e-11 5.34765e-11 -3.17165e-11 5.26982e-11 -3.57238e-11 5.04047e-11 -3.95122e-11 4.6745e-11 -4.3018e-11 4.18498e-11 -4.61839e-11 3.58042e-11 -4.89354e-11 2.8641e-11 -5.11734e-11 2.03872e-11 -5.27759e-11 1.11079e-11 -5.36206e-11 9.7143e-13 -5.36139e-11 -9.7331e-12 -5.27179e-11 -2.0592e-11 -5.09826e-11 -3.11221e-11 -4.85224e-11 -4.08857e-11 -4.55123e-11 -4.95203e-11 -4.21509e-11 -5.68273e-11 -3.86283e-11 -6.27743e-11 -3.51034e-11 -6.74827e-11 -3.16708e-11 -7.11997e-11 -2.83719e-11 -7.4215e-11 -2.51785e-11 -7.6833e-11 -2.20172e-11 -7.92998e-11 -1.87796e-11 -8.17629e-11 -1.53672e-11 -8.42175e-11 -1.16998e-11 -8.65426e-11 -7.74515e-12 -8.85226e-11 -3.51608e-12 -8.98916e-11 9.23526e-13 -9.03678e-11 5.45211e-12 -8.96954e-11 9.91071e-12 -8.76711e-11 1.41093e-11 -8.41961e-11 1.78533e-11 -7.93229e-11 2.09781e-11 -7.32695e-11 2.33733e-11 -6.6393e-11 2.49883e-11 -5.91207e-11 2.58311e-11 -5.18983e-11 2.59786e-11 -4.51981e-11 2.55706e-11 -3.94641e-11 2.47939e-11 -3.50116e-11 2.38723e-11 -3.20776e-11 2.30278e-11 -3.07114e-11 2.24761e-11 -3.08597e-11 2.23962e-11 -3.22921e-11 2.29336e-11 -3.47233e-11 2.41746e-11 -3.7736e-11 2.61567e-11 -4.09341e-11 2.88664e-11 -4.38608e-11 3.22466e-11 -4.61238e-11 3.62042e-11 -4.73524e-11 4.06187e-11 -4.7247e-11 4.53564e-11 -4.55729e-11 5.02776e-11 -4.21731e-11 5.52472e-11 -3.69411e-11 6.01311e-11 -2.98197e-11 6.48071e-11 -2.0807e-11 6.91654e-11 -9.92394e-12 7.31181e-11 2.74935e-12 7.65977e-11 1.71667e-11 7.95577e-11 3.32586e-11 8.19437e-11 5.1076e-11 8.37306e-11 7.06308e-11 8.48034e-11 9.2208e-11 8.50163e-11 1.16056e-10 8.4e-11 1.426e-10 8.12598e-11 1.71574e-10 7.62124e-11 1.97707e-10 6.9503e-11 1.99738e-10 1.24022e-10 6.48916e-11 -1.69124e-12 1.98959e-11 -3.0353e-12 2.68113e-11 -3.46581e-12 2.6362e-11 -3.35955e-12 2.46571e-11 -2.98874e-12 2.3603e-11 -2.58598e-12 2.35812e-11 -2.39324e-12 2.47707e-11 -2.64924e-12 2.70518e-11 -3.50205e-12 3.00228e-11 -4.98475e-12 3.30755e-11 -7.01755e-12 3.55867e-11 -9.40807e-12 3.70018e-11 -1.19001e-11 3.6969e-11 -1.42103e-11 3.53472e-11 -1.60791e-11 3.22545e-11 -1.73062e-11 2.8022e-11 -1.77783e-11 2.31494e-11 -1.74747e-11 1.82121e-11 -1.64688e-11 1.37989e-11 -1.49156e-11 1.04374e-11 -1.3032e-11 8.5363e-12 -1.10572e-11 8.31961e-12 -9.23464e-12 9.86211e-12 -7.79116e-12 1.30838e-11 -6.92416e-12 1.77815e-11 -6.79663e-12 2.36484e-11 -7.51852e-12 3.02682e-11 -9.14088e-12 3.71533e-11 -1.16551e-11 4.37874e-11 -1.49678e-11 4.96119e-11 -1.89108e-11 5.4134e-11 -2.32644e-11 5.69915e-11 -2.77967e-11 5.80089e-11 -3.2307e-11 5.72086e-11 -3.66521e-11 5.47497e-11 -4.07458e-11 5.08386e-11 -4.45368e-11 4.56407e-11 -4.79798e-11 3.9247e-11 -5.10025e-11 3.16634e-11 -5.34944e-11 2.28788e-11 -5.5309e-11 1.29222e-11 -5.62921e-11 1.95413e-12 -5.63187e-11 -9.70678e-12 -5.53427e-11 -2.15684e-11 -5.34114e-11 -3.30537e-11 -5.06691e-11 -4.36282e-11 -4.73274e-11 -5.28622e-11 -4.3626e-11 -6.05288e-11 -3.97997e-11 -6.66007e-11 -3.60265e-11 -7.12559e-11 -3.24264e-11 -7.47997e-11 -2.90296e-11 -7.76118e-11 -2.58018e-11 -8.00605e-11 -2.26377e-11 -8.24636e-11 -1.93975e-11 -8.50026e-11 -1.59499e-11 -8.76647e-11 -1.21961e-11 -9.02958e-11 -8.08489e-12 -9.26333e-11 -3.62926e-12 -9.43467e-11 1.1003e-12 -9.50969e-11 5.96834e-12 -9.4563e-11 1.07875e-11 -9.249e-11 1.53317e-11 -8.874e-11 1.9366e-11 -8.33571e-11 2.26929e-11 -7.65963e-11 2.51875e-11 -6.88875e-11 2.67807e-11 -6.07138e-11 2.74887e-11 -5.26061e-11 2.73974e-11 -4.51068e-11 2.6662e-11 -3.87286e-11 2.55093e-11 -3.38587e-11 2.41956e-11 -3.07639e-11 2.29789e-11 -2.94946e-11 2.21078e-11 -2.99886e-11 2.17903e-11 -3.19746e-11 2.21838e-11 -3.5117e-11 2.33876e-11 -3.894e-11 2.54382e-11 -4.29849e-11 2.8318e-11 -4.67408e-11 3.19589e-11 -4.97648e-11 3.6253e-11 -5.16465e-11 4.10602e-11 -5.20543e-11 4.62292e-11 -5.0742e-11 5.16071e-11 -4.75511e-11 5.70464e-11 -4.23804e-11 6.2403e-11 -3.51762e-11 6.75424e-11 -2.59464e-11 7.23514e-11 -1.47328e-11 7.6739e-11 -1.63804e-12 8.06464e-11 1.32595e-11 8.40325e-11 2.98726e-11 8.68675e-11 4.82412e-11 8.91534e-11 6.83451e-11 9.08124e-11 9.05493e-11 9.17279e-11 1.15141e-10 9.1515e-11 1.42813e-10 8.96077e-11 1.73481e-10 8.5173e-11 2.02142e-10 7.87004e-11 2.06211e-10 1.28472e-10 7.42502e-11 -1.97666e-12 2.18727e-11 -3.47457e-12 2.83094e-11 -3.87148e-12 2.67591e-11 -3.60078e-12 2.43866e-11 -2.97608e-12 2.29785e-11 -2.28559e-12 2.28909e-11 -1.83928e-12 2.43246e-11 -1.9507e-12 2.71634e-11 -2.7884e-12 3.08607e-11 -4.40093e-12 3.46883e-11 -6.69729e-12 3.78833e-11 -9.44686e-12 3.97517e-11 -1.23285e-11 3.98509e-11 -1.49998e-11 3.80187e-11 -1.71445e-11 3.43994e-11 -1.85249e-11 2.94025e-11 -1.90058e-11 2.36304e-11 -1.85662e-11 1.77727e-11 -1.7293e-11 1.25258e-11 -1.53736e-11 8.51803e-12 -1.30679e-11 6.23057e-12 -1.06568e-11 5.90857e-12 -8.42022e-12 7.62545e-12 -6.61853e-12 1.12821e-11 -5.47283e-12 1.66357e-11 -5.16959e-12 2.33451e-11 -5.83193e-12 3.09305e-11 -7.52094e-12 3.88423e-11 -1.0238e-11 4.65045e-11 -1.38763e-11 5.32502e-11 -1.8234e-11 5.84917e-11 -2.30446e-11 6.18021e-11 -2.80269e-11 6.29913e-11 -3.29466e-11 6.21283e-11 -3.76503e-11 5.94534e-11 -4.20618e-11 5.52499e-11 -4.61498e-11 4.97285e-11 -4.98883e-11 4.29852e-11 -5.321e-11 3.49849e-11 -5.5992e-11 2.56605e-11 -5.80567e-11 1.49865e-11 -5.9207e-11 3.10413e-12 -5.92799e-11 -9.63415e-12 -5.82049e-11 -2.26436e-11 -5.60418e-11 -3.5217e-11 -5.29643e-11 -4.67057e-11 -4.92287e-11 -5.65978e-11 -4.51304e-11 -6.4627e-11 -4.095e-11 -7.0781e-11 -3.69038e-11 -7.53019e-11 -3.31238e-11 -7.85796e-11 -2.96438e-11 -8.10915e-11 -2.64068e-11 -8.32972e-11 -2.32747e-11 -8.55953e-11 -2.00671e-11 -8.82098e-11 -1.66091e-11 -9.11222e-11 -1.27785e-11 -9.41259e-11 -8.50988e-12 -9.69014e-11 -3.80925e-12 -9.90468e-11 1.24432e-12 -1.0015e-10 6.49879e-12 -9.98172e-11 1.1735e-11 -9.77258e-11 1.6682e-11 -9.36868e-11 2.10543e-11 -8.77291e-11 2.46151e-11 -8.01568e-11 2.72216e-11 -7.14936e-11 2.87918e-11 -6.22836e-11 2.93424e-11 -5.31564e-11 2.89702e-11 -4.47342e-11 2.78541e-11 -3.76123e-11 2.62602e-11 -3.22645e-11 2.44876e-11 -2.8991e-11 2.28403e-11 -2.78471e-11 2.15993e-11 -2.87475e-11 2.1004e-11 -3.13793e-11 2.12302e-11 -3.53433e-11 2.23886e-11 -4.00985e-11 2.45125e-11 -4.51089e-11 2.75812e-11 -4.98096e-11 3.151e-11 -5.36937e-11 3.61756e-11 -5.63122e-11 4.14125e-11 -5.72913e-11 4.70503e-11 -5.63799e-11 5.29219e-11 -5.34227e-11 5.88665e-11 -4.8325e-11 6.47302e-11 -4.10398e-11 7.03613e-11 -3.15773e-11 7.5645e-11 -2.00164e-11 8.04814e-11 -6.47421e-12 8.48287e-11 8.91252e-12 8.86466e-11 2.60549e-11 9.19415e-11 4.49467e-11 9.47381e-11 6.55489e-11 9.70273e-11 8.82605e-11 9.8749e-11 1.1342e-10 9.95344e-11 1.42028e-10 9.88083e-11 1.74207e-10 9.54681e-11 2.05482e-10 8.98241e-11 2.11855e-10 1.32361e-10 8.59353e-11 -2.28925e-12 2.41621e-11 -3.96206e-12 2.99825e-11 -4.34714e-12 2.71444e-11 -3.89895e-12 2.39386e-11 -2.96956e-12 2.20493e-11 -1.92182e-12 2.18434e-11 -1.16403e-12 2.3567e-11 -1.10097e-12 2.71006e-11 -1.90635e-12 3.16664e-11 -3.6618e-12 3.6444e-11 -6.27536e-12 4.04971e-11 -9.46049e-12 4.2937e-11 -1.28168e-11 4.32075e-11 -1.59234e-11 4.11254e-11 -1.8402e-11 3.68781e-11 -1.99667e-11 3.09673e-11 -2.04608e-11 2.41245e-11 -1.98613e-11 1.71732e-11 -1.82725e-11 1.0937e-11 -1.59208e-11 6.16619e-12 -1.31234e-11 3.43302e-12 -1.02078e-11 2.99283e-12 -7.49629e-12 4.91375e-12 -5.2863e-12 9.07187e-12 -3.82251e-12 1.51717e-11 -3.31872e-12 2.28411e-11 -3.90566e-12 3.15173e-11 -5.65927e-12 4.05957e-11 -8.60335e-12 4.94484e-11 -1.26163e-11 5.7263e-11 -1.74529e-11 6.33282e-11 -2.27873e-11 6.71365e-11 -2.8275e-11 6.84788e-11 -3.36394e-11 6.74927e-11 -3.87195e-11 6.45334e-11 -4.34552e-11 5.99855e-11 -4.78466e-11 5.41197e-11 -5.18972e-11 4.70356e-11 -5.55494e-11 3.86368e-11 -5.86658e-11 2.87767e-11 -6.10308e-11 1.73512e-11 -6.23897e-11 4.46284e-12 -6.25255e-11 -9.49843e-12 -6.13378e-11 -2.38314e-11 -5.89006e-11 -3.76541e-11 -5.54252e-11 -5.01812e-11 -5.12238e-11 -6.07991e-11 -4.66606e-11 -6.91901e-11 -4.20736e-11 -7.53679e-11 -3.77215e-11 -7.96539e-11 -3.37581e-11 -8.25428e-11 -3.02085e-11 -8.46408e-11 -2.69959e-11 -8.65095e-11 -2.39447e-11 -8.86461e-11 -2.08078e-11 -9.13463e-11 -1.73702e-11 -9.45594e-11 -1.34782e-11 -9.80175e-11 -9.04725e-12 -1.01332e-10 -4.07991e-12 -1.04014e-10 1.33906e-12 -1.05569e-10 7.03555e-12 -1.05513e-10 1.27551e-11 -1.03445e-10 1.81744e-11 -9.91057e-11 2.2942e-11 -9.24962e-11 2.67736e-11 -8.3988e-11 2.95089e-11 -7.42285e-11 3.1054e-11 -6.38283e-11 3.14205e-11 -5.35224e-11 3.07195e-11 -4.40329e-11 2.91617e-11 -3.60541e-11 2.70527e-11 -3.01551e-11 2.47444e-11 -2.66823e-11 2.2596e-11 -2.56984e-11 2.09284e-11 -2.70797e-11 2.00106e-11 -3.04615e-11 2.00438e-11 -3.53765e-11 2.1148e-11 -4.12028e-11 2.33516e-11 -4.73125e-11 2.66296e-11 -5.30877e-11 3.08774e-11 -5.79415e-11 3.59527e-11 -6.13876e-11 4.1661e-11 -6.29996e-11 4.7809e-11 -6.25279e-11 5.42138e-11 -5.98275e-11 6.07039e-11 -5.48149e-11 6.7111e-11 -4.74467e-11 7.32659e-11 -3.7732e-11 7.90469e-11 -2.57971e-11 8.43495e-11 -1.17766e-11 8.91462e-11 4.11617e-12 9.34023e-11 2.17992e-11 9.71538e-11 4.11957e-11 1.00484e-10 6.22196e-11 1.03435e-10 8.53094e-11 1.0608e-10 1.10775e-10 1.08098e-10 1.40011e-10 1.09034e-10 1.73271e-10 1.07561e-10 2.06955e-10 1.0381e-10 2.15606e-10 1.34902e-10 1.01269e-10 -2.63079e-12 2.6793e-11 -4.50573e-12 3.18576e-11 -4.91519e-12 2.7554e-11 -4.27916e-12 2.33027e-11 -2.97968e-12 2.07499e-11 -1.48291e-12 2.03468e-11 -3.61172e-13 2.24455e-11 -6.78187e-14 2.68075e-11 -8.1458e-13 3.24134e-11 -2.73515e-12 3.83648e-11 -5.72898e-12 4.34912e-11 -9.44488e-12 4.66532e-11 -1.33763e-11 4.7139e-11 -1.70091e-11 4.47584e-11 -1.98905e-11 3.97594e-11 -2.16768e-11 3.27536e-11 -2.21886e-11 2.46361e-11 -2.14016e-11 1.63861e-11 -1.94386e-11 8.97385e-12 -1.65742e-11 3.30158e-12 -1.3206e-11 6.46351e-14 -9.70656e-12 -5.06881e-13 -6.44904e-12 1.65597e-12 -3.77749e-12 6.40004e-12 -1.95493e-12 1.33489e-11 -1.23086e-12 2.21168e-11 -1.7169e-12 3.2003e-11 -3.52405e-12 4.24026e-11 -6.72228e-12 5.26464e-11 -1.11702e-11 6.17107e-11 -1.65647e-11 6.87226e-11 -2.25065e-11 7.30781e-11 -2.85651e-11 7.45373e-11 -3.44119e-11 7.33393e-11 -3.98822e-11 7.00036e-11 -4.49414e-11 6.50446e-11 -4.96355e-11 5.88136e-11 -5.40131e-11 5.14131e-11 -5.80308e-11 4.26545e-11 -6.15359e-11 3.22817e-11 -6.42648e-11 2.008e-11 -6.58854e-11 6.08334e-12 -6.61076e-11 -9.27619e-12 -6.47876e-11 -2.51514e-11 -6.20226e-11 -4.04191e-11 -5.80717e-11 -5.41319e-11 -5.33132e-11 -6.55575e-11 -4.82007e-11 -7.43024e-11 -4.31448e-11 -8.04236e-11 -3.84505e-11 -8.43479e-11 -3.42971e-11 -8.6696e-11 -3.07003e-11 -8.82373e-11 -2.75646e-11 -8.96449e-11 -2.46483e-11 -9.15621e-11 -2.16365e-11 -9.43578e-11 -1.82605e-11 -9.79351e-11 -1.43266e-11 -1.01951e-10 -9.73183e-12 -1.05926e-10 -4.47506e-12 -1.0927e-10 1.35266e-12 -1.11396e-10 7.55602e-12 -1.11716e-10 1.38388e-11 -1.09728e-10 1.98137e-11 -1.0508e-10 2.50445e-11 -9.77266e-11 2.91893e-11 -8.81323e-11 3.20665e-11 -7.71052e-11 3.3593e-11 -6.53543e-11 3.37423e-11 -5.36712e-11 3.2655e-11 -4.29452e-11 3.05723e-11 -3.39709e-11 2.78611e-11 -2.74435e-11 2.49359e-11 -2.37568e-11 2.22093e-11 -2.29715e-11 2.00466e-11 -2.49167e-11 1.87575e-11 -2.91722e-11 1.85673e-11 -3.51861e-11 1.96086e-11 -4.2244e-11 2.18993e-11 -4.9603e-11 2.54119e-11 -5.66002e-11 3.0015e-11 -6.25445e-11 3.55463e-11 -6.69189e-11 4.17747e-11 -6.92279e-11 4.84798e-11 -6.92329e-11 5.54622e-11 -6.68097e-11 6.25437e-11 -6.18962e-11 6.95374e-11 -5.44401e-11 7.62569e-11 -4.44513e-11 8.25653e-11 -3.21052e-11 8.83533e-11 -1.75643e-11 9.36146e-11 -1.14474e-12 9.83153e-11 1.70989e-11 1.02528e-10 3.69831e-11 1.06401e-10 5.83468e-11 1.10051e-10 8.16603e-11 1.13726e-10 1.071e-10 1.17226e-10 1.36511e-10 1.2044e-10 1.70057e-10 1.21949e-10 2.05445e-10 1.21799e-10 2.15756e-10 1.34923e-10 1.21778e-10 -3.01885e-12 2.98119e-11 -5.13663e-12 3.39755e-11 -5.61987e-12 2.80374e-11 -4.78343e-12 2.24664e-11 -3.02361e-12 1.89903e-11 -9.51645e-13 1.8275e-11 6.21994e-13 2.0872e-11 1.31275e-12 2.61169e-11 6.39863e-13 3.30865e-11 -1.54576e-12 4.05507e-11 -5.03639e-12 4.69821e-11 -9.39497e-12 5.10119e-11 -1.40207e-11 5.17649e-11 -1.82925e-11 4.90301e-11 -2.16595e-11 4.31264e-11 -2.37114e-11 3.48054e-11 -2.42456e-11 2.51702e-11 -2.32389e-11 1.53792e-11 -2.08302e-11 6.56498e-12 -1.73278e-11 -2.01054e-13 -1.33146e-11 -3.94882e-12 -9.15215e-12 -4.66963e-12 -5.28203e-12 -2.21443e-12 -2.09142e-12 3.20914e-12 7.19961e-14 1.11852e-11 1.11023e-12 2.10782e-11 7.84798e-13 3.23282e-11 -1.09793e-12 4.4285e-11 -4.56586e-12 5.6114e-11 -9.51803e-12 6.66626e-11 -1.55613e-11 7.47656e-11 -2.22198e-11 7.97364e-11 -2.89278e-11 8.1245e-11 -3.52947e-11 7.97061e-11 -4.11643e-11 7.58731e-11 -4.65349e-11 7.0415e-11 -5.15225e-11 6.38011e-11 -5.62408e-11 5.61313e-11 -6.0664e-11 4.70777e-11 -6.46252e-11 3.62429e-11 -6.78025e-11 2.32573e-11 -6.97566e-11 8.03756e-12 -7.00984e-11 -8.93436e-12 -6.86213e-11 -2.66283e-11 -6.54639e-11 -4.35763e-11 -6.09434e-11 -5.86522e-11 -5.55146e-11 -7.09862e-11 -4.97539e-11 -8.00628e-11 -4.41523e-11 -8.6025e-11 -3.90763e-11 -8.94237e-11 -3.47334e-11 -9.10387e-11 -3.11228e-11 -9.18476e-11 -2.81221e-11 -9.26454e-11 -2.54211e-11 -9.42629e-11 -2.26041e-11 -9.71746e-11 -1.93399e-11 -1.01199e-10 -1.53929e-11 -1.05898e-10 -1.06365e-11 -1.10683e-10 -5.06863e-12 -1.14838e-10 1.21532e-12 -1.1768e-10 8.00121e-12 -1.18502e-10 1.49527e-11 -1.16679e-10 2.15803e-11 -1.11707e-10 2.73496e-11 -1.03496e-10 3.18512e-11 -9.26335e-11 3.48885e-11 -8.0142e-11 3.63675e-11 -6.68329e-11 3.62736e-11 -5.3577e-11 3.4742e-11 -4.14132e-11 3.20383e-11 -3.12669e-11 2.86142e-11 -2.4019e-11 2.49618e-11 -2.0104e-11 2.15617e-11 -1.95711e-11 1.88299e-11 -2.21846e-11 1.71118e-11 -2.74537e-11 1.66699e-11 -3.47438e-11 1.76419e-11 -4.32157e-11 2.003e-11 -5.19907e-11 2.38095e-11 -6.03793e-11 2.88148e-11 -6.75494e-11 3.48634e-11 -7.29672e-11 4.16762e-11 -7.60404e-11 4.89956e-11 -7.65519e-11 5.66103e-11 -7.44241e-11 6.43415e-11 -6.96271e-11 7.19811e-11 -6.20794e-11 7.93211e-11 -5.1791e-11 8.62142e-11 -3.89981e-11 9.25306e-11 -2.38804e-11 9.82963e-11 -6.91011e-12 1.03474e-10 1.19213e-11 1.08171e-10 3.22865e-11 1.12606e-10 5.39118e-11 1.16993e-10 7.72731e-11 1.21805e-10 1.02288e-10 1.27041e-10 1.31275e-10 1.3326e-10 1.63838e-10 1.39193e-10 1.99512e-10 1.44976e-10 2.09973e-10 1.30944e-10 1.48955e-10 -3.4997e-12 3.33117e-11 -5.92497e-12 3.64009e-11 -6.5384e-12 2.86509e-11 -5.48228e-12 2.14104e-11 -3.13288e-12 1.6641e-11 -3.33271e-13 1.54755e-11 1.88622e-12 1.86527e-11 3.00623e-12 2.49971e-11 2.44705e-12 3.36459e-11 4.80071e-15 4.29931e-11 -4.0995e-12 5.10865e-11 -9.26636e-12 5.61789e-11 -1.47503e-11 5.72489e-11 -1.98089e-11 5.40887e-11 -2.37693e-11 4.70867e-11 -2.61383e-11 3.71743e-11 -2.67038e-11 2.57355e-11 -2.54402e-11 1.41154e-11 -2.25278e-11 3.65241e-12 -1.82746e-11 -4.4544e-12 -1.34845e-11 -8.7392e-12 -8.54954e-12 -9.60477e-12 -4.00027e-12 -6.76395e-12 -2.34528e-13 -5.56858e-13 2.46104e-12 8.48935e-12 3.85841e-12 1.96806e-11 3.69627e-12 3.249e-11 1.79735e-12 4.61836e-11 -2.07337e-12 5.99844e-11 -7.62959e-12 7.22185e-11 -1.44474e-11 8.15831e-11 -2.19565e-11 8.72453e-11 -2.94127e-11 8.8701e-11 -3.63404e-11 8.66336e-11 -4.26127e-11 8.21453e-11 -4.8273e-11 7.60752e-11 -5.353e-11 6.90582e-11 -5.86048e-11 6.12062e-11 -6.34814e-11 5.19544e-11 -6.79856e-11 4.07472e-11 -7.17263e-11 2.69982e-11 -7.41171e-11 1.04285e-11 -7.46321e-11 -8.41916e-12 -7.29695e-11 -2.82908e-11 -6.93523e-11 -4.71934e-11 -6.41394e-11 -6.38649e-11 -5.79111e-11 -7.72143e-11 -5.13837e-11 -8.659e-11 -4.51533e-11 -9.22552e-11 -3.96556e-11 -9.49213e-11 -3.51402e-11 -9.55539e-11 -3.15589e-11 -9.54287e-11 -2.87807e-11 -9.54235e-11 -2.64037e-11 -9.66398e-11 -2.38731e-11 -9.97051e-11 -2.0787e-11 -1.04285e-10 -1.68697e-11 -1.09815e-10 -1.19602e-11 -1.15592e-10 -6.06472e-12 -1.20734e-10 7.25636e-13 -1.2447e-10 8.16398e-12 -1.2594e-10 1.58662e-11 -1.24381e-10 2.32619e-11 -1.19103e-10 2.96624e-11 -1.09896e-10 3.45666e-11 -9.75373e-11 3.7784e-11 -8.33591e-11 3.92157e-11 -6.82643e-11 3.88295e-11 -5.31905e-11 3.67724e-11 -3.93558e-11 3.33233e-11 -2.78175e-11 2.90544e-11 -1.97498e-11 2.45469e-11 -1.55961e-11 2.03694e-11 -1.53932e-11 1.69896e-11 -1.88044e-11 1.4778e-11 -2.52415e-11 1.40502e-11 -3.40154e-11 1.49445e-11 -4.41093e-11 1.7441e-11 -5.44865e-11 2.15335e-11 -6.44712e-11 2.70075e-11 -7.30228e-11 3.36625e-11 -7.96217e-11 4.11561e-11 -8.35336e-11 4.91745e-11 -8.45699e-11 5.75053e-11 -8.27544e-11 6.59872e-11 -7.81088e-11 7.43806e-11 -7.04725e-11 8.24521e-11 -5.98623e-11 9.003e-11 -4.65759e-11 9.69805e-11 -3.08306e-11 1.03384e-10 -1.33139e-11 1.09157e-10 6.14856e-12 1.14458e-10 2.69857e-11 1.19562e-10 4.88078e-11 1.24798e-10 7.20374e-11 1.30916e-10 9.61703e-11 1.38128e-10 1.24063e-10 1.48134e-10 1.53833e-10 1.60064e-10 1.87582e-10 1.74331e-10 1.95706e-10 1.21682e-10 1.83594e-10 -4.18056e-12 3.74923e-11 -7.0165e-12 3.92369e-11 -7.80232e-12 2.94368e-11 -6.48811e-12 2.00962e-11 -3.32841e-12 1.34813e-11 2.65133e-13 1.1882e-11 3.34848e-12 1.55694e-11 5.06113e-12 2.32846e-11 4.66273e-12 3.40444e-11 1.90722e-12 4.57488e-11 -2.94788e-12 5.59417e-11 -9.10048e-12 6.23316e-11 -1.56306e-11 6.3779e-11 -2.16472e-11 6.01053e-11 -2.63252e-11 5.17646e-11 -2.90655e-11 3.99145e-11 -2.96747e-11 2.63446e-11 -2.80887e-11 1.25293e-11 -2.43234e-11 -1.13015e-13 -1.94361e-11 -9.34177e-12 -1.38255e-11 -1.435e-11 -7.97899e-12 -1.54514e-11 -2.59049e-12 -1.21526e-11 1.75083e-12 -4.89837e-12 4.97521e-12 5.26477e-12 6.76211e-12 1.78935e-11 6.79566e-12 3.24562e-11 4.92384e-12 4.80552e-11 6.91098e-13 6.42169e-11 -5.62276e-12 7.85321e-11 -1.33718e-11 8.93319e-11 -2.19224e-11 9.57956e-11 -3.02455e-11 9.70239e-11 -3.77609e-11 9.41489e-11 -4.44469e-11 8.88311e-11 -5.03451e-11 8.19735e-11 -5.58266e-11 7.45397e-11 -6.12693e-11 6.66491e-11 -6.66542e-11 5.73394e-11 -7.18133e-11 4.59064e-11 -7.62784e-11 3.14634e-11 -7.92436e-11 1.33939e-11 -8.00139e-11 -7.64875e-12 -7.81508e-11 -3.01538e-11 -7.40022e-11 -5.13419e-11 -6.79969e-11 -6.987e-11 -6.07942e-11 -8.4417e-11 -5.33685e-11 -9.40155e-11 -4.64011e-11 -9.92225e-11 -4.04456e-11 -1.00877e-10 -3.58163e-11 -1.00183e-10 -3.23862e-11 -9.88588e-11 -2.99793e-11 -9.78303e-11 -2.80762e-11 -9.85428e-11 -2.59399e-11 -1.01841e-10 -2.31221e-11 -1.07103e-10 -1.92945e-11 -1.13643e-10 -1.42506e-11 -1.20636e-10 -8.02224e-12 -1.26962e-10 -6.90771e-13 -1.31802e-10 7.51773e-12 -1.34149e-10 1.60676e-11 -1.3293e-10 2.43475e-11 -1.27382e-10 3.1463e-11 -1.17011e-10 3.6798e-11 -1.02872e-10 4.01905e-11 -8.67514e-11 4.15395e-11 -6.96131e-11 4.07977e-11 -5.24486e-11 3.81244e-11 -3.66823e-11 3.3762e-11 -2.34549e-11 2.83647e-11 -1.43523e-11 2.27254e-11 -9.95642e-12 1.77569e-11 -1.04242e-11 1.372e-11 -1.47668e-11 1.09896e-11 -2.25104e-11 1.00012e-11 -3.30263e-11 1.08593e-11 -4.49666e-11 1.352e-11 -5.71464e-11 1.80204e-11 -6.8971e-11 2.40637e-11 -7.90655e-11 3.14469e-11 -8.70042e-11 3.97642e-11 -9.18503e-11 4.86272e-11 -9.34325e-11 5.7854e-11 -9.19809e-11 6.72943e-11 -8.7549e-11 7.66694e-11 -7.98475e-11 8.57357e-11 -6.89285e-11 9.42809e-11 -5.5121e-11 1.02154e-10 -3.87033e-11 1.09517e-10 -2.06768e-11 1.16226e-10 -5.60587e-13 1.22478e-10 2.07334e-11 1.28586e-10 4.26995e-11 1.35015e-10 6.56091e-11 1.4281e-10 8.83744e-11 1.52311e-10 1.14563e-10 1.66798e-10 1.39346e-10 1.8602e-10 1.6836e-10 2.1038e-10 1.71346e-10 1.08183e-10 2.23879e-10 -5.23083e-12 4.27232e-11 -8.65687e-12 4.2663e-11 -9.63771e-12 3.04176e-11 -8.05879e-12 1.85173e-11 -4.10717e-12 9.52969e-12 9.47882e-13 6.82697e-12 5.25722e-12 1.12601e-11 7.62347e-12 2.09184e-11 7.29229e-12 3.43757e-11 4.13387e-12 4.89073e-11 -1.63369e-12 6.17094e-11 -8.98465e-12 6.96826e-11 -1.68174e-11 7.16118e-11 -2.40211e-11 6.7309e-11 -2.95817e-11 5.73252e-11 -3.27474e-11 4.30802e-11 -3.34327e-11 2.70299e-11 -3.21483e-11 1.12448e-11 -2.71162e-11 -5.1451e-12 -2.10954e-11 -1.53627e-11 -1.44935e-11 -2.09519e-11 -7.6224e-12 -2.23226e-11 -1.47527e-12 -1.82998e-11 3.4635e-12 -9.83724e-12 7.62792e-12 1.10023e-12 9.8113e-12 1.571e-11 1.00921e-11 3.21753e-11 8.29057e-12 4.98566e-11 3.52309e-12 6.89842e-11 -3.68104e-12 8.57361e-11 -1.25811e-11 9.82319e-11 -2.24741e-11 1.05688e-10 -3.18195e-11 1.06369e-10 -3.99698e-11 1.02299e-10 -4.70943e-11 9.59556e-11 -5.31747e-11 8.80539e-11 -5.88401e-11 8.02052e-11 -6.47176e-11 7.25268e-11 -7.07116e-11 6.33335e-11 -7.67078e-11 5.19028e-11 -8.21697e-11 3.69255e-11 -8.6488e-11 1.77122e-11 -8.73691e-11 -6.76767e-12 -8.51359e-11 -3.2387e-11 -8.04085e-11 -5.60694e-11 -7.34904e-11 -7.67881e-11 -6.51133e-11 -9.27941e-11 -5.66429e-11 -1.02486e-10 -4.8822e-11 -1.07043e-10 -4.23689e-11 -1.0733e-10 -3.77292e-11 -1.04823e-10 -3.45766e-11 -1.02011e-10 -3.27373e-11 -9.96696e-11 -3.15318e-11 -9.97484e-11 -2.9952e-11 -1.03421e-10 -2.75616e-11 -1.09494e-10 -2.39506e-11 -1.17254e-10 -1.8819e-11 -1.25768e-10 -1.22703e-11 -1.33511e-10 -4.35158e-12 -1.3972e-10 4.66572e-12 -1.43166e-10 1.41891e-11 -1.42454e-10 2.34578e-11 -1.36651e-10 3.13655e-11 -1.24918e-10 3.71659e-11 -1.08672e-10 4.07078e-11 -9.02932e-11 4.1902e-11 -7.08072e-11 4.07078e-11 -5.12543e-11 3.73752e-11 -3.33495e-11 3.24232e-11 -1.85026e-11 2.62475e-11 -8.1763e-12 1.88962e-11 -2.6048e-12 1.25359e-11 -4.06339e-12 7.52197e-12 -9.75227e-12 4.14006e-12 -1.91278e-11 2.88274e-12 -3.17682e-11 3.71372e-12 -4.57968e-11 6.62786e-12 -6.00598e-11 1.1764e-11 -7.41064e-11 1.86587e-11 -8.59595e-11 2.71208e-11 -9.54657e-11 3.66558e-11 -1.01385e-10 4.66998e-11 -1.03476e-10 5.71874e-11 -1.02468e-10 6.80069e-11 -9.83683e-11 7.88452e-11 -9.06857e-11 8.94435e-11 -7.95266e-11 9.95557e-11 -6.52331e-11 1.08983e-10 -4.81307e-11 1.18049e-10 -2.97428e-11 1.26635e-10 -9.14659e-12 1.34677e-10 1.26908e-11 1.4259e-10 3.47864e-11 1.51049e-10 5.71507e-11 1.61417e-10 7.80063e-11 1.73725e-10 1.02255e-10 1.9344e-10 1.1963e-10 2.20102e-10 1.41699e-10 2.53333e-10 1.38115e-10 9.32364e-11 2.68279e-10 -7.03592e-12 4.97591e-11 -1.11154e-11 4.67424e-11 -1.22625e-11 3.15647e-11 -9.34904e-12 1.56038e-11 -4.10975e-12 4.29035e-12 1.52147e-12 1.1957e-12 6.61682e-12 6.1646e-12 9.98404e-12 1.7551e-11 1.00976e-11 3.42621e-11 6.37261e-12 5.26323e-11 -6.5457e-13 6.87366e-11 -9.49511e-12 7.85231e-11 -1.89481e-11 8.10648e-11 -2.76628e-11 7.60238e-11 -3.43685e-11 6.40309e-11 -3.8032e-11 4.67438e-11 -3.84163e-11 2.74142e-11 -3.53368e-11 8.16538e-12 -3.09462e-11 -9.53554e-12 -2.40156e-11 -2.22938e-11 -1.64977e-11 -2.84703e-11 -8.37759e-12 -3.04433e-11 -1.34631e-12 -2.53313e-11 4.09133e-12 -1.52757e-11 8.78473e-12 -3.59212e-12 1.14355e-11 1.30592e-11 1.20464e-11 3.15643e-11 1.05386e-11 5.13644e-11 5.04898e-12 7.44738e-11 -3.20777e-12 9.39928e-11 -1.34875e-11 1.08512e-10 -2.51175e-11 1.17318e-10 -3.56408e-11 1.16892e-10 -4.44429e-11 1.11101e-10 -5.21369e-11 1.0365e-10 -5.842e-11 9.43372e-11 -6.43056e-11 8.6091e-11 -7.08383e-11 7.90596e-11 -7.76933e-11 7.01887e-11 -8.49037e-11 5.91132e-11 -9.14155e-11 4.34372e-11 -9.49066e-11 2.12033e-11 -9.86865e-11 -2.98783e-12 -9.6428e-11 -3.46445e-11 -9.11862e-11 -6.13111e-11 -8.31835e-11 -8.47909e-11 -7.32843e-11 -1.02693e-10 -6.35653e-11 -1.12205e-10 -5.4696e-11 -1.15913e-10 -4.7715e-11 -1.14311e-10 -4.33478e-11 -1.0919e-10 -4.08431e-11 -1.04516e-10 -3.99824e-11 -1.0053e-10 -3.98426e-11 -9.98881e-11 -3.90053e-11 -1.04259e-10 -3.72274e-11 -1.11271e-10 -3.39492e-11 -1.20532e-10 -2.86797e-11 -1.31038e-10 -2.17044e-11 -1.40486e-10 -1.30065e-11 -1.48418e-10 -2.96607e-12 -1.53206e-10 7.49634e-12 -1.52916e-10 1.7659e-11 -1.46813e-10 2.63899e-11 -1.33649e-10 3.26896e-11 -1.14972e-10 3.63864e-11 -9.39899e-11 3.7189e-11 -7.16098e-11 3.47997e-11 -4.88649e-11 2.97665e-11 -2.83161e-11 2.32315e-11 -1.19675e-11 1.64187e-11 -1.36349e-12 8.95432e-12 4.85992e-12 2.38188e-12 2.50954e-12 -3.21537e-12 -4.15505e-12 -7.34389e-12 -1.49989e-11 -8.63778e-12 -3.04735e-11 -7.4571e-12 -4.69767e-11 -3.91215e-12 -6.3604e-11 2.30963e-12 -8.03275e-11 1.04732e-11 -9.41225e-11 2.04602e-11 -1.05452e-10 3.17554e-11 -1.1268e-10 4.34926e-11 -1.15213e-10 5.59214e-11 -1.14897e-10 6.88558e-11 -1.11303e-10 8.19148e-11 -1.03745e-10 9.49669e-11 -9.25785e-11 1.07719e-10 -7.79854e-11 1.19894e-10 -6.03052e-11 1.3159e-10 -4.1439e-11 1.422e-10 -1.97588e-11 1.55194e-10 -3.02979e-13 1.6695e-10 2.30308e-11 1.79424e-10 4.46768e-11 1.94044e-10 6.33866e-11 2.10469e-10 8.58297e-11 2.348e-10 9.52994e-11 2.65071e-10 1.11428e-10 2.96741e-10 1.06445e-10 8.91156e-11 3.00862e-10 -1.13479e-11 6.1107e-11 -1.59056e-11 5.13e-11 -1.79198e-11 3.35788e-11 -1.48497e-11 1.25339e-11 -6.54958e-12 -1.01263e-12 2.27912e-12 -1.9274e-12 1.02324e-11 -4.51615e-13 1.5084e-11 9.52414e-12 1.48454e-11 3.45008e-11 9.5364e-12 5.79413e-11 -2.86351e-14 7.83017e-11 -1.18337e-11 9.03283e-11 -2.45807e-11 9.38119e-11 -3.60411e-11 8.74842e-11 -4.44694e-11 7.24594e-11 -4.97451e-11 5.20195e-11 -5.16037e-11 2.9273e-11 -4.78305e-11 4.39221e-12 -3.89652e-11 -4.66888e-12 -2.97018e-11 -8.00402e-12 -2.08436e-11 -9.46444e-12 -1.07396e-11 -1.02769e-11 -2.46104e-12 -8.51574e-12 4.53461e-12 -5.64116e-12 1.06487e-11 -2.4585e-12 1.27577e-11 8.20577e-12 1.33726e-11 2.31942e-11 1.22658e-11 3.93254e-11 5.02794e-12 6.1246e-11 -5.37775e-12 7.82595e-11 -1.82965e-11 9.10392e-11 -3.34623e-11 9.93413e-11 -4.66824e-11 9.75802e-11 -5.7452e-11 1.21871e-10 -6.6913e-11 1.13111e-10 -7.40822e-11 1.01506e-10 -8.06815e-11 9.26904e-11 -8.84326e-11 8.68108e-11 -9.63635e-11 7.81197e-11 -1.05071e-10 6.78207e-11 -1.14008e-10 5.23736e-11 -1.204e-10 2.75954e-11 -1.21313e-10 -5.35156e-13 -1.16966e-10 -1.00586e-11 -1.10256e-10 -1.75437e-11 -1.00322e-10 -2.44233e-11 -8.7644e-11 -2.97352e-11 -7.59096e-11 -3.19288e-11 -6.54026e-11 -3.25517e-11 -5.76706e-11 -3.14084e-11 -5.43612e-11 -2.89372e-11 -5.37885e-11 -2.70179e-11 -5.49818e-11 -2.55294e-11 -5.67731e-11 -2.52025e-11 -5.71461e-11 -2.66825e-11 -5.64713e-11 -2.87447e-11 -5.39821e-11 -3.15794e-11 -4.86534e-11 -3.4994e-11 -4.11169e-11 -3.79708e-11 -3.12491e-11 -4.05856e-11 -1.98384e-11 -4.21871e-11 -8.68744e-12 -4.20223e-11 1.30366e-12 -4.01404e-11 1.06495e-11 -3.659e-11 1.82642e-11 -3.13571e-11 2.33144e-11 -2.53256e-11 2.48065e-11 -1.86868e-11 2.24647e-11 -1.18878e-11 1.68567e-11 -5.79727e-12 9.24031e-12 -1.10312e-12 -1.49519e-13 5.9788e-12 -9.78295e-12 1.07705e-11 -1.72226e-11 7.3966e-12 -2.3223e-11 1.38846e-12 -2.78932e-11 -2.63733e-12 -2.85178e-11 -7.63798e-12 -2.62311e-11 -1.26098e-11 -2.13073e-11 -1.7541e-11 -1.27607e-11 -2.27459e-11 -2.54117e-12 -2.66951e-11 9.47146e-12 -3.00388e-11 2.32053e-11 -3.2311e-11 3.75292e-11 -3.30903e-11 5.30928e-11 -3.3305e-11 6.92776e-11 -3.25226e-11 8.51025e-11 -3.04773e-11 1.01945e-10 -2.78699e-11 1.19304e-10 -2.42652e-11 1.37141e-10 -1.98731e-11 1.54874e-10 -1.50374e-11 1.71812e-10 -9.3206e-12 1.88969e-10 -4.43808e-12 2.05771e-10 4.55758e-12 2.26159e-10 1.78977e-11 2.46502e-10 3.17983e-11 2.73147e-10 4.37469e-11 2.95278e-10 5.4204e-11 3.19667e-10 6.44994e-11 3.30611e-10 7.0841e-11 7.56451e-11 3.17828e-10 -6.41699e-15 3.47747e-18 4.56937e-15 2.1544e-18 8.92474e-15 1.66172e-18 7.01769e-15 2.77217e-17 1.32375e-15 4.30116e-16 9.15512e-15 -3.58669e-23 1.71314e-14 -5.0729e-19 6.4687e-15 -4.93403e-18 -1.82753e-14 7.92071e-19 -3.99225e-14 2.56334e-18 -6.45879e-14 5.49507e-18 -9.14317e-14 8.1628e-18 -1.16827e-13 9.79134e-18 -1.34624e-13 9.4113e-18 -1.4084e-13 7.45362e-18 -1.33607e-13 5.3339e-18 -1.10013e-13 2.22282e-20 -7.87646e-14 -3.86538e-19 -5.65598e-14 -4.1146e-22 -3.96769e-14 -7.3119e-22 -2.54325e-14 -8.5535e-22 -1.28761e-14 -9.06914e-22 -3.71478e-15 -6.8442e-22 1.65799e-15 -5.0314e-22 7.66185e-16 -2.24383e-18 -1.18946e-14 -6.31037e-18 -3.18276e-14 -2.42167e-18 -6.14539e-14 -1.32338e-18 -1.02591e-13 4.63813e-18 -1.51486e-13 1.0683e-17 -2.07818e-13 1.71502e-17 -2.67356e-13 2.22889e-17 -3.58121e-13 3.0701e-17 -4.46972e-13 3.18215e-17 -4.98281e-13 2.40166e-17 -5.35231e-13 1.80671e-17 -5.71902e-13 1.57951e-17 -6.05844e-13 1.67936e-17 -6.29897e-13 1.53632e-17 -6.44669e-13 1.72627e-17 -6.33369e-13 1.78609e-17 -5.80786e-13 8.80326e-18 -5.18893e-13 -7.29498e-22 -4.832e-13 -8.38639e-21 -4.4034e-13 -1.34512e-20 -3.86297e-13 -1.83639e-20 -3.29669e-13 -2.47758e-20 -2.77675e-13 -2.82149e-20 -2.35415e-13 -2.98264e-20 -2.0645e-13 -2.94977e-20 -1.95532e-13 -2.72074e-20 -2.07019e-13 -2.42652e-20 -2.1456e-13 -2.30948e-20 -2.1652e-13 -2.35762e-20 -2.13975e-13 -2.64744e-20 -2.05684e-13 -3.05176e-20 -1.88208e-13 -3.49146e-20 -1.61217e-13 -3.94735e-20 -1.2526e-13 -4.39278e-20 -8.46642e-14 -4.80157e-20 -4.7827e-14 -5.06177e-20 -2.30915e-14 -5.06684e-20 -1.08217e-14 -4.90552e-20 1.71008e-15 -4.65502e-20 1.51587e-14 -4.17175e-20 1.6527e-14 -3.35196e-20 4.9169e-15 -2.35878e-20 -1.13798e-14 -1.37908e-20 -3.36988e-14 -1.9994e-18 -6.28752e-14 -1.83122e-17 -9.76305e-14 1.92536e-18 -1.25862e-13 4.19068e-18 -1.37942e-13 4.14517e-18 -1.42342e-13 1.08175e-17 -1.43371e-13 -2.64626e-22 -1.32619e-13 -6.32598e-21 -1.10881e-13 -1.59377e-20 -7.48629e-14 -2.62309e-20 -3.43837e-14 -3.942e-20 8.27271e-15 -4.89819e-20 4.82392e-14 -5.96455e-20 8.79879e-14 -6.25969e-20 1.34423e-13 -7.35182e-20 1.77795e-13 -7.15351e-20 2.18213e-13 -7.83005e-20 2.44743e-13 -6.54258e-20 2.74673e-13 -6.98148e-20 2.9654e-13 -5.23137e-20 3.22049e-13 -5.30594e-20 3.31883e-13 -3.1401e-20 3.39861e-13 -2.68905e-20 3.43003e-13 -1.05981e-20 3.23014e-13 -2.42335e-22 3.16814e-13 -1.11989e-18 2.74965e-13 5.1648e-19 2.82586e-13 3.19437e-16 1.95396e-13 7.91957e-18 1.71267e-13 2.07367e-18 1.42206e-13 5.59154e-18 4.44663e-18 1.87496e-13 -1.34077e-20 1.62179e-18 -1.41998e-19 9.0294e-19 -1.28778e-19 4.79605e-19 -4.70187e-21 1.32066e-19 -1.4388e-22 1.51879e-21 -1.85902e-22 -1.24233e-23 -5.30878e-19 1.0643e-23 -1.55806e-18 2.19015e-19 -2.48401e-18 1.10438e-18 -3.85045e-18 2.06952e-18 -5.17723e-18 3.45477e-18 -6.21707e-18 4.6228e-18 -6.49447e-18 5.04162e-18 -5.7871e-18 4.33028e-18 -4.12256e-18 2.84275e-18 -1.67389e-18 1.29028e-18 -3.0808e-21 2.55442e-19 -3.22814e-21 8.45906e-24 -3.39244e-21 -6.00543e-22 -3.55265e-21 -9.24086e-22 -3.7039e-21 -1.04943e-21 -3.85805e-21 -1.08014e-21 -3.9808e-21 -8.61269e-22 -4.27692e-21 -4.68287e-22 -2.31223e-18 4.55879e-24 -5.42677e-18 2.04287e-19 -9.26249e-18 9.39785e-19 -1.49475e-17 2.33725e-18 -2.02283e-17 5.03632e-18 -2.56381e-17 8.08794e-18 -3.07718e-17 1.11603e-17 -3.58463e-17 1.38151e-17 -3.69483e-17 1.59095e-17 -3.50739e-17 1.49302e-17 -3.43533e-17 1.16546e-17 -3.49476e-17 9.36012e-18 -3.54829e-17 8.16832e-18 -3.33634e-17 7.33096e-18 -2.98865e-17 5.92025e-18 -2.13815e-17 4.33046e-18 -6.36198e-18 2.12932e-18 -2.04085e-20 2.29882e-19 -2.05053e-20 -4.20619e-21 -2.06614e-20 -1.21466e-20 -2.08594e-20 -2.0405e-20 -2.10981e-20 -2.84264e-20 -2.13011e-20 -3.48021e-20 -2.13842e-20 -3.81055e-20 -2.14065e-20 -3.92915e-20 -2.13731e-20 -3.83782e-20 -2.13079e-20 -3.5343e-20 -2.12414e-20 -3.15652e-20 -2.11967e-20 -2.96086e-20 -2.11591e-20 -2.94737e-20 -2.11771e-20 -3.20737e-20 -2.12038e-20 -3.64718e-20 -2.12419e-20 -4.18698e-20 -2.12821e-20 -4.78354e-20 -2.12897e-20 -5.35716e-20 -2.12949e-20 -5.83182e-20 -2.13063e-20 -6.09927e-20 -2.13041e-20 -6.07473e-20 -2.12498e-20 -5.86217e-20 -2.11305e-20 -5.54119e-20 -2.09302e-20 -4.97535e-20 -2.06702e-20 -4.06197e-20 -2.03767e-20 -2.97849e-20 -2.03305e-20 -1.90433e-20 -2.04146e-18 -8.64319e-21 -6.77938e-18 1.33324e-21 -8.09202e-18 2.07995e-19 -4.69941e-18 3.4431e-19 -1.06211e-18 1.22931e-19 -1.16525e-20 9.39619e-22 -1.15314e-20 -6.91004e-21 -1.14393e-20 -1.76713e-20 -1.13152e-20 -3.01008e-20 -1.11638e-20 -4.31202e-20 -1.09865e-20 -5.64213e-20 -1.07684e-20 -6.60801e-20 -1.05141e-20 -7.66937e-20 -1.01978e-20 -8.16921e-20 -9.81845e-21 -9.17341e-20 -9.38864e-21 -8.9053e-20 -8.93852e-21 -9.52669e-20 -8.42563e-21 -8.21184e-20 -7.90844e-21 -8.6321e-20 -7.32062e-21 -6.88677e-20 -6.72684e-21 -6.9669e-20 -6.07836e-21 -4.81225e-20 -5.40676e-21 -4.36548e-20 -4.7827e-21 -2.71899e-20 -4.08912e-21 -1.68917e-20 -1.23056e-18 -9.49258e-21 -8.1995e-20 6.00423e-20 -1.36654e-18 -3.89884e-21 -1.05049e-18 1.17369e-18 -1.55839e-18 1.50079e-18 -1.7997e-18 3.05108e-18 3.25961e-18 -3.66353e-18 2.631e-23 1.209e-21 -1.75307e-22 1.12346e-21 -3.54517e-22 8.10311e-22 -5.56304e-22 5.11883e-22 -7.67249e-22 3.60742e-22 -9.38837e-22 2.4275e-22 -1.03729e-21 2.58281e-22 -1.37437e-21 3.98797e-22 -2.01981e-21 7.01031e-22 -3.20065e-21 1.16659e-21 -4.89621e-21 1.99582e-21 -6.76825e-21 3.12079e-21 -8.31001e-21 4.1008e-21 -9.5723e-21 4.39106e-21 -1.05374e-20 4.02512e-21 -1.11469e-20 3.17571e-21 -1.14836e-20 2.1015e-21 -1.18423e-20 1.02178e-21 -1.21274e-20 3.18801e-22 -1.23891e-20 -7.1504e-26 -1.26051e-20 -2.37335e-25 -1.28425e-20 -2.82065e-25 -1.30275e-20 -1.75878e-25 -1.32119e-20 7.35429e-23 -1.32387e-20 4.97634e-22 -1.38416e-20 1.08311e-21 -1.55706e-20 1.78563e-21 -1.96218e-20 2.72404e-21 -2.67825e-20 4.36851e-21 -3.73875e-20 7.02373e-21 -5.15991e-20 1.08167e-20 -6.93132e-20 1.56973e-20 -8.99415e-20 2.12818e-20 -1.09038e-19 2.62973e-20 -1.26945e-19 2.8072e-20 -1.44102e-19 2.80312e-20 -1.59921e-19 2.74506e-20 -1.73499e-19 2.65196e-20 -1.84255e-19 2.44767e-20 -1.91796e-19 2.10816e-20 -1.96287e-19 1.56716e-20 -2.00272e-19 7.93251e-21 -2.04903e-19 -1.00638e-24 -2.09315e-19 -1.60522e-23 -2.1409e-19 -3.04044e-23 -2.19438e-19 -4.34515e-23 -2.25985e-19 -5.36859e-23 -2.3401e-19 -5.9528e-23 -2.42829e-19 -6.22195e-23 -2.51896e-19 -6.19774e-23 -2.55453e-19 -5.91042e-23 -2.52351e-19 -5.73527e-23 -2.50533e-19 -5.0852e-23 -2.5728e-19 -5.02304e-23 -2.67967e-19 -5.46192e-23 -2.75126e-19 -6.25989e-23 -2.79406e-19 -7.14721e-23 -2.83805e-19 -8.07729e-23 -2.88584e-19 -9.02168e-23 -2.94306e-19 -9.83713e-23 -3.01395e-19 -1.02993e-22 -3.10178e-19 -1.02755e-22 -3.17528e-19 -9.99399e-23 -3.24146e-19 -9.57893e-23 -3.29583e-19 -8.84157e-23 -3.34443e-19 -7.47174e-23 -3.38323e-19 -5.82045e-23 -3.41e-19 -4.12244e-23 -3.43235e-19 -2.4648e-23 -3.44421e-19 -1.04742e-23 -3.46213e-19 -6.195e-25 -3.47062e-19 2.45948e-21 -3.5051e-19 5.38678e-22 -3.53477e-19 -7.19066e-24 -3.56926e-19 -1.92598e-23 -3.62709e-19 -3.67498e-23 -3.6536e-19 -5.81881e-23 -3.74384e-19 -7.96997e-23 -3.72931e-19 -1.03511e-22 -3.86157e-19 -1.19078e-22 -3.75557e-19 -1.6197e-22 -3.92879e-19 -1.47478e-22 -3.67998e-19 -1.97027e-22 -3.8986e-19 -1.61756e-22 -3.48192e-19 -2.07758e-22 -3.72357e-19 -1.51808e-22 -3.14655e-19 -1.91381e-22 -3.37851e-19 -1.29058e-22 -2.70251e-19 -1.56004e-22 -2.87209e-19 -9.42055e-23 -2.17918e-19 -1.04135e-22 -2.23617e-19 -5.9759e-23 -1.64701e-19 -5.52606e-23 -1.5864e-19 -3.38234e-23 -1.19072e-19 -2.00951e-23 -1.08967e-19 -2.72608e-23 -7.73335e-20 1.46124e-20 -4.28231e-20 1.84962e-20 -2.53529e-20 1.59999e-20 1.05933e-20 -2.58161e-20 1.29248e-27 7.66185e-25 -1.74662e-25 1.18493e-24 -3.70894e-25 9.58565e-25 -5.50414e-25 7.31866e-25 -6.82801e-25 5.54374e-25 -8.43641e-25 4.14641e-25 -1.03595e-24 4.00991e-25 -1.35704e-24 4.95541e-25 -1.75799e-24 7.07784e-25 -2.41201e-24 9.62934e-25 -3.51871e-24 1.36418e-24 -5.12203e-24 1.99696e-24 -6.79539e-24 2.78018e-24 -8.6175e-24 3.31606e-24 -1.04688e-23 3.53941e-24 -1.17385e-23 3.37554e-24 -1.22956e-23 2.76135e-24 -1.24216e-23 1.93599e-24 -1.2237e-23 1.26517e-24 -1.18816e-23 8.13742e-25 -1.15909e-23 5.45329e-25 -1.14576e-23 4.19997e-25 -1.13758e-23 4.4266e-25 -1.16553e-23 5.86114e-25 -1.20364e-23 8.32653e-25 -1.34355e-23 1.1935e-24 -1.59403e-23 1.7538e-24 -2.02241e-23 2.58611e-24 -2.72747e-23 3.93252e-24 -3.87541e-23 6.06387e-24 -5.63996e-23 9.40235e-24 -8.21499e-23 1.43645e-23 -1.171e-22 2.11936e-23 -1.59055e-22 2.93243e-23 -2.04709e-22 3.65724e-23 -2.53345e-22 4.20004e-23 -3.02478e-22 4.5924e-23 -3.50219e-22 4.81564e-23 -3.93135e-22 4.78612e-23 -4.28419e-22 4.41991e-23 -4.51735e-22 3.62001e-23 -4.61238e-22 2.34034e-23 -4.65306e-22 8.16422e-24 -4.68112e-22 -8.84447e-27 -4.7031e-22 -2.6873e-26 -4.73199e-22 -4.22152e-26 -4.79599e-22 -5.3897e-26 -4.93289e-22 -6.11263e-26 -5.1237e-22 -6.52385e-26 -5.38023e-22 -6.65592e-26 -5.5009e-22 -6.56775e-26 -5.38892e-22 -6.20286e-26 -5.3143e-22 -5.81849e-26 -5.51605e-22 -5.71593e-26 -5.84485e-22 -6.21526e-26 -6.0287e-22 -7.15432e-26 -6.11042e-22 -8.121e-26 -6.21672e-22 -9.0816e-26 -6.35672e-22 -1.00992e-25 -6.49713e-22 -1.09991e-25 -6.62909e-22 -1.15166e-25 -6.80234e-22 -1.15244e-25 -6.97633e-22 -1.1329e-25 -7.18258e-22 -1.09681e-25 -7.32426e-22 -1.03596e-25 -7.47697e-22 -9.05873e-26 -7.58679e-22 -7.49021e-26 -7.69536e-22 -5.79141e-26 -7.75445e-22 -4.15634e-26 -7.80858e-22 -2.70624e-26 -7.85659e-22 -1.68037e-26 -7.90704e-22 -1.14909e-26 -7.94344e-22 -1.39186e-26 -8.01829e-22 -2.19698e-26 -8.03734e-22 -3.51391e-26 -8.19947e-22 -5.32287e-26 -8.16133e-22 -7.71359e-26 -8.42187e-22 -1.00136e-25 -8.24741e-22 -1.28904e-25 -8.65484e-22 -1.46171e-25 -8.27005e-22 -1.74978e-25 -8.8062e-22 -1.81837e-25 -8.0965e-22 -2.11806e-25 -8.74663e-22 -2.01357e-25 -7.67079e-22 -2.25176e-25 -8.35935e-22 -1.95095e-25 -6.91901e-22 -2.13538e-25 -7.57668e-22 -1.72618e-25 -5.96581e-22 -1.84227e-25 -6.56808e-22 -1.38143e-25 -5.04724e-22 -1.43589e-25 -5.70855e-22 -1.07936e-25 -4.80119e-22 -1.14863e-25 -6.62662e-22 -1.12297e-25 -8.52392e-22 -1.61094e-25 -1.67781e-21 -2.64797e-25 -1.86158e-21 9.67397e-23 -1.54736e-21 2.35547e-22 -6.35697e-22 3.21638e-22 1.60484e-22 -1.73019e-22 -3.67217e-29 1.66029e-27 -2.05762e-28 1.5072e-27 -3.85063e-28 1.16501e-27 -5.20115e-28 9.25808e-28 -6.13351e-28 6.99718e-28 -7.56767e-28 5.39152e-28 -9.36456e-28 5.11584e-28 -1.24631e-27 5.68859e-28 -1.58952e-27 7.40034e-28 -2.03746e-27 9.31531e-28 -2.72115e-27 1.17979e-27 -3.86706e-27 1.53854e-27 -5.16377e-27 2.07423e-27 -6.72059e-27 2.52213e-27 -8.50877e-27 2.85839e-27 -9.68331e-27 3.01152e-27 -1.02159e-26 2.73409e-27 -1.04507e-26 2.21898e-27 -1.04857e-26 1.73871e-27 -1.01049e-26 1.36835e-27 -9.55826e-27 1.08184e-27 -9.11315e-27 8.95063e-28 -8.84766e-27 8.21653e-28 -8.99939e-27 8.44665e-28 -9.07216e-27 9.65662e-28 -1.0199e-26 1.13557e-27 -1.24625e-26 1.49502e-27 -1.63816e-26 2.10678e-27 -2.26506e-26 3.14078e-27 -3.29022e-26 4.7955e-27 -4.95575e-26 7.45585e-27 -7.59411e-26 1.16709e-26 -1.15109e-25 1.80543e-26 -1.68456e-25 2.67454e-26 -2.33705e-25 3.67778e-26 -3.10018e-25 4.67427e-26 -3.93193e-25 5.59869e-26 -4.79601e-25 6.33263e-26 -5.61795e-25 6.73668e-26 -6.32663e-25 6.63556e-26 -6.81452e-25 5.88646e-26 -7.0153e-25 4.42553e-26 -6.93861e-25 2.50289e-26 -6.80697e-25 5.36358e-27 -6.67817e-25 -1.35036e-29 -6.57453e-25 -2.89284e-29 -6.55239e-25 -4.01208e-29 -6.67997e-25 -4.72256e-29 -6.92006e-25 -5.16489e-29 -7.29189e-25 -5.39009e-29 -7.43754e-25 -5.48459e-29 -7.16881e-25 -5.3249e-29 -6.96468e-25 -5.00844e-29 -7.23342e-25 -4.89756e-29 -7.73553e-25 -5.32874e-29 -8.00037e-25 -6.15531e-29 -8.10391e-25 -6.9672e-29 -8.2682e-25 -7.7331e-29 -8.48503e-25 -8.57318e-29 -8.67791e-25 -9.3183e-29 -8.82294e-25 -9.77061e-29 -9.04989e-25 -9.81929e-29 -9.26923e-25 -9.75647e-29 -9.59276e-25 -9.51666e-29 -9.79292e-25 -9.17051e-29 -1.00565e-24 -8.26815e-29 -1.02193e-24 -7.20202e-29 -1.04452e-24 -5.95895e-29 -1.05419e-24 -4.81092e-29 -1.06901e-24 -3.73361e-29 -1.07149e-24 -3.00745e-29 -1.08065e-24 -2.62349e-29 -1.07955e-24 -2.83872e-29 -1.09201e-24 -3.48682e-29 -1.08511e-24 -4.65357e-29 -1.11505e-24 -6.13822e-29 -1.10295e-24 -8.28365e-29 -1.1545e-24 -1.02243e-28 -1.12254e-24 -1.29807e-28 -1.19622e-24 -1.45264e-28 -1.13062e-24 -1.75476e-28 -1.22177e-24 -1.82172e-28 -1.11145e-24 -2.14752e-28 -1.21959e-24 -2.06513e-28 -1.06722e-24 -2.35557e-28 -1.1809e-24 -2.10755e-28 -9.8804e-25 -2.36127e-28 -1.10588e-24 -2.0111e-28 -9.10227e-25 -2.23364e-28 -1.05724e-24 -1.86584e-28 -9.1704e-25 -2.14613e-28 -1.22518e-24 -2.00791e-28 -1.47596e-24 -2.90739e-28 -3.56191e-24 -4.9587e-28 -8.3452e-24 -1.3875e-27 -2.54561e-23 -3.05518e-27 -4.0242e-23 7.3376e-25 -4.47066e-23 3.24576e-24 -1.35694e-23 6.16083e-24 2.36902e-24 -1.07848e-24 -9.23464e-32 7.0858e-30 -2.46032e-31 2.10283e-30 -4.07334e-31 1.40748e-30 -4.98615e-31 1.12384e-30 -5.55184e-31 8.25857e-31 -6.76299e-31 6.30172e-31 -8.32309e-31 5.92076e-31 -1.11634e-30 6.26078e-31 -1.43749e-30 7.74605e-31 -1.81926e-30 9.43513e-31 -2.31659e-30 1.14098e-30 -3.1829e-30 1.38503e-30 -4.13292e-30 1.78527e-30 -5.28534e-30 2.11917e-30 -6.72288e-30 2.40591e-30 -7.53713e-30 2.63847e-30 -7.84539e-30 2.48666e-30 -8.08395e-30 2.13744e-30 -8.3388e-30 1.8198e-30 -8.21056e-30 1.57855e-30 -7.96618e-30 1.34557e-30 -7.82771e-30 1.1745e-30 -7.80522e-30 1.09222e-30 -8.08458e-30 1.08685e-30 -7.76612e-30 1.17191e-30 -8.33702e-30 1.20964e-30 -9.81339e-30 1.41628e-30 -1.25884e-29 1.81909e-30 -1.71522e-29 2.53129e-30 -2.48239e-29 3.688e-30 -3.79879e-29 5.59345e-30 -6.00704e-29 8.77867e-30 -9.49695e-29 1.39176e-29 -1.46686e-28 2.15176e-29 -2.15935e-28 3.15867e-29 -3.03774e-28 4.32653e-29 -4.06438e-28 5.58006e-29 -5.19742e-28 6.74976e-29 -6.33228e-28 7.64572e-29 -7.35732e-28 8.00299e-29 -8.10348e-28 7.61151e-29 -8.45402e-28 6.34893e-29 -8.33711e-28 4.41879e-29 -7.88118e-28 2.25073e-29 -7.46205e-28 2.60314e-30 -7.12799e-28 -1.21765e-32 -6.93405e-28 -2.20529e-32 -6.94986e-28 -2.81881e-32 -7.11925e-28 -3.20341e-32 -7.46873e-28 -3.43131e-32 -7.56109e-28 -3.59147e-32 -7.13287e-28 -3.57947e-32 -6.77908e-28 -3.39368e-32 -6.98087e-28 -3.31426e-32 -7.4709e-28 -3.60752e-32 -7.72573e-28 -4.17471e-32 -7.81447e-28 -4.71871e-32 -7.99298e-28 -5.21435e-32 -8.21457e-28 -5.77399e-32 -8.40917e-28 -6.26809e-32 -8.53095e-28 -6.60123e-32 -8.75633e-28 -6.66668e-32 -8.94677e-28 -6.70448e-32 -9.30064e-28 -6.58859e-32 -9.5057e-28 -6.47178e-32 -9.82379e-28 -5.99444e-32 -9.99648e-28 -5.46512e-32 -1.03109e-27 -4.76987e-32 -1.04324e-27 -4.1867e-32 -1.06884e-27 -3.58502e-32 -1.07328e-27 -3.24622e-32 -1.09364e-27 -3.0716e-32 -1.09265e-27 -3.317e-32 -1.11543e-27 -3.79846e-32 -1.10593e-27 -4.72462e-32 -1.14875e-27 -5.78294e-32 -1.13399e-27 -7.47834e-32 -1.20267e-27 -8.92246e-32 -1.16888e-27 -1.12403e-31 -1.26375e-27 -1.25362e-31 -1.19754e-27 -1.53136e-31 -1.31279e-27 -1.60737e-31 -1.20569e-27 -1.92442e-31 -1.34392e-27 -1.90244e-31 -1.2037e-27 -2.22701e-31 -1.35953e-27 -2.09748e-31 -1.19176e-27 -2.43588e-31 -1.38505e-27 -2.24736e-31 -1.25645e-27 -2.6642e-31 -1.60462e-27 -2.57337e-31 -1.72309e-27 -3.43831e-31 -3.04768e-27 -4.34827e-31 -6.44795e-27 -9.91788e-31 -2.7522e-26 -3.10165e-30 -9.9296e-26 -1.25832e-29 -4.0217e-25 -3.67092e-29 -8.55109e-25 5.91647e-27 -1.09354e-24 4.65029e-26 -2.21576e-25 1.0425e-25 2.70111e-26 -4.50573e-27 -1.73308e-34 3.1788e-32 -2.79542e-34 3.15492e-33 -4.26008e-34 1.65079e-33 -4.80018e-34 1.31882e-33 -5.05067e-34 9.37293e-34 -6.04098e-34 6.97477e-34 -7.37361e-34 6.48044e-34 -9.95418e-34 6.66821e-34 -1.29853e-33 8.04769e-34 -1.65038e-33 9.66292e-34 -2.06328e-33 1.14654e-33 -2.7835e-33 1.34225e-33 -3.51976e-33 1.68237e-33 -4.37532e-33 1.94569e-33 -5.48799e-33 2.17091e-33 -5.94481e-33 2.39883e-33 -5.97596e-33 2.25429e-33 -6.11207e-33 1.94789e-33 -6.46462e-33 1.71582e-33 -6.50281e-33 1.58287e-33 -6.50126e-33 1.41678e-33 -6.63741e-33 1.29319e-33 -6.87148e-33 1.24437e-33 -7.36397e-33 1.25595e-33 -6.92105e-33 1.35178e-33 -7.25788e-33 1.30706e-33 -8.26298e-33 1.43145e-33 -1.01481e-32 1.71133e-33 -1.31507e-32 2.20524e-33 -1.82052e-32 2.97594e-33 -2.73547e-32 4.23495e-33 -4.34487e-32 6.44006e-33 -7.01226e-32 1.01735e-32 -1.12154e-31 1.60189e-32 -1.72575e-31 2.44681e-32 -2.54676e-31 3.53325e-32 -3.56925e-31 4.82654e-32 -4.76421e-31 6.17741e-32 -6.0227e-31 7.39634e-32 -7.21382e-31 8.17847e-32 -8.1308e-31 8.2604e-32 -8.61649e-31 7.44361e-32 -8.55761e-31 5.84005e-32 -7.94513e-31 3.80842e-32 -7.1309e-31 1.78953e-32 -6.5142e-31 1.92258e-33 -6.11526e-31 -7.26082e-36 -5.96096e-31 -1.24225e-35 -5.9782e-31 -1.54928e-35 -6.18253e-31 -1.73686e-35 -6.17227e-31 -1.88152e-35 -5.6917e-31 -1.9302e-35 -5.27405e-31 -1.85668e-35 -5.34249e-31 -1.82304e-35 -5.671e-31 -1.9905e-35 -5.83393e-31 -2.30527e-35 -5.8779e-31 -2.60295e-35 -6.01496e-31 -2.8693e-35 -6.17717e-31 -3.17977e-35 -6.33512e-31 -3.45385e-35 -6.41331e-31 -3.66041e-35 -6.60019e-31 -3.72387e-35 -6.73108e-31 -3.79345e-35 -7.03382e-31 -3.76394e-35 -7.20106e-31 -3.77103e-35 -7.50257e-31 -3.58665e-35 -7.65548e-31 -3.41056e-35 -7.99055e-31 -3.11394e-35 -8.12134e-31 -2.91905e-35 -8.43621e-31 -2.67297e-35 -8.52101e-31 -2.61093e-35 -8.81879e-31 -2.59576e-35 -8.86213e-31 -2.86188e-35 -9.18905e-31 -3.21667e-35 -9.15386e-31 -3.91748e-35 -9.67121e-31 -4.63623e-35 -9.61565e-31 -5.89128e-35 -1.03846e-30 -6.93657e-35 -1.02109e-30 -8.76144e-35 -1.12603e-30 -9.868e-35 -1.08582e-30 -1.2254e-34 -1.21476e-30 -1.319e-34 -1.14787e-30 -1.61407e-34 -1.31108e-30 -1.66614e-34 -1.23041e-30 -2.01997e-34 -1.43933e-30 -2.03767e-34 -1.36433e-30 -2.49419e-34 -1.69349e-30 -2.55122e-34 -1.77017e-30 -3.32771e-34 -2.62706e-30 -3.85248e-34 -3.82289e-30 -6.3787e-34 -1.05978e-29 -1.24449e-33 -4.17211e-29 -4.85799e-33 -2.51135e-28 -2.19401e-32 -1.27713e-27 -1.1443e-31 -6.38831e-27 -4.21777e-31 -1.70119e-26 4.3936e-29 -2.29012e-26 6.19515e-28 -2.79285e-27 1.47231e-27 2.23258e-28 -1.17464e-29 -3.00548e-37 1.31414e-34 -3.01114e-37 5.10431e-36 -4.35743e-37 1.87762e-36 -4.59835e-37 1.50076e-36 -4.59679e-37 1.03263e-36 -5.38899e-37 7.45669e-37 -6.52293e-37 6.83654e-37 -8.86638e-37 6.91602e-37 -1.17169e-36 8.25695e-37 -1.50213e-36 9.86833e-37 -1.86734e-36 1.16269e-36 -2.50189e-36 1.33661e-36 -3.11307e-36 1.65175e-36 -3.78517e-36 1.87878e-36 -4.66866e-36 2.064e-36 -4.86702e-36 2.27326e-36 -4.66961e-36 2.09669e-36 -4.67101e-36 1.77153e-36 -5.0265e-36 1.56445e-36 -5.13641e-36 1.50053e-36 -5.28059e-36 1.38681e-36 -5.60435e-36 1.31353e-36 -6.03154e-36 1.31295e-36 -6.70203e-36 1.36234e-36 -6.22301e-36 1.49136e-36 -6.48159e-36 1.38936e-36 -7.27193e-36 1.47064e-36 -8.65799e-36 1.68778e-36 -1.06469e-35 2.05822e-36 -1.38058e-35 2.58234e-36 -1.97233e-35 3.38755e-36 -3.04698e-35 4.84065e-36 -4.88622e-35 7.38037e-36 -7.91319e-35 1.15065e-35 -1.25068e-34 1.78223e-35 -1.91096e-34 2.65526e-35 -2.77992e-34 3.7776e-35 -3.8502e-34 5.05385e-35 -5.03164e-34 6.33848e-35 -6.20097e-34 7.34771e-35 -7.14883e-34 7.80885e-35 -7.70123e-34 7.47208e-35 -7.71985e-34 6.3503e-35 -7.1805e-34 4.68739e-35 -6.24103e-34 2.87547e-35 -5.31097e-34 1.32243e-35 -4.73069e-34 2.59056e-36 -4.42049e-34 -2.74089e-39 -4.28744e-34 -5.2809e-39 -4.32197e-34 -6.76019e-39 -4.21905e-34 -7.84462e-39 -3.79022e-34 -8.42679e-39 -3.41896e-34 -8.34665e-39 -3.39048e-34 -8.32241e-39 -3.54185e-34 -9.17491e-39 -3.60336e-34 -1.06507e-38 -3.60304e-34 -1.20389e-38 -3.67911e-34 -1.32649e-38 -3.76867e-34 -1.47367e-38 -3.86956e-34 -1.60498e-38 -3.91407e-34 -1.71559e-38 -4.041e-34 -1.76125e-38 -4.12125e-34 -1.82167e-38 -4.33471e-34 -1.83012e-38 -4.4578e-34 -1.87524e-38 -4.69643e-34 -1.83142e-38 -4.8189e-34 -1.81577e-38 -5.10678e-34 -1.72932e-38 -5.23294e-34 -1.71584e-38 -5.53875e-34 -1.66032e-38 -5.65742e-34 -1.72173e-38 -5.98522e-34 -1.78388e-38 -6.09005e-34 -2.02777e-38 -6.46123e-34 -2.29241e-38 -6.52431e-34 -2.80519e-38 -7.05632e-34 -3.30383e-38 -7.14678e-34 -4.20472e-38 -7.91241e-34 -4.97838e-38 -7.97319e-34 -6.37418e-38 -9.02632e-34 -7.3488e-38 -8.995e-34 -9.34943e-38 -1.03486e-33 -1.04622e-37 -1.02403e-33 -1.32076e-37 -1.21233e-33 -1.44233e-37 -1.2171e-33 -1.8329e-37 -1.50253e-33 -2.01129e-37 -1.58087e-33 -2.6453e-37 -2.16572e-33 -3.06702e-37 -2.71738e-33 -4.55615e-37 -5.0233e-33 -6.62666e-37 -1.13701e-32 -1.51758e-36 -5.43373e-32 -5.06963e-36 -3.15398e-31 -2.70298e-35 -2.44358e-30 -1.58425e-34 -1.62951e-29 -1.01752e-33 -9.68096e-29 -4.58106e-33 -3.04017e-28 1.82878e-31 -4.13402e-28 6.80789e-30 -2.72768e-29 1.60136e-29 1.18365e-30 -1.7788e-32 -5.18952e-40 4.78931e-37 -3.11792e-40 8.85243e-39 -4.36405e-40 2.0834e-39 -4.37056e-40 1.66396e-39 -4.17561e-40 1.11086e-39 -4.79773e-40 7.7769e-40 -5.762e-40 7.02532e-40 -7.88901e-40 7.02213e-40 -1.05556e-39 8.35623e-40 -1.36673e-39 9.99537e-40 -1.69893e-39 1.17667e-39 -2.27333e-39 1.34087e-39 -2.80494e-39 1.6463e-39 -3.36404e-39 1.85574e-39 -4.09577e-39 2.01946e-39 -4.1341e-39 2.21515e-39 -3.78542e-39 2.00361e-39 -3.66994e-39 1.64072e-39 -3.98334e-39 1.42651e-39 -4.10473e-39 1.3991e-39 -4.3189e-39 1.31753e-39 -4.75191e-39 1.2847e-39 -5.30498e-39 1.33141e-39 -6.0989e-39 1.42434e-39 -5.60978e-39 1.59493e-39 -5.8407e-39 1.44917e-39 -6.52987e-39 1.50629e-39 -7.64842e-39 1.69166e-39 -9.05009e-39 1.9946e-39 -1.10359e-38 2.37112e-39 -1.47915e-38 2.8883e-39 -2.16788e-38 3.83457e-39 -3.3607e-38 5.50925e-39 -5.37383e-38 8.27332e-39 -8.54629e-38 1.26507e-38 -1.33078e-37 1.90082e-38 -1.98658e-37 2.76606e-38 -2.83251e-37 3.81615e-38 -3.80628e-37 4.96227e-38 -4.81009e-37 5.97881e-38 -5.66163e-37 6.62615e-38 -6.19655e-37 6.64812e-38 -6.27446e-37 5.9854e-38 -5.85847e-37 4.76908e-38 -5.08488e-37 3.29975e-38 -4.16281e-37 1.94176e-38 -3.38061e-37 9.24021e-39 -2.96337e-37 2.98391e-39 -2.73218e-37 -3.41544e-43 -2.64828e-37 -1.60288e-42 -2.50073e-37 -2.4095e-42 -2.17842e-37 -2.91776e-42 -1.90593e-37 -3.0986e-42 -1.84394e-37 -3.20814e-42 -1.884e-37 -3.6119e-42 -1.88742e-37 -4.22914e-42 -1.86639e-37 -4.80587e-42 -1.89619e-37 -5.30487e-42 -1.93437e-37 -5.9223e-42 -1.98766e-37 -6.47545e-42 -2.0094e-37 -6.99781e-42 -2.08444e-37 -7.27206e-42 -2.13019e-37 -7.65782e-42 -2.26137e-37 -7.82401e-42 -2.34134e-37 -8.22441e-42 -2.50528e-37 -8.27061e-42 -2.59746e-37 -8.55341e-42 -2.80566e-37 -8.50064e-42 -2.91745e-37 -8.892e-42 -3.16117e-37 -9.05464e-42 -3.2867e-37 -9.9061e-42 -3.57618e-37 -1.06995e-41 -3.71513e-37 -1.26115e-41 -4.05988e-37 -1.45741e-41 -4.20089e-37 -1.81942e-41 -4.67954e-37 -2.17549e-41 -4.88e-37 -2.814e-41 -5.57636e-37 -3.40152e-41 -5.82761e-37 -4.45775e-41 -6.82402e-37 -5.3301e-41 -7.1253e-37 -7.00088e-41 -8.51165e-37 -8.24275e-41 -8.94652e-37 -1.08414e-40 -1.11296e-36 -1.26925e-40 -1.21689e-36 -1.71318e-40 -1.61883e-36 -2.07488e-40 -1.93688e-36 -2.99783e-40 -3.0369e-36 -4.04018e-40 -4.8107e-36 -7.13934e-40 -1.24048e-35 -1.41557e-39 -4.86701e-35 -5.0958e-39 -3.22384e-34 -2.3407e-38 -2.49134e-33 -1.55062e-37 -2.41486e-32 -1.1481e-36 -2.01585e-31 -8.85032e-36 -1.38344e-30 -4.785e-35 -4.90164e-30 -3.72994e-35 -6.36709e-30 4.95572e-32 -2.05357e-31 1.01024e-31 2.00013e-33 -1.37981e-35 -9.26372e-43 1.50772e-39 -3.14672e-43 1.64638e-41 -4.2992e-43 2.27023e-42 -4.12364e-43 1.80662e-42 -3.78417e-43 1.17244e-42 -4.26363e-43 7.96178e-43 -5.08388e-43 7.08095e-43 -7.01235e-43 7.01175e-43 -9.49489e-43 8.3507e-43 -1.24215e-42 1.0029e-42 -1.5485e-42 1.18391e-42 -2.075e-42 1.34465e-42 -2.54999e-42 1.64713e-42 -3.03451e-42 1.8483e-42 -3.663e-42 2.00151e-42 -3.611e-42 2.18998e-42 -3.17794e-42 1.95147e-42 -2.9799e-42 1.55181e-42 -3.24003e-42 1.31861e-42 -3.34478e-42 1.30744e-42 -3.58177e-42 1.24195e-42 -4.06707e-42 1.23735e-42 -4.69084e-42 1.3237e-42 -5.55736e-42 1.45753e-42 -5.06669e-42 1.66955e-42 -5.28223e-42 1.48821e-42 -5.91115e-42 1.53016e-42 -6.86957e-42 1.69814e-42 -7.92451e-42 1.9616e-42 -9.21585e-42 2.24714e-42 -1.16437e-41 2.5849e-42 -1.60444e-41 3.2098e-42 -2.35809e-41 4.3115e-42 -3.63659e-41 6.11842e-42 -5.69274e-41 9.01619e-42 -8.87141e-41 1.335e-41 -1.34051e-40 1.94895e-41 -1.94863e-40 2.73164e-41 -2.67396e-40 3.64117e-41 -3.4486e-40 4.5174e-41 -4.13161e-40 5.17518e-41 -4.58652e-40 5.38888e-41 -4.68993e-40 5.06546e-41 -4.39947e-40 4.25302e-41 -3.82073e-40 3.15509e-41 -3.11705e-40 2.06637e-41 -2.44858e-40 1.19336e-41 -1.89934e-40 6.04608e-42 -1.61574e-40 2.5433e-42 -1.4777e-40 6.68177e-43 -1.33204e-40 -2.78186e-46 -1.11788e-40 -6.89177e-46 -9.43969e-41 -9.13733e-46 -8.86339e-41 -1.04566e-45 -8.81708e-41 -1.2345e-45 -8.66817e-41 -1.47707e-45 -8.44618e-41 -1.70027e-45 -8.51894e-41 -1.8882e-45 -8.63483e-41 -2.12562e-45 -8.87762e-41 -2.33879e-45 -8.98306e-41 -2.56345e-45 -9.3784e-41 -2.70361e-45 -9.63625e-41 -2.91034e-45 -1.03536e-40 -3.03683e-45 -1.08382e-40 -3.28656e-45 -1.18233e-40 -3.41511e-45 -1.24575e-40 -3.69029e-45 -1.37743e-40 -3.83586e-45 -1.46317e-40 -4.22617e-45 -1.63081e-40 -4.5237e-45 -1.73939e-40 -5.21466e-45 -1.95641e-40 -5.88715e-45 -2.09429e-40 -7.22318e-45 -2.37065e-40 -8.62831e-45 -2.53846e-40 -1.1099e-44 -2.93063e-40 -1.36581e-44 -3.17551e-40 -1.81538e-44 -3.76759e-40 -2.26801e-44 -4.12904e-40 -3.06873e-44 -5.03502e-40 -3.84294e-44 -5.57202e-40 -5.25968e-44 -6.97823e-40 -6.58238e-44 -7.89909e-40 -9.12503e-44 -1.04729e-39 -1.15788e-43 -1.26721e-39 -1.68547e-43 -1.85904e-39 -2.28992e-43 -2.59708e-39 -3.72857e-43 -4.87355e-39 -6.0427e-43 -1.05986e-38 -1.36323e-42 -4.34159e-38 -4.13459e-42 -2.37739e-37 -1.94611e-41 -1.99449e-36 -1.1127e-40 -2.00399e-35 -9.08075e-40 -2.38551e-34 -8.34014e-39 -2.41057e-33 -7.58838e-38 -1.88145e-32 -4.91195e-37 -7.0848e-32 -1.37288e-36 -8.28335e-32 -1.52962e-36 -1.17654e-33 -5.22898e-36 -1.11872e-37 -5.63432e-39 -1.77372e-45 4.07365e-42 -3.12898e-46 3.34418e-44 -4.1854e-46 2.44393e-45 -3.8687e-46 1.92934e-45 -3.42355e-46 1.21892e-45 -3.78515e-46 8.03713e-46 -4.48353e-46 7.03495e-46 -6.23029e-46 6.91194e-46 -8.53322e-46 8.25725e-46 -1.12809e-45 9.97575e-46 -1.41279e-45 1.18355e-45 -1.8986e-45 1.34434e-45 -2.32968e-45 1.64695e-45 -2.7607e-45 1.84448e-45 -3.31448e-45 1.99299e-45 -3.21513e-45 2.17822e-45 -2.74421e-45 1.92159e-45 -2.49577e-45 1.49262e-45 -2.70722e-45 1.23909e-45 -2.78689e-45 1.23349e-45 -3.02164e-45 1.17402e-45 -3.5225e-45 1.18748e-45 -4.17673e-45 1.30446e-45 -5.07492e-45 1.47291e-45 -4.58654e-45 1.7216e-45 -4.7871e-45 1.51032e-45 -5.36813e-45 1.5412e-45 -6.21267e-45 1.6979e-45 -7.04344e-45 1.93489e-45 -7.91192e-45 2.15927e-45 -9.53725e-45 2.38079e-45 -1.24119e-44 2.80314e-45 -1.71791e-44 3.53996e-45 -2.51446e-44 4.71769e-45 -3.79809e-44 6.59222e-45 -5.81268e-44 9.42445e-45 -8.75491e-44 1.3536e-44 -1.28286e-43 1.89653e-44 -1.78272e-43 2.55946e-44 -2.33248e-43 3.23704e-44 -2.83268e-43 3.79962e-44 -3.18113e-43 4.06956e-44 -3.28103e-43 3.95122e-44 -3.09208e-43 3.44494e-44 -2.68921e-43 2.67463e-44 -2.18991e-43 1.8604e-44 -1.71105e-43 1.17051e-44 -1.30362e-43 6.77634e-45 -9.69171e-44 3.61215e-45 -7.83246e-44 1.70268e-45 -6.60962e-44 6.86464e-46 -5.28364e-44 4.72886e-47 -4.28614e-44 -1.69085e-49 -3.88186e-44 -2.75712e-49 -3.74212e-44 -3.66973e-49 -3.59902e-44 -4.6126e-49 -3.44564e-44 -5.45521e-49 -3.44474e-44 -6.15087e-49 -3.46465e-44 -7.01626e-49 -3.56619e-44 -7.79226e-49 -3.61519e-44 -8.69796e-49 -3.80924e-44 -9.33526e-49 -3.94753e-44 -1.03052e-48 -4.30609e-44 -1.1041e-48 -4.57778e-44 -1.23488e-48 -5.11195e-44 -1.33113e-48 -5.50715e-44 -1.50381e-48 -6.26213e-44 -1.63955e-48 -6.83428e-44 -1.90336e-48 -7.87745e-44 -2.14197e-48 -8.67998e-44 -2.60275e-48 -1.01327e-43 -3.07799e-48 -1.1265e-43 -3.94511e-48 -1.32719e-43 -4.90487e-48 -1.48202e-43 -6.55281e-48 -1.78316e-43 -8.37567e-48 -2.02367e-43 -1.15272e-47 -2.50713e-43 -1.50448e-47 -2.90439e-43 -2.11602e-47 -3.71834e-43 -2.79987e-47 -4.4024e-43 -4.0264e-47 -5.84443e-43 -5.40406e-47 -7.20302e-43 -7.98935e-47 -1.03385e-42 -1.11244e-46 -1.40802e-42 -1.77658e-46 -2.33788e-42 -2.76416e-46 -3.94742e-42 -5.25529e-46 -9.52022e-42 -1.09068e-45 -3.19269e-41 -3.44263e-45 -1.72994e-40 -1.36193e-44 -1.19823e-39 -7.63367e-44 -1.26494e-38 -5.39211e-43 -1.62403e-37 -5.40683e-42 -2.33463e-36 -6.03334e-41 -2.76093e-35 -6.33069e-40 -2.31502e-34 -4.91489e-39 -8.94737e-34 -2.74282e-38 -9.04934e-34 -1.36824e-37 -5.07942e-36 -2.26909e-37 -9.12395e-40 -5.02804e-42 -3.72885e-48 9.47149e-45 -3.09361e-49 7.5211e-47 -4.04185e-49 2.61539e-48 -3.6157e-49 2.03404e-48 -3.09505e-49 1.25244e-48 -3.36036e-49 8.02725e-49 -3.95596e-49 6.91506e-49 -5.53766e-49 6.7479e-49 -7.66943e-49 8.09666e-49 -1.02463e-48 9.85173e-49 -1.29054e-48 1.17643e-48 -1.74077e-48 1.33933e-48 -2.13593e-48 1.64343e-48 -2.52581e-48 1.83973e-48 -3.02208e-48 1.98651e-48 -2.90021e-48 2.17038e-48 -2.42021e-48 1.90259e-48 -2.14537e-48 1.45236e-48 -2.31742e-48 1.18126e-48 -2.37298e-48 1.17639e-48 -2.59418e-48 1.11758e-48 -3.08894e-48 1.14197e-48 -3.74649e-48 1.2815e-48 -4.64612e-48 1.47742e-48 -4.16275e-48 1.75605e-48 -4.34594e-48 1.51922e-48 -4.88169e-48 1.54076e-48 -5.63284e-48 1.68834e-48 -6.30272e-48 1.90452e-48 -6.89697e-48 2.08338e-48 -8.02217e-48 2.22432e-48 -9.96188e-48 2.5146e-48 -1.30342e-47 3.01901e-48 -1.80029e-47 3.79476e-48 -2.58818e-47 4.99955e-48 -3.82478e-47 6.80557e-48 -5.65221e-47 9.45185e-48 -8.24482e-47 1.30247e-47 -1.14924e-46 1.75621e-47 -1.5147e-46 2.24001e-47 -1.85531e-46 2.6696e-47 -2.10054e-46 2.91627e-47 -2.18107e-46 2.89906e-47 -2.06336e-46 2.59798e-47 -1.79736e-46 2.08158e-47 -1.46171e-46 1.50453e-47 -1.1375e-46 9.92923e-48 -8.58875e-47 6.11759e-48 -6.27193e-47 3.54855e-48 -4.53732e-47 1.90508e-48 -3.19007e-47 9.35558e-49 -2.38124e-47 3.69944e-49 -1.84103e-47 6.81203e-50 -1.59597e-47 -4.43692e-53 -1.48193e-47 -9.12968e-53 -1.39048e-47 -1.29586e-52 -1.30724e-47 -1.61867e-52 -1.29371e-47 -1.87659e-52 -1.28973e-47 -2.1829e-52 -1.33074e-47 -2.46208e-52 -1.3526e-47 -2.80771e-52 -1.44101e-47 -3.08009e-52 -1.51251e-47 -3.49884e-52 -1.68055e-47 -3.86445e-52 -1.8226e-47 -4.48042e-52 -2.08833e-47 -5.03055e-52 -2.31338e-47 -5.9456e-52 -2.71706e-47 -6.81398e-52 -3.06123e-47 -8.32647e-52 -3.66619e-47 -9.86765e-52 -4.19403e-47 -1.26096e-51 -5.10134e-47 -1.56919e-51 -5.92048e-47 -2.10328e-51 -7.2956e-47 -2.73992e-51 -8.54344e-47 -3.81211e-51 -1.07566e-46 -5.10998e-51 -1.28841e-46 -7.32311e-51 -1.67429e-46 -1.00584e-50 -2.06504e-46 -1.48264e-50 -2.79575e-46 -2.08885e-50 -3.57013e-46 -3.18404e-50 -5.08028e-46 -4.62717e-50 -6.90016e-46 -7.3897e-50 -1.09066e-45 -1.14494e-49 -1.70714e-45 -2.05206e-49 -3.32413e-45 -3.76559e-49 -7.22469e-45 -8.82838e-49 -2.45415e-44 -2.45029e-48 -1.08243e-43 -9.79613e-48 -7.06448e-43 -4.57052e-47 -6.14052e-42 -3.03873e-46 -8.13109e-41 -2.65068e-45 -1.30267e-39 -3.23794e-44 -2.18807e-38 -4.27698e-43 -2.88835e-37 -5.11281e-42 -2.54436e-36 -4.89688e-41 -9.84271e-36 -4.24453e-40 -8.31121e-36 -2.57721e-39 -1.69802e-38 -3.19503e-39 -4.13898e-42 -5.71902e-45 -8.44774e-51 1.91075e-47 -3.07709e-52 1.82856e-49 -3.88316e-52 2.81054e-51 -3.37199e-52 2.12316e-51 -2.79895e-52 1.27527e-51 -2.98632e-52 7.95387e-52 -3.49553e-52 6.7445e-52 -4.92863e-52 6.54123e-52 -6.90058e-52 7.88912e-52 -9.31686e-52 9.67551e-52 -1.18102e-51 1.16404e-51 -1.59977e-51 1.33026e-51 -1.96464e-51 1.63648e-51 -2.32136e-51 1.83286e-51 -2.77119e-51 1.97942e-51 -2.64066e-51 2.16263e-51 -2.16798e-51 1.8885e-51 -1.88263e-51 1.42366e-51 -2.02432e-51 1.1387e-51 -2.05999e-51 1.13267e-51 -2.26378e-51 1.0721e-51 -2.7407e-51 1.1028e-51 -3.3844e-51 1.25839e-51 -4.26457e-51 1.47508e-51 -3.78862e-51 1.77657e-51 -3.95231e-51 1.51795e-51 -4.44286e-51 1.53078e-51 -5.11114e-51 1.66956e-51 -5.65588e-51 1.86725e-51 -6.06017e-51 2.00929e-51 -6.85652e-51 2.09049e-51 -8.20619e-51 2.28974e-51 -1.02382e-50 2.64171e-51 -1.33815e-50 3.16035e-51 -1.82087e-50 3.93726e-51 -2.56738e-50 5.07445e-51 -3.67002e-50 6.73232e-51 -5.26178e-50 8.99257e-51 -7.28039e-50 1.1955e-50 -9.58917e-50 1.52045e-50 -1.17764e-49 1.82242e-50 -1.33857e-49 2.01368e-50 -1.39562e-49 2.03357e-50 -1.32351e-49 1.85821e-50 -1.15418e-49 1.52211e-50 -9.37313e-50 1.12912e-50 -7.2672e-50 7.67628e-51 -5.44414e-50 4.89782e-51 -3.91903e-50 2.95977e-51 -2.77293e-50 1.67249e-51 -1.79829e-50 8.88888e-52 -1.07465e-50 3.98364e-52 -7.70223e-51 1.35616e-52 -6.35393e-51 2.52015e-53 -5.64237e-51 -1.49395e-56 -5.14871e-51 -3.1777e-56 -4.74254e-51 -4.46596e-56 -4.6367e-51 -5.45207e-56 -4.58604e-51 -6.54059e-56 -4.74247e-51 -7.54902e-56 -4.8438e-51 -8.82345e-56 -5.22775e-51 -9.94557e-56 -5.5736e-51 -1.16523e-55 -6.32363e-51 -1.33241e-55 -7.02797e-51 -1.60211e-55 -8.27942e-51 -1.87869e-55 -9.4724e-51 -2.32416e-55 -1.15134e-50 -2.80105e-55 -1.34578e-50 -3.5977e-55 -1.67558e-50 -4.50181e-55 -2.00285e-50 -6.03554e-55 -2.54181e-50 -7.92656e-55 -3.097e-50 -1.11206e-54 -3.99495e-50 -1.52323e-54 -4.94167e-50 -2.21842e-54 -6.53138e-50 -3.1313e-54 -8.2991e-50 -4.7103e-54 -1.13848e-49 -6.85246e-54 -1.50458e-49 -1.0661e-53 -2.171e-49 -1.61057e-53 -3.01661e-49 -2.63017e-53 -4.65786e-49 -4.18153e-53 -7.0671e-49 -7.32791e-53 -1.25809e-48 -1.2862e-52 -2.33061e-48 -2.65699e-52 -5.6192e-48 -5.99604e-52 -1.64123e-47 -1.76131e-51 -7.10516e-47 -6.16723e-51 -3.72416e-46 -2.82425e-50 -2.91261e-45 -1.54428e-49 -3.16915e-44 -1.221e-48 -5.20023e-43 -1.30948e-47 -1.00425e-41 -1.92073e-46 -1.9044e-40 -2.94646e-45 -2.7304e-39 -4.04343e-44 -2.48328e-38 -4.84072e-43 -9.4141e-38 -5.42158e-42 -6.41713e-38 -3.32436e-41 -4.80488e-41 -3.06307e-41 -1.27864e-44 -3.49197e-48 -1.96199e-53 3.38233e-50 -3.15164e-55 4.55865e-52 -3.71974e-55 3.10138e-54 -3.14235e-55 2.19931e-54 -2.53443e-55 1.2896e-54 -2.65917e-55 7.83552e-55 -3.09597e-55 6.54199e-55 -4.39645e-55 6.30939e-55 -6.22162e-55 7.6523e-55 -8.48919e-55 9.46474e-55 -1.08355e-54 1.14802e-54 -1.47436e-54 1.31832e-54 -1.81326e-54 1.62694e-54 -2.14241e-54 1.82417e-54 -2.55352e-54 1.97133e-54 -2.42185e-54 2.15395e-54 -1.96503e-54 1.87662e-54 -1.67894e-54 1.40211e-54 -1.79749e-54 1.10661e-54 -1.81784e-54 1.0988e-54 -2.00392e-54 1.03561e-54 -2.4573e-54 1.06976e-54 -3.07693e-54 1.23646e-54 -3.92406e-54 1.46815e-54 -3.45775e-54 1.78585e-54 -3.60083e-54 1.50883e-54 -4.0463e-54 1.51317e-54 -4.63873e-54 1.64276e-54 -5.08132e-54 1.82284e-54 -5.34726e-54 1.93345e-54 -5.91505e-54 1.96809e-54 -6.87497e-54 2.10089e-54 -8.25189e-54 2.3482e-54 -1.02793e-53 2.69856e-54 -1.32591e-53 3.20231e-54 -1.77398e-53 3.91341e-54 -2.42748e-53 4.93183e-54 -3.38148e-53 6.31743e-54 -4.59546e-53 8.18196e-54 -5.99655e-53 1.02597e-53 -7.33449e-53 1.22471e-53 -8.32914e-53 1.35729e-53 -8.69234e-53 1.38209e-53 -8.24713e-53 1.27896e-53 -7.19317e-53 1.06348e-53 -5.8299e-53 8.0316e-54 -4.50287e-53 5.56657e-54 -3.34897e-53 3.62854e-54 -2.37924e-53 2.24326e-54 -1.65672e-53 1.29859e-54 -1.04955e-53 7.1499e-55 -5.87745e-54 3.40468e-55 -3.29955e-54 1.30229e-55 -2.51842e-54 4.00934e-56 -2.1183e-54 5.90845e-57 -1.87155e-54 -5.81247e-60 -1.68572e-54 -1.1258e-59 -1.62618e-54 -1.5218e-59 -1.59668e-54 -1.91774e-59 -1.65316e-54 -2.28369e-59 -1.7011e-54 -2.75293e-59 -1.86096e-54 -3.20197e-59 -2.02164e-54 -3.86995e-59 -2.34209e-54 -4.59243e-59 -2.6755e-54 -5.73079e-59 -3.24608e-54 -7.03167e-59 -3.84406e-54 -9.09858e-59 -4.83957e-54 -1.15348e-58 -5.89851e-54 -1.55511e-58 -7.63239e-54 -2.05228e-58 -9.57186e-54 -2.89069e-58 -1.26885e-53 -4.00069e-58 -1.62762e-53 -5.89497e-58 -2.20616e-53 -8.51199e-58 -2.88949e-53 -1.30185e-57 -4.03401e-53 -1.94609e-57 -5.46362e-53 -3.08539e-57 -7.95752e-53 -4.78724e-57 -1.13361e-52 -7.92863e-57 -1.76072e-52 -1.29505e-56 -2.68799e-52 -2.29015e-56 -4.57228e-52 -4.0307e-56 -7.88635e-52 -7.88499e-56 -1.62343e-51 -1.60658e-55 -3.71041e-51 -3.95607e-55 -1.12501e-50 -1.08532e-54 -4.16328e-50 -3.9153e-54 -2.07532e-49 -1.56365e-53 -1.28282e-48 -8.15694e-53 -1.20259e-47 -5.22452e-52 -1.62451e-46 -4.91536e-51 -3.23326e-45 -6.4245e-50 -7.27431e-44 -1.11473e-48 -1.51931e-42 -1.97047e-47 -2.31768e-41 -3.14193e-46 -2.14397e-40 -4.59514e-45 -7.81593e-40 -5.8229e-44 -4.1613e-40 -3.35519e-43 -1.06968e-43 -2.24237e-43 -2.8556e-47 -9.41753e-52 -4.46206e-56 5.31884e-53 -3.48773e-58 1.11134e-54 -3.55879e-58 3.68554e-57 -2.92958e-58 2.265e-57 -2.29981e-58 1.29739e-57 -2.37451e-58 7.68744e-58 -2.75074e-58 6.32209e-58 -3.93375e-58 6.06596e-58 -5.62586e-58 7.40061e-58 -7.75756e-58 9.2347e-58 -9.97318e-58 1.12988e-57 -1.36338e-57 1.30475e-57 -1.67983e-57 1.616e-57 -1.98563e-57 1.81461e-57 -2.36379e-57 1.96281e-57 -2.2349e-57 2.14468e-57 -1.7978e-57 1.86609e-57 -1.51649e-57 1.38527e-57 -1.61721e-57 1.08178e-57 -1.6261e-57 1.07205e-57 -1.79562e-57 1.00609e-57 -2.22322e-57 1.04191e-57 -2.8132e-57 1.21601e-57 -3.61915e-57 1.45792e-57 -3.16435e-57 1.786e-57 -3.28676e-57 1.49369e-57 -3.68807e-57 1.48966e-57 -4.21065e-57 1.60948e-57 -4.56779e-57 1.77233e-57 -4.72979e-57 1.85534e-57 -5.13151e-57 1.85255e-57 -5.82163e-57 1.93454e-57 -6.77059e-57 2.10642e-57 -8.10163e-57 2.34262e-57 -9.96122e-57 2.66905e-57 -1.26516e-56 3.10984e-57 -1.6483e-56 3.72378e-57 -2.21129e-56 4.54858e-57 -2.92337e-56 5.68666e-57 -3.74618e-56 6.95902e-57 -4.53073e-56 8.19354e-57 -5.11232e-56 9.03049e-57 -5.32052e-56 9.20403e-57 -5.0381e-56 8.57162e-57 -4.38891e-56 7.19286e-57 -3.54635e-56 5.49771e-57 -2.72748e-56 3.85779e-57 -2.01468e-56 2.54866e-57 -1.41362e-56 1.59706e-57 -9.70431e-57 9.35522e-58 -6.04606e-57 5.24035e-58 -3.33217e-57 2.57069e-58 -1.74202e-57 1.05037e-58 -1.02909e-57 3.63638e-59 -8.05466e-58 1.08117e-59 -6.8265e-58 3.31599e-61 -6.00155e-58 -2.37146e-63 -5.70087e-58 -4.03968e-63 -5.54649e-58 -5.53508e-63 -5.75369e-58 -6.89673e-63 -5.97097e-58 -8.62809e-63 -6.60955e-58 -1.03807e-62 -7.3254e-58 -1.29655e-62 -8.66775e-58 -1.60036e-62 -1.01999e-57 -2.0719e-62 -1.2748e-57 -2.65497e-62 -1.5654e-57 -3.58907e-62 -2.0422e-57 -4.78835e-62 -2.597e-57 -6.75968e-62 -3.50203e-57 -9.42131e-62 -4.60492e-57 -1.39307e-61 -6.39841e-57 -2.03649e-61 -8.65836e-57 -3.14943e-61 -1.23595e-56 -4.81713e-61 -1.72165e-56 -7.7634e-61 -2.54585e-56 -1.23388e-60 -3.69628e-56 -2.07445e-60 -5.7588e-56 -3.45274e-60 -8.90988e-56 -6.13501e-60 -1.50469e-55 -1.0928e-59 -2.55262e-55 -2.11941e-59 -4.86371e-55 -4.18839e-59 -9.76864e-55 -9.3923e-59 -2.40399e-54 -2.24443e-58 -6.6986e-54 -6.47545e-58 -2.50216e-53 -2.16002e-57 -1.05976e-52 -8.74144e-57 -6.04127e-52 -3.9544e-56 -4.39305e-51 -2.34835e-55 -4.92365e-50 -1.75905e-54 -8.14048e-49 -1.96466e-53 -1.91674e-47 -3.09612e-52 -4.88663e-46 -6.27863e-51 -1.10215e-44 -1.27469e-49 -1.75933e-43 -2.36514e-48 -1.63364e-42 -4.02309e-47 -5.62711e-42 -5.30147e-46 -2.2653e-42 -2.7669e-45 -1.85322e-46 -1.30639e-45 -4.72817e-50 -8.57153e-56 -9.68018e-59 7.52211e-56 -4.48093e-61 2.57847e-57 -3.40513e-61 5.0666e-60 -2.73493e-61 2.32262e-60 -2.09287e-61 1.30039e-60 -2.12776e-61 7.52182e-61 -2.45338e-61 6.0958e-61 -3.53296e-61 5.82105e-61 -5.10569e-61 7.14533e-61 -7.11466e-61 8.99791e-61 -9.21461e-61 1.11093e-60 -1.26566e-60 1.29074e-60 -1.56261e-60 1.60486e-60 -1.84843e-60 1.80526e-60 -2.19822e-60 1.95479e-60 -2.07396e-60 2.13571e-60 -1.65771e-60 1.85692e-60 -1.38404e-60 1.37195e-60 -1.47072e-60 1.06224e-60 -1.47107e-60 1.05055e-60 -1.62561e-60 9.81897e-61 -2.02712e-60 1.01826e-60 -2.58485e-60 1.19696e-60 -3.34533e-60 1.44526e-60 -2.90347e-60 1.77882e-60 -3.00589e-60 1.47399e-60 -3.36482e-60 1.46172e-60 -3.82329e-60 1.57129e-60 -4.10824e-60 1.71718e-60 -4.19092e-60 1.77565e-60 -4.4683e-60 1.7423e-60 -4.96423e-60 1.78416e-60 -5.62261e-60 1.89934e-60 -6.5061e-60 2.05501e-60 -7.67632e-60 2.26319e-60 -9.294e-60 2.53089e-60 -1.15218e-59 2.8911e-60 -1.48111e-59 3.36485e-60 -1.89042e-59 4.0389e-60 -2.35988e-59 4.78494e-60 -2.80165e-59 5.50823e-60 -3.12267e-59 5.98757e-60 -3.22739e-59 6.06407e-60 -3.04132e-59 5.64945e-60 -2.64155e-59 4.75915e-60 -2.12496e-59 3.66385e-60 -1.62612e-59 2.58948e-60 -1.19312e-59 1.72461e-60 -8.27186e-60 1.08943e-60 -5.60461e-60 6.41492e-61 -3.4404e-60 3.62349e-61 -1.88085e-60 1.80427e-61 -9.69641e-61 7.66598e-62 -5.20838e-61 2.85836e-62 -3.17838e-61 9.65679e-63 -2.54796e-61 2.52197e-63 -2.17273e-61 -2.2805e-67 -2.02642e-61 -9.76191e-67 -1.95119e-61 -1.56951e-66 -2.02537e-61 -2.09317e-66 -2.11645e-61 -2.73485e-66 -2.36956e-61 -3.41779e-66 -2.68219e-61 -4.41756e-66 -3.23907e-61 -5.6587e-66 -3.92009e-61 -7.59111e-66 -5.04558e-61 -1.01631e-65 -6.43526e-61 -1.43267e-65 -8.69023e-61 -2.00867e-65 -1.15611e-60 -2.97219e-65 -1.62502e-60 -4.36431e-65 -2.24679e-60 -6.78597e-65 -3.27003e-60 -1.04845e-64 -4.68855e-60 -1.70823e-64 -7.06689e-60 -2.76928e-64 -1.05004e-59 -4.72325e-64 -1.65301e-59 -8.02284e-64 -2.5852e-59 -1.43999e-63 -4.3388e-59 -2.58718e-63 -7.34893e-59 -4.97359e-63 -1.36602e-58 -9.75711e-63 -2.61065e-58 -2.10482e-62 -5.71939e-58 -4.75746e-62 -1.35094e-57 -1.21672e-61 -3.90512e-57 -3.36664e-61 -1.32624e-56 -1.14859e-60 -5.57082e-56 -4.30951e-60 -2.67898e-55 -1.94223e-59 -1.74252e-54 -9.93059e-59 -1.48467e-53 -6.7046e-58 -1.97707e-52 -5.8543e-57 -3.93218e-51 -7.73161e-56 -1.06961e-49 -1.45166e-54 -3.01885e-48 -3.40381e-53 -7.23263e-47 -7.89643e-52 -1.19134e-45 -1.68043e-50 -1.09751e-44 -3.1537e-49 -3.51214e-44 -4.11539e-48 -1.03643e-44 -1.90189e-47 -2.48982e-49 -6.18095e-48 -5.87169e-53 -1.27521e-60 -1.98311e-61 9.67846e-59 -6.99126e-64 5.63285e-60 -3.26197e-64 8.42751e-63 -2.55865e-64 2.3745e-63 -1.91112e-64 1.30006e-63 -1.91442e-64 7.34828e-64 -2.19776e-64 5.87129e-64 -3.1867e-64 5.58205e-64 -4.65321e-64 6.895e-64 -6.55243e-64 8.76425e-64 -8.55048e-64 1.09225e-63 -1.18002e-63 1.27734e-63 -1.46005e-63 1.59464e-63 -1.72866e-63 1.79722e-63 -2.05385e-63 1.9483e-63 -1.93494e-63 2.1281e-63 -1.53914e-63 1.84957e-63 -1.2743e-63 1.36166e-63 -1.34961e-63 1.04685e-63 -1.34352e-63 1.03312e-63 -1.48467e-63 9.61898e-64 -1.86078e-63 9.98051e-64 -2.38557e-63 1.17922e-63 -3.09895e-63 1.43085e-63 -2.67095e-63 1.76589e-63 -2.75453e-63 1.45095e-63 -3.07348e-63 1.43066e-63 -3.47354e-63 1.52963e-63 -3.69731e-63 1.65891e-63 -3.71911e-63 1.69542e-63 -3.90177e-63 1.63696e-63 -4.25394e-63 1.64652e-63 -4.7084e-63 1.71776e-63 -5.2951e-63 1.8146e-63 -6.03171e-63 1.9415e-63 -7.00095e-63 2.09641e-63 -8.28205e-63 2.29721e-63 -1.01878e-62 2.55421e-63 -1.24955e-62 2.93874e-63 -1.50967e-62 3.35346e-63 -1.74751e-62 3.74773e-63 -1.91251e-62 3.98784e-63 -1.95424e-62 3.98529e-63 -1.82676e-62 3.69265e-63 -1.57862e-62 3.10742e-63 -1.26201e-62 2.39946e-63 -9.59901e-63 1.70071e-63 -6.99525e-63 1.13726e-63 -4.79292e-63 7.21601e-64 -3.20769e-63 4.25378e-64 -1.94199e-63 2.41095e-64 -1.05575e-63 1.209e-64 -5.41672e-64 5.26806e-65 -2.86259e-64 2.05789e-65 -1.50606e-64 7.57865e-66 -9.95956e-65 2.30954e-66 -8.11396e-65 4.58034e-67 -7.39463e-65 -1.78946e-70 -7.03009e-65 -4.27447e-70 -7.27147e-65 -6.36116e-70 -7.64441e-65 -8.78185e-70 -8.64619e-65 -1.14516e-69 -9.9603e-65 -1.53117e-69 -1.22556e-64 -2.03736e-69 -1.52645e-64 -2.83142e-69 -2.02101e-64 -3.95392e-69 -2.67617e-64 -5.80093e-69 -3.74863e-64 -8.54053e-69 -5.20948e-64 -1.32312e-68 -7.65077e-64 -2.04852e-68 -1.11334e-63 -3.34643e-68 -1.70373e-63 -5.47899e-68 -2.58895e-63 -9.41894e-68 -4.13574e-63 -1.62411e-67 -6.58388e-63 -2.94522e-67 -1.10999e-62 -5.36655e-67 -1.88031e-62 -1.03426e-66 -3.42614e-62 -2.01915e-66 -6.41264e-62 -4.24188e-66 -1.32999e-61 -9.25999e-66 -2.91552e-61 -2.24634e-65 -7.30371e-61 -5.74139e-65 -2.00225e-60 -1.66606e-64 -6.85841e-60 -5.36122e-64 -2.62467e-59 -2.0464e-63 -1.22971e-58 -8.54114e-63 -6.69171e-58 -4.27822e-62 -4.95104e-57 -2.46582e-61 -4.91383e-56 -1.88751e-60 -7.71192e-55 -1.91412e-59 -1.81076e-53 -2.97307e-58 -5.56706e-52 -6.56507e-57 -1.70561e-50 -1.75965e-55 -4.28037e-49 -4.61519e-54 -7.18881e-48 -1.09863e-52 -6.50081e-47 -2.17974e-51 -1.90121e-46 -2.73927e-50 -3.99215e-47 -1.10249e-49 -2.58668e-52 -2.40479e-50 -5.49501e-56 -1.83277e-67 -3.83196e-64 1.14498e-61 -1.27672e-66 1.15685e-62 -3.1316e-67 1.63472e-65 -2.40024e-67 2.4231e-66 -1.75198e-67 1.29767e-66 -1.73026e-67 7.1743e-67 -1.97826e-67 5.65442e-67 -2.88807e-67 5.35414e-67 -4.26073e-67 6.65587e-67 -6.06271e-67 8.54133e-67 -7.97162e-67 1.07471e-66 -1.10533e-66 1.26541e-66 -1.37069e-66 1.58635e-66 -1.62446e-66 1.7915e-66 -1.92825e-66 1.94434e-66 -1.81479e-66 2.12291e-66 -1.43819e-66 1.8447e-66 -1.18239e-66 1.35435e-66 -1.24824e-66 1.03501e-66 -1.23715e-66 1.01911e-66 -1.36634e-66 9.45383e-67 -1.71832e-66 9.80772e-67 -2.21063e-66 1.16281e-66 -2.87706e-66 1.41535e-66 -2.46332e-66 1.74866e-66 -2.52947e-66 1.42563e-66 -2.8112e-66 1.39754e-66 -3.15841e-66 1.48573e-66 -3.33033e-66 1.59882e-66 -3.30546e-66 1.61567e-66 -3.41533e-66 1.53657e-66 -3.65921e-66 1.51988e-66 -3.967e-66 1.5564e-66 -4.35136e-66 1.60913e-66 -4.80872e-66 1.67861e-66 -5.38037e-66 1.75854e-66 -6.10112e-66 1.85848e-66 -7.1926e-66 1.98264e-66 -8.46313e-66 2.18933e-66 -9.85339e-66 2.40151e-66 -1.10591e-65 2.59317e-66 -1.18183e-65 2.68441e-66 -1.18856e-65 2.63036e-66 -1.09827e-65 2.41061e-66 -9.42058e-66 2.01686e-66 -7.46873e-66 1.556e-66 -5.63903e-66 1.10173e-66 -4.08023e-66 7.37211e-67 -2.76267e-66 4.68596e-67 -1.82718e-66 2.75751e-67 -1.0917e-66 1.56332e-67 -5.91e-67 7.85794e-68 -3.02467e-67 3.48481e-68 -1.58928e-67 1.40437e-68 -8.21216e-68 5.45506e-69 -4.33729e-68 1.85837e-69 -3.16643e-68 4.92871e-70 -2.78519e-68 1.80331e-71 -2.60357e-68 -1.0551e-73 -2.67311e-68 -1.92314e-73 -2.82139e-68 -2.86089e-73 -3.21266e-68 -3.90376e-73 -3.76458e-68 -5.41274e-73 -4.71637e-68 -7.47749e-73 -6.03636e-68 -1.07377e-72 -8.20986e-68 -1.56362e-72 -1.12871e-67 -2.38819e-72 -1.63954e-67 -3.68287e-72 -2.38384e-67 -5.9752e-72 -3.65688e-67 -9.74979e-72 -5.61764e-67 -1.67687e-71 -9.05299e-67 -2.90575e-71 -1.46278e-66 -5.28734e-71 -2.48698e-66 -9.73093e-71 -4.25531e-66 -1.88355e-70 -7.72273e-66 -3.69746e-70 -1.42559e-65 -7.69489e-70 -2.84702e-65 -1.64332e-69 -5.9465e-65 -3.80417e-69 -1.39059e-64 -9.27955e-69 -3.45542e-64 -2.5087e-68 -9.84306e-64 -7.2284e-68 -3.14405e-63 -2.38172e-67 -1.20678e-62 -8.60772e-67 -5.14338e-62 -3.622e-66 -2.68003e-61 -1.67565e-65 -1.6439e-60 -9.31e-65 -1.37734e-59 -6.0309e-64 -1.58234e-58 -5.21687e-63 -2.89936e-57 -6.11625e-62 -7.8844e-56 -1.10897e-60 -2.68574e-54 -2.84058e-59 -8.7834e-53 -8.58825e-58 -2.28141e-51 -2.50717e-56 -3.86674e-50 -6.49538e-55 -3.39818e-49 -1.32122e-53 -8.93722e-49 -1.57293e-52 -1.29779e-49 -5.43559e-52 -2.07099e-55 -7.77774e-53 -3.89601e-59 -2.12529e-82 -7.00451e-67 1.25728e-64 -2.51564e-69 2.23967e-65 -3.01616e-70 3.40928e-68 -2.25882e-70 2.47146e-69 -1.61297e-70 1.29432e-69 -1.57142e-70 7.00569e-70 -1.78985e-70 5.44938e-70 -2.6308e-70 5.14086e-70 -3.92107e-70 6.43241e-70 -5.63771e-70 8.33493e-70 -7.4694e-70 1.05902e-69 -1.04052e-69 1.25572e-69 -1.29322e-69 1.58086e-69 -1.53424e-69 1.78901e-69 -1.81942e-69 1.94387e-69 -1.71115e-69 2.12121e-69 -1.35208e-69 1.84306e-69 -1.10493e-69 1.35022e-69 -1.16273e-69 1.0265e-69 -1.14761e-69 1.00825e-69 -1.2661e-69 9.31972e-70 -1.59544e-69 9.66162e-70 -2.05645e-69 1.14785e-69 -2.67724e-69 1.39941e-69 -2.27771e-69 1.72843e-69 -2.32788e-69 1.39889e-69 -2.57531e-69 1.36322e-69 -2.87498e-69 1.44057e-69 -3.00303e-69 1.53801e-69 -2.94257e-69 1.53726e-69 -2.99638e-69 1.44124e-69 -3.15787e-69 1.40317e-69 -3.35847e-69 1.41198e-69 -3.60197e-69 1.43109e-69 -3.87567e-69 1.45918e-69 -4.1997e-69 1.4884e-69 -4.58682e-69 1.52402e-69 -5.19866e-69 1.56718e-69 -5.8726e-69 1.66583e-69 -6.57594e-69 1.75731e-69 -7.12852e-69 1.82917e-69 -7.40365e-69 1.83411e-69 -7.29726e-69 1.75274e-69 -6.64227e-69 1.58081e-69 -5.64117e-69 1.3091e-69 -4.42499e-69 1.00538e-69 -3.31131e-69 7.08543e-70 -2.37761e-69 4.72994e-70 -1.59036e-69 3.00513e-70 -1.03968e-69 1.76134e-70 -6.13233e-70 9.96582e-71 -3.30863e-70 5.0053e-71 -1.69055e-70 2.24859e-71 -8.84464e-71 9.26452e-72 -4.54026e-71 3.72331e-72 -2.34463e-71 1.35434e-72 -1.31907e-71 4.22258e-73 -1.09265e-71 8.79776e-74 -9.96788e-72 -1.86863e-77 -1.01091e-71 -5.65538e-77 -1.06473e-71 -9.40592e-77 -1.21887e-71 -1.35513e-76 -1.44967e-71 -1.95017e-76 -1.84335e-71 -2.79838e-76 -2.424e-71 -4.15877e-76 -3.38923e-71 -6.28994e-76 -4.82896e-71 -9.99081e-76 -7.28113e-71 -1.61385e-75 -1.10787e-70 -2.73839e-75 -1.77995e-70 -4.71007e-75 -2.88395e-70 -8.53032e-75 -4.91032e-70 -1.56833e-74 -8.46477e-70 -3.02637e-74 -1.53717e-69 -5.95342e-74 -2.83777e-69 -1.23424e-73 -5.57272e-69 -2.62127e-73 -1.12794e-68 -5.92936e-73 -2.48821e-68 -1.39225e-72 -5.82089e-68 -3.55509e-72 -1.52028e-67 -9.62609e-72 -4.26704e-67 -2.89521e-71 -1.38252e-66 -9.37341e-71 -4.96655e-66 -3.44173e-70 -2.10358e-65 -1.37376e-69 -9.94246e-65 -6.34352e-69 -5.74534e-64 -3.24614e-68 -3.956e-63 -1.99557e-67 -3.73496e-62 -1.44686e-66 -4.93245e-61 -1.40962e-65 -1.04367e-59 -1.90043e-64 -3.22664e-58 -3.98717e-63 -1.1961e-56 -1.16706e-61 -4.11642e-55 -3.92173e-60 -1.0952e-53 -1.25145e-58 -1.85617e-52 -3.44185e-57 -1.57092e-51 -7.02665e-56 -3.65643e-51 -7.83887e-55 -3.57834e-52 -2.29648e-54 -1.27835e-58 -2.11014e-55 -2.10786e-62 -2.29343e-273 -1.21661e-69 1.29232e-67 -5.0245e-72 4.10549e-68 -2.91853e-73 7.18332e-71 -2.13327e-73 2.5239e-72 -1.49174e-73 1.29095e-72 -1.43447e-73 6.84696e-73 -1.62813e-73 5.25907e-73 -2.40934e-73 4.94454e-73 -3.62775e-73 6.22776e-73 -5.27031e-73 8.14938e-73 -7.03596e-73 1.04575e-72 -9.84635e-73 1.24889e-72 -1.22652e-72 1.57895e-72 -1.45661e-72 1.79061e-72 -1.72566e-72 1.94778e-72 -1.62214e-72 2.12402e-72 -1.27873e-72 1.84545e-72 -1.03949e-72 1.34961e-72 -1.0903e-72 1.02129e-72 -1.07181e-72 1.00046e-72 -1.18066e-72 9.21502e-73 -1.48897e-72 9.54122e-73 -1.92029e-72 1.13451e-72 -2.49743e-72 1.38362e-72 -2.11168e-72 1.70635e-72 -2.14727e-72 1.37148e-72 -2.36334e-72 1.32843e-72 -2.62045e-72 1.39497e-72 -2.71144e-72 1.47735e-72 -2.6241e-72 1.46086e-72 -2.6348e-72 1.35108e-72 -2.73336e-72 1.29563e-72 -2.85496e-72 1.28224e-72 -2.99906e-72 1.27555e-72 -3.15006e-72 1.27347e-72 -3.31784e-72 1.26802e-72 -3.50516e-72 1.26242e-72 -3.83344e-72 1.2566e-72 -4.1669e-72 1.29026e-72 -4.48792e-72 1.3117e-72 -4.68936e-72 1.31582e-72 -4.71709e-72 1.27485e-72 -4.54004e-72 1.18347e-72 -4.05747e-72 1.04594e-72 -3.40324e-72 8.53848e-73 -2.63483e-72 6.50536e-73 -1.95093e-72 4.54752e-73 -1.389e-72 3.02011e-73 -9.17354e-73 1.91406e-73 -5.92733e-73 1.11518e-73 -3.45152e-73 6.28572e-74 -1.85659e-73 3.14699e-74 -9.47235e-74 1.42739e-74 -4.93371e-74 5.97708e-75 -2.51798e-74 2.45657e-75 -1.29232e-74 9.30109e-76 -6.65452e-75 3.17233e-76 -4.52637e-75 8.41326e-77 -3.94625e-75 5.71472e-78 -3.93062e-75 -1.55459e-80 -4.11655e-75 -3.10946e-80 -4.71917e-75 -4.7928e-80 -5.6883e-75 -7.16594e-80 -7.34822e-75 -1.06778e-79 -9.88901e-75 -1.63971e-79 -1.42062e-74 -2.57957e-79 -2.09909e-74 -4.24879e-79 -3.28323e-74 -7.1819e-79 -5.23247e-74 -1.27521e-78 -8.81094e-74 -2.30844e-78 -1.50997e-73 -4.40868e-78 -2.72186e-73 -8.60526e-78 -5.0127e-73 -1.76475e-77 -9.75373e-73 -3.72017e-77 -1.95028e-72 -8.29227e-77 -4.16943e-72 -1.91178e-76 -9.29597e-72 -4.71485e-76 -2.26631e-71 -1.21646e-75 -5.89595e-71 -3.41462e-75 -1.71604e-70 -1.02338e-74 -5.41995e-70 -3.41116e-74 -1.9593e-69 -1.22736e-73 -7.78042e-69 -4.95351e-73 -3.61785e-68 -2.16923e-72 -1.89108e-67 -1.09725e-71 -1.20789e-66 -6.18982e-71 -9.28781e-66 -4.19945e-70 -9.83375e-65 -3.39585e-69 -1.48185e-63 -3.71224e-68 -3.57937e-62 -5.71995e-67 -1.23578e-60 -1.37409e-65 -4.90672e-59 -4.5246e-64 -1.75559e-57 -1.66395e-62 -4.74107e-56 -5.699e-61 -7.97009e-55 -1.63021e-59 -6.44017e-54 -3.29097e-58 -1.30649e-53 -3.41304e-57 -8.41306e-55 -8.37606e-57 -6.10795e-62 -4.84517e-58 -8.86032e-66 -1.29712e-269 -2.01738e-72 1.2527e-70 -9.8611e-75 7.16045e-71 -2.84373e-76 1.48271e-73 -2.02242e-76 2.5874e-75 -1.38621e-76 1.28839e-75 -1.31643e-76 6.70163e-76 -1.48931e-76 5.08548e-76 -2.21887e-76 4.76665e-76 -3.3751e-76 6.04409e-76 -4.9542e-76 7.988e-76 -6.66441e-76 1.03535e-75 -9.36848e-76 1.2455e-75 -1.1696e-75 1.58136e-75 -1.39044e-75 1.79713e-75 -1.64555e-75 1.95698e-75 -1.54624e-75 2.13233e-75 -1.21657e-75 1.85267e-75 -9.84297e-76 1.35294e-75 -1.02892e-75 1.01951e-75 -1.00747e-75 9.95822e-76 -1.10761e-75 9.13947e-76 -1.3965e-75 9.44659e-76 -1.79993e-75 1.12302e-75 -2.33587e-75 1.36852e-75 -1.96316e-75 1.68339e-75 -1.98549e-75 1.34402e-75 -2.173e-75 1.29374e-75 -2.39218e-75 1.3496e-75 -2.45191e-75 1.41756e-75 -2.34454e-75 1.38703e-75 -2.32227e-75 1.26614e-75 -2.37276e-75 1.19667e-75 -2.43596e-75 1.16555e-75 -2.50947e-75 1.13906e-75 -2.5778e-75 1.11491e-75 -2.64622e-75 1.0857e-75 -2.71369e-75 1.05379e-75 -2.87383e-75 1.01881e-75 -3.0148e-75 1.01393e-75 -3.1278e-75 9.96118e-76 -3.14907e-75 9.64186e-76 -3.0618e-75 9.02019e-76 -2.86965e-75 8.11421e-76 -2.51088e-75 7.004e-76 -2.07498e-75 5.61669e-76 -1.58178e-75 4.23206e-76 -1.15684e-75 2.92502e-76 -8.15899e-76 1.9275e-76 -5.31647e-76 1.21622e-76 -3.39406e-76 7.03088e-77 -1.95071e-76 3.94126e-77 -1.04595e-76 1.96303e-77 -5.32647e-77 8.96506e-78 -2.75987e-77 3.79844e-78 -1.39949e-77 1.58412e-78 -7.14566e-78 6.15126e-79 -3.64032e-78 2.21383e-79 -2.01396e-78 6.73484e-80 -1.63257e-78 1.31756e-80 -1.5768e-78 -3.44668e-84 -1.63374e-78 -1.02322e-83 -1.86616e-78 -1.72359e-83 -2.27396e-78 -2.69145e-83 -2.97762e-78 -4.15417e-83 -4.10731e-78 -6.58774e-83 -6.04752e-78 -1.07563e-82 -9.26326e-78 -1.84048e-82 -1.50487e-77 -3.24445e-82 -2.50963e-77 -6.02963e-82 -4.43777e-77 -1.1494e-81 -8.05174e-77 -2.31506e-81 -1.54004e-76 -4.80032e-81 -3.03747e-76 -1.04839e-80 -6.35574e-76 -2.37351e-80 -1.38066e-75 -5.70193e-80 -3.22192e-75 -1.42949e-79 -7.90428e-75 -3.84077e-79 -2.12142e-74 -1.086e-78 -6.11721e-74 -3.34012e-78 -1.9756e-73 -1.10299e-77 -6.94183e-73 -4.04788e-77 -2.7604e-72 -1.6021e-76 -1.20311e-71 -7.05868e-76 -6.12757e-71 -3.38075e-75 -3.5282e-70 -1.86946e-74 -2.48279e-69 -1.16007e-73 -2.12242e-68 -8.65663e-73 -2.50743e-67 -7.77759e-72 -4.2782e-66 -9.49953e-71 -1.16529e-64 -1.66157e-69 -4.41791e-63 -4.51786e-68 -1.85314e-61 -1.64748e-66 -6.82108e-60 -6.53043e-65 -1.85523e-58 -2.36087e-63 -3.07162e-57 -6.9094e-62 -2.35095e-56 -1.36428e-60 -4.09628e-56 -1.30664e-59 -1.6974e-57 -2.65693e-59 -2.29489e-65 -9.50505e-61 -2.97597e-69 -6.7573e-266 -3.2079e-75 1.15275e-73 -1.87941e-77 1.19396e-73 -2.80095e-79 2.96395e-76 -1.92514e-79 2.67389e-78 -1.29453e-79 1.28736e-78 -1.21474e-79 6.57247e-79 -1.3702e-79 4.92991e-79 -2.05529e-79 4.60807e-79 -3.15822e-79 5.88287e-79 -4.68392e-79 7.85339e-79 -6.34882e-79 1.02824e-78 -8.96444e-79 1.24606e-78 -1.12161e-78 1.58878e-78 -1.33473e-78 1.80936e-78 -1.5779e-78 1.97235e-78 -1.48222e-78 2.14711e-78 -1.16433e-78 1.86551e-78 -9.37981e-79 1.36066e-78 -9.77052e-79 1.02133e-78 -9.52886e-79 9.94465e-79 -1.04511e-78 9.09351e-79 -1.31615e-78 9.37835e-79 -1.6936e-78 1.1136e-78 -2.19096e-78 1.3546e-78 -1.83036e-78 1.66043e-78 -1.84064e-78 1.31704e-78 -2.00227e-78 1.25967e-78 -2.18771e-78 1.30503e-78 -2.22113e-78 1.35928e-78 -2.09912e-78 1.31624e-78 -2.05181e-78 1.1865e-78 -2.0657e-78 1.10579e-78 -2.08582e-78 1.0606e-78 -2.10918e-78 1.01898e-78 -2.12177e-78 9.78781e-79 -2.12705e-78 9.33424e-79 -2.12312e-78 8.85006e-79 -2.18371e-78 8.33272e-79 -2.21753e-78 8.06101e-79 -2.22114e-78 7.67484e-79 -2.15669e-78 7.18263e-79 -2.02542e-78 6.49222e-79 -1.84527e-78 5.65317e-79 -1.57719e-78 4.7552e-79 -1.28147e-78 3.73562e-79 -9.5972e-79 2.77615e-79 -6.92083e-79 1.89165e-79 -4.82973e-79 1.23386e-79 -3.10216e-79 7.73637e-80 -1.9556e-79 4.42958e-80 -1.10882e-79 2.4654e-80 -5.9226e-80 1.21934e-80 -3.00777e-80 5.5928e-81 -1.54857e-80 2.38877e-81 -7.79396e-81 1.00506e-81 -3.954e-81 3.96447e-82 -2.00373e-81 1.47523e-82 -1.07006e-81 4.8589e-83 -7.11002e-82 1.25285e-83 -6.53773e-82 -9.51327e-89 -6.65543e-82 -3.30463e-87 -7.55678e-82 -6.28415e-87 -9.26204e-82 -1.03054e-86 -1.22777e-81 -1.64872e-86 -1.73222e-81 -2.69487e-86 -2.61992e-81 -4.56136e-86 -4.14837e-81 -8.09381e-86 -7.00539e-81 -1.49117e-85 -1.22384e-80 -2.89404e-85 -2.27374e-80 -5.80669e-85 -4.37133e-80 -1.23486e-84 -8.89046e-80 -2.72245e-84 -1.88187e-79 -6.34261e-84 -4.24376e-79 -1.54329e-83 -1.00293e-78 -3.99943e-83 -2.55192e-78 -1.08884e-82 -6.86804e-78 -3.18001e-82 -2.02181e-77 -9.81141e-82 -6.43009e-77 -3.29681e-81 -2.28838e-76 -1.19351e-80 -8.85075e-76 -4.79261e-80 -3.84354e-75 -2.07281e-79 -1.83208e-74 -9.93242e-79 -1.01951e-73 -5.19423e-78 -6.44899e-73 -3.13152e-77 -4.97967e-72 -2.13158e-76 -4.71066e-71 -1.74514e-75 -6.17724e-70 -1.73456e-74 -1.18401e-68 -2.35677e-73 -3.59197e-67 -4.64468e-72 -1.47267e-65 -1.41189e-70 -6.44842e-64 -5.61658e-69 -2.42026e-62 -2.36587e-67 -6.5843e-61 -8.89856e-66 -1.0668e-59 -2.63019e-64 -7.67491e-59 -5.03697e-63 -1.13296e-58 -4.43079e-62 -2.96114e-60 -7.39179e-62 -6.96136e-69 -1.60919e-63 -8.28534e-73 -3.2674e-262 -4.91116e-78 1.01286e-76 -3.46832e-80 1.91186e-76 -2.80677e-82 5.72328e-79 -1.8404e-82 2.80435e-81 -1.2151e-82 1.28852e-81 -1.12724e-82 6.46166e-82 -1.26808e-82 4.79323e-82 -1.91512e-82 4.46926e-82 -2.97294e-82 5.74515e-82 -4.45483e-82 7.74766e-82 -6.08418e-82 1.02477e-81 -8.62819e-82 1.25107e-81 -1.08187e-81 1.60189e-81 -1.28866e-81 1.82808e-81 -1.52167e-81 1.99472e-81 -1.42903e-81 2.16926e-81 -1.12101e-81 1.88472e-81 -8.9947e-82 1.3732e-81 -9.33483e-82 1.02696e-81 -9.06732e-82 9.96549e-82 -9.91729e-82 9.07794e-82 -1.24642e-81 9.33739e-82 -1.5998e-81 1.1065e-81 -2.0613e-81 1.34232e-81 -1.71175e-81 1.63823e-81 -1.71106e-81 1.29107e-81 -1.8493e-81 1.22671e-81 -2.00483e-81 1.26182e-81 -2.01615e-81 1.30307e-81 -1.88368e-81 1.24891e-81 -1.81756e-81 1.11219e-81 -1.80374e-81 1.02258e-81 -1.79226e-81 9.66287e-82 -1.78019e-81 9.13235e-82 -1.75552e-81 8.61503e-82 -1.72116e-81 8.05409e-82 -1.67561e-81 7.47022e-82 -1.67785e-81 6.86353e-82 -1.65381e-81 6.46902e-82 -1.6032e-81 5.98429e-82 -1.50382e-81 5.42723e-82 -1.36463e-81 4.74635e-82 -1.20749e-81 4.00082e-82 -1.00661e-81 3.27545e-82 -8.02728e-82 2.51571e-82 -5.89465e-82 1.83988e-82 -4.18449e-82 1.2329e-82 -2.88577e-82 7.94231e-83 -1.82517e-82 4.93907e-83 -1.13525e-82 2.79592e-83 -6.34555e-83 1.54249e-83 -3.37283e-83 7.56169e-84 -1.706e-83 3.47471e-84 -8.71556e-84 1.49111e-84 -4.34849e-84 6.30048e-85 -2.18838e-84 2.50758e-85 -1.10218e-84 9.52587e-86 -5.8265e-85 3.29458e-86 -3.2722e-85 9.77016e-87 -2.8235e-85 1.36571e-87 -2.78271e-85 -9.96049e-91 -3.12713e-85 -2.32446e-90 -3.84687e-85 -4.02203e-90 -5.14853e-85 -6.66534e-90 -7.42107e-85 -1.12191e-89 -1.15136e-84 -1.96348e-89 -1.88948e-84 -3.61153e-89 -3.31088e-84 -6.93788e-89 -6.05884e-84 -1.41053e-88 -1.18437e-83 -2.97804e-88 -2.41515e-83 -6.68473e-88 -5.23175e-83 -1.56694e-87 -1.18926e-82 -3.89635e-87 -2.89243e-82 -1.01921e-86 -7.42492e-82 -2.84541e-86 -2.05468e-81 -8.38524e-86 -6.03808e-81 -2.65473e-85 -1.94339e-80 -8.91275e-85 -6.78052e-80 -3.25954e-84 -2.64189e-79 -1.28889e-83 -1.11697e-78 -5.6328e-83 -5.27547e-78 -2.6496e-82 -2.74459e-77 -1.37781e-81 -1.66355e-76 -7.84931e-81 -1.15226e-75 -5.15156e-80 -9.73311e-75 -3.83424e-79 -1.01381e-73 -3.43444e-78 -1.4682e-72 -3.76216e-77 -3.13628e-71 -5.65967e-76 -1.04677e-69 -1.24653e-74 -4.57811e-68 -4.18312e-73 -2.07147e-66 -1.79007e-71 -7.86939e-65 -7.91099e-70 -2.1286e-63 -3.0578e-68 -3.35503e-62 -9.03651e-67 -2.25302e-61 -1.66834e-65 -2.78296e-61 -1.34092e-64 -4.50486e-63 -1.81836e-64 -1.76616e-72 -2.38166e-66 -1.96156e-76 -1.4756e-258 -7.26474e-81 8.54097e-80 -6.20202e-83 2.95192e-79 -2.89026e-85 1.0686e-81 -1.76728e-85 3.01564e-84 -1.14659e-85 1.29245e-84 -1.05211e-85 6.371e-85 -1.18071e-85 4.67602e-85 -1.79544e-85 4.35047e-85 -2.81575e-85 5.63167e-85 -4.26298e-85 7.67261e-85 -5.86625e-85 1.02527e-84 -8.35467e-85 1.26102e-84 -1.04976e-84 1.62134e-84 -1.25154e-84 1.85405e-84 -1.47601e-84 2.02494e-84 -1.38578e-84 2.19966e-84 -1.08577e-84 1.911e-84 -8.67903e-85 1.391e-84 -8.97246e-85 1.0366e-84 -8.67955e-85 1.00224e-84 -9.46326e-85 9.09378e-85 -1.18609e-84 9.32489e-85 -1.5173e-84 1.10194e-84 -1.94564e-84 1.33212e-84 -1.60601e-84 1.61753e-84 -1.59532e-84 1.2666e-84 -1.71249e-84 1.19534e-84 -1.84154e-84 1.2205e-84 -1.8343e-84 1.24947e-84 -1.69463e-84 1.18541e-84 -1.61456e-84 1.04325e-84 -1.5799e-84 9.46627e-85 -1.54547e-84 8.81659e-85 -1.50869e-84 8.2008e-85 -1.45956e-84 7.60234e-85 -1.40103e-84 6.97289e-85 -1.33237e-84 6.33354e-85 -1.3013e-84 5.68705e-85 -1.24781e-84 5.23165e-85 -1.17347e-84 4.71238e-85 -1.06548e-84 4.15057e-85 -9.35248e-85 3.51833e-85 -8.0368e-85 2.87323e-85 -6.52856e-85 2.28859e-85 -5.10308e-85 1.71635e-85 -3.66839e-85 1.23322e-85 -2.55963e-85 8.11023e-86 -1.7421e-85 5.14969e-86 -1.08374e-85 3.17024e-86 -6.64451e-86 1.7712e-86 -3.65808e-86 9.66954e-87 -1.93221e-86 4.69026e-87 -9.71901e-87 2.1538e-87 -4.9194e-87 9.2577e-88 -2.42996e-87 3.91341e-88 -1.21111e-87 1.56359e-88 -6.05318e-88 6.01162e-89 -3.17194e-88 2.14447e-89 -1.71754e-88 6.89111e-90 -1.26645e-88 1.46618e-90 -1.1997e-88 -2.43111e-94 -1.32322e-88 -8.65943e-94 -1.6273e-88 -1.59714e-93 -2.1951e-88 -2.74483e-93 -3.22409e-88 -4.75064e-93 -5.13034e-88 -8.57867e-93 -8.70901e-88 -1.63249e-92 -1.589e-87 -3.2677e-92 -3.04596e-87 -6.94257e-92 -6.26381e-87 -1.5427e-91 -1.35488e-86 -3.66071e-91 -3.1277e-86 -9.12479e-91 -7.63654e-86 -2.41985e-90 -2.00013e-85 -6.78815e-90 -5.55789e-85 -2.03848e-89 -1.66776e-84 -6.49032e-89 -5.33552e-84 -2.22213e-88 -1.87001e-83 -8.09363e-88 -7.12986e-83 -3.21399e-87 -3.02436e-82 -1.38056e-86 -1.39078e-81 -6.5431e-86 -7.12654e-81 -3.33988e-85 -4.03611e-80 -1.88272e-84 -2.65969e-79 -1.16537e-83 -2.01005e-78 -8.31284e-83 -1.85136e-77 -6.74528e-82 -2.1144e-76 -6.59101e-81 -3.3647e-75 -7.92525e-80 -7.94487e-74 -1.31376e-78 -2.88274e-72 -3.20629e-77 -1.32891e-70 -1.17351e-75 -6.15981e-69 -5.33416e-74 -2.35341e-67 -2.44573e-72 -6.29704e-66 -9.61644e-71 -9.60922e-65 -2.8188e-69 -5.9822e-64 -4.99174e-68 -6.11169e-64 -3.65174e-67 -6.04672e-66 -3.99151e-67 -3.84073e-76 -3.11015e-69 -4.0685e-80 -6.25591e-255 -1.04165e-83 6.94306e-83 -1.0769e-85 4.41079e-82 -3.10095e-88 1.93365e-84 -1.70502e-88 3.37183e-87 -1.08782e-88 1.29969e-87 -9.8782e-89 6.30199e-88 -1.10618e-88 4.57865e-88 -1.69379e-88 4.25177e-88 -2.68366e-88 5.54295e-88 -4.10506e-88 7.62982e-88 -5.69151e-88 1.03007e-87 -8.13965e-88 1.27637e-87 -1.02481e-87 1.64781e-87 -1.22278e-87 1.88805e-87 -1.44017e-87 2.06382e-87 -1.35174e-87 2.23913e-87 -1.05793e-87 1.94503e-87 -8.42593e-88 1.41447e-87 -8.67568e-88 1.05048e-87 -8.35718e-88 1.01174e-87 -9.07996e-88 9.14236e-88 -1.13419e-87 9.34232e-88 -1.44505e-87 1.1002e-87 -1.84288e-87 1.32444e-87 -1.51201e-87 1.59904e-87 -1.49219e-87 1.24413e-87 -1.59039e-87 1.16602e-87 -1.69603e-87 1.18153e-87 -1.6732e-87 1.19894e-87 -1.52881e-87 1.12603e-87 -1.43857e-87 9.79633e-88 -1.3884e-87 8.77546e-88 -1.33753e-87 8.05847e-88 -1.28385e-87 7.38018e-88 -1.21921e-87 6.72649e-88 -1.14677e-87 6.05655e-88 -1.06658e-87 5.39178e-88 -1.01749e-87 4.73685e-88 -9.50914e-88 4.2588e-88 -8.69323e-88 3.74165e-88 -7.65585e-88 3.20678e-88 -6.50964e-88 2.63962e-88 -5.43493e-88 2.09099e-88 -4.30053e-88 1.62074e-88 -3.29181e-88 1.18608e-88 -2.31359e-88 8.36182e-89 -1.58465e-88 5.38829e-89 -1.06297e-88 3.36653e-89 -6.49651e-89 2.04797e-89 -3.92203e-89 1.12738e-89 -2.12459e-89 6.08037e-90 -1.11343e-89 2.91323e-90 -5.56006e-90 1.3336e-90 -2.78398e-90 5.72508e-91 -1.35961e-90 2.41326e-91 -6.70088e-91 9.64067e-92 -3.31837e-91 3.72776e-92 -1.7218e-91 1.35565e-92 -9.22767e-92 4.57543e-93 -5.89009e-92 1.18036e-93 -5.32345e-92 -1.42502e-98 -5.71847e-92 -3.20166e-97 -7.01204e-92 -6.44936e-97 -9.51066e-92 -1.14578e-96 -1.42034e-91 -2.03877e-96 -2.31408e-91 -3.7997e-96 -4.06178e-91 -7.4656e-96 -7.69983e-91 -1.55475e-95 -1.54669e-90 -3.45098e-95 -3.35158e-90 -8.06069e-95 -7.69122e-90 -2.01948e-94 -1.89062e-89 -5.34644e-94 -4.94565e-89 -1.51121e-93 -1.39272e-88 -4.54102e-93 -4.18077e-88 -1.46429e-92 -1.35687e-87 -5.02474e-92 -4.71069e-87 -1.85621e-91 -1.7933e-86 -7.32147e-91 -7.42946e-86 -3.14487e-90 -3.41805e-85 -1.46436e-89 -1.70541e-84 -7.50241e-89 -9.46844e-84 -4.14631e-88 -5.82093e-83 -2.52912e-87 -4.16257e-82 -1.69821e-86 -3.42129e-81 -1.31354e-85 -3.42497e-80 -1.15976e-84 -4.27089e-79 -1.23238e-83 -7.43242e-78 -1.62041e-82 -1.92422e-76 -2.94468e-81 -7.5067e-75 -7.8965e-80 -3.60976e-73 -3.11662e-78 -1.70151e-71 -1.48825e-76 -6.50247e-70 -7.01266e-75 -1.71329e-68 -2.78204e-73 -2.51975e-67 -8.04111e-72 -1.44635e-66 -1.35998e-70 -1.20953e-66 -9.01765e-70 -7.22041e-69 -7.88639e-70 -7.36892e-80 -3.62382e-72 -7.41209e-84 -2.50043e-251 -1.45205e-86 5.46243e-86 -1.82026e-88 6.3988e-85 -3.52109e-91 3.40003e-87 -1.65297e-91 3.98244e-90 -1.03784e-91 1.31075e-90 -9.3308e-92 6.25598e-91 -1.04291e-91 4.50137e-91 -1.60808e-91 4.17314e-91 -2.57416e-91 5.47942e-91 -3.97826e-91 7.62075e-91 -5.55703e-91 1.03948e-90 -7.97969e-91 1.29761e-90 -1.0066e-90 1.68197e-90 -1.20192e-90 1.93086e-90 -1.41356e-90 2.11219e-90 -1.32631e-90 2.28851e-90 -1.03695e-90 1.98749e-90 -8.22995e-91 1.44406e-90 -8.43836e-91 1.06886e-90 -8.09362e-91 1.02525e-90 -8.76019e-91 9.22539e-91 -1.08991e-90 9.39154e-91 -1.38219e-90 1.10155e-90 -1.75206e-90 1.31974e-90 -1.42874e-90 1.58339e-90 -1.40055e-90 1.22411e-90 -1.48168e-90 1.13917e-90 -1.56664e-90 1.14535e-90 -1.53069e-90 1.15185e-90 -1.38345e-90 1.07096e-90 -1.28594e-90 9.21259e-91 -1.22436e-90 8.14922e-91 -1.16196e-90 7.38044e-91 -1.09708e-90 6.65742e-91 -1.02321e-90 5.96806e-91 -9.43658e-91 5.27783e-91 -8.59137e-91 4.60797e-91 -8.01416e-91 3.96423e-91 -7.31015e-91 3.48691e-91 -6.50774e-91 2.99208e-91 -5.56896e-91 2.49926e-91 -4.59392e-91 2.00106e-91 -3.72925e-91 1.5397e-91 -2.8744e-91 1.16197e-91 -2.15318e-91 8.29592e-92 -1.47825e-91 5.73349e-92 -9.92784e-92 3.61578e-92 -6.55491e-92 2.21967e-92 -3.93139e-92 1.33208e-92 -2.33448e-92 7.21402e-93 -1.243e-92 3.83776e-93 -6.45223e-93 1.81335e-93 -3.19309e-93 8.25536e-94 -1.57917e-93 3.53015e-94 -7.61495e-94 1.47962e-94 -3.70569e-94 5.89021e-95 -1.8155e-94 2.2793e-95 -9.31459e-95 8.38054e-96 -4.94182e-95 2.91568e-96 -2.87013e-95 8.36428e-97 -2.41453e-95 8.68323e-98 -2.52337e-95 -1.15855e-100 -3.06224e-95 -2.63612e-100 -4.17182e-95 -4.85022e-100 -6.33631e-95 -8.84644e-100 -1.05509e-94 -1.69712e-99 -1.91252e-94 -3.44737e-99 -3.76674e-94 -7.45334e-99 -7.9203e-94 -1.72639e-98 -1.80641e-93 -4.23551e-98 -4.3929e-93 -1.1191e-97 -1.14918e-92 -3.14323e-97 -3.21699e-92 -9.45295e-97 -9.72247e-92 -3.03752e-96 -3.14486e-91 -1.04949e-95 -1.10126e-90 -3.87551e-95 -4.14085e-90 -1.54275e-94 -1.70541e-89 -6.5689e-94 -7.65956e-89 -3.04505e-93 -3.80902e-88 -1.53218e-92 -2.05701e-87 -8.4756e-92 -1.23496e-86 -5.06537e-91 -8.22683e-86 -3.33758e-90 -6.36813e-85 -2.42662e-89 -5.6804e-84 -2.03147e-88 -6.1607e-83 -1.94644e-87 -8.35605e-82 -2.24351e-86 -1.58245e-80 -3.21333e-85 -4.45685e-79 -6.37092e-84 -1.85059e-77 -1.86189e-82 -9.20149e-76 -7.84254e-81 -4.38376e-74 -3.89704e-79 -1.66827e-72 -1.87266e-77 -4.31355e-71 -7.44506e-76 -6.08879e-70 -2.11053e-74 -3.20472e-69 -3.39866e-73 -2.17383e-69 -2.03503e-72 -7.75047e-72 -1.41601e-72 -1.24978e-83 -3.80619e-75 -1.23624e-87 -9.45615e-248 -1.97342e-89 4.17371e-89 -3.00271e-91 9.0387e-88 -4.28469e-94 5.82458e-90 -1.61055e-94 5.03171e-93 -9.95787e-95 1.32612e-93 -8.86795e-95 6.23418e-94 -9.89551e-95 4.44437e-94 -1.53656e-94 4.11452e-94 -2.48511e-94 5.44146e-94 -3.8803e-94 7.64686e-94 -5.4605e-94 1.05382e-93 -7.87215e-94 1.32526e-93 -9.94842e-94 1.72457e-93 -1.1886e-93 1.98336e-93 -1.39573e-93 2.17101e-93 -1.30905e-93 2.34877e-93 -1.02243e-93 2.03919e-93 -8.08704e-94 1.48031e-93 -8.25581e-94 1.09207e-93 -7.88377e-94 1.04307e-93 -8.49831e-94 9.34514e-94 -1.0526e-93 9.47487e-94 -1.32796e-93 1.10632e-93 -1.6723e-93 1.31844e-93 -1.35533e-93 1.5712e-93 -1.31942e-93 1.20695e-93 -1.38518e-93 1.11513e-93 -1.45183e-93 1.11225e-93 -1.40482e-93 1.10842e-93 -1.25608e-93 1.02027e-93 -1.15352e-93 8.67962e-94 -1.0837e-93 7.58322e-94 -1.01344e-93 6.77494e-94 -9.41507e-94 6.02094e-94 -8.62745e-94 5.3106e-94 -7.80578e-94 4.61452e-94 -6.96151e-94 3.95319e-94 -6.35496e-94 3.33254e-94 -5.66395e-94 2.86993e-94 -4.91681e-94 2.40771e-94 -4.09483e-94 1.96259e-94 -3.28185e-94 1.53066e-94 -2.59255e-94 1.14548e-94 -1.94695e-94 8.42257e-95 -1.42671e-94 5.8669e-95 -9.56193e-95 3.97252e-95 -6.29092e-95 2.44968e-95 -4.08338e-95 1.47582e-95 -2.40085e-95 8.72403e-96 -1.40072e-95 4.64162e-96 -7.32296e-96 2.4321e-96 -3.75864e-96 1.13161e-96 -1.84019e-96 5.11184e-97 -8.97569e-97 2.172e-97 -4.26807e-97 9.0292e-98 -2.04788e-97 3.57149e-98 -9.91109e-98 1.37752e-98 -5.02092e-98 5.08858e-99 -2.63401e-98 1.80242e-99 -1.50569e-98 5.51143e-100 -1.11743e-98 9.65997e-101 -1.13165e-98 -4.00767e-104 -1.35533e-98 -1.08437e-103 -1.84768e-98 -2.07735e-103 -2.84678e-98 -3.87171e-103 -4.85257e-98 -7.63359e-103 -9.06712e-98 -1.59758e-102 -1.85369e-97 -3.59043e-102 -4.07771e-97 -8.66708e-102 -9.77893e-97 -2.22848e-101 -2.5175e-96 -6.20291e-101 -6.99659e-96 -1.84563e-100 -2.09241e-95 -5.89811e-100 -6.77168e-95 -2.02337e-99 -2.3564e-94 -7.48476e-99 -8.89069e-94 -2.96845e-98 -3.60868e-93 -1.27033e-97 -1.60391e-92 -5.82589e-97 -7.78372e-92 -2.91041e-96 -4.17831e-91 -1.57964e-95 -2.43896e-90 -9.41848e-95 -1.58052e-89 -6.07916e-94 -1.13866e-88 -4.3209e-93 -9.52194e-88 -3.39754e-92 -9.19245e-87 -3.07266e-91 -1.07734e-85 -3.18856e-90 -1.58352e-84 -3.97512e-89 -3.24893e-83 -6.1799e-88 -9.87996e-82 -1.33058e-86 -4.3268e-80 -4.20509e-85 -2.20813e-78 -1.87281e-83 -1.05818e-76 -9.60481e-82 -3.99478e-75 -4.6768e-80 -1.01001e-73 -1.85327e-78 -1.36423e-72 -5.13295e-77 -6.55205e-72 -7.84822e-76 -3.57949e-72 -4.23073e-75 -7.5507e-75 -2.32842e-75 -1.9517e-87 -3.64139e-78 -1.87576e-91 -3.39417e-244 -2.62182e-92 3.10682e-92 -4.8457e-94 1.24641e-90 -5.60628e-97 9.7452e-93 -1.5773e-97 6.82448e-96 -9.60958e-98 1.34633e-96 -8.48038e-98 6.2378e-97 -9.44972e-98 4.40784e-97 -1.47776e-97 4.07588e-97 -2.41479e-97 5.42948e-97 -3.80936e-97 7.70978e-97 -5.40024e-97 1.07347e-96 -7.81529e-97 1.35992e-96 -9.89351e-97 1.77646e-96 -1.18262e-96 2.04656e-96 -1.38641e-96 2.24137e-96 -1.29968e-96 2.42101e-96 -1.01411e-96 2.10106e-96 -7.99438e-97 1.52386e-96 -8.12464e-97 1.12054e-96 -7.72382e-97 1.06555e-96 -8.28997e-97 9.50449e-97 -1.02176e-96 9.59507e-97 -1.28176e-96 1.11482e-96 -1.60283e-96 1.32096e-96 -1.291e-96 1.56298e-96 -1.24789e-96 1.19298e-96 -1.29978e-96 1.09416e-96 -1.35018e-96 1.08245e-96 -1.29378e-96 1.0688e-96 -1.14451e-96 9.73951e-97 -1.03858e-96 8.19518e-97 -9.62917e-97 7.07301e-97 -8.87531e-97 6.23487e-97 -8.1154e-97 5.46046e-97 -7.3089e-97 4.74007e-97 -6.49017e-97 4.04831e-97 -5.67317e-97 3.40436e-97 -5.07132e-97 2.81364e-97 -4.4201e-97 2.37369e-97 -3.74563e-97 1.94845e-97 -3.03977e-97 1.55143e-97 -2.37001e-97 1.18003e-97 -1.82345e-97 8.5989e-98 -1.33468e-97 6.16457e-98 -9.56541e-98 4.19035e-98 -6.25584e-98 2.77865e-98 -4.02896e-98 1.67448e-98 -2.5681e-98 9.89077e-99 -1.4788e-98 5.75143e-99 -8.46813e-99 3.00271e-99 -4.34244e-99 1.54764e-99 -2.20015e-99 7.08118e-100 -1.06385e-99 3.1673e-100 -5.1105e-100 1.33413e-100 -2.39334e-100 5.48821e-101 -1.13073e-100 2.15147e-101 -5.39801e-101 8.2429e-102 -2.69637e-101 3.04393e-102 -1.39661e-101 1.08808e-102 -7.88284e-102 3.46089e-103 -5.27117e-102 7.62118e-104 -5.12746e-102 -1.25682e-107 -6.06268e-102 -4.48205e-107 -8.24029e-102 -8.96815e-107 -1.28618e-101 -1.70581e-106 -2.2374e-101 -3.44509e-106 -4.31649e-101 -7.42827e-106 -9.15093e-101 -1.72833e-105 -2.10176e-100 -4.34883e-105 -5.29497e-100 -1.17113e-104 -1.4411e-99 -3.42993e-104 -4.2497e-99 -1.07931e-103 -1.35551e-98 -3.66086e-103 -4.69372e-98 -1.33907e-102 -1.75345e-97 -5.29133e-102 -7.11039e-97 -2.25032e-101 -3.10804e-96 -1.03346e-100 -1.48846e-95 -5.10111e-100 -7.78983e-95 -2.73971e-99 -4.5055e-94 -1.60206e-98 -2.83871e-93 -1.02854e-97 -1.98265e-92 -7.16012e-97 -1.54271e-91 -5.48427e-96 -1.39097e-90 -4.65764e-95 -1.45042e-89 -4.5438e-94 -1.8318e-88 -5.09504e-93 -2.90792e-87 -6.85452e-92 -6.43632e-86 -1.15302e-90 -2.09854e-84 -2.68428e-89 -9.61577e-83 -9.10764e-88 -5.00546e-81 -4.25459e-86 -2.40345e-79 -2.23633e-84 -8.97371e-78 -1.09705e-82 -2.21312e-76 -4.315e-81 -2.85241e-75 -1.16431e-79 -1.24497e-74 -1.68715e-78 -5.43804e-75 -8.15891e-78 -6.74171e-78 -3.54235e-78 -2.78711e-91 -3.21253e-81 -2.68271e-95 -1.1594e-240 -3.41364e-95 2.25953e-95 -7.66682e-97 1.6818e-93 -7.82443e-100 1.59603e-95 -1.55284e-100 9.85766e-99 -9.32746e-101 1.3719e-99 -8.16032e-101 6.26814e-100 -9.08232e-101 4.39204e-100 -1.43045e-100 4.05728e-100 -2.36179e-100 5.44408e-100 -3.76413e-100 7.81148e-100 -5.37524e-100 1.09886e-99 -7.80831e-100 1.4023e-99 -9.90064e-100 1.8387e-99 -1.18392e-99 2.12171e-99 -1.38549e-99 2.32463e-99 -1.29807e-99 2.50663e-99 -1.01186e-99 2.17427e-99 -7.9503e-100 1.57553e-99 -8.04263e-100 1.15481e-99 -7.61104e-100 1.09316e-99 -8.1319e-100 9.70693e-100 -9.96963e-100 9.75532e-100 -1.24307e-99 1.12742e-99 -1.54295e-99 1.32769e-99 -1.23502e-99 1.55916e-99 -1.18513e-99 1.18246e-99 -1.22444e-99 1.07643e-99 -1.26038e-99 1.05606e-99 -1.19594e-99 1.033e-99 -1.04681e-99 9.31888e-100 -9.38739e-100 7.75658e-100 -8.59055e-100 6.61412e-100 -7.8056e-100 5.7536e-100 -7.02643e-100 4.9668e-100 -6.22136e-100 4.24438e-100 -5.42392e-100 3.56394e-100 -4.64902e-100 2.9429e-100 -4.07149e-100 2.38556e-100 -3.47256e-100 1.97239e-100 -2.87497e-100 1.58506e-100 -2.27593e-100 1.23378e-100 -1.72808e-100 9.1605e-101 -1.2959e-100 6.50625e-101 -9.24877e-101 4.55068e-101 -6.48183e-101 3.01942e-101 -4.13573e-101 1.96025e-101 -2.6058e-101 1.15397e-101 -1.62945e-101 6.67791e-102 -9.18171e-102 3.81543e-102 -5.1556e-102 1.95262e-102 -2.59066e-102 9.88795e-103 -1.29362e-102 4.44343e-103 -6.16787e-103 1.96402e-103 -2.91418e-103 8.1839e-104 -1.34246e-103 3.32458e-104 -6.23695e-104 1.28871e-104 -2.93284e-104 4.89029e-105 -1.4425e-104 1.79798e-105 -7.3656e-105 6.44408e-106 -4.09994e-105 2.09942e-106 -2.52977e-105 5.24485e-107 -2.34381e-105 -3.02839e-111 -2.72974e-105 -1.85619e-110 -3.69288e-105 -3.88336e-110 -5.8218e-105 -7.55054e-110 -1.03397e-104 -1.55827e-109 -2.05203e-104 -3.4519e-109 -4.51347e-104 -8.3099e-109 -1.08195e-103 -2.17244e-108 -2.86053e-103 -6.12411e-108 -8.2179e-103 -1.88483e-107 -2.56859e-102 -6.26519e-107 -8.72719e-102 -2.25252e-106 -3.22595e-101 -8.77079e-106 -1.2917e-100 -3.69921e-105 -5.61931e-100 -1.68362e-104 -2.64288e-99 -8.29013e-104 -1.36032e-98 -4.39483e-103 -7.66733e-98 -2.53639e-102 -4.77273e-97 -1.59579e-101 -3.24103e-96 -1.10279e-100 -2.43692e-95 -8.26912e-100 -2.04509e-94 -6.82037e-99 -1.98509e-93 -6.24803e-98 -2.23063e-92 -6.56646e-97 -3.0291e-91 -7.94093e-96 -5.17821e-90 -1.15051e-94 -1.23164e-88 -2.08797e-93 -4.27801e-87 -5.2346e-92 -2.03725e-85 -1.89433e-90 -1.07614e-83 -9.2175e-89 -5.15884e-82 -4.93836e-87 -1.90075e-80 -2.4303e-85 -4.56425e-79 -9.45534e-84 -5.60202e-78 -2.47965e-82 -2.21184e-77 -3.39921e-81 -7.69451e-78 -1.47145e-80 -5.58141e-81 -5.02027e-81 -3.76911e-95 -2.6358e-84 -3.63212e-99 -3.77762e-237 -4.36567e-98 1.61001e-98 -1.19164e-99 2.22517e-96 -1.14667e-102 2.56399e-98 -1.53689e-103 1.49305e-101 -9.10659e-104 1.40347e-102 -7.90143e-104 6.32665e-103 -8.78567e-104 4.39741e-103 -1.39368e-103 4.05898e-103 -2.32509e-103 5.48621e-103 -3.74382e-103 7.95458e-103 -5.38522e-103 1.13055e-102 -7.85148e-103 1.45328e-102 -9.97051e-103 1.91256e-102 -1.1926e-102 2.21033e-102 -1.39303e-102 2.42245e-102 -1.30428e-102 2.60734e-102 -1.01569e-102 2.26026e-102 -7.95421e-103 1.63632e-102 -8.00854e-103 1.19552e-102 -7.54367e-103 1.12643e-102 -8.02177e-103 9.9566e-103 -9.77896e-103 9.95918e-103 -1.21143e-102 1.14446e-102 -1.49203e-102 1.339e-102 -1.18675e-102 1.5601e-102 -1.13039e-102 1.17557e-102 -1.15823e-102 1.06204e-102 -1.1812e-102 1.03311e-102 -1.1098e-102 1.00098e-102 -9.61239e-103 8.93927e-103 -8.51931e-103 7.36096e-103 -7.69589e-103 6.20218e-103 -6.89455e-103 5.32501e-103 -6.11116e-103 4.53183e-103 -5.32094e-103 3.81315e-103 -4.55582e-103 3.14868e-103 -3.8305e-103 2.55374e-103 -3.28783e-103 2.03105e-103 -2.74543e-103 1.64634e-103 -2.22214e-103 1.29585e-103 -1.71735e-103 9.86617e-104 -1.27101e-103 7.15607e-104 -9.29628e-104 4.95793e-104 -6.47169e-104 3.38511e-104 -4.43489e-104 2.19299e-104 -2.7603e-104 1.39361e-104 -1.70066e-104 8.01218e-105 -1.04237e-104 4.53967e-105 -5.74333e-105 2.54592e-105 -3.15946e-105 1.27604e-105 -1.55428e-105 6.34193e-106 -7.63748e-106 2.79578e-106 -3.58528e-106 1.21893e-106 -1.66401e-106 5.01475e-107 -7.5313e-107 2.008e-107 -3.43647e-107 7.68095e-108 -1.58954e-107 2.87979e-108 -7.68749e-108 1.05069e-108 -3.8637e-108 3.75713e-109 -2.11802e-108 1.2407e-109 -1.23446e-108 3.34861e-110 -1.07861e-108 -2.41412e-116 -1.23101e-108 -7.67488e-114 -1.65968e-108 -1.68839e-113 -2.63726e-108 -3.34725e-113 -4.77059e-108 -7.04404e-113 -9.73766e-108 -1.59876e-112 -2.21568e-107 -3.97728e-112 -5.54205e-107 -1.07978e-111 -1.53612e-106 -3.17582e-111 -4.6534e-106 -1.02633e-110 -1.53973e-105 -3.60061e-110 -5.5638e-105 -1.37062e-109 -2.19368e-104 -5.67304e-109 -9.3955e-104 -2.55001e-108 -4.38059e-103 -1.24108e-107 -2.21191e-102 -6.55047e-107 -1.22288e-101 -3.7238e-106 -7.41238e-101 -2.30678e-105 -4.96344e-100 -1.56046e-104 -3.6275e-99 -1.15969e-103 -2.93376e-98 -9.35963e-103 -2.65163e-97 -8.30687e-102 -2.7671e-96 -8.19845e-101 -3.3444e-95 -9.27248e-100 -4.87396e-94 -1.20725e-98 -8.94899e-93 -1.88034e-97 -2.27924e-91 -3.67255e-96 -8.3859e-90 -9.87825e-95 -4.12674e-88 -3.79069e-93 -2.20353e-86 -1.91011e-91 -1.05206e-84 -1.03836e-89 -3.81782e-83 -5.10877e-88 -8.91131e-82 -1.96108e-86 -1.03938e-80 -4.98968e-85 -3.70064e-80 -6.46286e-84 -1.02015e-80 -2.50082e-83 -4.31848e-84 -6.68589e-84 -4.84551e-99 -2.03131e-87 -4.76835e-103 -1.17642e-233 -5.49499e-101 1.1271e-101 -1.82264e-102 2.89242e-99 -1.73464e-105 4.04791e-101 -1.52932e-106 2.33137e-104 -8.94326e-107 1.44173e-105 -7.69875e-107 6.41515e-106 -8.55385e-107 4.42465e-106 -1.36674e-106 4.08157e-106 -2.30405e-106 5.55726e-106 -3.7482e-106 8.1425e-106 -5.43069e-106 1.16924e-105 -7.94616e-106 1.51396e-105 -1.01052e-105 1.9996e-105 -1.2089e-105 2.31428e-105 -1.40928e-105 2.53685e-105 -1.31851e-105 2.72518e-105 -1.02571e-105 2.36076e-105 -8.00644e-106 1.70741e-105 -8.02203e-106 1.24346e-105 -7.52074e-106 1.166e-105 -7.95802e-106 1.02582e-105 -9.64318e-106 1.02106e-105 -1.18649e-105 1.16633e-105 -1.44951e-105 1.35525e-105 -1.14562e-105 1.56615e-105 -1.08298e-105 1.17248e-105 -1.10027e-105 1.05109e-105 -1.11156e-105 1.01363e-105 -1.03405e-105 9.72683e-106 -8.86274e-106 8.59892e-106 -7.7637e-106 7.00544e-106 -6.92377e-106 5.83311e-106 -6.11663e-106 4.94356e-106 -5.33941e-106 4.14839e-106 -4.57259e-106 3.43749e-106 -3.84594e-106 2.79195e-106 -3.17298e-106 2.22465e-106 -2.67007e-106 1.73644e-106 -2.18376e-106 1.38031e-106 -1.7289e-106 1.06452e-106 -1.3053e-106 7.93156e-107 -9.42341e-107 5.62323e-107 -6.72599e-107 3.80287e-107 -4.56887e-107 2.53576e-107 -3.06126e-107 1.60432e-107 -1.8585e-107 9.97786e-108 -1.11924e-107 5.60139e-108 -6.71885e-108 3.10579e-108 -3.61751e-108 1.70812e-108 -1.94806e-108 8.37791e-109 -9.37414e-109 4.08259e-109 -4.52656e-109 1.76367e-109 -2.08916e-109 7.57197e-110 -9.51364e-110 3.07017e-110 -4.22557e-110 1.20975e-110 -1.89135e-110 4.55829e-111 -8.59367e-111 1.68499e-111 -4.08112e-111 6.08383e-112 -2.01581e-111 2.16211e-112 -1.08664e-111 7.18257e-113 -6.161e-112 2.03671e-113 -4.98646e-112 1.41811e-114 -5.56652e-112 -3.1549e-117 -7.45749e-112 -7.33071e-117 -1.19228e-111 -1.48159e-116 -2.19161e-111 -3.1757e-116 -4.59717e-111 -7.3745e-116 -1.08196e-110 -1.89063e-115 -2.81537e-110 -5.32214e-115 -8.17619e-110 -1.63289e-114 -2.60994e-109 -5.52673e-114 -9.13258e-109 -2.04335e-113 -3.50483e-108 -8.22719e-113 -1.47177e-107 -3.61737e-112 -6.73724e-107 -1.73155e-111 -3.36545e-106 -9.01415e-111 -1.82138e-105 -5.0845e-110 -1.08027e-104 -3.09867e-109 -7.03604e-104 -2.0594e-108 -5.06292e-103 -1.49635e-107 -3.97882e-102 -1.19533e-106 -3.45825e-101 -1.03774e-105 -3.36204e-100 -9.9035e-105 -3.76791e-99 -1.05209e-103 -4.89017e-98 -1.27924e-102 -7.6362e-97 -1.79059e-101 -1.50269e-95 -2.99378e-100 -4.08537e-94 -6.28054e-99 -1.58427e-92 -1.80661e-97 -8.01887e-91 -7.31395e-96 -4.31468e-89 -3.79817e-94 -2.04764e-87 -2.08743e-92 -7.30847e-86 -1.02421e-90 -1.65596e-84 -3.87289e-89 -1.83246e-83 -9.55322e-88 -5.87038e-83 -1.16854e-86 -1.27762e-83 -4.02933e-86 -3.15246e-87 -8.43317e-87 -6.06358e-103 -1.48371e-90 -6.00983e-107 -3.50781e-230 -6.81854e-104 7.77592e-105 -2.74765e-105 3.70029e-102 -2.67051e-108 6.2912e-104 -1.53021e-109 3.70063e-107 -8.83498e-110 1.48755e-108 -7.54867e-110 6.53595e-109 -8.38251e-110 4.47482e-109 -1.34916e-109 4.12598e-109 -2.29837e-109 5.65923e-109 -3.77762e-109 8.3797e-109 -5.51295e-109 1.21579e-108 -8.09481e-109 1.58569e-108 -1.0308e-108 2.10173e-108 -1.23322e-108 2.43579e-108 -1.43464e-108 2.67023e-108 -1.3411e-108 2.86258e-108 -1.04216e-108 2.47777e-108 -8.10816e-109 1.79019e-108 -8.0836e-109 1.29954e-108 -7.54205e-109 1.2126e-108 -7.93983e-109 1.06173e-108 -9.56065e-109 1.05143e-108 -1.16797e-108 1.19344e-108 -1.41494e-108 1.37683e-108 -1.11113e-108 1.57763e-108 -1.04231e-108 1.17337e-108 -1.04982e-108 1.04366e-108 -1.05046e-108 9.97621e-109 -9.67491e-109 9.48024e-109 -8.20595e-109 8.29614e-109 -7.10526e-109 6.68738e-109 -6.25617e-109 5.50321e-109 -5.45071e-109 4.60434e-109 -4.68666e-109 3.81029e-109 -3.94838e-109 3.10989e-109 -3.26301e-109 2.48493e-109 -2.64231e-109 1.94568e-109 -2.18051e-109 1.49088e-109 -1.74733e-109 1.16248e-109 -1.35374e-109 8.78703e-110 -9.98987e-110 6.40954e-110 -7.03926e-110 4.44388e-110 -4.90521e-110 2.93507e-110 -3.2522e-110 1.91203e-110 -2.1304e-110 1.18162e-110 -1.26153e-110 7.19101e-111 -7.42336e-111 3.94124e-111 -4.36156e-111 2.13752e-111 -2.29337e-111 1.15195e-111 -1.20806e-111 5.52498e-112 -5.68178e-112 2.63742e-112 -2.69264e-112 1.11538e-112 -1.22023e-112 4.70827e-113 -5.4459e-113 1.87843e-113 -2.37108e-113 7.27277e-114 -1.03982e-113 2.69506e-114 -4.63471e-114 9.80411e-115 -2.15824e-114 3.4948e-115 -1.04599e-114 1.23034e-115 -5.53556e-115 4.08756e-116 -3.07843e-115 1.196e-116 -2.31027e-115 1.40716e-117 -2.51065e-115 -1.28318e-120 -3.34023e-115 -3.18032e-120 -5.3687e-115 -6.52878e-120 -1.00182e-114 -1.4257e-119 -2.15445e-114 -3.37809e-119 -5.23856e-114 -8.90621e-119 -1.41821e-113 -2.59702e-118 -4.30519e-113 -8.29885e-118 -1.44617e-112 -2.94338e-117 -5.34648e-112 -1.14428e-116 -2.17779e-111 -4.86733e-116 -9.73229e-111 -2.27173e-115 -4.76256e-110 -1.15838e-114 -2.54108e-109 -6.42962e-114 -1.47348e-108 -3.87804e-113 -9.37029e-108 -2.53138e-112 -6.55066e-107 -1.80311e-111 -5.06233e-106 -1.40704e-110 -4.27496e-105 -1.20724e-109 -3.99011e-104 -1.12675e-108 -4.16873e-103 -1.15553e-107 -5.01268e-102 -1.32028e-106 -6.97699e-101 -1.72433e-105 -1.16594e-99 -2.59191e-104 -2.45519e-98 -4.64686e-103 -7.10612e-97 -1.04507e-101 -2.89184e-95 -3.20551e-100 -1.49972e-93 -1.3637e-98 -8.11143e-92 -7.27177e-97 -3.82128e-90 -4.03006e-95 -1.34043e-88 -1.96831e-93 -2.94673e-87 -7.32134e-92 -3.09114e-86 -1.74981e-90 -8.87673e-86 -2.02002e-89 -1.52275e-86 -6.19813e-89 -2.19016e-90 -1.01423e-89 -7.31037e-107 -1.03581e-93 -7.46234e-111 -1.00309e-226 -8.35278e-107 5.30632e-108 -4.08826e-108 4.66645e-105 -4.1424e-111 9.64064e-107 -1.53984e-112 5.91261e-110 -8.78054e-113 1.54202e-111 -7.44882e-113 6.69194e-112 -8.26881e-113 4.54944e-112 -1.34067e-112 4.19363e-112 -2.30811e-112 5.7948e-112 -3.83295e-112 8.67176e-112 -5.63406e-112 1.27126e-111 -8.30101e-112 1.67005e-111 -1.05837e-111 2.22119e-111 -1.26611e-111 2.57748e-111 -1.46968e-111 2.82541e-111 -1.37253e-111 3.02235e-111 -1.06537e-111 2.61362e-111 -8.26141e-112 1.88627e-111 -8.19449e-112 1.36482e-111 -7.60811e-112 1.26707e-111 -7.96713e-112 1.10403e-111 -9.53052e-112 1.08755e-111 -1.15566e-111 1.22632e-111 -1.38793e-111 1.4042e-111 -1.08286e-111 1.59496e-111 -1.00786e-111 1.17846e-111 -1.0062e-111 1.03987e-111 -9.97064e-112 9.85133e-112 -9.09109e-112 9.26963e-112 -7.63061e-112 8.02953e-112 -6.53103e-112 6.40445e-112 -5.678e-112 5.20921e-112 -4.87936e-112 4.30309e-112 -4.13299e-112 3.5122e-112 -3.42597e-112 2.82396e-112 -2.78251e-112 2.22031e-112 -2.21215e-112 1.7087e-112 -1.79069e-112 1.28564e-112 -1.40638e-112 9.8355e-113 -1.06664e-112 7.28874e-113 -7.69691e-113 5.20667e-113 -5.29623e-113 3.5316e-113 -3.60437e-113 2.27899e-113 -2.33296e-113 1.45082e-113 -1.49398e-113 8.75894e-114 -8.62845e-114 5.2149e-114 -4.95955e-114 2.79005e-114 -2.85023e-114 1.47947e-114 -1.46285e-114 7.80694e-115 -7.53264e-115 3.65906e-115 -3.46005e-115 1.70962e-115 -1.60738e-115 7.07127e-116 -7.14342e-116 2.93069e-116 -3.1212e-116 1.1488e-116 -1.33061e-116 4.36446e-117 -5.71053e-117 1.58826e-117 -2.49348e-117 5.67638e-118 -1.13694e-117 1.9933e-118 -5.39778e-118 6.9313e-119 -2.7998e-118 2.29176e-119 -1.52517e-118 6.8313e-120 -1.06981e-118 1.03253e-120 -1.13016e-118 -5.13909e-124 -1.48717e-118 -1.37363e-123 -2.40453e-118 -2.867e-123 -4.54449e-118 -6.3509e-123 -1.00022e-117 -1.53417e-122 -2.5109e-117 -4.15492e-122 -7.06302e-117 -1.25211e-121 -2.24273e-116 -4.16388e-121 -7.91069e-116 -1.5447e-120 -3.08636e-115 -6.31933e-120 -1.33336e-114 -2.83919e-119 -6.34298e-114 -1.40462e-118 -3.30744e-113 -7.61029e-118 -1.88586e-112 -4.50553e-117 -1.17053e-111 -2.90305e-116 -7.97268e-111 -2.02804e-115 -5.98136e-110 -1.54786e-114 -4.96039e-109 -1.29651e-113 -4.49847e-108 -1.19445e-112 -4.50626e-107 -1.19771e-111 -5.05577e-106 -1.31939e-110 -6.51774e-105 -1.62027e-109 -9.71968e-104 -2.27149e-108 -1.73683e-102 -3.66359e-107 -3.90745e-101 -7.03702e-106 -1.20104e-99 -1.69459e-104 -5.1122e-98 -5.53016e-103 -2.70874e-96 -2.46383e-101 -1.47034e-94 -1.34513e-99 -6.86965e-93 -7.50176e-98 -2.36648e-91 -3.64279e-96 -5.04564e-90 -1.33223e-94 -5.01343e-89 -3.08289e-93 -1.28815e-88 -3.35846e-92 -1.73841e-89 -9.16484e-92 -1.46001e-93 -1.17148e-92 -8.71153e-111 -6.96071e-97 -9.1826e-115 -2.75488e-223 -1.01135e-109 3.59922e-111 -6.01165e-111 5.80968e-108 -6.43348e-114 1.4587e-109 -1.55877e-115 9.44968e-113 -8.77994e-116 1.60648e-114 -7.39803e-116 6.88675e-115 -8.21122e-116 4.65052e-115 -1.34123e-115 4.28637e-115 -2.33365e-115 5.9673e-115 -3.91563e-115 9.02544e-115 -5.79691e-115 1.33691e-114 -8.56947e-115 1.76896e-114 -1.09383e-114 2.36064e-114 -1.30828e-114 2.74242e-114 -1.51512e-114 3.00563e-114 -1.41345e-114 3.20775e-114 -1.09582e-114 2.77101e-114 -8.46911e-115 1.9975e-114 -8.35684e-115 1.44052e-114 -7.72021e-115 1.33043e-114 -8.04057e-115 1.15348e-114 -9.55274e-115 1.13009e-114 -1.14946e-114 1.26555e-114 -1.3682e-114 1.43793e-114 -1.06049e-114 1.61864e-114 -9.79195e-115 1.18803e-114 -9.68848e-115 1.0399e-114 -9.50625e-115 9.7625e-115 -8.58027e-115 9.09491e-115 -7.12709e-115 7.798e-115 -6.03009e-115 6.1547e-115 -5.17671e-115 4.94832e-115 -4.38826e-115 4.03612e-115 -3.66222e-115 3.24958e-115 -2.98746e-115 2.57434e-115 -2.38505e-115 1.99197e-115 -1.86207e-115 1.50703e-115 -1.47888e-115 1.1137e-115 -1.13866e-115 8.36125e-116 -8.45662e-116 6.07621e-116 -5.96933e-116 4.25189e-116 -4.01262e-116 2.82229e-116 -2.66767e-116 1.78004e-116 -1.6859e-116 1.10758e-116 -1.05528e-116 6.53278e-117 -5.94412e-117 3.8044e-117 -3.33633e-117 1.98661e-117 -1.87439e-117 1.02955e-117 -9.38556e-118 5.3159e-118 -4.72131e-118 2.43325e-118 -2.11657e-118 1.11188e-118 -9.6279e-119 4.49393e-119 -4.19122e-119 1.82631e-119 -1.791e-119 7.02415e-120 -7.46805e-120 2.61525e-120 -3.13282e-120 9.33299e-121 -1.33825e-120 3.27175e-121 -5.96619e-121 1.12946e-121 -2.77028e-121 3.86891e-122 -1.40604e-121 1.26771e-122 -7.48969e-122 3.81286e-123 -4.94003e-122 6.66349e-124 -5.05957e-122 -2.01931e-127 -6.5899e-122 -5.89837e-127 -1.06765e-121 -1.24976e-126 -2.04285e-121 -2.80578e-126 -4.59795e-121 -6.89871e-126 -1.18921e-120 -1.91554e-125 -3.47338e-120 -5.95698e-125 -1.15162e-119 -2.05901e-124 -4.26875e-119 -7.98889e-124 -1.75722e-118 -3.43286e-123 -8.03971e-118 -1.6271e-122 -4.06074e-117 -8.52886e-122 -2.25693e-116 -4.91182e-121 -1.37386e-115 -3.09926e-120 -9.12057e-115 -2.13163e-119 -6.65197e-114 -1.59329e-118 -5.3529e-113 -1.3025e-117 -4.76252e-112 -1.17033e-116 -4.63554e-111 -1.15733e-115 -4.98197e-110 -1.24633e-114 -5.99894e-109 -1.47432e-113 -8.28688e-108 -1.9451e-112 -1.32317e-106 -2.92622e-111 -2.5266e-105 -5.06134e-110 -6.06755e-104 -1.0411e-108 -1.97705e-102 -2.68176e-107 -8.77697e-101 -9.29594e-106 -4.74126e-99 -4.32619e-104 -2.57974e-97 -2.41299e-102 -1.19491e-95 -1.3523e-100 -4.04282e-94 -6.52284e-99 -8.35646e-93 -2.34394e-97 -7.86293e-92 -5.25101e-96 -1.80587e-91 -5.39704e-95 -1.91432e-92 -1.30986e-94 -9.40279e-97 -1.3086e-95 -1.03193e-114 -4.5482e-100 -1.12806e-118 -7.27619e-220 -1.21158e-112 2.44354e-114 -8.74677e-114 7.15006e-111 -9.96765e-117 2.18207e-112 -1.58789e-118 1.50532e-115 -8.83427e-119 1.68264e-117 -7.39608e-119 7.12478e-118 -8.20933e-119 4.78056e-118 -1.35096e-118 4.40654e-118 -2.37571e-118 6.18084e-118 -4.02762e-118 9.4488e-118 -6.00523e-118 1.41422e-117 -8.90615e-118 1.88464e-117 -1.13796e-117 2.52316e-117 -1.3606e-117 2.93419e-117 -1.5719e-117 3.21472e-117 -1.46466e-117 3.42259e-117 -1.13407e-117 2.9531e-117 -8.7352e-118 2.12609e-117 -8.57368e-118 1.52812e-117 -7.88045e-118 1.40387e-117 -8.16165e-118 1.21101e-117 -9.62813e-118 1.17983e-117 -1.14934e-117 1.3119e-117 -1.35557e-117 1.47872e-117 -1.04377e-117 1.64928e-117 -9.5599e-118 1.20246e-117 -9.37301e-118 1.04396e-117 -9.10531e-118 9.71099e-118 -8.13505e-118 8.95632e-118 -6.68723e-118 7.60078e-118 -5.59329e-118 5.93649e-118 -4.74181e-118 4.71813e-118 -3.96551e-118 3.80024e-118 -3.26108e-118 3.0185e-118 -2.61835e-118 2.35641e-118 -2.05518e-118 1.79474e-118 -1.57603e-118 1.3351e-118 -1.22835e-118 9.69274e-119 -9.27388e-119 7.14271e-119 -6.74625e-119 5.09119e-119 -4.65952e-119 3.49064e-119 -3.06074e-119 2.26796e-119 -1.98815e-119 1.39839e-119 -1.22691e-119 8.50551e-120 -7.50553e-120 4.90139e-120 -4.12289e-120 2.7913e-120 -2.25906e-120 1.42242e-120 -1.24006e-120 7.20166e-121 -6.05524e-121 3.63617e-121 -2.97395e-121 1.62452e-121 -1.30032e-121 7.25461e-122 -5.78584e-122 2.86285e-122 -2.46445e-122 1.13948e-122 -1.02893e-122 4.29462e-123 -4.19193e-123 1.56515e-123 -1.7169e-123 5.4701e-124 -7.16529e-124 1.87798e-124 -3.11894e-124 6.36081e-125 -1.41417e-124 2.14104e-125 -7.01197e-125 6.92692e-126 -3.64637e-125 2.08659e-126 -2.27482e-125 3.99411e-127 -2.25015e-125 -7.72675e-131 -2.89594e-125 -2.52094e-130 -4.69896e-125 -5.40083e-130 -9.09042e-125 -1.22726e-129 -2.0888e-124 -3.06713e-129 -5.55854e-124 -8.72097e-129 -1.68377e-123 -2.79517e-128 -5.82885e-123 -1.0029e-127 -2.26633e-122 -4.06329e-127 -9.8311e-122 -1.83448e-126 -4.76133e-121 -9.1683e-126 -2.55423e-120 -5.08817e-125 -1.51198e-119 -3.1122e-124 -9.81857e-119 -2.09168e-123 -6.97004e-118 -1.53532e-122 -5.44159e-117 -1.22707e-121 -4.6942e-116 -1.07394e-120 -4.47946e-115 -1.03494e-119 -4.67816e-114 -1.09814e-118 -5.39298e-113 -1.26974e-117 -6.96701e-112 -1.61266e-116 -1.03108e-110 -2.28509e-115 -1.76203e-109 -3.68848e-114 -3.59455e-108 -6.84054e-113 -9.20769e-107 -1.50631e-111 -3.17655e-105 -4.14881e-110 -1.46793e-103 -1.52541e-108 -8.07297e-102 -7.40089e-107 -4.40035e-100 -4.21091e-105 -2.02028e-98 -2.36974e-103 -6.71265e-97 -1.13499e-101 -1.34521e-95 -4.00761e-100 -1.19823e-94 -8.69726e-99 -2.45861e-94 -8.4363e-98 -2.04687e-95 -1.82137e-97 -5.90773e-100 -1.42468e-98 -1.22377e-118 -2.91494e-103 -1.40472e-122 -1.85036e-216 -1.43754e-115 1.67754e-117 -1.26063e-116 8.70915e-114 -1.53766e-119 3.23085e-115 -1.62843e-121 2.38554e-118 -8.94565e-122 1.77267e-120 -7.44372e-122 7.41125e-121 -8.26383e-122 4.94258e-121 -1.37016e-121 4.55697e-121 -2.4353e-121 6.44023e-121 -4.17151e-121 9.95133e-121 -6.26372e-121 1.50494e-120 -9.3185e-121 2.01972e-120 -1.19169e-120 2.71245e-120 -1.42418e-120 3.15705e-120 -1.64116e-120 3.45721e-120 -1.5272e-120 3.67141e-120 -1.1809e-120 3.16368e-120 -9.06484e-121 2.27467e-120 -8.84915e-121 1.62937e-120 -8.09186e-121 1.48884e-120 -8.3327e-121 1.27773e-120 -9.75841e-121 1.23771e-120 -1.15539e-120 1.36625e-120 -1.34998e-120 1.52739e-120 -1.03254e-120 1.6876e-120 -9.37987e-121 1.22216e-120 -9.11186e-121 1.05235e-120 -8.76271e-121 9.6984e-121 -7.74921e-121 8.85437e-121 -6.30415e-121 7.43731e-121 -5.21286e-121 5.74844e-121 -4.36446e-121 4.5165e-121 -3.6012e-121 3.59262e-121 -2.91859e-121 2.81548e-121 -2.30682e-121 2.16615e-121 -1.78047e-121 1.62421e-121 -1.34138e-121 1.18823e-121 -1.02614e-121 8.47617e-122 -7.59806e-122 6.13195e-122 -5.41487e-122 4.28765e-122 -3.66025e-122 2.88081e-122 -2.35006e-122 1.83245e-122 -1.49166e-122 1.10477e-122 -8.98903e-123 6.56903e-123 -5.37337e-123 3.6984e-123 -2.87828e-123 2.05922e-123 -1.53915e-123 1.0239e-123 -8.2511e-124 5.06256e-124 -3.9274e-124 2.49808e-124 -1.88219e-124 1.08875e-124 -8.02145e-125 4.74828e-125 -3.48797e-125 1.82813e-125 -1.45221e-125 7.11883e-126 -5.91832e-126 2.62614e-126 -2.35338e-126 9.35781e-127 -9.4003e-127 3.19878e-127 -3.82779e-127 1.07391e-127 -1.62457e-127 3.56217e-128 -7.182e-128 1.17554e-128 -3.47365e-128 3.74329e-129 -1.76054e-128 1.12274e-129 -1.04303e-128 2.27938e-130 -9.95632e-129 -2.85656e-134 -1.26087e-128 -1.06922e-133 -2.04695e-128 -2.31286e-133 -3.99919e-128 -5.30732e-133 -9.37134e-128 -1.34789e-132 -2.56281e-127 -3.91563e-132 -8.04108e-127 -1.29339e-131 -2.90185e-126 -4.80822e-131 -1.18384e-125 -2.03344e-130 -5.40892e-125 -9.63226e-130 -2.77101e-124 -5.07355e-129 -1.57757e-123 -2.97945e-128 -9.94038e-123 -1.93454e-127 -6.885e-122 -1.3839e-126 -5.22327e-121 -1.08374e-125 -4.36333e-120 -9.2588e-125 -4.03443e-119 -8.6748e-124 -4.1278e-118 -8.96483e-123 -4.62452e-117 -1.02053e-121 -5.71778e-116 -1.26682e-120 -7.92315e-115 -1.72745e-119 -1.25618e-113 -2.62873e-118 -2.29754e-112 -4.55324e-117 -5.00677e-111 -9.0536e-116 -1.36795e-109 -2.13491e-114 -4.99202e-108 -6.28619e-113 -2.39809e-106 -2.44963e-111 -1.3416e-104 -1.23706e-109 -7.32559e-103 -7.17326e-108 -3.33453e-101 -4.05194e-106 -1.08857e-99 -1.92721e-104 -2.11662e-98 -6.69034e-103 -1.78473e-97 -1.40772e-101 -3.27046e-97 -1.28999e-100 -2.14075e-98 -2.47761e-100 -3.65182e-103 -1.52139e-101 -1.47494e-122 -1.84788e-106 -1.79606e-126 -4.53552e-213 -1.69087e-118 1.18178e-120 -1.8016e-119 1.05101e-116 -2.35978e-122 4.73969e-118 -1.6821e-124 3.75763e-121 -9.11715e-125 1.87937e-123 -7.54249e-125 7.75229e-124 -8.37639e-125 5.1402e-124 -1.39931e-124 4.74101e-124 -2.51381e-124 6.75124e-124 -4.35061e-124 1.05443e-123 -6.57828e-124 1.61117e-123 -9.81582e-124 2.17739e-123 -1.25623e-123 2.93291e-123 -1.50038e-123 3.41615e-123 -1.72439e-123 3.73862e-123 -1.60236e-123 3.95973e-123 -1.23725e-123 3.40734e-123 -9.46458e-124 2.44644e-123 -9.18861e-124 1.74641e-123 -8.35854e-124 1.58707e-123 -8.55704e-124 1.35497e-123 -9.94628e-124 1.3049e-123 -1.16779e-123 1.42966e-123 -1.35146e-123 1.58491e-123 -1.02674e-123 1.73445e-123 -9.25012e-124 1.24762e-123 -8.90214e-124 1.06537e-123 -8.47424e-124 9.72658e-124 -7.41747e-124 8.78969e-124 -5.97195e-124 7.30713e-124 -4.88216e-124 5.58922e-124 -4.03711e-124 4.34144e-124 -3.2869e-124 3.41065e-124 -2.62556e-124 2.63741e-124 -2.0431e-124 2.00002e-124 -1.55086e-124 1.47652e-124 -1.14806e-124 1.06243e-124 -8.62131e-125 7.44794e-125 -6.26168e-125 5.29017e-125 -4.37248e-125 3.62916e-125 -2.89311e-125 2.38982e-125 -1.81591e-125 1.48843e-125 -1.12638e-125 8.7757e-126 -6.6285e-126 5.10132e-126 -3.87113e-126 2.80593e-126 -2.02187e-126 1.52712e-126 -1.05489e-126 7.40784e-127 -5.52018e-127 3.57572e-127 -2.56025e-127 1.72341e-127 -1.19665e-127 7.32385e-128 -4.9679e-128 3.11748e-128 -2.10922e-128 1.17022e-128 -8.57575e-129 4.45391e-129 -3.40844e-129 1.6065e-129 -1.32156e-129 5.59124e-130 -5.14263e-130 1.86708e-130 -2.04062e-130 6.12111e-131 -8.4332e-131 1.98494e-131 -3.62985e-131 6.40893e-132 -1.70996e-131 2.00314e-132 -8.43294e-132 5.9541e-133 -4.7707e-132 1.25527e-133 -4.37112e-132 -1.00301e-137 -5.43749e-132 -4.50055e-137 -8.81364e-132 -9.82549e-137 -1.73891e-131 -2.27099e-136 -4.14643e-131 -5.84925e-136 -1.16532e-130 -1.73477e-135 -3.78038e-130 -5.89421e-135 -1.42172e-129 -2.26947e-134 -6.0777e-129 -1.00054e-133 -2.92358e-128 -4.96776e-133 -1.58351e-127 -2.75663e-132 -9.56306e-127 -1.71233e-131 -6.40976e-126 -1.17944e-130 -4.73388e-125 -8.97699e-130 -3.83694e-124 -7.49718e-129 -3.42932e-123 -6.84545e-128 -3.39815e-122 -6.86566e-127 -3.72736e-121 -7.60773e-126 -4.47925e-120 -9.29174e-125 -5.93996e-119 -1.23827e-123 -8.82901e-118 -1.81311e-122 -1.49999e-116 -2.96361e-121 -2.93663e-115 -5.50923e-120 -6.84018e-114 -1.17467e-118 -1.99377e-112 -2.96789e-117 -7.69413e-111 -9.345e-116 -3.83835e-109 -3.8588e-114 -2.1836e-107 -2.02712e-112 -1.19459e-105 -1.19764e-110 -5.39428e-104 -6.79108e-109 -1.73165e-102 -3.20912e-107 -3.26957e-101 -1.09575e-105 -2.61154e-100 -2.23784e-104 -4.27183e-100 -1.93996e-103 -2.20326e-101 -3.31812e-103 -2.23912e-106 -1.60483e-104 -1.82972e-126 -1.16742e-109 -2.39885e-130 -1.07262e-209 -1.97348e-121 8.70693e-124 -2.55547e-122 1.2578e-119 -3.60176e-125 6.89545e-121 -1.75121e-127 5.8816e-124 -9.35286e-128 2.0064e-126 -7.69489e-128 8.15512e-127 -8.54978e-128 5.37768e-127 -1.43908e-127 4.9627e-127 -2.61304e-127 7.12074e-127 -4.56907e-127 1.12413e-126 -6.9563e-127 1.73542e-126 -1.04097e-126 2.36148e-126 -1.33305e-126 3.18997e-126 -1.59093e-126 3.7178e-126 -1.82339e-126 4.06569e-126 -1.69175e-126 4.29429e-126 -1.30431e-126 3.68967e-126 -9.94264e-127 2.64528e-126 -9.59889e-127 1.88183e-126 -8.68572e-127 1.70066e-126 -8.83908e-127 1.44435e-126 -1.01955e-126 1.38273e-126 -1.18681e-126 1.50338e-126 -1.36016e-126 1.6524e-126 -1.02636e-126 1.79075e-126 -9.16963e-127 1.27941e-126 -8.74163e-127 1.08338e-126 -8.23639e-127 9.79752e-127 -7.13528e-127 8.76291e-127 -5.68546e-127 7.20974e-127 -4.59538e-127 5.45755e-127 -3.75321e-127 4.19105e-127 -3.01541e-127 3.25191e-127 -2.37425e-127 2.48144e-127 -1.81912e-127 1.85487e-127 -1.35817e-127 1.34838e-127 -9.88046e-128 9.5438e-128 -7.28432e-128 6.57565e-128 -5.19011e-128 4.58611e-128 -3.55156e-128 3.08699e-128 -2.30053e-128 1.99251e-128 -1.41182e-128 1.21521e-128 -8.55838e-129 7.00757e-129 -4.91819e-129 3.98243e-129 -2.80571e-129 2.13997e-129 -1.42873e-129 1.13819e-129 -7.27093e-130 5.38568e-130 -3.71256e-130 2.53706e-130 -1.67718e-130 1.19382e-130 -7.64156e-131 4.94465e-131 -3.08868e-131 2.05315e-131 -1.2794e-131 7.50971e-132 -5.07549e-132 2.79128e-132 -1.96569e-132 9.83467e-133 -7.42456e-133 3.33992e-133 -2.81164e-133 1.08827e-133 -1.08586e-133 3.47947e-134 -4.36406e-134 1.10129e-134 -1.8263e-134 3.47254e-135 -8.36748e-135 1.06273e-135 -4.00887e-135 3.11803e-136 -2.17507e-135 6.7245e-137 -1.9041e-135 -3.24024e-141 -2.32473e-135 -1.88088e-140 -3.75348e-135 -4.13707e-140 -7.46484e-135 -9.61944e-140 -1.81019e-134 -2.50674e-139 -5.21892e-134 -7.5844e-139 -1.75009e-133 -2.64664e-138 -6.85106e-133 -1.05435e-137 -3.06626e-132 -4.8421e-137 -1.55243e-131 -2.51836e-136 -8.88712e-131 -1.47033e-135 -5.68972e-130 -9.65666e-135 -4.05507e-129 -7.05433e-134 -3.19209e-128 -5.71249e-133 -2.76353e-127 -5.08509e-132 -2.6424e-126 -4.96128e-131 -2.80565e-125 -5.32644e-130 -3.29934e-124 -6.32822e-129 -4.25299e-123 -8.2926e-128 -6.0503e-122 -1.18661e-126 -9.64925e-121 -1.86596e-125 -1.75725e-119 -3.27704e-124 -3.68398e-118 -6.54059e-123 -9.17968e-117 -1.49666e-121 -2.85637e-115 -4.05452e-120 -1.16592e-113 -1.36636e-118 -6.0392e-112 -5.97974e-117 -3.49427e-110 -3.26709e-115 -1.91625e-108 -1.96702e-113 -8.59131e-107 -1.12016e-111 -2.71362e-105 -5.26104e-110 -4.98045e-104 -1.76876e-108 -3.77237e-103 -3.51088e-107 -5.5121e-103 -2.8836e-106 -2.2467e-104 -4.3984e-106 -1.37187e-109 -1.6821e-107 -2.37656e-130 -7.40543e-113 -3.40113e-134 -2.44976e-206 -2.28756e-124 6.84484e-127 -3.60078e-125 1.49397e-122 -5.46799e-128 9.95654e-124 -1.83895e-130 9.14892e-127 -9.65806e-131 2.15869e-129 -7.90444e-131 8.62828e-130 -8.78804e-131 5.66018e-130 -1.4904e-130 5.22693e-130 -2.73532e-130 7.55707e-130 -4.83216e-130 1.20587e-129 -7.40697e-130 1.88081e-129 -1.11145e-129 2.57675e-129 -1.424e-129 3.49029e-129 -1.69795e-129 4.06979e-129 -1.94044e-129 4.44672e-129 -1.79738e-129 4.68337e-129 -1.38354e-129 4.01749e-129 -1.05092e-129 2.87589e-129 -1.00885e-129 2.03873e-129 -9.08005e-130 1.83212e-129 -9.18443e-130 1.54776e-129 -1.05112e-129 1.47281e-129 -1.21288e-129 1.58885e-129 -1.37633e-129 1.73113e-129 -1.03151e-129 1.85759e-129 -9.13803e-130 1.31812e-129 -8.6287e-130 1.10674e-129 -8.04621e-130 9.91332e-130 -6.89863e-130 8.77472e-130 -5.44014e-130 7.14464e-130 -4.34739e-130 5.35217e-130 -3.50706e-130 4.0635e-130 -2.78057e-130 3.11414e-130 -2.15815e-130 2.34502e-130 -1.62823e-130 1.72796e-130 -1.19579e-130 1.23694e-130 -8.54974e-131 8.61271e-131 -6.1888e-131 5.83281e-131 -4.32618e-131 3.9947e-131 -2.90132e-131 2.63852e-131 -1.84001e-131 1.66941e-131 -1.1042e-131 9.97107e-132 -6.5417e-132 5.62415e-132 -3.671e-132 3.12477e-132 -2.04535e-132 1.6403e-132 -1.01537e-132 8.5243e-133 -5.03907e-133 3.93398e-133 -2.5096e-133 1.80808e-133 -1.10395e-133 8.30285e-134 -4.90094e-134 3.3506e-134 -1.92774e-134 1.35654e-134 -7.78513e-135 4.83233e-135 -3.01097e-135 1.75275e-135 -1.13541e-135 6.02711e-136 -4.1737e-136 1.99542e-136 -1.53657e-136 6.33729e-137 -5.76874e-137 1.97351e-137 -2.25186e-137 6.08751e-138 -9.15004e-138 1.87131e-138 -4.07155e-138 5.59528e-139 -1.89211e-138 1.61484e-139 -9.87936e-139 3.5225e-140 -8.23039e-139 -8.90144e-145 -9.84235e-139 -7.81864e-144 -1.58146e-138 -1.72834e-143 -3.16373e-138 -4.0353e-143 -7.79816e-138 -1.06234e-142 -2.30334e-137 -3.27234e-142 -7.97734e-137 -1.17196e-141 -3.24882e-136 -4.82593e-141 -1.52157e-135 -2.3056e-140 -8.09856e-135 -1.25545e-139 -4.89827e-134 -7.71116e-139 -3.32371e-133 -5.34911e-138 -2.51869e-132 -4.14309e-137 -2.11197e-131 -3.56792e-136 -1.95253e-130 -3.38454e-135 -1.99715e-129 -3.5274e-134 -2.27207e-128 -4.0534e-133 -2.86462e-127 -5.16302e-132 -3.96183e-126 -7.25934e-131 -6.04771e-125 -1.11564e-129 -1.03535e-123 -1.88489e-128 -2.02225e-122 -3.5585e-127 -4.5445e-121 -7.63072e-126 -1.21258e-119 -1.87554e-124 -4.03243e-118 -5.4543e-123 -1.74181e-116 -1.9703e-121 -9.36867e-115 -9.14502e-120 -5.51599e-113 -5.19715e-118 -3.03475e-111 -3.18932e-116 -1.35182e-109 -1.82506e-114 -4.20636e-108 -8.52789e-113 -7.51416e-107 -2.82644e-111 -5.40466e-106 -5.45932e-110 -7.06265e-106 -4.25341e-109 -2.28312e-107 -5.8024e-109 -8.46091e-113 -1.76222e-110 -3.28389e-134 -4.74972e-116 -5.21771e-138 -5.40762e-203 -2.63566e-127 5.82308e-130 -5.04388e-128 1.76249e-125 -8.25907e-131 1.42794e-126 -1.94975e-133 1.4147e-129 -1.00396e-133 2.34302e-132 -8.17598e-134 9.18213e-133 -9.09677e-134 5.99397e-133 -1.55448e-133 5.53969e-133 -2.88361e-133 8.07048e-133 -5.14642e-133 1.30169e-132 -7.94176e-133 2.05114e-132 -1.19482e-132 2.82904e-132 -1.53134e-132 3.84213e-132 -1.82407e-132 4.48171e-132 -2.07834e-132 4.89192e-132 -1.92169e-132 5.13709e-132 -1.47676e-132 4.39912e-132 -1.11769e-132 3.14398e-132 -1.06678e-132 2.22087e-132 -9.54976e-133 1.98444e-132 -9.60016e-133 1.66747e-132 -1.08995e-132 1.57701e-132 -1.24652e-132 1.68776e-132 -1.40036e-132 1.82258e-132 -1.04234e-132 1.93616e-132 -9.15554e-133 1.36447e-132 -8.56223e-133 1.13589e-132 -7.90122e-133 1.00763e-132 -6.70406e-133 8.8259e-133 -5.23199e-133 7.11144e-133 -4.13375e-133 5.27193e-133 -3.29377e-133 3.95717e-133 -2.57715e-133 2.99536e-133 -1.97184e-133 2.22594e-133 -1.46497e-133 1.61693e-133 -1.05839e-133 1.13985e-133 -7.43796e-134 7.80806e-134 -5.28665e-134 5.19796e-134 -3.62595e-134 3.49594e-134 -2.38342e-134 2.26594e-134 -1.48007e-134 1.40546e-134 -8.68604e-135 8.22153e-135 -5.0293e-135 4.53632e-135 -2.75597e-135 2.46401e-135 -1.49946e-135 1.2635e-135 -7.25632e-136 6.41441e-136 -3.51099e-136 2.88693e-136 -1.70493e-136 1.29424e-136 -7.30083e-137 5.79796e-137 -3.15693e-137 2.27901e-137 -1.2079e-137 8.99314e-138 -4.75279e-138 3.11865e-138 -1.79072e-138 1.10309e-138 -6.56954e-139 3.69885e-139 -2.34807e-139 1.19274e-139 -8.39521e-140 3.68815e-140 -3.06029e-140 1.1173e-140 -1.15889e-140 3.35403e-141 -4.56637e-141 1.00356e-141 -1.97082e-141 2.92594e-142 -8.87121e-142 8.28199e-143 -4.46172e-142 1.8115e-143 -3.5352e-142 -1.50816e-148 -4.13021e-142 -3.23207e-147 -6.59497e-142 -7.171e-147 -1.32561e-141 -1.67845e-146 -3.31541e-141 -4.45708e-146 -1.00279e-140 -1.39592e-145 -3.58428e-140 -5.12343e-145 -1.51675e-139 -2.17856e-144 -7.43038e-139 -1.08224e-143 -4.15732e-138 -6.16544e-143 -2.65395e-137 -3.98012e-142 -1.9081e-136 -2.91532e-141 -1.53672e-135 -2.39262e-140 -1.37228e-134 -2.18987e-139 -1.35437e-133 -2.2132e-138 -1.48182e-132 -2.46293e-137 -1.80619e-131 -3.02886e-136 -2.44176e-130 -4.13617e-135 -3.6244e-129 -6.23985e-134 -5.9399e-128 -1.03008e-132 -1.09224e-126 -1.87088e-131 -2.28993e-125 -3.79942e-130 -5.52166e-124 -8.76172e-129 -1.57973e-122 -2.31606e-127 -5.62418e-121 -7.24469e-126 -2.57304e-119 -2.80926e-124 -1.43764e-117 -1.38422e-122 -8.61773e-116 -8.18482e-121 -4.76107e-114 -5.12184e-119 -2.10985e-112 -2.94725e-117 -6.47655e-111 -1.37132e-115 -1.1275e-109 -4.48511e-114 -7.70975e-109 -8.44269e-113 -9.03419e-109 -6.25331e-112 -2.32541e-110 -7.65029e-112 -5.28861e-116 -1.85511e-113 -4.91953e-138 -3.10221e-119 -8.81577e-142 -1.15444e-199 -3.02078e-130 5.36796e-133 -7.02875e-131 2.06666e-128 -1.24164e-133 2.0355e-129 -2.08992e-136 2.17551e-132 -1.05061e-136 2.56893e-135 -8.51591e-137 9.82929e-136 -9.48337e-137 6.38679e-136 -1.63288e-136 5.90836e-136 -3.06163e-136 8.67357e-136 -5.52003e-136 1.41407e-135 -8.57484e-136 2.25111e-135 -1.29329e-135 3.12558e-135 -1.6579e-135 4.25563e-135 -1.97251e-135 4.96535e-135 -2.24048e-135 5.41375e-135 -2.06768e-135 5.66774e-135 -1.58614e-135 4.84458e-135 -1.19609e-135 3.4564e-135 -1.13498e-135 2.43274e-135 -1.01049e-135 2.1612e-135 -1.00949e-135 1.80616e-135 -1.13685e-135 1.69757e-135 -1.28841e-135 1.8021e-135 -1.43274e-135 1.92848e-135 -1.0591e-135 2.02787e-135 -9.22294e-136 1.41923e-135 -8.54158e-136 1.17131e-135 -7.79947e-136 1.02894e-135 -6.54862e-136 8.9176e-136 -5.05759e-136 7.11002e-136 -3.95066e-136 5.21597e-136 -3.10921e-136 3.8707e-136 -2.40081e-136 2.89389e-136 -1.81085e-136 2.12232e-136 -1.32489e-136 1.51983e-136 -9.4167e-137 1.05514e-136 -6.50508e-137 7.11106e-137 -4.54026e-137 4.65376e-137 -3.05558e-137 3.07384e-137 -1.96875e-137 1.95522e-137 -1.19718e-137 1.18894e-137 -6.87153e-138 6.81202e-138 -3.88854e-138 3.67698e-138 -2.08076e-138 1.95256e-138 -1.10536e-138 9.78018e-139 -5.2141e-139 4.84961e-139 -2.45924e-139 2.12843e-139 -1.16407e-139 9.3056e-140 -4.85132e-140 4.06565e-140 -2.04252e-140 1.55623e-140 -7.59899e-141 5.98325e-141 -2.91144e-141 2.019e-141 -1.06782e-141 6.95921e-142 -3.80817e-142 2.27362e-142 -1.32216e-142 7.13431e-143 -4.5862e-143 2.14555e-143 -1.62143e-143 6.31573e-144 -5.94992e-144 1.84266e-144 -2.2708e-144 5.35903e-145 -9.49479e-145 1.52095e-145 -4.135e-145 4.21202e-146 -2.0039e-145 9.17859e-147 -1.50874e-145 9.31805e-149 -1.71979e-145 -1.33019e-150 -2.72573e-145 -2.95837e-150 -5.4983e-145 -6.92944e-150 -1.39387e-144 -1.85295e-149 -4.31176e-144 -5.89854e-149 -1.58913e-143 -2.21324e-148 -6.98479e-143 -9.71224e-148 -3.57685e-142 -5.01251e-147 -2.10181e-141 -2.98623e-146 -1.41583e-140 -2.02514e-145 -1.07793e-139 -1.56578e-144 -9.22104e-139 -1.36084e-143 -8.76779e-138 -1.32288e-142 -9.23442e-137 -1.42381e-141 -1.08064e-135 -1.69132e-140 -1.41134e-134 -2.22549e-139 -2.04593e-133 -3.25801e-138 -3.26002e-132 -5.2744e-137 -5.73947e-131 -9.35553e-136 -1.13438e-129 -1.82797e-134 -2.55536e-128 -3.99677e-133 -6.62021e-127 -9.92378e-132 -2.03507e-125 -2.82559e-130 -7.76867e-124 -9.52551e-129 -3.76874e-122 -3.97228e-127 -2.18865e-120 -2.07989e-125 -1.33684e-118 -1.28013e-123 -7.4245e-117 -8.17175e-122 -3.277e-115 -4.73127e-120 -9.9353e-114 -2.19418e-118 -1.68824e-112 -7.09189e-117 -1.09974e-111 -1.30318e-115 -1.15837e-111 -9.19841e-115 -2.38605e-113 -1.01251e-114 -3.37352e-119 -1.97159e-116 -8.13135e-142 -2.07643e-122 -1.67e-145 -2.38475e-196 -3.44638e-133 5.29955e-136 -9.75024e-134 2.41026e-131 -1.85874e-136 2.88597e-132 -2.26846e-139 3.32874e-135 -1.10689e-139 2.84998e-138 -8.93254e-140 1.05853e-138 -9.9574e-140 6.84814e-139 -1.72756e-139 6.34204e-139 -3.27397e-139 9.38176e-139 -5.96304e-139 1.54608e-138 -9.32366e-139 2.48651e-138 -1.40956e-138 3.47525e-138 -1.8071e-138 4.74326e-138 -2.1472e-138 5.53511e-138 -2.43105e-138 6.02742e-138 -2.23901e-138 6.2902e-138 -1.71437e-138 5.36602e-138 -1.28797e-138 3.82143e-138 -1.21498e-138 2.67974e-138 -1.07578e-138 2.36669e-138 -1.06793e-138 1.96706e-138 -1.19276e-138 1.83714e-138 -1.33937e-138 1.93423e-138 -1.47411e-138 2.05086e-138 -1.08212e-138 2.13438e-138 -9.34173e-139 1.48338e-138 -8.56676e-139 1.21361e-138 -7.73959e-139 1.05561e-138 -6.42999e-139 9.05161e-139 -4.91417e-139 7.1408e-139 -3.795e-139 5.18384e-139 -2.94998e-139 3.80314e-139 -2.24796e-139 2.80845e-139 -1.67155e-139 2.03268e-139 -1.2044e-139 1.43506e-139 -8.422e-140 9.81209e-140 -5.71929e-140 6.50635e-140 -3.92007e-140 4.18614e-140 -2.58883e-140 2.71555e-140 -1.6351e-140 1.69522e-140 -9.7371e-141 1.01067e-140 -5.4665e-141 5.67188e-141 -3.02339e-141 2.99524e-141 -1.57977e-141 1.55495e-141 -8.19302e-142 7.60774e-142 -3.76704e-142 3.68414e-142 -1.73166e-142 1.57665e-142 -7.9878e-143 6.72131e-143 -3.23917e-143 2.86316e-143 -1.32742e-143 1.06698e-143 -4.80019e-144 3.99539e-144 -1.78968e-144 1.3113e-144 -6.38479e-145 4.40155e-145 -2.21168e-145 1.39987e-145 -7.45215e-146 4.27055e-146 -2.50539e-146 1.24783e-146 -8.58197e-147 3.56535e-147 -3.04862e-147 1.00985e-147 -1.12585e-147 2.85136e-148 -4.55635e-148 7.86686e-149 -1.91831e-148 2.12755e-149 -8.9737e-149 4.59811e-150 -6.40952e-149 1.50969e-151 -7.11713e-149 -5.45099e-154 -1.11803e-148 -1.21623e-153 -2.26006e-148 -2.8456e-153 -5.80663e-148 -7.64698e-153 -1.83274e-147 -2.47151e-152 -6.96132e-147 -9.47948e-152 -3.17555e-146 -4.2862e-151 -1.69917e-145 -2.29676e-150 -1.04817e-144 -1.42958e-149 -7.44866e-144 -1.01845e-148 -6.00223e-143 -8.30249e-148 -5.45067e-142 -7.63728e-147 -5.51665e-141 -7.88119e-146 -6.19901e-140 -9.02929e-145 -7.758e-139 -1.1445e-143 -1.08562e-137 -1.61104e-142 -1.68786e-136 -2.52822e-141 -2.88797e-135 -4.39289e-140 -5.46599e-134 -8.37578e-139 -1.16221e-132 -1.76141e-137 -2.81645e-131 -4.15029e-136 -7.85234e-130 -1.11083e-134 -2.59901e-128 -3.41298e-133 -1.06597e-126 -1.24289e-131 -5.49033e-125 -5.58652e-130 -3.31655e-123 -3.11125e-128 -2.06568e-121 -1.99367e-126 -1.15429e-119 -1.29888e-124 -5.08026e-118 -7.57243e-123 -1.52361e-116 -3.50414e-121 -2.53115e-115 -1.1208e-119 -1.57423e-114 -2.01414e-118 -1.49488e-114 -1.35806e-117 -2.47733e-116 -1.34996e-117 -2.20957e-122 -2.1242e-119 -1.50937e-145 -1.43162e-125 -3.58627e-149 -4.76881e-193 -3.91651e-136 5.50202e-139 -1.34723e-136 2.7977e-134 -2.7722e-139 4.07245e-135 -2.49835e-142 5.07055e-138 -1.1742e-142 3.20572e-141 -9.43638e-143 1.14691e-141 -1.05309e-142 7.38964e-142 -1.84095e-142 6.85179e-142 -3.52633e-142 1.02138e-141 -6.48782e-142 1.70144e-141 -1.02096e-141 2.76438e-141 -1.54697e-141 3.88892e-141 -1.98316e-141 5.32025e-141 -2.35296e-141 6.20859e-141 -2.65512e-141 6.75138e-141 -2.44011e-141 7.02255e-141 -1.86468e-141 5.97807e-141 -1.39561e-141 4.24905e-141 -1.30868e-141 2.9684e-141 -1.15232e-141 2.60606e-141 -1.13659e-141 2.15402e-141 -1.25885e-141 1.99889e-141 -1.40041e-141 2.08695e-141 -1.52525e-141 2.19216e-141 -1.11183e-141 2.25767e-141 -9.51422e-142 1.55806e-141 -8.6385e-142 1.26354e-141 -7.72097e-142 1.08813e-141 -6.34659e-142 9.23061e-142 -4.79961e-142 7.20488e-142 -3.66432e-142 5.17561e-142 -2.81334e-142 3.75393e-142 -2.11572e-142 2.73807e-142 -1.55096e-142 1.95583e-142 -1.10058e-142 1.36133e-142 -7.57198e-143 9.16741e-143 -5.05513e-143 5.98127e-143 -3.40272e-143 3.78356e-143 -2.20521e-143 2.41064e-143 -1.36539e-143 1.47697e-143 -7.96308e-144 8.63362e-144 -4.37295e-144 4.74609e-144 -2.36383e-144 2.45218e-144 -1.20609e-144 1.24453e-144 -6.10597e-145 5.94747e-145 -2.73637e-145 2.81241e-145 -1.22579e-145 1.17356e-145 -5.50889e-146 4.8773e-146 -2.17322e-146 2.02515e-146 -8.66579e-147 7.34553e-147 -3.04468e-147 2.67787e-147 -1.10397e-147 8.5442e-148 -3.82811e-148 2.7909e-148 -1.287e-148 8.63367e-149 -4.20487e-149 2.55849e-149 -1.36899e-149 7.25683e-150 -4.53939e-150 2.01081e-150 -1.55978e-150 5.524e-151 -5.56949e-151 1.51289e-151 -2.18026e-151 4.05355e-152 -8.87066e-152 1.06923e-152 -4.01327e-152 2.28505e-153 -2.71402e-152 1.17265e-154 -2.93553e-152 -2.22939e-157 -4.56266e-152 -4.99298e-157 -9.22551e-152 -1.16419e-156 -2.39971e-151 -3.14221e-156 -7.72784e-151 -1.02883e-155 -3.02042e-150 -4.03184e-155 -1.42913e-149 -1.87815e-154 -7.98325e-149 -1.04399e-153 -5.17024e-148 -6.78234e-153 -3.87197e-147 -5.07261e-152 -3.3009e-146 -4.35676e-151 -3.18075e-145 -4.23959e-150 -3.42539e-144 -4.64185e-149 -4.10545e-143 -5.65839e-148 -5.49382e-142 -7.65064e-147 -8.23687e-141 -1.15187e-145 -1.37369e-139 -1.93776e-144 -2.52497e-138 -3.61458e-143 -5.14007e-137 -7.40996e-142 -1.1769e-135 -1.67842e-140 -3.07201e-134 -4.26592e-139 -9.23502e-133 -1.23225e-137 -3.29941e-131 -4.09378e-136 -1.45752e-129 -1.61455e-134 -7.97999e-128 -7.83686e-133 -5.0167e-126 -4.64583e-131 -3.18846e-124 -3.09989e-129 -1.79434e-122 -2.06218e-127 -7.8842e-121 -1.21168e-125 -2.34225e-119 -5.60052e-124 -3.81069e-118 -1.77474e-122 -2.26771e-117 -3.12529e-121 -1.94792e-117 -2.01839e-120 -2.61273e-119 -1.81855e-120 -1.49332e-125 -2.32726e-122 -3.1809e-149 -1.02017e-128 -8.83121e-153 -9.23543e-190 -4.43591e-139 5.90274e-142 -1.85525e-139 3.2342e-137 -4.12135e-142 5.7233e-138 -2.79839e-145 7.69357e-141 -1.25429e-145 3.66457e-144 -1.00405e-145 1.2504e-144 -1.12187e-145 8.02544e-145 -1.97606e-145 7.45107e-145 -3.82565e-145 1.11926e-144 -7.10954e-145 1.88467e-144 -1.12591e-144 3.09337e-144 -1.7096e-144 4.37992e-144 -2.19124e-144 6.00528e-144 -2.59568e-144 7.00727e-144 -2.91889e-144 7.60817e-144 -2.67639e-144 7.88672e-144 -2.04101e-144 6.69856e-144 -1.52171e-144 4.75139e-144 -1.41836e-144 3.30662e-144 -1.2419e-144 2.88556e-144 -1.21703e-144 2.37171e-144 -1.33652e-144 2.18668e-144 -1.47275e-144 2.26368e-144 -1.58716e-144 2.35532e-144 -1.1488e-144 2.40016e-144 -9.74378e-145 1.6447e-144 -8.75849e-145 1.32202e-144 -7.74385e-145 1.12711e-144 -6.29756e-145 9.45832e-145 -4.71246e-145 7.30407e-145 -3.55672e-145 5.19184e-145 -2.69709e-145 3.72285e-145 -2.00172e-145 2.68207e-145 -1.44665e-145 1.8908e-145 -1.01102e-145 1.29754e-145 -6.84392e-146 8.60613e-146 -4.49201e-146 5.52514e-146 -2.96955e-146 3.4364e-146 -1.88861e-146 2.1505e-146 -1.14639e-146 1.29321e-146 -6.5481e-147 7.41219e-147 -3.51762e-147 3.99145e-147 -1.85844e-147 2.01781e-147 -9.25917e-148 1.00114e-147 -4.57543e-148 4.67302e-148 -1.99849e-148 2.15753e-148 -8.72277e-149 8.77765e-149 -3.81842e-149 3.55575e-149 -1.46509e-149 1.43869e-149 -5.68261e-150 5.07768e-150 -1.93908e-150 1.80142e-150 -6.83359e-151 5.58507e-151 -2.30158e-151 1.77414e-151 -7.50463e-152 5.33439e-152 -2.37573e-152 1.53445e-152 -7.48497e-153 4.22165e-153 -2.40089e-153 1.13364e-153 -7.97488e-154 3.01837e-154 -2.75184e-154 8.01279e-155 -1.04168e-154 2.0835e-155 -4.09583e-155 5.35641e-156 -1.79312e-155 1.13004e-156 -1.14992e-155 7.55196e-158 -1.21014e-155 -9.09692e-161 -1.85645e-155 -2.04749e-160 -3.75235e-155 -4.75622e-160 -9.86038e-155 -1.28752e-159 -3.23836e-154 -4.27083e-159 -1.30228e-153 -1.70898e-158 -6.38576e-153 -8.18598e-158 -3.72051e-152 -4.71836e-157 -2.52822e-151 -3.19883e-156 -1.99392e-150 -2.50893e-155 -1.7975e-149 -2.2702e-154 -1.83705e-148 -2.33463e-153 -2.10415e-147 -2.711e-152 -2.68899e-146 -3.51434e-151 -3.84697e-145 -5.0669e-150 -6.1798e-144 -8.15821e-149 -1.10583e-142 -1.47113e-147 -2.18416e-141 -2.94633e-146 -4.78604e-140 -6.49688e-145 -1.18132e-138 -1.58593e-143 -3.32585e-137 -4.35175e-142 -1.08042e-135 -1.35876e-140 -4.17802e-134 -4.89129e-139 -1.99207e-132 -2.09521e-137 -1.16049e-130 -1.10043e-135 -7.59472e-129 -6.94794e-134 -4.92852e-127 -4.82691e-132 -2.79589e-125 -3.27945e-130 -1.22776e-123 -1.94289e-128 -3.61712e-122 -8.97584e-127 -5.77399e-121 -2.82163e-125 -3.29585e-120 -4.87845e-124 -2.5698e-120 -3.02653e-123 -2.80703e-122 -2.47994e-123 -1.04469e-128 -2.59793e-125 -7.69695e-153 -7.52084e-132 -2.46409e-156 -1.7328e-186 -5.01012e-142 6.45815e-145 -2.54767e-142 3.72589e-140 -6.1108e-145 8.01536e-141 -3.19598e-148 1.1634e-143 -1.34932e-148 4.26811e-147 -1.07611e-148 1.37181e-147 -1.20391e-148 8.77266e-148 -2.13654e-148 8.1561e-148 -4.18047e-148 1.23456e-147 -7.84687e-148 2.10131e-147 -1.25045e-147 3.48407e-147 -1.90249e-147 4.96463e-147 -2.43769e-147 6.82133e-147 -2.8826e-147 7.95759e-147 -3.22994e-147 8.62545e-147 -2.95446e-147 8.90962e-147 -2.24818e-147 7.54926e-147 -1.66962e-147 5.34327e-147 -1.54676e-147 3.70405e-147 -1.34669e-147 3.21279e-147 -1.31108e-147 2.62581e-147 -1.42747e-147 2.40516e-147 -1.5579e-147 2.46854e-147 -1.66106e-147 2.54389e-147 -1.19376e-147 2.56477e-147 -1.0035e-147 1.74505e-147 -8.9294e-148 1.39021e-147 -7.80929e-148 1.17332e-147 -6.28275e-148 9.73946e-148 -4.65178e-148 7.44084e-148 -3.47077e-148 5.23346e-148 -2.59947e-148 3.70994e-148 -1.90397e-148 2.63995e-148 -1.35656e-148 1.8368e-148 -9.33725e-149 1.24274e-148 -6.21909e-149 8.11857e-149 -4.01317e-149 5.12879e-149 -2.60556e-149 3.13651e-149 -1.62627e-149 1.92798e-149 -9.67793e-150 1.13798e-149 -5.41426e-150 6.39564e-150 -2.84533e-150 3.37383e-150 -1.46924e-150 1.66886e-150 -7.14775e-151 8.09449e-151 -3.4472e-151 3.69021e-151 -1.46745e-151 1.66329e-151 -6.23971e-152 6.59702e-152 -2.65991e-152 2.60431e-152 -9.92412e-153 1.0265e-152 -3.74291e-153 3.52424e-153 -1.23995e-153 1.21627e-153 -4.24485e-154 3.66264e-154 -1.38779e-154 1.13083e-154 -4.3861e-155 3.30271e-155 -1.34455e-155 9.21649e-156 -4.09716e-156 2.45814e-156 -1.27065e-156 6.39328e-157 -4.07831e-157 1.64891e-157 -1.35958e-157 4.2409e-158 -4.97658e-158 1.06976e-158 -1.89179e-158 2.6799e-159 -8.0217e-159 5.578e-160 -4.88333e-159 4.47949e-161 -4.99222e-159 -3.70165e-164 -7.55356e-159 -8.39944e-164 -1.52391e-158 -1.94349e-163 -4.04543e-158 -5.27852e-163 -1.35409e-157 -1.77101e-162 -5.59193e-157 -7.23152e-162 -2.84058e-156 -3.56238e-161 -1.72582e-155 -2.12785e-160 -1.22916e-154 -1.50359e-159 -1.02081e-153 -1.23622e-158 -9.72115e-153 -1.17825e-157 -1.05327e-151 -1.28015e-156 -1.28243e-150 -1.57547e-155 -1.74685e-149 -2.17046e-154 -2.6714e-148 -3.33565e-153 -4.59786e-147 -5.7426e-152 -8.82958e-146 -1.10987e-150 -1.87496e-144 -2.38664e-149 -4.42554e-143 -5.66243e-148 -1.17874e-141 -1.49063e-146 -3.58542e-140 -4.42053e-145 -1.26149e-138 -1.49457e-143 -5.29582e-137 -5.84532e-142 -2.73105e-135 -2.72745e-140 -1.69393e-133 -1.55251e-138 -1.154e-131 -1.04373e-136 -7.64794e-130 -7.54503e-135 -4.37557e-128 -5.2341e-133 -1.9216e-126 -3.12734e-131 -5.62113e-125 -1.4451e-129 -8.81989e-124 -4.512e-128 -4.84228e-123 -7.67067e-127 -3.4379e-123 -4.58288e-126 -3.07734e-125 -3.42745e-126 -7.57034e-132 -2.9574e-128 -2.11249e-156 -5.73412e-135 -7.78459e-160 -3.1507e-183 -5.64577e-145 7.14452e-148 -3.49058e-145 4.27997e-143 -9.04127e-148 1.11924e-143 -3.73129e-151 1.75415e-146 -1.46193e-151 5.07764e-150 -1.16179e-151 1.51455e-150 -1.30146e-151 9.65202e-151 -2.32691e-151 8.98661e-151 -4.60131e-151 1.37065e-150 -8.72293e-151 2.35814e-150 -1.39862e-150 3.94955e-150 -2.1319e-150 5.66339e-150 -2.7304e-150 7.79688e-150 -3.22264e-150 9.09232e-150 -3.59763e-150 9.83743e-150 -3.28242e-150 1.01244e-149 -2.49206e-150 8.55702e-150 -1.84339e-150 6.04293e-150 -1.69727e-150 4.17255e-150 -1.46933e-150 3.59706e-150 -1.42103e-150 2.92326e-150 -1.53374e-150 2.66001e-150 -1.65768e-150 2.7065e-150 -1.74848e-150 2.76218e-150 -1.24762e-150 2.75502e-150 -1.0394e-150 1.86116e-150 -9.15502e-151 1.46947e-150 -7.9192e-151 1.22768e-150 -6.30257e-151 1.00797e-150 -4.61706e-151 7.61811e-151 -3.40536e-151 5.30163e-151 -2.51899e-151 3.71533e-151 -1.8208e-151 2.61126e-151 -1.27896e-151 1.79308e-151 -8.66996e-152 1.19609e-151 -5.68188e-152 7.69619e-152 -3.60484e-152 4.78433e-152 -2.29865e-152 2.87697e-152 -1.40803e-152 1.73709e-152 -8.21516e-153 1.0064e-152 -4.50154e-153 5.54627e-153 -2.31436e-153 2.86619e-153 -1.168e-153 1.38726e-153 -5.54828e-154 6.57762e-154 -2.61122e-154 2.92866e-154 -1.08328e-154 1.28849e-154 -4.4866e-155 4.98177e-155 -1.86205e-155 1.91618e-155 -6.75411e-156 7.35552e-156 -2.4762e-156 2.45599e-156 -7.9614e-157 8.24258e-157 -2.64636e-157 2.41012e-157 -8.39407e-158 7.22915e-158 -2.57027e-158 2.04989e-158 -7.62632e-159 5.54695e-159 -2.24677e-159 1.43352e-159 -6.73447e-160 3.6096e-160 -2.08813e-160 9.01422e-161 -6.72489e-161 2.24553e-161 -2.38092e-161 5.49459e-162 -8.75652e-162 1.34168e-162 -3.60063e-162 2.75622e-163 -2.08339e-162 2.54835e-164 -2.06648e-162 -1.50125e-167 -3.08093e-162 -3.44998e-167 -6.20446e-162 -7.97286e-167 -1.66096e-161 -2.17017e-166 -5.662e-161 -7.37121e-166 -2.40132e-160 -3.0687e-165 -1.26274e-159 -1.55304e-164 -7.98983e-159 -9.60705e-164 -5.96114e-158 -7.0744e-163 -5.21177e-157 -6.09338e-162 -5.24102e-156 -6.11228e-161 -6.01567e-155 -7.01411e-160 -7.78077e-154 -9.14265e-159 -1.12928e-152 -1.33778e-157 -1.84585e-151 -2.19063e-156 -3.4038e-150 -4.03183e-155 -7.01583e-149 -8.35062e-154 -1.60237e-147 -1.92815e-152 -4.07724e-146 -4.92395e-151 -1.17322e-144 -1.39906e-149 -3.86268e-143 -4.48948e-148 -1.4759e-141 -1.64682e-146 -6.74623e-140 -7.01639e-145 -3.76903e-138 -3.57621e-143 -2.48839e-136 -2.20852e-141 -1.76362e-134 -1.57934e-139 -1.19342e-132 -1.18639e-137 -6.88796e-131 -8.39782e-136 -3.02739e-129 -5.05995e-134 -8.80329e-128 -2.33972e-132 -1.35961e-126 -7.26076e-131 -7.19636e-126 -1.21563e-129 -4.66792e-126 -7.01068e-129 -3.44447e-128 -4.80212e-129 -5.67896e-135 -3.43267e-131 -6.56967e-160 -4.51272e-138 -2.73082e-163 -5.55269e-180 -6.35096e-148 7.95213e-151 -4.77423e-148 4.90474e-146 -1.33556e-150 1.55904e-146 -4.46358e-154 2.63836e-149 -1.59539e-154 6.18416e-153 -1.26352e-154 1.6828e-153 -1.41729e-154 1.06888e-153 -2.55274e-154 9.96671e-154 -5.10123e-154 1.53167e-153 -9.76654e-154 2.66354e-153 -1.57543e-153 4.5061e-153 -2.40562e-153 6.50159e-153 -3.07917e-153 8.96761e-153 -3.62692e-153 1.04524e-152 -4.03354e-153 1.12868e-152 -3.67029e-153 1.15725e-152 -2.77991e-153 9.75517e-153 -2.04802e-153 6.87297e-153 -1.87401e-153 4.72675e-153 -1.61305e-153 4.04981e-153 -1.54964e-153 3.27253e-153 -1.6579e-153 2.95815e-153 -1.77435e-153 2.98361e-153 -1.85131e-153 3.01534e-153 -1.31155e-153 2.97511e-153 -1.08283e-153 1.99552e-153 -9.44022e-154 1.56143e-153 -8.07622e-154 1.29123e-153 -6.35795e-154 1.04854e-153 -4.60809e-154 7.83921e-154 -3.35965e-154 5.39767e-154 -2.4544e-154 3.73926e-154 -1.75078e-154 2.59565e-154 -1.21237e-154 1.75902e-154 -8.09415e-155 1.15683e-154 -5.21934e-155 7.33154e-155 -3.25575e-155 4.4849e-155 -2.039e-155 2.65192e-155 -1.22579e-155 1.57285e-155 -7.01202e-156 8.94447e-156 -3.76343e-156 4.83366e-156 -1.89295e-156 2.44707e-156 -9.33661e-157 1.15894e-156 -4.33034e-157 5.37153e-157 -1.98857e-157 2.33568e-157 -8.03909e-158 1.00293e-157 -3.24261e-158 3.7797e-158 -1.30992e-158 1.41628e-158 -4.61847e-159 5.29348e-159 -1.64553e-159 1.71864e-159 -5.13339e-160 5.60775e-160 -1.65617e-160 1.59174e-160 -5.09472e-161 4.63682e-161 -1.51086e-161 1.27604e-161 -4.33759e-162 3.34702e-162 -1.23512e-162 8.37821e-163 -3.57728e-163 2.04175e-163 -1.07145e-163 4.93578e-164 -3.33404e-164 1.19084e-164 -1.14233e-164 2.82735e-165 -4.06862e-165 6.73447e-166 -1.6248e-165 1.36687e-166 -8.95642e-166 1.41742e-167 -8.60076e-166 -6.0563e-171 -1.26533e-165 -1.42412e-170 -2.53938e-165 -3.28846e-170 -6.85945e-165 -8.98577e-170 -2.37878e-164 -3.08777e-169 -1.03482e-163 -1.31057e-168 -5.6288e-163 -6.81212e-168 -3.70794e-162 -4.36437e-167 -2.89593e-161 -3.3464e-166 -2.66297e-160 -3.0176e-165 -2.82688e-159 -3.18163e-164 -3.43499e-158 -3.85446e-163 -4.71697e-157 -5.31834e-162 -7.29211e-156 -8.26132e-161 -1.27387e-154 -1.44104e-159 -2.51668e-153 -2.83435e-158 -5.56838e-152 -6.29042e-157 -1.36849e-150 -1.55969e-155 -3.75713e-149 -4.28881e-154 -1.16941e-147 -1.31635e-152 -4.17546e-146 -4.57653e-151 -1.73723e-144 -1.82509e-149 -8.67041e-143 -8.49609e-148 -5.25351e-141 -4.74192e-146 -3.68842e-139 -3.17692e-144 -2.7161e-137 -2.41187e-142 -1.87551e-135 -1.87913e-140 -1.09194e-133 -1.35573e-138 -4.8052e-132 -8.2345e-137 -1.38984e-130 -3.81035e-135 -2.11577e-129 -1.17605e-133 -1.08193e-128 -1.94166e-132 -6.43256e-129 -1.08315e-131 -3.93472e-131 -6.8177e-132 -4.4006e-138 -4.05709e-134 -2.26986e-163 -3.65394e-141 -1.04373e-166 -9.48552e-177 -7.13718e-151 8.88258e-154 -6.52271e-151 5.60983e-149 -1.97074e-153 2.16725e-149 -5.48082e-157 3.96008e-152 -1.75375e-157 7.72362e-156 -1.38434e-157 1.88165e-156 -1.55484e-157 1.19142e-156 -2.82098e-157 1.11262e-156 -5.69657e-157 1.72276e-156 -1.10139e-156 3.02801e-156 -1.78723e-156 5.17418e-156 -2.73348e-156 7.51126e-156 -3.49631e-156 1.03784e-155 -4.10934e-156 1.20894e-155 -4.55213e-156 1.30272e-155 -4.13057e-156 1.33055e-155 -3.12076e-156 1.11853e-155 -2.28973e-156 7.86151e-156 -2.08211e-156 5.38482e-156 -1.78186e-156 4.58517e-156 -1.70033e-156 3.68406e-156 -1.80306e-156 3.30801e-156 -1.91069e-156 3.30719e-156 -1.97188e-156 3.30957e-156 -1.38694e-156 3.23002e-156 -1.13472e-156 2.15102e-156 -9.79111e-157 1.66794e-156 -8.28381e-157 1.3652e-156 -6.45034e-157 1.09638e-156 -4.62506e-157 8.10787e-157 -3.33305e-157 5.52313e-157 -2.40472e-157 3.78209e-157 -1.69274e-157 2.59287e-157 -1.15555e-157 1.73406e-157 -7.59799e-158 1.12432e-157 -4.82074e-158 7.01819e-158 -2.95665e-158 4.22472e-158 -1.81867e-158 2.45644e-158 -1.07305e-158 1.43111e-158 -6.01829e-159 7.98852e-159 -3.16383e-159 4.23331e-159 -1.55686e-159 2.09951e-159 -7.50447e-160 9.72963e-160 -3.39818e-160 4.40799e-160 -1.52247e-160 1.87176e-160 -5.99732e-161 7.84339e-161 -2.3556e-161 2.88109e-161 -9.26091e-162 1.05157e-161 -3.17341e-162 3.82626e-162 -1.09859e-162 1.20782e-162 -3.32465e-163 3.83087e-163 -1.04079e-163 1.0554e-163 -3.10409e-164 2.98501e-164 -8.91287e-165 7.96986e-165 -2.47524e-165 2.02576e-165 -6.81095e-166 4.91019e-166 -1.90591e-166 1.15786e-166 -5.51468e-167 2.7093e-167 -1.65863e-167 6.33204e-168 -5.5038e-168 1.45959e-168 -1.90074e-168 3.39484e-169 -7.38536e-169 6.81616e-170 -3.88636e-169 7.77711e-171 -3.61532e-169 -2.43e-174 -5.24143e-169 -5.92289e-174 -1.04928e-168 -1.37036e-173 -2.85692e-168 -3.75935e-173 -1.00764e-167 -1.30753e-172 -4.49415e-167 -5.66071e-172 -2.52844e-166 -3.01938e-171 -1.73249e-165 -2.00158e-170 -1.4154e-164 -1.59731e-169 -1.36713e-163 -1.50697e-168 -1.53131e-162 -1.67003e-167 -1.96883e-161 -2.13292e-166 -2.86917e-160 -3.11363e-165 -4.7235e-159 -5.13232e-164 -8.81594e-158 -9.53426e-163 -1.86582e-156 -2.00318e-161 -4.43183e-155 -4.76337e-160 -1.17242e-153 -1.26832e-158 -3.4758e-152 -3.75659e-157 -1.17164e-150 -1.24642e-155 -4.5462e-149 -4.70149e-154 -2.06579e-147 -2.04309e-152 -1.12859e-145 -1.04221e-150 -7.41636e-144 -6.37982e-149 -5.5267e-142 -4.63084e-147 -4.22077e-140 -3.72141e-145 -2.97089e-138 -2.99972e-143 -1.7441e-136 -2.20278e-141 -7.68412e-135 -1.34792e-139 -2.21184e-133 -6.24145e-138 -3.32266e-132 -1.9168e-136 -1.64461e-131 -3.12409e-135 -8.9903e-132 -1.68863e-134 -4.58009e-134 -9.79322e-135 -3.51021e-141 -4.87009e-137 -8.54774e-167 -3.03034e-144 -4.40877e-170 -1.57071e-173 -8.02346e-154 9.94936e-157 -8.90795e-154 6.40641e-152 -2.90642e-156 3.00781e-152 -6.91435e-160 5.93392e-155 -1.94203e-160 9.90034e-159 -1.52799e-160 2.11748e-159 -1.71839e-160 1.3367e-159 -3.14027e-160 1.25023e-159 -6.40775e-160 1.95035e-159 -1.25103e-159 3.46474e-159 -2.04197e-159 5.97971e-159 -3.1278e-159 8.73301e-159 -3.99727e-159 1.20864e-158 -4.68732e-159 1.40685e-158 -5.17145e-159 1.51264e-158 -4.67882e-159 1.53885e-158 -3.52587e-159 1.28996e-158 -2.57622e-159 9.04373e-159 -2.32792e-159 6.16937e-159 -1.98072e-159 5.22062e-159 -1.87735e-159 4.17069e-159 -1.97306e-159 3.71994e-159 -2.07008e-159 3.68614e-159 -2.113e-159 3.65233e-159 -1.4755e-159 3.52568e-159 -1.1962e-159 2.33109e-159 -1.0215e-159 1.7912e-159 -8.54622e-160 1.45098e-159 -6.58167e-160 1.15234e-159 -4.66844e-160 8.42841e-160 -3.32525e-160 5.67987e-160 -2.36919e-160 3.84437e-160 -1.64569e-160 2.60282e-160 -1.10748e-160 1.71781e-160 -7.17156e-161 1.09804e-160 -4.47715e-161 6.75084e-161 -2.69987e-161 3.99895e-161 -1.63113e-161 2.28642e-161 -9.44544e-162 1.30848e-161 -5.19406e-162 7.1694e-162 -2.67448e-162 3.72553e-162 -1.28753e-162 1.81005e-162 -6.0649e-163 8.2079e-163 -2.68115e-163 3.63471e-163 -1.17183e-163 1.50716e-163 -4.4978e-164 6.16272e-164 -1.72014e-164 2.20638e-164 -6.58054e-165 7.84366e-165 -2.19137e-165 2.77814e-165 -7.36988e-166 8.52585e-166 -2.16333e-166 2.62828e-166 -6.56988e-167 7.02706e-167 -1.8992e-167 1.92922e-167 -5.27886e-168 4.99614e-168 -1.41785e-168 1.2303e-168 -3.76968e-169 2.88707e-169 -1.01918e-169 6.58706e-170 -2.84958e-170 1.49205e-170 -8.28885e-171 3.37936e-171 -2.66644e-171 7.56853e-172 -8.94228e-172 1.72085e-172 -3.38809e-172 3.42137e-173 -1.70676e-172 4.22567e-174 -1.53843e-172 -9.72974e-178 -2.19968e-172 -2.49142e-177 -4.38974e-172 -5.78419e-177 -1.20486e-171 -1.5959e-176 -4.32331e-171 -5.61408e-176 -1.97511e-170 -2.47924e-175 -1.14822e-169 -1.35918e-174 -8.18006e-169 -9.31266e-174 -6.98631e-168 -7.73338e-173 -7.08822e-167 -7.62932e-172 -8.36587e-166 -8.87574e-171 -1.13751e-164 -1.19463e-169 -1.75844e-163 -1.84317e-168 -3.0821e-162 -3.22276e-167 -6.14298e-161 -6.37116e-166 -1.39254e-159 -1.42944e-164 -3.55082e-158 -3.64038e-163 -1.01143e-156 -1.04088e-161 -3.24024e-155 -3.32149e-160 -1.18454e-153 -1.1922e-158 -5.00657e-152 -4.88583e-157 -2.49208e-150 -2.3192e-155 -1.49281e-148 -1.29994e-153 -1.06258e-146 -8.73423e-152 -8.38047e-145 -6.85126e-150 -6.6212e-143 -5.80584e-148 -4.74381e-141 -4.82753e-146 -2.80621e-139 -3.60214e-144 -1.2376e-137 -2.2188e-142 -3.54621e-136 -1.02779e-140 -5.26152e-135 -3.14122e-139 -2.5246e-134 -5.05762e-138 -1.27209e-134 -2.65254e-137 -5.41708e-137 -1.42017e-137 -2.86871e-144 -5.9183e-140 -3.55811e-170 -2.55999e-147 -2.99351e-168 -2.52139e-170 -8.96176e-157 1.11313e-159 -1.21661e-156 7.30784e-155 -4.28623e-159 4.16898e-155 -8.96053e-163 8.87963e-158 -2.16637e-163 1.30226e-161 -1.69907e-163 2.39821e-162 -1.91324e-163 1.50957e-162 -3.52136e-163 1.41416e-162 -7.26025e-163 2.22251e-162 -1.43127e-162 3.99039e-162 -2.34963e-162 6.95549e-162 -3.60404e-162 1.02184e-161 -4.60142e-162 1.41638e-161 -5.38264e-162 1.64726e-161 -5.91409e-162 1.767e-161 -5.33449e-162 1.79036e-161 -4.00925e-162 1.49637e-161 -2.91711e-162 1.04636e-161 -2.61932e-162 7.10848e-162 -2.21573e-162 5.97772e-162 -2.08586e-162 4.7481e-162 -2.17257e-162 4.20646e-162 -2.2566e-162 4.1311e-162 -2.27805e-162 4.05245e-162 -1.57924e-162 3.86904e-162 -1.2686e-162 2.5397e-162 -1.07204e-162 1.93372e-162 -8.86852e-163 1.55018e-162 -6.75441e-163 1.21734e-162 -4.73908e-163 8.80572e-163 -3.33618e-163 5.87001e-163 -2.34725e-163 3.92684e-163 -1.60885e-163 2.62551e-163 -1.0673e-163 1.70993e-163 -6.80652e-164 1.07754e-163 -4.18105e-164 6.52485e-164 -2.47904e-164 3.8034e-164 -1.47104e-164 2.13839e-164 -8.36027e-165 1.2021e-164 -4.50745e-165 6.46521e-165 -2.27325e-165 3.29444e-165 -1.07062e-165 1.56801e-165 -4.92814e-166 6.95747e-166 -2.12686e-166 3.01138e-166 -9.06759e-167 1.21932e-166 -3.39121e-167 4.86464e-167 -1.26275e-167 1.69748e-167 -4.70022e-168 5.87727e-168 -1.52101e-168 2.02616e-168 -4.96892e-169 6.04499e-169 -1.41459e-169 1.81101e-169 -4.16674e-170 4.69857e-170 -1.16725e-170 1.25192e-170 -3.14012e-171 3.14411e-171 -8.15588e-172 7.50019e-172 -2.0952e-172 1.70389e-172 -5.47389e-173 3.76187e-173 -1.47954e-173 8.25089e-174 -4.16558e-174 1.81181e-174 -1.3007e-174 3.94509e-175 -4.24365e-175 8.77503e-176 -1.57196e-175 1.72776e-176 -7.626e-176 2.27153e-177 -6.64721e-176 -5.20087e-182 -9.37027e-176 -1.42318e-181 -1.8664e-175 -3.31862e-181 -5.15955e-175 -9.21962e-181 -1.88349e-174 -3.28517e-180 -8.82821e-174 -1.4822e-179 -5.29774e-173 -8.35346e-179 -3.92359e-172 -5.92601e-178 -3.50149e-171 -5.1284e-177 -3.72717e-170 -5.29615e-176 -4.63352e-169 -6.4827e-175 -6.65584e-168 -9.2138e-174 -1.09097e-166 -1.5063e-172 -2.03413e-165 -2.79953e-171 -4.32767e-164 -5.90742e-170 -1.05027e-162 -1.42107e-168 -2.8747e-161 -3.89142e-167 -8.81875e-160 -1.20048e-165 -3.05518e-158 -4.15216e-164 -1.21306e-156 -1.62524e-162 -5.59868e-155 -7.315e-161 -3.0613e-153 -3.84799e-159 -2.01229e-151 -2.40907e-157 -1.54754e-149 -1.79676e-155 -1.28682e-147 -1.52332e-153 -1.04861e-145 -1.34803e-151 -7.63358e-144 -1.13842e-149 -4.54577e-142 -8.47612e-148 -2.00588e-140 -5.15835e-146 -5.72146e-139 -2.34894e-144 -8.38861e-138 -7.04011e-143 -3.90663e-137 -1.10881e-141 -1.81764e-137 -5.62739e-141 -6.48698e-140 -2.7878e-141 -2.38814e-147 -9.77875e-144 -2.38072e-168 -2.96147e-151 -3.92381e-167 -5.03366e-165 -3.67841e-13 3.00902e-13 -5.2044e-13 1.5281e-13 -5.38548e-13 1.82664e-14 -5.55348e-13 1.69052e-14 -5.79596e-13 2.42996e-14 -6.07855e-13 2.82594e-14 -6.38128e-13 3.02242e-14 -6.67425e-13 2.92083e-14 -6.939e-13 2.63624e-14 -7.15191e-13 2.11732e-14 -7.33402e-13 1.81059e-14 -7.4735e-13 1.38703e-14 -7.59054e-13 1.16548e-14 -7.76985e-13 1.79057e-14 -7.99249e-13 2.22531e-14 -8.23571e-13 2.43128e-14 -8.54421e-13 3.08291e-14 -8.8989e-13 3.54254e-14 -9.26341e-13 3.63827e-14 -9.62866e-13 3.64333e-14 -9.98768e-13 3.57982e-14 -1.03063e-12 3.17625e-14 -1.05579e-12 2.50763e-14 -1.07535e-12 1.95064e-14 -1.09221e-12 1.68272e-14 -1.10286e-12 1.06394e-14 -1.10678e-12 3.92295e-15 -1.10767e-12 8.97576e-16 -1.10336e-12 -4.32769e-15 -1.09432e-12 -9.08546e-15 -1.08066e-12 -1.37252e-14 -1.06282e-12 -1.79347e-14 -1.04114e-12 -2.17917e-14 -1.01675e-12 -2.45261e-14 -9.8891e-13 -2.79839e-14 -9.54758e-13 -3.42999e-14 -9.13936e-13 -4.09643e-14 -8.64464e-13 -4.9604e-14 -8.00599e-13 -6.39857e-14 -7.20979e-13 -7.97299e-14 -6.30831e-13 -9.0253e-14 -5.29314e-13 -1.01627e-13 -4.13993e-13 -1.15447e-13 -2.8629e-13 -1.27856e-13 -1.49021e-13 -1.3746e-13 -1.12174e-14 -1.38038e-13 1.25001e-13 -1.36495e-13 2.59729e-13 -1.35039e-13 3.83057e-13 -1.23657e-13 4.92689e-13 -1.0996e-13 5.91276e-13 -9.88976e-14 6.80832e-13 -8.98394e-14 7.6217e-13 -8.15913e-14 8.35618e-13 -7.3684e-14 9.02049e-13 -6.66637e-14 9.63691e-13 -6.18886e-14 1.02384e-12 -6.04195e-14 1.09088e-12 -6.73337e-14 1.16897e-12 -7.83899e-14 1.25855e-12 -8.98674e-14 1.36183e-12 -1.0355e-13 1.4756e-12 -1.14005e-13 1.5786e-12 -1.0319e-13 1.65534e-12 -7.68944e-14 1.72046e-12 -6.52311e-14 1.77704e-12 -5.66697e-14 1.8097e-12 -3.27049e-14 1.81251e-12 -2.82691e-15 1.80275e-12 9.77076e-15 1.79063e-12 1.21464e-14 1.76995e-12 2.07129e-14 1.73691e-12 3.30927e-14 1.69449e-12 4.24777e-14 1.64681e-12 4.77732e-14 1.60277e-12 4.41851e-14 1.57225e-12 3.06917e-14 1.54555e-12 2.68761e-14 1.51865e-12 2.70251e-14 1.49324e-12 2.54044e-14 1.46592e-12 2.7151e-14 1.43206e-12 3.3513e-14 1.39676e-12 3.48076e-14 1.36514e-12 3.10635e-14 1.3355e-12 2.90922e-14 1.30562e-12 2.9439e-14 1.27377e-12 3.15947e-14 1.23692e-12 3.67813e-14 1.19557e-12 4.14371e-14 1.15862e-12 3.70394e-14 1.13197e-12 2.65836e-14 1.11227e-12 1.93788e-14 1.08029e-12 3.14224e-14 1.02947e-12 5.02279e-14 9.88311e-13 4.0776e-14 9.82572e-13 5.74044e-15 9.84087e-13 -1.18823e-15 9.67413e-13 1.70747e-14 9.08871e-13 5.8745e-14 6.67836e-13 2.40937e-13 3.91443e-13 2.76122e-13 -2.37498e-12 7.44186e-13 -2.47088e-12 2.48928e-13 -2.40296e-12 -4.95166e-14 -2.18679e-12 -1.99214e-13 -1.89783e-12 -2.64677e-13 -1.59126e-12 -2.78383e-13 -1.28638e-12 -2.74779e-13 -9.89666e-13 -2.67653e-13 -7.06573e-13 -2.56879e-13 -4.35289e-13 -2.50239e-13 -1.7925e-13 -2.38029e-13 5.66204e-14 -2.22065e-13 2.74177e-13 -2.05946e-13 4.70977e-13 -1.78936e-13 6.40201e-13 -1.47028e-13 7.83001e-13 -1.18574e-13 9.01998e-13 -8.82906e-14 9.96415e-13 -5.91503e-14 1.06926e-12 -3.66426e-14 1.12668e-12 -2.11704e-14 1.17166e-12 -9.34574e-15 1.20515e-12 -1.84307e-15 1.23154e-12 -1.36772e-15 1.25246e-12 -1.41588e-15 1.26893e-12 4.00716e-16 1.27861e-12 1.01282e-15 1.27667e-12 5.90715e-15 1.2668e-12 1.07875e-14 1.24687e-12 1.55797e-14 1.21355e-12 2.41643e-14 1.17082e-12 2.88921e-14 1.1189e-12 3.3838e-14 1.05888e-12 3.80364e-14 9.90817e-13 4.33364e-14 9.18693e-13 4.39234e-14 8.46081e-13 3.80953e-14 7.74586e-13 3.03201e-14 7.11046e-13 1.37338e-14 6.61319e-13 -1.44548e-14 6.23035e-13 -4.16451e-14 5.9577e-13 -6.32023e-14 5.77114e-13 -8.32162e-14 5.68531e-13 -1.07154e-13 5.71087e-13 -1.3076e-13 5.82168e-13 -1.48955e-13 5.94259e-13 -1.50608e-13 6.00692e-13 -1.4346e-13 6.00463e-13 -1.35375e-13 5.88468e-13 -1.1224e-13 5.68227e-13 -9.02866e-14 5.43553e-13 -7.47725e-14 5.14254e-13 -6.10712e-14 4.76817e-13 -4.46831e-14 4.2994e-13 -2.73518e-14 3.76035e-13 -1.33362e-14 3.17224e-13 -3.69135e-15 2.55538e-13 6.29718e-16 1.99633e-13 -1.20646e-14 1.50719e-13 -3.00773e-14 1.05804e-13 -4.54934e-14 6.61402e-14 -6.43485e-14 3.32425e-14 -8.14869e-14 5.19621e-15 -7.54454e-14 -2.2744e-14 -4.91849e-14 -5.96071e-14 -2.85328e-14 -1.04089e-13 -1.22902e-14 -1.54134e-13 1.7297e-14 -2.11697e-13 5.47426e-14 -2.78591e-13 7.67084e-14 -3.5047e-13 8.40914e-14 -4.21116e-13 9.14475e-14 -4.83158e-13 9.52518e-14 -5.42125e-13 1.01605e-13 -6.02706e-13 1.08561e-13 -6.53574e-13 9.52784e-14 -6.71861e-13 4.91644e-14 -6.71429e-13 2.65044e-14 -6.61726e-13 1.71786e-14 -6.38347e-13 1.63536e-15 -5.98136e-13 -1.36821e-14 -5.44177e-13 -2.12259e-14 -4.79376e-13 -3.08146e-14 -3.94712e-13 -5.43357e-14 -2.82632e-13 -8.35315e-14 -1.453e-13 -1.08184e-13 1.53172e-14 -1.29079e-13 1.95251e-13 -1.43084e-13 3.87867e-13 -1.51168e-13 5.9347e-13 -1.68799e-13 8.21921e-13 -2.02434e-13 1.08061e-12 -2.401e-13 1.37509e-12 -2.63775e-13 1.69418e-12 -2.692e-13 2.02458e-12 -2.89421e-13 2.3485e-12 -3.17592e-13 2.63653e-12 -2.88635e-13 2.8348e-12 -1.80949e-13 2.89112e-12 2.25933e-15 2.75994e-12 3.71789e-13 8.00725e-13 2.3506e-12 -8.04249e-12 1.08807e-12 -7.96149e-12 1.68019e-13 -7.57394e-12 -4.37009e-13 -7.01028e-12 -7.62826e-13 -6.36908e-12 -9.05834e-13 -5.70266e-12 -9.44762e-13 -5.04279e-12 -9.34634e-13 -4.40296e-12 -9.07472e-13 -3.78882e-12 -8.71022e-13 -3.20882e-12 -8.30266e-13 -2.66062e-12 -7.86263e-13 -2.1482e-12 -7.34558e-13 -1.67441e-12 -6.79836e-13 -1.23309e-12 -6.20388e-13 -8.23139e-13 -5.57143e-13 -4.47949e-13 -4.93948e-13 -1.03479e-13 -4.32951e-13 2.102e-13 -3.73009e-13 4.91619e-13 -3.18209e-13 7.41985e-13 -2.71629e-13 9.66045e-13 -2.33429e-13 1.16625e-12 -2.01991e-13 1.34092e-12 -1.75911e-13 1.49423e-12 -1.54536e-13 1.62879e-12 -1.33947e-13 1.7405e-12 -1.10474e-13 1.83046e-12 -8.38469e-14 1.89783e-12 -5.64096e-14 1.94097e-12 -2.74187e-14 1.96215e-12 3.07137e-15 1.95918e-12 3.19175e-14 1.93609e-12 5.69327e-14 1.89494e-12 7.9156e-14 1.83914e-12 9.90785e-14 1.77691e-12 1.06064e-13 1.70732e-12 1.07579e-13 1.62756e-12 1.09956e-13 1.54744e-12 9.37176e-14 1.46513e-12 6.77222e-14 1.37088e-12 5.24523e-14 1.27817e-12 2.93464e-14 1.18784e-12 6.93294e-15 1.09115e-12 -1.06792e-14 9.90033e-13 -2.9904e-14 8.80884e-13 -4.01204e-14 7.71193e-13 -4.12984e-14 6.66046e-13 -3.87664e-14 5.59581e-13 -2.94331e-14 4.58226e-13 -1.14718e-14 3.67891e-13 -5.9422e-16 2.83444e-13 8.98346e-15 1.96348e-13 2.52924e-14 1.05444e-13 4.5451e-14 9.24631e-15 6.80446e-14 -9.13797e-14 8.64703e-14 -1.91142e-13 9.52542e-14 -2.88976e-13 9.76796e-14 -3.96149e-13 9.43862e-14 -5.07638e-13 8.07759e-14 -6.24753e-13 7.10865e-14 -7.52053e-13 6.25161e-14 -8.84902e-13 5.10156e-14 -1.00646e-12 4.58436e-14 -1.10556e-12 4.97032e-14 -1.18819e-12 5.39545e-14 -1.25557e-12 5.49994e-14 -1.2922e-12 5.38921e-14 -1.29584e-12 5.83939e-14 -1.28659e-12 6.7507e-14 -1.28349e-12 8.10431e-14 -1.28286e-12 9.08733e-14 -1.26601e-12 7.84593e-14 -1.22053e-12 5.61723e-14 -1.15391e-12 4.19927e-14 -1.08e-12 2.13997e-14 -9.97432e-13 -3.34203e-14 -8.85862e-13 -8.51672e-14 -7.45382e-13 -1.235e-13 -5.84103e-13 -1.59922e-13 -3.94976e-13 -2.0312e-13 -1.69165e-13 -2.47324e-13 9.08575e-14 -2.91055e-13 3.79173e-13 -3.42781e-13 7.01189e-13 -4.05596e-13 1.06295e-12 -4.69941e-13 1.46682e-12 -5.3292e-13 1.91582e-12 -5.92087e-13 2.4064e-12 -6.41831e-13 2.92428e-12 -6.86854e-13 3.46082e-12 -7.39206e-13 4.0238e-12 -8.03233e-13 4.63953e-12 -8.79441e-13 5.31846e-12 -9.47763e-13 6.02848e-12 -9.98868e-13 6.70235e-12 -9.90908e-13 7.324e-12 -9.09963e-13 7.83793e-12 -6.94821e-13 8.17576e-12 -3.35571e-13 8.30937e-12 2.38363e-13 9.88048e-13 8.12243e-12 -1.25275e-11 1.10874e-12 -1.22096e-11 -1.49784e-13 -1.16272e-11 -1.01935e-12 -1.08598e-11 -1.53009e-12 -1.00016e-11 -1.76386e-12 -9.11271e-12 -1.83354e-12 -8.22403e-12 -1.82316e-12 -7.3555e-12 -1.77588e-12 -6.51607e-12 -1.71038e-12 -5.71357e-12 -1.63276e-12 -4.9514e-12 -1.5485e-12 -4.2292e-12 -1.45689e-12 -3.5511e-12 -1.35813e-12 -2.91365e-12 -1.25807e-12 -2.31286e-12 -1.15819e-12 -1.74986e-12 -1.05718e-12 -1.22476e-12 -9.58251e-13 -7.36217e-13 -8.61685e-13 -2.86516e-13 -7.67955e-13 1.21701e-13 -6.79798e-13 4.88355e-13 -5.9994e-13 8.14037e-13 -5.27448e-13 1.0993e-12 -4.60887e-13 1.34515e-12 -4.00067e-13 1.55393e-12 -3.42411e-13 1.72812e-12 -2.84362e-13 1.87082e-12 -2.26268e-13 1.984e-12 -1.69351e-13 2.06946e-12 -1.12665e-13 2.13087e-12 -5.81481e-14 2.16819e-12 -5.23712e-15 2.18349e-12 4.17784e-14 2.17972e-12 8.3043e-14 2.16348e-12 1.15411e-13 2.13113e-12 1.38482e-13 2.0834e-12 1.55352e-13 2.0291e-12 1.64274e-13 1.95737e-12 1.65441e-13 1.86588e-12 1.59195e-13 1.76418e-12 1.54118e-13 1.64496e-12 1.48515e-13 1.51203e-12 1.39793e-13 1.36875e-12 1.32511e-13 1.21404e-12 1.24671e-13 1.05262e-12 1.21096e-13 8.8656e-13 1.24488e-13 7.21687e-13 1.25744e-13 5.64263e-13 1.27533e-13 4.12968e-13 1.39272e-13 2.61858e-13 1.49881e-13 1.10834e-13 1.59306e-13 -3.83107e-14 1.73687e-13 -1.85859e-13 1.92227e-13 -3.30341e-13 2.11757e-13 -4.71126e-13 2.2652e-13 -6.08848e-13 2.32304e-13 -7.42253e-13 2.30503e-13 -8.72844e-13 2.24502e-13 -1.01173e-12 2.19294e-13 -1.15457e-12 2.13667e-13 -1.29436e-12 2.02129e-13 -1.42841e-12 1.84948e-13 -1.54954e-12 1.66887e-13 -1.64935e-12 1.49467e-13 -1.72471e-12 1.29314e-13 -1.77437e-12 1.04699e-13 -1.80178e-12 8.13938e-14 -1.80858e-12 6.53281e-14 -1.79575e-12 5.48302e-14 -1.76073e-12 4.6161e-14 -1.6968e-12 2.70599e-14 -1.60814e-12 -1.01217e-14 -1.49725e-12 -5.46974e-14 -1.35576e-12 -9.95114e-14 -1.17922e-12 -1.55202e-13 -9.86553e-13 -2.26173e-13 -7.72265e-13 -2.99553e-13 -5.21022e-13 -3.74808e-13 -2.28458e-13 -4.52464e-13 1.02807e-13 -5.34237e-13 4.76748e-13 -6.20992e-13 8.93847e-13 -7.07811e-13 1.35066e-12 -7.99279e-13 1.84702e-12 -9.01742e-13 2.39107e-12 -1.01394e-12 2.9857e-12 -1.12763e-12 3.62705e-12 -1.23357e-12 4.3102e-12 -1.32504e-12 5.0306e-12 -1.40715e-12 5.78427e-12 -1.49254e-12 6.57307e-12 -1.5915e-12 7.39496e-12 -1.70066e-12 8.24868e-12 -1.80083e-12 9.11635e-12 -1.86607e-12 9.95903e-12 -1.83336e-12 1.07844e-11 -1.73531e-12 1.15687e-11 -1.47905e-12 1.22295e-11 -9.96025e-13 1.25965e-11 -1.28036e-13 1.07721e-12 1.25078e-11 -1.44645e-11 1.16992e-12 -1.40612e-11 -5.5298e-13 -1.3374e-11 -1.70643e-12 -1.24978e-11 -2.4061e-12 -1.15281e-11 -2.73333e-12 -1.05264e-11 -2.83495e-12 -9.52763e-12 -2.82175e-12 -8.54954e-12 -2.75382e-12 -7.60352e-12 -2.65633e-12 -6.69389e-12 -2.54241e-12 -5.82311e-12 -2.4194e-12 -4.99564e-12 -2.28457e-12 -4.21058e-12 -2.14346e-12 -3.46544e-12 -2.00348e-12 -2.76187e-12 -1.86201e-12 -2.10204e-12 -1.71721e-12 -1.48562e-12 -1.57479e-12 -9.14024e-13 -1.4333e-12 -3.8829e-13 -1.29361e-12 9.1602e-14 -1.15953e-12 5.25832e-13 -1.03394e-12 9.14941e-13 -9.16285e-13 1.25886e-12 -8.04526e-13 1.55758e-12 -6.9852e-13 1.8127e-12 -5.97301e-13 2.02823e-12 -4.99679e-13 2.20878e-12 -4.06643e-13 2.35741e-12 -3.17801e-13 2.47753e-12 -2.32596e-13 2.57018e-12 -1.50572e-13 2.6379e-12 -7.271e-14 2.68014e-12 -1.89833e-16 2.6978e-12 6.56756e-14 2.69177e-12 1.21742e-13 2.66142e-12 1.69121e-13 2.60741e-12 2.09632e-13 2.52952e-12 2.4241e-13 2.42959e-12 2.65587e-13 2.30819e-12 2.80794e-13 2.16697e-12 2.95501e-13 2.00965e-12 3.05979e-13 1.83779e-12 3.11768e-13 1.65261e-12 3.17781e-13 1.45665e-12 3.20683e-13 1.25123e-12 3.26526e-13 1.03992e-12 3.35753e-13 8.27794e-13 3.37758e-13 6.13638e-13 3.41511e-13 3.98464e-13 3.54208e-13 1.79813e-13 3.68249e-13 -4.14293e-14 3.8024e-13 -2.58676e-13 3.90628e-13 -4.67585e-13 4.0086e-13 -6.64665e-13 4.08617e-13 -8.4977e-13 4.11486e-13 -1.02666e-12 4.09152e-13 -1.1979e-12 4.01793e-13 -1.36426e-12 3.91008e-13 -1.52486e-12 3.80104e-13 -1.6797e-12 3.68759e-13 -1.82889e-12 3.51593e-13 -1.96969e-12 3.25998e-13 -2.09579e-12 2.93223e-13 -2.20132e-12 2.55233e-13 -2.28478e-12 2.13014e-13 -2.34763e-12 1.67834e-13 -2.38926e-12 1.23333e-13 -2.4042e-12 8.0619e-14 -2.38992e-12 4.09121e-14 -2.34307e-12 -3.60514e-16 -2.26089e-12 -5.48432e-14 -2.14741e-12 -1.23401e-13 -2.00044e-12 -2.01551e-13 -1.81331e-12 -2.86599e-13 -1.58889e-12 -3.79612e-13 -1.33677e-12 -4.78301e-13 -1.05209e-12 -5.84175e-13 -7.27838e-13 -6.98869e-13 -3.61945e-13 -8.17984e-13 4.9094e-14 -9.44716e-13 5.05728e-13 -1.07695e-12 1.00533e-12 -1.20676e-12 1.54543e-12 -1.33893e-12 2.12906e-12 -1.4852e-12 2.75884e-12 -1.64384e-12 3.43703e-12 -1.80607e-12 4.16468e-12 -1.96138e-12 4.93981e-12 -2.10004e-12 5.75983e-12 -2.22668e-12 6.61895e-12 -2.35087e-12 7.51537e-12 -2.48703e-12 8.44001e-12 -2.62457e-12 9.38233e-12 -2.74278e-12 1.0336e-11 -2.81972e-12 1.12886e-11 -2.78622e-12 1.22476e-11 -2.69436e-12 1.3167e-11 -2.39829e-12 1.39177e-11 -1.74627e-12 1.43245e-11 -5.34311e-13 1.17948e-12 1.42224e-11 -1.49943e-11 1.23682e-12 -1.45798e-11 -9.67397e-13 -1.38415e-11 -2.44456e-12 -1.29062e-11 -3.34109e-12 -1.18766e-11 -3.76269e-12 -1.08182e-11 -3.89319e-12 -9.76556e-12 -3.87418e-12 -8.73732e-12 -3.78197e-12 -7.74259e-12 -3.65106e-12 -6.78312e-12 -3.50196e-12 -5.86417e-12 -3.33851e-12 -4.98752e-12 -3.16143e-12 -4.15008e-12 -2.98112e-12 -3.35485e-12 -2.79892e-12 -2.60636e-12 -2.61065e-12 -1.90372e-12 -2.41993e-12 -1.24974e-12 -2.22877e-12 -6.45278e-13 -2.03769e-12 -8.94296e-14 -1.84933e-12 4.182e-13 -1.667e-12 8.76964e-13 -1.49254e-12 1.28659e-12 -1.32577e-12 1.64737e-12 -1.16522e-12 1.96081e-12 -1.01193e-12 2.22941e-12 -8.65916e-13 2.45588e-12 -7.26178e-13 2.64312e-12 -5.93892e-13 2.79463e-12 -4.69261e-13 2.9141e-12 -3.51952e-13 3.00482e-12 -2.41066e-13 3.06874e-12 -1.36319e-13 3.10658e-12 -3.76425e-14 3.11665e-12 5.60699e-14 3.09799e-12 1.40893e-13 3.05363e-12 2.13994e-13 2.98335e-12 2.80415e-13 2.88735e-12 3.38883e-13 2.7672e-12 3.86182e-13 2.62242e-12 4.25962e-13 2.45892e-12 4.59354e-13 2.27842e-12 4.86795e-13 2.08002e-12 5.10445e-13 1.86788e-12 5.30187e-13 1.64322e-12 5.45586e-13 1.40884e-12 5.61157e-13 1.16796e-12 5.76865e-13 9.20099e-13 5.85858e-13 6.67373e-13 5.94479e-13 4.10819e-13 6.11017e-13 1.51536e-13 6.27811e-13 -1.065e-13 6.38594e-13 -3.59515e-13 6.44017e-13 -6.03603e-13 6.45392e-13 -8.37252e-13 6.42787e-13 -1.05932e-12 6.34146e-13 -1.27186e-12 6.22365e-13 -1.47814e-12 6.08781e-13 -1.6774e-12 5.90997e-13 -1.86686e-12 5.70276e-13 -2.04585e-12 5.48423e-13 -2.21515e-12 5.21505e-13 -2.37244e-12 4.83828e-13 -2.51211e-12 4.3338e-13 -2.63051e-12 3.74091e-13 -2.72848e-12 3.11448e-13 -2.80621e-12 2.46049e-13 -2.85916e-12 1.76804e-13 -2.88205e-12 1.04054e-13 -2.87191e-12 3.13078e-14 -2.82411e-12 -4.76745e-14 -2.739e-12 -1.39537e-13 -2.61906e-12 -2.43023e-13 -2.46317e-12 -3.57227e-13 -2.26863e-12 -4.80995e-13 -2.03799e-12 -6.1015e-13 -1.77203e-12 -7.44143e-13 -1.46738e-12 -8.88623e-13 -1.1213e-12 -1.0446e-12 -7.29963e-13 -1.2088e-12 -2.91839e-13 -1.38217e-12 1.91308e-13 -1.5594e-12 7.19655e-13 -1.73455e-12 1.2953e-12 -1.91429e-12 1.91783e-12 -2.10777e-12 2.58761e-12 -2.31391e-12 3.30647e-12 -2.52522e-12 4.07267e-12 -2.72764e-12 4.88607e-12 -2.91311e-12 5.74555e-12 -3.08546e-12 6.65391e-12 -3.2584e-12 7.61073e-12 -3.44318e-12 8.60879e-12 -3.62239e-12 9.62555e-12 -3.75977e-12 1.06559e-11 -3.85058e-12 1.17054e-11 -3.83618e-12 1.27248e-11 -3.71385e-12 1.36583e-11 -3.33161e-12 1.44373e-11 -2.52497e-12 1.48874e-11 -9.84459e-13 1.25101e-12 1.48155e-11 -1.5084e-11 1.28707e-12 -1.4663e-11 -1.38817e-12 -1.38832e-11 -3.2242e-12 -1.29048e-11 -4.31923e-12 -1.18353e-11 -4.83205e-12 -1.0741e-11 -4.98739e-12 -9.65686e-12 -4.95822e-12 -8.60063e-12 -4.8382e-12 -7.5774e-12 -4.67435e-12 -6.59264e-12 -4.48684e-12 -5.64957e-12 -4.28172e-12 -4.74603e-12 -4.06512e-12 -3.88416e-12 -3.84312e-12 -3.06856e-12 -3.61459e-12 -2.30018e-12 -3.37906e-12 -1.58081e-12 -3.13927e-12 -9.12555e-13 -2.89697e-12 -2.95139e-13 -2.65503e-12 2.71665e-13 -2.41608e-12 7.86731e-13 -2.18204e-12 1.24946e-12 -1.95531e-12 1.66119e-12 -1.73762e-12 2.02205e-12 -1.52627e-12 2.33429e-12 -1.32442e-12 2.60201e-12 -1.1339e-12 2.8261e-12 -9.50516e-13 3.00797e-12 -7.75933e-13 3.15112e-12 -6.12473e-13 3.25853e-12 -4.59294e-13 3.33354e-12 -3.15873e-13 3.37904e-12 -1.8149e-13 3.39605e-12 -5.42242e-14 3.38604e-12 6.65973e-14 3.35131e-12 1.76184e-13 3.29053e-12 2.75361e-13 3.20596e-12 3.65567e-13 3.09891e-12 4.46482e-13 2.96784e-12 5.17765e-13 2.81474e-12 5.79512e-13 2.63975e-12 6.34728e-13 2.44488e-12 6.82012e-13 2.23407e-12 7.21569e-13 2.0078e-12 7.56751e-13 1.76468e-12 7.89022e-13 1.50969e-12 8.16488e-13 1.2467e-12 8.40243e-13 9.744e-13 8.58602e-13 6.94779e-13 8.74602e-13 4.13411e-13 8.92948e-13 1.34385e-13 9.07466e-13 -1.38802e-13 9.12476e-13 -4.04391e-13 9.10365e-13 -6.62447e-13 9.04264e-13 -9.11778e-13 8.92982e-13 -1.15471e-12 8.77967e-13 -1.3955e-12 8.64063e-13 -1.63103e-12 8.45185e-13 -1.8557e-12 8.16497e-13 -2.06802e-12 7.83371e-13 -2.26789e-12 7.48989e-13 -2.45423e-12 7.08459e-13 -2.62409e-12 6.54237e-13 -2.77455e-12 5.84343e-13 -2.9053e-12 5.05326e-13 -3.01606e-12 4.22697e-13 -3.1035e-12 3.34006e-13 -3.16363e-12 2.37456e-13 -3.19419e-12 1.35146e-13 -3.18924e-12 2.68467e-14 -3.14777e-12 -8.87048e-14 -3.07337e-12 -2.1358e-13 -2.96478e-12 -3.51344e-13 -2.81627e-12 -5.05536e-13 -2.62949e-12 -6.6764e-13 -2.4067e-12 -8.32835e-13 -2.14215e-12 -1.00858e-12 -1.83012e-12 -1.20047e-12 -1.47447e-12 -1.39998e-12 -1.07667e-12 -1.60624e-12 -6.35954e-13 -1.82248e-12 -1.50199e-13 -2.04478e-12 3.84454e-13 -2.26898e-12 9.6978e-13 -2.49962e-12 1.60485e-12 -2.74305e-12 2.28875e-12 -2.9981e-12 3.01978e-12 -3.25642e-12 3.79902e-12 -3.50678e-12 4.63035e-12 -3.74405e-12 5.51733e-12 -3.97191e-12 6.46256e-12 -4.20322e-12 7.45955e-12 -4.44012e-12 8.48953e-12 -4.65273e-12 9.54593e-12 -4.81679e-12 1.06054e-11 -4.91068e-12 1.16942e-11 -4.92527e-12 1.27703e-11 -4.79001e-12 1.37625e-11 -4.32387e-12 1.45376e-11 -3.30034e-12 1.49606e-11 -1.40797e-12 1.30575e-12 1.49054e-11 -1.51025e-11 1.33305e-12 -1.4656e-11 -1.83451e-12 -1.38417e-11 -4.03835e-12 -1.28238e-11 -5.33702e-12 -1.17168e-11 -5.93902e-12 -1.05891e-11 -6.11505e-12 -9.47604e-12 -6.07134e-12 -8.39101e-12 -5.92331e-12 -7.34028e-12 -5.72517e-12 -6.33002e-12 -5.49721e-12 -5.36084e-12 -5.25097e-12 -4.43465e-12 -4.99136e-12 -3.55633e-12 -4.72145e-12 -2.72877e-12 -4.44213e-12 -1.95235e-12 -4.15544e-12 -1.22923e-12 -3.86236e-12 -5.59502e-13 -3.56669e-12 5.69355e-14 -3.27151e-12 6.20048e-13 -2.9793e-12 1.12957e-12 -2.69175e-12 1.58556e-12 -2.41157e-12 1.98983e-12 -2.14224e-12 2.34484e-12 -1.88169e-12 2.65062e-12 -1.63062e-12 2.91096e-12 -1.39463e-12 3.1291e-12 -1.16899e-12 3.30532e-12 -9.52381e-13 3.44317e-12 -7.50426e-13 3.54539e-12 -5.615e-13 3.61192e-12 -3.82275e-13 3.6466e-12 -2.15937e-13 3.65177e-12 -5.90949e-14 3.62618e-12 9.25456e-14 3.5756e-12 2.27164e-13 3.5032e-12 3.48171e-13 3.4044e-12 4.64778e-13 3.28218e-12 5.69091e-13 3.13608e-12 6.64203e-13 2.9652e-12 7.5068e-13 2.77292e-12 8.27238e-13 2.56132e-12 8.93785e-13 2.33373e-12 9.49297e-13 2.09103e-12 9.99577e-13 1.83452e-12 1.04566e-12 1.56671e-12 1.08447e-12 1.2897e-12 1.11748e-12 1.00566e-12 1.14292e-12 7.17924e-13 1.16268e-12 4.3003e-13 1.18123e-12 1.44141e-13 1.19379e-12 -1.39191e-13 1.19628e-12 -4.19605e-13 1.19128e-12 -6.96142e-13 1.18132e-12 -9.69822e-13 1.16718e-12 -1.24191e-12 1.15056e-12 -1.50743e-12 1.13006e-12 -1.76057e-12 1.09876e-12 -1.99845e-12 1.05476e-12 -2.22132e-12 1.00659e-12 -2.42977e-12 9.57759e-13 -2.62125e-12 9.00238e-13 -2.79208e-12 8.25351e-13 -2.94274e-12 7.35277e-13 -3.07723e-12 6.401e-13 -3.19582e-12 5.41568e-13 -3.29374e-12 4.32201e-13 -3.36587e-12 3.0984e-13 -3.40841e-12 1.77899e-13 -3.42015e-12 3.87571e-14 -3.40069e-12 -1.08056e-13 -3.34688e-12 -2.67331e-13 -3.25259e-12 -4.45594e-13 -3.11882e-12 -6.39289e-13 -2.94824e-12 -8.38214e-13 -2.73448e-12 -1.04661e-12 -2.46821e-12 -1.27487e-12 -2.15215e-12 -1.51658e-12 -1.79243e-12 -1.75975e-12 -1.3897e-12 -2.00901e-12 -9.44191e-13 -2.26804e-12 -4.56698e-13 -2.53235e-12 7.71367e-14 -2.80293e-12 6.63194e-13 -3.08584e-12 1.30194e-12 -3.38196e-12 1.98998e-12 -3.68624e-12 2.72484e-12 -3.99125e-12 3.5102e-12 -4.29201e-12 4.35333e-12 -4.587e-12 5.25919e-12 -4.87772e-12 6.2226e-12 -5.16683e-12 7.23301e-12 -5.45101e-12 8.28643e-12 -5.70674e-12 9.37396e-12 -5.90482e-12 1.04944e-11 -6.0314e-12 1.16161e-11 -6.04697e-12 1.27082e-11 -5.8823e-12 1.37315e-11 -5.34756e-12 1.45413e-11 -4.1108e-12 1.49417e-11 -1.80901e-12 1.41891e-12 1.48283e-11 -1.51463e-11 1.39525e-12 -1.46623e-11 -2.31834e-12 -1.38153e-11 -4.88538e-12 -1.27531e-11 -6.39918e-12 -1.16014e-11 -7.09081e-12 -1.04325e-11 -7.28406e-12 -9.27964e-12 -7.22432e-12 -8.15497e-12 -7.04809e-12 -7.06839e-12 -6.81184e-12 -6.02454e-12 -6.54113e-12 -5.0273e-12 -6.24824e-12 -4.08161e-12 -5.93705e-12 -3.19121e-12 -5.61182e-12 -2.35693e-12 -5.27639e-12 -1.58034e-12 -4.93202e-12 -8.60513e-13 -4.58225e-12 -1.97226e-13 -4.2301e-12 4.10373e-13 -3.87931e-12 9.63481e-13 -3.53269e-12 1.46312e-12 -3.19174e-12 1.90953e-12 -2.85839e-12 2.30297e-12 -2.53612e-12 2.64731e-12 -2.22647e-12 2.94557e-12 -1.92929e-12 3.19612e-12 -1.64555e-12 3.4031e-12 -1.37626e-12 3.57065e-12 -1.12014e-12 3.69998e-12 -8.79894e-13 3.79252e-12 -6.54133e-13 3.84929e-12 -4.39096e-13 3.87236e-12 -2.39035e-13 3.86408e-12 -5.08346e-14 3.82816e-12 1.28462e-13 3.76398e-12 2.9136e-13 3.67207e-12 4.40111e-13 3.5567e-12 5.80185e-13 3.41791e-12 7.07926e-13 3.25644e-12 8.25682e-13 3.07411e-12 9.32989e-13 2.8707e-12 1.03056e-12 2.6487e-12 1.11565e-12 2.41056e-12 1.18724e-12 2.15777e-12 1.25215e-12 1.89224e-12 1.31097e-12 1.61601e-12 1.36047e-12 1.33188e-12 1.4014e-12 1.04213e-12 1.43247e-12 7.48459e-13 1.45616e-12 4.53562e-13 1.47595e-12 1.5896e-13 1.48822e-12 -1.35417e-13 1.49048e-12 -4.29386e-13 1.48505e-12 -7.22192e-13 1.47391e-12 -1.01321e-12 1.45797e-12 -1.30023e-12 1.43733e-12 -1.57665e-12 1.40622e-12 -1.83888e-12 1.36073e-12 -2.08664e-12 1.30229e-12 -2.32035e-12 1.2401e-12 -2.53711e-12 1.17436e-12 -2.7324e-12 1.09542e-12 -2.90682e-12 9.997e-13 -3.06709e-12 8.95494e-13 -3.21624e-12 7.89196e-13 -3.34831e-12 6.73543e-13 -3.45633e-12 5.4007e-13 -3.53795e-12 3.91244e-13 -3.59431e-12 2.33976e-13 -3.62446e-12 6.8583e-14 -3.6215e-12 -1.11349e-13 -3.57923e-12 -3.09912e-13 -3.4987e-12 -5.26387e-13 -3.38231e-12 -7.55884e-13 -3.22364e-12 -9.97049e-13 -3.01255e-12 -1.25787e-12 -2.74976e-12 -1.53789e-12 -2.4448e-12 -1.82187e-12 -2.0976e-12 -2.10738e-12 -1.70416e-12 -2.40297e-12 -1.26691e-12 -2.70579e-12 -7.8558e-13 -3.01412e-12 -2.51754e-13 -3.33706e-12 3.39652e-13 -3.67738e-12 9.86111e-13 -4.02842e-12 1.68299e-12 -4.38303e-12 2.42613e-12 -4.73432e-12 3.21767e-12 -5.08361e-12 4.06788e-12 -5.4375e-12 4.97997e-12 -5.79033e-12 5.95294e-12 -6.14046e-12 6.98333e-12 -6.48199e-12 8.08866e-12 -6.81244e-12 9.2211e-12 -7.03731e-12 1.03514e-11 -7.16162e-12 1.15285e-11 -7.22403e-12 1.26894e-11 -7.04355e-12 1.37589e-11 -6.41768e-12 1.45935e-11 -4.94601e-12 1.50291e-11 -2.24485e-12 1.50221e-12 1.4946e-11 -1.52358e-11 1.46126e-12 -1.47249e-11 -2.82923e-12 -1.38271e-11 -5.78324e-12 -1.2709e-11 -7.51741e-12 -1.15027e-11 -8.29724e-12 -1.02817e-11 -8.5052e-12 -9.07807e-12 -8.42808e-12 -7.90964e-12 -8.21665e-12 -6.78606e-12 -7.93553e-12 -5.70953e-12 -7.61772e-12 -4.68678e-12 -7.27101e-12 -3.72408e-12 -6.89974e-12 -2.82305e-12 -6.51285e-12 -1.98437e-12 -6.11511e-12 -1.20804e-12 -5.70846e-12 -4.93134e-13 -5.29734e-12 1.62314e-13 -4.88582e-12 7.60595e-13 -4.47794e-12 1.3025e-12 -4.07499e-12 1.78953e-12 -3.6792e-12 2.22488e-12 -3.29418e-12 2.61e-12 -2.92166e-12 2.94523e-12 -2.56208e-12 3.23464e-12 -2.21904e-12 3.47881e-12 -1.88999e-12 3.67737e-12 -1.57507e-12 3.83494e-12 -1.27793e-12 3.95435e-12 -9.99553e-13 4.03509e-12 -7.35151e-13 4.08019e-12 -4.84526e-13 4.09157e-12 -2.50803e-13 4.07001e-12 -2.9702e-14 4.01851e-12 1.79533e-13 3.93818e-12 3.71286e-13 3.82792e-12 5.49992e-13 3.69437e-12 7.13394e-13 3.53842e-12 8.63559e-13 3.36169e-12 1.0021e-12 3.16654e-12 1.1278e-12 2.95297e-12 1.24375e-12 2.72277e-12 1.34541e-12 2.47702e-12 1.4325e-12 2.21673e-12 1.51188e-12 1.94479e-12 1.58233e-12 1.66249e-12 1.64216e-12 1.37144e-12 1.69182e-12 1.07392e-12 1.72933e-12 7.71623e-13 1.75778e-12 4.67261e-13 1.77962e-12 1.63164e-13 1.79159e-12 -1.39919e-13 1.79282e-12 -4.42243e-13 1.78662e-12 -7.43695e-13 1.7746e-12 -1.04212e-12 1.75563e-12 -1.33289e-12 1.72735e-12 -1.61209e-12 1.6847e-12 -1.87729e-12 1.62525e-12 -2.13232e-12 1.55672e-12 -2.37666e-12 1.48392e-12 -2.6037e-12 1.40096e-12 -2.81124e-12 1.30258e-12 -3.00571e-12 1.19383e-12 -3.19167e-12 1.08111e-12 -3.36261e-12 9.59746e-13 -3.5082e-12 8.18649e-13 -3.62518e-12 6.56478e-13 -3.7185e-12 4.83916e-13 -3.79018e-12 3.04944e-13 -3.8321e-12 1.09788e-13 -3.83468e-12 -1.09435e-13 -3.79906e-12 -3.46098e-13 -3.72983e-12 -5.96077e-13 -3.62401e-12 -8.62051e-13 -3.47068e-12 -1.15066e-12 -3.26796e-12 -1.46091e-12 -3.02713e-12 -1.77915e-12 -2.74882e-12 -2.10079e-12 -2.42391e-12 -2.43306e-12 -2.05173e-12 -2.77602e-12 -1.63397e-12 -3.12436e-12 -1.16212e-12 -3.48659e-12 -6.26535e-13 -3.87299e-12 -2.73117e-14 -4.27669e-12 6.29308e-13 -4.68497e-12 1.3354e-12 -5.08908e-12 2.08775e-12 -5.48685e-12 2.89278e-12 -5.88914e-12 3.7561e-12 -6.30161e-12 4.68677e-12 -6.72189e-12 5.68771e-12 -7.14215e-12 6.75101e-12 -7.54571e-12 7.87103e-12 -7.9325e-12 9.03941e-12 -8.20553e-12 1.02171e-11 -8.33926e-12 1.14343e-11 -8.44144e-12 1.26431e-11 -8.25297e-12 1.37595e-11 -7.53451e-12 1.46473e-11 -5.83395e-12 1.51648e-11 -2.76213e-12 1.53927e-12 1.51281e-11 -1.5341e-11 1.50664e-12 -1.48107e-11 -3.35965e-12 -1.38422e-11 -6.75178e-12 -1.26572e-11 -8.70257e-12 -1.13877e-11 -9.56699e-12 -1.01053e-11 -9.78779e-12 -8.84774e-12 -9.6858e-12 -7.63443e-12 -9.43011e-12 -6.47134e-12 -9.09873e-12 -5.36597e-12 -8.72316e-12 -4.32392e-12 -8.31311e-12 -3.34612e-12 -7.87758e-12 -2.43453e-12 -7.42453e-12 -1.59059e-12 -6.95919e-12 -8.12773e-13 -6.4865e-12 -9.96321e-14 -6.01078e-12 5.51293e-13 -5.53712e-12 1.14214e-12 -5.06921e-12 1.6757e-12 -4.60901e-12 2.15362e-12 -4.15756e-12 2.57909e-12 -3.72008e-12 2.95613e-12 -3.29908e-12 3.28422e-12 -2.89052e-12 3.56252e-12 -2.49765e-12 3.79669e-12 -2.12445e-12 3.98638e-12 -1.76506e-12 4.1318e-12 -1.42369e-12 4.23778e-12 -1.10594e-12 4.30484e-12 -8.02726e-13 4.33488e-12 -5.15169e-13 4.33136e-12 -2.47962e-13 4.29482e-12 6.12145e-15 4.22605e-12 2.47581e-13 4.12885e-12 4.67815e-13 4.00187e-12 6.7636e-13 3.85186e-12 8.62845e-13 3.68162e-12 1.03329e-12 3.49094e-12 1.19229e-12 3.28109e-12 1.33715e-12 3.05408e-12 1.47024e-12 2.81131e-12 1.58761e-12 2.55323e-12 1.68997e-12 2.28277e-12 1.7817e-12 2.00246e-12 1.86196e-12 1.71284e-12 1.93109e-12 1.41454e-12 1.98942e-12 1.10831e-12 2.03485e-12 7.95845e-13 2.06953e-12 4.80756e-13 2.09397e-12 1.65838e-13 2.10578e-12 -1.47445e-13 2.10537e-12 -4.5758e-13 2.09603e-12 -7.63493e-13 2.07979e-12 -1.06329e-12 2.05472e-12 -1.35286e-12 2.01624e-12 -1.63113e-12 1.96232e-12 -1.90421e-12 1.89772e-12 -2.17458e-12 1.82654e-12 -2.43675e-12 1.74559e-12 -2.68338e-12 1.64713e-12 -2.91447e-12 1.53323e-12 -3.13452e-12 1.41343e-12 -3.34222e-12 1.28829e-12 -3.5284e-12 1.14531e-12 -3.68447e-12 9.74008e-13 -3.81183e-12 7.83048e-13 -3.91796e-12 5.89185e-13 -4.00174e-12 3.87865e-13 -4.05173e-12 1.58948e-13 -4.06178e-12 -1.00125e-13 -4.03861e-12 -3.69898e-13 -3.98655e-12 -6.48656e-13 -3.89742e-12 -9.51605e-13 -3.76274e-12 -1.28575e-12 -3.58872e-12 -1.63541e-12 -3.38005e-12 -1.98845e-12 -3.12714e-12 -2.35453e-12 -2.82236e-12 -2.73883e-12 -2.46855e-12 -3.13086e-12 -2.06245e-12 -3.53139e-12 -1.59265e-12 -3.95707e-12 -1.0561e-12 -4.40992e-12 -4.57031e-13 -4.87593e-12 1.99017e-13 -5.34114e-12 9.07002e-13 -5.79738e-12 1.66682e-12 -6.2473e-12 2.48384e-12 -6.70709e-12 3.38077e-12 -7.19961e-12 4.3668e-12 -7.70886e-12 5.42545e-12 -8.20141e-12 6.54029e-12 -8.66078e-12 7.66173e-12 -9.05398e-12 8.82494e-12 -9.36884e-12 1.00187e-11 -9.53338e-12 1.12344e-11 -9.65779e-12 1.24679e-11 -9.487e-12 1.366e-11 -8.72669e-12 1.46009e-11 -6.77456e-12 1.50515e-11 -3.21237e-12 1.65929e-12 1.49316e-11 -1.54076e-11 1.54659e-12 -1.48377e-11 -3.92966e-12 -1.38025e-11 -7.78715e-12 -1.25418e-11 -9.96356e-12 -1.11975e-11 -1.09115e-11 -9.84672e-12 -1.11388e-11 -8.53105e-12 -1.10017e-11 -7.26866e-12 -1.06927e-11 -6.06842e-12 -1.02991e-11 -4.93676e-12 -9.85493e-12 -3.87433e-12 -9.37563e-12 -2.88122e-12 -8.87079e-12 -1.95974e-12 -8.34616e-12 -1.10944e-12 -7.8097e-12 -3.27207e-13 -7.26903e-12 3.88808e-13 -6.72716e-12 1.0395e-12 -6.18823e-12 1.6269e-12 -5.65708e-12 2.15492e-12 -5.13749e-12 2.62668e-12 -4.6298e-12 3.04117e-12 -4.13504e-12 3.40192e-12 -3.66026e-12 3.71572e-12 -3.20473e-12 3.97977e-12 -2.7621e-12 4.19316e-12 -2.33824e-12 4.36321e-12 -1.93555e-12 4.49065e-12 -1.55162e-12 4.57297e-12 -1.18883e-12 4.61616e-12 -8.4658e-13 4.62562e-12 -5.25358e-13 4.5972e-12 -2.2031e-13 4.53696e-12 6.55885e-14 4.44935e-12 3.34452e-13 4.33224e-12 5.84242e-13 4.19424e-12 8.1375e-13 4.0314e-12 1.02514e-12 3.8455e-12 1.21868e-12 3.63982e-12 1.3975e-12 3.41624e-12 1.56025e-12 3.17687e-12 1.70912e-12 2.92006e-12 1.84394e-12 2.6479e-12 1.96165e-12 2.36454e-12 2.06461e-12 2.0716e-12 2.15447e-12 1.77033e-12 2.23198e-12 1.4614e-12 2.298e-12 1.1451e-12 2.35083e-12 8.23696e-13 2.39066e-12 5.0009e-13 2.41733e-12 1.75751e-13 2.42989e-12 -1.48415e-13 2.42933e-12 -4.70668e-13 2.41808e-12 -7.88671e-13 2.3976e-12 -1.10015e-12 2.36599e-12 -1.40433e-12 2.32019e-12 -1.70252e-12 2.26026e-12 -1.99623e-12 2.19114e-12 -2.28438e-12 2.11439e-12 -2.56223e-12 2.0231e-12 -2.82562e-12 1.91015e-12 -3.07456e-12 1.78175e-12 -3.30999e-12 1.64837e-12 -3.52797e-12 1.5057e-12 -3.72114e-12 1.33784e-12 -3.88621e-12 1.13838e-12 -4.02782e-12 9.23907e-13 -4.15034e-12 7.10959e-13 -4.24819e-12 4.84998e-13 -4.31189e-12 2.21959e-13 -4.34273e-12 -6.99223e-14 -4.34652e-12 -3.66697e-13 -4.31925e-12 -6.76485e-13 -4.25143e-12 -1.01997e-12 -4.14357e-12 -1.39417e-12 -4.00006e-12 -1.77957e-12 -3.81487e-12 -2.1744e-12 -3.57948e-12 -2.59082e-12 -3.29335e-12 -3.02596e-12 -2.95509e-12 -3.4701e-12 -2.55587e-12 -3.93148e-12 -2.09064e-12 -4.42297e-12 -1.56346e-12 -4.93759e-12 -9.77711e-13 -5.46209e-12 -3.36419e-13 -5.98294e-12 3.60415e-13 -6.49493e-12 1.11493e-12 -7.00276e-12 1.9401e-12 -7.53331e-12 2.84904e-12 -8.10951e-12 3.855e-12 -8.7155e-12 4.93234e-12 -9.27916e-12 6.04522e-12 -9.77394e-12 7.17697e-12 -1.01861e-11 8.34927e-12 -1.05418e-11 9.60199e-12 -1.07869e-11 1.08936e-11 -1.095e-11 1.22397e-11 -1.08333e-11 1.3471e-11 -9.95777e-12 1.43948e-11 -7.69807e-12 1.48567e-11 -3.67412e-12 1.78794e-12 1.47277e-11 -1.54007e-11 1.60079e-12 -1.47669e-11 -4.56373e-12 -1.36742e-11 -8.88005e-12 -1.23371e-11 -1.13009e-11 -1.09145e-11 -1.23343e-11 -9.49621e-12 -1.25574e-11 -8.12428e-12 -1.23738e-11 -6.81665e-12 -1.20005e-11 -5.58198e-12 -1.15339e-11 -4.42442e-12 -1.10126e-11 -3.3422e-12 -1.0458e-11 -2.33542e-12 -9.87771e-12 -1.40647e-12 -9.27529e-12 -5.50951e-13 -8.66547e-12 2.34998e-13 -8.05528e-12 9.52405e-13 -7.44494e-12 1.60154e-12 -6.83778e-12 2.18472e-12 -6.24071e-12 2.70476e-12 -5.65802e-12 3.16519e-12 -5.09075e-12 3.56896e-12 -4.53933e-12 3.91499e-12 -4.00683e-12 4.20685e-12 -3.49712e-12 4.45259e-12 -3.00837e-12 4.65049e-12 -2.53668e-12 4.7985e-12 -2.08413e-12 4.89984e-12 -1.65355e-12 4.95631e-12 -1.24592e-12 4.97036e-12 -8.6128e-13 4.94489e-12 -5.00549e-13 4.88668e-12 -1.62737e-13 4.79746e-12 1.54201e-13 4.6852e-12 4.46157e-13 4.55093e-12 7.18009e-13 4.39481e-12 9.69412e-13 4.21917e-12 1.20035e-12 4.02332e-12 1.41413e-12 3.80735e-12 1.61308e-12 3.57272e-12 1.79451e-12 3.32077e-12 1.96074e-12 3.05128e-12 2.11315e-12 2.76455e-12 2.24817e-12 2.46431e-12 2.36475e-12 2.15451e-12 2.46427e-12 1.83761e-12 2.54898e-12 1.51407e-12 2.62173e-12 1.18504e-12 2.68011e-12 8.5257e-13 2.72344e-12 5.18264e-13 2.75198e-12 1.83094e-13 2.76542e-12 -1.52846e-13 2.76563e-12 -4.88427e-13 2.75401e-12 -8.21485e-13 2.73095e-12 -1.15074e-12 2.69547e-12 -1.47641e-12 2.646e-12 -1.79856e-12 2.58246e-12 -2.11456e-12 2.50709e-12 -2.42082e-12 2.42051e-12 -2.71505e-12 2.3171e-12 -2.9969e-12 2.19168e-12 -3.26476e-12 2.04922e-12 -3.51327e-12 1.89643e-12 -3.73674e-12 1.72868e-12 -3.93516e-12 1.53574e-12 -4.11532e-12 1.31803e-12 -4.27817e-12 1.08628e-12 -4.41525e-12 8.47597e-13 -4.52271e-12 5.92022e-13 -4.605e-12 3.03802e-13 -4.66526e-12 -1.01773e-14 -4.69507e-12 -3.37469e-13 -4.68715e-12 -6.85067e-13 -4.64261e-12 -1.06522e-12 -4.56426e-12 -1.47327e-12 -4.44742e-12 -1.89716e-12 -4.28484e-12 -2.33772e-12 -4.0761e-12 -2.80031e-12 -3.81876e-12 -3.28403e-12 -3.49981e-12 -3.78976e-12 -3.11541e-12 -4.31652e-12 -2.66842e-12 -4.87057e-12 -2.16195e-12 -5.44464e-12 -1.59878e-12 -6.02591e-12 -9.76212e-13 -6.60626e-12 -2.8586e-13 -7.18612e-12 4.86764e-13 -7.77622e-12 1.34971e-12 -8.39695e-12 2.29481e-12 -9.05507e-12 3.30544e-12 -9.72642e-12 4.3515e-12 -1.03255e-11 5.45189e-12 -1.08748e-11 6.61965e-12 -1.13546e-11 7.83952e-12 -1.17625e-11 9.16997e-12 -1.2118e-11 1.05818e-11 -1.23621e-11 1.19682e-11 -1.22195e-11 1.322e-11 -1.12092e-11 1.41877e-11 -8.6658e-12 1.47817e-11 -4.26845e-12 1.82777e-12 1.47415e-11 -1.53241e-11 1.63992e-12 -1.46422e-11 -5.24587e-12 -1.34878e-11 -1.00348e-11 -1.20788e-11 -1.27102e-11 -1.05867e-11 -1.38268e-11 -9.10662e-12 -1.40377e-11 -7.68205e-12 -1.37987e-11 -6.33229e-12 -1.33505e-11 -5.06649e-12 -1.27999e-11 -3.88503e-12 -1.21942e-11 -2.78535e-12 -1.15578e-11 -1.77046e-12 -1.08928e-11 -8.37106e-13 -1.02088e-11 2.13467e-14 -9.52415e-12 8.061e-13 -8.84032e-12 1.51568e-12 -8.15484e-12 2.15423e-12 -7.47669e-12 2.72684e-12 -6.81374e-12 3.2353e-12 -6.16694e-12 3.68004e-12 -5.53599e-12 4.06586e-12 -4.92568e-12 4.39683e-12 -4.33837e-12 4.67224e-12 -3.77311e-12 4.89379e-12 -3.2305e-12 5.06555e-12 -2.70903e-12 5.19117e-12 -2.21033e-12 5.27345e-12 -1.73639e-12 5.31243e-12 -1.28544e-12 5.31337e-12 -8.6272e-13 5.27524e-12 -4.62872e-13 5.20385e-12 -9.1759e-14 5.10522e-12 2.52458e-13 4.97518e-12 5.75852e-13 4.8219e-12 8.70957e-13 4.64765e-12 1.14333e-12 4.44986e-12 1.3978e-12 4.22965e-12 1.63399e-12 3.99183e-12 1.85056e-12 3.73905e-12 2.04699e-12 3.46954e-12 2.23005e-12 3.18366e-12 2.39894e-12 2.88325e-12 2.54862e-12 2.57036e-12 2.67782e-12 2.24778e-12 2.78717e-12 1.91612e-12 2.88106e-12 1.57624e-12 2.96211e-12 1.23049e-12 3.02642e-12 8.81942e-13 3.07256e-12 5.33272e-13 3.10123e-12 1.8483e-13 3.11442e-12 -1.64244e-13 3.11522e-12 -5.13645e-13 3.10387e-12 -8.61012e-13 3.0787e-12 -1.20497e-12 3.03972e-12 -1.54593e-12 2.98714e-12 -1.88293e-12 2.91952e-12 -2.21333e-12 2.83743e-12 -2.53458e-12 2.74161e-12 -2.84512e-12 2.62739e-12 -3.14294e-12 2.4892e-12 -3.42508e-12 2.33103e-12 -3.68862e-12 2.15963e-12 -3.93199e-12 1.97174e-12 -4.15559e-12 1.75907e-12 -4.35918e-12 1.52143e-12 -4.54071e-12 1.26768e-12 -4.6958e-12 1.00258e-12 -4.82275e-12 7.18809e-13 -4.92715e-12 4.07921e-13 -5.0077e-12 6.99264e-14 -5.05601e-12 -2.89777e-13 -5.06922e-12 -6.72614e-13 -5.04813e-12 -1.0871e-12 -4.9909e-12 -1.53123e-12 -4.89601e-12 -1.99266e-12 -4.76105e-12 -2.47314e-12 -4.58247e-12 -2.97922e-12 -4.3538e-12 -3.51296e-12 -4.06919e-12 -4.07464e-12 -3.71887e-12 -4.66718e-12 -3.30101e-12 -5.28888e-12 -2.81673e-12 -5.9295e-12 -2.26551e-12 -6.57778e-12 -1.64028e-12 -7.23212e-12 -9.31752e-13 -7.89514e-12 -1.34289e-13 -8.57394e-12 7.44258e-13 -9.2755e-12 1.68934e-12 -1e-11 2.67915e-12 -1.07162e-11 3.72231e-12 -1.13689e-11 4.81735e-12 -1.19704e-11 6.01285e-12 -1.25508e-11 7.32132e-12 -1.30715e-11 8.73968e-12 -1.35364e-11 1.02046e-11 -1.38266e-11 1.16345e-11 -1.3649e-11 1.29582e-11 -1.25328e-11 1.41038e-11 -9.8117e-12 1.48242e-11 -4.98926e-12 1.79668e-12 1.48552e-11 -1.51731e-11 1.63056e-12 -1.44646e-11 -5.95473e-12 -1.3238e-11 -1.12618e-11 -1.17612e-11 -1.41873e-11 -1.0205e-11 -1.53833e-11 -8.66609e-12 -1.55768e-11 -7.19238e-12 -1.52726e-11 -5.80325e-12 -1.47397e-11 -4.50362e-12 -1.40996e-11 -3.29396e-12 -1.3404e-11 -2.17708e-12 -1.26748e-11 -1.15052e-12 -1.19195e-11 -2.06511e-13 -1.1153e-11 6.54084e-13 -1.0385e-11 1.4314e-12 -9.61786e-12 2.13139e-12 -8.85508e-12 2.75903e-12 -8.10458e-12 3.31703e-12 -7.37203e-12 3.8077e-12 -6.65793e-12 4.2348e-12 -5.96346e-12 4.60083e-12 -5.29213e-12 4.90947e-12 -4.64746e-12 5.16412e-12 -4.02823e-12 5.36491e-12 -3.43177e-12 5.51537e-12 -2.85996e-12 5.62256e-12 -2.31796e-12 5.68482e-12 -1.79905e-12 5.70488e-12 -1.30587e-12 5.68521e-12 -8.43354e-13 5.62975e-12 -4.07679e-13 5.54075e-12 -2.9987e-15 5.42106e-12 3.71919e-13 5.2777e-12 7.18963e-13 5.10759e-12 1.04077e-12 4.91102e-12 1.33956e-12 4.69292e-12 1.6155e-12 4.45369e-12 1.87283e-12 4.19623e-12 2.10766e-12 3.92226e-12 2.32069e-12 3.63313e-12 2.51902e-12 3.32992e-12 2.70215e-12 3.01307e-12 2.86561e-12 2.68484e-12 3.00633e-12 2.34631e-12 3.12607e-12 1.99803e-12 3.22979e-12 1.64251e-12 3.31811e-12 1.28259e-12 3.38679e-12 9.21725e-13 3.43385e-12 5.60613e-13 3.46272e-12 1.97448e-13 3.47791e-12 -1.68056e-13 3.481e-12 -5.34654e-13 3.47068e-12 -9.00197e-13 3.44439e-12 -1.26157e-12 3.40116e-12 -1.61719e-12 3.34276e-12 -1.96705e-12 3.26931e-12 -2.30995e-12 3.18021e-12 -2.64249e-12 3.07398e-12 -2.96224e-12 2.94695e-12 -3.27072e-12 2.79749e-12 -3.56867e-12 2.62881e-12 -3.85156e-12 2.44238e-12 -4.1141e-12 2.23423e-12 -4.35594e-12 2.00093e-12 -4.58042e-12 1.74601e-12 -4.78719e-12 1.47457e-12 -4.96885e-12 1.18434e-12 -5.12081e-12 8.70756e-13 -5.24792e-12 5.34848e-13 -5.35283e-12 1.74439e-13 -5.42883e-12 -2.14367e-13 -5.46774e-12 -6.34391e-13 -5.46898e-12 -1.08652e-12 -5.4358e-12 -1.56489e-12 -5.36296e-12 -2.06575e-12 -5.2438e-12 -2.59229e-12 -5.07514e-12 -3.14771e-12 -4.8566e-12 -3.73129e-12 -4.58354e-12 -4.34758e-12 -4.25082e-12 -4.99998e-12 -3.85575e-12 -5.68422e-12 -3.39473e-12 -6.39092e-12 -2.86162e-12 -7.11127e-12 -2.25196e-12 -7.84198e-12 -1.56239e-12 -8.58462e-12 -7.91257e-13 -9.34469e-12 6.26899e-14 -1.01289e-11 9.78514e-13 -1.09154e-11 1.97203e-12 -1.17096e-11 3.04127e-12 -1.24383e-11 4.17717e-12 -1.31066e-11 5.42935e-12 -1.38032e-11 6.78215e-12 -1.44241e-11 8.23967e-12 -1.49934e-11 9.76656e-12 -1.5353e-11 1.13026e-11 -1.51849e-11 1.27437e-11 -1.39741e-11 1.39964e-11 -1.10648e-11 1.4798e-11 -5.79095e-12 1.77621e-12 1.48186e-11 -1.49257e-11 1.60646e-12 -1.41652e-11 -6.71558e-12 -1.2876e-11 -1.25513e-11 -1.13271e-11 -1.57365e-11 -9.69926e-12 -1.70114e-11 -8.09698e-12 -1.71793e-11 -6.56957e-12 -1.68001e-11 -5.1348e-12 -1.61746e-11 -3.80091e-12 -1.54337e-11 -2.56837e-12 -1.46367e-11 -1.43364e-12 -1.38097e-11 -3.91485e-13 -1.29618e-11 5.59502e-13 -1.21042e-11 1.42048e-12 -1.12461e-11 2.19518e-12 -1.03927e-11 2.89064e-12 -9.55066e-12 3.51037e-12 -8.72441e-12 4.05482e-12 -7.91657e-12 4.52713e-12 -7.13034e-12 4.9341e-12 -6.37054e-12 5.27861e-12 -5.6368e-12 5.56001e-12 -4.92904e-12 5.78164e-12 -4.25007e-12 5.94935e-12 -3.59972e-12 6.06775e-12 -2.97862e-12 6.13934e-12 -2.38979e-12 6.16648e-12 -1.82643e-12 6.15378e-12 -1.29337e-12 6.10424e-12 -7.93989e-13 6.02209e-12 -3.25699e-13 5.90836e-12 1.10559e-13 5.76492e-12 5.15141e-13 5.59802e-12 8.85574e-13 5.40528e-12 1.23315e-12 5.18719e-12 1.55725e-12 4.94633e-12 1.85592e-12 4.6872e-12 2.13154e-12 4.41095e-12 2.38355e-12 4.11723e-12 2.61418e-12 3.80877e-12 2.82738e-12 3.4881e-12 3.02287e-12 3.15561e-12 3.19827e-12 2.81284e-12 3.34935e-12 2.46089e-12 3.47831e-12 2.09939e-12 3.59158e-12 1.73054e-12 3.6872e-12 1.35715e-12 3.76037e-12 9.79995e-13 3.81113e-12 5.9865e-13 3.84413e-12 2.13799e-13 3.86279e-12 -1.72903e-13 3.8677e-12 -5.60449e-13 3.85821e-12 -9.45093e-13 3.829e-12 -1.32475e-12 3.78079e-12 -1.69852e-12 3.71649e-12 -2.06515e-12 3.63591e-12 -2.42281e-12 3.53785e-12 -2.76894e-12 3.4201e-12 -3.10283e-12 3.28087e-12 -3.42741e-12 3.12212e-12 -3.74393e-12 2.94541e-12 -4.04681e-12 2.74538e-12 -4.32912e-12 2.51671e-12 -4.59053e-12 2.26254e-12 -4.83595e-12 1.99165e-12 -5.06562e-12 1.70445e-12 -5.27217e-12 1.39105e-12 -5.44946e-12 1.04807e-12 -5.59909e-12 6.84353e-13 -5.72793e-12 3.02979e-13 -5.83172e-12 -1.10996e-13 -5.89901e-12 -5.67526e-13 -5.92623e-12 -1.05963e-12 -5.91813e-12 -1.5731e-12 -5.86902e-12 -2.11473e-12 -5.76982e-12 -2.69114e-12 -5.62056e-12 -3.29653e-12 -5.4208e-12 -3.93065e-12 -5.16562e-12 -4.60254e-12 -4.85164e-12 -5.31396e-12 -4.47695e-12 -6.05908e-12 -4.0381e-12 -6.82995e-12 -3.53075e-12 -7.61867e-12 -2.95082e-12 -8.4217e-12 -2.29267e-12 -9.2423e-12 -1.54997e-12 -1.00868e-11 -7.26028e-13 -1.09524e-11 2.01575e-13 -1.18428e-11 1.21573e-12 -1.27238e-11 2.33102e-12 -1.35538e-11 3.53665e-12 -1.43122e-11 4.83136e-12 -1.50975e-11 6.21862e-12 -1.58107e-11 7.70541e-12 -1.64796e-11 9.31398e-12 -1.69614e-11 1.09526e-11 -1.68237e-11 1.24788e-11 -1.55007e-11 1.37448e-11 -1.2331e-11 1.45431e-11 -6.58918e-12 1.74371e-12 1.45755e-11 -1.45783e-11 1.59859e-12 -1.37522e-11 -7.54216e-12 -1.24034e-11 -1.39004e-11 -1.07775e-11 -1.73626e-11 -9.07231e-12 -1.87168e-11 -7.40153e-12 -1.88502e-11 -5.81696e-12 -1.83848e-11 -4.33686e-12 -1.76548e-11 -2.96653e-12 -1.68041e-11 -1.70724e-12 -1.58961e-11 -5.54886e-13 -1.49623e-11 4.97481e-13 -1.40144e-11 1.45105e-12 -1.3058e-11 2.30686e-12 -1.21021e-11 3.07204e-12 -1.11579e-11 3.75214e-12 -1.02308e-11 4.35045e-12 -9.32265e-12 4.86952e-12 -8.43552e-12 5.31453e-12 -7.57521e-12 5.68908e-12 -6.74495e-12 5.99844e-12 -5.94604e-12 6.2451e-12 -5.17561e-12 6.43128e-12 -4.43621e-12 6.56243e-12 -3.73087e-12 6.64402e-12 -3.06025e-12 6.6814e-12 -2.42723e-12 6.67557e-12 -1.82069e-12 6.63242e-12 -1.25032e-12 6.5537e-12 -7.15375e-13 6.44432e-12 -2.16452e-13 6.30561e-12 2.49086e-13 6.13986e-12 6.80656e-13 5.94543e-12 1.07969e-12 5.72817e-12 1.45005e-12 5.49007e-12 1.79495e-12 5.22859e-12 2.11702e-12 4.94607e-12 2.41374e-12 4.64765e-12 2.68177e-12 4.33436e-12 2.92739e-12 4.00753e-12 3.15425e-12 3.66842e-12 3.36214e-12 3.31864e-12 3.54828e-12 2.95912e-12 3.70913e-12 2.58889e-12 3.84879e-12 2.20846e-12 3.97221e-12 1.81992e-12 4.07589e-12 1.42554e-12 4.15486e-12 1.02748e-12 4.20925e-12 6.26422e-13 4.24523e-12 2.21075e-13 4.26818e-12 -1.87674e-13 4.27651e-12 -5.94922e-13 4.26554e-12 -9.98564e-13 4.23277e-12 -1.39791e-12 4.1803e-12 -1.79136e-12 4.11015e-12 -2.17619e-12 4.02096e-12 -2.5503e-12 3.91223e-12 -2.91238e-12 3.78246e-12 -3.2631e-12 3.63189e-12 -3.60601e-12 3.46533e-12 -3.94214e-12 3.28183e-12 -4.26363e-12 3.06713e-12 -4.56392e-12 2.81721e-12 -4.84574e-12 2.54455e-12 -5.11439e-12 2.26045e-12 -5.36691e-12 1.95706e-12 -5.59497e-12 1.61915e-12 -5.79661e-12 1.24969e-12 -5.97602e-12 8.63678e-13 -6.13314e-12 4.59955e-13 -6.25977e-12 1.54823e-14 -6.34877e-12 -4.78652e-13 -6.40509e-12 -1.00334e-12 -6.42622e-12 -1.55186e-12 -6.4024e-12 -2.13833e-12 -6.3295e-12 -2.76375e-12 -6.20806e-12 -3.4177e-12 -6.03323e-12 -4.10532e-12 -5.80081e-12 -4.83496e-12 -5.50994e-12 -5.60494e-12 -5.15819e-12 -6.41097e-12 -4.74239e-12 -7.24579e-12 -4.25896e-12 -8.10198e-12 -3.70432e-12 -8.97606e-12 -3.07496e-12 -9.87135e-12 -2.35393e-12 -1.08077e-11 -1.53478e-12 -1.17716e-11 -6.10771e-13 -1.27671e-11 3.91009e-13 -1.37259e-11 1.51802e-12 -1.46809e-11 2.76386e-12 -1.55578e-11 4.08668e-12 -1.64199e-11 5.54796e-12 -1.72716e-11 7.14889e-12 -1.80806e-11 8.79398e-12 -1.8607e-11 1.04791e-11 -1.85095e-11 1.21455e-11 -1.71675e-11 1.34801e-11 -1.36656e-11 1.42697e-11 -7.37896e-12 1.73818e-12 1.42747e-11 -1.4175e-11 1.5835e-12 -1.32909e-11 -8.42663e-12 -1.18646e-11 -1.53271e-11 -1.01557e-11 -1.90718e-11 -8.37261e-12 -2.05e-11 -6.63548e-12 -2.05874e-11 -4.99479e-12 -2.00255e-11 -3.4695e-12 -1.91802e-11 -2.06841e-12 -1.82054e-11 -7.87666e-13 -1.71771e-11 3.79684e-13 -1.61298e-11 1.43506e-12 -1.507e-11 2.38082e-12 -1.40039e-11 3.22403e-12 -1.29454e-11 3.97083e-12 -1.19048e-11 4.62466e-12 -1.08845e-11 5.18981e-12 -9.88765e-12 5.67444e-12 -8.91993e-12 6.08669e-12 -7.9872e-12 6.43064e-12 -7.08863e-12 6.70779e-12 -6.22292e-12 6.92463e-12 -5.39222e-12 7.08549e-12 -4.59689e-12 7.19137e-12 -3.83662e-12 7.24556e-12 -3.11438e-12 7.24926e-12 -2.43091e-12 7.21281e-12 -1.78426e-12 7.13954e-12 -1.17708e-12 7.03266e-12 -6.08563e-13 6.89535e-12 -7.92373e-14 6.73029e-12 4.14001e-13 6.53946e-12 8.71296e-13 6.32375e-12 1.29516e-12 6.08385e-12 1.68971e-12 5.82324e-12 2.05533e-12 5.54493e-12 2.39517e-12 5.24777e-12 2.71085e-12 4.92979e-12 2.99981e-12 4.59428e-12 3.26307e-12 4.24548e-12 3.50333e-12 3.88591e-12 3.72204e-12 3.51558e-12 3.91897e-12 3.13309e-12 4.09197e-12 2.73985e-12 4.24235e-12 2.33889e-12 4.37349e-12 1.93106e-12 4.48403e-12 1.51555e-12 4.57067e-12 1.09351e-12 4.63162e-12 6.68061e-13 4.67104e-12 2.41062e-13 4.69557e-12 -1.87408e-13 4.7054e-12 -6.16323e-13 4.69492e-12 -1.04409e-12 4.66102e-12 -1.46795e-12 4.60466e-12 -1.88638e-12 4.52909e-12 -2.29463e-12 4.42972e-12 -2.6916e-12 4.3097e-12 -3.07803e-12 4.16937e-12 -3.45404e-12 4.00834e-12 -3.81852e-12 3.83018e-12 -4.16838e-12 3.63199e-12 -4.50335e-12 3.40228e-12 -4.82546e-12 3.13939e-12 -5.13421e-12 2.85326e-12 -5.42486e-12 2.55098e-12 -5.69535e-12 2.22739e-12 -5.94847e-12 1.87213e-12 -6.18282e-12 1.48394e-12 -6.3887e-12 1.06951e-12 -6.55973e-12 6.30976e-13 -6.69919e-12 1.54978e-13 -6.81026e-12 -3.67528e-13 -6.88845e-12 -9.25103e-13 -6.92929e-12 -1.51101e-12 -6.93202e-12 -2.13565e-12 -6.89343e-12 -2.80245e-12 -6.80409e-12 -3.50724e-12 -6.66161e-12 -4.24806e-12 -6.46504e-12 -5.0318e-12 -6.21005e-12 -5.86014e-12 -5.89566e-12 -6.72546e-12 -5.51535e-12 -7.62609e-12 -5.06533e-12 -8.55194e-12 -4.53812e-12 -9.5033e-12 -3.92442e-12 -1.04853e-11 -3.22194e-12 -1.15106e-11 -2.41764e-12 -1.25766e-11 -1.51265e-12 -1.36727e-11 -4.93477e-13 -1.47455e-11 6.23555e-13 -1.5798e-11 1.88441e-12 -1.68185e-11 3.2838e-12 -1.78192e-11 4.80291e-12 -1.87911e-11 6.43369e-12 -1.97121e-11 8.15392e-12 -2.0328e-11 9.92449e-12 -2.02806e-11 1.16697e-11 -1.8913e-11 1.31375e-11 -1.51337e-11 1.39813e-11 -8.22338e-12 1.74788e-12 1.39708e-11 -1.36912e-11 1.52208e-12 -1.27682e-11 -9.35013e-12 -1.12525e-11 -1.68431e-11 -9.45694e-12 -2.08676e-11 -7.59472e-12 -2.23624e-11 -5.7848e-12 -2.23975e-11 -4.08379e-12 -2.17267e-11 -2.51559e-12 -2.07486e-11 -1.07838e-12 -1.96428e-11 2.30162e-13 -1.84859e-11 1.41013e-12 -1.731e-11 2.46758e-12 -1.61277e-11 3.411e-12 -1.49475e-11 4.24457e-12 -1.37791e-11 4.97138e-12 -1.26316e-11 5.60037e-12 -1.15135e-11 6.14019e-12 -1.04274e-11 6.59694e-12 -9.37655e-12 6.9754e-12 -8.36549e-12 7.28525e-12 -7.3983e-12 7.53027e-12 -6.46775e-12 7.71505e-12 -5.57684e-12 7.83964e-12 -4.72135e-12 7.90512e-12 -3.90201e-12 7.91978e-12 -3.12898e-12 7.88766e-12 -2.39876e-12 7.81675e-12 -1.71333e-12 7.70933e-12 -1.06966e-12 7.56878e-12 -4.68029e-13 7.39832e-12 9.11815e-14 7.2011e-12 6.11161e-13 6.97877e-12 1.09354e-12 6.73035e-12 1.54349e-12 6.46287e-12 1.95713e-12 6.18013e-12 2.33807e-12 5.87907e-12 2.69632e-12 5.55804e-12 3.03207e-12 5.21921e-12 3.33892e-12 4.86468e-12 3.61795e-12 4.4959e-12 3.87252e-12 4.11342e-12 4.10493e-12 3.71834e-12 4.31448e-12 3.312e-12 4.49873e-12 2.89704e-12 4.65776e-12 2.47623e-12 4.79478e-12 2.04953e-12 4.91125e-12 1.61635e-12 5.00443e-12 1.17629e-12 5.07232e-12 7.30866e-13 5.11716e-12 2.83345e-13 5.14382e-12 -1.64248e-13 5.15373e-12 -6.11467e-13 5.14285e-12 -1.05874e-12 5.10898e-12 -1.50652e-12 5.05308e-12 -1.94847e-12 4.97163e-12 -2.38543e-12 4.86722e-12 -2.81547e-12 4.74023e-12 -3.23398e-12 4.5883e-12 -3.63976e-12 4.41446e-12 -4.03193e-12 4.22259e-12 -4.4104e-12 4.01057e-12 -4.77422e-12 3.76606e-12 -5.12228e-12 3.48726e-12 -5.45433e-12 3.18498e-12 -5.7695e-12 2.86575e-12 -6.0653e-12 2.52279e-12 -6.34057e-12 2.14707e-12 -6.59412e-12 1.73729e-12 -6.82314e-12 1.29847e-12 -7.02543e-12 8.33317e-13 -7.19684e-12 3.26471e-13 -7.33256e-12 -2.3178e-13 -7.43542e-12 -8.22343e-13 -7.50481e-12 -1.44189e-12 -7.53288e-12 -2.10801e-12 -7.51601e-12 -2.81987e-12 -7.45811e-12 -3.56569e-12 -7.35322e-12 -4.35342e-12 -7.19569e-12 -5.18963e-12 -6.98215e-12 -6.0738e-12 -6.70795e-12 -6.99963e-12 -6.37331e-12 -7.9607e-12 -5.96373e-12 -8.96162e-12 -5.4803e-12 -9.9871e-12 -4.89785e-12 -1.10684e-11 -4.20821e-12 -1.22011e-11 -3.40259e-12 -1.3383e-11 -2.49109e-12 -1.45848e-11 -1.46278e-12 -1.5774e-11 -3.24588e-13 -1.69362e-11 9.38984e-13 -1.80823e-11 2.3351e-12 -1.92159e-11 3.88453e-12 -2.03414e-11 5.56631e-12 -2.13948e-11 7.38986e-12 -2.21522e-11 9.25208e-12 -2.21431e-11 1.10585e-11 -2.07197e-11 1.25315e-11 -1.66073e-11 1.33229e-11 -9.01557e-12 1.76226e-12 1.33079e-11 -1.3045e-11 1.44968e-12 -1.20604e-11 -1.03351e-11 -1.04619e-11 -1.8442e-11 -8.57786e-12 -2.27519e-11 -6.63067e-12 -2.43098e-11 -4.74785e-12 -2.42805e-11 -2.98962e-12 -2.34851e-11 -1.37245e-12 -2.2366e-11 9.99607e-14 -2.11154e-11 1.42981e-12 -1.98159e-11 2.62108e-12 -1.85015e-11 3.68189e-12 -1.71887e-11 4.61988e-12 -1.58857e-11 5.44083e-12 -1.46002e-11 6.15011e-12 -1.3341e-11 6.75523e-12 -1.21187e-11 7.26633e-12 -1.09386e-11 7.69124e-12 -9.80156e-12 8.03516e-12 -8.70949e-12 8.30179e-12 -7.665e-12 8.49844e-12 -6.66446e-12 8.63142e-12 -5.70985e-12 8.702e-12 -4.79197e-12 8.71699e-12 -3.91705e-12 8.67996e-12 -3.09199e-12 8.60113e-12 -2.31997e-12 8.48601e-12 -1.59824e-12 8.3387e-12 -9.22373e-13 8.15974e-12 -2.89105e-13 7.95188e-12 2.98996e-13 7.71516e-12 8.47815e-13 7.4511e-12 1.35754e-12 7.16616e-12 1.82838e-12 6.85944e-12 2.26386e-12 6.53161e-12 2.66597e-12 6.18651e-12 3.04157e-12 5.82725e-12 3.39156e-12 5.45439e-12 3.71204e-12 5.0694e-12 4.00324e-12 4.67405e-12 4.26815e-12 4.26779e-12 4.51147e-12 3.85047e-12 4.73208e-12 3.42404e-12 4.92545e-12 2.98994e-12 5.09221e-12 2.5492e-12 5.23594e-12 2.10299e-12 5.35799e-12 1.65156e-12 5.45646e-12 1.19568e-12 5.52887e-12 7.35686e-13 5.57784e-12 2.71467e-13 5.60872e-12 -1.94921e-13 5.62076e-12 -6.60345e-13 5.60885e-12 -1.12276e-12 5.5719e-12 -1.58232e-12 5.51306e-12 -2.04156e-12 5.43122e-12 -2.49814e-12 5.32407e-12 -2.94727e-12 5.18958e-12 -3.38678e-12 5.02797e-12 -3.816e-12 4.84377e-12 -4.23356e-12 4.64015e-12 -4.63574e-12 4.41264e-12 -5.02206e-12 4.15213e-12 -5.39453e-12 3.85933e-12 -5.75525e-12 3.54518e-12 -6.10259e-12 3.21253e-12 -6.43288e-12 2.85253e-12 -6.74589e-12 2.45966e-12 -7.04453e-12 2.03566e-12 -7.3264e-12 1.58025e-12 -7.57973e-12 1.08664e-12 -7.79724e-12 5.43989e-13 -7.98518e-12 -4.39415e-14 -8.14541e-12 -6.62393e-13 -8.2681e-12 -1.31967e-12 -8.3446e-12 -2.03211e-12 -8.37748e-12 -2.78761e-12 -8.36655e-12 -3.57713e-12 -8.30041e-12 -4.41985e-12 -8.17435e-12 -5.31572e-12 -7.98991e-12 -6.25809e-12 -7.74506e-12 -7.24429e-12 -7.44021e-12 -8.26549e-12 -7.07066e-12 -9.33139e-12 -6.61755e-12 -1.04407e-11 -6.05705e-12 -1.16295e-11 -5.36146e-12 -1.28973e-11 -4.53822e-12 -1.42065e-11 -3.60344e-12 -1.55195e-11 -2.58507e-12 -1.67922e-11 -1.46448e-12 -1.80568e-11 -2.2617e-13 -1.9321e-11 1.15402e-12 -2.05968e-11 2.73633e-12 -2.19244e-11 4.50916e-12 -2.3168e-11 6.38325e-12 -2.40264e-11 8.29855e-12 -2.40585e-11 1.00703e-11 -2.24919e-11 1.15637e-11 -1.81015e-11 1.24695e-11 -9.92192e-12 1.76544e-12 1.24661e-11 -1.21984e-11 1.40267e-12 -1.11332e-11 -1.14008e-11 -9.46507e-12 -2.01105e-11 -7.49661e-12 -2.47207e-11 -5.46852e-12 -2.63383e-11 -3.52095e-12 -2.62284e-11 -1.7131e-12 -2.52933e-11 -5.99085e-14 -2.40195e-11 1.43732e-12 -2.26129e-11 2.7763e-12 -2.11551e-11 3.96506e-12 -1.96905e-11 5.0161e-12 -1.82399e-11 5.93571e-12 -1.68055e-11 6.7283e-12 -1.5393e-11 7.40428e-12 -1.40173e-11 7.97578e-12 -1.26906e-11 8.45078e-12 -1.1414e-11 8.83241e-12 -1.01836e-11 9.12844e-12 -9.00587e-12 9.3447e-12 -7.8816e-12 9.48801e-12 -6.80808e-12 9.56228e-12 -5.78441e-12 9.57259e-12 -4.80253e-12 9.52903e-12 -3.87371e-12 9.43928e-12 -3.00243e-12 9.3116e-12 -2.19247e-12 9.15015e-12 -1.43696e-12 8.95805e-12 -7.30443e-13 8.73651e-12 -6.77633e-14 8.48727e-12 5.48004e-13 8.2163e-12 1.11855e-12 7.92351e-12 1.65009e-12 7.60733e-12 2.14435e-12 7.26851e-12 2.60251e-12 6.90806e-12 3.02631e-12 6.53034e-12 3.41922e-12 6.13929e-12 3.78257e-12 5.736e-12 4.1153e-12 5.32173e-12 4.41744e-12 4.89739e-12 4.6924e-12 4.46417e-12 4.94458e-12 4.02338e-12 5.17275e-12 3.57489e-12 5.37389e-12 3.11833e-12 5.54879e-12 2.6544e-12 5.69998e-12 2.18435e-12 5.82823e-12 1.70887e-12 5.93221e-12 1.22791e-12 6.01013e-12 7.41803e-13 6.06425e-12 2.52926e-13 6.09786e-12 -2.34826e-13 6.10871e-12 -7.1922e-13 6.09339e-12 -1.20102e-12 6.05378e-12 -1.68108e-12 5.99313e-12 -2.15925e-12 5.90938e-12 -2.63326e-12 5.79803e-12 -3.10067e-12 5.65692e-12 -3.56081e-12 5.48802e-12 -4.01306e-12 5.29591e-12 -4.45436e-12 5.08129e-12 -4.88045e-12 4.83849e-12 -5.29168e-12 4.563e-12 -5.69352e-12 4.2607e-12 -6.08859e-12 3.93968e-12 -6.47243e-12 3.59574e-12 -6.84085e-12 3.22035e-12 -7.19604e-12 2.81435e-12 -7.53973e-12 2.37898e-12 -7.86441e-12 1.90469e-12 -8.15967e-12 1.38174e-12 -8.42486e-12 8.09013e-13 -8.66531e-12 1.96258e-13 -8.87513e-12 -4.52951e-13 -9.04367e-12 -1.15159e-12 -9.17167e-12 -1.90457e-12 -9.26238e-12 -2.69725e-12 -9.30276e-12 -3.5369e-12 -9.28456e-12 -4.43798e-12 -9.21071e-12 -5.38932e-12 -9.07787e-12 -6.39065e-12 -8.88458e-12 -7.4374e-12 -8.62394e-12 -8.52615e-12 -8.28857e-12 -9.667e-12 -7.86025e-12 -1.08693e-11 -7.30858e-12 -1.21814e-11 -6.63261e-12 -1.35732e-11 -5.83582e-12 -1.5003e-11 -4.95493e-12 -1.64001e-11 -3.9765e-12 -1.77705e-11 -2.88183e-12 -1.91517e-11 -1.64677e-12 -2.05565e-11 -2.10435e-13 -2.20335e-11 1.42863e-12 -2.35635e-11 3.18783e-12 -2.4927e-11 5.04705e-12 -2.58855e-11 7.01596e-12 -2.60277e-11 8.85458e-12 -2.43311e-11 1.04395e-11 -1.9687e-11 1.14804e-11 -1.0963e-11 1.70719e-12 1.15386e-11 -1.11765e-11 1.35021e-12 -1.00639e-11 -1.25139e-11 -8.32327e-12 -2.18516e-11 -6.27325e-12 -2.67712e-11 -4.17248e-12 -2.84395e-11 -2.16716e-12 -2.82342e-11 -3.16164e-13 -2.71447e-11 1.36589e-12 -2.57019e-11 2.87005e-12 -2.41174e-11 4.2017e-12 -2.24871e-11 5.37703e-12 -2.08661e-11 6.40277e-12 -1.92659e-11 7.2845e-12 -1.76875e-11 8.03608e-12 -1.6145e-11 8.67338e-12 -1.4655e-11 9.20549e-12 -1.32232e-11 9.63639e-12 -1.18454e-11 9.97222e-12 -1.05199e-11 1.02221e-11 -9.2563e-12 1.03887e-11 -8.04865e-12 1.04769e-11 -6.89681e-12 1.04942e-11 -5.80219e-12 1.04498e-11 -4.75851e-12 1.03538e-11 -3.77807e-12 1.02124e-11 -2.86145e-12 1.00326e-11 -2.01302e-12 9.81698e-12 -1.22171e-12 9.57366e-12 -4.8757e-13 9.30734e-12 1.98056e-13 9.02203e-12 8.32767e-13 8.7181e-12 1.4219e-12 8.39675e-12 1.97086e-12 8.05453e-12 2.48602e-12 7.68902e-12 2.96752e-12 7.30174e-12 3.41314e-12 6.89621e-12 3.82433e-12 6.4764e-12 4.20196e-12 6.04436e-12 4.54689e-12 5.60176e-12 4.85956e-12 5.14955e-12 5.14408e-12 4.68944e-12 5.40415e-12 4.22311e-12 5.63856e-12 3.75002e-12 5.8465e-12 3.26898e-12 6.02942e-12 2.7803e-12 6.18833e-12 2.285e-12 6.32325e-12 1.78387e-12 6.4331e-12 1.27731e-12 6.51646e-12 7.66374e-13 6.57494e-12 2.53864e-13 6.61011e-12 -2.57584e-13 6.6199e-12 -7.67522e-13 6.60306e-12 -1.27605e-12 6.56205e-12 -1.78164e-12 6.49848e-12 -2.28251e-12 6.41001e-12 -2.77717e-12 6.29246e-12 -3.26553e-12 6.14506e-12 -3.7481e-12 5.97036e-12 -4.22342e-12 5.771e-12 -4.6879e-12 5.54552e-12 -5.13927e-12 5.28955e-12 -5.58083e-12 5.00418e-12 -6.01693e-12 4.69632e-12 -6.44721e-12 4.36939e-12 -6.86759e-12 4.01548e-12 -7.27591e-12 3.628e-12 -7.67394e-12 3.21174e-12 -8.06063e-12 2.7651e-12 -8.4258e-12 2.26935e-12 -8.76428e-12 1.71975e-12 -9.08054e-12 1.12484e-12 -9.37206e-12 4.87358e-13 -9.62903e-12 -1.96378e-13 -9.84999e-12 -9.3096e-13 -1.00399e-11 -1.71494e-12 -1.01898e-11 -2.54741e-12 -1.02873e-11 -3.43935e-12 -1.03324e-11 -4.3927e-12 -1.03238e-11 -5.39775e-12 -1.02588e-11 -6.45565e-12 -1.01277e-11 -7.5686e-12 -9.91252e-12 -8.74161e-12 -9.60517e-12 -9.9746e-12 -9.18923e-12 -1.12853e-11 -8.67107e-12 -1.26993e-11 -8.04839e-12 -1.41954e-11 -7.32654e-12 -1.57244e-11 -6.49128e-12 -1.72351e-11 -5.55454e-12 -1.87073e-11 -4.45682e-12 -2.02497e-11 -3.17158e-12 -2.1842e-11 -1.7054e-12 -2.34996e-11 -8.20076e-14 -2.51866e-11 1.67666e-12 -2.66855e-11 3.54588e-12 -2.77549e-11 5.54012e-12 -2.80225e-11 7.5058e-12 -2.62973e-11 9.25503e-12 -2.14364e-11 1.03782e-11 -1.20861e-11 1.61959e-12 1.04656e-11 -9.95619e-12 1.24552e-12 -8.81464e-12 -1.36559e-11 -6.98111e-12 -2.36856e-11 -4.85061e-12 -2.89022e-11 -2.68492e-12 -3.06057e-11 -6.2561e-13 -3.0294e-11 1.2656e-12 -2.90364e-11 2.95988e-12 -2.73966e-11 4.46206e-12 -2.56199e-11 5.78882e-12 -2.38141e-11 6.94361e-12 -2.20211e-11 7.93265e-12 -2.02553e-11 8.77566e-12 -1.85309e-11 9.49198e-12 -1.68617e-11 1.00906e-11 -1.52541e-11 1.05777e-11 -1.37107e-11 1.09562e-11 -1.22244e-11 1.12358e-11 -1.08001e-11 1.14251e-11 -9.44612e-12 1.15263e-11 -8.15034e-12 1.15495e-11 -6.92055e-12 1.15015e-11 -5.75468e-12 1.13967e-11 -4.65422e-12 1.12427e-11 -3.62454e-12 1.10493e-11 -2.66855e-12 1.08214e-11 -1.78571e-12 1.05665e-11 -9.67452e-13 1.02865e-11 -2.08307e-13 9.98236e-12 5.01433e-13 9.65647e-12 1.15782e-12 9.31021e-12 1.76732e-12 8.94423e-12 2.33601e-12 8.55928e-12 2.87019e-12 8.15391e-12 3.37217e-12 7.72884e-12 3.83752e-12 7.28867e-12 4.26383e-12 6.83677e-12 4.65317e-12 6.37461e-12 5.00835e-12 5.90206e-12 5.33136e-12 5.42006e-12 5.62532e-12 4.93071e-12 5.89273e-12 4.43474e-12 6.13379e-12 3.93182e-12 6.34871e-12 3.42117e-12 6.5394e-12 2.90293e-12 6.70594e-12 2.37934e-12 6.84623e-12 1.85165e-12 6.96019e-12 1.32049e-12 7.04703e-12 7.87353e-13 7.10752e-12 2.54152e-13 7.1428e-12 -2.78986e-13 7.15258e-12 -8.13018e-13 7.13671e-12 -1.34568e-12 7.09439e-12 -1.8734e-12 7.02593e-12 -2.39513e-12 6.93148e-12 -2.91031e-12 6.80739e-12 -3.42073e-12 6.65521e-12 -3.92732e-12 6.47664e-12 -4.42869e-12 6.27203e-12 -4.92244e-12 6.03889e-12 -5.40841e-12 5.77512e-12 -5.88982e-12 5.48511e-12 -6.36436e-12 5.17032e-12 -6.82942e-12 4.8338e-12 -7.28562e-12 4.47094e-12 -7.73325e-12 4.07481e-12 -8.16952e-12 3.64714e-12 -8.59084e-12 3.18552e-12 -8.99607e-12 2.6737e-12 -9.38432e-12 2.10717e-12 -9.75645e-12 1.49624e-12 -1.01081e-11 8.38451e-13 -1.04292e-11 1.24263e-13 -1.07164e-11 -6.44051e-13 -1.097e-11 -1.46155e-12 -1.11826e-11 -2.33492e-12 -1.13464e-11 -3.27563e-12 -1.14633e-11 -4.27607e-12 -1.15277e-11 -5.33369e-12 -1.15299e-11 -6.45402e-12 -1.14565e-11 -7.64261e-12 -1.12868e-11 -8.91194e-12 -1.10139e-11 -1.02478e-11 -1.06338e-11 -1.16655e-11 -1.0166e-11 -1.31668e-11 -9.61701e-12 -1.47442e-11 -8.94976e-12 -1.63916e-11 -8.17024e-12 -1.80149e-11 -7.23465e-12 -1.96433e-11 -6.13141e-12 -2.13533e-11 -4.83987e-12 -2.31335e-11 -3.37362e-12 -2.49657e-11 -1.75709e-12 -2.68031e-11 5.56683e-14 -2.84986e-11 2.02536e-12 -2.97253e-11 4.11839e-12 -3.01162e-11 6.20937e-12 -2.83886e-11 7.98593e-12 -2.32131e-11 9.12356e-12 -1.32241e-11 1.55327e-12 9.18929e-12 -8.45023e-12 1.13857e-12 -7.25287e-12 -1.48538e-11 -5.36129e-12 -2.55777e-11 -3.16588e-12 -3.10982e-11 -9.41239e-13 -3.28309e-11 1.16262e-12 -3.23984e-11 3.0743e-12 -3.09486e-11 4.7729e-12 -2.90956e-11 6.27255e-12 -2.712e-11 7.58346e-12 -2.51254e-11 8.70795e-12 -2.3146e-11 9.66157e-12 -2.12093e-11 1.04686e-11 -1.93383e-11 1.11425e-11 -1.75359e-11 1.16876e-11 -1.57997e-11 1.21092e-11 -1.41328e-11 1.24151e-11 -1.25308e-11 1.26193e-11 -1.10048e-11 1.27265e-11 -9.55379e-12 1.27469e-11 -8.17115e-12 1.26938e-11 -6.86793e-12 1.25778e-11 -5.63905e-12 1.24128e-11 -4.48976e-12 1.22055e-11 -3.41773e-12 1.19657e-11 -2.42933e-12 1.16935e-11 -1.51412e-12 1.13963e-11 -6.71067e-13 1.10716e-11 1.15651e-13 1.07238e-11 8.48414e-13 1.03498e-11 1.53098e-12 9.95055e-12 2.16569e-12 9.52949e-12 2.75629e-12 9.08868e-12 3.31028e-12 8.63109e-12 3.8291e-12 8.16054e-12 4.30745e-12 7.68092e-12 4.74284e-12 7.19568e-12 5.13778e-12 6.70397e-12 5.49942e-12 6.20435e-12 5.8303e-12 5.69513e-12 6.13385e-12 5.17545e-12 6.41172e-12 4.64524e-12 6.66333e-12 4.10456e-12 6.88873e-12 3.55606e-12 7.08725e-12 3.00225e-12 7.25908e-12 2.44388e-12 7.40393e-12 1.88503e-12 7.51837e-12 1.3287e-12 7.60273e-12 7.76181e-13 7.65948e-12 2.28024e-13 7.6905e-12 -3.16584e-13 7.69685e-12 -8.5906e-13 7.67896e-12 -1.4017e-12 7.63687e-12 -1.94413e-12 7.56822e-12 -2.48253e-12 7.46971e-12 -3.01949e-12 7.34409e-12 -3.55629e-12 7.19166e-12 -4.09296e-12 7.01286e-12 -4.62839e-12 6.80695e-12 -5.1605e-12 6.57045e-12 -5.68744e-12 6.30146e-12 -6.20523e-12 6.00229e-12 -6.71588e-12 5.68033e-12 -7.21632e-12 5.33352e-12 -7.70306e-12 4.95687e-12 -8.17658e-12 4.54741e-12 -8.63631e-12 4.10582e-12 -9.0889e-12 3.63701e-12 -9.535e-12 3.11868e-12 -9.96426e-12 2.53538e-12 -1.03729e-11 1.90395e-12 -1.07634e-11 1.22829e-12 -1.11348e-11 4.95146e-13 -1.14775e-11 -3.01769e-13 -1.17867e-11 -1.15261e-12 -1.20596e-11 -2.06242e-12 -1.22887e-11 -3.04709e-12 -1.24607e-11 -4.10487e-12 -1.25756e-11 -5.21975e-12 -1.26278e-11 -6.40276e-12 -1.26085e-11 -7.66288e-12 -1.2514e-11 -9.00702e-12 -1.2335e-11 -1.04272e-11 -1.20711e-11 -1.19296e-11 -1.17003e-11 -1.35378e-11 -1.12042e-11 -1.52407e-11 -1.0593e-11 -1.70034e-11 -9.82756e-12 -1.8781e-11 -8.92619e-12 -2.05452e-11 -7.84554e-12 -2.24341e-11 -6.61128e-12 -2.43678e-11 -5.17569e-12 -2.64014e-11 -3.49768e-12 -2.84816e-11 -1.61613e-12 -3.0381e-11 4.23008e-13 -3.17653e-11 2.55773e-12 -3.22514e-11 4.68186e-12 -3.0513e-11 6.52823e-12 -2.50598e-11 7.70489e-12 -1.44015e-11 1.49992e-12 7.75756e-12 -6.60766e-12 1.07053e-12 -5.37705e-12 -1.60849e-11 -3.45279e-12 -2.75025e-11 -1.21313e-12 -3.33384e-11 1.05134e-12 -3.50959e-11 3.17828e-12 -3.45259e-11 5.0928e-12 -3.28636e-11 6.78593e-12 -3.07893e-11 8.26965e-12 -2.86042e-11 9.54588e-12 -2.64021e-11 1.06262e-11 -2.42267e-11 1.15353e-11 -2.21188e-11 1.22917e-11 -2.00951e-11 1.29005e-11 -1.81451e-11 1.337e-11 -1.62695e-11 1.37123e-11 -1.44754e-11 1.39357e-11 -1.27545e-11 1.40535e-11 -1.11228e-11 1.4074e-11 -9.57463e-12 1.40141e-11 -8.11157e-12 1.38861e-11 -6.74025e-12 1.37018e-11 -5.4551e-12 1.34684e-11 -4.25678e-12 1.3194e-11 -3.14379e-12 1.28829e-11 -2.1187e-12 1.25419e-11 -1.17373e-12 1.21818e-11 -3.1148e-13 1.17991e-11 4.97722e-13 1.13927e-11 1.25419e-12 1.09631e-11 1.96006e-12 1.05134e-11 2.61491e-12 1.00447e-11 3.2246e-12 9.56127e-12 3.79339e-12 9.06758e-12 4.3225e-12 8.56526e-12 4.80949e-12 8.05656e-12 5.25124e-12 7.54125e-12 5.65276e-12 7.01839e-12 6.02192e-12 6.48695e-12 6.36136e-12 5.9476e-12 6.67282e-12 5.40171e-12 6.95723e-12 4.8497e-12 7.21495e-12 4.29091e-12 7.44711e-12 3.72511e-12 7.65261e-12 3.15417e-12 7.82955e-12 2.58023e-12 7.97738e-12 2.00318e-12 8.09495e-12 1.42393e-12 8.18155e-12 8.44411e-13 8.23868e-12 2.6579e-13 8.26891e-12 -3.12109e-13 8.27466e-12 -8.90342e-13 8.25718e-12 -1.46873e-12 8.21526e-12 -2.04645e-12 8.14589e-12 -2.62236e-12 8.04546e-12 -3.19327e-12 7.91469e-12 -3.75888e-12 7.75682e-12 -4.32057e-12 7.57397e-12 -4.87761e-12 7.36333e-12 -5.42706e-12 7.11924e-12 -5.9673e-12 6.84106e-12 -6.50155e-12 6.53594e-12 -7.03104e-12 6.20924e-12 -7.5549e-12 5.85679e-12 -8.07223e-12 5.47354e-12 -8.58433e-12 5.05873e-12 -9.09284e-12 4.61344e-12 -9.58782e-12 4.13101e-12 -1.00642e-11 3.59403e-12 -1.05281e-11 2.99843e-12 -1.09809e-11 2.35593e-12 -1.14172e-11 1.66401e-12 -1.18317e-11 9.09176e-13 -1.22245e-11 9.06059e-14 -1.25921e-11 -7.8545e-13 -1.29239e-11 -1.73125e-12 -1.32121e-11 -2.75969e-12 -1.34547e-11 -3.86332e-12 -1.36434e-11 -5.03207e-12 -1.37787e-11 -6.26834e-12 -1.38477e-11 -7.5946e-12 -1.38406e-11 -9.01459e-12 -1.3754e-11 -1.05141e-11 -1.35745e-11 -1.21095e-11 -1.32806e-11 -1.38323e-11 -1.28566e-11 -1.56655e-11 -1.23289e-11 -1.75319e-11 -1.16474e-11 -1.94631e-11 -1.07885e-11 -2.14044e-11 -9.79039e-12 -2.34324e-11 -8.55882e-12 -2.55996e-11 -7.0962e-12 -2.78647e-11 -5.47721e-12 -3.01016e-11 -3.66742e-12 -3.21917e-11 -1.55007e-12 -3.38832e-11 7.17928e-13 -3.45196e-11 2.93304e-12 -3.27284e-11 4.80199e-12 -2.69295e-11 5.97352e-12 -1.55738e-11 1.41628e-12 6.05668e-12 -4.47425e-12 9.9542e-13 -3.24616e-12 -1.73135e-11 -1.27882e-12 -2.94704e-11 1.00118e-12 -3.56189e-11 3.28999e-12 -3.73853e-11 5.41798e-12 -3.66544e-11 7.32496e-12 -3.47711e-11 9.0029e-12 -3.24677e-11 1.04474e-11 -3.00491e-11 1.16723e-11 -2.76274e-11 1.27047e-11 -2.52596e-11 1.35609e-11 -2.29754e-11 1.42476e-11 -2.07821e-11 1.4774e-11 -1.86718e-11 1.51581e-11 -1.66539e-11 1.541e-11 -1.47274e-11 1.55411e-11 -1.28858e-11 1.55638e-11 -1.11457e-11 1.54931e-11 -9.50408e-12 1.53474e-11 -7.9661e-12 1.51352e-11 -6.52829e-12 1.48676e-11 -5.18773e-12 1.455e-11 -3.93946e-12 1.41981e-11 -2.79213e-12 1.38176e-11 -1.73854e-12 1.34181e-11 -7.74587e-13 1.29931e-11 1.13259e-13 1.25462e-11 9.44427e-13 1.20757e-11 1.72458e-12 1.1586e-11 2.44968e-12 1.10824e-11 3.11853e-12 1.05672e-11 3.73991e-12 1.00428e-11 4.31799e-12 9.51198e-12 4.85345e-12 8.97723e-12 5.34434e-12 8.43813e-12 5.79039e-12 7.89296e-12 6.19792e-12 7.3415e-12 6.57334e-12 6.78377e-12 6.91904e-12 6.2202e-12 7.23633e-12 5.65134e-12 7.52602e-12 5.07577e-12 7.79044e-12 4.49285e-12 8.02992e-12 3.90364e-12 8.24165e-12 3.3097e-12 8.42329e-12 2.71183e-12 8.57502e-12 2.1097e-12 8.69687e-12 1.50291e-12 8.7882e-12 8.92439e-13 8.84909e-12 2.80002e-13 8.88139e-12 -3.32713e-13 8.88748e-12 -9.441e-13 8.86868e-12 -1.55226e-12 8.82349e-12 -2.15614e-12 8.74973e-12 -2.75569e-12 8.64483e-12 -3.35071e-12 8.50938e-12 -3.94091e-12 8.34655e-12 -4.52523e-12 8.15774e-12 -5.10257e-12 7.94012e-12 -5.6735e-12 7.68964e-12 -6.24023e-12 7.40736e-12 -6.8036e-12 7.099e-12 -7.36122e-12 6.76664e-12 -7.91203e-12 6.4074e-12 -8.45721e-12 6.01851e-12 -8.99782e-12 5.59906e-12 -9.53219e-12 5.14743e-12 -1.00567e-11 4.65507e-12 -1.05722e-11 4.10904e-12 -1.10828e-11 3.50858e-12 -1.15866e-11 2.85937e-12 -1.2077e-11 2.15411e-12 -1.25521e-11 1.38407e-12 -1.30138e-11 5.51935e-13 -1.34536e-11 -3.46003e-13 -1.38605e-11 -1.3249e-12 -1.42296e-11 -2.39123e-12 -1.45536e-11 -3.54e-12 -1.4825e-11 -4.76118e-12 -1.50572e-11 -6.03648e-12 -1.5233e-11 -7.41891e-12 -1.5325e-11 -8.92283e-12 -1.53142e-11 -1.05252e-11 -1.52055e-11 -1.22187e-11 -1.49914e-11 -1.40472e-11 -1.46689e-11 -1.59888e-11 -1.42026e-11 -1.79988e-11 -1.36104e-11 -2.00556e-11 -1.28282e-11 -2.21867e-11 -1.18304e-11 -2.44304e-11 -1.06591e-11 -2.67716e-11 -9.29051e-12 -2.92342e-11 -7.68042e-12 -3.17125e-11 -5.85283e-12 -3.40198e-11 -3.78612e-12 -3.59501e-11 -1.52144e-12 -3.67846e-11 7.55934e-13 -3.50065e-11 2.70069e-12 -2.88751e-11 3.84052e-12 -1.67143e-11 1.40955e-12 3.84695e-12 -2.02211e-12 8.93622e-13 -7.90664e-13 -1.85456e-11 1.22225e-12 -3.14839e-11 3.52543e-12 -3.79227e-11 5.81396e-12 -3.96744e-11 7.93273e-12 -3.87737e-11 9.82226e-12 -3.66612e-11 1.14608e-11 -3.41067e-11 1.28543e-11 -3.14432e-11 1.40283e-11 -2.88018e-11 1.50013e-11 -2.6233e-11 1.57821e-11 -2.37566e-11 1.63783e-11 -2.13786e-11 1.6806e-11 -1.90996e-11 1.70862e-11 -1.69343e-11 1.72288e-11 -1.48701e-11 1.72515e-11 -1.29086e-11 1.71679e-11 -1.10621e-11 1.69959e-11 -9.33216e-12 1.67508e-11 -7.72112e-12 1.64433e-11 -6.22095e-12 1.6084e-11 -4.82854e-12 1.56868e-11 -3.54245e-12 1.52619e-11 -2.36739e-12 1.48139e-11 -1.29065e-12 1.43436e-11 -3.04371e-13 1.38467e-11 6.1012e-13 1.33249e-11 1.46639e-12 1.27853e-11 2.26444e-12 1.22346e-11 3.00076e-12 1.16747e-11 3.67879e-12 1.11094e-11 4.30567e-12 1.05406e-11 4.88723e-12 9.96987e-12 5.42461e-12 9.3987e-12 5.91583e-12 8.82608e-12 6.36324e-12 8.2509e-12 6.77329e-12 7.67315e-12 7.15125e-12 7.0921e-12 7.50025e-12 6.50634e-12 7.82226e-12 5.91363e-12 8.11889e-12 5.3123e-12 8.39192e-12 4.7028e-12 8.63953e-12 4.08674e-12 8.85778e-12 3.46521e-12 9.04486e-12 2.83862e-12 9.20164e-12 2.20667e-12 9.32888e-12 1.56914e-12 9.42583e-12 9.26876e-13 9.4915e-12 2.81957e-13 9.52648e-12 -3.63083e-13 9.53269e-12 -1.00493e-12 9.51066e-12 -1.63946e-12 9.45809e-12 -2.26558e-12 9.37582e-12 -2.8858e-12 9.26492e-12 -3.50176e-12 9.12515e-12 -4.1132e-12 8.95773e-12 -4.71928e-12 8.76357e-12 -5.32063e-12 8.54126e-12 -5.91912e-12 8.28802e-12 -6.51522e-12 8.00347e-12 -7.10647e-12 7.69039e-12 -7.69014e-12 7.35056e-12 -8.26523e-12 6.98282e-12 -8.83179e-12 6.58542e-12 -9.39045e-12 6.15803e-12 -9.94384e-12 5.70109e-12 -1.04968e-11 5.20828e-12 -1.10536e-11 4.66598e-12 -1.16137e-11 4.06875e-12 -1.21735e-11 3.41925e-12 -1.27317e-11 2.71232e-12 -1.32855e-11 1.93783e-12 -1.38279e-11 1.09416e-12 -1.43519e-11 1.77882e-13 -1.48525e-11 -8.24586e-13 -1.53203e-11 -1.9235e-12 -1.57454e-11 -3.11484e-12 -1.61248e-11 -4.38167e-12 -1.64509e-11 -5.71005e-12 -1.67202e-11 -7.14936e-12 -1.69186e-11 -8.72443e-12 -1.70127e-11 -1.04314e-11 -1.70069e-11 -1.2225e-11 -1.68779e-11 -1.41767e-11 -1.66284e-11 -1.62386e-11 -1.62297e-11 -1.83976e-11 -1.56973e-11 -2.05881e-11 -1.49771e-11 -2.29071e-11 -1.40906e-11 -2.53175e-11 -1.29745e-11 -2.78886e-11 -1.16544e-11 -3.05551e-11 -1.00784e-11 -3.3289e-11 -8.24556e-12 -3.58528e-11 -6.22166e-12 -3.79742e-11 -4.04915e-12 -3.89577e-11 -1.85972e-12 -3.71967e-11 -6.24181e-15 -3.07292e-11 1.01332e-12 -1.77342e-11 1.49991e-12 9.22559e-13 8.90969e-13 8.26376e-13 2.13218e-12 -1.97874e-11 4.12275e-12 -3.3475e-11 6.41203e-12 -4.02125e-11 8.68399e-12 -4.19468e-11 1.0778e-11 -4.08682e-11 1.26282e-11 -3.85119e-11 1.42132e-11 -3.56922e-11 1.55464e-11 -3.27768e-11 1.66497e-11 -2.99055e-11 1.75318e-11 -2.71155e-11 1.82036e-11 -2.44286e-11 1.86803e-11 -2.18554e-11 1.89876e-11 -1.94071e-11 1.91434e-11 -1.70901e-11 1.91626e-11 -1.48892e-11 1.90658e-11 -1.28118e-11 1.88676e-11 -1.0864e-11 1.85875e-11 -9.05212e-12 1.82382e-11 -7.37185e-12 1.78358e-11 -5.81867e-12 1.73861e-11 -4.37902e-12 1.69026e-11 -3.05907e-12 1.63895e-11 -1.8544e-12 1.58554e-11 -7.56598e-13 1.52966e-11 2.54428e-13 1.47148e-11 1.1921e-12 1.41146e-11 2.06689e-12 1.35046e-11 2.87478e-12 1.28917e-11 3.61414e-12 1.22769e-11 4.29415e-12 1.16616e-11 4.92146e-12 1.10477e-11 5.50166e-12 1.04366e-11 6.03602e-12 9.82948e-12 6.52327e-12 9.22491e-12 6.96805e-12 8.62159e-12 7.37684e-12 8.0182e-12 7.75486e-12 7.41284e-12 8.10586e-12 6.80295e-12 8.43242e-12 6.18515e-12 8.73696e-12 5.55791e-12 9.01942e-12 4.92169e-12 9.27599e-12 4.27711e-12 9.50258e-12 3.62514e-12 9.69705e-12 2.96684e-12 9.86017e-12 2.30236e-12 9.99359e-12 1.63223e-12 1.00962e-11 9.57934e-13 1.0166e-11 2.8171e-13 1.02029e-11 -3.92933e-13 1.02075e-11 -1.0626e-12 1.01804e-11 -1.72608e-12 1.01216e-11 -2.38308e-12 1.00328e-11 -3.03342e-12 9.91527e-12 -3.67596e-12 9.76773e-12 -4.3113e-12 9.59316e-12 -4.9419e-12 9.39431e-12 -5.56892e-12 9.16847e-12 -6.19174e-12 8.91112e-12 -6.80985e-12 8.62193e-12 -7.42302e-12 8.304e-12 -8.02965e-12 7.95772e-12 -8.62829e-12 7.58207e-12 -9.2209e-12 7.17867e-12 -9.81312e-12 6.75092e-12 -1.04084e-11 6.297e-12 -1.1005e-11 5.80548e-12 -1.1604e-11 5.2655e-12 -1.22131e-11 4.67818e-12 -1.28329e-11 4.03937e-12 -1.34554e-11 3.33492e-12 -1.40763e-11 2.55868e-12 -1.4694e-11 1.7118e-12 -1.53001e-11 7.84058e-13 -1.58861e-11 -2.38495e-13 -1.64504e-11 -1.35883e-12 -1.69844e-11 -2.58034e-12 -1.74709e-11 -3.8946e-12 -1.78985e-11 -5.28199e-12 -1.82708e-11 -6.77686e-12 -1.85861e-11 -8.40919e-12 -1.88372e-11 -1.01806e-11 -1.89684e-11 -1.20942e-11 -1.89632e-11 -1.41821e-11 -1.88067e-11 -1.63951e-11 -1.85199e-11 -1.86843e-11 -1.80831e-11 -2.10252e-11 -1.74928e-11 -2.34979e-11 -1.67142e-11 -2.6097e-11 -1.56566e-11 -2.89471e-11 -1.43115e-11 -3.19006e-11 -1.27801e-11 -3.48205e-11 -1.10515e-11 -3.75816e-11 -9.1443e-12 -3.9882e-11 -7.10755e-12 -4.09953e-11 -5.00018e-12 -3.93048e-11 -3.21304e-12 -3.25168e-11 -2.26293e-12 -1.86848e-11 1.61945e-12 -2.38311e-12 4.2511e-12 8.27169e-13 5.47363e-12 -2.10105e-11 7.41135e-12 -3.54132e-11 9.65352e-12 -4.24551e-11 1.18806e-11 -4.41744e-11 1.39238e-11 -4.29119e-11 1.57064e-11 -4.02949e-11 1.72161e-11 -3.72024e-11 1.84676e-11 -3.40287e-11 1.94688e-11 -3.0907e-11 2.02294e-11 -2.78764e-11 2.07731e-11 -2.49724e-11 2.11219e-11 -2.22043e-11 2.12983e-11 -1.95835e-11 2.13179e-11 -1.71096e-11 2.12023e-11 -1.47737e-11 2.09749e-11 -1.25844e-11 2.06512e-11 -1.05403e-11 2.02489e-11 -8.64984e-12 1.97829e-11 -6.90593e-12 1.92645e-11 -5.30042e-12 1.87092e-11 -3.82383e-12 1.81266e-11 -2.47664e-12 1.75191e-11 -1.24694e-12 1.6889e-11 -1.2663e-13 1.6238e-11 9.05466e-13 1.55694e-11 1.86076e-12 1.48941e-11 2.74243e-12 1.42172e-11 3.55193e-12 1.35416e-11 4.29007e-12 1.28709e-11 4.96518e-12 1.22051e-11 5.58757e-12 1.15474e-11 6.15965e-12 1.09011e-11 6.68251e-12 1.02652e-11 7.15934e-12 9.63616e-12 7.59722e-12 9.00997e-12 8.0032e-12 8.38289e-12 8.38215e-12 7.75202e-12 8.73697e-12 7.11456e-12 9.07015e-12 6.46907e-12 9.38272e-12 5.81513e-12 9.67363e-12 5.15122e-12 9.94017e-12 4.47653e-12 1.01775e-11 3.79172e-12 1.03821e-11 3.09846e-12 1.05537e-11 2.39871e-12 1.06936e-11 1.69456e-12 1.08006e-11 9.88957e-13 1.08718e-11 2.8516e-13 1.09068e-11 -4.15403e-13 1.09081e-11 -1.11456e-12 1.08795e-11 -1.81357e-12 1.08206e-11 -2.50933e-12 1.07286e-11 -3.19775e-12 1.06038e-11 -3.8778e-12 1.0448e-11 -4.55048e-12 1.02662e-11 -5.21731e-12 1.00615e-11 -5.87816e-12 9.82969e-12 -6.53219e-12 9.5655e-12 -7.18159e-12 9.27168e-12 -7.82987e-12 8.95264e-12 -8.47762e-12 8.60587e-12 -9.12332e-12 8.22823e-12 -9.76825e-12 7.82412e-12 -1.04154e-11 7.39865e-12 -1.10637e-11 6.94583e-12 -1.17097e-11 6.45207e-12 -1.23585e-11 5.91469e-12 -1.3019e-11 5.33898e-12 -1.36912e-11 4.71165e-12 -1.43677e-11 4.01147e-12 -1.50487e-11 3.23956e-12 -1.57354e-11 2.3985e-12 -1.64163e-11 1.46506e-12 -1.70827e-11 4.28203e-13 -1.77366e-11 -7.04515e-13 -1.83724e-11 -1.94404e-12 -1.89761e-11 -3.29047e-12 -1.95172e-11 -4.74072e-12 -1.99952e-11 -6.29901e-12 -2.04388e-11 -7.96575e-12 -2.08037e-11 -9.81588e-12 -2.10583e-11 -1.18396e-11 -2.11757e-11 -1.40645e-11 -2.11991e-11 -1.63715e-11 -2.10752e-11 -1.88084e-11 -2.07861e-11 -2.13149e-11 -2.02958e-11 -2.39891e-11 -1.95652e-11 -2.68283e-11 -1.8581e-11 -2.99318e-11 -1.73902e-11 -3.30915e-11 -1.60086e-11 -3.62022e-11 -1.43375e-11 -3.92533e-11 -1.24383e-11 -4.17821e-11 -1.03896e-11 -4.30448e-11 -8.37073e-12 -4.13241e-11 -6.62553e-12 -3.42624e-11 -5.51382e-12 -1.97972e-11 1.58897e-12 -5.48409e-12 7.98102e-12 8.23476e-13 9.13921e-12 -2.21692e-11 1.10362e-11 -3.73107e-11 1.32207e-11 -4.46401e-11 1.53842e-11 -4.63383e-11 1.7349e-11 -4.48771e-11 1.9048e-11 -4.19944e-11 2.04701e-11 -3.86248e-11 2.16143e-11 -3.51732e-11 2.24873e-11 -3.17802e-11 2.31139e-11 -2.85031e-11 2.35202e-11 -2.53788e-11 2.3725e-11 -2.24092e-11 2.37504e-11 -1.96089e-11 2.36159e-11 -1.69751e-11 2.33489e-11 -1.45067e-11 2.29709e-11 -1.22064e-11 2.25033e-11 -1.00728e-11 2.19609e-11 -8.10749e-12 2.13656e-11 -6.31067e-12 2.07313e-11 -4.6662e-12 2.00688e-11 -3.16152e-12 1.93789e-11 -1.78683e-12 1.86663e-11 -5.34482e-13 1.79303e-11 6.09217e-13 1.71809e-11 1.65488e-12 1.6426e-11 2.61565e-12 1.56725e-11 3.49594e-12 1.49254e-11 4.29916e-12 1.41867e-11 5.02891e-12 1.34598e-11 5.69209e-12 1.2749e-11 6.2985e-12 1.20578e-11 6.85086e-12 1.13862e-11 7.35413e-12 1.07284e-11 7.81724e-12 1.00774e-11 8.24827e-12 9.42792e-12 8.65284e-12 8.77601e-12 9.03423e-12 8.11808e-12 9.3951e-12 7.45093e-12 9.73749e-12 6.77353e-12 1.00603e-11 6.08653e-12 1.03608e-11 5.39004e-12 1.06368e-11 4.68419e-12 1.08836e-11 3.96965e-12 1.10969e-11 3.24715e-12 1.12764e-11 2.51862e-12 1.14223e-11 1.78682e-12 1.15325e-11 1.05329e-12 1.16053e-11 3.17864e-13 1.16421e-11 -4.2008e-13 1.16458e-11 -1.15891e-12 1.16182e-11 -1.89635e-12 1.1558e-11 -2.63087e-12 1.14632e-11 -3.36005e-12 1.13332e-11 -4.08287e-12 1.11711e-11 -4.79612e-12 1.09797e-11 -5.49725e-12 1.07629e-11 -6.18766e-12 1.05203e-11 -6.87197e-12 1.02499e-11 -7.55494e-12 9.95469e-12 -8.2379e-12 9.63559e-12 -8.92127e-12 9.28924e-12 -9.60764e-12 8.91465e-12 -1.02985e-11 8.5151e-12 -1.09897e-11 8.09007e-12 -1.16787e-11 7.63502e-12 -1.23716e-11 7.14523e-12 -1.30757e-11 6.61893e-12 -1.37893e-11 6.05258e-12 -1.45102e-11 5.43249e-12 -1.52443e-11 4.74548e-12 -1.59941e-11 3.98932e-12 -1.67502e-11 3.15462e-12 -1.75087e-11 2.22363e-12 -1.82727e-11 1.19244e-12 -1.90326e-11 5.56265e-14 -1.97797e-11 -1.19683e-12 -2.05034e-11 -2.56689e-12 -2.11801e-11 -4.06425e-12 -2.18079e-11 -5.67152e-12 -2.23701e-11 -7.40372e-12 -2.28509e-11 -9.33514e-12 -2.32349e-11 -1.14554e-11 -2.35473e-11 -1.3752e-11 -2.37277e-11 -1.61913e-11 -2.37577e-11 -1.87791e-11 -2.35887e-11 -2.14847e-11 -2.31974e-11 -2.43811e-11 -2.25461e-11 -2.748e-11 -2.17328e-11 -3.07452e-11 -2.07201e-11 -3.41043e-11 -1.93973e-11 -3.75256e-11 -1.77687e-11 -4.08828e-11 -1.58767e-11 -4.36749e-11 -1.38446e-11 -4.50773e-11 -1.18201e-11 -4.3349e-11 -9.98471e-12 -3.60984e-11 -8.83953e-12 -2.09433e-11 1.60231e-12 -8.85344e-12 1.20787e-11 8.23934e-13 1.31893e-11 -2.32802e-11 1.50293e-11 -3.91511e-11 1.71494e-11 -4.67606e-11 1.92344e-11 -4.84237e-11 2.11115e-11 -4.67546e-11 2.27149e-11 -4.35982e-11 2.40213e-11 -3.99314e-11 2.50284e-11 -3.61806e-11 2.57537e-11 -3.25056e-11 2.62286e-11 -2.89782e-11 2.6472e-11 -2.56223e-11 2.65078e-11 -2.24451e-11 2.63617e-11 -1.94629e-11 2.6059e-11 -1.66726e-11 2.56312e-11 -1.4079e-11 2.50969e-11 -1.16721e-11 2.44825e-11 -9.45841e-12 2.38052e-11 -7.4303e-12 2.30784e-11 -5.5839e-12 2.23127e-11 -3.9005e-12 2.15163e-11 -2.36522e-12 2.06935e-11 -9.64138e-13 1.98478e-11 3.11143e-13 1.89917e-11 1.46528e-12 1.81349e-11 2.5117e-12 1.72878e-11 3.46266e-12 1.64548e-11 4.32898e-12 1.56388e-11 5.11515e-12 1.4844e-11 5.82363e-12 1.40753e-11 6.46071e-12 1.33354e-11 7.03837e-12 1.26203e-11 7.56594e-12 1.19235e-11 8.05097e-12 1.12392e-11 8.50157e-12 1.05605e-11 8.92708e-12 9.88098e-12 9.33245e-12 9.19658e-12 9.71876e-12 8.50394e-12 1.00878e-11 7.80076e-12 1.04407e-11 7.08704e-12 1.0774e-11 6.36409e-12 1.10837e-11 5.63478e-12 1.13661e-11 4.90058e-12 1.16178e-11 4.1605e-12 1.1837e-11 3.41335e-12 1.20236e-11 2.65997e-12 1.21757e-11 1.90145e-12 1.22909e-11 1.13818e-12 1.23684e-11 3.69947e-13 1.24101e-11 -4.02413e-13 1.24179e-11 -1.17778e-12 1.23933e-11 -1.95595e-12 1.2336e-11 -2.73576e-12 1.2243e-11 -3.51397e-12 1.21115e-11 -4.28452e-12 1.19418e-11 -5.04226e-12 1.17376e-11 -5.78211e-12 1.15029e-11 -6.50342e-12 1.12416e-11 -7.21252e-12 1.09589e-11 -7.91659e-12 1.06585e-11 -8.62076e-12 1.03395e-11 -9.32958e-12 9.99776e-12 -1.00466e-11 9.63143e-12 -1.07726e-11 9.24087e-12 -1.15069e-11 8.82431e-12 -1.22488e-11 8.37685e-12 -1.29985e-11 7.89488e-12 -1.37583e-11 7.37872e-12 -1.45283e-11 6.82249e-12 -1.53091e-11 6.21329e-12 -1.61059e-11 5.54221e-12 -1.69184e-11 4.80189e-12 -1.77422e-11 3.9785e-12 -1.8578e-11 3.05959e-12 -1.94241e-11 2.03854e-12 -2.02762e-11 9.07519e-13 -2.11297e-11 -3.43592e-13 -2.19751e-11 -1.722e-12 -2.27895e-11 -3.25021e-12 -2.35592e-11 -4.90206e-12 -2.42649e-11 -6.69807e-12 -2.4909e-11 -8.69088e-12 -2.54728e-11 -1.08914e-11 -2.5921e-11 -1.3304e-11 -2.6248e-11 -1.58648e-11 -2.64064e-11 -1.86215e-11 -2.63771e-11 -2.15146e-11 -2.61684e-11 -2.45901e-11 -2.57651e-11 -2.78834e-11 -2.50881e-11 -3.14223e-11 -2.41172e-11 -3.50757e-11 -2.28877e-11 -3.87559e-11 -2.13558e-11 -4.24155e-11 -1.95616e-11 -4.54696e-11 -1.75746e-11 -4.70646e-11 -1.55383e-11 -4.53858e-11 -1.38108e-11 -3.78266e-11 -1.26758e-11 -2.20789e-11 1.66917e-12 -1.27429e-11 1.65661e-11 8.96827e-13 1.76345e-11 -2.43491e-11 1.93972e-11 -4.09141e-11 2.14391e-11 -4.88029e-11 2.34359e-11 -5.04209e-11 2.52181e-11 -4.85372e-11 2.67073e-11 -4.50877e-11 2.78742e-11 -4.10987e-11 2.87252e-11 -3.70318e-11 2.92872e-11 -3.30679e-11 2.95854e-11 -2.92767e-11 2.96407e-11 -2.56778e-11 2.94865e-11 -2.22911e-11 2.91506e-11 -1.91273e-11 2.86681e-11 -1.61902e-11 2.80619e-11 -1.3473e-11 2.73601e-11 -1.09705e-11 2.65785e-11 -8.67697e-12 2.57371e-11 -6.58891e-12 2.48472e-11 -4.694e-12 2.39206e-11 -2.97391e-12 2.29652e-11 -1.40973e-12 2.19908e-11 1.0324e-14 2.10101e-11 1.29188e-12 2.00358e-11 2.43967e-12 1.90745e-11 3.47306e-12 1.81347e-11 4.40252e-12 1.72219e-11 5.24178e-12 1.63386e-11 5.99837e-12 1.54917e-11 6.67052e-12 1.46826e-11 7.26974e-12 1.3907e-11 7.81392e-12 1.3158e-11 8.31496e-12 1.24281e-11 8.78098e-12 1.17092e-11 9.22052e-12 1.09923e-11 9.64413e-12 1.02752e-11 1.00496e-11 9.55847e-12 1.04356e-11 8.83959e-12 1.08067e-11 8.11457e-12 1.11657e-11 7.38024e-12 1.15082e-11 6.63562e-12 1.18282e-11 5.88103e-12 1.21206e-11 5.11774e-12 1.2381e-11 4.34707e-12 1.26076e-11 3.56849e-12 1.28021e-11 2.78128e-12 1.29628e-11 1.98538e-12 1.30866e-11 1.18071e-12 1.31728e-11 3.68884e-13 1.32216e-11 -4.47185e-13 1.32336e-11 -1.26405e-12 1.32099e-11 -2.0779e-12 1.31496e-11 -2.88421e-12 1.30492e-11 -3.67916e-12 1.29064e-11 -4.46151e-12 1.27242e-11 -5.2316e-12 1.25077e-11 -5.98939e-12 1.22606e-11 -6.73428e-12 1.19864e-11 -7.46729e-12 1.16917e-11 -8.19329e-12 1.13842e-11 -8.91868e-12 1.10645e-11 -9.64715e-12 1.07259e-11 -1.03801e-11 1.03641e-11 -1.11209e-11 9.98147e-12 -1.18745e-11 9.57764e-12 -1.26428e-11 9.14507e-12 -1.34268e-11 8.67876e-12 -1.4229e-11 8.181e-12 -1.5055e-11 7.6485e-12 -1.59074e-11 7.06581e-12 -1.6785e-11 6.42002e-12 -1.76887e-11 5.70582e-12 -1.86199e-11 4.90986e-12 -1.95722e-11 4.01195e-12 -2.05368e-11 3.00288e-12 -2.15097e-11 1.88004e-12 -2.24837e-11 6.29865e-13 -2.34506e-11 -7.5558e-13 -2.44104e-11 -2.29066e-12 -2.53418e-11 -3.97078e-12 -2.62196e-11 -5.82014e-12 -2.70243e-11 -7.88615e-12 -2.77529e-11 -1.0163e-11 -2.83862e-11 -1.26714e-11 -2.8878e-11 -1.53736e-11 -2.92614e-11 -1.82385e-11 -2.94433e-11 -2.1333e-11 -2.94398e-11 -2.45936e-11 -2.91881e-11 -2.81353e-11 -2.86558e-11 -3.19551e-11 -2.785e-11 -3.58823e-11 -2.67603e-11 -3.98464e-11 -2.53906e-11 -4.37855e-11 -2.36879e-11 -4.71725e-11 -2.17303e-11 -4.90225e-11 -1.97104e-11 -4.74063e-11 -1.79948e-11 -3.95427e-11 -1.69588e-11 -2.31151e-11 1.71907e-12 -1.70087e-11 2.13598e-11 1.01624e-12 2.23721e-11 -2.53617e-11 2.40794e-11 -4.26217e-11 2.60484e-11 -5.07724e-11 2.79629e-11 -5.23358e-11 2.96456e-11 -5.02203e-11 3.10019e-11 -4.64443e-11 3.20145e-11 -4.21117e-11 3.26989e-11 -3.77166e-11 3.30765e-11 -3.34458e-11 3.31699e-11 -2.93704e-11 3.30105e-11 -2.55189e-11 3.26372e-11 -2.19181e-11 3.20847e-11 -1.85752e-11 3.13872e-11 -1.5493e-11 3.057e-11 -1.26561e-11 2.96599e-11 -1.00607e-11 2.86785e-11 -7.69565e-12 2.76463e-11 -5.55682e-12 2.65747e-11 -3.62237e-12 2.54753e-11 -1.87443e-12 2.43596e-11 -2.93888e-13 2.32425e-11 1.12755e-12 2.21357e-11 2.39879e-12 2.10461e-11 3.52947e-12 1.99802e-11 4.5391e-12 1.89426e-11 5.44029e-12 1.79433e-11 6.24111e-12 1.69912e-11 6.95052e-12 1.60869e-11 7.57481e-12 1.52263e-11 8.13034e-12 1.44056e-11 8.6346e-12 1.36189e-11 9.10178e-12 1.28558e-11 9.54417e-12 1.21058e-11 9.97077e-12 1.13631e-11 1.0387e-11 1.06274e-11 1.07855e-11 9.89523e-12 1.11678e-11 9.1614e-12 1.15405e-11 8.42134e-12 1.19056e-11 7.67098e-12 1.22584e-11 6.90801e-12 1.2591e-11 6.13086e-12 1.28976e-11 5.33864e-12 1.31731e-11 4.53114e-12 1.3415e-11 3.71034e-12 1.36228e-11 2.87882e-12 1.37941e-11 2.03911e-12 1.39261e-11 1.19375e-12 1.40178e-11 3.44462e-13 1.40705e-11 -5.07289e-13 1.40851e-11 -1.35758e-12 1.40599e-11 -2.20061e-12 1.39925e-11 -3.03193e-12 1.38803e-11 -3.84988e-12 1.37242e-11 -4.65446e-12 1.35286e-11 -5.44603e-12 1.32991e-11 -6.22405e-12 1.30385e-11 -6.98788e-12 1.27501e-11 -7.73996e-12 1.24437e-11 -8.48431e-12 1.21285e-11 -9.22414e-12 1.18043e-11 -9.96379e-12 1.14655e-11 -1.07094e-11 1.11096e-11 -1.14661e-11 1.07381e-11 -1.22378e-11 1.03491e-11 -1.3029e-11 9.93625e-12 -1.38463e-11 9.49606e-12 -1.46949e-11 9.02967e-12 -1.55773e-11 8.53115e-12 -1.64965e-11 7.98532e-12 -1.74538e-11 7.37758e-12 -1.84484e-11 6.70069e-12 -1.94754e-11 5.93688e-12 -2.0533e-11 5.06944e-12 -2.16219e-11 4.09139e-12 -2.27317e-11 2.98943e-12 -2.3852e-11 1.74979e-12 -2.49719e-11 3.64077e-13 -2.60868e-11 -1.17584e-12 -2.7186e-11 -2.87152e-12 -2.82412e-11 -4.76492e-12 -2.92454e-11 -6.88224e-12 -3.01602e-11 -9.24868e-12 -3.10252e-11 -1.1807e-11 -3.17598e-11 -1.46394e-11 -3.23417e-11 -1.76567e-11 -3.2747e-11 -2.09276e-11 -3.29323e-11 -2.44084e-11 -3.28397e-11 -2.82283e-11 -3.25299e-11 -3.22656e-11 -3.19536e-11 -3.64592e-11 -3.10199e-11 -4.07804e-11 -2.97279e-11 -4.50776e-11 -2.80933e-11 -4.88072e-11 -2.62414e-11 -5.08748e-11 -2.43364e-11 -4.93116e-11 -2.26436e-11 -4.12355e-11 -2.16602e-11 -2.40982e-11 1.89591e-12 -2.18369e-11 2.64198e-11 1.12635e-12 2.74035e-11 -2.63457e-11 2.90845e-11 -4.4303e-11 3.10066e-11 -5.26949e-11 3.28517e-11 -5.41813e-11 3.44232e-11 -5.17922e-11 3.56352e-11 -4.76567e-11 3.64843e-11 -4.29612e-11 3.69771e-11 -3.82098e-11 3.71333e-11 -3.36024e-11 3.6984e-11 -2.92216e-11 3.65785e-11 -2.51138e-11 3.59568e-11 -2.12969e-11 3.51574e-11 -1.77762e-11 3.42112e-11 -1.45471e-11 3.31563e-11 -1.16016e-11 3.20183e-11 -8.92285e-12 3.0823e-11 -6.50055e-12 2.95832e-11 -4.31714e-12 2.83144e-11 -2.35364e-12 2.70325e-11 -5.92589e-13 2.57522e-11 9.86449e-13 2.4486e-11 2.3939e-12 2.32429e-11 3.64204e-12 2.20274e-11 4.74509e-12 2.08486e-11 5.71804e-12 1.97174e-11 6.57155e-12 1.86438e-11 7.31477e-12 1.76298e-11 7.96459e-12 1.66672e-11 8.53736e-12 1.57518e-11 9.04577e-12 1.48814e-11 9.50503e-12 1.4053e-11 9.93028e-12 1.32604e-11 1.0337e-11 1.24952e-11 1.07361e-11 1.17476e-11 1.11346e-11 1.1005e-11 1.15282e-11 1.02605e-11 1.19123e-11 9.51015e-12 1.22908e-11 8.7498e-12 1.26659e-11 7.97693e-12 1.30312e-11 7.19004e-12 1.33778e-11 6.38543e-12 1.37021e-11 5.56102e-12 1.39974e-11 4.71774e-12 1.42581e-11 3.85924e-12 1.44811e-11 2.98981e-12 1.46633e-11 2.11291e-12 1.48027e-11 1.23026e-12 1.49002e-11 3.43095e-13 1.49574e-11 -5.45707e-13 1.49736e-11 -1.43115e-12 1.49451e-11 -2.30848e-12 1.48695e-11 -3.17453e-12 1.4746e-11 -4.02757e-12 1.45769e-11 -4.86525e-12 1.4366e-11 -5.6846e-12 1.41182e-11 -6.48552e-12 1.38393e-11 -7.27e-12 1.35346e-11 -8.03906e-12 1.32128e-11 -8.79317e-12 1.28828e-11 -9.53786e-12 1.25491e-11 -1.02832e-11 1.22109e-11 -1.10381e-11 1.18645e-11 -1.18074e-11 1.15074e-11 -1.25976e-11 1.11393e-11 -1.34183e-11 1.07569e-11 -1.42758e-11 1.03537e-11 -1.51705e-11 9.92453e-12 -1.61045e-11 9.46538e-12 -1.70813e-11 8.96239e-12 -1.81041e-11 8.40058e-12 -1.91743e-11 7.77097e-12 -2.02943e-11 7.05679e-12 -2.14652e-11 6.2401e-12 -2.26801e-11 5.30605e-12 -2.39302e-11 4.23933e-12 -2.5204e-11 3.02352e-12 -2.64894e-11 1.64958e-12 -2.77783e-11 1.1323e-13 -2.90581e-11 -1.59173e-12 -3.03108e-11 -3.51237e-12 -3.15348e-11 -5.65871e-12 -3.27153e-11 -8.06862e-12 -3.37939e-11 -1.07287e-11 -3.4764e-11 -1.36692e-11 -3.55947e-11 -1.68258e-11 -3.62425e-11 -2.02796e-11 -3.66581e-11 -2.3993e-11 -3.68507e-11 -2.80363e-11 -3.67614e-11 -3.23555e-11 -3.63248e-11 -3.6896e-11 -3.55229e-11 -4.15821e-11 -3.435e-11 -4.62506e-11 -3.28325e-11 -5.0325e-11 -3.10198e-11 -5.26877e-11 -2.91846e-11 -5.11466e-11 -2.76086e-11 -4.2811e-11 -2.6804e-11 -2.49025e-11 2.14101e-12 -2.70491e-11 3.18092e-11 1.24063e-12 3.2792e-11 -2.73289e-11 3.4464e-11 -4.59754e-11 3.63597e-11 -5.4591e-11 3.81387e-11 -5.59607e-11 3.9596e-11 -5.32499e-11 4.06653e-11 -4.87264e-11 4.1328e-11 -4.36243e-11 4.15893e-11 -3.84715e-11 4.14841e-11 -3.34977e-11 4.10633e-11 -2.88013e-11 4.03799e-11 -2.44309e-11 3.94781e-11 -2.03956e-11 3.84011e-11 -1.66997e-11 3.71877e-11 -1.33341e-11 3.58706e-11 -1.02848e-11 3.44773e-11 -7.5299e-12 3.30333e-11 -5.05693e-12 3.15597e-11 -2.84384e-12 3.00766e-11 -8.70705e-13 2.85993e-11 8.84523e-13 2.71448e-11 2.44082e-12 2.57215e-11 3.81725e-12 2.43375e-11 5.02601e-12 2.30006e-11 6.08201e-12 2.17224e-11 6.99624e-12 2.05107e-11 7.78329e-12 1.9365e-11 8.46035e-12 1.82821e-11 9.04748e-12 1.72573e-11 9.56209e-12 1.6286e-11 1.0017e-11 1.53658e-11 1.04251e-11 1.44938e-11 1.08023e-11 1.36648e-11 1.1166e-11 1.28752e-11 1.15258e-11 1.21183e-11 1.18915e-11 1.13794e-11 1.22671e-11 1.06382e-11 1.26535e-11 9.88125e-12 1.30477e-11 9.10514e-12 1.34419e-11 8.31077e-12 1.38255e-11 7.4973e-12 1.41912e-11 6.66299e-12 1.45363e-11 5.80661e-12 1.48536e-11 4.92987e-12 1.51346e-11 4.03625e-12 1.53744e-11 3.12949e-12 1.55697e-11 2.21244e-12 1.57194e-11 1.28626e-12 1.5826e-11 3.54807e-13 1.58885e-11 -5.75478e-13 1.59035e-11 -1.50251e-12 1.58717e-11 -2.42347e-12 1.579e-11 -3.33456e-12 1.56566e-11 -4.23066e-12 1.54725e-11 -5.10722e-12 1.52421e-11 -5.96068e-12 1.49713e-11 -6.78786e-12 1.46663e-11 -7.59e-12 1.43367e-11 -8.36905e-12 1.3992e-11 -9.12862e-12 1.36425e-11 -9.87623e-12 1.32969e-11 -1.06213e-11 1.29562e-11 -1.13751e-11 1.26183e-11 -1.21487e-11 1.2281e-11 -1.29523e-11 1.19429e-11 -1.37946e-11 1.15992e-11 -1.46825e-11 1.12417e-11 -1.56199e-11 1.08621e-11 -1.66079e-11 1.04536e-11 -1.76523e-11 1.00068e-11 -1.87559e-11 9.50428e-12 -1.99216e-11 8.93653e-12 -2.11439e-11 8.27902e-12 -2.2418e-11 7.51406e-12 -2.37461e-11 6.63414e-12 -2.51216e-11 5.61507e-12 -2.65411e-11 4.44334e-12 -2.7999e-11 3.10783e-12 -2.94874e-11 1.60176e-12 -3.09853e-11 -9.38873e-14 -3.24841e-11 -2.01383e-12 -3.39497e-11 -4.19338e-12 -3.53589e-11 -6.65948e-12 -3.66917e-11 -9.39556e-12 -3.79495e-11 -1.2411e-11 -3.90686e-11 -1.57064e-11 -4.00359e-11 -1.93125e-11 -4.0744e-11 -2.32852e-11 -4.11716e-11 -2.7609e-11 -4.13082e-11 -3.22189e-11 -4.10641e-11 -3.71399e-11 -4.04056e-11 -4.22405e-11 -3.93686e-11 -4.72878e-11 -3.79538e-11 -5.17399e-11 -3.62702e-11 -5.43712e-11 -3.45313e-11 -5.28851e-11 -3.30787e-11 -4.42633e-11 -3.22237e-11 -2.57575e-11 2.32381e-12 -3.24066e-11 3.75513e-11 1.37102e-12 3.85602e-11 -2.83382e-11 4.0254e-11 -4.76694e-11 4.21493e-11 -5.64867e-11 4.38762e-11 -5.76879e-11 4.52301e-11 -5.46043e-11 4.61383e-11 -4.9635e-11 4.65723e-11 -4.40588e-11 4.65615e-11 -3.84612e-11 4.61581e-11 -3.30947e-11 4.54259e-11 -2.80695e-11 4.44219e-11 -2.34273e-11 4.31988e-11 -1.9173e-11 4.18019e-11 -1.53032e-11 4.02768e-11 -1.18094e-11 3.86569e-11 -8.66535e-12 3.6978e-11 -5.85141e-12 3.52646e-11 -3.34401e-12 3.35417e-11 -1.12137e-12 3.18296e-11 8.40973e-13 3.01479e-11 2.5659e-12 2.85094e-11 4.07908e-12 2.69248e-11 5.4016e-12 2.53989e-11 6.55184e-12 2.39421e-11 7.53871e-12 2.25603e-11 8.37783e-12 2.12574e-11 9.08609e-12 2.00304e-11 9.68719e-12 1.88738e-11 1.02038e-11 1.7784e-11 1.06518e-11 1.6757e-11 1.10437e-11 1.57904e-11 1.13915e-11 1.48817e-11 1.17108e-11 1.4028e-11 1.20195e-11 1.32237e-11 1.23298e-11 1.24627e-11 1.26523e-11 1.17253e-11 1.30042e-11 1.09896e-11 1.33891e-11 1.02417e-11 1.37954e-11 9.47384e-12 1.42097e-11 8.68099e-12 1.46183e-11 7.85998e-12 1.50121e-11 7.01024e-12 1.53858e-11 6.1321e-12 1.57314e-11 5.22661e-12 1.60397e-11 4.29519e-12 1.63053e-11 3.33941e-12 1.6525e-11 2.36086e-12 1.66975e-11 1.36454e-12 1.68219e-11 3.60694e-13 1.6892e-11 -6.39434e-13 1.69032e-11 -1.62766e-12 1.68594e-11 -2.60037e-12 1.67621e-11 -3.55471e-12 1.66103e-11 -4.48808e-12 1.64052e-11 -5.39899e-12 1.61524e-11 -6.2852e-12 1.58571e-11 -7.14551e-12 1.55264e-11 -7.9797e-12 1.51708e-11 -8.78754e-12 1.47999e-11 -9.56812e-12 1.44232e-11 -1.03228e-11 1.40517e-11 -1.10598e-11 1.36933e-11 -1.17953e-11 1.33539e-11 -1.25488e-11 1.30346e-11 -1.33374e-11 1.27317e-11 -1.41753e-11 1.24372e-11 -1.5076e-11 1.21425e-11 -1.60469e-11 1.1833e-11 -1.70906e-11 1.14974e-11 -1.82072e-11 1.11233e-11 -1.93977e-11 1.06947e-11 -2.06573e-11 1.0196e-11 -2.19814e-11 9.60305e-12 -2.33723e-11 8.90514e-12 -2.48295e-11 8.0916e-12 -2.63501e-11 7.13608e-12 -2.79343e-11 6.02799e-12 -2.95796e-11 4.75336e-12 -3.12781e-11 3.3003e-12 -3.29994e-11 1.62718e-12 -3.47273e-11 -2.86024e-13 -3.64447e-11 -2.47605e-12 -3.81337e-11 -4.97014e-12 -3.97825e-11 -7.74632e-12 -4.13642e-11 -1.08292e-11 -4.2805e-11 -1.42657e-11 -4.40541e-11 -1.80637e-11 -4.50693e-11 -2.22704e-11 -4.58078e-11 -2.68706e-11 -4.61893e-11 -3.18372e-11 -4.61969e-11 -3.71322e-11 -4.58032e-11 -4.26344e-11 -4.49576e-11 -4.81339e-11 -4.36848e-11 -5.30129e-11 -4.20598e-11 -5.5996e-11 -4.03315e-11 -5.46134e-11 -3.87225e-11 -4.58725e-11 -3.76925e-11 -2.6788e-11 2.39918e-12 -3.77683e-11 4.36164e-11 1.47553e-12 4.46985e-11 -2.94206e-11 4.64681e-11 -4.94393e-11 4.8404e-11 -5.84229e-11 5.01039e-11 -5.9388e-11 5.13544e-11 -5.58551e-11 5.20646e-11 -5.03455e-11 5.22273e-11 -4.42218e-11 5.18996e-11 -3.8134e-11 5.11524e-11 -3.23479e-11 5.00564e-11 -2.69738e-11 4.86751e-11 -2.20464e-11 4.70733e-11 -1.75716e-11 4.53097e-11 -1.35401e-11 4.34325e-11 -9.93257e-12 4.14802e-11 -6.71357e-12 3.94879e-11 -3.85962e-12 3.74858e-11 -1.34246e-12 3.54994e-11 8.64606e-13 3.35498e-11 2.79009e-12 3.16529e-11 4.46236e-12 2.98215e-11 5.91015e-12 2.80645e-11 7.15837e-12 2.63876e-11 8.22851e-12 2.47957e-11 9.13042e-12 2.32933e-11 9.87996e-12 2.18796e-11 1.04996e-11 2.0551e-11 1.10155e-11 1.93066e-11 1.14479e-11 1.81465e-11 1.18116e-11 1.70714e-11 1.21184e-11 1.6082e-11 1.23806e-11 1.51727e-11 1.26196e-11 1.43329e-11 1.28588e-11 1.35469e-11 1.31153e-11 1.2797e-11 1.34018e-11 1.207e-11 1.37308e-11 1.13503e-11 1.41084e-11 1.06222e-11 1.45233e-11 9.87105e-12 1.49606e-11 9.08501e-12 1.54041e-11 8.25914e-12 1.58377e-11 7.39385e-12 1.62508e-11 6.48913e-12 1.66358e-11 5.54397e-12 1.69844e-11 4.56036e-12 1.72885e-11 3.54325e-12 1.75417e-11 2.4996e-12 1.77407e-11 1.43855e-12 1.78826e-11 3.6964e-13 1.79605e-11 -6.96552e-13 1.7969e-11 -1.74864e-12 1.7911e-11 -2.77798e-12 1.77909e-11 -3.7806e-12 1.76123e-11 -4.75543e-12 1.73795e-11 -5.7009e-12 1.70974e-11 -6.61709e-12 1.6773e-11 -7.50314e-12 1.64122e-11 -8.35666e-12 1.60242e-11 -9.17495e-12 1.56181e-11 -9.95792e-12 1.52062e-11 -1.07103e-11 1.48041e-11 -1.14405e-11 1.44236e-11 -1.2161e-11 1.40746e-11 -1.28916e-11 1.37654e-11 -1.36582e-11 1.34985e-11 -1.44857e-11 1.32649e-11 -1.53893e-11 1.30463e-11 -1.6383e-11 1.28266e-11 -1.74708e-11 1.25851e-11 -1.86503e-11 1.23025e-11 -1.99168e-11 1.1961e-11 -2.12684e-11 1.15474e-11 -2.27067e-11 1.10413e-11 -2.42281e-11 1.04267e-11 -2.58287e-11 9.69242e-12 -2.75129e-11 8.82054e-12 -2.92788e-11 7.79387e-12 -3.11205e-11 6.59492e-12 -3.30241e-11 5.2036e-12 -3.49697e-11 3.57248e-12 -3.69471e-11 1.6912e-12 -3.8944e-11 -4.79082e-13 -4.09457e-11 -2.96833e-12 -4.29476e-11 -5.74445e-12 -4.48591e-11 -8.91799e-12 -4.6626e-11 -1.24994e-11 -4.82159e-11 -1.64742e-11 -4.96102e-11 -2.08764e-11 -5.07217e-11 -2.57591e-11 -5.14802e-11 -3.10787e-11 -5.18385e-11 -3.67745e-11 -5.17016e-11 -4.27719e-11 -5.10369e-11 -4.8799e-11 -4.98875e-11 -5.41624e-11 -4.82954e-11 -5.75884e-11 -4.63801e-11 -5.65293e-11 -4.45936e-11 -4.76597e-11 -4.34942e-11 -2.78881e-11 2.4973e-12 -4.35928e-11 5.00502e-11 1.50459e-12 5.12662e-11 -3.06367e-11 5.31871e-11 -5.13603e-11 5.52181e-11 -6.0454e-11 5.69188e-11 -6.10889e-11 5.80469e-11 -5.69834e-11 5.85145e-11 -5.08134e-11 5.83605e-11 -4.4068e-11 5.76606e-11 -3.74344e-11 5.65008e-11 -3.11884e-11 5.49677e-11 -2.54411e-11 5.31485e-11 -2.02276e-11 5.11195e-11 -1.5543e-11 4.89449e-11 -1.13658e-11 4.66708e-11 -7.65892e-12 4.43463e-11 -4.38958e-12 4.20104e-11 -1.52412e-12 3.96963e-11 9.7121e-13 3.74262e-11 3.13421e-12 3.52214e-11 4.99454e-12 3.30955e-11 6.5879e-12 3.106e-11 7.94536e-12 2.9122e-11 9.0961e-12 2.72897e-11 1.00606e-11 2.55616e-11 1.08583e-11 2.39359e-11 1.15054e-11 2.24095e-11 1.20258e-11 2.09809e-11 1.24438e-11 1.96523e-11 1.27763e-11 1.84271e-11 1.30365e-11 1.73101e-11 1.3235e-11 1.63025e-11 1.33878e-11 1.54001e-11 1.35214e-11 1.45907e-11 1.36678e-11 1.38494e-11 1.38561e-11 1.31464e-11 1.41043e-11 1.24568e-11 1.442e-11 1.1763e-11 1.48019e-11 1.10485e-11 1.52376e-11 1.03004e-11 1.57085e-11 9.51006e-12 1.61944e-11 8.67105e-12 1.66765e-11 7.77949e-12 1.71421e-11 6.83432e-12 1.75806e-11 5.83847e-12 1.798e-11 4.79915e-12 1.83275e-11 3.72499e-12 1.86156e-11 2.62519e-12 1.88404e-11 1.50912e-12 1.89985e-11 3.85486e-13 1.9084e-11 -7.37585e-13 1.90919e-11 -1.84988e-12 1.90231e-11 -2.94108e-12 1.88818e-11 -4.00244e-12 1.86734e-11 -5.02843e-12 1.84052e-11 -6.01767e-12 1.80864e-11 -6.96855e-12 1.77236e-11 -7.87762e-12 1.7321e-11 -8.7396e-12 1.68859e-11 -9.55311e-12 1.64313e-11 -1.03221e-11 1.5975e-11 -1.10526e-11 1.55345e-11 -1.17544e-11 1.51254e-11 -1.24435e-11 1.47638e-11 -1.31448e-11 1.44668e-11 -1.38871e-11 1.42411e-11 -1.46984e-11 1.40763e-11 -1.56033e-11 1.39511e-11 -1.66167e-11 1.38398e-11 -1.77413e-11 1.37094e-11 -1.8973e-11 1.35339e-11 -2.03118e-11 1.32994e-11 -2.1756e-11 1.29913e-11 -2.33037e-11 1.25889e-11 -2.4954e-11 1.20768e-11 -2.67027e-11 1.14409e-11 -2.85471e-11 1.06645e-11 -3.04908e-11 9.73707e-12 -3.25283e-11 8.63175e-12 -3.46496e-11 7.32431e-12 -3.68559e-11 5.77832e-12 -3.91166e-11 3.95167e-12 -4.14355e-11 1.83951e-12 -4.37841e-11 -6.20114e-13 -4.6103e-11 -3.42628e-12 -4.83821e-11 -6.63978e-12 -5.06025e-11 -1.02797e-11 -5.2662e-11 -1.44151e-11 -5.44866e-11 -1.90519e-11 -5.60141e-11 -2.42318e-11 -5.71885e-11 -2.99047e-11 -5.79049e-11 -3.60589e-11 -5.80793e-11 -4.25981e-11 -5.76725e-11 -4.9206e-11 -5.66049e-11 -5.52304e-11 -5.49559e-11 -5.92381e-11 -5.29486e-11 -5.85374e-11 -5.10781e-11 -4.9531e-11 -4.98978e-11 -2.90689e-11 2.54685e-12 -4.99476e-11 5.70901e-11 1.41166e-12 5.84988e-11 -3.20455e-11 6.06304e-11 -5.3492e-11 6.27964e-11 -6.26201e-11 6.44892e-11 -6.27817e-11 6.54463e-11 -5.79406e-11 6.56164e-11 -5.09836e-11 6.50691e-11 -4.3521e-11 6.39063e-11 -3.62718e-11 6.22437e-11 -2.9526e-11 6.01954e-11 -2.33931e-11 5.78662e-11 -1.78987e-11 5.53401e-11 -1.30173e-11 5.26863e-11 -8.71232e-12 4.99656e-11 -4.93857e-12 4.72306e-11 -1.65489e-12 4.45222e-11 1.18393e-12 4.18699e-11 3.62314e-12 3.92962e-11 5.70765e-12 3.68192e-11 7.47138e-12 3.44517e-11 8.95513e-12 3.22038e-11 1.01931e-11 3.00816e-11 1.12182e-11 2.8087e-11 1.2055e-11 2.62196e-11 1.27256e-11 2.4472e-11 1.32529e-11 2.28377e-11 1.366e-11 2.1316e-11 1.39654e-11 1.99083e-11 1.41838e-11 1.8621e-11 1.43236e-11 1.74623e-11 1.43936e-11 1.64376e-11 1.44123e-11 1.55473e-11 1.44115e-11 1.47785e-11 1.44363e-11 1.40984e-11 1.45359e-11 1.34659e-11 1.47365e-11 1.28433e-11 1.50425e-11 1.22007e-11 1.54444e-11 1.1517e-11 1.59214e-11 1.07797e-11 1.64459e-11 9.98229e-12 1.69918e-11 9.12142e-12 1.75374e-11 8.19608e-12 1.80675e-11 7.20835e-12 1.85684e-11 6.16285e-12 1.90255e-11 5.06801e-12 1.94224e-11 3.93387e-12 1.97498e-11 2.77081e-12 2.00036e-11 1.58923e-12 2.01802e-11 3.98823e-13 2.02745e-11 -7.91338e-13 2.02821e-11 -1.97111e-12 2.02029e-11 -3.12878e-12 2.00395e-11 -4.25326e-12 1.97979e-11 -5.33854e-12 1.94905e-11 -6.38077e-12 1.91286e-11 -7.37328e-12 1.87159e-11 -8.30841e-12 1.82558e-11 -9.18129e-12 1.77584e-11 -9.99128e-12 1.72409e-11 -1.07411e-11 1.67244e-11 -1.14358e-11 1.6229e-11 -1.20867e-11 1.57762e-11 -1.27163e-11 1.53935e-11 -1.33566e-11 1.51072e-11 -1.40451e-11 1.49296e-11 -1.48226e-11 1.48538e-11 -1.57209e-11 1.48492e-11 -1.67513e-11 1.48699e-11 -1.79132e-11 1.48709e-11 -1.92034e-11 1.48237e-11 -2.06186e-11 1.47143e-11 -2.21535e-11 1.45258e-11 -2.38037e-11 1.42387e-11 -2.557e-11 1.38426e-11 -2.74513e-11 1.33215e-11 -2.94528e-11 1.26652e-11 -3.15793e-11 1.18627e-11 -3.38302e-11 1.08819e-11 -3.61935e-11 9.68705e-12 -3.86673e-11 8.25168e-12 -4.12483e-11 6.53216e-12 -4.38802e-11 4.47074e-12 -4.65913e-11 2.09009e-12 -4.93299e-11 -6.88673e-13 -5.20508e-11 -3.91962e-12 -5.47196e-11 -7.61133e-12 -5.72856e-11 -1.18493e-11 -5.96266e-11 -1.67111e-11 -6.16741e-11 -2.21849e-11 -6.33229e-11 -2.82567e-11 -6.44908e-11 -3.48915e-11 -6.50699e-11 -4.20193e-11 -6.4914e-11 -4.93621e-11 -6.40174e-11 -5.61276e-11 -6.24255e-11 -6.08307e-11 -6.03592e-11 -6.06043e-11 -5.8339e-11 -5.15515e-11 -5.70026e-11 -3.04054e-11 2.54664e-12 -5.70024e-11 6.51153e-11 1.18794e-12 6.67618e-11 -3.3692e-11 6.9116e-11 -5.58461e-11 7.13909e-11 -6.4895e-11 7.30107e-11 -6.44015e-11 7.37118e-11 -5.86417e-11 7.34811e-11 -5.0753e-11 7.24208e-11 -4.24608e-11 7.06725e-11 -3.45238e-11 6.83907e-11 -2.72444e-11 6.57211e-11 -2.07237e-11 6.27847e-11 -1.49626e-11 5.96808e-11 -9.9136e-12 5.64866e-11 -5.5184e-12 5.32721e-11 -1.72432e-12 5.00897e-11 1.52723e-12 4.69781e-11 4.29538e-12 4.39638e-11 6.63729e-12 4.10688e-11 8.60254e-12 3.83084e-11 1.02317e-11 3.56922e-11 1.15712e-11 3.32272e-11 1.2658e-11 3.09179e-11 1.35275e-11 2.87599e-11 1.4213e-11 2.67495e-11 1.47359e-11 2.48809e-11 1.51214e-11 2.3145e-11 1.53959e-11 2.15362e-11 1.55742e-11 2.00546e-11 1.56656e-11 1.87072e-11 1.56713e-11 1.75059e-11 1.5595e-11 1.64644e-11 1.54539e-11 1.55928e-11 1.52832e-11 1.48829e-11 1.51462e-11 1.42906e-11 1.51284e-11 1.37586e-11 1.52687e-11 1.32302e-11 1.5571e-11 1.26624e-11 1.60123e-11 1.20287e-11 1.65553e-11 1.13147e-11 1.71601e-11 1.05153e-11 1.77914e-11 9.63157e-12 1.84213e-11 8.66912e-12 1.90301e-11 7.63488e-12 1.96028e-11 6.53436e-12 2.01262e-11 5.37806e-12 2.0579e-11 4.17673e-12 2.09515e-11 2.94142e-12 2.12392e-11 1.6837e-12 2.14382e-11 4.1527e-13 2.15432e-11 -8.52583e-13 2.15502e-11 -2.10923e-12 2.14598e-11 -3.34346e-12 2.1274e-11 -4.5427e-12 2.09974e-11 -5.69877e-12 2.06467e-11 -6.80212e-12 2.0232e-11 -7.84132e-12 1.9755e-11 -8.80758e-12 1.92218e-11 -9.69465e-12 1.86451e-11 -1.05e-11 1.80459e-11 -1.12225e-11 1.74467e-11 -1.18643e-11 1.68706e-11 -1.244e-11 1.63519e-11 -1.29789e-11 1.59325e-11 -1.3522e-11 1.56504e-11 -1.41249e-11 1.55326e-11 -1.4847e-11 1.55759e-11 -1.57241e-11 1.57262e-11 -1.67663e-11 1.5912e-11 -1.79699e-11 1.60744e-11 -1.93245e-11 1.61782e-11 -2.08169e-11 1.62065e-11 -2.24342e-11 1.61429e-11 -2.41781e-11 1.59823e-11 -2.60555e-11 1.57194e-11 -2.80758e-11 1.53412e-11 -3.02482e-11 1.48368e-11 -3.2567e-11 1.41809e-11 -3.50336e-11 1.3348e-11 -3.76475e-11 1.23007e-11 -4.03909e-11 1.09946e-11 -4.32717e-11 9.41246e-12 -4.6286e-11 7.48428e-12 -4.93798e-11 5.18299e-12 -5.25649e-11 2.49578e-12 -5.58055e-11 -6.79308e-13 -5.90217e-11 -4.39513e-12 -6.21082e-11 -8.76293e-12 -6.50009e-11 -1.38188e-11 -6.7646e-11 -1.95404e-11 -6.99318e-11 -2.59714e-11 -7.17148e-11 -3.31086e-11 -7.28283e-11 -4.09059e-11 -7.31362e-11 -4.90545e-11 -7.25298e-11 -5.67346e-11 -7.10002e-11 -6.23608e-11 -6.88659e-11 -6.27388e-11 -6.66247e-11 -5.37927e-11 -6.50755e-11 -3.19546e-11 2.43884e-12 -6.49677e-11 7.46515e-11 7.86621e-13 7.65248e-11 -3.55653e-11 7.9054e-11 -5.83752e-11 8.13339e-11 -6.7175e-11 8.27428e-11 -6.58104e-11 8.30349e-11 -5.89339e-11 8.22298e-11 -4.99481e-11 8.04739e-11 -4.0705e-11 7.79702e-11 -3.20202e-11 7.49237e-11 -2.41981e-11 7.15095e-11 -1.73098e-11 6.78639e-11 -1.13171e-11 6.40975e-11 -6.1474e-12 6.03012e-11 -1.72233e-12 5.65449e-11 2.03181e-12 5.28774e-11 5.19461e-12 4.93322e-11 7.84047e-12 4.59344e-11 1.00351e-11 4.27035e-11 1.18334e-11 3.96506e-11 1.32846e-11 3.67838e-11 1.4438e-11 3.41047e-11 1.53371e-11 3.16088e-11 1.60234e-11 2.92897e-11 1.65321e-11 2.71388e-11 1.68867e-11 2.51513e-11 1.71091e-11 2.33214e-11 1.7226e-11 2.16351e-11 1.72608e-11 2.00826e-11 1.72185e-11 1.86692e-11 1.7085e-11 1.74163e-11 1.68484e-11 1.63545e-11 1.65161e-11 1.55088e-11 1.61294e-11 1.48759e-11 1.57796e-11 1.441e-11 1.55947e-11 1.40238e-11 1.56553e-11 1.36299e-11 1.59654e-11 1.31669e-11 1.64757e-11 1.26011e-11 1.71214e-11 1.192e-11 1.78414e-11 1.11242e-11 1.85874e-11 1.022e-11 1.93257e-11 9.21745e-12 2.00328e-11 8.12843e-12 2.0692e-11 6.96765e-12 2.12873e-11 5.74381e-12 2.18031e-11 4.46579e-12 2.22297e-11 3.14481e-12 2.25603e-11 1.7949e-12 2.27883e-11 4.31478e-13 2.29068e-11 -9.30112e-13 2.2912e-11 -2.27511e-12 2.28051e-11 -3.59284e-12 2.25921e-11 -4.87545e-12 2.22804e-11 -6.10865e-12 2.18802e-11 -7.27725e-12 2.14008e-11 -8.36986e-12 2.08477e-11 -9.37581e-12 2.02277e-11 -1.02854e-11 1.95546e-11 -1.109e-11 1.88506e-11 -1.17823e-11 1.81391e-11 -1.23593e-11 1.74479e-11 -1.28329e-11 1.68257e-11 -1.32368e-11 1.63366e-11 -1.36319e-11 1.60457e-11 -1.41039e-11 1.60049e-11 -1.47346e-11 1.62069e-11 -1.55734e-11 1.65653e-11 -1.66295e-11 1.69683e-11 -1.78851e-11 1.73303e-11 -1.93102e-11 1.76037e-11 -2.08762e-11 1.77727e-11 -2.25729e-11 1.78397e-11 -2.44118e-11 1.78211e-11 -2.64099e-11 1.77173e-11 -2.85782e-11 1.75092e-11 -3.0915e-11 1.71733e-11 -3.34211e-11 1.6687e-11 -3.60977e-11 1.60245e-11 -3.89534e-11 1.51562e-11 -4.19933e-11 1.40343e-11 -4.51932e-11 1.26118e-11 -4.86007e-11 1.08912e-11 -5.21608e-11 8.74267e-12 -5.58263e-11 6.16117e-12 -5.95841e-11 3.07855e-12 -6.33555e-11 -6.23704e-13 -6.70461e-11 -5.07271e-12 -7.06448e-11 -1.02205e-11 -7.40765e-11 -1.61091e-11 -7.71811e-11 -2.28669e-11 -7.97277e-11 -3.0562e-11 -8.15317e-11 -3.91021e-11 -8.24162e-11 -4.81705e-11 -8.22808e-11 -5.68704e-11 -8.09751e-11 -6.36665e-11 -7.87917e-11 -6.49221e-11 -7.63599e-11 -5.62245e-11 -7.46355e-11 -3.36791e-11 2.1128e-12 -7.43097e-11 8.65585e-11 1.63423e-13 8.85713e-11 -3.75781e-11 9.1087e-11 -6.08911e-11 9.31278e-11 -6.92158e-11 9.40567e-11 -6.67395e-11 9.36526e-11 -5.85299e-11 9.19896e-11 -4.82853e-11 8.92935e-11 -3.8009e-11 8.58309e-11 -2.85579e-11 8.18477e-11 -2.0215e-11 7.75395e-11 -1.30017e-11 7.30659e-11 -6.8436e-12 6.85505e-11 -1.63221e-12 6.40862e-11 2.74183e-12 5.97368e-11 6.38105e-12 5.5543e-11 9.3883e-12 5.15369e-11 1.18466e-11 4.77383e-11 1.38337e-11 4.41613e-11 1.54104e-11 4.08133e-11 1.66327e-11 3.76981e-11 1.75532e-11 3.48121e-11 1.8223e-11 3.21402e-11 1.86954e-11 2.96654e-11 1.9007e-11 2.73772e-11 1.91751e-11 2.52718e-11 1.92146e-11 2.33401e-11 1.91579e-11 2.1558e-11 1.90432e-11 1.99086e-11 1.88683e-11 1.8403e-11 1.85911e-11 1.70816e-11 1.81703e-11 1.59987e-11 1.75995e-11 1.52019e-11 1.69268e-11 1.47008e-11 1.62812e-11 1.44334e-11 1.58626e-11 1.4269e-11 1.58201e-11 1.40738e-11 1.6161e-11 1.37575e-11 1.67921e-11 1.32808e-11 1.75983e-11 1.26401e-11 1.84822e-11 1.18481e-11 1.93794e-11 1.09215e-11 2.02523e-11 9.87482e-12 2.10795e-11 8.72192e-12 2.1845e-11 7.47752e-12 2.25318e-11 6.15958e-12 2.31211e-11 4.78361e-12 2.36057e-11 3.36284e-12 2.39811e-11 1.91073e-12 2.42405e-11 4.42346e-13 2.43753e-11 -1.02599e-12 2.43806e-11 -2.47884e-12 2.42583e-11 -3.90132e-12 2.40151e-11 -5.27616e-12 2.36557e-11 -6.59029e-12 2.31948e-11 -7.83127e-12 2.26422e-11 -8.98566e-12 2.20025e-11 -1.00392e-11 2.12817e-11 -1.09776e-11 2.04936e-11 -1.17848e-11 1.96583e-11 -1.24422e-11 1.87971e-11 -1.29388e-11 1.7945e-11 -1.32803e-11 1.71677e-11 -1.3502e-11 1.65587e-11 -1.36812e-11 1.62254e-11 -1.39466e-11 1.62706e-11 -1.44364e-11 1.66972e-11 -1.52241e-11 1.73535e-11 -1.63049e-11 1.80498e-11 -1.76301e-11 1.86562e-11 -1.91393e-11 1.91134e-11 -2.07858e-11 1.94197e-11 -2.25658e-11 1.962e-11 -2.45043e-11 1.97597e-11 -2.66241e-11 1.98372e-11 -2.89312e-11 1.98166e-11 -3.14224e-11 1.96647e-11 -3.41029e-11 1.93677e-11 -3.69859e-11 1.89076e-11 -4.00776e-11 1.82478e-11 -4.34162e-11 1.73725e-11 -4.69922e-11 1.61874e-11 -5.07732e-11 1.4672e-11 -5.47949e-11 1.27644e-11 -5.89763e-11 1.03426e-11 -6.32721e-11 7.37429e-12 -6.76522e-11 3.75601e-12 -7.21132e-11 -6.12356e-13 -7.65863e-11 -5.74794e-12 -8.09168e-11 -1.17789e-11 -8.49266e-11 -1.88572e-11 -8.84359e-11 -2.70529e-11 -9.11965e-11 -3.63419e-11 -9.29526e-11 -4.64147e-11 -9.34268e-11 -5.63962e-11 -9.2616e-11 -6.44773e-11 -9.07287e-11 -6.68093e-11 -8.84205e-11 -5.85328e-11 -8.65453e-11 -3.55545e-11 1.59723e-12 -8.603e-11 1.0208e-10 -6.47516e-13 1.0397e-10 -3.9468e-11 1.06049e-10 -6.2971e-11 1.07366e-10 -7.05329e-11 1.07322e-10 -6.66952e-11 1.05764e-10 -5.69727e-11 1.02863e-10 -4.53842e-11 9.89193e-11 -3.40653e-11 9.42394e-11 -2.38781e-11 8.91055e-11 -1.50813e-11 8.37389e-11 -7.63535e-12 7.83164e-11 -1.42123e-12 7.29634e-11 3.72059e-12 6.77647e-11 7.94036e-12 6.27715e-11 1.13741e-11 5.80218e-11 1.41379e-11 5.35345e-11 1.63338e-11 4.93248e-11 1.80434e-11 4.54e-11 1.93352e-11 4.1764e-11 2.02687e-11 3.84146e-11 2.09027e-11 3.53372e-11 2.13005e-11 3.25028e-11 2.15298e-11 2.98789e-11 2.16308e-11 2.74547e-11 2.15994e-11 2.5237e-11 2.14324e-11 2.32147e-11 2.11804e-11 2.13445e-11 2.09137e-11 1.95855e-11 2.06276e-11 1.79492e-11 2.02277e-11 1.65072e-11 1.96127e-11 1.53688e-11 1.87383e-11 1.46392e-11 1.76568e-11 1.43627e-11 1.65581e-11 1.44446e-11 1.57811e-11 1.46432e-11 1.56217e-11 1.47333e-11 1.60711e-11 1.4601e-11 1.69245e-11 1.42206e-11 1.79786e-11 1.36097e-11 1.90929e-11 1.27996e-11 2.01894e-11 1.18197e-11 2.1232e-11 1.0694e-11 2.22052e-11 9.44373e-12 2.30951e-11 8.09247e-12 2.38829e-11 6.65976e-12 2.45536e-11 5.16244e-12 2.51029e-11 3.61485e-12 2.55286e-11 2.03239e-12 2.58229e-11 4.31738e-13 2.5976e-11 -1.16782e-12 2.59804e-11 -2.74626e-12 2.58371e-11 -4.28478e-12 2.5554e-11 -5.76908e-12 2.51405e-11 -7.18338e-12 2.46097e-11 -8.51131e-12 2.39707e-11 -9.73769e-12 2.32295e-11 -1.08479e-11 2.23926e-11 -1.18242e-11 2.14706e-11 -1.2642e-11 2.04769e-11 -1.32702e-11 1.9426e-11 -1.36793e-11 1.83546e-11 -1.38529e-11 1.73417e-11 -1.38139e-11 1.65199e-11 -1.36597e-11 1.60715e-11 -1.35995e-11 1.62108e-11 -1.38791e-11 1.69772e-11 -1.46088e-11 1.80837e-11 -1.57477e-11 1.91893e-11 -1.71879e-11 2.00969e-11 -1.88162e-11 2.07421e-11 -2.05638e-11 2.11676e-11 -2.24253e-11 2.14817e-11 -2.4446e-11 2.17807e-11 -2.6671e-11 2.20625e-11 -2.91064e-11 2.22523e-11 -3.17396e-11 2.22982e-11 -3.45758e-11 2.22041e-11 -3.76495e-11 2.19811e-11 -4.09941e-11 2.15922e-11 -4.46088e-11 2.09868e-11 -4.85444e-11 2.01228e-11 -5.27658e-11 1.88935e-11 -5.7238e-11 1.72368e-11 -6.19287e-11 1.50333e-11 -6.68407e-11 1.22859e-11 -7.19663e-11 8.88104e-12 -7.72762e-11 4.697e-12 -8.26659e-11 -3.58421e-13 -8.80276e-11 -6.41708e-12 -9.3164e-11 -1.37208e-11 -9.78685e-11 -2.23487e-11 -1.01824e-10 -3.23867e-11 -1.04766e-10 -4.34727e-11 -1.0641e-10 -5.47515e-11 -1.06637e-10 -6.42499e-11 -1.05572e-10 -6.78745e-11 -1.0371e-10 -6.03951e-11 -1.01994e-10 -3.72697e-11 9.65632e-13 -1.01363e-10 1.22663e-10 -1.53259e-12 1.23913e-10 -4.07184e-11 1.24802e-10 -6.38604e-11 1.24569e-10 -7.02997e-11 1.22778e-10 -6.49043e-11 1.19428e-10 -5.36236e-11 1.14801e-10 -4.07571e-11 1.09227e-10 -2.8492e-11 1.03027e-10 -1.76777e-11 9.65203e-11 -8.5751e-12 8.99293e-11 -1.04449e-12 8.34418e-11 5.06597e-12 7.71702e-11 9.99197e-12 7.11827e-11 1.39277e-11 6.55162e-11 1.70405e-11 6.0196e-11 1.9458e-11 5.52253e-11 2.13044e-11 5.0605e-11 2.26638e-11 4.63407e-11 2.35995e-11 4.24253e-11 2.41842e-11 3.88555e-11 2.44724e-11 3.56024e-11 2.45536e-11 3.26227e-11 2.45096e-11 2.98611e-11 2.43925e-11 2.73095e-11 2.41511e-11 2.50013e-11 2.37407e-11 2.29362e-11 2.32457e-11 2.10207e-11 2.28293e-11 1.9144e-11 2.25045e-11 1.73091e-11 2.20627e-11 1.56482e-11 2.12738e-11 1.43613e-11 2.00254e-11 1.36731e-11 1.83452e-11 1.37191e-11 1.65123e-11 1.43481e-11 1.51524e-11 1.50998e-11 1.48701e-11 1.5587e-11 1.55839e-11 1.56743e-11 1.68372e-11 1.53728e-11 1.828e-11 1.47493e-11 1.97162e-11 1.38773e-11 2.10612e-11 1.28129e-11 2.22963e-11 1.15927e-11 2.34252e-11 1.0241e-11 2.44466e-11 8.77841e-12 2.53452e-11 7.22235e-12 2.61094e-11 5.59043e-12 2.67345e-11 3.89906e-12 2.72197e-11 2.16488e-12 2.75569e-11 4.10909e-13 2.773e-11 -1.335e-12 2.77264e-11 -3.0459e-12 2.75481e-11 -4.70536e-12 2.72137e-11 -6.30391e-12 2.67393e-11 -7.82923e-12 2.61353e-11 -9.26268e-12 2.54046e-11 -1.05838e-11 2.45512e-11 -1.17732e-11 2.35826e-11 -1.28127e-11 2.25107e-11 -1.36712e-11 2.13361e-11 -1.43003e-11 2.00555e-11 -1.46331e-11 1.86876e-11 -1.46084e-11 1.73172e-11 -1.42111e-11 1.61227e-11 -1.35491e-11 1.54095e-11 -1.29681e-11 1.56299e-11 -1.2933e-11 1.69422e-11 -1.36171e-11 1.87679e-11 -1.48927e-11 2.0465e-11 -1.65387e-11 2.1743e-11 -1.83581e-11 2.25616e-11 -2.02276e-11 2.30373e-11 -2.21405e-11 2.33948e-11 -2.42048e-11 2.38452e-11 -2.65152e-11 2.43731e-11 -2.90686e-11 2.4806e-11 -3.1829e-11 2.50587e-11 -3.48014e-11 2.51764e-11 -3.80413e-11 2.52208e-11 -4.16192e-11 2.51698e-11 -4.55393e-11 2.49069e-11 -4.98006e-11 2.43844e-11 -5.44108e-11 2.35039e-11 -5.93371e-11 2.21632e-11 -6.45937e-11 2.02897e-11 -7.01899e-11 1.78817e-11 -7.61188e-11 1.48097e-11 -8.23433e-11 1.09216e-11 -8.87725e-11 6.0711e-12 -9.52987e-11 1.09307e-13 -1.01742e-10 -7.27783e-12 -1.07876e-10 -1.62145e-11 -1.13431e-10 -2.6831e-11 -1.18135e-10 -3.8768e-11 -1.21613e-10 -5.12725e-11 -1.23588e-10 -6.22748e-11 -1.24053e-10 -6.74097e-11 -1.2339e-10 -6.1058e-11 -1.22393e-10 -3.82655e-11 2.99167e-13 -1.21726e-10 1.49616e-10 -2.19312e-12 1.49344e-10 -4.04472e-11 1.47824e-10 -6.23399e-11 1.44777e-10 -6.72529e-11 1.40155e-10 -6.02826e-11 1.34211e-10 -4.76798e-11 1.27317e-10 -3.38636e-11 1.1973e-10 -2.0905e-11 1.11688e-10 -9.63592e-12 1.03613e-10 -5.00305e-13 9.56679e-11 6.90041e-12 8.80386e-11 1.26951e-11 8.08087e-11 1.72217e-11 7.40202e-11 2.07161e-11 6.76953e-11 2.33652e-11 6.18305e-11 2.53227e-11 5.63977e-11 2.67371e-11 5.1391e-11 2.76704e-11 4.681e-11 2.81804e-11 4.26408e-11 2.83533e-11 3.88784e-11 2.82349e-11 3.54963e-11 2.79357e-11 3.24207e-11 2.75853e-11 2.95546e-11 2.72588e-11 2.68898e-11 2.6816e-11 2.45268e-11 2.61039e-11 2.25014e-11 2.52712e-11 2.06233e-11 2.47074e-11 1.86351e-11 2.44928e-11 1.65162e-11 2.41816e-11 1.44886e-11 2.33015e-11 1.29027e-11 2.16114e-11 1.21841e-11 1.90639e-11 1.26644e-11 1.60322e-11 1.41196e-11 1.36974e-11 1.56618e-11 1.3328e-11 1.66339e-11 1.46118e-11 1.69204e-11 1.65506e-11 1.66382e-11 1.85622e-11 1.59465e-11 2.04078e-11 1.49777e-11 2.20299e-11 1.38135e-11 2.34603e-11 1.24931e-11 2.47454e-11 1.10327e-11 2.59068e-11 9.45236e-12 2.69252e-11 7.77399e-12 2.77875e-11 6.01727e-12 2.84909e-11 4.1952e-12 2.90415e-11 2.32214e-12 2.94298e-11 4.2269e-13 2.96293e-11 -1.46914e-12 2.96181e-11 -3.32058e-12 2.93995e-11 -5.11143e-12 2.90044e-11 -6.83285e-12 2.84607e-11 -8.47587e-12 2.77784e-11 -1.00234e-11 2.69523e-11 -1.14542e-11 2.59823e-11 -1.27455e-11 2.48743e-11 -1.38832e-11 2.36487e-11 -1.48348e-11 2.2288e-11 -1.55257e-11 2.07466e-11 -1.5837e-11 1.89989e-11 -1.56276e-11 1.71078e-11 -1.4781e-11 1.5276e-11 -1.33563e-11 1.39848e-11 -1.19326e-11 1.42062e-11 -1.14301e-11 1.64398e-11 -1.21178e-11 1.94556e-11 -1.36739e-11 2.2021e-11 -1.56788e-11 2.37478e-11 -1.77903e-11 2.46731e-11 -1.97856e-11 2.50328e-11 -2.16772e-11 2.52867e-11 -2.37114e-11 2.58797e-11 -2.60792e-11 2.67413e-11 -2.87471e-11 2.7474e-11 -3.16119e-11 2.79234e-11 -3.46792e-11 2.82436e-11 -3.80465e-11 2.8588e-11 -4.17915e-11 2.8915e-11 -4.59819e-11 2.90977e-11 -5.0554e-11 2.8957e-11 -5.55338e-11 2.8484e-11 -6.09222e-11 2.75515e-11 -6.67386e-11 2.61059e-11 -7.30093e-11 2.41525e-11 -7.97178e-11 2.15184e-11 -8.68691e-11 1.80734e-11 -9.44239e-11 1.36263e-11 -1.02252e-10 7.9381e-12 -1.10194e-10 6.63908e-13 -1.18072e-10 -8.33602e-12 -1.25589e-10 -1.93138e-11 -1.32483e-10 -3.1873e-11 -1.38517e-10 -4.52377e-11 -1.43276e-10 -5.75161e-11 -1.46545e-10 -6.41403e-11 -1.48321e-10 -5.92819e-11 -1.48825e-10 -3.77611e-11 -1.99244e-13 -1.48326e-10 1.83232e-10 -1.83113e-12 1.80047e-10 -3.72623e-11 1.74306e-10 -5.6599e-11 1.66725e-10 -5.96712e-11 1.57917e-10 -5.14753e-11 1.48493e-10 -3.82555e-11 1.38903e-10 -2.42731e-11 1.29129e-10 -1.1131e-11 1.19003e-10 4.89898e-13 1.09172e-10 9.33055e-12 9.98524e-11 1.62196e-11 9.11126e-11 2.14348e-11 8.29941e-11 2.53401e-11 7.5502e-11 2.82081e-11 6.86232e-11 3.0244e-11 6.23211e-11 3.16247e-11 5.65184e-11 3.25398e-11 5.12019e-11 3.29869e-11 4.63781e-11 3.30041e-11 4.20171e-11 3.27143e-11 3.81339e-11 3.21182e-11 3.47145e-11 3.13551e-11 3.16479e-11 3.06521e-11 2.87286e-11 3.01783e-11 2.59494e-11 2.95955e-11 2.35645e-11 2.8489e-11 2.17093e-11 2.71266e-11 2.00196e-11 2.63972e-11 1.79552e-11 2.65574e-11 1.54501e-11 2.66868e-11 1.28623e-11 2.58895e-11 1.07384e-11 2.37355e-11 9.83529e-12 1.99671e-11 1.09014e-11 1.49663e-11 1.36418e-11 1.09571e-11 1.63065e-11 1.06635e-11 1.78046e-11 1.31138e-11 1.81851e-11 1.61701e-11 1.77959e-11 1.89515e-11 1.69404e-11 2.12634e-11 1.5824e-11 2.31463e-11 1.4549e-11 2.47354e-11 1.31426e-11 2.61518e-11 1.15977e-11 2.74516e-11 9.9298e-12 2.85931e-11 8.16174e-12 2.95555e-11 6.3157e-12 3.0337e-11 4.40136e-12 3.09559e-11 2.42958e-12 3.14015e-11 4.26873e-13 3.1632e-11 -1.56467e-12 3.16095e-11 -3.50567e-12 3.13403e-11 -5.378e-12 3.08766e-11 -7.17832e-12 3.02609e-11 -8.9017e-12 2.95018e-11 -1.05286e-11 2.85794e-11 -1.20371e-11 2.74912e-11 -1.34113e-11 2.62489e-11 -1.46623e-11 2.49001e-11 -1.57638e-11 2.33899e-11 -1.66142e-11 2.15973e-11 -1.70281e-11 1.94131e-11 -1.67467e-11 1.68267e-11 -1.54439e-11 1.39735e-11 -1.29624e-11 1.15036e-11 -1.02166e-11 1.14606e-11 -9.05828e-12 1.52817e-11 -9.88143e-12 2.02788e-11 -1.19521e-11 2.40918e-11 -1.4517e-11 2.63128e-11 -1.7027e-11 2.71833e-11 -1.91176e-11 2.71238e-11 -2.08368e-11 2.70062e-11 -2.27011e-11 2.77444e-11 -2.50888e-11 2.91292e-11 -2.78786e-11 3.02638e-11 -3.08103e-11 3.08551e-11 -3.38736e-11 3.1307e-11 -3.72799e-11 3.19946e-11 -4.1136e-11 3.27715e-11 -4.54909e-11 3.34531e-11 -5.03123e-11 3.37786e-11 -5.56146e-11 3.37862e-11 -6.14162e-11 3.33528e-11 -6.77261e-11 3.24158e-11 -7.45548e-11 3.09813e-11 -8.19524e-11 2.89164e-11 -8.99512e-11 2.60726e-11 -9.85648e-11 2.224e-11 -1.07722e-10 1.70952e-11 -1.17312e-10 1.02542e-11 -1.27092e-10 1.44477e-12 -1.36623e-10 -9.7827e-12 -1.46218e-10 -2.22783e-11 -1.55744e-10 -3.57123e-11 -1.64695e-10 -4.85645e-11 -1.72409e-10 -5.64271e-11 -1.78293e-10 -5.33983e-11 -1.81573e-10 -3.44807e-11 5.87352e-13 -1.8236e-10 2.22135e-10 -8.7435e-14 2.13335e-10 -2.84621e-11 2.00825e-10 -4.40884e-11 1.86527e-10 -4.53739e-11 1.71886e-10 -3.68336e-11 1.57995e-10 -2.43648e-11 1.45462e-10 -1.17395e-11 1.33935e-10 3.95646e-13 1.22105e-10 1.23197e-11 1.10621e-10 2.08155e-11 1.00032e-10 2.68079e-11 9.03901e-11 3.10771e-11 8.16441e-11 3.40861e-11 7.37209e-11 3.61313e-11 6.65548e-11 3.74102e-11 6.00821e-11 3.80975e-11 5.41379e-11 3.84841e-11 4.87113e-11 3.84134e-11 4.38322e-11 3.78832e-11 3.94252e-11 3.71214e-11 3.55672e-11 3.59763e-11 3.22793e-11 3.46433e-11 2.94044e-11 3.35273e-11 2.65335e-11 3.30496e-11 2.36365e-11 3.24929e-11 2.12616e-11 3.08643e-11 1.97868e-11 2.86018e-11 1.85599e-11 2.76244e-11 1.65256e-11 2.8592e-11 1.35831e-11 2.96296e-11 1.02929e-11 2.918e-11 7.36946e-12 2.66592e-11 5.98543e-12 2.13514e-11 7.66692e-12 1.3285e-11 1.21371e-11 6.48704e-12 1.60485e-11 6.75224e-12 1.77608e-11 1.14017e-11 1.78647e-11 1.60665e-11 1.7127e-11 1.96895e-11 1.60076e-11 2.23831e-11 1.47575e-11 2.43968e-11 1.34694e-11 2.60238e-11 1.21291e-11 2.74925e-11 1.06778e-11 2.89033e-11 9.12188e-12 3.01495e-11 7.48505e-12 3.11928e-11 5.79453e-12 3.2028e-11 4.05502e-12 3.26959e-11 2.26836e-12 3.31887e-11 4.57662e-13 3.3443e-11 -1.34221e-12 3.34097e-11 -3.09321e-12 3.30915e-11 -4.78731e-12 3.25709e-11 -6.42735e-12 3.19012e-11 -8.01178e-12 3.10866e-11 -9.51775e-12 3.00858e-11 -1.0929e-11 2.89031e-11 -1.22332e-11 2.75537e-11 -1.34943e-11 2.61618e-11 -1.47197e-11 2.46158e-11 -1.5813e-11 2.26913e-11 -1.65504e-11 2.01512e-11 -1.65637e-11 1.68408e-11 -1.51617e-11 1.25723e-11 -1.15621e-11 7.9046e-12 -7.01576e-12 6.91485e-12 -5.14233e-12 1.34086e-11 -6.3853e-12 2.15221e-11 -9.23025e-12 2.6937e-11 -1.24898e-11 2.95727e-11 -1.54361e-11 3.01301e-11 -1.75143e-11 2.92024e-11 -1.87899e-11 2.82822e-11 -2.02671e-11 2.92217e-11 -2.26442e-11 3.15062e-11 -2.55701e-11 3.31896e-11 -2.84964e-11 3.37813e-11 -3.13852e-11 3.41958e-11 -3.46566e-11 3.52661e-11 -3.84715e-11 3.65865e-11 -4.28472e-11 3.78286e-11 -4.7722e-11 3.8653e-11 -5.32184e-11 3.92821e-11 -5.91947e-11 3.93287e-11 -6.56996e-11 3.89206e-11 -7.28265e-11 3.81083e-11 -8.06777e-11 3.67675e-11 -8.93225e-11 3.47171e-11 -9.88446e-11 3.17616e-11 -1.09226e-10 2.74763e-11 -1.20342e-10 2.13703e-11 -1.31645e-10 1.27476e-11 -1.42785e-10 1.3566e-12 -1.55359e-10 -9.70392e-12 -1.69375e-10 -2.16975e-11 -1.84043e-10 -3.38968e-11 -1.98325e-10 -4.21455e-11 -2.10946e-10 -4.07781e-11 -2.19877e-10 -2.55502e-11 2.37796e-12 -2.21668e-10 2.58569e-10 9.6231e-12 2.41698e-10 -1.15913e-11 2.20212e-10 -2.26023e-11 1.97261e-10 -2.2422e-11 1.75319e-10 -1.48915e-11 1.56009e-10 -5.05486e-12 1.40419e-10 3.8506e-12 1.2659e-10 1.42251e-11 1.13302e-10 2.56071e-11 1.01005e-10 3.31126e-11 9.00429e-11 3.77705e-11 8.0354e-11 4.07661e-11 7.17551e-11 4.26851e-11 6.41083e-11 4.37782e-11 5.72983e-11 4.42203e-11 5.127e-11 4.41259e-11 4.57015e-11 4.40527e-11 4.0627e-11 4.3488e-11 3.61182e-11 4.23921e-11 3.1998e-11 4.12417e-11 2.84239e-11 3.95505e-11 2.55064e-11 3.75611e-11 2.31008e-11 3.59332e-11 2.04817e-11 3.56692e-11 1.75139e-11 3.54611e-11 1.5138e-11 3.32406e-11 1.41855e-11 2.95548e-11 1.36812e-11 2.81292e-11 1.18689e-11 3.04047e-11 8.74273e-12 3.27564e-11 5.08173e-12 3.28415e-11 1.41281e-12 3.03286e-11 -8.26317e-13 2.3591e-11 7.08828e-13 1.17502e-11 6.11443e-12 1.08176e-12 1.01544e-11 2.7126e-12 1.08228e-11 1.07337e-11 9.87752e-12 1.70122e-11 8.56116e-12 2.10064e-11 7.30397e-12 2.3641e-11 6.26655e-12 2.54349e-11 5.46218e-12 2.6829e-11 4.79398e-12 2.81615e-11 4.12219e-12 2.9576e-11 3.45168e-12 3.0821e-11 2.80573e-12 3.18398e-11 2.21512e-12 3.26197e-11 1.67003e-12 3.3242e-11 1.14455e-12 3.3715e-11 6.20513e-13 3.39678e-11 9.21062e-14 3.39387e-11 -4.47574e-13 3.36318e-11 -1.01782e-12 3.31417e-11 -1.63095e-12 3.2515e-11 -2.28164e-12 3.1738e-11 -2.9353e-12 3.07402e-11 -3.57556e-12 2.9544e-11 -4.19241e-12 2.81712e-11 -4.93047e-12 2.69005e-11 -5.89779e-12 2.55839e-11 -7.07208e-12 2.38664e-11 -8.31264e-12 2.13926e-11 -9.33999e-12 1.7869e-11 -9.10921e-12 1.23423e-11 -5.5554e-12 4.3514e-12 -4.41468e-14 1.40404e-12 1.87507e-12 1.14897e-11 -1.56915e-13 2.35544e-11 -3.71809e-12 3.04985e-11 -7.33179e-12 3.31868e-11 -1.04381e-11 3.32366e-11 -1.22905e-11 3.10549e-11 -1.28625e-11 2.88541e-11 -1.3791e-11 3.01499e-11 -1.61506e-11 3.38655e-11 -1.91744e-11 3.6213e-11 -2.18964e-11 3.65031e-11 -2.44146e-11 3.67139e-11 -2.73468e-11 3.81982e-11 -3.09786e-11 4.02178e-11 -3.50602e-11 4.19095e-11 -3.95206e-11 4.31126e-11 -4.45932e-11 4.43541e-11 -5.02437e-11 4.49789e-11 -5.63497e-11 4.50264e-11 -6.32452e-11 4.50036e-11 -7.09131e-11 4.44349e-11 -7.95069e-11 4.33104e-11 -8.91756e-11 4.143e-11 -1.00034e-10 3.83351e-11 -1.11988e-10 3.33234e-11 -1.24396e-10 2.51561e-11 -1.37272e-10 1.42314e-11 -1.5303e-10 6.05359e-12 -1.72878e-10 -1.85031e-12 -1.94659e-10 -1.21154e-11 -2.17376e-10 -1.94292e-11 -2.38663e-10 -1.94912e-11 -2.55559e-10 -8.65562e-12 1.19339e-11 -2.65114e-10 2.84451e-10 2.60343e-11 2.57306e-10 1.5554e-11 2.24151e-10 1.05524e-11 1.90199e-10 1.15301e-11 1.59018e-10 1.62898e-11 1.33651e-10 2.03126e-11 1.15042e-10 2.24596e-11 9.95963e-11 2.96708e-11 8.46381e-11 4.05653e-11 7.18814e-11 4.58693e-11 6.14197e-11 4.82323e-11 5.2803e-11 4.93829e-11 4.55324e-11 4.99558e-11 3.93304e-11 4.99804e-11 3.39324e-11 4.96184e-11 2.93864e-11 4.86721e-11 2.50782e-11 4.83609e-11 2.11565e-11 4.74097e-11 1.78062e-11 4.57425e-11 1.44365e-11 4.46115e-11 1.14481e-11 4.25391e-11 8.88877e-12 4.01205e-11 6.9897e-12 3.78325e-11 4.74776e-12 3.79114e-11 2.00089e-12 3.82083e-11 -2.43166e-13 3.5485e-11 -1.2654e-12 3.05774e-11 -1.75309e-12 2.86175e-11 -3.05322e-12 3.17054e-11 -5.04804e-12 3.47518e-11 -7.30725e-12 3.51013e-11 -1.03103e-11 3.33321e-11 -1.36904e-11 2.69716e-11 -1.48786e-11 1.29388e-11 -1.44347e-11 6.38301e-13 -1.52196e-11 3.49793e-12 -1.80559e-11 1.35705e-11 -2.078e-11 1.97369e-11 -2.23149e-11 2.2542e-11 -2.27685e-11 2.40953e-11 -2.23692e-11 2.50364e-11 -2.1228e-11 2.56886e-11 -1.95516e-11 2.64861e-11 -1.74868e-11 2.75123e-11 -1.50902e-11 2.84254e-11 -1.23591e-11 2.91098e-11 -9.34025e-12 2.96018e-11 -6.07247e-12 2.99751e-11 -2.64499e-12 3.02883e-11 8.86228e-13 3.04372e-11 4.40352e-12 3.04219e-11 7.83451e-12 3.02013e-11 1.10705e-11 2.99063e-11 1.40448e-11 2.95411e-11 1.67294e-11 2.90539e-11 1.90821e-11 2.83879e-11 2.10999e-11 2.75266e-11 2.27581e-11 2.65134e-11 2.38883e-11 2.57707e-11 2.43077e-11 2.51649e-11 2.39183e-11 2.42562e-11 2.25423e-11 2.27691e-11 1.99175e-11 2.04942e-11 1.67965e-11 1.54636e-11 1.58361e-11 5.31201e-12 1.64884e-11 7.51813e-13 1.55455e-11 1.24327e-11 1.21642e-11 2.69358e-11 9.13385e-12 3.35291e-11 6.85257e-12 3.54682e-11 4.84474e-12 3.52444e-11 3.51394e-12 3.23855e-11 3.00515e-12 2.93625e-11 2.04174e-12 3.11128e-11 -1.90349e-13 3.60972e-11 -2.94872e-12 3.89711e-11 -5.25897e-12 3.88132e-11 -7.2238e-12 3.86785e-11 -9.85953e-12 4.08334e-11 -1.29309e-11 4.32885e-11 -1.64324e-11 4.54102e-11 -1.9937e-11 4.66167e-11 -2.39371e-11 4.8354e-11 -2.82758e-11 4.93176e-11 -3.29516e-11 4.97021e-11 -3.85197e-11 5.05714e-11 -4.48227e-11 5.07375e-11 -5.21629e-11 5.06505e-11 -6.08781e-11 5.01452e-11 -7.14345e-11 4.88918e-11 -8.41466e-11 4.60353e-11 -9.82207e-11 3.923e-11 -1.1261e-10 2.86203e-11 -1.31922e-10 2.53658e-11 -1.57362e-10 2.35895e-11 -1.8802e-10 1.85422e-11 -2.21273e-10 1.38237e-11 -2.53724e-10 1.29601e-11 -2.80189e-10 1.78092e-11 2.80836e-11 -2.96339e-10 2.90466e-10 3.97092e-11 2.51931e-10 4.02569e-11 2.07127e-10 4.12188e-11 1.6323e-10 4.12691e-11 1.23244e-10 4.18904e-11 8.7714e-11 4.15572e-11 5.39753e-11 4.18179e-11 2.81004e-11 4.13046e-11 1.29472e-11 4.13923e-11 3.81334e-12 4.08379e-11 -2.75911e-12 4.0675e-11 -7.36484e-12 4.00573e-11 -1.0798e-11 3.96025e-11 -1.33338e-11 3.89472e-11 -1.52595e-11 3.82195e-11 -1.73049e-11 3.76034e-11 -1.8514e-11 3.67459e-11 -1.96844e-11 3.60089e-11 -2.10195e-11 3.48934e-11 -2.23823e-11 3.4073e-11 -2.41083e-11 3.28061e-11 -2.70562e-11 3.19213e-11 -3.04093e-11 3.05265e-11 -3.23306e-11 2.95167e-11 -3.22842e-11 2.82696e-11 -3.34692e-11 2.71666e-11 -3.80588e-11 2.60639e-11 -4.31412e-11 2.49778e-11 -4.41522e-11 2.42318e-11 -4.09752e-11 2.33676e-11 -3.62499e-11 2.24714e-11 -3.20021e-11 2.15141e-11 -3.29697e-11 2.06839e-11 -4.64564e-11 1.96083e-11 -7.06543e-11 1.84743e-11 -9.10549e-11 1.77673e-11 -1.00762e-10 1.72636e-11 -1.03145e-10 1.6373e-11 -1.02095e-10 1.58879e-11 -9.85342e-11 1.51617e-11 -9.3705e-11 1.49069e-11 -8.74143e-11 1.42951e-11 -8.01032e-11 1.41186e-11 -7.10657e-11 1.35868e-11 -6.09351e-11 1.34423e-11 -4.95813e-11 1.30331e-11 -3.75298e-11 1.28732e-11 -2.47908e-11 1.26341e-11 -1.16903e-11 1.25939e-11 1.6939e-12 1.24916e-11 1.5034e-11 1.25129e-11 2.81601e-11 1.25106e-11 4.08379e-11 1.26283e-11 5.27587e-11 1.29247e-11 6.39413e-11 1.31181e-11 7.3857e-11 1.35731e-11 8.26865e-11 1.37505e-11 8.98219e-11 1.42679e-11 9.58994e-11 1.45124e-11 1.0065e-10 1.50589e-11 1.04021e-10 1.54199e-11 1.04998e-10 1.61086e-11 1.02938e-10 1.66914e-11 9.45804e-11 1.76583e-11 7.55903e-11 1.80592e-11 5.10086e-11 1.88431e-11 3.67715e-11 1.97905e-11 3.52155e-11 2.10937e-11 3.9257e-11 2.1812e-11 4.3779e-11 2.28928e-11 4.70378e-11 2.36699e-11 4.62168e-11 2.45923e-11 4.13473e-11 2.53695e-11 3.68621e-11 2.63814e-11 3.55568e-11 2.77085e-11 3.57158e-11 2.87503e-11 3.38867e-11 3.01158e-11 3.04941e-11 3.11821e-11 2.73056e-11 3.2628e-11 2.51678e-11 3.36671e-11 2.34242e-11 3.49475e-11 2.18951e-11 3.56853e-11 2.05691e-11 3.68243e-11 1.92808e-11 3.75139e-11 1.70444e-11 3.85086e-11 1.4815e-11 3.91512e-11 1.19881e-11 3.97245e-11 8.33873e-12 4.0278e-11 3.65763e-12 4.06783e-11 -2.98818e-12 4.12182e-11 -1.26272e-11 4.13361e-11 -2.97462e-11 4.18638e-11 -5.73392e-11 4.18056e-11 -8.8986e-11 4.24113e-11 -1.22156e-10 4.2226e-11 -1.60842e-10 4.25876e-11 -2.03515e-10 4.20544e-11 -2.47035e-10 4.20441e-11 -2.84484e-10 4.11164e-11 4.06663e-11 -3.11097e-10 1.83769e-13 4.89441e-18 1.65079e-13 7.64415e-18 1.32354e-13 1.09877e-17 9.50526e-14 1.13964e-17 5.3303e-14 1.07928e-17 -4.22804e-15 7.92048e-18 -1.23707e-13 2.77184e-17 -2.57235e-13 3.67789e-17 -2.95466e-13 6.26567e-18 -3.32114e-13 6.38058e-18 -3.55247e-13 3.82759e-18 -3.79982e-13 5.67042e-18 -3.94656e-13 4.17347e-18 -4.10495e-13 6.29225e-18 -4.1291e-13 1.75547e-18 -4.36544e-13 9.27258e-18 -4.34462e-13 4.76008e-18 -4.29352e-13 2.57313e-18 -4.46905e-13 8.99683e-18 -4.37188e-13 3.14247e-18 -4.47004e-13 5.37075e-18 -4.63177e-13 2.72131e-18 -5.2931e-13 1.41701e-17 -5.53277e-13 1.23897e-17 -5.05462e-13 7.44224e-19 -4.75977e-13 -6.11062e-18 -5.63477e-13 6.75598e-18 -7.18675e-13 2.52019e-17 -7.15483e-13 9.2274e-18 -6.30338e-13 1.06649e-18 -5.39254e-13 2.70249e-18 -4.15601e-13 3.14194e-18 -2.91051e-13 -1.18864e-17 -4.43082e-13 -2.2977e-17 -1.12734e-12 1.13568e-16 -1.53596e-12 6.35587e-17 -1.57436e-12 5.67042e-18 -1.59204e-12 3.56755e-18 -1.58194e-12 2.74748e-18 -1.54411e-12 1.42415e-18 -1.49341e-12 2.56589e-18 -1.42207e-12 3.98693e-18 -1.33376e-12 1.20518e-17 -1.19872e-12 -4.80601e-20 -1.03917e-12 -4.96702e-20 -8.47323e-13 -5.17227e-20 -6.39974e-13 -5.31196e-20 -4.15974e-13 -5.43785e-20 -1.83269e-13 -5.48795e-20 5.45178e-14 -5.53833e-20 2.92023e-13 -5.557e-20 5.23566e-13 -5.54245e-20 7.45323e-13 -5.46386e-20 9.50269e-13 -5.35115e-20 1.13678e-12 -5.19791e-20 1.29071e-12 -4.99354e-20 1.42181e-12 -4.83273e-20 1.50414e-12 8.4641e-18 1.56955e-12 4.20969e-18 1.61766e-12 3.55773e-18 1.64925e-12 2.81508e-18 1.65044e-12 5.9519e-18 1.62029e-12 7.26675e-18 1.61515e-12 -2.07601e-18 1.27374e-12 8.86587e-17 5.40717e-13 1.76295e-16 3.62578e-13 -7.86672e-17 4.86122e-13 -4.57175e-17 6.0463e-13 2.45589e-18 6.93645e-13 5.84166e-18 7.7679e-13 1.36898e-18 7.81098e-13 1.72674e-17 6.33848e-13 4.05702e-17 5.38794e-13 2.0504e-18 5.65329e-13 -1.8814e-17 6.12152e-13 -1.79613e-18 5.90602e-13 1.95881e-17 5.22933e-13 1.99425e-17 5.00656e-13 -6.803e-19 4.85052e-13 5.10434e-18 4.90078e-13 1.31226e-18 4.7053e-13 1.11385e-17 4.73674e-13 2.08208e-19 4.72162e-13 4.88658e-18 4.46847e-13 1.13453e-17 4.41681e-13 -7.57018e-19 4.21888e-13 7.20379e-18 4.02312e-13 3.72438e-18 3.7823e-13 4.05764e-18 3.53661e-13 2.86813e-18 3.15926e-13 6.34322e-18 2.57129e-13 1.35575e-17 9.48282e-14 5.73937e-17 7.68929e-15 6.41511e-18 -3.77442e-14 2.8527e-18 -7.97355e-14 1.13985e-17 -1.18347e-13 1.10621e-17 -1.52115e-13 1.04179e-17 -1.71923e-13 5.96169e-18 2.99594e-18 -1.76471e-13 -5.36294e-18 3.38278e-18 -7.48822e-18 4.95294e-18 -9.19823e-18 6.39767e-18 -1.12448e-17 6.78793e-18 -1.47292e-17 7.17062e-18 -2.44127e-17 8.83089e-18 -2.58383e-17 1.46121e-17 -1.43996e-17 1.27338e-17 -1.65251e-17 4.21934e-18 -1.64927e-17 3.19205e-18 -1.79436e-17 2.64751e-18 -1.75601e-17 2.64709e-18 -1.8287e-17 2.4519e-18 -1.69787e-17 2.48882e-18 -1.98931e-17 2.32738e-18 -1.63656e-17 2.86961e-18 -1.61569e-17 2.27135e-18 -1.81669e-17 2.26835e-18 -1.47033e-17 2.76567e-18 -1.61638e-17 2.27891e-18 -1.62808e-17 2.73479e-18 -2.01118e-17 3.25601e-18 -1.49733e-17 4.52716e-18 -8.26215e-18 2.83915e-18 -9.73154e-18 1.0484e-18 -1.90924e-17 1.56682e-18 -2.28254e-17 5.23176e-18 -9.35947e-18 7.28104e-18 -3.60564e-18 1.71235e-18 -3.09568e-18 6.6001e-20 -8.89563e-19 -7.60708e-22 -7.79363e-19 -1.1459e-21 -1.72965e-17 8.1705e-20 -5.59723e-17 1.08113e-17 -3.19381e-17 5.62303e-17 -8.30674e-18 2.5924e-17 -7.68991e-18 2.51809e-18 -5.66794e-18 7.19424e-19 -3.41365e-18 8.9871e-20 -2.70674e-18 -3.91152e-21 -1.34413e-18 -7.27562e-21 -5.92924e-19 -1.06985e-20 -5.58547e-20 -1.43047e-20 -4.16575e-20 -1.79603e-20 -2.55414e-20 -2.13318e-20 -8.65672e-21 -2.39183e-20 9.40756e-21 -2.62252e-20 2.79434e-20 -2.76809e-20 4.69972e-20 -2.846e-20 6.62138e-20 -2.87651e-20 8.54748e-20 -2.87523e-20 1.04509e-19 -2.86228e-20 1.23112e-19 -2.77501e-20 1.41184e-19 -2.63128e-20 1.58144e-19 -2.39576e-20 1.74313e-19 -2.13683e-20 1.88499e-19 -1.79251e-20 2.52274e-18 -1.42449e-20 4.50709e-18 -1.06e-20 6.9709e-18 -7.24745e-21 9.18128e-18 -3.64633e-21 1.46181e-17 1.3565e-19 2.02885e-17 7.66921e-19 1.51281e-17 1.49869e-18 7.27822e-17 2.03627e-17 1.5167e-16 6.0825e-17 5.32844e-17 1.25778e-17 2.67517e-18 1.13029e-19 3.42301e-18 -9.44533e-22 8.71001e-18 -6.74455e-22 9.51478e-18 7.05063e-20 2.34541e-17 1.64216e-18 5.29986e-17 6.8808e-18 4.58696e-17 5.44078e-18 2.34621e-17 1.66171e-18 1.93888e-17 1.06486e-18 3.33838e-17 2.79195e-18 4.41336e-17 4.62835e-18 3.63163e-17 3.5288e-18 3.53465e-17 3.02249e-18 3.1578e-17 2.50827e-18 3.68612e-17 2.92032e-18 3.22114e-17 2.39692e-18 3.22944e-17 2.41955e-18 3.76491e-17 2.9944e-18 3.19362e-17 2.45942e-18 3.38071e-17 2.65776e-18 3.22732e-17 2.62496e-18 3.10559e-17 2.64085e-18 2.85886e-17 2.67098e-18 2.82519e-17 3.35722e-18 3.03526e-17 5.73431e-18 5.5381e-17 1.62859e-17 3.87408e-17 1.15268e-17 2.67864e-17 7.39041e-18 2.42895e-17 6.99074e-18 2.17929e-17 6.83636e-18 1.93757e-17 6.46628e-18 1.53988e-17 5.02914e-18 3.4467e-18 1.16575e-17 -3.59375e-20 6.69302e-21 -5.33641e-20 1.04583e-20 -7.28975e-20 1.66357e-20 -6.26277e-20 2.29949e-20 -7.07604e-20 1.96304e-20 -1.08891e-19 2.24514e-20 -1.02542e-19 3.5295e-20 -4.02079e-20 2.92666e-20 -3.7624e-20 7.97106e-21 -3.40663e-20 5.1118e-21 -3.86527e-20 3.37152e-21 -3.88525e-20 3.06138e-21 -4.39399e-20 2.58097e-21 -4.4322e-20 2.61583e-21 -5.69768e-20 2.4637e-21 -5.01959e-20 3.23035e-21 -5.3986e-20 2.64638e-21 -6.54349e-20 2.89587e-21 -6.00775e-20 3.9115e-21 -7.14141e-20 3.79729e-21 -8.12747e-20 5.3577e-21 -1.04863e-19 7.43057e-21 -7.83889e-20 1.10348e-20 -5.14883e-20 7.05774e-21 -6.441e-20 3.47011e-21 -1.25226e-19 5.66453e-21 -1.49202e-19 1.81023e-20 -6.54538e-20 2.46465e-20 -3.45491e-20 5.56611e-21 -3.22889e-20 -8.80444e-25 -2.97638e-20 -2.82558e-24 -4.52492e-20 -1.0967e-24 -2.09377e-19 6.21363e-21 -6.45273e-19 9.51521e-20 -2.77156e-19 5.06439e-19 -7.54148e-20 2.49915e-19 -6.00617e-20 4.36789e-20 -5.44273e-20 1.13211e-20 -4.61905e-20 -9.71785e-24 -3.8651e-20 -3.03963e-23 -2.76261e-20 -4.25331e-23 -1.44623e-20 -5.16188e-23 1.10374e-21 -5.98266e-23 1.59227e-20 -6.23438e-23 3.14756e-20 -6.66769e-23 4.64166e-20 -6.89406e-23 6.3692e-20 -8.56026e-23 8.04366e-20 -7.39656e-23 9.72884e-20 -7.44107e-23 1.14046e-19 -7.41572e-23 1.31436e-19 -7.4196e-23 1.50713e-19 -7.49345e-23 1.687e-19 -7.44452e-23 1.87295e-19 -8.66263e-23 2.02413e-19 -7.00084e-23 2.2528e-19 -6.7939e-23 2.41157e-19 -6.3267e-23 2.79333e-19 -6.09868e-23 2.87987e-19 -5.26406e-23 2.93925e-19 -4.30869e-23 3.01684e-19 -3.10669e-23 3.31536e-19 -1.10094e-23 3.5784e-19 9.7147e-21 3.78176e-19 3.2666e-20 1.12369e-18 1.96997e-19 2.55413e-18 5.38514e-19 8.28636e-19 1.10674e-19 1.78955e-19 7.42992e-21 1.1781e-19 -4.04463e-25 1.21626e-19 -2.71948e-24 1.25543e-19 -8.92561e-25 2.1659e-19 5.22679e-21 4.38631e-19 2.29047e-20 3.70408e-19 1.86283e-20 1.85584e-19 5.92561e-21 1.42189e-19 3.51883e-21 2.01655e-19 6.89069e-21 2.63571e-19 1.12542e-20 2.04525e-19 8.14872e-21 1.75455e-19 6.07874e-21 1.42717e-19 4.33524e-21 1.47283e-19 4.30381e-21 1.18323e-19 3.17621e-21 1.08041e-19 2.90959e-21 1.17472e-19 3.45184e-21 9.08322e-20 2.69416e-21 8.92726e-20 2.90849e-21 7.87019e-20 2.88958e-21 7.26499e-20 3.16092e-21 6.46513e-20 3.58261e-21 7.34146e-20 5.75844e-21 9.70885e-20 1.1331e-20 2.34414e-19 3.78633e-20 1.60526e-19 2.69746e-20 1.13665e-19 1.84161e-20 1.14976e-19 1.8719e-20 1.12642e-19 1.86525e-20 9.54745e-20 1.56809e-20 6.68009e-20 1.02379e-20 6.5862e-21 4.84845e-20 -1.9535e-22 2.71035e-23 -3.5638e-22 3.4366e-23 -5.96389e-22 6.79577e-23 -2.92587e-22 1.18238e-22 -2.33627e-22 5.8953e-23 -2.65372e-22 4.74903e-23 -2.32343e-22 5.31606e-23 -6.97385e-23 4.06027e-23 -5.25952e-23 8.83221e-24 -3.74359e-23 4.42486e-24 -3.85077e-23 1.96581e-24 -3.64524e-23 1.20104e-24 -4.22946e-23 5.9086e-25 -4.47367e-23 2.68742e-25 -6.37218e-23 -3.76624e-30 -5.91982e-23 -6.31873e-29 -7.00629e-23 -1.39078e-28 -9.45547e-23 -2.23379e-28 -9.59869e-23 -2.76068e-28 -1.27725e-22 -2.17944e-28 -1.61995e-22 3.16806e-25 -2.25177e-22 1.68987e-24 -1.64231e-22 3.57027e-24 -1.08658e-22 1.40313e-24 -1.47362e-22 -5.93394e-29 -3.23412e-22 1.34242e-24 -3.96201e-22 1.053e-23 -1.53083e-22 1.34245e-23 -6.77838e-23 -2.54926e-27 -5.87878e-23 -5.19575e-27 -6.63046e-23 -5.8853e-27 -1.52998e-22 -3.99617e-27 -8.79719e-22 1.40362e-23 -3.03992e-21 2.81709e-22 -1.1797e-21 1.7779e-21 -2.19826e-22 8.83347e-22 -8.89671e-23 1.38701e-22 -4.21949e-23 1.06927e-23 -1.37811e-23 -6.32586e-26 1.08778e-23 -8.57902e-26 3.72268e-23 -9.66293e-26 6.40092e-23 -1.01963e-25 9.17129e-23 -1.05914e-25 1.07244e-22 -9.93456e-26 1.27442e-22 -9.82485e-26 1.44671e-22 -9.56001e-26 1.67967e-22 -9.64236e-26 1.89011e-22 -9.53276e-26 2.10143e-22 -9.38165e-26 2.31742e-22 -9.23438e-26 2.57275e-22 -9.24645e-26 2.896e-22 -9.46511e-26 3.22596e-22 -9.63044e-26 3.59831e-22 -9.79122e-26 3.95331e-22 -9.77784e-26 4.52478e-22 -1.0097e-25 5.07524e-22 -1.01693e-25 6.16061e-22 -1.08692e-25 6.74248e-22 -1.04625e-25 7.37192e-22 -9.8002e-26 8.32755e-22 -8.7793e-26 1.05132e-21 -6.70973e-26 1.41133e-21 4.01855e-24 2.0405e-21 1.00534e-22 6.84817e-21 6.79496e-22 1.60942e-20 1.86847e-21 4.39337e-21 3.34014e-22 7.33646e-22 1.81656e-23 3.04395e-22 -3.33831e-27 2.51021e-22 -5.86095e-27 2.69578e-22 -5.1916e-27 5.42836e-22 -2.52473e-27 1.244e-21 1.23881e-23 1.02415e-21 1.1239e-23 4.50042e-22 1.68502e-24 3.11218e-22 1.18301e-25 4.33319e-22 1.63449e-24 5.82545e-22 4.25584e-24 4.23752e-22 2.59756e-24 3.26425e-22 1.10775e-24 2.36995e-22 1.60399e-25 2.19351e-22 -6.71423e-29 1.5826e-22 -1.22907e-28 1.30936e-22 -7.53956e-29 1.35097e-22 1.57039e-26 9.49479e-23 1.73166e-25 8.9428e-23 4.82483e-25 7.71219e-23 8.18224e-25 7.45602e-23 1.38908e-24 7.39939e-23 2.29024e-24 1.07789e-22 5.36487e-24 1.7377e-22 1.30046e-23 5.1814e-22 5.19755e-23 3.6749e-22 4.02412e-23 3.54503e-22 3.92833e-23 4.95979e-22 5.55491e-23 5.94342e-22 6.67897e-23 5.05579e-22 5.54832e-23 3.04838e-22 3.11914e-23 2.50557e-23 2.73274e-22 -9.88354e-25 1.14458e-25 -2.0582e-24 1.16134e-25 -3.48708e-24 2.5992e-25 -1.0952e-24 4.56524e-25 -5.91302e-25 1.4435e-25 -4.15082e-25 7.64263e-26 -3.25982e-25 5.01836e-26 -7.50463e-26 3.26754e-26 -4.28613e-26 5.13255e-27 -2.11569e-26 1.5769e-27 -1.63091e-26 2.12773e-28 -1.20824e-26 -6.83996e-33 -1.23782e-26 -1.32858e-33 -1.28011e-26 -1.74769e-37 -2.04814e-26 -2.67288e-35 -2.14163e-26 -2.08255e-33 -3.05411e-26 -1.58073e-32 -5.0753e-26 -6.96553e-32 -6.2294e-26 -2.45156e-31 -1.0011e-25 -5.1733e-31 -1.48028e-25 -1.2047e-30 -2.29973e-25 -2.30971e-30 -1.71162e-25 -4.45027e-30 -1.19596e-25 -4.18362e-30 -1.77384e-25 -3.7808e-30 -4.34143e-25 -6.32732e-30 -5.43485e-25 -1.62605e-29 -1.932e-25 -2.4417e-29 -8.21941e-26 -1.29262e-29 -7.43415e-26 -7.76857e-30 -1.01915e-25 -8.39502e-30 -3.14165e-25 -1.07883e-29 -2.15212e-24 -7.01963e-30 -8.303e-24 2.80423e-25 -3.07902e-24 2.41914e-24 -4.22028e-25 1.13834e-24 -5.07273e-26 7.38803e-26 7.06199e-26 -1.32829e-28 1.08204e-25 -1.53919e-28 1.22614e-25 -1.38564e-28 1.41432e-25 -1.27878e-28 1.58803e-25 -1.17512e-28 1.7623e-25 -1.09574e-28 1.7439e-25 -9.40281e-29 1.82499e-25 -8.66393e-29 1.88321e-25 -7.9754e-29 2.02856e-25 -7.71121e-29 2.15189e-25 -7.38329e-29 2.28411e-25 -7.11596e-29 2.43618e-25 -6.91987e-29 2.65663e-25 -6.93485e-29 2.97934e-25 -7.19601e-29 3.34463e-25 -7.48267e-29 3.78904e-25 -7.87e-29 4.26761e-25 -8.20657e-29 5.05768e-25 -8.95724e-29 5.94931e-25 -9.67987e-29 7.61827e-25 -1.12883e-28 8.95835e-25 -1.20844e-28 1.07137e-24 -1.29438e-28 1.35844e-24 -1.40356e-28 1.98805e-24 -1.56109e-28 3.28739e-24 -1.38956e-28 6.09761e-24 3.21382e-26 2.23943e-23 8.32574e-25 5.27981e-23 2.50786e-24 1.25465e-23 3.4888e-25 1.70074e-24 -3.19908e-30 5.03016e-25 -1.14705e-29 3.29871e-25 -8.77785e-30 3.31073e-25 -7.91338e-30 6.84831e-25 -1.24502e-29 1.70527e-24 -2.2371e-29 1.38409e-24 -1.60429e-29 5.45747e-25 -6.41747e-30 3.41785e-25 -3.7494e-30 4.48876e-25 -3.97679e-30 5.9604e-25 -4.34006e-30 3.94638e-25 -2.42495e-30 2.63638e-25 -1.3196e-30 1.60306e-25 -5.96284e-31 1.22956e-25 -2.90369e-31 7.28691e-26 -9.29541e-32 5.04948e-26 -2.64663e-32 4.69427e-26 -7.53982e-33 2.99659e-26 -9.80818e-34 2.89438e-26 -1.115e-33 2.79816e-26 -4.33798e-33 3.36064e-26 -6.67386e-33 4.41759e-26 3.75144e-28 9.1638e-26 2.19756e-27 1.88229e-25 7.95117e-27 6.93345e-25 4.13351e-26 5.51405e-25 3.83402e-26 8.50302e-25 6.31988e-26 1.69815e-24 1.30984e-25 2.54928e-24 1.99348e-25 2.4505e-24 1.88213e-25 1.35137e-24 9.80253e-26 1.00469e-25 1.51605e-24 -3.35524e-27 3.22437e-28 -7.35988e-27 2.59254e-28 -1.14986e-26 5.96422e-28 -2.52178e-27 9.40639e-28 -9.75026e-28 1.99857e-28 -4.08853e-28 7.12225e-29 -2.657e-28 2.52842e-29 -4.34346e-29 1.15159e-29 -1.57267e-29 8.13172e-31 -3.62611e-30 -2.51823e-36 -7.27429e-31 -5.79073e-59 -5.67599e-32 -3.03867e-56 -5.16808e-36 -1.21915e-53 -6.43699e-34 -4.17123e-51 -4.44144e-32 -1.25613e-48 -3.07962e-31 -3.33897e-46 -1.2914e-30 -7.75509e-44 -4.47553e-30 -1.52044e-41 -9.43296e-30 -2.38156e-39 -2.26016e-29 -2.69572e-37 -4.48183e-29 -1.72796e-35 -8.61638e-29 -1.79914e-34 -7.37404e-29 -7.2425e-34 -6.03887e-29 -1.01208e-33 -1.01272e-28 -1.25839e-33 -2.7422e-28 -2.88441e-33 -3.61419e-28 -9.98056e-33 -1.34879e-28 -1.66125e-32 -6.16567e-29 -8.13818e-33 -6.23823e-29 -4.90764e-33 -1.03391e-28 -6.25536e-33 -3.95929e-28 -1.211e-32 -3.19679e-27 -4.48827e-32 -1.36278e-26 -2.46811e-31 -5.13828e-27 -6.92336e-31 -6.04705e-28 -7.28784e-31 1.85886e-29 -4.41193e-31 2.21666e-28 -2.87364e-31 2.13567e-28 -1.89718e-31 1.88649e-28 -1.32391e-31 1.79348e-28 -1.02735e-31 1.72513e-28 -8.27695e-32 1.68967e-28 -6.92769e-32 1.51905e-28 -5.47064e-32 1.46881e-28 -4.7023e-32 1.42263e-28 -4.09417e-32 1.45424e-28 -3.79185e-32 1.47892e-28 -3.50507e-32 1.52137e-28 -3.3026e-32 1.58687e-28 -3.17293e-32 1.71475e-28 -3.18347e-32 1.93005e-28 -3.34884e-32 2.19218e-28 -3.56834e-32 2.54055e-28 -3.88953e-32 2.94993e-28 -4.22935e-32 3.63275e-28 -4.88464e-32 4.4939e-28 -5.65576e-32 6.10874e-28 -7.15532e-32 7.77621e-28 -8.504e-32 1.02467e-27 -1.0353e-31 1.45743e-27 -1.32621e-31 2.43221e-27 -1.87203e-31 4.65096e-27 -2.73225e-31 1.04056e-26 -3.82329e-31 4.08227e-26 -6.40998e-31 9.43801e-26 -7.11758e-31 2.01833e-26 -2.71662e-31 2.29386e-27 -5.36739e-32 5.24368e-28 -1.4041e-32 2.76394e-28 -6.84815e-33 2.43835e-28 -5.15672e-33 4.65907e-28 -8.0187e-33 1.10819e-27 -1.56046e-32 8.59714e-28 -1.02673e-32 3.08128e-28 -3.07832e-33 1.70532e-28 -1.31975e-33 1.91972e-28 -1.03922e-33 2.24702e-28 -8.02413e-34 1.22908e-28 -2.37002e-34 6.25793e-29 -3.50097e-35 2.64237e-29 -9.34993e-37 1.23827e-29 -1.38537e-38 3.88756e-30 -1.44527e-40 1.13255e-30 -1.17385e-42 3.46703e-31 -7.85665e-45 5.03879e-32 -4.4912e-47 7.05884e-32 -2.21455e-49 4.1386e-31 -9.36915e-52 2.31466e-30 -3.26652e-54 9.06486e-30 -8.06996e-57 3.64981e-29 -1.27146e-36 1.10799e-28 1.52671e-30 5.4151e-28 1.48993e-29 5.29453e-28 1.98434e-29 1.31964e-27 5.81814e-29 3.5671e-27 1.73128e-28 6.66935e-27 3.40711e-28 7.63807e-27 3.94116e-28 4.1222e-27 2.06517e-28 2.72105e-28 5.77601e-27 -6.8648e-30 5.17199e-31 -1.46265e-29 3.10709e-31 -1.97427e-29 6.55065e-31 -3.09779e-30 8.26205e-31 -8.6894e-31 1.11555e-31 -2.15862e-31 2.33761e-32 -9.8227e-32 2.99364e-33 -8.22642e-33 -8.8748e-39 -4.12697e-34 -4.24712e-77 -2.13926e-57 -2.66883e-74 -6.76865e-55 -1.27454e-71 -2.04842e-52 -5.29535e-69 -5.86016e-50 -2.00838e-66 -1.56274e-47 -7.10121e-64 -3.81452e-45 -2.36393e-61 -8.31002e-43 -7.43119e-59 -1.5568e-40 -2.2038e-56 -2.36349e-38 -6.12347e-54 -2.61306e-36 -1.57805e-51 -1.64649e-34 -3.71782e-49 -1.68115e-33 -7.82887e-47 -6.54788e-33 -1.42599e-44 -8.65928e-33 -2.12709e-42 -1.01332e-32 -2.33977e-40 -2.21493e-32 -1.47167e-38 -7.2909e-32 -1.3193e-37 -1.10505e-31 -8.88702e-37 -4.70123e-32 -2.188e-36 -2.49946e-32 -1.4046e-36 -3.01482e-32 -1.10568e-36 -6.15693e-32 -1.91097e-36 -2.84134e-31 -5.38279e-36 -2.52046e-30 -3.16676e-35 -1.1823e-29 -3.24179e-34 -4.73817e-30 -1.96863e-33 -5.89299e-31 -1.43523e-33 8.8949e-33 -4.98278e-34 2.06521e-31 -2.27723e-34 1.82194e-31 -1.19051e-34 1.44325e-31 -6.96435e-35 1.22044e-31 -4.67747e-35 1.05462e-31 -3.32086e-35 9.38481e-32 -2.5098e-35 7.83164e-32 -1.81481e-35 7.09814e-32 -1.45122e-35 6.51729e-32 -1.18462e-35 6.37857e-32 -1.04593e-35 6.24898e-32 -9.31461e-36 6.26259e-32 -8.56809e-36 6.42521e-32 -8.13949e-36 6.91577e-32 -8.17488e-36 7.84634e-32 -8.71664e-36 9.07413e-32 -9.51972e-36 1.08163e-31 -1.07744e-35 1.2976e-31 -1.22955e-35 1.67067e-31 -1.51352e-35 2.18173e-31 -1.87975e-35 3.15649e-31 -2.5951e-35 4.36157e-31 -3.40609e-35 6.32486e-31 -4.67519e-35 1.00264e-30 -6.88133e-35 1.86332e-30 -1.1496e-34 3.96205e-30 -2.09299e-34 9.59448e-30 -4.11224e-34 3.69979e-29 -1.13656e-33 8.20644e-29 -1.97434e-33 1.62218e-29 -3.79417e-34 1.68306e-30 -4.04879e-35 3.13276e-31 -6.61756e-36 1.31618e-31 -2.18573e-36 9.64379e-32 -1.20725e-36 1.57783e-31 -1.43221e-36 3.30212e-31 -2.13272e-36 2.24738e-31 -9.6541e-37 6.71046e-32 -1.59237e-37 2.8754e-32 -2.0087e-38 2.30691e-32 -5.46454e-40 1.81424e-32 -8.43226e-42 5.35023e-33 -9.35477e-44 7.78609e-34 -8.27106e-46 2.04468e-35 -6.15757e-48 3.00412e-37 -3.99233e-50 3.14218e-39 -2.30936e-52 2.60443e-41 -1.21139e-54 1.81725e-43 -5.8304e-57 1.1094e-45 -2.59424e-59 6.0855e-48 -1.06839e-61 3.05807e-50 -4.06132e-64 1.4288e-52 -1.41134e-66 6.28137e-55 -4.38261e-69 1.85636e-33 -1.15072e-71 2.31637e-32 -2.15984e-74 1.97433e-31 -2.60868e-39 2.75574e-31 2.63819e-33 1.10756e-30 1.92005e-32 4.02489e-30 9.36129e-32 9.52271e-30 2.61717e-31 1.34671e-29 4.04411e-31 7.66293e-30 2.37504e-31 4.26156e-31 1.38767e-29 -7.56512e-33 3.59333e-34 -1.42482e-32 1.3367e-34 -1.53999e-32 1.9261e-34 -1.6377e-33 1.11398e-34 -2.95188e-34 -1.59417e-40 -3.33142e-35 -1.6423e-42 -2.55508e-36 -7.76924e-95 -1.83944e-75 -4.26129e-92 -6.13138e-73 -2.05348e-89 -2.02487e-70 -9.0317e-87 -6.59702e-68 -3.70533e-84 -2.11057e-65 -1.43797e-81 -6.59767e-63 -5.32936e-79 -2.00396e-60 -1.89771e-76 -5.87526e-58 -6.51613e-74 -1.6492e-55 -2.16092e-71 -4.38681e-53 -6.92123e-69 -1.09089e-50 -2.1368e-66 -2.49063e-48 -6.33853e-64 -5.09084e-46 -1.79856e-61 -8.97661e-44 -4.85049e-59 -1.28706e-41 -1.23296e-56 -1.34773e-39 -2.91947e-54 -8.02476e-38 -6.32777e-52 -6.79981e-37 -1.22183e-49 -4.30032e-36 -2.0202e-47 -9.76954e-36 -2.69344e-45 -5.69511e-36 -2.59309e-43 -4.08759e-36 -1.36948e-41 -6.59539e-36 -3.67218e-41 -1.7898e-35 -1.35532e-40 -1.0379e-34 -6.99337e-40 -1.02222e-33 -6.49812e-39 -5.16484e-33 -9.00709e-38 -2.34414e-33 -6.66698e-37 -3.50528e-34 -5.23732e-37 -1.88721e-35 -1.79126e-37 8.28739e-35 -7.28091e-38 7.65991e-35 -3.32654e-38 5.74892e-35 -1.71473e-38 4.48483e-35 -1.01484e-38 3.5421e-35 -6.38452e-39 2.91176e-35 -4.3066e-39 2.26049e-35 -2.78981e-39 1.927e-35 -2.04774e-39 1.67122e-35 -1.55029e-39 1.56636e-35 -1.28306e-39 1.48181e-35 -1.09137e-39 1.45055e-35 -9.73845e-40 1.47035e-35 -9.10377e-40 1.58122e-35 -9.15562e-40 1.81321e-35 -9.9458e-40 2.14096e-35 -1.12397e-39 2.63618e-35 -1.33101e-39 3.29642e-35 -1.6172e-39 4.48268e-35 -2.13712e-39 6.20678e-35 -2.88598e-39 9.65439e-35 -4.43175e-39 1.44567e-34 -6.4949e-39 2.30126e-34 -1.00227e-38 4.01546e-34 -1.66303e-38 8.18315e-34 -3.13714e-38 1.8784e-33 -6.50612e-38 4.78138e-33 -1.4569e-37 1.69637e-32 -4.06108e-37 3.41388e-32 -6.56463e-37 6.41443e-33 -1.06606e-37 6.13963e-34 -8.74566e-39 9.08688e-35 -9.21703e-40 2.83784e-35 -1.66093e-40 1.54872e-35 -4.35299e-41 1.87441e-35 -1.59403e-41 2.87953e-35 -7.52586e-43 1.33308e-35 -1.67462e-44 2.22453e-36 -2.43698e-46 2.83535e-37 -2.66633e-48 7.81568e-39 -2.36814e-50 1.21915e-40 -1.79475e-52 1.35717e-42 -1.20067e-54 1.19795e-44 -7.24926e-57 8.90083e-47 -4.01123e-59 5.78418e-49 -2.05763e-61 3.37594e-51 -9.87552e-64 1.80445e-53 -4.46378e-66 8.96506e-56 -1.90859e-68 4.18868e-58 -7.74006e-71 1.85765e-60 -2.97957e-73 7.88026e-63 -1.08849e-75 3.21844e-65 -3.76452e-78 1.27291e-67 -1.22546e-80 4.90079e-70 -3.71774e-83 1.84528e-72 -1.03655e-85 7.21603e-36 -2.60248e-88 4.34282e-35 -5.65221e-91 3.58179e-34 -1.13317e-42 1.97876e-33 1.429e-37 6.4171e-33 3.82947e-35 1.18721e-32 1.24393e-34 7.75161e-33 1.05878e-34 3.06541e-34 1.94555e-32 -3.50768e-36 -8.44784e-42 -4.84133e-36 -1.39785e-42 -3.15114e-36 -2.32482e-43 -1.0954e-37 -1.36441e-57 -1.33035e-40 -1.2038e-111 -2.98609e-93 -5.39075e-109 -1.00253e-90 -2.31359e-106 -3.36297e-88 -9.61119e-104 -1.12587e-85 -3.87721e-101 -3.75376e-83 -1.51998e-98 -1.24305e-80 -5.80177e-96 -4.07625e-78 -2.162e-93 -1.31951e-75 -7.88819e-91 -4.20231e-73 -2.82501e-88 -1.31184e-70 -9.95064e-86 -3.99729e-68 -3.45185e-83 -1.18309e-65 -1.18012e-80 -3.38144e-63 -3.97585e-78 -9.26713e-61 -1.31906e-75 -2.41422e-58 -4.30392e-73 -5.91362e-56 -1.3782e-70 -1.34293e-53 -4.31834e-68 -2.77455e-51 -1.31831e-65 -5.07957e-49 -3.89654e-63 -7.92593e-47 -1.10493e-60 -9.90567e-45 -2.96988e-58 -8.85184e-43 -7.45032e-56 -4.30112e-41 -1.70699e-53 -1.05892e-40 -3.45367e-51 -3.60096e-40 -5.84441e-49 -1.71499e-39 -7.54754e-47 -1.45356e-38 -6.19259e-45 -1.7591e-37 -1.91717e-43 -1.03138e-36 -4.66267e-42 -5.46859e-37 -4.8407e-41 -9.9181e-38 -4.67578e-41 -1.10615e-38 -1.76459e-41 1.24477e-38 -6.86776e-42 1.40765e-38 -2.90862e-42 1.04838e-38 -1.33601e-42 7.69212e-39 -6.78937e-43 5.60605e-39 -3.61738e-43 4.22649e-39 -2.06133e-43 2.99713e-39 -1.12698e-43 2.37868e-39 -7.1811e-44 1.93319e-39 -4.76999e-44 1.7109e-39 -3.62304e-44 1.5536e-39 -2.9081e-44 1.47978e-39 -2.45404e-44 1.47829e-39 -2.22142e-44 1.59227e-39 -2.23497e-44 1.85846e-39 -2.50824e-44 2.26581e-39 -2.99041e-44 2.90884e-39 -3.76322e-44 3.8528e-39 -5.00233e-44 5.58489e-39 -7.53222e-44 8.33024e-39 -1.16517e-43 1.42405e-38 -2.10327e-43 2.34425e-38 -3.60641e-43 4.10665e-38 -6.54992e-43 7.83008e-38 -1.26153e-42 1.71906e-37 -2.65733e-42 4.19107e-37 -5.94262e-42 1.10398e-36 -1.41293e-41 3.5512e-36 -3.51996e-41 6.31368e-36 -4.60533e-41 1.05852e-36 -5.59029e-42 8.59228e-38 -2.90813e-43 8.8631e-39 -1.11107e-44 1.57681e-39 -2.3014e-46 4.14176e-40 -3.13778e-48 1.53988e-40 -3.20205e-50 7.42345e-42 -2.64722e-52 1.68373e-43 -1.86774e-54 2.48813e-45 -1.16451e-56 2.75909e-47 -6.57184e-59 2.48095e-49 -3.41749e-61 1.89887e-51 -1.66081e-63 1.27848e-53 -7.62491e-66 7.75314e-56 -3.3336e-68 4.31023e-58 -1.39648e-70 2.22681e-60 -5.63294e-73 1.0808e-62 -2.19601e-75 4.97223e-65 -8.29347e-78 2.18428e-67 -3.03818e-80 9.21923e-70 -1.08056e-82 3.75821e-72 -3.73317e-85 1.48649e-74 -1.25283e-87 5.72847e-77 -4.07905e-90 2.15896e-79 -1.28543e-92 7.98472e-82 -3.9107e-95 2.90658e-84 -1.14681e-97 1.04395e-86 -3.23953e-100 3.70569e-89 -8.80571e-103 1.63715e-40 -2.28742e-105 1.32722e-37 -5.5864e-108 1.20371e-36 -2.01398e-58 3.81734e-36 -1.41018e-43 3.41205e-36 -5.62267e-43 2.29063e-38 1.40807e-35 -1.95834e-40 -1.09221e-43 -1.62739e-41 -3.74169e-47 -5.87155e-56 -2.56506e-51 -3.5203e-110 -1.41153e-58 -1.14091e-107 -2.46892e-121 -3.70811e-105 -1.00107e-118 -1.21003e-102 -3.99066e-116 -3.96663e-100 -1.56724e-113 -1.30603e-97 -6.06614e-111 -4.31537e-95 -2.31335e-108 -1.42907e-92 -8.6936e-106 -4.73579e-90 -3.22184e-103 -1.56786e-87 -1.17876e-100 -5.17634e-85 -4.26266e-98 -1.70101e-82 -1.52523e-95 -5.55182e-80 -5.40471e-93 -1.79541e-77 -1.89781e-90 -5.73684e-75 -6.60518e-88 -1.80522e-72 -2.27839e-85 -5.57226e-70 -7.78559e-83 -1.67923e-67 -2.63323e-80 -4.91178e-65 -8.803e-78 -1.38433e-62 -2.90289e-75 -3.72423e-60 -9.41451e-73 -9.44665e-58 -2.99037e-70 -2.22221e-55 -9.25311e-68 -4.73806e-53 -2.77084e-65 -8.85465e-51 -7.96075e-63 -1.37605e-48 -2.16834e-60 -1.62295e-46 -5.50742e-58 -1.20428e-44 -1.27575e-55 -3.30184e-43 -2.61308e-53 -6.82404e-42 -4.50802e-51 -5.60728e-41 -5.96516e-49 -3.84335e-41 -4.72172e-47 -8.66926e-42 -1.70809e-46 -1.35281e-42 -1.05995e-46 3.69282e-43 -4.34565e-47 7.89597e-43 -1.56189e-47 5.99552e-43 -4.80203e-48 4.03988e-43 -1.34478e-48 2.60021e-43 -3.13127e-49 1.70436e-43 -2.98972e-50 1.04157e-43 -6.21914e-53 7.28892e-44 -8.0694e-56 5.25886e-44 -8.37467e-59 4.30895e-44 -7.62192e-62 3.716e-44 -6.36735e-65 3.36231e-44 -5.01318e-68 3.262e-44 -3.78308e-71 3.52042e-44 -2.76809e-74 4.24619e-44 -1.98054e-77 5.45601e-44 -1.39466e-80 7.42534e-44 -9.7162e-84 1.07171e-43 -6.72585e-87 1.7601e-43 -4.64327e-90 2.98469e-43 -3.20718e-93 5.93932e-43 -2.42646e-50 1.12952e-42 -2.77582e-49 2.29e-42 -1.15844e-48 4.95479e-42 -4.02594e-48 1.17837e-41 -1.272e-47 2.98e-41 -3.38755e-47 7.97236e-41 -7.8433e-47 2.20137e-40 -1.14299e-46 3.10956e-40 -3.81014e-47 3.95e-41 -1.03678e-48 2.09935e-42 -1.55906e-50 8.10187e-44 -1.67924e-52 1.69292e-45 -1.43987e-54 2.33723e-47 -1.04109e-56 2.42602e-49 -6.58879e-59 2.04472e-51 -3.74979e-61 1.46979e-53 -1.95882e-63 9.31709e-56 -9.53805e-66 5.33507e-58 -4.37955e-68 2.8097e-60 -1.9134e-70 1.38007e-62 -8.01172e-73 6.39239e-65 -3.23394e-75 2.81702e-67 -1.26435e-77 1.18967e-69 -4.80606e-80 4.84404e-72 -1.78129e-82 1.91157e-74 -6.44922e-85 7.3436e-77 -2.28326e-87 2.75692e-79 -7.9104e-90 1.01478e-81 -2.68385e-92 3.67305e-84 -8.92172e-95 1.31091e-86 -2.90529e-97 4.62483e-89 -9.25935e-100 1.61646e-91 -2.88522e-102 5.60868e-94 -8.78632e-105 1.9353e-96 -2.61536e-107 6.6503e-99 -7.61092e-110 2.27773e-101 -2.16507e-112 7.77787e-104 -6.01131e-115 2.64754e-106 -1.62318e-117 1.45709e-56 -2.60995e-58 1.84206e-41 -3.27073e-51 2.18378e-40 -3.91337e-47 -9.23561e-44 6.11173e-39 -1.23208e-45 -2.3941e-46 -6.337e-50 -5.71776e-50 -2.70447e-57 -2.72161e-54 -3.76407e-120 -2.88743e-61 -1.24121e-117 -2.73047e-294 -4.10372e-115 -1.36588e-292 -1.36184e-112 -4.85885e-291 -4.53884e-110 -1.2411e-289 -1.5193e-107 -2.30772e-288 -5.1053e-105 -3.17789e-287 -1.72076e-102 -3.30783e-286 -5.81145e-100 -2.6628e-285 -1.96424e-97 -1.69889e-284 -6.63587e-95 -8.81003e-284 -2.2377e-92 -3.80812e-283 -7.52095e-90 -1.406e-282 -2.51544e-87 -4.53805e-282 -8.35688e-85 -1.30826e-281 -2.75218e-82 -3.43505e-281 -8.96381e-80 -8.35898e-281 -2.8794e-77 -1.91411e-280 -9.09302e-75 -4.17868e-280 -2.8121e-72 -8.79224e-280 -8.47652e-70 -1.79868e-279 -2.47579e-67 -3.60197e-279 -6.95509e-65 -7.09666e-279 -1.86155e-62 -1.38061e-278 -4.68839e-60 -2.65822e-278 -1.09245e-57 -5.07108e-278 -2.29958e-55 -9.58904e-278 -4.2207e-53 -1.7982e-277 -6.37897e-51 -3.34805e-277 -7.13122e-49 -6.19993e-277 -4.51109e-47 -1.14435e-276 -1.20111e-46 -2.10734e-276 -4.81884e-47 -3.86005e-276 -9.74e-48 -6.98729e-276 -3.0127e-49 -1.23624e-275 2.60661e-48 -2.11109e-275 1.5763e-48 -3.45253e-275 6.28751e-49 -5.40444e-275 1.84506e-49 -8.04026e-275 2.08553e-50 -1.15888e-274 4.95192e-53 -1.60922e-274 7.1688e-56 -2.12301e-274 8.17943e-59 -2.67241e-274 8.10512e-62 -3.22253e-274 7.32595e-65 -3.73522e-274 6.21673e-68 -4.16449e-274 5.0464e-71 -4.27444e-274 3.96991e-74 -4.16801e-274 3.05572e-77 -3.85096e-274 2.31826e-80 -3.26022e-274 1.74366e-83 -2.64177e-274 1.30651e-86 -2.05753e-274 9.79306e-90 -1.53658e-274 7.36974e-93 -1.09827e-274 6.09779e-50 -7.40656e-275 7.65821e-49 -4.84377e-275 3.52136e-48 -3.03427e-275 1.35219e-47 -1.80288e-275 4.72653e-47 -1.01815e-275 1.39056e-46 -5.45655e-276 3.53673e-46 -2.79691e-276 5.60005e-46 -1.38806e-276 1.99605e-46 -6.76346e-277 5.70359e-48 -3.27388e-277 8.87106e-50 -1.58487e-277 9.78969e-52 -7.68453e-278 8.56544e-54 -3.72838e-278 6.31538e-56 -1.80779e-278 4.07805e-58 -8.7524e-279 2.36829e-60 -4.22898e-279 1.26109e-62 -2.03771e-279 6.24796e-65 -9.77431e-280 2.9133e-67 -4.65279e-280 1.29023e-69 -2.18825e-280 5.46811e-72 -1.01104e-280 2.23135e-74 -4.55625e-281 8.81235e-77 -1.98454e-281 3.38307e-79 -8.25969e-282 1.2673e-81 -3.23941e-282 4.64772e-84 -1.17787e-282 1.67357e-86 -3.8988e-283 5.93169e-89 -1.15153e-283 2.07407e-91 -2.96868e-284 7.16955e-94 -6.52049e-285 2.45486e-96 -1.18901e-285 8.34037e-99 -1.75308e-286 2.8161e-101 -2.03643e-287 9.46308e-104 -1.81731e-288 3.16872e-106 -1.21624e-289 1.0583e-108 -5.97215e-291 3.52718e-111 -2.11172e-292 1.17323e-113 -5.29395e-294 3.89353e-116 -9.29812e-296 7.93032e-57 -1.57378e-60 1.30709e-49 -6.35292e-54 2.17174e-45 -9.3981e-50 -3.12221e-46 7.80012e-42 -1.07221e-48 -2.17039e-49 -4.11191e-53 -3.18166e-53 -3.58791e-60 -8.52504e-58 -2.83937e-293 -4.9227e-65 -1.20725e-291 -3.54619e-290 -3.70353e-290 -1.56132e-288 -8.27347e-289 -4.9598e-287 -1.36436e-287 -1.14805e-285 -1.68962e-286 -1.96355e-284 -1.60293e-285 -2.52482e-283 -1.19074e-284 -2.49002e-282 -7.08819e-284 -1.92527e-281 -3.46201e-283 -1.19446e-280 -1.42035e-282 -6.08891e-280 -5.00759e-282 -2.61123e-279 -1.55021e-281 -9.63894e-279 -4.29888e-281 -3.12973e-278 -1.08739e-280 -9.12026e-278 -2.54956e-280 -2.42918e-277 -5.61923e-280 -6.01086e-277 -1.17814e-279 -1.4016e-276 -2.3731e-279 -3.11756e-276 -4.62901e-279 -6.68255e-276 -8.79763e-279 -1.39188e-275 -1.63634e-278 -2.83547e-275 -2.98725e-278 -5.6776e-275 -5.36048e-278 -1.12145e-274 -9.45745e-278 -2.19032e-274 -1.63925e-277 -4.23599e-274 -2.78665e-277 -8.11874e-274 -4.63238e-277 -1.54307e-273 -7.4931e-277 -2.90976e-273 -1.17027e-276 -5.44409e-273 -1.742e-276 -1.01017e-272 -2.41417e-276 -1.85552e-272 -2.98249e-276 -3.3578e-272 -2.94779e-276 -5.94935e-272 -1.37475e-276 -1.02286e-271 1.99792e-276 -1.68964e-271 8.27939e-276 -2.66762e-271 1.99661e-275 -4.03169e-271 3.90585e-275 -5.79926e-271 6.85368e-275 -8.10322e-271 1.10845e-274 -1.09435e-270 1.65663e-274 -1.40887e-270 2.31968e-274 -1.73698e-270 3.07348e-274 -2.06019e-270 3.88185e-274 -2.35885e-270 4.69005e-274 -2.60928e-270 5.19875e-274 -2.66856e-270 5.46449e-274 -2.60309e-270 5.43872e-274 -2.41534e-270 4.96099e-274 -2.0622e-270 4.33491e-274 -1.69235e-270 3.64586e-274 -1.34059e-270 2.94556e-274 -1.02262e-270 2.28253e-274 -7.49306e-271 1.67262e-274 -5.19872e-271 1.19111e-274 -3.50925e-271 8.13801e-275 -2.27486e-271 5.27806e-275 -1.40084e-271 3.25193e-275 -8.19882e-272 1.89672e-275 -4.54526e-272 1.05274e-275 -2.39963e-272 5.61169e-276 -1.21819e-272 2.90566e-276 -6.01777e-273 1.47716e-276 -2.92503e-273 7.43241e-277 -1.41034e-273 3.71754e-277 -6.77399e-274 1.85224e-277 -3.24696e-274 9.20117e-278 -1.55423e-274 4.55792e-278 -7.42929e-275 2.25045e-278 -3.54396e-275 1.10629e-278 -1.68479e-275 5.40382e-279 -7.96438e-276 2.61487e-279 -3.73167e-276 1.24823e-279 -1.72564e-276 5.84587e-280 -7.83324e-277 2.66723e-280 -3.46633e-277 1.17509e-280 -1.48216e-277 4.94494e-281 -6.05683e-278 1.96206e-281 -2.33475e-278 7.2316e-282 -8.3635e-279 2.43437e-282 -2.73786e-279 7.34459e-283 -8.03814e-280 1.94492e-283 -2.07244e-280 4.41901e-284 -4.58574e-281 8.41062e-285 -8.5016e-282 1.30846e-285 -1.2888e-282 1.6236e-286 -1.55908e-283 1.56845e-287 -1.46876e-284 1.15267e-288 -1.05261e-285 6.31057e-290 -5.6181e-287 2.52765e-291 -2.19219e-288 7.29959e-293 -6.15765e-290 1.50408e-294 -1.23057e-291 3.04753e-59 -6.62082e-64 1.50853e-52 -3.47594e-57 2.82311e-48 -8.11778e-53 -4.0931e-49 1.23804e-44 -4.17155e-52 -7.79294e-53 -9.29536e-57 -6.28126e-57 -4.54034e-64 -7.19673e-62 -2.80815e-289 -9.28453e-70 -1.07596e-287 -3.496e-286 -3.0124e-286 -1.38401e-284 -6.22034e-285 -4.0047e-283 -9.6027e-284 -8.55325e-282 -1.12717e-282 -1.36725e-280 -1.0257e-281 -1.66386e-279 -7.38989e-281 -1.57173e-278 -4.30964e-280 -1.17706e-277 -2.08057e-279 -7.1451e-277 -8.50211e-279 -3.59577e-276 -3.00483e-278 -1.53412e-275 -9.37329e-278 -5.6702e-275 -2.62976e-277 -1.85306e-274 -6.74989e-277 -5.45705e-274 -1.60919e-276 -1.47324e-273 -3.61054e-276 -3.70254e-273 -7.71013e-276 -8.77927e-273 -1.5817e-275 -1.98672e-272 -3.14068e-275 -4.33223e-272 -6.07162e-275 -9.17472e-272 -1.14772e-274 -1.8989e-271 -2.12749e-274 -3.85954e-271 -3.87307e-274 -7.73091e-271 -6.92721e-274 -1.52978e-270 -1.21648e-273 -2.99494e-270 -2.09402e-273 -5.80647e-270 -3.52238e-273 -1.11539e-269 -5.75906e-273 -2.12284e-269 -9.07801e-273 -3.99895e-269 -1.36215e-272 -7.4421e-269 -1.9046e-272 -1.36375e-268 -2.39353e-272 -2.44674e-268 -2.49276e-272 -4.27179e-268 -1.59702e-272 -7.20052e-268 7.56821e-273 -1.16199e-267 4.67174e-272 -1.78863e-267 1.18736e-271 -2.63422e-267 2.34299e-271 -3.69416e-267 4.09336e-271 -5.04049e-267 6.56151e-271 -6.66161e-267 9.70667e-271 -8.41232e-267 1.34599e-270 -1.02003e-266 1.76944e-270 -1.19384e-266 2.22277e-270 -1.35345e-266 2.67865e-270 -1.48769e-266 2.97027e-270 -1.51723e-266 3.13167e-270 -1.48055e-266 3.13485e-270 -1.37852e-266 2.88477e-270 -1.18506e-266 2.55102e-270 -9.8254e-267 2.17828e-270 -7.89012e-267 1.79249e-270 -6.12212e-267 1.41832e-270 -4.57541e-267 1.06372e-270 -3.24611e-267 7.76775e-271 -2.2456e-267 5.44909e-271 -1.49411e-267 3.6298e-271 -9.44862e-268 2.29504e-271 -5.67561e-268 1.37084e-271 -3.22332e-268 7.76366e-272 -1.73742e-268 4.20173e-272 -8.9617e-269 2.1957e-272 -4.47127e-269 1.11969e-272 -2.18123e-269 5.6213e-273 -1.04961e-269 2.79458e-273 -5.01045e-270 1.38058e-273 -2.38083e-270 6.79084e-274 -1.12826e-270 3.32807e-274 -5.33526e-271 1.62439e-274 -2.51588e-271 7.88606e-275 -1.18119e-271 3.80012e-275 -5.50826e-272 1.81212e-275 -2.54338e-272 8.51618e-276 -1.15809e-272 3.92314e-276 -5.17262e-273 1.75944e-276 -2.25084e-273 7.61652e-277 -9.45998e-274 3.14996e-277 -3.80025e-274 1.22958e-277 -1.44161e-274 4.46735e-278 -5.09327e-275 1.4869e-278 -1.64969e-275 4.45321e-279 -4.81098e-276 1.1765e-279 -1.23808e-276 2.68362e-280 -2.75161e-277 5.16767e-281 -5.16491e-278 8.20865e-282 -8.00198e-279 1.05066e-282 -9.99444e-280 1.0586e-283 -9.82899e-281 8.21116e-285 -7.44251e-282 4.8045e-286 -4.25088e-283 2.0831e-287 -1.79828e-284 6.59516e-289 -5.54872e-286 1.50855e-290 -1.23424e-287 9.45023e-63 -2.80237e-68 5.89427e-56 -5.30315e-61 1.67548e-51 -2.61843e-56 -2.29222e-52 1.06e-47 -6.3209e-56 -8.89254e-57 -6.13777e-61 -3.25087e-61 -6.81401e-69 -9.41661e-67 -2.23825e-285 -4.71067e-76 -7.82717e-284 -2.79514e-282 -2.02409e-282 -1.00793e-280 -3.90628e-281 -2.68908e-279 -5.70123e-280 -5.35914e-278 -6.39707e-279 -8.0867e-277 -5.62259e-278 -9.39327e-276 -3.95044e-277 -8.55827e-275 -2.26624e-276 -6.24181e-274 -1.08451e-275 -3.72234e-273 -4.42216e-275 -1.85461e-272 -1.56812e-274 -7.88614e-272 -4.9299e-274 -2.92121e-271 -1.39878e-273 -9.61083e-271 -3.64018e-273 -2.85924e-270 -8.81401e-273 -7.81817e-270 -2.01056e-272 -1.99355e-269 -4.36677e-272 -4.80093e-269 -9.11033e-272 -1.10387e-268 -1.83884e-271 -2.44543e-268 -3.61098e-271 -5.25883e-268 -6.92778e-271 -1.10442e-267 -1.30218e-270 -2.27577e-267 -2.40173e-270 -4.6172e-267 -4.34835e-270 -9.24531e-267 -7.72356e-270 -1.82982e-266 -1.34365e-269 -3.58289e-266 -2.28208e-269 -6.94303e-266 -3.76325e-269 -1.33097e-265 -5.97611e-269 -2.51989e-265 -9.02701e-269 -4.69911e-265 -1.27176e-268 -8.59595e-265 -1.61972e-268 -1.53295e-264 -1.74755e-268 -2.64908e-264 -1.30626e-268 -4.40368e-264 1.23896e-269 -6.98923e-264 2.2893e-268 -1.0562e-263 6.25734e-268 -1.52609e-263 1.25525e-267 -2.09965e-263 2.19572e-267 -2.81334e-263 3.50468e-267 -3.65658e-263 5.15199e-267 -4.54836e-263 7.09761e-267 -5.44286e-263 9.28138e-267 -6.30334e-263 1.16182e-266 -7.09014e-263 1.3982e-266 -7.7549e-263 1.55184e-266 -7.89234e-263 1.64098e-266 -7.70471e-263 1.65079e-266 -7.19386e-263 1.53029e-266 -6.21849e-263 1.36658e-266 -5.19847e-263 1.18134e-266 -4.22051e-263 9.86584e-267 -3.31983e-263 7.93644e-267 -2.52019e-263 6.06079e-267 -1.81947e-263 4.51215e-267 -1.28271e-263 3.22904e-267 -8.70491e-264 2.19406e-267 -5.61535e-264 1.41364e-267 -3.43799e-264 8.58882e-268 -1.98694e-264 4.93383e-268 -1.08701e-264 2.69861e-268 -5.67073e-265 1.41932e-268 -2.84954e-265 7.25381e-269 -1.3939e-265 3.63608e-269 -6.69904e-266 1.79946e-269 -3.1838e-266 8.83029e-270 -1.50286e-266 4.3079e-270 -7.06413e-267 2.09152e-270 -3.30949e-267 1.01026e-270 -1.54447e-267 4.84873e-271 -7.16844e-268 2.3075e-271 -3.30147e-268 1.08561e-271 -1.50425e-268 5.02874e-272 -6.75343e-269 2.28135e-272 -2.9718e-269 1.00686e-272 -1.27307e-269 4.28788e-273 -5.26515e-270 1.74493e-273 -2.08189e-270 6.70853e-274 -7.7823e-271 2.40474e-274 -2.71446e-271 7.91635e-275 -8.70123e-272 2.35274e-275 -2.51926e-272 6.1947e-276 -6.46432e-273 1.41607e-276 -1.4408e-273 2.75129e-277 -2.73125e-274 4.44404e-278 -4.30697e-275 5.83449e-279 -5.52261e-276 6.0883e-280 -5.63017e-277 4.94301e-281 -4.46716e-278 3.06134e-282 -2.70408e-279 1.42114e-283 -1.22663e-280 4.87396e-285 -4.10752e-282 1.22195e-286 -1.00377e-283 3.17681e-67 -6.11385e-74 7.0082e-60 -1.75324e-65 4.11793e-55 -2.70635e-60 -4.85739e-56 4.39818e-51 -2.64839e-60 -1.59656e-61 -6.58763e-66 -1.75821e-66 -2.8701e-75 -3.44995e-73 -1.50234e-281 -5.49445e-85 -4.83579e-280 -1.89085e-278 -1.16432e-278 -6.26485e-277 -2.11552e-277 -1.55369e-275 -2.93813e-276 -2.91079e-274 -3.16894e-275 -4.17351e-273 -2.70259e-274 -4.65325e-272 -1.85841e-273 -4.10807e-271 -1.05152e-272 -2.92848e-270 -4.99721e-272 -1.72037e-269 -2.03539e-271 -8.50212e-269 -7.24484e-271 -3.60719e-268 -2.29524e-270 -1.33977e-267 -6.58259e-270 -4.43725e-267 -1.73535e-269 -1.33297e-266 -4.26288e-269 -3.68864e-266 -9.87375e-269 -9.5332e-266 -2.17819e-268 -2.32896e-265 -4.61513e-268 -5.43389e-265 -9.45606e-268 -1.22137e-264 -1.88372e-267 -2.66367e-264 -3.66319e-267 -5.66928e-264 -6.97329e-267 -1.18297e-263 -1.3014e-266 -2.42824e-263 -2.38202e-266 -4.91469e-263 -4.2736e-266 -9.82241e-263 -7.5028e-266 -1.94007e-262 -1.28474e-265 -3.78779e-262 -2.13386e-265 -7.30492e-262 -3.40989e-265 -1.38876e-261 -5.18039e-265 -2.59444e-261 -7.34586e-265 -4.7412e-261 -9.45555e-265 -8.4208e-261 -1.04598e-264 -1.44486e-260 -8.54849e-265 -2.37843e-260 -1.28706e-265 -3.73018e-260 9.90502e-265 -5.56192e-260 2.96582e-264 -7.92368e-260 6.07872e-264 -1.07465e-259 1.06846e-263 -1.42024e-259 1.70351e-263 -1.82246e-259 2.49539e-263 -2.24056e-259 3.4234e-263 -2.65361e-259 4.46142e-263 -3.04782e-259 5.57256e-263 -3.40733e-259 6.70288e-263 -3.71276e-259 7.44852e-263 -3.77296e-259 7.89778e-263 -3.68487e-259 7.97831e-263 -3.4483e-259 7.44077e-263 -2.99394e-259 6.69788e-263 -2.51939e-259 5.84748e-263 -2.06339e-259 4.94138e-263 -1.64082e-259 4.02685e-263 -1.26098e-259 3.11849e-263 -9.22776e-260 2.35616e-263 -6.60046e-260 1.71172e-263 -4.54686e-260 1.18036e-263 -2.97701e-260 7.71057e-264 -1.8485e-260 4.74239e-264 -1.08202e-260 2.75171e-264 -5.98292e-261 1.51616e-264 -3.14627e-261 8.00904e-265 -1.58887e-261 4.09884e-265 -7.78655e-262 2.05172e-265 -3.73827e-262 1.01158e-265 -1.77053e-262 4.93621e-266 -8.3128e-263 2.39111e-266 -3.88053e-263 1.15128e-266 -1.80312e-263 5.50891e-267 -8.33621e-264 2.61656e-267 -3.82914e-264 1.23107e-267 -1.74378e-264 5.72041e-268 -7.84977e-265 2.6146e-268 -3.47883e-265 1.16936e-268 -1.50975e-265 5.08451e-269 -6.37371e-266 2.13266e-269 -2.59714e-266 8.55e-270 -1.01218e-266 3.24107e-270 -3.73285e-267 1.14716e-270 -1.28636e-267 3.7366e-271 -4.0818e-268 1.102e-271 -1.17325e-268 2.89065e-272 -3.00111e-269 6.61612e-273 -6.70326e-270 1.29476e-273 -1.28108e-270 2.12088e-274 -2.0504e-271 2.84575e-275 -2.68928e-272 3.0617e-276 -2.82957e-273 2.58766e-277 -2.33976e-274 1.68538e-278 -1.49133e-275 8.31621e-280 -7.20102e-277 3.06528e-281 -2.59594e-278 8.35436e-283 -6.91054e-280 5.75909e-73 -1.64469e-81 1.8997e-64 -7.10533e-71 3.43565e-59 -6.4485e-65 -2.89854e-60 7.38167e-55 -1.20041e-65 -2.69658e-68 -2.04312e-72 -3.42195e-74 -2.86003e-84 -4.77573e-83 -8.75669e-278 -2.74289e-276 -2.61028e-276 -1.11452e-274 -5.88461e-275 -3.4142e-273 -1.01178e-273 -7.91644e-272 -1.34314e-272 -1.40147e-270 -1.39774e-271 -1.91802e-269 -1.1602e-270 -2.06055e-268 -7.82658e-270 -1.76823e-267 -4.3753e-269 -1.23505e-266 -2.06713e-268 -7.16005e-266 -8.41468e-268 -3.51387e-265 -3.00658e-267 -1.48836e-264 -9.59517e-267 -5.54338e-264 -2.77956e-266 -1.84758e-263 -7.41617e-266 -5.60078e-263 -1.84621e-265 -1.56714e-262 -4.33673e-265 -4.10082e-262 -9.70482e-265 -1.0151e-261 -2.08558e-264 -2.40039e-261 -4.33229e-264 -5.46746e-261 -8.74408e-264 -1.20782e-260 -1.72157e-263 -2.60237e-260 -3.31526e-263 -5.49303e-260 -6.25367e-263 -1.13965e-259 -1.15596e-262 -2.3293e-259 -2.09256e-262 -4.69664e-259 -3.70346e-262 -9.34926e-259 -6.38717e-262 -1.83752e-258 -1.06754e-261 -3.56259e-258 -1.71535e-261 -6.79824e-258 -2.6194e-261 -1.27239e-257 -3.7355e-261 -2.32459e-257 -4.84981e-261 -4.11804e-257 -5.46383e-261 -7.03162e-257 -4.72638e-261 -1.14956e-256 -1.51561e-261 -1.78762e-256 3.83899e-261 -2.63959e-256 1.28002e-260 -3.72156e-256 2.68733e-260 -4.9935e-256 4.75594e-260 -6.53121e-256 7.58925e-260 -8.29978e-256 1.10988e-259 -1.01126e-255 1.51873e-259 -1.18808e-255 1.97504e-259 -1.35586e-255 2.46385e-259 -1.50868e-255 2.96364e-259 -1.63927e-255 3.29779e-259 -1.66415e-255 3.5052e-259 -1.62598e-255 3.5533e-259 -1.52429e-255 3.33025e-259 -1.32806e-255 3.01704e-259 -1.12343e-255 2.65479e-259 -9.26501e-256 2.26447e-259 -7.43145e-256 1.86406e-259 -5.76599e-256 1.4592e-259 -4.26372e-256 1.11496e-259 -3.08368e-256 8.19257e-260 -2.14849e-256 5.71182e-260 -1.42248e-256 3.76894e-260 -8.92503e-257 2.33855e-260 -5.27298e-257 1.36649e-260 -2.93791e-257 7.56697e-261 -1.55361e-257 4.00852e-261 -7.87202e-258 2.05275e-261 -3.86201e-258 1.02603e-261 -1.8522e-258 5.04186e-262 -8.74677e-259 2.44814e-262 -4.08785e-259 1.17844e-262 -1.89674e-259 5.6318e-263 -8.74896e-260 2.67202e-263 -4.01094e-260 1.25714e-263 -1.82528e-260 5.85316e-264 -8.22824e-261 2.68883e-264 -3.66329e-261 1.21383e-264 -1.60409e-261 5.35745e-265 -6.87222e-262 2.29755e-265 -2.86245e-262 9.50286e-266 -1.15068e-262 3.75762e-266 -4.42571e-263 1.40588e-266 -1.61185e-263 4.91716e-267 -5.49128e-264 1.58566e-267 -1.72576e-264 4.64235e-268 -4.92703e-265 1.21328e-268 -1.25669e-265 2.7793e-269 -2.81172e-266 5.47249e-270 -5.41087e-267 9.07519e-271 -8.77414e-268 1.24165e-271 -1.17452e-268 1.37325e-272 -1.2717e-269 1.20368e-273 -1.09179e-270 8.20781e-275 -7.29449e-272 4.2832e-276 -3.73002e-273 1.68756e-277 -1.4395e-274 4.97123e-279 -4.14938e-276 1.32712e-80 -1.65714e-91 6.52749e-70 -1.31111e-77 6.85872e-64 -1.89722e-70 -2.69505e-65 3.63896e-59 -2.00653e-73 -3.60248e-83 -2.4491e-82 -3.85022e-89 -1.24558e-275 -3.20723e-274 -4.53355e-274 -1.56659e-272 -1.25727e-272 -5.84798e-271 -2.66498e-271 -1.6643e-269 -4.3519e-270 -3.62348e-268 -5.53933e-269 -6.08453e-267 -5.57643e-268 -7.97408e-266 -4.51438e-267 -8.27683e-265 -2.99217e-266 -6.91892e-264 -1.65434e-265 -4.74286e-263 -7.77451e-265 -2.71644e-262 -3.16328e-264 -1.32464e-261 -1.13425e-263 -5.60236e-261 -3.64434e-263 -2.09191e-260 -1.06548e-262 -7.01283e-260 -2.8743e-262 -2.14362e-259 -7.24323e-262 -6.05913e-259 -1.72346e-261 -1.60363e-258 -3.90762e-261 -4.01759e-258 -8.50711e-261 -9.6176e-258 -1.78952e-260 -2.21745e-257 -3.65554e-260 -4.95676e-257 -7.27919e-260 -1.08008e-256 -1.41667e-259 -2.3041e-256 -2.69857e-259 -4.82761e-256 -5.03301e-259 -9.95635e-256 -9.18517e-259 -2.02386e-255 -1.63746e-258 -4.05757e-255 -2.84226e-258 -8.02326e-255 -4.77738e-258 -1.56313e-254 -7.71494e-258 -2.9933e-254 -1.18361e-257 -5.61359e-254 -1.69643e-257 -1.0259e-253 -2.2181e-257 -1.81475e-253 -2.53347e-257 -3.0888e-253 -2.27717e-257 -5.02577e-253 -9.74364e-258 -7.76827e-253 1.34982e-257 -1.13901e-252 5.0807e-257 -1.59371e-252 1.09319e-256 -2.12139e-252 1.94957e-256 -2.75315e-252 3.11721e-256 -3.4731e-252 4.55662e-256 -4.20276e-252 6.22591e-256 -4.90697e-252 8.08646e-256 -5.57247e-252 1.00812e-255 -6.17821e-252 1.21302e-255 -6.69888e-252 1.35163e-255 -6.79597e-252 1.43972e-255 -6.64258e-252 1.46367e-255 -6.23566e-252 1.37726e-255 -5.44781e-252 1.25414e-255 -4.62758e-252 1.11048e-255 -3.83745e-252 9.5423e-256 -3.09915e-252 7.91675e-256 -2.42253e-252 6.24883e-256 -1.80579e-252 4.81586e-256 -1.31711e-252 3.56913e-256 -9.25618e-253 2.50884e-256 -6.18008e-253 1.66765e-256 -3.90756e-253 1.04124e-256 -2.32422e-253 6.11387e-257 -1.30192e-253 3.39676e-257 -6.91083e-254 1.80239e-257 -3.50913e-254 9.23007e-258 -1.72239e-254 4.60599e-258 -8.25109e-255 2.25626e-258 -3.88601e-255 1.09064e-258 -1.80865e-255 5.22009e-259 -8.34647e-256 2.47792e-259 -3.82471e-256 1.1666e-259 -1.74029e-256 5.44121e-260 -7.8535e-257 2.50909e-260 -3.50765e-257 1.14049e-260 -1.54576e-257 5.08987e-261 -6.69357e-258 2.21929e-261 -2.83381e-258 9.39763e-262 -1.16599e-258 3.83735e-262 -4.62993e-259 1.49826e-262 -1.7593e-259 5.53811e-263 -6.33316e-260 1.91576e-263 -2.13477e-260 6.12104e-264 -6.65068e-261 1.78017e-264 -1.8875e-261 4.63706e-265 -4.80208e-262 1.063e-265 -1.07597e-262 2.10475e-266 -2.08353e-263 3.53021e-267 -3.41989e-264 4.91805e-268 -4.66582e-265 5.58016e-269 -5.18799e-266 5.05912e-270 -4.61194e-267 3.60048e-271 -3.21961e-268 1.98005e-272 -1.73708e-269 8.30618e-274 -7.14728e-271 2.63295e-275 -2.22058e-272 1.17098e-90 -5.1791e-274 1.04615e-76 -2.74378e-87 1.73618e-69 -2.0788e-77 -1.83468e-71 2.87952e-64 -1.97526e-88 -4.40883e-274 -1.44912e-273 -3.16901e-272 -6.30725e-272 -1.809e-270 -2.12087e-270 -8.06097e-269 -5.49181e-269 -2.77621e-267 -1.098e-267 -7.36792e-266 -1.70761e-266 -1.51124e-264 -2.08883e-265 -2.41392e-263 -2.03796e-264 -3.03678e-262 -1.61132e-263 -3.05145e-261 -1.05036e-262 -2.48864e-260 -5.74672e-262 -1.67603e-259 -2.68671e-261 -9.4895e-259 -1.09244e-260 -4.59902e-258 -3.9291e-260 -1.94193e-257 -1.27006e-259 -7.26662e-257 -3.74431e-259 -2.44862e-256 -1.02023e-258 -7.541e-256 -2.5997e-258 -2.15119e-255 -6.25875e-258 -5.75246e-255 -1.43611e-257 -1.45705e-254 -3.1638e-257 -3.52732e-254 -6.73245e-257 -8.22383e-254 -1.39053e-256 -1.85838e-253 -2.79794e-256 -4.0917e-253 -5.49855e-256 -8.81451e-253 -1.05684e-255 -1.86369e-252 -1.98732e-255 -3.87568e-252 -3.65383e-255 -7.93728e-252 -6.55708e-255 -1.60179e-251 -1.14485e-254 -3.18503e-251 -1.93428e-254 -6.23331e-251 -3.13804e-254 -1.19766e-250 -4.83488e-254 -2.25081e-250 -6.96068e-254 -4.11656e-250 -9.15472e-254 -7.2774e-250 -1.05668e-253 -1.23621e-249 -9.75645e-254 -2.00505e-249 -4.86959e-254 -3.08627e-249 4.35665e-254 -4.50259e-249 1.86965e-253 -6.26545e-249 4.11861e-253 -8.29096e-249 7.40148e-253 -1.06981e-248 1.18642e-252 -1.34219e-248 1.73471e-252 -1.61579e-248 2.36831e-252 -1.87749e-248 3.07396e-252 -2.12411e-248 3.8312e-252 -2.34853e-248 4.6122e-252 -2.54249e-248 5.14616e-252 -2.57822e-248 5.49178e-252 -2.52086e-248 5.59624e-252 -2.36891e-248 5.28276e-252 -2.07408e-248 4.8303e-252 -1.76765e-248 4.29823e-252 -1.47226e-248 3.7152e-252 -1.19551e-248 3.10115e-252 -9.3993e-249 2.46349e-252 -7.05002e-249 1.91106e-252 -5.17573e-249 1.42555e-252 -3.66138e-249 1.00816e-252 -2.46016e-249 6.73693e-253 -1.56436e-249 4.22487e-253 -9.34976e-250 2.48877e-253 -5.25658e-250 1.38552e-253 -2.79715e-250 7.35744e-254 -1.42204e-250 3.76576e-254 -6.97958e-251 1.87577e-254 -3.33911e-251 9.1605e-255 -1.5685e-251 4.40949e-255 -7.27218e-252 2.09952e-255 -3.33935e-252 9.90485e-256 -1.52122e-252 4.63028e-256 -6.87504e-253 2.14243e-256 -3.07896e-253 9.79177e-257 -1.36346e-253 4.40752e-257 -5.95188e-254 1.94641e-257 -2.55105e-254 8.3927e-258 -1.06845e-254 3.5131e-258 -4.34788e-255 1.41779e-258 -1.70725e-255 5.47181e-259 -6.41536e-256 2.00031e-259 -2.28485e-256 6.85069e-260 -7.62867e-257 2.17085e-260 -2.35859e-257 6.27644e-261 -6.65942e-258 1.63025e-261 -1.69052e-258 3.74039e-262 -3.79325e-259 7.44634e-263 -7.39031e-260 1.26265e-263 -1.22737e-260 1.7895e-264 -1.70508e-261 2.08008e-265 -1.94407e-262 1.94712e-266 -1.78607e-263 1.44309e-267 -1.29979e-264 8.34165e-269 -7.37902e-266 3.71421e-270 -3.2266e-267 1.26236e-271 -1.07644e-268 3.25917e-273 -2.7251e-270 1.93659e-86 -5.23298e-272 1.66982e-76 -5.94516e-90 -1.82754e-83 1.70511e-70 -1.44357e-271 -2.79159e-270 -7.30178e-270 -1.7947e-268 -2.9148e-268 -9.27719e-267 -9.08542e-267 -3.78645e-265 -2.20308e-265 -1.2074e-263 -4.16513e-264 -2.99743e-262 -6.18206e-263 -5.80747e-261 -7.27998e-262 -8.84396e-260 -6.8928e-261 -1.07e-258 -5.32775e-260 -1.0424e-257 -3.41757e-259 -8.3031e-257 -1.85068e-258 -5.4976e-256 -8.60671e-258 -3.07799e-255 -3.49587e-257 -1.48253e-254 -1.26042e-256 -6.24788e-254 -4.09568e-256 -2.3417e-253 -1.21643e-255 -7.92594e-253 -3.34438e-255 -2.45719e-252 -8.60782e-255 -7.06749e-252 -2.09447e-254 -1.90758e-251 -4.85846e-254 -4.88003e-251 -1.08199e-253 -1.19352e-250 -2.32687e-253 -2.81119e-250 -4.85491e-253 -6.41622e-250 -9.86275e-253 -1.42626e-249 -1.95565e-252 -3.10033e-249 -3.79e-252 -6.61024e-249 -7.18075e-252 -1.38521e-248 -1.32925e-251 -2.85646e-248 -2.40001e-251 -5.7995e-248 -4.21304e-251 -1.15915e-247 -7.15215e-251 -2.27813e-247 -1.16525e-250 -4.39134e-247 -1.80239e-250 -8.27098e-247 -2.60519e-250 -1.5144e-246 -3.4432e-250 -2.67729e-246 -4.00675e-250 -4.54322e-246 -3.77144e-250 -7.35445e-246 -2.06637e-250 -1.12893e-245 1.3065e-250 -1.64137e-245 6.42167e-250 -2.27517e-245 1.44508e-249 -2.99789e-245 2.61542e-249 -3.85201e-245 4.20344e-249 -4.81332e-245 6.14988e-249 -5.7721e-245 8.39276e-249 -6.68219e-245 1.08898e-248 -7.53821e-245 1.35719e-248 -8.31705e-245 1.63485e-248 -8.99358e-245 1.82644e-248 -9.11772e-245 1.95227e-248 -8.91753e-245 1.99318e-248 -8.3867e-245 1.88637e-248 -7.35549e-245 1.73047e-248 -6.28545e-245 1.54595e-248 -5.25347e-245 1.34254e-248 -4.28469e-245 1.126e-248 -3.38402e-245 8.98894e-249 -2.55052e-245 7.0082e-249 -1.8819e-245 5.2533e-249 -1.33803e-245 3.73185e-249 -9.03344e-246 2.50315e-249 -5.76786e-246 1.57446e-249 -3.4589e-246 9.2936e-250 -1.94935e-246 5.1792e-250 -1.03881e-246 2.75041e-250 -5.28384e-247 1.40637e-250 -2.59207e-247 6.99123e-251 -1.23813e-247 3.40397e-251 -5.80067e-248 1.63207e-251 -2.67965e-248 7.73335e-252 -1.22492e-248 3.62765e-252 -5.55027e-249 1.68478e-252 -2.49297e-249 7.73817e-253 -1.10864e-249 3.50776e-253 -4.87069e-250 1.56486e-253 -2.10779e-250 6.84454e-254 -8.9508e-251 2.92156e-254 -3.71269e-251 1.21018e-254 -1.49578e-251 4.83224e-255 -5.81362e-252 1.84544e-255 -2.16254e-252 6.67944e-256 -7.62893e-253 2.26737e-256 -2.52614e-253 7.13297e-257 -7.75909e-254 2.05189e-257 -2.18101e-254 5.31737e-258 -5.52674e-255 1.22151e-258 -1.24235e-255 2.44548e-259 -2.43584e-256 4.19157e-260 -4.09243e-257 6.0401e-261 -5.78512e-258 7.18615e-262 -6.75668e-259 6.93678e-263 -6.40677e-260 5.34532e-264 -4.85187e-261 3.24097e-265 -2.89196e-262 1.52778e-266 -1.34025e-263 5.55109e-268 -4.78604e-265 1.5479e-269 -1.31055e-266 3.31501e-271 -2.75263e-268 4.25807e-89 -4.46178e-270 -5.64849e-272 1.50217e-82 -7.34788e-268 -1.61043e-266 -3.38356e-266 -9.30361e-265 -1.24288e-264 -4.37261e-263 -3.60139e-263 -1.64039e-261 -8.19796e-262 -4.85772e-260 -1.46862e-260 -1.13102e-258 -2.08387e-259 -2.07453e-257 -2.36555e-258 -3.01759e-256 -2.17571e-257 -3.51644e-255 -1.64506e-256 -3.32506e-254 -1.03873e-255 -2.58873e-253 -5.56724e-255 -1.68581e-252 -2.5747e-254 -9.33415e-252 -1.04415e-253 -4.46729e-251 -3.77123e-253 -1.87828e-250 -1.23086e-252 -7.04685e-250 -3.67936e-252 -2.39397e-249 -1.01965e-251 -7.46468e-249 -2.64803e-251 -2.16273e-248 -6.50524e-251 -5.88621e-248 -1.52392e-250 -1.5194e-247 -3.4274e-250 -3.75066e-247 -7.44223e-250 -8.91678e-247 -1.56726e-249 -2.05379e-246 -3.21199e-249 -4.60555e-246 -6.42149e-249 -1.00944e-245 -1.25395e-248 -2.16887e-245 -2.39234e-248 -4.5771e-245 -4.45642e-248 -9.49852e-245 -8.0916e-248 -1.93932e-244 -1.42753e-247 -3.89481e-244 -2.43417e-247 -7.68519e-244 -3.98152e-247 -1.48606e-243 -6.18086e-247 -2.80536e-243 -8.96576e-247 -5.14389e-243 -1.18991e-246 -9.09899e-243 -1.39351e-246 -1.54366e-242 -1.33019e-246 -2.49638e-242 -7.73977e-247 -3.82587e-242 3.68476e-247 -5.55024e-242 2.06986e-246 -7.67338e-242 4.74405e-246 -1.00805e-241 8.63957e-246 -1.29135e-241 1.39198e-245 -1.6089e-241 2.03813e-245 -1.92384e-241 2.78094e-245 -2.22078e-241 3.60793e-245 -2.49972e-241 4.49699e-245 -2.75348e-241 5.42053e-245 -2.97496e-241 6.06304e-245 -3.01574e-241 6.48972e-245 -2.95037e-241 6.6358e-245 -2.77646e-241 6.29302e-245 -2.43839e-241 5.78815e-245 -2.08814e-241 5.18735e-245 -1.75022e-241 4.52196e-245 -1.43256e-241 3.80677e-245 -1.1355e-241 3.05057e-245 -8.59075e-242 2.38741e-245 -6.36349e-242 1.79611e-245 -4.5419e-242 1.28009e-245 -3.07724e-242 8.60854e-246 -1.97055e-242 5.42517e-246 -1.18439e-242 3.20588e-246 -6.68483e-243 1.78711e-246 -3.56483e-243 9.48554e-247 -1.81306e-243 4.8438e-247 -8.88605e-244 2.40273e-247 -4.23691e-244 1.1664e-247 -1.97974e-244 5.57148e-248 -9.11406e-245 2.62808e-248 -4.14885e-245 1.22631e-248 -1.87069e-245 5.66101e-249 -8.35473e-246 2.58247e-249 -3.69128e-246 1.16189e-249 -1.61e-246 5.14128e-250 -6.91272e-247 2.22925e-250 -2.91117e-247 9.42862e-251 -1.19703e-247 3.86867e-251 -4.77895e-248 1.52999e-251 -1.84031e-248 5.78833e-252 -6.78411e-249 2.07667e-252 -2.37356e-249 6.99488e-253 -7.80373e-250 2.18681e-253 -2.38338e-250 6.26397e-254 -6.67429e-251 1.6207e-254 -1.68943e-251 3.72991e-255 -3.80699e-252 7.51204e-256 -7.51431e-253 1.30154e-256 -1.27705e-253 1.90647e-257 -1.83625e-254 2.32038e-258 -2.19551e-255 2.30782e-259 -2.14652e-256 1.84663e-260 -1.68927e-257 1.17238e-261 -1.05522e-258 5.83854e-263 -5.17118e-260 2.26246e-264 -1.97145e-261 6.79544e-266 -5.82212e-263 1.58403e-267 -1.33318e-264 2.88588e-269 -2.3834e-266 -3.36924e-268 4.16224e-271 -3.4588e-264 -8.54309e-263 -1.45496e-262 -4.45415e-261 -4.93244e-261 -1.91033e-259 -1.332e-259 -6.60785e-258 -2.85244e-258 -1.8221e-256 -4.85059e-257 -3.98788e-255 -6.58911e-256 -6.93823e-254 -7.21807e-255 -9.65517e-253 -6.45367e-254 -1.08503e-251 -4.77524e-253 -9.96688e-251 -2.96821e-252 -7.58841e-250 -1.57426e-251 -4.86126e-249 -7.23704e-251 -2.66168e-248 -2.92857e-250 -1.2654e-247 -1.05877e-249 -5.30539e-247 -3.46784e-249 -1.99116e-246 -1.04234e-248 -6.78412e-246 -2.90871e-248 -2.12575e-245 -7.61414e-248 -6.19823e-245 -1.8866e-247 -1.69948e-244 -4.45898e-247 -4.42231e-244 -1.01185e-246 -1.10084e-243 -2.21652e-246 -2.63933e-243 -4.70748e-246 -6.12984e-243 -9.72565e-246 -1.38564e-242 -1.95909e-245 -3.06014e-242 -3.8524e-245 -6.62153e-242 -7.39695e-245 -1.40647e-241 -1.38591e-244 -2.9359e-241 -2.52958e-244 -6.02545e-241 -4.48352e-244 -1.21558e-240 -7.67681e-244 -2.40766e-240 -1.26034e-243 -4.66995e-240 -1.96313e-243 -8.83692e-240 -2.85692e-243 -1.62308e-239 -3.80521e-243 -2.87396e-239 -4.47907e-243 -4.87747e-239 -4.32008e-243 -7.88599e-239 -2.61696e-243 -1.20768e-238 9.87544e-244 -1.74975e-238 6.28575e-243 -2.41508e-238 1.46263e-242 -3.1661e-238 2.67755e-242 -4.04726e-238 4.32351e-242 -5.0319e-238 6.33552e-242 -6.00402e-238 8.64408e-242 -6.91507e-238 1.1215e-241 -7.7703e-238 1.39814e-241 -8.54833e-238 1.68641e-241 -9.23069e-238 1.88841e-241 -9.35777e-238 2.0237e-241 -9.1577e-238 2.07172e-241 -8.62216e-238 1.9679e-241 -7.58056e-238 1.81388e-241 -6.50302e-238 1.62977e-241 -5.46317e-238 1.42512e-241 -4.48477e-238 1.20323e-241 -3.56498e-238 9.6704e-242 -2.70519e-238 7.58986e-242 -2.00988e-238 5.72546e-242 -1.43872e-238 4.09007e-242 -9.77293e-239 2.75534e-242 -6.27083e-239 1.73843e-242 -3.77456e-239 1.02771e-242 -2.13206e-239 5.7274e-243 -1.13709e-239 3.0371e-243 -5.77997e-240 1.54843e-243 -2.82927e-240 7.6636e-244 -1.34635e-240 3.70944e-244 -6.27441e-241 1.76554e-244 -2.87914e-241 8.2928e-245 -1.30555e-241 3.85062e-245 -5.85987e-242 1.76766e-245 -2.60331e-242 8.01376e-246 -1.14335e-242 3.58094e-246 -4.95426e-243 1.57286e-246 -2.11223e-243 6.76627e-247 -8.8289e-244 2.83818e-247 -3.60163e-244 1.15462e-247 -1.42609e-244 4.52724e-248 -5.44654e-245 1.69856e-248 -1.99209e-245 6.04712e-249 -6.92016e-246 2.02322e-249 -2.26118e-246 6.29168e-250 -6.87237e-247 1.79614e-250 -1.91883e-247 4.64364e-251 -4.85595e-248 1.07137e-251 -1.09769e-248 2.1716e-252 -2.18187e-249 3.80408e-253 -3.7511e-250 5.66395e-254 -5.48564e-251 7.05029e-255 -6.71191e-252 7.22019e-256 -6.76104e-253 5.99287e-257 -5.52302e-254 3.97833e-258 -3.61002e-255 2.08953e-259 -1.86725e-256 8.61819e-261 -7.58352e-258 2.78171e-262 -2.40943e-259 7.0384e-264 -5.99737e-261 1.40661e-265 -1.17827e-262 -1.85227e-264 2.25086e-267 -1.51692e-260 -4.19852e-259 -5.84778e-259 -1.98347e-257 -1.83458e-257 -7.78903e-256 -4.62785e-256 -2.49131e-254 -9.34114e-255 -6.41261e-253 -1.51019e-253 -1.32203e-251 -1.96635e-252 -2.18552e-250 -2.08047e-251 -2.91358e-249 -1.80921e-250 -3.16062e-248 -1.31029e-249 -2.82218e-247 -8.01702e-249 -2.10191e-246 -4.2063e-248 -1.32466e-245 -1.92117e-247 -7.17086e-245 -7.75227e-247 -3.3852e-244 -2.80326e-246 -1.41452e-243 -9.20596e-246 -5.30706e-243 -2.77967e-245 -1.81204e-242 -7.8033e-245 -5.70095e-242 -2.05696e-244 -1.67144e-241 -5.13567e-244 -4.61286e-241 -1.22353e-243 -1.20899e-240 -2.79899e-243 -3.03232e-240 -6.18041e-243 -7.32595e-240 -1.32278e-242 -1.71433e-239 -2.75304e-242 -3.90354e-239 -5.58405e-242 -8.68071e-239 -1.10513e-241 -1.89053e-238 -2.1345e-241 -4.03971e-238 -4.02078e-241 -8.4784e-238 -7.37438e-241 -1.74849e-237 -1.31275e-240 -3.54237e-237 -2.25646e-240 -7.04175e-237 -3.71745e-240 -1.36998e-236 -5.80877e-240 -2.59879e-236 -8.47889e-240 -4.78233e-236 -1.13292e-239 -8.47956e-236 -1.33914e-239 -1.44026e-235 -1.30173e-239 -2.32941e-235 -8.10646e-240 -3.56687e-235 2.53561e-240 -5.16474e-235 1.80365e-239 -7.12161e-235 4.24784e-239 -9.32326e-235 7.80927e-239 -1.19004e-234 1.26339e-238 -1.47734e-234 1.85278e-238 -1.75997e-234 2.52797e-238 -2.02343e-234 3.28032e-238 -2.27072e-234 4.09063e-238 -2.49577e-234 4.93743e-238 -2.69416e-234 5.53459e-238 -2.73186e-234 5.93709e-238 -2.67438e-234 6.08364e-238 -2.519e-234 5.78621e-238 -2.21665e-234 5.34257e-238 -1.90428e-234 4.81032e-238 -1.60279e-234 4.21698e-238 -1.31897e-234 3.56851e-238 -1.05086e-234 2.87442e-238 -7.99282e-235 2.26083e-238 -5.95208e-235 1.70885e-238 -4.26988e-235 1.22276e-238 -2.90585e-235 8.24631e-239 -1.86706e-235 5.20575e-239 -1.12481e-235 3.07723e-239 -6.35517e-236 1.71374e-239 -3.38828e-236 9.07631e-240 -1.72072e-236 4.61931e-240 -8.4103e-237 2.28096e-240 -3.99402e-237 1.10091e-240 -1.85657e-237 5.222e-241 -8.4931e-238 2.44304e-241 -3.83724e-238 1.12923e-241 -1.71503e-238 5.15738e-242 -7.58235e-239 2.32487e-242 -3.31216e-239 1.03243e-242 -1.42678e-239 4.5044e-243 -6.0446e-240 1.92394e-243 -2.50943e-240 8.00994e-244 -1.01633e-240 3.23367e-244 -3.99457e-241 1.25828e-244 -1.51458e-241 4.68647e-245 -5.50184e-242 1.65729e-245 -1.89934e-242 5.51299e-246 -6.17269e-243 1.70688e-246 -1.86847e-243 4.86081e-247 -5.20647e-244 1.25678e-247 -1.31841e-244 2.90883e-248 -2.99131e-245 5.9367e-249 -5.98959e-246 1.05178e-249 -1.04191e-246 1.59201e-250 -1.54976e-247 2.02633e-251 -1.93988e-248 2.13562e-252 -2.01205e-249 1.83718e-253 -1.70447e-250 1.27384e-254 -1.1643e-251 7.04654e-256 -6.34674e-253 3.088e-257 -2.74089e-254 1.06882e-258 -9.34761e-256 2.92784e-260 -2.52217e-257 6.39862e-262 -5.42657e-259 -9.45063e-261 1.13214e-263 -6.23573e-257 -1.92316e-255 -2.20966e-255 -8.26328e-254 -6.43153e-254 -2.98062e-252 -1.51875e-252 -8.83935e-251 -2.89455e-251 -2.12873e-249 -4.45525e-250 -4.14187e-248 -5.56603e-249 -6.51592e-247 -5.69169e-248 -8.33104e-246 -4.81571e-247 -8.73057e-245 -3.41394e-246 -7.58125e-244 -2.05574e-245 -5.52436e-243 -1.0666e-244 -3.42485e-242 -4.83738e-244 -1.83255e-241 -1.94514e-243 -8.58667e-241 -7.02966e-243 -3.57385e-240 -2.31269e-242 -1.33951e-239 -7.00849e-242 -4.57988e-239 -1.97744e-241 -1.44558e-238 -5.24426e-241 -4.25808e-238 -1.31819e-240 -1.18185e-237 -3.16287e-240 -3.11732e-237 -7.28814e-240 -7.87152e-237 -1.62091e-239 -1.91483e-236 -3.49355e-239 -4.51146e-236 -7.31971e-239 -1.03407e-235 -1.49407e-238 -2.31411e-235 -2.97431e-238 -5.06973e-235 -5.77599e-238 -1.08927e-234 -1.09344e-237 -2.29763e-234 -2.01448e-237 -4.75984e-234 -3.60062e-237 -9.68186e-234 -6.21165e-237 -1.93133e-233 -1.02673e-236 -3.76866e-233 -1.60917e-236 -7.16705e-233 -2.35552e-236 -1.32162e-232 -3.15643e-236 -2.34715e-232 -3.74415e-236 -3.99123e-232 -3.66126e-236 -6.45987e-232 -2.32382e-236 -9.89473e-232 6.28371e-237 -1.43255e-231 4.90292e-236 -1.97439e-231 1.16539e-235 -2.5825e-231 2.14961e-235 -3.29315e-231 3.48322e-235 -4.08401e-231 5.11201e-235 -4.8599e-231 6.9756e-235 -5.57975e-231 9.05373e-235 -6.25584e-231 1.12939e-234 -6.87162e-231 1.36411e-234 -7.41739e-231 1.53056e-234 -7.52407e-231 1.64326e-234 -7.36869e-231 1.685e-234 -6.94285e-231 1.60423e-234 -6.11378e-231 1.48329e-234 -5.25838e-231 1.33776e-234 -4.43265e-231 1.17518e-234 -3.65514e-231 9.96206e-235 -2.91735e-231 8.03788e-235 -2.22292e-231 6.332e-235 -1.65818e-231 4.79289e-235 -1.19142e-231 3.43342e-235 -8.11888e-232 2.3169e-235 -5.22097e-232 1.46279e-235 -3.14672e-232 8.64287e-236 -1.77768e-232 4.80857e-236 -9.47145e-233 2.54308e-236 -4.80444e-233 1.29187e-236 -2.34446e-233 6.36436e-237 -1.11111e-233 3.06327e-237 -5.15215e-234 1.4483e-237 -2.35006e-234 6.75057e-238 -1.05816e-234 3.10723e-238 -4.71089e-235 1.4125e-238 -2.0736e-235 6.33455e-239 -9.01426e-236 2.79722e-239 -3.86263e-236 1.21299e-239 -1.62701e-236 5.14759e-240 -6.71275e-237 2.1287e-240 -2.70107e-237 8.53515e-241 -1.05471e-237 3.29888e-241 -3.97375e-238 1.22083e-241 -1.43485e-238 4.2923e-242 -4.9262e-239 1.42092e-242 -1.59362e-239 4.38414e-243 -4.80891e-240 1.24658e-243 -1.33854e-240 3.22591e-244 -3.39404e-241 7.49502e-245 -7.73315e-242 1.54107e-245 -1.56053e-242 2.7624e-246 -2.74765e-243 4.25135e-247 -4.15709e-244 5.53236e-248 -5.32224e-245 5.99823e-249 -5.68126e-246 5.34464e-250 -4.98712e-247 3.86718e-251 -3.55662e-248 2.25031e-252 -2.04055e-249 1.04611e-253 -9.35475e-251 3.87478e-255 -3.41702e-252 1.14627e-256 -9.96697e-254 2.73163e-258 -2.34127e-255 -4.50048e-257 5.32651e-260 -2.41455e-253 -8.25198e-252 -7.88724e-252 -3.23631e-250 -2.13502e-250 -1.0755e-248 -4.72902e-249 -2.96487e-247 -8.52395e-248 -6.69465e-246 -1.25061e-246 -1.23146e-244 -1.50043e-245 -1.84602e-243 -1.48367e-244 -2.26579e-242 -1.22166e-243 -2.29523e-241 -8.47735e-243 -1.9389e-240 -5.02283e-242 -1.38247e-239 -2.57606e-241 -8.43023e-239 -1.15952e-240 -4.45741e-238 -4.64312e-240 -2.07212e-237 -1.67576e-239 -8.58555e-237 -5.51838e-239 -3.21252e-236 -1.67698e-238 -1.09908e-235 -4.75139e-238 -3.47768e-235 -1.26664e-237 -1.02835e-234 -3.20255e-237 -2.86822e-234 -7.73259e-237 -7.60756e-234 -1.79333e-236 -1.93246e-233 -4.01419e-236 -4.72979e-233 -8.70639e-236 -1.1212e-232 -1.83523e-235 -2.58525e-232 -3.7675e-235 -5.81863e-232 -7.54054e-235 -1.28166e-231 -1.47165e-234 -2.76769e-231 -2.79875e-234 -5.86521e-231 -5.17783e-234 -1.22021e-230 -9.28984e-234 -2.49144e-230 -1.60817e-233 -4.98663e-230 -2.66653e-233 -9.75935e-230 -4.19128e-233 -1.86075e-229 -6.15184e-233 -3.43875e-229 -8.26544e-233 -6.118e-229 -9.83385e-233 -1.04177e-228 -9.65924e-233 -1.68779e-228 -6.20843e-233 -2.58688e-228 1.5143e-233 -3.74611e-228 1.26585e-232 -5.16258e-228 3.02846e-232 -6.74952e-228 5.59994e-232 -8.60201e-228 9.08578e-232 -1.06612e-227 1.33435e-231 -1.26776e-227 1.82098e-231 -1.45407e-227 2.36414e-231 -1.62928e-227 2.9501e-231 -1.78905e-227 3.56552e-231 -1.93146e-227 4.00404e-231 -1.96026e-227 4.30185e-231 -1.92059e-227 4.41329e-231 -1.81005e-227 4.20489e-231 -1.59475e-227 3.89218e-231 -1.37291e-227 3.51497e-231 -1.15875e-227 3.09299e-231 -9.57096e-228 2.62539e-231 -7.64951e-228 2.12094e-231 -5.83642e-228 1.6727e-231 -4.35902e-228 1.26739e-231 -3.1355e-228 9.08558e-232 -2.1386e-228 6.1324e-232 -1.37591e-228 3.87091e-232 -8.29338e-229 2.28544e-232 -4.68311e-229 1.27003e-232 -2.49285e-229 6.70626e-233 -1.26284e-229 3.40021e-233 -6.1521e-230 1.67126e-233 -2.9098e-230 8.02246e-234 -1.34606e-230 3.78136e-234 -6.12276e-231 1.75643e-234 -2.7481e-231 8.05363e-235 -1.21906e-231 3.64549e-235 -5.34469e-232 1.62721e-235 -2.31332e-232 7.14877e-236 -9.86513e-233 3.08298e-236 -4.13359e-233 1.30073e-236 -1.6959e-233 5.34672e-237 -6.78474e-234 2.13087e-237 -2.63419e-234 8.18753e-238 -9.86957e-235 3.01325e-238 -3.54491e-235 1.05422e-238 -1.21132e-235 3.47619e-239 -3.90423e-236 1.06986e-239 -1.17562e-236 3.04002e-240 -3.2714e-237 7.88e-241 -8.31144e-238 1.83913e-241 -1.90283e-238 3.81192e-242 -3.87201e-239 6.91625e-243 -6.90301e-240 1.08244e-243 -1.06243e-240 1.44008e-244 -1.39106e-241 1.6058e-245 -1.52768e-242 1.48134e-246 -1.38883e-243 1.11768e-247 -1.03322e-244 6.8338e-249 -6.23181e-246 3.36491e-250 -3.02789e-247 1.33118e-251 -1.18211e-248 4.24322e-253 -3.71821e-250 1.09978e-254 -9.51013e-252 -2.01091e-253 2.35594e-256 -8.8425e-250 -3.33109e-248 -2.66983e-248 -1.19644e-246 -6.73633e-247 -3.67356e-245 -1.40213e-245 -9.436e-244 -2.39365e-244 -2.00156e-242 -3.35124e-243 -3.48609e-241 -3.86404e-242 -4.98531e-240 -3.69644e-241 -5.87886e-239 -2.96262e-240 -5.75966e-238 -2.01229e-239 -4.73469e-237 -1.17291e-238 -3.30359e-236 -5.94409e-238 -1.9813e-235 -2.65395e-237 -1.03489e-234 -1.05763e-236 -4.7709e-234 -3.80919e-236 -1.96675e-233 -1.2546e-235 -7.34199e-233 -3.82008e-235 -2.51167e-232 -1.08596e-234 -7.96103e-232 -2.90761e-234 -2.36138e-231 -7.38868e-234 -6.61335e-231 -1.79378e-233 -1.76253e-230 -4.18379e-233 -4.50052e-230 -9.41866e-233 -1.10751e-229 -2.05434e-232 -2.6397e-229 -4.354e-232 -6.11936e-229 -8.98476e-232 -1.38444e-228 -1.8071e-231 -3.06458e-228 -3.54299e-231 -6.64868e-228 -6.76656e-231 -1.41508e-227 -1.25673e-230 -2.95571e-227 -2.26282e-230 -6.0569e-227 -3.93003e-230 -1.21626e-226 -6.53609e-230 -2.3873e-226 -1.03022e-229 -4.56348e-226 -1.51605e-229 -8.45251e-226 -2.04193e-229 -1.50667e-225 -2.43556e-229 -2.56944e-225 -2.40005e-229 -4.16772e-225 -1.55416e-229 -6.39345e-225 3.56915e-230 -9.2632e-225 3.11115e-229 -1.27687e-224 7.47276e-229 -1.66917e-224 1.38406e-228 -2.12685e-224 2.24777e-228 -2.63526e-224 3.303e-228 -3.13249e-224 4.50794e-228 -3.59032e-224 5.85414e-228 -4.02163e-224 7.30738e-228 -4.41547e-224 8.83701e-228 -4.76849e-224 9.93168e-228 -4.84255e-224 1.06765e-227 -4.74656e-224 1.09567e-227 -4.4741e-224 1.0445e-227 -3.94344e-224 9.67666e-228 -3.39741e-224 8.74808e-228 -2.87028e-224 7.70851e-228 -2.37406e-224 6.54963e-228 -1.89939e-224 5.29599e-228 -1.45061e-224 4.18006e-228 -1.08435e-224 3.16926e-228 -7.80592e-225 2.27286e-228 -5.32719e-225 1.53398e-228 -3.42789e-225 9.67834e-229 -2.06574e-225 5.7089e-229 -1.16567e-225 3.16827e-229 -6.19814e-226 1.67021e-229 -3.13545e-226 8.45177e-230 -1.5249e-226 4.14475e-230 -7.19814e-227 1.98443e-230 -3.32213e-227 9.32648e-231 -1.50711e-227 4.31822e-231 -6.74431e-228 1.97301e-231 -2.98198e-228 8.89613e-232 -1.30269e-228 3.954e-232 -5.61605e-229 1.72907e-232 -2.38446e-229 7.41993e-233 -9.94368e-230 3.1143e-233 -4.05936e-230 1.27336e-233 -1.61586e-230 5.04802e-234 -6.24228e-231 1.92972e-234 -2.32738e-231 7.06848e-235 -8.32122e-232 2.463e-235 -2.83245e-232 8.09696e-236 -9.10443e-233 2.48793e-236 -2.7379e-233 7.07062e-237 -7.62195e-234 1.8372e-237 -1.94153e-234 4.31032e-238 -4.46929e-235 9.01104e-239 -9.17539e-236 1.65551e-239 -1.65678e-236 2.6354e-240 -2.59424e-237 3.58465e-241 -3.4736e-238 4.11045e-242 -3.92378e-239 3.92427e-243 -3.69266e-240 3.08529e-244 -2.86362e-241 1.98002e-245 -1.81364e-242 1.03119e-246 -9.32478e-244 4.34964e-248 -3.8838e-245 1.49089e-249 -1.31455e-246 4.19267e-251 -3.65136e-248 -8.46713e-250 9.83844e-253 -3.07313e-246 -1.26972e-244 -8.5978e-245 -4.18949e-243 -2.02621e-243 -1.19156e-241 -3.96981e-242 -2.85794e-240 -6.42709e-241 -5.7049e-239 -8.59495e-240 -9.42082e-238 -9.53046e-239 -1.28657e-236 -8.82382e-238 -1.45875e-235 -6.8851e-237 -1.38295e-234 -4.57745e-236 -1.1066e-233 -2.62419e-235 -7.55641e-233 -1.3136e-234 -4.45663e-232 -5.81477e-234 -2.29895e-231 -2.30468e-233 -1.05056e-230 -8.27767e-233 -4.30659e-230 -2.72478e-232 -1.60296e-229 -8.30639e-232 -5.4796e-229 -2.36733e-231 -1.73859e-228 -6.36097e-231 -5.16919e-228 -1.62332e-230 -1.45258e-227 -3.95959e-230 -3.88703e-227 -9.28114e-230 -9.9702e-227 -2.09996e-229 -2.46521e-226 -4.60333e-229 -5.90427e-226 -9.8042e-229 -1.37534e-225 -2.0327e-228 -3.12621e-225 -4.10664e-228 -6.95141e-225 -8.08536e-228 -1.51459e-224 -1.55024e-227 -3.23659e-224 -2.88968e-227 -6.7857e-224 -5.22054e-227 -1.39535e-223 -9.09519e-227 -2.8108e-223 -1.51702e-226 -5.53291e-223 -2.39756e-226 -1.06038e-222 -3.53692e-226 -1.9685e-222 -4.7745e-226 -3.51569e-222 -5.70683e-226 -6.00521e-222 -5.63554e-226 -9.75342e-222 -3.66086e-226 -1.4978e-221 8.24898e-227 -2.17171e-221 7.29274e-226 -2.99506e-221 1.75452e-225 -3.91592e-221 3.25241e-225 -4.99004e-221 5.28536e-225 -6.18292e-221 7.77002e-225 -7.34877e-221 1.06045e-224 -8.41887e-221 1.37745e-224 -9.42903e-221 1.71986e-224 -1.03527e-220 2.08105e-224 -1.11852e-220 2.34059e-224 -1.13663e-220 2.51741e-224 -1.11456e-220 2.58404e-224 -1.05068e-220 2.46437e-224 -9.26321e-221 2.28468e-224 -7.98546e-221 2.06721e-224 -6.75194e-221 1.82368e-224 -5.59119e-221 1.55067e-224 -4.47672e-221 1.2547e-224 -3.42144e-221 9.90824e-225 -2.55909e-221 7.5151e-225 -1.84315e-221 5.39024e-225 -1.25826e-221 3.63682e-225 -8.09569e-222 2.29309e-225 -4.87649e-222 1.35116e-225 -2.74933e-222 7.48784e-226 -1.46011e-222 3.94062e-226 -7.37547e-223 1.99016e-226 -3.58096e-223 9.73811e-227 -1.68707e-223 4.65091e-227 -7.76893e-224 2.1799e-227 -3.51563e-224 1.00631e-227 -1.56893e-224 4.58293e-228 -6.91636e-225 2.0591e-228 -3.01158e-225 9.11679e-229 -1.29363e-225 3.97024e-229 -5.47076e-226 1.69626e-229 -2.27183e-226 7.08699e-230 -9.23433e-227 2.88424e-230 -3.65971e-227 1.13817e-230 -1.40761e-227 4.33193e-231 -5.2259e-228 1.58052e-231 -1.86137e-228 5.48958e-232 -6.317e-229 1.80071e-232 -2.0266e-229 5.52836e-233 -6.09058e-230 1.57257e-233 -1.69731e-230 4.0989e-234 -4.33775e-231 9.67313e-235 -1.00459e-231 2.0407e-235 -2.08161e-232 3.79765e-236 -3.8079e-233 6.15057e-237 -6.06707e-234 8.55417e-238 -8.30758e-235 1.00858e-238 -9.65066e-236 9.96104e-240 -9.39769e-237 8.15464e-241 -7.59071e-238 5.48742e-242 -5.04257e-239 3.01878e-243 -2.73958e-240 1.35562e-244 -1.2153e-241 4.98721e-246 -4.41799e-243 1.51815e-247 -1.32931e-244 -3.37039e-246 3.89164e-249 -1.01647e-242 -4.58455e-241 -2.64113e-241 -1.39354e-239 -5.82454e-240 -3.68e-238 -1.07579e-238 -8.25779e-237 -1.65371e-237 -1.55367e-235 -2.11427e-236 -2.43566e-234 -2.25599e-235 -3.17959e-233 -2.02232e-234 -3.46878e-232 -1.53653e-233 -3.18372e-231 -9.99863e-233 -2.48041e-230 -5.63661e-232 -1.65769e-229 -2.786e-231 -9.61321e-229 -1.22208e-230 -4.89611e-228 -4.81469e-230 -2.21697e-227 -1.7234e-229 -9.03293e-227 -5.66582e-229 -3.35045e-226 -1.72801e-228 -1.14378e-225 -4.93378e-228 -3.63031e-225 -1.32943e-227 -1.08119e-224 -3.40469e-227 -3.04636e-224 -8.33804e-227 -8.17958e-224 -1.96281e-226 -2.10618e-223 -4.46081e-226 -5.22936e-223 -9.82222e-226 -1.25784e-222 -2.10114e-225 -2.94269e-222 -4.37485e-225 -6.71732e-222 -8.87452e-225 -1.49981e-221 -1.75401e-224 -3.2807e-221 -3.37524e-224 -7.03685e-221 -6.31284e-224 -1.48049e-220 -1.14409e-223 -3.05432e-220 -1.9991e-223 -6.17118e-220 -3.34354e-223 -1.21813e-219 -5.29774e-223 -2.34039e-219 -7.83339e-223 -4.35447e-219 -1.05955e-222 -7.7922e-219 -1.26852e-222 -1.33321e-218 -1.25403e-222 -2.1684e-218 -8.14106e-223 -3.33398e-218 1.86914e-223 -4.83863e-218 1.63306e-222 -6.67801e-218 3.92699e-222 -8.73495e-218 7.28065e-222 -1.11345e-217 1.1835e-221 -1.37995e-217 1.74035e-221 -1.64033e-217 2.37501e-221 -1.87861e-217 3.08551e-221 -2.10402e-217 3.85346e-221 -2.31039e-217 4.66538e-221 -2.49737e-217 5.25119e-221 -2.53954e-217 5.65065e-221 -2.49122e-217 5.80114e-221 -2.34857e-217 5.53416e-221 -2.07106e-217 5.1336e-221 -1.78634e-217 4.64822e-221 -1.51145e-217 4.10474e-221 -1.25289e-217 3.49215e-221 -1.00374e-217 2.82686e-221 -7.67528e-218 2.23295e-221 -5.74295e-218 1.69385e-221 -4.13741e-218 1.21482e-221 -2.82471e-218 8.19252e-222 -1.81683e-218 5.16146e-222 -1.09368e-218 3.03771e-222 -6.15987e-219 1.68093e-222 -3.26717e-219 8.83091e-223 -1.6479e-219 4.45132e-223 -7.98755e-220 2.17344e-223 -3.75596e-220 1.03561e-223 -1.72593e-220 4.84164e-224 -7.79215e-221 2.22893e-224 -3.46875e-221 1.01211e-224 -1.525e-221 4.53293e-225 -6.62056e-222 2.00012e-225 -2.83462e-222 8.67845e-226 -1.19459e-222 3.69353e-226 -4.94274e-223 1.53703e-226 -2.0016e-223 6.23029e-227 -7.9025e-224 2.44894e-227 -3.02797e-224 9.28662e-228 -1.1202e-224 3.37747e-228 -3.97803e-225 1.17021e-228 -1.34706e-225 3.83298e-229 -4.31614e-226 1.17662e-229 -1.29712e-226 3.35234e-230 -3.62097e-227 8.77109e-231 -9.29042e-228 2.08326e-231 -2.16574e-228 4.43707e-232 -4.53101e-229 8.36707e-233 -8.39948e-230 1.37903e-233 -1.36202e-230 1.96127e-234 -1.90732e-231 2.37731e-235 -2.27817e-232 2.42785e-236 -2.29443e-233 2.06817e-237 -1.92881e-234 1.45795e-238 -1.34258e-235 8.46268e-240 -7.69833e-237 4.03998e-241 -3.63179e-238 1.59241e-242 -1.41527e-239 5.23569e-244 -4.60236e-241 -1.27218e-242 1.46219e-245 -3.20761e-239 -1.57235e-237 -7.75655e-238 -4.4142e-236 -1.60349e-236 -1.08463e-234 -2.7959e-235 -2.28113e-233 -4.08524e-234 -4.05111e-232 -4.99744e-233 -6.03603e-231 -5.13434e-232 -7.53888e-230 -4.45782e-231 -7.91876e-229 -3.2985e-230 -7.03942e-228 -2.10082e-229 -5.34108e-227 -1.16436e-228 -3.49367e-226 -5.68066e-228 -1.9919e-225 -2.46819e-227 -1.00139e-224 -9.6608e-227 -4.49136e-224 -3.44429e-226 -1.81809e-223 -1.13021e-225 -6.71668e-223 -3.44634e-225 -2.28854e-222 -9.85097e-225 -7.26186e-222 -2.66004e-224 -2.16501e-221 -6.83185e-224 -6.1126e-221 -1.67874e-223 -1.64581e-220 -3.96645e-223 -4.25177e-220 -9.04942e-223 -1.05948e-219 -2.00047e-222 -2.55811e-219 -4.29619e-222 -6.00775e-219 -8.97967e-222 -1.37666e-218 -1.82832e-221 -3.08527e-218 -3.6264e-221 -6.77313e-218 -7.00165e-221 -1.45779e-217 -1.31367e-220 -3.07709e-217 -2.3878e-220 -6.36756e-217 -4.18379e-220 -1.29021e-216 -7.01553e-220 -2.55344e-216 -1.11422e-219 -4.91778e-216 -1.65098e-219 -9.1699e-216 -2.23696e-219 -1.64413e-215 -2.68129e-219 -2.81782e-215 -2.65102e-219 -4.58999e-215 -1.71421e-219 -7.06686e-215 4.13793e-220 -1.02678e-214 3.498e-219 -1.41844e-214 8.39255e-219 -1.85653e-214 1.55525e-218 -2.36777e-214 2.52815e-218 -2.93565e-214 3.71814e-218 -3.49048e-214 5.07307e-218 -3.9967e-214 6.59171e-218 -4.47659e-214 8.23435e-218 -4.9164e-214 9.97536e-218 -5.317e-214 1.12368e-217 -5.41062e-214 1.20975e-217 -5.30991e-214 1.2421e-217 -5.00621e-214 1.1852e-217 -4.4156e-214 1.09994e-217 -3.81048e-214 9.96519e-218 -3.2261e-214 8.8076e-218 -2.67665e-214 7.49594e-218 -2.14531e-214 6.06942e-218 -1.64104e-214 4.7946e-218 -1.22813e-214 3.63685e-218 -8.84856e-215 2.60771e-218 -6.04044e-215 1.75752e-218 -3.88323e-215 1.10629e-218 -2.33579e-215 6.50277e-219 -1.31413e-215 3.59281e-219 -6.96079e-216 1.88425e-219 -3.50562e-216 9.47992e-220 -1.69636e-216 4.61933e-220 -7.96201e-217 2.19621e-220 -3.65135e-217 1.02435e-220 -1.64496e-217 4.70391e-221 -7.30589e-218 2.13025e-221 -3.20398e-218 9.51368e-222 -1.38721e-218 4.18517e-222 -5.92228e-219 1.81012e-222 -2.48829e-219 7.6781e-223 -1.02635e-219 3.18422e-223 -4.14284e-220 1.28629e-223 -1.63025e-220 5.03934e-224 -6.22667e-221 1.90523e-224 -2.29703e-221 6.91187e-225 -8.13863e-222 2.39056e-225 -2.75157e-222 7.82422e-226 -8.81042e-223 2.40317e-226 -2.64944e-223 6.86262e-227 -7.41366e-224 1.80347e-227 -1.91073e-224 4.31337e-228 -4.48549e-225 9.27932e-229 -9.47885e-226 1.77382e-229 -1.78135e-226 2.97593e-230 -2.94049e-227 4.32823e-231 -4.21131e-228 5.3926e-232 -5.17104e-229 5.69247e-233 -5.38381e-230 5.04283e-234 -4.70728e-231 3.72112e-235 -3.43021e-232 2.27664e-236 -2.07363e-233 1.15381e-237 -1.03891e-234 4.86424e-239 -4.33154e-236 1.72396e-240 -1.51918e-237 -4.56665e-239 5.23238e-242 -9.67731e-236 -5.13462e-234 -2.1821e-234 -1.33448e-232 -4.23538e-233 -3.05708e-231 -6.98064e-232 -6.03584e-230 -9.70501e-231 -1.01315e-228 -1.13681e-229 -1.43626e-227 -1.12517e-228 -1.7177e-226 -9.46519e-228 -1.73822e-225 -6.82162e-227 -1.49718e-224 -4.25223e-226 -1.1065e-223 -2.31664e-225 -7.08413e-223 -1.11529e-224 -3.9705e-222 -4.798e-224 -1.96985e-221 -1.8649e-223 -8.74846e-221 -6.61879e-223 -3.51689e-220 -2.16653e-222 -1.29346e-219 -6.60099e-222 -4.39631e-219 -1.88773e-221 -1.39386e-218 -5.10499e-221 -4.15749e-218 -1.31407e-220 -1.17554e-217 -3.23796e-220 -3.17218e-217 -7.67467e-220 -8.21774e-217 -1.7569e-219 -2.05418e-216 -3.8974e-219 -4.97648e-216 -8.39954e-219 -1.17278e-215 -1.76173e-218 -2.69671e-215 -3.59912e-218 -6.06424e-215 -7.1619e-218 -1.33569e-214 -1.38705e-217 -2.88395e-214 -2.61001e-217 -6.10573e-214 -4.75708e-217 -1.26708e-213 -8.35643e-217 -2.57422e-213 -1.40457e-216 -5.10729e-213 -2.23559e-216 -9.85916e-213 -3.31875e-216 -1.84232e-212 -4.50313e-216 -3.30968e-212 -5.40184e-216 -5.68234e-212 -5.33766e-216 -9.27096e-212 -3.42905e-216 -1.42952e-211 8.88374e-217 -2.07969e-211 7.17239e-216 -2.87614e-211 1.71486e-215 -3.76744e-211 3.17507e-215 -4.808e-211 5.16029e-215 -5.96415e-211 7.58944e-215 -7.09383e-211 1.03526e-214 -8.12136e-211 1.34535e-214 -9.09748e-211 1.68106e-214 -9.99291e-211 2.03781e-214 -1.0813e-210 2.29737e-214 -1.10116e-210 2.47454e-214 -1.08116e-210 2.54087e-214 -1.01941e-210 2.42482e-214 -8.99332e-211 2.25128e-214 -7.76454e-211 2.04059e-214 -6.57736e-211 1.80489e-214 -5.46163e-211 1.53646e-214 -4.37883e-211 1.24422e-214 -3.35036e-211 9.82818e-215 -2.5075e-211 7.45372e-215 -1.80652e-211 5.34279e-215 -1.23292e-211 3.59843e-215 -7.92143e-212 2.26293e-215 -4.76083e-212 1.32844e-215 -2.67546e-212 7.32839e-216 -1.41524e-212 3.83687e-216 -7.11674e-213 1.92689e-216 -3.43814e-213 9.37115e-217 -1.61088e-213 4.44625e-217 -7.37366e-214 2.06928e-217 -3.31531e-214 9.48056e-218 -1.46934e-214 4.28311e-218 -6.42912e-215 1.908e-218 -2.77687e-215 8.37115e-219 -1.18252e-215 3.61049e-219 -4.95553e-216 1.52705e-219 -2.03846e-216 6.31428e-220 -8.20502e-217 2.54329e-220 -3.21968e-217 9.93666e-221 -1.22654e-217 3.74774e-221 -4.51468e-218 1.35706e-221 -1.59684e-218 4.68822e-222 -5.39295e-219 1.53423e-222 -1.72662e-219 4.71802e-223 -5.19882e-220 1.35121e-223 -1.45906e-220 3.56857e-224 -3.77923e-221 8.59893e-225 -8.9382e-222 1.86937e-225 -1.90875e-222 3.62379e-226 -3.63772e-223 6.18977e-227 -6.11384e-224 9.20629e-228 -8.95505e-225 1.17878e-228 -1.13012e-225 1.28575e-229 -1.21585e-226 1.18391e-230 -1.10502e-227 9.13801e-232 -8.42372e-229 5.88697e-233 -5.36293e-230 3.16335e-234 -2.84952e-231 1.42411e-235 -1.26909e-232 5.43033e-237 -4.79059e-234 -1.5624e-235 1.78723e-238 -2.79649e-232 -1.59992e-230 -5.8904e-231 -3.85794e-229 -1.07503e-229 -8.25477e-228 -1.67683e-228 -1.53234e-226 -2.22026e-227 -2.43408e-225 -2.49212e-226 -3.28633e-224 -2.37749e-225 -3.76635e-223 -1.93837e-224 -3.67385e-222 -1.36086e-223 -3.06711e-221 -8.30211e-223 -2.20831e-220 -4.44531e-222 -1.38382e-219 -2.11123e-221 -7.62357e-219 -8.98964e-221 -3.73168e-218 -3.46825e-220 -1.64057e-217 -1.22477e-219 -6.54698e-217 -3.99693e-219 -2.39602e-216 -1.21609e-218 -8.11975e-216 -3.47742e-218 -2.57093e-215 -9.41262e-218 -7.66802e-215 -2.427e-217 -2.17026e-214 -5.99393e-217 -5.86673e-214 -1.4245e-216 -1.52336e-213 -3.27062e-216 -3.81834e-213 -7.27784e-216 -9.27786e-213 -1.57344e-215 -2.19323e-212 -3.31052e-215 -5.05895e-212 -6.78401e-215 -1.14115e-211 -1.35396e-214 -2.52104e-211 -2.62967e-214 -5.45906e-211 -4.96151e-214 -1.15896e-210 -9.06573e-214 -2.41144e-210 -1.59626e-213 -4.91135e-210 -2.68887e-213 -9.76726e-210 -4.28816e-213 -1.88972e-209 -6.37648e-213 -3.53871e-209 -8.66286e-213 -6.36985e-209 -1.03976e-212 -1.09563e-208 -1.02642e-212 -1.79059e-208 -6.5421e-213 -2.76537e-208 1.83349e-213 -4.02872e-208 1.40845e-212 -5.57821e-208 3.35421e-212 -7.31335e-208 6.20397e-212 -9.34003e-208 1.00804e-211 -1.15925e-207 1.48256e-211 -1.37939e-207 2.02178e-211 -1.579e-207 2.62774e-211 -1.76901e-207 3.28434e-211 -1.94347e-207 3.98392e-211 -2.10415e-207 4.49502e-211 -2.14448e-207 4.84379e-211 -2.10655e-207 4.97359e-211 -1.98638e-207 4.74679e-211 -1.75271e-207 4.40851e-211 -1.51386e-207 3.99754e-211 -1.283e-207 3.53818e-211 -1.06614e-207 3.0124e-211 -8.54951e-208 2.43952e-211 -6.54237e-208 1.92675e-211 -4.89627e-208 1.46093e-211 -3.52697e-208 1.04681e-211 -2.40641e-208 7.04538e-212 -1.54514e-208 4.42631e-212 -9.27862e-209 2.59507e-212 -5.20842e-209 1.42941e-212 -2.75139e-209 7.4716e-213 -1.38152e-209 3.74581e-213 -6.66372e-210 1.81842e-213 -3.11705e-210 8.61126e-214 -1.42435e-210 3.99967e-214 -6.39245e-211 1.82868e-214 -2.82765e-211 8.24384e-215 -1.23473e-211 3.66418e-215 -5.32182e-212 1.60387e-215 -2.26138e-212 6.90079e-216 -9.45525e-213 2.91142e-216 -3.8802e-213 1.20085e-216 -1.55803e-213 4.8251e-217 -6.09955e-214 1.88099e-217 -2.31881e-214 7.08116e-218 -8.52039e-215 2.56069e-218 -3.00983e-215 8.8413e-219 -1.01592e-215 2.89465e-219 -3.25414e-216 8.91739e-220 -9.81607e-217 2.56265e-220 -2.7644e-217 6.80509e-221 -7.1993e-218 1.65285e-221 -1.71624e-218 3.63256e-222 -3.70517e-219 7.14282e-223 -7.16279e-220 1.2423e-223 -1.22581e-220 1.88949e-224 -1.83613e-221 2.48595e-225 -2.38097e-222 2.80099e-226 -2.64607e-223 2.67955e-227 -2.49849e-224 2.16188e-228 -1.99107e-225 1.46512e-229 -1.33364e-226 8.33749e-231 -7.50518e-228 4.00263e-232 -3.56558e-229 1.63921e-233 -1.44605e-230 -5.10546e-232 5.83805e-235 -7.75274e-229 -4.76596e-227 -1.52795e-227 -1.06838e-225 -2.6256e-226 -2.13873e-224 -3.88011e-225 -3.73789e-223 -4.8973e-224 -5.62538e-222 -5.271e-223 -7.24014e-221 -4.84915e-222 -7.95714e-220 -3.83278e-221 -7.48542e-219 -2.62159e-220 -6.05888e-218 -1.56521e-219 -4.25052e-217 -8.2357e-219 -2.60707e-216 -3.85778e-218 -1.41161e-215 -1.62534e-217 -6.81608e-215 -6.22179e-217 -2.96545e-214 -2.18516e-216 -1.17436e-213 -7.10608e-216 -4.27494e-213 -2.15796e-215 -1.4438e-212 -6.16694e-215 -4.56328e-212 -1.66997e-214 -1.36038e-211 -4.31124e-214 -3.85235e-211 -1.06669e-213 -1.04278e-210 -2.54081e-213 -2.71295e-210 -5.84853e-213 -6.81603e-210 -1.30497e-212 -1.66051e-209 -2.82924e-212 -3.93619e-209 -5.96953e-212 -9.10485e-209 -1.2267e-211 -2.05953e-208 -2.45488e-211 -4.56235e-208 -4.78024e-211 -9.90543e-208 -9.04118e-211 -2.10827e-207 -1.65582e-210 -4.39735e-207 -2.9218e-210 -8.97701e-207 -4.93159e-210 -1.78932e-206 -7.87914e-210 -3.4695e-206 -1.17347e-209 -6.51078e-206 -1.59612e-209 -1.17433e-205 -1.91681e-209 -2.02363e-205 -1.89044e-209 -3.31301e-205 -1.1952e-209 -5.12498e-205 3.61538e-210 -7.47698e-205 2.65062e-209 -1.03654e-204 6.28861e-209 -1.36024e-204 1.16205e-208 -1.73854e-204 1.8877e-208 -2.15917e-204 2.77635e-208 -2.57043e-204 3.78506e-208 -2.94217e-204 4.92008e-208 -3.29681e-204 6.15091e-208 -3.62271e-204 7.46566e-208 -3.92459e-204 8.42985e-208 -4.00305e-204 9.08743e-208 -3.93414e-204 9.33027e-208 -3.70988e-204 8.90494e-208 -3.27382e-204 8.27265e-208 -2.82868e-204 7.50411e-208 -2.39824e-204 6.64588e-208 -1.99417e-204 5.65877e-208 -1.59938e-204 4.58266e-208 -1.224e-204 3.6188e-208 -9.15938e-205 2.74322e-208 -6.59661e-205 1.96486e-208 -4.49943e-205 1.32144e-208 -2.88727e-205 8.29384e-209 -1.73235e-205 4.85625e-209 -9.71314e-206 2.67092e-209 -5.12406e-206 1.39389e-209 -2.56912e-206 6.97666e-210 -1.23734e-206 3.38109e-210 -5.77892e-207 1.59831e-210 -2.63647e-207 7.41015e-211 -1.18124e-207 3.38167e-211 -5.21595e-208 1.52156e-211 -2.27351e-208 6.74964e-212 -9.7812e-209 2.94844e-212 -4.14846e-209 1.26595e-212 -1.73111e-209 5.32971e-213 -7.08941e-210 2.19369e-213 -2.84086e-210 8.79695e-214 -1.11008e-210 3.42334e-214 -4.21317e-211 1.28698e-214 -1.54605e-211 4.65018e-215 -5.45686e-212 1.60549e-215 -1.84177e-212 5.26153e-216 -5.90544e-213 1.6246e-216 -1.78546e-213 4.68701e-217 -5.04771e-214 1.25203e-217 -1.32234e-214 3.06655e-218 -3.17879e-215 6.8154e-219 -6.9399e-216 1.35963e-219 -1.36112e-216 2.40802e-220 -2.37202e-217 3.74531e-221 -3.6332e-218 5.06275e-222 -4.84017e-219 5.89113e-223 -5.55487e-220 5.85254e-224 -5.44687e-221 4.93249e-225 -4.53432e-222 3.51351e-226 -3.19255e-223 2.11513e-227 -1.90086e-224 1.08144e-228 -9.61961e-226 4.74929e-230 -4.18496e-227 -1.59639e-228 1.82687e-231 -2.06488e-225 -1.35959e-223 -3.81343e-224 -2.83844e-222 -6.17758e-223 -5.3241e-221 -8.65813e-222 -8.77188e-220 -1.04254e-220 -1.25206e-218 -1.07663e-219 -1.53747e-217 -9.55545e-219 -1.62142e-216 -7.32394e-218 -1.47167e-215 -4.88114e-217 -1.15527e-214 -2.85213e-216 -7.89817e-214 -1.47459e-215 -4.7419e-213 -6.81136e-215 -2.52332e-212 -2.83873e-214 -1.20171e-211 -1.07783e-213 -5.17268e-211 -3.76332e-213 -2.03214e-210 -1.21901e-212 -7.35536e-210 -3.69317e-212 -2.4748e-209 -1.05432e-211 -7.80485e-209 -2.85506e-211 -2.3247e-208 -7.37669e-211 -6.58418e-208 -1.82775e-210 -1.78396e-207 -4.3618e-210 -4.64845e-207 -1.0062e-209 -1.17019e-206 -2.25046e-209 -2.85727e-206 -4.89121e-209 -6.78958e-206 -1.03462e-208 -1.57445e-205 -2.1314e-208 -3.57039e-205 -4.2758e-208 -7.92885e-205 -8.34559e-208 -1.7256e-204 -1.582e-207 -3.68136e-204 -2.90347e-207 -7.69587e-204 -5.13365e-207 -1.57457e-203 -8.68134e-207 -3.14531e-203 -1.38944e-206 -6.1119e-203 -2.07257e-206 -1.14934e-202 -2.82256e-206 -2.07718e-202 -3.39209e-206 -3.58609e-202 -3.34327e-206 -5.88113e-202 -2.09805e-206 -9.11241e-202 6.7951e-207 -1.33132e-201 4.78554e-206 -1.8479e-201 1.13166e-205 -2.42733e-201 2.08956e-205 -3.10498e-201 3.39384e-205 -3.85891e-201 4.99164e-205 -4.59657e-201 6.80302e-205 -5.26135e-201 8.8436e-205 -5.89694e-201 1.10577e-204 -6.48148e-201 1.34287e-204 -7.02598e-201 1.51738e-204 -7.1723e-201 1.63631e-204 -7.05208e-201 1.67986e-204 -6.65004e-201 1.60328e-204 -5.86871e-201 1.48985e-204 -5.07229e-201 1.35189e-204 -4.30194e-201 1.19799e-204 -3.57939e-201 1.02012e-204 -2.87109e-201 8.26129e-205 -2.19738e-201 6.52256e-205 -1.64416e-201 4.94309e-205 -1.18392e-201 3.5391e-205 -8.07299e-202 2.37838e-205 -5.17726e-202 1.49127e-205 -3.10367e-202 8.72053e-206 -1.73818e-202 4.78923e-206 -9.15709e-203 2.49553e-206 -4.58461e-203 1.24708e-206 -2.20485e-203 6.03398e-207 -1.02824e-203 2.8477e-207 -4.68387e-204 1.31806e-207 -2.09525e-204 6.00487e-208 -9.23709e-205 2.69722e-208 -4.01978e-205 1.1944e-208 -1.72661e-205 5.20823e-209 -7.31069e-206 2.23221e-209 -3.04533e-206 9.38089e-210 -1.24496e-206 3.85445e-210 -4.98047e-207 1.54322e-210 -1.9432e-207 5.99743e-211 -7.36554e-208 2.25258e-211 -2.70022e-208 8.13616e-212 -9.52679e-209 2.81021e-212 -3.2168e-209 9.22293e-213 -1.03291e-209 2.85554e-213 -3.13129e-210 8.27429e-214 -8.89066e-211 2.22438e-214 -2.34384e-211 5.49575e-215 -5.68355e-212 1.23549e-215 -1.25506e-212 2.50103e-216 -2.49767e-213 4.51115e-217 -4.43259e-214 7.17536e-218 -6.9423e-215 9.96461e-219 -9.50054e-216 1.19719e-219 -1.12569e-216 1.23458e-220 -1.14578e-217 1.08624e-221 -9.95733e-219 8.12667e-223 -7.36355e-220 5.1704e-224 -4.63444e-221 2.81191e-225 -2.49507e-222 1.32233e-226 -1.16258e-223 -4.78278e-225 5.48413e-228 -5.29037e-222 -3.71989e-220 -9.16756e-221 -7.24427e-219 -1.40161e-219 -1.27494e-217 -1.86478e-218 -1.98251e-216 -2.14373e-217 -2.68639e-215 -2.12534e-216 -3.14969e-214 -1.82052e-215 -3.18926e-213 -1.35346e-214 -2.79417e-212 -8.79051e-214 -2.12796e-211 -5.02717e-213 -1.41803e-210 -2.55377e-212 -8.3342e-210 -1.16307e-211 -4.35841e-209 -4.79381e-211 -2.04693e-208 -1.80482e-210 -8.71539e-208 -6.26263e-210 -3.39573e-207 -2.01985e-209 -1.22171e-206 -6.1028e-209 -4.09374e-206 -1.73975e-208 -1.2878e-205 -4.70938e-208 -3.83104e-205 -1.21732e-207 -1.08483e-204 -3.01939e-207 -2.94105e-204 -7.21643e-207 -7.67259e-204 -1.66777e-206 -1.93463e-203 -3.73773e-206 -4.73291e-203 -8.1413e-206 -1.12704e-202 -1.72594e-205 -2.61934e-202 -3.56354e-205 -5.95332e-202 -7.16462e-205 -1.32504e-201 -1.40142e-204 -2.89015e-201 -2.66206e-204 -6.17921e-201 -4.8955e-204 -1.29453e-200 -8.67247e-204 -2.6542e-200 -1.46929e-203 -5.31313e-200 -2.35572e-203 -1.03459e-199 -3.51958e-203 -1.94953e-199 -4.79965e-203 -3.53021e-199 -5.77327e-203 -6.10562e-199 -5.68832e-203 -1.00299e-198 -3.5461e-203 -1.5565e-198 1.21922e-203 -2.27721e-198 8.29951e-203 -3.16473e-198 1.95718e-202 -4.16129e-198 3.61154e-202 -5.3278e-198 5.86499e-202 -6.62664e-198 8.6263e-202 -7.89862e-198 1.17522e-201 -9.04152e-198 1.52772e-201 -1.01366e-197 1.91036e-201 -1.11441e-197 2.3211e-201 -1.20877e-197 2.62455e-201 -1.23491e-197 2.83122e-201 -1.21471e-197 2.90631e-201 -1.14538e-197 2.77383e-201 -1.01081e-197 2.57831e-201 -8.73883e-198 2.34034e-201 -7.41414e-198 2.07516e-201 -6.17276e-198 1.76717e-201 -4.95183e-198 1.43112e-201 -3.79016e-198 1.12972e-201 -2.83566e-198 8.55909e-202 -2.04153e-198 6.12553e-202 -1.39172e-198 4.11347e-202 -8.91973e-199 2.57665e-202 -5.34258e-199 1.50486e-202 -2.98855e-199 8.25272e-203 -1.57231e-199 4.29382e-203 -7.86098e-200 2.1425e-203 -3.77524e-200 1.03507e-203 -1.7581e-200 4.87751e-204 -7.99704e-201 2.25411e-204 -3.57216e-201 1.02536e-204 -1.57256e-201 4.59857e-205 -6.83373e-202 2.03325e-205 -2.93105e-202 8.85256e-206 -1.23919e-202 3.78836e-206 -5.15421e-203 1.58969e-206 -2.10404e-203 6.52257e-207 -8.40595e-204 2.60823e-207 -3.27575e-204 1.01267e-207 -1.24042e-204 3.80145e-208 -4.54478e-205 1.37312e-208 -1.60352e-205 4.74663e-209 -5.41886e-206 1.56068e-209 -1.7431e-206 4.84725e-210 -5.30042e-207 1.41125e-210 -1.51203e-207 3.81938e-211 -4.01277e-208 9.52168e-212 -9.8177e-209 2.16569e-212 -2.19324e-209 4.44941e-213 -4.42939e-210 8.17451e-214 -8.00562e-211 1.32973e-214 -1.2821e-211 1.89697e-215 -1.8022e-212 2.35257e-216 -2.20406e-213 2.51738e-217 -2.32768e-214 2.31106e-218 -2.11069e-215 1.81465e-219 -1.63822e-216 1.21912e-220 -1.08884e-217 7.04477e-222 -6.22968e-219 3.54262e-223 -3.10457e-220 -1.37508e-221 1.58156e-224 -1.30535e-218 -9.77498e-217 -2.12501e-217 -1.77822e-215 -3.06933e-216 -2.93995e-214 -3.87968e-215 -4.31906e-213 -4.2609e-214 -5.56075e-212 -4.05753e-213 -6.22942e-211 -3.35564e-212 -6.05956e-210 -2.42048e-211 -5.12667e-209 -1.53226e-210 -3.78895e-208 -8.57689e-210 -2.46153e-207 -4.28081e-209 -1.41636e-206 -1.92202e-208 -7.27898e-206 -7.83297e-208 -3.37086e-205 -2.92344e-207 -1.41941e-204 -1.00784e-206 -5.48356e-204 -3.23555e-206 -1.96053e-203 -9.74624e-206 -6.54062e-203 -2.77355e-205 -2.05174e-202 -7.50249e-205 -6.0942e-202 -1.9395e-204 -1.72477e-201 -4.81417e-204 -4.67717e-201 -1.15196e-203 -1.22122e-200 -2.66631e-203 -3.08333e-200 -5.98604e-203 -7.55536e-200 -1.30631e-202 -1.80247e-199 -2.77481e-202 -4.19734e-199 -5.74065e-202 -9.55928e-199 -1.1565e-201 -2.132e-198 -2.26665e-201 -4.65985e-198 -4.31406e-201 -9.98324e-198 -7.94876e-201 -2.09571e-197 -1.4108e-200 -4.30556e-197 -2.39461e-200 -8.6362e-197 -3.84611e-200 -1.68506e-196 -5.7558e-200 -3.18148e-196 -7.86029e-200 -5.77188e-196 -9.46411e-200 -1.00001e-195 -9.32357e-200 -1.6454e-195 -5.77754e-200 -2.5574e-195 2.09358e-200 -3.74676e-195 1.38428e-199 -5.21363e-195 3.25645e-199 -6.86283e-195 6.0058e-199 -8.79516e-195 9.75208e-199 -1.09486e-194 1.43438e-198 -1.30598e-194 1.95339e-198 -1.49509e-194 2.5392e-198 -1.67663e-194 3.17533e-198 -1.84368e-194 3.85991e-198 -2.00092e-194 4.36762e-198 -2.04571e-194 4.71333e-198 -2.01298e-194 4.83798e-198 -1.89789e-194 4.61753e-198 -1.67489e-194 4.29328e-198 -1.44842e-194 3.89826e-198 -1.22928e-194 3.45856e-198 -1.0241e-194 2.94539e-198 -8.21618e-195 2.38528e-198 -6.2891e-195 1.88253e-198 -4.70471e-195 1.42584e-198 -3.38648e-195 1.02001e-198 -2.30787e-195 6.84464e-199 -1.4782e-195 4.28331e-199 -8.84592e-196 2.49852e-199 -4.94243e-196 1.36828e-199 -2.59681e-196 7.10872e-200 -1.29654e-196 3.54194e-200 -6.2182e-197 1.70873e-200 -2.89186e-197 8.04069e-201 -1.31365e-197 3.71078e-201 -5.8602e-198 1.68567e-201 -2.57655e-198 7.54986e-202 -1.11827e-198 3.3338e-202 -4.79028e-199 1.44964e-202 -2.02268e-199 6.19581e-203 -8.40272e-200 2.59679e-203 -3.42623e-200 1.06432e-203 -1.36739e-200 4.25214e-204 -5.32379e-201 1.64993e-204 -2.01465e-201 6.19247e-205 -7.38002e-202 2.23767e-205 -2.60491e-202 7.74441e-206 -8.81292e-203 2.55195e-206 -2.84088e-203 7.95372e-207 -8.66807e-204 2.32748e-207 -2.48515e-204 6.34314e-208 -6.64094e-205 1.596e-208 -1.63966e-205 3.67347e-209 -3.70632e-206 7.66109e-210 -7.59703e-207 1.43381e-210 -1.3985e-207 2.3853e-211 -2.29027e-208 3.49522e-212 -3.30638e-209 4.47336e-213 -4.17276e-210 4.96514e-214 -4.57059e-211 4.75392e-215 -4.32235e-212 3.91513e-216 -3.51893e-213 2.77513e-217 -2.46763e-214 1.70229e-218 -1.49882e-215 9.1434e-220 -7.97931e-217 -3.79986e-218 4.38794e-221 -3.10501e-215 -2.46999e-213 -4.75365e-214 -4.20265e-212 -6.49247e-213 -6.5344e-211 -7.8026e-212 -9.07769e-210 -8.19154e-211 -1.11131e-208 -7.49601e-210 -1.19023e-207 -5.9875e-209 -1.11278e-206 -4.19138e-208 -9.09501e-206 -2.5865e-207 -6.52496e-205 -1.41717e-206 -4.13332e-204 -6.94925e-206 -2.32852e-203 -3.07554e-205 -1.17596e-202 -1.2391e-204 -5.36927e-202 -4.58347e-204 -2.23565e-201 -1.56952e-203 -8.56228e-201 -5.01431e-203 -3.04151e-200 -1.50545e-202 -1.01003e-199 -4.27554e-202 -3.15866e-199 -1.1554e-201 -9.36508e-199 -2.98633e-201 -2.64834e-198 -7.41583e-201 -7.18148e-198 -1.77611e-200 -1.8762e-197 -4.11608e-200 -4.74192e-197 -9.25466e-200 -1.16356e-196 -2.02295e-199 -2.78035e-196 -4.30465e-199 -6.48592e-196 -8.92185e-199 -1.47989e-195 -1.80071e-198 -3.30687e-195 -3.53585e-198 -7.2416e-195 -6.74233e-198 -1.55442e-194 -1.24462e-197 -3.26934e-194 -2.21318e-197 -6.72957e-194 -3.76345e-197 -1.35242e-193 -6.05545e-197 -2.64382e-193 -9.07713e-197 -5.00107e-193 -1.24136e-196 -9.08947e-193 -1.49618e-196 -1.57746e-192 -1.47401e-196 -2.5997e-192 -9.08808e-197 -4.0469e-192 3.43863e-197 -5.93738e-192 2.22114e-196 -8.27266e-192 5.21529e-196 -1.09019e-191 9.61543e-196 -1.39856e-191 1.56141e-195 -1.74254e-191 2.29699e-195 -2.08011e-191 3.12719e-195 -2.38152e-191 4.06517e-195 -2.67139e-191 5.08408e-195 -2.9381e-191 6.18353e-195 -3.19045e-191 7.00231e-195 -3.26429e-191 7.55981e-195 -3.21329e-191 7.75939e-195 -3.02929e-191 7.40596e-195 -2.67341e-191 6.88782e-195 -2.31268e-191 6.25597e-195 -1.96349e-191 5.55349e-195 -1.63679e-191 4.72958e-195 -1.31326e-191 3.8301e-195 -1.00528e-191 3.02215e-195 -7.51903e-192 2.28827e-195 -5.41095e-192 1.6363e-195 -3.68628e-192 1.09721e-195 -2.35949e-192 6.85972e-196 -1.41069e-192 3.99649e-196 -7.8726e-193 2.1856e-196 -4.13092e-193 1.1339e-196 -2.05974e-193 5.64192e-197 -9.86553e-194 2.71821e-197 -4.58222e-194 1.27744e-197 -2.07894e-194 5.88801e-198 -9.2633e-195 2.6715e-198 -4.0682e-195 1.19516e-198 -1.76372e-195 5.2717e-199 -7.54702e-196 2.28989e-199 -3.18342e-196 9.7772e-200 -1.3212e-196 4.09401e-200 -5.38247e-197 1.67661e-200 -2.14639e-197 6.6943e-201 -8.35142e-198 2.59674e-201 -3.15936e-198 9.74716e-202 -1.15747e-198 3.52465e-202 -4.08823e-199 1.22167e-202 -1.38507e-199 4.03578e-203 -4.47561e-200 1.26261e-203 -1.37067e-200 3.7145e-204 -3.95037e-201 1.01963e-204 -1.06312e-201 2.58982e-205 -2.64938e-202 6.03335e-206 -6.06053e-203 1.27745e-206 -1.26097e-203 2.43564e-207 -2.36441e-204 4.1438e-208 -3.95938e-205 6.23596e-209 -5.86971e-206 8.23478e-210 -7.64224e-207 9.47762e-211 -8.67942e-208 9.45966e-212 -8.55575e-209 8.16663e-213 -7.30147e-210 6.10298e-214 -5.39816e-211 3.97029e-215 -3.47744e-212 2.27537e-216 -1.9754e-213 -1.01016e-214 1.17235e-217 -7.12698e-212 -6.00842e-210 -1.02712e-210 -9.57299e-209 -1.32756e-209 -1.40114e-207 -1.51791e-208 -1.84213e-206 -1.52414e-207 -2.14575e-205 -1.34084e-206 -2.19829e-204 -1.03474e-205 -1.97622e-203 -7.03109e-205 -1.56088e-202 -4.23019e-204 -1.08726e-201 -2.26879e-203 -6.71648e-201 -1.09297e-202 -3.70469e-200 -4.76765e-202 -1.83853e-199 -1.89866e-201 -8.27591e-199 -6.95967e-201 -3.4071e-198 -2.3668e-200 -1.29346e-197 -7.5234e-200 -4.56436e-197 -2.25087e-199 -1.50851e-196 -6.3783e-199 -4.70223e-196 -1.72154e-198 -1.39134e-195 -4.44775e-198 -3.93045e-195 -1.10471e-197 -1.06554e-194 -2.64758e-197 -2.78474e-194 -6.14199e-197 -7.04391e-194 -1.38274e-196 -1.73042e-193 -3.02693e-196 -4.14075e-193 -6.45122e-196 -9.67481e-193 -1.33932e-195 -2.21126e-192 -2.70784e-195 -4.94989e-192 -5.32652e-195 -1.08591e-191 -1.01753e-194 -2.33514e-191 -1.88178e-194 -4.92022e-191 -3.35232e-194 -1.01459e-190 -5.7109e-194 -2.04267e-190 -9.20503e-194 -4.00043e-190 -1.38208e-193 -7.58092e-190 -1.89275e-193 -1.38028e-189 -2.28382e-193 -2.39947e-189 -2.25099e-193 -3.96076e-189 -1.38377e-193 -6.17531e-189 5.38214e-194 -9.07314e-189 3.42729e-193 -1.26584e-188 8.04102e-193 -1.67008e-188 1.48283e-192 -2.14459e-188 2.40893e-192 -2.67433e-188 3.54542e-192 -3.19475e-188 4.8264e-192 -3.65786e-188 6.27522e-192 -4.10407e-188 7.84958e-192 -4.5146e-188 9.55304e-192 -4.90511e-188 1.08271e-191 -5.02252e-188 1.16946e-191 -4.94614e-188 1.20029e-191 -4.6627e-188 1.14564e-191 -4.11515e-188 1.06578e-191 -3.56115e-188 9.68307e-192 -3.02455e-188 8.60069e-192 -2.52284e-188 7.32486e-192 -2.02426e-188 5.93171e-192 -1.54957e-188 4.67938e-192 -1.1588e-188 3.54198e-192 -8.33693e-189 2.53182e-192 -5.67766e-189 1.69651e-192 -3.6317e-189 1.05966e-192 -2.16937e-189 6.16615e-193 -1.20927e-189 3.3676e-193 -6.33714e-190 1.74476e-193 -3.15568e-190 8.67007e-194 -1.50957e-190 4.17195e-194 -7.00306e-191 1.95832e-194 -3.17371e-191 9.01629e-195 -1.41264e-191 4.08661e-195 -6.19771e-192 1.82647e-195 -2.68436e-192 8.04902e-196 -1.14762e-192 3.4933e-196 -4.83682e-193 1.49036e-196 -2.0059e-193 6.23622e-197 -8.16621e-194 2.55247e-197 -3.25455e-194 1.01877e-197 -1.26584e-194 3.95162e-198 -4.78842e-195 1.48385e-198 -1.75491e-195 5.37096e-199 -6.20398e-196 1.8649e-199 -2.10538e-196 6.17779e-200 -6.82153e-197 1.94054e-200 -2.09734e-197 5.74064e-201 -6.07747e-198 1.58751e-201 -1.64746e-198 4.0712e-202 -4.14464e-199 9.60116e-203 -9.59582e-200 2.06405e-203 -2.02676e-200 4.00923e-204 -3.87107e-201 6.9752e-205 -6.62791e-202 1.07789e-205 -1.00883e-202 1.46833e-206 -1.35471e-203 1.75184e-207 -1.59478e-204 1.82194e-208 -1.63793e-205 1.64797e-209 -1.46431e-206 1.29759e-210 -1.14066e-207 8.94562e-212 -7.78706e-209 5.46482e-213 -4.71574e-210 -2.58611e-211 3.01934e-214 -1.57995e-208 -1.40857e-206 -2.14527e-207 -2.10368e-205 -2.62588e-206 -2.90092e-204 -2.85813e-205 -3.61197e-203 -2.74609e-204 -4.00545e-202 -2.32335e-203 -3.92709e-201 -1.73274e-202 -3.3959e-200 -1.14312e-201 -2.5927e-199 -6.70595e-201 -1.75382e-198 -3.52073e-200 -1.05664e-197 -1.66625e-199 -5.70669e-197 -7.16343e-199 -2.783e-196 -2.81961e-198 -1.23501e-195 -1.0241e-197 -5.0269e-195 -3.45831e-197 -1.89154e-194 -1.09361e-196 -6.63017e-194 -3.25992e-196 -2.18051e-193 -9.21531e-196 -6.7737e-193 -2.48374e-195 -1.99984e-192 -6.41297e-195 -5.64246e-192 -1.59281e-194 -1.52896e-191 -3.81921e-194 -3.99644e-191 -8.8674e-194 -1.01151e-190 -1.99852e-193 -2.4873e-190 -4.3806e-193 -5.95926e-190 -9.3497e-193 -1.39436e-189 -1.94406e-192 -3.19189e-189 -3.9369e-192 -7.15673e-189 -7.75732e-192 -1.57268e-188 -1.48447e-191 -3.38757e-188 -2.75019e-191 -7.14973e-188 -4.90813e-191 -1.47681e-187 -8.37618e-191 -2.97832e-187 -1.35242e-190 -5.84301e-187 -2.03386e-190 -1.10922e-186 -2.78947e-190 -2.02316e-186 -3.37036e-190 -3.52305e-186 -3.32594e-190 -5.82499e-186 -2.04559e-190 -9.09645e-186 7.99851e-191 -1.33846e-185 5.08527e-190 -1.8698e-185 1.19418e-189 -2.46967e-185 2.20438e-189 -3.17435e-185 3.58447e-189 -3.96163e-185 5.27994e-189 -4.73591e-185 7.18867e-189 -5.42264e-185 9.34971e-189 -6.08562e-185 1.16986e-188 -6.69561e-185 1.42469e-188 -7.2791e-185 1.61609e-188 -7.45944e-185 1.74642e-188 -7.34937e-185 1.79237e-188 -6.92799e-185 1.71078e-188 -6.11476e-185 1.592e-188 -5.29335e-185 1.44685e-188 -4.49722e-185 1.28588e-188 -3.75339e-185 1.09516e-188 -3.01165e-185 8.8686e-189 -2.30541e-185 6.99476e-189 -1.7237e-185 5.29303e-189 -1.23977e-185 3.78208e-189 -8.44029e-186 2.53256e-189 -5.39534e-186 1.58041e-189 -3.22005e-186 9.1856e-190 -1.79293e-186 5.01011e-190 -9.38399e-187 2.59238e-190 -4.66698e-187 1.28663e-190 -2.22984e-187 6.184e-191 -1.0333e-187 2.89967e-191 -4.678e-188 1.33372e-191 -2.08022e-188 6.0396e-192 -9.11842e-189 2.69712e-192 -3.94614e-189 1.18769e-192 -1.68581e-189 5.15106e-193 -7.10047e-190 2.19628e-193 -2.9429e-190 9.18535e-194 -1.19743e-190 3.75815e-194 -4.77032e-191 1.49977e-194 -1.85507e-191 5.81832e-195 -7.01834e-192 2.18615e-195 -2.57354e-192 7.92268e-196 -9.10825e-193 2.75644e-196 -3.09693e-193 9.15865e-197 -1.00635e-193 2.88906e-197 -3.10685e-194 8.59588e-198 -9.05328e-195 2.39521e-198 -2.47246e-195 6.20296e-199 -6.2802e-196 1.48103e-199 -1.47179e-196 3.23288e-200 -3.1559e-197 6.39731e-201 -6.1397e-198 1.13808e-201 -1.07471e-198 1.80575e-202 -1.67927e-199 2.53695e-203 -2.32538e-200 3.13679e-204 -2.83644e-201 3.39815e-205 -3.03417e-202 3.21874e-206 -2.84033e-203 2.66879e-207 -2.32975e-204 1.94843e-208 -1.6843e-205 1.26779e-209 -1.08652e-206 -6.38366e-208 7.50377e-211 -3.38559e-205 -3.18547e-203 -4.3343e-204 -4.46364e-202 -5.0273e-203 -5.80347e-201 -5.21162e-202 -6.84745e-200 -4.79337e-201 -7.23279e-199 -3.90158e-200 -6.78933e-198 -2.81281e-199 -5.64928e-197 -1.80197e-198 -4.17028e-196 -1.03084e-197 -2.73993e-195 -5.29816e-197 -1.61014e-194 -2.46337e-196 -8.51525e-194 -1.04373e-195 -4.08084e-193 -4.06038e-195 -1.78536e-192 -1.46118e-194 -7.18457e-192 -4.89934e-194 -2.67938e-191 -1.54109e-193 -9.32774e-191 -4.57631e-193 -3.0522e-190 -1.29031e-192 -9.44769e-190 -3.47216e-192 -2.78266e-189 -8.95787e-192 -7.84013e-189 -2.22452e-191 -2.12312e-188 -5.33558e-191 -5.54931e-188 -1.23966e-190 -1.40516e-187 -2.79662e-190 -3.45807e-187 -6.13714e-190 -8.294e-187 -1.31161e-189 -1.94312e-186 -2.73114e-189 -4.45435e-186 -5.53932e-189 -1.00023e-185 -1.09323e-188 -2.20137e-185 -2.09554e-188 -4.74912e-185 -3.8889e-188 -1.0039e-184 -6.95236e-188 -2.07685e-184 -1.18855e-187 -4.19519e-184 -1.92236e-187 -8.24419e-184 -2.89592e-187 -1.56779e-183 -3.97853e-187 -2.86461e-183 -4.81594e-187 -4.99693e-183 -4.7641e-187 -8.27572e-183 -2.94589e-187 -1.29444e-182 1.1238e-187 -1.90742e-182 7.25648e-187 -2.66801e-182 1.70945e-186 -3.5278e-182 3.16181e-186 -4.53844e-182 5.14904e-186 -5.66843e-182 7.59356e-186 -6.78116e-182 1.03423e-185 -7.76494e-182 1.34575e-185 -8.71681e-182 1.68438e-185 -9.59268e-182 2.05271e-185 -1.04352e-181 2.33057e-185 -1.07029e-181 2.51976e-185 -1.055e-181 2.58597e-185 -9.94464e-182 2.46835e-185 -8.77757e-182 2.29774e-185 -7.60082e-182 2.08897e-185 -6.45956e-182 1.85767e-185 -5.39417e-182 1.5822e-185 -4.32816e-182 1.28127e-185 -3.31321e-182 1.01035e-185 -2.47675e-182 7.64327e-186 -1.78093e-182 5.4595e-186 -1.21205e-182 3.65337e-186 -7.74308e-183 2.27778e-186 -4.61727e-183 1.32236e-186 -2.56803e-183 7.20351e-187 -1.34241e-183 3.72271e-187 -6.66804e-184 1.8455e-187 -3.1823e-184 8.86076e-188 -1.47316e-184 4.15081e-188 -6.66314e-185 1.90754e-188 -2.96045e-185 8.63142e-189 -1.29668e-185 3.8519e-189 -5.60779e-186 1.69516e-189 -2.39427e-186 7.34804e-190 -1.00791e-186 3.1316e-190 -4.17544e-187 1.30925e-190 -1.69828e-187 5.35571e-191 -6.76405e-188 2.13737e-191 -2.63037e-188 8.29486e-192 -9.95435e-189 3.11922e-192 -3.65274e-189 1.13203e-192 -1.2945e-189 3.94724e-193 -4.41083e-190 1.3157e-193 -1.43772e-190 4.16864e-194 -4.45755e-191 1.24766e-194 -1.30644e-191 3.50358e-195 -3.59503e-192 9.16362e-196 -9.22071e-193 2.21523e-196 -2.18749e-193 4.91001e-197 -4.762e-194 9.89809e-198 -9.43599e-195 1.80043e-198 -1.6885e-195 2.93281e-199 -2.70808e-196 4.24879e-200 -3.86641e-197 5.44277e-201 -4.88536e-198 6.13993e-202 -5.44095e-199 6.08793e-203 -5.3315e-200 5.31275e-204 -4.6025e-201 4.10501e-205 -3.52156e-202 2.84276e-206 -2.41771e-203 -1.52055e-204 1.80098e-207 -7.01728e-202 -6.95519e-200 -8.47559e-201 -9.15106e-199 -9.32034e-200 -1.1225e-197 -9.20655e-199 -1.25573e-196 -8.1091e-198 -1.26401e-195 -6.35202e-197 -1.13644e-194 -4.42789e-196 -9.10188e-194 -2.755e-195 -6.4979e-193 -1.53706e-194 -4.14728e-192 -7.73421e-194 -2.3775e-191 -3.53294e-193 -1.23131e-190 -1.47531e-192 -5.79918e-190 -5.6724e-192 -2.50127e-189 -2.02243e-191 -9.95104e-189 -6.73261e-191 -3.67778e-188 -2.10629e-190 -1.27148e-187 -6.23005e-190 -4.13896e-187 -1.75179e-189 -1.27638e-186 -4.70577e-189 -3.74985e-186 -1.2129e-188 -1.05486e-185 -3.01109e-188 -2.85435e-185 -7.22356e-188 -7.45929e-185 -1.67927e-187 -1.88937e-184 -3.79164e-187 -4.65282e-184 -8.32966e-187 -1.11701e-183 -1.7824e-186 -2.61992e-183 -3.71652e-186 -6.01352e-183 -7.54891e-186 -1.35219e-182 -1.49213e-185 -2.98018e-182 -2.86469e-185 -6.43851e-182 -5.32501e-185 -1.36298e-181 -9.53599e-185 -2.82389e-181 -1.63314e-184 -5.71306e-181 -2.64631e-184 -1.12455e-180 -3.99426e-184 -2.14222e-180 -5.4991e-184 -3.92109e-180 -6.67392e-184 -6.85161e-180 -6.62886e-184 -1.13662e-179 -4.14512e-184 -1.78066e-179 1.48583e-184 -2.62758e-179 9.96114e-184 -3.67981e-179 2.36028e-183 -4.87074e-179 4.37869e-183 -6.27146e-179 7.14513e-183 -7.83897e-179 1.05529e-182 -9.38473e-179 1.43802e-182 -1.07472e-178 1.87218e-182 -1.20685e-178 2.34419e-182 -1.32844e-178 2.85895e-182 -1.44604e-178 3.24902e-182 -1.4844e-178 3.51472e-182 -1.46387e-178 3.60717e-182 -1.37978e-178 3.44346e-182 -1.21786e-178 3.20671e-182 -1.05491e-178 2.91646e-182 -8.9679e-179 2.59515e-182 -7.49308e-179 2.21038e-182 -6.01238e-179 1.79e-182 -4.60262e-179 1.41124e-182 -3.44004e-179 1.06731e-182 -2.47296e-179 7.62105e-183 -1.68251e-179 5.09654e-183 -1.0742e-179 3.17478e-183 -6.40007e-180 1.84106e-183 -3.55561e-180 1.0017e-183 -1.85637e-180 5.17062e-184 -9.21004e-181 2.56052e-184 -4.39077e-181 1.22819e-184 -2.03066e-181 5.74857e-185 -9.17703e-182 2.63984e-185 -4.07432e-182 1.19373e-185 -1.78342e-182 5.32421e-186 -7.70867e-183 2.34201e-186 -3.28976e-183 1.0148e-186 -1.38433e-183 4.32364e-187 -5.7329e-184 1.80728e-187 -2.33123e-184 7.3927e-188 -9.28437e-185 2.95088e-188 -3.61094e-185 1.1458e-188 -1.36712e-185 4.31296e-189 -5.0211e-186 1.56775e-189 -1.78211e-186 5.4794e-190 -6.08602e-187 1.83248e-190 -1.99009e-187 5.83239e-191 -6.1974e-188 1.75619e-191 -1.82709e-188 4.97041e-192 -5.06643e-189 1.31303e-192 -1.31223e-189 3.21386e-193 -3.15151e-190 7.23316e-194 -6.96494e-191 1.48541e-194 -1.40563e-191 2.76248e-195 -2.57116e-192 4.6192e-196 -4.2323e-193 6.89945e-197 -6.22873e-194 9.15511e-198 -8.15132e-195 1.07511e-198 -9.44924e-196 1.1155e-199 -9.68816e-197 1.02416e-200 -8.79838e-198 8.37102e-202 -7.12152e-199 6.16574e-203 -5.20004e-200 -3.49765e-201 4.17776e-204 -1.40755e-198 -1.46709e-196 -1.60477e-197 -1.81362e-195 -1.67387e-196 -2.10001e-194 -1.57613e-195 -2.22853e-193 -1.32993e-194 -2.13863e-192 -1.00283e-193 -1.84229e-191 -6.76061e-193 -1.4206e-190 -4.08597e-192 -9.81008e-190 -2.22352e-191 -6.08342e-189 -1.09547e-190 -3.40248e-188 -4.91664e-190 -1.72584e-187 -2.02359e-189 -7.98853e-187 -7.68978e-189 -3.39689e-186 -2.71626e-188 -1.33598e-185 -8.97698e-188 -4.8929e-185 -2.793e-187 -1.67969e-184 -8.22783e-187 -5.43879e-184 -2.30698e-186 -1.67077e-183 -6.18569e-186 -4.89549e-183 -1.59269e-185 -1.37484e-182 -3.95234e-185 -3.71685e-182 -9.48262e-185 -9.71064e-182 -2.20553e-184 -2.46011e-181 -4.98385e-184 -6.06178e-181 -1.09599e-183 -1.45647e-180 -2.34799e-183 -3.41966e-180 -4.9022e-183 -7.8583e-180 -9.97103e-183 -1.76921e-179 -1.97376e-182 -3.90439e-179 -3.79511e-182 -8.44655e-179 -7.06587e-182 -1.79053e-178 -1.26754e-181 -3.71502e-178 -2.1749e-181 -7.52731e-178 -3.53145e-181 -1.48405e-177 -5.34251e-181 -2.83187e-177 -7.37471e-181 -5.19243e-177 -8.98083e-181 -9.0885e-177 -8.97034e-181 -1.51016e-176 -5.70242e-181 -2.36953e-176 1.84475e-181 -3.50132e-176 1.31681e-180 -4.90924e-176 3.14627e-180 -6.50482e-176 5.85935e-180 -8.38257e-176 9.58425e-180 -1.0486e-175 1.41793e-179 -1.25634e-175 1.93346e-179 -1.43889e-175 2.5189e-179 -1.61633e-175 3.15549e-179 -1.77956e-175 3.85168e-179 -1.9383e-175 4.3818e-179 -1.99139e-175 4.74319e-179 -1.96473e-175 4.86845e-179 -1.85171e-175 4.64827e-179 -1.63444e-175 4.3306e-179 -1.41623e-175 3.94019e-179 -1.20435e-175 3.5083e-179 -1.0069e-175 2.98825e-179 -8.07962e-176 2.42001e-179 -6.18544e-176 1.90761e-179 -4.62232e-176 1.44234e-179 -3.32203e-176 1.02958e-179 -2.25952e-176 6.88108e-180 -1.44174e-176 4.28282e-180 -8.58246e-177 2.48096e-180 -4.76279e-177 1.34829e-180 -2.48364e-177 6.95181e-181 -1.23081e-177 3.43909e-181 -5.86182e-178 1.64815e-181 -2.7086e-178 7.70831e-182 -1.22313e-178 3.53748e-182 -5.42677e-179 1.59877e-182 -2.37413e-179 7.12761e-183 -1.02575e-179 3.13421e-183 -4.37593e-180 1.35773e-183 -1.84086e-180 5.78375e-184 -7.622e-181 2.41748e-184 -3.09916e-181 9.88977e-185 -1.23434e-181 3.94895e-185 -4.80192e-182 1.53437e-185 -1.81908e-182 5.78206e-186 -6.68801e-183 2.10536e-186 -2.37759e-183 7.37656e-187 -8.13873e-184 2.47544e-187 -2.67013e-184 7.91555e-188 -8.35273e-185 2.39811e-188 -2.47726e-185 6.84106e-189 -6.9226e-186 1.82536e-189 -1.8107e-186 4.52381e-190 -4.40233e-187 1.03381e-190 -9.87698e-188 2.16265e-191 -2.03012e-188 4.11178e-192 -3.79559e-189 7.05666e-193 -6.41155e-190 1.0865e-193 -9.72465e-191 1.49309e-194 -1.31776e-191 1.82474e-195 -1.58963e-192 1.98052e-196 -1.70471e-193 1.91221e-197 -1.62792e-194 1.65258e-198 -1.39304e-195 1.29402e-199 -1.08135e-196 -7.77362e-198 9.37153e-201 -2.73337e-195 -2.99124e-193 -2.94301e-194 -3.47625e-192 -2.91293e-193 -3.80161e-191 -2.61555e-192 -3.82859e-190 -2.11486e-191 -3.50404e-189 -1.53546e-190 -2.89291e-188 -1.00128e-189 -2.14822e-187 -5.8792e-189 -1.43523e-186 -3.12104e-188 -8.6487e-186 -1.50571e-187 -4.72002e-185 -6.64035e-187 -2.34501e-184 -2.69385e-186 -1.06685e-183 -1.01176e-185 -4.47238e-183 -3.54062e-185 -1.73883e-182 -1.16163e-184 -6.31024e-182 -3.59412e-184 -2.15089e-181 -1.05444e-183 -6.92716e-181 -2.94798e-183 -2.11966e-180 -7.88945e-183 -6.19399e-180 -2.02917e-182 -1.73651e-179 -5.03331e-182 -4.69022e-179 -1.2077e-181 -1.22496e-178 -2.81024e-181 -3.10378e-178 -6.35509e-181 -7.65151e-178 -1.39889e-180 -1.83981e-177 -3.00029e-180 -4.32369e-177 -6.27181e-180 -9.94627e-177 -1.27736e-179 -2.24188e-176 -2.53204e-179 -4.95353e-176 -4.8758e-179 -1.07299e-175 -9.09267e-179 -2.27757e-175 -1.6341e-178 -4.73213e-175 -2.80963e-178 -9.60232e-175 -4.57277e-178 -1.89614e-174 -6.9363e-178 -3.62417e-174 -9.60467e-178 -6.65639e-174 -1.17445e-177 -1.16702e-173 -1.18116e-177 -1.94222e-173 -7.66445e-178 -3.0521e-173 2.14279e-178 -4.51609e-173 1.67785e-177 -6.33958e-173 4.05187e-177 -8.40903e-173 7.58054e-177 -1.08459e-172 1.24337e-176 -1.35784e-172 1.84307e-176 -1.62814e-172 2.51535e-176 -1.86492e-172 3.27982e-176 -2.09557e-172 4.11138e-176 -2.30765e-172 5.0234e-176 -2.515e-172 5.72142e-176 -2.58606e-172 6.19781e-176 -2.55262e-172 6.36245e-176 -2.40561e-172 6.07594e-176 -2.12344e-172 5.66334e-176 -1.84062e-172 5.15488e-176 -1.56581e-172 4.59276e-176 -1.3099e-172 3.91218e-176 -1.05113e-172 3.16848e-176 -8.04741e-173 2.49729e-176 -6.01278e-173 1.88779e-176 -4.32028e-173 1.34722e-176 -2.9377e-173 8.99917e-177 -1.87342e-173 5.59675e-177 -1.11431e-173 3.2388e-177 -6.17725e-174 1.75817e-177 -3.21759e-174 9.05552e-178 -1.59283e-174 4.47556e-178 -7.57872e-175 2.14314e-178 -3.49905e-175 1.00165e-178 -1.57898e-175 4.59415e-179 -7.00158e-176 2.07539e-179 -3.0617e-176 9.2493e-180 -1.32234e-176 4.0662e-180 -5.63965e-177 1.76119e-180 -2.37202e-177 7.50198e-181 -9.82037e-178 3.1358e-181 -3.99307e-178 1.28311e-181 -1.59059e-178 5.12566e-182 -6.19003e-179 1.99311e-182 -2.34654e-179 7.51989e-183 -8.63699e-180 2.74306e-183 -3.07564e-180 9.63551e-184 -1.05538e-180 3.24495e-184 -3.47425e-181 1.04255e-184 -1.09182e-181 3.17818e-185 -3.25775e-182 9.13875e-186 -9.17491e-183 2.46301e-186 -2.42364e-183 6.18058e-187 -5.96531e-184 1.43414e-187 -1.35868e-184 3.0559e-188 -2.84409e-185 5.93913e-189 -5.43453e-186 1.04604e-189 -9.41904e-187 1.65989e-190 -1.47217e-187 2.36173e-191 -2.06509e-188 3.00309e-192 -2.59148e-189 3.40873e-193 -2.90591e-190 3.45992e-194 -2.91713e-191 3.16016e-195 -2.63779e-192 2.6293e-196 -2.17548e-193 -1.67047e-194 2.03408e-197 -5.14079e-192 -5.89839e-190 -5.22937e-191 -6.44741e-189 -4.91328e-190 -6.6621e-188 -4.20817e-189 -6.36958e-187 -3.26138e-188 -5.56127e-186 -2.28037e-187 -4.40131e-185 -1.43865e-186 -3.14803e-184 -8.20803e-186 -2.03515e-183 -4.25126e-185 -1.19192e-182 -2.00859e-184 -6.34804e-182 -8.70485e-184 -3.08938e-181 -3.48091e-183 -1.38145e-180 -1.29217e-182 -5.70957e-180 -4.47992e-182 -2.19443e-179 -1.45911e-181 -7.89099e-179 -4.48947e-181 -2.6706e-178 -1.31172e-180 -8.55473e-178 -3.6567e-180 -2.60744e-177 -9.76772e-180 -7.59869e-177 -2.50956e-179 -2.12664e-176 -6.22221e-179 -5.73842e-176 -1.49306e-178 -1.49819e-175 -3.47582e-178 -3.79641e-175 -7.86596e-178 -9.36298e-175 -1.73308e-177 -2.25283e-174 -3.72105e-177 -5.29878e-174 -7.78769e-177 -1.22012e-173 -1.58811e-176 -2.75312e-173 -3.15234e-176 -6.09023e-173 -6.0794e-176 -1.32084e-172 -1.13564e-175 -2.80731e-172 -2.04492e-175 -5.84071e-172 -3.52395e-175 -1.18689e-171 -5.75023e-175 -2.34728e-171 -8.74835e-175 -4.49359e-171 -1.21564e-174 -8.26663e-171 -1.49342e-174 -1.45165e-170 -1.51391e-174 -2.41971e-170 -1.00615e-174 -3.80825e-170 2.29873e-175 -5.64277e-170 2.06032e-174 -7.93077e-170 5.04211e-174 -1.05314e-169 9.48485e-174 -1.35953e-169 1.56075e-173 -1.70344e-169 2.31888e-173 -2.04415e-169 3.16843e-173 -2.34165e-169 4.13602e-173 -2.63205e-169 5.18896e-173 -2.89896e-169 6.34698e-173 -3.16133e-169 7.2379e-173 -3.25346e-169 7.84664e-173 -3.21294e-169 8.05643e-173 -3.02771e-169 7.69524e-173 -2.67269e-169 7.17605e-173 -2.31754e-169 6.53447e-173 -1.97216e-169 5.82572e-173 -1.65077e-169 4.96284e-173 -1.32465e-169 4.01986e-173 -1.01416e-169 3.16805e-173 -7.57616e-170 2.39444e-173 -5.44224e-170 1.70845e-173 -3.69968e-170 1.14066e-173 -2.35811e-170 7.08879e-174 -1.4015e-170 4.09822e-174 -7.76142e-171 2.22233e-174 -4.03832e-171 1.14346e-174 -1.99706e-171 5.64641e-175 -9.49343e-172 2.70182e-175 -4.37967e-172 1.262e-175 -1.97513e-172 5.78548e-176 -8.75385e-173 2.61262e-176 -3.82649e-173 1.16406e-176 -1.65219e-173 5.11668e-177 -7.04506e-174 2.21604e-177 -2.96285e-174 9.43958e-178 -1.22663e-174 3.94622e-178 -4.98801e-175 1.61517e-178 -1.98733e-175 6.45546e-179 -7.73732e-176 2.5123e-179 -2.93528e-176 9.49075e-180 -1.08166e-176 3.4684e-180 -3.85843e-177 1.22154e-180 -1.32729e-177 4.12858e-181 -4.38448e-178 1.3328e-181 -1.38427e-178 4.08842e-182 -4.15557e-179 1.18502e-182 -1.17956e-179 3.22596e-183 -3.14686e-180 8.19648e-184 -7.84098e-181 1.93106e-184 -1.81299e-181 4.191e-185 -3.86471e-182 8.32518e-186 -7.54679e-183 1.50458e-186 -1.34184e-183 2.46031e-187 -2.16085e-184 3.62372e-188 -3.13728e-185 4.79305e-189 -4.09449e-186 5.68804e-190 -4.79935e-187 6.06823e-191 -5.0629e-188 5.85624e-192 -4.83713e-189 5.17535e-193 -4.23694e-190 -3.47341e-191 4.27477e-194 -9.3675e-189 -1.12554e-186 -9.00593e-188 -1.15773e-185 -8.03462e-187 -1.13074e-184 -6.56571e-186 -1.02663e-183 -4.87828e-185 -8.55281e-183 -3.28544e-184 -6.48993e-182 -2.00562e-183 -4.47185e-181 -1.11205e-182 -2.79788e-180 -5.62028e-182 -1.5928e-179 -2.60085e-181 -8.27939e-179 -1.10775e-180 -3.94728e-178 -4.36668e-180 -1.735e-177 -1.60224e-179 -7.07003e-177 -5.50363e-179 -2.68633e-176 -1.7796e-178 -9.5722e-176 -5.44549e-178 -3.21672e-175 -1.58462e-177 -1.02491e-174 -4.40495e-177 -3.11169e-174 -1.17447e-176 -9.04367e-174 -3.01434e-176 -2.52662e-173 -7.47059e-176 -6.81097e-173 -1.79272e-175 -1.77748e-172 -4.17518e-175 -4.50425e-172 -9.45517e-175 -1.11125e-171 -2.08508e-174 -2.67534e-171 -4.48142e-174 -6.29736e-171 -9.38986e-174 -1.45138e-170 -1.91725e-173 -3.2783e-170 -3.81097e-173 -7.26021e-170 -7.36111e-173 -1.5765e-169 -1.37753e-172 -3.35498e-169 -2.48566e-172 -6.98946e-169 -4.29383e-172 -1.42231e-168 -7.02596e-172 -2.817e-168 -1.07234e-171 -5.40109e-168 -1.49579e-171 -9.95186e-168 -1.84711e-171 -1.75035e-167 -1.88941e-171 -2.92219e-167 -1.29034e-171 -4.60617e-167 2.20774e-172 -6.83474e-167 2.43616e-171 -9.61786e-167 6.06279e-171 -1.27861e-166 1.14815e-170 -1.65205e-166 1.89674e-170 -2.07158e-166 2.82598e-170 -2.48786e-166 3.8672e-170 -2.85016e-166 5.0551e-170 -3.20464e-166 6.34822e-170 -3.53032e-166 7.77418e-170 -3.85223e-166 8.87696e-170 -3.96807e-166 9.63138e-170 -3.92064e-166 9.89076e-170 -3.69438e-166 9.44958e-170 -3.26129e-166 8.8165e-170 -2.82888e-166 8.0319e-170 -2.408e-166 7.16572e-170 -2.01666e-166 6.10513e-170 -1.6182e-166 4.94587e-170 -1.23893e-166 3.89766e-170 -9.25396e-167 2.94548e-170 -6.64599e-167 2.10129e-170 -4.51701e-167 1.40233e-170 -2.87764e-167 8.70874e-171 -1.70896e-167 5.02994e-171 -9.45463e-168 2.72472e-171 -4.91396e-168 1.40059e-171 -2.42758e-168 6.91039e-172 -1.15296e-168 3.30437e-172 -5.31512e-169 1.54262e-172 -2.3956e-169 7.069e-173 -1.06128e-169 3.19131e-173 -4.63756e-170 1.42165e-173 -2.00196e-170 6.24835e-174 -8.53551e-171 2.70615e-174 -3.58957e-171 1.15283e-174 -1.48616e-171 4.82036e-175 -6.04416e-172 1.97365e-175 -2.40878e-172 7.89267e-176 -9.38277e-173 3.07431e-176 -3.5623e-173 1.16291e-176 -1.31428e-173 4.25789e-177 -4.69656e-174 1.50357e-177 -1.61969e-174 5.10014e-178 -5.369e-175 1.65434e-178 -1.703e-175 5.10641e-179 -5.14364e-176 1.49189e-179 -1.47148e-176 4.10216e-180 -3.96444e-177 1.05526e-180 -9.9997e-178 2.52408e-181 -2.34702e-178 5.57897e-182 -5.09431e-179 1.13263e-182 -1.01648e-179 2.10005e-183 -1.85392e-180 3.53811e-184 -3.07528e-181 5.39372e-185 -4.62037e-182 7.41974e-186 -6.27035e-183 9.2036e-187 -7.68143e-184 1.03168e-187 -8.51238e-185 1.0517e-188 -8.59004e-186 9.86894e-190 -7.98882e-187 -6.9896e-188 8.70027e-191 -1.65436e-185 -2.0796e-183 -1.50369e-184 -2.01372e-182 -1.27413e-183 -1.85961e-181 -9.93598e-183 -1.60371e-180 -7.07858e-182 -1.27507e-179 -4.59274e-181 -9.27825e-179 -2.71336e-180 -6.15995e-178 -1.46234e-179 -3.73057e-177 -7.21273e-179 -2.06464e-176 -3.26957e-178 -1.04755e-175 -1.36873e-177 -4.89309e-175 -5.31924e-177 -2.11426e-174 -1.92937e-176 -8.49517e-174 -6.56676e-176 -3.1913e-173 -2.10826e-175 -1.12693e-172 -6.41635e-175 -3.76055e-172 -1.85976e-174 -1.19184e-171 -5.15553e-174 -3.6045e-171 -1.37214e-173 -1.04476e-170 -3.51806e-173 -2.91367e-170 -8.71532e-173 -7.84617e-170 -2.0915e-172 -2.04667e-169 -4.87291e-172 -5.18613e-169 -1.10424e-171 -1.27983e-168 -2.43716e-171 -3.08277e-168 -5.24344e-171 -7.26151e-168 -1.09992e-170 -1.67503e-167 -2.24875e-170 -3.78724e-167 -4.47639e-170 -8.39655e-167 -8.66058e-170 -1.8254e-166 -1.62374e-169 -3.88949e-166 -2.93626e-169 -8.11345e-166 -5.08484e-169 -1.65326e-165 -8.34413e-169 -3.27906e-165 -1.27781e-168 -6.29637e-165 -1.78976e-168 -1.16196e-164 -2.22294e-168 -2.0469e-164 -2.29732e-168 -3.42268e-164 -1.61748e-168 -5.40342e-164 1.75235e-169 -8.02907e-164 2.77072e-168 -1.13122e-163 7.0447e-168 -1.50553e-163 1.34517e-167 -1.94683e-163 2.23277e-167 -2.44307e-163 3.33759e-167 -2.93622e-163 4.57562e-167 -3.36407e-163 5.99041e-167 -3.78373e-163 7.53087e-167 -4.16914e-163 9.23401e-167 -4.55216e-163 1.05583e-166 -4.69329e-163 1.14656e-166 -4.63949e-163 1.17773e-166 -4.37132e-163 1.12554e-166 -3.85891e-163 1.05074e-166 -3.34833e-163 9.57735e-167 -2.85096e-163 8.551e-167 -2.38893e-163 7.28671e-167 -1.91692e-163 5.90431e-167 -1.46775e-163 4.653e-167 -1.09621e-163 3.51596e-167 -7.87132e-164 2.508e-167 -5.34886e-164 1.67311e-167 -3.40603e-164 1.03833e-167 -2.02124e-164 5.99156e-168 -1.11712e-164 3.24237e-168 -5.79987e-165 1.66513e-168 -2.86234e-165 8.20912e-169 -1.35828e-165 3.9229e-169 -6.25733e-166 1.83048e-169 -2.81881e-166 8.38516e-170 -1.24828e-166 3.78462e-170 -5.45331e-167 1.68574e-170 -2.35374e-167 7.40882e-171 -1.00348e-167 3.20893e-171 -4.22017e-168 1.36722e-171 -1.74741e-168 5.71828e-172 -7.10796e-169 2.34225e-172 -2.83371e-169 9.37255e-173 -1.10441e-169 3.65413e-173 -4.19656e-170 1.3841e-173 -1.55024e-170 5.07754e-174 -5.54996e-171 1.7978e-174 -1.91894e-171 6.12019e-175 -6.38323e-172 1.99471e-175 -2.03418e-172 6.19527e-176 -6.18142e-173 1.82439e-176 -1.78216e-173 5.0666e-177 -4.84875e-174 1.31952e-177 -1.23801e-174 3.20407e-178 -2.94929e-175 7.21172e-179 -6.51781e-176 1.49619e-179 -1.32871e-176 2.8458e-180 -2.48565e-177 4.93911e-181 -4.24679e-178 7.79177e-182 -6.60156e-179 1.11455e-182 -9.3142e-180 1.44488e-183 -1.19231e-180 1.70141e-184 -1.38793e-181 1.83155e-185 -1.47881e-182 1.82432e-186 -1.45973e-183 -1.36233e-184 1.71576e-187 -2.83237e-182 -3.72204e-180 -2.4345e-181 -3.3941e-179 -1.95962e-180 -2.96427e-178 -1.45856e-179 -2.42867e-177 -9.96533e-179 -1.84323e-176 -6.23013e-178 -1.28646e-175 -3.5628e-177 -8.23095e-175 -1.86667e-176 -4.82581e-174 -8.98676e-176 -2.59677e-173 -3.99104e-175 -1.2862e-172 -1.64238e-174 -5.88667e-172 -6.2933e-174 -2.50072e-171 -2.25679e-173 -9.90864e-171 -7.61192e-173 -3.68052e-170 -2.42669e-172 -1.2881e-169 -7.3464e-172 -4.26856e-169 -2.1211e-171 -1.34574e-168 -5.86418e-171 -4.05421e-168 -1.55802e-170 -1.17191e-167 -3.99064e-170 -3.26237e-167 -9.88188e-170 -8.77568e-167 -2.37151e-169 -2.28794e-166 -5.52732e-169 -5.79697e-166 -1.25333e-168 -1.43091e-165 -2.76858e-168 -3.44838e-165 -5.96268e-168 -8.12826e-165 -1.2523e-167 -1.87655e-164 -2.5638e-167 -4.24696e-164 -5.1113e-167 -9.42579e-164 -9.90569e-167 -2.05148e-163 -1.86071e-166 -4.37638e-163 -3.37202e-166 -9.14031e-163 -5.854e-166 -1.86492e-162 -9.63433e-166 -3.70396e-162 -1.48059e-165 -7.1227e-162 -2.08311e-165 -1.31649e-161 -2.60401e-165 -2.32279e-161 -2.7222e-165 -3.89014e-161 -1.98066e-165 -6.1508e-161 8.49768e-167 -9.15229e-161 3.03132e-165 -1.29096e-160 7.91631e-165 -1.72e-160 1.52657e-164 -2.22591e-160 2.54768e-164 -2.79536e-160 3.82221e-164 -3.3622e-160 5.25052e-164 -3.85248e-160 6.88542e-164 -4.33458e-160 8.66605e-164 -4.77707e-160 1.064e-163 -5.21906e-160 1.21836e-163 -5.38556e-160 1.32434e-163 -5.32626e-160 1.36076e-163 -5.01769e-160 1.30094e-163 -4.42943e-160 1.21526e-163 -3.84455e-160 1.10832e-163 -3.27438e-160 9.90336e-164 -2.74525e-160 8.44088e-164 -2.20288e-160 6.84116e-164 -1.68687e-160 5.39153e-164 -1.25976e-160 4.07376e-164 -9.04399e-161 2.9057e-164 -6.14461e-161 1.93773e-164 -3.91097e-161 1.20177e-164 -2.31912e-161 6.92851e-165 -1.28048e-161 3.74577e-165 -6.64086e-162 1.92193e-165 -3.27416e-162 9.46798e-166 -1.55243e-162 4.52178e-166 -7.14719e-163 2.10899e-166 -3.21816e-163 9.65804e-167 -1.42466e-163 4.35832e-167 -6.22246e-164 1.94111e-167 -2.68541e-164 8.53127e-168 -1.14485e-164 3.69546e-168 -4.81488e-165 1.57483e-168 -1.99389e-165 6.58862e-169 -8.11255e-166 2.69998e-169 -3.23548e-166 1.08112e-169 -1.26175e-166 4.21908e-170 -4.79874e-167 1.6003e-170 -1.77504e-167 5.8821e-171 -6.36674e-168 2.08823e-171 -2.20707e-168 7.13451e-172 -7.36757e-169 2.33635e-172 -2.35883e-169 7.30116e-173 -7.21146e-170 2.16703e-173 -2.09526e-170 6.07798e-174 -5.75654e-171 1.60242e-174 -1.48769e-171 3.94973e-175 -3.59702e-172 9.05234e-176 -8.09319e-173 1.91891e-176 -1.68557e-173 3.74373e-177 -3.23378e-174 6.69281e-178 -5.69028e-175 1.09247e-178 -9.15138e-176 1.62457e-179 -1.3422e-176 2.20055e-180 -1.79483e-177 2.72158e-181 -2.19423e-178 3.09322e-182 -2.46794e-179 3.26972e-183 -2.58504e-180 -2.57268e-181 3.27968e-184 -4.70137e-179 -6.4547e-177 -3.82208e-178 -5.54442e-176 -2.92312e-177 -4.58055e-175 -2.07703e-176 -3.56629e-174 -1.36125e-175 -2.58427e-173 -8.20192e-175 -1.73038e-172 -4.54102e-174 -1.06713e-171 -2.31333e-173 -6.05794e-171 -1.08723e-172 -3.16985e-170 -4.7311e-172 -1.53287e-169 -1.91412e-171 -6.87493e-169 -7.2329e-171 -2.87165e-168 -2.56466e-170 -1.12217e-167 -8.57345e-170 -4.12183e-167 -2.71439e-169 -1.42978e-166 -8.17459e-169 -4.70545e-166 -2.35126e-168 -1.47571e-165 -6.48331e-168 -4.42863e-165 -1.71955e-167 -1.27664e-164 -4.40003e-167 -3.54745e-164 -1.08911e-166 -9.53204e-164 -2.61379e-166 -2.48381e-163 -6.09433e-166 -6.29267e-163 -1.38283e-165 -1.55365e-162 -3.05741e-165 -3.74602e-162 -6.59206e-165 -8.8359e-162 -1.38626e-164 -2.0416e-161 -2.84212e-164 -4.62479e-161 -5.67504e-164 -1.02747e-160 -1.10168e-163 -2.2386e-160 -2.07328e-163 -4.78088e-160 -3.76521e-163 -9.99684e-160 -6.55283e-163 -2.04225e-159 -1.08167e-162 -4.06169e-159 -1.66851e-162 -7.82205e-159 -2.35895e-162 -1.44799e-158 -2.96958e-162 -2.55882e-158 -3.14275e-162 -4.29209e-158 -2.36485e-162 -6.79644e-158 -7.24218e-164 -1.01266e-157 3.19244e-162 -1.43e-157 8.6108e-162 -1.90732e-157 1.67925e-161 -2.47024e-157 2.81928e-161 -3.10454e-157 4.24621e-161 -3.73702e-157 5.8456e-161 -4.28242e-157 7.67972e-161 -4.82002e-157 9.67834e-161 -5.31305e-157 1.19003e-160 -5.80789e-157 1.36484e-160 -5.9983e-157 1.48514e-160 -5.93495e-157 1.52657e-160 -5.59035e-157 1.46008e-160 -4.93498e-157 1.36486e-160 -4.2848e-157 1.2455e-160 -3.65044e-157 1.11381e-160 -3.06228e-157 9.4955e-161 -2.45736e-157 7.698e-161 -1.88192e-157 6.06729e-161 -1.40532e-157 4.58418e-161 -1.00869e-157 3.26964e-161 -6.85193e-158 2.17974e-161 -4.35923e-158 1.35101e-161 -2.58298e-158 7.78208e-162 -1.42475e-158 4.20323e-162 -7.38133e-159 2.15475e-162 -3.63576e-159 1.06072e-162 -1.72253e-159 5.06299e-163 -7.92558e-160 2.36047e-163 -3.56709e-160 1.08068e-163 -1.57864e-160 4.87598e-164 -6.89376e-161 2.17157e-164 -2.97486e-161 9.54463e-165 -1.26823e-161 4.135e-165 -5.33415e-162 1.76255e-165 -2.20929e-162 7.3765e-166 -8.99144e-163 3.0243e-166 -3.58754e-163 1.21181e-166 -1.39992e-163 4.73375e-167 -5.32924e-164 1.79801e-167 -1.97393e-164 6.62161e-168 -7.09346e-165 2.35701e-168 -2.46536e-165 8.08151e-169 -8.25861e-166 2.65894e-169 -2.65635e-166 8.36012e-170 -8.16985e-167 2.50077e-170 -2.39205e-167 7.08315e-171 -6.63601e-168 1.89028e-171 -1.73575e-168 4.72907e-172 -4.25921e-169 1.10353e-172 -9.75573e-170 2.38987e-173 -2.07569e-170 4.78175e-174 -4.08353e-171 8.80402e-175 -7.39933e-172 1.48676e-175 -1.23095e-172 2.29824e-176 -1.87656e-173 3.25195e-177 -2.62114e-174 4.22312e-178 -3.36406e-175 5.06609e-179 -3.99296e-176 5.6815e-180 -4.43636e-177 -4.70644e-178 6.0763e-181 -7.56578e-176 -1.08473e-173 -5.81875e-175 -8.77895e-173 -4.22916e-174 -6.86253e-172 -2.86941e-173 -5.07857e-171 -1.8043e-172 -3.51465e-170 -1.04798e-171 -2.25823e-169 -5.61844e-171 -1.34261e-168 -2.78344e-170 -7.38091e-168 -1.27728e-169 -3.75605e-167 -5.44693e-169 -1.77356e-166 -2.16695e-168 -7.79586e-166 -8.076e-168 -3.20217e-165 -2.83191e-167 -1.23423e-164 -9.38386e-167 -4.4833e-164 -2.9508e-166 -1.54151e-163 -8.84108e-166 -5.03847e-163 -2.53348e-165 -1.57194e-162 -6.96764e-165 -4.69934e-162 -1.8449e-164 -1.351e-161 -4.71628e-164 -3.7473e-161 -1.16694e-163 -1.00582e-160 -2.80077e-163 -2.61957e-160 -6.53313e-163 -6.63619e-160 -1.48348e-162 -1.6389e-159 -3.28315e-162 -3.95359e-159 -7.08707e-162 -9.33179e-159 -1.49234e-161 -2.15787e-158 -3.064e-161 -4.8924e-158 -6.12748e-161 -1.08793e-157 -1.19147e-160 -2.37267e-157 -2.24632e-160 -5.07251e-157 -4.088e-160 -1.06187e-156 -7.13253e-160 -2.17198e-156 -1.18103e-159 -4.32558e-156 -1.82893e-159 -8.34242e-156 -2.59903e-159 -1.54668e-155 -3.29577e-159 -2.73745e-155 -3.53187e-159 -4.5987e-155 -2.7461e-159 -7.2925e-155 -3.20626e-160 -1.08801e-154 3.23783e-159 -1.53811e-154 9.0707e-159 -2.05377e-154 1.79109e-158 -2.66197e-154 3.02651e-158 -3.34803e-154 4.57742e-158 -4.03323e-154 6.31667e-158 -4.62225e-154 8.31544e-158 -5.20422e-154 1.04951e-157 -5.7374e-154 1.29253e-157 -6.27511e-154 1.48493e-157 -6.48644e-154 1.61768e-157 -6.42102e-154 1.66351e-157 -6.04752e-154 1.59179e-157 -5.33876e-154 1.48905e-157 -4.63705e-154 1.35967e-157 -3.95176e-154 1.21694e-157 -3.31691e-154 1.03774e-157 -2.66177e-154 8.41564e-158 -2.03869e-154 6.63377e-158 -1.5223e-154 5.01215e-158 -1.09245e-154 3.57487e-158 -7.41971e-155 2.38255e-158 -4.71854e-155 1.47581e-158 -2.79386e-155 8.4936e-159 -1.53958e-155 4.58322e-159 -7.9681e-156 2.34753e-159 -3.92115e-156 1.1548e-159 -1.85634e-156 5.50918e-160 -8.53636e-157 2.56758e-160 -3.84043e-157 1.17525e-160 -1.69917e-157 5.30216e-161 -7.41904e-158 2.36139e-161 -3.20139e-158 1.03799e-161 -1.36486e-158 4.49768e-162 -5.74126e-159 1.91764e-162 -2.37842e-159 8.02849e-163 -9.68296e-160 3.29324e-163 -3.86523e-160 1.32048e-163 -1.50928e-160 5.16325e-164 -5.75096e-161 1.96384e-164 -2.13297e-161 7.24607e-165 -7.6792e-162 2.58603e-165 -2.67577e-162 8.89792e-166 -8.99438e-163 2.94117e-166 -2.90622e-163 9.30354e-167 -8.99174e-164 2.80454e-167 -2.6529e-164 8.02112e-168 -7.43093e-165 2.1666e-168 -1.96709e-165 5.50104e-169 -4.89845e-166 1.30676e-169 -1.14211e-166 2.89104e-170 -2.48209e-167 5.93168e-171 -5.00704e-168 1.12458e-171 -9.34154e-169 1.96432e-172 -1.60725e-169 3.15599e-173 -2.54612e-170 4.66437e-174 -3.71448e-171 6.35945e-175 -5.00406e-172 8.05063e-176 -6.26715e-173 9.5764e-177 -7.384e-174 -8.34785e-175 1.09166e-177 -1.18046e-172 -1.76686e-170 -8.59073e-172 -1.34766e-169 -5.93521e-171 -9.97063e-169 -3.84603e-170 -7.01533e-168 -2.32082e-169 -4.63767e-167 -1.29966e-168 -2.85989e-166 -6.74827e-168 -1.63948e-165 -3.25173e-167 -8.72949e-165 -1.45719e-166 -4.32101e-164 -6.09095e-166 -1.99256e-163 -2.38312e-165 -8.58507e-163 -8.76131e-165 -3.46811e-162 -3.03865e-164 -1.3186e-161 -9.9819e-164 -4.73725e-161 -3.11788e-163 -1.61465e-160 -9.29474e-163 -5.24177e-160 -2.65377e-162 -1.62696e-159 -7.28005e-162 -4.84545e-159 -1.92451e-161 -1.3893e-158 -4.91541e-161 -3.84677e-158 -1.21583e-160 -1.03145e-157 -2.91851e-160 -2.68509e-157 -6.8112e-160 -6.80199e-157 -1.54785e-159 -1.68033e-156 -3.4291e-159 -4.05559e-156 -7.41086e-159 -9.57874e-156 -1.56255e-158 -2.21661e-155 -3.21263e-158 -5.02958e-155 -6.43421e-158 -1.11939e-154 -1.25312e-157 -2.44357e-154 -2.3668e-157 -5.22938e-154 -4.31642e-157 -1.09592e-153 -7.55056e-157 -2.2444e-153 -1.25424e-156 -4.47581e-153 -1.95008e-156 -8.6445e-153 -2.78547e-156 -1.60508e-152 -3.55778e-156 -2.84508e-152 -3.85944e-156 -4.78662e-152 -3.09481e-156 -7.6013e-152 -6.06324e-157 -1.13558e-151 3.16222e-156 -1.60711e-151 9.25753e-156 -2.1483e-151 1.8532e-155 -2.78654e-151 3.1535e-155 -3.50722e-151 4.79117e-155 -4.22811e-151 6.62922e-155 -4.84583e-151 8.74637e-155 -5.45769e-151 1.10568e-154 -6.01772e-151 1.36399e-154 -6.58525e-151 1.56979e-154 -6.81314e-151 1.71213e-154 -6.74787e-151 1.76141e-154 -6.35472e-151 1.68629e-154 -5.61019e-151 1.57862e-154 -4.8745e-151 1.44238e-154 -4.1553e-151 1.29207e-154 -3.48964e-151 1.10214e-154 -2.80046e-151 8.94099e-155 -2.14518e-151 7.04907e-155 -1.60177e-151 5.32601e-155 -1.1493e-151 3.7988e-155 -7.80492e-152 2.53114e-155 -4.96171e-152 1.5669e-155 -2.93577e-152 9.01021e-156 -1.61625e-152 4.85748e-156 -8.35643e-153 2.48591e-156 -4.1085e-153 1.22205e-156 -1.94359e-153 5.82718e-157 -8.93263e-154 2.71496e-157 -4.01722e-154 1.24251e-157 -1.77701e-154 5.60542e-158 -7.75822e-155 2.49661e-158 -3.3478e-155 1.0976e-158 -1.42742e-155 4.75703e-159 -6.00557e-156 2.02883e-159 -2.4886e-156 8.49726e-160 -1.01352e-156 3.4873e-160 -4.04774e-157 1.39927e-160 -1.58162e-157 5.47664e-161 -6.03231e-158 2.08586e-161 -2.24027e-158 7.71076e-162 -8.08035e-159 2.75895e-162 -2.82268e-159 9.52581e-163 -9.52062e-160 3.16319e-163 -3.09023e-160 1.00657e-163 -9.61785e-161 3.05752e-164 -2.85924e-161 8.8292e-165 -8.08594e-162 2.41353e-165 -2.16614e-162 6.21846e-166 -5.4734e-163 1.50355e-166 -1.29893e-163 3.39748e-167 -2.88295e-164 7.14694e-168 -5.9622e-165 1.39507e-168 -1.1451e-165 2.52011e-169 -2.03747e-166 4.20716e-170 -3.35334e-167 6.49331e-171 -5.10796e-168 9.29238e-172 -7.22167e-169 1.24112e-172 -9.5408e-170 1.56561e-173 -1.19174e-170 -1.43558e-171 1.90193e-174 -1.78596e-169 -2.79023e-167 -1.23016e-168 -2.00638e-166 -8.08088e-168 -1.40534e-165 -5.00233e-167 -9.40332e-165 -2.89731e-166 -5.93921e-164 -1.56458e-165 -3.51572e-163 -7.86926e-165 -1.94363e-162 -3.68883e-164 -1.00251e-161 -1.6146e-163 -4.82754e-161 -6.61631e-163 -2.17434e-160 -2.54634e-162 -9.18394e-160 -9.23589e-162 -3.64916e-159 -3.16865e-161 -1.36873e-158 -1.03202e-160 -4.8638e-158 -3.2023e-160 -1.64345e-157 -9.49924e-160 -5.29947e-157 -2.70247e-159 -1.63651e-156 -7.39549e-159 -4.85575e-156 -1.95201e-158 -1.38862e-155 -4.98156e-158 -3.83833e-155 -1.23189e-157 -1.02817e-154 -2.95768e-157 -2.67541e-154 -6.90646e-157 -6.7774e-154 -1.57078e-156 -1.67474e-153 -3.48341e-156 -4.04408e-153 -7.53684e-156 -9.55745e-153 -1.59109e-155 -2.21324e-152 -3.27569e-155 -5.02586e-152 -6.57007e-155 -1.11951e-151 -1.28165e-154 -2.4461e-151 -2.42517e-154 -5.24009e-151 -4.43255e-154 -1.09939e-150 -7.77402e-154 -2.25422e-150 -1.29543e-153 -4.50131e-150 -2.02191e-153 -8.70589e-150 -2.90228e-153 -1.61885e-149 -3.73258e-153 -2.87378e-149 -4.09634e-153 -4.84214e-149 -3.37994e-153 -7.70046e-149 -9.03476e-154 -1.15191e-148 2.97514e-153 -1.63199e-148 9.16361e-153 -2.18393e-148 1.8621e-152 -2.83468e-148 3.19271e-152 -3.57021e-148 4.87423e-152 -4.30707e-148 6.76312e-152 -4.93659e-148 8.94366e-152 -5.56183e-148 1.13246e-151 -6.13361e-148 1.39936e-151 -6.71578e-148 1.61332e-151 -6.95455e-148 1.76169e-151 -6.89148e-148 1.8132e-151 -6.48915e-148 1.73675e-151 -5.729e-148 1.62708e-151 -4.97932e-148 1.48761e-151 -4.24577e-148 1.33373e-151 -3.5675e-148 1.13804e-151 -2.86307e-148 9.23572e-152 -2.19347e-148 7.28287e-152 -1.63787e-148 5.50281e-152 -1.17505e-148 3.92505e-152 -7.97914e-149 2.61465e-152 -5.07079e-149 1.61765e-152 -2.99823e-149 9.29412e-153 -1.64909e-149 5.00593e-153 -8.51768e-150 2.55977e-153 -4.184e-150 1.25754e-153 -1.97787e-150 5.99367e-154 -9.08535e-151 2.79176e-154 -4.08453e-151 1.2775e-154 -1.80647e-151 5.76328e-155 -7.88649e-152 2.56717e-155 -3.40333e-152 1.12881e-155 -1.45129e-152 4.89348e-156 -6.1073e-153 2.08767e-156 -2.53147e-153 8.74716e-157 -1.03136e-153 3.59172e-157 -4.12101e-154 1.44217e-157 -1.61133e-154 5.65002e-158 -6.15138e-155 2.15479e-158 -2.28749e-155 7.98042e-159 -8.26585e-156 2.86272e-159 -2.89477e-156 9.91804e-160 -9.7971e-157 3.30841e-160 -3.1944e-157 1.059e-160 -1.00009e-157 3.24118e-161 -2.99562e-158 9.44924e-162 -8.5527e-159 2.61374e-162 -2.31848e-159 6.83264e-163 -5.94372e-160 1.68141e-163 -1.43549e-160 3.87989e-164 -3.25362e-161 8.36638e-165 -6.89705e-162 1.68101e-165 -1.36336e-162 3.14008e-166 -2.50801e-163 5.44618e-167 -4.28828e-164 8.77648e-168 -6.81912e-165 1.31805e-168 -1.01164e-165 1.85686e-169 -1.4095e-166 2.48303e-170 -1.86593e-167 -2.39374e-168 3.21342e-171 -2.6203e-166 -4.27352e-164 -1.70879e-165 -2.89797e-163 -1.06754e-164 -1.92225e-162 -6.31443e-164 -1.22346e-161 -3.5111e-163 -7.38463e-161 -1.82876e-162 -4.19701e-160 -8.91159e-162 -2.23809e-159 -4.06476e-161 -1.11849e-158 -1.7381e-160 -5.24075e-158 -6.98374e-160 -2.3059e-157 -2.64422e-159 -9.54923e-157 -9.46361e-159 -3.73243e-156 -3.21208e-158 -1.3812e-155 -1.03733e-157 -4.85494e-155 -3.19784e-157 -1.62636e-154 -9.43977e-157 -5.20938e-154 -2.67611e-156 -1.60058e-153 -7.30581e-156 -4.73158e-153 -1.92545e-155 -1.34962e-152 -4.90998e-155 -3.72419e-152 -1.21393e-154 -9.96606e-152 -2.91522e-154 -2.59209e-151 -6.81101e-154 -6.56593e-151 -1.55027e-153 -1.62285e-150 -3.44111e-153 -3.92043e-150 -7.45315e-153 -9.27048e-150 -1.57526e-152 -2.14823e-149 -3.24732e-152 -4.88191e-149 -6.52266e-152 -1.08836e-148 -1.2745e-151 -2.38016e-148 -2.41617e-151 -5.10378e-148 -4.4256e-151 -1.0719e-147 -7.78108e-151 -2.20037e-147 -1.30038e-150 -4.39925e-147 -2.03678e-150 -8.51998e-147 -2.9369e-150 -1.58659e-146 -3.80155e-150 -2.82077e-146 -4.21764e-150 -4.76006e-146 -3.5711e-150 -7.58082e-146 -1.17771e-150 -1.1355e-145 2.70368e-150 -1.61041e-145 8.81546e-150 -2.15734e-145 1.81979e-149 -2.80194e-145 3.14441e-149 -3.53132e-145 4.82365e-149 -4.26324e-145 6.71126e-149 -4.88684e-145 8.89482e-149 -5.508e-145 1.12803e-148 -6.0755e-145 1.39611e-148 -6.65579e-145 1.61238e-148 -6.8987e-145 1.76276e-148 -6.83955e-145 1.81512e-148 -6.43931e-145 1.73948e-148 -5.6851e-145 1.63087e-148 -4.94275e-145 1.49202e-148 -4.21571e-145 1.33883e-148 -3.54416e-145 1.14275e-148 -2.84455e-145 9.27767e-149 -2.17971e-145 7.31763e-149 -1.62772e-145 5.52931e-149 -1.16765e-145 3.94422e-149 -7.92844e-146 2.62693e-149 -5.0371e-146 1.62433e-149 -2.97632e-146 9.32489e-150 -1.63555e-146 5.01809e-150 -8.43963e-147 2.56398e-150 -4.14213e-147 1.25884e-150 -1.95677e-147 5.99742e-151 -8.98434e-148 2.79287e-151 -4.03809e-148 1.27791e-151 -1.78575e-148 5.76534e-152 -7.79617e-149 2.5684e-152 -3.3647e-149 1.12957e-152 -1.43507e-149 4.89796e-153 -6.0404e-150 2.09022e-153 -2.50446e-150 8.76123e-154 -1.02073e-150 3.5993e-154 -4.08049e-151 1.4462e-154 -1.59653e-151 5.67109e-155 -6.10051e-152 2.16566e-155 -2.27153e-152 8.03527e-156 -8.22311e-153 2.88959e-156 -2.887e-153 1.00449e-156 -9.80383e-154 3.36571e-157 -3.21094e-154 1.08362e-157 -1.01114e-154 3.34137e-158 -3.05144e-155 9.83336e-159 -8.79459e-156 2.75207e-159 -2.41213e-156 7.29816e-160 -6.2734e-157 1.82755e-160 -1.54165e-157 4.30595e-161 -3.56773e-158 9.51696e-162 -7.75133e-159 1.96786e-162 -1.57693e-159 3.80002e-163 -2.99839e-160 6.846e-164 -5.32452e-161 1.15163e-164 -8.83754e-162 1.8147e-165 -1.37539e-162 2.69628e-166 -2.02072e-163 3.8213e-167 -2.835e-164 5.26644e-168 -3.87196e-165 -7.81723e-13 1.05769e-12 -1.99936e-12 1.21755e-12 -3.4227e-12 1.4233e-12 -4.64078e-12 1.21808e-12 -5.9233e-12 1.28252e-12 -7.06917e-12 1.14589e-12 -8.16499e-12 1.09584e-12 -9.17693e-12 1.01201e-12 -1.01064e-11 9.29624e-13 -1.095e-11 8.43855e-13 -1.17082e-11 7.58444e-13 -1.23811e-11 6.73219e-13 -1.29705e-11 5.8971e-13 -1.34795e-11 5.09329e-13 -1.39118e-11 4.32668e-13 -1.4272e-11 3.60673e-13 -1.45651e-11 2.93485e-13 -1.47951e-11 2.30425e-13 -1.4966e-11 1.71186e-13 -1.50819e-11 1.16196e-13 -1.5147e-11 6.54108e-14 -1.51651e-11 1.8266e-14 -1.51407e-11 -2.43099e-14 -1.50757e-11 -6.49267e-14 -1.49716e-11 -1.04016e-13 -1.48278e-11 -1.4374e-13 -1.46447e-11 -1.83099e-13 -1.44223e-11 -2.22432e-13 -1.41608e-11 -2.61577e-13 -1.38534e-11 -3.07463e-13 -1.35039e-11 -3.49594e-13 -1.3114e-11 -3.89874e-13 -1.2676e-11 -4.38049e-13 -1.21924e-11 -4.83484e-13 -1.16623e-11 -5.30032e-13 -1.10866e-11 -5.75712e-13 -1.04652e-11 -6.2134e-13 -9.79749e-12 -6.67691e-13 -9.0869e-12 -7.10589e-13 -8.33983e-12 -7.47088e-13 -7.55693e-12 -7.82945e-13 -6.74482e-12 -8.12191e-13 -5.907e-12 -8.37946e-13 -5.04619e-12 -8.60983e-13 -4.17207e-12 -8.7432e-13 -3.2888e-12 -8.83479e-13 -2.40338e-12 -8.85638e-13 -1.52291e-12 -8.80686e-13 -6.5376e-13 -8.69345e-13 1.97914e-13 -8.51865e-13 1.02579e-12 -8.2806e-13 1.82143e-12 -7.95817e-13 2.57836e-12 -7.5711e-13 3.29179e-12 -7.13632e-13 3.95614e-12 -6.64551e-13 4.56762e-12 -6.11683e-13 5.12286e-12 -5.55426e-13 5.61838e-12 -4.95674e-13 6.05288e-12 -4.34637e-13 6.42627e-12 -3.73532e-13 6.73937e-12 -3.13276e-13 6.99224e-12 -2.53079e-13 7.18521e-12 -1.93218e-13 7.32042e-12 -1.35448e-13 7.4017e-12 -8.14783e-14 7.43115e-12 -2.95858e-14 7.41271e-12 1.83842e-14 7.35264e-12 6.00776e-14 7.25925e-12 9.34362e-14 7.13918e-12 1.20096e-13 6.99589e-12 1.43291e-13 6.834e-12 1.61858e-13 6.65972e-12 1.74278e-13 6.47452e-12 1.8529e-13 6.27861e-12 1.9611e-13 6.07703e-12 2.0185e-13 5.87159e-12 2.05726e-13 5.65613e-12 2.15688e-13 5.43025e-12 2.26024e-13 5.19928e-12 2.31041e-13 4.96428e-12 2.35073e-13 4.725e-12 2.39393e-13 4.48131e-12 2.43883e-13 4.23915e-12 2.42419e-13 4.00066e-12 2.38768e-13 3.75287e-12 2.48048e-13 3.49768e-12 2.55438e-13 3.23888e-12 2.59149e-13 2.97355e-12 2.65882e-13 2.70556e-12 2.68726e-13 2.43578e-12 2.706e-13 2.15958e-12 2.76944e-13 1.87808e-12 2.8217e-13 1.58743e-12 2.91347e-13 1.29102e-12 2.97249e-13 9.9821e-13 2.93701e-13 7.07137e-13 2.91841e-13 4.3076e-13 2.76956e-13 1.92987e-13 2.38301e-13 1.93617e-13 8.46349e-13 2.56197e-12 -1.3358e-12 3.39975e-12 -3.81031e-12 3.89786e-12 -6.12981e-12 3.53761e-12 -8.40921e-12 3.56196e-12 -1.04894e-11 3.22615e-12 -1.24189e-11 3.02553e-12 -1.41751e-11 2.76845e-12 -1.5754e-11 2.50896e-12 -1.71549e-11 2.24522e-12 -1.83779e-11 1.98196e-12 -1.94256e-11 1.72158e-12 -2.03038e-11 1.46853e-12 -2.10203e-11 1.22647e-12 -2.1583e-11 9.9611e-13 -2.20015e-11 7.79857e-13 -2.22857e-11 5.78311e-13 -2.24444e-11 3.89658e-13 -2.2486e-11 2.13292e-13 -2.24197e-11 5.03154e-14 -2.2253e-11 -1.00978e-13 -2.19951e-11 -2.39451e-13 -2.16505e-11 -3.68666e-13 -2.12254e-11 -4.89974e-13 -2.07215e-11 -6.07825e-13 -2.01428e-11 -7.22464e-13 -1.94943e-11 -8.31645e-13 -1.87789e-11 -9.37899e-13 -1.79917e-11 -1.04877e-12 -1.71415e-11 -1.15765e-12 -1.62284e-11 -1.26263e-12 -1.52495e-11 -1.36868e-12 -1.42105e-11 -1.47692e-12 -1.31145e-11 -1.57931e-12 -1.1963e-11 -1.68137e-12 -1.07587e-11 -1.77985e-12 -9.50533e-12 -1.87465e-12 -8.21032e-12 -1.96263e-12 -6.87803e-12 -2.04283e-12 -5.51772e-12 -2.1074e-12 -4.13257e-12 -2.16816e-12 -2.73574e-12 -2.20915e-12 -1.33404e-12 -2.23984e-12 5.92797e-14 -2.25453e-12 1.44548e-12 -2.26077e-12 2.81129e-12 -2.24953e-12 4.14379e-12 -2.21838e-12 5.43428e-12 -2.17141e-12 6.6757e-12 -2.11098e-12 7.8601e-12 -2.03649e-12 8.97844e-12 -1.94663e-12 1.00219e-11 -1.83948e-12 1.0985e-11 -1.72051e-12 1.18651e-11 -1.594e-12 1.26583e-11 -1.45805e-12 1.33593e-11 -1.31289e-12 1.39643e-11 -1.16061e-12 1.44735e-11 -1.00508e-12 1.48898e-11 -8.51143e-13 1.52144e-11 -6.98406e-13 1.54476e-11 -5.46766e-13 1.55916e-11 -3.97395e-13 1.56521e-11 -2.54012e-13 1.56364e-11 -1.20011e-13 1.55497e-11 5.10599e-15 1.53955e-11 1.24605e-13 1.51791e-11 2.34881e-13 1.4911e-11 3.2824e-13 1.46019e-11 4.02586e-13 1.42587e-11 4.63335e-13 1.38858e-11 5.16242e-13 1.34899e-11 5.57828e-13 1.30798e-11 5.846e-13 1.26603e-11 6.05105e-13 1.22308e-11 6.26016e-13 1.17901e-11 6.43039e-13 1.13406e-11 6.55495e-13 1.08855e-11 6.71029e-13 1.04243e-11 6.87305e-13 9.95475e-12 7.00733e-13 9.48041e-12 7.09632e-13 9.00239e-12 7.17737e-13 8.51828e-12 7.28395e-13 8.03311e-12 7.28011e-13 7.54797e-12 7.24328e-13 7.05561e-12 7.4089e-13 6.55305e-12 7.58668e-13 6.04228e-12 7.70863e-13 5.52697e-12 7.82394e-13 5.00626e-12 7.90714e-13 4.47943e-12 7.98633e-13 3.9496e-12 8.07901e-13 3.41769e-12 8.15304e-13 2.88547e-12 8.24954e-13 2.34718e-12 8.36952e-13 1.80947e-12 8.32642e-13 1.276e-12 8.26324e-13 7.63407e-13 7.90537e-13 3.03859e-13 6.98976e-13 4.98016e-13 6.41728e-12 4.26739e-12 3.70937e-12 6.10779e-12 7.9109e-13 6.81619e-12 -2.13754e-12 6.46628e-12 -4.88036e-12 6.30483e-12 -7.42903e-12 5.77493e-12 -9.77485e-12 5.37153e-12 -1.19061e-11 4.89996e-12 -1.38119e-11 4.41514e-12 -1.54921e-11 3.92579e-12 -1.69455e-11 3.4358e-12 -1.81765e-11 2.95298e-12 -1.91949e-11 2.4874e-12 -2.00097e-11 2.04178e-12 -2.06322e-11 1.61905e-12 -2.10746e-11 1.2227e-12 -2.13487e-11 8.52845e-13 -2.14665e-11 5.07806e-13 -2.14395e-11 1.86616e-13 -2.12823e-11 -1.06566e-13 -2.10041e-11 -3.78948e-13 -2.06148e-11 -6.28471e-13 -2.01232e-11 -8.60116e-13 -1.95367e-11 -1.07625e-12 -1.88631e-11 -1.28125e-12 -1.81069e-11 -1.47857e-12 -1.72718e-11 -1.66664e-12 -1.63671e-11 -1.84241e-12 -1.53884e-11 -2.02731e-12 -1.4339e-11 -2.2068e-12 -1.32311e-11 -2.37022e-12 -1.20602e-11 -2.53925e-12 -1.08322e-11 -2.70456e-12 -9.55e-12 -2.86117e-12 -8.22153e-12 -3.00948e-12 -6.85101e-12 -3.15002e-12 -5.437e-12 -3.28831e-12 -3.98757e-12 -3.41171e-12 -2.52083e-12 -3.50924e-12 -1.03572e-12 -3.5922e-12 4.50661e-13 -3.65427e-12 1.94439e-12 -3.70264e-12 3.42787e-12 -3.72311e-12 4.89343e-12 -3.71991e-12 6.33398e-12 -3.70115e-12 7.74093e-12 -3.65631e-12 9.10102e-12 -3.57832e-12 1.04035e-11 -3.4738e-12 1.1642e-11 -3.3493e-12 1.28104e-11 -3.20481e-12 1.3899e-11 -3.03514e-12 1.49001e-11 -2.84052e-12 1.58101e-11 -2.63059e-12 1.66268e-11 -2.41065e-12 1.73471e-11 -2.17836e-12 1.79667e-11 -1.93241e-12 1.84826e-11 -1.67643e-12 1.88958e-11 -1.41818e-12 1.92095e-11 -1.16482e-12 1.94254e-11 -9.14255e-13 1.95434e-11 -6.64843e-13 1.95669e-11 -4.20826e-13 1.9504e-11 -1.9112e-13 1.93637e-11 2.02607e-14 1.91525e-11 2.16396e-13 1.88758e-11 4.01462e-13 1.85414e-11 5.69527e-13 1.81585e-11 7.11219e-13 1.77342e-11 8.27065e-13 1.7273e-11 9.24582e-13 1.67821e-11 1.00716e-12 1.62688e-11 1.07123e-12 1.57393e-11 1.11432e-12 1.52008e-11 1.14375e-12 1.46563e-11 1.17077e-12 1.41017e-11 1.19778e-12 1.35379e-11 1.21938e-12 1.29729e-11 1.23612e-12 1.24081e-11 1.25215e-12 1.18404e-11 1.2684e-12 1.12681e-11 1.28209e-12 1.06923e-11 1.29362e-12 1.01138e-11 1.30714e-12 9.52697e-12 1.31497e-12 8.93056e-12 1.32091e-12 8.33133e-12 1.34035e-12 7.72769e-12 1.3627e-12 7.11687e-12 1.38225e-12 6.50045e-12 1.3995e-12 5.8775e-12 1.41435e-12 5.24783e-12 1.42895e-12 4.61717e-12 1.43924e-12 3.98755e-12 1.44575e-12 3.36433e-12 1.44912e-12 2.74138e-12 1.46084e-12 2.11155e-12 1.46327e-12 1.48845e-12 1.45018e-12 8.76317e-13 1.40355e-12 3.25543e-13 1.25074e-12 8.2402e-13 1.06107e-11 6.16475e-12 7.68475e-12 9.03381e-12 4.50193e-12 9.99904e-12 1.32899e-12 9.63927e-12 -1.64188e-12 9.2758e-12 -4.43609e-12 8.5693e-12 -7.00495e-12 7.94061e-12 -9.3342e-12 7.22948e-12 -1.14169e-11 6.49816e-12 -1.32478e-11 5.75696e-12 -1.48294e-11 5.01766e-12 -1.6168e-11 4.29187e-12 -1.72716e-11 3.59132e-12 -1.81524e-11 2.92289e-12 -1.88235e-11 2.29038e-12 -1.9298e-11 1.69748e-12 -1.9589e-11 1.14413e-12 -1.97117e-11 6.30784e-13 -1.96783e-11 1.53445e-13 -1.95023e-11 -2.82318e-13 -1.91997e-11 -6.81284e-13 -1.87801e-11 -1.04786e-12 -1.82533e-11 -1.38659e-12 -1.7627e-11 -1.7023e-12 -1.69131e-11 -1.99479e-12 -1.61155e-11 -2.27578e-12 -1.52369e-11 -2.54496e-12 -1.42841e-11 -2.79477e-12 -1.32647e-11 -3.04634e-12 -1.21801e-11 -3.29097e-12 -1.10287e-11 -3.52109e-12 -9.82024e-12 -3.74716e-12 -8.56034e-12 -3.96392e-12 -7.24721e-12 -4.17375e-12 -5.88886e-12 -4.36728e-12 -4.49112e-12 -4.54721e-12 -3.06071e-12 -4.71816e-12 -1.60151e-12 -4.87033e-12 -1.21223e-13 -4.98895e-12 1.36768e-12 -5.08053e-12 2.86258e-12 -5.14861e-12 4.35258e-12 -5.19209e-12 5.83065e-12 -5.20064e-12 7.28717e-12 -5.17591e-12 8.7116e-12 -5.12507e-12 1.00948e-11 -5.03902e-12 1.14297e-11 -4.91278e-12 1.27055e-11 -4.74922e-12 1.39117e-11 -4.55517e-12 1.50427e-11 -4.33543e-12 1.60905e-11 -4.08268e-12 1.70491e-11 -3.7989e-12 1.7915e-11 -3.49621e-12 1.86831e-11 -3.17853e-12 1.93496e-11 -2.84463e-12 1.99127e-11 -2.4952e-12 2.03721e-11 -2.13562e-12 2.07284e-11 -1.77412e-12 2.0981e-11 -1.41722e-12 2.11324e-11 -1.06538e-12 2.11866e-11 -7.18783e-13 2.11483e-11 -3.82324e-13 2.1023e-11 -6.55792e-14 2.08178e-11 2.25741e-13 2.05422e-11 4.92296e-13 2.02055e-11 7.38351e-13 1.98154e-11 9.59878e-13 1.93776e-11 1.14921e-12 1.88986e-11 1.30621e-12 1.8386e-11 1.43718e-12 1.78467e-11 1.54655e-12 1.72864e-11 1.63163e-12 1.67099e-11 1.69089e-12 1.61219e-11 1.73184e-12 1.55271e-11 1.76561e-12 1.49281e-11 1.79672e-12 1.43252e-11 1.82224e-12 1.37197e-11 1.84156e-12 1.31138e-11 1.858e-12 1.25081e-11 1.87415e-12 1.18998e-11 1.89039e-12 1.1287e-11 1.90647e-12 1.06701e-11 1.92404e-12 1.0046e-11 1.93911e-12 9.41331e-12 1.95363e-12 8.77809e-12 1.97567e-12 8.13984e-12 2.00114e-12 7.49509e-12 2.02727e-12 6.84348e-12 2.0514e-12 6.18542e-12 2.07268e-12 5.52292e-12 2.09174e-12 4.86061e-12 2.10196e-12 4.203e-12 2.10391e-12 3.54477e-12 2.10798e-12 2.88287e-12 2.12333e-12 2.21993e-12 2.12679e-12 1.55782e-12 2.11296e-12 9.23586e-13 2.03862e-12 3.68814e-13 1.80639e-12 1.19317e-12 1.24359e-11 7.95124e-12 9.4039e-12 1.20658e-11 6.12562e-12 1.32774e-11 2.86313e-12 1.29019e-11 -2.32016e-13 1.23711e-11 -3.14377e-12 1.14813e-11 -5.81562e-12 1.06127e-11 -8.23732e-12 9.65142e-12 -1.04026e-11 8.66365e-12 -1.23036e-11 7.65817e-12 -1.39455e-11 6.65971e-12 -1.53328e-11 5.67934e-12 -1.64748e-11 4.73344e-12 -1.73859e-11 3.83413e-12 -1.80792e-11 2.98383e-12 -1.85687e-11 2.18712e-12 -1.88691e-11 1.44469e-12 -1.89952e-11 7.57012e-13 -1.8962e-11 1.20533e-13 -1.87843e-11 -4.59798e-13 -1.84746e-11 -9.90639e-13 -1.8045e-11 -1.47714e-12 -1.75093e-11 -1.92191e-12 -1.68741e-11 -2.33702e-12 -1.61444e-11 -2.72407e-12 -1.53359e-11 -3.08377e-12 -1.44508e-11 -3.42954e-12 -1.34874e-11 -3.7576e-12 -1.2456e-11 -4.07725e-12 -1.1362e-11 -4.38433e-12 -1.02058e-11 -4.67668e-12 -8.98716e-12 -4.96525e-12 -7.71589e-12 -5.23459e-12 -6.39848e-12 -5.49057e-12 -5.03293e-12 -5.73223e-12 -3.6262e-12 -5.95333e-12 -2.1921e-12 -6.15164e-12 -7.30846e-13 -6.33096e-12 7.51223e-13 -6.47039e-12 2.24798e-12 -6.57664e-12 3.74729e-12 -6.64728e-12 5.23872e-12 -6.68288e-12 6.7162e-12 -6.67747e-12 8.17275e-12 -6.63182e-12 9.59466e-12 -6.54638e-12 1.09721e-11 -6.41589e-12 1.23003e-11 -6.24047e-12 1.35686e-11 -6.01706e-12 1.47671e-11 -5.75328e-12 1.58887e-11 -5.45662e-12 1.6927e-11 -5.12069e-12 1.78756e-11 -4.74723e-12 1.87282e-11 -4.34846e-12 1.948e-11 -3.93007e-12 2.01287e-11 -3.49297e-12 2.06724e-11 -3.03865e-12 2.11104e-11 -2.57326e-12 2.14419e-11 -2.10529e-12 2.16678e-11 -1.64283e-12 2.17915e-11 -1.18877e-12 2.18173e-11 -7.44207e-13 2.17492e-11 -3.13889e-13 2.15936e-11 9.04205e-14 2.1359e-11 4.60586e-13 2.10548e-11 7.9688e-13 2.06894e-11 1.10393e-12 2.02715e-11 1.37799e-12 1.98079e-11 1.61298e-12 1.93044e-11 1.80975e-12 1.87687e-11 1.97301e-12 1.82081e-11 2.10723e-12 1.76274e-11 2.21238e-12 1.70307e-11 2.28755e-12 1.64233e-11 2.33924e-12 1.58098e-11 2.37896e-12 1.51929e-11 2.41352e-12 1.4574e-11 2.44107e-12 1.39548e-11 2.46077e-12 1.33368e-11 2.47599e-12 1.27202e-11 2.49088e-12 1.21023e-11 2.5084e-12 1.14801e-11 2.52869e-12 1.08521e-11 2.55204e-12 1.02159e-11 2.57537e-12 9.57303e-12 2.59667e-12 8.92702e-12 2.62183e-12 8.27653e-12 2.65178e-12 7.62013e-12 2.68378e-12 6.95659e-12 2.71504e-12 6.28597e-12 2.74341e-12 5.61411e-12 2.76378e-12 4.94579e-12 2.77057e-12 4.27974e-12 2.77034e-12 3.60865e-12 2.77948e-12 2.93608e-12 2.79631e-12 2.26074e-12 2.80263e-12 1.58422e-12 2.79014e-12 9.45902e-13 2.67769e-12 3.86257e-13 2.3667e-12 1.57961e-12 1.29574e-11 9.80919e-12 9.87709e-12 1.5146e-11 6.52053e-12 1.6634e-11 3.19554e-12 1.6227e-11 4.78291e-14 1.5519e-11 -2.9322e-12 1.44615e-11 -5.65162e-12 1.33323e-11 -8.1167e-12 1.21167e-11 -1.03131e-11 1.08601e-11 -1.22394e-11 9.58462e-12 -1.38987e-11 8.3191e-12 -1.52977e-11 7.07838e-12 -1.64481e-11 5.88386e-12 -1.73623e-11 4.74833e-12 -1.80536e-11 3.67525e-12 -1.8538e-11 2.67151e-12 -1.88312e-11 1.73806e-12 -1.89487e-11 8.74603e-13 -1.89089e-11 8.09367e-14 -1.87242e-11 -6.44161e-13 -1.84074e-11 -1.30708e-12 -1.79704e-11 -1.91381e-12 -1.74248e-11 -2.46701e-12 -1.67815e-11 -2.97984e-12 -1.60476e-11 -3.4574e-12 -1.52276e-11 -3.90327e-12 -1.43324e-11 -4.32421e-12 -1.33669e-11 -4.72246e-12 -1.23287e-11 -5.11491e-12 -1.12266e-11 -5.48586e-12 -1.00656e-11 -5.8372e-12 -8.84208e-12 -6.18828e-12 -7.56462e-12 -6.51158e-12 -6.237e-12 -6.81774e-12 -4.86483e-12 -7.10396e-12 -3.45017e-12 -7.36756e-12 -1.99812e-12 -7.60324e-12 -5.27971e-13 -7.80066e-12 9.64565e-13 -7.96246e-12 2.47123e-12 -8.08283e-12 3.98294e-12 -8.15851e-12 5.48763e-12 -8.18708e-12 6.97594e-12 -8.1653e-12 8.44152e-12 -8.09693e-12 9.87321e-12 -7.97763e-12 1.12607e-11 -7.80296e-12 1.25965e-11 -7.57597e-12 1.38731e-11 -7.29334e-12 1.50797e-11 -6.95969e-12 1.62069e-11 -6.58364e-12 1.72498e-11 -6.16341e-12 1.82032e-11 -5.70041e-12 1.90592e-11 -5.20424e-12 1.98118e-11 -4.68247e-12 2.04588e-11 -4.13979e-12 2.09987e-11 -3.57843e-12 2.14308e-11 -3.00518e-12 2.17541e-11 -2.42831e-12 2.19693e-11 -1.85787e-12 2.20803e-11 -1.29958e-12 2.20919e-11 -7.55491e-13 2.2009e-11 -2.30632e-13 2.18383e-11 2.61355e-13 2.15896e-11 7.0965e-13 2.12707e-11 1.11595e-12 2.08891e-11 1.48574e-12 2.04538e-11 1.81335e-12 1.99735e-11 2.09329e-12 1.94546e-11 2.32868e-12 1.89037e-11 2.52398e-12 1.83296e-11 2.68145e-12 1.77383e-11 2.80369e-12 1.71327e-11 2.89318e-12 1.65163e-11 2.95556e-12 1.5894e-11 3.00117e-12 1.527e-11 3.03748e-12 1.46465e-11 3.06456e-12 1.40246e-11 3.08281e-12 1.34041e-11 3.09681e-12 1.27837e-11 3.11156e-12 1.21615e-11 3.13077e-12 1.15355e-11 3.15491e-12 1.09049e-11 3.18289e-12 1.0268e-11 3.21261e-12 9.62419e-12 3.24081e-12 8.97577e-12 3.27059e-12 8.3221e-12 3.30571e-12 7.6624e-12 3.34365e-12 6.99529e-12 3.38228e-12 6.32337e-12 3.4155e-12 5.65406e-12 3.43334e-12 4.9855e-12 3.43944e-12 4.3126e-12 3.44357e-12 3.63688e-12 3.45549e-12 2.95609e-12 3.47744e-12 2.27169e-12 3.48749e-12 1.5912e-12 3.47122e-12 9.50591e-13 3.31887e-12 3.88943e-13 2.92874e-12 1.96861e-12 1.29969e-11 1.17175e-11 9.86907e-12 1.82739e-11 6.43155e-12 2.00717e-11 3.03938e-12 1.96194e-11 -1.77994e-13 1.87365e-11 -3.18377e-12 1.74674e-11 -5.9339e-12 1.60825e-11 -8.41727e-12 1.46001e-11 -1.06239e-11 1.30668e-11 -1.25537e-11 1.15144e-11 -1.42097e-11 9.97511e-12 -1.56003e-11 8.46902e-12 -1.67381e-11 7.02163e-12 -1.76355e-11 5.6457e-12 -1.83077e-11 4.34745e-12 -1.87717e-11 3.13553e-12 -1.90442e-11 2.01067e-12 -1.91434e-11 9.73956e-13 -1.90858e-11 2.35938e-14 -1.88849e-11 -8.4478e-13 -1.85549e-11 -1.63671e-12 -1.81072e-11 -2.36111e-12 -1.75501e-11 -3.02366e-12 -1.68961e-11 -3.6334e-12 -1.6156e-11 -4.197e-12 -1.53292e-11 -4.72961e-12 -1.44262e-11 -5.22678e-12 -1.34544e-11 -5.69381e-12 -1.24086e-11 -6.16029e-12 -1.13029e-11 -6.59118e-12 -1.01318e-11 -7.00803e-12 -8.90392e-12 -7.41591e-12 -7.62007e-12 -7.79522e-12 -6.28468e-12 -8.15295e-12 -4.90245e-12 -8.48603e-12 -3.47827e-12 -8.79158e-12 -2.01701e-12 -9.06436e-12 -5.32014e-13 -9.28552e-12 9.76329e-13 -9.47066e-12 2.49643e-12 -9.60279e-12 4.02147e-12 -9.6834e-12 5.54119e-12 -9.70665e-12 7.04586e-12 -9.66982e-12 8.52624e-12 -9.57717e-12 9.97193e-12 -9.4232e-12 1.13735e-11 -9.20449e-12 1.27217e-11 -8.9241e-12 1.40106e-11 -8.58227e-12 1.52306e-11 -8.17969e-12 1.63705e-11 -7.72363e-12 1.74239e-11 -7.21684e-12 1.83857e-11 -6.66223e-12 1.92496e-11 -6.06815e-12 2.00091e-11 -5.44196e-12 2.06604e-11 -4.79107e-12 2.12015e-11 -4.11961e-12 2.16322e-11 -3.43585e-12 2.19521e-11 -2.74827e-12 2.21624e-11 -2.0681e-12 2.22661e-11 -1.40324e-12 2.22686e-11 -7.57848e-13 2.21765e-11 -1.38338e-13 2.19968e-11 4.41299e-13 2.17373e-11 9.69255e-13 2.14057e-11 1.44764e-12 2.10101e-11 1.88136e-12 2.05605e-11 2.26288e-12 2.00657e-11 2.58804e-12 1.95324e-11 2.86201e-12 1.8968e-11 3.08853e-12 1.83818e-11 3.26778e-12 1.77814e-11 3.40416e-12 1.71695e-11 3.50513e-12 1.65477e-11 3.57734e-12 1.59207e-11 3.62813e-12 1.52943e-11 3.66397e-12 1.46712e-11 3.68787e-12 1.40499e-11 3.70454e-12 1.3428e-11 3.71916e-12 1.28046e-11 3.73535e-12 1.21776e-11 3.75823e-12 1.15477e-11 3.78525e-12 1.09162e-11 3.81485e-12 1.02809e-11 3.84844e-12 9.63981e-12 3.88256e-12 8.99254e-12 3.91841e-12 8.33963e-12 3.95904e-12 7.68013e-12 4.00346e-12 7.01501e-12 4.04768e-12 6.34917e-12 4.08168e-12 5.68307e-12 4.09983e-12 5.01335e-12 4.10953e-12 4.33731e-12 4.11989e-12 3.65544e-12 4.1376e-12 2.96796e-12 4.16523e-12 2.27787e-12 4.17803e-12 1.59754e-12 4.15201e-12 9.49965e-13 3.96677e-12 3.78347e-13 3.50054e-12 2.34698e-12 1.29539e-11 1.35919e-11 9.7259e-12 2.1502e-11 6.20068e-12 2.35971e-11 2.73968e-12 2.30805e-11 -5.34131e-13 2.20104e-11 -3.57506e-12 2.05084e-11 -6.35111e-12 1.88586e-11 -8.84936e-12 1.70984e-11 -1.10619e-11 1.52793e-11 -1.29895e-11 1.3442e-11 -1.46371e-11 1.16226e-11 -1.60159e-11 9.84773e-12 -1.71372e-11 8.14291e-12 -1.80158e-11 6.52421e-12 -1.86675e-11 4.99922e-12 -1.91095e-11 3.57754e-12 -1.93589e-11 2.26019e-12 -1.94348e-11 1.05002e-12 -1.93535e-11 -5.75127e-14 -1.91312e-11 -1.06686e-12 -1.87806e-11 -1.98706e-12 -1.83142e-11 -2.82716e-12 -1.77433e-11 -3.59434e-12 -1.70773e-11 -4.299e-12 -1.63216e-11 -4.95246e-12 -1.54875e-11 -5.56336e-12 -1.45771e-11 -6.13698e-12 -1.35929e-11 -6.67778e-12 -1.25437e-11 -7.20924e-12 -1.1427e-11 -7.70783e-12 -1.02498e-11 -8.18515e-12 -9.0155e-12 -8.65022e-12 -7.72508e-12 -9.08569e-12 -6.37927e-12 -9.49884e-12 -4.98462e-12 -9.88081e-12 -3.55189e-12 -1.02244e-11 -2.08159e-12 -1.05348e-11 -5.78877e-13 -1.07884e-11 9.42528e-13 -1.09922e-11 2.47796e-12 -1.11384e-11 4.01845e-12 -1.12241e-11 5.55371e-12 -1.12421e-11 7.07482e-12 -1.11911e-11 8.57069e-12 -1.10732e-11 1.00329e-11 -1.08855e-11 1.14519e-11 -1.06237e-11 1.28168e-11 -1.02892e-11 1.41197e-11 -9.88543e-12 1.53532e-11 -9.41349e-12 1.6507e-11 -8.87764e-12 1.75722e-11 -8.2823e-12 1.85453e-11 -7.63543e-12 1.9419e-11 -6.94206e-12 2.01861e-11 -6.20921e-12 2.08422e-11 -5.44729e-12 2.13862e-11 -4.66384e-12 2.18169e-11 -3.86673e-12 2.21342e-11 -3.06573e-12 2.23399e-11 -2.27396e-12 2.24372e-11 -1.50055e-12 2.24314e-11 -7.5197e-13 2.23304e-11 -3.72622e-14 2.21417e-11 6.30097e-13 2.18705e-11 1.24045e-12 2.15244e-11 1.79364e-12 2.11139e-11 2.2918e-12 2.06498e-11 2.72686e-12 2.01408e-11 3.09703e-12 1.95939e-11 3.40897e-12 1.90174e-11 3.66524e-12 1.84204e-11 3.86503e-12 1.78102e-11 4.01449e-12 1.71905e-11 4.12499e-12 1.65633e-11 4.20453e-12 1.59333e-11 4.25828e-12 1.53055e-11 4.29199e-12 1.4681e-11 4.31274e-12 1.40576e-11 4.32851e-12 1.34345e-11 4.34282e-12 1.28108e-11 4.35955e-12 1.21847e-11 4.38489e-12 1.15557e-11 4.41476e-12 1.09242e-11 4.4469e-12 1.02899e-11 4.48348e-12 9.64995e-12 4.52333e-12 9.00361e-12 4.56542e-12 8.35127e-12 4.61189e-12 7.69232e-12 4.66282e-12 7.02993e-12 4.7105e-12 6.36744e-12 4.74466e-12 5.70241e-12 4.76533e-12 5.03233e-12 4.77996e-12 4.35178e-12 4.80068e-12 3.6654e-12 4.8242e-12 2.98032e-12 4.85062e-12 2.29296e-12 4.86576e-12 1.60799e-12 4.83725e-12 9.53252e-13 4.62163e-12 3.79574e-13 4.07431e-12 2.72662e-12 1.2928e-11 1.56102e-11 9.57603e-12 2.48541e-11 5.94646e-12 2.72267e-11 2.40629e-12 2.66206e-11 -9.26889e-13 2.53436e-11 -4.00649e-12 2.35879e-11 -6.80912e-12 2.16612e-11 -9.32158e-12 1.96108e-11 -1.15396e-11 1.74972e-11 -1.34653e-11 1.53676e-11 -1.51052e-11 1.32624e-11 -1.64707e-11 1.12132e-11 -1.7575e-11 9.2472e-12 -1.84325e-11 7.38163e-12 -1.906e-11 5.6267e-12 -1.94754e-11 3.99293e-12 -1.96993e-11 2.48407e-12 -1.97488e-11 1.09968e-12 -1.96428e-11 -1.63422e-13 -1.93964e-11 -1.31323e-12 -1.90244e-11 -2.35897e-12 -1.85385e-11 -3.31287e-12 -1.7952e-11 -4.18077e-12 -1.72715e-11 -4.9794e-12 -1.65056e-11 -5.71829e-12 -1.56606e-11 -6.40823e-12 -1.47414e-11 -7.05619e-12 -1.37505e-11 -7.66865e-12 -1.26933e-11 -8.26646e-12 -1.15721e-11 -8.82913e-12 -1.03855e-11 -9.37188e-12 -9.14295e-12 -9.89295e-12 -7.84283e-12 -1.0386e-11 -6.48702e-12 -1.08549e-11 -5.08243e-12 -1.12856e-11 -3.63102e-12 -1.16761e-11 -2.15129e-12 -1.20148e-11 -6.35077e-13 -1.23049e-11 9.01825e-13 -1.25294e-11 2.45359e-12 -1.26904e-11 4.01086e-12 -1.27816e-11 5.56327e-12 -1.27948e-11 7.10214e-12 -1.27302e-11 8.61643e-12 -1.25878e-11 1.00977e-11 -1.23671e-11 1.1536e-11 -1.20623e-11 1.2919e-11 -1.16726e-11 1.42378e-11 -1.12045e-11 1.54876e-11 -1.06636e-11 1.66576e-11 -1.00479e-11 1.77367e-11 -9.36165e-12 1.87202e-11 -8.61909e-12 1.96036e-11 -7.82554e-12 2.03795e-11 -6.98531e-12 2.10415e-11 -6.10941e-12 2.15874e-11 -5.20995e-12 2.20171e-11 -4.29668e-12 2.23319e-11 -3.38065e-12 2.25327e-11 -2.47493e-12 2.26216e-11 -1.58954e-12 2.26049e-11 -7.3521e-13 2.24931e-11 7.4572e-14 2.22937e-11 8.2959e-13 2.20093e-11 1.52484e-12 2.16481e-11 2.15472e-12 2.12222e-11 2.71764e-12 2.07427e-11 3.20632e-12 2.02179e-11 3.62191e-12 1.96563e-11 3.97074e-12 1.90676e-11 4.2543e-12 1.84597e-11 4.47317e-12 1.78388e-11 4.63568e-12 1.72093e-11 4.75469e-12 1.65758e-11 4.83818e-12 1.5943e-11 4.89128e-12 1.53134e-11 4.92187e-12 1.4686e-11 4.94062e-12 1.40604e-11 4.95462e-12 1.34375e-11 4.96621e-12 1.28148e-11 4.98265e-12 1.21902e-11 5.00989e-12 1.15637e-11 5.0417e-12 1.09347e-11 5.07645e-12 1.03013e-11 5.11761e-12 9.66167e-12 5.1637e-12 9.01587e-12 5.21179e-12 8.36293e-12 5.26527e-12 7.70383e-12 5.32233e-12 7.04197e-12 5.37282e-12 6.37631e-12 5.41079e-12 5.70567e-12 5.43637e-12 5.02908e-12 5.45681e-12 4.34683e-12 5.48308e-12 3.66528e-12 5.50594e-12 2.98385e-12 5.53231e-12 2.30044e-12 5.5494e-12 1.61746e-12 5.52034e-12 9.64149e-13 5.27497e-12 3.90604e-13 4.648e-12 3.11739e-12 1.28691e-11 1.78693e-11 9.42171e-12 2.83015e-11 5.67728e-12 3.0971e-11 2.04539e-12 3.02524e-11 -1.35564e-12 2.87445e-11 -4.48333e-12 2.67155e-11 -7.31619e-12 2.4494e-11 -9.84313e-12 2.21376e-11 -1.20629e-11 1.97168e-11 -1.39804e-11 1.7285e-11 -1.56049e-11 1.48868e-11 -1.69497e-11 1.25578e-11 -1.80289e-11 1.03262e-11 -1.88593e-11 8.21194e-12 -1.94604e-11 6.22772e-12 -1.98494e-11 4.38184e-12 -2.00468e-11 2.68135e-12 -2.00705e-11 1.12327e-12 -1.99405e-11 -2.93509e-13 -1.96709e-11 -1.58296e-12 -1.92749e-11 -2.75505e-12 -1.877e-11 -3.81791e-12 -1.81662e-11 -4.78473e-12 -1.74698e-11 -5.67592e-12 -1.66945e-11 -6.49368e-12 -1.5838e-11 -7.26482e-12 -1.49097e-11 -7.98463e-12 -1.39117e-11 -8.66676e-12 -1.28463e-11 -9.33197e-12 -1.17145e-11 -9.96109e-12 -1.05227e-11 -1.0564e-11 -9.27329e-12 -1.11425e-11 -7.95957e-12 -1.17e-11 -6.59638e-12 -1.22183e-11 -5.18286e-12 -1.26994e-11 -3.72428e-12 -1.31349e-11 -2.22339e-12 -1.35159e-11 -6.96506e-13 -1.3832e-11 8.58194e-13 -1.40843e-11 2.42847e-12 -1.4261e-11 4.00502e-12 -1.43584e-11 5.57779e-12 -1.43678e-11 7.1362e-12 -1.42889e-11 8.67083e-12 -1.41227e-11 1.01733e-11 -1.38698e-11 1.1633e-11 -1.35222e-11 1.30373e-11 -1.30771e-11 1.43756e-11 -1.25431e-11 1.56425e-11 -1.19306e-11 1.68301e-11 -1.12356e-11 1.7927e-11 -1.04586e-11 1.89233e-11 -9.61539e-12 1.98152e-11 -8.7174e-12 2.05993e-11 -7.76941e-12 2.12689e-11 -6.77901e-12 2.18187e-11 -5.75977e-12 2.22486e-11 -4.72671e-12 2.25612e-11 -3.69328e-12 2.27575e-11 -2.67124e-12 2.28397e-11 -1.67164e-12 2.2813e-11 -7.08453e-13 2.26861e-11 2.01571e-13 2.2469e-11 1.04686e-12 2.21678e-11 1.82607e-12 2.17893e-11 2.53317e-12 2.13457e-11 3.16135e-12 2.08478e-11 3.70425e-12 2.03044e-11 4.1656e-12 1.97256e-11 4.54986e-12 1.91221e-11 4.85813e-12 1.85012e-11 5.09441e-12 1.78681e-11 5.26914e-12 1.72284e-11 5.39463e-12 1.65886e-11 5.4782e-12 1.59529e-11 5.52717e-12 1.53208e-11 5.55428e-12 1.46907e-11 5.57102e-12 1.40645e-11 5.58119e-12 1.34419e-11 5.58901e-12 1.28192e-11 5.60555e-12 1.21957e-11 5.6336e-12 1.1572e-11 5.66565e-12 1.09455e-11 5.7034e-12 1.03129e-11 5.75064e-12 9.67443e-12 5.80266e-12 9.02875e-12 5.85784e-12 8.375e-12 5.91931e-12 7.71677e-12 5.98087e-12 7.05469e-12 6.03528e-12 6.38575e-12 6.0801e-12 5.71035e-12 6.11203e-12 5.02769e-12 6.13959e-12 4.34533e-12 6.16555e-12 3.66527e-12 6.18616e-12 2.98465e-12 6.21312e-12 2.30223e-12 6.23192e-12 1.62153e-12 6.20104e-12 9.73731e-13 5.92285e-12 3.91001e-13 5.23101e-12 3.5086e-12 1.27873e-11 2.00135e-11 9.21887e-12 3.18698e-11 5.35629e-12 3.48334e-11 1.6236e-12 3.3985e-11 -1.85091e-12 3.22189e-11 -5.03385e-12 2.98984e-11 -7.90177e-12 2.73618e-11 -1.04472e-11 2.46829e-11 -1.26714e-11 2.19408e-11 -1.45809e-11 1.91943e-11 -1.61875e-11 1.64933e-11 -1.75065e-11 1.38766e-11 -1.85548e-11 1.13742e-11 -1.93512e-11 9.00814e-12 -1.99155e-11 6.7918e-12 -2.02677e-11 4.73379e-12 -2.04292e-11 2.84258e-12 -2.04219e-11 1.11562e-12 -2.02591e-11 -4.56633e-13 -1.996e-11 -1.88238e-12 -1.95402e-11 -3.17512e-12 -1.90131e-11 -4.34533e-12 -1.83866e-11 -5.41158e-12 -1.7673e-11 -6.38985e-12 -1.68801e-11 -7.28687e-12 -1.60094e-11 -8.13573e-12 -1.50685e-11 -8.92579e-12 -1.40603e-11 -9.67517e-12 -1.29898e-11 -1.04026e-11 -1.18555e-11 -1.10955e-11 -1.06577e-11 -1.17619e-11 -9.40118e-12 -1.23993e-11 -8.08501e-12 -1.30163e-11 -6.71138e-12 -1.3592e-11 -5.28625e-12 -1.41246e-11 -3.81831e-12 -1.46029e-11 -2.30575e-12 -1.50285e-11 -7.60933e-13 -1.53768e-11 8.13728e-13 -1.56591e-11 2.40451e-12 -1.58518e-11 4.0014e-12 -1.59554e-11 5.59632e-12 -1.59628e-11 7.17964e-12 -1.58723e-11 8.73872e-12 -1.56818e-11 1.02621e-11 -1.53933e-11 1.17436e-11 -1.50037e-11 1.31725e-11 -1.4506e-11 1.45351e-11 -1.39056e-11 1.5821e-11 -1.32165e-11 1.70252e-11 -1.24396e-11 1.81392e-11 -1.15725e-11 1.91521e-11 -1.06281e-11 2.00562e-11 -9.62122e-12 2.08479e-11 -8.56089e-12 2.15235e-11 -7.45442e-12 2.2078e-11 -6.31413e-12 2.25095e-11 -5.15812e-12 2.28191e-11 -4.00271e-12 2.30093e-11 -2.86131e-12 2.3084e-11 -1.74614e-12 2.30482e-11 -6.72483e-13 2.29087e-11 3.41255e-13 2.26737e-11 1.28198e-12 2.23515e-11 2.1484e-12 2.19517e-11 2.93313e-12 2.14864e-11 3.62681e-12 2.09659e-11 4.22504e-12 2.04005e-11 4.73137e-12 1.9802e-11 5.14866e-12 1.9181e-11 5.47952e-12 1.85443e-11 5.7315e-12 1.78977e-11 5.91599e-12 1.72483e-11 6.04432e-12 1.66026e-11 6.12413e-12 1.59628e-11 6.16717e-12 1.5327e-11 6.19031e-12 1.46951e-11 6.20304e-12 1.40688e-11 6.20755e-12 1.34461e-11 6.21173e-12 1.28238e-11 6.22777e-12 1.22027e-11 6.25473e-12 1.15823e-11 6.28609e-12 1.09576e-11 6.32836e-12 1.03262e-11 6.38223e-12 9.68875e-12 6.44029e-12 9.04254e-12 6.5042e-12 8.3892e-12 6.57282e-12 7.73203e-12 6.63827e-12 7.06801e-12 6.69957e-12 6.39611e-12 6.75221e-12 5.71574e-12 6.79252e-12 5.02923e-12 6.82615e-12 4.34555e-12 6.84934e-12 3.66426e-12 6.86762e-12 2.9834e-12 6.8941e-12 2.29996e-12 6.91538e-12 1.62653e-12 6.87449e-12 9.76674e-13 6.5729e-12 3.82123e-13 5.82593e-12 3.89092e-12 1.26537e-11 2.20873e-11 8.9614e-12 3.55618e-11 4.96429e-12 3.88304e-11 1.11571e-12 3.78334e-11 -2.43146e-12 3.57659e-11 -5.66823e-12 3.31349e-11 -8.57103e-12 3.02643e-11 -1.11345e-11 2.72461e-11 -1.33627e-11 2.41687e-11 -1.52645e-11 2.10958e-11 -1.68537e-11 1.80822e-11 -1.81469e-11 1.51695e-11 -1.9163e-11 1.23901e-11 -1.99226e-11 9.76736e-12 -2.04464e-11 7.31521e-12 -2.07583e-11 5.04528e-12 -2.08794e-11 2.9632e-12 -2.08303e-11 1.06605e-12 -2.06302e-11 -6.57224e-13 -2.02959e-11 -2.21718e-12 -1.98451e-11 -3.62653e-12 -1.92889e-11 -4.90204e-12 -1.86386e-11 -6.0623e-12 -1.79051e-11 -7.12385e-12 -1.70926e-11 -8.0997e-12 -1.62086e-11 -9.02009e-12 -1.52574e-11 -9.87729e-12 -1.42419e-11 -1.06909e-11 -1.31631e-11 -1.14817e-11 -1.20199e-11 -1.22389e-11 -1.08178e-11 -1.29642e-11 -9.55079e-12 -1.36664e-11 -8.22762e-12 -1.43395e-11 -6.84668e-12 -1.4973e-11 -5.41016e-12 -1.55611e-11 -3.92296e-12 -1.60901e-11 -2.39642e-12 -1.6555e-11 -8.25114e-13 -1.69481e-11 7.63749e-13 -1.72479e-11 2.37595e-12 -1.74641e-11 3.99791e-12 -1.75774e-11 5.61843e-12 -1.75834e-11 7.22733e-12 -1.74812e-11 8.81426e-12 -1.72687e-11 1.03655e-11 -1.69445e-11 1.18707e-11 -1.65089e-11 1.33226e-11 -1.59578e-11 1.47109e-11 -1.52937e-11 1.60215e-11 -1.45268e-11 1.72451e-11 -1.3663e-11 1.83757e-11 -1.27028e-11 1.9405e-11 -1.1657e-11 2.03238e-11 -1.05398e-11 2.11262e-11 -9.36291e-12 2.1808e-11 -8.13592e-12 2.2366e-11 -6.8719e-12 2.27985e-11 -5.59037e-12 2.31051e-11 -4.30915e-12 2.32882e-11 -3.04419e-12 2.33526e-11 -1.81031e-12 2.33044e-11 -6.24086e-13 2.31494e-11 4.96408e-13 2.28943e-11 1.53729e-12 2.25491e-11 2.49375e-12 2.21262e-11 3.35632e-12 2.1637e-11 4.1163e-12 2.10922e-11 4.77008e-12 2.05039e-11 5.31999e-12 1.98844e-11 5.7685e-12 1.92436e-11 6.12063e-12 1.8589e-11 6.38642e-12 1.79281e-11 6.57705e-12 1.72688e-11 6.70389e-12 1.66161e-11 6.77705e-12 1.59702e-11 6.81312e-12 1.53305e-11 6.83011e-12 1.46976e-11 6.83588e-12 1.40711e-11 6.83393e-12 1.34484e-11 6.83426e-12 1.28285e-11 6.84756e-12 1.22116e-11 6.87162e-12 1.15943e-11 6.90332e-12 1.09712e-11 6.95156e-12 1.03416e-11 7.01187e-12 9.70471e-12 7.07724e-12 9.05886e-12 7.15013e-12 8.40722e-12 7.2246e-12 7.74961e-12 7.2961e-12 7.08303e-12 7.36637e-12 6.40789e-12 7.42751e-12 5.72279e-12 7.47771e-12 5.03351e-12 7.51556e-12 4.34569e-12 7.53735e-12 3.6614e-12 7.5521e-12 2.97792e-12 7.57768e-12 2.2966e-12 7.59672e-12 1.6327e-12 7.53851e-12 9.77699e-13 7.22821e-12 3.8586e-13 6.41814e-12 4.2769e-12 1.2562e-11 2.42666e-11 8.69897e-12 3.94248e-11 4.53189e-12 4.29973e-11 5.42958e-13 4.18222e-11 -3.08747e-12 3.93961e-11 -6.38322e-12 3.64304e-11 -9.32065e-12 3.32014e-11 -1.18988e-11 2.98239e-11 -1.41256e-11 2.63952e-11 -1.60136e-11 2.29834e-11 -1.7579e-11 1.96473e-11 -1.88409e-11 1.6431e-11 -1.98202e-11 1.3369e-11 -2.05396e-11 1.04862e-11 -2.10216e-11 7.79673e-12 -2.12908e-11 5.31393e-12 -2.13701e-11 3.04197e-12 -2.1277e-11 9.7234e-13 -2.10378e-11 -8.97061e-13 -2.06662e-11 -2.58948e-12 -2.01786e-11 -4.11475e-12 -1.95925e-11 -5.48875e-12 -1.89175e-11 -6.7379e-12 -1.81632e-11 -7.8787e-12 -1.73357e-11 -8.92768e-12 -1.64363e-11 -9.91993e-12 -1.54754e-11 -1.08386e-11 -1.44505e-11 -1.17161e-11 -1.33664e-11 -1.25661e-11 -1.22186e-11 -1.33869e-11 -1.10059e-11 -1.41771e-11 -9.73175e-12 -1.49408e-11 -8.39534e-12 -1.56761e-11 -6.99791e-12 -1.63706e-11 -5.54876e-12 -1.70103e-11 -4.04617e-12 -1.75928e-11 -2.49703e-12 -1.81042e-11 -9.12884e-13 -1.85324e-11 7.06995e-13 -1.8868e-11 2.34383e-12 -1.9101e-11 3.991e-12 -1.92247e-11 5.63923e-12 -1.92317e-11 7.27538e-12 -1.91175e-11 8.89028e-12 -1.88837e-11 1.04734e-11 -1.85277e-11 1.20098e-11 -1.80452e-11 1.34886e-11 -1.74365e-11 1.49016e-11 -1.67066e-11 1.62376e-11 -1.58626e-11 1.7485e-11 -1.49101e-11 1.86365e-11 -1.3854e-11 1.96838e-11 -1.2704e-11 2.06182e-11 -1.14739e-11 2.14328e-11 -1.01773e-11 2.2123e-11 -8.82592e-12 2.26859e-11 -7.43464e-12 2.31188e-11 -6.02308e-12 2.34216e-11 -4.61178e-12 2.35969e-11 -3.21933e-12 2.36497e-11 -1.86304e-12 2.35856e-11 -5.5995e-13 2.34103e-11 6.71856e-13 2.31318e-11 1.81591e-12 2.27628e-11 2.86294e-12 2.23152e-11 3.80414e-12 2.18e-11 4.63171e-12 2.12291e-11 5.34126e-12 2.06157e-11 5.93358e-12 1.99724e-11 6.41193e-12 1.93091e-11 6.78403e-12 1.86345e-11 7.06114e-12 1.79578e-11 7.25392e-12 1.72873e-11 7.3746e-12 1.66262e-11 7.43819e-12 1.59744e-11 7.46494e-12 1.53323e-11 7.47214e-12 1.46992e-11 7.46887e-12 1.40719e-11 7.46101e-12 1.34492e-11 7.45686e-12 1.28325e-11 7.46426e-12 1.22201e-11 7.48405e-12 1.16055e-11 7.51798e-12 1.09852e-11 7.57188e-12 1.03585e-11 7.63871e-12 9.72234e-12 7.71345e-12 9.07835e-12 7.7943e-12 8.42855e-12 7.87468e-12 7.76977e-12 7.95518e-12 7.10225e-12 8.03415e-12 6.42429e-12 8.10568e-12 5.7361e-12 8.16613e-12 5.04352e-12 8.20844e-12 4.34736e-12 8.23385e-12 3.65504e-12 8.24467e-12 2.96385e-12 8.26899e-12 2.28871e-12 8.27196e-12 1.63142e-12 8.19606e-12 9.78603e-13 7.88137e-12 3.97575e-13 6.99943e-12 4.67451e-12 1.246e-11 2.66618e-11 8.39701e-12 4.34877e-11 4.04859e-12 4.73456e-11 -7.16501e-14 4.59422e-11 -3.81114e-12 4.31353e-11 -7.17445e-12 3.97934e-11 -1.01502e-11 3.61769e-11 -1.27449e-11 3.24182e-11 -1.49688e-11 2.86187e-11 -1.68383e-11 2.48526e-11 -1.83733e-11 2.11818e-11 -1.95958e-11 1.76531e-11 -2.05296e-11 1.43022e-11 -2.11997e-11 1.11559e-11 -2.16316e-11 8.22801e-12 -2.18494e-11 5.53109e-12 -2.18776e-11 3.06955e-12 -2.17395e-11 8.33542e-13 -2.14525e-11 -1.18472e-12 -2.10406e-11 -3.00208e-12 -2.05178e-11 -4.63826e-12 -1.9899e-11 -6.10822e-12 -1.91983e-11 -7.43929e-12 -1.84216e-11 -8.65606e-12 -1.75803e-11 -9.76959e-12 -1.66724e-11 -1.08284e-11 -1.57003e-11 -1.18113e-11 -1.46663e-11 -1.27506e-11 -1.35753e-11 -1.36577e-11 -1.24195e-11 -1.45431e-11 -1.11995e-11 -1.53976e-11 -9.91378e-12 -1.62269e-11 -8.56853e-12 -1.70218e-11 -7.16346e-12 -1.77761e-11 -5.69573e-12 -1.84785e-11 -4.17559e-12 -1.91133e-11 -2.60615e-12 -1.96741e-11 -9.97344e-13 -2.01416e-11 6.47763e-13 -2.05135e-11 2.31249e-12 -2.07662e-11 3.98885e-12 -2.09015e-11 5.66674e-12 -2.09099e-11 7.33477e-12 -2.07858e-11 8.9809e-12 -2.053e-11 1.05937e-11 -2.01407e-11 1.2161e-11 -1.96126e-11 1.36699e-11 -1.89455e-11 1.51102e-11 -1.81469e-11 1.64723e-11 -1.72247e-11 1.77459e-11 -1.61837e-11 1.89212e-11 -1.50293e-11 1.99892e-11 -1.3772e-11 2.09411e-11 -1.24259e-11 2.17698e-11 -1.1006e-11 2.247e-11 -9.52619e-12 2.30381e-11 -8.00268e-12 2.34714e-11 -6.45641e-12 2.37702e-11 -4.91049e-12 2.39365e-11 -3.38571e-12 2.39749e-11 -1.90156e-12 2.3892e-11 -4.77108e-13 2.36947e-11 8.69138e-13 2.33916e-11 2.11898e-12 2.29957e-11 3.25898e-12 2.25198e-11 4.28008e-12 2.1976e-11 5.17567e-12 2.13767e-11 5.94069e-12 2.07357e-11 6.57458e-12 2.00657e-11 7.0819e-12 1.93775e-11 7.47216e-12 1.86815e-11 7.75704e-12 1.79874e-11 7.94801e-12 1.73034e-11 8.05875e-12 1.66324e-11 8.10922e-12 1.59747e-11 8.12257e-12 1.53305e-11 8.1162e-12 1.46977e-11 8.10149e-12 1.40717e-11 8.08695e-12 1.34509e-11 8.07765e-12 1.28379e-11 8.07747e-12 1.22298e-11 8.09234e-12 1.16186e-11 8.12935e-12 1.10018e-11 8.1888e-12 1.03774e-11 8.26327e-12 9.74281e-12 8.34829e-12 9.10006e-12 8.43739e-12 8.4493e-12 8.52586e-12 7.78862e-12 8.61625e-12 7.12016e-12 8.70295e-12 6.44184e-12 8.78435e-12 5.75395e-12 8.85444e-12 5.0608e-12 8.90207e-12 4.36022e-12 8.93486e-12 3.65742e-12 8.94777e-12 2.96894e-12 8.95767e-12 2.29262e-12 8.94854e-12 1.62409e-12 8.86494e-12 9.72297e-13 8.53347e-12 4.02253e-13 7.56962e-12 5.07678e-12 1.22482e-11 2.92322e-11 7.98838e-12 4.77473e-11 3.4641e-12 5.18696e-11 -7.8393e-13 5.01899e-11 -4.63152e-12 4.69826e-11 -8.06034e-12 4.32218e-11 -1.10731e-11 3.91892e-11 -1.36816e-11 3.50263e-11 -1.59003e-11 3.0837e-11 -1.77487e-11 2.67005e-11 -1.92493e-11 2.2682e-11 -2.04279e-11 1.88312e-11 -2.13107e-11 1.51846e-11 -2.19247e-11 1.17693e-11 -2.22997e-11 8.60245e-12 -2.24587e-11 5.68943e-12 -2.24297e-11 3.03994e-12 -2.22374e-11 6.40598e-13 -2.19006e-11 -1.52227e-12 -2.14418e-11 -3.46158e-12 -2.08777e-11 -5.20302e-12 -2.02235e-11 -6.76321e-12 -1.94905e-11 -8.17299e-12 -1.86897e-11 -9.4576e-12 -1.78241e-11 -1.06359e-11 -1.69044e-11 -1.17488e-11 -1.59228e-11 -1.27937e-11 -1.48837e-11 -1.37904e-11 -1.37836e-11 -1.47585e-11 -1.26214e-11 -1.5706e-11 -1.13966e-11 -1.66232e-11 -1.01075e-11 -1.75167e-11 -8.75028e-12 -1.83798e-11 -7.32769e-12 -1.91994e-11 -5.85135e-12 -1.99555e-11 -4.30869e-12 -2.06567e-11 -2.71796e-12 -2.12655e-11 -1.07477e-12 -2.17855e-11 5.90535e-13 -2.21795e-11 2.28519e-12 -2.24615e-11 3.99438e-12 -2.26113e-11 5.70595e-12 -2.26221e-11 7.40851e-12 -2.24889e-11 9.08864e-12 -2.22106e-11 1.07334e-11 -2.17858e-11 1.23309e-11 -2.12105e-11 1.38698e-11 -2.04846e-11 1.534e-11 -1.96173e-11 1.67313e-11 -1.86163e-11 1.80326e-11 -1.74852e-11 1.92332e-11 -1.62301e-11 2.03235e-11 -1.48626e-11 2.12948e-11 -1.33975e-11 2.21388e-11 -1.18503e-11 2.28495e-11 -1.0237e-11 2.3423e-11 -8.5763e-12 2.38572e-11 -6.89075e-12 2.41512e-11 -5.20463e-12 2.43065e-11 -3.54121e-12 2.4328e-11 -1.92322e-12 2.42233e-11 -3.72587e-13 2.40013e-11 1.09098e-12 2.36713e-11 2.44886e-12 2.32456e-11 3.68466e-12 2.27383e-11 4.78742e-12 2.21632e-11 5.75076e-12 2.15338e-11 6.57003e-12 2.08637e-11 7.24455e-12 2.01655e-11 7.77988e-12 1.94517e-11 8.1857e-12 1.87351e-11 8.47349e-12 1.80248e-11 8.65821e-12 1.73251e-11 8.75845e-12 1.66385e-11 8.79577e-12 1.59687e-11 8.79223e-12 1.53173e-11 8.76749e-12 1.46834e-11 8.73528e-12 1.40642e-11 8.70622e-12 1.34556e-11 8.68644e-12 1.28537e-11 8.67974e-12 1.22506e-11 8.69566e-12 1.16422e-11 8.73799e-12 1.10264e-11 8.80482e-12 1.04004e-11 8.88941e-12 9.76632e-12 8.98274e-12 9.12243e-12 9.08169e-12 8.46492e-12 9.18381e-12 7.79729e-12 9.28427e-12 7.12124e-12 9.37938e-12 6.43938e-12 9.46664e-12 5.75289e-12 9.54146e-12 5.0603e-12 9.59522e-12 4.36771e-12 9.62789e-12 3.67307e-12 9.64272e-12 2.98744e-12 9.64359e-12 2.30189e-12 9.63445e-12 1.61847e-12 9.54875e-12 9.5824e-13 9.19393e-12 3.82095e-13 8.14588e-12 5.45895e-12 1.19157e-11 3.18918e-11 7.45114e-12 5.22115e-11 2.75324e-12 5.65671e-11 -1.63676e-12 5.45795e-11 -5.58257e-12 5.0928e-11 -9.07079e-12 4.67096e-11 -1.21123e-11 4.22303e-11 -1.47245e-11 3.76381e-11 -1.69284e-11 3.30404e-11 -1.87475e-11 2.85192e-11 -2.02071e-11 2.41412e-11 -2.13351e-11 1.99587e-11 -2.21625e-11 1.60115e-11 -2.27152e-11 1.23215e-11 -2.30265e-11 8.91313e-12 -2.31234e-11 5.78581e-12 -2.30316e-11 2.94755e-12 -2.27776e-11 3.85982e-13 -2.23853e-11 -1.91527e-12 -2.18751e-11 -3.97244e-12 -2.12659e-11 -5.81289e-12 -2.05724e-11 -7.45745e-12 -1.98076e-11 -8.93856e-12 -1.8981e-11 -1.02849e-11 -1.80942e-11 -1.15236e-11 -1.71579e-11 -1.26859e-11 -1.61662e-11 -1.37862e-11 -1.51198e-11 -1.48376e-11 -1.40151e-11 -1.58641e-11 -1.28472e-11 -1.68748e-11 -1.16155e-11 -1.78558e-11 -1.03183e-11 -1.88149e-11 -8.95211e-12 -1.97469e-11 -7.52024e-12 -2.06322e-11 -6.01623e-12 -2.14605e-11 -4.46081e-12 -2.22131e-11 -2.83737e-12 -2.28899e-11 -1.17965e-12 -2.34441e-11 5.22962e-13 -2.38829e-11 2.25115e-12 -2.41904e-11 3.99548e-12 -2.43563e-11 5.74312e-12 -2.43704e-11 7.48136e-12 -2.42277e-11 9.1966e-12 -2.39264e-11 1.08763e-11 -2.3466e-11 1.25088e-11 -2.28433e-11 1.40822e-11 -2.20585e-11 1.55859e-11 -2.11213e-11 1.70096e-11 -2.00403e-11 1.83418e-11 -1.88179e-11 1.95707e-11 -1.74595e-11 2.06857e-11 -1.59781e-11 2.1678e-11 -1.43901e-11 2.25392e-11 -1.27118e-11 2.32623e-11 -1.09604e-11 2.38427e-11 -9.1568e-12 2.42778e-11 -7.32601e-12 2.4567e-11 -5.49392e-12 2.47116e-11 -3.686e-12 2.47163e-11 -1.92811e-12 2.45889e-11 -2.45356e-13 2.43395e-11 1.34026e-12 2.39791e-11 2.80921e-12 2.35202e-11 4.14357e-12 2.29774e-11 5.33025e-12 2.23663e-11 6.36183e-12 2.1702e-11 7.23426e-12 2.09984e-11 7.94797e-12 2.02689e-11 8.5091e-12 1.95275e-11 8.92679e-12 1.87873e-11 9.21354e-12 1.80562e-11 9.38912e-12 1.73383e-11 9.47636e-12 1.6638e-11 9.496e-12 1.59596e-11 9.47043e-12 1.53042e-11 9.42278e-12 1.46706e-11 9.36891e-12 1.40569e-11 9.32009e-12 1.34584e-11 9.28516e-12 1.28641e-11 9.27442e-12 1.22658e-11 9.29419e-12 1.16616e-11 9.34236e-12 1.10489e-11 9.41758e-12 1.0426e-11 9.51253e-12 9.79339e-12 9.61553e-12 9.14777e-12 9.7276e-12 8.48631e-12 9.84554e-12 7.81314e-12 9.95769e-12 7.13009e-12 1.00627e-11 6.44179e-12 1.01553e-11 5.75305e-12 1.02307e-11 5.06544e-12 1.02833e-11 4.37623e-12 1.03174e-11 3.68597e-12 1.03333e-11 2.99511e-12 1.03348e-11 2.30252e-12 1.03274e-11 1.61038e-12 1.02412e-11 9.46068e-13 9.8584e-12 3.64148e-13 8.72795e-12 5.82326e-12 1.14918e-11 3.46742e-11 6.81875e-12 5.6884e-11 1.94847e-12 6.1437e-11 -2.5933e-12 5.91209e-11 -6.64059e-12 5.49748e-11 -1.01921e-11 5.02607e-11 -1.32628e-11 4.53007e-11 -1.58756e-11 4.02504e-11 -1.80575e-11 3.52219e-11 -1.98376e-11 3.02989e-11 -2.12461e-11 2.55492e-11 -2.23147e-11 2.10268e-11 -2.3076e-11 1.67722e-11 -2.35611e-11 1.28061e-11 -2.38016e-11 9.15307e-12 -2.38283e-11 5.81201e-12 -2.36684e-11 2.78706e-12 -2.33509e-11 6.79183e-14 -2.2898e-11 -2.36871e-12 -2.23334e-11 -4.5377e-12 -2.16757e-11 -6.47115e-12 -2.09421e-11 -8.1918e-12 -2.01421e-11 -9.73917e-12 -1.92884e-11 -1.11394e-11 -1.8383e-11 -1.24298e-11 -1.74309e-11 -1.36387e-11 -1.6429e-11 -1.4789e-11 -1.5376e-11 -1.58914e-11 -1.42672e-11 -1.69738e-11 -1.3096e-11 -1.8047e-11 -1.18579e-11 -1.90948e-11 -1.0553e-11 -2.01207e-11 -9.17831e-12 -2.11226e-11 -7.72797e-12 -2.20835e-11 -6.21624e-12 -2.29732e-11 -4.62764e-12 -2.38026e-11 -2.99076e-12 -2.45276e-11 -1.2965e-12 -2.51391e-11 4.38523e-13 -2.56187e-11 2.20353e-12 -2.59561e-11 3.9859e-12 -2.61393e-11 5.77293e-12 -2.61579e-11 7.5515e-12 -2.60066e-11 9.30673e-12 -2.56819e-11 1.10252e-11 -2.51847e-11 1.26961e-11 -2.45145e-11 1.43087e-11 -2.36713e-11 1.58503e-11 -2.26633e-11 1.73091e-11 -2.14994e-11 1.86737e-11 -2.01829e-11 1.99327e-11 -1.87189e-11 2.10749e-11 -1.71207e-11 2.20906e-11 -1.54061e-11 2.29708e-11 -1.35922e-11 2.37081e-11 -1.16977e-11 2.4297e-11 -9.74565e-12 2.47343e-11 -7.76324e-12 2.50189e-11 -5.77854e-12 2.51527e-11 -3.81976e-12 2.51405e-11 -1.91587e-12 2.499e-11 -9.48866e-14 2.47119e-11 1.61843e-12 2.43182e-11 3.20293e-12 2.38226e-11 4.63939e-12 2.324e-11 5.91294e-12 2.25874e-11 7.01458e-12 2.18814e-11 7.94028e-12 2.11377e-11 8.69149e-12 2.0372e-11 9.27466e-12 1.95993e-11 9.69925e-12 1.88313e-11 9.98143e-12 1.80762e-11 1.01442e-11 1.73409e-11 1.02117e-11 1.66311e-11 1.02058e-11 1.59483e-11 1.01531e-11 1.52918e-11 1.00792e-11 1.46606e-11 1.00001e-11 1.40518e-11 9.92912e-12 1.34571e-11 9.88013e-12 1.28667e-11 9.86503e-12 1.22753e-11 9.88564e-12 1.16782e-11 9.93936e-12 1.10712e-11 1.00245e-11 1.04539e-11 1.01297e-11 9.82371e-12 1.02457e-11 9.17687e-12 1.03744e-11 8.51485e-12 1.05075e-11 7.83882e-12 1.06337e-11 7.15269e-12 1.07489e-11 6.46076e-12 1.08474e-11 5.76481e-12 1.09269e-11 5.07526e-12 1.0973e-11 4.38875e-12 1.1004e-11 3.69988e-12 1.10223e-11 2.99975e-12 1.10352e-11 2.30051e-12 1.1027e-11 1.60639e-12 1.09355e-11 9.39557e-13 1.05254e-11 3.6595e-13 9.30181e-12 6.18941e-12 1.09505e-11 3.7694e-11 6.08008e-12 6.1754e-11 1.03253e-12 6.64841e-11 -3.65744e-12 6.38104e-11 -7.79953e-12 5.91165e-11 -1.14083e-11 5.3869e-11 -1.45047e-11 4.83966e-11 -1.7117e-11 4.28623e-11 -1.92761e-11 3.73805e-11 -2.1015e-11 3.20373e-11 -2.23681e-11 2.69017e-11 -2.33702e-11 2.20284e-11 -2.40572e-11 1.74587e-11 -2.44663e-11 1.32147e-11 -2.46278e-11 9.31405e-12 -2.45761e-11 5.7597e-12 -2.43419e-11 2.55234e-12 -2.39528e-11 -3.21636e-13 -2.34349e-11 -2.88716e-12 -2.28122e-11 -5.1609e-12 -2.21056e-11 -7.17828e-12 -2.13265e-11 -8.97142e-12 -2.0495e-11 -1.05713e-11 -1.96131e-11 -1.20218e-11 -1.86891e-11 -1.33544e-11 -1.77206e-11 -1.46078e-11 -1.67079e-11 -1.58024e-11 -1.5649e-11 -1.69509e-11 -1.45354e-11 -1.80881e-11 -1.33594e-11 -1.92237e-11 -1.21179e-11 -2.0337e-11 -1.08065e-11 -2.14329e-11 -9.41872e-12 -2.2511e-11 -7.96181e-12 -2.35411e-11 -6.42142e-12 -2.45142e-11 -4.82222e-12 -2.54024e-11 -3.1488e-12 -2.62016e-11 -1.42414e-12 -2.68643e-11 3.47003e-13 -2.73902e-11 2.15132e-12 -2.77607e-11 3.97589e-12 -2.79641e-11 5.80616e-12 -2.79883e-11 7.62724e-12 -2.78279e-11 9.42561e-12 -2.74804e-11 1.11871e-11 -2.69464e-11 1.28997e-11 -2.62271e-11 1.45528e-11 -2.53245e-11 1.61343e-11 -2.42449e-11 1.7631e-11 -2.29962e-11 1.90304e-11 -2.15825e-11 2.03215e-11 -2.00101e-11 2.14934e-11 -1.82926e-11 2.25351e-11 -1.64478e-11 2.3437e-11 -1.44939e-11 2.41901e-11 -1.24507e-11 2.47882e-11 -1.03434e-11 2.5228e-11 -8.20271e-12 2.55083e-11 -6.05857e-12 2.56303e-11 -3.94149e-12 2.5599e-11 -1.88429e-12 2.54227e-11 8.15794e-14 2.51127e-11 1.92875e-12 2.46821e-11 3.63384e-12 2.41457e-11 5.17611e-12 2.35195e-11 6.53942e-12 2.28215e-11 7.71285e-12 2.20704e-11 8.69164e-12 2.12836e-11 9.47836e-12 2.04784e-11 1.00799e-11 1.96711e-11 1.05066e-11 1.88731e-11 1.07794e-11 1.8093e-11 1.09243e-11 1.73397e-11 1.09651e-11 1.66189e-11 1.09266e-11 1.59302e-11 1.08419e-11 1.52725e-11 1.0737e-11 1.46453e-11 1.06274e-11 1.40431e-11 1.05315e-11 1.34545e-11 1.04689e-11 1.28716e-11 1.04478e-11 1.22894e-11 1.04678e-11 1.16995e-11 1.05289e-11 1.10986e-11 1.06252e-11 1.04862e-11 1.07418e-11 9.8568e-12 1.08748e-11 9.20943e-12 1.10215e-11 8.54586e-12 1.11707e-11 7.86643e-12 1.13128e-11 7.1777e-12 1.14375e-11 6.48018e-12 1.15449e-11 5.78168e-12 1.16252e-11 5.09148e-12 1.1663e-11 4.40405e-12 1.16913e-11 3.70451e-12 1.17219e-11 2.99799e-12 1.17419e-11 2.29472e-12 1.17304e-11 1.59828e-12 1.1632e-11 9.39141e-13 1.11847e-11 3.64336e-13 9.87692e-12 6.55391e-12 1.02452e-11 4.07564e-11 5.17267e-12 6.68262e-11 -6.7461e-14 7.17239e-11 -4.87924e-12 6.86218e-11 -9.10449e-12 6.33413e-11 -1.27563e-11 5.75204e-11 -1.5865e-11 5.15047e-11 -1.84648e-11 4.54616e-11 -2.05914e-11 3.95066e-11 -2.22825e-11 3.37279e-11 -2.3576e-11 2.81946e-11 -2.45079e-11 2.29597e-11 -2.51169e-11 1.80671e-11 -2.54428e-11 1.35399e-11 -2.5518e-11 9.38873e-12 -2.53802e-11 5.62136e-12 -2.50628e-11 2.23448e-12 -2.4594e-11 -7.90937e-13 -2.40076e-11 -3.47398e-12 -2.33202e-11 -5.84865e-12 -2.25565e-11 -7.94241e-12 -2.17329e-11 -9.79547e-12 -2.08639e-11 -1.14407e-11 -1.99531e-11 -1.2933e-11 -1.90046e-11 -1.43033e-11 -1.80191e-11 -1.55938e-11 -1.6999e-11 -1.68229e-11 -1.59321e-11 -1.80184e-11 -1.48143e-11 -1.92064e-11 -1.36347e-11 -2.04038e-11 -1.23917e-11 -2.15804e-11 -1.10712e-11 -2.27538e-11 -9.67648e-12 -2.39062e-11 -8.19888e-12 -2.50192e-11 -6.64328e-12 -2.60702e-11 -5.00521e-12 -2.70408e-11 -3.30906e-12 -2.78981e-11 -1.54981e-12 -2.86238e-11 2.62099e-13 -2.92022e-11 2.10853e-12 -2.96072e-11 3.97559e-12 -2.98312e-11 5.84827e-12 -2.9861e-11 7.71208e-12 -2.96917e-11 9.55419e-12 -2.93225e-11 1.13611e-11 -2.87532e-11 1.31192e-11 -2.79851e-11 1.48171e-11 -2.70225e-11 1.64428e-11 -2.58705e-11 1.79823e-11 -2.45358e-11 1.94233e-11 -2.30234e-11 2.07537e-11 -2.13405e-11 2.19604e-11 -1.94992e-11 2.30305e-11 -1.75176e-11 2.39535e-11 -1.54167e-11 2.47213e-11 -1.3218e-11 2.53269e-11 -1.09486e-11 2.57659e-11 -8.64122e-12 2.60371e-11 -6.3293e-12 2.61429e-11 -4.04698e-12 2.60887e-11 -1.82967e-12 2.58822e-11 2.88449e-13 2.55352e-11 2.27617e-12 2.50627e-11 4.10675e-12 2.44813e-11 5.75797e-12 2.38089e-11 7.21228e-12 2.30649e-11 8.45721e-12 2.22686e-11 9.48823e-12 2.14383e-11 1.0309e-11 2.05918e-11 1.09266e-11 1.97454e-11 1.13532e-11 1.89123e-11 1.16127e-11 1.81043e-11 1.17325e-11 1.73313e-11 1.17383e-11 1.65979e-11 1.16602e-11 1.59029e-11 1.15371e-11 1.52455e-11 1.13946e-11 1.46236e-11 1.12494e-11 1.40286e-11 1.11266e-11 1.34492e-11 1.10484e-11 1.28779e-11 1.1019e-11 1.23068e-11 1.10386e-11 1.17259e-11 1.11095e-11 1.1132e-11 1.12186e-11 1.05233e-11 1.13501e-11 9.89378e-12 1.15038e-11 9.24523e-12 1.16695e-11 8.57821e-12 1.18373e-11 7.89592e-12 1.19947e-11 7.20528e-12 1.21278e-11 6.50504e-12 1.22448e-11 5.80766e-12 1.23223e-11 5.11075e-12 1.23595e-11 4.41016e-12 1.23917e-11 3.70161e-12 1.24304e-11 2.99229e-12 1.24512e-11 2.28709e-12 1.24356e-11 1.59412e-12 1.2325e-11 9.3355e-13 1.18454e-11 3.53568e-13 1.04571e-11 6.90751e-12 9.36632e-12 4.3856e-11 4.08292e-12 7.21093e-11 -1.34201e-12 7.71484e-11 -6.27162e-12 7.35509e-11 -1.05775e-11 6.76466e-11 -1.42696e-11 6.1212e-11 -1.73833e-11 5.46179e-11 -1.99601e-11 4.80379e-11 -2.2042e-11 4.15878e-11 -2.36713e-11 3.53567e-11 -2.48898e-11 2.94124e-11 -2.57391e-11 2.38083e-11 -2.62595e-11 1.85868e-11 -2.64898e-11 1.37696e-11 -2.64713e-11 9.36969e-12 -2.62379e-11 5.38735e-12 -2.58298e-11 1.82595e-12 -2.52769e-11 -1.34421e-12 -2.46084e-11 -4.14295e-12 -2.38514e-11 -6.60595e-12 -2.30269e-11 -8.76724e-12 -2.21526e-11 -1.067e-11 -2.12408e-11 -1.23529e-11 -2.02982e-11 -1.38758e-11 -1.93277e-11 -1.52741e-11 -1.83309e-11 -1.65909e-11 -1.73013e-11 -1.78529e-11 -1.62305e-11 -1.90894e-11 -1.51105e-11 -2.03267e-11 -1.39322e-11 -2.15823e-11 -1.26852e-11 -2.28277e-11 -1.13588e-11 -2.40806e-11 -9.95392e-12 -2.53113e-11 -8.46084e-12 -2.65125e-11 -6.88068e-12 -2.76507e-11 -5.22397e-12 -2.86978e-11 -3.4863e-12 -2.96359e-11 -1.68375e-12 -3.04265e-11 1.62803e-13 -3.10489e-11 2.05335e-12 -3.14978e-11 3.96679e-12 -3.17447e-11 5.88721e-12 -3.17815e-11 7.80007e-12 -3.16046e-11 9.69136e-12 -3.12138e-11 1.15473e-11 -3.06092e-11 1.33542e-11 -2.97921e-11 1.51003e-11 -2.87686e-11 1.67735e-11 -2.75437e-11 1.83594e-11 -2.61217e-11 1.98442e-11 -2.45081e-11 2.12151e-11 -2.27113e-11 2.2458e-11 -2.07419e-11 2.35588e-11 -1.86181e-11 2.45058e-11 -1.63634e-11 2.52903e-11 -1.40021e-11 2.59052e-11 -1.15631e-11 2.63448e-11 -9.08049e-12 2.66076e-11 -6.59182e-12 2.66966e-11 -4.13572e-12 2.66172e-11 -1.74989e-12 2.63777e-11 5.28262e-13 2.59909e-11 2.66326e-12 2.54731e-11 4.62501e-12 2.48421e-11 6.38928e-12 2.41181e-11 7.9366e-12 2.33223e-11 9.25329e-12 2.2475e-11 1.03359e-11 2.15954e-11 1.11889e-11 2.07029e-11 1.18194e-11 1.9815e-11 1.22415e-11 1.89461e-11 1.24819e-11 1.8109e-11 1.25698e-11 1.73145e-11 1.2533e-11 1.65678e-11 1.24072e-11 1.58675e-11 1.22376e-11 1.52125e-11 1.20498e-11 1.45979e-11 1.18642e-11 1.4013e-11 1.17117e-11 1.34467e-11 1.16146e-11 1.28898e-11 1.15757e-11 1.23316e-11 1.15965e-11 1.17613e-11 1.16796e-11 1.11746e-11 1.1805e-11 1.05677e-11 1.19567e-11 9.93663e-12 1.21345e-11 9.28373e-12 1.2322e-11 8.61017e-12 1.25105e-11 7.92363e-12 1.2681e-11 7.22911e-12 1.2822e-11 6.52883e-12 1.29447e-11 5.82656e-12 1.30241e-11 5.11814e-12 1.30676e-11 4.40806e-12 1.31016e-11 3.69577e-12 1.31425e-11 2.99021e-12 1.31566e-11 2.28257e-12 1.3143e-11 1.59649e-12 1.3011e-11 9.23875e-13 1.25181e-11 3.5268e-13 1.10284e-11 7.2601e-12 8.32915e-12 4.70653e-11 2.84183e-12 7.75962e-11 -2.75113e-12 8.27409e-11 -7.80438e-12 7.86036e-11 -1.21866e-11 7.20283e-11 -1.59158e-11 6.49407e-11 -1.9032e-11 5.77336e-11 -2.15805e-11 5.05857e-11 -2.36113e-11 4.3618e-11 -2.51696e-11 3.69143e-11 -2.63025e-11 3.05446e-11 -2.70571e-11 2.45623e-11 -2.74754e-11 1.90044e-11 -2.76006e-11 1.38942e-11 -2.74758e-11 9.2443e-12 -2.71401e-11 5.05117e-12 -2.66319e-11 1.31727e-12 -2.59857e-11 -1.99083e-12 -2.52317e-11 -4.89736e-12 -2.43991e-11 -7.43882e-12 -2.35092e-11 -9.65747e-12 -2.25812e-11 -1.15984e-11 -2.16218e-11 -1.33125e-11 -2.06482e-11 -1.48497e-11 -1.96579e-11 -1.62647e-11 -1.86491e-11 -1.76e-11 -1.76131e-11 -1.88891e-11 -1.65411e-11 -2.01617e-11 -1.54206e-11 -2.14475e-11 -1.42443e-11 -2.27589e-11 -1.29969e-11 -2.40754e-11 -1.16692e-11 -2.54086e-11 -1.02495e-11 -2.67314e-11 -8.74657e-12 -2.80158e-11 -7.14736e-12 -2.92503e-11 -5.45596e-12 -3.03896e-11 -3.69322e-12 -3.1399e-11 -1.8568e-12 -3.22632e-11 4.22588e-14 -3.29483e-11 1.98349e-12 -3.34394e-11 3.9499e-12 -3.37114e-11 5.92469e-12 -3.37566e-11 7.89231e-12 -3.35725e-11 9.8382e-12 -3.316e-11 1.17472e-11 -3.25185e-11 1.36054e-11 -3.16505e-11 1.54009e-11 -3.05643e-11 1.7123e-11 -2.9266e-11 1.87576e-11 -2.77564e-11 2.02883e-11 -2.60388e-11 2.17009e-11 -2.4124e-11 2.29819e-11 -2.20228e-11 2.41165e-11 -1.97527e-11 2.50915e-11 -1.73384e-11 2.58959e-11 -1.48065e-11 2.65214e-11 -1.21887e-11 2.69634e-11 -9.52248e-12 2.72198e-11 -6.8482e-12 2.72918e-11 -4.2078e-12 2.71855e-11 -1.64351e-12 2.69109e-11 8.02917e-13 2.64821e-11 3.09223e-12 2.59158e-11 5.1913e-12 2.52316e-11 7.0736e-12 2.44509e-11 8.71736e-12 2.35961e-11 1.01082e-11 2.26892e-11 1.1243e-11 2.17536e-11 1.21248e-11 2.08121e-11 1.27612e-11 1.98815e-11 1.31723e-11 1.8976e-11 1.33875e-11 1.81089e-11 1.34372e-11 1.72902e-11 1.33519e-11 1.65269e-11 1.31707e-11 1.58211e-11 1.29437e-11 1.51701e-11 1.27011e-11 1.45666e-11 1.24679e-11 1.39985e-11 1.22797e-11 1.34509e-11 1.21622e-11 1.29117e-11 1.21148e-11 1.23687e-11 1.21395e-11 1.18087e-11 1.22395e-11 1.12287e-11 1.2385e-11 1.06223e-11 1.2563e-11 9.98737e-12 1.27694e-11 9.32604e-12 1.29832e-11 8.64073e-12 1.31957e-11 7.9436e-12 1.33781e-11 7.2402e-12 1.35253e-11 6.54247e-12 1.36422e-11 5.84081e-12 1.37255e-11 5.12661e-12 1.37816e-11 4.40879e-12 1.38193e-11 3.69589e-12 1.38554e-11 2.99163e-12 1.38607e-11 2.28516e-12 1.38494e-11 1.5949e-12 1.37013e-11 9.12906e-13 1.32001e-11 3.36938e-13 1.16043e-11 7.59689e-12 7.13431e-12 5.03961e-11 1.443e-12 8.3287e-11 -4.32446e-12 8.85078e-11 -9.49878e-12 8.37775e-11 -1.3946e-11 7.6475e-11 -1.76987e-11 6.8693e-11 -2.08051e-11 6.08393e-11 -2.33169e-11 5.30969e-11 -2.52863e-11 4.55867e-11 -2.67655e-11 3.83928e-11 -2.78046e-11 3.1583e-11 -2.84549e-11 2.52119e-11 -2.87612e-11 1.93101e-11 -2.87719e-11 1.39043e-11 -2.8531e-11 9.00288e-12 -2.80823e-11 4.60193e-12 -2.74642e-11 6.98798e-13 -2.6714e-11 -2.74152e-12 -2.58674e-11 -5.7443e-12 -2.49514e-11 -8.35522e-12 -2.39906e-11 -1.06187e-11 -2.30044e-11 -1.25849e-11 -2.20038e-11 -1.43135e-11 -2.09964e-11 -1.58575e-11 -1.99857e-11 -1.72759e-11 -1.89667e-11 -1.86194e-11 -1.7927e-11 -1.99293e-11 -1.6857e-11 -2.12322e-11 -1.5743e-11 -2.2562e-11 -1.45713e-11 -2.39309e-11 -1.33234e-11 -2.53237e-11 -1.19976e-11 -2.6735e-11 -1.05735e-11 -2.8156e-11 -9.046e-12 -2.9544e-11 -7.42907e-12 -3.08679e-11 -5.71265e-12 -3.21067e-11 -3.90311e-12 -3.32093e-11 -2.01734e-12 -3.41497e-11 -7.60676e-14 -3.48903e-11 1.91841e-12 -3.54347e-11 3.94044e-12 -3.57342e-11 5.97235e-12 -3.57893e-11 7.99779e-12 -3.55988e-11 1.00016e-11 -3.51646e-11 1.19686e-11 -3.44863e-11 1.38849e-11 -3.35674e-11 1.57371e-11 -3.24172e-11 1.75125e-11 -3.1042e-11 1.91978e-11 -2.94421e-11 2.07775e-11 -2.76189e-11 2.2236e-11 -2.55829e-11 2.35578e-11 -2.33449e-11 2.47271e-11 -2.09225e-11 2.57303e-11 -1.8342e-11 2.65548e-11 -1.56314e-11 2.71911e-11 -1.28255e-11 2.76337e-11 -9.96557e-12 2.788e-11 -7.09501e-12 2.79315e-11 -4.25959e-12 2.77946e-11 -1.50693e-12 2.74806e-11 1.11668e-12 2.70042e-11 3.56838e-12 2.63833e-11 5.81195e-12 2.56387e-11 7.81785e-12 2.47942e-11 9.56169e-12 2.38742e-11 1.10281e-11 2.2903e-11 1.22142e-11 2.19057e-11 1.31222e-11 2.09073e-11 1.37596e-11 1.99286e-11 1.41511e-11 1.89846e-11 1.43314e-11 1.8088e-11 1.43339e-11 1.72478e-11 1.41921e-11 1.64712e-11 1.39476e-11 1.57615e-11 1.36537e-11 1.51132e-11 1.33496e-11 1.45179e-11 1.30632e-11 1.39627e-11 1.28349e-11 1.34301e-11 1.26948e-11 1.29079e-11 1.2637e-11 1.23817e-11 1.26658e-11 1.18372e-11 1.27843e-11 1.12694e-11 1.2953e-11 1.06717e-11 1.31609e-11 1.0039e-11 1.34023e-11 9.37639e-12 1.3646e-11 8.68887e-12 1.38835e-11 7.985e-12 1.40821e-11 7.27458e-12 1.42358e-11 6.56074e-12 1.4356e-11 5.8512e-12 1.4435e-11 5.1385e-12 1.44944e-11 4.41568e-12 1.45422e-11 3.70253e-12 1.45685e-11 2.99133e-12 1.45719e-11 2.29136e-12 1.45494e-11 1.5817e-12 1.44111e-11 9.05339e-13 1.38765e-11 3.25737e-13 1.21837e-11 7.92253e-12 5.72188e-12 5.38629e-11 -1.65375e-13 8.91737e-11 -6.10778e-12 9.44498e-11 -1.13935e-11 8.90628e-11 -1.58969e-11 8.09781e-11 -1.96595e-11 7.2455e-11 -2.27381e-11 6.39174e-11 -2.51937e-11 5.55519e-11 -2.70836e-11 4.74761e-11 -2.84673e-11 3.97759e-11 -2.93994e-11 3.25145e-11 -2.99314e-11 2.57434e-11 -3.01158e-11 1.9494e-11 -3.00014e-11 1.37894e-11 -2.96347e-11 8.63567e-12 -2.90637e-11 4.03051e-12 -2.83294e-11 -3.598e-14 -2.74701e-11 -3.60133e-12 -2.65208e-11 -6.69401e-12 -2.55168e-11 -9.35975e-12 -2.44809e-11 -1.16551e-11 -2.34312e-11 -1.36352e-11 -2.23843e-11 -1.5361e-11 -2.13438e-11 -1.68986e-11 -2.0312e-11 -1.83083e-11 -1.92816e-11 -1.96505e-11 -1.82445e-11 -2.09671e-11 -1.71798e-11 -2.22976e-11 -1.6075e-11 -2.36674e-11 -1.49139e-11 -2.50927e-11 -1.36757e-11 -2.65627e-11 -1.23471e-11 -2.80644e-11 -1.09175e-11 -2.95864e-11 -9.379e-12 -3.10834e-11 -7.7267e-12 -3.25211e-11 -5.97667e-12 -3.38578e-11 -4.13117e-12 -3.50559e-11 -2.19993e-12 -3.6082e-11 -1.96081e-13 -3.68953e-11 1.85261e-12 -3.74845e-11 3.93268e-12 -3.78155e-11 6.02589e-12 -3.78837e-11 8.11412e-12 -3.76881e-11 1.01801e-11 -3.72317e-11 1.22089e-11 -3.65161e-11 1.41869e-11 -3.55464e-11 1.60996e-11 -3.43308e-11 1.79324e-11 -3.28757e-11 1.96715e-11 -3.11819e-11 2.13029e-11 -2.9251e-11 2.28101e-11 -2.70907e-11 2.41762e-11 -2.47116e-11 2.53842e-11 -2.21312e-11 2.6418e-11 -1.93766e-11 2.72647e-11 -1.6479e-11 2.79137e-11 -1.34753e-11 2.83574e-11 -1.04101e-11 2.85924e-11 -7.33072e-12 2.86204e-11 -4.28815e-12 2.84489e-11 -1.33592e-12 2.80907e-11 1.47442e-12 2.75613e-11 4.09726e-12 2.68789e-11 6.49382e-12 2.60664e-11 8.62984e-12 2.51506e-11 1.04771e-11 2.41585e-11 1.20199e-11 2.31167e-11 1.32559e-11 2.20514e-11 1.41874e-11 2.09887e-11 1.48223e-11 1.99527e-11 1.5187e-11 1.89637e-11 1.53203e-11 1.80367e-11 1.52608e-11 1.71799e-11 1.50489e-11 1.63959e-11 1.47317e-11 1.56853e-11 1.43645e-11 1.50426e-11 1.39924e-11 1.44554e-11 1.36504e-11 1.39108e-11 1.33794e-11 1.33956e-11 1.321e-11 1.2893e-11 1.31397e-11 1.23855e-11 1.31736e-11 1.18617e-11 1.33084e-11 1.13103e-11 1.35048e-11 1.07216e-11 1.37499e-11 1.00965e-11 1.40278e-11 9.4351e-12 1.43078e-11 8.74605e-12 1.45729e-11 8.03682e-12 1.47916e-11 7.3137e-12 1.49591e-11 6.58262e-12 1.50872e-11 5.85066e-12 1.51672e-11 5.12702e-12 1.52183e-11 4.41168e-12 1.52578e-11 3.70045e-12 1.52799e-11 2.98783e-12 1.52846e-11 2.28147e-12 1.52559e-11 1.57442e-12 1.51182e-11 8.95214e-13 1.45556e-11 3.33096e-13 1.27457e-11 8.25565e-12 4.06569e-12 5.75543e-11 -2.02527e-12 9.52643e-11 -8.12502e-12 1.00549e-10 -1.35046e-11 9.4442e-11 -1.80445e-11 8.55176e-11 -2.18006e-11 7.62107e-11 -2.48349e-11 6.69512e-11 -2.72184e-11 5.7935e-11 -2.90175e-11 4.92747e-11 -3.02894e-11 4.10474e-11 -3.10964e-11 3.33212e-11 -3.14968e-11 2.61435e-11 -3.15432e-11 1.954e-11 -3.12892e-11 1.35351e-11 -3.0785e-11 8.13107e-12 -3.00805e-11 3.32562e-12 -2.92199e-11 -8.97042e-13 -2.82448e-11 -4.57694e-12 -2.71927e-11 -7.74673e-12 -2.60954e-11 -1.04576e-11 -2.4983e-11 -1.27681e-11 -2.38714e-11 -1.47475e-11 -2.27754e-11 -1.64576e-11 -2.17022e-11 -1.79725e-11 -2.06499e-11 -1.93614e-11 -1.96108e-11 -2.06903e-11 -1.85731e-11 -2.20055e-11 -1.75176e-11 -2.33539e-11 -1.64252e-11 -2.47606e-11 -1.52772e-11 -2.62415e-11 -1.4049e-11 -2.77917e-11 -1.27207e-11 -2.93935e-11 -1.12889e-11 -3.10192e-11 -9.73621e-12 -3.26371e-11 -8.063e-12 -3.41954e-11 -6.27357e-12 -3.56483e-11 -4.37413e-12 -3.69564e-11 -2.39088e-12 -3.80664e-11 -3.35798e-13 -3.89515e-11 1.77468e-12 -3.95962e-11 3.91821e-12 -3.99602e-11 6.07668e-12 -4.00434e-11 8.23038e-12 -3.9843e-11 1.03618e-11 -3.93642e-11 1.24557e-11 -3.86112e-11 1.4498e-11 -3.75898e-11 1.6474e-11 -3.63078e-11 1.83679e-11 -3.47704e-11 2.01644e-11 -3.29792e-11 2.18496e-11 -3.09369e-11 2.34076e-11 -2.86495e-11 2.48209e-11 -2.61258e-11 2.60709e-11 -2.33821e-11 2.71402e-11 -2.04468e-11 2.80132e-11 -1.7353e-11 2.86778e-11 -1.41408e-11 2.91247e-11 -1.08579e-11 2.93503e-11 -7.557e-12 2.93563e-11 -4.29481e-12 2.91506e-11 -1.13064e-12 2.87461e-11 1.87842e-12 2.81603e-11 4.68262e-12 2.74137e-11 7.2399e-12 2.65308e-11 9.51224e-12 2.55397e-11 1.14677e-11 2.44706e-11 1.30886e-11 2.33534e-11 1.43729e-11 2.22159e-11 1.53248e-11 2.10852e-11 1.59529e-11 1.99877e-11 1.62844e-11 1.89468e-11 1.6361e-11 1.79801e-11 1.62274e-11 1.70986e-11 1.59304e-11 1.63048e-11 1.55256e-11 1.55932e-11 1.50762e-11 1.49567e-11 1.4629e-11 1.43837e-11 1.42233e-11 1.38587e-11 1.39043e-11 1.33682e-11 1.37005e-11 1.28906e-11 1.36174e-11 1.24058e-11 1.36588e-11 1.19027e-11 1.38119e-11 1.13657e-11 1.40421e-11 1.07855e-11 1.43304e-11 1.01636e-11 1.46501e-11 9.49922e-12 1.49725e-11 8.80318e-12 1.52692e-11 8.08017e-12 1.55148e-11 7.33971e-12 1.56997e-11 6.59682e-12 1.58303e-11 5.85918e-12 1.59051e-11 5.12921e-12 1.59486e-11 4.4091e-12 1.59781e-11 3.69489e-12 1.59942e-11 2.98381e-12 1.59959e-11 2.27523e-12 1.59647e-11 1.56404e-12 1.58295e-11 8.84866e-13 1.52347e-11 3.30757e-13 1.32998e-11 8.58655e-12 2.12141e-12 6.14893e-11 -4.16132e-12 1.01547e-10 -1.03846e-11 1.06772e-10 -1.58278e-11 9.98848e-11 -2.03777e-11 9.0067e-11 -2.41037e-11 7.99363e-11 -2.70776e-11 6.99248e-11 -2.93753e-11 6.02324e-11 -3.10668e-11 5.09659e-11 -3.22175e-11 4.21979e-11 -3.28893e-11 3.39928e-11 -3.31462e-11 2.64002e-11 -3.30436e-11 1.94372e-11 -3.2638e-11 1.31292e-11 -3.19823e-11 7.47496e-12 -3.11307e-11 2.47365e-12 -3.01311e-11 -1.89706e-12 -2.90277e-11 -5.68083e-12 -2.78603e-11 -8.91461e-12 -2.66654e-11 -1.16531e-11 -2.54703e-11 -1.39638e-11 -2.42957e-11 -1.59227e-11 -2.31541e-11 -1.75997e-11 -2.20508e-11 -1.90765e-11 -2.09821e-11 -2.04307e-11 -1.99432e-11 -2.17299e-11 -1.89111e-11 -2.30382e-11 -1.78717e-11 -2.43939e-11 -1.67958e-11 -2.58371e-11 -1.56625e-11 -2.73755e-11 -1.44461e-11 -2.90087e-11 -1.31258e-11 -3.07145e-11 -1.16838e-11 -3.2462e-11 -1.01173e-11 -3.42044e-11 -8.42254e-12 -3.58911e-11 -6.59811e-12 -3.74736e-11 -4.6577e-12 -3.88977e-11 -2.61687e-12 -4.01082e-11 -4.93356e-13 -4.1076e-11 1.68242e-12 -4.17729e-11 3.89473e-12 -4.21735e-11 6.12072e-12 -4.22703e-11 8.34071e-12 -4.20639e-11 1.0537e-11 -4.15614e-11 1.2695e-11 -4.07701e-11 1.48013e-11 -3.96969e-11 1.68413e-11 -3.83485e-11 1.87996e-11 -3.67294e-11 2.06606e-11 -3.48408e-11 2.24083e-11 -3.26853e-11 2.40259e-11 -3.02677e-11 2.54946e-11 -2.75951e-11 2.67945e-11 -2.46828e-11 2.79054e-11 -2.15584e-11 2.88092e-11 -1.82576e-11 2.9492e-11 -1.48244e-11 2.99442e-11 -1.13106e-11 3.01613e-11 -7.77454e-12 3.01448e-11 -4.27858e-12 2.99025e-11 -8.88597e-13 2.94485e-11 2.33215e-12 2.88018e-11 5.32907e-12 2.79858e-11 8.05565e-12 2.70276e-11 1.04701e-11 2.59569e-11 1.25382e-11 2.48047e-11 1.42407e-11 2.36035e-11 1.55741e-11 2.23858e-11 1.65424e-11 2.1182e-11 1.71566e-11 2.00197e-11 1.74466e-11 1.89234e-11 1.74572e-11 1.79133e-11 1.72375e-11 1.70011e-11 1.68428e-11 1.61897e-11 1.63372e-11 1.5476e-11 1.57901e-11 1.48508e-11 1.52542e-11 1.42996e-11 1.47745e-11 1.3804e-11 1.43999e-11 1.33452e-11 1.41595e-11 1.28984e-11 1.40644e-11 1.24416e-11 1.41158e-11 1.19602e-11 1.42936e-11 1.14373e-11 1.45653e-11 1.08644e-11 1.49034e-11 1.02413e-11 1.52735e-11 9.57013e-12 1.56439e-11 8.86267e-12 1.59768e-11 8.12596e-12 1.62515e-11 7.37832e-12 1.64474e-11 6.6311e-12 1.65777e-11 5.88394e-12 1.66525e-11 5.14374e-12 1.66889e-11 4.41845e-12 1.67034e-11 3.69722e-12 1.67155e-11 2.98522e-12 1.6708e-11 2.27757e-12 1.66724e-11 1.55673e-12 1.65503e-11 8.71854e-13 1.59196e-11 2.97906e-13 1.3874e-11 8.88461e-12 -2.15057e-13 6.55511e-11 -6.60631e-12 1.07938e-10 -1.29053e-11 1.13071e-10 -1.83774e-11 1.05356e-10 -2.2913e-11 9.46024e-11 -2.65889e-11 8.36118e-11 -2.94827e-11 7.28185e-11 -3.16758e-11 6.24254e-11 -3.32415e-11 5.25315e-11 -3.42527e-11 4.32091e-11 -3.47763e-11 3.45163e-11 -3.48753e-11 2.6499e-11 -3.46129e-11 1.91748e-11 -3.40438e-11 1.25599e-11 -3.32275e-11 6.6584e-12 -3.22204e-11 1.46629e-12 -3.10712e-11 -3.04655e-12 -2.98295e-11 -6.92295e-12 -2.85385e-11 -1.0206e-11 -2.72353e-11 -1.29567e-11 -2.59495e-11 -1.525e-11 -2.47052e-11 -1.71674e-11 -2.35142e-11 -1.87911e-11 -2.23813e-11 -2.02099e-11 -2.13041e-11 -2.15083e-11 -2.0267e-11 -2.27674e-11 -1.92522e-11 -2.40534e-11 -1.82329e-11 -2.54136e-11 -1.71821e-11 -2.68882e-11 -1.6073e-11 -2.8485e-11 -1.48754e-11 -3.02068e-11 -1.35656e-11 -3.20248e-11 -1.21261e-11 -3.39019e-11 -1.05445e-11 -3.57864e-11 -8.81535e-12 -3.76207e-11 -6.94761e-12 -3.93418e-11 -4.95879e-12 -4.0887e-11 -2.86048e-12 -4.22069e-11 -6.74769e-13 -4.32621e-11 1.57886e-12 -4.4027e-11 3.86643e-12 -4.44615e-11 6.16799e-12 -4.45723e-11 8.46247e-12 -4.43589e-11 1.07314e-11 -4.38308e-11 1.29601e-11 -4.29992e-11 1.51347e-11 -4.18719e-11 1.72413e-11 -4.04556e-11 1.92656e-11 -3.87541e-11 2.11922e-11 -3.67677e-11 2.30048e-11 -3.44982e-11 2.46855e-11 -3.19487e-11 2.6214e-11 -2.9124e-11 2.75682e-11 -2.60375e-11 2.87249e-11 -2.27156e-11 2.96634e-11 -1.91966e-11 3.03675e-11 -1.55288e-11 3.08261e-11 -1.17693e-11 3.10335e-11 -7.98203e-12 3.09913e-11 -4.23636e-12 3.07082e-11 -6.05417e-13 3.01993e-11 2.84104e-12 2.94854e-11 6.04303e-12 2.85922e-11 8.94889e-12 2.75495e-11 1.15127e-11 2.63891e-11 1.36985e-11 2.51443e-11 1.54855e-11 2.38511e-11 1.68673e-11 2.25457e-11 1.78478e-11 2.12617e-11 1.84407e-11 2.0029e-11 1.86793e-11 1.88747e-11 1.86116e-11 1.78207e-11 1.82916e-11 1.68796e-11 1.77841e-11 1.60544e-11 1.71625e-11 1.53421e-11 1.65025e-11 1.4733e-11 1.58634e-11 1.42081e-11 1.52994e-11 1.3745e-11 1.48632e-11 1.33227e-11 1.4582e-11 1.29116e-11 1.44757e-11 1.24859e-11 1.45418e-11 1.20288e-11 1.47508e-11 1.15225e-11 1.50718e-11 1.09572e-11 1.54688e-11 1.03311e-11 1.58997e-11 9.64972e-12 1.63252e-11 8.92554e-12 1.67009e-11 8.17225e-12 1.70048e-11 7.41008e-12 1.72096e-11 6.6462e-12 1.73417e-11 5.88927e-12 1.74095e-11 5.14411e-12 1.74341e-11 4.41535e-12 1.74322e-11 3.6967e-12 1.74342e-11 2.99111e-12 1.74137e-11 2.27654e-12 1.7387e-11 1.55931e-12 1.72674e-11 8.6823e-13 1.66107e-11 3.02873e-13 1.44395e-11 9.18757e-12 -2.99747e-12 6.94706e-11 -9.3945e-12 1.14334e-10 -1.57067e-11 1.19382e-10 -2.11741e-11 1.10824e-10 -2.56732e-11 9.91012e-11 -2.92799e-11 8.72184e-11 -3.2074e-11 7.56125e-11 -3.4143e-11 6.44943e-11 -3.55662e-11 5.39547e-11 -3.64181e-11 4.40611e-11 -3.67744e-11 3.48726e-11 -3.66994e-11 2.64239e-11 -3.62595e-11 1.87349e-11 -3.55121e-11 1.18124e-11 -3.45231e-11 5.66931e-12 -3.33465e-11 2.89474e-13 -3.20396e-11 -4.35355e-12 -3.0651e-11 -8.3117e-12 -2.92288e-11 -1.16284e-11 -2.78108e-11 -1.43748e-11 -2.64314e-11 -1.66296e-11 -2.51134e-11 -1.84855e-11 -2.38697e-11 -2.00349e-11 -2.27091e-11 -2.13705e-11 -2.16203e-11 -2.25972e-11 -2.05889e-11 -2.37989e-11 -1.9594e-11 -2.50484e-11 -1.86023e-11 -2.64054e-11 -1.75835e-11 -2.7907e-11 -1.65056e-11 -2.9563e-11 -1.53338e-11 -3.13786e-11 -1.40396e-11 -3.33191e-11 -1.26013e-11 -3.53404e-11 -1.10071e-11 -3.73806e-11 -9.25292e-12 -3.93749e-11 -7.34522e-12 -4.12495e-11 -5.29564e-12 -4.29366e-11 -3.12276e-12 -4.43798e-11 -8.54365e-13 -4.55306e-11 1.46677e-12 -4.63482e-11 3.83526e-12 -4.68301e-11 6.21905e-12 -4.69562e-11 8.59466e-12 -4.67346e-11 1.0943e-11 -4.61792e-11 1.32476e-11 -4.53038e-11 1.54939e-11 -4.41184e-11 1.76697e-11 -4.26315e-11 1.97618e-11 -4.08462e-11 2.17567e-11 -3.87627e-11 2.36384e-11 -3.638e-11 2.5387e-11 -3.36974e-11 2.698e-11 -3.07172e-11 2.83933e-11 -2.74509e-11 2.9601e-11 -2.39234e-11 3.05789e-11 -2.01746e-11 3.13073e-11 -1.62571e-11 3.17725e-11 -1.22344e-11 3.19685e-11 -8.17785e-12 3.18977e-11 -4.16529e-12 3.15698e-11 -2.77277e-13 3.1001e-11 3.41008e-12 3.02136e-11 6.83063e-12 2.92356e-11 9.92699e-12 2.80991e-11 1.26493e-11 2.68384e-11 1.49593e-11 2.54905e-11 1.68334e-11 2.40959e-11 1.8262e-11 2.26946e-11 1.92491e-11 2.13235e-11 1.98119e-11 2.00156e-11 1.99872e-11 1.88005e-11 1.98269e-11 1.77006e-11 1.93916e-11 1.67296e-11 1.87552e-11 1.58924e-11 1.79999e-11 1.51851e-11 1.72099e-11 1.45959e-11 1.64526e-11 1.41019e-11 1.57937e-11 1.36768e-11 1.52884e-11 1.32964e-11 1.49627e-11 1.29267e-11 1.48456e-11 1.25372e-11 1.49315e-11 1.21096e-11 1.51785e-11 1.16229e-11 1.55586e-11 1.10664e-11 1.60254e-11 1.04383e-11 1.65279e-11 9.74483e-12 1.70188e-11 9.00488e-12 1.74409e-11 8.23453e-12 1.77752e-11 7.44702e-12 1.79972e-11 6.65536e-12 1.81335e-11 5.87945e-12 1.81855e-11 5.13239e-12 1.81811e-11 4.41011e-12 1.81545e-11 3.69744e-12 1.81469e-11 3.00514e-12 1.81059e-11 2.28315e-12 1.81088e-11 1.56423e-12 1.79863e-11 8.66462e-13 1.73086e-11 3.06953e-13 1.49992e-11 9.49453e-12 -6.09311e-12 7.318e-11 -1.24689e-11 1.20709e-10 -1.87746e-11 1.25688e-10 -2.42212e-11 1.1627e-10 -2.86631e-11 1.03543e-10 -3.21793e-11 9.07345e-11 -3.48533e-11 7.82865e-11 -3.67811e-11 6.6422e-11 -3.80456e-11 5.52191e-11 -3.87261e-11 4.47415e-11 -3.88979e-11 3.50444e-11 -3.86309e-11 2.61569e-11 -3.7995e-11 1.80988e-11 -3.70545e-11 1.08719e-11 -3.58743e-11 4.48906e-12 -3.45166e-11 -1.06823e-12 -3.30358e-11 -5.8343e-12 -3.14899e-11 -9.85763e-12 -2.99268e-11 -1.31914e-11 -2.83883e-11 -1.59133e-11 -2.6908e-11 -1.81098e-11 -2.55136e-11 -1.98797e-11 -2.42176e-11 -2.13308e-11 -2.30233e-11 -2.25646e-11 -2.19261e-11 -2.36942e-11 -2.09057e-11 -2.48192e-11 -1.9934e-11 -2.602e-11 -1.89779e-11 -2.73614e-11 -1.79995e-11 -2.88854e-11 -1.69597e-11 -3.06027e-11 -1.58195e-11 -3.25188e-11 -1.45457e-11 -3.45929e-11 -1.31131e-11 -3.67729e-11 -1.15064e-11 -3.89871e-11 -9.72203e-12 -4.11591e-11 -7.76693e-12 -4.32043e-11 -5.65723e-12 -4.5046e-11 -3.41755e-12 -4.66193e-11 -1.07498e-12 -4.78729e-11 1.3436e-12 -4.87666e-11 3.79807e-12 -4.92844e-11 6.26547e-12 -4.94234e-11 8.72296e-12 -4.91919e-11 1.11511e-11 -4.86072e-11 1.35332e-11 -4.76858e-11 1.58558e-11 -4.64409e-11 1.81074e-11 -4.48831e-11 2.02762e-11 -4.30149e-11 2.23486e-11 -4.0835e-11 2.4307e-11 -3.83384e-11 2.61304e-11 -3.55208e-11 2.77941e-11 -3.23809e-11 2.92715e-11 -2.89282e-11 3.0534e-11 -2.51858e-11 3.15546e-11 -2.11949e-11 3.23095e-11 -1.70118e-11 3.27825e-11 -1.2707e-11 3.29672e-11 -8.36235e-12 3.28657e-11 -4.06354e-12 3.24886e-11 1.00101e-13 3.18535e-11 4.04534e-12 3.09858e-11 7.69843e-12 2.99169e-11 1.09961e-11 2.86806e-11 1.38856e-11 2.73134e-11 1.63265e-11 2.58557e-11 1.8291e-11 2.4351e-11 1.97665e-11 2.28429e-11 2.07571e-11 2.1373e-11 2.12818e-11 1.99797e-11 2.13804e-11 1.86961e-11 2.11105e-11 1.75466e-11 2.05411e-11 1.65455e-11 1.97563e-11 1.56975e-11 1.88478e-11 1.49982e-11 1.79092e-11 1.44317e-11 1.70191e-11 1.39734e-11 1.62521e-11 1.35944e-11 1.56676e-11 1.32621e-11 1.52952e-11 1.29392e-11 1.51688e-11 1.2595e-11 1.52757e-11 1.22031e-11 1.55706e-11 1.17402e-11 1.60216e-11 1.11956e-11 1.65702e-11 1.05669e-11 1.71568e-11 9.86314e-12 1.77227e-11 9.1026e-12 1.82016e-11 8.30755e-12 1.85705e-11 7.49507e-12 1.881e-11 6.67053e-12 1.89583e-11 5.87682e-12 1.89793e-11 5.11078e-12 1.89472e-11 4.3818e-12 1.88836e-11 3.68264e-12 1.88462e-11 2.98428e-12 1.88043e-11 2.28479e-12 1.88083e-11 1.57199e-12 1.86992e-11 8.70623e-13 1.80102e-11 3.05335e-13 1.55646e-11 9.79986e-12 -9.35227e-12 7.70476e-11 -1.57889e-11 1.27146e-10 -2.21057e-11 1.32004e-10 -2.75159e-11 1.2168e-10 -3.1879e-11 1.07906e-10 -3.52808e-11 9.41362e-11 -3.78125e-11 8.08179e-11 -3.95755e-11 6.81848e-11 -4.06607e-11 5.63042e-11 -4.11524e-11 4.52331e-11 -4.11258e-11 3.50177e-11 -4.06556e-11 2.56866e-11 -3.98113e-11 1.72545e-11 -3.86633e-11 9.72391e-12 -3.72799e-11 3.10574e-12 -3.57233e-11 -2.6248e-12 -3.40555e-11 -7.50197e-12 -3.23368e-11 -1.15762e-11 -3.06196e-11 -1.49085e-11 -2.89492e-11 -1.75835e-11 -2.73618e-11 -1.96969e-11 -2.58857e-11 -2.13557e-11 -2.45359e-11 -2.26804e-11 -2.33147e-11 -2.37857e-11 -2.22118e-11 -2.4797e-11 -2.12077e-11 -2.58231e-11 -2.02697e-11 -2.69579e-11 -1.93586e-11 -2.82725e-11 -1.84299e-11 -2.98141e-11 -1.74378e-11 -3.15948e-11 -1.63377e-11 -3.36188e-11 -1.50904e-11 -3.58402e-11 -1.36638e-11 -3.81993e-11 -1.20429e-11 -4.06079e-11 -1.0225e-11 -4.29768e-11 -8.21745e-12 -4.52116e-11 -6.03883e-12 -4.72244e-11 -3.71675e-12 -4.89411e-11 -1.28888e-12 -5.03005e-11 1.21369e-12 -5.1269e-11 3.7591e-12 -5.18296e-11 6.31624e-12 -5.19804e-11 8.86128e-12 -5.17368e-11 1.13726e-11 -5.11183e-11 1.38348e-11 -5.01479e-11 1.62364e-11 -4.88423e-11 1.85668e-11 -4.72135e-11 2.08165e-11 -4.52645e-11 2.29704e-11 -4.29889e-11 2.50096e-11 -4.03776e-11 2.69133e-11 -3.74245e-11 2.86546e-11 -3.41222e-11 3.02031e-11 -3.04767e-11 3.15263e-11 -2.65089e-11 3.25937e-11 -2.22621e-11 3.33789e-11 -1.77967e-11 3.3863e-11 -1.31909e-11 3.40379e-11 -8.53713e-12 3.39034e-11 -3.92902e-12 3.34714e-11 5.32184e-13 3.27624e-11 4.75425e-12 3.1806e-11 8.65479e-12 3.06373e-11 1.21647e-11 2.92935e-11 1.52293e-11 2.78127e-11 1.78069e-11 2.62365e-11 1.98668e-11 2.46104e-11 2.13922e-11 2.29831e-11 2.2384e-11 2.14029e-11 2.28618e-11 1.99144e-11 2.28687e-11 1.85552e-11 2.24694e-11 1.73536e-11 2.17425e-11 1.63244e-11 2.07851e-11 1.5468e-11 1.97038e-11 1.47793e-11 1.85977e-11 1.42409e-11 1.75574e-11 1.38249e-11 1.66682e-11 1.35003e-11 1.59923e-11 1.32236e-11 1.5572e-11 1.29558e-11 1.54366e-11 1.26634e-11 1.55681e-11 1.23111e-11 1.5923e-11 1.1877e-11 1.64559e-11 1.1346e-11 1.71015e-11 1.07166e-11 1.77865e-11 1.00006e-11 1.8439e-11 9.21337e-12 1.89893e-11 8.38812e-12 1.93962e-11 7.54243e-12 1.96561e-11 6.68425e-12 1.98168e-11 5.86375e-12 1.98001e-11 5.0834e-12 1.97278e-11 4.3513e-12 1.96159e-11 3.65905e-12 1.95386e-11 2.96605e-12 1.94974e-11 2.27761e-12 1.94969e-11 1.57498e-12 1.94021e-11 8.68958e-13 1.87165e-11 2.93024e-13 1.61406e-11 1.00929e-11 -1.29321e-11 8.11259e-11 -1.94243e-11 1.33638e-10 -2.57301e-11 1.3831e-10 -3.10764e-11 1.27026e-10 -3.53358e-11 1.12165e-10 -3.85983e-11 9.73984e-11 -4.0964e-11 8.31834e-11 -4.25399e-11 6.97605e-11 -4.3423e-11 5.7187e-11 -4.3703e-11 4.55129e-11 -4.34577e-11 3.47722e-11 -4.27654e-11 2.49941e-11 -4.16946e-11 1.61836e-11 -4.03253e-11 8.35459e-12 -3.87219e-11 1.50233e-12 -3.69533e-11 -4.39329e-12 -3.50848e-11 -9.37046e-12 -3.31808e-11 -1.34801e-11 -3.12982e-11 -1.6791e-11 -2.94852e-11 -1.93964e-11 -2.77836e-11 -2.13985e-11 -2.62209e-11 -2.29183e-11 -2.48156e-11 -2.40856e-11 -2.35681e-11 -2.50332e-11 -2.24679e-11 -2.58972e-11 -2.14894e-11 -2.68016e-11 -2.05949e-11 -2.78525e-11 -1.97386e-11 -2.91289e-11 -1.88691e-11 -3.06837e-11 -1.79321e-11 -3.2532e-11 -1.68779e-11 -3.46731e-11 -1.56622e-11 -3.7056e-11 -1.42544e-11 -3.96072e-11 -1.26298e-11 -4.22325e-11 -1.07837e-11 -4.48229e-11 -8.72508e-12 -4.72701e-11 -6.47541e-12 -4.94739e-11 -4.06664e-12 -5.13498e-11 -1.5356e-12 -5.28315e-11 1.07725e-12 -5.38818e-11 3.73011e-12 -5.44824e-11 6.39037e-12 -5.46406e-11 9.02997e-12 -5.43763e-11 1.16278e-11 -5.37161e-11 1.41695e-11 -5.26896e-11 1.66461e-11 -5.13189e-11 1.90506e-11 -4.96181e-11 2.13756e-11 -4.75896e-11 2.36099e-11 -4.52234e-11 2.57358e-11 -4.25037e-11 2.77285e-11 -3.94173e-11 2.9559e-11 -3.59528e-11 3.11909e-11 -3.21085e-11 3.25866e-11 -2.79045e-11 3.37099e-11 -2.33853e-11 3.45311e-11 -1.86178e-11 3.50286e-11 -1.36884e-11 3.51913e-11 -8.69992e-12 3.50221e-11 -3.76001e-12 3.45329e-11 1.02123e-12 3.37465e-11 5.54032e-12 3.26938e-11 9.70727e-12 3.14114e-11 1.34468e-11 2.99407e-11 1.66997e-11 2.83259e-11 1.94212e-11 2.66145e-11 2.15777e-11 2.48567e-11 2.31496e-11 2.31047e-11 2.41355e-11 2.14099e-11 2.45562e-11 1.98195e-11 2.44587e-11 1.83752e-11 2.39134e-11 1.7109e-11 2.30081e-11 1.60408e-11 2.18528e-11 1.51753e-11 2.05688e-11 1.45053e-11 1.92674e-11 1.40094e-11 1.8053e-11 1.36533e-11 1.70242e-11 1.33956e-11 1.625e-11 1.31892e-11 1.57784e-11 1.29888e-11 1.5637e-11 1.27538e-11 1.5803e-11 1.24449e-11 1.6232e-11 1.20367e-11 1.68642e-11 1.15144e-11 1.7624e-11 1.08777e-11 1.84234e-11 1.01418e-11 1.91753e-11 9.3284e-12 1.98031e-11 8.46797e-12 2.02572e-11 7.57922e-12 2.05453e-11 6.70435e-12 2.06921e-11 5.8613e-12 2.06435e-11 5.07131e-12 2.05182e-11 4.341e-12 2.03466e-11 3.65394e-12 2.02259e-11 2.97924e-12 2.01723e-11 2.28659e-12 2.01899e-11 1.59027e-12 2.00988e-11 8.9299e-13 1.9414e-11 3.00413e-13 1.67334e-11 1.03936e-11 -1.68971e-11 8.528e-11 -2.34091e-11 1.40149e-10 -2.96744e-11 1.44575e-10 -3.49296e-11 1.32281e-10 -3.90552e-11 1.1629e-10 -4.21494e-11 1.00492e-10 -4.43238e-11 8.53575e-11 -4.56906e-11 7.11269e-11 -4.63508e-11 5.78468e-11 -4.63972e-11 4.55589e-11 -4.59128e-11 3.42875e-11 -4.49752e-11 2.40563e-11 -4.36618e-11 1.487e-11 -4.20461e-11 6.73878e-12 -4.02056e-11 -3.38278e-13 -3.82054e-11 -6.39362e-12 -3.61204e-11 -1.14555e-11 -3.40163e-11 -1.55843e-11 -3.19547e-11 -1.88528e-11 -2.99901e-11 -2.13612e-11 -2.81667e-11 -2.32221e-11 -2.65158e-11 -2.45694e-11 -2.50547e-11 -2.5547e-11 -2.37846e-11 -2.63035e-11 -2.2692e-11 -2.69901e-11 -2.17471e-11 -2.77468e-11 -2.09094e-11 -2.86906e-11 -2.0122e-11 -2.99166e-11 -1.93259e-11 -3.14803e-11 -1.84586e-11 -3.33997e-11 -1.74633e-11 -3.56687e-11 -1.62886e-11 -3.8231e-11 -1.48967e-11 -4.09993e-11 -1.32657e-11 -4.38636e-11 -1.13873e-11 -4.67014e-11 -9.26991e-12 -4.93876e-11 -6.93869e-12 -5.18053e-11 -4.43282e-12 -5.38558e-11 -1.79506e-12 -5.54694e-11 9.30828e-13 -5.66078e-11 3.69813e-12 -5.72498e-11 6.4673e-12 -5.74098e-11 9.20699e-12 -5.71161e-11 1.18954e-11 -5.64046e-11 1.45193e-11 -5.53136e-11 1.70733e-11 -5.38731e-11 1.95545e-11 -5.20994e-11 2.19582e-11 -4.99936e-11 2.42773e-11 -4.75428e-11 2.64958e-11 -4.47224e-11 2.85859e-11 -4.15077e-11 3.05129e-11 -3.78798e-11 3.22366e-11 -3.38323e-11 3.37128e-11 -2.93807e-11 3.48996e-11 -2.4572e-11 3.57621e-11 -1.94803e-11 3.62759e-11 -1.42023e-11 3.64278e-11 -8.85213e-12 3.62205e-11 -3.55313e-12 3.56682e-11 1.57313e-12 3.47961e-11 6.41202e-12 3.36373e-11 1.08657e-11 3.22317e-11 1.48521e-11 3.06246e-11 1.83064e-11 2.88657e-11 2.11798e-11 2.70073e-11 2.34356e-11 2.51045e-11 2.5052e-11 2.32137e-11 2.6026e-11 2.139e-11 2.63797e-11 1.96859e-11 2.61625e-11 1.81493e-11 2.54496e-11 1.68168e-11 2.43401e-11 1.57103e-11 2.29589e-11 1.48383e-11 2.14404e-11 1.41927e-11 1.99128e-11 1.37451e-11 1.85005e-11 1.34568e-11 1.73124e-11 1.328e-11 1.64268e-11 1.3157e-11 1.59012e-11 1.3036e-11 1.57578e-11 1.28674e-11 1.59717e-11 1.26073e-11 1.64921e-11 1.22258e-11 1.72458e-11 1.17074e-11 1.81426e-11 1.10559e-11 1.90751e-11 1.02892e-11 1.99423e-11 9.43706e-12 2.06556e-11 8.52829e-12 2.11663e-11 7.5988e-12 2.14751e-11 6.69766e-12 2.15935e-11 5.83835e-12 2.15031e-11 5.04256e-12 2.13144e-11 4.32019e-12 2.10693e-11 3.63863e-12 2.09078e-11 2.98408e-12 2.08272e-11 2.31278e-12 2.08616e-11 1.62561e-12 2.07864e-11 9.3156e-13 2.01083e-11 3.18407e-13 1.73469e-11 1.07122e-11 -2.12566e-11 8.95278e-11 -2.77397e-11 1.46632e-10 -3.39368e-11 1.50772e-10 -3.90733e-11 1.37417e-10 -4.30371e-11 1.20253e-10 -4.59365e-11 1.03391e-10 -4.78921e-11 8.73127e-11 -4.90231e-11 7.22576e-11 -4.94379e-11 5.82613e-11 -4.92298e-11 4.53505e-11 -4.84875e-11 3.35449e-11 -4.72863e-11 2.28547e-11 -4.57089e-11 1.32923e-11 -4.3831e-11 4.86065e-12 -4.17301e-11 -2.43939e-12 -3.94814e-11 -8.64256e-12 -3.71616e-11 -1.37756e-11 -3.48414e-11 -1.79048e-11 -3.2588e-11 -2.11065e-11 -3.04599e-11 -2.34897e-11 -2.85062e-11 -2.51762e-11 -2.67614e-11 -2.63146e-11 -2.52438e-11 -2.7065e-11 -2.3956e-11 -2.75918e-11 -2.28795e-11 -2.80671e-11 -2.1982e-11 -2.86447e-11 -2.12133e-11 -2.94598e-11 -2.05127e-11 -3.06178e-11 -1.98081e-11 -3.21853e-11 -1.9027e-11 -3.41812e-11 -1.81035e-11 -3.65926e-11 -1.69797e-11 -3.93551e-11 -1.56113e-11 -4.2368e-11 -1.39699e-11 -4.55052e-11 -1.20525e-11 -4.86191e-11 -9.87267e-12 -5.15677e-11 -7.4521e-12 -5.42261e-11 -4.83685e-12 -5.64713e-11 -2.07764e-12 -5.82289e-11 7.68112e-13 -5.94538e-11 3.65481e-12 -6.01367e-11 6.53723e-12 -6.02924e-11 9.38132e-12 -5.99603e-11 1.21653e-11 -5.91887e-11 1.4878e-11 -5.80264e-11 1.75161e-11 -5.65114e-11 2.00796e-11 -5.46631e-11 2.25684e-11 -5.24827e-11 2.49773e-11 -4.9952e-11 2.72914e-11 -4.70369e-11 2.94838e-11 -4.37003e-11 3.15158e-11 -3.9912e-11 3.33406e-11 -3.56572e-11 3.49075e-11 -3.09476e-11 3.61671e-11 -2.58317e-11 3.70776e-11 -2.03909e-11 3.761e-11 -1.4735e-11 3.77495e-11 -8.99212e-12 3.74993e-11 -3.30345e-12 3.68757e-11 2.19625e-12 3.59081e-11 7.37914e-12 3.46339e-11 1.21395e-11 3.30965e-11 1.63892e-11 3.13445e-11 2.00582e-11 2.94314e-11 2.30926e-11 2.74137e-11 2.54531e-11 2.53511e-11 2.71144e-11 2.33059e-11 2.80711e-11 2.13399e-11 2.83456e-11 1.95127e-11 2.79896e-11 1.78786e-11 2.70836e-11 1.64787e-11 2.57399e-11 1.53376e-11 2.40999e-11 1.44642e-11 2.23137e-11 1.38467e-11 2.05303e-11 1.34524e-11 1.88949e-11 1.32384e-11 1.75266e-11 1.31483e-11 1.65169e-11 1.3117e-11 1.59325e-11 1.30849e-11 1.57899e-11 1.2994e-11 1.60627e-11 1.27932e-11 1.66932e-11 1.24478e-11 1.75913e-11 1.19415e-11 1.86489e-11 1.12765e-11 1.97403e-11 1.04749e-11 2.07442e-11 9.56733e-12 2.15634e-11 8.59906e-12 2.21347e-11 7.61848e-12 2.24558e-11 6.67658e-12 2.25355e-11 5.79138e-12 2.23885e-11 4.99336e-12 2.21126e-11 4.2756e-12 2.17872e-11 3.61723e-12 2.15663e-11 2.991e-12 2.14538e-11 2.36657e-12 2.14864e-11 1.70376e-12 2.14494e-11 9.91834e-13 2.08205e-11 3.63586e-13 1.79754e-11 1.1076e-11 -2.60111e-11 9.37019e-11 -3.24222e-11 1.53043e-10 -3.85188e-11 1.56868e-10 -4.35054e-11 1.42403e-10 -4.72762e-11 1.24024e-10 -4.99495e-11 1.06064e-10 -5.16573e-11 8.90201e-11 -5.25264e-11 7.31263e-11 -5.26707e-11 5.84053e-11 -5.21864e-11 4.48658e-11 -5.11652e-11 3.25232e-11 -4.96806e-11 2.13698e-11 -4.78234e-11 1.14348e-11 -4.56649e-11 2.70179e-12 -4.32881e-11 -4.81656e-12 -4.07735e-11 -1.11575e-11 -3.82018e-11 -1.63478e-11 -3.56507e-11 -2.04563e-11 -3.31902e-11 -2.35675e-11 -3.08871e-11 -2.57933e-11 -2.87946e-11 -2.72692e-11 -2.69507e-11 -2.81591e-11 -2.53775e-11 -2.86387e-11 -2.40739e-11 -2.88959e-11 -2.30224e-11 -2.9119e-11 -2.21835e-11 -2.94841e-11 -2.14997e-11 -3.01441e-11 -2.09008e-11 -3.12171e-11 -2.03045e-11 -3.2782e-11 -1.96275e-11 -3.48586e-11 -1.87922e-11 -3.74282e-11 -1.7732e-11 -4.04156e-11 -1.63921e-11 -4.37081e-11 -1.47526e-11 -4.71449e-11 -1.27955e-11 -5.05764e-11 -1.05392e-11 -5.38242e-11 -8.01632e-12 -5.67493e-11 -5.28061e-12 -5.92073e-11 -2.39228e-12 -6.11175e-11 5.93229e-13 -6.24396e-11 3.61044e-12 -6.31541e-11 6.61425e-12 -6.32963e-11 9.56859e-12 -6.29147e-11 1.24511e-11 -6.20713e-11 1.52534e-11 -6.08288e-11 1.79755e-11 -5.92337e-11 2.06224e-11 -5.73103e-11 2.3199e-11 -5.50596e-11 2.57036e-11 -5.24569e-11 2.81217e-11 -4.94553e-11 3.04265e-11 -4.60054e-11 3.25745e-11 -4.20601e-11 3.45122e-11 -3.7595e-11 3.61806e-11 -3.26161e-11 3.75225e-11 -2.71737e-11 3.8488e-11 -2.13567e-11 3.90418e-11 -1.52892e-11 3.91691e-11 -9.12e-12 3.88715e-11 -3.00638e-12 3.817e-11 2.89717e-12 3.70977e-11 8.45101e-12 3.56971e-11 1.35398e-11 3.40159e-11 1.80702e-11 3.21065e-11 2.19675e-11 3.00256e-11 2.51734e-11 2.78338e-11 2.76448e-11 2.55956e-11 2.93526e-11 2.33797e-11 3.02871e-11 2.12559e-11 3.04696e-11 1.92924e-11 2.99532e-11 1.75499e-11 2.88261e-11 1.60752e-11 2.72148e-11 1.48967e-11 2.52786e-11 1.40233e-11 2.31873e-11 1.344e-11 2.1114e-11 1.3111e-11 1.92242e-11 1.29863e-11 1.76517e-11 1.29993e-11 1.65042e-11 1.30771e-11 1.5855e-11 1.31496e-11 1.57177e-11 1.31482e-11 1.60644e-11 1.30146e-11 1.68271e-11 1.27094e-11 1.78967e-11 1.22132e-11 1.91453e-11 1.15294e-11 2.04242e-11 1.06817e-11 2.15919e-11 9.71185e-12 2.25333e-11 8.67804e-12 2.31685e-11 7.63694e-12 2.34968e-11 6.64218e-12 2.35302e-11 5.72775e-12 2.3303e-11 4.91886e-12 2.29215e-11 4.20882e-12 2.24972e-11 3.58223e-12 2.2193e-11 2.99359e-12 2.20426e-11 2.41263e-12 2.20675e-11 1.78729e-12 2.20748e-11 1.07363e-12 2.15342e-11 4.22439e-13 1.86268e-11 1.14984e-11 -3.11109e-11 9.77637e-11 -3.74445e-11 1.59376e-10 -4.34336e-11 1.62857e-10 -4.8247e-11 1.47217e-10 -5.17911e-11 1.27568e-10 -5.42019e-11 1.08475e-10 -5.56292e-11 9.04471e-11 -5.621e-11 7.37067e-11 -5.60593e-11 5.82543e-11 -5.52769e-11 4.4083e-11 -5.39507e-11 3.11966e-11 -5.21681e-11 1.95869e-11 -5.00056e-11 9.27189e-12 -4.75475e-11 2.43351e-13 -4.4875e-11 -7.48945e-12 -4.20764e-11 -1.39564e-11 -3.92345e-11 -1.91901e-11 -3.64343e-11 -2.3257e-11 -3.37529e-11 -2.62494e-11 -3.12631e-11 -2.82836e-11 -2.90226e-11 -2.95101e-11 -2.70758e-11 -3.01063e-11 -2.54446e-11 -3.02703e-11 -2.41312e-11 -3.02097e-11 -2.31126e-11 -3.01379e-11 -2.23454e-11 -3.02517e-11 -2.17635e-11 -3.07263e-11 -2.12852e-11 -3.16956e-11 -2.08172e-11 -3.32503e-11 -2.0263e-11 -3.54129e-11 -1.95324e-11 -3.8159e-11 -1.8546e-11 -4.14021e-11 -1.72526e-11 -4.50016e-11 -1.56086e-11 -4.8789e-11 -1.36066e-11 -5.25786e-11 -1.12642e-11 -5.61668e-11 -8.63138e-12 -5.93823e-11 -5.75736e-12 -6.20816e-11 -2.71386e-12 -6.41612e-11 4.10793e-13 -6.55644e-11 3.57157e-12 -6.6315e-11 6.70608e-12 -6.64309e-11 9.77585e-12 -6.59846e-11 1.27589e-11 -6.50545e-11 1.56494e-11 -6.37193e-11 1.84531e-11 -6.20376e-11 2.11827e-11 -6.00401e-11 2.38488e-11 -5.77259e-11 2.64549e-11 -5.50634e-11 2.89871e-11 -5.19878e-11 3.14148e-11 -4.84333e-11 3.36914e-11 -4.43369e-11 3.57555e-11 -3.96592e-11 3.7538e-11 -3.43988e-11 3.89723e-11 -2.86083e-11 4.00008e-11 -2.23856e-11 4.05816e-11 -1.58705e-11 4.06969e-11 -9.23591e-12 4.03482e-11 -2.65827e-12 3.95608e-11 3.68402e-12 3.83731e-11 9.63824e-12 3.68333e-11 1.50793e-11 3.49949e-11 1.99084e-11 3.29147e-11 2.40476e-11 3.06516e-11 2.74364e-11 2.82695e-11 3.0027e-11 2.58383e-11 3.17838e-11 2.34333e-11 3.26922e-11 2.11333e-11 3.27698e-11 1.90164e-11 3.20703e-11 1.71525e-11 3.06903e-11 1.55947e-11 2.87729e-11 1.43756e-11 2.64981e-11 1.35041e-11 2.40593e-11 1.29637e-11 2.16549e-11 1.27148e-11 1.94736e-11 1.26961e-11 1.76708e-11 1.28308e-11 1.63698e-11 1.30373e-11 1.5649e-11 1.3231e-11 1.55246e-11 1.33319e-11 1.5964e-11 1.3275e-11 1.68844e-11 1.30139e-11 1.81581e-11 1.25277e-11 1.96318e-11 1.18217e-11 2.11305e-11 1.09227e-11 2.24911e-11 9.88394e-12 2.35722e-11 8.76932e-12 2.42831e-11 7.65236e-12 2.46138e-11 6.59145e-12 2.45911e-11 5.63746e-12 2.42569e-11 4.82111e-12 2.37377e-11 4.11935e-12 2.31989e-11 3.5399e-12 2.27724e-11 3.01726e-12 2.25652e-11 2.47085e-12 2.26137e-11 1.88875e-12 2.26567e-11 1.1966e-12 2.22263e-11 5.05725e-13 1.93177e-11 1.20039e-11 -3.64545e-11 1.01811e-10 -4.27917e-11 1.65713e-10 -4.86925e-11 1.68757e-10 -5.33136e-11 1.51838e-10 -5.65988e-11 1.30853e-10 -5.87079e-11 1.10584e-10 -5.98193e-11 9.15582e-11 -6.00805e-11 7.39678e-11 -5.9611e-11 5.77846e-11 -5.85101e-11 4.29819e-11 -5.68606e-11 2.95469e-11 -5.4757e-11 1.74831e-11 -5.22703e-11 6.78499e-12 -4.94893e-11 -2.53787e-12 -4.64991e-11 -1.04799e-11 -4.3392e-11 -1.70638e-11 -4.0259e-11 -2.23234e-11 -3.71889e-11 -2.63273e-11 -3.42693e-11 -2.91692e-11 -3.15773e-11 -3.09758e-11 -2.91788e-11 -3.19088e-11 -2.71226e-11 -3.21626e-11 -2.54346e-11 -3.19585e-11 -2.41167e-11 -3.15277e-11 -2.31426e-11 -3.11122e-11 -2.24631e-11 -3.09312e-11 -2.2003e-11 -3.11864e-11 -2.16688e-11 -3.20299e-11 -2.13523e-11 -3.35667e-11 -2.0943e-11 -3.58221e-11 -2.03359e-11 -3.8766e-11 -1.94447e-11 -4.22933e-11 -1.81959e-11 -4.62504e-11 -1.65488e-11 -5.0436e-11 -1.45048e-11 -5.46227e-11 -1.20772e-11 -5.85945e-11 -9.31279e-12 -6.21468e-11 -6.28683e-12 -6.51076e-11 -3.08313e-12 -6.7365e-11 2.20029e-13 -6.88676e-11 3.53867e-12 -6.96337e-11 6.81405e-12 -6.97064e-11 1.00051e-11 -6.91756e-11 1.30904e-11 -6.81399e-11 1.6068e-11 -6.66969e-11 1.89503e-11 -6.49201e-11 2.17586e-11 -6.28486e-11 2.45131e-11 -6.04806e-11 2.72206e-11 -5.77711e-11 2.9873e-11 -5.46403e-11 3.24357e-11 -5.0996e-11 3.48556e-11 -4.67569e-11 3.70644e-11 -4.18682e-11 3.89795e-11 -3.63142e-11 4.05224e-11 -3.01515e-11 4.1625e-11 -2.34886e-11 4.22377e-11 -1.64837e-11 4.23378e-11 -9.33651e-12 4.19328e-11 -2.25379e-12 4.10496e-11 4.56671e-12 3.97342e-11 1.09532e-11 3.8042e-11 1.67711e-11 3.60324e-11 2.19177e-11 3.37658e-11 2.6314e-11 3.13042e-11 2.98979e-11 2.87149e-11 3.26162e-11 2.60729e-11 3.44258e-11 2.34605e-11 3.53047e-11 2.09662e-11 3.52641e-11 1.86798e-11 3.43569e-11 1.66814e-11 3.26889e-11 1.50323e-11 3.04224e-11 1.37701e-11 2.77607e-11 1.29053e-11 2.49245e-11 1.24177e-11 2.21429e-11 1.22619e-11 1.96298e-11 1.2367e-11 1.7566e-11 1.26447e-11 1.60925e-11 1.30002e-11 1.52939e-11 1.33353e-11 1.51899e-11 1.35574e-11 1.57424e-11 1.35901e-11 1.68521e-11 1.33797e-11 1.83688e-11 1.29006e-11 2.01114e-11 1.21613e-11 2.18701e-11 1.11999e-11 2.34527e-11 1.00802e-11 2.4692e-11 8.8683e-12 2.5495e-11 7.65213e-12 2.58301e-11 6.51558e-12 2.57278e-11 5.51744e-12 2.52551e-11 4.69387e-12 2.45613e-11 4.01976e-12 2.3873e-11 3.48759e-12 2.33046e-11 3.0079e-12 2.30448e-11 2.53827e-12 2.30832e-11 2.01224e-12 2.31826e-11 1.35121e-12 2.28873e-11 6.02279e-13 2.00664e-11 1.2606e-11 -4.20613e-11 1.06104e-10 -4.84836e-11 1.72136e-10 -5.43127e-11 1.74586e-10 -5.8715e-11 1.5624e-10 -6.16999e-11 1.33838e-10 -6.34668e-11 1.1235e-10 -6.42264e-11 9.23177e-11 -6.4136e-11 7.38773e-11 -6.33229e-11 5.69714e-11 -6.18782e-11 4.15371e-11 -5.98923e-11 2.7561e-11 -5.74453e-11 1.50361e-11 -5.46155e-11 3.95512e-12 -5.14914e-11 -5.66207e-12 -4.81624e-11 -1.38089e-11 -4.47231e-11 -2.05031e-11 -4.12751e-11 -2.57714e-11 -3.79139e-11 -2.96884e-11 -3.47349e-11 -3.23482e-11 -3.18235e-11 -3.38872e-11 -2.92536e-11 -3.44786e-11 -2.708e-11 -3.43362e-11 -2.5333e-11 -3.37054e-11 -2.40157e-11 -3.28449e-11 -2.30985e-11 -3.20292e-11 -2.25255e-11 -3.1504e-11 -2.22102e-11 -3.15016e-11 -2.20461e-11 -3.21937e-11 -2.19084e-11 -3.37042e-11 -2.16708e-11 -3.60594e-11 -2.12119e-11 -3.92246e-11 -2.04269e-11 -4.30781e-11 -1.92363e-11 -4.74408e-11 -1.75968e-11 -5.20754e-11 -1.54959e-11 -5.67235e-11 -1.29592e-11 -6.11311e-11 -1.00533e-11 -6.50527e-11 -6.85252e-12 -6.83083e-11 -3.45771e-12 -7.07597e-11 2.59368e-14 -7.23512e-11 3.51749e-12 -7.31252e-11 6.94481e-12 -7.31336e-11 1.02627e-11 -7.24935e-11 1.34502e-11 -7.13273e-11 1.65109e-11 -6.97576e-11 1.94661e-11 -6.78753e-11 2.23476e-11 -6.57301e-11 2.51865e-11 -6.33195e-11 2.79988e-11 -6.05834e-11 3.07769e-11 -5.74184e-11 3.3488e-11 -5.37072e-11 3.60712e-11 -4.93401e-11 3.84431e-11 -4.42403e-11 4.05125e-11 -3.83838e-11 4.21823e-11 -3.18216e-11 4.337e-11 -2.46767e-11 4.40201e-11 -1.71341e-11 4.41056e-11 -9.42244e-12 4.36364e-11 -1.78487e-12 4.26461e-11 5.55662e-12 4.11897e-11 1.24092e-11 3.93308e-11 1.86297e-11 3.71349e-11 2.41133e-11 3.46662e-11 2.87825e-11 3.19891e-11 3.25749e-11 2.91741e-11 3.54311e-11 2.63003e-11 3.72995e-11 2.34578e-11 3.8147e-11 2.07474e-11 3.79745e-11 1.82721e-11 3.68322e-11 1.61238e-11 3.48374e-11 1.43736e-11 3.21728e-11 1.30662e-11 2.90683e-11 1.22131e-11 2.57778e-11 1.17905e-11 2.25655e-11 1.1745e-11 1.96754e-11 1.19951e-11 1.73159e-11 1.24405e-11 1.56473e-11 1.29711e-11 1.47636e-11 1.34722e-11 1.4689e-11 1.38358e-11 1.53791e-11 1.39708e-11 1.67173e-11 1.38144e-11 1.85255e-11 1.33376e-11 2.05884e-11 1.25514e-11 2.26566e-11 1.15043e-11 2.45001e-11 1.0274e-11 2.59226e-11 8.94325e-12 2.6826e-11 7.61805e-12 2.71555e-11 6.39872e-12 2.69473e-11 5.36179e-12 2.62922e-11 4.52402e-12 2.53992e-11 3.88831e-12 2.4509e-11 3.41354e-12 2.37795e-11 3.01261e-12 2.34457e-11 2.62378e-12 2.34719e-11 2.17228e-12 2.36342e-11 1.53717e-12 2.35224e-11 7.21698e-13 2.08817e-11 1.33276e-11 -4.80534e-11 1.10564e-10 -5.45917e-11 1.78674e-10 -6.03378e-11 1.80332e-10 -6.44764e-11 1.60378e-10 -6.71028e-11 1.36464e-10 -6.84775e-11 1.13725e-10 -6.88454e-11 9.26857e-11 -6.83729e-11 7.34049e-11 -6.71908e-11 5.57895e-11 -6.53813e-11 3.97277e-11 -6.3038e-11 2.52179e-11 -6.02283e-11 1.22265e-11 -5.70325e-11 7.59371e-13 -5.35426e-11 -9.15183e-12 -4.98505e-11 -1.75009e-11 -4.6058e-11 -2.42954e-11 -4.22708e-11 -2.95584e-11 -3.85962e-11 -3.33628e-11 -3.5136e-11 -3.58081e-11 -3.19871e-11 -3.70359e-11 -2.92317e-11 -3.72337e-11 -2.69328e-11 -3.66348e-11 -2.51245e-11 -3.55135e-11 -2.38129e-11 -3.41561e-11 -2.29658e-11 -3.28759e-11 -2.25197e-11 -3.19498e-11 -2.23766e-11 -3.16442e-11 -2.24125e-11 -3.21574e-11 -2.24868e-11 -3.36296e-11 -2.24521e-11 -3.60937e-11 -2.21664e-11 -3.95098e-11 -2.15091e-11 -4.37351e-11 -2.03888e-11 -4.85608e-11 -1.87518e-11 -5.37121e-11 -1.65951e-11 -5.888e-11 -1.39456e-11 -6.37804e-11 -1.08698e-11 -6.81282e-11 -7.47087e-12 -7.1707e-11 -3.8659e-12 -7.43645e-11 -1.70738e-13 -7.60462e-11 3.51179e-12 -7.68076e-11 7.10193e-12 -7.67237e-11 1.05508e-11 -7.59423e-11 1.38407e-11 -7.46172e-11 1.69808e-11 -7.28976e-11 2.00024e-11 -7.08968e-11 2.2951e-11 -6.86786e-11 2.58709e-11 -6.62393e-11 2.87885e-11 -6.35008e-11 3.1701e-11 -6.03308e-11 3.45737e-11 -5.65799e-11 3.73386e-11 -5.2105e-11 3.9899e-11 -4.68008e-11 4.21442e-11 -4.06291e-11 4.39607e-11 -3.36383e-11 4.52493e-11 -2.59654e-11 4.59425e-11 -1.78274e-11 4.60124e-11 -9.49247e-12 4.54687e-11 -1.24117e-12 4.43581e-11 6.6671e-12 4.27452e-11 1.4022e-11 4.07039e-11 2.06708e-11 3.83065e-11 2.65107e-11 3.56203e-11 3.14686e-11 3.2711e-11 3.5484e-11 2.96505e-11 3.84915e-11 2.65214e-11 4.04286e-11 2.34234e-11 4.12449e-11 2.04714e-11 4.09264e-11 1.7784e-11 3.95195e-11 1.54675e-11 3.71539e-11 1.36063e-11 3.40341e-11 1.22522e-11 3.04225e-11 1.14161e-11 2.66139e-11 1.10708e-11 2.29108e-11 1.11543e-11 1.95916e-11 1.15728e-11 1.68972e-11 1.22121e-11 1.50079e-11 1.29449e-11 1.40308e-11 1.36384e-11 1.39955e-11 1.41662e-11 1.48513e-11 1.44208e-11 1.64626e-11 1.4327e-11 1.86195e-11 1.38523e-11 2.10632e-11 1.3011e-11 2.3498e-11 1.18628e-11 2.56485e-11 1.04936e-11 2.7292e-11 9.01614e-12 2.83037e-11 7.56155e-12 2.86104e-11 6.24341e-12 2.82657e-11 5.15361e-12 2.73822e-11 4.30525e-12 2.62479e-11 3.70761e-12 2.51069e-11 3.3043e-12 2.41831e-11 3.0127e-12 2.37375e-11 2.73955e-12 2.37453e-11 2.36651e-12 2.40074e-11 1.76657e-12 2.41224e-11 8.68005e-13 2.17802e-11 1.41958e-11 -5.45448e-11 1.15162e-10 -6.12067e-11 1.85336e-10 -6.68267e-11 1.85952e-10 -7.06298e-11 1.64181e-10 -7.28261e-11 1.3866e-10 -7.37477e-11 1.14647e-10 -7.36787e-11 9.26168e-11 -7.27916e-11 7.2518e-11 -7.12127e-11 5.42108e-11 -6.90267e-11 3.75418e-11 -6.63002e-11 2.24915e-11 -6.31064e-11 9.03285e-12 -5.95266e-11 -2.82023e-12 -5.5643e-11 -1.30352e-11 -5.15608e-11 -2.15829e-11 -4.73868e-11 -2.84692e-11 -4.32347e-11 -3.37102e-11 -3.92202e-11 -3.7377e-11 -3.54557e-11 -3.95723e-11 -3.20489e-11 -4.04423e-11 -2.90927e-11 -4.01895e-11 -2.66595e-11 -3.90676e-11 -2.47899e-11 -3.73828e-11 -2.34917e-11 -3.54538e-11 -2.27306e-11 -3.36366e-11 -2.24352e-11 -3.22447e-11 -2.24941e-11 -3.15848e-11 -2.2768e-11 -3.1883e-11 -2.3092e-11 -3.33052e-11 -2.32947e-11 -3.58905e-11 -2.32127e-11 -3.95914e-11 -2.27057e-11 -4.42418e-11 -2.1668e-11 -4.95981e-11 -2.00407e-11 -5.53391e-11 -1.78142e-11 -6.11062e-11 -1.50307e-11 -6.65635e-11 -1.17655e-11 -7.1393e-11 -8.13961e-12 -7.53326e-11 -4.29337e-12 -7.82104e-11 -3.64498e-13 -7.99748e-11 3.5276e-12 -8.06995e-11 7.29171e-12 -8.04877e-11 1.0877e-11 -7.95274e-11 1.42681e-11 -7.80083e-11 1.74801e-11 -7.61095e-11 2.05593e-11 -7.3976e-11 2.35654e-11 -7.16846e-11 2.65609e-11 -6.92346e-11 2.95825e-11 -6.65222e-11 3.26377e-11 -6.33858e-11 3.5687e-11 -5.9629e-11 3.86551e-11 -5.50731e-11 4.14312e-11 -4.95769e-11 4.38815e-11 -4.30795e-11 4.58696e-11 -3.56264e-11 4.72766e-11 -2.73724e-11 4.80208e-11 -1.85715e-11 4.80712e-11 -9.54262e-12 4.74415e-11 -6.11297e-13 4.61929e-11 7.91577e-12 4.44055e-11 1.58095e-11 4.21653e-11 2.29111e-11 3.9551e-11 2.9125e-11 3.66327e-11 3.4387e-11 3.34749e-11 3.8642e-11 3.01479e-11 4.18187e-11 2.67379e-11 4.38387e-11 2.33558e-11 4.46271e-11 2.01329e-11 4.41494e-11 1.72066e-11 4.24461e-11 1.47022e-11 3.96585e-11 1.27196e-11 3.60169e-11 1.13165e-11 3.18258e-11 1.0503e-11 2.74273e-11 1.02492e-11 2.31645e-11 1.04811e-11 1.93595e-11 1.1091e-11 1.62872e-11 1.19521e-11 1.41467e-11 1.29178e-11 1.30649e-11 1.3834e-11 1.30791e-11 1.45544e-11 1.41306e-11 1.49502e-11 1.60667e-11 1.49333e-11 1.86364e-11 1.4465e-11 2.15315e-11 1.35595e-11 2.44034e-11 1.22845e-11 2.69235e-11 1.07432e-11 2.88333e-11 9.0924e-12 2.99546e-11 7.47536e-12 3.02275e-11 6.04091e-12 2.97003e-11 4.87727e-12 2.85461e-11 4.03237e-12 2.70931e-11 3.48725e-12 2.56524e-11 3.18365e-12 2.44869e-11 3.02578e-12 2.38957e-11 2.87225e-12 2.38993e-11 2.59769e-12 2.42824e-11 2.04154e-12 2.46788e-11 1.05211e-12 2.277e-11 1.52484e-11 -6.16694e-11 1.19829e-10 -6.84254e-11 1.92092e-10 -7.38433e-11 1.9137e-10 -7.72049e-11 1.67543e-10 -7.88783e-11 1.40334e-10 -7.92788e-11 1.15047e-10 -7.87256e-11 9.20637e-11 -7.73915e-11 7.11841e-11 -7.53958e-11 5.22152e-11 -7.2806e-11 3.49522e-11 -6.96841e-11 1.93699e-11 -6.60874e-11 5.43639e-12 -6.20967e-11 -6.81075e-12 -5.77974e-11 -1.73343e-11 -5.32979e-11 -2.60822e-11 -4.87145e-11 -3.30523e-11 -4.41672e-11 -3.82572e-11 -3.97837e-11 -4.17601e-11 -3.56869e-11 -4.36687e-11 -3.19986e-11 -4.41302e-11 -2.88239e-11 -4.33639e-11 -2.62456e-11 -4.16455e-11 -2.43131e-11 -3.93148e-11 -2.30369e-11 -3.67295e-11 -2.23811e-11 -3.4292e-11 -2.22654e-11 -3.236e-11 -2.25625e-11 -3.12872e-11 -2.31108e-11 -3.13343e-11 -2.37267e-11 -3.26888e-11 -2.42091e-11 -3.54077e-11 -2.43678e-11 -3.94324e-11 -2.40339e-11 -4.45753e-11 -2.30937e-11 -5.0538e-11 -2.14763e-11 -5.69561e-11 -1.91755e-11 -6.34067e-11 -1.62364e-11 -6.95022e-11 -1.27519e-11 -7.48771e-11 -8.86361e-12 -7.92204e-11 -4.7389e-12 -8.23347e-11 -5.40443e-13 -8.4173e-11 3.57424e-12 -8.4814e-11 7.52653e-12 -8.44399e-11 1.1254e-11 -8.32549e-11 1.47404e-11 -8.14947e-11 1.8014e-11 -7.93831e-11 2.11342e-11 -7.70962e-11 2.41834e-11 -7.47337e-11 2.72408e-11 -7.22919e-11 3.0368e-11 -6.96493e-11 3.35718e-11 -6.65895e-11 3.68192e-11 -6.28764e-11 4.00197e-11 -5.82736e-11 4.30447e-11 -5.2602e-11 4.57345e-11 -4.57695e-11 4.79236e-11 -3.78156e-11 4.9469e-11 -2.89177e-11 5.02741e-11 -1.93763e-11 5.0298e-11 -9.56624e-12 4.957e-11 1.1695e-13 4.8164e-11 9.3219e-12 4.61805e-11 1.77932e-11 4.37209e-11 2.53707e-11 4.08722e-11 3.19738e-11 3.77057e-11 3.75539e-11 3.42815e-11 4.20665e-11 3.06668e-11 4.54337e-11 2.69499e-11 4.7556e-11 2.32525e-11 4.83249e-11 1.97244e-11 4.7678e-11 1.65272e-11 4.56437e-11 1.38102e-11 4.2376e-11 1.16906e-11 3.81369e-11 1.02335e-11 3.32833e-11 9.45019e-12 2.82109e-11 9.30415e-12 2.33108e-11 9.7105e-12 1.89533e-11 1.05471e-11 1.54509e-11 1.16679e-11 1.30261e-11 1.29046e-11 1.18283e-11 1.40791e-11 1.19045e-11 1.50223e-11 1.31874e-11 1.55815e-11 1.55074e-11 1.5652e-11 1.85659e-11 1.5186e-11 2.19974e-11 1.41978e-11 2.53915e-11 1.27683e-11 2.8353e-11 1.10291e-11 3.05724e-11 9.16528e-12 3.18184e-11 7.35355e-12 3.20392e-11 5.76973e-12 3.12841e-11 4.52486e-12 2.9791e-11 3.6826e-12 2.79355e-11 3.21185e-12 2.61232e-11 3.03968e-12 2.46593e-11 3.02869e-12 2.3907e-11 3.02745e-12 2.39009e-11 2.87527e-12 2.44349e-11 2.37348e-12 2.51809e-11 1.26593e-12 2.38782e-11 1.65147e-11 -6.96495e-11 1.2451e-10 -7.63997e-11 1.98842e-10 -8.14684e-11 1.96439e-10 -8.42299e-11 1.70304e-10 -8.52598e-11 1.41364e-10 -8.50564e-11 1.14844e-10 -8.39727e-11 9.09801e-11 -8.21613e-11 6.93729e-11 -7.97334e-11 4.97875e-11 -7.67238e-11 3.19429e-11 -7.31846e-11 1.58309e-11 -6.91678e-11 1.41969e-12 -6.47444e-11 -1.1234e-11 -6.00049e-11 -2.20737e-11 -5.50596e-11 -3.10273e-11 -5.00364e-11 -3.80753e-11 -4.50645e-11 -4.32289e-11 -4.0281e-11 -4.65434e-11 -3.58212e-11 -4.81282e-11 -3.18231e-11 -4.81281e-11 -2.84098e-11 -4.67768e-11 -2.56763e-11 -4.43787e-11 -2.36791e-11 -4.13117e-11 -2.2434e-11 -3.79742e-11 -2.19003e-11 -3.48253e-11 -2.19916e-11 -3.22683e-11 -2.25655e-11 -3.0713e-11 -2.3437e-11 -3.04624e-11 -2.43915e-11 -3.1734e-11 -2.51997e-11 -3.45992e-11 -2.56377e-11 -3.89942e-11 -2.55145e-11 -4.46982e-11 -2.46895e-11 -5.13628e-11 -2.30864e-11 -5.8559e-11 -2.06987e-11 -6.57941e-11 -1.75815e-11 -7.26191e-11 -1.38423e-11 -7.8616e-11 -9.65098e-12 -8.34115e-11 -5.21101e-12 -8.67745e-11 -7.19989e-13 -8.86639e-11 3.66548e-12 -8.91995e-11 7.82434e-12 -8.85989e-11 1.16972e-11 -8.71279e-11 1.52726e-11 -8.50704e-11 1.85906e-11 -8.27013e-11 2.17304e-11 -8.02361e-11 2.4798e-11 -7.78015e-11 2.79063e-11 -7.54003e-11 3.11316e-11 -7.28748e-11 3.44967e-11 -6.99548e-11 3.79626e-11 -6.63426e-11 4.14299e-11 -6.17413e-11 4.47438e-11 -5.59163e-11 4.77134e-11 -4.87395e-11 5.01389e-11 -4.02414e-11 5.18463e-11 -3.06251e-11 5.27211e-11 -2.0251e-11 5.27161e-11 -9.56122e-12 5.18719e-11 9.61295e-13 5.02848e-11 1.0909e-11 4.80793e-11 1.99986e-11 4.53765e-11 2.80736e-11 4.22729e-11 3.50774e-11 3.88404e-11 4.09866e-11 3.51323e-11 4.57748e-11 3.1209e-11 4.93573e-11 2.71577e-11 5.16076e-11 2.31099e-11 5.23732e-11 1.92365e-11 5.15518e-11 1.57304e-11 4.91504e-11 1.27708e-11 4.53363e-11 1.04957e-11 4.04125e-11 8.98075e-12 3.47988e-11 8.23747e-12 2.89547e-11 8.21985e-12 2.3329e-11 8.83083e-12 1.8343e-11 9.93335e-12 1.4349e-11 1.13578e-11 1.16022e-11 1.29105e-11 1.02762e-11 1.43875e-11 1.04279e-11 1.55889e-11 1.19863e-11 1.6336e-11 1.47607e-11 1.65022e-11 1.83999e-11 1.60317e-11 2.2468e-11 1.49427e-11 2.64806e-11 1.33302e-11 2.99655e-11 1.13576e-11 3.2545e-11 9.23383e-12 3.3942e-11 7.18401e-12 3.40889e-11 5.42075e-12 3.30472e-11 4.0774e-12 3.11343e-11 3.23677e-12 2.87761e-11 2.87136e-12 2.64886e-11 2.85888e-12 2.46718e-11 3.01293e-12 2.37531e-11 3.19567e-12 2.37184e-11 3.18861e-12 2.44421e-11 2.74407e-12 2.56258e-11 1.51146e-12 2.51113e-11 1.80263e-11 -7.8892e-11 1.29092e-10 -8.53714e-11 2.05321e-10 -8.98135e-11 2.00881e-10 -9.17384e-11 1.72229e-10 -9.19712e-11 1.41596e-10 -9.10671e-11 1.1394e-10 -8.94002e-11 8.93133e-11 -8.70957e-11 6.70684e-11 -8.4216e-11 4.69079e-11 -8.07759e-11 2.85029e-11 -7.68045e-11 1.18595e-11 -7.23486e-11 -3.0362e-12 -6.74695e-11 -1.6113e-11 -6.22618e-11 -2.72814e-11 -5.6841e-11 -3.64481e-11 -5.13458e-11 -4.35704e-11 -4.59163e-11 -4.86582e-11 -4.06992e-11 -5.17604e-11 -3.58441e-11 -5.29831e-11 -3.15063e-11 -5.24658e-11 -2.78303e-11 -5.04526e-11 -2.49248e-11 -4.7284e-11 -2.28597e-11 -4.33767e-11 -2.16525e-11 -3.91812e-11 -2.12664e-11 -3.52112e-11 -2.16e-11 -3.19345e-11 -2.2496e-11 -2.9817e-11 -2.37423e-11 -2.9216e-11 -2.50934e-11 -3.03828e-11 -2.62828e-11 -3.34096e-11 -2.70489e-11 -3.8228e-11 -2.7172e-11 -4.45751e-11 -2.64782e-11 -5.20565e-11 -2.48952e-11 -6.0142e-11 -2.24049e-11 -6.82843e-11 -1.90821e-11 -7.59418e-11 -1.50474e-11 -8.26506e-11 -1.05019e-11 -8.79569e-11 -5.69462e-12 -9.15818e-11 -8.62305e-13 -9.34963e-11 3.8113e-12 -9.38734e-11 8.1923e-12 -9.29802e-11 1.22141e-11 -9.11501e-11 1.58702e-11 -8.87269e-11 1.92118e-11 -8.60433e-11 2.23447e-11 -8.33694e-11 2.54058e-11 -8.08631e-11 2.85412e-11 -7.85361e-11 3.18619e-11 -7.61959e-11 3.53956e-11 -7.34889e-11 3.91062e-11 -7.00539e-11 4.28779e-11 -6.55136e-11 4.65285e-11 -5.95675e-11 4.98267e-11 -5.20383e-11 5.25322e-11 -4.29473e-11 5.44331e-11 -3.25264e-11 5.53857e-11 -2.12037e-11 5.5345e-11 -9.52075e-12 5.43612e-11 1.94482e-12 5.25618e-11 1.27082e-11 5.01038e-11 2.24564e-11 4.71335e-11 3.10438e-11 4.37589e-11 3.8452e-11 4.00484e-11 4.4697e-11 3.60423e-11 4.97809e-11 3.17886e-11 5.36111e-11 2.73703e-11 5.6026e-11 2.2929e-11 5.68146e-11 1.86632e-11 5.58179e-11 1.48041e-11 5.30098e-11 1.15672e-11 4.85736e-11 9.11781e-12 4.28623e-11 7.54282e-12 3.63743e-11 6.84967e-12 2.96485e-11 6.98161e-12 2.31979e-11 7.8297e-12 1.74958e-11 9.23796e-12 1.29417e-11 1.10121e-11 9.82883e-12 1.29324e-11 8.35665e-12 1.47626e-11 8.59852e-12 1.62677e-11 1.04819e-11 1.72353e-11 1.37938e-11 1.75128e-11 1.81229e-11 1.70334e-11 2.29478e-11 1.58206e-11 2.76938e-11 1.39895e-11 3.17969e-11 1.1728e-11 3.48067e-11 9.28627e-12 3.63838e-11 6.948e-12 3.64272e-11 4.9684e-12 3.50269e-11 3.51788e-12 3.25848e-11 2.68054e-12 2.96133e-11 2.42615e-12 2.67429e-11 2.61487e-12 2.44831e-11 3.00756e-12 2.33605e-11 3.39282e-12 2.33332e-11 3.53102e-12 2.4304e-11 3.15131e-12 2.60058e-11 1.78797e-12 2.64749e-11 1.98141e-11 -9.00537e-11 1.33116e-10 -9.56862e-11 2.10953e-10 -9.90166e-11 2.04211e-10 -9.97613e-11 1.72974e-10 -9.9005e-11 1.4084e-10 -9.72966e-11 1.12232e-10 -9.50043e-11 8.7021e-11 -9.218e-11 6.42442e-11 -8.88412e-11 4.3569e-11 -8.49622e-11 2.46238e-11 -8.05463e-11 7.44349e-12 -7.56355e-11 -7.94706e-12 -7.02772e-11 -2.14714e-11 -6.45727e-11 -3.29859e-11 -5.86421e-11 -4.23787e-11 -5.26391e-11 -4.95733e-11 -4.67164e-11 -5.45808e-11 -4.10288e-11 -5.74479e-11 -3.57418e-11 -5.82702e-11 -3.10295e-11 -5.7178e-11 -2.70628e-11 -5.44194e-11 -2.3967e-11 -5.03798e-11 -2.18286e-11 -4.55152e-11 -2.06678e-11 -4.0342e-11 -2.045e-11 -3.54291e-11 -2.10659e-11 -3.13186e-11 -2.23366e-11 -2.85464e-11 -2.40176e-11 -2.7535e-11 -2.58319e-11 -2.85686e-11 -2.74667e-11 -3.17749e-11 -2.86173e-11 -3.70776e-11 -2.9023e-11 -4.41695e-11 -2.84863e-11 -5.25933e-11 -2.69213e-11 -6.17072e-11 -2.43176e-11 -7.08881e-11 -2.07585e-11 -7.95011e-11 -1.63794e-11 -8.70297e-11 -1.14208e-11 -9.29156e-11 -6.18869e-12 -9.68141e-11 -9.68281e-13 -9.8717e-11 4.0254e-12 -9.88674e-11 8.64622e-12 -9.76014e-11 1.28206e-11 -9.53249e-11 1.65436e-11 -9.24504e-11 1.98861e-11 -8.93862e-11 2.29749e-11 -8.64586e-11 2.5994e-11 -8.38825e-11 2.91324e-11 -8.16749e-11 3.25324e-11 -7.95964e-11 3.62448e-11 -7.72019e-11 4.02281e-11 -7.40379e-11 4.435e-11 -6.96361e-11 4.83965e-11 -6.36146e-11 5.2087e-11 -5.57294e-11 5.5125e-11 -4.59858e-11 5.72535e-11 -3.46553e-11 5.82995e-11 -2.225e-11 5.8208e-11 -9.42964e-12 5.70531e-11 3.09927e-12 5.50023e-11 1.47586e-11 5.22568e-11 2.52016e-11 4.89933e-11 3.43069e-11 4.53317e-11 4.21133e-11 4.13342e-11 4.86942e-11 3.70203e-11 5.40946e-11 3.24164e-11 5.82148e-11 2.75967e-11 6.08456e-11 2.27132e-11 6.16979e-11 1.79988e-11 6.05323e-11 1.37342e-11 5.72744e-11 1.01805e-11 5.21273e-11 7.53641e-12 4.55066e-11 5.89913e-12 3.80119e-11 5.26587e-12 3.02823e-11 5.57098e-12 2.28934e-11 6.69148e-12 1.6376e-11 8.44955e-12 1.11844e-11 1.06281e-11 7.65106e-12 1.29746e-11 6.01088e-12 1.52153e-11 6.35854e-12 1.7077e-11 8.62094e-12 1.83037e-11 1.25679e-11 1.87106e-11 1.77166e-11 1.82179e-11 2.34411e-11 1.68576e-11 2.90546e-11 1.47517e-11 3.39033e-11 1.21339e-11 3.74248e-11 9.30928e-12 3.92087e-11 6.63117e-12 3.91056e-11 4.39231e-12 3.7266e-11 2.82599e-12 3.41513e-11 1.99758e-12 3.04419e-11 1.88064e-12 2.686e-11 2.30219e-12 2.40617e-11 2.98729e-12 2.26755e-11 3.62196e-12 2.26984e-11 3.92707e-12 2.39989e-11 3.59076e-12 2.63423e-11 2.08641e-12 2.79791e-11 2.19001e-11 -1.04026e-10 1.35779e-10 -1.07756e-10 2.14684e-10 -1.09209e-10 2.05664e-10 -1.08305e-10 1.7207e-10 -1.06336e-10 1.38871e-10 -1.03719e-10 1.09615e-10 -1.00769e-10 8.40709e-11 -9.74118e-11 6.08867e-11 -9.36109e-11 3.9768e-11 -8.92874e-11 2.03001e-11 -8.44156e-11 2.57154e-12 -7.90319e-11 -1.33308e-11 -7.31705e-11 -2.73329e-11 -6.69364e-11 -3.922e-11 -6.04579e-11 -4.88573e-11 -5.39076e-11 -5.61236e-11 -4.74521e-11 -6.10364e-11 -4.1253e-11 -6.36471e-11 -3.54901e-11 -6.40332e-11 -3.03621e-11 -6.23062e-11 -2.60735e-11 -5.87083e-11 -2.2767e-11 -5.36866e-11 -2.05491e-11 -4.77334e-11 -1.94429e-11 -4.14484e-11 -1.94204e-11 -3.5452e-11 -2.03613e-11 -3.0378e-11 -2.20619e-11 -2.6846e-11 -2.42551e-11 -2.53421e-11 -2.66097e-11 -2.62143e-11 -2.87671e-11 -2.96178e-11 -3.03687e-11 -3.54761e-11 -3.10988e-11 -4.34396e-11 -3.07499e-11 -5.29423e-11 -2.92023e-11 -6.3255e-11 -2.64693e-11 -7.36212e-11 -2.26374e-11 -8.33332e-11 -1.78573e-11 -9.18099e-11 -1.24126e-11 -9.83604e-11 -6.68266e-12 -1.02544e-10 -1.0185e-12 -1.04381e-10 4.33645e-12 -1.04223e-10 9.21646e-12 -1.02482e-10 1.35441e-11 -9.96528e-11 1.7319e-11 -9.62255e-11 2.06301e-11 -9.26974e-11 2.36349e-11 -8.94636e-11 2.65602e-11 -8.68081e-11 2.96655e-11 -8.47805e-11 3.3133e-11 -8.30642e-11 3.70295e-11 -8.10989e-11 4.13172e-11 -7.8326e-11 4.5843e-11 -7.41622e-11 5.03534e-11 -6.81254e-11 5.45085e-11 -5.98849e-11 5.79441e-11 -4.94216e-11 6.03441e-11 -3.70555e-11 6.14984e-11 -2.34045e-11 6.13396e-11 -9.27111e-12 5.99726e-11 4.46601e-12 5.76207e-11 1.71103e-11 5.45435e-11 2.82786e-11 5.09558e-11 3.78945e-11 4.69906e-11 4.60783e-11 4.26998e-11 5.29848e-11 3.80714e-11 5.87227e-11 3.31e-11 6.31858e-11 2.78435e-11 6.61017e-11 2.24622e-11 6.70789e-11 1.72313e-11 6.57628e-11 1.24967e-11 6.20087e-11 8.57687e-12 5.60468e-11 5.71432e-12 4.83689e-11 4.01699e-12 3.97092e-11 3.46028e-12 3.08391e-11 3.9659e-12 2.2388e-11 5.39854e-12 1.49437e-11 7.55586e-12 9.02734e-12 1.01992e-11 5.00808e-12 1.30396e-11 3.17078e-12 1.57575e-11 3.64113e-12 1.80405e-11 6.33838e-12 1.9573e-11 1.10358e-11 2.01327e-11 1.71573e-11 1.96273e-11 2.39469e-11 1.80842e-11 3.05981e-11 1.56486e-11 3.63394e-11 1.26016e-11 4.04723e-11 9.31519e-12 4.24956e-11 6.21386e-12 4.22074e-11 3.66675e-12 3.98136e-11 1.9607e-12 3.58578e-11 1.1619e-12 3.1241e-11 1.21399e-12 2.68082e-11 1.9462e-12 2.33298e-11 2.98015e-12 2.16416e-11 3.90041e-12 2.17782e-11 4.38617e-12 2.35133e-11 4.07206e-12 2.66563e-11 2.40504e-12 2.96457e-11 2.43049e-11 -1.21851e-10 1.35904e-10 -1.22035e-10 2.14868e-10 -1.20536e-10 2.04165e-10 -1.17387e-10 1.6892e-10 -1.13957e-10 1.35442e-10 -1.10342e-10 1.05999e-10 -1.06701e-10 8.04298e-11 -1.02807e-10 5.69926e-11 -9.85423e-11 3.5503e-11 -9.37667e-11 1.55245e-11 -8.84212e-11 -2.77391e-12 -8.25456e-11 -1.92063e-11 -7.61491e-11 -3.37293e-11 -6.93445e-11 -4.60245e-11 -6.22741e-11 -5.59277e-11 -5.51323e-11 -6.32655e-11 -4.81008e-11 -6.8068e-11 -4.13436e-11 -7.04046e-11 -3.50544e-11 -7.03227e-11 -2.94617e-11 -6.78991e-11 -2.4813e-11 -6.33574e-11 -2.12699e-11 -5.72301e-11 -1.89646e-11 -5.0039e-11 -1.7922e-11 -4.24914e-11 -1.81225e-11 -3.52519e-11 -1.94379e-11 -2.90629e-11 -2.16367e-11 -2.46475e-11 -2.44155e-11 -2.25636e-11 -2.73973e-11 -2.32327e-11 -3.01661e-11 -2.68491e-11 -3.2299e-11 -3.33434e-11 -3.34212e-11 -4.23175e-11 -3.32838e-11 -5.30799e-11 -3.17604e-11 -6.47786e-11 -2.88864e-11 -7.64953e-11 -2.47328e-11 -8.74868e-11 -1.94789e-11 -9.70639e-11 -1.34637e-11 -1.04376e-10 -7.17003e-12 -1.08838e-10 -9.81946e-13 -1.10569e-10 4.77673e-12 -1.09981e-10 9.93808e-12 -1.07643e-10 1.44183e-11 -1.04133e-10 1.82246e-11 -1.00032e-10 2.14634e-11 -9.5936e-11 2.43263e-11 -9.23264e-11 2.70999e-11 -8.95817e-11 3.01202e-11 -8.78008e-11 3.36334e-11 -8.65774e-11 3.77216e-11 -8.51871e-11 4.23512e-11 -8.29556e-11 4.7344e-11 -7.9155e-11 5.24036e-11 -7.31849e-11 5.71136e-11 -6.45948e-11 6.10257e-11 -5.33336e-11 6.37504e-11 -3.97801e-11 6.50311e-11 -2.46852e-11 6.47803e-11 -9.0202e-12 6.31463e-11 6.10011e-12 6.04285e-11 1.98283e-11 5.69655e-11 3.17419e-11 5.30189e-11 4.18413e-11 4.87366e-11 5.03607e-11 4.41547e-11 5.75667e-11 3.92139e-11 6.36635e-11 3.38619e-11 6.85377e-11 2.81321e-11 7.18314e-11 2.21876e-11 7.30232e-11 1.63567e-11 7.15936e-11 1.10741e-11 6.72909e-11 6.7287e-12 6.0392e-11 3.62221e-12 5.14752e-11 1.87621e-12 4.1455e-11 1.42086e-12 3.12943e-11 2.15134e-12 2.16574e-11 3.93622e-12 1.31587e-11 6.54783e-12 6.4156e-12 9.72472e-12 1.83107e-12 1.31377e-11 -2.42308e-13 1.64067e-11 3.7213e-13 1.91899e-11 3.55515e-12 2.1084e-11 9.14163e-12 2.18232e-11 1.64182e-11 2.1299e-11 2.44712e-11 1.95317e-11 3.23657e-11 1.67004e-11 3.91709e-11 1.31381e-11 4.4035e-11 9.29635e-12 4.63377e-11 5.67524e-12 4.5829e-11 2.76038e-12 4.2729e-11 9.03711e-13 3.77149e-11 1.6216e-13 3.1983e-11 4.28035e-13 2.65429e-11 1.53068e-12 2.22275e-11 2.9827e-12 2.01899e-11 4.2464e-12 2.05148e-11 4.90342e-12 2.28565e-11 4.58076e-12 2.69789e-11 2.72411e-12 3.15019e-11 2.70289e-11 -1.44678e-10 1.32256e-10 -1.39095e-10 2.09285e-10 -1.33253e-10 1.98323e-10 -1.27144e-10 1.6281e-10 -1.2202e-10 1.30318e-10 -1.17291e-10 1.0127e-10 -1.12922e-10 7.60607e-11 -1.08468e-10 5.25391e-11 -1.03718e-10 3.07531e-11 -9.8461e-11 1.02673e-11 -9.25995e-11 -8.63514e-12 -8.61879e-11 -2.56177e-11 -7.91991e-11 -4.0718e-11 -7.17669e-11 -5.34566e-11 -6.40445e-11 -6.36502e-11 -5.62543e-11 -7.10558e-11 -4.85965e-11 -7.5726e-11 -4.12274e-11 -7.7774e-11 -3.43467e-11 -7.72038e-11 -2.82253e-11 -7.40209e-11 -2.31686e-11 -6.84144e-11 -1.93567e-11 -6.10423e-11 -1.69544e-11 -5.24416e-11 -1.59831e-11 -4.34631e-11 -1.64366e-11 -3.47986e-11 -1.81797e-11 -2.732e-11 -2.09529e-11 -2.18746e-11 -2.44111e-11 -1.91056e-11 -2.81271e-11 -1.95169e-11 -3.16192e-11 -2.33572e-11 -3.43862e-11 -3.05765e-11 -3.59569e-11 -4.07469e-11 -3.60678e-11 -5.2969e-11 -3.45728e-11 -6.62736e-11 -3.15215e-11 -7.95466e-11 -2.70178e-11 -9.19905e-11 -2.12124e-11 -1.02869e-10 -1.45153e-11 -1.11073e-10 -7.53566e-12 -1.15817e-10 -7.8859e-13 -1.17316e-10 5.42434e-12 -1.16194e-10 1.08856e-11 -1.13104e-10 1.5516e-11 -1.08763e-10 1.93237e-11 -1.03839e-10 2.2438e-11 -9.90499e-11 2.50859e-11 -9.49739e-11 2.76245e-11 -9.21201e-11 3.04993e-11 -9.06754e-11 3.40281e-11 -9.0106e-11 3.83105e-11 -8.94692e-11 4.33219e-11 -8.79667e-11 4.88597e-11 -8.46924e-11 5.4564e-11 -7.88888e-11 5.9947e-11 -6.99774e-11 6.44269e-11 -5.78132e-11 6.75386e-11 -4.28915e-11 6.89687e-11 -2.6115e-11 6.85912e-11 -8.64239e-12 6.66163e-11 8.07545e-12 6.34471e-11 2.29981e-11 5.95293e-11 3.56603e-11 5.51831e-11 4.6188e-11 5.05708e-11 5.49735e-11 4.5708e-11 6.24298e-11 4.04692e-11 6.89025e-11 3.47278e-11 7.42794e-11 2.84864e-11 7.8073e-11 2.19013e-11 7.96085e-11 1.53715e-11 7.81235e-11 9.44569e-12 7.32168e-11 4.60774e-12 6.523e-11 1.24171e-12 5.48412e-11 -5.60824e-13 4.32575e-11 -8.57187e-13 3.15906e-11 1.47559e-13 2.06526e-11 2.29977e-12 1.10063e-11 5.42284e-12 3.29224e-12 9.20653e-12 -1.9529e-12 1.32553e-11 -4.29134e-12 1.71616e-11 -3.53442e-12 2.05646e-11 1.51806e-13 2.2886e-11 6.81996e-12 2.38346e-11 1.54694e-11 2.32816e-11 2.5024e-11 2.12506e-11 3.43967e-11 1.79423e-11 4.24792e-11 1.37581e-11 4.82193e-11 9.24129e-12 5.08548e-11 4.99563e-12 5.00751e-11 1.61165e-12 4.61133e-11 -5.27838e-13 3.98548e-11 -1.18669e-12 3.26424e-11 -5.14203e-13 2.58708e-11 1.00927e-12 2.07044e-11 3.00434e-12 1.81952e-11 4.71115e-12 1.88084e-11 5.55355e-12 2.20143e-11 5.15084e-12 2.73814e-11 3.07072e-12 3.3582e-11 3.00999e-11 -1.73531e-10 1.23426e-10 -1.59711e-10 1.95464e-10 -1.47978e-10 1.8659e-10 -1.3815e-10 1.52982e-10 -1.31098e-10 1.23265e-10 -1.25093e-10 9.52653e-11 -1.19887e-10 7.08548e-11 -1.14766e-10 4.74181e-11 -1.09418e-10 2.54055e-11 -1.03553e-10 4.40217e-12 -9.70488e-11 -1.51388e-11 -8.99955e-11 -3.26709e-11 -8.23149e-11 -4.83985e-11 -7.41432e-11 -6.16283e-11 -6.56601e-11 -7.21334e-11 -5.71233e-11 -7.95927e-11 -4.87588e-11 -8.40907e-11 -4.06978e-11 -8.58352e-11 -3.3125e-11 -8.47768e-11 -2.63785e-11 -8.07676e-11 -2.08453e-11 -7.39478e-11 -1.67211e-11 -6.51667e-11 -1.42142e-11 -5.49485e-11 -1.33278e-11 -4.43497e-11 -1.40688e-11 -3.40577e-11 -1.6307e-11 -2.50819e-11 -1.97321e-11 -1.84497e-11 -2.39626e-11 -1.48751e-11 -2.85529e-11 -1.49266e-11 -3.28968e-11 -1.90133e-11 -3.64222e-11 -2.7051e-11 -3.85284e-11 -3.86406e-11 -3.89303e-11 -5.2567e-11 -3.74741e-11 -6.77298e-11 -3.42439e-11 -8.27768e-11 -2.93448e-11 -9.68896e-11 -2.28978e-11 -1.09316e-10 -1.53984e-11 -1.18572e-10 -7.63745e-12 -1.23578e-10 -2.14225e-13 -1.24739e-10 6.48169e-12 -1.22889e-10 1.22555e-11 -1.18877e-10 1.70251e-11 -1.13532e-10 2.07911e-11 -1.07605e-10 2.37118e-11 -1.0197e-10 2.60503e-11 -9.7312e-11 2.82418e-11 -9.43113e-11 3.08848e-11 -9.33182e-11 3.43849e-11 -9.36058e-11 3.88488e-11 -9.39328e-11 4.42857e-11 -9.34032e-11 5.04506e-11 -9.08568e-11 5.69202e-11 -8.53579e-11 6.31109e-11 -7.61677e-11 6.82724e-11 -6.29744e-11 7.18425e-11 -4.64613e-11 7.34472e-11 -2.77195e-11 7.28878e-11 -8.08267e-12 7.04631e-11 1.05005e-11 6.67255e-11 2.67363e-11 6.22664e-11 4.01201e-11 5.7475e-11 5.09799e-11 5.25213e-11 5.99276e-11 4.74044e-11 6.75472e-11 4.1891e-11 7.44163e-11 3.57563e-11 8.04146e-11 2.89684e-11 8.48614e-11 2.16438e-11 8.69336e-11 1.42705e-11 8.54973e-11 7.57951e-12 7.99082e-11 2.15639e-12 7.06534e-11 -1.60366e-12 5.86016e-11 -3.42897e-12 4.50831e-11 -3.55489e-12 3.17167e-11 -2.15559e-12 1.92533e-11 4.80095e-13 8.37054e-12 4.19e-12 -4.17744e-13 8.63385e-12 -6.39684e-12 1.34506e-11 -9.10823e-12 1.81129e-11 -8.19688e-12 2.22428e-11 -3.97825e-12 2.5046e-11 4.01652e-12 2.62328e-11 1.42824e-11 2.56475e-11 2.56091e-11 2.33074e-11 3.67367e-11 1.94168e-11 4.63698e-11 1.44655e-11 5.31707e-11 9.10839e-12 5.6212e-11 4.07593e-12 5.51077e-11 7.87377e-14 5.01107e-11 -2.3041e-12 4.22379e-11 -2.84264e-12 3.31812e-11 -1.74822e-12 2.47767e-11 4.01961e-13 1.85545e-11 3.1089e-12 1.54886e-11 5.37377e-12 1.65439e-11 6.40564e-12 2.09825e-11 5.85741e-12 2.79296e-11 3.49595e-12 3.59438e-11 3.35963e-11 -2.08875e-10 1.10632e-10 -1.85295e-10 1.71884e-10 -1.66391e-10 1.67686e-10 -1.52159e-10 1.3875e-10 -1.42883e-10 1.1399e-10 -1.35253e-10 8.76358e-11 -1.28878e-10 6.44803e-11 -1.2276e-10 4.13003e-11 -1.16478e-10 1.91233e-11 -1.09662e-10 -2.41389e-12 -1.02199e-10 -2.26018e-11 -9.42234e-11 -4.06461e-11 -8.5577e-11 -5.70448e-11 -7.64072e-11 -7.07981e-11 -6.69332e-11 -8.16075e-11 -5.7449e-11 -8.9077e-11 -4.82016e-11 -9.33382e-11 -3.93026e-11 -9.47343e-11 -3.08994e-11 -9.31799e-11 -2.34122e-11 -8.82548e-11 -1.73084e-11 -8.00515e-11 -1.27759e-11 -6.96991e-11 -1.00996e-11 -5.76247e-11 -9.25636e-12 -4.51929e-11 -1.02566e-11 -3.30575e-11 -1.30086e-11 -2.23298e-11 -1.70914e-11 -1.43669e-11 -2.21046e-11 -9.86177e-12 -2.78315e-11 -9.19973e-12 -3.33458e-11 -1.34989e-11 -3.78054e-11 -2.25914e-11 -4.05352e-11 -3.59107e-11 -4.12854e-11 -5.18167e-11 -3.99032e-11 -6.9112e-11 -3.64932e-11 -8.61868e-11 -3.11693e-11 -1.02214e-10 -2.39905e-11 -1.16495e-10 -1.55611e-11 -1.27001e-10 -6.89257e-12 -1.32247e-10 1.26835e-12 -1.329e-10 8.49386e-12 -1.30114e-10 1.45877e-11 -1.2497e-10 1.94781e-11 -1.18422e-10 2.31414e-11 -1.11267e-10 2.57815e-11 -1.0461e-10 2.77011e-11 -9.92314e-11 2.93948e-11 -9.6005e-11 3.16538e-11 -9.55771e-11 3.50013e-11 -9.69532e-11 3.95839e-11 -9.85151e-11 4.54862e-11 -9.93053e-11 5.23858e-11 -9.77561e-11 5.97667e-11 -9.27385e-11 6.6935e-11 -8.33359e-11 7.28974e-11 -6.89368e-11 7.69923e-11 -5.05563e-11 7.87768e-11 -2.95041e-11 7.79447e-11 -7.25052e-12 7.49167e-11 1.35287e-11 7.04457e-11 3.12075e-11 6.53361e-11 4.52298e-11 6.00515e-11 5.62646e-11 5.47522e-11 6.52271e-11 4.94338e-11 7.28657e-11 4.36993e-11 8.0151e-11 3.71697e-11 8.69445e-11 2.97955e-11 9.22359e-11 2.16029e-11 9.51266e-11 1.31937e-11 9.39068e-11 5.58159e-12 8.75207e-11 -5.85936e-13 7.68214e-11 -4.68635e-12 6.27024e-11 -6.46638e-12 4.68635e-11 -6.3803e-12 3.16309e-11 -4.59158e-12 1.74648e-11 -1.41156e-12 5.1907e-12 2.81348e-12 -4.64255e-12 8.08074e-12 -1.16638e-11 1.37863e-11 -1.48136e-11 1.92657e-11 -1.36761e-11 2.39735e-11 -8.68588e-12 2.7647e-11 3.43139e-13 2.91307e-11 1.27989e-11 2.85007e-11 2.62392e-11 2.57992e-11 3.94383e-11 2.12067e-11 5.09625e-11 1.53148e-11 5.90627e-11 8.93239e-12 6.25946e-11 2.93381e-12 6.11063e-11 -1.79256e-12 5.48371e-11 -4.47096e-12 4.49164e-11 -4.8429e-12 3.35532e-11 -3.16736e-12 2.31012e-11 -1.61656e-13 1.55488e-11 3.34299e-12 1.19841e-11 6.37292e-12 1.3514e-11 7.6166e-12 1.97387e-11 6.86116e-12 2.86852e-11 4.10116e-12 3.87043e-11 3.76977e-11 -2.50852e-10 9.637e-11 -2.18728e-10 1.3976e-10 -1.92475e-10 1.41433e-10 -1.7311e-10 1.19385e-10 -1.61146e-10 1.02026e-10 -1.51053e-10 7.7543e-11 -1.42703e-10 5.61302e-11 -1.34823e-10 3.34208e-11 -1.26807e-10 1.11073e-11 -1.18082e-10 -1.11388e-11 -1.08944e-10 -3.17404e-11 -9.9407e-11 -5.01828e-11 -8.92015e-11 -6.72503e-11 -7.85019e-11 -8.14976e-11 -6.75639e-11 -9.25453e-11 -5.67184e-11 -9.99225e-11 -4.62332e-11 -1.03823e-10 -3.6174e-11 -1.04793e-10 -2.6538e-11 -1.02816e-10 -1.79386e-11 -9.6854e-11 -1.09892e-11 -8.70007e-11 -5.83924e-12 -7.48489e-11 -2.92054e-12 -6.05432e-11 -2.12737e-12 -4.59859e-11 -3.39585e-12 -3.17889e-11 -6.79362e-12 -1.89319e-11 -1.18615e-11 -9.29898e-12 -1.82654e-11 -3.45777e-12 -2.57855e-11 -1.67954e-12 -3.21043e-11 -7.18005e-12 -3.71219e-11 -1.75737e-11 -4.05029e-11 -3.25297e-11 -4.17009e-11 -5.06187e-11 -4.04461e-11 -7.03667e-11 -3.68821e-11 -8.97508e-11 -3.11007e-11 -1.07995e-10 -2.31108e-11 -1.24485e-10 -1.36678e-11 -1.36444e-10 -4.0154e-12 -1.41899e-10 4.97735e-12 -1.41892e-10 1.27824e-11 -1.37919e-10 1.91937e-11 -1.31382e-10 2.41603e-11 -1.23388e-10 2.75902e-11 -1.14697e-10 2.97858e-11 -1.06805e-10 3.11221e-11 -1.00568e-10 3.21027e-11 -9.69856e-11 3.37783e-11 -9.72527e-11 3.68123e-11 -9.99873e-11 4.1391e-11 -1.03094e-10 4.78079e-11 -1.05722e-10 5.55896e-11 -1.05538e-10 6.40541e-11 -1.01203e-10 7.24184e-11 -9.17003e-11 7.92869e-11 -7.58057e-11 8.39484e-11 -5.52181e-11 8.60673e-11 -3.16234e-11 8.50654e-11 -6.24886e-12 8.06936e-11 1.79002e-11 7.52125e-11 3.66884e-11 6.92608e-11 5.11813e-11 6.33737e-11 6.21514e-11 5.76663e-11 7.09341e-11 5.21905e-11 7.83412e-11 4.62967e-11 8.60446e-11 3.93528e-11 9.38883e-11 3.13682e-11 1.0022e-10 2.21635e-11 1.04331e-10 1.24321e-11 1.03638e-10 3.67545e-12 9.62774e-11 -3.38456e-12 8.38815e-11 -8.00644e-12 6.73244e-11 -9.71642e-12 4.85736e-11 -9.40031e-12 3.13149e-11 -7.22432e-12 1.52889e-11 -3.12237e-12 1.08899e-12 1.70832e-12 -9.4729e-12 7.72492e-12 -1.768e-11 1.44279e-11 -2.15162e-11 2.08562e-11 -2.01039e-11 2.67638e-11 -1.4593e-11 3.15753e-11 -4.46794e-12 3.27986e-11 1.1576e-11 3.20965e-11 2.69418e-11 2.89712e-11 4.25639e-11 2.3516e-11 5.64181e-11 1.64593e-11 6.61197e-11 8.79811e-12 7.0256e-11 1.62513e-12 6.82794e-11 -3.99885e-12 6.04612e-11 -7.05629e-12 4.79739e-11 -7.35861e-12 3.38555e-11 -5.00225e-12 2.07447e-11 -7.70972e-13 1.13175e-11 4.17748e-12 7.03554e-12 7.9671e-12 9.72414e-12 9.43917e-12 1.82665e-11 8.401e-12 2.97236e-11 5.04106e-12 4.20646e-11 4.27388e-11 -2.92567e-10 9.25985e-11 -2.62168e-10 1.09361e-10 -2.3253e-10 1.11795e-10 -2.08795e-10 9.56512e-11 -1.9294e-10 8.61708e-11 -1.78758e-10 6.3361e-11 -1.66455e-10 4.38271e-11 -1.54715e-10 2.16809e-11 -1.41828e-10 -1.78045e-12 -1.31226e-10 -2.17403e-11 -1.19463e-10 -4.35035e-11 -1.07205e-10 -6.2441e-11 -9.43894e-11 -8.00658e-11 -8.12875e-11 -9.45996e-11 -6.81617e-11 -1.05671e-10 -5.52545e-11 -1.1283e-10 -4.28262e-11 -1.16251e-10 -3.1059e-11 -1.16561e-10 -1.96963e-11 -1.14179e-10 -9.56653e-12 -1.06984e-10 -1.32611e-12 -9.52411e-11 4.85876e-12 -8.10335e-11 8.43127e-12 -6.41156e-11 9.54217e-12 -4.70966e-11 8.24632e-12 -3.04929e-11 4.08879e-12 -1.47743e-11 -1.65049e-12 -3.55972e-12 -8.29221e-12 3.18397e-12 -1.58834e-11 5.91171e-12 -2.27685e-11 -2.9532e-13 -2.94374e-11 -1.09073e-11 -3.45776e-11 -2.73921e-11 -3.70107e-11 -4.81855e-11 -3.61502e-11 -7.12272e-11 -3.24136e-11 -9.34875e-11 -2.60501e-11 -1.14358e-10 -1.72559e-11 -1.33279e-10 -6.9136e-12 -1.46786e-10 3.59353e-12 -1.52406e-10 1.36373e-11 -1.51936e-10 2.22883e-11 -1.4657e-10 2.91939e-11 -1.38287e-10 3.43081e-11 -1.28502e-10 3.7374e-11 -1.17763e-10 3.89208e-11 -1.08352e-10 3.94617e-11 -1.01109e-10 3.93466e-11 -9.68705e-11 3.99939e-11 -9.79001e-11 4.22706e-11 -1.02264e-10 4.65163e-11 -1.07339e-10 5.3495e-11 -1.12701e-10 6.23942e-11 -1.14437e-10 7.22017e-11 -1.1101e-10 8.2157e-11 -1.01655e-10 9.01076e-11 -8.37559e-11 9.52596e-11 -6.03701e-11 9.73412e-11 -3.37043e-11 9.34729e-11 -2.38084e-12 8.98433e-11 2.15294e-11 8.32523e-11 4.3279e-11 7.60788e-11 5.83544e-11 6.93418e-11 6.88879e-11 6.30163e-11 7.72591e-11 5.73638e-11 8.39932e-11 5.12946e-11 9.21133e-11 4.38192e-11 1.01363e-10 3.52013e-11 1.08838e-10 2.48188e-11 1.14713e-10 1.33634e-11 1.15093e-10 3.23026e-12 1.0641e-10 -4.87931e-12 9.19908e-11 -1.01887e-11 7.26335e-11 -1.15803e-11 4.99649e-11 -1.093e-11 3.06643e-11 -8.28571e-12 1.26445e-11 -3.68583e-12 -3.50989e-12 1.61666e-12 -1.47767e-11 8.50219e-12 -2.45658e-11 1.64213e-11 -2.9435e-11 2.37548e-11 -2.74383e-11 3.05124e-11 -2.13506e-11 3.47384e-11 -8.69332e-12 3.77404e-11 8.5746e-12 3.73145e-11 2.73682e-11 3.36719e-11 4.62071e-11 2.70943e-11 6.29962e-11 1.85565e-11 7.46579e-11 9.29969e-12 7.95132e-11 6.5246e-13 7.69269e-11 -6.22221e-12 6.73361e-11 -9.83069e-12 5.15825e-11 -9.65739e-12 3.36822e-11 -6.3071e-12 1.73942e-11 -1.29569e-12 6.30584e-12 4.30476e-12 1.43481e-12 9.38702e-12 4.64154e-12 1.20614e-11 1.5592e-11 1.0735e-11 3.10502e-11 6.71091e-12 4.60887e-11 4.94495e-11 -3.22974e-10 7.75406e-11 -3.11882e-10 7.28726e-11 -2.89591e-10 6.63212e-11 -2.68829e-10 5.54744e-11 -2.43161e-10 4.47197e-11 -2.23446e-10 3.22412e-11 -2.03452e-10 1.75604e-11 -1.86914e-10 3.756e-12 -1.69852e-10 -4.78569e-12 -1.52863e-10 -9.83145e-12 -1.35239e-10 -1.55255e-11 -1.17348e-10 -2.04183e-11 -9.99492e-11 -2.47911e-11 -8.32016e-11 -2.83446e-11 -6.75438e-11 -3.09084e-11 -5.14296e-11 -3.28767e-11 -3.56493e-11 -3.36894e-11 -2.12444e-11 -3.34383e-11 -7.76837e-12 -3.26106e-11 4.17168e-12 -3.03959e-11 1.43179e-11 -2.69491e-11 2.29766e-11 -2.29449e-11 2.81716e-11 -1.77339e-11 3.03728e-11 -1.2613e-11 2.9763e-11 -7.64335e-12 2.50389e-11 -2.56506e-12 1.87854e-11 2.01715e-12 1.12486e-11 7.96895e-12 1.27467e-12 1.18039e-11 -8.21927e-12 6.84794e-12 -1.60397e-11 -7.78786e-13 -2.1726e-11 -5.53725e-12 -2.4142e-11 -1.16885e-11 -2.2689e-11 -1.85683e-11 -1.74822e-11 -2.5223e-11 -9.44455e-12 -3.12913e-11 -2.63063e-13 -3.64322e-11 9.51248e-12 -4.00541e-11 2.0471e-11 -4.18182e-11 3.20924e-11 -4.18933e-11 4.22722e-11 -4.01711e-11 5.00348e-11 -3.74453e-11 5.52707e-11 -3.4301e-11 5.74609e-11 -3.07742e-11 5.77488e-11 -2.7879e-11 5.68658e-11 -2.57266e-11 5.46896e-11 -2.43131e-11 5.31386e-11 -2.47459e-11 5.32717e-11 -2.63097e-11 5.63886e-11 -2.83947e-11 6.42071e-11 -3.09982e-11 7.48872e-11 -3.21976e-11 8.69364e-11 -3.16842e-11 9.98006e-11 -2.9499e-11 1.09662e-10 -2.41243e-11 1.16267e-10 -1.72638e-11 1.20334e-10 -9.73835e-12 1.19042e-10 -2.80661e-13 1.12388e-10 2.81829e-11 1.03347e-10 5.23197e-11 9.46809e-11 6.70196e-11 8.68726e-11 7.66953e-11 7.93967e-11 8.47342e-11 7.31038e-11 9.02853e-11 6.61812e-11 9.90348e-11 5.7011e-11 1.10533e-10 4.64642e-11 1.19383e-10 3.34093e-11 9.58208e-11 1.84558e-11 9.75129e-11 5.70973e-12 8.93338e-11 -4.55503e-12 7.66528e-11 -1.15588e-11 5.9691e-11 -1.255e-11 3.81895e-11 -1.19261e-11 2.25126e-11 -9.77951e-12 7.86621e-12 -3.78851e-12 -2.40609e-12 2.99509e-12 -5.4597e-12 1.11169e-11 -8.28005e-12 2.09532e-11 -9.95114e-12 2.95823e-11 -9.14206e-12 3.86919e-11 -7.7237e-12 4.72737e-11 -4.38191e-12 5.08195e-11 5.03006e-12 4.89372e-11 2.92513e-11 4.37357e-11 5.14086e-11 3.54586e-11 7.12735e-11 2.42359e-11 8.58807e-11 1.17569e-11 9.19922e-11 1.64977e-13 8.85189e-11 -9.23096e-12 7.6732e-11 -1.43958e-11 5.67473e-11 -1.45392e-11 3.38256e-11 -9.76088e-12 9.46162e-12 -1.87639e-12 -3.98555e-13 6.90227e-12 -1.85416e-12 1.49076e-11 -8.49426e-13 1.76611e-11 1.28383e-11 1.53178e-11 3.33933e-11 1.0756e-11 5.06503e-11 6.02052e-11 -1.35578e-13 1.73766e-18 -1.54362e-13 4.37781e-18 -1.75925e-13 1.90751e-18 -2.56501e-13 2.25308e-18 -2.4767e-13 -1.59748e-17 -2.85944e-13 2.52151e-18 -2.9192e-13 -2.83339e-18 -3.10472e-13 -2.45086e-22 -3.06975e-13 -9.92441e-21 -2.98421e-13 -2.56499e-20 -2.88836e-13 -2.98815e-20 -2.63399e-13 -5.07398e-20 -2.40945e-13 -4.99808e-20 -2.12372e-13 -6.59137e-20 -1.88862e-13 -6.13662e-20 -1.48747e-13 -7.41796e-20 -1.01914e-13 -6.85994e-20 -5.41604e-14 -7.15486e-20 -1.82881e-14 -6.05651e-20 1.70035e-14 -5.54916e-20 5.85935e-14 -4.61088e-20 1.01033e-13 -3.77296e-20 1.39985e-13 -2.55345e-20 1.63178e-13 -1.2847e-20 1.73814e-13 -8.31545e-22 1.71254e-13 -3.1625e-20 1.65479e-13 8.03572e-18 1.51766e-13 5.25858e-18 1.23672e-13 5.47816e-18 8.76208e-14 -2.52753e-19 5.77437e-14 -1.52761e-17 3.55461e-14 -3.37591e-18 1.9187e-14 -1.2397e-20 6.06667e-15 -2.1416e-20 7.65854e-15 -3.12374e-20 2.60964e-14 -3.96598e-20 3.91405e-14 -4.35737e-20 4.31965e-14 -4.48824e-20 6.4827e-14 -4.67281e-20 1.04368e-13 -4.72835e-20 1.48991e-13 -4.48055e-20 1.87794e-13 -4.02072e-20 2.15062e-13 -3.49327e-20 2.3104e-13 -3.02093e-20 2.36019e-13 -2.61271e-20 2.35546e-13 -2.25684e-20 2.30759e-13 -2.01744e-20 2.20104e-13 -2.02771e-20 2.06832e-13 -2.22297e-20 2.17834e-13 -2.56232e-20 2.46875e-13 -2.77012e-20 2.89678e-13 -2.78633e-20 3.42151e-13 -2.64704e-20 3.98491e-13 -2.32824e-20 4.51577e-13 -1.72954e-20 4.93079e-13 -1.22929e-20 5.27223e-13 -7.05864e-21 5.8684e-13 -6.43977e-22 6.35058e-13 1.04659e-17 6.42552e-13 2.05368e-17 6.25718e-13 1.82023e-17 6.00293e-13 1.5323e-17 5.66147e-13 1.61479e-17 5.2994e-13 1.47834e-17 4.93608e-13 1.71862e-17 4.43211e-13 2.32799e-17 3.56594e-13 3.10873e-17 2.68357e-13 2.92729e-17 2.09843e-13 2.03389e-17 1.54192e-13 1.54291e-17 1.06191e-13 8.99216e-18 6.58094e-14 3.18245e-18 3.70933e-14 -2.5711e-18 1.75076e-14 -3.07669e-18 5.02056e-15 -7.13478e-18 4.38382e-15 -2.61257e-18 9.62202e-15 -5.69922e-22 1.8224e-14 -6.46708e-22 3.01776e-14 -8.46898e-22 4.36846e-14 -7.90733e-22 5.97592e-14 -6.71913e-22 8.10947e-14 -3.67632e-22 1.11054e-13 -8.02171e-19 1.3313e-13 -2.80641e-18 1.39546e-13 5.73927e-18 1.32835e-13 7.67094e-18 1.15271e-13 9.31229e-18 9.0142e-14 9.50589e-18 6.40021e-14 7.72182e-18 3.97413e-14 5.13547e-18 1.88983e-14 2.22125e-18 -4.41208e-15 5.57657e-19 -1.49948e-14 -4.90909e-18 -7.69606e-15 -6.01633e-19 -2.35369e-16 -3.25323e-23 -5.82208e-15 3.19151e-16 -7.56145e-15 2.89124e-17 -4.20144e-15 1.66883e-18 5.99429e-15 2.16425e-18 3.33944e-18 6.97073e-18 3.31055e-18 5.94123e-18 2.84308e-18 4.6677e-18 1.80372e-18 4.78457e-18 1.27646e-18 4.75771e-19 -2.23939e-21 3.23797e-18 1.02269e-19 9.5334e-21 -7.80234e-21 9.84471e-21 -1.51202e-20 1.03842e-20 -2.50391e-20 1.09707e-20 -4.09349e-20 1.15462e-20 -4.51137e-20 1.20678e-20 -6.58233e-20 1.25823e-20 -6.50199e-20 1.30291e-20 -8.09434e-20 1.34735e-20 -7.65851e-20 1.38653e-20 -8.96538e-20 1.42361e-20 -8.45564e-20 1.45456e-20 -8.64611e-20 1.47886e-20 -7.58238e-20 1.49694e-20 -7.09002e-20 1.51241e-20 -6.15762e-20 1.52504e-20 -5.3123e-20 1.53532e-20 -4.08217e-20 1.54353e-20 -2.80833e-20 1.54814e-20 -1.60347e-20 1.5553e-20 -5.43628e-21 1.97343e-18 9.50173e-21 6.89389e-18 1.62543e-19 1.14558e-17 4.09198e-19 9.80383e-18 2.71031e-19 3.44291e-18 1.9378e-20 2.64022e-20 -7.0118e-21 2.60419e-20 -1.68089e-20 2.62426e-20 -2.6819e-20 2.64179e-20 -3.73021e-20 2.65208e-20 -4.64747e-20 2.65423e-20 -5.11012e-20 2.64906e-20 -5.30211e-20 2.63808e-20 -5.53228e-20 2.62754e-20 -5.62153e-20 2.61938e-20 -5.39748e-20 2.61076e-20 -4.93988e-20 2.59839e-20 -4.36243e-20 2.58496e-20 -3.77803e-20 2.57198e-20 -3.22713e-20 2.55984e-20 -2.76429e-20 2.55277e-20 -2.50232e-20 2.54633e-20 -2.55175e-20 2.54252e-20 -2.81956e-20 2.53865e-20 -3.23869e-20 2.53231e-20 -3.51649e-20 2.52112e-20 -3.5868e-20 2.50367e-20 -3.4859e-20 2.4745e-20 -3.17935e-20 2.4422e-20 -2.58574e-20 2.41352e-20 -1.83334e-20 2.38897e-20 -1.04985e-20 2.37081e-20 -3.06368e-21 8.34173e-18 3.0115e-19 2.58079e-17 2.24417e-18 3.52396e-17 4.33175e-18 3.89349e-17 5.78662e-18 4.1011e-17 7.03151e-18 4.02568e-17 7.76877e-18 3.97134e-17 8.89789e-18 4.08124e-17 1.10965e-17 4.3281e-17 1.42463e-17 4.21315e-17 1.52169e-17 3.62735e-17 1.32454e-17 3.02822e-17 1.07279e-17 2.38477e-17 7.75679e-18 1.75446e-17 4.82248e-18 1.08123e-17 2.24047e-18 6.35495e-18 9.2099e-19 2.69195e-18 2.10189e-19 4.94094e-21 3.99407e-23 4.54137e-21 -3.52934e-22 4.38858e-21 -7.09339e-22 4.20763e-21 -9.06755e-22 4.02906e-21 -8.69581e-22 3.84331e-21 -7.51264e-22 3.65862e-21 -4.48326e-22 3.51242e-21 6.6001e-23 2.0475e-18 2.85438e-19 4.85056e-18 1.31181e-18 6.77589e-18 2.81743e-18 7.58049e-18 4.22971e-18 7.27583e-18 4.91306e-18 6.0573e-18 4.49217e-18 4.52412e-18 3.37872e-18 2.91452e-18 2.02217e-18 1.80756e-18 1.07964e-18 6.33209e-19 2.33366e-19 2.13606e-22 1.96022e-23 1.62846e-22 3.94759e-24 1.52656e-20 5.14307e-21 1.54925e-19 1.46413e-19 1.7601e-19 5.12642e-19 2.57225e-20 9.15955e-19 1.55397e-18 4.70363e-20 1.01045e-20 7.16886e-20 1.37497e-20 1.29824e-19 1.84867e-20 1.84943e-19 1.5827e-20 2.0369e-19 -1.47449e-23 2.67174e-19 -1.2419e-23 2.68711e-19 -2.81316e-23 3.55672e-19 -4.7735e-23 3.37152e-19 -5.32283e-23 4.35982e-19 -9.3001e-23 4.01427e-19 -8.56341e-23 4.94668e-19 -1.40798e-22 4.53037e-19 -1.18033e-22 5.29128e-19 -1.71276e-22 4.8852e-19 -1.37321e-22 5.41871e-19 -1.86666e-22 5.07029e-19 -1.49041e-22 5.3696e-19 -1.77288e-22 5.09702e-19 -1.3263e-22 5.20847e-19 -1.42674e-22 5.0046e-19 -1.07188e-22 5.00011e-19 -9.40904e-23 4.85723e-19 -7.26154e-23 4.79506e-19 -5.19641e-23 4.69509e-19 -3.1353e-23 4.61574e-19 -1.42278e-23 4.55145e-19 -2.83066e-24 4.46903e-19 2.8863e-21 4.42545e-19 4.70306e-21 4.36219e-19 2.04105e-21 4.31659e-19 -5.70967e-24 4.25616e-19 -1.88453e-23 4.19619e-19 -3.41198e-23 4.12486e-19 -4.96538e-23 4.04191e-19 -6.53342e-23 3.96226e-19 -7.87326e-23 3.87184e-19 -8.43293e-23 3.76875e-19 -8.62969e-23 3.64609e-19 -8.95575e-23 3.55098e-19 -9.1087e-23 3.48427e-19 -8.73187e-23 3.43026e-19 -7.93389e-23 3.3778e-19 -7.00403e-23 3.33147e-19 -6.13667e-23 3.22047e-19 -5.25775e-23 3.02894e-19 -4.42202e-23 2.89994e-19 -3.9705e-23 2.94627e-19 -4.11808e-23 3.04642e-19 -4.86601e-23 3.01585e-19 -5.19207e-23 2.87096e-19 -5.41524e-23 2.73811e-19 -5.399e-23 2.64232e-19 -5.18367e-23 2.57208e-19 -4.66916e-23 2.52223e-19 -3.78172e-23 2.47395e-19 -2.52753e-23 2.42655e-19 -1.15327e-23 2.37359e-19 1.42697e-21 2.32603e-19 9.48107e-21 2.26927e-19 1.65941e-20 2.17458e-19 2.14324e-20 2.04521e-19 2.43962e-20 1.8839e-19 2.60882e-20 1.69931e-19 2.68247e-20 1.49904e-19 2.72622e-20 1.29004e-19 2.72291e-20 1.06326e-19 2.54414e-20 8.1876e-20 2.06303e-20 6.08017e-20 1.52535e-20 4.39686e-20 1.05585e-20 3.13561e-20 6.87619e-21 2.28167e-20 4.29838e-21 1.79952e-20 2.71485e-21 1.58969e-20 1.82745e-21 1.51199e-20 1.17666e-21 1.49752e-20 6.44074e-22 1.49465e-20 2.72311e-22 1.47865e-20 -2.38523e-27 1.45514e-20 -9.24367e-26 1.43208e-20 -1.86742e-26 1.40743e-20 1.70658e-22 1.38004e-20 5.73192e-22 1.34193e-20 1.25439e-21 1.3026e-20 2.25896e-21 1.25937e-20 3.3233e-21 1.15637e-20 4.16016e-21 1.00686e-20 4.50522e-21 8.17815e-21 4.19531e-21 5.92311e-21 3.21687e-21 3.89032e-21 2.0932e-21 2.2846e-21 1.1562e-21 1.73532e-21 7.94506e-22 1.11323e-21 4.05506e-22 1.20555e-21 3.4484e-22 8.49841e-22 2.83761e-22 7.31599e-22 4.61341e-22 4.54584e-22 5.95322e-22 2.72503e-22 1.00656e-21 1.76935e-23 1.31146e-21 1.13721e-21 9.79798e-22 1.45378e-22 2.14275e-21 2.65864e-22 2.61305e-21 2.2777e-22 2.47158e-21 1.1373e-22 1.30003e-21 -1.4258e-25 1.03278e-21 -1.18982e-25 7.32355e-22 -9.55003e-26 8.50085e-22 -1.00039e-25 7.34346e-22 -9.51266e-26 9.41417e-22 -1.27466e-25 8.43219e-22 -1.23229e-25 1.05994e-21 -1.65062e-25 9.55091e-22 -1.5423e-25 1.14142e-21 -1.89249e-25 1.03632e-21 -1.71894e-25 1.17584e-21 -1.99388e-25 1.08492e-21 -1.78775e-25 1.17181e-21 -1.86436e-25 1.09303e-21 -1.57502e-25 1.13852e-21 -1.50184e-25 1.08284e-21 -1.25456e-25 1.1046e-21 -1.10729e-25 1.06912e-21 -8.53263e-26 1.07016e-21 -6.38617e-26 1.0448e-21 -4.17414e-26 1.03396e-21 -2.46182e-26 1.01766e-21 -1.25778e-26 1.00185e-21 -5.08661e-27 9.82753e-22 -2.89892e-27 9.61693e-22 -7.67353e-27 9.47264e-22 -1.71307e-26 9.33275e-22 -3.02779e-26 9.14915e-22 -4.50593e-26 8.97022e-22 -6.03029e-26 8.74904e-22 -7.49763e-26 8.56519e-22 -8.73064e-26 8.28746e-22 -9.15825e-26 8.03898e-22 -9.30476e-26 7.83293e-22 -9.55679e-26 7.68223e-22 -9.6869e-26 7.51547e-22 -9.28685e-26 7.32834e-22 -8.42072e-26 7.20422e-22 -7.43983e-26 7.15576e-22 -6.57493e-26 6.89918e-22 -5.64635e-26 6.33747e-22 -4.68604e-26 5.97179e-22 -4.18108e-26 6.1766e-22 -4.39761e-26 6.54145e-22 -5.00716e-26 6.44212e-22 -5.47499e-26 6.01482e-22 -5.49023e-26 5.71087e-22 -5.33204e-26 5.57022e-22 -5.01276e-26 5.54139e-22 -4.38371e-26 5.58158e-22 -3.3174e-26 5.61636e-22 -1.83062e-26 5.63207e-22 -1.22679e-28 5.61139e-22 1.41611e-23 5.4778e-22 2.87121e-23 5.17334e-22 4.03817e-23 4.73025e-22 4.72332e-23 4.20438e-22 4.99543e-23 3.62681e-22 4.95069e-23 3.03633e-22 4.67709e-23 2.4518e-22 4.24711e-23 1.90497e-22 3.68394e-23 1.40085e-22 2.94881e-23 9.83536e-23 2.14147e-23 6.75632e-23 1.46195e-23 4.65202e-23 9.67408e-24 3.28763e-23 6.3343e-24 2.42605e-23 4.154e-24 1.90547e-23 2.78581e-24 1.59845e-23 1.9449e-24 1.42058e-23 1.38257e-24 1.34212e-23 1.01994e-24 1.34761e-23 8.23103e-25 1.36749e-23 7.12307e-25 1.40057e-23 7.2166e-25 1.45283e-23 8.87082e-25 1.50805e-23 1.18645e-24 1.51888e-23 1.65312e-24 1.47703e-23 2.29119e-24 1.37588e-23 3.00437e-24 1.3016e-23 3.76321e-24 1.10512e-23 3.99466e-24 8.93214e-24 3.80646e-24 6.75579e-24 3.20711e-24 4.74297e-24 2.37347e-24 3.29289e-24 1.66465e-24 1.96903e-24 9.80234e-25 2.00597e-24 9.72383e-25 1.10353e-24 5.07909e-25 1.32697e-24 6.27049e-25 7.58977e-25 4.56234e-25 8.73648e-25 8.37018e-25 5.26803e-25 9.33852e-25 3.53851e-25 1.54781e-24 4.35964e-26 1.75599e-24 6.90273e-25 1.90139e-23 2.10411e-24 5.62094e-23 5.05745e-24 5.17944e-23 3.16229e-24 3.49781e-23 1.01313e-24 1.22284e-23 -1.57936e-27 5.47728e-24 -1.0601e-27 2.23649e-24 -4.41411e-28 1.7944e-24 -2.58831e-28 1.30749e-24 -1.78241e-28 1.47892e-24 -1.89837e-28 1.25715e-24 -1.65198e-28 1.5111e-24 -1.97711e-28 1.33275e-24 -1.76863e-28 1.57216e-24 -2.05255e-28 1.40547e-24 -1.81689e-28 1.59677e-24 -2.03332e-28 1.44638e-24 -1.78183e-28 1.57949e-24 -1.83456e-28 1.45063e-24 -1.53051e-28 1.52625e-24 -1.45676e-28 1.42576e-24 -1.20012e-28 1.46029e-24 -1.0685e-28 1.38866e-24 -8.30061e-29 1.39535e-24 -6.51891e-29 1.35026e-24 -4.58148e-29 1.34786e-24 -3.19363e-29 1.32421e-24 -2.15121e-29 1.31435e-24 -1.55475e-29 1.29511e-24 -1.37417e-29 1.28128e-24 -1.70913e-29 1.25527e-24 -2.37541e-29 1.23528e-24 -3.3329e-29 1.20219e-24 -4.36076e-29 1.17713e-24 -5.45768e-29 1.14253e-24 -6.44408e-29 1.11759e-24 -7.27578e-29 1.07487e-24 -7.49641e-29 1.04353e-24 -7.5854e-29 1.01916e-24 -7.70597e-29 1.0048e-24 -7.76634e-29 9.83602e-25 -7.43277e-29 9.54171e-25 -6.73086e-29 9.34825e-25 -5.94306e-29 9.3181e-25 -5.27159e-29 8.97467e-25 -4.51719e-29 8.13902e-25 -3.70078e-29 7.65849e-25 -3.28113e-29 8.14328e-25 -3.48782e-29 8.91015e-25 -3.98493e-29 8.81375e-25 -4.23331e-29 8.14666e-25 -4.10328e-29 7.74829e-25 -3.88296e-29 7.67051e-25 -3.52618e-29 7.81735e-25 -2.86692e-29 8.13072e-25 -1.7422e-29 8.47036e-25 -5.84513e-31 8.80227e-25 1.80048e-26 8.90103e-25 3.81087e-26 8.59187e-25 5.68383e-26 7.92152e-25 6.99963e-26 6.99654e-25 7.56595e-26 5.94961e-25 7.48767e-26 4.86681e-25 6.92427e-26 3.83129e-25 6.05614e-26 2.8843e-25 5.01812e-26 2.08106e-25 3.93929e-26 1.42518e-25 2.87115e-26 9.45792e-26 1.95779e-26 6.22202e-26 1.28479e-26 4.17645e-26 8.37712e-27 2.92495e-26 5.54787e-27 2.11524e-26 3.69352e-27 1.61523e-26 2.54162e-27 1.33261e-26 1.87008e-27 1.20362e-26 1.49447e-27 1.17272e-26 1.30126e-27 1.22621e-26 1.25989e-27 1.26639e-26 1.26665e-27 1.31386e-26 1.37252e-27 1.35794e-26 1.58998e-27 1.37834e-26 1.89643e-27 1.34432e-26 2.26299e-27 1.25885e-26 2.65779e-27 1.12393e-26 2.9804e-27 1.12508e-26 3.65263e-27 9.51507e-27 3.66123e-27 7.75378e-27 3.40699e-27 5.86768e-27 2.83615e-27 4.27843e-27 2.19585e-27 3.20321e-27 1.70337e-27 1.79828e-27 9.81566e-28 2.15329e-27 1.21135e-27 9.77594e-28 5.74306e-28 1.41439e-27 9.36801e-28 6.62418e-28 5.6632e-28 9.82614e-28 1.25215e-27 5.99127e-28 1.30651e-27 5.16041e-28 2.44125e-27 1.187e-28 2.66995e-27 1.58269e-27 2.93865e-25 2.4122e-26 1.29532e-24 8.69282e-26 1.04683e-24 4.73479e-26 5.31141e-25 1.07791e-26 1.42253e-25 -1.70563e-29 4.23891e-26 -9.45949e-30 1.01738e-26 -2.79999e-30 4.55187e-27 -9.39977e-31 2.47353e-27 -3.97049e-31 2.23922e-27 -3.06913e-31 1.72553e-27 -2.28248e-31 1.87587e-27 -2.34755e-31 1.58914e-27 -1.9576e-31 1.78266e-27 -2.08917e-31 1.5579e-27 -1.77824e-31 1.72731e-27 -1.88233e-31 1.53966e-27 -1.60254e-31 1.66358e-27 -1.60305e-31 1.50393e-27 -1.315e-31 1.57595e-27 -1.23506e-31 1.45014e-27 -1.00207e-31 1.48743e-27 -8.91541e-32 1.3958e-27 -6.9543e-32 1.40623e-27 -5.64565e-32 1.34496e-27 -4.15755e-32 1.34602e-27 -3.18205e-32 1.31008e-27 -2.38031e-32 1.3007e-27 -1.94491e-32 1.26865e-27 -1.75186e-32 1.25251e-27 -1.90217e-32 1.21452e-27 -2.22481e-32 1.19224e-27 -2.75159e-32 1.14963e-27 -3.28071e-32 1.12471e-27 -3.88872e-32 1.08511e-27 -4.38047e-32 1.06025e-27 -4.80604e-32 1.01438e-27 -4.87031e-32 9.87658e-28 -4.90993e-32 9.65303e-28 -4.92538e-32 9.54968e-28 -4.9267e-32 9.35825e-28 -4.68839e-32 9.06029e-28 -4.23434e-32 8.85467e-28 -3.72327e-32 8.8566e-28 -3.29679e-32 8.55354e-28 -2.80586e-32 7.74987e-28 -2.26548e-32 7.38331e-28 -1.98654e-32 8.14312e-28 -2.1007e-32 9.22153e-28 -2.36647e-32 9.20621e-28 -2.43063e-32 8.53524e-28 -2.26589e-32 8.24082e-28 -2.04322e-32 8.37114e-28 -1.67796e-32 8.84061e-28 -9.84973e-33 9.61446e-28 2.57706e-30 1.05517e-27 2.10726e-29 1.13161e-27 4.43733e-29 1.138e-27 6.78073e-29 1.08118e-27 8.70551e-29 9.7219e-28 9.77727e-29 8.30843e-28 9.87779e-29 6.7839e-28 9.1952e-29 5.29084e-28 7.98489e-29 3.94805e-28 6.53047e-29 2.80498e-28 5.03061e-29 1.91387e-28 3.67778e-29 1.24897e-28 2.52566e-29 8.0068e-29 1.66192e-29 5.1599e-29 1.07519e-29 3.45209e-29 7.07655e-30 2.46145e-29 4.8701e-30 1.80912e-29 3.39724e-30 1.41529e-29 2.49497e-30 1.20819e-29 1.99403e-30 1.12364e-29 1.74119e-30 1.10955e-29 1.63852e-30 1.17436e-29 1.69872e-30 1.18997e-29 1.74541e-30 1.19906e-29 1.85847e-30 1.19478e-29 2.03548e-30 1.1728e-29 2.26303e-30 1.09569e-29 2.45613e-30 9.84499e-30 2.60692e-30 8.49638e-30 2.66539e-30 9.61481e-30 3.52985e-30 8.46564e-30 3.56841e-30 7.22148e-30 3.41422e-30 5.61023e-30 2.90498e-30 4.23103e-30 2.34846e-30 3.26743e-30 1.91949e-30 1.66819e-30 1.03665e-30 2.23047e-30 1.4829e-30 8.56543e-31 6.24746e-31 1.48138e-30 1.26409e-30 5.83592e-31 6.41176e-31 1.10107e-30 1.73258e-30 6.92734e-31 1.76159e-30 7.40374e-31 3.71035e-30 2.452e-31 4.17451e-30 7.06802e-30 3.60323e-27 2.0699e-28 2.61871e-26 1.28842e-27 2.01998e-26 6.9103e-28 8.23116e-27 1.28842e-28 1.8033e-27 -1.5759e-31 3.87542e-28 -8.11746e-32 6.76735e-29 -1.94962e-32 1.70047e-29 -4.69722e-33 5.68601e-30 -1.21679e-33 3.72346e-30 -5.85112e-34 2.44995e-30 -3.45585e-34 2.29777e-30 -2.9397e-34 1.814e-30 -2.21643e-34 1.8742e-30 -2.12367e-34 1.57657e-30 -1.70733e-34 1.66433e-30 -1.68033e-34 1.44639e-30 -1.37738e-34 1.51733e-30 -1.31704e-34 1.34134e-30 -1.05547e-34 1.37942e-30 -9.64038e-35 1.24369e-30 -7.6646e-35 1.26141e-30 -6.73006e-35 1.16263e-30 -5.22433e-35 1.16275e-30 -4.29991e-35 1.09249e-30 -3.23439e-35 1.08864e-30 -2.58707e-35 1.04267e-30 -2.00451e-35 1.02964e-30 -1.69586e-35 9.88116e-31 -1.49714e-35 9.69961e-31 -1.51504e-35 9.27131e-31 -1.59982e-35 9.05892e-31 -1.81584e-35 8.63083e-31 -2.00883e-35 8.42577e-31 -2.27014e-35 8.06137e-31 -2.44686e-35 7.85586e-31 -2.61135e-35 7.4788e-31 -2.59804e-35 7.30691e-31 -2.60342e-35 7.1345e-31 -2.57437e-35 7.07829e-31 -2.54926e-35 6.93753e-31 -2.40122e-35 6.72489e-31 -2.15525e-35 6.57479e-31 -1.87814e-35 6.61934e-31 -1.64851e-35 6.45184e-31 -1.38255e-35 5.91524e-31 -1.09031e-35 5.77846e-31 -9.22793e-36 6.62264e-31 -9.34986e-36 7.76147e-31 -9.93247e-36 7.90249e-31 -9.44362e-36 7.46537e-31 -7.89465e-36 7.43128e-31 -5.62202e-36 7.88301e-31 -1.43659e-36 8.78351e-31 7.53985e-33 1.02645e-30 2.30575e-32 1.17343e-30 4.55075e-32 1.25796e-30 7.14055e-32 1.25271e-30 9.48119e-32 1.16884e-30 1.10963e-31 1.02446e-30 1.16255e-31 8.48038e-31 1.10845e-31 6.66848e-31 9.77341e-32 4.98369e-31 8.03522e-32 3.55365e-31 6.21758e-32 2.4112e-31 4.53077e-32 1.58181e-31 3.15765e-32 1.00364e-31 2.09764e-32 6.35534e-32 1.36562e-32 4.12207e-32 8.95513e-33 2.83625e-32 6.13578e-33 2.12916e-32 4.52552e-33 1.631e-32 3.37037e-33 1.32019e-32 2.63783e-33 1.1542e-32 2.2312e-33 1.08081e-32 2.03322e-33 1.06114e-32 1.96914e-33 1.12427e-32 2.10045e-33 1.10714e-32 2.13394e-33 1.07565e-32 2.19745e-33 1.02785e-32 2.28291e-33 9.74263e-33 2.40177e-33 8.70872e-33 2.4246e-33 7.55573e-33 2.40365e-33 6.40576e-33 2.33566e-33 8.57412e-33 3.56167e-33 7.97059e-33 3.7297e-33 7.10591e-33 3.69168e-33 5.64091e-33 3.20605e-33 4.3182e-33 2.65209e-33 3.35879e-33 2.21717e-33 1.56899e-33 1.11792e-33 2.27762e-33 1.77728e-33 7.58323e-34 6.66435e-34 1.53214e-33 1.60004e-33 5.23889e-34 7.00092e-34 1.22065e-33 2.27568e-33 7.95737e-34 2.30434e-33 1.00053e-33 5.35857e-33 4.40047e-34 6.76843e-33 3.14937e-32 3.49877e-29 1.21716e-30 4.65354e-28 1.56981e-29 3.56338e-28 9.12182e-30 1.23591e-28 1.608e-30 2.28527e-29 -1.09091e-33 3.77871e-30 -6.51318e-34 5.20372e-31 -1.35596e-34 9.07805e-32 -2.5991e-35 1.83713e-32 -5.11875e-36 7.39926e-33 -1.48972e-36 3.83964e-33 -6.11025e-37 2.97201e-33 -4.07012e-37 2.1143e-33 -2.67542e-37 1.9583e-33 -2.24788e-37 1.55431e-33 -1.67417e-37 1.52978e-33 -1.5082e-37 1.28101e-33 -1.17587e-37 1.28117e-33 -1.06036e-37 1.09928e-33 -8.22067e-38 1.09186e-33 -7.20163e-38 9.57914e-34 -5.56996e-38 9.48169e-34 -4.76483e-38 8.528e-34 -3.64318e-38 8.37493e-34 -2.98229e-38 7.68239e-34 -2.2459e-38 7.55083e-34 -1.81344e-38 7.06079e-34 -1.4078e-38 6.88774e-34 -1.19028e-38 6.46012e-34 -1.01712e-38 6.26981e-34 -9.74787e-39 5.87773e-34 -9.52802e-39 5.69101e-34 -1.00926e-38 5.33833e-34 -1.04599e-38 5.18558e-34 -1.12731e-38 4.90684e-34 -1.16214e-38 4.7617e-34 -1.20541e-38 4.50519e-34 -1.17422e-38 4.41257e-34 -1.16352e-38 4.30042e-34 -1.13069e-38 4.27843e-34 -1.1042e-38 4.19359e-34 -1.02452e-38 4.08017e-34 -9.09052e-39 4.00547e-34 -7.79409e-39 4.07973e-34 -6.69892e-39 4.04603e-34 -5.41787e-39 3.80107e-34 -4.01903e-39 3.8284e-34 -3.04793e-39 4.57118e-34 -2.54695e-39 5.57448e-34 -1.89095e-39 5.86923e-34 -7.73922e-40 5.76319e-34 1.20359e-36 6.0533e-34 4.78074e-36 6.91097e-34 1.11399e-35 8.46098e-34 2.29227e-35 1.02239e-33 4.15846e-35 1.17089e-33 6.59349e-35 1.25027e-33 9.17252e-35 1.23031e-33 1.1221e-34 1.1267e-33 1.23098e-34 9.63234e-34 1.22098e-34 7.74006e-34 1.10874e-34 5.88615e-34 9.33645e-35 4.24247e-34 7.33775e-35 2.91881e-34 5.44135e-35 1.91678e-34 3.81543e-35 1.23102e-34 2.59132e-35 7.76209e-35 1.7076e-35 4.97955e-35 1.12929e-35 3.34214e-35 7.71432e-36 2.42306e-35 5.62793e-36 1.93993e-35 4.49092e-36 1.5453e-35 3.54161e-36 1.27709e-35 2.88989e-36 1.12405e-35 2.51602e-36 1.04733e-35 2.3331e-36 1.01614e-35 2.27828e-36 1.07643e-35 2.46673e-36 1.0291e-35 2.45368e-36 9.63977e-36 2.4373e-36 8.83629e-36 2.41193e-36 8.11715e-36 2.42863e-36 6.96899e-36 2.31482e-36 5.90071e-36 2.19506e-36 5.00072e-36 2.0899e-36 8.01293e-36 3.7521e-36 7.8156e-36 4.07393e-36 7.18051e-36 4.13032e-36 5.77558e-36 3.63441e-36 4.44005e-36 3.03732e-36 3.44891e-36 2.56292e-36 1.49432e-36 1.21477e-36 2.30712e-36 2.08469e-36 6.81001e-37 7.03282e-37 1.56809e-36 1.93779e-36 4.78997e-37 7.53064e-37 1.33365e-36 2.87438e-36 8.9963e-37 2.9328e-36 1.28086e-36 7.41713e-36 7.6566e-37 1.16684e-35 1.26653e-34 2.67086e-31 3.51441e-33 7.16959e-30 1.39172e-31 5.76246e-30 1.0402e-31 1.78083e-30 1.98776e-32 2.83588e-31 -2.80025e-36 3.76493e-32 -4.80066e-36 4.18239e-33 -9.2618e-37 5.53286e-34 -1.46698e-37 8.2993e-35 -2.36662e-38 1.98705e-35 -5.20446e-39 7.07757e-36 -1.39421e-39 4.2624e-36 -6.54007e-40 2.62845e-36 -3.56482e-40 2.12694e-36 -2.55741e-40 1.55963e-36 -1.72456e-40 1.40505e-36 -1.40044e-40 1.11771e-36 -1.02464e-40 1.05032e-36 -8.59808e-41 8.66109e-37 -6.38008e-41 8.19303e-37 -5.29747e-41 6.9412e-37 -3.95707e-41 6.62428e-37 -3.25927e-41 5.77423e-37 -2.43007e-41 5.50653e-37 -1.94852e-41 4.9032e-37 -1.44443e-41 4.69627e-37 -1.15162e-41 4.26116e-37 -8.79128e-42 4.06891e-37 -7.28327e-42 3.7092e-37 -5.97863e-42 3.53358e-37 -5.44404e-42 3.23288e-37 -4.97285e-42 3.08412e-37 -4.94534e-42 2.83917e-37 -4.81549e-42 2.72894e-37 -4.94097e-42 2.54413e-37 -4.86264e-42 2.45304e-37 -4.88453e-42 2.30394e-37 -4.63955e-42 2.25647e-37 -4.52074e-42 2.19282e-37 -4.29686e-42 2.18654e-37 -4.1117e-42 2.14559e-37 -3.73359e-42 2.10183e-37 -3.24434e-42 2.08121e-37 -2.69416e-42 2.15626e-37 -2.20462e-42 2.18984e-37 -1.61868e-42 2.12693e-37 -9.69858e-43 2.22684e-37 -3.84052e-43 2.7846e-37 5.85721e-40 3.57055e-37 2.52371e-39 3.97118e-37 4.69226e-39 4.20619e-37 7.24498e-39 5.05456e-37 1.2191e-38 6.26627e-37 2.07116e-38 7.73754e-37 3.42681e-38 9.3652e-37 5.4042e-38 1.07119e-36 7.80592e-38 1.13717e-36 1.015e-37 1.10501e-36 1.17492e-37 9.93919e-37 1.22819e-37 8.30477e-37 1.16612e-37 6.50078e-37 1.01735e-37 4.80849e-37 8.25587e-38 3.36939e-37 6.26825e-38 2.26251e-37 4.51595e-38 1.46002e-37 3.10057e-38 9.36429e-38 2.098e-38 6.00398e-38 1.4054e-38 3.99484e-38 9.667e-39 2.82606e-38 7.00025e-39 2.17373e-38 5.46416e-39 1.84411e-38 4.67183e-39 1.50882e-38 3.83513e-39 1.25716e-38 3.20202e-39 1.1035e-38 2.82259e-39 1.01888e-38 2.63187e-39 9.75885e-39 2.56903e-39 1.03534e-38 2.8108e-39 9.62916e-39 2.73256e-39 8.72244e-39 2.62411e-39 7.69462e-39 2.48725e-39 6.89247e-39 2.42216e-39 5.71851e-39 2.20645e-39 4.77705e-39 2.03795e-39 4.10057e-39 1.94033e-39 7.75163e-39 4.06564e-39 7.84046e-39 4.5426e-39 7.33584e-39 4.67228e-39 5.94741e-39 4.1453e-39 4.56917e-39 3.47711e-39 3.53268e-39 2.94205e-39 1.43741e-39 1.32159e-39 2.32406e-39 2.39844e-39 6.19978e-40 7.37692e-40 1.59161e-39 2.27376e-39 4.44873e-40 8.04908e-40 1.43792e-39 3.52481e-39 1.00147e-39 3.64761e-39 1.57735e-39 9.9483e-39 1.35848e-39 2.15047e-38 4.48479e-37 1.58182e-33 -5.63215e-38 9.45468e-32 5.16094e-34 8.40482e-32 9.01226e-34 2.45258e-32 2.28507e-34 3.49563e-33 6.39268e-36 3.79157e-34 -3.1399e-38 3.44365e-35 -6.18299e-39 3.52735e-36 -8.3785e-40 4.1824e-37 -1.1222e-40 7.39204e-38 -1.99672e-41 1.69369e-38 -4.24363e-42 7.11546e-39 -1.32339e-42 3.61122e-39 -5.46661e-43 2.48203e-39 -3.21508e-43 1.64138e-39 -1.91016e-43 1.33045e-39 -1.37536e-43 9.90742e-40 -9.29396e-44 8.62723e-40 -7.174e-44 6.76721e-40 -5.036e-44 6.02745e-40 -3.92517e-44 4.89754e-40 -2.80776e-44 4.45946e-40 -2.20138e-44 3.74171e-40 -1.58936e-44 3.43373e-40 -1.23287e-44 2.94594e-40 -8.87973e-45 2.724e-40 -6.8873e-45 2.38508e-40 -5.10581e-45 2.20955e-40 -4.09287e-45 1.94649e-40 -3.21549e-45 1.80696e-40 -2.77822e-45 1.60505e-40 -2.37885e-45 1.49927e-40 -2.2243e-45 1.34807e-40 -2.03397e-45 1.27519e-40 -1.98125e-45 1.16733e-40 -1.85384e-45 1.11445e-40 -1.79328e-45 1.03711e-40 -1.65116e-45 1.01369e-40 -1.57038e-45 9.8124e-41 -1.44979e-45 9.7923e-41 -1.34904e-45 9.63367e-41 -1.18284e-45 9.52962e-41 -9.88269e-46 9.55351e-41 -7.67052e-46 1.01242e-40 -5.47754e-46 1.05963e-40 -2.75998e-46 1.07104e-40 8.31624e-44 1.17778e-40 8.46259e-43 1.5661e-40 2.08434e-42 2.2181e-40 4.25872e-42 2.91889e-40 7.32164e-42 3.48702e-40 1.10273e-41 4.28194e-40 1.68955e-41 5.35917e-40 2.62762e-41 6.62701e-40 4.0124e-41 8.01469e-40 5.92351e-41 9.14108e-40 8.11539e-41 9.64036e-40 1.00959e-40 9.25449e-40 1.12253e-40 8.19027e-40 1.13067e-40 6.70957e-40 1.03695e-40 5.14065e-40 8.76428e-41 3.72472e-40 6.9188e-41 2.56161e-40 5.13154e-41 1.70094e-40 3.64383e-41 1.09657e-40 2.49351e-41 7.16714e-41 1.7171e-41 4.7669e-41 1.19358e-41 3.3395e-41 8.66592e-42 2.50125e-41 6.67478e-42 2.02788e-41 5.52811e-42 1.79974e-41 4.98626e-42 1.49678e-41 4.2017e-42 1.24859e-41 3.54951e-42 1.08884e-41 3.14165e-42 9.95588e-42 2.92984e-42 9.42269e-42 2.84933e-42 1.00353e-41 3.14753e-42 9.1119e-42 2.99566e-42 8.01802e-42 2.79353e-42 6.83969e-42 2.55209e-42 6.01446e-42 2.42622e-42 4.85307e-42 2.1335e-42 4.03397e-42 1.94404e-42 3.5314e-42 1.87159e-42 7.66724e-42 4.47148e-42 7.9622e-42 5.10302e-42 7.53027e-42 5.29224e-42 6.13651e-42 4.72149e-42 4.70013e-42 3.961e-42 3.61106e-42 3.34801e-42 1.39346e-42 1.43555e-42 2.33247e-42 2.71531e-42 5.71377e-43 7.71174e-43 1.606e-42 2.6071e-42 4.18667e-43 8.57923e-43 1.53477e-42 4.22676e-42 1.10144e-42 4.45275e-42 1.89353e-42 1.30435e-41 2.48773e-42 4.18822e-41 1.3853e-39 7.14301e-36 -7.20764e-40 1.05839e-33 -8.53913e-38 1.08036e-33 3.30659e-36 3.06707e-34 2.12514e-36 4.08305e-35 1.4681e-37 3.83984e-36 -1.60458e-40 2.88498e-37 -3.96973e-41 2.32124e-38 -4.82868e-42 2.18502e-39 -5.42238e-43 3.03949e-40 -7.86659e-44 5.4279e-41 -1.40546e-44 1.4987e-41 -3.49587e-45 5.71441e-42 -1.03008e-45 3.19978e-42 -4.63815e-46 1.85551e-42 -2.33319e-46 1.32955e-42 -1.45705e-46 9.11485e-43 -8.93091e-47 7.26998e-43 -6.26057e-47 5.36449e-43 -4.11023e-47 4.45863e-43 -2.97466e-47 3.44746e-43 -2.01841e-47 2.96488e-43 -1.49651e-47 2.38404e-43 -1.03842e-47 2.08846e-43 -7.69225e-48 1.7146e-43 -5.34756e-48 1.51921e-43 -3.99549e-48 1.27673e-43 -2.85042e-48 1.13898e-43 -2.19366e-48 9.66539e-44 -1.64318e-48 8.68442e-44 -1.34411e-48 7.45095e-44 -1.08098e-48 6.7759e-44 -9.49345e-49 5.92156e-44 -8.14265e-49 5.48613e-44 -7.4867e-49 4.90999e-44 -6.64155e-49 4.62242e-44 -6.1513e-49 4.25188e-44 -5.4454e-49 4.13661e-44 -5.00387e-49 3.98409e-44 -4.4334e-49 3.98135e-44 -3.95383e-49 3.92432e-44 -3.26894e-49 3.93208e-44 -2.50893e-49 4.00926e-44 -1.62272e-49 4.35876e-44 -6.12461e-50 4.72857e-44 1.70132e-46 5.03949e-44 5.37121e-46 6.16012e-44 1.08419e-45 9.68585e-44 2.36384e-45 1.64382e-43 5.11878e-45 2.26645e-43 8.61643e-45 2.77441e-43 1.26359e-44 3.45203e-43 1.87151e-44 4.34862e-43 2.7997e-44 5.37963e-43 4.09951e-44 6.49417e-43 5.81948e-44 7.38099e-43 7.70129e-44 7.734e-43 9.28375e-44 7.34409e-43 1.0012e-43 6.41177e-43 9.79953e-44 5.1708e-43 8.74946e-44 3.89989e-43 7.22256e-44 2.79081e-43 5.60064e-44 1.90391e-43 4.10513e-44 1.26786e-43 2.91578e-44 8.30104e-44 2.02281e-44 5.62572e-44 1.44313e-44 3.93127e-44 1.05442e-44 2.91159e-44 8.10998e-45 2.29582e-44 6.60013e-45 1.9407e-44 5.72857e-45 1.7818e-44 5.37947e-45 1.49697e-44 4.6128e-45 1.2466e-44 3.92036e-45 1.07908e-44 3.4708e-45 9.77911e-45 3.23075e-45 9.16243e-45 3.12837e-45 9.81795e-45 3.49078e-45 8.739e-45 3.26312e-45 7.50843e-45 2.97042e-45 6.22645e-45 2.63221e-45 5.40736e-45 2.46183e-45 4.26684e-45 2.10607e-45 3.5478e-45 1.90827e-45 3.17234e-45 1.86546e-45 7.69175e-45 4.95202e-45 8.14449e-45 5.74176e-45 7.75173e-45 5.98254e-45 6.3398e-45 5.35874e-45 4.83453e-45 4.4864e-45 3.68732e-45 3.77899e-45 1.35966e-45 1.55558e-45 2.33624e-45 3.03468e-45 5.32373e-46 8.047e-46 1.61478e-45 2.93876e-45 3.98489e-46 9.13279e-46 1.62682e-45 4.98258e-45 1.20092e-45 5.35475e-45 2.23723e-45 1.68254e-44 4.69254e-45 8.4941e-44 3.72932e-42 2.49812e-38 -3.70969e-42 1.00011e-35 -1.84257e-39 1.2163e-35 -6.34569e-40 3.44561e-36 1.23971e-38 4.36841e-37 1.82586e-39 3.70226e-38 -5.02798e-43 2.40726e-39 -2.39671e-43 1.56045e-40 -2.7764e-44 1.16914e-41 -2.66341e-45 1.28643e-42 -3.15713e-46 1.89471e-43 -4.74933e-47 4.12092e-44 -1.00001e-47 1.11057e-44 -2.44079e-48 4.72928e-45 -8.06299e-49 2.31027e-45 -3.2402e-49 1.43062e-45 -1.70201e-49 8.86482e-46 -9.24351e-50 6.39461e-46 -5.79754e-50 4.39097e-46 -3.50988e-50 3.37096e-46 -2.33861e-50 2.45861e-46 -1.49292e-50 1.98631e-46 -1.03711e-50 1.52222e-46 -6.84703e-51 1.26049e-46 -4.81673e-51 9.87807e-47 -3.21521e-51 8.34317e-47 -2.28587e-51 6.69728e-47 -1.56414e-51 5.72528e-47 -1.14807e-51 4.66283e-47 -8.191e-52 4.03357e-47 -6.32257e-52 3.33327e-47 -4.78629e-52 2.93478e-47 -3.93636e-52 2.48347e-47 -3.17101e-52 2.23944e-47 -2.73898e-52 1.95599e-47 -2.29301e-52 1.81067e-47 -2.01445e-52 1.64129e-47 -1.70104e-52 1.58454e-47 -1.48852e-52 1.51459e-47 -1.24274e-52 1.51552e-47 -1.02817e-52 1.49782e-47 -7.57605e-53 1.52382e-47 -4.56313e-53 1.58717e-47 -8.85159e-54 1.78029e-47 1.00544e-49 2.05078e-47 2.67287e-49 2.56607e-47 5.26361e-49 3.82298e-47 1.07007e-48 6.89075e-47 2.44315e-48 1.20698e-46 5.18738e-48 1.70204e-46 8.63794e-48 2.11948e-46 1.25393e-47 2.6684e-46 1.83042e-47 3.38124e-46 2.68237e-47 4.18335e-46 3.82752e-47 5.0392e-46 5.29287e-47 5.70774e-46 6.83501e-47 5.94691e-46 8.04958e-47 5.59671e-46 8.48115e-47 4.83602e-46 8.12332e-47 3.85768e-46 7.11271e-47 2.88284e-46 5.7811e-47 2.05611e-46 4.4479e-47 1.40725e-46 3.26045e-47 9.52989e-47 2.34983e-47 6.4274e-47 1.67682e-47 4.56914e-47 1.25403e-47 3.36821e-47 9.66949e-48 2.6262e-47 7.84252e-48 2.15982e-47 6.67602e-48 1.88537e-47 6.00749e-48 1.77704e-47 5.81991e-48 1.5036e-47 5.05402e-48 1.24916e-47 4.31036e-48 1.07389e-47 3.8118e-48 9.66074e-48 3.54055e-48 8.98023e-48 3.41574e-48 9.69944e-48 3.85306e-48 8.49834e-48 3.55048e-48 7.16499e-48 3.17121e-48 5.80563e-48 2.74161e-48 5.00297e-48 2.53736e-48 3.877e-48 2.12389e-48 3.23295e-48 1.9218e-48 2.94828e-48 1.90796e-48 7.7914e-48 5.50031e-48 8.37428e-48 6.45692e-48 8.00017e-48 6.74478e-48 6.56034e-48 6.05943e-48 4.97648e-48 5.05513e-48 3.76558e-48 4.23628e-48 1.3345e-48 1.6817e-48 2.33888e-48 3.35774e-48 5.0097e-49 8.39018e-49 1.62111e-48 3.2711e-48 3.83083e-49 9.71759e-49 1.71685e-48 5.79673e-48 1.30177e-48 6.36287e-48 2.6194e-48 2.14556e-47 9.08953e-48 1.77602e-46 8.79059e-45 7.38726e-41 -1.26092e-44 7.98172e-38 -2.06634e-41 1.19478e-37 -1.50914e-41 3.45273e-38 -2.95981e-43 4.23993e-39 1.42453e-41 3.31659e-40 1.85893e-45 1.92584e-41 -1.3819e-45 1.04766e-42 -1.57115e-46 6.34659e-44 -1.31658e-47 5.53402e-45 -1.28548e-48 6.73453e-46 -1.6217e-49 1.22467e-46 -2.90288e-50 2.70945e-47 -6.18327e-51 8.40955e-48 -1.70015e-51 3.26539e-48 -5.31548e-52 1.69448e-48 -2.24572e-52 9.27015e-49 -1.04855e-52 5.95992e-49 -5.77823e-53 3.7572e-49 -3.17261e-53 2.64334e-49 -1.9239e-53 1.80496e-49 -1.14251e-53 1.35857e-49 -7.38695e-54 9.83877e-50 -4.61915e-54 7.67594e-50 -3.06204e-54 5.72868e-50 -1.94279e-54 4.57012e-50 -1.30984e-54 3.50225e-50 -8.55331e-55 2.85537e-50 -5.95915e-55 2.22975e-50 -4.04584e-55 1.84739e-50 -2.94273e-55 1.46931e-50 -2.09898e-55 1.24533e-50 -1.61525e-55 1.02042e-50 -1.22037e-55 8.91972e-51 -9.8711e-56 7.58701e-51 -7.7641e-56 6.87405e-51 -6.40978e-56 6.13953e-51 -5.09434e-56 5.86323e-51 -4.14594e-56 5.55506e-51 -3.14639e-56 5.5467e-51 -2.2415e-56 5.51199e-51 -1.17789e-56 5.70851e-51 1.68428e-54 6.09579e-51 4.39771e-53 7.43345e-51 1.0888e-52 1.02372e-50 2.29273e-52 1.56209e-50 4.73563e-52 2.59302e-50 9.93996e-52 4.8557e-50 2.2551e-51 8.63176e-50 4.72244e-51 1.23824e-49 7.83838e-51 1.56628e-49 1.13589e-50 1.99409e-49 1.64842e-50 2.54112e-49 2.38751e-50 3.14465e-49 3.34883e-50 3.7807e-49 4.54613e-50 4.27032e-49 5.76752e-50 4.42994e-49 6.6762e-50 4.14191e-49 6.91346e-50 3.55571e-49 6.52169e-50 2.82073e-49 5.64035e-50 2.10355e-49 4.55152e-50 1.50973e-49 3.51068e-50 1.04831e-49 2.60379e-50 7.30847e-50 1.92821e-50 5.12858e-50 1.42986e-50 3.84179e-50 1.12626e-50 2.97915e-50 9.13885e-51 2.42651e-50 7.75353e-51 2.06349e-50 6.84057e-51 1.84742e-50 6.33318e-51 1.77902e-50 6.29262e-51 1.51413e-50 5.52052e-51 1.25551e-50 4.72063e-51 1.07323e-50 4.1693e-51 9.60139e-51 3.86645e-51 8.87432e-51 3.72079e-51 9.67368e-51 4.24534e-51 8.37411e-51 3.86932e-51 6.95892e-51 3.40627e-51 5.53449e-51 2.88722e-51 4.74846e-51 2.65502e-51 3.62512e-51 2.18335e-51 3.03418e-51 1.97676e-51 2.81446e-51 1.98995e-51 7.95097e-51 6.11609e-51 8.64938e-51 7.25307e-51 8.28027e-51 7.58569e-51 6.80353e-51 6.83004e-51 5.13095e-51 5.67216e-51 3.85012e-51 4.72369e-51 1.3172e-51 1.81484e-51 2.34343e-51 3.68742e-51 4.75767e-52 8.74919e-52 1.62768e-51 3.60793e-51 3.71601e-52 1.03417e-51 1.80745e-51 6.67619e-51 1.40606e-51 7.49002e-51 3.05452e-51 2.71523e-50 1.80271e-50 3.80273e-49 1.82903e-47 1.74801e-43 -3.05822e-47 5.36883e-40 -1.66846e-43 1.02252e-39 -1.93831e-43 3.07007e-40 -1.68225e-44 3.70724e-41 3.65871e-44 2.72875e-42 1.21023e-46 1.44612e-43 -8.06188e-48 6.82649e-45 -8.74846e-49 3.43478e-46 -6.47549e-50 2.40003e-47 -5.26786e-51 2.40812e-48 -5.57002e-52 3.68117e-49 -8.46736e-53 7.04967e-50 -1.57911e-53 1.81028e-50 -3.8093e-54 5.44319e-51 -1.01473e-54 2.26353e-51 -3.42097e-55 1.06098e-51 -1.33691e-55 5.97192e-52 -6.2766e-56 3.40115e-52 -3.07109e-56 2.16902e-52 -1.67493e-56 1.3719e-52 -9.15006e-57 9.56453e-53 -5.45658e-57 6.52436e-53 -3.19864e-57 4.76705e-53 -1.98641e-57 3.36107e-53 -1.19309e-57 2.52962e-53 -7.57758e-58 1.84488e-53 -4.70439e-58 1.42945e-53 -3.10405e-58 1.06946e-53 -2.00014e-58 8.46388e-54 -1.37121e-58 6.47342e-54 -9.21594e-59 5.26936e-54 -6.63816e-59 4.17382e-54 -4.70204e-59 3.53192e-54 -3.54184e-59 2.92518e-54 -2.60234e-59 2.58903e-54 -1.99654e-59 2.27582e-54 -1.46051e-59 2.14185e-54 -1.0588e-59 2.0096e-54 -6.66093e-60 2.00264e-54 -2.9538e-60 2.00545e-54 3.58945e-57 2.12372e-54 1.78697e-56 2.52582e-54 3.96588e-56 3.66766e-54 8.61616e-56 6.06188e-54 1.9175e-55 1.02195e-53 4.08859e-55 1.76366e-53 8.56487e-55 3.35446e-53 1.92199e-54 6.02893e-53 3.99532e-54 8.78009e-53 6.63955e-54 1.12735e-52 9.64848e-54 1.4508e-52 1.39853e-53 1.85929e-52 2.01238e-53 2.30242e-52 2.79008e-53 2.7646e-52 3.7382e-53 3.11732e-52 4.68305e-53 3.22545e-52 5.35493e-53 3.00469e-52 5.4797e-53 2.57374e-52 5.12287e-53 2.04246e-52 4.40828e-53 1.53151e-52 3.56197e-53 1.11674e-52 2.78265e-53 7.94666e-53 2.11023e-53 5.75562e-53 1.62091e-53 4.22276e-53 1.25547e-53 3.32907e-53 1.04039e-53 2.69879e-53 8.82898e-54 2.27842e-53 7.77319e-54 1.9905e-53 7.05873e-54 1.81967e-53 6.69004e-54 1.78498e-53 6.79202e-54 1.52768e-53 6.01251e-54 1.26553e-53 5.1547e-54 1.07719e-53 4.54883e-54 9.60088e-54 4.21544e-54 8.84119e-54 4.05153e-54 9.73343e-54 4.6765e-54 8.35095e-54 4.22791e-54 6.86551e-54 3.682e-54 5.37963e-54 3.07217e-54 4.60584e-54 2.81465e-54 3.47198e-54 2.28067e-54 2.91686e-54 2.06763e-54 2.74446e-54 2.10633e-54 8.16481e-54 6.80371e-54 8.97256e-54 8.13927e-54 8.59853e-54 8.5159e-54 7.07564e-54 7.68063e-54 5.30321e-54 6.34551e-54 3.94517e-54 5.24752e-54 1.30747e-54 1.95677e-54 2.35256e-54 4.02843e-54 4.55795e-55 9.13351e-55 1.63672e-54 3.95443e-54 3.63466e-55 1.10147e-54 1.9011e-54 7.63102e-54 1.51614e-54 8.75369e-54 3.56262e-54 3.42249e-53 3.63821e-53 8.27052e-52 3.39293e-50 3.22891e-46 -5.46082e-50 3.03996e-42 -1.04673e-45 7.60758e-42 -1.84438e-45 2.41451e-42 -2.43495e-46 2.90505e-43 -6.19739e-48 2.04511e-44 -2.12378e-49 1.00735e-45 -5.115e-50 4.23458e-47 -4.83343e-51 1.8179e-48 -3.14704e-52 1.03683e-49 -2.15497e-53 8.60426e-51 -1.91348e-54 1.10678e-51 -2.47217e-55 1.84309e-52 -4.03499e-56 4.13069e-53 -8.57646e-57 1.05383e-53 -2.04319e-57 3.48501e-54 -5.88358e-58 1.36289e-54 -1.90385e-58 6.51448e-55 -7.6213e-59 3.29508e-55 -3.22751e-59 1.88327e-55 -1.5564e-59 1.09173e-55 -7.71973e-60 6.9916e-56 -4.20711e-60 4.45086e-56 -2.29325e-60 3.032e-56 -1.32447e-60 2.01448e-56 -7.48839e-61 1.42321e-56 -4.4685e-61 9.85449e-57 -2.62652e-61 7.24604e-57 -1.63348e-61 5.18092e-57 -9.99356e-62 3.91453e-57 -6.44177e-62 2.87587e-57 -4.08245e-62 2.24749e-57 -2.74798e-62 1.72143e-57 -1.82236e-62 1.40667e-57 -1.27336e-62 1.13532e-57 -8.67719e-63 9.82304e-58 -6.05438e-63 8.48741e-58 -3.91129e-63 7.85011e-58 -2.27627e-63 7.29803e-58 -7.54468e-64 7.28139e-58 2.09184e-60 7.41029e-58 6.85296e-60 8.86947e-58 1.44651e-59 1.23995e-57 2.97407e-59 2.12965e-57 6.84906e-59 3.84956e-57 1.56732e-58 6.754e-57 3.34709e-58 1.1866e-56 6.95894e-58 2.27885e-56 1.54927e-57 4.13191e-56 3.20746e-57 6.10135e-56 5.35006e-57 7.94867e-56 7.81728e-57 1.03367e-55 1.13491e-56 1.33247e-55 1.62791e-56 1.65231e-55 2.23982e-56 1.98352e-55 2.97401e-56 2.23609e-55 3.69447e-56 2.3126e-55 4.19163e-56 2.15345e-55 4.2603e-56 1.84922e-55 3.9716e-56 1.47721e-55 3.42541e-56 1.12224e-55 2.79477e-56 8.38747e-56 2.23212e-56 6.16513e-56 1.74522e-56 4.66285e-56 1.39804e-56 3.57775e-56 1.1316e-56 2.95451e-56 9.82079e-57 2.48688e-56 8.65691e-57 2.16247e-56 7.85816e-57 1.93229e-56 7.31017e-57 1.79874e-56 7.06969e-57 1.79394e-56 7.31559e-57 1.54413e-56 6.53095e-57 1.27933e-56 5.61571e-57 1.08585e-56 4.95485e-57 9.65815e-57 4.59298e-57 8.87642e-57 4.41391e-57 9.87163e-57 5.15316e-57 8.41566e-57 4.63203e-57 6.86539e-57 4.00252e-57 5.3165e-57 3.29808e-57 4.549e-57 3.01594e-57 3.39201e-57 2.41334e-57 2.85958e-57 2.19147e-57 2.72278e-57 2.25515e-57 8.43253e-57 7.57166e-57 9.34922e-57 9.129e-57 8.96242e-57 9.55026e-57 7.38364e-57 8.6253e-57 5.49886e-57 7.08648e-57 4.05494e-57 5.81653e-57 1.30534e-57 2.10997e-57 2.36869e-57 4.38692e-57 4.40381e-58 9.55368e-58 1.65004e-57 4.31664e-57 3.58287e-58 1.17477e-57 2.00024e-57 8.67448e-57 1.63457e-57 1.01765e-56 4.17478e-57 4.31564e-56 7.39407e-56 1.80636e-54 5.6717e-53 4.63117e-49 -7.28125e-53 1.44813e-44 -5.26586e-48 4.91475e-44 -1.40266e-47 1.67662e-44 -2.43017e-48 2.03325e-45 -1.11531e-49 1.38829e-46 -4.05395e-51 6.4562e-48 -3.54766e-52 2.46957e-49 -2.66023e-53 9.26476e-51 -1.50366e-54 4.4059e-52 -8.73038e-56 3.04628e-53 -6.53478e-57 3.30964e-54 -7.18817e-58 4.79924e-55 -1.02757e-58 9.43848e-56 -1.92771e-59 2.14605e-56 -4.12091e-60 6.04377e-57 -1.06273e-60 1.95157e-57 -2.9814e-61 7.9313e-58 -1.00837e-61 3.46206e-58 -3.73494e-62 1.74424e-58 -1.56576e-62 9.15139e-59 -6.93561e-63 5.33765e-59 -3.41842e-63 3.14807e-59 -1.71687e-63 1.98702e-59 -9.16437e-64 1.23846e-59 -4.84207e-64 8.20117e-60 -2.69732e-64 5.37406e-60 -1.49576e-64 3.73422e-60 -8.76175e-65 2.55264e-60 -5.06524e-65 1.83579e-60 -3.06886e-65 1.29541e-60 -1.8314e-65 9.70266e-61 -1.15185e-65 7.18696e-61 -7.13678e-66 5.67504e-61 -4.60538e-66 4.47583e-61 -2.8682e-66 3.77878e-61 -1.75614e-66 3.20945e-61 -9.06488e-67 2.92119e-61 -2.52394e-67 2.70198e-61 9.08614e-64 2.73525e-61 2.62859e-63 3.13333e-61 5.16798e-63 4.34198e-61 1.04226e-62 7.10116e-61 2.27915e-62 1.33005e-60 5.41108e-62 2.48504e-60 1.23447e-61 4.44537e-60 2.62285e-61 7.90166e-60 5.42265e-61 1.52846e-59 1.20071e-60 2.79094e-59 2.47948e-60 4.17497e-59 4.15701e-60 5.5172e-59 6.11796e-60 7.24861e-59 8.91193e-60 9.40162e-59 1.27735e-59 1.16854e-58 1.74941e-59 1.40431e-58 2.30975e-59 1.58564e-58 2.85561e-59 1.64319e-58 3.22764e-59 1.53498e-58 3.27424e-59 1.32807e-58 3.06217e-59 1.0747e-58 2.66594e-59 8.33134e-59 2.21337e-59 6.42849e-59 1.82114e-59 4.90561e-59 1.47592e-59 3.87944e-59 1.2349e-59 3.10431e-59 1.0418e-59 2.66956e-59 9.41425e-60 2.31928e-59 8.56856e-60 2.06764e-59 7.98117e-60 1.88427e-59 7.58206e-60 1.78298e-59 7.46635e-60 1.8056e-59 7.86094e-60 1.56356e-59 7.07584e-60 1.29702e-59 6.10542e-60 1.09922e-59 5.39033e-60 9.77123e-60 5.00294e-60 8.97539e-60 4.81229e-60 1.00823e-59 5.68052e-60 8.55806e-60 5.08635e-60 6.94454e-60 4.37145e-60 5.32814e-60 3.56674e-60 4.56085e-60 3.25974e-60 3.36902e-60 2.58071e-60 2.84945e-60 2.34778e-60 2.74055e-60 2.43707e-60 8.75718e-60 8.43273e-60 9.78677e-60 1.02405e-59 9.38054e-60 1.07083e-59 7.73541e-60 9.68245e-60 5.72391e-60 7.90956e-60 4.1837e-60 6.4416e-60 1.31109e-60 2.27745e-60 2.39404e-60 4.76992e-60 4.29043e-61 1.00201e-60 1.66907e-60 4.7009e-60 3.5581e-61 1.25529e-60 2.10746e-60 9.82291e-60 1.76409e-60 1.17864e-59 4.94668e-60 5.47971e-59 1.49465e-58 3.9114e-57 8.63387e-56 5.14103e-52 -7.28125e-56 5.8103e-47 -2.16229e-50 2.75547e-46 -8.79968e-50 1.0271e-46 -1.90736e-50 1.26892e-47 -1.14277e-51 8.504e-49 -4.51465e-53 3.78483e-50 -2.49066e-54 1.34194e-51 -1.44442e-55 4.49493e-53 -7.01401e-57 1.82038e-54 -3.47532e-58 1.0597e-55 -2.2041e-59 9.77725e-57 -2.07e-60 1.23826e-57 -2.59544e-61 2.14349e-58 -4.30775e-62 4.36215e-59 -8.27528e-63 1.09756e-59 -1.91982e-63 3.06551e-60 -4.87544e-64 1.05011e-60 -1.43322e-64 3.99936e-61 -4.61627e-65 1.74712e-61 -1.70598e-65 8.16424e-62 -6.68863e-66 4.29434e-62 -2.94141e-66 2.32665e-62 -1.34755e-66 1.35332e-62 -6.6009e-67 7.86198e-63 -3.2403e-67 4.85268e-63 -1.67731e-67 3.00068e-63 -8.72629e-68 1.96962e-63 -4.7933e-68 1.28099e-63 -2.61428e-68 8.76176e-64 -1.48619e-68 5.9275e-64 -8.35646e-69 4.25555e-64 -4.90581e-69 3.04915e-64 -2.83276e-69 2.33138e-64 -1.67333e-69 1.79788e-64 -9.28637e-70 1.48154e-64 -4.62366e-70 1.23822e-64 -1.26795e-70 1.11262e-64 3.46547e-67 1.04558e-64 9.78717e-67 1.17249e-64 1.89627e-66 1.53699e-64 3.62266e-66 2.46624e-64 7.78079e-66 4.3932e-64 1.76097e-65 8.49099e-64 4.17055e-65 1.6063e-63 9.40947e-65 2.91072e-63 1.99116e-64 5.2225e-63 4.10365e-64 1.01593e-62 9.05117e-64 1.86549e-62 1.86546e-63 2.82506e-62 3.14629e-63 3.78661e-62 4.66977e-63 5.02556e-62 6.83364e-63 6.56142e-62 9.80521e-63 8.18325e-62 1.34009e-62 9.86089e-62 1.76456e-62 1.1175e-61 2.17834e-62 1.16352e-61 2.46208e-62 1.09448e-61 2.50451e-62 9.58971e-62 2.36349e-62 7.90831e-62 2.09071e-62 6.29441e-62 1.77786e-62 5.0394e-62 1.51498e-62 4.00087e-62 1.2756e-62 3.30295e-62 1.11313e-62 2.74467e-62 9.74694e-63 2.4442e-62 9.12006e-63 2.18164e-62 8.53076e-63 1.98766e-62 8.12624e-63 1.8439e-62 7.86698e-63 1.7715e-62 7.87665e-63 1.81988e-62 8.42665e-63 1.58601e-62 7.64745e-63 1.31861e-62 6.62558e-63 1.11723e-62 5.85807e-63 9.93803e-63 5.44892e-63 9.13416e-63 5.25074e-63 1.03613e-62 6.26402e-63 8.77151e-63 5.59607e-63 7.09402e-63 4.7933e-63 5.40377e-63 3.8812e-63 4.63102e-63 3.54866e-63 3.39332e-63 2.78413e-63 2.87914e-63 2.53818e-63 2.79319e-63 2.65489e-63 9.1445e-63 9.40385e-63 1.02945e-62 1.14969e-62 9.86283e-63 1.20144e-62 8.13987e-63 1.08747e-62 5.98488e-63 8.83209e-63 4.33583e-63 7.1353e-63 1.32514e-63 2.46251e-63 2.43055e-63 5.18481e-63 4.21414e-64 1.05422e-63 1.69495e-63 5.11351e-63 3.55895e-64 1.34431e-63 2.22545e-63 1.10958e-62 1.90754e-63 1.36166e-62 5.98876e-63 7.08127e-62 2.97193e-61 8.30233e-60 1.20871e-58 4.39056e-55 -5.48021e-59 1.96699e-49 -7.33247e-53 1.34131e-48 -4.63285e-52 5.55155e-49 -1.23374e-52 7.05823e-50 -8.81002e-54 4.691e-51 -3.73263e-55 2.02168e-52 -1.64122e-56 6.75002e-54 -7.59755e-58 2.05829e-55 -3.16809e-59 7.24493e-57 -1.35057e-60 3.59454e-58 -7.30104e-62 2.83558e-59 -5.87754e-63 3.1485e-60 -6.47731e-64 4.81616e-61 -9.53528e-65 8.79421e-62 -1.64885e-65 1.98721e-62 -3.44995e-66 5.01545e-63 -7.97062e-67 1.49048e-63 -2.11666e-67 4.92628e-64 -6.01195e-68 1.89298e-64 -1.95635e-68 7.81196e-65 -6.86872e-69 3.65749e-65 -2.69776e-69 1.80314e-65 -1.11319e-69 9.60275e-66 -4.95591e-70 5.17293e-66 -2.24286e-70 2.96423e-66 -1.07428e-70 1.72088e-66 -5.22316e-71 1.06262e-66 -2.68232e-71 6.56414e-67 -1.37878e-71 4.26146e-67 -7.3552e-72 2.76506e-67 -3.88713e-72 1.90217e-67 -2.12716e-72 1.31934e-67 -1.13886e-72 9.77202e-68 -6.07135e-73 7.36469e-68 -2.87463e-73 5.92649e-68 -9.32717e-74 4.89603e-68 9.97374e-71 4.4218e-68 3.7043e-70 4.54045e-68 6.90985e-70 5.75443e-68 1.2999e-69 8.68954e-68 2.65089e-69 1.51778e-67 5.91543e-69 2.79162e-67 1.33943e-68 5.44921e-67 3.13265e-68 1.03701e-66 6.99389e-68 1.89908e-66 1.47736e-67 3.43554e-66 3.04091e-67 6.71354e-66 6.68739e-67 1.23824e-65 1.37598e-66 1.89741e-65 2.33609e-66 2.57972e-65 3.50043e-66 3.45861e-65 5.15108e-66 4.54811e-65 7.41071e-66 5.69905e-65 1.01304e-65 6.89845e-65 1.33404e-65 7.86414e-65 1.64963e-65 8.25017e-65 1.87126e-65 7.84482e-65 1.91737e-65 6.99493e-65 1.83573e-65 5.90971e-65 1.65935e-65 4.85163e-65 1.45239e-65 4.04086e-65 1.2854e-65 3.33653e-65 1.12424e-65 2.86612e-65 1.01995e-65 2.4623e-65 9.22896e-66 2.26006e-65 8.89954e-66 2.06549e-65 8.52549e-66 1.91893e-65 8.28611e-66 1.80982e-65 8.16278e-66 1.76391e-65 8.30079e-66 1.83687e-65 9.01429e-66 1.61166e-65 8.24843e-66 1.34421e-65 7.17982e-66 1.13988e-65 6.36238e-66 1.01575e-65 5.93585e-66 9.35054e-66 5.73459e-66 1.07075e-65 6.91094e-66 9.05313e-66 6.16827e-66 7.30939e-66 5.27447e-66 5.53749e-66 4.24625e-66 4.75413e-66 3.88726e-66 3.45969e-66 3.02672e-66 2.94499e-66 2.76608e-66 2.87887e-66 2.91306e-66 9.60241e-66 1.05056e-65 1.08837e-65 1.29258e-65 1.04208e-65 1.34974e-65 8.60715e-66 1.2229e-65 6.28879e-66 9.87426e-66 4.51582e-66 7.91192e-66 1.34799e-66 2.66874e-66 2.47991e-66 5.6392e-66 4.17207e-67 1.11292e-66 1.72873e-66 5.56112e-66 3.58501e-67 1.44334e-66 2.3571e-66 1.25164e-65 2.06797e-66 1.57072e-65 7.52874e-66 9.46735e-65 5.76624e-64 1.71353e-62 1.57013e-61 2.87627e-58 -3.11837e-62 5.63371e-52 -2.07422e-55 5.67954e-51 -2.06729e-54 2.65136e-51 -6.73195e-55 3.50119e-52 -5.52115e-56 2.32892e-53 -2.49043e-57 9.81928e-55 -9.76827e-59 3.12957e-56 -3.79861e-60 8.83892e-58 -1.3745e-61 2.75879e-59 -5.09318e-63 1.18159e-60 -2.36557e-64 8.03329e-62 -1.63915e-65 7.85645e-63 -1.59156e-66 1.06637e-63 -2.08506e-67 1.75201e-64 -3.25295e-68 3.56744e-65 -6.14854e-69 8.18163e-66 -1.29544e-69 2.19337e-66 -3.13132e-70 6.38258e-67 -8.06948e-71 2.15575e-67 -2.33066e-71 7.95179e-68 -7.32606e-72 3.31847e-68 -2.5917e-72 1.47067e-68 -9.69489e-73 7.1056e-69 -3.90788e-73 3.52414e-69 -1.61801e-73 1.86788e-69 -7.12856e-74 1.01461e-69 -3.22339e-74 5.87793e-70 -1.54387e-74 3.44539e-70 -7.45146e-75 2.12302e-70 -3.72195e-75 1.31824e-70 -1.84463e-75 8.68864e-71 -9.39038e-76 5.82999e-71 -4.62884e-76 4.1803e-71 -2.18299e-76 3.08176e-71 -8.03532e-77 2.42921e-71 1.15567e-75 2.0011e-71 1.3149e-73 1.93753e-71 2.61982e-73 2.2297e-71 4.66966e-73 3.23791e-71 9.34645e-73 5.3343e-71 1.9901e-72 9.61793e-71 4.45103e-72 1.78782e-70 9.97173e-72 3.50073e-70 2.30268e-71 6.68897e-70 5.09959e-71 1.23672e-69 1.07738e-70 2.25436e-69 2.21794e-70 4.4221e-69 4.86664e-70 8.18503e-69 9.99868e-70 1.26873e-68 1.70975e-69 1.75016e-68 2.58913e-69 2.3706e-68 3.83488e-69 3.14209e-68 5.54031e-69 3.96148e-68 7.59213e-69 4.82654e-68 1.00265e-68 5.54816e-68 1.24581e-68 5.8818e-68 1.42337e-68 5.67461e-68 1.47538e-68 5.17201e-68 1.44014e-68 4.49543e-68 1.33632e-68 3.81776e-68 1.20778e-68 3.30942e-68 1.11092e-68 2.83642e-68 1.00748e-68 2.52548e-68 9.46693e-69 2.23418e-68 8.81729e-69 2.10589e-68 8.73063e-69 1.96579e-68 8.54446e-69 1.85945e-68 8.45943e-69 1.78135e-68 8.4713e-69 1.76016e-68 8.74224e-69 1.8569e-68 9.62875e-69 1.64086e-68 8.88443e-69 1.37411e-68 7.77432e-69 1.16735e-68 6.90971e-69 1.04306e-68 6.47054e-69 9.62474e-69 6.27104e-69 1.11229e-68 7.63118e-69 9.40363e-69 6.81247e-69 7.58999e-69 5.82355e-69 5.72712e-69 4.66855e-69 4.92838e-69 4.28203e-69 3.56603e-69 3.31324e-69 3.04587e-69 3.03639e-69 2.99772e-69 3.21751e-69 1.01407e-68 1.17623e-68 1.15674e-68 1.456e-68 1.10677e-68 1.51917e-68 9.14864e-69 1.37769e-68 6.64329e-69 1.10596e-68 4.72833e-69 8.78787e-69 1.38022e-69 2.90013e-69 2.54364e-69 6.14127e-69 4.16222e-70 1.17908e-69 1.7715e-69 6.0514e-69 3.63683e-70 1.55422e-69 2.50551e-69 1.41127e-68 2.24881e-69 1.81062e-68 1.00346e-68 1.33728e-67 1.08644e-66 3.42272e-65 1.90767e-64 1.44667e-61 -1.36225e-65 1.37253e-54 -4.93986e-58 2.0961e-53 -7.88946e-57 1.1213e-53 -3.14716e-57 1.551e-54 -2.91435e-58 1.04132e-55 -1.39375e-59 4.33397e-57 -5.1684e-61 1.3341e-58 -1.77264e-62 3.54376e-60 -5.67041e-64 9.99274e-62 -1.85066e-65 3.74655e-63 -7.45896e-67 2.21296e-64 -4.47462e-68 1.91566e-65 -3.83976e-69 2.31895e-66 -4.48922e-70 3.44001e-67 -6.33175e-71 6.32773e-68 -1.08495e-71 1.32273e-68 -2.08687e-72 3.22494e-69 -4.60486e-73 8.50452e-70 -1.0873e-73 2.54601e-70 -2.843e-74 8.39549e-71 -8.03772e-75 3.15083e-71 -2.56364e-75 1.26402e-71 -8.73109e-76 5.52222e-72 -3.20478e-76 2.50373e-72 -1.21445e-76 1.22083e-72 -4.90486e-77 6.17745e-73 -2.05336e-77 3.35074e-73 -9.13862e-78 1.85711e-73 -4.12883e-78 1.08395e-73 -1.92828e-78 6.42962e-74 -8.94841e-79 4.05965e-74 -4.22059e-79 2.63279e-74 -1.89836e-79 1.82871e-74 -7.67014e-80 1.31902e-74 -1.68254e-80 1.02129e-74 3.94646e-77 8.86353e-75 9.75003e-77 9.48726e-75 1.75916e-76 1.24905e-74 3.31388e-76 1.98217e-74 6.93767e-76 3.37625e-74 1.4846e-75 6.14727e-74 3.28623e-75 1.14732e-73 7.28105e-75 2.24969e-73 1.66398e-74 4.3143e-73 3.66432e-74 8.04932e-73 7.75409e-74 1.47799e-72 1.59828e-73 2.909e-72 3.50137e-73 5.40025e-72 7.18474e-73 8.46655e-72 1.23813e-72 1.18549e-71 1.89688e-72 1.62275e-71 2.83045e-72 2.16984e-71 4.1126e-72 2.75685e-71 5.66196e-72 3.38807e-71 7.51968e-72 3.93685e-71 9.4171e-72 4.22965e-71 1.08741e-71 4.15461e-71 1.14473e-71 3.88492e-71 1.1439e-71 3.48415e-71 1.0932e-71 3.06478e-71 1.02184e-71 2.76185e-71 9.75916e-72 2.45032e-71 9.15327e-72 2.25291e-71 8.87627e-72 2.04567e-71 8.48255e-72 1.97466e-71 8.60088e-72 1.87949e-71 8.58439e-72 1.8081e-71 8.64749e-72 1.75828e-71 8.79602e-72 1.76049e-71 9.2059e-72 1.88057e-71 1.02767e-71 1.67418e-71 9.56282e-72 1.40878e-71 8.41681e-72 1.20002e-71 7.50791e-72 1.07603e-71 7.06128e-72 9.95928e-72 6.86887e-72 1.16124e-71 8.43701e-72 9.82667e-72 7.54048e-72 7.93809e-72 6.4513e-72 5.97329e-72 5.15661e-72 5.15466e-72 4.74138e-72 3.7124e-72 3.65e-72 3.18242e-72 3.35552e-72 3.15125e-72 3.57569e-72 1.0771e-71 1.32025e-71 1.23613e-71 1.64384e-71 1.18188e-71 1.71383e-71 9.77732e-72 1.55566e-71 7.0569e-72 1.24163e-71 4.97848e-72 9.78258e-72 1.42252e-72 3.16132e-72 2.62327e-72 6.70047e-72 4.18361e-73 1.25395e-72 1.8246e-72 6.59388e-72 3.71571e-73 1.67923e-72 2.67397e-72 1.59182e-71 2.45408e-72 2.08734e-71 1.44469e-71 2.03364e-70 1.98345e-69 6.60376e-68 2.18334e-67 5.65906e-65 -4.70057e-69 2.86163e-57 -9.99379e-61 6.7685e-56 -2.60115e-59 4.21342e-56 -1.27638e-59 6.15498e-57 -1.32311e-60 4.20082e-58 -6.68998e-62 1.73964e-59 -2.41991e-63 5.22438e-61 -7.61019e-65 1.3226e-62 -2.20033e-66 3.42752e-64 -6.42645e-68 1.14101e-65 -2.27602e-69 5.90807e-67 -1.19027e-70 4.55101e-68 -9.06002e-72 4.9349e-69 -9.48832e-73 6.63097e-70 -1.21355e-73 1.10671e-70 -1.88798e-74 2.11228e-71 -3.32486e-75 4.69963e-72 -6.71436e-76 1.1347e-72 -1.45593e-76 3.07235e-73 -3.48498e-77 9.10196e-74 -8.97289e-78 3.07618e-74 -2.59106e-78 1.12238e-74 -8.03992e-79 4.46125e-75 -2.69605e-79 1.85079e-75 -9.37786e-80 8.27803e-76 -3.47838e-80 3.88599e-76 -1.34703e-80 1.96687e-76 -5.56172e-81 1.02783e-76 -2.34599e-81 5.67602e-77 -1.02237e-81 3.21347e-77 -4.43011e-82 1.94037e-77 -1.93223e-82 1.21518e-77 -7.85529e-83 8.1848e-78 -2.57417e-83 5.79008e-78 1.23168e-81 4.54228e-78 3.44673e-80 4.33723e-78 6.64323e-80 5.27154e-78 1.23552e-79 7.63999e-78 2.44391e-79 1.2512e-77 5.13067e-79 2.15548e-77 1.08888e-78 3.93699e-77 2.38318e-78 7.36796e-77 5.23525e-78 1.44665e-76 1.18721e-77 2.785e-76 2.60516e-77 5.24216e-76 5.52809e-77 9.69516e-76 1.14199e-76 1.91441e-75 2.49946e-76 3.56324e-75 5.12416e-76 5.65071e-75 8.9043e-76 8.03569e-75 1.38161e-75 1.11208e-74 2.07877e-75 1.50163e-74 3.04225e-75 1.92583e-74 4.21691e-75 2.39262e-74 5.64733e-75 2.81712e-74 7.14881e-75 3.07553e-74 8.36898e-75 3.08486e-74 8.97789e-75 2.96774e-74 9.21326e-75 2.75073e-74 9.0857e-75 2.50595e-74 8.78441e-75 2.34264e-74 8.69425e-75 2.14516e-74 8.40996e-75 2.03008e-74 8.38983e-75 1.88725e-74 8.20629e-75 1.86179e-74 8.50323e-75 1.80462e-74 8.64426e-75 1.76422e-74 8.85227e-75 1.74059e-74 9.14052e-75 1.76524e-74 9.69664e-75 1.90855e-74 1.09648e-74 1.71233e-74 1.02913e-74 1.44882e-74 9.11547e-75 1.23837e-74 8.16538e-75 1.1151e-74 7.71708e-75 1.03585e-74 7.53798e-75 1.21832e-74 9.34271e-75 1.03281e-74 8.36623e-75 8.35819e-75 7.17058e-75 6.27875e-75 5.72091e-75 5.43588e-75 5.27586e-75 3.90056e-75 4.04504e-75 3.35665e-75 3.73157e-75 3.34218e-75 3.99691e-75 1.1507e-74 1.48609e-74 1.32837e-74 1.86086e-74 1.26921e-74 1.93872e-74 1.05082e-74 1.76141e-74 7.53945e-75 1.39783e-74 5.27205e-75 1.09193e-74 1.47576e-75 3.45782e-75 2.72062e-75 7.32805e-75 4.23646e-76 1.33909e-75 1.88962e-75 7.20026e-75 3.8235e-76 1.82114e-75 2.86603e-75 1.79733e-74 2.68873e-75 2.40843e-74 2.26025e-74 3.35044e-73 3.50774e-72 1.23066e-70 2.36899e-70 1.76719e-68 -1.31965e-72 5.13596e-60 -1.73595e-63 1.92277e-58 -7.47643e-62 1.4124e-58 -4.54261e-62 2.19589e-59 -5.24664e-63 1.53336e-60 -2.80198e-64 6.3616e-62 -1.00715e-65 1.88031e-63 -2.98844e-67 4.58881e-65 -7.97769e-69 1.10982e-66 -2.12013e-70 3.3281e-68 -6.68965e-72 1.52418e-69 -3.07612e-73 1.05028e-70 -2.0857e-74 1.02524e-71 -1.96484e-75 1.25282e-72 -2.28366e-76 1.90141e-73 -3.23592e-77 3.32489e-74 -5.22507e-78 6.77072e-75 -9.6733e-79 1.50067e-75 -1.93304e-79 3.71745e-76 -4.24947e-80 1.00215e-76 -1.00567e-80 3.06386e-77 -2.65208e-81 1.01777e-77 -7.5233e-82 3.69414e-78 -2.30994e-82 1.40692e-78 -7.38855e-83 5.78492e-79 -2.52422e-83 2.518e-79 -9.04902e-84 1.18753e-79 -3.46662e-84 5.83642e-80 -1.36429e-84 3.04369e-80 -5.5467e-85 1.6411e-80 -2.24409e-85 9.48249e-81 -9.04036e-86 5.74e-81 -3.28569e-86 3.75853e-81 -7.82845e-87 2.6256e-81 8.53432e-84 2.21198e-81 2.47879e-83 2.38775e-81 4.65925e-83 3.21807e-81 9.07705e-83 4.81559e-81 1.79727e-82 7.95815e-81 3.73216e-82 1.37821e-80 7.85036e-82 2.52218e-80 1.70301e-81 4.73481e-80 3.72032e-81 9.31443e-80 8.3926e-81 1.80105e-79 1.83868e-80 3.42009e-79 3.91656e-80 6.37193e-79 8.11659e-80 1.26246e-78 1.77627e-79 2.35585e-78 3.63998e-79 3.7796e-78 6.38212e-79 5.4625e-78 1.00397e-78 7.647e-78 1.52451e-78 1.04388e-77 2.25047e-78 1.35364e-77 3.14706e-78 1.70381e-77 4.26056e-78 2.03735e-77 5.4659e-78 2.26548e-77 6.5048e-78 2.32588e-77 7.12988e-78 2.30619e-77 7.5295e-78 2.21013e-77 7.66726e-78 2.08305e-77 7.66082e-78 2.01489e-77 7.83846e-78 1.89908e-77 7.79903e-78 1.84486e-77 7.98293e-78 1.75256e-77 7.9769e-78 1.76424e-77 8.43379e-78 1.73987e-77 8.72418e-78 1.72741e-77 9.07597e-78 1.72835e-77 9.50824e-78 1.77482e-77 1.02192e-77 1.94159e-77 1.16998e-77 1.75606e-77 1.10776e-77 1.49489e-77 9.87869e-78 1.28298e-77 8.89091e-78 1.16082e-77 8.44773e-78 1.08279e-77 8.28936e-78 1.28439e-77 1.03645e-77 1.09157e-77 9.30582e-78 8.85671e-78 7.99663e-78 6.64812e-78 6.37418e-78 5.77683e-78 5.89851e-78 4.13369e-78 4.50848e-78 3.57183e-78 4.17472e-78 3.57448e-78 4.49285e-78 1.23654e-77 1.67803e-77 1.43564e-77 2.11295e-77 1.37087e-77 2.19997e-77 1.13592e-77 2.0006e-77 8.10259e-78 1.57869e-77 5.61591e-78 1.22262e-77 1.54109e-78 3.79626e-78 2.838e-78 8.03767e-78 4.32214e-79 1.43646e-78 1.96841e-78 7.88444e-78 3.96242e-79 1.98314e-78 3.0856e-78 2.03256e-77 2.95921e-78 2.78371e-77 3.79877e-77 5.91317e-76 6.01554e-75 2.21776e-73 2.45079e-73 4.52982e-72 -3.1161e-76 8.00126e-63 -2.61635e-66 4.83279e-61 -1.89068e-64 4.2478e-61 -1.43008e-64 7.07524e-62 -1.8395e-65 5.08465e-63 -1.03815e-66 2.12591e-64 -3.75618e-68 6.22978e-66 -1.0743e-69 1.47981e-67 -2.6984e-71 3.38573e-69 -6.62917e-73 9.27492e-71 -1.88989e-74 3.79343e-72 -7.71302e-76 2.35085e-73 -4.6791e-77 2.07651e-74 -3.97861e-78 2.31429e-75 -4.21407e-79 3.20597e-76 -5.45358e-80 5.14604e-77 -8.08548e-81 9.61126e-78 -1.3766e-81 1.96309e-78 -2.53651e-82 4.46492e-79 -5.13672e-83 1.10576e-79 -1.12173e-83 3.08573e-80 -2.72109e-84 9.36698e-81 -7.09965e-85 3.11263e-81 -2.00137e-85 1.09058e-81 -5.90331e-86 4.13538e-82 -1.86228e-86 1.67044e-82 -6.19254e-87 7.34184e-83 -2.20595e-87 3.39121e-83 -8.11014e-88 1.66972e-83 -3.07993e-88 8.57674e-84 -1.16454e-88 4.74873e-84 -4.32985e-89 2.78474e-84 -1.38698e-89 1.78144e-84 -1.76771e-90 1.26498e-84 7.82648e-87 1.1976e-84 1.76129e-86 1.4584e-84 3.4389e-86 2.02067e-84 6.63619e-86 3.05188e-84 1.2978e-85 5.06171e-84 2.66573e-85 8.80592e-84 5.57307e-85 1.61554e-83 1.20196e-84 3.04527e-83 2.61866e-84 6.00809e-83 5.89064e-84 1.16775e-82 1.29095e-83 2.23752e-82 2.76334e-83 4.20083e-82 5.75106e-83 8.35454e-82 1.25968e-82 1.56336e-81 2.58204e-82 2.53819e-81 4.57097e-82 3.73096e-81 7.29794e-82 5.2866e-81 1.11941e-81 7.30421e-81 1.66922e-81 9.59264e-81 2.35946e-81 1.22577e-80 3.23668e-81 1.49154e-80 4.21779e-81 1.69258e-80 5.11379e-81 1.78161e-80 5.73809e-81 1.82221e-80 6.2424e-81 1.80475e-80 6.5618e-81 1.75688e-80 6.76525e-81 1.75378e-80 7.13818e-81 1.69735e-80 7.2886e-81 1.68898e-80 7.63867e-81 1.63721e-80 7.78669e-81 1.67983e-80 8.39038e-81 1.68431e-80 8.825e-81 1.69742e-80 9.32117e-81 1.72171e-80 9.90308e-81 1.78968e-80 1.07789e-80 1.9804e-80 1.24894e-80 1.80611e-80 1.19307e-80 1.54769e-80 1.07159e-80 1.33447e-80 9.69442e-81 1.21382e-80 9.26436e-81 1.13742e-80 9.13566e-81 1.3605e-80 1.15212e-80 1.15987e-80 1.03781e-80 9.44209e-81 8.94765e-81 7.08794e-81 7.13194e-81 6.1841e-81 6.62533e-81 4.41642e-81 5.05279e-81 3.8326e-81 4.69762e-81 3.8535e-81 5.0781e-81 1.33664e-80 1.90133e-80 1.56061e-80 2.40736e-80 1.48943e-80 2.50514e-80 1.23518e-80 2.28015e-80 8.76042e-81 1.78928e-80 6.01834e-81 1.37372e-80 1.62001e-81 4.18464e-81 2.97836e-81 8.84584e-81 4.44298e-82 1.54837e-81 2.06292e-81 8.66227e-81 4.13502e-82 2.16883e-81 3.33715e-81 2.30315e-80 3.27433e-81 3.22644e-80 6.7043e-80 1.09309e-78 1.00218e-77 3.87182e-76 2.42971e-76 9.84508e-76 -6.36608e-80 1.09233e-65 -3.46148e-69 1.08294e-63 -4.23966e-67 1.15158e-63 -4.01918e-67 2.06978e-64 -5.76026e-68 1.53828e-65 -3.4405e-69 6.51555e-67 -1.26434e-70 1.9048e-68 -3.54132e-72 4.44061e-70 -8.50489e-74 9.72423e-72 -1.96014e-75 2.46617e-73 -5.11945e-77 9.09733e-75 -1.87318e-78 5.09724e-76 -1.02184e-79 4.09136e-77 -7.87147e-81 4.17369e-78 -7.61945e-82 5.29493e-79 -9.02662e-83 7.81671e-80 -1.2315e-83 1.34378e-80 -1.93019e-84 2.53171e-81 -3.28491e-85 5.30484e-82 -6.1426e-86 1.21207e-82 -1.23977e-86 3.11074e-83 -2.77897e-87 8.68398e-84 -6.70354e-88 2.6499e-84 -1.74297e-88 8.56772e-85 -4.75309e-89 3.00415e-85 -1.38711e-89 1.12851e-85 -4.2881e-90 4.63219e-86 -1.42433e-90 2.01321e-86 -4.90177e-91 9.36933e-87 -1.74222e-91 4.59055e-87 -6.16577e-92 2.43986e-87 -2.11731e-92 1.39e-87 -5.86097e-93 8.73782e-88 2.3216e-91 6.71554e-88 6.05883e-90 7.28657e-88 1.31811e-89 9.13013e-88 2.51223e-89 1.27172e-87 4.74826e-89 1.92956e-87 9.18155e-89 3.2111e-87 1.87159e-88 5.61674e-87 3.90152e-88 1.03422e-86 8.38954e-88 1.96003e-86 1.82762e-87 3.88286e-86 4.10899e-87 7.59358e-86 9.02514e-87 1.4687e-85 1.94361e-86 2.7801e-85 4.06697e-86 5.55351e-85 8.92622e-86 1.0426e-84 1.83176e-85 1.71365e-84 3.27655e-85 2.56399e-84 5.31518e-85 3.67994e-84 8.24353e-85 5.15226e-84 1.24351e-84 6.8637e-84 1.77994e-84 8.92058e-84 2.47936e-84 1.10644e-83 3.28815e-84 1.2832e-83 4.06848e-84 1.3862e-83 4.67904e-84 1.46255e-83 5.2449e-84 1.49538e-83 5.6859e-84 1.50072e-83 6.03843e-84 1.54231e-83 6.55501e-84 1.52973e-83 6.85578e-84 1.5566e-83 7.34485e-84 1.53802e-83 7.63012e-84 1.60697e-83 8.3717e-84 1.63725e-83 8.94798e-84 1.67409e-83 9.59096e-84 1.72089e-83 1.03297e-83 1.81028e-83 1.13823e-83 2.02578e-83 1.33431e-83 1.86331e-83 1.28612e-83 1.60797e-83 1.16386e-83 1.39356e-83 1.05878e-83 1.27487e-83 1.01803e-83 1.20057e-83 1.00919e-83 1.44788e-83 1.2835e-83 1.23891e-83 1.16055e-83 1.01252e-83 1.00455e-83 7.60691e-84 8.01293e-84 6.66643e-84 7.47575e-84 4.75499e-84 5.69317e-84 4.14515e-84 5.31584e-84 4.18628e-84 5.77074e-84 1.45353e-83 2.16248e-83 1.70654e-83 2.75299e-83 1.62799e-83 2.86347e-83 1.35122e-83 2.60858e-83 9.53014e-84 2.0358e-83 6.48948e-84 1.54938e-83 1.71446e-84 4.6327e-84 3.14533e-84 9.7724e-84 4.60197e-85 1.6775e-84 2.17527e-84 9.55158e-84 4.34442e-85 2.38228e-84 3.62605e-84 2.61582e-83 3.64699e-84 3.7555e-83 1.21379e-82 2.068e-81 1.6253e-80 6.5624e-79 2.31867e-79 1.86462e-79 -1.12737e-83 1.32094e-68 -4.06792e-72 2.17773e-66 -8.52477e-70 2.83322e-66 -1.01785e-69 5.52789e-67 -1.62824e-70 4.26828e-68 -1.03001e-71 1.8394e-69 -3.8661e-73 5.39273e-71 -1.07245e-74 1.24243e-72 -2.49508e-76 2.63027e-74 -5.46555e-78 6.25176e-76 -1.3252e-79 2.10072e-77 -4.39393e-81 1.06996e-78 -2.1677e-82 7.83762e-80 -1.51872e-83 7.34307e-81 -1.34811e-84 8.55558e-82 -1.46555e-85 1.16474e-82 -1.84366e-86 1.84569e-83 -2.66405e-87 3.21438e-84 -4.19801e-88 6.22187e-85 -7.25153e-89 1.31418e-85 -1.35672e-89 3.11699e-86 -2.81305e-90 8.04622e-87 -6.29613e-91 2.26573e-87 -1.51648e-91 6.77876e-88 -3.83526e-92 2.20228e-88 -1.03873e-92 7.71127e-89 -2.99367e-93 2.96418e-89 -9.28602e-94 1.21453e-89 -2.99787e-94 5.3529e-90 -1.00051e-94 2.50624e-90 -3.31865e-95 1.28315e-90 -1.05226e-95 7.12793e-91 -2.44048e-96 4.43695e-91 1.10395e-93 4.0347e-91 4.75081e-93 4.52918e-91 9.68193e-93 5.70951e-91 1.78957e-92 7.96641e-91 3.32308e-92 1.21429e-90 6.37658e-92 2.02973e-90 1.29422e-91 3.57413e-90 2.69775e-91 6.61409e-90 5.79825e-91 1.26202e-89 1.26594e-90 2.51373e-89 2.85081e-90 4.95215e-89 6.28741e-90 9.67365e-89 1.36384e-89 1.84749e-88 2.87272e-89 3.7101e-88 6.32597e-89 6.99302e-88 1.30103e-88 1.16419e-87 2.35332e-88 1.77451e-87 3.88296e-88 2.58175e-87 6.09548e-88 3.66744e-87 9.3151e-88 4.96312e-87 1.35251e-87 6.57147e-87 1.91662e-87 8.31915e-87 2.5909e-87 9.87034e-87 3.27554e-87 1.09474e-86 3.86337e-87 1.19086e-86 4.46042e-87 1.25517e-86 4.98042e-87 1.29618e-86 5.43866e-87 1.36855e-86 6.06202e-87 1.38891e-86 6.48456e-87 1.44339e-86 7.09299e-87 1.45255e-86 7.5035e-87 1.54437e-86 8.37732e-87 1.59812e-86 9.09491e-87 1.65735e-86 9.88894e-87 1.72612e-86 1.07937e-86 1.83714e-86 1.20374e-86 2.07856e-86 1.4272e-86 1.92854e-86 1.3882e-86 1.67662e-86 1.26606e-86 1.46113e-86 1.15857e-86 1.3449e-86 1.12118e-86 1.27326e-86 1.11764e-86 1.54807e-86 1.43327e-86 1.33014e-86 1.3015e-86 1.09199e-86 1.13166e-86 8.21625e-87 9.03992e-87 7.2349e-87 8.47328e-87 5.15751e-87 6.44812e-87 4.51754e-87 6.04849e-87 4.58187e-87 6.59307e-87 1.59027e-86 2.46936e-86 1.8774e-86 3.16072e-86 1.79035e-86 3.28629e-86 1.48726e-86 2.99637e-86 1.04327e-86 2.32587e-86 7.04168e-87 1.7547e-86 1.82684e-87 5.15236e-87 3.34317e-87 1.0841e-86 4.80269e-88 1.82691e-87 2.30778e-87 1.05728e-86 4.5947e-88 2.62833e-87 3.95898e-87 2.97873e-86 4.09701e-87 4.39927e-86 2.21473e-85 3.9344e-84 2.57101e-83 1.08222e-81 2.13826e-82 3.07967e-83 -1.80891e-87 1.42968e-71 -4.29431e-75 3.96617e-69 -1.54982e-72 6.36692e-69 -2.34659e-72 1.3569e-69 -4.19305e-73 1.09254e-70 -2.81107e-74 4.8072e-72 -1.08239e-75 1.41945e-73 -2.9983e-77 3.25073e-75 -6.82606e-79 6.7083e-77 -1.43723e-80 1.5107e-78 -3.27399e-82 4.66944e-80 -9.94107e-84 2.17383e-81 -4.46202e-85 1.45905e-82 -2.85471e-86 1.26001e-83 -2.33033e-87 1.35193e-84 -2.33094e-88 1.70123e-85 -2.70861e-89 2.48934e-86 -3.6153e-90 4.01879e-87 -5.27926e-91 7.19086e-88 -8.44274e-92 1.40868e-88 -1.46551e-92 3.09172e-89 -2.8197e-93 7.40824e-90 -5.86116e-94 1.93373e-90 -1.31194e-94 5.37111e-91 -3.0879e-95 1.62212e-91 -7.78468e-96 5.30922e-92 -2.0957e-96 1.91405e-92 -6.08869e-97 7.40909e-93 -1.84858e-97 3.10269e-93 -5.80456e-98 1.39069e-93 -1.8098e-98 6.88005e-94 -5.29298e-99 3.74289e-94 -9.82038e-100 2.50606e-94 1.16596e-96 2.48771e-94 3.59827e-96 2.80694e-94 6.90407e-96 3.54762e-94 1.24514e-95 4.96009e-94 2.28202e-95 7.60227e-94 4.35986e-95 1.27799e-93 8.83566e-95 2.26843e-93 1.84604e-94 4.22456e-93 3.97442e-94 8.12699e-93 8.71492e-94 1.62986e-92 1.96963e-93 3.2385e-92 4.36956e-93 6.39374e-92 9.5578e-93 1.23302e-91 2.02894e-92 2.4919e-91 4.48868e-92 4.72004e-91 9.26293e-92 7.96369e-91 1.69561e-91 1.23762e-90 2.84859e-91 1.82684e-90 4.53078e-91 2.63611e-90 7.02435e-91 3.62875e-90 1.03615e-90 4.90147e-90 1.49611e-90 6.33934e-90 2.06393e-90 7.69901e-90 2.66815e-90 8.76669e-90 3.22773e-90 9.82295e-90 3.8352e-90 1.06566e-89 4.40433e-90 1.13044e-89 4.93737e-90 1.22406e-89 5.64108e-90 1.26955e-89 6.16443e-90 1.34612e-89 6.87786e-90 1.37889e-89 7.405e-90 1.49102e-89 8.40785e-90 1.56649e-89 9.26821e-90 1.64716e-89 1.02193e-89 1.73769e-89 1.13011e-89 1.87086e-89 1.27527e-89 2.13965e-89 1.52889e-89 2.00283e-89 1.5008e-89 1.75469e-89 1.3798e-89 1.53825e-89 1.27053e-89 1.4251e-89 1.23783e-89 1.35678e-89 1.2411e-89 1.66294e-89 1.60468e-89 1.43543e-89 1.46397e-89 1.18436e-89 1.27935e-89 8.93005e-90 1.02407e-89 7.90341e-90 9.64668e-90 5.63426e-90 7.3404e-90 4.96001e-90 6.91925e-90 5.05164e-90 7.57274e-90 1.75064e-89 2.83165e-89 2.07798e-89 3.64391e-89 1.98112e-89 3.78755e-89 1.64721e-89 3.45647e-89 1.14938e-89 2.66892e-89 7.69006e-90 1.99597e-89 1.96012e-90 5.75816e-90 3.57683e-90 1.20801e-89 5.0494e-91 2.00019e-90 2.46326e-90 1.17503e-89 4.89138e-91 2.91293e-90 4.34425e-90 3.40206e-89 4.65604e-90 5.20255e-89 4.02752e-88 7.44465e-87 3.97396e-86 1.74027e-84 1.91216e-85 4.63318e-87 -2.63738e-91 1.39901e-74 -4.11213e-78 6.58594e-72 -2.57468e-75 1.31721e-71 -4.95888e-75 3.07939e-72 -9.9186e-76 2.59375e-73 -7.05731e-77 1.16922e-74 -2.79641e-78 3.4897e-76 -7.78744e-80 7.98005e-78 -1.74959e-81 1.61656e-79 -3.57454e-83 3.48215e-81 -7.73181e-85 9.99329e-83 -2.17109e-86 4.27571e-84 -8.91827e-88 2.63981e-85 -5.22977e-89 2.10725e-86 -3.93627e-90 2.088e-87 -3.6317e-91 2.43331e-88 -3.90464e-92 3.2949e-89 -4.82252e-93 4.93574e-90 -6.53086e-94 8.1838e-91 -9.69125e-95 1.48848e-91 -1.5607e-95 3.03317e-92 -2.78989e-96 6.75379e-93 -5.39914e-97 1.63954e-93 -1.12462e-97 4.24285e-94 -2.47015e-98 1.19472e-94 -5.81125e-99 3.66203e-95 -1.46529e-99 1.24172e-95 -3.99802e-100 4.55165e-96 -1.14401e-100 1.81453e-96 -3.38848e-101 7.8121e-97 -9.95362e-102 3.74525e-97 -2.69343e-102 2.0165e-97 -3.72753e-103 1.53535e-97 1.03564e-99 1.53015e-97 2.61382e-99 1.72643e-97 4.79024e-99 2.18831e-97 8.48684e-99 3.06912e-97 1.54158e-98 4.73522e-97 2.94093e-98 8.01576e-97 5.9659e-98 1.43599e-96 1.25204e-97 2.69481e-96 2.70561e-97 5.23368e-96 5.96977e-97 1.05828e-95 1.35663e-96 2.12357e-95 3.03241e-96 4.24072e-95 6.69612e-96 8.26583e-95 1.43425e-95 1.68315e-94 3.19219e-95 3.20745e-94 6.61807e-95 5.48802e-94 1.22695e-94 8.70276e-94 2.10068e-94 1.30443e-93 3.38876e-94 1.91421e-93 5.33697e-94 2.68335e-93 8.00844e-94 3.70144e-93 1.17974e-93 4.89398e-93 1.6622e-93 6.08537e-93 2.19811e-93 7.11113e-93 2.72663e-93 8.19807e-93 3.33084e-93 9.14038e-93 3.92852e-93 9.94484e-93 4.51443e-93 1.10277e-92 5.27958e-93 1.16774e-92 5.8883e-93 1.26233e-92 6.69625e-93 1.31556e-92 7.3339e-93 1.44608e-92 8.46452e-93 1.54199e-92 9.47068e-93 1.64353e-92 1.05864e-92 1.75594e-92 1.18585e-92 1.91205e-92 1.35375e-92 2.21008e-92 1.64074e-92 2.08738e-92 1.62557e-92 1.84348e-92 1.50695e-92 1.62626e-92 1.39668e-92 1.51693e-92 1.37031e-92 1.45272e-92 1.38224e-92 1.79484e-92 1.8017e-92 1.55706e-92 1.65203e-92 1.29179e-92 1.45163e-92 9.76581e-93 1.16498e-92 8.68921e-93 1.10317e-92 6.19817e-93 8.39845e-93 5.48545e-93 7.95782e-93 5.60973e-93 8.74431e-93 1.93917e-92 3.26125e-92 2.31414e-92 4.21906e-92 2.20593e-92 4.38454e-92 1.83585e-92 4.00501e-92 1.27447e-92 3.07671e-92 8.45299e-93 2.28099e-92 2.11784e-93 6.4679e-93 3.8521e-93 1.35237e-92 5.34742e-94 2.20167e-93 2.64528e-93 1.31141e-92 5.24177e-94 3.24362e-93 4.79215e-93 3.89851e-92 5.3759e-93 6.23892e-92 7.25415e-91 1.39258e-89 6.01183e-89 2.73447e-87 1.66338e-88 6.36547e-91 -3.62914e-95 1.24951e-77 -3.61009e-81 1.00726e-74 -3.93483e-78 2.52366e-74 -9.69049e-78 6.50255e-75 -2.17239e-78 5.74715e-76 -1.64291e-79 2.65997e-77 -6.71657e-81 8.04868e-79 -1.88948e-82 1.84485e-80 -4.21784e-84 3.6901e-82 -8.42733e-86 7.66649e-84 -1.7466e-87 2.06056e-85 -4.57795e-89 8.1462e-87 -1.73105e-90 4.64295e-88 -9.3378e-92 3.43502e-89 -6.49534e-93 3.15154e-90 -5.53958e-94 3.40753e-91 -5.51924e-95 4.27835e-92 -6.3175e-96 5.95245e-93 -7.94015e-97 9.16818e-94 -1.09392e-97 1.54843e-94 -1.63754e-98 2.93368e-95 -2.72175e-99 6.08597e-96 -4.91096e-100 1.37597e-96 -9.53768e-101 3.3265e-97 -1.95618e-101 8.75516e-98 -4.3057e-102 2.51971e-98 -1.01917e-102 8.05551e-99 -2.61701e-103 2.8013e-99 -7.07092e-104 1.06545e-99 -1.98229e-104 4.41628e-100 -5.50688e-105 2.06562e-100 -1.38732e-105 1.13286e-100 -1.19357e-106 9.35295e-101 8.17856e-103 9.32357e-101 1.82771e-102 1.05245e-100 3.2415e-102 1.33951e-100 5.67545e-102 1.88706e-100 1.02562e-101 2.93434e-100 1.95902e-101 5.00838e-100 3.98723e-101 9.0664e-100 8.42248e-101 1.71664e-99 1.83037e-100 3.3701e-99 4.07124e-100 6.88015e-99 9.31955e-100 1.39602e-98 2.10236e-99 2.82236e-98 4.69198e-99 5.56588e-98 1.01525e-98 1.14344e-97 2.27655e-98 2.19489e-97 4.74809e-98 3.81113e-97 8.92221e-98 6.17143e-97 1.55812e-97 9.4009e-97 2.55178e-97 1.40443e-96 4.08729e-97 2.00674e-96 6.24597e-97 2.82912e-96 9.39591e-97 3.82533e-96 1.35275e-96 4.86983e-96 1.8301e-96 5.8366e-96 2.32668e-96 6.91488e-96 2.91897e-96 7.91238e-96 3.53118e-96 8.8183e-96 4.15449e-96 1.00021e-95 4.96764e-96 1.08052e-95 5.6504e-96 1.1901e-95 6.54543e-96 1.26139e-95 7.28957e-96 1.40889e-95 8.5485e-96 1.52438e-95 9.70512e-96 1.64654e-95 1.0995e-95 1.78125e-95 1.24728e-95 1.96145e-95 1.4402e-95 2.29103e-95 1.7643e-95 2.18361e-95 1.7644e-95 1.94454e-95 1.64967e-95 1.72677e-95 1.53941e-95 1.62215e-95 1.52136e-95 1.56304e-95 1.54424e-95 1.94664e-95 2.02918e-95 1.69786e-95 1.87071e-95 1.41693e-95 1.65348e-95 1.0745e-95 1.33101e-95 9.61369e-96 1.26731e-95 6.86542e-96 9.65815e-96 6.1099e-96 9.20172e-96 6.27363e-96 1.01513e-95 2.16139e-95 3.77303e-95 2.59301e-95 4.90678e-95 2.47167e-95 5.09891e-95 2.05907e-95 4.66218e-95 1.42238e-95 3.56392e-95 9.35302e-96 2.61946e-95 2.30428e-96 7.30343e-96 4.17588e-96 1.52135e-95 5.70371e-97 2.43674e-96 2.85844e-96 1.47024e-95 5.65519e-97 3.62987e-96 5.31515e-96 4.48399e-95 6.34307e-96 7.63259e-95 1.29013e-93 2.56786e-92 8.91621e-92 4.20678e-90 1.41165e-91 8.29047e-95 -4.69299e-99 1.02897e-80 -2.94007e-84 1.42772e-77 -5.59448e-81 4.51398e-77 -1.76463e-80 1.28631e-77 -4.4409e-81 1.19623e-78 -3.56883e-82 5.69507e-80 -1.50848e-83 1.75043e-81 -4.30161e-85 4.03379e-83 -9.58794e-87 8.00294e-85 -1.88531e-88 1.61458e-86 -3.77262e-90 4.09671e-88 -9.30654e-92 1.50424e-89 -3.25812e-93 7.94059e-91 -1.62273e-94 5.4572e-92 -1.04563e-95 4.64635e-93 -8.26068e-97 4.66894e-94 -7.63867e-98 5.44507e-95 -8.11198e-99 7.04238e-96 -9.47544e-100 1.00838e-96 -1.21283e-100 1.58472e-97 -1.69038e-101 2.7942e-98 -2.6132e-102 5.40907e-99 -4.40006e-103 1.14125e-99 -7.98153e-104 2.57929e-100 -1.53182e-104 6.36151e-101 -3.15587e-105 1.72278e-101 -7.0194e-106 5.20263e-102 -1.70015e-106 1.71885e-102 -4.35071e-107 6.25463e-103 -1.15643e-107 2.50434e-103 -3.05627e-108 1.15331e-103 -7.18291e-109 6.6339e-104 -1.44539e-110 5.6334e-104 6.01085e-106 5.61853e-104 1.23828e-105 6.35481e-104 2.14536e-105 8.13341e-104 3.72986e-105 1.15266e-103 6.72772e-105 1.8088e-103 1.28978e-104 3.11697e-103 2.63948e-104 5.70852e-103 5.62245e-104 1.09186e-102 1.23102e-103 2.16943e-102 2.765e-103 4.47753e-102 6.38676e-103 9.19835e-102 1.45633e-102 1.88447e-101 3.28879e-102 3.76399e-101 7.19797e-102 7.81207e-101 1.62856e-101 1.51256e-100 3.42193e-101 2.66715e-100 6.52278e-101 4.41333e-100 1.16277e-100 6.83801e-100 1.93508e-100 1.04095e-99 3.15557e-100 1.51724e-99 4.91497e-100 2.18734e-99 7.55497e-100 3.02496e-99 1.11171e-99 3.94186e-99 1.53847e-99 4.8423e-99 2.00345e-99 5.8889e-99 2.57856e-99 6.90713e-99 3.19586e-99 7.87685e-99 3.84567e-99 9.12978e-99 4.69729e-99 1.0056e-98 5.4459e-99 1.12792e-98 6.42299e-99 1.21543e-98 7.27152e-99 1.37896e-98 8.66116e-99 1.51351e-98 9.97478e-99 1.6564e-98 1.14505e-98 1.81417e-98 1.31523e-98 2.01995e-98 1.53584e-98 2.38389e-98 1.9014e-98 2.29319e-98 1.91954e-98 2.05969e-98 1.81055e-98 1.8417e-98 1.70156e-98 1.74288e-98 1.6943e-98 1.6901e-98 1.73098e-98 2.1218e-98 2.29301e-98 1.86125e-98 2.12614e-98 1.56301e-98 1.89101e-98 1.18942e-98 1.52749e-98 1.07034e-98 1.46269e-98 7.65619e-99 1.11647e-98 6.85338e-99 1.06983e-98 7.06499e-99 1.18483e-98 2.42409e-98 4.38553e-98 2.92339e-98 5.73295e-98 2.78687e-98 5.95789e-98 2.32414e-98 5.45341e-98 1.59791e-98 4.14904e-98 1.04179e-98 3.02353e-98 2.52468e-99 8.29171e-99 4.55665e-99 1.72007e-98 6.12738e-100 2.71215e-99 3.10857e-99 1.65629e-98 6.14301e-100 4.08351e-99 5.92818e-99 5.17826e-98 7.70362e-99 9.59707e-98 2.26283e-96 4.66326e-95 1.29877e-94 6.34852e-93 1.17194e-94 1.01864e-98 -5.83427e-103 7.89879e-84 -2.23978e-87 1.89441e-80 -7.44815e-84 7.58405e-80 -3.01582e-83 2.39858e-80 -8.543e-84 2.34978e-81 -7.29623e-85 1.15317e-82 -3.19079e-86 3.6068e-84 -9.24456e-88 8.37543e-86 -2.06473e-89 1.65424e-87 -4.01415e-91 3.25892e-89 -7.80212e-93 7.8593e-91 -1.82452e-94 2.69333e-92 -5.94617e-96 1.32093e-93 -2.74324e-97 8.45048e-95 -1.64097e-98 6.68962e-96 -1.20336e-99 6.25694e-97 -1.034e-100 6.78517e-98 -1.02016e-101 8.16957e-99 -1.10884e-102 1.08829e-99 -1.3197e-103 1.59418e-100 -1.7131e-104 2.61708e-101 -2.46652e-105 4.73218e-102 -3.87686e-106 9.33457e-103 -6.57511e-107 1.97649e-103 -1.18208e-107 4.57049e-104 -2.28464e-108 1.16593e-104 -4.7825e-109 3.33352e-105 -1.09295e-109 1.04929e-105 -2.6511e-110 3.65786e-106 -6.71553e-111 1.42282e-106 -1.69058e-111 6.4898e-107 -3.71166e-112 3.91198e-107 4.14858e-110 3.3512e-107 4.21565e-109 3.34776e-107 8.18421e-109 3.79983e-107 1.39379e-108 4.89797e-107 2.41467e-108 6.99357e-107 4.35893e-108 1.10902e-106 8.40463e-108 1.93203e-106 1.73262e-107 3.58407e-106 3.72793e-107 6.93347e-106 8.23676e-107 1.39591e-105 1.87115e-106 2.91644e-105 4.36823e-106 6.07355e-105 1.00832e-105 1.26212e-104 2.30676e-105 2.55608e-104 5.11294e-105 5.36707e-104 1.169e-104 1.04962e-103 2.47834e-104 1.88095e-103 4.79612e-104 3.18233e-103 8.73352e-104 5.0191e-103 1.47817e-103 7.79213e-103 2.45625e-103 1.15922e-102 3.90181e-103 1.70953e-102 6.13067e-103 2.41806e-102 9.22036e-103 3.22449e-102 1.30489e-102 4.05718e-102 1.73947e-102 5.05957e-102 2.2945e-102 6.07665e-102 2.9106e-102 7.08458e-102 3.57925e-102 8.38472e-102 4.46266e-102 9.41158e-102 5.27129e-102 1.07458e-101 6.32741e-102 1.17696e-101 7.27999e-102 1.35595e-101 8.80473e-102 1.50939e-101 1.02841e-101 1.67344e-101 1.19601e-101 1.85537e-101 1.39079e-101 2.08863e-101 1.64221e-101 2.49036e-101 2.05438e-101 2.41813e-101 2.09386e-101 2.19112e-101 1.99278e-101 1.97332e-101 1.88664e-101 1.88167e-101 1.89318e-101 1.83675e-101 1.94719e-101 2.32447e-101 2.60041e-101 2.05136e-101 2.42585e-101 1.73397e-101 2.17176e-101 1.3246e-101 1.76098e-101 1.19913e-101 1.69632e-101 8.59564e-102 1.29747e-101 7.74078e-102 1.25069e-101 8.0108e-102 1.39043e-101 2.73568e-101 5.12205e-101 3.31627e-101 6.73024e-101 3.16221e-101 6.99594e-101 2.64022e-101 6.41096e-101 1.80702e-101 4.85548e-101 1.1682e-101 3.5084e-101 2.78546e-102 9.46617e-102 5.00506e-102 1.95492e-101 6.63019e-103 3.03632e-102 3.40282e-102 1.87549e-101 6.71885e-103 4.61899e-102 6.64918e-102 6.00572e-101 9.70625e-102 1.25031e-100 3.91375e-99 8.341e-98 1.86167e-97 9.4148e-96 9.5422e-98 1.20743e-102 -6.99902e-107 5.69595e-87 -1.61133e-90 2.36617e-83 -9.36149e-87 1.2038e-82 -4.87885e-86 4.24325e-83 -1.55669e-86 4.38484e-84 -1.41327e-87 2.22024e-85 -6.39732e-89 7.07577e-87 -1.88739e-90 1.6585e-88 -4.23683e-92 3.26973e-90 -8.17477e-94 6.3174e-92 -1.55123e-95 1.4567e-93 -3.46024e-97 4.68062e-95 -1.05462e-98 2.13848e-96 -4.51888e-100 1.27579e-97 -2.51379e-101 9.40721e-99 -1.71374e-102 8.1989e-100 -1.36996e-103 8.27792e-101 -1.25702e-104 9.29002e-102 -1.27216e-105 1.15226e-102 -1.40923e-106 1.57388e-103 -1.70455e-107 2.40893e-104 -2.28844e-108 4.07016e-105 -3.35895e-109 7.51442e-106 -5.329e-110 1.4924e-106 -8.98324e-111 3.24345e-107 -1.63018e-111 7.80772e-108 -3.21438e-112 2.11449e-108 -6.94324e-113 6.34701e-109 -1.60173e-113 2.1307e-109 -3.86361e-114 8.06649e-110 -9.28979e-115 3.67423e-110 -1.8926e-115 2.30048e-110 5.71976e-113 1.96894e-110 2.85178e-112 1.97262e-110 5.29552e-112 2.25019e-110 8.90761e-112 2.92534e-110 1.54223e-111 4.21468e-110 2.79272e-111 6.76301e-110 5.42594e-111 1.19271e-109 1.12874e-110 2.24385e-109 2.45682e-110 4.39574e-109 5.48616e-110 8.97818e-109 1.26231e-109 1.90125e-108 2.98275e-109 4.0186e-108 6.97939e-109 8.47896e-108 1.61933e-108 1.743e-107 3.63932e-108 3.70772e-107 8.42114e-108 7.3342e-107 1.80409e-107 1.33666e-106 3.54751e-107 2.3135e-106 6.60294e-107 3.71688e-106 1.1375e-106 5.88899e-106 1.92751e-106 8.94605e-106 3.12424e-106 1.3498e-105 5.01881e-106 1.95256e-105 7.71407e-106 2.66361e-105 1.1161e-105 3.43057e-105 1.52202e-105 4.38289e-105 2.05576e-105 5.38535e-105 2.66671e-105 6.41419e-105 3.3489e-105 7.74653e-105 4.25957e-105 8.85767e-105 5.12424e-105 1.02912e-104 6.2581e-105 1.1454e-104 7.31602e-105 1.33965e-104 8.98235e-105 1.51217e-104 1.06389e-104 1.69815e-104 1.25329e-104 1.90571e-104 1.47527e-104 2.16881e-104 1.76125e-104 2.6124e-104 2.2261e-104 2.56078e-104 2.29081e-104 2.34138e-104 2.20029e-104 2.12433e-104 2.09889e-104 2.04152e-104 2.12292e-104 2.00639e-104 2.19864e-104 2.55968e-104 2.96017e-104 2.27319e-104 2.77901e-104 1.93459e-104 2.50495e-104 1.48406e-104 2.03965e-104 1.35184e-104 1.97691e-104 9.71512e-105 1.51589e-104 8.8032e-105 1.47023e-104 9.14488e-105 1.64061e-104 3.10669e-104 6.01191e-104 3.78548e-104 7.94005e-104 3.61113e-104 8.2568e-104 3.01884e-104 7.57583e-104 2.05725e-104 5.71287e-104 1.31882e-104 4.09318e-104 3.09467e-105 1.08684e-104 5.53445e-105 2.23386e-104 7.2268e-106 3.41964e-105 3.74981e-105 2.13508e-104 7.39895e-106 5.25387e-105 7.49992e-105 6.99652e-104 1.27754e-104 1.69975e-103 6.67876e-102 1.4704e-100 2.63077e-100 1.37427e-98 7.63879e-101 1.38533e-106 -8.30172e-111 3.89403e-90 -1.10405e-93 2.80395e-86 -1.11948e-89 1.81987e-85 -7.51465e-89 7.16282e-86 -2.7022e-89 7.81538e-87 -2.60865e-90 4.0841e-88 -1.22327e-91 1.32767e-89 -3.6795e-93 3.14539e-91 -8.31978e-95 6.20202e-93 -1.59819e-96 1.17949e-94 -2.9742e-98 2.61392e-96 -6.36128e-100 7.90547e-98 -1.82104e-101 3.37228e-99 -7.26517e-103 1.8789e-100 -3.76396e-104 1.29226e-101 -2.38845e-105 1.05065e-102 -1.77823e-106 9.88605e-104 -1.51876e-107 1.0348e-104 -1.43214e-108 1.19626e-105 -1.47733e-109 1.52435e-106 -1.6658e-110 2.17793e-107 -2.08663e-111 3.44003e-108 -2.86259e-112 5.94768e-109 -4.25033e-113 1.1091e-109 -6.72103e-114 2.26749e-110 -1.14627e-114 5.1556e-111 -2.1315e-115 1.32499e-111 -4.36342e-116 3.80557e-112 -9.57738e-117 1.22928e-112 -2.20737e-117 4.5441e-113 -5.08189e-118 2.07019e-113 -9.59222e-119 1.3344e-113 5.10311e-116 1.1423e-113 1.86321e-115 1.14945e-113 3.35328e-115 1.31969e-113 5.59855e-115 1.7328e-113 9.71583e-115 2.52277e-113 1.76908e-114 4.10181e-113 3.47017e-114 7.33296e-113 7.29753e-114 1.40078e-112 1.60934e-113 2.78237e-112 3.63746e-113 5.77217e-112 8.48873e-113 1.2405e-111 2.03309e-112 2.66435e-111 4.82859e-112 5.71343e-111 1.13741e-111 1.19343e-110 2.59494e-111 2.57535e-110 6.08591e-111 5.15975e-110 1.3195e-110 9.57026e-110 2.63861e-110 1.69531e-109 5.0229e-110 2.7763e-109 8.81408e-110 4.49179e-109 1.5241e-109 6.97006e-109 2.5217e-109 1.07607e-108 4.14217e-109 1.59168e-108 6.50605e-109 2.2205e-108 9.62073e-109 2.92566e-108 1.34144e-108 3.82621e-108 1.85382e-108 4.80615e-108 2.45735e-108 5.8444e-108 3.14963e-108 7.19889e-108 4.08474e-108 8.38248e-108 5.00305e-108 9.90746e-108 6.21485e-108 1.12031e-107 7.38102e-108 1.32991e-107 9.19753e-108 1.52202e-107 1.10452e-107 1.73107e-107 1.31784e-107 1.96615e-107 1.57014e-107 2.26195e-107 1.8951e-107 2.75226e-107 2.41987e-107 2.72383e-107 2.51445e-107 2.51346e-107 2.43769e-107 2.2979e-107 2.3434e-107 2.22607e-107 2.38952e-107 2.20315e-107 2.49235e-107 2.83348e-107 3.38301e-107 2.53281e-107 3.19686e-107 2.17079e-107 2.90201e-107 1.67278e-107 2.37363e-107 1.53356e-107 2.31536e-107 1.10536e-107 1.7806e-107 1.00796e-107 1.73785e-107 1.05099e-107 1.94641e-107 3.55039e-107 7.09227e-107 4.34847e-107 9.41502e-107 4.15064e-107 9.79623e-107 3.47456e-107 9.00032e-107 2.35804e-107 6.75889e-107 1.49898e-107 4.80198e-107 3.46232e-108 1.25506e-107 6.16148e-108 2.56679e-107 7.93515e-109 3.87488e-108 4.15986e-108 2.4439e-107 8.20302e-109 6.00958e-108 8.5074e-108 8.18813e-107 1.76357e-107 2.42098e-106 1.12556e-104 2.55703e-103 3.67064e-103 1.97737e-101 6.02735e-104 1.57624e-110 -9.71625e-115 2.54495e-93 -7.28318e-97 3.17634e-89 -1.28235e-92 2.63495e-88 -1.10855e-91 1.15993e-88 -4.50159e-92 1.3376e-89 -4.61857e-93 7.21894e-91 -2.24352e-94 2.39425e-92 -6.88241e-96 5.73674e-94 -1.56943e-97 1.13302e-95 -3.00828e-99 2.12734e-97 -5.50766e-101 4.54949e-99 -1.13419e-102 1.2996e-100 -3.0613e-104 5.18638e-102 -1.1397e-105 2.70153e-103 -5.50656e-107 1.7349e-104 -3.25632e-108 1.31698e-105 -2.26007e-109 1.15583e-106 -1.7983e-110 1.12918e-107 -1.58102e-111 1.21726e-108 -1.51966e-112 1.44775e-109 -1.59816e-113 1.93213e-110 -1.86846e-114 2.85549e-111 -2.39794e-115 4.62576e-112 -3.33394e-116 8.10233e-113 -4.94877e-117 1.55958e-113 -7.94084e-118 3.35258e-114 -1.39518e-118 8.19567e-115 -2.70979e-119 2.2522e-115 -5.66309e-120 7.01827e-116 -1.25118e-120 2.53653e-116 -2.77306e-121 1.15837e-116 -4.85184e-122 7.62773e-117 3.82994e-119 6.54202e-117 1.17805e-118 6.62288e-117 2.07808e-118 7.66506e-117 3.45999e-118 1.01795e-116 6.03646e-118 1.49977e-116 1.10784e-117 2.47415e-116 2.19843e-117 4.48983e-116 4.68224e-117 8.71941e-116 1.04788e-116 1.75826e-115 2.40089e-116 3.7093e-115 5.69045e-116 8.10019e-115 1.38326e-115 1.76989e-114 3.33859e-115 3.86113e-114 7.99268e-115 8.20361e-114 1.85313e-114 1.79821e-113 4.41118e-114 3.65384e-113 9.69282e-114 6.90184e-113 1.97268e-113 1.25179e-112 3.84249e-113 2.0908e-112 6.87287e-113 3.45604e-112 1.21347e-112 5.47946e-112 2.05022e-112 8.65603e-112 3.44406e-112 1.30903e-111 5.52777e-112 1.867e-111 8.35278e-112 2.5152e-111 1.1903e-111 3.36484e-111 1.68202e-111 4.31814e-111 2.2771e-111 5.35841e-111 2.97744e-111 6.72866e-111 3.93559e-111 7.97642e-111 4.90655e-111 9.58795e-111 6.19795e-111 1.10133e-110 7.47681e-111 1.32668e-110 9.45426e-111 1.53922e-110 1.15098e-110 1.77281e-110 1.39074e-110 2.03775e-110 1.67702e-110 2.3697e-110 2.04617e-110 2.9125e-110 2.6394e-110 2.91041e-110 2.76947e-110 2.71087e-110 2.71042e-110 2.49785e-110 2.62628e-110 2.43967e-110 2.7002e-110 2.432e-110 2.83691e-110 3.15323e-110 3.88215e-110 2.83765e-110 3.69336e-110 2.44982e-110 3.3772e-110 1.89695e-110 2.77565e-110 1.75061e-110 2.72543e-110 1.26598e-110 2.10283e-110 1.16188e-110 2.06553e-110 1.21596e-110 2.32191e-110 4.08348e-110 8.41038e-110 5.02725e-110 1.12223e-109 4.80219e-110 1.16854e-109 4.02577e-110 1.07512e-109 2.72126e-110 8.04145e-110 1.71537e-110 5.66525e-110 3.90095e-111 1.45779e-110 6.90676e-111 2.96605e-110 8.77702e-112 4.41767e-111 4.64551e-111 2.81279e-110 9.15546e-112 6.91265e-111 9.70559e-111 9.62761e-110 2.55207e-110 3.61092e-109 1.87539e-107 4.39086e-106 5.06229e-106 2.80816e-104 4.70099e-107 1.77477e-114 -1.13062e-118 1.60697e-96 -4.65756e-100 3.46154e-92 -1.41891e-95 3.67307e-91 -1.5783e-94 1.81383e-91 -7.24415e-95 2.21101e-92 -7.89577e-96 1.23257e-93 -3.96898e-97 4.17012e-95 -1.24189e-98 1.01078e-96 -2.85793e-100 2.00158e-98 -5.47328e-102 3.71735e-100 -9.87965e-104 7.69509e-102 -1.96519e-105 2.08234e-103 -5.01532e-107 7.78682e-105 -1.74559e-108 3.79524e-106 -7.87255e-110 2.27761e-107 -4.34179e-111 1.61533e-108 -2.81057e-112 1.32316e-109 -2.08458e-113 1.20704e-110 -1.70952e-114 1.21402e-111 -1.53204e-115 1.3482e-112 -1.50311e-116 1.68115e-113 -1.64063e-117 2.32682e-114 -1.97038e-118 3.53354e-115 -2.568e-119 5.81709e-116 -3.58133e-120 1.05512e-116 -5.41251e-121 2.14769e-117 -8.99107e-122 4.99671e-118 -1.65724e-122 1.31356e-118 -3.3098e-123 3.95612e-119 -7.01999e-124 1.40206e-119 -1.50114e-124 6.41058e-120 -2.43779e-125 4.29633e-120 2.6285e-122 3.69828e-120 7.2496e-122 3.77319e-120 1.26321e-121 4.40934e-120 2.10541e-121 5.93128e-120 3.70228e-121 8.85617e-120 6.86354e-121 1.48435e-119 1.38054e-120 2.73795e-119 2.98329e-120 5.41232e-119 6.78612e-120 1.10935e-118 1.57846e-119 2.38263e-118 3.80458e-119 5.29327e-118 9.39888e-119 1.17791e-117 2.30802e-118 2.61671e-117 5.62143e-118 5.66067e-117 1.32594e-117 1.26192e-116 3.20763e-117 2.60376e-116 7.15248e-117 5.01204e-116 1.48251e-116 9.31023e-116 2.95585e-116 1.58684e-115 5.39205e-116 2.68099e-115 9.72541e-116 4.344e-115 1.6784e-115 7.02177e-115 2.88362e-115 1.08552e-114 4.72925e-115 1.58241e-114 7.30125e-115 2.1788e-114 1.06303e-114 2.97996e-114 1.53525e-114 3.90503e-114 2.12174e-114 4.94293e-114 2.82922e-114 6.32535e-114 3.81025e-114 7.63189e-114 4.83413e-114 9.32779e-114 6.20823e-114 1.08822e-113 7.60586e-114 1.33001e-113 9.75731e-114 1.56411e-113 1.20405e-113 1.82412e-113 1.47318e-113 2.12176e-113 1.79771e-113 2.49398e-113 2.2172e-113 3.09606e-113 2.88899e-113 3.12417e-113 3.0613e-113 2.93781e-113 3.02492e-113 2.72877e-113 2.95486e-113 2.68765e-113 3.0638e-113 2.69902e-113 3.24289e-113 3.52792e-113 4.47394e-113 3.19686e-113 4.28592e-113 2.78072e-113 3.9485e-113 2.16426e-113 3.26184e-113 2.01091e-113 3.22456e-113 1.45947e-113 2.49684e-113 1.34828e-113 2.46864e-113 1.41625e-113 2.78523e-113 4.72696e-113 1.00266e-112 5.84958e-113 1.34479e-112 5.59287e-113 1.40155e-112 4.69565e-113 1.2914e-112 3.16185e-113 9.62179e-113 1.97641e-113 6.72178e-113 4.42626e-114 1.70332e-113 7.79577e-114 3.44713e-113 9.77898e-115 5.06746e-114 5.22223e-114 3.25533e-113 1.0287e-114 7.99647e-114 1.11376e-113 1.13747e-112 3.85249e-113 5.61175e-112 3.09264e-110 7.45278e-109 6.90537e-109 3.94077e-107 3.63753e-110 1.99138e-118 -1.32581e-122 9.86515e-100 -2.9138e-103 3.65708e-95 -1.52714e-98 4.96346e-94 -2.18431e-97 2.75412e-94 -1.13165e-97 3.54949e-95 -1.3095e-98 2.04222e-96 -6.80761e-100 7.04715e-98 -2.17315e-101 1.72789e-99 -5.04999e-103 3.43188e-101 -9.67335e-105 6.31254e-103 -1.72405e-106 1.26786e-104 -3.32097e-108 3.25741e-106 -8.03325e-110 1.14291e-107 -2.61649e-111 5.21544e-109 -1.10155e-112 2.92632e-110 -5.66779e-114 1.93956e-111 -3.42216e-115 1.48341e-112 -2.36627e-116 1.26405e-113 -1.81018e-117 1.1868e-114 -1.51289e-118 1.23087e-115 -1.38503e-119 1.43434e-116 -1.41187e-120 1.85967e-117 -1.58712e-121 2.65023e-118 -1.94002e-122 4.10406e-119 -2.54397e-123 7.02114e-120 -3.62319e-124 1.35372e-120 -5.69346e-125 2.99676e-121 -9.96979e-126 7.55926e-122 -1.90494e-126 2.20136e-122 -3.88899e-127 7.65323e-123 -8.04467e-128 3.50606e-123 -1.20886e-128 2.38488e-123 1.70638e-125 2.06381e-123 4.35991e-125 2.12562e-123 7.54481e-125 2.51226e-123 1.26269e-124 3.42809e-123 2.24308e-124 5.19496e-123 4.20908e-124 8.85828e-123 8.59702e-124 1.66309e-122 1.88824e-123 3.35046e-122 4.37237e-123 6.98876e-122 1.03396e-122 1.52987e-121 2.53768e-122 3.46163e-121 6.37943e-122 7.85345e-121 1.59577e-121 1.77823e-120 3.95841e-121 3.92047e-120 9.50884e-121 8.8988e-120 2.34067e-120 1.86669e-119 5.30299e-120 3.66393e-119 1.12014e-119 6.97247e-119 2.28665e-119 1.21325e-118 4.25617e-119 2.09586e-118 7.84505e-119 3.47111e-118 1.3832e-118 5.74105e-118 2.43057e-118 9.07174e-118 4.07295e-118 1.35138e-117 6.42351e-118 1.90108e-117 9.5525e-118 2.65699e-117 1.40941e-117 3.554e-117 1.98774e-117 4.58733e-117 2.70225e-117 5.9805e-117 3.70692e-117 7.34286e-117 4.78515e-117 9.12329e-117 6.24647e-117 1.08086e-116 7.77069e-117 1.34005e-116 1.01117e-116 1.59719e-116 1.26459e-116 1.8859e-116 1.56652e-116 2.21964e-116 1.93432e-116 2.63705e-116 2.41139e-116 3.30647e-116 3.17367e-116 3.3695e-116 3.39645e-116 3.19933e-116 3.38897e-116 2.99624e-116 3.33807e-116 2.97649e-116 3.49115e-116 3.01167e-116 3.72331e-116 3.96863e-116 5.17871e-116 3.6218e-116 4.99641e-116 3.17472e-116 4.63866e-116 2.48432e-116 3.85268e-116 2.32434e-116 3.83503e-116 1.69351e-116 2.98098e-116 1.57497e-116 2.96694e-116 1.6605e-116 3.35974e-116 5.50735e-116 1.20184e-115 6.85054e-116 1.62023e-115 6.55693e-116 1.69037e-115 5.51356e-116 1.5599e-115 3.69875e-116 1.15788e-115 2.29274e-116 8.02145e-116 5.05802e-117 2.0022e-116 8.86017e-117 4.02966e-116 1.0974e-117 5.84877e-117 5.9095e-117 3.78875e-116 1.16368e-117 9.30364e-117 1.28584e-116 1.3506e-115 6.01904e-116 9.016e-115 5.05201e-113 1.25164e-111 9.32152e-112 5.47056e-110 2.80711e-113 2.2566e-122 -1.58029e-126 5.9403e-103 -1.79809e-106 3.7705e-98 -1.60893e-101 6.54596e-97 -2.95273e-100 4.07869e-97 -1.72565e-100 5.55663e-98 -2.11815e-101 3.29768e-99 -1.13818e-102 1.16042e-100 -3.70404e-104 2.87763e-102 -8.69353e-106 5.73338e-104 -1.66638e-107 1.04511e-105 -2.93589e-109 2.04024e-107 -5.48711e-111 4.98655e-109 -1.26039e-112 1.64253e-110 -3.84452e-114 7.01707e-112 -1.51072e-115 3.68196e-113 -7.25145e-117 2.2808e-114 -4.08327e-118 1.62899e-115 -2.63198e-119 1.29672e-116 -1.87803e-120 1.1368e-117 -1.46395e-121 1.10131e-118 -1.25073e-122 1.19971e-119 -1.19081e-123 1.45731e-120 -1.25323e-124 1.9499e-121 -1.43713e-125 2.84254e-122 -1.7728e-126 4.58879e-123 -2.38112e-127 8.38316e-124 -3.54154e-128 1.76716e-124 -5.9003e-129 4.28042e-125 -1.07985e-129 1.20787e-125 -2.12383e-130 4.1265e-126 -4.25704e-131 1.89251e-126 -5.90848e-132 1.30475e-126 1.06251e-128 1.13698e-126 2.56819e-128 1.1841e-126 4.43281e-128 1.41772e-126 7.46932e-128 1.96533e-126 1.34323e-127 3.0271e-126 2.55599e-127 5.25842e-126 5.31e-127 1.00619e-125 1.18728e-126 2.06837e-125 2.80253e-126 4.39591e-125 6.74672e-126 9.81821e-125 1.68816e-125 2.26517e-124 4.32395e-125 5.2446e-124 1.10308e-124 1.21149e-123 2.78983e-124 2.72466e-123 6.83257e-124 6.30404e-123 1.71349e-123 1.3459e-122 3.94904e-123 2.6953e-122 8.50619e-123 5.25584e-122 1.7784e-122 9.34063e-122 3.37907e-122 1.65034e-121 6.36713e-122 2.79419e-121 1.14713e-121 4.7286e-121 2.06164e-121 7.63669e-121 3.52964e-121 1.16232e-120 5.68577e-121 1.67018e-120 8.63429e-121 2.38452e-120 1.30102e-120 3.2547e-120 1.87195e-120 4.28285e-120 2.59395e-120 5.68699e-120 3.62372e-120 7.10423e-120 4.7587e-120 8.97147e-120 6.31309e-120 1.07921e-119 7.97359e-120 1.35704e-119 1.05228e-119 1.63906e-119 1.33354e-119 1.95925e-119 1.67233e-119 2.33318e-119 2.08935e-119 2.8016e-119 2.6326e-119 3.54791e-119 3.4996e-119 3.65164e-119 3.78288e-119 3.50152e-119 3.81215e-119 3.30702e-119 3.78697e-119 3.31406e-119 3.99566e-119 3.37903e-119 4.2944e-119 4.489e-119 6.02195e-119 4.12653e-119 5.85242e-119 3.64586e-119 5.4765e-119 2.86917e-119 4.57425e-119 2.70338e-119 4.58533e-119 1.97783e-119 3.5788e-119 1.85192e-119 3.58605e-119 1.95977e-119 4.07577e-119 6.45818e-119 1.44855e-118 8.07475e-119 1.96284e-118 7.73802e-119 2.05022e-118 6.51701e-119 1.89493e-118 4.35623e-119 1.40151e-118 2.67802e-119 9.62892e-119 5.82122e-120 2.36798e-119 1.01397e-119 4.73871e-119 1.24036e-120 6.79289e-120 6.73216e-120 4.43521e-119 1.32545e-120 1.08888e-119 1.49375e-119 1.61199e-118 9.64812e-119 1.48456e-117 8.18067e-116 2.08186e-114 1.24613e-114 7.52003e-113 2.17759e-116 2.60544e-126 -1.95121e-130 3.53857e-106 -1.10283e-109 3.81882e-101 -1.67016e-104 8.46765e-100 -3.91946e-103 5.92426e-100 -2.58084e-103 8.52787e-101 -3.35598e-104 5.21756e-102 -1.86183e-105 1.87027e-103 -6.17244e-107 4.6883e-105 -1.46246e-108 9.36695e-107 -2.80485e-110 1.6926e-108 -4.88778e-112 3.21547e-110 -8.87251e-114 7.48489e-112 -1.93779e-115 2.3152e-113 -5.53792e-117 9.25484e-115 -2.03063e-118 4.54011e-116 -9.08908e-120 2.62776e-117 -4.77283e-121 1.75237e-118 -2.86744e-122 1.30297e-119 -1.90844e-123 1.06671e-120 -1.38779e-124 9.65418e-122 -1.10655e-125 9.83171e-123 -9.84046e-127 1.1191e-123 -9.69622e-128 1.40612e-124 -1.0436e-128 1.9304e-125 -1.21147e-129 2.94248e-126 -1.53519e-130 5.09555e-127 -2.1625e-131 1.02408e-127 -3.43182e-132 2.38402e-128 -6.01578e-133 6.52205e-129 -1.14052e-133 2.19173e-129 -2.21478e-134 1.00745e-129 -2.80421e-135 7.03684e-130 6.45291e-132 6.18563e-130 1.48984e-131 6.52462e-130 2.57119e-131 7.92622e-130 4.37011e-131 1.11788e-129 7.96821e-131 1.75246e-129 1.53978e-130 3.10523e-129 3.2577e-130 6.06369e-129 7.42405e-130 1.27334e-128 1.78833e-129 2.76048e-128 4.38744e-129 6.29718e-128 1.12036e-128 1.4829e-127 2.92694e-128 3.5073e-127 7.6231e-128 8.27279e-127 1.96763e-127 1.89965e-126 4.91789e-127 4.48482e-126 1.25792e-126 9.75554e-126 2.95249e-126 1.99444e-125 6.48956e-126 3.98617e-125 1.39e-125 7.23828e-125 2.69736e-125 1.3084e-124 5.19765e-125 2.26496e-124 9.57061e-125 3.9218e-124 1.75924e-124 6.47303e-124 3.07709e-124 1.00651e-123 5.06229e-124 1.47704e-123 7.84863e-124 2.15356e-123 1.20745e-123 2.99881e-123 1.77202e-123 4.02224e-123 2.50237e-123 5.43879e-123 3.5593e-123 6.91164e-123 4.75435e-123 8.8699e-123 6.40909e-123 1.08325e-122 8.21767e-123 1.3813e-122 1.09971e-122 1.69048e-122 1.41209e-122 2.04551e-122 1.79255e-122 2.46451e-122 2.2659e-122 2.99089e-122 2.88562e-122 3.8254e-122 3.87437e-122 3.97692e-122 4.23042e-122 3.85176e-122 4.30628e-122 3.66932e-122 4.31518e-122 3.70995e-122 4.59394e-122 3.81225e-122 4.97631e-122 5.10587e-122 7.03544e-122 4.72859e-122 6.88853e-122 4.2117e-122 6.49842e-122 3.33392e-122 5.45959e-122 3.16378e-122 5.51182e-122 2.32479e-122 4.32055e-122 2.19186e-122 4.35905e-122 2.32819e-122 4.97261e-122 7.62228e-122 1.7557e-121 9.57932e-122 2.39117e-121 9.19223e-122 2.5009e-121 7.75439e-122 2.31521e-121 5.16568e-122 1.70651e-121 3.14979e-122 1.16285e-121 6.74767e-123 2.81818e-122 1.16846e-122 5.60647e-122 1.4121e-123 7.93999e-123 7.72203e-123 5.22321e-122 1.52032e-123 1.28222e-122 1.74624e-122 1.93434e-121 1.57389e-121 2.48561e-120 1.31389e-118 3.43273e-117 1.6518e-117 1.02466e-115 1.71802e-119 3.12267e-130 -2.54785e-134 2.10078e-109 -6.77847e-113 3.82388e-104 -1.72082e-107 1.07993e-102 -5.14085e-106 8.47829e-103 -3.80553e-106 1.28838e-103 -5.23379e-107 8.1184e-105 -2.99496e-108 2.96183e-106 -1.01037e-109 7.49819e-108 -2.41488e-111 1.50137e-109 -4.63224e-113 2.68913e-111 -7.98385e-115 4.97404e-113 -1.40835e-116 1.1035e-114 -2.92562e-118 3.20524e-116 -7.82992e-120 1.19804e-117 -2.67724e-121 5.49041e-119 -1.11685e-122 2.96815e-120 -5.46636e-124 1.84744e-121 -3.06048e-125 1.28286e-122 -1.89978e-126 9.80846e-124 -1.28888e-127 8.29296e-125 -9.59026e-129 7.89531e-126 -7.96576e-130 8.42124e-127 -7.34906e-131 9.94007e-128 -7.42506e-132 1.28553e-128 -8.11347e-133 1.85097e-129 -9.704e-134 3.04018e-130 -1.29523e-134 5.8322e-131 -1.95875e-135 1.30489e-131 -3.28911e-136 3.46367e-132 -6.01492e-137 1.14576e-132 -1.13004e-137 5.28247e-133 -1.27769e-138 3.74293e-133 3.8457e-135 3.32514e-133 8.53362e-135 3.55829e-133 1.47541e-134 4.39286e-133 2.53364e-134 6.31205e-133 4.69065e-134 1.00847e-132 9.2167e-134 1.82496e-132 1.98801e-133 3.6411e-132 4.62247e-133 7.81944e-132 1.13734e-132 1.73103e-131 2.84634e-132 4.0371e-131 7.42407e-132 9.71312e-131 1.98012e-131 2.34888e-130 5.26957e-131 5.66204e-130 1.38928e-130 1.32856e-129 3.54659e-130 3.20363e-129 9.26163e-130 7.10701e-129 2.21608e-129 1.48417e-128 4.97358e-129 3.04101e-128 1.09172e-128 5.64434e-128 2.16468e-128 1.04409e-127 4.26711e-128 1.84826e-127 8.03195e-128 3.27445e-127 1.51011e-127 5.5233e-127 2.69846e-127 8.77333e-127 4.53358e-127 1.31466e-126 7.17518e-127 1.95708e-126 1.12673e-126 2.77971e-126 1.68622e-126 3.79963e-126 2.42624e-126 5.23093e-126 3.513e-126 6.76154e-126 4.77239e-126 8.81685e-126 6.53626e-126 1.09308e-125 8.50703e-126 1.41326e-125 1.15427e-125 1.75236e-125 1.50164e-125 2.14628e-125 1.92953e-125 2.61619e-125 2.46766e-125 3.20881e-125 3.17618e-125 4.14497e-125 4.30715e-125 4.35293e-125 4.751e-125 4.25893e-125 4.8858e-125 4.09304e-125 4.93942e-125 4.17585e-125 5.30641e-125 4.32503e-125 5.79394e-125 5.84006e-125 8.25871e-125 5.44973e-125 8.14802e-125 4.89418e-125 7.75019e-125 3.89759e-125 6.55052e-125 3.7255e-125 6.66093e-125 2.75015e-125 5.24511e-125 2.61112e-125 5.32876e-125 2.78396e-125 6.10139e-125 9.05455e-125 2.13998e-124 1.14379e-124 2.92944e-124 1.09921e-124 3.06836e-124 9.2885e-125 2.84533e-124 6.16786e-125 2.09049e-124 3.73069e-125 1.413e-124 7.8779e-126 3.37539e-125 1.35591e-125 6.67435e-125 1.6194e-126 9.34154e-126 8.91965e-126 6.18931e-125 1.75624e-126 1.51931e-125 2.05438e-125 2.33401e-124 2.59585e-124 4.20503e-123 2.09458e-121 5.61593e-120 2.17463e-120 1.38527e-118 1.40094e-122 3.96477e-134 -3.57871e-138 1.25245e-112 -4.21171e-116 3.81026e-107 -1.77027e-110 1.36524e-105 -6.70094e-109 1.20077e-105 -5.56652e-109 1.92396e-106 -8.0803e-110 1.2477e-107 -4.76013e-111 4.62722e-109 -1.63226e-112 1.18179e-110 -3.93191e-114 2.36948e-112 -7.54044e-116 4.20481e-114 -1.28497e-117 7.57437e-116 -2.20334e-119 1.60165e-117 -4.35427e-121 4.3655e-119 -1.0907e-122 1.52437e-120 -3.47338e-124 6.52175e-122 -1.3492e-125 3.29092e-123 -6.15016e-127 1.91121e-124 -3.20699e-128 1.23912e-125 -1.8561e-129 8.84751e-127 -1.17472e-130 6.98703e-128 -8.15631e-132 6.21826e-129 -6.32735e-133 6.21503e-130 -5.46601e-134 6.89236e-131 -5.18541e-135 8.399e-132 -5.33576e-136 1.1428e-132 -6.02643e-137 1.78133e-133 -7.62613e-138 3.26358e-134 -1.09971e-138 7.02e-135 -1.77175e-139 1.80992e-135 -3.13204e-140 5.89429e-136 -5.71252e-141 2.73046e-136 -5.7886e-142 1.96383e-136 2.2113e-138 1.76657e-136 4.7914e-138 1.92123e-136 8.33928e-138 2.41427e-136 1.45133e-137 3.53943e-136 2.7345e-137 5.77104e-136 5.47377e-137 1.06783e-135 1.20556e-136 2.17934e-135 2.86397e-136 4.79144e-135 7.20648e-136 1.08428e-134 1.84188e-135 2.58777e-134 4.9123e-135 6.3673e-134 1.33899e-134 1.57567e-133 3.64429e-134 3.88463e-133 9.82149e-134 9.32139e-133 2.56282e-133 2.2978e-132 6.83881e-133 5.20338e-132 1.66969e-132 1.11056e-131 3.82853e-132 2.33334e-131 8.61463e-132 4.42842e-131 1.74611e-131 8.385e-131 3.52224e-131 1.5181e-130 6.77883e-131 2.7519e-130 1.30369e-130 4.74384e-130 2.38008e-130 7.69715e-130 4.08342e-130 1.17761e-129 6.59657e-130 1.78953e-129 1.05714e-129 2.59207e-129 1.61302e-129 3.61023e-129 2.36437e-129 5.0594e-129 3.48426e-129 6.65118e-129 4.81326e-129 8.81134e-129 6.69672e-129 1.10883e-128 8.84646e-129 1.45348e-128 1.2169e-128 1.82584e-128 1.60386e-128 2.26347e-128 2.086e-128 2.79126e-128 2.69902e-128 3.45995e-128 3.5111e-128 4.51381e-128 4.8089e-128 4.78883e-128 5.35907e-128 4.73382e-128 5.56832e-128 4.5903e-128 5.68023e-128 4.72611e-128 6.15841e-128 4.93429e-128 6.77842e-128 6.71745e-128 9.74145e-128 6.31715e-128 9.68552e-128 5.72085e-128 9.28996e-128 4.58421e-128 7.90051e-128 4.41395e-128 8.09236e-128 3.27409e-128 6.4028e-128 3.13071e-128 6.55102e-128 3.35062e-128 7.52904e-128 1.08259e-127 2.62325e-127 1.3746e-127 3.60937e-127 1.32319e-127 3.78666e-127 1.12012e-127 3.51766e-127 7.41578e-128 2.57666e-127 4.44992e-128 1.72773e-127 9.2638e-129 4.06881e-128 1.58454e-128 7.99568e-128 1.87093e-129 1.10634e-128 1.03764e-128 7.38025e-128 2.04319e-129 1.81158e-128 2.43217e-128 2.83212e-127 4.30812e-127 7.15459e-126 3.31771e-124 9.12333e-123 2.84806e-123 1.85982e-121 1.20376e-125 5.42372e-138 -5.48751e-142 7.56255e-116 -2.66326e-119 3.79914e-110 -1.82702e-113 1.71963e-108 -8.72055e-112 1.69219e-108 -8.10816e-112 2.85382e-109 -1.23969e-112 1.90143e-110 -7.50333e-114 7.15901e-112 -2.612e-115 1.84245e-113 -6.33505e-117 3.6956e-115 -1.21385e-118 6.49297e-117 -2.04472e-120 1.13884e-118 -3.40863e-122 2.2952e-120 -6.4095e-124 5.86566e-122 -1.50164e-125 1.91085e-123 -4.44808e-127 7.62429e-125 -1.60671e-128 3.58812e-126 -6.81443e-130 1.94311e-127 -3.30718e-131 1.17579e-128 -1.78409e-132 7.83869e-130 -1.05297e-133 5.78118e-131 -6.82084e-135 4.8091e-132 -4.94108e-136 4.50402e-133 -3.99663e-137 4.69337e-134 -3.56077e-138 5.39019e-135 -3.45237e-139 6.93266e-136 -3.68418e-140 1.02585e-136 -4.42389e-141 1.79542e-137 -6.09067e-142 3.71632e-138 -9.43368e-143 9.3151e-139 -1.61666e-143 2.98871e-139 -2.87588e-144 1.39116e-139 -2.67648e-145 1.01642e-139 1.22424e-141 9.27474e-140 2.63112e-141 1.02687e-139 4.63423e-141 1.31566e-139 8.20117e-141 1.97092e-139 1.57655e-140 3.28415e-139 3.22173e-140 6.22112e-139 7.25783e-140 1.3003e-138 1.76438e-139 2.92985e-138 4.54672e-139 6.78477e-138 1.18842e-138 1.65867e-137 3.24485e-138 4.17774e-137 9.04955e-138 1.05882e-136 2.52138e-137 2.67186e-136 6.95216e-137 6.56126e-136 1.85574e-136 1.65482e-135 5.06444e-136 3.82838e-135 1.26275e-135 8.35532e-135 2.95979e-135 1.80049e-134 6.82867e-135 3.49532e-134 1.41542e-134 6.776e-134 2.92254e-134 1.2549e-133 5.7522e-134 2.32765e-133 1.13168e-133 4.1007e-133 2.11095e-133 6.79638e-133 3.69853e-133 1.06153e-132 6.09826e-133 1.64636e-132 9.97204e-133 2.43148e-132 1.55112e-132 3.45012e-132 2.31588e-132 4.92098e-132 3.4729e-132 6.57864e-132 4.87804e-132 8.85333e-132 6.89367e-132 1.1308e-131 9.2424e-132 1.50267e-131 1.28882e-131 1.91227e-131 1.72082e-131 2.39939e-131 2.26533e-131 2.99335e-131 2.96533e-131 3.7499e-131 3.89873e-131 4.94068e-131 5.39313e-131 5.29582e-131 6.07247e-131 5.2897e-131 6.37576e-131 5.17607e-131 6.56332e-131 5.37858e-131 7.18183e-131 5.6612e-131 7.96918e-131 7.7705e-131 1.15469e-130 7.36509e-131 1.1571e-130 6.72663e-131 1.11926e-130 5.42441e-131 9.57876e-131 5.26173e-131 9.88394e-131 3.9226e-131 7.85949e-131 3.77793e-131 8.0993e-131 4.05884e-131 9.34396e-131 1.30283e-130 3.23419e-130 1.66278e-130 4.47284e-130 1.60345e-130 4.70088e-130 1.35994e-130 4.37509e-130 8.97856e-131 3.19569e-130 5.34525e-131 2.12585e-130 1.09721e-131 4.9364e-131 1.86491e-131 9.63941e-131 2.17773e-132 1.31901e-131 1.21574e-131 8.85593e-131 2.39375e-132 2.17364e-131 2.89773e-131 3.45617e-130 7.17212e-130 1.22037e-128 5.22743e-127 1.47289e-125 3.714e-126 2.48161e-124 1.10937e-128 8.11349e-142 -9.38681e-146 4.65721e-119 -1.72422e-122 3.80997e-113 -1.90126e-116 2.16883e-111 -1.13711e-114 2.38222e-111 -1.18007e-114 4.22062e-112 -1.89609e-115 2.88367e-113 -1.17697e-116 1.10079e-114 -4.15364e-118 2.85156e-116 -1.01314e-119 5.71629e-118 -1.93751e-121 9.93727e-120 -3.22435e-123 1.6966e-121 -5.22457e-125 3.25799e-123 -9.34704e-127 7.79834e-125 -2.04651e-128 2.36629e-126 -5.62967e-130 8.79138e-128 -1.88818e-131 3.85428e-129 -7.44417e-133 1.94478e-130 -3.36004e-134 1.09792e-131 -1.68809e-135 6.83145e-133 -9.28646e-137 4.70424e-134 -5.61094e-138 3.65698e-135 -3.79422e-139 3.20914e-136 -2.8728e-140 3.14259e-137 -2.40364e-141 3.40286e-138 -2.19606e-142 4.13827e-139 -2.21488e-143 5.81617e-140 -2.52473e-144 9.73178e-141 -3.31945e-145 1.94067e-141 -4.94368e-146 4.73431e-142 -8.21523e-147 1.49672e-142 -1.42421e-147 6.99995e-143 -1.1841e-148 5.19692e-143 6.7099e-145 4.81609e-143 1.42917e-144 5.43599e-143 2.54914e-144 7.11169e-143 4.59237e-144 1.09018e-142 9.01802e-144 1.85899e-142 1.88364e-143 3.60946e-142 4.34545e-143 7.7351e-142 1.08228e-142 1.78806e-141 2.85945e-142 4.24161e-141 7.65237e-142 1.06318e-140 2.14135e-141 2.74377e-140 6.11666e-141 7.12782e-140 1.74618e-140 1.8424e-139 4.92987e-140 4.63352e-139 1.34713e-139 1.19659e-138 3.76293e-139 2.83035e-138 9.58919e-139 6.31969e-138 2.29874e-138 1.39702e-137 5.43898e-138 2.77501e-137 1.15323e-137 5.50902e-137 2.43784e-137 1.04381e-136 4.90775e-137 1.98116e-136 9.87786e-137 3.56711e-136 1.88272e-136 6.03875e-136 3.3687e-136 9.62822e-136 5.66898e-136 1.52379e-135 9.45791e-136 2.29425e-135 1.49953e-135 3.31605e-135 2.28021e-135 4.81316e-135 3.47922e-135 6.54272e-135 4.9685e-135 8.94369e-135 7.13138e-135 1.15939e-134 9.703e-135 1.56175e-134 1.3715e-134 2.01333e-134 1.85501e-134 2.55681e-134 2.47158e-134 3.22686e-134 3.27303e-134 4.0854e-134 4.34916e-134 5.43624e-134 6.07625e-134 5.88765e-134 6.91306e-134 5.94298e-134 7.33516e-134 5.869e-134 7.62071e-134 6.15565e-134 8.4168e-134 6.53242e-134 9.41625e-134 9.04026e-134 1.37558e-133 8.63704e-134 1.38942e-133 7.95615e-134 1.3555e-133 6.45755e-134 1.16755e-133 6.31099e-134 1.21377e-133 4.72949e-134 9.702e-134 4.58842e-134 1.0071e-133 4.94881e-134 1.16636e-133 1.57817e-133 4.01077e-133 2.02458e-133 5.57536e-133 1.95614e-133 5.87087e-133 1.66237e-133 5.47467e-133 1.09467e-133 3.98825e-133 6.4659e-134 2.63224e-133 1.30893e-134 6.02785e-134 2.21062e-134 1.16953e-133 2.55382e-135 1.58307e-134 1.43452e-134 1.06938e-133 2.82403e-135 2.62442e-134 3.47486e-134 4.24239e-133 1.19555e-132 2.08257e-131 8.20119e-130 2.36472e-128 4.82231e-129 3.2931e-127 1.10639e-131 1.35608e-145 -1.81354e-149 2.94196e-122 -1.14902e-125 3.86174e-116 -2.00537e-119 2.74869e-114 -1.49259e-117 3.36175e-114 -1.72242e-117 6.24473e-115 -2.90029e-118 4.36721e-116 -1.84312e-119 1.68799e-117 -6.58352e-121 4.39531e-119 -1.61361e-122 8.79544e-121 -3.07771e-124 1.51149e-122 -5.05718e-126 2.51079e-124 -7.96336e-128 4.59245e-126 -1.3553e-129 1.02845e-127 -2.77024e-131 2.90125e-129 -7.06289e-133 1.00192e-130 -2.19563e-134 4.08747e-132 -8.03348e-136 1.92005e-133 -3.36888e-137 1.01039e-134 -1.57536e-138 5.86478e-136 -8.07346e-140 3.77005e-137 -4.54831e-141 2.7381e-138 -2.87043e-142 2.2511e-139 -2.03409e-143 2.07188e-140 -1.59826e-144 2.11579e-141 -1.37605e-145 2.43408e-142 -1.31203e-146 3.25152e-143 -1.41992e-147 5.20466e-144 -1.78309e-148 1.00068e-144 -2.55444e-149 2.37874e-145 -4.11313e-150 7.42074e-146 -6.95e-151 3.49367e-146 -4.90399e-152 2.6337e-146 3.65871e-148 2.47954e-146 7.70735e-148 2.85525e-146 1.39177e-147 3.8181e-146 2.55353e-147 5.996e-146 5.12584e-147 1.04753e-145 1.09532e-146 2.08699e-145 2.58997e-146 4.5903e-145 6.61514e-146 1.08962e-144 1.79365e-145 2.65029e-144 4.91951e-145 6.81699e-144 1.41217e-144 1.8041e-143 4.13529e-144 4.80755e-143 1.2106e-143 1.27378e-142 3.50226e-143 3.283e-142 9.80441e-143 8.68749e-142 2.80528e-142 2.10246e-141 7.31191e-142 4.80495e-141 1.79354e-141 1.08981e-140 4.35277e-141 2.21565e-140 9.44343e-141 4.50519e-140 2.04409e-140 8.73436e-140 4.20952e-140 1.69644e-139 8.668e-140 3.12183e-139 1.68819e-139 5.39819e-139 3.08478e-139 8.78552e-139 5.29805e-139 1.41865e-138 9.01716e-139 2.17726e-138 1.45711e-138 3.20524e-138 2.25646e-138 4.73389e-138 3.50293e-138 6.54278e-138 5.08564e-138 9.08403e-138 7.41329e-138 1.1951e-137 1.02358e-137 1.63181e-137 1.46646e-137 2.13098e-137 2.00912e-137 2.73898e-137 2.70924e-137 3.497e-137 3.62949e-137 4.47457e-137 4.87421e-137 6.01344e-137 6.8778e-137 6.58115e-137 7.90729e-137 6.71388e-137 8.47973e-137 6.69225e-137 8.8922e-137 7.08535e-137 9.91379e-137 7.58154e-137 1.11831e-136 1.05787e-136 1.64715e-136 1.01885e-136 1.67712e-136 9.46673e-137 1.65034e-136 7.73453e-137 1.4309e-136 7.61646e-137 1.49882e-136 5.73883e-137 1.20453e-136 5.60893e-137 1.25957e-136 6.07336e-137 1.46449e-136 1.92432e-136 5.00341e-136 2.48136e-136 6.99093e-136 2.40249e-136 7.37664e-136 2.04593e-136 6.89276e-136 1.34393e-136 5.00876e-136 7.87648e-137 3.27997e-136 1.57281e-137 7.4088e-137 2.63928e-137 1.42814e-136 3.0172e-138 1.91275e-137 1.7046e-137 1.29952e-136 3.35495e-138 3.18877e-137 4.19524e-137 5.23893e-136 1.99343e-135 3.55128e-134 1.28185e-132 3.77799e-131 6.23126e-132 4.34843e-130 1.18905e-134 2.5627e-149 -4.00802e-153 1.91542e-125 -7.90417e-129 3.97364e-119 -2.14948e-122 3.51397e-117 -1.97821e-120 4.76963e-117 -2.52916e-120 9.26743e-118 -4.45159e-121 6.62305e-119 -2.88964e-122 2.58791e-120 -1.04328e-123 6.76651e-122 -2.56645e-125 1.35048e-123 -4.87917e-127 2.2924e-125 -7.91408e-129 3.70331e-127 -1.21139e-130 6.44972e-129 -1.96171e-132 1.34975e-130 -3.74034e-134 3.53244e-132 -8.81962e-136 1.13172e-133 -2.53566e-137 4.2887e-135 -8.59624e-139 1.87335e-136 -3.34535e-140 9.18342e-138 -1.45473e-141 4.96969e-139 -6.94311e-143 2.98103e-140 -3.64592e-144 2.02225e-141 -2.14735e-145 1.5574e-142 -1.42423e-146 1.34734e-143 -1.05125e-147 1.29781e-144 -8.534e-149 1.41305e-145 -7.69914e-150 1.79471e-146 -7.92014e-151 2.74968e-147 -9.504e-152 5.10227e-148 -1.31154e-152 1.1823e-148 -2.05218e-153 3.65041e-149 -3.39291e-154 1.73285e-149 -2.05228e-155 1.32609e-149 1.95606e-151 1.26842e-149 4.10729e-151 1.49057e-149 7.52617e-151 2.03859e-149 1.40835e-150 3.28227e-149 2.89346e-150 5.88044e-149 6.33283e-150 1.20324e-148 1.53657e-149 2.7188e-148 4.02914e-149 6.6329e-148 1.12226e-148 1.65561e-147 3.15767e-148 4.37339e-147 9.3062e-148 1.18782e-146 2.79607e-147 3.24914e-146 8.40011e-147 8.8303e-146 2.49202e-146 2.33385e-145 7.15203e-146 6.33252e-145 2.09772e-145 1.56903e-144 5.59637e-145 3.67184e-144 1.40528e-144 8.54611e-144 3.49881e-144 1.77877e-143 7.76896e-144 3.70515e-143 1.7222e-143 7.35112e-143 3.62855e-143 1.46113e-142 7.64438e-143 2.74821e-142 1.52139e-142 4.85397e-142 2.83905e-142 8.06346e-142 4.97626e-142 1.32835e-141 8.63947e-142 2.07795e-141 1.42281e-141 3.1155e-141 2.24381e-141 4.68168e-141 3.54384e-141 6.57873e-141 5.23063e-141 9.27668e-141 7.74328e-141 1.23856e-140 1.08495e-140 1.71415e-140 1.57542e-140 2.26756e-140 2.18632e-140 2.9498e-140 2.98378e-140 3.81002e-140 4.04374e-140 4.92716e-140 5.4885e-140 6.68793e-140 7.82211e-140 7.39679e-140 9.08822e-140 7.62723e-140 9.85123e-140 7.67452e-140 1.04282e-139 8.2027e-140 1.17371e-139 8.85091e-140 1.33512e-139 1.24519e-139 1.98272e-139 1.20902e-139 2.03523e-139 1.13322e-139 2.02025e-139 9.32123e-140 1.76343e-139 9.24943e-140 1.86128e-139 7.00832e-140 1.50416e-139 6.90102e-140 1.58464e-139 7.50229e-140 1.84975e-139 2.36194e-139 6.27927e-139 3.06134e-139 8.81852e-139 2.97069e-139 9.32554e-139 2.53523e-139 8.73203e-139 1.66147e-139 6.33034e-139 9.66255e-140 4.11335e-139 1.90369e-140 9.16651e-140 3.17385e-140 1.75535e-139 3.59114e-141 2.32672e-140 2.03985e-140 1.58936e-139 4.01408e-141 3.89947e-140 5.10105e-140 6.51032e-139 3.32238e-138 6.0473e-137 1.99628e-135 6.00986e-134 8.01275e-135 5.71682e-133 1.35717e-137 5.54642e-153 -1.02834e-156 1.289e-128 -5.62446e-132 4.16132e-122 -2.3439e-125 4.54349e-120 -2.65125e-123 6.82112e-120 -3.74047e-123 1.38303e-120 -6.86565e-124 1.00802e-121 -4.54416e-125 3.97643e-123 -1.65636e-126 1.04283e-124 -4.08535e-128 2.07397e-126 -7.73513e-130 3.47571e-128 -1.23796e-131 5.46039e-130 -1.84232e-133 9.05456e-132 -2.84022e-135 1.76897e-133 -5.04841e-137 4.2853e-135 -1.09832e-138 1.27076e-136 -2.91254e-140 4.46539e-138 -9.13076e-142 1.81147e-139 -3.29347e-143 8.26376e-141 -1.33072e-144 4.16756e-142 -5.91111e-146 2.33155e-143 -2.89233e-147 1.47696e-144 -1.58948e-148 1.06526e-145 -9.86684e-150 8.66296e-147 -6.84267e-151 7.87361e-148 -5.23991e-152 8.11816e-149 -4.47513e-153 9.81175e-150 -4.37807e-154 1.43879e-150 -5.02417e-155 2.57836e-151 -6.68485e-156 5.83299e-152 -1.01649e-156 1.78369e-152 -1.64242e-157 8.55158e-153 -7.92872e-159 6.63819e-153 1.04261e-154 6.45334e-153 2.1804e-154 7.74202e-153 4.05374e-154 1.08348e-152 7.73834e-154 1.78964e-152 1.62786e-153 3.29052e-152 3.65148e-153 6.92065e-152 9.09757e-153 1.60784e-151 2.45093e-152 4.03471e-151 7.01782e-152 1.03432e-150 2.027e-151 2.80799e-150 6.137e-151 7.83267e-150 1.89296e-150 2.20073e-149 5.83925e-150 6.13879e-149 1.77739e-149 1.6648e-148 5.23241e-149 4.6346e-148 1.57412e-148 1.17638e-147 4.30085e-148 2.82008e-147 1.10599e-147 6.73648e-147 2.82538e-147 1.43579e-146 6.42251e-147 3.06419e-146 1.4583e-146 6.22226e-146 3.14392e-146 1.2657e-145 6.7768e-146 2.4333e-145 1.37828e-145 4.38991e-145 2.62665e-145 7.44346e-145 4.69849e-145 1.25089e-144 8.32028e-145 1.99435e-144 1.39641e-144 3.04519e-144 2.24251e-144 4.65563e-144 3.60315e-144 6.65118e-144 5.40646e-144 9.52493e-144 8.12774e-144 1.29055e-143 1.15562e-143 1.81034e-143 1.70071e-143 2.42586e-143 2.39067e-143 3.19395e-143 3.30201e-143 4.17347e-143 4.52703e-143 5.45503e-143 6.21017e-143 7.47881e-143 8.93938e-143 8.3597e-143 1.0497e-142 8.71375e-143 1.15019e-142 8.85159e-143 1.2292e-142 9.55173e-143 1.3968e-142 1.0394e-142 1.60239e-142 1.47436e-142 2.3993e-142 1.44332e-142 2.48311e-142 1.36478e-142 2.4866e-142 1.13031e-142 2.18539e-142 1.13029e-142 2.32448e-142 8.61366e-143 1.88927e-142 8.54595e-143 2.00535e-142 9.32804e-143 2.35022e-142 2.91832e-142 7.92788e-142 3.80198e-142 1.11908e-141 3.69824e-142 1.1862e-141 3.16308e-142 1.1131e-141 2.06845e-142 8.05176e-142 1.19382e-142 5.192e-142 2.32115e-143 1.14174e-142 3.84443e-143 2.17182e-142 4.30609e-144 2.84964e-143 2.45856e-143 1.95659e-142 4.83772e-144 4.79996e-143 6.24834e-143 8.14334e-142 5.53184e-141 1.02798e-139 3.09778e-138 9.52405e-137 1.02634e-137 7.48727e-136 1.61631e-140 1.39507e-156 -2.99522e-160 8.98555e-132 -4.14244e-135 4.44134e-125 -2.60453e-128 5.95238e-123 -3.5972e-126 9.84711e-123 -5.57869e-126 2.07866e-123 -1.06492e-126 1.54262e-124 -7.17407e-128 6.13667e-126 -2.63627e-129 1.61267e-127 -6.51481e-131 3.19351e-129 -1.22792e-132 5.28121e-131 -1.93894e-134 8.06921e-133 -2.80676e-136 1.27449e-134 -4.12247e-138 2.32279e-136 -6.82956e-140 5.19554e-138 -1.3679e-141 1.42213e-139 -3.33657e-143 4.62451e-141 -9.65232e-145 1.74005e-142 -3.22265e-146 7.38091e-144 -1.20869e-147 3.46673e-145 -4.99431e-149 1.80831e-146 -2.27649e-150 1.06941e-147 -1.16715e-151 7.22298e-149 -6.78064e-153 5.52222e-150 -4.41834e-154 4.73783e-151 -3.19157e-155 4.62846e-152 -2.58012e-156 5.3262e-153 -2.40063e-157 7.48189e-154 -2.63534e-158 1.29625e-154 -3.38138e-159 2.86442e-155 -4.99491e-160 8.68108e-156 -7.8617e-161 4.21103e-156 -2.41908e-162 3.31157e-156 5.58047e-158 3.27172e-156 1.15735e-157 4.00753e-156 2.18014e-157 5.74057e-156 4.24355e-157 9.7314e-156 9.1402e-157 1.83726e-155 2.10191e-156 3.9743e-155 5.37996e-156 9.50019e-155 1.48999e-155 2.45382e-154 4.38828e-155 6.46525e-154 1.30191e-154 1.80506e-153 4.05143e-154 5.17458e-153 1.28363e-153 1.49428e-152 4.06774e-153 4.28065e-152 1.27104e-152 1.1918e-151 3.84003e-152 3.40595e-151 1.18553e-151 8.8609e-151 3.31896e-151 2.17679e-150 8.74375e-151 5.33749e-150 2.2922e-150 1.16521e-149 5.3355e-150 2.5482e-149 1.24113e-149 5.29675e-149 2.7383e-149 1.1027e-148 6.03956e-149 2.16696e-148 1.25532e-148 3.9933e-148 2.44318e-148 6.91102e-148 4.45991e-148 1.18471e-147 8.055e-148 1.925e-147 1.37759e-147 2.99326e-147 2.25265e-147 4.65557e-147 3.68181e-147 6.76167e-147 5.61585e-147 9.83358e-147 8.57299e-147 1.35208e-146 1.23688e-146 1.92236e-146 1.84484e-146 2.60937e-146 2.62675e-146 3.47721e-146 3.67188e-146 4.59667e-146 5.09272e-146 6.07282e-146 7.06115e-146 8.40964e-146 1.02665e-145 9.50099e-146 1.21847e-145 1.00117e-145 1.34972e-145 1.02683e-145 1.45639e-145 1.1188e-145 1.67102e-145 1.22788e-145 1.93342e-145 1.75609e-145 2.91888e-145 1.7334e-145 3.04592e-145 1.65367e-145 3.07735e-145 1.37914e-145 2.72342e-145 1.38988e-145 2.91928e-145 1.06545e-145 2.38668e-145 1.06514e-145 2.55257e-145 1.16737e-145 3.00366e-145 3.62968e-145 1.00694e-144 4.75324e-145 1.42868e-144 4.63532e-145 1.51815e-144 3.97356e-145 1.42778e-144 2.59329e-145 1.03071e-144 1.4856e-145 6.59648e-145 2.85116e-146 1.43173e-145 4.69069e-146 2.70501e-145 5.20217e-147 3.5141e-146 2.98491e-146 2.42468e-145 5.87364e-147 5.94771e-146 7.71159e-146 1.02552e-144 9.1982e-144 1.74423e-142 4.79206e-141 1.50439e-139 1.31162e-140 9.77469e-139 1.97816e-143 3.98598e-160 -9.79514e-164 6.48945e-135 -3.15231e-138 4.83671e-128 -2.95128e-131 7.90833e-126 -4.9461e-129 1.43663e-125 -8.40293e-129 3.1501e-126 -1.66377e-129 2.37646e-127 -1.13878e-130 9.52102e-129 -4.21444e-132 2.50505e-130 -1.04302e-133 4.93703e-132 -1.95696e-135 8.05608e-134 -3.04981e-137 1.19767e-135 -4.29851e-139 1.80308e-137 -6.02436e-141 3.06474e-139 -9.30765e-143 6.31545e-141 -1.71351e-144 1.5912e-142 -3.83427e-146 4.77804e-144 -1.02135e-147 1.66525e-145 -3.15169e-149 6.56152e-147 -1.09641e-150 2.86885e-148 -4.21292e-152 1.39501e-149 -1.78865e-153 7.70181e-151 -8.55501e-155 4.87162e-152 -4.65161e-156 3.50216e-153 -2.84902e-157 2.83694e-154 -1.94174e-158 2.62648e-155 -1.48673e-159 2.87899e-156 -1.31646e-160 3.87718e-157 -1.38267e-161 6.50024e-158 -1.71123e-162 1.40472e-158 -2.45934e-163 4.22575e-159 -3.77017e-164 2.07794e-159 -4.5699e-166 1.65158e-159 2.96966e-161 1.65679e-159 6.11766e-161 2.07114e-159 1.16775e-160 3.03638e-159 2.31802e-160 5.28325e-159 5.11382e-160 1.02455e-158 1.20625e-159 2.28038e-158 3.17378e-159 5.61153e-158 9.04234e-159 1.4927e-157 2.74107e-158 4.04465e-157 8.3588e-158 1.16201e-156 2.67532e-157 3.42555e-156 8.71254e-157 1.01726e-155 2.83805e-156 2.99437e-155 9.10878e-156 8.56308e-155 2.82567e-155 2.51341e-154 8.95698e-155 6.70536e-154 2.57065e-154 1.68865e-153 6.9406e-154 4.25093e-153 1.86751e-153 9.50756e-153 4.45249e-153 2.13096e-152 1.06128e-152 4.53481e-152 2.39673e-152 9.66283e-152 5.40955e-152 1.94112e-151 1.14918e-151 3.65398e-151 2.28431e-151 6.45456e-151 4.2555e-151 1.12859e-150 7.83848e-151 1.86881e-150 1.36598e-150 2.95906e-150 2.27429e-150 4.68181e-150 3.781e-150 6.91248e-150 5.86227e-150 1.02086e-149 9.08719e-150 1.4244e-149 1.33037e-149 2.05259e-149 2.01106e-149 2.82227e-149 2.90044e-149 3.80656e-149 4.10356e-149 5.09093e-149 5.7579e-149 6.79836e-149 8.06944e-149 9.50938e-149 1.18508e-148 1.08593e-148 1.42165e-148 1.1569e-148 1.59213e-148 1.19813e-148 1.73471e-148 1.31819e-148 2.0098e-148 1.4592e-148 2.34544e-148 2.10417e-148 3.57011e-148 2.09435e-148 3.75658e-148 2.01594e-148 3.82928e-148 1.69316e-148 3.41277e-148 1.71975e-148 3.68683e-148 1.32632e-148 3.03236e-148 1.33613e-148 3.26795e-148 1.47041e-148 3.86125e-148 4.54444e-148 1.28661e-147 5.98216e-148 1.83491e-147 5.84944e-148 1.95498e-147 5.02613e-148 1.84287e-147 3.27438e-148 1.32793e-147 1.8621e-148 8.43603e-148 3.52826e-149 1.80751e-148 5.76521e-149 3.39155e-148 6.33236e-150 4.36336e-149 3.65087e-149 3.02481e-148 7.18462e-150 7.41905e-149 9.59098e-149 1.30056e-147 1.52737e-146 2.9542e-145 7.39667e-144 2.36981e-142 1.67462e-143 1.27274e-141 2.46113e-146 1.27975e-163 -3.52808e-167 4.84663e-138 -2.47051e-141 5.37588e-131 -3.40464e-134 1.06592e-128 -6.89128e-132 2.11937e-128 -1.27838e-131 4.81584e-129 -2.61982e-132 3.68745e-130 -1.81905e-133 1.48648e-131 -6.7751e-135 3.91385e-133 -1.67837e-136 7.67505e-135 -3.13432e-138 1.23595e-136 -4.8235e-140 1.78938e-138 -6.62792e-142 2.57151e-140 -8.88129e-144 4.07827e-142 -1.28159e-145 7.72907e-144 -2.16652e-147 1.7876e-145 -4.43474e-149 4.94561e-147 -1.08482e-150 1.59404e-148 -3.08885e-152 5.82937e-150 -9.95706e-154 2.37169e-151 -3.55639e-155 1.07492e-152 -1.40624e-156 5.54024e-154 -6.27414e-158 3.2822e-155 -3.1928e-159 2.21968e-156 -1.83856e-160 1.69823e-157 -1.18307e-161 1.49102e-158 -8.58438e-163 1.55796e-159 -7.23643e-164 2.0119e-160 -7.27738e-165 3.26475e-161 -8.68585e-166 6.90945e-162 -1.21428e-166 2.06357e-162 -1.80664e-167 1.0285e-162 4.54333e-166 8.24772e-163 1.58912e-164 8.39255e-163 3.24108e-164 1.07007e-162 6.25869e-164 1.60513e-162 1.26594e-163 2.8666e-162 2.85951e-163 5.711e-162 6.91859e-163 1.30829e-161 1.87158e-162 3.31554e-161 5.48707e-162 9.08688e-161 1.71261e-161 2.53346e-160 5.37048e-161 7.4936e-160 1.76871e-160 2.27295e-159 5.92367e-160 6.94476e-159 1.98448e-159 2.10155e-158 6.54533e-159 6.17573e-158 2.08577e-158 1.86258e-157 6.79139e-158 5.09787e-157 1.99904e-157 1.31655e-156 5.53333e-157 3.40312e-156 1.52841e-156 7.79982e-156 3.73345e-156 1.79198e-155 9.12014e-156 3.90468e-155 2.10859e-155 8.51636e-155 4.87074e-155 1.74897e-154 1.05766e-154 3.36313e-154 2.14736e-154 6.0636e-154 4.08259e-154 1.08137e-153 7.66897e-154 1.82467e-153 1.3617e-153 2.94182e-153 2.30824e-153 4.73457e-153 3.90301e-153 7.106e-153 6.15096e-153 1.06568e-152 9.68139e-153 1.50893e-152 1.43823e-152 2.20384e-152 2.20341e-152 3.06958e-152 3.21897e-152 4.19047e-152 4.60942e-152 5.67012e-152 6.54336e-152 7.65382e-152 9.26929e-152 1.08143e-151 1.37504e-151 1.24833e-151 1.66737e-151 1.34466e-151 1.88798e-151 1.4063e-151 2.07729e-151 1.56244e-151 2.43032e-151 1.74461e-151 2.86074e-151 2.53649e-151 4.3903e-151 2.54592e-151 4.65837e-151 2.4727e-151 4.79117e-151 2.09166e-151 4.3005e-151 2.1413e-151 4.68242e-151 1.66165e-151 3.87496e-151 1.6869e-151 4.20825e-151 1.86421e-151 4.99296e-151 5.72777e-151 1.65392e-150 7.57925e-151 2.37098e-150 7.43204e-151 2.53318e-150 6.40155e-151 2.39363e-150 4.16387e-151 1.72197e-150 2.35098e-151 1.08598e-150 4.39861e-152 2.29735e-151 7.13799e-152 4.28067e-151 7.76695e-153 5.45521e-152 4.49882e-152 3.79868e-151 8.85369e-153 9.316e-152 1.20238e-151 1.66144e-150 2.53373e-149 4.99538e-148 1.14038e-146 3.72475e-145 2.13668e-146 1.65361e-144 3.09119e-149 4.52762e-167 -1.37997e-170 3.73033e-141 -1.98422e-144 6.08819e-134 -3.99077e-137 1.45699e-131 -9.71446e-135 3.16064e-131 -1.96214e-134 7.42705e-132 -4.15456e-135 5.76458e-133 -2.92393e-136 2.33693e-134 -1.09532e-137 6.15556e-136 -2.7155e-139 1.20106e-137 -5.04896e-141 1.90978e-139 -7.67881e-143 2.69611e-141 -1.03042e-144 3.70584e-143 -1.3237e-146 5.4919e-145 -1.78843e-148 9.56278e-147 -2.7763e-150 2.02443e-148 -5.18637e-152 5.14673e-150 -1.16198e-153 1.53164e-151 -3.04721e-155 5.19344e-153 -9.09297e-157 1.96536e-154 -3.01829e-158 8.30181e-156 -1.11176e-159 3.99441e-157 -4.62921e-161 2.2166e-158 -2.20583e-162 1.41073e-159 -1.19457e-163 1.02021e-160 -7.26359e-165 8.50106e-162 -4.99913e-166 8.47255e-163 -4.01583e-167 1.05037e-163 -3.87083e-168 1.65048e-164 -4.46109e-169 3.42506e-165 -6.06251e-170 1.01693e-165 -8.71613e-171 5.13267e-166 7.48661e-169 4.13973e-166 8.57287e-168 4.26488e-166 1.72658e-167 5.53973e-166 3.36665e-167 8.49659e-166 6.93077e-167 1.55695e-165 1.60181e-166 3.1865e-165 3.97388e-166 7.51389e-165 1.10504e-165 1.9615e-164 3.33371e-165 5.54042e-164 1.07142e-164 1.59e-163 3.45577e-164 4.84388e-163 1.17149e-163 1.51238e-162 4.03665e-163 4.75632e-162 1.39136e-162 1.48026e-161 4.71798e-162 4.47169e-161 1.54505e-161 1.38631e-160 5.16977e-161 3.89426e-160 1.56137e-160 1.03168e-159 4.43235e-160 2.73869e-159 1.25703e-159 6.43377e-159 3.14661e-159 1.51535e-158 7.87867e-159 3.38133e-158 1.86505e-158 7.54931e-158 4.40931e-158 1.58505e-157 9.78725e-158 3.11362e-157 2.02959e-157 5.72981e-157 3.93782e-157 1.04216e-156 7.54286e-157 1.79185e-156 1.3645e-156 2.94142e-156 2.35468e-156 4.81507e-156 4.04926e-156 7.34623e-156 6.48615e-156 1.11874e-155 1.03659e-155 1.60752e-155 1.56261e-155 2.37962e-155 2.42624e-155 3.35751e-155 3.59043e-155 4.63939e-155 5.20381e-155 6.35139e-155 7.47383e-155 8.66659e-155 1.07022e-154 1.23695e-154 1.60368e-154 1.4434e-154 1.96578e-154 1.57213e-154 2.25066e-154 1.66056e-154 2.5009e-154 1.86318e-154 2.9548e-154 2.09861e-154 3.5084e-154 3.07636e-154 5.42848e-154 3.11398e-154 5.80856e-154 3.05182e-154 6.02806e-154 2.60026e-154 5.44975e-154 2.68314e-154 5.98076e-154 2.09528e-154 4.98053e-154 2.14369e-154 5.45094e-154 2.37905e-154 6.49465e-154 7.26798e-154 2.13903e-153 9.66763e-154 3.08234e-153 9.50786e-154 3.30281e-153 8.21029e-154 3.12858e-153 5.33299e-154 2.24738e-153 2.98982e-154 1.40717e-153 5.52446e-155 2.93959e-154 8.90293e-155 5.43882e-154 9.59961e-156 6.8672e-155 5.58529e-155 4.80239e-154 1.09918e-155 1.17759e-154 1.52018e-154 2.13884e-153 4.20153e-152 8.43532e-151 1.75747e-149 5.84395e-148 2.72394e-149 2.14462e-147 3.9038e-152 1.73977e-170 -2.29346e-169 2.94316e-144 -1.62398e-147 7.00921e-137 -4.73832e-140 2.01653e-134 -1.38255e-137 4.76021e-134 -3.03511e-137 1.1548e-134 -6.6298e-138 9.07853e-136 -4.72641e-139 3.69947e-137 -1.78036e-140 9.74792e-139 -4.41808e-142 1.89333e-140 -8.18321e-144 2.97542e-142 -1.23135e-145 4.10322e-144 -1.61705e-147 5.40908e-146 -1.99817e-149 7.50873e-148 -2.53697e-151 1.20121e-149 -3.62162e-153 2.322e-151 -6.16341e-155 5.40973e-153 -1.26119e-156 1.48355e-154 -3.03975e-158 4.65902e-156 -8.38703e-160 1.63937e-157 -2.5863e-161 6.45397e-159 -8.87457e-163 2.89974e-160 -3.44927e-164 1.50776e-161 -1.53923e-165 9.0319e-163 -7.84235e-167 6.17853e-164 -4.50761e-168 4.88993e-165 -2.94639e-169 4.65278e-166 -2.25605e-170 5.54359e-167 -2.08563e-171 8.44885e-168 -2.32056e-172 1.71994e-168 -3.06301e-173 5.07776e-169 -4.23458e-174 2.59304e-169 6.72999e-172 2.09512e-169 4.66009e-171 2.17972e-169 9.24376e-171 2.87937e-169 1.81637e-170 4.51082e-169 3.80115e-170 8.47609e-169 8.98252e-170 1.78163e-168 2.28431e-169 4.32421e-168 6.52923e-169 1.16292e-167 2.02708e-168 3.38595e-167 6.70975e-168 1.0005e-166 2.22679e-167 3.14031e-166 7.77311e-167 1.00965e-165 2.75691e-166 3.26938e-165 9.78087e-166 1.0468e-164 3.41111e-165 3.25188e-164 1.14839e-164 1.03667e-163 3.95009e-164 2.98993e-163 1.22453e-163 8.12804e-163 3.56598e-163 2.21613e-162 1.03846e-162 5.33713e-162 2.66419e-162 1.28882e-161 6.83773e-162 2.94528e-161 1.65736e-161 6.73141e-161 4.01032e-161 1.44498e-160 9.0995e-161 2.89961e-160 1.92735e-160 5.44609e-160 3.81616e-160 1.01016e-159 7.45373e-160 1.76964e-159 1.37372e-159 2.95757e-159 2.41335e-159 4.92427e-159 4.22085e-159 7.63683e-159 6.87228e-159 1.18097e-158 1.11523e-158 1.72208e-158 1.706e-158 2.58376e-158 2.68469e-158 3.69301e-158 4.02447e-158 5.16539e-158 5.90395e-158 7.15499e-158 8.57913e-158 9.86977e-158 1.24186e-157 1.42303e-157 1.87976e-157 1.67876e-157 2.32939e-157 1.84905e-157 2.69686e-157 1.97267e-157 3.02672e-157 2.23545e-157 3.6116e-157 2.54011e-157 4.32596e-157 3.75434e-157 6.74866e-157 3.83272e-157 7.28275e-157 3.79045e-157 7.62675e-157 3.2533e-157 6.9456e-157 3.38386e-157 7.68331e-157 2.65946e-157 6.43946e-157 2.74221e-157 7.10284e-157 3.05635e-157 8.49908e-157 9.2853e-157 2.78361e-156 1.24155e-156 4.03204e-156 1.22479e-156 4.33357e-156 1.06041e-156 4.11546e-156 6.87952e-157 2.95241e-156 3.82993e-157 1.83551e-156 6.99021e-158 3.78705e-157 1.11868e-157 6.95713e-157 1.1956e-158 8.70515e-158 6.98622e-158 6.11259e-157 1.37489e-158 1.49865e-157 1.93952e-157 2.77621e-156 6.96802e-155 1.42297e-153 2.70833e-152 9.15675e-151 3.47163e-152 2.77765e-150 4.94876e-155 2.84149e-169 -4.09719e-166 2.36674e-147 -1.82024e-151 8.175e-140 -7.64256e-144 2.8184e-137 -2.66095e-141 7.22823e-137 -6.33123e-141 1.80811e-137 -1.42988e-141 1.43897e-138 -1.04085e-142 5.89331e-140 -3.99008e-144 1.55385e-141 -1.00539e-145 3.00613e-143 -1.88371e-147 4.67459e-145 -2.84792e-149 6.31066e-147 -3.71245e-151 8.00552e-149 -4.46154e-153 1.0448e-150 -5.34769e-155 1.53773e-152 -6.98349e-157 2.70932e-154 -1.06802e-158 5.76807e-156 -1.96576e-160 1.45463e-157 -4.30179e-162 4.22625e-159 -1.08805e-163 1.38226e-160 -3.09826e-165 5.07238e-162 -9.85735e-167 2.12867e-163 -3.56029e-168 1.03737e-164 -1.48177e-169 5.85198e-166 -7.08212e-171 3.78873e-167 -3.83957e-172 2.8522e-168 -2.3788e-173 2.59216e-169 -1.73336e-174 2.97106e-170 -1.53469e-175 4.39366e-171 -1.64698e-176 8.77833e-172 -2.10554e-177 2.57789e-172 -2.7865e-178 1.32876e-172 5.00327e-175 1.07184e-172 2.55003e-174 1.12284e-172 4.97882e-174 1.50521e-172 9.84586e-174 2.40512e-172 2.09264e-173 4.63018e-172 5.0531e-173 9.99052e-172 1.31668e-172 2.49525e-171 3.86725e-172 6.91303e-171 1.23544e-171 2.07498e-170 4.21181e-171 6.31436e-170 1.43847e-170 2.04243e-169 5.17161e-170 6.76384e-169 1.88842e-169 2.25576e-168 6.89741e-169 7.43278e-168 2.47468e-168 2.37509e-167 8.56745e-168 7.78823e-167 3.03058e-167 2.30702e-166 9.6472e-167 6.43705e-166 2.88303e-166 1.80278e-165 8.62266e-166 4.45144e-165 2.26778e-165 1.10217e-164 5.96681e-165 2.5797e-164 1.48103e-164 6.03553e-164 3.66791e-164 1.32465e-163 8.50761e-164 2.71545e-163 1.84048e-163 5.20545e-163 3.71866e-163 9.84605e-163 7.40554e-163 1.75743e-162 1.39037e-162 2.99037e-162 2.4865e-162 5.06399e-162 4.42259e-162 7.98334e-162 7.31901e-162 1.25366e-161 1.206e-161 1.85522e-161 1.8721e-161 2.82129e-161 2.98584e-161 4.08511e-161 4.53401e-161 5.78389e-161 6.73266e-161 8.1066e-161 9.89871e-161 1.13051e-160 1.44853e-160 1.64666e-160 2.21492e-160 1.96403e-160 2.7749e-160 2.18775e-160 3.24891e-160 2.35771e-160 3.68315e-160 2.69862e-160 4.43886e-160 3.09369e-160 5.36397e-160 4.61048e-160 8.43714e-160 4.7473e-160 9.18306e-160 4.73803e-160 9.70485e-160 4.09682e-160 8.90359e-160 4.29555e-160 9.92832e-160 3.39804e-160 8.37525e-160 3.53134e-160 9.31054e-160 3.95294e-160 1.11887e-159 1.19444e-159 3.64459e-159 1.60543e-159 5.30644e-159 1.58883e-159 5.72125e-159 1.37929e-159 5.44753e-159 8.93862e-160 3.90343e-159 4.94195e-160 2.40977e-159 8.91123e-161 4.91141e-160 1.41617e-160 8.95831e-160 1.50053e-161 1.11105e-160 8.80423e-161 7.83205e-160 1.73278e-161 1.91996e-160 2.49873e-160 3.63487e-159 1.15614e-157 2.39833e-156 4.17327e-155 1.43318e-153 4.39502e-155 3.59386e-153 6.26962e-158 -1.04669e-159 1.95955e-163 -1.71786e-159 1.28297e-158 -6.51874e-162 8.88567e-159 -1.2261e-165 2.04133e-161 -2.50058e-166 2.69728e-165 -1.95229e-166 4.19558e-166 -2.19848e-166 2.63205e-166 -4.07088e-166 2.46852e-166 -8.47322e-166 3.90702e-166 -1.68541e-165 7.08822e-166 -2.78091e-165 1.24766e-165 -4.26892e-165 1.84366e-165 -5.44214e-165 2.55922e-165 -6.34768e-165 2.97364e-165 -6.94296e-165 3.18213e-165 -6.24132e-165 3.21095e-165 -4.67689e-165 2.67543e-165 -3.38779e-165 1.86574e-165 -3.02212e-165 1.2621e-165 -2.54116e-165 1.05455e-165 -2.37555e-165 8.32701e-166 -2.45162e-165 7.32634e-166 -2.5204e-165 7.12974e-166 -2.51581e-165 6.92316e-166 -1.73113e-165 6.53637e-166 -1.37764e-165 4.2593e-166 -1.15184e-165 3.21315e-166 -9.41995e-166 2.54886e-166 -7.09376e-166 1.97905e-166 -4.92242e-166 1.41569e-166 -3.42426e-166 9.33507e-167 -2.37872e-166 6.17234e-167 -1.6086e-166 4.07572e-167 -1.05181e-166 2.61971e-167 -6.60515e-167 1.62776e-167 -3.99176e-167 9.71016e-168 -2.32689e-167 5.57153e-168 -1.35601e-167 3.08153e-168 -7.56277e-168 1.70247e-168 -3.99737e-168 8.99289e-169 -1.9744e-168 4.49673e-169 -9.09624e-169 2.09836e-169 -4.09116e-169 9.11919e-170 -1.72357e-169 3.86202e-170 -7.16726e-170 1.52889e-170 -2.61175e-170 5.96007e-171 -9.46819e-171 2.03048e-171 -3.42876e-171 6.86021e-172 -1.07819e-171 2.30698e-172 -3.4212e-172 6.70842e-173 -9.44581e-173 1.95893e-173 -2.6984e-173 4.94918e-174 -7.32492e-174 1.28515e-174 -1.90726e-174 3.14589e-175 -4.79093e-175 7.31567e-176 -1.18955e-175 1.62181e-176 -3.0047e-176 3.50079e-177 -7.85808e-177 7.53824e-178 -2.1442e-177 1.63645e-178 -6.51068e-178 3.56747e-179 -2.0717e-178 8.15383e-180 -7.52771e-179 1.75681e-180 -3.54005e-179 3.38913e-181 -2.98764e-179 2.02017e-182 -4.15517e-179 -1.10156e-185 -8.27393e-179 -3.26028e-185 -2.3084e-178 -9.94123e-185 -8.59197e-178 -3.765e-184 -4.13521e-177 -1.78236e-183 -2.56761e-176 -1.04844e-182 -1.98106e-175 -7.73283e-182 -1.85042e-174 -6.93247e-181 -2.07242e-173 -7.41118e-180 -2.72088e-172 -9.38082e-179 -4.14212e-171 -1.379e-177 -7.21854e-170 -2.33248e-176 -1.43703e-168 -4.49005e-175 -3.27913e-167 -9.82904e-174 -8.56014e-166 -2.45708e-172 -2.52896e-164 -7.00452e-171 -8.41255e-163 -2.25451e-169 -3.17963e-161 -8.1714e-168 -1.38713e-159 -3.37276e-166 -7.0978e-158 -1.61271e-164 -4.33654e-156 -9.09449e-163 -3.16529e-154 -6.13825e-161 -2.63176e-152 -4.89368e-159 -2.2858e-150 -4.3358e-157 -1.89218e-148 -3.91396e-155 -1.37466e-146 -3.3135e-153 -8.08845e-145 -2.44758e-151 -3.50859e-143 -1.46955e-149 -9.81265e-142 -6.58227e-148 -1.4069e-140 -1.93555e-146 -6.33701e-140 -2.97447e-145 -2.72616e-140 -1.44547e-144 -8.1824e-143 -6.49329e-145 -2.1072e-150 -1.84014e-147 -3.05112e-164 -3.51123e-155 -6.15215e-161 -4.57744e-163 -1.87544e-163 3.94895e-167 -3.73598e-163 2.55317e-162 -1.53014e-165 2.14536e-162 -2.65684e-169 5.3127e-165 -4.50711e-170 6.47158e-169 -3.51048e-170 8.36245e-170 -3.96092e-170 5.22742e-170 -7.39095e-170 4.90713e-170 -1.55527e-169 7.81971e-170 -3.12515e-169 1.43323e-169 -5.18775e-169 2.5471e-169 -7.9761e-169 3.78512e-169 -1.01592e-168 5.26094e-169 -1.18209e-168 6.10629e-169 -1.28759e-168 6.5177e-169 -1.15381e-168 6.54882e-169 -8.62155e-169 5.43894e-169 -6.21806e-169 3.78192e-169 -5.51092e-169 2.54704e-169 -4.60615e-169 2.11426e-169 -4.27575e-169 1.6594e-169 -4.37183e-169 1.4497e-169 -4.44811e-169 1.39772e-169 -4.38979e-169 1.34322e-169 -2.99811e-169 1.25386e-169 -2.3635e-169 8.10987e-170 -1.95506e-169 6.06081e-170 -1.58056e-169 4.75677e-170 -1.17684e-169 3.65124e-170 -8.0764e-170 2.58261e-170 -5.55211e-170 1.68439e-170 -3.80842e-170 1.10072e-170 -2.54132e-170 7.17803e-171 -1.63815e-170 4.55357e-171 -1.01325e-170 2.79003e-171 -6.02646e-171 1.63985e-171 -3.4551e-171 9.26375e-172 -1.97835e-171 5.0416e-172 -1.0834e-171 2.73825e-172 -5.61771e-172 1.42112e-172 -2.71961e-172 6.97609e-173 -1.22681e-172 3.19323e-173 -5.3972e-173 1.36002e-173 -2.22238e-173 5.63971e-174 -9.02656e-174 2.18473e-174 -3.21029e-174 8.32997e-175 -1.13519e-174 2.77406e-175 -4.00808e-175 9.1588e-176 -1.22785e-175 3.00933e-176 -3.79541e-176 8.54641e-177 -1.01988e-176 2.43828e-177 -2.83742e-177 6.01617e-178 -7.50159e-178 1.5276e-178 -1.90254e-178 3.65957e-179 -4.65942e-179 8.33754e-180 -1.13002e-179 1.81492e-180 -2.79902e-180 3.86082e-181 -7.2238e-181 8.24694e-182 -1.96578e-181 1.79451e-182 -6.06367e-182 3.99009e-183 -2.02006e-182 9.59865e-184 -8.12648e-183 2.31018e-184 -4.38682e-183 5.78292e-185 -3.53566e-183 1.25966e-185 -4.87851e-183 -6.84322e-190 -9.75564e-183 -3.97973e-189 -2.76195e-182 -1.40472e-188 -1.04819e-181 -5.7292e-188 -5.16301e-181 -2.85583e-187 -3.28509e-180 -1.75093e-186 -2.59632e-179 -1.33792e-185 -2.48759e-178 -1.23786e-184 -2.85891e-177 -1.36154e-183 -3.85626e-176 -1.76697e-182 -6.03771e-175 -2.65757e-181 -1.0839e-173 -4.5902e-180 -2.22707e-172 -9.00985e-179 -5.25525e-171 -2.01054e-177 -1.42137e-169 -5.12149e-176 -4.36043e-168 -1.48731e-174 -1.51268e-166 -4.87722e-173 -5.99911e-165 -1.8036e-171 -2.76612e-163 -7.61432e-170 -1.50916e-161 -3.73718e-168 -9.88398e-160 -2.17123e-166 -7.66562e-158 -1.50985e-164 -6.6188e-156 -1.23094e-162 -5.82574e-154 -1.10156e-160 -4.80162e-152 -9.93308e-159 -3.43721e-150 -8.34045e-157 -1.98216e-148 -6.08474e-155 -8.40606e-147 -3.59763e-153 -2.29491e-145 -1.58139e-151 -3.19832e-144 -4.53753e-150 -1.37604e-143 -6.71812e-149 -5.36081e-144 -3.04999e-148 -1.29932e-146 -1.18362e-148 -2.10838e-154 -2.50922e-151 -3.14785e-160 -2.99052e-158 -6.24409e-157 -4.29976e-159 -3.91533e-167 9.10115e-171 -9.43042e-167 5.70037e-166 -4.15337e-169 5.805e-166 -6.77598e-173 1.54832e-168 -9.40955e-174 1.77403e-172 -7.29841e-174 1.87787e-173 -8.23888e-174 1.16957e-173 -1.54733e-173 1.09877e-173 -3.28879e-173 1.76262e-173 -6.67126e-173 3.26339e-173 -1.11353e-172 5.85488e-173 -1.71397e-172 8.74864e-173 -2.18043e-172 1.21734e-172 -2.53021e-172 1.41122e-172 -2.74398e-172 1.50221e-172 -2.45058e-172 1.50276e-172 -1.82561e-172 1.24382e-172 -1.31077e-172 8.62225e-173 -1.15404e-172 5.78045e-173 -9.58732e-173 4.76622e-173 -8.8367e-173 3.71779e-173 -8.95125e-173 3.22466e-173 -9.01317e-173 3.0798e-173 -8.7944e-173 2.92879e-173 -5.96187e-173 2.70279e-173 -4.65604e-173 1.73507e-173 -3.81051e-173 1.28449e-173 -3.04537e-173 9.97355e-174 -2.24202e-173 7.56771e-174 -1.52179e-173 5.29248e-174 -1.03389e-173 3.41385e-174 -7.0035e-174 2.20472e-174 -4.61213e-174 1.41983e-174 -2.93148e-174 8.88931e-175 -1.78639e-174 5.37082e-175 -1.04597e-174 3.11032e-175 -5.90022e-175 1.73002e-175 -3.3209e-175 9.26554e-176 -1.78658e-175 4.94807e-176 -9.09312e-176 2.52361e-176 -4.31744e-176 1.21647e-176 -1.90838e-176 5.46387e-177 -8.21893e-177 2.28157e-177 -3.3109e-177 9.26827e-178 -1.31489e-177 3.51529e-178 -4.5699e-178 1.31171e-178 -1.57851e-178 4.27327e-179 -5.44296e-179 1.37984e-179 -1.62768e-179 4.43396e-180 -4.91281e-180 1.23125e-180 -1.28846e-180 3.43659e-181 -3.5026e-181 8.29462e-182 -9.05514e-182 2.06343e-182 -2.24809e-182 4.84902e-183 -5.4015e-183 1.08552e-183 -1.28983e-183 2.32889e-184 -3.16555e-184 4.90558e-185 -8.17162e-185 1.04569e-185 -2.25657e-185 2.29734e-186 -7.22153e-186 5.25108e-187 -2.56954e-186 1.33599e-187 -1.14316e-186 3.54613e-188 -6.96278e-187 1.04818e-188 -5.76209e-187 3.20505e-189 -7.80589e-187 5.29942e-191 -1.57187e-186 -5.71722e-193 -4.50962e-186 -2.30908e-192 -1.74013e-185 -9.99269e-192 -8.72946e-185 -5.17689e-191 -5.65804e-184 -3.27468e-190 -4.55469e-183 -2.56796e-189 -4.44192e-182 -2.42818e-188 -5.1866e-181 -2.72233e-187 -7.10062e-180 -3.59452e-186 -1.12701e-178 -5.48589e-185 -2.04911e-177 -9.59435e-184 -4.26416e-176 -1.90409e-182 -1.0189e-174 -4.28957e-181 -2.78975e-173 -1.10193e-179 -8.66406e-172 -3.22236e-178 -3.04666e-170 -1.06299e-176 -1.22751e-168 -3.95325e-175 -5.76843e-167 -1.67893e-173 -3.21806e-165 -8.2924e-172 -2.15428e-163 -4.84609e-170 -1.6941e-161 -3.37956e-168 -1.46408e-159 -2.74488e-166 -1.27503e-157 -2.4292e-164 -1.03199e-155 -2.155e-162 -7.22356e-154 -1.77472e-160 -4.06338e-152 -1.26733e-158 -1.67759e-150 -7.3189e-157 -4.4436e-149 -3.13157e-155 -5.95177e-148 -8.69044e-154 -2.39437e-147 -1.22932e-152 -8.08918e-148 -5.13723e-152 -1.47508e-150 -1.68068e-152 -1.50481e-157 -3.64557e-155 -2.69513e-156 -2.64489e-154 -5.34231e-153 -3.3768e-155 -9.15849e-171 2.35471e-174 -2.6724e-170 1.41633e-169 -1.26743e-172 1.74634e-169 -1.97901e-176 5.01312e-172 -2.22655e-177 5.49575e-176 -1.72047e-177 4.71266e-177 -1.94335e-177 2.924e-177 -3.6733e-177 2.74885e-177 -7.88535e-177 4.43837e-177 -1.61453e-176 8.29993e-177 -2.70932e-176 1.50313e-176 -4.17433e-176 2.25813e-176 -5.30318e-176 3.14522e-176 -6.13642e-176 3.64118e-176 -6.62504e-176 3.86491e-176 -5.89574e-176 3.84895e-176 -4.37821e-176 3.17442e-176 -3.12899e-176 2.19349e-176 -2.73631e-176 1.4637e-176 -2.25914e-176 1.19871e-176 -2.06724e-176 9.2919e-177 -2.07423e-176 8.0008e-177 -2.06664e-176 7.56867e-177 -1.9934e-176 7.12148e-177 -1.34123e-176 6.4963e-177 -1.03758e-176 4.13879e-177 -8.40057e-177 3.03489e-177 -6.63638e-177 2.33108e-177 -4.83034e-177 1.7483e-177 -3.2424e-177 1.20876e-177 -2.17688e-177 7.71065e-178 -1.45611e-177 4.92089e-178 -9.46298e-178 3.12937e-178 -5.9304e-178 1.93353e-178 -3.56035e-178 1.15192e-178 -2.0523e-178 6.57274e-179 -1.1391e-178 3.59957e-179 -6.30286e-179 1.8972e-179 -3.33158e-179 9.96201e-180 -1.66476e-179 4.99317e-180 -7.75442e-180 2.36364e-180 -3.35976e-180 1.04183e-180 -1.4171e-180 4.26588e-181 -5.58767e-181 1.69785e-181 -2.17097e-181 6.30628e-182 -7.37867e-182 2.30344e-182 -2.49162e-182 7.34335e-183 -8.39818e-183 2.31983e-183 -2.45436e-183 7.2932e-184 -7.24284e-184 1.9812e-184 -1.85695e-184 5.41277e-185 -4.94179e-185 1.27881e-185 -1.25219e-185 3.11898e-186 -3.05205e-186 7.19619e-187 -7.22073e-187 1.58472e-187 -1.70547e-187 3.35551e-188 -4.17021e-188 7.01042e-189 -1.08366e-188 1.4939e-189 -3.05623e-189 3.31796e-190 -1.01841e-189 7.78918e-191 -3.8486e-190 2.07993e-191 -1.8467e-190 5.93657e-192 -1.21214e-190 1.93683e-192 -1.04607e-190 6.79759e-193 -1.39203e-190 8.16858e-194 -2.80329e-190 -9.34324e-197 -8.113e-190 -4.0821e-196 -3.16515e-189 -1.82304e-195 -1.60905e-188 -9.64064e-195 -1.05657e-187 -6.20763e-194 -8.60497e-187 -4.94289e-193 -8.4824e-186 -4.738e-192 -1.00037e-184 -5.3749e-191 -1.38071e-183 -7.16726e-190 -2.20564e-182 -1.1026e-188 -4.03124e-181 -1.94199e-187 -8.42191e-180 -3.90305e-186 -2.01814e-178 -9.33947e-185 -5.53295e-177 -3.1413e-183 -1.71869e-175 -1.81687e-181 -6.04186e-174 -1.53311e-179 -2.43359e-172 -1.39222e-177 -1.14332e-170 -1.18521e-175 -6.37172e-169 -9.09182e-174 -4.24623e-167 -6.22728e-172 -3.30093e-165 -3.80847e-170 -2.7983e-163 -2.0885e-168 -2.37721e-161 -1.03626e-166 -1.87111e-159 -4.72855e-165 -1.27168e-157 -2.03335e-163 -6.93861e-156 -8.41902e-162 -2.77464e-154 -3.3212e-160 -7.09368e-153 -1.1693e-158 -9.09046e-152 -3.33572e-157 -3.38275e-151 -7.47368e-156 -9.70808e-152 -1.62537e-154 -1.82802e-154 -4.10635e-153 -1.14605e-153 -1.00251e-151 -2.00312e-152 -2.16698e-150 -3.9215e-149 -2.31878e-151 -2.38421e-174 6.76625e-178 -8.42687e-174 3.89076e-173 -4.30186e-176 5.80367e-173 -6.52235e-180 1.79196e-175 -5.89792e-181 1.90651e-179 -4.54156e-181 1.31343e-180 -5.13452e-181 8.11824e-181 -9.76997e-181 7.63664e-181 -2.11867e-180 1.24096e-180 -4.37935e-180 2.34378e-180 -7.38889e-180 4.28423e-180 -1.13958e-179 6.47001e-180 -1.4458e-179 9.01937e-180 -1.66818e-179 1.0426e-179 -1.79291e-179 1.10337e-179 -1.58981e-179 1.09375e-179 -1.17677e-179 8.98739e-180 -8.37088e-180 6.18953e-180 -7.27077e-180 4.11064e-180 -5.96543e-180 3.34335e-180 -5.419e-180 2.57528e-180 -5.38552e-180 2.20116e-180 -5.30899e-180 2.06226e-180 -5.06179e-180 1.91972e-180 -3.38001e-180 1.73087e-180 -2.58994e-180 1.09433e-180 -2.07424e-180 7.94774e-181 -1.61958e-180 6.03831e-181 -1.16534e-180 4.47585e-181 -7.73522e-181 3.05907e-181 -5.13155e-181 1.92956e-181 -3.38922e-181 1.21679e-181 -2.17346e-181 7.64042e-182 -1.34295e-181 4.65841e-182 -7.94275e-182 2.73637e-182 -4.50733e-182 1.53823e-182 -2.46163e-182 8.29377e-183 -1.33905e-182 4.30158e-183 -6.95465e-183 2.22076e-183 -3.41208e-183 1.09382e-183 -1.55935e-183 5.08455e-184 -6.62342e-184 2.19921e-184 -2.73644e-184 8.82959e-185 -1.05634e-184 3.44301e-185 -4.0161e-185 1.25232e-185 -1.33528e-185 4.47739e-186 -4.40951e-186 1.39679e-186 -1.45336e-186 4.31688e-187 -4.15298e-187 1.32767e-187 -1.19887e-187 3.52802e-188 -3.00681e-188 9.43368e-189 -7.83927e-189 2.18146e-189 -1.94864e-189 5.21551e-190 -4.66812e-190 1.18126e-190 -1.08894e-190 2.55858e-191 -2.54781e-191 5.34597e-192 -6.2158e-192 1.10739e-192 -1.62709e-192 2.35678e-193 -4.67961e-193 5.27862e-194 -1.61286e-193 1.26521e-194 -6.3697e-194 3.49898e-195 -3.20363e-194 1.04525e-195 -2.1826e-194 3.58093e-196 -1.91367e-194 1.30826e-196 -2.49405e-194 1.63842e-197 -4.9886e-194 -1.68732e-200 -1.44827e-193 -7.33232e-200 -5.68616e-193 -3.2733e-199 -2.91498e-192 -1.73672e-198 -1.92997e-191 -1.12397e-197 -1.58441e-190 -9.14797e-197 -1.57263e-189 -1.49664e-195 -1.86478e-188 -2.41926e-193 -2.58339e-187 -7.16078e-191 -4.13927e-186 -1.85612e-188 -7.63099e-185 -4.09851e-186 -1.68655e-183 -7.75702e-184 -5.26996e-182 -1.2668e-181 -2.8457e-180 -1.79567e-179 -2.25136e-178 -2.22077e-177 -1.92388e-176 -2.40729e-175 -1.54607e-174 -2.29631e-173 -1.12264e-172 -1.93435e-171 -7.29514e-171 -1.44338e-169 -4.24067e-169 -9.56591e-168 -2.2134e-167 -5.64538e-166 -1.04595e-165 -2.97437e-164 -4.54415e-164 -1.40327e-162 -1.85728e-162 -5.95188e-161 -7.2828e-161 -2.28212e-159 -2.70416e-159 -7.97166e-158 -8.88056e-158 -2.56265e-156 -2.33515e-156 -7.6729e-155 -4.75545e-155 -2.16531e-153 -9.26519e-154 -5.8087e-152 -2.07013e-152 -1.48255e-150 -4.42805e-151 -3.56111e-149 -8.34866e-150 -7.85139e-148 -1.31862e-148 -1.52895e-146 -2.50345e-145 -1.42005e-147 -6.96189e-178 2.16193e-181 -2.97224e-177 1.17685e-176 -1.6301e-179 2.12165e-176 -2.42521e-183 7.04098e-179 -1.75094e-184 7.35356e-183 -1.34249e-184 4.04637e-184 -1.51797e-184 2.49136e-184 -2.90556e-184 2.34484e-184 -6.36114e-184 3.83447e-184 -1.32666e-183 7.31385e-184 -2.24936e-183 1.34928e-183 -3.47107e-183 2.04816e-183 -4.39606e-183 2.85726e-183 -5.05592e-183 3.29754e-183 -5.40788e-183 3.47885e-183 -4.7767e-183 3.43223e-183 -3.52339e-183 2.8095e-183 -2.49418e-183 1.92819e-183 -2.15138e-183 1.27438e-183 -1.7539e-183 1.02933e-183 -1.58144e-183 7.87818e-184 -1.55646e-183 6.6838e-184 -1.51787e-183 6.20145e-184 -1.4303e-183 5.71081e-184 -9.47744e-184 5.08889e-184 -7.19215e-184 3.19269e-184 -5.69701e-184 2.2964e-184 -4.39589e-184 1.7256e-184 -3.12629e-184 1.26402e-184 -2.05169e-184 8.53887e-185 -1.34472e-184 5.32516e-185 -8.76828e-185 3.31767e-185 -5.54792e-185 2.0567e-185 -3.37938e-185 1.23726e-185 -1.96882e-185 7.16478e-186 -1.09979e-185 3.96751e-186 -5.90954e-186 2.10582e-186 -3.15998e-186 1.07462e-186 -1.61245e-186 5.45399e-187 -7.76666e-187 2.63946e-187 -3.48217e-187 1.20465e-187 -1.44991e-187 5.11218e-188 -5.86713e-188 2.01223e-188 -2.21723e-188 7.68602e-189 -8.24805e-189 2.73709e-189 -2.68256e-189 9.57608e-190 -8.66267e-190 2.92261e-190 -2.79173e-190 8.83366e-191 -7.79944e-191 2.65671e-191 -2.20224e-191 6.9029e-192 -5.4025e-192 1.80554e-192 -1.37966e-192 4.08416e-193 -3.36367e-193 9.56493e-194 -7.91803e-194 2.12478e-194 -1.82052e-194 4.52201e-195 -4.21661e-195 9.31108e-196 -1.02488e-195 1.90867e-196 -2.6942e-196 4.04459e-197 -7.85278e-197 9.08852e-198 -2.76671e-197 2.20409e-198 -1.11995e-197 6.21395e-199 -5.7443e-198 1.89308e-199 -3.93041e-198 6.54427e-200 -3.37661e-198 2.32734e-200 -4.26806e-198 1.61983e-201 -8.43881e-198 -3.13038e-204 -2.44216e-197 -1.28687e-203 -9.59772e-197 -2.17893e-202 -4.93651e-196 -1.3319e-199 -3.33423e-195 -8.38942e-197 -4.66297e-194 -4.22687e-194 -6.58207e-192 -1.7367e-191 -1.72884e-189 -5.91055e-189 -4.02691e-187 -1.68669e-186 -8.0707e-185 -4.07711e-184 -1.39782e-182 -8.41966e-182 -2.10321e-180 -1.49649e-179 -2.76239e-178 -2.30407e-177 -3.1808e-176 -3.0903e-175 -3.22342e-174 -3.62857e-173 -2.88473e-172 -3.74619e-171 -2.28668e-170 -3.41354e-169 -1.60974e-168 -2.75435e-167 -1.00867e-166 -1.97368e-165 -5.63777e-165 -1.25908e-163 -2.81668e-163 -7.16721e-162 -1.26092e-161 -3.64862e-160 -5.07343e-160 -1.66529e-158 -1.8428e-158 -6.8363e-157 -6.07953e-157 -2.53545e-155 -1.83637e-155 -8.54817e-154 -5.12744e-154 -2.6411e-152 -1.33597e-152 -7.55041e-151 -3.27009e-151 -2.01641e-149 -7.52144e-150 -5.06504e-148 -1.60983e-148 -1.19729e-146 -3.13592e-147 -2.63825e-145 -5.37173e-146 -5.30212e-144 -7.73701e-145 -9.3928e-143 -1.40388e-141 -7.80026e-144 -2.22111e-181 7.57603e-185 -1.14639e-180 3.90371e-180 -6.76179e-183 8.49931e-180 -9.9751e-187 3.0299e-182 -5.73553e-188 3.13488e-186 -4.38263e-188 1.37288e-187 -4.95974e-188 8.4199e-188 -9.55522e-188 7.92858e-188 -2.11294e-187 1.30462e-187 -4.44779e-187 2.51291e-187 -7.58015e-187 4.67843e-187 -1.17055e-186 7.13744e-187 -1.48003e-186 9.96307e-187 -1.6968e-186 1.14784e-186 -1.80626e-186 1.20704e-186 -1.58922e-186 1.18513e-186 -1.1681e-186 9.66279e-187 -8.22856e-187 6.60801e-187 -7.04822e-187 4.34591e-187 -5.7093e-187 3.48568e-187 -5.10964e-187 2.65066e-187 -4.98003e-187 2.23198e-187 -4.80413e-187 2.05067e-187 -4.47387e-187 1.86796e-187 -2.94162e-187 1.64495e-187 -2.2107e-187 1.02402e-187 -1.73185e-187 7.2939e-188 -1.32048e-187 5.42041e-188 -9.28116e-188 3.92338e-188 -6.02139e-188 2.61933e-188 -3.89861e-188 1.61485e-188 -2.5094e-188 9.93862e-189 -1.56636e-188 6.08191e-189 -9.40458e-189 3.60941e-189 -5.3964e-189 2.06024e-189 -2.96691e-189 1.12364e-189 -1.56829e-189 5.86978e-190 -8.2424e-190 2.94667e-190 -4.1316e-190 1.46988e-190 -1.95347e-190 6.98778e-191 -8.59105e-191 3.13056e-191 -3.50611e-191 1.30313e-191 -1.38935e-191 5.02735e-192 -5.13894e-192 1.88043e-192 -1.87002e-192 6.55412e-193 -5.94791e-193 2.243e-193 -1.87763e-193 6.69436e-194 -5.91413e-194 1.97784e-194 -1.6147e-194 5.81309e-195 -4.45693e-195 1.47585e-195 -1.0688e-195 3.77289e-196 -2.67139e-196 8.34032e-197 -6.38186e-197 1.91105e-197 -1.47446e-197 4.15783e-198 -3.33614e-198 8.67936e-199 -7.63211e-199 1.75717e-199 -1.84177e-199 3.55351e-200 -4.83548e-200 7.46364e-201 -1.41567e-200 1.67094e-201 -5.02801e-201 4.05547e-202 -2.0447e-201 1.14593e-202 -1.04206e-201 3.47197e-203 -6.94114e-202 1.16806e-203 -5.62823e-202 3.79742e-204 -6.81764e-202 -1.46808e-208 -1.34068e-201 -3.61502e-204 -1.49353e-200 -5.79615e-201 -6.80299e-198 -5.76043e-198 -3.41508e-195 -4.20479e-195 -1.43007e-192 -2.39316e-192 -5.02522e-190 -1.09594e-189 -1.49337e-187 -4.12047e-187 -3.78006e-185 -1.29104e-184 -8.20449e-183 -3.41037e-182 -1.53634e-180 -7.66875e-180 -2.49592e-178 -1.47997e-177 -3.53579e-176 -2.46849e-175 -4.38756e-174 -3.5804e-173 -4.78876e-172 -4.54004e-171 -4.61393e-170 -5.05656e-169 -3.93683e-168 -4.96716e-167 -2.98316e-166 -4.31872e-165 -2.01239e-164 -3.33388e-163 -1.21104e-162 -2.29113e-161 -6.51384e-161 -1.40491e-159 -3.13703e-159 -7.70254e-158 -1.35536e-157 -3.78307e-156 -5.26643e-156 -1.66796e-154 -1.84669e-154 -6.61862e-153 -5.87162e-153 -2.37204e-151 -1.70354e-151 -7.71526e-150 -4.54407e-150 -2.29207e-148 -1.12274e-148 -6.26695e-147 -2.58287e-147 -1.58898e-145 -5.53157e-146 -3.75608e-144 -1.09329e-144 -8.27794e-143 -1.95553e-143 -1.68663e-141 -3.06982e-142 -3.1164e-140 -4.06374e-141 -5.06547e-139 -6.96537e-138 -3.85536e-140 -7.87439e-185 2.92552e-188 -4.90264e-184 1.41653e-183 -3.10286e-186 3.72143e-183 -4.56531e-190 1.42418e-185 -2.0846e-191 1.47024e-189 -1.586e-191 5.11521e-191 -1.79495e-191 3.12481e-191 -3.4781e-191 2.94374e-191 -7.76388e-191 4.87355e-191 -1.64875e-190 9.4789e-191 -2.82314e-190 1.78076e-190 -4.36101e-190 2.73008e-190 -5.50321e-190 3.81272e-190 -6.28759e-190 4.38448e-190 -6.65998e-190 4.59517e-190 -5.83564e-190 4.48959e-190 -4.27338e-190 3.64561e-190 -2.9953e-190 2.48391e-190 -2.54752e-190 1.62547e-190 -2.05019e-190 1.29453e-190 -1.821e-190 9.7805e-191 -1.75733e-190 8.17362e-191 -1.67673e-190 7.43586e-191 -1.54293e-190 6.69946e-191 -1.00655e-190 5.8297e-191 -7.49032e-191 3.60075e-191 -5.8025e-191 2.53963e-191 -4.37114e-191 1.86628e-191 -3.03593e-191 1.33464e-191 -1.94687e-191 8.80467e-192 -1.24504e-191 5.36536e-192 -7.9097e-192 3.26148e-192 -4.86998e-192 1.96986e-192 -2.88169e-192 1.1531e-192 -1.62829e-192 6.4865e-193 -8.80947e-193 3.48362e-193 -4.57998e-193 1.79075e-193 -2.36535e-193 8.84153e-194 -1.16444e-193 4.33383e-194 -5.40302e-194 2.02337e-194 -2.33016e-194 8.89556e-195 -9.31815e-195 3.63099e-195 -3.61477e-195 1.37251e-195 -1.3082e-195 5.02529e-196 -4.65481e-196 1.71357e-196 -1.44728e-196 5.73342e-197 -4.46392e-197 1.67247e-197 -1.37333e-197 4.82693e-198 -3.66167e-198 1.38536e-198 -9.87144e-199 3.43379e-199 -2.3117e-199 8.57055e-200 -5.64797e-200 1.84933e-200 -1.32011e-200 4.13978e-201 -2.98782e-201 8.80572e-202 -6.6363e-202 1.79902e-202 -1.49446e-202 3.57096e-203 -3.56323e-203 7.09692e-204 -9.27639e-204 1.46945e-204 -2.69907e-204 3.2518e-205 -9.51692e-205 7.80748e-206 -3.80833e-205 2.17435e-206 -1.87798e-205 6.40147e-207 -1.18352e-205 2.02911e-207 -7.38669e-205 5.71223e-208 -6.59322e-202 -2.69257e-203 -5.39116e-199 -1.49529e-199 -3.59789e-196 -2.00289e-196 -1.97655e-193 -1.74488e-193 -9.01528e-191 -1.13621e-190 -3.4424e-188 -5.83151e-188 -1.10914e-185 -2.42792e-185 -3.03793e-183 -8.35689e-183 -7.12231e-181 -2.4115e-180 -1.43836e-178 -5.89865e-178 -2.51674e-176 -1.23423e-175 -3.83556e-174 -2.22628e-173 -5.11583e-172 -3.48489e-171 -5.99743e-170 -4.76146e-169 -6.20371e-168 -5.7072e-167 -5.68143e-166 -6.02786e-165 -4.62046e-164 -5.63169e-163 -3.34556e-162 -4.66988e-161 -2.16163e-160 -3.44688e-159 -1.24868e-158 -2.27025e-157 -6.45942e-157 -1.33711e-155 -2.99688e-155 -7.05499e-154 -1.249e-153 -3.34029e-152 -4.68492e-152 -1.42156e-150 -1.58571e-150 -5.44901e-149 -4.86087e-149 -1.88633e-147 -1.35606e-147 -5.91951e-146 -3.46284e-146 -1.69225e-144 -8.14081e-145 -4.43309e-143 -1.76869e-143 -1.07041e-141 -3.54899e-142 -2.3918e-140 -6.52513e-141 -4.94345e-139 -1.08025e-139 -9.37845e-138 -1.5666e-138 -1.6053e-136 -1.92036e-137 -2.41247e-135 -3.07374e-134 -1.7236e-136 -3.03312e-188 1.23266e-191 -2.28035e-187 5.60973e-187 -1.55026e-189 1.77696e-186 -2.29034e-193 7.2964e-189 -8.31023e-195 7.55742e-193 -6.29979e-195 2.0882e-194 -7.13415e-195 1.27059e-194 -1.39096e-194 1.19741e-194 -3.13531e-194 1.99436e-194 -6.71845e-194 3.91657e-194 -1.15596e-193 7.42405e-194 -1.78635e-193 1.14365e-193 -2.24984e-193 1.59777e-193 -2.56167e-193 1.83378e-193 -2.69984e-193 1.91526e-193 -2.35579e-193 1.86189e-193 -1.7186e-193 1.50555e-193 -1.19853e-193 1.02191e-193 -1.01212e-193 6.65354e-194 -8.09228e-194 5.26125e-194 -7.13321e-194 3.94905e-194 -6.81575e-194 3.27518e-194 -6.43179e-194 2.95005e-194 -5.84806e-194 2.62867e-194 -3.78502e-194 2.26011e-194 -2.78888e-194 1.38495e-194 -2.13622e-194 9.67161e-195 -1.5898e-194 7.02746e-195 -1.09097e-194 4.96466e-195 -6.91423e-195 3.23594e-195 -4.36672e-195 1.94878e-195 -2.73767e-195 1.16986e-195 -1.66233e-195 6.97254e-196 -9.69233e-196 4.0251e-196 -5.39203e-196 2.231e-196 -2.87011e-196 1.17962e-196 -1.46729e-196 5.96562e-197 -7.44482e-197 2.8962e-197 -3.59857e-197 1.39461e-197 -1.63819e-197 6.39255e-198 -6.92619e-198 2.75708e-198 -2.71309e-198 1.10315e-198 -1.02995e-198 4.08412e-199 -3.64552e-199 1.46315e-199 -1.2677e-199 4.87874e-200 -3.8509e-200 1.59504e-200 -1.15972e-200 4.54482e-201 -3.4821e-201 1.28041e-201 -9.05846e-202 3.58541e-202 -2.38251e-202 8.66761e-203 -5.44166e-203 2.10968e-203 -1.29757e-203 4.43732e-204 -2.96159e-204 9.68751e-205 -6.55074e-205 2.01041e-205 -1.42388e-205 4.0094e-206 -3.14332e-206 7.77673e-207 -7.36227e-207 1.51214e-207 -1.88516e-207 3.06763e-208 -5.38932e-208 6.65252e-209 -1.8574e-208 1.56095e-209 -9.94923e-209 4.21324e-210 -2.72463e-206 1.63565e-210 -2.64251e-203 2.78585e-208 -2.5522e-200 1.06493e-205 -2.28452e-197 -1.67979e-198 -1.66423e-194 -5.17196e-195 -9.95487e-192 -5.85485e-192 -4.93225e-189 -4.4866e-189 -2.04145e-186 -2.61159e-186 -7.11527e-184 -1.21076e-183 -2.1042e-181 -4.59013e-181 -5.31731e-179 -1.44833e-178 -1.15568e-176 -3.85377e-176 -2.1733e-174 -8.73774e-174 -3.55566e-172 -1.70271e-171 -5.08631e-170 -2.87266e-169 -6.39027e-168 -4.2224e-167 -7.0799e-166 -5.43672e-165 -6.94218e-164 -6.16156e-163 -6.0439e-162 -6.17211e-161 -4.68499e-160 -5.48462e-159 -3.24135e-158 -4.33713e-157 -2.00569e-156 -3.0604e-155 -1.11193e-154 -1.93141e-153 -5.53089e-153 -1.09228e-151 -2.47155e-151 -5.54442e-150 -9.93429e-150 -2.52964e-148 -3.5968e-148 -1.0388e-146 -1.17528e-146 -3.8454e-145 -3.47518e-145 -1.28578e-143 -9.33227e-144 -3.89414e-142 -2.28582e-142 -1.07221e-140 -5.12835e-141 -2.6958e-139 -1.05667e-139 -6.21612e-138 -1.99724e-138 -1.31818e-136 -3.43764e-137 -2.56828e-135 -5.30391e-136 -4.5647e-134 -7.15567e-135 -7.28706e-133 -8.17536e-134 -1.01946e-131 -1.21125e-130 -6.97195e-133 -1.28646e-191 5.68421e-195 -1.16498e-190 2.42056e-190 -8.49125e-193 9.23778e-190 -1.26389e-196 4.06756e-192 -3.64461e-198 4.24518e-196 -2.7515e-198 9.32339e-198 -3.1165e-198 5.65024e-198 -6.11165e-198 5.32654e-198 -1.3907e-197 8.92449e-198 -3.00626e-197 1.76948e-197 -5.19634e-197 3.38399e-197 -8.03165e-197 5.23737e-197 -1.00942e-196 7.31885e-197 -1.1452e-196 8.38261e-197 -1.20079e-196 8.72391e-197 -1.04325e-196 8.43764e-197 -7.58098e-197 6.7935e-197 -5.2597e-197 4.59319e-197 -4.40979e-197 2.97524e-197 -3.50261e-197 2.3358e-197 -3.06387e-197 1.74172e-197 -2.89832e-197 1.43347e-197 -2.70478e-197 1.27829e-197 -2.42977e-197 1.12643e-197 -1.5601e-197 9.56863e-198 -1.13807e-197 5.81677e-198 -8.61869e-198 4.02159e-198 -6.33577e-198 2.88898e-198 -4.29511e-198 2.016e-198 -2.68983e-198 1.29807e-198 -1.67738e-198 7.72443e-199 -1.0376e-198 4.57845e-199 -6.21239e-199 2.69237e-199 -3.56846e-199 1.53248e-199 -1.95413e-199 8.36772e-200 -1.02314e-199 4.35488e-200 -5.14227e-200 2.16621e-200 -2.56265e-200 1.03382e-200 -1.21589e-200 4.88914e-201 -5.42885e-201 2.19962e-201 -2.24939e-201 9.3038e-202 -8.62771e-202 3.64777e-202 -3.20375e-202 1.32219e-202 -1.1085e-202 4.63265e-203 -3.76506e-203 1.50975e-203 -1.11669e-203 4.82012e-204 -3.28113e-204 1.34063e-204 -9.60617e-205 3.68391e-205 -2.43572e-205 1.0055e-205 -6.24233e-206 2.3682e-206 -1.38855e-206 5.61365e-207 -3.22567e-207 1.14919e-207 -7.17348e-208 2.44232e-208 -1.54639e-208 4.93371e-209 -3.27771e-209 9.57781e-210 -7.0599e-210 1.80876e-210 -1.61406e-210 3.42467e-211 -4.04631e-211 6.76322e-212 -1.63191e-210 1.43055e-212 -1.37091e-207 4.70922e-212 -1.22792e-204 3.07099e-209 -1.09295e-201 1.96191e-206 -9.67138e-199 1.04679e-203 -8.51155e-196 3.08792e-201 -6.74728e-193 -7.05265e-194 -4.38292e-190 -1.48973e-190 -2.3535e-187 -1.44289e-187 -1.05359e-184 -9.77356e-185 -3.96434e-182 -5.10344e-182 -1.2634e-179 -2.143e-179 -3.4348e-177 -7.41456e-177 -8.01948e-175 -2.14883e-174 -1.61789e-172 -5.28104e-172 -2.83632e-170 -1.11147e-169 -4.3432e-168 -2.01956e-167 -5.83638e-166 -3.19002e-165 -6.91181e-164 -4.40646e-163 -7.24113e-162 -5.35038e-161 -6.73378e-160 -5.73635e-159 -5.57511e-158 -5.45198e-157 -4.1203e-156 -4.60927e-155 -2.72436e-154 -3.47663e-153 -1.61469e-152 -2.34552e-151 -8.5918e-151 -1.4184e-149 -4.10962e-149 -7.70212e-148 -1.76886e-147 -3.76093e-146 -6.85753e-146 -1.65337e-144 -2.39695e-144 -6.55085e-143 -7.56379e-143 -2.34188e-141 -2.15881e-141 -7.56459e-140 -5.58698e-140 -2.21214e-138 -1.31507e-138 -5.87195e-137 -2.82357e-137 -1.41925e-135 -5.53855e-136 -3.133e-134 -9.90922e-135 -6.32731e-133 -1.60586e-133 -1.16736e-131 -2.32372e-132 -1.95425e-130 -2.93539e-131 -2.92699e-129 -3.14508e-130 -3.83538e-128 -4.27437e-127 -2.55964e-129 -5.92848e-195 2.85342e-198 -6.46926e-194 1.13641e-193 -5.0572e-196 5.22141e-193 -7.61317e-200 2.46417e-195 -1.74846e-201 2.59988e-199 -1.31497e-201 4.54616e-201 -1.49003e-201 2.74404e-201 -2.93941e-201 2.58757e-201 -6.75281e-201 4.36084e-201 -1.47265e-200 8.72893e-201 -2.5572e-200 1.68405e-200 -3.95313e-200 2.61832e-200 -4.95763e-200 3.65945e-200 -5.60393e-200 4.18228e-200 -5.84563e-200 4.33666e-200 -5.05634e-200 4.17269e-200 -3.65958e-200 3.34483e-200 -2.52584e-200 2.25245e-200 -2.10242e-200 1.45146e-200 -1.65887e-200 1.13129e-200 -1.43991e-200 8.3798e-201 -1.34846e-200 6.84361e-201 -1.24441e-200 6.04152e-201 -1.10439e-200 5.26444e-201 -7.03422e-201 4.41789e-201 -5.07996e-201 2.66404e-201 -3.80319e-201 1.82335e-201 -2.76136e-201 1.29486e-201 -1.84904e-201 8.9242e-202 -1.14407e-201 5.67564e-202 -7.04344e-202 3.33676e-202 -4.2982e-202 1.95251e-202 -2.53702e-202 1.13266e-202 -1.43539e-202 6.35555e-203 -7.73569e-203 3.418e-203 -3.98309e-203 1.75056e-203 -1.96758e-203 8.56273e-204 -9.62826e-204 4.01626e-204 -4.48284e-204 1.86488e-204 -1.96249e-204 8.23234e-205 -7.96594e-205 3.4137e-205 -2.99057e-205 1.31102e-205 -1.08575e-205 4.65052e-206 -3.6704e-206 1.59286e-206 -1.21692e-206 5.07087e-207 -3.52164e-207 1.57999e-207 -1.00874e-207 4.28664e-208 -2.87687e-208 1.14798e-208 -7.10197e-209 3.05116e-209 -1.77112e-209 6.99354e-210 -3.83085e-210 1.61232e-210 -8.65296e-211 3.20745e-211 -1.87048e-211 6.62294e-212 -3.91802e-212 1.29924e-212 -8.0674e-213 2.44793e-213 -1.80663e-213 4.48414e-214 -1.00943e-211 8.8099e-215 -8.37843e-209 4.24079e-213 -6.92423e-206 2.95888e-210 -5.67983e-203 1.98494e-207 -4.62683e-200 1.25273e-204 -3.74485e-197 7.15951e-202 -3.01293e-194 3.33751e-199 -2.41059e-191 7.11758e-197 -1.69645e-188 -2.22166e-189 -9.85026e-186 -3.57499e-186 -4.75989e-183 -2.99964e-183 -1.92989e-180 -1.80656e-180 -6.61628e-178 -8.49587e-178 -1.93194e-175 -3.24154e-175 -4.8375e-173 -1.02624e-172 -1.04525e-170 -2.73775e-170 -1.96024e-168 -6.22612e-168 -3.2077e-166 -1.21827e-165 -4.60234e-164 -2.06684e-163 -5.81535e-162 -3.06012e-161 -6.49697e-160 -3.9763e-159 -6.44072e-158 -4.55668e-157 -5.68368e-156 -4.62488e-155 -4.4773e-154 -4.173e-153 -3.15616e-152 -3.35815e-151 -1.99511e-150 -2.41695e-149 -1.13293e-148 -1.55949e-147 -5.78735e-147 -9.03873e-146 -2.66241e-145 -4.71347e-144 -1.10397e-143 -2.2143e-142 -4.1287e-142 -9.38044e-141 -1.39355e-140 -3.58632e-139 -4.24843e-139 -1.23835e-137 -1.17118e-137 -3.86541e-136 -2.92417e-136 -1.09206e-134 -6.62523e-135 -2.79724e-133 -1.36455e-133 -6.50928e-132 -2.55639e-132 -1.37872e-130 -4.3471e-131 -2.65997e-129 -6.66521e-130 -4.66551e-128 -9.09402e-129 -7.39151e-127 -1.08159e-127 -1.04413e-125 -1.09248e-126 -1.28848e-124 -1.35395e-123 -8.51524e-126 -2.98275e-198 1.55989e-201 -3.91779e-197 5.79878e-197 -3.28183e-199 3.20536e-196 -5.00786e-203 1.62059e-198 -9.17966e-205 1.73285e-202 -6.87643e-205 2.41819e-204 -7.79393e-205 1.45376e-204 -1.54641e-204 1.37121e-204 -3.58624e-204 2.3243e-204 -7.88883e-204 4.69661e-204 -1.37595e-203 9.14001e-204 -2.12707e-203 1.42742e-203 -2.66149e-203 1.99507e-203 -2.99712e-203 2.27496e-203 -3.10995e-203 2.35007e-203 -2.67791e-203 2.24935e-203 -1.93023e-203 1.79496e-203 -1.32526e-203 1.2038e-203 -1.0951e-203 7.71646e-204 -8.58328e-204 5.97069e-204 -7.39276e-204 4.39327e-204 -6.85344e-204 3.56013e-204 -6.25381e-204 3.11118e-204 -5.48276e-204 2.68063e-204 -3.46386e-204 2.22224e-204 -2.47622e-204 1.32917e-204 -1.83251e-204 9.00517e-205 -1.31396e-204 6.32132e-205 -8.68945e-205 4.3024e-205 -5.31107e-205 2.7023e-205 -3.22757e-205 1.56934e-205 -1.94272e-205 9.06425e-206 -1.13028e-205 5.18625e-206 -6.29764e-206 2.86831e-206 -3.33949e-206 1.51904e-206 -1.69062e-206 7.65454e-207 -8.20635e-207 3.68104e-207 -3.9421e-207 1.69645e-207 -1.80053e-207 7.73215e-208 -7.72578e-208 3.34813e-208 -3.07097e-208 1.36067e-208 -1.12797e-208 5.11673e-209 -4.00198e-209 1.77554e-209 -1.32109e-209 5.94216e-210 -4.27287e-210 1.84691e-210 -1.20564e-210 5.61254e-211 -3.36387e-211 1.48433e-211 -9.33598e-212 3.87079e-212 -2.24131e-212 1.00082e-212 -5.43143e-213 2.22992e-213 -1.14048e-213 4.9931e-214 -2.49969e-214 9.63715e-215 -5.24055e-215 1.92958e-215 -2.10384e-215 3.668e-216 -8.1021e-213 1.32309e-216 -6.2413e-210 4.52679e-214 -4.76426e-207 3.05381e-211 -3.60496e-204 2.00341e-208 -2.70547e-201 1.26993e-205 -2.01494e-198 7.69659e-203 -1.49e-195 4.37338e-200 -1.09454e-192 2.23317e-197 -7.99106e-190 9.07168e-195 -5.80069e-187 1.27632e-192 -3.63454e-184 -5.53551e-185 -1.89221e-181 -7.17588e-182 -8.25244e-179 -5.2751e-179 -3.03849e-176 -2.84158e-176 -9.51423e-174 -1.20857e-173 -2.55099e-171 -4.20357e-171 -5.89441e-169 -1.221e-168 -1.18069e-166 -3.00516e-166 -2.06143e-164 -6.33626e-164 -3.15287e-162 -1.15458e-161 -4.24353e-160 -1.8315e-159 -5.04697e-158 -2.54484e-157 -5.32403e-156 -3.1139e-155 -4.99819e-154 -3.37091e-153 -4.18838e-152 -3.24147e-151 -3.14111e-150 -2.77853e-149 -2.11309e-148 -2.12957e-147 -1.27759e-146 -1.46323e-145 -6.95351e-145 -9.03325e-144 -3.41118e-143 -5.01974e-142 -1.50976e-141 -2.51457e-140 -6.03247e-140 -1.13678e-138 -2.177e-138 -4.64166e-137 -7.09795e-137 -1.71278e-135 -2.09153e-135 -5.71406e-134 -5.57284e-134 -1.72425e-132 -1.34371e-132 -4.70908e-131 -2.93479e-131 -1.16503e-129 -5.81056e-130 -2.61381e-128 -1.0426e-128 -5.32269e-127 -1.69113e-127 -9.83697e-126 -2.4637e-126 -1.64601e-124 -3.18464e-125 -2.47814e-123 -3.58386e-124 -3.31693e-122 -3.42908e-123 -3.87334e-121 -3.85559e-120 -2.56844e-122 -1.63192e-201 9.27087e-205 -2.57776e-200 3.2135e-200 -2.31325e-202 2.1355e-199 -3.58538e-206 1.15615e-201 -5.26118e-208 1.25525e-205 -3.92596e-208 1.40194e-207 -4.45128e-208 8.3943e-208 -8.88293e-208 7.91952e-208 -2.0795e-207 1.35009e-207 -4.6139e-207 2.7538e-207 -8.08254e-207 5.40537e-207 -1.24938e-206 8.47854e-207 -1.5596e-206 1.18494e-206 -1.74951e-206 1.34801e-206 -1.80571e-206 1.38717e-206 -1.54769e-206 1.32066e-206 -1.1109e-206 1.04902e-206 -7.58679e-207 7.00588e-207 -6.22346e-207 4.46705e-207 -4.84534e-207 3.43122e-207 -4.14086e-207 2.50786e-207 -3.79992e-207 2.01646e-207 -3.42845e-207 1.74432e-207 -2.96908e-207 1.48602e-207 -1.86049e-207 1.21686e-207 -1.31648e-207 7.2189e-208 -9.62958e-208 4.841e-208 -6.81805e-208 3.35877e-208 -4.4525e-208 2.25733e-208 -2.68793e-208 1.40005e-208 -1.61216e-208 8.03049e-209 -9.5699e-209 4.57762e-209 -5.48714e-209 2.58293e-209 -3.01024e-209 1.40777e-209 -1.57031e-209 7.34038e-210 -7.81449e-210 3.63856e-210 -3.72643e-210 1.71991e-210 -1.75679e-210 7.78639e-211 -7.86918e-211 3.48267e-211 -3.3084e-211 1.47883e-211 -1.28735e-211 5.88811e-212 -4.62427e-212 2.16728e-212 -1.60258e-212 7.35407e-213 -5.16323e-213 2.4037e-213 -1.62806e-213 7.29044e-214 -4.4759e-214 2.15949e-214 -1.2154e-214 5.56337e-215 -3.27927e-215 1.41162e-215 -7.64707e-216 3.54721e-216 -1.79818e-216 7.67445e-217 -3.67445e-217 1.66677e-217 -1.17952e-216 3.12915e-218 -7.95707e-214 9.17045e-218 -5.68073e-211 5.60516e-215 -4.01214e-208 3.59214e-212 -2.80498e-205 2.25119e-209 -1.94234e-202 1.37609e-206 -1.33297e-199 8.17177e-204 -9.07108e-197 4.68376e-201 -6.12468e-194 2.56234e-198 -4.10507e-191 1.31012e-195 -2.73267e-188 5.97655e-193 -1.80752e-185 2.11573e-190 -1.18848e-182 1.68625e-188 -6.6542e-180 -1.11675e-180 -3.11633e-177 -1.21154e-177 -1.23031e-174 -7.87946e-175 -4.12475e-172 -3.81754e-172 -1.18248e-169 -1.47431e-169 -2.91752e-167 -4.68933e-167 -6.2327e-165 -1.25298e-164 -1.15932e-162 -2.85143e-162 -1.88724e-160 -5.58468e-160 -2.7014e-158 -9.49238e-158 -3.41474e-156 -1.40994e-155 -3.82667e-154 -1.8409e-153 -3.81511e-152 -2.12353e-151 -3.39456e-150 -2.17367e-149 -2.70313e-148 -1.98196e-147 -1.9312e-146 -1.61513e-145 -1.24047e-144 -1.17973e-143 -7.17682e-143 -7.7427e-142 -3.7454e-141 -4.57552e-140 -1.76514e-139 -2.43875e-138 -7.51846e-138 -1.17397e-136 -2.89574e-136 -5.10894e-135 -1.00871e-134 -2.01128e-133 -3.17806e-133 -7.16537e-132 -9.05557e-132 -2.31041e-130 -2.33352e-130 -6.74292e-129 -5.43854e-129 -1.78133e-127 -1.14652e-127 -4.26049e-126 -2.18602e-126 -9.22781e-125 -3.76583e-125 -1.80995e-123 -5.84419e-124 -3.21209e-122 -8.11902e-123 -5.14342e-121 -9.98314e-122 -7.38583e-120 -1.06754e-120 -9.40541e-119 -9.71566e-120 -1.0438e-117 -9.88348e-117 -7.01286e-119 -9.70774e-205 5.98551e-208 -1.84341e-203 1.93266e-203 -1.77131e-205 1.54299e-202 -2.79235e-209 8.94164e-205 -3.29033e-211 9.87172e-209 -2.4457e-211 8.85202e-211 -2.77369e-211 5.27912e-211 -5.56653e-211 4.98165e-211 -1.31532e-210 8.54064e-211 -2.94324e-210 1.75836e-210 -5.17775e-210 3.48089e-210 -8.00216e-210 5.48313e-210 -9.96467e-210 7.66179e-210 -1.11341e-209 8.69492e-210 -1.14299e-209 8.91242e-210 -9.75078e-210 8.43947e-210 -6.96902e-210 6.67223e-210 -4.73404e-210 4.43703e-210 -3.85494e-210 2.81402e-210 -2.98122e-210 2.14569e-210 -2.52789e-210 1.55777e-210 -2.29618e-210 1.24277e-210 -2.0483e-210 1.06412e-210 -1.75211e-210 8.96295e-211 -1.08889e-210 7.24955e-211 -7.6261e-211 4.26539e-211 -5.51312e-211 2.83107e-211 -3.85416e-211 1.94131e-211 -2.48518e-211 1.2882e-211 -1.48164e-211 7.88874e-212 -8.76945e-212 4.46858e-212 -5.13307e-212 2.5136e-212 -2.90009e-212 1.39849e-212 -1.56623e-212 7.51037e-213 -8.03604e-213 3.85498e-213 -3.9302e-213 1.87939e-213 -1.84075e-213 8.73038e-214 -8.51446e-214 3.88179e-214 -3.73921e-214 1.70342e-214 -1.53984e-214 7.09116e-215 -5.86329e-215 2.76536e-215 -2.05893e-215 9.95965e-216 -6.96656e-216 3.30346e-216 -2.18947e-216 1.05408e-216 -6.72645e-217 3.11825e-217 -1.80055e-217 8.99786e-218 -4.75451e-218 2.25663e-218 -1.24591e-218 5.56691e-219 -3.02757e-219 1.35831e-219 -1.42726e-217 3.06146e-220 -9.54238e-215 1.33255e-218 -6.32634e-212 8.1819e-216 -4.14302e-209 4.9498e-213 -2.68181e-206 2.9352e-210 -1.71694e-203 1.70423e-207 -1.08785e-200 9.67202e-205 -6.82543e-198 5.35119e-202 -4.24315e-195 2.87422e-199 -2.61512e-192 1.48862e-196 -1.59874e-189 7.34785e-194 -9.70008e-187 3.38054e-191 -5.84385e-184 1.37892e-188 -3.49744e-181 4.26585e-186 -2.08023e-178 1.3666e-184 -1.04438e-175 -1.85743e-176 -4.41405e-173 -1.72983e-173 -1.58208e-170 -1.00379e-170 -4.84227e-168 -4.3965e-168 -1.2739e-165 -1.54754e-165 -2.89827e-163 -4.51491e-163 -5.735e-161 -1.11253e-160 -9.92207e-159 -2.34603e-158 -1.50817e-156 -4.27608e-156 -2.02304e-154 -6.79062e-154 -2.40448e-152 -9.45792e-152 -2.54151e-150 -1.16182e-149 -2.3969e-148 -1.26481e-147 -2.02293e-146 -1.22538e-145 -1.53188e-144 -1.06034e-143 -1.04323e-142 -8.22086e-142 -6.40189e-141 -5.72627e-140 -3.54598e-139 -3.59184e-138 -1.7752e-137 -2.03284e-136 -8.04045e-136 -1.03972e-134 -3.2971e-134 -4.81154e-133 -1.22448e-132 -2.01641e-131 -4.11862e-131 -7.6563e-130 -1.25438e-129 -2.63436e-128 -3.45783e-128 -8.21298e-127 -8.62276e-127 -2.31934e-125 -1.9441e-125 -5.9305e-124 -3.96055e-124 -1.37244e-122 -7.28394e-123 -2.87315e-121 -1.20731e-121 -5.43694e-120 -1.79751e-120 -9.28565e-119 -2.38908e-119 -1.42678e-117 -2.80455e-118 -1.96055e-116 -2.86067e-117 -2.38404e-115 -2.4857e-116 -2.52416e-114 -2.28207e-113 -1.73357e-115 -6.26756e-208 4.19425e-211 -1.43009e-206 1.26081e-206 -1.47107e-208 1.2085e-205 -2.36152e-212 7.4934e-208 -2.24234e-214 8.42148e-212 -1.66035e-214 6.08389e-214 -1.88357e-214 3.61389e-214 -3.80147e-214 3.41101e-214 -9.06622e-214 5.8807e-214 -2.04582e-213 1.222e-213 -3.61388e-213 2.43953e-213 -5.58365e-213 3.8587e-213 -6.93548e-213 5.39045e-213 -7.71842e-213 6.10193e-213 -7.88041e-213 6.22957e-213 -6.6907e-213 5.86693e-213 -4.76122e-213 4.61629e-213 -3.21693e-213 3.05653e-213 -2.60035e-213 1.92808e-213 -1.99751e-213 1.45939e-213 -1.68053e-213 1.05242e-213 -1.51093e-213 8.33048e-214 -1.33255e-213 7.06033e-214 -1.12584e-213 5.87947e-214 -6.93905e-214 4.69707e-214 -4.8098e-214 2.74079e-214 -3.43636e-214 1.80042e-214 -2.3718e-214 1.22009e-214 -1.5099e-214 7.99327e-215 -8.88902e-215 4.83265e-215 -5.19125e-215 2.7031e-215 -2.99589e-215 1.50027e-215 -1.66761e-215 8.22955e-216 -8.86463e-216 4.35415e-216 -4.47271e-216 2.19977e-216 -2.1494e-216 1.0546e-216 -9.8854e-217 4.8136e-217 -4.48531e-217 2.10162e-217 -1.9307e-217 9.0462e-218 -7.78554e-218 3.69098e-218 -2.9e-218 1.4094e-218 -9.95151e-219 4.96529e-219 -3.2861e-219 1.60929e-219 -1.00695e-219 5.01094e-220 -3.01229e-220 1.44519e-220 -7.85127e-221 4.06027e-221 -5.51816e-221 9.91403e-222 -2.22921e-218 6.50878e-222 -1.39576e-215 2.44788e-219 -8.61546e-213 1.4213e-216 -5.24503e-210 8.09831e-214 -3.15142e-207 4.52638e-211 -1.86996e-204 2.48078e-208 -1.09649e-201 1.3323e-205 -6.35755e-199 7.00336e-203 -3.64714e-196 3.59697e-200 -2.07135e-193 1.80015e-197 -1.16531e-190 8.74104e-195 -6.49772e-188 4.08947e-192 -3.59295e-185 1.82123e-189 -1.97121e-182 7.54356e-187 -1.07355e-179 2.75653e-184 -5.8064e-177 7.49819e-182 -3.12006e-174 1.15863e-182 -1.40949e-171 -2.57124e-172 -5.39275e-169 -2.09752e-169 -1.75966e-166 -1.09425e-166 -4.92909e-164 -4.35355e-164 -1.19264e-161 -1.40175e-161 -2.50706e-159 -3.76212e-159 -4.60328e-157 -8.5702e-157 -7.41947e-155 -1.67816e-154 -1.05455e-152 -2.85178e-152 -1.32729e-150 -4.23798e-150 -1.48498e-148 -5.54255e-148 -1.48194e-146 -6.41347e-146 -1.32326e-144 -6.59633e-144 -1.06016e-142 -6.05427e-142 -7.63966e-141 -4.97586e-140 -4.96241e-139 -3.673e-138 -2.91092e-137 -2.44139e-136 -1.54438e-135 -1.46445e-134 -7.41995e-134 -7.94183e-133 -3.23117e-132 -3.89958e-131 -1.27606e-130 -1.73559e-129 -4.57116e-129 -7.00688e-128 -1.48513e-127 -2.56692e-126 -4.37402e-126 -8.53315e-125 -1.16697e-124 -2.5732e-123 -2.81766e-123 -7.03462e-122 -6.15028e-122 -1.74202e-120 -1.21208e-120 -3.90382e-119 -2.15336e-119 -7.90787e-118 -3.44077e-118 -1.44589e-116 -4.92674e-117 -2.38115e-115 -6.28302e-116 -3.51962e-114 -7.06486e-115 -4.64168e-113 -6.89785e-114 -5.4078e-112 -5.74207e-113 -5.48181e-111 -4.74858e-110 -3.8784e-112 -4.39535e-211 3.18882e-214 -1.2035e-209 8.9184e-210 -1.3246e-211 1.0256e-208 -2.16698e-215 6.80208e-211 -1.664e-217 7.78838e-215 -1.22744e-217 4.5493e-217 -1.39289e-217 2.69171e-217 -2.82694e-217 2.54118e-217 -6.80462e-217 4.40545e-217 -1.54832e-216 9.23917e-217 -2.74616e-216 1.85986e-216 -4.24144e-216 2.95372e-216 -5.25469e-216 4.12475e-216 -5.82412e-216 4.65709e-216 -5.91376e-216 4.7352e-216 -4.99668e-216 4.43512e-216 -3.54007e-216 3.47284e-216 -2.37897e-216 2.28932e-216 -1.90889e-216 1.43634e-216 -1.45652e-216 1.07921e-216 -1.21581e-216 7.73049e-217 -1.08197e-216 6.07126e-217 -9.43401e-217 5.09313e-217 -7.87245e-217 4.19318e-217 -4.81197e-217 3.30867e-217 -3.30101e-217 1.91466e-217 -2.33065e-217 1.24477e-217 -1.58809e-217 8.33616e-218 -9.98045e-218 5.39161e-218 -5.80141e-218 3.21799e-218 -3.34268e-218 1.77721e-218 -1.90173e-218 9.73173e-219 -1.04279e-218 5.26257e-219 -5.45537e-219 2.74287e-219 -2.70641e-219 1.36377e-219 -1.27775e-219 6.42851e-220 -5.76951e-220 2.88267e-220 -2.56734e-220 1.23564e-220 -1.08293e-220 5.21611e-221 -4.27499e-221 2.0855e-221 -1.55723e-221 7.79567e-222 -5.22018e-222 2.68573e-222 -1.6816e-222 8.50314e-223 -5.13921e-223 2.58283e-223 -7.26954e-222 7.42898e-224 -4.24397e-219 9.86861e-223 -2.4863e-216 5.39692e-220 -1.43334e-213 2.95317e-217 -8.13698e-211 1.58482e-214 -4.5519e-208 8.34216e-212 -2.5109e-205 4.30714e-209 -1.36666e-202 2.18091e-206 -7.34446e-200 1.08256e-203 -3.89946e-197 5.26414e-201 -2.04673e-194 2.50473e-198 -1.06264e-191 1.16406e-195 -5.46054e-189 5.26949e-193 -2.77878e-186 2.31334e-190 -1.40113e-183 9.77907e-188 -7.00383e-181 3.93156e-185 -3.47247e-178 1.46789e-182 -1.70838e-175 4.81897e-180 -8.34362e-173 1.16307e-177 -4.02402e-170 -2.27111e-172 -1.64099e-167 -2.98714e-168 -5.70018e-165 -2.16927e-165 -1.69772e-162 -1.02441e-162 -4.36252e-160 -3.7187e-160 -9.72854e-158 -1.09895e-157 -1.89308e-155 -2.72073e-155 -3.23078e-153 -5.74304e-153 -4.85849e-151 -1.04632e-150 -6.46579e-149 -1.66058e-148 -7.64506e-147 -2.31278e-146 -8.06003e-145 -2.84394e-144 -7.60148e-143 -3.10347e-142 -6.43183e-141 -3.01872e-140 -4.8953e-139 -2.62718e-138 -3.35919e-137 -2.05248e-136 -2.08245e-135 -1.44351e-134 -1.16829e-133 -9.16166e-133 -5.93992e-132 -5.25827e-131 -2.73999e-130 -2.73381e-129 -1.14762e-128 -1.28927e-127 -4.36637e-127 -5.52081e-126 -1.50922e-125 -2.14793e-124 -4.7377e-124 -7.59452e-123 -1.34981e-122 -2.43997e-121 -3.48687e-121 -7.11935e-120 -8.15612e-120 -1.8849e-118 -1.7248e-118 -4.52289e-117 -3.29163e-117 -9.82194e-116 -5.65664e-116 -1.92708e-114 -8.72903e-115 -3.40909e-113 -1.20479e-113 -5.42331e-112 -1.47829e-112 -7.72896e-111 -1.59716e-111 -9.80948e-110 -1.49764e-110 -1.09835e-108 -1.1983e-109 -1.06949e-107 -8.90532e-107 -7.85678e-109 -3.34164e-214 2.62799e-217 -1.09764e-212 6.83772e-213 -1.2923e-214 9.42757e-212 -2.15591e-218 6.68597e-214 -1.34379e-220 7.8045e-218 -9.87517e-221 3.69964e-220 -1.121e-220 2.18049e-220 -2.28781e-220 2.05906e-220 -5.55779e-220 3.58936e-220 -1.27509e-219 7.59697e-220 -2.27051e-219 1.54191e-219 -3.50527e-219 2.45844e-219 -4.33118e-219 3.43157e-219 -4.7808e-219 3.86418e-219 -4.82763e-219 3.9128e-219 -4.05905e-219 3.64462e-219 -2.86298e-219 2.8399e-219 -1.91357e-219 1.86376e-219 -1.52419e-219 1.16303e-219 -1.15522e-219 8.67457e-220 -9.5676e-220 6.1722e-220 -8.42758e-220 4.80959e-220 -7.26487e-220 3.99364e-220 -5.98766e-220 3.25068e-220 -3.62955e-220 2.5334e-220 -2.46415e-220 1.45388e-220 -1.71927e-220 9.35451e-221 -1.1565e-220 6.19085e-221 -7.17458e-221 3.95285e-221 -4.1174e-221 2.32895e-221 -2.34041e-221 1.26988e-221 -1.31253e-221 6.86011e-222 -7.08912e-222 3.65687e-222 -3.64949e-222 1.87741e-222 -1.77995e-222 9.18577e-223 -8.25476e-223 4.25694e-223 -3.65888e-223 1.87514e-223 -1.59648e-223 7.89017e-224 -6.5976e-224 3.266e-224 -2.54905e-224 1.27935e-224 -9.08319e-225 4.68056e-225 -6.03516e-225 1.57744e-225 -1.74982e-222 9.89904e-226 -9.79372e-220 2.70633e-223 -5.38371e-217 1.4256e-220 -2.90732e-214 7.35954e-218 -1.54347e-211 3.72293e-215 -8.06129e-209 1.84607e-212 -4.14494e-206 8.97521e-210 -2.09958e-203 4.27893e-207 -1.04842e-200 2.0004e-204 -5.16425e-198 9.16891e-202 -2.51089e-195 4.11868e-199 -1.20578e-192 1.81187e-196 -5.72254e-190 7.79686e-194 -2.68566e-187 3.27607e-191 -1.24711e-184 1.34033e-188 -5.73319e-182 5.31606e-186 -2.61069e-179 2.02942e-183 -1.17817e-176 7.36449e-181 -5.27191e-174 2.48013e-178 -2.34008e-171 7.33469e-176 -1.03081e-168 1.58796e-173 -4.47501e-166 -3.28809e-168 -1.65245e-163 -2.92501e-164 -5.2257e-161 -1.91903e-161 -1.42415e-158 -8.25708e-159 -3.36457e-156 -2.74665e-156 -6.92902e-154 -7.4742e-154 -1.25035e-151 -1.71144e-151 -1.98654e-149 -3.35486e-149 -2.7912e-147 -5.6976e-147 -3.48245e-145 -8.45889e-145 -3.87252e-143 -1.1057e-142 -3.8511e-141 -1.27998e-140 -3.43548e-139 -1.31874e-138 -2.75674e-137 -1.21431e-136 -1.99469e-135 -1.00297e-134 -1.30426e-133 -7.45416e-133 -7.7211e-132 -4.9984e-131 -4.14494e-130 -3.03104e-129 -2.02046e-128 -1.66544e-127 -8.9519e-127 -8.30504e-126 -3.60755e-125 -3.76338e-124 -1.32279e-123 -1.55108e-122 -4.41302e-122 -5.81753e-121 -1.33895e-120 -1.98588e-119 -3.69152e-119 -6.16821e-118 -9.23678e-118 -1.74202e-116 -2.09413e-116 -4.46836e-115 -4.29339e-115 -1.03944e-113 -7.94165e-114 -2.1888e-112 -1.32182e-112 -4.16323e-111 -1.97322e-111 -7.13459e-110 -2.6308e-110 -1.09819e-108 -3.11381e-109 -1.51213e-107 -3.24194e-108 -1.85164e-106 -2.92867e-107 -1.99826e-105 -2.25931e-106 -1.8748e-104 -1.5052e-103 -1.44111e-105 -2.7537e-217 2.34677e-220 -1.08424e-215 5.68086e-216 -1.36521e-217 9.38401e-215 -2.3238e-221 7.1144e-217 -1.1802e-223 8.4705e-221 -8.64132e-224 3.27097e-223 -9.8133e-224 1.92047e-223 -2.01395e-223 1.81403e-223 -4.93761e-223 3.17964e-223 -1.14211e-222 6.79146e-223 -2.04159e-222 1.38969e-222 -3.15024e-222 2.22427e-222 -3.88199e-222 3.10306e-222 -4.26714e-222 3.4848e-222 -4.28505e-222 3.51395e-222 -3.58506e-222 3.25497e-222 -2.5173e-222 2.52378e-222 -1.67344e-222 1.64886e-222 -1.32318e-222 1.02339e-222 -9.96189e-223 7.5773e-223 -8.18622e-223 5.35563e-223 -7.13744e-223 4.14083e-223 -6.08296e-223 3.4034e-223 -4.95181e-223 2.73888e-223 -2.97675e-223 2.10828e-223 -2.00007e-223 1.1999e-223 -1.379e-223 7.64071e-224 -9.15714e-224 4.99707e-224 -5.60749e-224 3.14977e-224 -3.17699e-224 1.83189e-224 -1.78143e-224 9.86137e-225 -9.8474e-225 5.25536e-225 -5.23854e-225 2.76142e-225 -2.65355e-225 1.39638e-225 -1.27223e-225 6.72283e-226 -5.79511e-226 3.06277e-226 -2.52117e-226 1.32515e-226 -1.07854e-226 5.47304e-227 -4.53808e-227 2.22124e-227 -9.66076e-226 8.85934e-228 -5.12375e-223 1.78597e-226 -2.70672e-220 8.95917e-224 -1.40109e-217 4.47028e-221 -7.11201e-215 2.18204e-218 -3.5429e-212 1.04251e-215 -1.73337e-209 4.87744e-213 -8.33493e-207 2.23551e-210 -3.94185e-204 1.0041e-207 -1.83479e-201 4.42079e-205 -8.41103e-199 1.9081e-202 -3.79996e-196 8.07383e-200 -1.69299e-193 3.34856e-197 -7.44304e-191 1.36069e-194 -3.23098e-188 5.41345e-192 -1.38571e-185 2.10618e-189 -5.87511e-183 7.99907e-187 -2.46387e-180 2.95732e-184 -1.02263e-177 1.05967e-181 -4.20289e-175 3.65397e-179 -1.71132e-172 1.19758e-176 -6.90677e-170 3.64297e-174 -2.76427e-167 9.73954e-172 -1.09756e-164 1.91467e-169 -4.30323e-162 -2.17955e-164 -1.44293e-159 -2.42263e-160 -4.16486e-157 -1.45607e-157 -1.04098e-154 -5.74399e-155 -2.26575e-152 -1.75798e-152 -4.31706e-150 -4.4186e-150 -7.23613e-148 -9.38111e-148 -1.07187e-145 -1.71134e-145 -1.40902e-143 -2.71414e-143 -1.65007e-141 -3.77537e-141 -1.72753e-139 -4.63799e-139 -1.62208e-137 -5.06068e-137 -1.36991e-135 -4.92791e-135 -1.0433e-133 -4.2998e-133 -7.18169e-132 -3.37345e-131 -4.47734e-130 -2.38692e-129 -2.53252e-128 -1.52706e-127 -1.30158e-126 -8.85282e-126 -6.08551e-125 -4.65928e-124 -2.59078e-123 -2.22958e-122 -1.00491e-121 -9.71186e-121 -3.55225e-120 -3.85403e-119 -1.14418e-118 -1.39397e-117 -3.35634e-117 -4.59554e-116 -8.95738e-116 -1.38036e-114 -2.17176e-114 -3.77444e-113 -4.77456e-113 -9.38313e-112 -9.496e-112 -2.11696e-110 -1.70397e-110 -4.32515e-109 -2.75009e-109 -7.98179e-108 -3.97766e-108 -1.32655e-106 -5.13299e-107 -1.97863e-105 -5.87452e-106 -2.63728e-104 -5.91012e-105 -3.12293e-103 -5.15875e-104 -3.25695e-102 -3.84826e-103 -2.95274e-101 -2.2923e-100 -2.39292e-102 -2.45883e-220 2.27001e-223 -1.1598e-218 5.11315e-219 -1.56147e-220 1.01116e-217 -2.71288e-224 8.19329e-220 -1.12692e-226 9.95385e-224 -8.22163e-227 3.14315e-226 -9.34082e-227 1.83851e-226 -1.92766e-226 1.7372e-226 -4.76945e-226 3.06169e-226 -1.11216e-225 6.59925e-226 -1.99559e-225 1.36128e-225 -3.07744e-225 2.187e-225 -3.78184e-225 3.04922e-225 -4.13957e-225 3.4149e-225 -4.13382e-225 3.42899e-225 -3.44134e-225 3.15862e-225 -2.40546e-225 2.4369e-225 -1.59049e-225 1.58492e-225 -1.24844e-225 9.78423e-226 -9.33707e-226 7.19173e-226 -7.61328e-226 5.04957e-226 -6.57059e-226 3.87398e-226 -5.53654e-226 3.15186e-226 -4.45161e-226 2.50783e-226 -2.6539e-226 1.90676e-226 -1.76475e-226 1.07625e-226 -1.2024e-226 6.7829e-227 -7.88196e-227 4.38388e-227 -4.76422e-227 2.72792e-227 -2.66468e-227 1.5661e-227 -1.4739e-227 8.32304e-228 -8.03058e-228 4.37561e-228 -4.20749e-228 2.26627e-228 -2.09699e-228 1.12873e-228 -9.8827e-229 5.34711e-229 -4.43343e-229 2.39467e-229 -8.49e-229 1.02045e-229 -3.46436e-226 1.85531e-229 -1.7738e-223 7.18283e-227 -8.87638e-221 3.48645e-224 -4.34406e-218 1.65229e-221 -2.08091e-215 7.64897e-219 -9.76471e-213 3.4611e-216 -4.49219e-210 1.5317e-213 -2.0276e-207 6.63304e-211 -8.98564e-205 2.81213e-208 -3.91268e-202 1.16766e-205 -1.67519e-199 4.75008e-203 -7.05688e-197 1.89361e-200 -2.92693e-194 7.3985e-198 -1.19605e-191 2.83307e-195 -4.81838e-189 1.06306e-192 -1.91487e-186 3.90721e-190 -7.51159e-184 1.40565e-187 -2.91031e-181 4.94417e-185 -1.11433e-178 1.69723e-182 -4.21894e-176 5.67057e-180 -1.58033e-173 1.83605e-177 -5.8597e-171 5.72102e-175 -2.15185e-168 1.69488e-172 -7.83015e-166 4.66471e-170 -2.82456e-163 1.13156e-167 -1.01052e-160 2.04384e-165 -3.58704e-158 3.8255e-165 -1.09505e-155 -1.69914e-156 -2.89166e-153 -9.49201e-154 -6.64262e-151 -3.45442e-151 -1.33453e-148 -9.76616e-149 -2.35658e-146 -2.27404e-146 -3.67475e-144 -4.4873e-144 -5.08205e-142 -7.63334e-142 -6.25808e-140 -1.13253e-139 -6.88674e-138 -1.47825e-137 -6.79515e-136 -1.70904e-135 -6.0298e-134 -1.7598e-133 -4.82507e-132 -1.62135e-131 -3.49025e-130 -1.34179e-129 -2.28717e-128 -1.00077e-127 -1.36036e-126 -6.74643e-126 -7.35588e-125 -4.12063e-124 -3.62108e-123 -2.28514e-122 -1.6246e-121 -1.1526e-120 -6.64837e-120 -5.29517e-119 -2.48296e-118 -2.21813e-117 -8.46408e-117 -8.47852e-116 -2.63298e-115 -2.95828e-114 -7.46945e-114 -9.42159e-113 -1.93024e-112 -2.73753e-111 -4.53636e-111 -7.24968e-110 -9.67512e-110 -1.74727e-108 -1.86779e-108 -3.82491e-107 -3.25389e-107 -7.58633e-106 -5.09774e-106 -1.35935e-104 -7.15402e-105 -2.19322e-103 -8.95166e-104 -3.17425e-102 -9.92766e-103 -4.10262e-101 -9.67526e-102 -4.70783e-100 -8.18194e-101 -4.75629e-99 -5.91768e-100 -4.17765e-98 -3.14435e-97 -3.59408e-99 -2.37815e-223 2.37754e-226 -1.34276e-221 4.98487e-222 -1.93265e-223 1.1792e-220 -3.42841e-227 1.02101e-222 -1.16929e-229 1.26608e-226 -8.50101e-230 3.2817e-229 -9.66323e-230 1.91253e-229 -2.00533e-229 1.80785e-229 -5.00708e-229 3.20373e-229 -1.17696e-228 6.96829e-229 -2.11968e-228 1.44891e-228 -3.26665e-228 2.33636e-228 -4.00316e-228 3.25529e-228 -4.36329e-228 3.6355e-228 -4.33295e-228 3.63508e-228 -3.58906e-228 3.32983e-228 -2.49734e-228 2.55618e-228 -1.6424e-228 1.65498e-228 -1.27986e-228 1.01622e-228 -9.50918e-229 7.41569e-229 -7.69384e-229 5.17278e-229 -6.57311e-229 3.93802e-229 -5.47628e-229 3.17172e-229 -4.34925e-229 2.49529e-229 -2.57152e-229 1.87406e-229 -1.69239e-229 1.04912e-229 -1.13954e-229 6.54424e-230 -7.37425e-230 4.18009e-230 -4.39975e-230 2.56794e-230 -2.42934e-230 1.45528e-230 -1.32551e-230 7.6356e-231 -7.11837e-231 3.96003e-231 -3.67421e-231 2.02173e-231 -2.37115e-231 9.92067e-232 -2.94491e-229 6.08591e-232 -1.47225e-226 7.18327e-230 -7.18998e-224 3.41156e-227 -3.42383e-221 1.58197e-224 -1.59126e-218 7.14814e-222 -7.2246e-216 3.14977e-219 -3.20704e-213 1.35449e-216 -1.39309e-210 5.68829e-214 -5.92638e-208 2.33439e-211 -2.47102e-205 9.36713e-209 -1.01057e-202 3.67713e-206 -4.05681e-200 1.41281e-203 -1.5997e-197 5.3151e-201 -6.20054e-195 1.95853e-198 -2.36405e-192 7.0704e-196 -8.87174e-190 2.50099e-193 -3.27921e-187 8.66834e-191 -1.19458e-184 2.94335e-188 -4.2916e-182 9.7872e-186 -1.52141e-179 3.18483e-183 -5.32543e-177 1.01307e-180 -1.84162e-174 3.14462e-178 -6.29544e-172 9.49972e-176 -2.12851e-169 2.78133e-173 -7.1216e-167 7.83884e-171 -2.35916e-164 2.10206e-168 -7.74161e-162 5.24585e-166 -2.51769e-159 1.15938e-163 -8.1183e-157 1.94533e-161 -2.59658e-154 4.04484e-160 -7.2345e-152 -1.00683e-152 -1.75162e-149 -5.31824e-150 -3.70549e-147 -1.79749e-147 -6.8839e-145 -4.71354e-145 -1.12843e-142 -1.01984e-142 -1.63941e-140 -1.87491e-140 -2.1196e-138 -2.98009e-138 -2.44797e-136 -4.14336e-136 -2.5342e-134 -5.08247e-134 -2.35894e-132 -5.5372e-132 -1.98e-130 -5.38692e-130 -1.50243e-128 -4.70072e-128 -1.03299e-126 -3.69316e-126 -6.44832e-125 -2.62081e-124 -3.66116e-123 -1.6845e-122 -1.89354e-121 -9.82922e-121 -8.9324e-120 -5.21732e-119 -3.84717e-118 -2.52333e-117 -1.51396e-116 -1.11347e-115 -5.44595e-115 -4.48744e-114 -1.79084e-113 -1.6528e-112 -5.38184e-112 -5.56509e-111 -1.47695e-110 -1.71277e-109 -3.69678e-109 -4.81556e-108 -8.42427e-108 -1.23551e-106 -1.74376e-106 -2.88792e-105 -3.2693e-105 -6.13653e-104 -5.53342e-104 -1.18219e-102 -8.42316e-103 -2.05823e-101 -1.14837e-101 -3.22685e-100 -1.39551e-100 -4.53721e-99 -1.50261e-99 -5.69529e-98 -1.42171e-98 -6.34526e-97 -1.16758e-97 -6.22361e-96 -8.20744e-97 -5.30866e-95 -3.88305e-94 -4.87737e-96 -2.49074e-226 2.69528e-229 -1.68216e-224 5.26301e-225 -2.58808e-226 1.48789e-223 -4.6889e-230 1.37646e-225 -1.31799e-232 1.74264e-229 -9.54942e-233 3.72182e-232 -1.08612e-232 2.16131e-232 -2.26653e-232 2.04399e-232 -5.71089e-232 3.6422e-232 -1.35307e-231 7.99397e-232 -2.44566e-231 1.67535e-231 -3.76629e-231 2.71123e-231 -4.60244e-231 3.77487e-231 -4.99518e-231 4.20388e-231 -4.93286e-231 4.18556e-231 -4.06552e-231 3.81279e-231 -2.81604e-231 2.9123e-231 -1.84217e-231 1.87703e-231 -1.42524e-231 1.14649e-231 -1.05206e-231 8.30646e-232 -8.44713e-232 5.7567e-232 -7.14431e-232 4.34922e-232 -5.88549e-232 3.46793e-232 -4.61728e-232 2.69789e-232 -2.70764e-232 2.00163e-232 -1.76378e-232 1.11143e-232 -1.1737e-232 6.86245e-233 -7.49847e-233 4.3323e-233 -4.41622e-233 2.62767e-233 -2.4074e-233 1.47005e-233 -1.35471e-233 7.61554e-234 -3.08811e-232 4.07373e-234 -1.4985e-229 8.82887e-233 -7.21857e-227 4.0733e-230 -3.37946e-224 1.86541e-227 -1.53923e-221 8.30052e-225 -6.82753e-219 3.592e-222 -2.95227e-216 1.51305e-219 -1.24563e-213 6.20895e-217 -5.13279e-211 2.48412e-214 -2.06739e-208 9.6969e-212 -8.14631e-206 3.6957e-209 -3.14279e-203 1.37606e-206 -1.18802e-200 5.00851e-204 -4.40364e-198 1.78294e-201 -1.60176e-195 6.21048e-199 -5.7212e-193 2.11762e-196 -2.00809e-190 7.07046e-194 -6.93066e-188 2.31221e-191 -2.35368e-185 7.40703e-189 -7.87013e-183 2.32434e-186 -2.59267e-180 7.1437e-184 -8.42001e-178 2.14956e-181 -2.69735e-175 6.3283e-179 -8.52859e-173 1.82081e-176 -2.66307e-170 5.11154e-174 -8.21667e-168 1.39647e-171 -2.50644e-165 3.69791e-169 -7.56305e-163 9.43001e-167 -2.25859e-160 2.29027e-164 -6.67868e-158 5.1885e-162 -1.95642e-155 1.04742e-159 -5.67997e-153 1.64437e-157 -1.63501e-150 6.48947e-156 -4.16697e-148 -5.01543e-149 -9.26957e-146 -2.56037e-146 -1.8092e-143 -8.09637e-144 -3.11323e-141 -1.97774e-141 -4.74466e-139 -3.98839e-139 -6.43125e-137 -6.84794e-137 -7.78339e-135 -1.01906e-134 -8.4406e-133 -1.33e-132 -8.22851e-131 -1.53545e-130 -7.23263e-129 -1.57842e-128 -5.74723e-127 -1.45248e-126 -4.13856e-125 -1.20167e-124 -2.70645e-123 -8.97101e-123 -1.61041e-121 -6.06209e-121 -8.73318e-120 -3.7177e-119 -4.32244e-118 -2.07383e-117 -1.95487e-116 -1.05425e-115 -8.0861e-115 -4.89177e-114 -3.06112e-113 -2.07437e-112 -1.06095e-111 -8.04651e-111 -3.36659e-110 -2.85688e-109 -9.7768e-109 -9.28616e-108 -2.59629e-107 -2.76284e-106 -6.29616e-106 -7.51909e-105 -1.39168e-104 -1.8696e-103 -2.79686e-103 -4.23983e-102 -5.09504e-102 -8.74883e-101 -8.38358e-101 -1.63793e-99 -1.24103e-99 -2.77269e-98 -1.64549e-98 -4.22766e-97 -1.94465e-97 -5.78162e-96 -2.03633e-96 -7.05814e-95 -1.87407e-95 -7.64765e-94 -1.4978e-94 -7.29634e-93 -1.02546e-93 -6.05677e-92 -4.3147e-91 -5.97223e-93 -2.82458e-229 3.30639e-232 -2.27902e-227 6.01703e-228 -3.7477e-229 2.03079e-226 -6.93619e-233 2.00705e-228 -1.61292e-235 2.59488e-232 -1.16481e-235 4.58364e-235 -1.32573e-235 2.65263e-235 -2.78211e-235 2.51008e-235 -7.07396e-235 4.49755e-235 -1.68922e-234 9.96092e-235 -3.06409e-234 2.10396e-234 -4.71505e-234 3.41691e-234 -5.74547e-234 4.7537e-234 -6.20925e-234 5.27894e-234 -6.09776e-234 5.23364e-234 -5.00043e-234 4.74115e-234 -3.44795e-234 3.60335e-234 -2.24372e-234 2.31197e-234 -1.72358e-234 1.40478e-234 -1.26415e-234 1.0106e-234 -1.00733e-234 6.9593e-235 -8.43499e-235 5.2183e-235 -6.87154e-235 4.11977e-235 -5.32564e-235 3.16956e-235 -3.09772e-235 2.32327e-235 -1.99744e-235 1.27965e-235 -1.31375e-235 7.82164e-236 -8.35692e-236 4.88088e-236 -4.09868e-235 2.94784e-236 -1.79948e-232 1.37349e-235 -8.65334e-230 5.73111e-233 -4.02915e-227 2.62009e-230 -1.81853e-224 1.16e-227 -7.96569e-222 4.97849e-225 -3.39009e-219 2.07344e-222 -1.4033e-216 8.38831e-220 -5.65568e-214 3.29955e-217 -2.22145e-211 1.26303e-214 -8.51154e-209 4.70882e-212 -3.18411e-206 1.71115e-209 -1.16399e-203 6.06532e-207 -4.16146e-201 2.09848e-204 -1.45621e-198 7.09109e-202 -4.99136e-196 2.34168e-199 -1.67707e-193 7.56091e-197 -5.52758e-191 2.38811e-194 -1.78844e-188 7.38142e-192 -5.68415e-186 2.23343e-189 -1.77581e-183 6.61691e-187 -5.45697e-181 1.91976e-184 -1.65046e-178 5.4545e-182 -4.91613e-176 1.51743e-179 -1.44302e-173 4.13198e-177 -4.17647e-171 1.10058e-174 -1.19258e-168 2.86449e-172 -3.3617e-166 7.27351e-170 -9.35967e-164 1.79738e-167 -2.57532e-161 4.30605e-165 -7.00649e-159 9.94026e-163 -1.88577e-156 2.1882e-160 -5.0235e-154 4.50605e-158 -1.32512e-151 8.32892e-156 -3.46279e-149 1.22926e-153 -8.96798e-147 6.88489e-152 -2.095e-144 -2.07762e-145 -4.28994e-142 -1.05749e-142 -7.73845e-140 -3.15586e-140 -1.23539e-137 -7.21476e-138 -1.75301e-135 -1.36046e-135 -2.21986e-133 -2.18691e-133 -2.51786e-131 -3.05305e-131 -2.56664e-129 -3.74674e-129 -2.35863e-127 -4.07703e-127 -1.95942e-125 -3.9597e-125 -1.47523e-123 -3.45048e-123 -1.00888e-121 -2.70926e-121 -6.27964e-120 -1.92365e-119 -3.56385e-118 -1.23881e-117 -1.84699e-116 -7.25436e-116 -8.75273e-115 -3.87115e-114 -3.79687e-113 -1.88589e-112 -1.50896e-111 -8.39987e-111 -5.49735e-110 -3.42472e-109 -1.83643e-108 -1.27923e-107 -5.62495e-107 -4.38007e-106 -1.57903e-105 -1.37496e-104 -4.05879e-104 -3.95611e-103 -9.53931e-103 -1.04255e-101 -2.04588e-101 -2.51323e-100 -3.99347e-100 -5.53176e-99 -7.07191e-99 -1.10898e-97 -1.13191e-97 -2.01874e-96 -1.63065e-96 -3.32484e-95 -2.10474e-95 -4.93446e-94 -2.42189e-94 -6.57013e-93 -2.46986e-93 -7.81043e-92 -2.21461e-92 -8.24262e-91 -1.72556e-91 -7.66243e-90 -1.15279e-90 -6.20164e-89 -4.31095e-88 -6.58932e-90 -3.46774e-232 4.38774e-235 -3.33837e-230 7.44828e-231 -5.86695e-232 2.99744e-229 -1.10945e-235 3.16458e-231 -2.14221e-238 4.17907e-235 -1.54217e-238 6.12824e-238 -1.75662e-238 3.53475e-238 -3.70727e-238 3.34708e-238 -9.51236e-238 6.03085e-238 -2.28924e-237 1.3478e-237 -4.16698e-237 2.86899e-237 -6.40703e-237 4.67552e-237 -7.78505e-237 6.49943e-237 -8.37782e-237 7.19706e-237 -8.18202e-237 7.10514e-237 -6.67614e-237 6.40117e-237 -4.58271e-237 4.84084e-237 -2.96675e-237 3.09212e-237 -2.26304e-237 1.86917e-237 -1.64935e-237 1.33532e-237 -1.30448e-237 9.13803e-238 -1.08159e-237 6.8013e-238 -8.71423e-238 5.31708e-238 -6.67284e-238 4.04598e-238 -3.85943e-238 2.93036e-238 -7.2712e-238 1.60505e-238 -2.43736e-235 2.86672e-238 -1.18602e-232 9.118e-236 -5.56576e-230 4.21298e-233 -2.52108e-227 1.87841e-230 -1.10381e-224 8.08753e-228 -4.67766e-222 3.36682e-225 -1.92101e-219 1.35683e-222 -7.65442e-217 5.29933e-220 -2.96254e-214 2.00799e-217 -1.11493e-211 7.38893e-215 -4.08412e-209 2.64291e-212 -1.4576e-206 9.19696e-210 -5.07303e-204 3.11619e-207 -1.72333e-201 1.02886e-204 -5.71888e-199 3.31248e-202 -1.85544e-196 1.04065e-199 -5.89008e-194 3.19217e-197 -1.83089e-191 9.56621e-195 -5.57685e-189 2.80216e-192 -1.66576e-186 8.02682e-190 -4.88238e-184 2.2494e-187 -1.40521e-181 6.16879e-185 -3.97398e-179 1.65597e-182 -1.10501e-176 4.35194e-180 -3.02294e-174 1.1197e-177 -8.1412e-172 2.82004e-175 -2.15974e-169 6.95014e-173 -5.64713e-167 1.67516e-170 -1.45618e-164 3.94477e-168 -3.70521e-162 9.06214e-166 -9.30805e-160 2.02617e-163 -2.30986e-157 4.39337e-161 -5.66529e-155 9.18573e-159 -1.37399e-152 1.83424e-156 -3.2967e-150 3.4374e-154 -7.82898e-148 5.82854e-152 -1.84098e-145 8.10649e-150 -4.28832e-143 5.60247e-148 -9.20068e-141 -6.98542e-142 -1.7374e-138 -3.73328e-139 -2.90129e-136 -1.06313e-136 -4.30352e-134 -2.28686e-134 -5.69356e-132 -4.04614e-132 -6.7441e-130 -6.10499e-130 -7.17727e-128 -8.01214e-128 -6.88456e-126 -9.2616e-126 -5.96946e-124 -9.5132e-124 -4.69113e-122 -8.74067e-122 -3.34911e-120 -7.221e-120 -2.17677e-118 -5.38661e-118 -1.29046e-116 -3.64092e-116 -6.98948e-115 -2.23643e-114 -3.46368e-113 -1.25145e-112 -1.57237e-111 -6.39281e-111 -6.54529e-110 -2.98635e-109 -2.5003e-108 -1.27755e-107 -8.76931e-107 -5.01057e-106 -2.82453e-105 -1.80312e-104 -8.35377e-104 -5.95656e-103 -2.26754e-102 -1.80656e-101 -5.64344e-101 -5.02878e-100 -1.28586e-99 -1.28376e-98 -2.67668e-98 -3.0015e-97 -5.07651e-97 -6.41483e-96 -8.74277e-96 -1.24998e-94 -1.36192e-94 -2.21364e-93 -1.91068e-93 -3.54944e-92 -2.40277e-92 -5.13141e-91 -2.69481e-91 -6.65835e-90 -2.67974e-90 -7.71654e-89 -2.34432e-89 -7.94228e-88 -1.7836e-88 -7.20492e-87 -1.16464e-87 -5.69504e-86 -3.86978e-85 -6.54296e-87 -4.60569e-235 6.29644e-238 -5.28377e-233 9.98219e-234 -9.92448e-235 4.78289e-232 -1.91798e-238 5.3941e-234 -3.08647e-241 7.2773e-238 -2.21526e-241 8.8917e-241 -2.52565e-241 5.11242e-241 -5.36088e-241 4.84489e-241 -1.38809e-240 8.77907e-241 -3.36646e-240 1.9798e-240 -6.14884e-240 4.24678e-240 -9.44638e-240 6.94454e-240 -1.14456e-239 9.64546e-240 -1.22652e-239 1.06506e-239 -1.19131e-239 1.04704e-239 -9.67236e-240 9.38162e-240 -6.60988e-240 7.05988e-240 -4.25741e-240 4.48967e-240 -3.22519e-240 2.70036e-240 -2.3361e-240 1.91594e-240 -1.8341e-240 1.30313e-240 -1.50719e-240 9.62861e-241 -1.87207e-240 7.46101e-241 -3.52976e-238 8.7533e-241 -1.76465e-235 1.56116e-238 -8.478e-233 7.3919e-236 -3.91151e-230 3.36704e-233 -1.73605e-227 1.47417e-230 -7.42417e-225 6.21345e-228 -3.06375e-222 2.5249e-225 -1.22178e-219 9.90539e-223 -4.71455e-217 3.75639e-220 -1.76253e-214 1.37867e-217 -6.39133e-212 4.90257e-215 -2.25055e-209 1.6909e-212 -7.70351e-207 5.66197e-210 -2.56581e-204 1.84237e-207 -8.32359e-202 5.83073e-205 -2.63236e-199 1.79621e-202 -8.12287e-197 5.39032e-200 -2.44774e-194 1.5769e-197 -7.20886e-192 4.50002e-195 -2.07659e-189 1.25347e-192 -5.85524e-187 3.40997e-190 -1.61721e-184 9.06455e-188 -4.37844e-182 2.3556e-185 -1.1628e-179 5.98671e-183 -3.03118e-177 1.4885e-180 -7.76104e-175 3.62153e-178 -1.95302e-172 8.62349e-176 -4.83327e-170 2.00973e-173 -1.17703e-167 4.58358e-171 -2.82229e-165 1.02272e-168 -6.66717e-163 2.23123e-166 -1.55258e-160 4.7553e-164 -3.566e-158 9.88643e-162 -8.08278e-156 2.00074e-159 -1.80894e-153 3.92809e-157 -3.99936e-151 7.44262e-155 -8.7393e-149 1.34904e-152 -1.88837e-146 2.30295e-150 -4.03658e-144 3.58674e-148 -8.53973e-142 4.70219e-146 -1.78875e-139 3.68658e-144 -3.53122e-137 -1.79963e-138 -6.15953e-135 -1.11921e-135 -9.53686e-133 -3.08762e-133 -1.31625e-130 -6.28969e-131 -1.62574e-128 -1.04825e-128 -1.80347e-126 -1.48874e-126 -1.80283e-124 -1.84072e-124 -1.6289e-122 -2.00782e-122 -1.33389e-120 -1.94976e-120 -9.92445e-119 -1.69698e-118 -6.72383e-117 -1.33069e-116 -4.15637e-115 -9.44046e-115 -2.34835e-113 -6.08019e-113 -1.21461e-111 -3.56522e-111 -5.75851e-110 -1.90784e-109 -2.50541e-108 -9.33582e-108 -1.00124e-106 -4.18451e-106 -3.67781e-105 -1.72032e-104 -1.2423e-103 -6.49393e-103 -3.85938e-102 -2.25252e-101 -1.10253e-100 -7.18258e-100 -2.8947e-99 -2.10559e-98 -6.9776e-98 -5.67279e-97 -1.54177e-96 -1.40342e-95 -3.11603e-95 -3.1838e-94 -5.74415e-94 -6.60994e-93 -9.62475e-93 -1.25252e-91 -1.45996e-91 -2.15908e-90 -1.99587e-90 -3.37256e-89 -2.44724e-89 -4.75304e-88 -2.67762e-88 -6.0157e-87 -2.59914e-87 -6.80385e-86 -2.22125e-86 -6.83819e-85 -1.65248e-85 -6.06192e-84 -1.05632e-84 -4.68676e-83 -3.11827e-82 -5.84119e-84 -6.61958e-238 9.76942e-241 -9.03254e-236 1.44838e-236 -1.81327e-237 8.24776e-235 -3.582e-241 9.93647e-237 -4.82157e-244 1.36979e-240 -3.45079e-244 1.39958e-243 -3.93858e-244 8.02275e-244 -8.40872e-244 7.61017e-244 -2.19722e-243 1.3869e-243 -5.36975e-243 3.15611e-243 -9.84113e-243 6.8218e-243 -1.51058e-242 1.1193e-242 -1.82512e-242 1.55329e-242 -1.94765e-242 1.71033e-242 -1.8815e-242 1.67441e-242 -1.52013e-242 1.49223e-242 -1.03427e-242 1.11748e-242 -6.62877e-243 7.0757e-243 -4.98928e-243 4.23493e-243 -4.50778e-243 2.98556e-243 -5.11223e-241 2.53309e-243 -2.67725e-238 2.7038e-241 -1.34207e-235 1.3353e-238 -6.42001e-233 6.32299e-236 -2.93712e-230 2.8614e-233 -1.28768e-227 1.23996e-230 -5.42005e-225 5.15469e-228 -2.19411e-222 2.05921e-225 -8.55594e-220 7.9174e-223 -3.21872e-217 2.93415e-220 -1.1698e-214 1.04951e-217 -4.11268e-212 3.62785e-215 -1.40042e-209 1.21334e-212 -4.62407e-207 3.93071e-210 -1.48217e-204 1.23471e-207 -4.61672e-202 3.76436e-205 -1.39884e-199 1.11493e-202 -4.12675e-197 3.21076e-200 -1.18646e-194 8.99755e-198 -3.32716e-192 2.45543e-195 -9.10829e-190 6.53019e-193 -2.43606e-187 1.69358e-190 -6.37031e-185 4.28583e-188 -1.62997e-182 1.0589e-185 -4.08372e-180 2.55561e-183 -1.00252e-177 6.02762e-181 -2.41316e-175 1.3899e-178 -5.69927e-173 3.1344e-176 -1.32152e-170 6.91457e-174 -3.01035e-168 1.49241e-171 -6.74093e-166 3.15168e-169 -1.48471e-163 6.51166e-167 -3.21837e-161 1.31588e-164 -6.86996e-159 2.59955e-162 -1.44491e-156 5.01612e-160 -2.99595e-154 9.4419e-158 -6.12731e-152 1.73024e-155 -1.23673e-149 3.07737e-153 -2.4647e-147 5.28685e-151 -4.85237e-145 8.70456e-149 -9.44157e-143 1.35468e-146 -1.81646e-140 1.93943e-144 -3.45684e-138 2.39379e-142 -6.50991e-136 2.01414e-140 -1.18451e-133 -2.91182e-135 -1.9116e-131 -2.81524e-132 -2.74825e-129 -7.69772e-130 -3.53412e-127 -1.49738e-127 -4.08029e-125 -2.36164e-125 -4.24401e-123 -3.16701e-123 -3.9893e-121 -3.69799e-121 -3.39852e-119 -3.81365e-119 -2.63073e-117 -3.50683e-117 -1.85466e-115 -2.89527e-115 -1.19333e-113 -2.15753e-113 -7.02051e-112 -1.45725e-111 -3.78274e-110 -8.95145e-110 -1.86938e-108 -5.01484e-108 -8.48361e-107 -2.56826e-106 -3.53922e-105 -1.20472e-104 -1.35845e-103 -5.18437e-103 -4.8002e-102 -2.04946e-101 -1.56214e-100 -7.44999e-100 -4.68245e-99 -2.49203e-98 -1.29248e-97 -7.6737e-97 -3.28325e-96 -2.17532e-95 -7.66748e-95 -5.67471e-94 -1.64348e-93 -1.36109e-92 -3.22601e-92 -2.99733e-91 -5.78229e-91 -6.04764e-90 -9.43021e-90 -1.11495e-88 -1.39358e-88 -1.87179e-87 -1.85752e-87 -2.85009e-86 -2.2223e-86 -3.91854e-85 -2.37412e-85 -4.84169e-84 -2.25184e-84 -5.34953e-83 -1.88214e-83 -5.25615e-82 -1.37097e-82 -4.5592e-81 -8.59286e-82 -3.4529e-80 -2.25322e-79 -4.68431e-81 -1.02931e-240 1.63845e-243 -1.66706e-238 2.2752e-239 -3.57704e-240 1.53643e-237 -7.22431e-244 1.97742e-239 -8.16295e-247 2.78595e-243 -5.82657e-247 2.38888e-246 -6.65849e-247 1.36545e-246 -1.43e-246 1.29667e-246 -3.77096e-246 2.37689e-246 -9.2861e-246 5.45834e-246 -1.70757e-245 1.18875e-245 -2.61882e-245 1.95697e-245 -3.15532e-245 2.71341e-245 -3.35328e-245 2.97948e-245 -3.22213e-245 2.90495e-245 -2.59086e-245 2.57518e-245 -1.86681e-245 1.91935e-245 -6.85985e-244 1.28709e-245 -3.8318e-241 4.41701e-244 -2.05281e-238 2.31112e-241 -1.04096e-235 1.16279e-238 -5.01085e-233 5.55011e-236 -2.29572e-230 2.51966e-233 -1.00345e-227 1.09057e-230 -4.19364e-225 4.50998e-228 -1.67911e-222 1.78553e-225 -6.45306e-220 6.77989e-223 -2.38449e-217 2.47329e-220 -8.48524e-215 8.68163e-218 -2.91217e-212 2.93652e-215 -9.65292e-210 9.58415e-213 -3.09426e-207 3.02213e-210 -9.60382e-205 9.21769e-208 -2.88951e-202 2.72245e-205 -8.43669e-200 7.79425e-203 -2.39298e-197 2.16516e-200 -6.60018e-195 5.84116e-198 -1.77186e-192 1.53171e-195 -4.63392e-190 3.90724e-193 -1.18165e-187 9.70304e-191 -2.94041e-185 2.34745e-188 -7.14579e-183 5.5363e-186 -1.69725e-180 1.27363e-183 -3.94286e-178 2.85963e-181 -8.96515e-176 6.26963e-179 -1.99656e-173 1.34288e-176 -4.35787e-171 2.81104e-174 -9.32862e-169 5.75279e-172 -1.95968e-166 1.15129e-169 -4.04245e-164 2.2535e-167 -8.19334e-162 4.31448e-165 -1.63264e-159 8.07919e-163 -3.20023e-157 1.47936e-160 -6.17425e-155 2.64758e-158 -1.17311e-152 4.62765e-156 -2.19624e-150 7.89027e-154 -4.05358e-148 1.30995e-151 -7.37978e-146 2.11179e-149 -1.3259e-143 3.2916e-147 -2.35212e-141 4.9261e-145 -4.12186e-139 6.9942e-143 -7.13865e-137 9.20887e-141 -1.22245e-134 1.068e-138 -2.07083e-132 9.2768e-137 -3.47206e-130 4.54714e-136 -5.19194e-128 -5.81014e-129 -6.94068e-126 -1.6364e-126 -8.32693e-124 -3.07468e-124 -8.99746e-122 -4.61567e-122 -8.78452e-120 -5.86617e-120 -7.77256e-118 -6.48608e-118 -6.24918e-116 -6.33735e-116 -4.57666e-114 -5.52776e-114 -3.05975e-112 -4.33546e-112 -1.87104e-110 -3.07408e-110 -1.04832e-108 -1.97891e-108 -5.38992e-107 -1.16049e-106 -2.54643e-105 -6.21688e-105 -1.10673e-103 -3.04941e-103 -4.42921e-102 -1.37214e-101 -1.63351e-100 -5.67286e-100 -5.55477e-99 -2.15761e-98 -1.74223e-97 -7.55674e-97 -5.04034e-96 -2.43882e-95 -1.34468e-94 -7.25549e-94 -3.30596e-93 -1.98975e-92 -7.48197e-92 -5.02803e-91 -1.55615e-90 -1.1697e-89 -2.96765e-89 -2.50148e-88 -5.17379e-88 -4.90734e-87 -8.21606e-87 -8.8066e-86 -1.18342e-85 -1.44069e-84 -1.53886e-84 -2.13972e-83 -1.79761e-83 -2.87207e-82 -1.87665e-82 -3.46737e-81 -1.74099e-81 -3.74628e-80 -1.4248e-80 -3.60257e-79 -1.01754e-79 -3.06158e-78 -6.26372e-79 -2.27466e-77 -1.4584e-76 -3.37192e-78 -1.7314e-243 2.96943e-246 -3.3196e-241 3.8696e-242 -7.61441e-243 3.09047e-240 -1.5726e-246 4.24956e-242 -1.49688e-249 6.12007e-246 -1.06579e-249 4.41948e-249 -1.21971e-249 2.51933e-249 -2.63534e-249 2.39552e-249 -7.01361e-249 4.41732e-249 -1.74021e-248 1.0237e-248 -3.21062e-248 2.24629e-248 -4.91973e-248 3.71016e-248 -5.91156e-248 5.13985e-248 -6.36477e-248 5.62864e-248 -7.98393e-247 5.55992e-248 -4.68506e-244 6.43447e-247 -2.76853e-241 3.50008e-244 -1.53158e-238 1.92503e-241 -7.96354e-236 9.94632e-239 -3.90579e-233 4.84471e-236 -1.81279e-230 2.23173e-233 -7.98501e-228 9.75069e-231 -3.34684e-225 4.05114e-228 -1.33801e-222 1.60432e-225 -5.11323e-220 6.069e-223 -1.8716e-217 2.19741e-220 -6.57376e-215 7.62889e-218 -2.21942e-212 2.54389e-215 -7.21408e-210 8.16012e-213 -2.26089e-207 2.52163e-210 -6.84128e-205 7.51689e-208 -2.00132e-202 2.16425e-205 -5.66695e-200 6.02562e-203 -1.55501e-197 1.62403e-200 -4.13945e-195 4.24165e-198 -1.0701e-192 1.07458e-195 -2.6891e-190 2.64304e-193 -6.57493e-188 6.31679e-191 -1.56555e-185 1.46813e-188 -3.63334e-183 3.32075e-186 -8.22548e-181 7.31499e-184 -1.81792e-178 1.5703e-181 -3.92531e-176 3.28706e-179 -8.2866e-174 6.71322e-177 -1.71155e-171 1.33837e-174 -3.46106e-169 2.60583e-172 -6.85687e-167 4.95694e-170 -1.33174e-164 9.21577e-168 -2.53725e-162 1.67501e-165 -4.74491e-160 2.97685e-163 -8.71514e-158 5.17357e-161 -1.57311e-155 8.79229e-159 -2.79211e-153 1.46088e-156 -4.87575e-151 2.37221e-154 -8.3816e-149 3.76207e-152 -1.41914e-146 5.82074e-150 -2.36789e-144 8.77202e-148 -3.89548e-142 1.28446e-145 -6.32174e-140 1.82045e-143 -1.01249e-137 2.4822e-141 -1.60111e-135 3.22282e-139 -2.50098e-133 3.90993e-137 -3.86038e-131 4.25749e-135 -5.89039e-129 3.71931e-133 -8.88807e-127 1.33418e-131 -1.23333e-124 -9.34551e-126 -1.5352e-122 -2.93206e-123 -1.72055e-120 -5.4154e-121 -1.74198e-118 -7.79813e-119 -1.5982e-116 -9.43585e-117 -1.33242e-114 -9.91029e-115 -1.01196e-112 -9.19582e-113 -7.01771e-111 -7.62287e-111 -4.45263e-109 -5.68847e-109 -2.58952e-107 -3.84297e-107 -1.38264e-105 -2.36053e-105 -6.78737e-104 -1.32288e-103 -3.06718e-102 -6.78266e-102 -1.27727e-100 -3.18892e-100 -4.90584e-99 -1.37741e-98 -1.73915e-97 -5.47429e-97 -5.69332e-96 -2.00433e-95 -1.72156e-94 -6.76699e-94 -4.80849e-93 -2.1081e-92 -1.24021e-91 -6.0618e-91 -2.95184e-90 -1.60888e-89 -6.47587e-89 -3.93981e-88 -1.30731e-87 -8.89324e-87 -2.42285e-86 -1.84771e-85 -4.10989e-85 -3.5259e-84 -6.35749e-84 -6.16221e-83 -8.92952e-83 -9.82868e-82 -1.13343e-81 -1.42476e-80 -1.29367e-80 -1.86844e-79 -1.32089e-79 -2.20595e-78 -1.19975e-78 -2.33303e-77 -9.62516e-78 -2.19838e-76 -6.74921e-77 -1.83287e-75 -4.08796e-76 -1.33801e-74 -8.44504e-74 -2.17724e-75 -3.15049e-246 5.81468e-249 -7.12794e-244 7.12622e-245 -1.74812e-245 6.70886e-243 -3.69286e-249 9.85728e-245 -2.97126e-252 1.45144e-248 -2.11072e-252 8.85724e-252 -2.4195e-252 5.03647e-252 -5.26002e-252 4.79613e-252 -1.41287e-251 8.89789e-252 -3.53207e-251 2.08105e-251 -6.6078e-251 4.60074e-251 -6.74496e-250 7.70526e-251 -4.2838e-247 7.11076e-250 -2.91979e-244 4.11592e-247 -1.83344e-241 2.57387e-244 -1.06687e-238 1.49119e-241 -5.78343e-236 8.04395e-239 -2.93415e-233 4.05877e-236 -1.39883e-230 1.92335e-233 -6.28913e-228 8.5905e-231 -2.6752e-225 3.62794e-228 -1.07974e-222 1.45288e-225 -4.14581e-220 5.53168e-223 -1.51797e-217 2.00707e-220 -5.3116e-215 6.95475e-218 -1.77976e-212 2.30605e-215 -5.72098e-210 7.33014e-213 -1.76722e-207 2.23737e-210 -5.25425e-205 6.56773e-208 -1.5058e-202 1.85682e-205 -4.16543e-200 5.06271e-203 -1.11365e-197 1.33289e-200 -2.88109e-195 3.39242e-198 -7.2208e-193 8.35611e-196 -1.7551e-190 1.99398e-193 -4.14146e-188 4.614e-191 -9.49642e-186 1.03625e-188 -2.11799e-183 2.26075e-186 -4.59865e-181 4.79493e-184 -9.72841e-179 9.89415e-182 -2.00683e-176 1.98767e-179 -4.03991e-174 3.89008e-177 -7.9423e-172 7.42141e-175 -1.52597e-169 1.38091e-172 -2.86729e-167 2.50737e-170 -5.27242e-165 4.44469e-168 -9.49386e-163 7.69499e-166 -1.6751e-160 1.30157e-163 -2.89782e-158 2.15147e-161 -4.91798e-156 3.47615e-159 -8.19294e-154 5.49029e-157 -1.34052e-151 8.47658e-155 -2.1554e-149 1.2791e-152 -3.40752e-147 1.88577e-150 -5.2995e-145 2.71466e-148 -8.11226e-143 3.81216e-146 -1.22288e-140 5.21466e-144 -1.81624e-138 6.93317e-142 -2.65905e-136 8.92978e-140 -3.83924e-134 1.10835e-137 -5.46923e-132 1.31428e-135 -7.6905e-130 1.4662e-133 -1.06784e-127 1.4918e-131 -1.4647e-125 1.28095e-129 -1.98535e-123 6.73178e-128 -2.56039e-121 -1.00037e-122 -2.97172e-119 -4.33834e-120 -3.11516e-117 -8.11326e-118 -2.95875e-115 -1.13324e-115 -2.55358e-113 -1.31337e-113 -2.00792e-111 -1.31537e-111 -1.44188e-109 -1.16236e-109 -9.47583e-108 -9.17676e-108 -5.71009e-106 -6.52691e-106 -3.16042e-104 -4.20719e-104 -1.60908e-102 -2.46887e-102 -7.54594e-101 -1.32359e-100 -3.26328e-99 -6.50096e-99 -1.30264e-97 -2.932e-97 -4.80367e-96 -1.21653e-95 -1.63748e-94 -4.65062e-94 -5.16211e-93 -1.64004e-92 -1.5053e-91 -5.34016e-91 -4.06027e-90 -1.60652e-89 -1.0127e-88 -4.46677e-88 -2.33394e-87 -1.1478e-86 -4.96459e-86 -2.72473e-85 -9.73004e-85 -5.9699e-84 -1.75292e-83 -1.20546e-82 -2.89406e-82 -2.23845e-81 -4.36242e-81 -3.81164e-80 -5.9778e-80 -5.93057e-79 -7.41093e-79 -8.39611e-78 -8.27079e-78 -1.07656e-76 -8.2668e-77 -1.24412e-75 -7.35958e-76 -1.28938e-74 -5.79558e-75 -1.19202e-73 -3.99666e-74 -9.76442e-73 -2.38699e-73 -7.01618e-72 -4.36904e-71 -1.26056e-72 -6.20239e-249 1.2301e-251 -1.6493e-246 1.42125e-247 -4.32561e-248 1.57085e-245 -9.34873e-252 2.46665e-247 -6.37983e-255 3.71427e-251 -4.52265e-255 1.92185e-254 -5.1941e-255 1.0903e-254 -1.15957e-254 1.04008e-254 -2.84726e-253 1.98129e-254 -2.41781e-250 4.23571e-253 -2.0377e-247 3.1807e-250 -1.54112e-244 2.39975e-247 -1.05653e-241 1.64086e-244 -6.62212e-239 1.02524e-241 -3.82209e-236 5.89594e-239 -2.04387e-233 3.13985e-236 -1.018e-230 1.55661e-233 -4.74439e-228 7.21705e-231 -2.07735e-225 3.14195e-228 -8.57612e-223 1.28899e-225 -3.34902e-220 4.99915e-223 -1.24063e-217 1.83815e-220 -4.37111e-215 6.42436e-218 -1.46825e-212 2.13924e-215 -4.71196e-210 6.80144e-213 -1.44764e-207 2.06873e-210 -4.26553e-205 6.03051e-208 -1.20745e-202 1.6876e-205 -3.28879e-200 4.54067e-203 -8.63183e-198 1.17631e-200 -2.18607e-195 2.93802e-198 -5.349e-193 7.08359e-196 -1.26605e-190 1.65051e-193 -2.90196e-188 3.72066e-191 -6.44846e-186 8.12261e-189 -1.39054e-183 1.71893e-186 -2.91264e-181 3.52933e-184 -5.93151e-179 7.03658e-182 -1.17542e-176 1.36334e-179 -2.26845e-174 2.56886e-177 -4.26695e-172 4.7105e-175 -7.82865e-170 8.41125e-173 -1.40202e-167 1.46345e-170 -2.45256e-165 2.48233e-168 -4.19354e-163 4.10695e-166 -7.01324e-161 6.63062e-164 -1.14791e-158 1.04505e-161 -1.83998e-156 1.60849e-159 -2.88999e-154 2.41835e-157 -4.45047e-152 3.55242e-155 -6.7234e-150 5.09902e-153 -9.96979e-148 7.15174e-151 -1.45189e-145 9.80047e-149 -2.07759e-143 1.31179e-146 -2.92276e-141 1.71413e-144 -4.04441e-139 2.18487e-142 -5.50763e-137 2.71308e-140 -7.38471e-135 3.27592e-138 -9.75368e-133 3.83522e-136 -1.26961e-130 4.33415e-134 -1.62939e-128 4.69417e-132 -2.06263e-126 4.81259e-130 -2.57645e-124 4.56131e-128 -3.17678e-122 3.78699e-126 -3.86781e-120 2.31419e-124 -4.64217e-118 -9.52916e-121 -5.03038e-116 -5.08289e-117 -4.93818e-114 -1.0202e-114 -4.40485e-112 -1.40653e-112 -3.57996e-110 -1.57436e-110 -2.65752e-108 -1.51112e-108 -1.80588e-106 -1.27605e-106 -1.12559e-104 -9.61918e-105 -6.44651e-103 -6.53372e-103 -3.39786e-101 -4.02489e-101 -1.65056e-99 -2.25941e-99 -7.3983e-98 -1.16005e-97 -3.06317e-96 -5.46322e-96 -1.17257e-94 -2.36551e-94 -4.15296e-93 -9.43444e-93 -1.36168e-91 -3.47123e-91 -4.13486e-90 -1.17964e-89 -1.16305e-88 -3.70605e-88 -3.03014e-87 -1.07707e-86 -7.30974e-86 -2.89662e-85 -1.63156e-84 -7.20853e-84 -3.36557e-83 -1.65932e-82 -6.40501e-82 -3.52981e-81 -1.12193e-80 -6.92904e-80 -1.80331e-79 -1.25248e-78 -2.64978e-78 -2.07875e-77 -3.54406e-77 -3.1566e-76 -4.29405e-76 -4.36715e-75 -4.68968e-75 -5.47919e-74 -4.5933e-74 -6.20382e-73 -4.0131e-73 -6.3078e-72 -3.10687e-72 -5.72934e-71 -2.11117e-71 -4.61875e-70 -1.2465e-70 -3.27328e-69 -2.01625e-68 -6.54482e-70 -1.32105e-251 2.8108e-254 -4.10927e-249 3.07035e-250 -1.15284e-250 3.9646e-248 -2.54978e-254 6.65465e-250 -1.48312e-257 1.02499e-253 -5.33622e-257 4.51901e-257 -6.11258e-254 1.30092e-256 -7.21608e-251 1.2376e-253 -7.26657e-248 1.24654e-250 -6.37472e-245 1.09284e-247 -4.95183e-242 8.4776e-245 -3.45002e-239 5.8952e-242 -2.17838e-236 3.71333e-239 -1.25725e-233 2.13696e-236 -6.68049e-231 1.13166e-233 -3.28812e-228 5.54854e-231 -1.50706e-225 2.53202e-228 -6.46176e-223 1.08037e-225 -2.60234e-220 4.32757e-223 -9.8792e-218 1.63315e-220 -3.54661e-215 5.82512e-218 -1.2075e-212 1.96932e-215 -3.90902e-210 6.32674e-213 -1.20609e-207 1.93603e-210 -3.55433e-205 5.65503e-208 -1.00244e-202 1.57978e-205 -2.71063e-200 4.2284e-203 -7.03918e-198 1.08615e-200 -1.75829e-195 2.68161e-198 -4.23061e-193 6.37257e-196 -9.81861e-191 1.45954e-193 -2.2008e-188 3.22574e-191 -4.76991e-186 6.88741e-189 -1.00075e-183 1.42219e-186 -2.03464e-181 2.84297e-184 -4.0126e-179 5.50688e-182 -7.6834e-177 1.03452e-179 -1.42975e-174 1.88641e-177 -2.58774e-172 3.34141e-175 -4.55917e-170 5.75354e-173 -7.82524e-168 9.63717e-171 -1.30943e-165 1.57126e-168 -2.13771e-163 2.49511e-166 -3.40724e-161 3.8611e-164 -5.3056e-159 5.82545e-162 -8.07649e-157 8.57324e-160 -1.20266e-154 1.23122e-157 -1.75289e-152 1.72604e-155 -2.5022e-150 2.36278e-153 -3.50019e-148 3.15902e-151 -4.80079e-146 4.12572e-149 -6.45991e-144 5.26372e-147 -8.53238e-142 6.55996e-145 -1.10682e-139 7.98421e-143 -1.41083e-137 9.4865e-141 -1.76804e-135 1.09958e-138 -2.17944e-133 1.24204e-136 -2.64392e-131 1.36501e-134 -3.15798e-129 1.45606e-132 -3.71558e-127 1.50197e-130 -4.3081e-125 1.48948e-128 -4.92452e-123 1.40618e-126 -5.55168e-121 1.24145e-124 -6.1747e-119 9.87402e-123 -6.7776e-117 6.4003e-121 -7.34406e-115 1.99426e-119 -7.4397e-113 -4.19235e-114 -6.84766e-111 -1.05046e-111 -5.74285e-109 -1.4746e-109 -4.3997e-107 -1.61454e-107 -3.08624e-105 -1.49552e-105 -1.9863e-103 -1.21219e-103 -1.17509e-101 -8.75244e-102 -6.40073e-100 -5.6909e-100 -3.2148e-98 -3.3565e-98 -1.49075e-96 -1.80513e-96 -6.38965e-95 -8.8867e-95 -2.53392e-93 -4.01696e-93 -9.30487e-92 -1.67117e-91 -3.1661e-90 -6.41128e-90 -9.98761e-89 -2.27163e-88 -2.92195e-87 -7.44266e-87 -7.92908e-86 -2.25693e-85 -1.99562e-84 -6.33849e-84 -4.65672e-83 -1.64923e-82 -1.00673e-81 -3.97561e-81 -2.01406e-80 -8.87542e-80 -3.72232e-79 -1.83341e-78 -6.34052e-78 -3.49939e-77 -9.92412e-77 -6.15859e-76 -1.42201e-75 -9.96561e-75 -1.85732e-74 -1.47749e-73 -2.20086e-73 -1.99865e-72 -2.35439e-72 -2.45548e-71 -2.26249e-71 -2.72663e-70 -1.94291e-70 -2.72329e-69 -1.48158e-69 -2.43403e-68 -9.94419e-69 -1.93475e-67 -5.82294e-68 -1.35552e-66 -8.28493e-66 -3.05044e-67 -3.04445e-254 6.93699e-257 -1.10144e-251 7.18649e-253 -3.30646e-253 1.07776e-250 -7.83491e-257 1.93425e-252 -7.73922e-255 3.19027e-256 -1.28177e-251 2.38778e-254 -1.68746e-248 3.1634e-251 -1.8401e-245 3.45816e-248 -1.71077e-242 3.21701e-245 -1.38526e-239 2.60373e-242 -9.92986e-237 1.86426e-239 -6.3827e-234 1.19628e-236 -3.71729e-231 6.95203e-234 -1.97846e-228 3.69035e-231 -9.69236e-226 1.80228e-228 -4.3973e-223 8.14755e-226 -1.85732e-220 3.42743e-223 -7.33703e-218 1.34782e-220 -2.7217e-215 4.97467e-218 -9.51477e-213 1.72946e-215 -3.14469e-210 5.68128e-213 -9.8542e-208 1.76852e-210 -2.93531e-205 5.23016e-208 -8.33093e-203 1.47291e-205 -2.25774e-200 3.95832e-203 -5.85389e-198 1.01711e-200 -1.45477e-195 2.50331e-198 -3.47094e-193 5.91115e-196 -7.96298e-191 1.3412e-193 -1.75917e-188 2.92818e-191 -3.74735e-186 6.15952e-189 -7.7068e-184 1.2499e-186 -1.53204e-181 2.44947e-184 -2.94711e-179 4.64093e-182 -5.49167e-177 8.5095e-180 -9.92266e-175 1.51139e-177 -1.74009e-172 2.60255e-175 -2.96433e-170 4.34843e-173 -4.90971e-168 7.05522e-171 -7.91249e-166 1.11236e-168 -1.24174e-163 1.70543e-166 -1.89904e-161 2.54418e-164 -2.83221e-159 3.69523e-162 -4.12195e-157 5.22821e-160 -5.85798e-155 7.20936e-158 -8.13457e-153 9.69328e-156 -1.1044e-150 1.2713e-153 -1.46683e-148 1.62699e-151 -1.90693e-146 2.03239e-149 -2.42794e-144 2.47862e-147 -3.02911e-142 2.95166e-145 -3.70506e-140 3.4324e-143 -4.44526e-138 3.89752e-141 -5.23403e-136 4.32073e-139 -6.05097e-134 4.67464e-137 -6.87177e-132 4.93294e-135 -7.66957e-130 5.07265e-133 -8.4165e-128 5.07624e-131 -9.08541e-126 4.93343e-129 -9.6516e-124 4.64226e-127 -1.00944e-121 4.2095e-125 -1.03983e-119 3.65029e-123 -1.05538e-117 2.98708e-121 -1.05579e-115 2.24799e-119 -1.04138e-113 1.46497e-117 -1.01305e-111 6.71023e-116 -9.60492e-110 -1.18166e-111 -8.29949e-108 -8.38823e-109 -6.55172e-106 -1.28156e-106 -4.73641e-104 -1.40261e-104 -3.14245e-102 -1.26699e-102 -1.91712e-100 -9.91853e-101 -1.0773e-98 -6.88776e-99 -5.58462e-97 -4.29973e-97 -2.67431e-95 -2.43347e-95 -1.18442e-93 -1.25597e-93 -4.85661e-92 -5.93694e-92 -1.84535e-90 -2.5786e-90 -6.50244e-89 -1.03167e-88 -2.12614e-87 -3.80984e-87 -6.45397e-86 -1.30068e-85 -1.81936e-84 -4.1103e-84 -4.76343e-83 -1.20346e-82 -1.15821e-81 -3.26689e-81 -2.61435e-80 -8.22513e-80 -5.47436e-79 -1.92076e-78 -1.06219e-77 -4.15891e-77 -1.90652e-76 -8.34269e-76 -3.15834e-75 -1.54832e-74 -4.81473e-74 -2.65318e-73 -6.72976e-73 -4.18638e-72 -8.58842e-72 -6.06149e-71 -9.9611e-71 -8.02084e-70 -1.04496e-69 -9.65611e-69 -9.86725e-69 -1.05264e-67 -8.34477e-68 -1.03416e-66 -6.28287e-67 -9.11137e-66 -4.17778e-66 -7.15655e-65 -2.43572e-65 -4.97036e-64 -3.02521e-63 -1.27874e-64 -7.59403e-257 1.84903e-259 -3.17334e-254 1.82292e-255 -1.34227e-255 3.15321e-253 -9.85027e-253 7.96747e-255 -2.02412e-249 4.06769e-252 -3.10452e-246 6.33114e-249 -3.78342e-243 7.76569e-246 -3.81781e-240 7.85709e-243 -3.2837e-237 6.76303e-240 -2.45922e-234 5.06351e-237 -1.63005e-231 3.35303e-234 -9.68631e-229 1.98953e-231 -5.21415e-226 1.06888e-228 -2.56447e-223 5.24451e-226 -1.1607e-220 2.36698e-223 -4.8641e-218 9.88672e-221 -1.8973e-215 3.84202e-218 -6.92001e-213 1.39541e-215 -2.36954e-210 4.7558e-213 -7.64459e-208 1.52638e-210 -2.33108e-205 4.62804e-208 -6.73774e-203 1.3294e-205 -1.85072e-200 3.62703e-203 -4.84233e-198 9.42086e-201 -1.20943e-195 2.33448e-198 -2.88911e-193 5.52955e-196 -6.61283e-191 1.25418e-193 -1.45268e-188 2.72838e-191 -3.06748e-186 5.70142e-189 -6.23505e-184 1.14604e-186 -1.22158e-181 2.21881e-184 -2.30978e-179 4.14254e-182 -4.21977e-177 7.46667e-180 -7.45681e-175 1.30064e-177 -1.27588e-172 2.19173e-175 -2.11585e-170 3.57612e-173 -3.40388e-168 5.65468e-171 -5.3169e-166 8.67212e-169 -8.07044e-164 1.2909e-166 -1.19134e-161 1.86645e-164 -1.71157e-159 2.62294e-162 -2.39493e-157 3.58487e-160 -3.26609e-155 4.76786e-158 -4.34396e-153 6.17406e-156 -5.63824e-151 7.78804e-154 -7.14606e-149 9.5739e-152 -8.84939e-147 1.14744e-149 -1.07135e-144 1.34123e-147 -1.26872e-142 1.52947e-145 -1.47045e-140 1.70197e-143 -1.66884e-138 1.84846e-141 -1.8556e-136 1.95958e-139 -2.02248e-134 2.02774e-137 -2.16187e-132 2.04791e-135 -2.26744e-130 2.01813e-133 -2.33463e-128 1.93968e-131 -2.36095e-126 1.81695e-129 -2.34613e-124 1.65697e-127 -2.29201e-122 1.46874e-125 -2.20233e-120 1.26233e-123 -2.08228e-118 1.04808e-121 -1.93807e-116 8.35717e-120 -1.77639e-114 6.33745e-118 -1.60396e-112 4.48983e-116 -1.42712e-110 2.86349e-114 -1.25156e-108 1.48743e-112 -1.0821e-106 3.7408e-111 -8.78851e-105 -4.38197e-106 -6.53758e-103 -8.89632e-104 -4.46426e-101 -1.01573e-101 -2.80401e-99 -9.10435e-100 -1.62286e-97 -6.94764e-98 -8.66846e-96 -4.667e-96 -4.27934e-94 -2.8081e-94 -1.95491e-92 -1.52935e-92 -8.2731e-91 -7.5914e-91 -3.24652e-89 -3.45119e-89 -1.18232e-87 -1.44215e-87 -3.99867e-86 -5.55444e-86 -1.25663e-84 -1.97598e-84 -3.67108e-83 -6.50384e-83 -9.97225e-82 -1.98322e-81 -2.51912e-80 -5.60819e-80 -5.91721e-79 -1.47174e-78 -1.29192e-77 -3.58575e-77 -2.62005e-76 -8.11163e-76 -4.93009e-75 -1.70331e-74 -8.59361e-74 -3.31756e-73 -1.38458e-72 -5.98591e-72 -2.0561e-71 -9.98621e-71 -2.8044e-70 -1.5364e-69 -3.49905e-69 -2.17274e-68 -3.97606e-68 -2.81332e-67 -4.09596e-67 -3.32092e-66 -3.80761e-66 -3.55762e-65 -3.17879e-65 -3.443e-64 -2.37006e-64 -2.99594e-63 -1.567e-63 -2.33095e-62 -9.13841e-63 -1.60971e-61 -9.79607e-61 -4.83242e-62 -1.22236e-258 1.39964e-261 -1.54613e-254 2.98901e-257 -7.89302e-251 1.56241e-253 -2.24018e-247 4.76052e-250 -4.27549e-244 9.39431e-247 -6.08697e-241 1.35752e-243 -6.88256e-238 1.5452e-240 -6.44143e-235 1.45026e-237 -5.13688e-232 1.15765e-234 -3.566e-229 8.03566e-232 -2.19039e-226 4.93218e-229 -1.2059e-223 2.71198e-226 -6.01263e-221 1.34991e-223 -2.73843e-218 6.13511e-221 -1.14747e-215 2.56426e-218 -4.45081e-213 9.91682e-216 -1.60648e-210 3.56725e-213 -5.42044e-208 1.19902e-210 -1.71658e-205 3.78087e-208 -5.12041e-203 1.12245e-205 -1.44323e-200 3.14717e-203 -3.85466e-198 8.35757e-201 -9.78077e-196 2.10743e-198 -2.36324e-193 5.0576e-196 -5.44889e-191 1.15761e-193 -1.20121e-188 2.5319e-191 -2.5364e-186 5.30099e-189 -5.13826e-184 1.06414e-186 -1.00018e-181 2.05129e-184 -1.87335e-179 3.80223e-182 -3.38074e-177 6.78571e-180 -5.88564e-175 1.16739e-177 -9.8961e-173 1.93815e-175 -1.60878e-170 3.10858e-173 -2.53123e-168 4.82129e-171 -3.85825e-166 7.23747e-169 -5.70255e-164 1.05246e-166 -8.17979e-162 1.48377e-164 -1.13964e-159 2.02955e-162 -1.54341e-157 2.69531e-160 -2.03335e-155 3.47763e-158 -2.60775e-153 4.36206e-156 -3.25791e-151 5.32209e-154 -3.9675e-149 6.31958e-152 -4.71269e-147 7.30673e-150 -5.46334e-145 8.22969e-148 -6.18492e-143 9.03327e-146 -6.84132e-141 9.66638e-144 -7.39789e-139 1.00873e-141 -7.82465e-137 1.0268e-139 -8.09895e-135 1.01971e-137 -8.20749e-133 9.88107e-136 -8.14734e-131 9.34278e-134 -7.92582e-129 8.61907e-132 -7.55944e-127 7.7565e-130 -7.07199e-125 6.80658e-128 -6.49212e-123 5.82085e-126 -5.85066e-121 4.84668e-124 -5.17816e-119 3.92394e-122 -4.50266e-117 3.08295e-120 -3.84819e-115 2.3437e-118 -3.23369e-113 1.71625e-116 -2.67268e-111 1.20196e-114 -2.17345e-109 7.95224e-113 -1.73955e-107 4.85592e-111 -1.37066e-105 2.59629e-109 -1.06352e-103 1.02933e-107 -8.12867e-102 2.58811e-108 -5.70455e-100 -4.47393e-101 -3.6834e-98 -5.94373e-99 -2.19228e-96 -5.4658e-97 -1.2047e-94 -4.129e-95 -6.12112e-93 -2.70648e-93 -2.87949e-91 -1.5784e-91 -1.25554e-89 -8.30425e-90 -5.07945e-88 -3.9755e-88 -1.90831e-86 -1.74187e-86 -6.6628e-85 -7.01408e-85 -2.16328e-83 -2.60374e-83 -6.53491e-82 -8.93132e-82 -1.8374e-80 -2.83609e-80 -4.80961e-79 -8.34876e-79 -1.17219e-77 -2.28083e-77 -2.65961e-76 -5.78721e-76 -5.61593e-75 -1.36446e-74 -1.10288e-73 -2.98975e-73 -2.01225e-72 -6.08712e-72 -3.40592e-71 -1.15084e-70 -5.3369e-70 -2.01813e-69 -7.72124e-69 -3.27687e-68 -1.02804e-67 -4.91473e-67 -1.25492e-66 -6.78803e-66 -1.39866e-65 -8.60221e-65 -1.41718e-64 -9.96188e-64 -1.29978e-63 -1.04976e-62 -1.07418e-62 -1.00227e-61 -7.95803e-62 -8.6312e-61 -5.25303e-61 -6.6695e-60 -3.07949e-60 -4.5948e-59 -2.80753e-58 -1.64841e-59 -2.27317e-253 2.11051e-256 -3.21141e-249 5.6724e-252 -1.53961e-245 3.30586e-248 -4.0717e-242 9.45021e-245 -7.2344e-239 1.73662e-241 -9.58202e-236 2.33519e-238 -1.00747e-232 2.47212e-235 -8.76436e-230 2.15709e-232 -6.49457e-227 1.60027e-229 -4.18812e-224 1.03208e-226 -2.38909e-221 5.88435e-224 -1.2212e-218 3.00478e-221 -5.65198e-216 1.38868e-218 -2.3889e-213 5.85868e-216 -9.28741e-211 2.27261e-213 -3.34153e-208 8.15508e-211 -1.11848e-205 2.72136e-208 -3.49888e-203 8.48359e-206 -1.02704e-200 2.48052e-203 -2.83883e-198 6.82672e-201 -7.41246e-196 1.77399e-198 -1.83351e-193 4.36502e-196 -4.30737e-191 1.01957e-193 -9.63285e-189 2.26594e-191 -2.05508e-186 4.80156e-189 -4.19054e-184 9.71966e-187 -8.18184e-182 1.88285e-184 -1.53208e-179 3.49602e-182 -2.75559e-177 6.23122e-180 -4.76718e-175 1.0676e-177 -7.9431e-173 1.7605e-175 -1.27622e-170 2.79749e-173 -1.97956e-168 4.28829e-171 -2.9674e-166 6.34792e-169 -4.30317e-164 9.08295e-167 -6.04249e-162 1.25737e-164 -8.2233e-160 1.68539e-162 -1.08554e-157 2.18921e-160 -1.39113e-155 2.75767e-158 -1.73196e-153 3.37106e-156 -2.09639e-151 4.00165e-154 -2.46872e-149 4.61556e-152 -2.83025e-147 5.17567e-150 -3.16086e-145 5.64539e-148 -3.44095e-143 5.99263e-146 -3.65341e-141 6.1934e-144 -3.78537e-139 6.23455e-142 -3.82955e-137 6.1151e-140 -3.78481e-135 5.84605e-138 -3.65611e-133 5.44876e-136 -3.45375e-131 4.95226e-134 -3.19204e-129 4.38981e-132 -2.88775e-127 3.79541e-130 -2.55837e-125 3.20065e-128 -2.22064e-123 2.63228e-126 -1.88929e-121 2.11071e-124 -1.5762e-119 1.64944e-122 -1.29003e-117 1.25532e-120 -1.0362e-115 9.29475e-119 -8.17169e-114 6.68543e-117 -6.32955e-112 4.66078e-115 -4.81702e-110 3.13883e-113 -3.60308e-108 2.03144e-111 -2.64967e-106 1.25283e-109 -1.91625e-104 7.25402e-108 -1.3632e-102 3.82905e-106 -9.54133e-101 1.71499e-104 -6.57189e-99 4.92993e-103 -4.35442e-97 -1.01432e-98 -2.66141e-95 -2.6054e-96 -1.50242e-93 -2.66377e-94 -7.84552e-92 -2.05143e-92 -3.79477e-90 -1.33148e-90 -1.70215e-88 -7.59151e-89 -7.08788e-87 -3.88005e-87 -2.74244e-85 -1.79848e-85 -9.86752e-84 -7.61622e-84 -3.30388e-82 -2.96161e-82 -1.03e-80 -1.06131e-80 -2.9912e-79 -3.51442e-79 -8.09471e-78 -1.07759e-77 -2.04174e-76 -3.06424e-76 -4.80037e-75 -8.09062e-75 -1.05192e-73 -1.98523e-73 -2.14776e-72 -4.52953e-72 -4.08346e-71 -9.6122e-71 -7.22271e-70 -1.89706e-69 -1.18689e-68 -3.48026e-68 -1.80861e-67 -5.92918e-67 -2.54951e-66 -9.36625e-66 -3.31485e-65 -1.36898e-64 -3.96167e-64 -1.84629e-63 -4.33581e-63 -2.29009e-62 -4.32845e-62 -2.60295e-61 -3.9257e-61 -2.70056e-60 -3.22089e-60 -2.54735e-59 -2.37925e-59 -2.1754e-58 -1.57433e-58 -1.67387e-57 -9.31969e-58 -1.15413e-56 -7.1078e-56 -5.069e-57 -4.00306e-248 4.04141e-251 -5.30774e-244 1.02136e-246 -2.38149e-240 5.57582e-243 -5.88523e-237 1.49017e-239 -9.76117e-234 2.55712e-236 -1.20604e-230 3.20831e-233 -1.18227e-227 3.1673e-230 -9.58513e-225 2.57612e-227 -6.61714e-222 1.78082e-224 -3.97417e-219 1.06989e-221 -2.11078e-216 5.68079e-219 -1.0043e-213 2.70084e-216 -4.32544e-211 1.16188e-213 -1.70085e-208 4.56171e-211 -6.15026e-206 1.64635e-208 -2.05759e-203 5.49528e-206 -6.40237e-201 1.70533e-203 -1.86131e-198 4.94259e-201 -5.07613e-196 1.34326e-198 -1.30321e-193 3.43521e-196 -3.15961e-191 8.29276e-194 -7.2546e-189 1.89503e-191 -1.58147e-186 4.10963e-189 -3.28075e-184 8.47719e-187 -6.49032e-182 1.66674e-184 -1.22679e-179 3.12952e-182 -2.21949e-177 5.62129e-180 -3.84961e-175 9.67468e-178 -6.41081e-173 1.5978e-175 -1.02647e-170 2.53561e-173 -1.58226e-168 3.87141e-171 -2.35089e-166 5.69367e-169 -3.37053e-164 8.07468e-167 -4.66803e-162 1.10538e-164 -6.25132e-160 1.46206e-162 -8.10246e-158 1.87014e-160 -1.01731e-155 2.31526e-158 -1.23835e-153 2.77638e-156 -1.46261e-151 3.22725e-154 -1.67741e-149 3.63879e-152 -1.8693e-147 3.98227e-150 -2.02556e-145 4.23266e-148 -2.13559e-143 4.37167e-146 -2.19212e-141 4.38993e-144 -2.19201e-139 4.28796e-142 -2.13646e-137 4.07586e-140 -2.03075e-135 3.77168e-138 -1.88345e-133 3.39901e-136 -1.70531e-131 2.98407e-134 -1.50805e-129 2.55283e-132 -1.30314e-127 2.12854e-130 -1.10085e-125 1.73006e-128 -9.0953e-124 1.37088e-126 -7.35261e-122 1.05901e-124 -5.81815e-120 7.97512e-123 -4.50845e-118 5.85361e-121 -3.42252e-116 4.18617e-119 -2.54636e-114 2.91533e-117 -1.85748e-112 1.9756e-115 -1.32904e-110 1.30124e-113 -9.33116e-109 8.31656e-112 -6.43123e-107 5.14522e-110 -4.35294e-105 3.07005e-108 -2.89444e-103 1.75663e-106 -1.8914e-101 9.54731e-105 -1.21497e-99 4.8454e-103 -7.67367e-98 2.21679e-101 -4.76611e-96 8.33479e-100 -2.9114e-94 1.665e-98 -1.6856e-92 -6.3718e-94 -9.03407e-91 -9.83497e-92 -4.48684e-89 -8.27948e-90 -2.06752e-87 -5.4735e-88 -8.84873e-86 -3.09629e-86 -3.52084e-84 -1.55109e-84 -1.30349e-82 -7.00213e-83 -4.49345e-81 -2.87778e-81 -1.44322e-79 -1.08386e-79 -4.32103e-78 -3.75788e-78 -1.20651e-76 -1.20329e-76 -3.14265e-75 -3.56701e-75 -7.63786e-74 -9.80693e-74 -1.73216e-72 -2.5041e-72 -3.66531e-71 -5.94424e-71 -7.23467e-70 -1.3127e-69 -1.33134e-68 -2.69789e-68 -2.28228e-67 -5.16049e-67 -3.64031e-66 -9.18379e-66 -5.39383e-65 -1.51945e-64 -7.40859e-64 -2.33421e-63 -9.40893e-63 -3.32353e-62 -1.10158e-61 -4.37578e-61 -1.18504e-60 -5.31233e-60 -1.16727e-59 -5.92802e-59 -1.04888e-58 -6.05969e-58 -8.56385e-58 -5.65386e-57 -6.32541e-57 -4.79624e-56 -4.2089e-56 -3.68303e-55 -2.52384e-55 -2.54839e-54 -1.58641e-53 -1.39692e-54 -5.52469e-243 6.05722e-246 -6.89808e-239 1.44448e-241 -2.90548e-235 7.40992e-238 -6.72875e-232 1.85687e-234 -1.0447e-228 2.98378e-231 -1.20736e-225 3.50256e-228 -1.10642e-222 3.23313e-225 -8.38192e-220 2.45768e-222 -5.40495e-217 1.58725e-219 -3.03111e-214 8.90622e-217 -1.50281e-211 4.4154e-214 -6.67287e-209 1.95955e-211 -2.68134e-206 7.86701e-209 -9.83437e-204 2.88181e-206 -3.31602e-201 9.70161e-204 -1.03422e-198 3.01991e-201 -2.99922e-196 8.73755e-199 -8.12418e-194 2.3605e-196 -2.06377e-191 5.97813e-194 -4.93384e-189 1.4243e-191 -1.11356e-186 3.20238e-189 -2.3794e-184 6.81381e-187 -4.82554e-182 1.37547e-184 -9.30991e-180 2.64023e-182 -1.71227e-177 4.82906e-180 -3.00782e-175 8.43205e-178 -5.05527e-173 1.408e-175 -8.14232e-171 2.25197e-173 -1.25866e-168 3.45499e-171 -1.8699e-166 5.09145e-169 -2.67325e-164 7.21589e-167 -3.68201e-162 9.84685e-165 -4.89145e-160 1.29519e-162 -6.27409e-158 1.64374e-160 -7.77765e-156 2.01469e-158 -9.32675e-154 2.38691e-156 -1.08286e-151 2.73575e-154 -1.21824e-149 3.03574e-152 -1.32905e-147 3.2637e-150 -1.4071e-145 3.40179e-148 -1.44672e-143 3.4398e-146 -1.44547e-141 3.37631e-144 -1.40434e-139 3.21866e-142 -1.3275e-137 2.98164e-140 -1.22167e-135 2.68527e-138 -1.09512e-133 2.35216e-136 -9.56747e-132 2.00478e-134 -8.15031e-130 1.66319e-132 -6.77339e-128 1.34349e-130 -5.49412e-126 1.05698e-128 -4.35155e-124 8.10106e-127 -3.36693e-122 6.0497e-125 -2.54594e-120 4.40247e-123 -1.88218e-118 3.12215e-121 -1.36095e-116 2.15771e-119 -9.62842e-115 1.45298e-117 -6.66742e-113 9.53108e-116 -4.52071e-111 6.08791e-114 -3.00229e-109 3.7842e-112 -1.95366e-107 2.28707e-110 -1.24608e-105 1.34227e-108 -7.79281e-104 7.63613e-107 -4.78026e-102 4.19993e-105 -2.87724e-100 2.22453e-103 -1.69991e-98 1.12771e-101 -9.86209e-97 5.41617e-100 -5.62031e-95 2.41906e-98 -3.14735e-93 9.66181e-97 -1.73234e-91 3.09553e-95 -9.37386e-90 4.32765e-94 -4.77341e-88 -2.12675e-89 -2.25692e-86 -2.5282e-87 -9.91596e-85 -1.82296e-85 -4.05229e-83 -1.05355e-83 -1.54165e-81 -5.25475e-82 -5.46408e-80 -2.33255e-80 -1.80542e-78 -9.36311e-79 -5.56432e-77 -3.43095e-77 -1.60038e-75 -1.15467e-75 -4.29709e-74 -3.58399e-74 -1.07743e-72 -1.02906e-72 -2.52318e-71 -2.73928e-71 -5.51927e-70 -6.77118e-70 -1.12762e-68 -1.55614e-68 -2.15127e-67 -3.32783e-67 -3.83083e-66 -6.62564e-66 -6.36305e-65 -1.2284e-64 -9.84888e-64 -2.12052e-63 -1.41866e-62 -3.40649e-62 -1.89842e-61 -5.08776e-61 -2.35508e-60 -7.05496e-60 -2.70172e-59 -9.06579e-59 -2.85813e-58 -1.07714e-57 -2.77969e-57 -1.18022e-56 -2.477e-56 -1.18909e-55 -2.01486e-55 -1.09814e-54 -1.49e-54 -9.26282e-54 -9.98326e-54 -7.10756e-53 -6.06866e-53 -4.94242e-52 -3.11373e-51 -3.41374e-52 -5.94261e-238 7.06582e-241 -7.01338e-234 1.59622e-236 -2.78251e-230 7.72094e-233 -6.05815e-227 1.82006e-229 -8.83185e-224 2.74717e-226 -9.57593e-221 3.02624e-223 -8.2277e-218 2.61968e-220 -5.84114e-215 1.86655e-217 -3.5283e-212 1.12946e-214 -1.85286e-209 5.93589e-212 -8.5995e-207 2.75548e-209 -3.57339e-204 1.14472e-206 -1.34337e-201 4.30083e-204 -4.60835e-199 1.474e-201 -1.45296e-196 4.64152e-199 -4.23606e-194 1.35109e-196 -1.14802e-191 3.65463e-194 -2.90527e-189 9.22798e-192 -6.89294e-187 2.18375e-189 -1.53862e-184 4.86018e-187 -3.24135e-182 1.0205e-184 -6.46254e-180 2.02717e-182 -1.22253e-177 3.81926e-180 -2.1993e-175 6.84009e-178 -3.77034e-173 1.1669e-175 -6.17118e-171 1.89979e-173 -9.66052e-169 2.95685e-171 -1.44867e-166 4.40639e-169 -2.08409e-164 6.2965e-167 -2.88025e-162 8.63891e-165 -3.82877e-160 1.13946e-162 -4.90134e-158 1.44651e-160 -6.04885e-156 1.76925e-158 -7.2041e-154 2.08704e-156 -8.28807e-152 2.37657e-154 -9.21903e-150 2.61473e-152 -9.92305e-148 2.78169e-150 -1.03438e-145 2.86368e-148 -1.04501e-143 2.85485e-146 -1.02395e-141 2.75786e-144 -9.73752e-140 2.58322e-142 -8.99311e-138 2.34747e-140 -8.07106e-136 2.07074e-138 -7.04313e-134 1.77401e-136 -5.9794e-132 1.47672e-134 -4.94129e-130 1.19491e-132 -3.97681e-128 9.4025e-131 -3.11858e-126 7.19747e-129 -2.38403e-124 5.36151e-127 -1.77744e-122 3.88766e-125 -1.293e-120 2.74469e-123 -9.18128e-119 1.88706e-121 -6.36628e-117 1.26367e-119 -4.31236e-115 8.24281e-118 -2.85466e-113 5.23746e-116 -1.8474e-111 3.24149e-114 -1.16919e-109 1.9538e-112 -7.23888e-108 1.14657e-110 -4.38594e-106 6.54817e-109 -2.60133e-104 3.63709e-107 -1.51077e-102 1.96292e-105 -8.59425e-101 1.028e-103 -4.79015e-99 5.21455e-102 -2.61669e-97 2.55501e-100 -1.40136e-95 1.20439e-98 -7.35998e-94 5.4275e-97 -3.79208e-92 2.314e-95 -1.91735e-90 9.15682e-94 -9.51705e-89 3.23025e-92 -4.63906e-87 9.07999e-91 -2.22149e-85 1.01482e-89 -1.00061e-83 -4.44733e-85 -4.19549e-82 -4.54022e-83 -1.63845e-80 -2.88692e-81 -5.96405e-79 -1.48079e-79 -2.0249e-77 -6.57751e-78 -6.41617e-76 -2.60661e-76 -1.89835e-74 -9.35965e-75 -5.24673e-73 -3.07314e-73 -1.35507e-71 -9.28101e-72 -3.27119e-70 -2.58845e-70 -7.38237e-69 -6.68578e-69 -1.55762e-67 -1.60262e-67 -3.07246e-66 -3.57055e-66 -5.66496e-65 -7.40174e-65 -9.75998e-64 -1.42872e-63 -1.57042e-62 -2.5689e-62 -2.35811e-61 -4.30307e-61 -3.30101e-60 -6.71323e-60 -4.30208e-59 -9.74878e-59 -5.21116e-58 -1.31648e-57 -5.85527e-57 -1.65096e-56 -6.08845e-56 -1.91946e-55 -5.8433e-55 -2.06471e-54 -5.16027e-54 -2.04996e-53 -4.17851e-53 -1.87346e-52 -3.0909e-52 -1.57091e-51 -2.08289e-51 -1.20414e-50 -1.28093e-50 -8.41145e-50 -5.35728e-49 -7.29473e-50 -4.95311e-233 6.37778e-236 -5.54753e-229 1.37059e-231 -2.08061e-225 6.27421e-228 -4.27322e-222 1.39608e-224 -5.86868e-219 1.98589e-221 -5.98879e-216 2.05951e-218 -4.83962e-213 1.67719e-215 -3.2298e-210 1.12359e-212 -1.83315e-207 6.38983e-210 -9.04209e-205 3.15498e-207 -3.94046e-202 1.37551e-204 -1.53697e-199 5.36527e-202 -5.422e-197 1.89215e-199 -1.74487e-194 6.08548e-197 -5.15938e-192 1.79778e-194 -1.41029e-189 4.90825e-192 -3.58235e-187 1.2449e-189 -8.49471e-185 2.94668e-187 -1.88789e-182 6.53495e-185 -3.94616e-180 1.36264e-182 -7.78213e-178 2.6798e-180 -1.45197e-175 4.98437e-178 -2.56948e-173 8.79003e-176 -4.32257e-171 1.47306e-173 -6.92702e-169 2.35068e-171 -1.05943e-166 3.57861e-169 -1.54906e-164 5.20624e-167 -2.16881e-162 7.24942e-165 -2.9118e-160 9.67554e-163 -3.75385e-158 1.23941e-160 -4.65275e-156 1.52566e-158 -5.55089e-154 1.80675e-156 -6.38127e-152 2.06058e-154 -7.0759e-150 2.26548e-152 -7.57525e-148 2.40331e-150 -7.83681e-146 2.46211e-148 -7.84098e-144 2.43781e-146 -7.59333e-142 2.33458e-144 -7.12272e-140 2.16391e-142 -6.47614e-138 1.94255e-140 -5.71124e-136 1.68994e-138 -4.88835e-134 1.42557e-136 -4.06322e-132 1.16667e-134 -3.28172e-130 9.26765e-133 -2.57686e-128 7.14909e-131 -1.96817e-126 5.35769e-129 -1.46295e-124 3.90229e-127 -1.05877e-122 2.76333e-125 -7.46396e-121 1.90309e-123 -5.12774e-119 1.27504e-121 -3.4344e-117 8.31258e-120 -2.24347e-115 5.27458e-118 -1.42988e-113 3.25801e-116 -8.89514e-112 1.95921e-114 -5.40298e-110 1.1471e-112 -3.20547e-108 6.53902e-111 -1.85811e-106 3.62891e-109 -1.05271e-104 1.96026e-107 -5.83098e-103 1.03038e-105 -3.1586e-101 5.2677e-104 -1.67375e-99 2.6176e-102 -8.67865e-98 1.26309e-100 -4.40448e-96 5.91083e-99 -2.18844e-94 2.67754e-97 -1.06485e-92 1.17095e-95 -5.07553e-91 4.92416e-94 -2.37047e-89 1.97906e-92 -1.08513e-87 7.52546e-91 -4.87029e-86 2.65829e-89 -2.14383e-84 8.39696e-88 -9.25752e-83 2.13715e-86 -3.92249e-81 2.48219e-85 -1.57017e-79 -6.03529e-81 -5.86437e-78 -5.77388e-79 -2.04397e-76 -3.32453e-77 -6.65203e-75 -1.53487e-75 -2.0225e-73 -6.12864e-74 -5.74745e-72 -2.18348e-72 -1.52714e-70 -7.05278e-71 -3.7952e-69 -2.08468e-69 -8.82349e-68 -5.67231e-68 -1.9194e-66 -1.42646e-66 -3.90696e-65 -3.3247e-65 -7.4414e-64 -7.19642e-64 -1.32604e-62 -1.44869e-62 -2.21023e-61 -2.71502e-61 -3.44452e-60 -4.74014e-60 -5.01628e-59 -7.71226e-59 -6.82122e-58 -1.1694e-57 -8.65234e-57 -1.65207e-56 -1.02245e-55 -2.1734e-55 -1.12383e-54 -2.66022e-54 -1.1468e-53 -3.02591e-53 -1.08389e-52 -3.19372e-52 -9.46225e-52 -3.1219e-51 -7.605e-51 -2.81962e-50 -5.60863e-50 -2.3461e-49 -3.78731e-49 -1.79258e-48 -2.34548e-48 -1.25465e-47 -8.05112e-47 -1.34466e-47 -3.17864e-228 4.42584e-231 -3.39313e-224 9.08854e-227 -1.20768e-220 3.95309e-223 -2.34829e-217 8.33343e-220 -3.04875e-214 1.12108e-216 -2.93807e-211 1.09827e-213 -2.24053e-208 8.44202e-211 -1.4102e-205 5.33501e-208 -7.54517e-203 2.86073e-205 -3.50695e-200 1.3313e-202 -1.43961e-197 5.46877e-200 -5.28759e-195 2.00925e-197 -1.75595e-192 6.67248e-195 -5.31797e-190 2.02022e-192 -1.47937e-187 5.61687e-190 -3.80327e-185 1.44285e-187 -9.08348e-183 3.4423e-185 -2.02458e-180 7.66203e-183 -4.2279e-178 1.59744e-180 -8.30127e-176 3.13048e-178 -1.53725e-173 5.78422e-176 -2.69233e-171 1.01049e-173 -4.47077e-169 1.6732e-171 -7.05483e-167 2.6319e-169 -1.06006e-164 3.94076e-167 -1.51957e-162 5.62707e-165 -2.08162e-160 7.6756e-163 -2.7293e-158 1.00171e-160 -3.43002e-156 1.25254e-158 -4.13731e-154 1.50254e-156 -4.79567e-152 1.73133e-154 -5.34798e-150 1.91839e-152 -5.74384e-148 2.04622e-150 -5.94729e-146 2.10302e-148 -5.94217e-144 2.08451e-146 -5.73401e-142 1.99434e-144 -5.34829e-140 1.84319e-142 -4.82556e-138 1.64677e-140 -4.21474e-136 1.42326e-138 -3.56602e-134 1.19071e-136 -2.92458e-132 9.64842e-135 -2.32637e-130 7.57661e-133 -1.79589e-128 5.76887e-131 -1.34619e-126 4.26102e-129 -9.80359e-125 3.0545e-127 -6.93957e-123 2.12594e-125 -4.777e-121 1.4372e-123 -3.19926e-119 9.44033e-122 -2.08547e-117 6.02705e-120 -1.32372e-115 3.74106e-118 -8.1847e-114 2.25823e-116 -4.93158e-112 1.32592e-114 -2.89672e-110 7.574e-113 -1.65926e-108 4.20968e-111 -9.2717e-107 2.27682e-109 -5.05568e-105 1.19834e-107 -2.69098e-103 6.13747e-106 -1.39856e-101 3.05854e-104 -7.09936e-100 1.48274e-102 -3.5208e-98 6.99052e-101 -1.70633e-96 3.20364e-99 -8.08346e-95 1.42622e-97 -3.74416e-93 6.16225e-96 -1.69607e-91 2.58082e-94 -7.51581e-90 1.04585e-92 -3.25885e-88 4.0906e-91 -1.38301e-86 1.5385e-89 -5.74611e-85 5.53266e-88 -2.33791e-83 1.88494e-86 -9.3172e-82 5.98431e-85 -3.63761e-80 1.71241e-83 -1.39135e-78 4.05777e-82 -5.21352e-77 5.47558e-81 -1.86255e-75 -5.06557e-77 -6.22055e-74 -5.20315e-75 -1.9419e-72 -2.80017e-73 -5.66883e-71 -1.18129e-71 -1.54814e-69 -4.28098e-70 -3.95664e-68 -1.38087e-68 -9.46587e-67 -4.03459e-67 -2.12033e-65 -1.07854e-65 -4.44753e-64 -2.65455e-64 -8.73644e-63 -6.04041e-63 -1.60712e-61 -1.27443e-61 -2.76832e-60 -2.49815e-60 -4.46437e-59 -4.5562e-59 -6.73827e-58 -7.73927e-58 -9.51472e-57 -1.22515e-56 -1.25618e-55 -1.8081e-55 -1.54948e-54 -2.48786e-54 -1.78391e-53 -3.19095e-53 -1.91453e-52 -3.8133e-52 -1.91233e-51 -4.24271e-51 -1.77418e-50 -4.39006e-50 -1.52505e-49 -4.21817e-49 -1.21109e-48 -3.75595e-48 -8.86063e-48 -3.09132e-47 -5.96332e-47 -2.34539e-46 -3.69663e-46 -1.63748e-45 -1.05316e-44 -2.12082e-45 -1.55694e-223 2.34071e-226 -1.59162e-219 4.61592e-222 -5.39845e-216 1.9158e-218 -9.97706e-213 3.84142e-215 -1.22909e-209 4.90576e-212 -1.12264e-206 4.55648e-209 -8.10756e-204 3.31766e-206 -4.82957e-201 1.98475e-203 -2.44436e-198 1.00696e-200 -1.07426e-195 4.43199e-198 -4.16811e-193 1.72124e-195 -1.4465e-190 5.97688e-193 -4.5373e-188 1.87537e-190 -1.29753e-185 5.3633e-188 -3.40724e-183 1.40812e-185 -8.26608e-181 3.41474e-183 -1.86242e-178 7.68874e-181 -3.91477e-176 1.61471e-178 -7.70728e-174 3.17538e-176 -1.4262e-171 5.86772e-174 -2.48822e-169 1.02201e-171 -4.10419e-167 1.6825e-169 -6.41616e-165 2.62447e-167 -9.52812e-163 3.88761e-165 -1.34681e-160 5.4797e-163 -1.81541e-158 7.36314e-161 -2.33749e-156 9.44778e-159 -2.87941e-154 1.15938e-156 -3.39826e-152 1.36257e-154 -3.84752e-150 1.53568e-152 -4.18414e-148 1.66175e-150 -4.37544e-146 1.72839e-148 -4.40439e-144 1.7297e-146 -4.27192e-142 1.66713e-144 -3.99605e-140 1.5489e-142 -3.60811e-138 1.38833e-140 -3.14716e-136 1.20146e-138 -2.65383e-134 1.0046e-136 -2.16497e-132 8.12129e-135 -1.7098e-130 6.35163e-133 -1.30804e-128 4.80867e-131 -9.69939e-127 3.526e-129 -6.97516e-125 2.50541e-127 -4.86725e-123 1.72592e-125 -3.29724e-121 1.15319e-123 -2.16953e-119 7.47645e-122 -1.38716e-117 4.70512e-120 -8.62222e-116 2.87526e-118 -5.21226e-114 1.70668e-116 -3.06561e-112 9.84291e-115 -1.75491e-110 5.51694e-113 -9.78134e-109 3.0059e-111 -5.31001e-107 1.59234e-109 -2.8086e-105 8.20251e-108 -1.44784e-103 4.10919e-106 -7.27637e-102 2.00213e-104 -3.56617e-100 9.48774e-103 -1.70492e-98 4.37266e-101 -7.95301e-97 1.95971e-99 -3.62076e-95 8.53903e-98 -1.60922e-93 3.61629e-96 -6.9837e-92 1.48786e-94 -2.96012e-90 5.94335e-93 -1.22572e-88 2.30305e-91 -4.95946e-87 8.64708e-90 -1.96127e-85 3.14066e-88 -7.58238e-84 1.10093e-86 -2.86638e-82 3.71226e-85 -1.05976e-80 1.19799e-83 -3.83266e-79 3.67026e-82 -1.35596e-77 1.05273e-80 -4.69284e-76 2.7515e-79 -1.5886e-74 6.14221e-78 -5.25947e-73 9.32014e-77 -1.68381e-71 -1.87697e-73 -5.04509e-70 -3.27308e-71 -1.41488e-68 -1.72216e-69 -3.71541e-67 -6.76455e-68 -9.138e-66 -2.24975e-66 -2.10554e-64 -6.62001e-65 -4.54601e-63 -1.75978e-63 -9.1983e-62 -4.27482e-62 -1.74431e-60 -9.55586e-61 -3.10009e-59 -1.97465e-59 -5.16328e-58 -3.78373e-58 -8.05763e-57 -6.73738e-57 -1.1779e-55 -1.1165e-55 -1.61242e-54 -1.72373e-54 -2.0659e-53 -2.48092e-53 -2.47587e-52 -3.33004e-52 -2.77318e-51 -4.1689e-51 -2.9e-50 -4.8669e-50 -2.82742e-49 -5.29592e-49 -2.56563e-48 -5.36705e-48 -2.16211e-47 -5.05938e-47 -1.68816e-46 -4.42872e-46 -1.21873e-45 -3.59216e-45 -8.12779e-45 -2.69422e-44 -5.01194e-44 -1.86683e-43 -1.19648e-42 -2.86146e-43 -5.75307e-219 9.32487e-222 -5.66104e-215 1.77532e-217 -1.83807e-211 7.06355e-214 -3.24226e-208 1.35288e-210 -3.80517e-205 1.64674e-207 -3.30696e-202 1.45573e-204 -2.2703e-199 1.00785e-201 -1.28473e-196 5.72899e-199 -6.17359e-194 2.76029e-196 -2.57485e-191 1.15323e-193 -9.47724e-189 4.24981e-191 -3.11888e-186 1.3998e-188 -9.274e-184 4.16489e-186 -2.51323e-181 1.12913e-183 -6.25207e-179 2.80944e-181 -1.43644e-176 6.45477e-179 -3.06403e-174 1.37656e-176 -6.09543e-172 2.7373e-174 -1.13537e-169 5.09544e-172 -1.98705e-167 8.91004e-170 -3.27759e-165 1.46809e-167 -5.10943e-163 2.28558e-165 -7.54633e-161 3.37037e-163 -1.05831e-158 4.71804e-161 -1.41215e-156 6.28231e-159 -1.79613e-154 7.97159e-157 -2.18129e-152 9.65519e-155 -2.53321e-150 1.11797e-152 -2.81726e-148 1.23924e-150 -3.00433e-146 1.31673e-148 -3.07576e-144 1.34268e-146 -3.02641e-142 1.3154e-144 -2.86499e-140 1.23933e-142 -2.61188e-138 1.12403e-140 -2.29515e-136 9.82205e-139 -1.94562e-134 8.27593e-137 -1.59235e-132 6.72899e-135 -1.25912e-130 5.28332e-133 -9.62596e-129 4.00844e-131 -7.11957e-127 2.94049e-129 -5.09754e-125 2.08684e-127 -3.5352e-123 1.43357e-125 -2.37603e-121 9.53719e-124 -1.54844e-119 6.1475e-122 -9.78942e-118 3.84096e-120 -6.0067e-116 2.32711e-118 -3.57867e-114 1.3677e-116 -2.07107e-112 7.80032e-115 -1.16474e-110 4.31831e-113 -6.36768e-109 2.32123e-111 -3.38541e-107 1.21182e-109 -1.75091e-105 6.14566e-108 -8.81218e-104 3.02827e-106 -4.31719e-102 1.45006e-104 -2.05943e-100 6.74839e-103 -9.56842e-99 3.05262e-101 -4.33113e-97 1.34222e-99 -1.91047e-95 5.73656e-98 -8.21416e-94 2.38304e-96 -3.4433e-92 9.62074e-95 -1.40758e-90 3.77394e-93 -5.61245e-89 1.438e-91 -2.18327e-87 5.3201e-90 -8.2876e-86 1.90995e-88 -3.07046e-84 6.64855e-87 -1.11049e-82 2.24164e-85 -3.92148e-81 7.30974e-84 -1.35231e-79 2.30058e-82 -4.55474e-78 6.96772e-81 -1.49852e-76 2.02189e-79 -4.81619e-75 5.58285e-78 -1.5122e-73 1.45031e-76 -4.63867e-72 3.47211e-75 -1.39026e-70 7.32255e-74 -4.07267e-69 1.19163e-72 -1.16728e-67 5.66699e-72 -3.14411e-66 -1.36231e-67 -7.941e-65 -7.61475e-66 -1.8801e-63 -2.8671e-64 -4.17354e-62 -8.87432e-63 -8.68806e-61 -2.4034e-61 -1.69624e-59 -5.85022e-60 -3.10613e-58 -1.29791e-58 -5.3348e-57 -2.64624e-57 -8.59305e-56 -4.98412e-56 -1.29789e-54 -8.70226e-55 -1.83773e-53 -1.41185e-53 -2.43857e-52 -2.1319e-52 -3.03111e-51 -2.99946e-51 -3.52717e-50 -3.93479e-50 -3.83957e-49 -4.81453e-49 -3.90618e-48 -5.49491e-48 -3.70939e-47 -5.84822e-47 -3.28307e-46 -5.80062e-46 -2.70351e-45 -5.35639e-45 -2.06768e-44 -4.59841e-44 -1.46685e-43 -3.66421e-43 -9.65005e-43 -2.70663e-42 -5.8906e-42 -1.85314e-41 -1.17765e-40 -3.33345e-41 -1.57816e-214 2.75344e-217 -1.50303e-210 5.09033e-213 -4.69443e-207 1.95125e-209 -7.93926e-204 3.58618e-206 -8.91479e-201 4.1785e-203 -7.40218e-198 3.53033e-200 -4.85035e-195 2.33345e-197 -2.61777e-192 1.26535e-194 -1.19903e-189 5.81243e-192 -4.76437e-187 2.31411e-189 -1.66997e-184 8.12315e-187 -5.23159e-182 2.54773e-184 -1.48032e-179 7.21575e-182 -3.81618e-177 1.86156e-179 -9.02779e-175 4.40634e-177 -1.9718e-172 9.62798e-175 -3.99709e-170 1.95216e-172 -7.55413e-168 3.6896e-170 -1.33629e-165 6.5259e-168 -2.22022e-163 1.08393e-165 -3.47546e-161 1.69589e-163 -5.1397e-159 2.50622e-161 -7.19851e-157 3.50692e-159 -9.56948e-155 4.65671e-157 -1.20989e-152 5.87957e-155 -1.4575e-150 7.07152e-153 -1.67569e-148 8.11514e-151 -1.84148e-146 8.89923e-149 -1.93702e-144 9.3386e-147 -1.95277e-142 9.38936e-145 -1.88902e-140 9.05574e-143 -1.75535e-138 8.38717e-141 -1.56847e-136 7.46697e-139 -1.34891e-134 6.39607e-137 -1.11756e-132 5.27588e-135 -8.92671e-131 4.19407e-133 -6.87985e-129 3.21558e-131 -5.11971e-127 2.37938e-129 -3.68114e-125 1.70032e-127 -2.55896e-123 1.17413e-125 -1.72086e-121 7.83918e-124 -1.12014e-119 5.06308e-122 -7.0611e-118 3.1649e-120 -4.31279e-116 1.9156e-118 -2.55349e-114 1.12312e-116 -1.46619e-112 6.38116e-115 -8.16789e-111 3.51461e-113 -4.41635e-109 1.87717e-111 -2.31853e-107 9.72549e-110 -1.18226e-105 4.889e-108 -5.85743e-104 2.38528e-106 -2.82057e-102 1.1297e-104 -1.32049e-100 5.19491e-103 -6.01207e-99 2.31983e-101 -2.66271e-97 1.00613e-99 -1.14748e-95 4.23857e-98 -4.81284e-94 1.73452e-96 -1.96512e-92 6.89519e-95 -7.81283e-91 2.66264e-93 -3.02518e-89 9.98732e-92 -1.14106e-87 3.63832e-90 -4.19335e-86 1.28701e-88 -1.50174e-84 4.41941e-87 -5.24181e-83 1.47258e-85 -1.7836e-81 4.75876e-84 -5.91718e-80 1.49037e-82 -1.91425e-78 4.51923e-81 -6.03969e-77 1.32506e-79 -1.85877e-75 3.75e-78 -5.58073e-74 1.02179e-76 -1.63484e-72 2.67088e-75 -4.67351e-71 6.66086e-74 -1.30394e-69 1.57113e-72 -3.55123e-68 3.45155e-71 -9.44154e-67 6.85741e-70 -2.45026e-65 1.1442e-68 -6.20727e-64 1.18555e-67 -1.5073e-62 -2.66954e-64 -3.43527e-61 -2.31071e-62 -7.34708e-60 -8.80645e-61 -1.47474e-58 -2.59459e-59 -2.77837e-57 -6.54898e-58 -4.91317e-56 -1.47141e-56 -8.15502e-55 -2.99878e-55 -1.27041e-53 -5.60174e-54 -1.85714e-52 -9.65239e-53 -2.54696e-51 -1.5405e-51 -3.27585e-50 -2.28346e-50 -3.94959e-49 -3.14937e-49 -4.46122e-48 -4.04643e-48 -4.7175e-47 -4.84668e-47 -4.66587e-46 -5.41343e-46 -4.3116e-45 -5.63802e-45 -3.7177e-44 -5.47293e-44 -2.98713e-43 -4.94781e-43 -2.23394e-42 -4.1615e-42 -1.55406e-41 -3.25291e-41 -1.00583e-40 -2.36185e-40 -6.05809e-40 -1.5939e-39 -1.00122e-38 -3.3878e-39 -3.14732e-210 5.90224e-213 -2.91919e-206 1.06638e-208 -8.81708e-203 3.95956e-205 -1.4366e-199 7.01743e-202 -1.55046e-196 7.86304e-199 -1.23542e-193 6.37734e-196 -7.75981e-191 4.04163e-193 -4.01117e-188 2.09956e-190 -1.75854e-185 9.23324e-188 -6.6846e-183 3.51749e-185 -2.24043e-180 1.18097e-182 -6.70859e-178 3.54134e-180 -1.81371e-175 9.58619e-178 -4.4658e-173 2.36294e-175 -1.0087e-170 5.34229e-173 -2.10286e-168 1.11462e-170 -4.06731e-166 2.15733e-168 -7.3319e-164 3.89097e-166 -1.23666e-161 6.56535e-164 -1.95843e-159 1.03997e-161 -2.92096e-157 1.55122e-159 -4.11423e-155 2.18475e-157 -5.48605e-153 2.91248e-155 -6.94058e-151 3.68308e-153 -8.34762e-149 4.427e-151 -9.56192e-147 5.06684e-149 -1.04486e-144 5.53103e-147 -1.09083e-142 5.7672e-145 -1.08954e-140 5.75187e-143 -1.04247e-138 5.49393e-141 -9.56594e-137 5.03141e-139 -8.42764e-135 4.42275e-137 -7.13563e-133 3.73523e-135 -5.81179e-131 3.03362e-133 -4.55735e-129 2.37132e-131 -3.44341e-127 1.78544e-129 -2.50879e-125 1.29581e-127 -1.76378e-123 9.0713e-126 -1.19732e-121 6.12924e-124 -7.85284e-120 3.9995e-122 -4.97905e-118 2.52175e-120 -3.05353e-116 1.53715e-118 -1.81223e-114 9.06265e-117 -1.04132e-112 5.17018e-115 -5.79579e-111 2.85526e-113 -3.12592e-109 1.527e-111 -1.63439e-107 7.91108e-110 -8.28718e-106 3.97169e-108 -4.07647e-104 1.9328e-106 -1.94596e-102 9.11978e-105 -9.01766e-101 4.17326e-103 -4.05781e-99 1.85248e-101 -1.77357e-97 7.97813e-100 -7.53154e-96 3.3342e-98 -3.10816e-94 1.35233e-96 -1.24684e-92 5.32385e-95 -4.86303e-91 2.03447e-93 -1.84451e-89 7.54716e-92 -6.8049e-88 2.71785e-90 -2.44237e-86 9.50088e-89 -8.52963e-85 3.22379e-87 -2.89901e-83 1.06164e-85 -9.59046e-82 3.39246e-84 -3.08863e-80 1.05162e-82 -9.68483e-79 3.16118e-81 -2.95717e-77 9.21038e-80 -8.79382e-76 2.59936e-78 -2.54713e-74 7.09989e-77 -7.18706e-73 1.87477e-75 -1.97574e-71 4.7786e-74 -5.29225e-70 1.17331e-72 -1.38141e-68 2.76704e-71 -3.51407e-67 6.24078e-70 -8.71205e-66 1.33721e-68 -2.10495e-64 2.69243e-67 -4.95626e-63 4.9948e-66 -1.13723e-61 8.17878e-65 -2.54357e-60 1.05357e-63 -5.55008e-59 4.84897e-63 -1.14247e-57 -4.16941e-59 -2.21059e-56 -1.86534e-57 -4.01753e-55 -5.48082e-56 -6.85891e-54 -1.31461e-54 -1.09994e-52 -2.75794e-53 -1.6568e-51 -5.20183e-52 -2.34358e-50 -8.95021e-51 -3.1124e-49 -1.41652e-49 -3.87942e-48 -2.07288e-48 -4.53628e-47 -2.8141e-47 -4.97335e-46 -3.55191e-46 -5.10869e-45 -4.17383e-45 -4.91264e-44 -4.56976e-44 -4.41815e-43 -4.66296e-43 -3.71213e-42 -4.43386e-42 -2.91089e-41 -3.9269e-41 -2.12884e-40 -3.23728e-40 -1.45182e-39 -2.48289e-39 -9.23606e-39 -1.77195e-38 -5.47975e-38 -1.17802e-37 -7.30564e-37 -3.02272e-37 -4.45237e-206 8.96278e-209 -4.04928e-202 1.59379e-204 -1.18956e-198 5.7661e-201 -1.87707e-195 9.90648e-198 -1.9567e-192 1.07274e-194 -1.50323e-189 8.39149e-192 -9.09206e-187 5.12233e-189 -4.52153e-184 2.56057e-186 -1.90573e-181 1.08281e-183 -6.96039e-179 3.96443e-181 -2.2404e-176 1.2786e-178 -6.43989e-174 3.68159e-176 -1.67069e-171 9.566e-174 -3.94593e-169 2.26259e-171 -8.54636e-167 4.90696e-169 -1.70782e-164 9.81757e-167 -3.16522e-162 1.82159e-164 -5.46544e-160 3.14855e-162 -8.82702e-158 5.0897e-160 -1.33805e-155 7.72133e-158 -1.90953e-153 1.10265e-155 -2.57253e-151 1.4863e-153 -3.27966e-149 1.89563e-151 -3.96539e-147 2.29261e-149 -4.55606e-145 2.63443e-147 -4.98332e-143 2.88139e-145 -5.19736e-141 3.00456e-143 -5.17641e-139 2.99134e-141 -4.93002e-137 2.84737e-139 -4.49561e-135 2.59451e-137 -3.92959e-133 2.26567e-135 -3.29601e-131 1.89811e-133 -2.65544e-129 1.52705e-131 -2.05679e-127 1.18081e-129 -1.53289e-125 8.78336e-128 -1.10013e-123 6.28968e-126 -7.60863e-122 4.33904e-124 -5.07448e-120 2.88563e-122 -3.2657e-118 1.85114e-120 -2.02917e-116 1.14613e-118 -1.21803e-114 6.85258e-117 -7.06674e-113 3.95836e-115 -3.96475e-111 2.21012e-113 -2.15201e-109 1.19326e-111 -1.13055e-107 6.23232e-110 -5.75074e-106 3.15002e-108 -2.83344e-104 1.54125e-106 -1.35273e-102 7.3023e-105 -6.25984e-101 3.35119e-103 -2.80868e-99 1.49005e-101 -1.22224e-97 6.42051e-100 -5.15998e-96 2.68159e-98 -2.11391e-94 1.08581e-96 -8.40579e-93 4.26303e-95 -3.24507e-91 1.62312e-93 -1.21651e-89 5.9937e-92 -4.42937e-88 2.1468e-90 -1.5667e-86 7.45871e-89 -5.38419e-85 2.51377e-87 -1.79814e-83 8.21812e-86 -5.83657e-82 2.60608e-84 -1.84157e-80 8.01561e-83 -5.64903e-79 2.3909e-81 -1.68488e-77 6.91482e-80 -4.88676e-76 1.93859e-78 -1.37842e-74 5.26664e-77 -3.78173e-73 1.3859e-75 -1.00923e-71 3.53053e-74 -2.62009e-70 8.70041e-73 -6.61769e-69 2.07214e-71 -1.62627e-67 4.7636e-70 -3.88872e-66 1.05525e-68 -9.04863e-65 2.24742e-67 -2.04904e-63 4.58657e-66 -4.51583e-62 8.92674e-65 -9.6864e-61 1.64449e-63 -2.02217e-59 2.83154e-62 -4.10807e-58 4.44839e-61 -8.11838e-57 6.05015e-60 -1.56004e-55 5.9615e-59 -2.90864e-54 -3.49499e-57 -5.09371e-53 -2.41403e-54 -8.39147e-52 -7.88299e-53 -1.29949e-50 -1.87963e-51 -1.89166e-49 -3.75711e-50 -2.58796e-48 -6.63821e-49 -3.32677e-47 -1.06013e-47 -4.017e-46 -1.54933e-46 -4.55424e-45 -2.08687e-45 -4.84554e-44 -2.60226e-44 -4.83506e-43 -3.01252e-43 -4.52133e-42 -3.24336e-42 -3.9588e-41 -3.25067e-41 -3.24276e-40 -3.03417e-40 -2.4831e-39 -2.6375e-39 -1.77676e-38 -2.1348e-38 -1.18805e-37 -1.609e-37 -7.42505e-37 -1.13006e-36 -4.33404e-36 -7.40627e-36 -4.5349e-35 -2.35437e-35 -4.34643e-202 9.38014e-205 -3.90457e-198 1.6543e-200 -1.12262e-194 5.86872e-197 -1.72523e-191 9.83004e-194 -1.74619e-188 1.03415e-190 -1.29992e-185 7.84167e-188 -7.60796e-183 4.63296e-185 -3.65729e-180 2.23917e-182 -1.4889e-177 9.1479e-180 -5.2492e-175 3.23371e-177 -1.63011e-172 1.00645e-174 -4.5186e-170 2.79542e-172 -1.13e-167 7.00372e-170 -2.57171e-165 1.59676e-167 -5.36516e-163 3.33685e-165 -1.03233e-160 6.43099e-163 -1.84162e-158 1.14904e-160 -3.05973e-156 1.91189e-158 -4.7531e-154 2.97421e-156 -6.92754e-152 4.34065e-154 -9.50197e-150 5.9612e-152 -1.22987e-147 7.72475e-150 -1.50579e-145 9.46797e-148 -1.74775e-143 1.1e-145 -1.92688e-141 1.2138e-143 -2.02146e-139 1.27433e-141 -2.02122e-137 1.27498e-139 -1.92903e-135 1.21743e-137 -1.75965e-133 1.11093e-135 -1.53608e-131 9.69986e-134 -1.28468e-129 8.11271e-132 -1.03044e-127 6.50638e-130 -7.93447e-126 5.00841e-128 -5.87039e-124 3.70364e-126 -4.17665e-122 2.63316e-124 -2.8598e-120 1.80125e-122 -1.8858e-118 1.18637e-120 -1.19839e-116 7.52826e-119 -7.34365e-115 4.60529e-117 -4.34193e-113 2.71736e-115 -2.47823e-111 1.54735e-113 -1.36618e-109 8.50721e-112 -7.27751e-108 4.51787e-110 -3.74761e-106 2.31849e-108 -1.86638e-104 1.15018e-106 -8.99257e-103 5.51779e-105 -4.19335e-101 2.56061e-103 -1.89311e-99 1.14982e-101 -8.27678e-98 4.99733e-100 -3.50547e-96 2.1027e-98 -1.43862e-94 8.56725e-97 -5.72234e-93 3.3808e-95 -2.20663e-91 1.29236e-93 -8.25107e-90 4.78637e-92 -2.9923e-88 1.71768e-90 -1.05268e-86 5.97359e-89 -3.59307e-85 2.01339e-87 -1.19009e-83 6.57724e-86 -3.82565e-82 2.08257e-84 -1.19373e-80 6.39143e-83 -3.61608e-79 1.90121e-81 -1.06353e-77 5.4812e-80 -3.03734e-76 1.53141e-78 -8.42382e-75 4.14595e-77 -2.269e-73 1.08741e-75 -5.93617e-72 2.76249e-74 -1.50853e-70 6.79532e-73 -3.72397e-69 1.61792e-71 -8.93067e-68 3.72671e-70 -2.0807e-66 8.29943e-69 -4.70977e-65 1.78558e-67 -1.03579e-63 3.70745e-66 -2.21327e-62 7.41916e-65 -4.5952e-61 1.42838e-63 -9.27021e-60 2.63926e-62 -1.81718e-58 4.66421e-61 -3.46127e-57 7.84364e-60 -6.40622e-56 1.24505e-58 -1.15209e-54 1.84115e-57 -2.01307e-53 2.46836e-56 -3.41674e-52 2.82851e-55 -5.63115e-51 2.25582e-54 -8.94515e-50 -5.58966e-52 -1.33603e-48 -6.72253e-50 -1.87844e-47 -1.78439e-48 -2.48393e-46 -3.57462e-47 -3.08889e-45 -6.05567e-46 -3.61114e-44 -9.1038e-45 -3.96748e-43 -1.23973e-43 -4.09467e-42 -1.54678e-42 -3.96747e-41 -1.77999e-41 -3.60676e-40 -1.89695e-40 -3.07407e-39 -1.87685e-39 -2.45469e-38 -1.7265e-38 -1.8354e-37 -1.47779e-37 -1.2847e-36 -1.17759e-36 -8.41821e-36 -8.742e-36 -5.16334e-35 -6.05323e-35 -2.96061e-34 -3.91567e-34 -2.3684e-33 -1.58107e-33 -2.84468e-198 6.57524e-201 -2.54567e-194 1.16015e-196 -7.21251e-191 4.06398e-193 -1.08609e-187 6.67745e-190 -1.0734e-184 6.86366e-187 -7.78454e-182 5.07205e-184 -4.43139e-179 2.91538e-181 -2.0696e-176 1.3692e-178 -8.17846e-174 5.43081e-176 -2.79693e-171 1.86259e-173 -8.42056e-169 5.6214e-171 -2.26178e-166 1.51334e-168 -5.47843e-164 3.6735e-166 -1.20713e-161 8.1113e-164 -2.43728e-159 1.64109e-161 -4.53699e-157 3.06108e-159 -7.82735e-155 5.29158e-157 -1.25721e-152 8.51581e-155 -1.88733e-150 1.28086e-152 -2.65726e-148 1.80677e-150 -3.51954e-146 2.39745e-148 -4.3972e-144 3.00064e-146 -5.19461e-142 3.55093e-144 -5.8151e-140 3.98171e-142 -6.18068e-138 4.23881e-140 -6.24823e-136 4.29169e-138 -6.0175e-134 4.13919e-136 -5.52901e-132 3.80835e-134 -4.85321e-130 3.34709e-132 -4.07465e-128 2.8134e-130 -3.27581e-126 2.2642e-128 -2.52441e-124 1.74645e-126 -1.86649e-122 1.2923e-124 -1.32524e-120 9.1815e-123 -9.04313e-119 6.2683e-121 -5.93502e-117 4.11521e-119 -3.74892e-115 2.59977e-117 -2.2806e-113 1.58143e-115 -1.33693e-111 9.26807e-114 -7.55665e-110 5.23585e-112 -4.1203e-108 2.85271e-110 -2.16829e-106 1.49968e-108 -1.10176e-104 7.61021e-107 -5.4078e-103 3.72924e-105 -2.56497e-101 1.76533e-103 -1.17605e-99 8.07524e-102 -5.21437e-98 3.57063e-100 -2.23636e-96 1.52656e-98 -9.28049e-95 6.31207e-97 -3.7274e-93 2.52476e-95 -1.44929e-91 9.77121e-94 -5.45655e-90 3.65963e-92 -1.9897e-88 1.32666e-90 -7.02828e-87 4.65559e-89 -2.40537e-85 1.58175e-87 -7.97733e-84 5.20349e-86 -2.56415e-82 1.65759e-84 -7.98916e-81 5.11341e-83 -2.41315e-79 1.52761e-81 -7.06713e-78 4.41965e-80 -2.00689e-76 1.23832e-78 -5.52666e-75 3.35991e-77 -1.47604e-73 8.82767e-76 -3.82352e-72 2.24567e-74 -9.60684e-71 5.53054e-73 -2.3414e-69 1.31837e-71 -5.53559e-68 3.04128e-70 -1.26959e-66 6.78747e-69 -2.82475e-65 1.46501e-67 -6.09713e-64 3.05683e-66 -1.27673e-62 6.16268e-65 -2.59362e-61 1.19964e-63 -5.11142e-60 2.25296e-62 -9.77236e-59 4.0778e-61 -1.81248e-57 7.10353e-60 -3.26104e-56 1.18884e-58 -5.69161e-55 1.90685e-57 -9.63598e-54 2.92131e-56 -1.5824e-52 4.25323e-55 -2.52041e-51 5.84089e-54 -3.89319e-50 7.46141e-53 -5.83108e-49 8.65681e-52 -8.4662e-48 8.64966e-51 -1.19093e-46 6.13883e-50 -1.61623e-45 -4.51901e-48 -2.06285e-44 -9.32477e-46 -2.47967e-43 -2.17558e-44 -2.8045e-42 -3.76332e-43 -2.98355e-41 -5.49194e-42 -2.98434e-40 -7.09598e-41 -2.80538e-39 -8.29979e-40 -2.47702e-38 -8.88831e-39 -2.05309e-37 -8.77431e-38 -1.59659e-36 -8.01622e-37 -1.16445e-35 -6.79485e-36 -7.96354e-35 -5.35338e-35 -5.10633e-34 -3.92688e-34 -3.06847e-33 -2.68691e-33 -1.72514e-32 -1.71806e-32 -1.02729e-31 -9.04141e-32 -1.20541e-194 2.98231e-197 -1.08492e-190 5.31641e-193 -3.05219e-187 1.85319e-189 -4.53368e-184 3.00707e-186 -4.40193e-181 3.03853e-183 -3.12795e-178 2.20086e-180 -1.74148e-175 1.23753e-177 -7.94416e-173 5.6779e-175 -3.06331e-170 2.19797e-172 -1.02148e-167 7.35168e-170 -2.99671e-165 2.16255e-167 -7.83935e-163 5.67144e-165 -1.84845e-160 1.34055e-162 -3.96316e-158 2.88115e-160 -7.78307e-156 5.6718e-158 -1.40865e-153 1.02901e-155 -2.36197e-151 1.72957e-153 -3.68576e-149 2.70545e-151 -5.37358e-147 3.95388e-149 -7.34481e-145 5.41734e-147 -9.44049e-143 6.97978e-145 -1.14413e-140 8.47928e-143 -1.31059e-138 9.73599e-141 -1.42202e-136 1.05886e-138 -1.46431e-134 1.09288e-136 -1.43355e-132 1.07237e-134 -1.33638e-130 1.00194e-132 -1.188e-128 8.92652e-131 -1.00842e-126 7.59349e-129 -8.1833e-125 6.17501e-127 -6.3556e-123 4.80558e-125 -4.72895e-121 3.58262e-123 -3.37409e-119 2.56097e-121 -2.3105e-117 1.7568e-119 -1.51968e-115 1.15743e-117 -9.60758e-114 7.32882e-116 -5.84229e-112 4.46297e-114 -3.41924e-110 2.61536e-112 -1.9271e-108 1.47571e-110 -1.04649e-106 8.02154e-109 -5.47824e-105 4.2025e-107 -2.76578e-103 2.12297e-105 -1.34725e-101 1.03452e-103 -6.33441e-100 4.86476e-102 -2.87572e-98 2.20829e-100 -1.261e-96 9.67961e-99 -5.34257e-95 4.09821e-97 -2.18763e-93 1.6764e-95 -8.65968e-92 6.62692e-94 -3.31467e-90 2.53215e-92 -1.22712e-88 9.35393e-91 -4.39474e-87 3.34118e-89 -1.52286e-85 1.15418e-87 -5.10673e-84 3.85628e-86 -1.65749e-82 1.24634e-84 -5.2077e-81 3.89686e-83 -1.5841e-79 1.17879e-81 -4.66567e-78 3.45002e-80 -1.3307e-76 9.76983e-79 -3.67558e-75 2.67692e-77 -9.83287e-74 7.09684e-76 -2.54785e-72 1.82038e-74 -6.39486e-71 4.51753e-73 -1.55479e-69 1.08455e-71 -3.66192e-68 2.5186e-70 -8.35517e-67 5.65682e-69 -1.84678e-65 1.22861e-67 -3.95451e-64 2.57984e-66 -8.20319e-63 5.23596e-65 -1.64847e-61 1.02681e-63 -3.20904e-60 1.94498e-62 -6.05133e-59 3.5569e-61 -1.10533e-57 6.27657e-60 -1.95556e-56 1.06801e-58 -3.35094e-55 1.75095e-57 -5.56094e-54 2.76288e-56 -8.93686e-53 4.19058e-55 -1.39074e-51 6.099e-54 -2.09554e-50 8.49852e-53 -3.05704e-49 1.13014e-51 -4.31744e-48 1.42795e-50 -5.90226e-47 1.70227e-49 -7.80931e-46 1.89441e-48 -9.99802e-45 1.9248e-47 -1.23815e-43 1.71185e-46 -1.48291e-42 1.17784e-45 -1.71731e-41 2.60909e-45 -1.87606e-40 -6.10406e-42 -1.93008e-39 -1.41318e-40 -1.86911e-38 -2.17885e-39 -1.70254e-37 -2.7938e-38 -1.45817e-36 -3.1382e-37 -1.1737e-35 -3.17584e-36 -8.87554e-35 -2.93361e-35 -6.30397e-34 -2.49267e-34 -4.20485e-33 -1.95831e-33 -2.63329e-32 -1.42798e-32 -1.54714e-31 -9.69621e-32 -8.51219e-31 -6.14629e-31 -3.63977e-30 -4.37152e-30 -3.19582e-191 8.46122e-194 -2.9244e-187 1.5409e-189 -8.23842e-184 5.39079e-186 -1.21593e-180 8.70231e-183 -1.16756e-177 8.70195e-180 -8.17962e-175 6.21639e-177 -4.48036e-172 3.43967e-174 -2.00777e-169 1.55057e-171 -7.59703e-167 5.89091e-169 -2.48367e-164 1.93212e-166 -7.13869e-162 5.56945e-164 -1.82856e-159 1.43053e-161 -4.21957e-157 3.31005e-159 -8.8498e-155 6.96116e-157 -1.69936e-152 1.34038e-154 -3.0061e-150 2.37769e-152 -4.92457e-148 3.90611e-150 -7.50487e-146 5.96981e-148 -1.06815e-143 8.52132e-146 -1.42474e-141 1.13993e-143 -1.78632e-139 1.43346e-141 -2.11095e-137 1.69901e-139 -2.35684e-135 1.9026e-137 -2.49142e-133 2.0173e-135 -2.49842e-131 2.02909e-133 -2.3809e-129 1.93952e-131 -2.15954e-127 1.76453e-129 -1.867e-125 1.53013e-127 -1.54048e-123 1.26634e-125 -1.21455e-121 1.00141e-123 -9.15985e-120 7.575e-122 -6.61473e-118 5.48642e-120 -4.57806e-116 3.80826e-118 -3.03921e-114 2.53545e-116 -1.9368e-112 1.62033e-114 -1.18567e-110 9.94676e-113 -6.97714e-109 5.86902e-111 -3.94903e-107 3.33053e-109 -2.15102e-105 1.8187e-107 -1.12813e-103 9.56153e-106 -5.6996e-102 4.84185e-104 -2.77515e-100 2.36263e-102 -1.30274e-98 1.11135e-100 -5.89827e-97 5.04113e-99 -2.57651e-95 2.20582e-97 -1.08622e-93 9.31334e-96 -4.42083e-92 3.79534e-94 -1.73743e-90 1.49318e-92 -6.59531e-89 5.67264e-91 -2.41869e-87 2.08139e-89 -8.57101e-86 7.37728e-88 -2.93541e-84 2.52626e-86 -9.71769e-83 8.35904e-85 -3.11013e-81 2.6729e-83 -9.62442e-80 8.26037e-82 -2.88005e-78 2.4674e-80 -8.33494e-77 7.12405e-79 -2.33302e-75 1.9883e-77 -6.31657e-74 5.3643e-76 -1.65432e-72 1.39902e-74 -4.19136e-71 3.52699e-73 -1.02732e-69 8.59499e-72 -2.43604e-68 2.02452e-70 -5.58854e-67 4.60894e-69 -1.24037e-65 1.01401e-67 -2.66341e-64 2.15574e-66 -5.53295e-63 4.4279e-65 -1.11198e-61 8.7856e-64 -2.16192e-60 1.68356e-62 -4.06605e-59 3.11506e-61 -7.39726e-58 5.56365e-60 -1.30169e-56 9.58883e-59 -2.2154e-55 1.59409e-57 -3.64644e-54 2.55508e-56 -5.80391e-53 3.94638e-55 -8.93228e-52 5.86968e-54 -1.32907e-50 8.40045e-53 -1.91172e-49 1.1557e-51 -2.6579e-48 1.52651e-50 -3.57138e-47 1.9329e-49 -4.63723e-46 2.34148e-48 -5.81768e-45 2.70613e-47 -7.05101e-44 2.97282e-46 -8.25473e-43 3.08611e-45 -9.33304e-42 3.0028e-44 -1.01884e-40 2.69676e-43 -1.07353e-39 2.16672e-42 -1.09215e-38 1.45324e-41 -1.07265e-37 6.30398e-41 -1.00421e-36 -1.24237e-38 -8.84664e-36 -4.59001e-37 -7.33907e-35 -6.76666e-36 -5.7286e-34 -7.80381e-35 -4.20603e-33 -7.73482e-34 -2.90455e-32 -6.82554e-33 -1.8862e-31 -5.4725e-32 -1.15142e-30 -4.03055e-31 -6.60095e-30 -2.74667e-30 -3.54736e-29 -1.74015e-29 -1.02659e-28 -1.78228e-28 -5.06212e-188 1.43479e-190 -4.77046e-184 2.70448e-186 -1.35865e-180 9.58813e-183 -2.00865e-177 1.55238e-179 -1.92124e-174 1.54732e-176 -1.33589e-171 1.09746e-173 -7.24464e-169 6.01342e-171 -3.20869e-166 2.67959e-168 -1.19842e-163 1.00501e-165 -3.86354e-161 3.25099e-163 -1.09419e-158 9.23541e-161 -2.75983e-156 2.33632e-158 -6.2675e-154 5.32148e-156 -1.29298e-151 1.10112e-153 -2.44103e-149 2.08522e-151 -4.24357e-147 3.63641e-149 -6.82894e-145 5.8707e-147 -1.0219e-142 8.81395e-145 -1.4276e-140 1.23544e-142 -1.86826e-138 1.62233e-140 -2.29731e-136 2.00186e-138 -2.66145e-134 2.3274e-136 -2.91187e-132 2.55555e-134 -3.01513e-130 2.65586e-132 -2.96043e-128 2.61735e-130 -2.76103e-126 2.45021e-128 -2.44981e-124 2.18228e-126 -2.07089e-122 1.8518e-124 -1.66994e-120 1.49904e-122 -1.28611e-118 1.15898e-120 -9.47e-117 8.56732e-119 -6.67336e-115 6.06098e-117 -4.50454e-113 4.10731e-115 -2.91491e-111 2.66834e-113 -1.80965e-109 1.66311e-111 -1.0786e-107 9.95154e-110 -6.17588e-106 5.72039e-108 -3.39909e-104 3.16064e-106 -1.79922e-102 1.67945e-104 -9.16382e-101 8.58645e-103 -4.49302e-99 4.22576e-101 -2.12153e-97 2.0027e-99 -9.65104e-96 9.14345e-98 -4.23121e-94 4.02282e-96 -1.78838e-92 1.70613e-94 -7.28929e-91 6.97707e-93 -2.86587e-89 2.75184e-91 -1.08712e-87 1.04703e-89 -3.97966e-86 3.84389e-88 -1.40619e-84 1.36186e-86 -4.79681e-83 4.65707e-85 -1.57992e-81 1.53735e-83 -5.02526e-80 4.89959e-82 -1.54374e-78 1.50771e-80 -4.58064e-77 4.48004e-79 -1.31298e-75 1.28552e-77 -3.63582e-74 3.56226e-76 -9.72719e-73 9.53314e-75 -2.5144e-71 2.46385e-73 -6.28002e-70 6.14973e-72 -1.51558e-68 1.48236e-70 -3.53421e-67 3.45056e-69 -7.96349e-66 7.756e-68 -1.73384e-64 1.68332e-66 -3.64753e-63 3.52726e-65 -7.41415e-62 7.13508e-64 -1.45606e-60 1.39314e-62 -2.76266e-59 2.62517e-61 -5.06388e-58 4.77321e-60 -8.96631e-57 8.37267e-59 -1.5335e-55 1.4165e-57 -2.53312e-54 2.31074e-56 -4.04095e-53 3.6336e-55 -6.22473e-52 5.50581e-54 -9.25798e-51 8.03583e-53 -1.32927e-49 1.12919e-51 -1.84227e-48 1.52685e-50 -2.46418e-47 1.9854e-49 -3.18054e-46 2.48084e-48 -3.96064e-45 2.9762e-47 -4.75764e-44 3.4243e-46 -5.5119e-43 3.77343e-45 -6.15767e-42 3.97568e-44 -6.63223e-41 3.99634e-43 -6.88577e-40 3.82039e-42 -6.89006e-39 3.45971e-41 -6.64337e-38 2.94857e-40 -6.17072e-37 2.34046e-39 -5.51989e-36 1.69926e-38 -4.75515e-35 1.08877e-37 -3.94374e-34 5.64916e-37 -3.14908e-33 1.47523e-36 -2.37937e-32 -5.21853e-34 -1.69269e-31 -1.01126e-32 -1.13455e-30 -1.11694e-31 -7.16045e-30 -1.00622e-30 -4.2523e-29 -7.94216e-30 -2.37395e-28 -5.63798e-29 -1.24383e-27 -3.6615e-28 -2.19092e-27 -6.10403e-27 -4.57048e-185 1.38886e-187 -4.50528e-181 2.75232e-183 -1.31163e-177 9.99852e-180 -1.9601e-174 1.63845e-176 -1.88246e-171 1.64086e-173 -1.30862e-168 1.16392e-170 -7.07439e-166 6.35855e-168 -3.117e-163 2.81897e-165 -1.15639e-160 1.05032e-162 -3.69883e-158 3.37138e-160 -1.0384e-155 9.49526e-158 -2.5943e-153 2.37976e-155 -5.83205e-151 5.36688e-153 -1.19032e-148 1.09897e-150 -2.22213e-146 2.05851e-148 -3.81806e-144 3.54925e-146 -6.06997e-142 5.66285e-144 -8.96962e-140 8.39893e-142 -1.23686e-137 1.16256e-139 -1.59705e-135 1.50696e-137 -1.93681e-133 1.83487e-135 -2.21203e-131 2.10418e-133 -2.38488e-129 2.27809e-131 -2.43242e-127 2.33343e-129 -2.35146e-125 2.2656e-127 -2.1583e-123 2.08873e-125 -1.8838e-121 1.83132e-123 -1.56574e-119 1.52911e-121 -1.24084e-117 1.21748e-119 -9.38717e-116 9.25404e-118 -6.78626e-114 6.72215e-116 -4.69272e-112 4.67098e-114 -3.1067e-110 3.10751e-112 -1.97063e-108 1.98093e-110 -1.19857e-106 1.21087e-108 -6.99461e-105 7.10208e-107 -3.91902e-103 3.99946e-105 -2.10936e-101 2.16365e-103 -1.0912e-99 1.12503e-101 -5.42811e-98 5.62516e-100 -2.59758e-96 2.70573e-98 -1.1963e-94 1.25251e-96 -5.30411e-93 5.58186e-95 -2.26483e-91 2.39559e-93 -9.31609e-90 9.90399e-92 -3.69254e-88 3.94532e-90 -1.41064e-86 1.51471e-88 -5.19518e-85 5.60581e-87 -1.84486e-83 2.00028e-85 -6.31797e-82 6.88267e-84 -2.08695e-80 2.28398e-82 -6.65007e-79 7.31056e-81 -2.04441e-77 2.25721e-79 -6.06429e-76 6.72346e-78 -1.7358e-74 1.93213e-76 -4.79461e-73 5.35703e-75 -1.2781e-71 1.43306e-73 -3.28814e-70 3.69884e-72 -8.16434e-69 9.21132e-71 -1.95651e-67 2.21323e-69 -4.52515e-66 5.13051e-68 -1.01011e-64 1.14737e-66 -2.1761e-63 2.47531e-65 -4.52425e-62 5.15107e-64 -9.07725e-61 1.03387e-62 -1.75742e-59 2.00119e-61 -3.28309e-58 3.73514e-60 -5.91756e-57 6.72132e-59 -1.029e-55 1.1659e-57 -1.72609e-54 1.94915e-56 -2.79277e-53 3.1399e-55 -4.35795e-52 4.87274e-54 -6.55769e-51 7.28289e-53 -9.51441e-50 1.04806e-51 -1.3308e-48 1.4517e-50 -1.79423e-47 1.93477e-49 -2.33136e-46 2.48009e-48 -2.91897e-45 3.05631e-47 -3.52096e-44 3.61911e-46 -4.09093e-43 4.11555e-45 -4.57747e-42 4.49142e-44 -4.93151e-41 4.70036e-43 -5.11434e-40 4.71262e-42 -5.10452e-39 4.52154e-41 -4.90204e-38 4.14581e-40 -4.52851e-37 3.62646e-39 -4.02341e-36 3.0197e-38 -3.43717e-35 2.38607e-37 -2.82283e-34 1.78162e-36 -2.22818e-33 1.25041e-35 -1.68995e-32 8.1582e-35 -1.23114e-31 4.87492e-34 -8.61562e-31 2.58507e-33 -5.78891e-30 1.12447e-32 -3.73416e-29 2.84407e-32 -2.28491e-28 -3.51222e-30 -1.31603e-27 -6.80656e-29 -7.13511e-27 -6.38109e-28 -3.63706e-26 -4.76434e-27 -3.1114e-26 -1.7397e-25 -2.20881e-182 7.21682e-185 -2.32184e-178 1.53273e-180 -6.9998e-175 5.77955e-177 -1.06833e-171 9.68475e-174 -1.03936e-168 9.83138e-171 -7.28131e-166 7.02981e-168 -3.95293e-163 3.85716e-165 -1.74476e-160 1.71316e-162 -6.47278e-158 6.38331e-160 -2.06754e-155 2.0463e-157 -5.79018e-153 5.74992e-155 -1.44181e-150 1.43654e-152 -3.22813e-148 3.22727e-150 -6.55779e-146 6.57908e-148 -1.21781e-143 1.22622e-145 -2.08037e-141 2.10268e-143 -3.28668e-139 3.33498e-141 -4.82411e-137 4.91493e-139 -6.60446e-135 6.75713e-137 -8.46292e-133 8.69617e-135 -1.01809e-130 1.05083e-132 -1.15291e-128 1.19547e-130 -1.23194e-126 1.28347e-128 -1.24478e-124 1.30315e-126 -1.1916e-122 1.25369e-124 -1.08256e-120 1.14476e-122 -9.34808e-119 9.93677e-121 -7.68339e-117 8.21075e-119 -6.01855e-115 6.46661e-117 -4.49821e-113 4.85988e-115 -3.21107e-111 3.48884e-113 -2.19148e-109 2.39473e-111 -1.43112e-107 1.573e-109 -8.94984e-106 9.89548e-108 -5.3637e-104 5.96617e-106 -3.08256e-102 3.44975e-104 -1.69988e-100 1.91414e-102 -8.99957e-99 1.01974e-100 -4.57658e-97 5.21859e-99 -2.23653e-95 2.56659e-97 -1.05075e-93 1.21361e-95 -4.7477e-92 5.51926e-94 -2.06382e-90 2.41495e-92 -8.63377e-89 1.01693e-90 -3.47686e-87 4.12237e-89 -1.34816e-85 1.60909e-87 -5.03454e-84 6.04899e-86 -1.81103e-82 2.19047e-84 -6.27648e-81 7.64207e-83 -2.09601e-79 2.56902e-81 -6.74554e-78 8.32256e-80 -2.09234e-76 2.59849e-78 -6.25573e-75 7.81975e-77 -1.80297e-73 2.26829e-75 -5.00938e-72 6.34241e-74 -1.34179e-70 1.70951e-72 -3.46499e-69 4.44173e-71 -8.62661e-68 1.11248e-69 -2.07061e-66 2.68586e-68 -4.79146e-65 6.25036e-67 -1.06891e-63 1.40196e-65 -2.29877e-62 3.03072e-64 -4.76555e-61 6.31395e-63 -9.52284e-60 1.26753e-61 -1.83411e-58 2.45173e-60 -3.40449e-57 4.56867e-59 -6.08989e-56 8.2007e-58 -1.04967e-54 1.41772e-56 -1.74315e-53 2.36015e-55 -2.78872e-52 3.78284e-54 -4.29739e-51 5.83635e-53 -6.37788e-50 8.66596e-52 -9.11498e-49 1.23807e-50 -1.25422e-47 1.70144e-49 -1.66136e-46 2.2486e-48 -2.11809e-45 2.85696e-47 -2.5986e-44 3.48862e-46 -3.06737e-43 4.09267e-45 -3.48287e-42 4.61102e-44 -3.80332e-41 4.98702e-43 -3.99347e-40 5.17531e-42 -4.03091e-39 5.1506e-41 -3.9104e-38 4.91303e-40 -3.64501e-37 4.48872e-39 -3.26384e-36 3.92506e-38 -2.8067e-35 3.28189e-37 -2.31732e-34 2.62128e-36 -1.83645e-33 1.99723e-35 -1.39654e-32 1.44955e-34 -1.01881e-31 1.00033e-33 -7.12824e-31 6.54613e-33 -4.78202e-30 4.05109e-32 -3.07512e-29 2.36004e-31 -1.89497e-28 1.28554e-30 -1.11851e-27 6.47058e-30 -6.32326e-27 2.94409e-29 -3.42243e-26 1.15202e-28 -1.77223e-25 3.34146e-28 -8.7672e-25 1.34598e-28 -1.4215e-25 -4.07545e-24 -5.36781e-180 1.89525e-182 -6.17234e-176 4.42309e-178 -1.95765e-172 1.75842e-174 -3.08846e-169 3.04927e-171 -3.07458e-166 3.16908e-168 -2.18989e-163 2.30433e-165 -1.20356e-160 1.28005e-162 -5.36189e-158 5.73841e-160 -2.00342e-155 2.15347e-157 -6.43463e-153 6.94175e-155 -1.80968e-150 1.95898e-152 -4.52074e-148 4.91056e-150 -1.01455e-145 1.10595e-147 -2.06431e-143 2.25865e-145 -3.83716e-141 4.21473e-143 -6.55735e-139 7.23185e-141 -1.03577e-136 1.14716e-138 -1.51921e-134 1.69002e-136 -2.0774e-132 2.32158e-134 -2.65754e-130 2.98405e-132 -3.19023e-128 3.59982e-130 -3.60341e-126 4.08674e-128 -3.83878e-124 4.37653e-126 -3.86531e-122 4.4306e-124 -3.68566e-120 4.24818e-122 -3.33372e-118 3.86448e-120 -2.86479e-116 3.34037e-118 -2.34214e-114 2.74738e-116 -1.82403e-112 2.15282e-114 -1.35472e-110 1.609e-112 -9.60542e-109 1.14819e-110 -6.50785e-107 7.83041e-109 -4.21683e-105 5.10791e-107 -2.61518e-103 3.18951e-105 -1.55343e-101 1.90782e-103 -8.84368e-100 1.09385e-101 -4.8282e-98 6.01507e-100 -2.52917e-96 3.17407e-98 -1.27181e-94 1.60804e-96 -6.142e-93 7.82466e-95 -2.84979e-91 3.65846e-93 -1.27084e-89 1.64418e-91 -5.4485e-88 7.10482e-90 -2.24648e-86 2.95282e-88 -8.91003e-85 1.18062e-86 -3.4002e-83 4.54221e-85 -1.24872e-81 1.68188e-83 -4.41409e-80 5.99469e-82 -1.50209e-78 2.05705e-80 -4.92135e-77 6.79646e-79 -1.55258e-75 2.16233e-77 -4.71676e-74 6.62518e-76 -1.38001e-72 1.95494e-74 -3.88855e-71 5.55582e-73 -1.0553e-69 1.52072e-71 -2.75839e-68 4.00901e-70 -6.94422e-67 1.01791e-68 -1.68374e-65 2.48913e-67 -3.93184e-64 5.8619e-66 -8.84238e-63 1.32939e-64 -1.91501e-61 2.90309e-63 -3.99366e-60 6.10414e-62 -8.01932e-59 1.23566e-60 -1.55035e-57 2.4079e-59 -2.88542e-56 4.51635e-58 -5.16922e-55 8.15245e-57 -8.9131e-54 1.41604e-55 -1.47899e-52 2.36635e-54 -2.36143e-51 3.80389e-53 -3.62744e-50 5.88086e-52 -5.3601e-49 8.74247e-51 -7.61773e-48 1.24945e-49 -1.04109e-46 1.71632e-48 -1.368e-45 2.26554e-47 -1.72798e-44 2.87299e-46 -2.09783e-43 3.49922e-45 -2.44733e-42 4.09227e-44 -2.74295e-41 4.59392e-43 -2.95295e-40 4.94872e-42 -3.05288e-39 5.11382e-41 -3.03028e-38 5.06739e-40 -2.88715e-37 4.81326e-39 -2.63976e-36 4.38052e-38 -2.31556e-35 3.81807e-37 -1.9482e-34 3.18546e-36 -1.57173e-33 2.54254e-35 -1.21554e-32 1.94026e-34 -9.00909e-32 1.41464e-33 -6.3971e-31 9.8468e-33 -4.35049e-30 6.53827e-32 -2.83274e-29 4.1375e-31 -1.76538e-28 2.49281e-30 -1.05267e-27 1.42797e-29 -6.00391e-27 7.76373e-29 -3.27464e-26 3.99405e-28 -1.70776e-25 1.93726e-27 -8.5157e-25 8.81319e-27 -4.0603e-24 3.72041e-26 -1.85151e-23 1.43911e-25 4.98495e-25 -8.0823e-23 -6.02266e-178 2.31845e-180 -7.85593e-174 6.1559e-176 -2.6749e-170 2.63146e-172 -4.42632e-167 4.79018e-169 -4.56209e-164 5.15592e-166 -3.33705e-161 3.85035e-163 -1.87346e-158 2.18466e-160 -8.49421e-156 9.96626e-158 -3.22139e-153 3.79586e-155 -1.04809e-150 1.23943e-152 -2.98129e-148 3.53767e-150 -7.52325e-146 8.95847e-148 -1.70379e-143 2.03625e-145 -3.49532e-141 4.19352e-143 -6.54575e-139 7.88531e-141 -1.12621e-136 1.36251e-138 -1.7899e-134 2.17523e-136 -2.64001e-132 3.22351e-134 -3.62824e-130 4.45201e-132 -4.66252e-128 5.75048e-130 -5.61965e-126 6.96792e-128 -6.36997e-124 7.94192e-126 -6.80685e-122 8.53517e-124 -6.87165e-120 8.66738e-122 -6.56614e-118 8.33258e-120 -5.9489e-116 7.59677e-118 -5.11808e-114 6.57814e-116 -4.18721e-112 5.41755e-114 -3.26161e-110 4.24885e-112 -2.42172e-108 3.17687e-110 -1.71571e-106 2.26691e-108 -1.1609e-104 1.54517e-106 -7.50845e-103 1.00692e-104 -4.64556e-101 6.27801e-103 -2.75146e-99 3.74765e-101 -1.56099e-97 2.14328e-99 -8.48783e-96 1.17498e-97 -4.42568e-94 6.17787e-96 -2.21388e-92 3.11678e-94 -1.06293e-90 1.50944e-92 -4.89997e-89 7.01997e-91 -2.16957e-87 3.13624e-89 -9.22945e-86 1.34639e-87 -3.77329e-84 5.55565e-86 -1.48289e-82 2.20397e-84 -5.60319e-81 8.40765e-83 -2.036e-79 3.08473e-81 -7.1155e-78 1.08868e-79 -2.39207e-76 3.6964e-78 -7.73627e-75 1.20753e-76 -2.40722e-73 3.79571e-75 -7.207e-72 1.14813e-73 -2.07619e-70 3.342e-72 -5.75529e-69 9.36159e-71 -1.53517e-67 2.52361e-69 -3.94034e-66 6.54662e-68 -9.73167e-65 1.63425e-66 -2.3126e-63 3.92563e-65 -5.28752e-62 9.07317e-64 -1.16308e-60 2.0176e-62 -2.46118e-59 4.31614e-61 -5.00966e-58 8.8817e-60 -9.80756e-57 1.75787e-58 -1.84652e-55 3.34586e-57 -3.34295e-54 6.12353e-56 -5.8188e-53 1.07746e-54 -9.73648e-52 1.82235e-53 -1.56592e-50 2.96225e-52 -2.4203e-49 4.62691e-51 -3.59439e-48 6.94315e-50 -5.12822e-47 1.00076e-48 -7.0277e-46 1.38522e-47 -9.24879e-45 1.84089e-46 -1.16869e-43 2.34832e-45 -1.41765e-42 2.87477e-44 -1.65046e-41 3.37644e-43 -1.84382e-40 3.80374e-42 -1.97613e-39 4.10905e-41 -2.0314e-38 4.2553e-40 -2.00246e-37 4.22327e-39 -1.89241e-36 4.01572e-38 -1.71414e-35 3.65709e-37 -1.48782e-34 3.18873e-36 -1.23714e-33 2.66106e-35 -9.85231e-33 2.12463e-34 -7.51282e-32 1.6223e-33 -5.4841e-31 1.18419e-32 -3.83128e-30 8.2599e-32 -2.56107e-29 5.50327e-31 -1.63777e-28 3.50109e-30 -1.00176e-27 2.12611e-29 -5.85981e-27 1.23198e-28 -3.27759e-26 6.80864e-28 -1.75275e-25 3.58638e-27 -8.96029e-25 1.79854e-26 -4.37817e-24 8.57479e-26 -2.04433e-23 3.88049e-25 -9.11988e-23 1.66323e-24 -3.88558e-22 6.72815e-24 2.56114e-23 -1.58051e-21 -2.8272e-176 1.20574e-178 -4.43048e-172 3.84148e-174 -1.66488e-168 1.81262e-170 -2.94364e-165 3.52595e-167 -3.18595e-162 3.98485e-164 -2.42153e-159 3.09132e-161 -1.40294e-156 1.80951e-158 -6.5334e-154 8.47628e-156 -2.53642e-151 3.30402e-153 -8.42663e-149 1.10143e-150 -2.44291e-146 3.20372e-148 -6.27324e-144 8.25544e-146 -1.44392e-141 1.90717e-143 -3.00748e-139 3.98801e-141 -5.71306e-137 7.60754e-139 -9.96268e-135 1.33256e-136 -1.60369e-132 2.15515e-134 -2.39414e-130 3.23341e-132 -3.32833e-128 4.51854e-130 -4.32402e-126 5.90231e-128 -5.26593e-124 7.22892e-126 -6.02799e-122 8.32403e-124 -6.50168e-120 9.03333e-122 -6.62164e-118 9.25862e-120 -6.38001e-116 8.97961e-118 -5.82557e-114 8.25514e-116 -5.04875e-112 7.20467e-114 -4.15872e-110 5.97762e-112 -3.25993e-108 4.72071e-110 -2.43456e-106 3.55255e-108 -1.73395e-104 2.55018e-106 -1.17886e-102 1.74783e-104 -7.65701e-101 1.14469e-102 -4.75505e-99 7.16915e-101 -2.82519e-97 4.29667e-99 -1.60698e-95 2.46577e-97 -8.75552e-94 1.35573e-95 -4.5718e-92 7.14516e-94 -2.28888e-90 3.61134e-92 -1.09918e-88 1.75113e-90 -5.06501e-87 8.14933e-89 -2.24029e-85 3.641e-87 -9.51406e-84 1.56221e-85 -3.88039e-82 6.43858e-84 -1.5203e-80 2.54957e-82 -5.72286e-79 9.70185e-81 -2.07013e-77 3.54832e-79 -7.19689e-76 1.24747e-77 -2.40493e-74 4.21627e-76 -7.7252e-73 1.3701e-74 -2.38559e-71 4.28082e-73 -7.08238e-70 1.2861e-71 -2.0215e-68 3.7154e-70 -5.54726e-67 1.03209e-68 -1.46349e-65 2.7568e-67 -3.71192e-64 7.08034e-66 -9.05069e-63 1.74841e-64 -2.12136e-61 4.15088e-63 -4.77927e-60 9.47356e-62 -1.03487e-58 2.07835e-60 -2.15349e-57 4.38236e-59 -4.30606e-56 8.88033e-58 -8.27263e-55 1.7291e-56 -1.52677e-53 3.23459e-55 -2.70647e-52 5.81238e-54 -4.60748e-51 1.00312e-52 -7.5315e-50 1.66238e-51 -1.18189e-48 2.64491e-50 -1.78022e-47 4.03926e-49 -2.57326e-46 5.91988e-48 -3.56878e-45 8.32432e-47 -4.7478e-44 1.12282e-45 -6.05773e-43 1.45243e-44 -7.41101e-42 1.80136e-43 -8.69157e-41 2.14149e-42 -9.76959e-40 2.43969e-41 -1.05224e-38 2.66284e-40 -1.08571e-37 2.78376e-39 -1.07294e-36 2.78666e-38 -1.01533e-35 2.67045e-37 -9.19838e-35 2.44919e-36 -7.97627e-34 2.14923e-35 -6.61889e-33 1.80407e-34 -5.25516e-32 1.44818e-33 -3.9914e-31 1.11144e-32 -2.89956e-30 8.15342e-32 -2.01437e-29 5.71591e-31 -1.33809e-28 3.82859e-30 -8.49767e-28 2.4498e-29 -5.15837e-27 1.49728e-28 -2.99252e-26 8.73964e-28 -1.6587e-25 4.87078e-27 -8.78176e-25 2.59084e-26 -4.43949e-24 1.31448e-25 -2.1422e-23 6.35603e-25 -9.86253e-23 2.92628e-24 -4.33036e-22 1.28144e-23 -1.81247e-21 5.33055e-23 -7.22799e-21 2.10324e-22 7.86574e-22 -2.74509e-20 -4.74056e-175 2.31363e-177 -9.93801e-171 9.72518e-173 -4.29634e-167 5.26263e-169 -8.32436e-164 1.12017e-165 -9.63481e-161 1.35239e-162 -7.71973e-158 1.10499e-159 -4.67176e-155 6.75119e-157 -2.25854e-152 3.28094e-154 -9.06277e-150 1.3212e-151 -3.10208e-147 4.53601e-149 -9.24286e-145 1.35565e-146 -2.43479e-142 3.58278e-144 -5.73998e-140 8.4765e-142 -1.22295e-137 1.81302e-139 -2.37376e-135 3.53395e-137 -4.22564e-133 6.31949e-135 -6.93775e-131 1.04257e-132 -1.0556e-128 1.59445e-130 -1.4946e-126 2.26978e-128 -1.97629e-124 3.01841e-126 -2.44816e-122 3.76142e-124 -2.84895e-120 4.4045e-122 -3.12206e-118 4.85811e-120 -3.22887e-116 5.05826e-118 -3.15751e-114 4.98118e-116 -2.92464e-112 4.64735e-114 -2.56982e-110 4.11425e-112 -2.14505e-108 3.4609e-110 -1.70303e-106 2.76976e-108 -1.28749e-104 2.11124e-106 -9.27778e-103 1.53433e-104 -6.37856e-101 1.0641e-102 -4.18735e-99 7.04836e-101 -2.62676e-97 4.46234e-99 -1.57566e-95 2.70209e-97 -9.04328e-94 1.5659e-95 -4.96883e-92 8.6895e-94 -2.61494e-90 4.61964e-92 -1.31869e-88 2.35394e-90 -6.37486e-87 1.15009e-88 -2.95527e-85 5.38974e-87 -1.3142e-83 2.4235e-85 -5.60765e-82 1.04586e-83 -2.29648e-80 4.33278e-82 -9.02808e-79 1.7235e-80 -3.40767e-77 6.58394e-79 -1.23513e-75 2.41575e-77 -4.29947e-74 8.5146e-76 -1.43749e-72 2.88312e-74 -4.6165e-71 9.37943e-73 -1.42416e-69 2.93176e-71 -4.22043e-68 8.80494e-70 -1.20145e-66 2.54082e-68 -3.28551e-65 7.04472e-67 -8.6304e-64 1.87664e-65 -2.17755e-62 4.80286e-64 -5.27698e-61 1.18084e-62 -1.22813e-59 2.78881e-61 -2.74476e-58 6.32609e-60 -5.88996e-57 1.37813e-58 -1.21343e-55 2.88288e-57 -2.39965e-54 5.79e-56 -4.55454e-53 1.11629e-54 -8.29532e-52 2.06563e-53 -1.44956e-50 3.6679e-52 -2.42981e-49 6.24873e-51 -3.90621e-48 1.02114e-49 -6.02136e-47 1.60031e-48 -8.89811e-46 2.40464e-47 -1.26028e-44 3.46357e-46 -1.71043e-43 4.78102e-45 -2.22388e-42 6.32315e-44 -2.76939e-41 8.01039e-43 -3.30232e-40 9.71785e-42 -3.76976e-39 1.12869e-40 -4.11876e-38 1.25473e-39 -4.30603e-37 1.33472e-38 -4.30673e-36 1.35827e-37 -4.11985e-35 1.32199e-36 -3.76866e-34 1.2303e-35 -3.29589e-33 1.09455e-34 -2.7552e-32 9.30683e-34 -2.2011e-31 7.56153e-33 -1.68016e-30 5.86899e-32 -1.22517e-29 4.35078e-31 -8.5326e-29 3.07983e-30 -5.67428e-28 2.08136e-29 -3.60224e-27 1.34258e-28 -2.18244e-26 8.26451e-28 -1.26146e-25 4.85388e-27 -6.95356e-25 2.71914e-26 -3.65388e-24 1.45234e-25 -1.82941e-23 7.39179e-25 -8.72277e-23 3.58234e-24 -3.95865e-22 1.65183e-23 -1.70896e-21 7.24041e-23 -7.01339e-21 3.0139e-22 -2.73421e-20 1.19006e-21 -1.01186e-19 4.45293e-21 1.57843e-20 -3.55189e-19 -2.05666e-174 1.26801e-176 -7.69147e-170 8.81747e-172 -4.11262e-166 5.82711e-168 -9.07058e-163 1.40434e-164 -1.15123e-159 1.85337e-161 -9.90682e-157 1.62287e-158 -6.35714e-154 1.04963e-155 -3.23135e-151 5.35635e-153 -1.35532e-148 2.25229e-150 -4.82845e-146 8.04202e-148 -1.49262e-143 2.49209e-145 -4.06928e-141 6.81309e-143 -9.90873e-139 1.66434e-140 -2.17702e-136 3.67001e-138 -4.35155e-134 7.3656e-136 -7.96796e-132 1.35468e-133 -1.34424e-129 2.29643e-131 -2.09975e-127 3.60561e-129 -3.04964e-125 5.26551e-127 -4.13337e-123 7.17823e-125 -5.24467e-121 9.16409e-123 -6.24748e-119 1.09867e-120 -7.00379e-117 1.23998e-118 -7.40548e-115 1.32034e-116 -7.39962e-113 1.32898e-114 -6.99931e-111 1.26667e-112 -6.2772e-109 1.14498e-110 -5.345e-107 9.82939e-109 -4.32659e-105 8.02399e-107 -3.3331e-103 6.23562e-105 -2.44624e-101 4.6178e-103 -1.71196e-99 3.26178e-101 -1.14339e-97 2.19937e-99 -7.29326e-96 1.41673e-97 -4.446e-94 8.72392e-96 -2.59179e-92 5.13852e-94 -1.4456e-90 2.89667e-92 -7.71841e-89 1.56353e-90 -3.94662e-87 8.08447e-89 -1.93335e-85 4.00589e-87 -9.07678e-84 1.90283e-85 -4.08526e-82 8.66727e-84 -1.76314e-80 3.78672e-82 -7.29853e-79 1.58723e-80 -2.89832e-77 6.38407e-79 -1.10431e-75 2.46437e-77 -4.03766e-74 9.1311e-76 -1.41679e-72 3.24784e-74 -4.77143e-71 1.10906e-72 -1.54236e-69 3.63599e-71 -4.78549e-68 1.1445e-69 -1.42519e-66 3.45884e-68 -4.07399e-65 1.00361e-66 -1.11776e-63 2.79577e-65 -2.94331e-62 7.47677e-64 -7.43784e-61 1.91942e-62 -1.8036e-59 4.72963e-61 -4.19631e-58 1.11851e-59 -9.36639e-57 2.53832e-58 -2.00536e-55 5.52698e-57 -4.11773e-54 1.1545e-55 -8.10766e-53 2.31307e-54 -1.53047e-51 4.44418e-53 -2.76923e-50 8.18682e-52 -4.80188e-49 1.44567e-50 -7.97785e-48 2.44656e-49 -1.26966e-46 3.96713e-48 -1.93514e-45 6.1621e-47 -2.82397e-44 9.16657e-46 -3.94483e-43 1.30557e-44 -5.2736e-42 1.77992e-43 -6.74514e-41 2.32218e-42 -8.25221e-40 2.89848e-41 -9.65461e-39 3.46027e-40 -1.07987e-37 3.95003e-39 -1.15445e-36 4.31045e-38 -1.17929e-35 4.49532e-37 -1.1508e-34 4.47913e-36 -1.07248e-33 4.26285e-35 -9.54249e-33 3.87394e-34 -8.1038e-32 3.36065e-33 -6.56648e-31 2.78211e-32 -5.07514e-30 2.19717e-31 -3.74008e-29 1.65479e-30 -2.62704e-28 1.1881e-29 -1.75803e-27 8.12887e-29 -1.12041e-26 5.29799e-28 -6.79681e-26 3.28797e-27 -3.92278e-25 1.94227e-26 -2.15277e-24 1.09159e-25 -1.12266e-23 5.83381e-25 -5.55969e-23 2.96271e-24 -2.61271e-22 1.42861e-23 -1.16419e-21 6.53457e-23 -4.91448e-21 2.83238e-22 -1.96355e-20 1.16203e-21 -7.41771e-20 4.50672e-21 -2.64652e-19 1.65004e-20 -8.90672e-19 5.69697e-20 1.85382e-19 -2.82358e-18 2.86643e-180 5.89668e-177 -1.59112e-169 2.33972e-171 -1.24024e-165 2.14428e-167 -3.33037e-162 6.18703e-164 -4.81961e-159 9.23038e-161 -4.57504e-156 8.86777e-158 -3.17631e-153 6.18224e-155 -1.72539e-150 3.36225e-152 -7.66939e-148 1.49519e-149 -2.87856e-145 5.61539e-147 -9.33397e-143 1.82295e-144 -2.66032e-140 5.20497e-142 -6.75455e-138 1.32474e-139 -1.54412e-135 3.03753e-137 -3.20584e-133 6.32882e-135 -6.08806e-131 1.20676e-132 -1.06387e-128 2.11831e-130 -1.71938e-126 3.44048e-128 -2.58113e-124 5.19257e-126 -3.61272e-122 7.30969e-124 -4.72998e-120 9.62893e-122 -5.8093e-118 1.19029e-119 -6.70999e-116 1.38425e-117 -7.30495e-114 1.51782e-115 -7.51049e-112 1.57226e-113 -7.30533e-110 1.54133e-111 -6.73311e-108 1.43221e-109 -5.88854e-106 1.26321e-107 -4.89289e-104 1.05887e-105 -3.86708e-102 8.44515e-104 -2.91007e-100 6.41517e-102 -2.08703e-98 4.64563e-100 -1.42763e-96 3.20979e-98 -9.32157e-95 2.11751e-96 -5.81352e-93 1.3347e-94 -3.46519e-91 8.04286e-93 -1.97509e-89 4.63596e-91 -1.07703e-87 2.55728e-89 -5.62125e-86 1.35056e-87 -2.80911e-84 6.83143e-86 -1.34456e-82 3.31065e-84 -6.16584e-81 1.53762e-82 -2.70965e-79 6.84578e-81 -1.1414e-77 2.92235e-79 -4.60939e-76 1.19634e-77 -1.78481e-74 4.69736e-76 -6.6273e-73 1.76921e-74 -2.36e-71 6.39253e-73 -8.06018e-70 2.21594e-71 -2.64027e-68 7.36968e-70 -8.29519e-67 2.35153e-68 -2.4996e-65 7.19876e-67 -7.22377e-64 2.11423e-65 -2.00207e-62 5.95672e-64 -5.32085e-61 1.60986e-62 -1.35589e-59 4.17305e-61 -3.3125e-58 1.03741e-59 -7.75741e-57 2.47295e-58 -1.74115e-55 5.65176e-57 -3.74491e-54 1.23817e-55 -7.71701e-53 2.59971e-54 -1.52326e-51 5.23032e-53 -2.87952e-50 1.00809e-51 -5.21184e-49 1.86095e-50 -9.02992e-48 3.28953e-49 -1.49724e-46 5.56659e-48 -2.37521e-45 9.01544e-47 -3.60413e-44 1.39705e-45 -5.22961e-43 2.07082e-44 -7.25418e-42 2.93533e-43 -9.61682e-41 3.97767e-42 -1.21807e-39 5.15146e-41 -1.47358e-38 6.3742e-40 -1.70217e-37 7.53321e-39 -1.8768e-36 8.50063e-38 -1.97454e-35 9.15572e-37 -1.98151e-34 9.40917e-36 -1.89601e-33 9.22292e-35 -1.72913e-32 8.61937e-34 -1.50235e-31 7.67708e-33 -1.24303e-30 6.51392e-32 -9.78911e-30 5.26279e-31 -7.334e-29 4.04675e-30 -5.22442e-28 2.95998e-29 -3.53659e-27 2.0584e-28 -2.27361e-26 1.36014e-27 -1.38723e-25 8.53492e-27 -8.02742e-25 5.08298e-26 -4.40227e-24 2.87122e-25 -2.28612e-23 1.53723e-24 -1.12323e-22 7.79437e-24 -5.21652e-22 3.73925e-23 -2.28775e-21 1.69543e-22 -9.4643e-21 7.25692e-22 -3.68906e-20 2.9284e-21 -1.35313e-19 1.11245e-20 -4.6639e-19 3.97203e-20 -1.5082e-18 1.33089e-19 -4.56741e-18 4.17884e-19 1.2282e-18 -1.29254e-17 1.9187e-180 3.08619e-178 -3.32468e-170 1.12491e-171 -8.93004e-166 2.16825e-167 -3.43974e-162 8.38187e-164 -6.11617e-159 1.49487e-160 -6.6951e-156 1.63159e-157 -5.18433e-153 1.25674e-154 -3.079e-150 7.42417e-152 -1.47718e-147 3.54642e-149 -5.93135e-145 1.41973e-146 -2.04452e-142 4.88559e-144 -6.16516e-140 1.47255e-141 -1.65009e-137 3.94361e-139 -3.96494e-135 9.49041e-137 -8.63224e-133 2.07102e-134 -1.7157e-130 4.1288e-132 -3.1327e-128 7.56654e-130 -5.28264e-126 1.28138e-127 -8.2642e-124 2.01423e-125 -1.20408e-121 2.95025e-123 -1.63937e-119 4.03999e-121 -2.09191e-117 5.18728e-119 -2.50828e-115 6.26111e-117 -2.83249e-113 7.12029e-115 -3.01852e-111 7.64455e-113 -3.04114e-109 7.76226e-111 -2.90128e-107 7.46618e-109 -2.62468e-105 6.81242e-107 -2.25452e-103 5.90407e-105 -1.84086e-101 4.8657e-103 -1.43029e-99 3.81706e-101 -1.05845e-97 2.85301e-99 -7.46649e-96 2.03343e-97 -5.02447e-94 1.38302e-95 -3.22762e-92 8.98241e-94 -1.98041e-90 5.5742e-92 -1.16128e-88 3.30695e-90 -6.51089e-87 1.87645e-88 -3.49177e-85 1.01881e-86 -1.79191e-83 5.2949e-85 -8.80221e-82 2.63495e-83 -4.13997e-80 1.25591e-81 -1.86482e-78 5.73491e-80 -8.04642e-77 2.50935e-78 -3.32634e-75 1.0523e-76 -1.31761e-73 4.22981e-75 -5.00161e-72 1.62986e-73 -1.81957e-70 6.02091e-72 -6.34425e-69 2.13244e-70 -2.12009e-67 7.24106e-69 -6.79029e-66 2.35742e-67 -2.08433e-64 7.35814e-66 -6.13147e-63 2.20177e-64 -1.72841e-61 6.31562e-63 -4.66845e-60 1.73643e-61 -1.20805e-58 4.57554e-60 -2.99449e-57 1.15535e-58 -7.10915e-56 2.7951e-57 -1.61618e-54 6.4777e-56 -3.51765e-53 1.4378e-54 -7.32852e-52 3.05589e-53 -1.4611e-50 6.21785e-52 -2.78701e-49 1.21088e-50 -5.08487e-48 2.25637e-49 -8.87125e-47 4.02206e-48 -1.47956e-45 6.85638e-47 -2.35824e-44 1.11743e-45 -3.59105e-43 1.74055e-44 -5.2226e-42 2.59035e-43 -7.25165e-41 3.68203e-42 -9.60982e-40 4.99712e-41 -1.21495e-38 6.47284e-40 -1.46484e-37 7.99916e-39 -1.68357e-36 9.42739e-38 -1.84369e-35 1.05913e-36 -1.92288e-34 1.13376e-35 -1.90902e-33 1.15583e-34 -1.80315e-32 1.12164e-33 -1.61945e-31 1.03553e-32 -1.38217e-30 9.0902e-32 -1.12031e-29 7.58267e-31 -8.61805e-29 6.00664e-30 -6.28733e-28 4.5155e-29 -4.347e-27 3.21913e-28 -2.84603e-26 2.17472e-27 -1.76305e-25 1.39114e-26 -1.0325e-24 8.41967e-26 -5.71131e-24 4.8176e-25 -2.98122e-23 2.60382e-24 -1.46705e-22 1.32814e-23 -6.79911e-22 6.38697e-23 -2.96453e-21 2.89259e-22 -1.2147e-20 1.23223e-21 -4.67167e-20 4.931e-21 -1.68418e-19 1.85085e-20 -5.68304e-19 6.50569e-20 -1.79198e-18 2.13768e-19 -5.27006e-18 6.55492e-19 -1.4423e-17 1.87253e-18 4.97514e-18 -3.66341e-17 1.74745e-181 1.44667e-179 3.52467e-175 6.13936e-173 -3.38758e-167 3.9515e-168 -6.78559e-163 2.89843e-164 -1.85889e-159 6.92388e-161 -2.59269e-156 9.10004e-158 -2.3714e-153 8.0301e-155 -1.59951e-150 5.28524e-152 -8.51461e-148 2.76481e-149 -3.73698e-145 1.19833e-146 -1.39357e-142 4.42916e-144 -4.51286e-140 1.42557e-141 -1.29001e-137 4.05903e-139 -3.2966e-135 1.03502e-136 -7.60753e-133 2.38674e-134 -1.59837e-130 5.01698e-132 -3.07822e-128 9.67644e-130 -5.46463e-126 1.72195e-127 -8.9855e-124 2.84049e-125 -1.37411e-121 4.36091e-123 -1.96126e-119 6.25288e-121 -2.6207e-117 8.39879e-119 -3.28726e-115 1.05959e-116 -3.87984e-113 1.25849e-114 -4.3178e-111 1.41012e-112 -4.53924e-109 1.49329e-110 -4.51536e-107 1.49701e-108 -4.25625e-105 1.42273e-106 -3.80676e-103 1.28353e-104 -3.23434e-101 1.10047e-102 -2.61321e-99 8.97607e-101 -2.00969e-97 6.97168e-99 -1.47236e-95 5.16051e-97 -1.02839e-93 3.64315e-95 -6.85254e-92 2.45459e-93 -4.35869e-90 1.57928e-91 -2.64792e-88 9.70838e-90 -1.5371e-86 5.70487e-88 -8.52965e-85 3.20581e-86 -4.52639e-83 1.72338e-84 -2.29775e-81 8.86574e-83 -1.11611e-79 4.36574e-81 -5.18874e-78 2.05832e-79 -2.30919e-76 9.29319e-78 -9.83935e-75 4.01869e-76 -4.01459e-73 1.66467e-74 -1.56865e-71 6.60602e-73 -5.8702e-70 2.51158e-71 -2.10395e-68 9.14892e-70 -7.22238e-67 3.1931e-68 -2.37456e-65 1.06775e-66 -7.47695e-64 3.42081e-65 -2.25465e-62 1.04993e-63 -6.51045e-61 3.08694e-62 -1.79999e-59 8.69335e-61 -4.76434e-58 2.34468e-59 -1.20709e-56 6.05551e-58 -2.9269e-55 1.49733e-56 -6.79079e-54 3.54403e-55 -1.50725e-52 8.02793e-54 -3.19963e-51 1.73994e-52 -6.49462e-50 3.60728e-51 -1.26016e-48 7.15194e-50 -2.3366e-47 1.35563e-48 -4.13898e-46 2.45581e-47 -7.00172e-45 4.25052e-46 -1.13074e-43 7.02635e-45 -1.7426e-42 1.10891e-43 -2.56173e-41 1.67021e-42 -3.59075e-40 2.39977e-41 -4.79682e-39 3.28777e-40 -6.1042e-38 4.29304e-39 -7.3959e-37 5.34005e-38 -8.5272e-36 6.32437e-37 -9.35041e-35 7.12759e-36 -9.7455e-34 7.63964e-35 -9.64839e-33 7.78294e-34 -9.06767e-32 7.53146e-33 -8.08398e-31 6.91811e-32 -6.83165e-30 6.02785e-31 -5.46844e-29 4.9783e-30 -4.14276e-28 3.89409e-29 -2.96781e-27 2.88256e-28 -2.00872e-26 2.01757e-27 -1.28333e-25 1.33403e-26 -7.73182e-25 8.32517e-26 -4.3885e-24 4.89894e-25 -2.34423e-23 2.71568e-24 -1.17729e-22 1.41675e-23 -5.55272e-22 6.94855e-23 -2.45694e-21 3.20039e-22 -1.01875e-20 1.38261e-21 -3.95374e-20 5.5954e-21 -1.43441e-19 2.11826e-20 -4.85807e-19 7.48977e-20 -1.53357e-18 2.4692e-19 -4.50429e-18 7.57658e-19 -1.22841e-17 2.15993e-18 -3.10309e-17 5.71003e-18 1.397e-17 -7.23982e-17 1.01092e-182 5.58896e-181 4.61886e-176 3.40101e-174 2.06108e-171 2.18723e-169 7.86149e-168 2.12996e-165 -4.71939e-161 8.19051e-162 -1.72778e-157 1.45154e-158 -2.31546e-154 1.55147e-155 -1.97067e-151 1.17599e-152 -1.23921e-148 6.88752e-150 -6.19834e-146 3.28432e-147 -2.57717e-143 1.32018e-144 -9.17155e-141 4.58389e-142 -2.85224e-138 1.39976e-139 -7.87175e-136 3.81111e-137 -1.95103e-133 9.35193e-135 -4.38386e-131 2.08623e-132 -8.99832e-129 4.26104e-130 -1.6979e-126 8.01536e-128 -2.96072e-124 1.39555e-125 -4.79239e-122 2.25854e-123 -7.2283e-120 3.40996e-121 -1.01925e-117 4.81822e-119 -1.34749e-115 6.38903e-117 -1.67442e-113 7.96975e-115 -1.95995e-111 9.37217e-113 -2.1653e-109 1.04097e-110 -2.26163e-107 1.09387e-108 -2.23678e-105 1.08909e-106 -2.09753e-103 1.02875e-104 -1.86724e-101 9.23031e-103 -1.57969e-99 7.87476e-101 -1.27126e-97 6.39414e-99 -9.74015e-96 4.94557e-97 -7.11044e-94 3.6464e-95 -4.94906e-92 2.56458e-93 -3.28631e-90 1.72159e-91 -2.08298e-88 1.10365e-89 -1.26084e-86 6.75969e-88 -7.2914e-85 3.95721e-86 -4.02993e-83 2.215e-84 -2.1294e-81 1.18581e-82 -1.07598e-79 6.07332e-81 -5.20047e-78 2.9765e-79 -2.40466e-76 1.39616e-77 -1.0639e-74 6.26868e-76 -4.50448e-73 2.69453e-74 -1.82523e-71 1.1089e-72 -7.07859e-70 4.36943e-71 -2.62753e-68 1.64854e-69 -9.3352e-67 5.95546e-68 -3.17443e-65 2.05998e-66 -1.03313e-63 6.8222e-65 -3.21786e-62 2.16307e-63 -9.59091e-61 6.56542e-62 -2.73518e-59 1.90745e-60 -7.46259e-58 5.30376e-59 -1.94762e-56 1.41121e-57 -4.86128e-55 3.59252e-56 -1.16024e-53 8.74828e-55 -2.64726e-52 2.03737e-53 -5.77287e-51 4.53667e-52 -1.20287e-49 9.6563e-51 -2.39412e-48 1.96412e-49 -4.55026e-47 3.81657e-48 -8.25538e-46 7.08242e-47 -1.42917e-44 1.25469e-45 -2.35995e-43 2.1211e-44 -3.71534e-42 3.42041e-43 -5.574e-41 5.25883e-42 -7.96508e-40 7.70517e-41 -1.08352e-38 1.07531e-39 -1.40234e-37 1.42857e-38 -1.72578e-36 1.80566e-37 -2.01814e-35 2.17003e-36 -2.2411e-34 2.47804e-35 -2.36163e-33 2.687e-34 -2.35984e-32 2.7646e-33 -2.23428e-31 2.69697e-32 -2.00276e-30 2.49262e-31 -1.69819e-29 2.1808e-30 -1.36092e-28 1.80461e-29 -1.02983e-27 1.41112e-28 -7.35142e-27 1.04173e-27 -4.94551e-26 7.25305e-27 -3.13208e-25 4.75799e-26 -1.86539e-24 2.93769e-25 -1.04361e-23 1.70529e-24 -5.47827e-23 9.2967e-24 -2.69517e-22 4.7545e-23 -1.24126e-21 2.27836e-22 -5.3452e-21 1.02176e-21 -2.14966e-20 4.28278e-21 -8.06382e-20 1.67554e-20 -2.81772e-19 6.10924e-20 -9.1582e-19 2.07257e-19 -2.76417e-18 6.53071e-19 -7.73292e-18 1.90787e-18 -2.00075e-17 5.1578e-18 -4.77532e-17 1.28772e-17 2.96233e-17 -1.04832e-16 4.44761e-184 1.83274e-182 3.56436e-177 1.6554e-175 2.45101e-172 1.21028e-170 2.33261e-168 1.30922e-166 6.95314e-165 4.83605e-163 9.18188e-162 8.97101e-160 6.02616e-159 1.06789e-156 7.22049e-157 9.21413e-154 -1.36906e-150 6.13624e-151 -1.32683e-147 3.25209e-148 -7.72745e-145 1.42931e-145 -3.4363e-142 5.36855e-143 -1.26208e-139 1.76039e-140 -3.98138e-137 5.11978e-138 -1.10467e-134 1.3368e-135 -2.73951e-132 3.16395e-133 -6.14374e-130 6.84091e-131 -1.25717e-127 1.35986e-128 -2.36384e-125 2.49858e-126 -4.10763e-123 4.26256e-124 -6.62779e-121 6.778e-122 -9.96951e-119 1.00793e-119 -1.40272e-116 1.40573e-117 -1.85148e-114 1.84338e-115 -2.29831e-112 2.27785e-113 -2.68898e-110 2.65751e-111 -2.97087e-108 2.93229e-109 -3.10475e-106 3.06466e-107 -3.07367e-104 3.03797e-105 -2.88631e-102 2.85977e-103 -2.57387e-100 2.55911e-101 -2.18189e-98 2.17904e-99 -1.75985e-96 1.76695e-97 -1.35165e-94 1.36551e-95 -9.89264e-93 1.00637e-93 -6.9038e-91 7.07733e-92 -4.59658e-89 4.75175e-90 -2.9212e-87 3.04723e-88 -1.77277e-85 1.86722e-86 -1.0277e-83 1.09363e-84 -5.69294e-82 6.12432e-83 -3.01429e-80 3.27992e-81 -1.52583e-78 1.68025e-79 -7.38547e-77 8.23502e-78 -3.41876e-75 3.86179e-76 -1.51364e-73 1.73296e-74 -6.41031e-72 7.44202e-73 -2.59691e-70 3.05854e-71 -1.0064e-68 1.20299e-69 -3.73091e-67 4.52826e-68 -1.32306e-65 1.63118e-66 -4.4879e-64 5.6227e-65 -1.45605e-62 1.85451e-63 -4.51787e-61 5.85202e-62 -1.34051e-59 1.76654e-60 -3.80297e-58 5.10058e-59 -1.0314e-56 1.4084e-57 -2.67368e-55 3.71843e-56 -6.62337e-54 9.38504e-55 -1.56763e-52 2.26391e-53 -3.544e-51 5.2182e-52 -7.65097e-50 1.14896e-50 -1.57682e-48 2.41595e-49 -3.10132e-47 4.84985e-48 -5.81914e-46 9.29128e-47 -1.04123e-44 1.69811e-45 -1.77594e-43 2.95952e-44 -2.88602e-42 4.91637e-43 -4.46626e-41 7.78088e-42 -6.57851e-40 1.17259e-40 -9.21719e-39 1.6817e-39 -1.22769e-37 2.29392e-38 -1.55349e-36 2.97411e-37 -1.86619e-35 3.66255e-36 -2.12672e-34 4.28102e-35 -2.29738e-33 4.74584e-34 -2.35056e-32 4.98578e-33 -2.27592e-31 4.95958e-32 -2.08357e-30 4.66731e-31 -1.80187e-29 4.15148e-30 -1.47059e-28 3.48694e-29 -1.13157e-27 2.76289e-28 -8.2008e-27 2.06309e-27 -5.59177e-26 1.45027e-26 -3.5833e-25 9.58692e-26 -2.15556e-24 5.95279e-25 -1.2158e-23 3.46792e-24 -6.42173e-23 1.89325e-23 -3.17239e-22 9.67389e-23 -1.46388e-21 4.62055e-22 -6.30133e-21 2.06014e-21 -2.52682e-20 8.56221e-21 -9.42541e-20 3.31197e-20 -3.26536e-19 1.19031e-19 -1.04887e-18 3.96741e-19 -3.11767e-18 1.22395e-18 -8.55674e-18 3.48778e-18 -2.1631e-17 9.16093e-18 -5.02264e-17 2.21285e-17 4.90344e-17 -1.06801e-16 1.59588e-185 5.21683e-184 2.14252e-178 7.24699e-177 1.93474e-173 6.21555e-172 2.29781e-169 7.1887e-168 8.871e-166 2.76313e-164 1.71159e-162 5.38777e-161 2.05878e-159 6.61148e-158 1.74353e-156 5.74505e-155 1.12425e-153 3.8142e-152 5.82492e-151 2.039e-149 2.52325e-148 9.12542e-147 9.38894e-146 3.51142e-144 3.05826e-143 1.18368e-141 8.86185e-141 3.55194e-139 2.3067e-138 9.5805e-137 5.45132e-136 2.34767e-134 1.17611e-133 5.2555e-132 2.33504e-131 1.08343e-129 4.28577e-129 2.06636e-127 7.29823e-127 3.65947e-125 1.15757e-124 6.04164e-123 1.71664e-122 9.33491e-121 2.38811e-120 1.35448e-118 3.1206e-118 1.84819e-116 3.8385e-116 2.37693e-114 4.45272e-114 2.88693e-112 4.87886e-112 3.31715e-110 5.05628e-110 3.61134e-108 4.96213e-108 3.73024e-106 4.61755e-106 3.6618e-104 4.07692e-104 3.41939e-102 3.41601e-102 3.03902e-100 2.7173e-100 2.57286e-98 2.05239e-98 2.07644e-96 1.47185e-96 1.59855e-94 1.00187e-94 1.17458e-92 6.46891e-93 8.24156e-91 3.958e-91 5.52448e-89 2.2911e-89 3.53908e-87 1.25163e-87 2.16743e-85 6.42925e-86 1.26932e-83 3.08741e-84 7.10982e-82 1.37301e-82 3.80967e-80 5.56037e-81 1.95306e-78 1.98159e-79 9.58043e-77 5.68903e-78 4.49699e-75 8.84439e-77 2.01991e-73 -1.47823e-73 8.68363e-72 -1.81815e-71 3.57288e-70 -1.17035e-69 1.40663e-68 -6.04639e-68 5.29851e-67 -2.74497e-66 1.9094e-65 -1.13381e-64 6.58206e-64 -4.33423e-63 2.17013e-62 -1.54813e-61 6.84228e-61 -5.19736e-60 2.06269e-59 -1.64628e-58 5.94433e-58 -4.93273e-57 1.63725e-56 -1.40059e-55 4.309e-55 -3.7733e-54 1.08338e-53 -9.65388e-53 2.60145e-52 -2.34705e-51 5.96429e-51 -5.42452e-50 1.30521e-49 -1.19214e-48 2.72548e-48 -2.49152e-47 5.42869e-47 -4.95197e-46 1.03103e-45 -9.35879e-45 1.86638e-44 -1.68154e-43 3.21873e-43 -2.87164e-42 5.28595e-42 -4.65937e-41 8.26202e-41 -7.17779e-40 1.22833e-39 -1.04968e-38 1.73609e-38 -1.45637e-37 2.33112e-37 -1.9158e-36 2.97156e-36 -2.38772e-35 3.59341e-35 -2.81732e-34 4.1189e-34 -3.14452e-33 4.47134e-33 -3.31712e-32 4.59288e-32 -3.30407e-31 4.45976e-31 -3.10454e-30 4.08965e-30 -2.74885e-29 3.53801e-29 -2.29094e-28 2.8844e-28 -1.79538e-27 2.21364e-27 -1.32154e-26 1.59739e-26 -9.1256e-26 1.08256e-25 -5.90425e-25 6.88184e-25 -3.57454e-24 4.09853e-24 -2.02213e-23 2.28381e-23 -1.06753e-22 1.18919e-22 -5.25204e-22 5.7784e-22 -2.40454e-21 2.61642e-21 -1.02282e-20 1.10223e-20 -4.03646e-20 4.31333e-20 -1.47524e-19 1.56501e-19 -4.98326e-19 5.25415e-19 -1.55227e-18 1.62861e-18 -4.44715e-18 4.64993e-18 -1.16828e-17 1.21987e-17 -2.80473e-17 2.93265e-17 6.44039e-17 -6.12722e-17 4.83228e-187 1.30447e-185 1.08626e-179 2.88608e-178 1.2313e-174 2.93192e-173 1.69083e-170 3.6707e-169 7.38859e-167 1.48512e-165 1.58962e-163 2.98799e-162 2.11166e-160 3.73559e-159 1.97157e-157 3.29647e-156 1.40652e-154 2.22963e-153 8.08708e-152 1.21844e-150 3.89135e-149 5.58402e-148 1.60793e-146 2.20167e-145 5.81197e-144 7.60626e-143 1.86712e-141 2.33909e-140 5.38525e-139 6.46725e-138 1.40912e-136 1.6243e-135 3.36571e-134 3.72842e-133 7.39598e-132 7.88248e-131 1.50221e-129 1.54196e-128 2.83195e-127 2.80235e-126 4.97508e-125 4.7504e-124 8.17759e-123 7.54085e-122 1.26113e-120 1.12401e-119 1.82869e-118 1.57649e-117 2.49895e-116 2.08528e-115 3.22467e-114 2.60641e-113 3.93636e-112 3.08376e-111 4.55264e-110 3.45894e-109 4.99675e-108 3.68396e-107 5.21068e-106 3.72999e-105 5.16754e-104 3.59345e-103 4.87806e-102 3.29688e-101 4.38684e-100 2.88301e-99 3.76119e-98 2.40469e-97 3.07648e-96 1.91434e-95 2.40208e-94 1.45536e-93 1.79121e-92 1.05712e-91 1.2762e-90 7.33945e-90 8.6909e-89 4.87241e-88 5.65875e-87 3.09381e-86 3.52368e-85 1.87941e-84 2.09887e-83 1.09248e-82 1.19607e-81 6.07764e-81 6.52167e-80 3.23619e-79 3.40275e-78 1.64946e-77 1.69897e-76 8.04772e-76 8.11846e-75 3.75917e-74 3.71244e-73 1.68091e-72 1.62443e-71 7.1942e-71 6.80068e-70 2.94689e-69 2.72374e-68 1.15515e-67 1.04347e-66 4.33257e-66 3.82315e-65 1.55457e-64 1.3394e-63 5.33522e-63 4.48595e-62 1.75098e-61 1.436e-60 5.49417e-60 4.39244e-59 1.64781e-58 1.28348e-57 4.72265e-57 3.58165e-56 1.29304e-55 9.54234e-55 3.38114e-54 2.42641e-53 8.4411e-53 5.88658e-52 2.01131e-51 1.36206e-50 4.57249e-50 3.0047e-49 9.9143e-49 6.31686e-48 2.04946e-47 1.26507e-46 4.03749e-46 2.41237e-45 7.5769e-45 4.37808e-44 1.35389e-43 7.55808e-43 2.30237e-42 1.24048e-41 3.72431e-41 1.93498e-40 5.7294e-40 2.86626e-39 8.37497e-39 4.02893e-38 1.16245e-37 5.3701e-37 1.53106e-36 6.78192e-36 1.91213e-35 8.10837e-35 2.26264e-34 9.16917e-34 2.53472e-33 9.79763e-33 2.68581e-32 9.88225e-32 2.6893e-31 9.39839e-31 2.54209e-30 8.41891e-30 2.26635e-29 7.09737e-29 1.90446e-28 5.62013e-28 1.50568e-27 4.17464e-27 1.11869e-26 2.9045e-26 7.80106e-26 1.88985e-25 5.09927e-25 1.14822e-24 3.12065e-24 6.50744e-24 1.78693e-23 3.43068e-23 9.55068e-23 1.67942e-22 4.75837e-22 7.61773e-22 2.20676e-21 3.1974e-21 9.5226e-21 1.23719e-20 3.81173e-20 4.40068e-20 1.41306e-19 1.43535e-19 4.8472e-19 4.26988e-19 1.53354e-18 1.15259e-18 4.46578e-18 2.80522e-18 1.19488e-17 6.08794e-18 2.92535e-17 6.54176e-17 1.16257e-17 1.25872e-188 2.88578e-187 4.80669e-181 1.05116e-179 6.75255e-176 1.27856e-174 1.05041e-171 1.74933e-170 5.00463e-168 7.44408e-167 1.1486e-164 1.54328e-163 1.61139e-161 1.97268e-160 1.58129e-158 1.77625e-157 1.18186e-155 1.22546e-154 7.09868e-153 6.83009e-152 3.55892e-150 3.19223e-149 1.52886e-147 1.28367e-146 5.73587e-145 4.5246e-144 1.90981e-142 1.41996e-141 5.70459e-140 4.00941e-139 1.54451e-137 1.02884e-136 3.81573e-135 2.41468e-134 8.66899e-133 5.22276e-132 1.81993e-130 1.04587e-129 3.54579e-128 1.94711e-127 6.43733e-126 3.38333e-125 1.09354e-123 5.50904e-123 1.74269e-121 8.4268e-121 2.61173e-119 1.21372e-118 3.68927e-117 1.64964e-116 4.92204e-115 2.11994e-114 6.21334e-113 2.58032e-112 7.43315e-111 2.9792e-110 8.44124e-109 3.2681e-108 9.11005e-107 3.4098e-106 9.3526e-105 3.38684e-104 9.14303e-103 3.20573e-102 8.51804e-101 2.89365e-100 7.56856e-99 2.4927e-98 6.41802e-97 2.05056e-96 5.19706e-95 1.61173e-94 4.02074e-93 1.21099e-92 2.97327e-91 8.70143e-91 2.10236e-89 5.98132e-89 1.42187e-87 3.93446e-87 9.20029e-86 2.47717e-85 5.69672e-84 1.4931e-83 3.37597e-82 8.61678e-82 1.915e-80 4.76175e-80 1.03985e-78 2.51986e-78 5.40523e-77 1.27696e-76 2.68995e-75 6.19739e-75 1.28147e-73 2.88012e-73 5.84331e-72 1.28154e-71 2.55006e-70 5.45915e-70 1.06494e-68 2.22599e-68 4.25513e-67 8.68663e-67 1.6264e-65 3.24355e-65 5.94557e-64 1.15866e-63 2.07829e-62 3.95866e-62 6.94437e-61 1.29318e-60 2.21743e-59 4.03793e-59 6.76429e-58 1.2048e-57 1.97063e-56 3.43383e-56 5.48084e-55 9.34538e-55 1.45474e-53 2.42777e-53 3.68342e-52 6.01781e-52 8.89337e-51 1.4227e-50 2.04665e-49 3.20658e-49 4.48733e-48 6.88705e-48 9.36907e-47 1.40891e-46 1.8619e-45 2.74399e-45 3.52002e-44 5.08522e-44 6.32749e-43 8.96265e-43 1.08087e-41 1.50149e-41 1.75378e-40 2.38987e-40 2.70093e-39 3.61142e-39 3.94547e-38 5.17778e-38 5.46306e-37 7.03864e-37 7.16578e-36 9.06697e-36 8.89765e-35 1.10602e-34 1.0448e-33 1.27633e-33 1.15922e-32 1.39218e-32 1.21411e-31 1.43407e-31 1.19918e-30 1.39369e-30 1.11585e-29 1.2766e-29 9.77226e-29 1.10112e-28 8.04345e-28 8.93126e-28 6.21592e-27 6.80565e-27 4.50439e-26 4.86618e-26 3.05557e-25 3.25949e-25 1.93762e-24 2.04262e-24 1.14712e-23 1.19615e-23 6.32885e-23 6.53438e-23 3.25049e-22 3.32694e-22 1.55044e-21 1.57513e-21 6.85926e-21 6.92621e-21 2.80928e-20 2.8237e-20 1.06333e-19 1.06558e-19 3.71137e-19 3.71418e-19 1.19227e-18 1.19367e-18 3.51721e-18 3.52974e-18 9.50235e-18 9.58143e-18 2.34503e-17 2.38275e-17 5.41086e-17 5.26547e-17 2.85505e-190 5.67702e-189 1.88978e-182 3.51271e-181 3.28784e-177 5.1752e-176 5.74992e-173 7.78569e-172 2.94792e-169 3.49032e-168 7.12553e-166 7.47344e-165 1.04141e-162 9.77938e-162 1.05842e-159 8.98066e-159 8.16288e-157 6.30847e-156 5.04792e-154 3.57826e-153 2.60191e-151 1.70218e-150 1.14812e-148 6.96945e-148 4.42243e-146 2.50281e-145 1.51135e-143 8.00752e-143 4.63313e-141 2.30658e-140 1.28743e-138 6.04219e-138 3.26484e-136 1.44869e-135 7.61342e-134 3.20233e-133 1.64113e-131 6.55875e-131 3.28384e-129 1.2496e-128 6.12456e-127 2.22337e-126 1.06896e-124 3.70861e-124 1.75086e-122 5.81443e-122 2.69802e-120 8.58911e-120 3.92006e-118 1.19793e-117 5.38135e-116 1.58056e-115 6.99243e-114 1.9762e-113 8.61409e-112 2.34509e-111 1.00766e-109 2.64514e-109 1.12062e-107 2.83906e-107 1.186e-105 2.90242e-105 1.19588e-103 2.82927e-103 1.14967e-101 2.63145e-101 1.05457e-99 2.3369e-99 9.23598e-98 1.98282e-97 7.72784e-96 1.60828e-95 6.18048e-94 1.24762e-93 4.72679e-92 9.26026e-92 3.45822e-90 6.57858e-90 2.42114e-88 4.47438e-88 1.62247e-86 2.91423e-86 1.04091e-84 1.81795e-84 6.39439e-83 1.08635e-82 3.76166e-81 6.21894e-81 2.11925e-79 3.41072e-79 1.14346e-77 1.7921e-77 5.90891e-76 9.02136e-76 2.92417e-74 4.35034e-74 1.38568e-72 2.0094e-72 6.28689e-71 8.88875e-71 2.73057e-69 3.76508e-69 1.1351e-67 1.52679e-67 4.51527e-66 5.92593e-66 1.71841e-64 2.20101e-64 6.25513e-63 7.82069e-63 2.17701e-61 2.65748e-61 7.24196e-60 8.63275e-60 2.30182e-58 2.67995e-58 6.98784e-57 7.94753e-57 2.02532e-55 2.25055e-55 5.60195e-54 6.08283e-54 1.47803e-52 1.5685e-52 3.71808e-51 3.8567e-51 8.91315e-50 9.0382e-50 2.03514e-48 2.01768e-48 4.42357e-47 4.28837e-47 9.14789e-46 8.67268e-46 1.79881e-44 1.66794e-44 3.36126e-43 3.04864e-43 5.96483e-42 5.29247e-42 1.00462e-40 8.72101e-41 1.60476e-39 1.36309e-39 2.42978e-38 2.01967e-38 3.48434e-37 2.8345e-37 4.72911e-36 3.76553e-36 6.07052e-35 4.73165e-35 7.36278e-34 5.61847e-34 8.43061e-33 6.2991e-33 9.10521e-32 6.66203e-32 9.2667e-31 6.64046e-31 8.87846e-30 6.232e-30 7.99988e-29 5.50121e-29 6.77179e-28 4.56282e-28 5.38028e-27 3.55277e-27 4.00666e-26 2.59334e-26 2.79238e-25 1.77199e-25 1.81885e-24 1.13188e-24 1.1057e-23 6.74976e-24 6.26502e-23 3.75287e-23 3.30472e-22 1.94327e-22 1.61908e-21 9.34994e-22 7.35616e-21 4.17376e-21 3.09535e-20 1.72627e-20 1.20426e-19 6.60395e-20 4.32211e-19 2.33123e-19 1.42916e-18 7.58313e-19 4.34584e-18 2.26851e-18 1.21251e-17 6.22675e-18 3.09969e-17 1.56626e-17 3.60002e-17 7.23767e-17 5.68837e-192 9.97118e-191 6.66819e-184 1.07879e-182 1.4431e-178 1.94773e-177 2.83263e-174 3.24078e-173 1.5556e-170 1.53489e-169 3.93911e-167 3.40022e-166 5.95912e-164 4.55521e-163 6.231e-161 4.26302e-160 4.92828e-158 3.04611e-157 3.12046e-155 1.75679e-154 1.64546e-152 8.49858e-152 7.42475e-150 3.53999e-149 2.92439e-147 1.29411e-146 1.02197e-144 4.21736e-144 3.20391e-142 1.23808e-141 9.10672e-140 3.30738e-139 2.36315e-137 8.09224e-137 5.63904e-135 1.82595e-134 1.24442e-132 3.82013e-132 2.55007e-130 7.43872e-130 4.87262e-128 1.35349e-127 8.71462e-126 2.30948e-125 1.46322e-123 3.70596e-123 2.31246e-121 5.60634e-121 3.44721e-119 8.01159e-119 4.85725e-117 1.0836e-116 6.4809e-115 1.38955e-114 8.20216e-113 1.69208e-112 9.86072e-111 1.95935e-110 1.12745e-108 2.15992e-108 1.22736e-106 2.26904e-106 1.2736e-104 2.27406e-104 1.2606e-102 2.17562e-102 1.19106e-100 1.98838e-100 1.07499e-98 1.7371e-98 9.2735e-97 1.45143e-96 7.65025e-95 1.16044e-94 6.03801e-93 8.88135e-93 4.561e-91 6.50896e-91 3.29847e-89 4.56924e-89 2.28434e-87 3.07308e-87 1.51529e-85 1.98051e-85 9.62906e-84 1.22324e-83 5.86234e-82 7.24117e-82 3.41966e-80 4.10853e-80 1.91134e-78 2.23435e-78 1.02362e-76 1.16466e-76 5.25219e-75 5.81798e-75 2.58166e-73 2.78498e-73 1.2155e-71 1.27726e-71 5.48075e-70 5.61138e-70 2.36627e-68 2.36099e-68 9.77973e-67 9.51145e-67 3.8684e-65 3.66795e-65 1.46401e-63 1.35358e-63 5.29916e-62 4.77818e-62 1.83386e-60 1.61288e-60 6.06532e-59 5.20388e-59 1.91641e-57 1.60417e-57 5.78195e-56 4.72251e-56 1.66497e-54 1.32704e-54 4.57367e-53 3.55759e-53 1.19789e-51 9.09397e-52 2.98966e-50 2.21528e-50 7.1059e-49 5.13946e-49 1.60747e-47 1.13488e-47 3.4587e-46 2.38364e-46 7.07353e-45 4.75874e-45 1.37408e-43 9.02398e-44 2.53351e-42 1.6242e-42 4.43049e-41 2.77264e-41 7.34276e-40 4.48554e-40 1.15259e-38 6.87272e-39 1.71203e-37 9.96432e-38 2.40433e-36 1.3658e-36 3.18975e-35 1.7684e-35 3.99382e-34 2.16078e-34 4.71521e-33 2.48935e-33 5.24432e-32 2.70143e-32 5.48957e-31 2.75878e-31 5.40282e-30 2.64864e-30 4.99456e-29 2.38816e-29 4.33261e-28 2.02031e-28 3.52354e-27 1.60207e-27 2.68319e-26 1.18935e-26 1.91055e-25 8.25456e-26 1.27041e-24 5.349e-25 7.87828e-24 3.23199e-24 4.55107e-23 1.81877e-23 2.44592e-22 9.5204e-23 1.22076e-21 4.6271e-22 5.64879e-21 2.08447e-21 2.42028e-20 8.69231e-21 9.58765e-20 3.34987e-20 3.5047e-19 1.19056e-19 1.18065e-18 3.89618e-19 3.66011e-18 1.17206e-18 1.04231e-17 3.23445e-18 2.72378e-17 8.17835e-18 1.89128e-17 6.51825e-17 1.00198e-193 1.56829e-192 2.12476e-185 3.04648e-184 5.76006e-180 6.82026e-179 1.27081e-175 1.26262e-174 7.46617e-172 6.33683e-171 1.97579e-168 1.45451e-167 3.08407e-165 1.99547e-164 3.30679e-162 1.90255e-161 2.67401e-159 1.38219e-158 1.72864e-156 8.10025e-156 9.30036e-154 3.98189e-153 4.28057e-151 1.68593e-150 1.71999e-148 6.26853e-148 6.13253e-146 2.07876e-145 1.96198e-143 6.21329e-143 5.69239e-141 1.69076e-140 1.50847e-138 4.21679e-138 3.6764e-136 9.70191e-136 8.2897e-134 2.07085e-133 1.73638e-131 4.11617e-131 3.39296e-129 7.64933e-129 6.20734e-127 1.33356e-126 1.06654e-124 2.18744e-124 1.72556e-122 3.38425e-122 2.63449e-120 4.94829e-120 3.80346e-118 6.85118e-118 5.20196e-116 8.99781e-116 6.75171e-114 1.12273e-113 8.32767e-112 1.33275e-111 9.77289e-110 1.50677e-109 1.09245e-107 1.62416e-107 1.16454e-105 1.67092e-105 1.18462e-103 1.64174e-103 1.15084e-101 1.54166e-101 1.06847e-99 1.38447e-99 9.48582e-98 1.18967e-97 8.05716e-96 9.78646e-96 6.55052e-94 7.70997e-94 5.0994e-92 5.81912e-92 3.80234e-90 4.20884e-90 2.71637e-88 2.91789e-88 1.85959e-86 1.93932e-86 1.22011e-84 1.23582e-84 7.67335e-83 7.55136e-83 4.62593e-81 4.42456e-81 2.67339e-79 2.486e-79 1.48106e-77 1.33939e-77 7.86468e-76 6.91874e-76 4.00261e-74 3.42617e-74 1.95209e-72 1.62624e-72 9.12167e-71 7.3972e-71 4.08297e-69 3.22374e-69 1.75025e-67 1.34569e-67 7.18342e-66 5.37908e-66 2.82184e-64 2.05825e-64 1.06059e-62 7.53616e-63 3.81247e-61 2.63932e-61 1.31019e-59 8.83769e-60 4.30264e-58 2.82805e-58 1.34958e-56 8.64411e-57 4.04115e-55 2.52237e-55 1.15455e-53 7.02276e-54 3.14534e-52 1.86447e-52 8.16588e-51 4.71713e-51 2.019e-49 1.13654e-49 4.75086e-48 2.60598e-48 1.06315e-46 5.68223e-47 2.26089e-45 1.17731e-45 4.56548e-44 2.31603e-44 8.747e-43 4.32228e-43 1.58866e-41 7.64577e-42 2.7329e-40 1.2808e-40 4.44931e-39 2.03023e-39 6.84938e-38 3.04236e-38 9.9593e-37 4.30528e-37 1.36648e-35 5.74759e-36 1.7674e-34 7.2312e-35 2.1527e-33 8.56497e-34 2.46662e-32 9.54049e-33 2.65614e-31 9.98378e-32 2.68513e-30 9.80429e-31 2.54549e-29 9.02496e-30 2.26058e-28 7.7789e-29 1.87876e-27 6.27156e-28 1.45976e-26 4.72446e-27 1.0589e-25 3.3207e-26 7.16246e-25 2.17503e-25 4.51219e-24 1.32591e-24 2.64468e-23 7.51464e-24 1.44039e-22 3.95445e-23 7.28009e-22 1.92951e-22 3.40911e-21 8.71473e-22 1.47732e-20 3.63858e-21 5.91717e-20 1.40242e-20 2.18719e-19 4.98085e-20 7.45127e-19 1.62742e-19 2.33724e-18 4.88463e-19 6.74128e-18 1.34439e-18 1.78646e-17 3.38851e-18 7.81251e-18 4.34532e-17 1.56679e-195 2.21309e-194 6.13544e-187 7.91077e-186 2.1011e-181 2.22177e-180 5.22622e-177 4.60408e-176 3.28653e-173 2.45642e-172 9.08214e-170 5.85125e-169 1.46063e-166 8.2253e-166 1.6031e-163 7.9892e-163 1.32289e-160 5.89874e-160 8.71531e-158 3.51061e-157 4.77556e-155 1.75233e-154 2.23813e-152 7.53532e-152 9.15964e-150 2.84726e-149 3.32656e-147 9.59885e-147 1.08446e-144 2.91844e-144 3.20674e-142 8.08153e-142 8.66492e-140 2.05237e-139 2.1539e-137 4.81019e-137 4.9551e-135 1.04633e-134 1.05937e-132 2.12054e-132 2.11384e-130 4.0202e-130 3.95037e-128 7.1529e-128 6.93584e-126 1.19791e-125 1.14711e-123 1.89299e-123 1.79104e-121 2.82839e-121 2.64548e-119 4.00356e-119 3.70332e-117 5.37781e-117 4.92195e-115 6.86662e-115 6.21903e-113 8.34446e-113 7.47955e-111 9.66189e-111 8.57215e-109 1.06707e-108 9.37215e-107 1.12523e-106 9.78252e-105 1.1337e-104 9.75582e-103 1.09214e-102 9.30198e-101 1.00661e-100 8.4849e-99 8.88137e-99 7.40803e-97 7.50487e-97 6.19354e-95 6.07612e-95 4.96044e-93 4.71496e-93 3.80703e-91 3.50769e-91 2.80067e-89 2.50244e-89 1.97526e-87 1.71227e-87 1.3358e-85 1.12382e-85 8.66283e-84 7.07581e-84 5.38774e-82 4.27387e-82 3.21367e-80 2.47651e-80 1.8384e-78 1.37664e-78 1.0085e-76 7.3401e-77 5.30472e-75 3.75344e-75 2.67509e-73 1.84048e-73 1.29309e-71 8.65213e-72 5.99015e-70 3.89851e-70 2.65861e-68 1.68321e-68 1.13021e-66 6.96172e-67 4.60056e-65 2.75726e-65 1.79245e-63 1.04533e-63 6.68185e-62 3.79197e-62 2.38217e-60 1.31557e-60 8.11836e-59 4.36303e-59 2.64342e-57 1.38248e-57 8.21914e-56 4.1829e-56 2.43892e-54 1.20777e-54 6.90254e-53 3.32582e-53 1.86198e-51 8.72823e-52 4.78398e-50 2.18148e-50 1.16986e-48 5.18853e-49 2.72062e-47 1.17343e-47 6.01224e-46 2.52127e-46 1.26144e-44 5.14224e-45 2.51054e-43 9.94607e-44 4.73516e-42 1.82263e-42 8.45562e-41 3.16126e-41 1.4282e-39 5.18453e-40 2.27953e-38 8.03184e-39 3.43391e-37 1.17391e-37 4.87688e-36 1.61685e-36 6.5225e-35 2.09613e-35 8.20543e-34 2.55478e-34 9.69826e-33 2.92376e-33 1.07576e-31 3.13827e-32 1.11847e-30 3.15517e-31 1.08862e-29 2.96738e-30 9.90733e-29 2.60733e-29 8.42091e-28 2.13771e-28 6.67768e-27 1.63355e-27 4.93356e-26 1.16176e-26 3.39189e-25 7.67942e-26 2.16769e-24 4.71249e-25 1.28646e-23 2.68169e-24 7.0813e-23 1.41325e-23 3.61155e-22 6.88925e-23 1.70437e-21 3.10183e-22 7.43521e-21 1.28833e-21 2.99581e-20 4.93058e-21 1.11357e-19 1.73599e-20 3.81459e-19 5.61405e-20 1.20351e-18 1.66541e-19 3.49446e-18 4.52415e-19 9.33322e-18 1.12365e-18 2.54795e-18 2.29256e-17 2.18089e-197 2.80463e-196 1.60907e-188 1.88809e-187 7.02429e-183 6.72908e-182 1.97768e-178 1.57037e-177 1.3333e-174 8.93716e-174 3.84825e-171 2.21308e-170 6.37289e-168 3.19002e-167 7.15258e-165 3.15676e-164 6.01565e-162 2.36788e-161 4.03362e-159 1.43033e-158 2.24809e-156 7.24459e-156 1.07148e-153 3.16167e-153 4.46078e-151 1.21312e-150 1.64809e-148 4.15405e-148 5.46822e-146 1.28366e-145 1.64592e-143 3.61387e-143 4.52933e-141 9.33629e-141 1.14699e-138 2.22693e-138 2.68881e-136 4.93152e-136 5.86012e-134 1.01797e-133 1.19256e-131 1.96667e-131 2.27378e-129 3.56727e-129 4.07427e-127 6.09261e-127 6.87928e-125 9.82228e-125 1.097e-122 1.49788e-122 1.65558e-120 2.16494e-120 2.36896e-118 2.97063e-118 3.2196e-116 3.87628e-116 4.16157e-114 4.81585e-114 5.12213e-112 5.70312e-112 6.01002e-110 6.44455e-110 6.72966e-108 6.95572e-108 7.19698e-106 7.17596e-106 7.35679e-104 7.08143e-104 7.19294e-102 6.68867e-102 6.73079e-100 6.05027e-100 6.03107e-98 5.24364e-98 5.17711e-96 4.35603e-96 4.25905e-94 3.46974e-94 3.35901e-92 2.6508e-92 2.54048e-90 1.94287e-90 1.84288e-88 1.36634e-88 1.2824e-86 9.22085e-87 8.56134e-85 5.97197e-85 5.4838e-83 3.71204e-83 3.37024e-81 2.21443e-81 1.98734e-79 1.26779e-79 1.12428e-77 6.96487e-78 6.10129e-76 3.67119e-76 3.1758e-74 1.85632e-74 1.58522e-72 9.00246e-73 7.58637e-71 4.18627e-71 3.47998e-69 1.86607e-69 1.52964e-67 7.97128e-68 6.44064e-66 3.2619e-66 2.59676e-64 1.27815e-64 1.00212e-62 4.79378e-63 3.7e-61 1.72009e-61 1.30636e-59 5.90175e-60 4.40834e-58 1.9352e-58 1.42099e-56 6.06079e-57 4.3727e-55 1.81182e-55 1.2837e-53 5.16643e-54 3.59283e-52 1.40424e-52 9.57954e-51 3.63525e-51 2.43137e-49 8.95608e-50 5.86944e-48 2.09807e-48 1.34649e-46 4.66928e-47 2.93275e-45 9.86262e-46 6.05888e-44 1.97522e-44 1.1861e-42 3.74683e-43 2.19787e-41 6.72456e-42 3.85099e-40 1.1406e-40 6.37341e-39 1.82635e-39 9.95039e-38 2.75701e-38 1.46372e-36 3.91876e-37 2.02621e-35 5.23779e-36 2.63604e-34 6.57412e-35 3.21873e-33 7.73763e-34 3.68426e-32 8.52886e-33 3.94754e-31 8.79067e-32 3.95364e-30 8.45936e-31 3.69627e-29 7.58907e-30 3.22131e-28 6.33757e-29 2.61372e-27 4.91958e-28 1.9716e-26 3.5441e-27 1.38085e-25 2.36595e-26 8.96948e-25 1.46171e-25 5.39779e-24 8.34639e-25 3.00579e-23 4.3981e-24 1.54731e-22 2.13603e-23 7.35563e-22 9.54791e-23 3.22675e-21 3.92316e-22 1.30554e-20 1.48013e-21 4.8682e-20 5.1193e-21 1.672e-19 1.62039e-20 5.28861e-19 4.68604e-20 1.54025e-18 1.23525e-19 4.13042e-18 2.95933e-19 6.41645e-19 1.02033e-17 2.70647e-199 3.1923e-198 3.83717e-190 4.13914e-189 2.15543e-184 1.893e-183 6.90072e-180 5.00553e-179 4.99906e-176 3.04961e-175 1.5081e-172 7.86465e-172 2.57165e-169 1.16342e-168 2.94995e-166 1.17319e-165 2.52645e-163 8.93762e-163 1.72248e-160 5.47696e-160 9.75458e-158 2.81316e-157 4.7233e-155 1.24515e-154 1.9983e-152 4.84782e-152 7.50302e-150 1.6848e-149 2.53103e-147 5.28707e-147 7.7468e-145 1.51197e-144 2.16873e-142 3.97001e-142 5.58901e-140 9.62828e-140 1.33363e-137 2.16856e-137 2.9598e-135 4.55491e-135 6.13607e-133 8.95822e-133 1.19223e-130 1.65476e-130 2.1777e-128 2.87909e-128 3.74944e-126 4.73004e-126 6.09922e-124 7.35374e-124 9.39378e-122 1.08402e-121 1.37224e-119 1.51764e-119 1.90467e-117 2.02127e-117 2.51523e-115 2.56408e-115 3.16399e-113 3.10158e-113 3.79565e-111 3.58126e-111 4.34692e-109 3.951e-109 4.75647e-107 4.16805e-107 4.97668e-105 4.20754e-105 4.98248e-103 4.06693e-103 4.77601e-101 3.76608e-101 4.38559e-99 3.34274e-99 3.85949e-97 2.845e-97 3.25642e-95 2.32263e-95 2.63514e-93 1.81937e-93 2.04577e-91 1.36781e-91 1.52393e-89 9.87067e-90 1.08943e-87 6.83811e-88 7.475e-86 4.5481e-86 4.92295e-84 2.90431e-84 3.11214e-82 1.78064e-82 1.88846e-80 1.04812e-80 1.09984e-78 5.92241e-79 6.14734e-77 3.21207e-77 3.29696e-75 1.67183e-75 1.69641e-73 8.34889e-74 8.37224e-72 3.99933e-72 3.96216e-70 1.83714e-70 1.79752e-68 8.09006e-69 7.81481e-67 3.41396e-67 3.25464e-65 1.38002e-65 1.29791e-63 5.3412e-64 4.95391e-62 1.97837e-62 1.80881e-60 7.00914e-61 6.3146e-59 2.37388e-59 2.10646e-57 7.68112e-58 6.7103e-56 2.37288e-56 2.03996e-54 6.99368e-55 5.91399e-53 1.96512e-53 1.63376e-51 5.2599e-52 4.29729e-50 1.34e-50 1.07529e-48 3.24622e-49 2.55734e-47 7.47115e-48 5.77523e-46 1.63191e-46 1.23717e-44 3.37943e-45 2.51139e-43 6.62753e-44 4.82549e-42 1.22945e-42 8.76624e-41 2.15476e-41 1.50392e-39 3.56349e-40 2.43335e-38 5.55312e-39 3.70853e-37 8.14317e-38 5.31663e-36 1.12208e-36 7.15956e-35 1.45065e-35 9.04326e-34 1.75682e-34 1.06993e-32 1.99005e-33 1.18388e-31 2.10491e-32 1.22319e-30 2.07527e-31 1.17826e-29 1.90382e-30 1.05652e-28 1.62223e-29 8.80549e-28 1.28164e-28 6.81067e-27 9.3708e-28 4.88142e-26 6.329e-27 3.23814e-25 3.94206e-26 1.9855e-24 2.26019e-25 1.12386e-23 1.19059e-24 5.86635e-23 5.75164e-24 2.82115e-22 2.54325e-23 1.24913e-21 1.02737e-22 5.09059e-21 3.7838e-22 1.90869e-20 1.26705e-21 6.58342e-20 3.84404e-21 2.08955e-19 1.05153e-20 6.10529e-19 2.57342e-20 1.64318e-18 5.55945e-20 1.03098e-19 4.07785e-18 2.99596e-201 3.26163e-200 8.32481e-192 8.32662e-191 6.0747e-186 4.94057e-185 2.22264e-181 1.48938e-180 1.73493e-177 9.75002e-177 5.47659e-174 2.62359e-173 9.61933e-171 3.98685e-170 1.12754e-167 4.09792e-167 9.82751e-165 3.17008e-164 6.80756e-162 1.9699e-161 3.91401e-159 1.0255e-158 1.92378e-156 4.60058e-156 8.26349e-154 1.81621e-153 3.1503e-151 6.40149e-151 1.07944e-148 2.03841e-148 3.35652e-146 5.91672e-146 9.55018e-144 1.57761e-143 2.50219e-141 3.88686e-141 6.07149e-139 8.89573e-139 1.37082e-136 1.89953e-136 2.89207e-134 3.79932e-134 5.72031e-132 7.13983e-132 1.06397e-129 1.2642e-129 1.86594e-127 2.11434e-127 3.09293e-125 3.34757e-125 4.85585e-123 5.02738e-123 7.23332e-121 7.17312e-121 1.02412e-118 9.73963e-119 1.38e-116 1.26001e-116 1.77198e-114 1.5549e-114 2.17063e-112 1.83222e-112 2.53923e-110 2.06356e-110 2.83913e-108 2.22313e-108 3.03653e-106 2.29263e-106 3.10873e-104 2.26465e-104 3.04833e-102 2.14392e-102 2.86449e-100 1.94608e-100 2.58069e-98 1.69448e-98 2.22996e-96 1.41574e-96 1.84876e-94 1.13536e-94 1.47103e-92 8.74187e-93 1.12353e-90 6.46318e-91 8.23845e-89 4.58897e-89 5.80032e-87 3.12929e-87 3.92134e-85 2.04953e-85 2.54569e-83 1.28925e-83 1.58694e-81 7.7889e-82 9.49872e-80 4.51881e-80 5.45864e-78 2.51728e-78 3.01125e-76 1.34622e-76 1.59432e-74 6.91004e-75 8.0997e-73 3.40346e-73 3.94746e-71 1.60807e-71 1.84497e-69 7.28608e-70 8.26674e-68 3.16461e-68 3.54967e-66 1.31707e-66 1.46005e-64 5.24996e-65 5.75001e-63 2.00332e-63 2.16707e-61 7.314e-62 7.81162e-60 2.55338e-60 2.69163e-58 8.51837e-59 8.85971e-57 2.71384e-57 2.78391e-55 8.25059e-56 8.34464e-54 2.39178e-54 2.38417e-52 6.60591e-53 6.48761e-51 1.73676e-51 1.67985e-49 4.3425e-50 4.13515e-48 1.03158e-48 9.66768e-47 2.32581e-47 2.14445e-45 4.9714e-46 4.50816e-44 1.00626e-44 8.97179e-43 1.92635e-43 1.68825e-41 3.48337e-42 3.00014e-40 5.94189e-41 5.02819e-39 9.54726e-40 7.93735e-38 1.4429e-38 1.1785e-36 2.04798e-37 1.6433e-35 2.72534e-36 2.14869e-34 3.39451e-35 2.63061e-33 3.95048e-34 3.01072e-32 4.28785e-33 3.21573e-31 4.3319e-32 3.20005e-30 4.06524e-31 2.96187e-29 3.53628e-30 2.54557e-28 2.84521e-29 2.02803e-27 2.11245e-28 1.49529e-26 1.44383e-27 1.01887e-25 9.06305e-27 6.40618e-25 5.21033e-26 3.71158e-24 2.73522e-25 1.97918e-23 1.30682e-24 9.70339e-23 5.65966e-24 4.3708e-22 2.21083e-23 1.80816e-21 7.73592e-23 6.86843e-21 2.3984e-22 2.39605e-20 6.46263e-22 7.68059e-20 1.45332e-21 2.26414e-19 2.432e-21 6.14523e-19 1.45755e-21 -4.0467e-21 1.53711e-18 2.95788e-203 2.98809e-202 1.64295e-193 1.53528e-192 1.57247e-187 1.19469e-186 6.61047e-183 4.13167e-182 5.57694e-179 2.91726e-178 1.84466e-175 8.20683e-175 3.3393e-172 1.28244e-171 3.99964e-169 1.34409e-168 3.54634e-166 1.05571e-165 2.49444e-163 6.64988e-163 1.45504e-160 3.50686e-160 7.25413e-158 1.59365e-157 3.16107e-155 6.37491e-155 1.22263e-152 2.27725e-152 4.2517e-150 7.35247e-150 1.34201e-147 2.16452e-147 3.8774e-145 5.85608e-145 1.03189e-142 1.46446e-142 2.54387e-140 3.40295e-140 5.83765e-138 7.38078e-138 1.25213e-135 1.49996e-135 2.51866e-133 2.86493e-133 4.76556e-131 5.15737e-131 8.50449e-129 8.77215e-129 1.43493e-126 1.41296e-126 2.29398e-124 2.15956e-124 3.48071e-122 3.13688e-122 5.02124e-120 4.33734e-120 6.89615e-118 5.71584e-118 9.02807e-116 7.18734e-116 1.1279e-113 8.63268e-114 1.34609e-111 9.91331e-112 1.536e-109 1.08928e-109 1.67714e-107 1.14611e-107 1.75349e-105 1.15545e-105 1.75656e-103 1.11675e-103 1.68685e-101 1.03525e-101 1.55362e-99 9.2088e-100 1.3729e-97 7.86276e-98 1.16442e-95 6.446e-96 9.48172e-94 5.07536e-94 7.41387e-92 3.83847e-92 5.56744e-90 2.7888e-90 4.01577e-88 1.94662e-88 2.78238e-86 1.30546e-86 1.85187e-84 8.41135e-85 1.18399e-82 5.20668e-83 7.27099e-81 3.09605e-81 4.28863e-79 1.76831e-79 2.42912e-77 9.69889e-78 1.321e-75 5.1075e-76 6.89587e-74 2.58169e-74 3.45452e-72 1.25222e-72 1.66024e-70 5.82623e-71 7.6522e-69 2.59935e-69 3.38119e-67 1.11154e-67 1.43164e-65 4.55378e-66 5.80601e-64 1.78641e-64 2.25412e-62 6.70672e-63 8.37325e-61 2.40826e-61 2.97417e-59 8.26566e-60 1.00952e-57 2.70977e-58 3.27219e-56 8.47902e-57 1.01209e-54 2.5303e-55 2.98481e-53 7.19522e-54 8.38621e-52 1.94791e-52 2.24276e-50 5.0157e-51 5.70374e-49 1.22713e-49 1.37806e-47 2.84955e-48 3.15973e-46 6.27328e-47 6.86804e-45 1.30774e-45 1.41355e-43 2.57812e-44 2.75145e-42 4.80014e-43 5.05864e-41 8.42871e-42 8.77299e-40 1.3937e-40 1.43323e-38 2.16674e-39 2.20254e-37 3.16195e-38 3.17904e-36 4.32344e-37 4.30287e-35 5.52864e-36 5.45287e-34 6.59904e-35 6.45961e-33 7.33728e-34 7.1406e-32 7.58203e-33 7.35274e-31 7.26425e-32 7.04014e-30 6.43628e-31 6.25691e-29 5.25906e-30 5.15239e-28 3.95064e-29 3.92431e-27 2.71897e-28 2.7601e-26 1.70768e-27 1.78971e-25 9.7398e-27 1.06829e-24 5.0132e-26 5.86235e-24 2.30844e-25 2.95401e-23 9.38196e-25 1.36566e-22 3.28618e-24 5.78957e-22 9.42169e-24 2.25034e-21 1.88503e-23 8.02196e-21 2.48373e-24 2.6219e-20 -7.27989e-23 7.85866e-20 -4.63727e-22 2.16306e-19 -2.03403e-21 -7.30591e-21 5.48415e-19 2.60282e-205 2.45108e-204 2.94819e-195 2.59104e-194 3.73722e-189 2.67276e-188 1.81523e-184 1.06713e-183 1.66069e-180 8.15836e-180 5.7651e-177 2.40442e-176 1.07642e-173 3.86796e-173 1.31762e-170 4.13534e-170 1.18822e-167 3.29781e-167 8.48243e-165 2.10499e-164 5.01692e-162 1.124e-161 2.53535e-159 5.17132e-159 1.11997e-156 2.09476e-156 4.39171e-154 7.57911e-154 1.54875e-151 2.47939e-151 4.9585e-149 7.39787e-149 1.45362e-146 2.02933e-146 3.92617e-144 5.147e-144 9.82555e-142 1.21334e-141 2.28974e-139 2.67086e-139 4.98871e-137 5.51016e-137 1.01956e-134 1.06871e-134 1.96058e-132 1.95416e-132 3.55687e-130 3.37714e-130 6.10281e-128 5.52862e-128 9.9244e-126 8.5908e-126 1.53225e-123 1.26905e-123 2.24976e-121 1.78495e-121 3.14569e-119 2.39346e-119 4.19389e-117 3.06326e-117 5.33748e-115 3.74588e-115 6.49103e-113 4.38071e-113 7.54982e-111 4.90353e-111 8.4053e-109 5.25735e-109 8.96319e-107 5.40243e-107 9.16076e-105 5.32375e-105 8.97826e-103 5.03337e-103 8.44199e-101 4.56764e-101 7.61835e-99 3.97985e-99 6.60069e-97 3.33052e-97 5.49241e-95 2.67757e-95 4.38992e-93 2.06828e-93 3.37089e-91 1.53523e-91 2.48701e-89 1.09514e-89 1.76314e-87 7.50776e-88 1.20112e-85 4.94644e-86 7.86271e-84 3.13179e-84 4.94555e-82 1.90533e-82 2.98869e-80 1.11371e-80 1.73499e-78 6.25335e-79 9.67358e-77 3.37205e-77 5.17907e-75 1.74583e-75 2.66181e-73 8.67576e-74 1.3129e-71 4.13675e-72 6.21248e-70 1.89187e-70 2.8191e-68 8.29496e-69 1.22627e-66 3.48518e-67 5.11071e-65 1.40249e-65 2.03976e-63 5.40246e-64 7.79173e-62 1.99084e-62 2.847e-60 7.01371e-61 9.94398e-59 2.36058e-59 3.3178e-57 7.58439e-58 1.05666e-55 2.32434e-56 3.20977e-54 6.78856e-55 9.29188e-53 1.88779e-53 2.56116e-51 4.99347e-52 6.71532e-50 1.25507e-50 1.67325e-48 2.99409e-49 3.9579e-47 6.77149e-48 8.87768e-46 1.45004e-46 1.88609e-44 2.93612e-45 3.79073e-43 5.61377e-44 7.19833e-42 1.01198e-42 1.28975e-40 1.71724e-41 2.1775e-39 2.73848e-40 3.45907e-38 4.09663e-39 5.16226e-37 5.73752e-38 7.22635e-36 7.50751e-37 9.47326e-35 9.15738e-36 1.16115e-33 1.03877e-34 1.32835e-32 1.09278e-33 1.41576e-31 1.06288e-32 1.40328e-30 9.52526e-32 1.29114e-29 7.83314e-31 1.10075e-28 5.8817e-30 8.67935e-28 4.00685e-29 6.31858e-27 2.4549e-28 4.23988e-26 1.3348e-27 2.61828e-25 6.29488e-27 1.48586e-24 2.45434e-26 7.73906e-24 6.88956e-26 3.69615e-23 4.22795e-26 1.61665e-22 -2.90689e-25 6.46819e-22 -2.64549e-24 2.36762e-21 -1.57947e-23 7.95408e-21 -7.63052e-23 2.45947e-20 -3.16985e-22 7.00753e-20 -1.16384e-21 -3.83714e-21 1.84311e-19 2.03945e-207 1.79723e-206 4.80641e-197 3.99641e-196 8.14954e-191 5.52384e-190 4.60017e-186 2.56251e-185 4.5798e-182 2.12964e-181 1.67167e-178 6.58965e-178 3.22221e-175 1.09258e-174 4.03196e-172 1.19213e-171 3.69762e-169 9.65284e-169 2.678e-166 6.24196e-166 1.60516e-163 3.37341e-163 8.21791e-161 1.57054e-160 3.67762e-158 6.43838e-158 1.46109e-155 2.35803e-155 5.22155e-153 7.81079e-153 1.69449e-150 2.36048e-150 5.0365e-148 6.56052e-148 1.37954e-145 1.68635e-145 3.50196e-143 4.02994e-143 8.28075e-141 8.9959e-141 1.83102e-138 1.8825e-138 3.7988e-136 3.7044e-136 7.4175e-134 6.87422e-134 1.36676e-131 1.20595e-131 2.38243e-129 2.00463e-129 3.93715e-127 3.16377e-127 6.17894e-125 4.74812e-125 9.22414e-123 6.7864e-123 1.31167e-120 9.2495e-121 1.77894e-118 1.20355e-118 2.30373e-116 1.4967e-116 2.85151e-114 1.78047e-114 3.37665e-112 2.02779e-112 3.82834e-110 2.21267e-110 4.15862e-108 2.31465e-108 4.33078e-106 2.32258e-106 4.3261e-104 2.23655e-104 4.14706e-102 2.06771e-102 3.81654e-100 1.83591e-100 3.37313e-98 1.566e-98 2.86393e-96 1.28358e-96 2.33634e-94 1.01112e-94 1.83159e-92 7.65573e-93 1.38004e-90 5.57197e-91 9.99442e-89 3.89838e-89 6.95732e-87 2.62185e-87 4.65518e-85 1.69495e-85 2.99377e-83 1.05314e-83 1.85034e-81 6.28844e-82 1.09892e-79 3.60778e-80 6.27016e-78 1.98828e-78 3.43635e-76 1.05231e-76 1.80845e-74 5.34685e-75 9.13635e-73 2.60732e-73 4.42945e-71 1.21972e-71 2.06001e-69 5.47147e-70 9.18639e-68 2.35245e-68 3.92621e-66 9.68894e-67 1.60743e-64 3.82054e-65 6.30057e-63 1.44144e-63 2.36296e-61 5.19991e-62 8.47384e-60 1.79231e-60 2.9037e-58 5.89802e-59 9.50058e-57 1.85147e-57 2.96574e-55 5.53934e-56 8.82549e-54 1.57803e-54 2.50139e-52 4.27612e-53 6.74613e-51 1.10101e-51 1.72953e-49 2.69053e-50 4.21065e-48 6.23241e-49 9.72389e-47 1.36671e-47 2.12765e-45 2.83327e-46 4.40557e-44 5.54426e-45 8.62178e-43 1.02245e-43 1.5926e-41 1.77393e-42 2.77295e-40 2.89015e-41 4.54437e-39 4.41282e-40 6.99904e-38 6.30009e-39 1.01149e-36 8.38959e-38 1.36942e-35 1.0392e-36 1.7341e-34 1.19366e-35 2.0502e-33 1.2666e-34 2.25905e-32 1.23596e-33 2.31567e-31 1.10277e-32 2.20417e-30 8.92728e-32 1.94457e-29 6.48314e-31 1.58711e-28 4.14633e-30 1.19622e-27 2.25432e-29 8.3118e-27 9.54837e-29 5.31577e-26 2.14297e-28 3.12414e-25 -2.2016e-28 1.68264e-24 -3.76445e-27 8.29552e-24 -3.29901e-26 3.75123e-23 -2.23155e-25 1.5602e-22 -1.27768e-24 5.96715e-22 -6.4043e-24 2.09909e-21 -2.85974e-23 6.79667e-21 -1.1497e-22 2.02793e-20 -4.19099e-22 -1.39324e-21 5.58469e-20 1.42155e-209 1.17581e-208 7.11181e-199 5.62442e-198 1.62911e-192 1.05299e-191 1.07511e-187 5.71269e-187 1.16907e-183 5.18198e-183 4.49567e-180 1.68726e-179 8.95506e-177 2.88685e-176 1.1459e-173 3.21633e-173 1.06867e-170 2.64459e-170 7.8499e-168 1.7321e-167 4.76622e-165 9.47099e-165 2.47079e-162 4.45985e-162 1.11949e-159 1.8493e-159 4.50354e-157 6.85214e-157 1.62993e-154 2.2968e-154 5.35784e-152 7.0259e-152 1.6135e-149 1.97715e-149 4.47867e-147 5.14698e-147 1.15238e-144 1.24599e-144 2.76275e-142 2.81841e-142 6.19493e-140 5.9776e-140 1.30363e-137 1.19245e-137 2.58245e-135 2.2438e-135 4.82877e-133 3.99239e-133 8.54344e-131 6.7325e-131 1.43339e-128 1.07817e-128 2.2844e-126 1.64228e-126 3.46378e-124 2.38284e-124 5.00396e-122 3.29759e-122 6.8963e-120 4.35777e-120 9.07727e-118 5.50493e-118 1.14228e-115 6.65371e-116 1.37549e-113 7.70122e-114 1.58623e-111 8.54202e-112 1.75304e-109 9.08512e-110 1.85781e-107 9.27066e-108 1.88898e-105 9.08046e-106 1.84362e-103 8.54082e-104 1.72786e-101 7.71676e-102 1.55555e-99 6.69947e-100 1.34564e-97 5.59014e-98 1.11873e-95 4.48378e-96 8.94018e-94 3.45749e-94 6.86828e-92 2.56333e-92 5.07297e-90 1.82722e-90 3.60248e-88 1.25231e-88 2.45959e-86 8.25164e-87 1.61443e-84 5.2268e-85 1.01867e-82 3.18231e-83 6.17791e-81 1.86195e-81 3.60047e-79 1.04667e-79 2.016e-77 5.65142e-78 1.08424e-75 2.93001e-76 5.59922e-74 1.45811e-74 2.77556e-72 6.9622e-73 1.32016e-70 3.18819e-71 6.02242e-69 1.39949e-69 2.63377e-67 5.8856e-68 1.10364e-65 2.37001e-66 4.4287e-64 9.13209e-65 1.70085e-62 3.36476e-63 6.24762e-61 1.18462e-61 2.19343e-59 3.98194e-60 7.35487e-58 1.27683e-58 2.35356e-56 3.90203e-57 7.18147e-55 1.13539e-55 2.08765e-53 3.14219e-54 5.77633e-52 8.26162e-53 1.51974e-50 2.06119e-51 3.79805e-49 4.87333e-50 9.00635e-48 1.09039e-48 2.02413e-46 2.3053e-47 4.30631e-45 4.59786e-46 8.66172e-44 8.63565e-45 1.64498e-42 1.52439e-43 2.94567e-41 2.52362e-42 4.96649e-40 3.90866e-41 7.87231e-39 5.64808e-40 1.1713e-37 7.59002e-39 1.63323e-36 9.44888e-38 2.13078e-35 1.08454e-36 2.5964e-34 1.14049e-35 2.94968e-33 1.08917e-34 3.11861e-32 9.32032e-34 3.06285e-31 6.98282e-33 2.78907e-30 4.36484e-32 2.35049e-29 1.9811e-31 1.82993e-28 2.00679e-31 1.31299e-27 -1.1644e-30 8.65959e-27 -1.74124e-29 5.24693e-26 -1.7245e-28 2.93475e-25 -1.38596e-27 1.51392e-24 -9.62164e-27 7.19482e-24 -5.90886e-26 3.1476e-23 -3.25292e-25 1.26734e-22 -1.61743e-24 4.69782e-22 -7.30173e-24 1.60403e-21 -3.00462e-23 5.04959e-21 -1.13071e-22 -3.90401e-22 1.46748e-20 8.80103e-212 6.8507e-211 9.5398e-201 7.21081e-200 2.98258e-194 1.84859e-193 2.31541e-189 1.18063e-188 2.76048e-185 1.17375e-184 1.12075e-181 4.03106e-181 2.30959e-178 7.12637e-178 3.02355e-175 8.1119e-175 2.86772e-172 6.77415e-172 2.13593e-169 4.49313e-169 1.31322e-166 2.48488e-166 6.88994e-164 1.18303e-163 3.159e-161 4.95937e-161 1.28607e-158 1.85807e-158 4.71099e-156 6.29889e-156 1.56764e-153 1.94918e-153 4.77999e-151 5.55024e-151 1.34365e-148 1.46232e-148 3.50184e-146 3.5836e-146 8.50562e-144 8.20785e-144 1.93257e-141 1.763e-141 4.12162e-139 3.56249e-139 8.27672e-137 6.79176e-137 1.56914e-134 1.22463e-134 2.8154e-132 2.09316e-132 4.79113e-130 3.39822e-130 7.74641e-128 5.24849e-128 1.19183e-125 7.72293e-126 1.74741e-123 1.08409e-123 2.44458e-121 1.45342e-121 3.26692e-119 1.86303e-119 4.17482e-117 2.28536e-117 5.10617e-115 2.68505e-115 5.98228e-113 3.02368e-113 6.71804e-111 3.26563e-111 7.23586e-109 3.38442e-109 7.47898e-107 3.3674e-107 7.42167e-105 3.21791e-105 7.07361e-103 2.95441e-103 6.4775e-101 2.60682e-101 5.70068e-99 2.21103e-99 4.82266e-97 1.80298e-97 3.9225e-95 1.41369e-95 3.06767e-93 1.06589e-93 2.30705e-91 7.72821e-92 1.66848e-89 5.38824e-90 1.16036e-87 3.61234e-88 7.75984e-86 2.32841e-86 4.98955e-84 1.44277e-84 3.08424e-82 8.59234e-83 1.83247e-80 4.91699e-81 1.04623e-78 2.70296e-79 5.73866e-77 1.4269e-77 3.02309e-75 7.231e-76 1.52897e-73 3.51624e-74 7.42147e-72 1.63996e-72 3.4557e-70 7.33236e-71 1.54288e-68 3.141e-69 6.60173e-67 1.28838e-67 2.70564e-65 5.05694e-66 1.06148e-63 1.89797e-64 3.98381e-62 6.80633e-63 1.42934e-60 2.33025e-61 4.8989e-59 7.60968e-60 1.6027e-57 2.36805e-58 5.00072e-56 7.01498e-57 1.48683e-54 1.97602e-55 4.20854e-53 5.28642e-54 1.13297e-51 1.34146e-52 2.89785e-50 3.22421e-51 7.0344e-49 7.32889e-50 1.61875e-47 1.57286e-48 3.52704e-46 3.18105e-47 7.26732e-45 6.05039e-46 1.41417e-43 1.07971e-44 2.59535e-42 1.8029e-43 4.48577e-41 2.80796e-42 7.2907e-40 4.06335e-41 1.11255e-38 5.4366e-40 1.59142e-37 6.68184e-39 2.13035e-36 7.4744e-38 2.66413e-35 7.50012e-37 3.10687e-34 6.57934e-36 3.37258e-33 4.77115e-35 3.40148e-32 2.39808e-34 3.18159e-31 -5.49094e-36 2.75224e-30 -2.08391e-33 2.19619e-29 -3.4385e-32 1.62126e-28 -4.00807e-31 1.11189e-27 -3.88552e-30 7.06761e-27 -3.28813e-29 4.15756e-26 -2.48148e-28 2.2594e-25 -1.68859e-27 1.13329e-24 -1.04245e-26 5.2419e-24 -5.86227e-26 2.23523e-23 -3.01126e-25 8.78546e-23 -1.41585e-24 3.18409e-22 -6.1056e-24 1.0649e-21 -2.41913e-23 -8.82356e-23 3.28994e-21 4.83311e-214 3.54732e-213 1.15856e-202 8.40773e-202 4.99518e-196 2.98429e-195 4.59059e-191 2.2588e-190 6.02439e-187 2.47155e-186 2.5882e-183 8.97495e-183 5.52457e-180 1.64161e-179 7.40322e-177 1.91036e-176 7.1419e-174 1.62057e-173 5.39292e-171 1.08841e-170 3.35637e-168 6.08644e-168 1.7815e-165 2.92856e-165 8.26149e-163 1.2406e-162 3.40192e-160 4.69749e-160 1.26056e-157 1.60968e-157 4.2438e-155 5.03607e-155 1.30938e-152 1.45013e-152 3.72496e-150 3.86436e-150 9.82667e-148 9.58044e-148 2.41637e-145 2.22028e-145 5.55907e-143 4.82626e-143 1.20065e-140 9.87115e-141 2.44215e-138 1.90519e-138 4.69046e-136 3.47837e-136 8.52706e-134 6.0208e-134 1.47052e-131 9.90033e-132 2.40978e-129 1.54899e-129 3.75839e-127 2.30926e-127 5.58687e-125 3.28472e-125 7.92561e-123 4.46307e-123 1.07422e-120 5.79877e-121 1.39249e-118 7.21119e-119 1.72792e-116 8.59025e-117 2.0542e-114 9.8097e-115 2.34118e-112 1.07451e-112 2.5596e-110 1.12957e-110 2.68585e-108 1.14015e-108 2.70627e-106 1.10545e-106 2.61945e-104 1.02989e-104 2.43639e-102 9.22222e-103 2.17822e-100 7.93919e-101 1.87228e-98 6.57174e-99 1.54748e-96 5.23117e-97 1.23004e-94 4.00464e-95 9.40336e-93 2.94837e-93 6.91407e-91 2.08759e-91 4.88949e-89 1.42143e-89 3.32542e-87 9.30615e-88 2.17493e-85 5.85756e-86 1.3677e-83 3.54382e-84 8.26803e-82 2.06029e-82 4.80378e-80 1.15069e-80 2.68176e-78 6.17196e-79 1.43807e-76 3.17799e-77 7.40472e-75 1.57023e-75 3.65967e-73 7.44125e-74 1.73536e-71 3.38047e-72 7.89129e-70 1.47131e-70 3.43949e-68 6.13137e-69 1.43609e-66 2.44477e-67 5.74058e-65 9.32016e-66 2.19549e-63 3.39442e-64 8.028e-62 1.18001e-62 2.80457e-60 3.91179e-61 9.35329e-59 1.23536e-59 2.97538e-57 3.71244e-58 9.02021e-56 1.06036e-56 2.60366e-54 2.87482e-55 7.14849e-53 7.38767e-54 1.86491e-51 1.79664e-52 4.61788e-50 4.12774e-51 1.08409e-48 8.94144e-50 2.40994e-47 1.82212e-48 5.06655e-46 3.48414e-47 1.00602e-44 6.23203e-46 1.88403e-43 1.03885e-44 3.32295e-42 1.60617e-43 5.51129e-41 2.28865e-42 8.58204e-40 2.97824e-41 1.25263e-38 3.48931e-40 1.71084e-37 3.58843e-39 2.18263e-36 3.06618e-38 2.59622e-35 1.83366e-37 2.87409e-34 -7.92947e-40 2.95296e-33 -1.58454e-36 2.80829e-32 -3.11779e-35 2.48878e-31 -4.3538e-34 2.06274e-30 -5.08919e-33 1.59534e-29 -5.22392e-32 1.14882e-28 -4.81565e-31 7.68899e-28 -4.02742e-30 4.77451e-27 -3.0737e-29 2.74646e-26 -2.14775e-28 1.46134e-25 -1.37705e-27 7.18781e-25 -8.1098e-27 3.26587e-24 -4.39208e-26 1.37035e-23 -2.18859e-25 5.31087e-23 -1.00445e-24 1.90181e-22 -4.24941e-24 -1.65913e-23 6.29681e-22 2.3515e-216 1.62891e-215 1.27253e-204 8.90194e-204 7.64564e-198 4.42389e-197 8.37121e-193 3.99526e-192 1.21414e-188 4.83194e-188 5.5327e-185 1.85995e-184 1.22479e-181 3.52479e-181 1.68105e-178 4.19628e-178 1.64977e-175 3.61694e-175 1.26283e-172 2.45964e-172 7.95373e-170 1.39043e-169 4.26938e-167 6.75915e-167 2.00164e-164 2.89224e-164 8.33282e-162 1.10627e-161 3.12175e-159 3.8299e-159 1.06268e-156 1.21079e-156 3.31576e-154 3.52358e-154 9.54049e-152 9.49146e-152 2.54594e-149 2.379e-149 6.3336e-147 5.5748e-147 1.47431e-144 1.22547e-144 3.22225e-142 2.5351e-142 6.6335e-140 4.94962e-140 1.28965e-137 9.14274e-138 2.37354e-135 1.6013e-135 4.14434e-133 2.66459e-133 6.87714e-131 4.21935e-131 1.08625e-128 6.36701e-129 1.63551e-126 9.168e-127 2.35032e-124 1.26117e-124 3.22741e-122 1.65916e-122 4.23914e-120 2.08939e-120 5.33075e-118 2.52072e-118 6.42309e-116 2.91559e-116 7.42041e-114 3.23502e-114 8.22445e-112 3.44519e-112 8.75012e-110 3.5232e-110 8.94027e-108 3.46119e-108 8.77586e-106 3.26755e-106 8.27897e-104 2.96516e-104 7.50815e-102 2.58703e-102 6.54714e-100 2.17044e-100 5.49043e-98 1.75121e-98 4.42844e-96 1.35893e-96 3.4357e-94 1.01423e-94 2.56397e-92 7.28018e-93 1.8405e-90 5.02548e-91 1.27074e-88 3.33574e-89 8.43794e-87 2.12871e-87 5.38771e-85 1.30572e-85 3.30735e-83 7.69639e-84 1.95149e-81 4.35805e-82 1.10648e-79 2.36981e-80 6.02666e-78 1.23703e-78 3.15221e-76 6.19579e-77 1.58266e-74 2.97612e-75 7.62434e-73 1.37025e-73 3.52252e-71 6.04346e-72 1.55996e-69 2.55165e-70 6.61819e-68 1.03061e-68 2.68822e-66 3.97887e-67 1.04473e-64 1.46708e-65 3.88203e-63 5.16142e-64 1.37816e-61 1.73088e-62 4.67072e-60 5.52676e-61 1.50989e-58 1.67825e-59 4.65154e-57 4.84001e-58 1.36435e-55 1.32375e-56 3.80627e-54 3.42789e-55 1.00892e-52 8.38893e-54 2.53813e-51 1.93613e-52 6.05288e-50 4.20393e-51 1.36666e-48 8.56268e-50 2.91775e-47 1.63029e-48 5.882e-46 2.88855e-47 1.11807e-44 4.73444e-46 2.00089e-43 7.11831e-45 3.36587e-42 9.69094e-44 5.31341e-41 1.16805e-42 7.85769e-40 1.18956e-41 1.08662e-38 8.96028e-41 1.40252e-37 1.79039e-40 1.68537e-36 -5.36501e-40 1.87977e-35 -1.36992e-38 1.96352e-34 -2.31818e-37 1.93242e-33 -3.24957e-36 1.78782e-32 -4.00972e-35 1.55123e-31 -4.46339e-34 1.26037e-30 -4.53501e-33 9.5674e-30 -4.23178e-32 6.77104e-29 -3.63982e-31 4.46023e-28 -2.88974e-30 2.73025e-27 -2.12001e-29 1.5513e-26 -1.43717e-28 8.17005e-26 -9.00318e-28 3.98582e-25 -5.21153e-27 1.79969e-24 -2.78744e-26 7.52005e-24 -1.37764e-25 2.90778e-23 -6.29211e-25 -2.65665e-24 1.04088e-22 1.0116e-218 6.61826e-218 1.26247e-206 8.54637e-206 1.06832e-199 6.01403e-199 1.40273e-194 6.52503e-194 2.25782e-190 8.76036e-190 1.09397e-186 3.5838e-186 2.51502e-183 7.04689e-183 3.53782e-180 8.58873e-180 3.53282e-177 7.52398e-177 2.7411e-174 5.18048e-174 1.74674e-171 2.95986e-171 9.47875e-169 1.45321e-168 4.491e-166 6.27863e-166 1.88924e-163 2.4249e-163 7.15228e-161 8.4774e-161 2.46058e-158 2.70674e-158 7.75957e-156 7.95646e-156 2.25684e-153 2.16519e-153 6.08838e-151 5.48331e-151 1.5313e-148 1.29839e-148 3.60406e-146 2.88437e-146 7.9654e-144 6.03068e-144 1.6584e-141 1.19021e-141 3.2611e-139 2.22256e-139 6.07111e-137 3.93558e-137 1.07236e-134 6.62152e-135 1.80032e-132 1.06023e-132 2.87717e-130 1.61789e-130 4.38349e-128 2.35603e-128 6.37482e-126 3.27797e-126 8.85951e-124 4.36193e-124 1.17784e-121 5.55649e-122 1.49931e-119 6.78149e-120 1.82886e-117 7.9355e-118 2.13911e-115 8.9083e-116 2.40057e-113 9.59892e-114 2.58618e-111 9.93251e-112 2.67588e-109 9.87364e-110 2.66017e-107 9.43236e-108 2.54174e-105 8.66177e-106 2.33482e-103 7.64767e-104 2.06238e-101 6.49314e-102 1.75206e-99 5.30188e-100 1.43168e-97 4.16369e-98 1.12535e-95 3.14488e-96 8.50918e-94 2.28449e-94 6.18921e-92 1.59587e-92 4.33014e-90 1.07194e-90 2.91368e-88 6.92196e-89 1.88533e-86 4.2961e-87 1.17288e-84 2.56204e-85 7.01353e-83 1.46766e-83 4.03014e-81 8.07297e-82 2.22466e-79 4.26212e-80 1.17926e-77 2.15873e-78 6.00047e-76 1.04839e-76 2.92951e-74 4.87923e-75 1.3716e-72 2.1747e-73 6.15531e-71 9.27614e-72 2.64614e-69 3.78371e-70 1.08905e-67 1.47464e-68 4.28804e-66 5.48623e-67 1.61413e-64 1.94644e-65 5.80435e-63 6.57813e-64 1.99229e-61 2.1151e-62 6.52161e-60 6.46157e-61 2.03406e-58 1.87268e-59 6.03881e-57 5.14005e-58 1.70478e-55 1.33353e-56 4.57126e-54 3.26275e-55 1.16292e-52 7.50851e-54 2.80331e-51 1.61995e-52 6.39493e-50 3.26327e-51 1.37861e-48 6.10503e-50 2.80446e-47 1.05289e-48 5.37514e-46 1.65541e-47 9.69053e-45 2.32935e-46 1.64046e-43 2.83029e-45 2.6028e-42 2.71548e-44 3.86297e-41 1.37575e-43 5.35098e-40 -7.59733e-44 6.89419e-39 -3.01026e-42 8.32219e-38 -6.29883e-41 9.53601e-37 -1.05778e-39 1.03505e-35 -1.55328e-38 1.06213e-34 -2.06077e-37 1.02875e-33 -2.50735e-36 9.38518e-33 -2.81951e-35 8.0452e-32 -2.94295e-34 6.46828e-31 -2.85598e-33 4.86956e-30 -2.57899e-32 3.42524e-29 -2.16726e-31 2.24784e-28 -1.69357e-30 1.37368e-27 -1.23007e-29 7.80637e-27 -8.29497e-29 4.12032e-26 -5.18802e-28 2.01801e-25 -3.00707e-27 9.16459e-25 -1.61401e-26 3.85729e-24 -8.01927e-26 -3.68698e-25 1.50451e-23 3.84236e-221 2.37344e-220 1.13012e-208 7.43045e-208 1.36142e-201 7.48897e-201 2.15787e-196 9.8291e-196 3.87074e-192 1.47134e-191 1.99922e-188 6.41397e-188 4.77987e-185 1.31053e-184 6.89592e-182 1.63648e-181 7.00865e-179 1.45748e-178 5.51203e-176 1.01607e-175 3.55309e-173 5.86639e-173 1.94863e-170 2.90816e-170 9.3267e-168 1.26822e-167 3.96299e-165 4.94357e-165 1.5154e-162 1.74444e-162 5.2661e-160 5.6225e-160 1.67753e-157 1.6685e-157 4.92901e-155 4.58442e-155 1.34346e-152 1.17236e-152 3.41395e-150 2.80332e-150 8.11883e-148 6.2893e-148 1.81322e-145 1.32813e-145 3.81515e-143 2.64764e-143 7.58223e-141 4.99437e-141 1.4267e-138 8.93405e-139 2.54715e-136 1.51853e-136 4.32249e-134 2.45646e-134 6.98309e-132 3.78723e-132 1.07553e-129 5.57232e-130 1.5813e-127 7.83355e-128 2.22191e-125 1.05328e-125 2.98674e-123 1.3558e-123 3.84429e-121 1.67209e-121 4.74176e-119 1.97722e-119 5.60846e-117 2.243e-117 6.36495e-115 2.44238e-115 6.93465e-113 2.55391e-113 7.25658e-111 2.56554e-111 7.29604e-109 2.47669e-109 7.05073e-107 2.29827e-107 6.55073e-105 2.05048e-105 5.85256e-103 1.75913e-103 5.02892e-101 1.45136e-101 4.15646e-99 1.1516e-99 3.30462e-97 8.78778e-98 2.52741e-95 6.44889e-96 1.8594e-93 4.55067e-94 1.31578e-91 3.08734e-92 8.95483e-90 2.01339e-90 5.86031e-88 1.26183e-88 3.68712e-86 7.59748e-87 2.22971e-84 4.39328e-85 1.29563e-82 2.43886e-83 7.23174e-81 1.29917e-81 3.87586e-79 6.63762e-80 1.99378e-77 3.25071e-78 9.83941e-76 1.52508e-76 4.65612e-74 6.84951e-75 2.11155e-72 2.94271e-73 9.17158e-71 1.20835e-71 3.81302e-69 4.73802e-70 1.51626e-67 1.77222e-68 5.76283e-66 6.31635e-67 2.09173e-64 2.14239e-65 7.24461e-63 6.9058e-64 2.39204e-61 2.11215e-62 7.52213e-60 6.11861e-61 2.25052e-58 1.67531e-59 6.39898e-57 4.32506e-58 1.72709e-55 1.0497e-56 4.41923e-54 2.38638e-55 1.07059e-52 5.05792e-54 2.45197e-51 9.93135e-53 5.30099e-50 1.79008e-51 1.08001e-48 2.91934e-50 2.06992e-47 4.19778e-49 3.72477e-46 5.03055e-48 6.27989e-45 4.20454e-47 9.8976e-44 -6.35276e-49 1.45331e-42 -3.26318e-46 1.99072e-41 -9.06925e-45 2.60099e-40 -1.83422e-43 3.24466e-39 -3.18047e-42 3.85759e-38 -4.96361e-41 4.36584e-37 -7.12093e-40 4.69335e-36 -9.49386e-39 4.78246e-35 -1.18244e-37 4.61022e-34 -1.38001e-36 4.19745e-33 -1.51061e-35 3.60049e-32 -1.55101e-34 2.90407e-31 -1.49334e-33 2.19819e-30 -1.34651e-32 1.55784e-29 -1.1353e-31 1.03198e-28 -8.9347e-31 6.37696e-28 -6.55275e-30 3.66916e-27 -4.46989e-29 1.96293e-26 -2.83244e-28 9.75134e-26 -1.66502e-27 4.4948e-25 -9.06931e-27 -4.57315e-26 1.9214e-24 1.2868e-223 7.49388e-223 9.12034e-211 5.84422e-210 1.58098e-203 8.5341e-203 3.04515e-198 1.3644e-197 6.11312e-194 2.2872e-193 3.37441e-190 1.06532e-189 8.40242e-187 2.26532e-186 1.24419e-183 2.90051e-183 1.28739e-180 2.62712e-180 1.02628e-177 1.85446e-177 6.69087e-175 1.08181e-174 3.70751e-172 5.41346e-172 1.79199e-169 2.38201e-169 7.68785e-167 9.36778e-167 2.968e-164 3.33509e-164 1.04133e-161 1.08459e-161 3.34907e-159 3.24761e-159 9.93578e-157 9.0047e-157 2.7345e-154 2.32395e-154 7.01645e-152 5.60816e-152 1.6849e-149 1.26985e-149 3.79993e-147 2.70657e-147 8.07434e-145 5.4462e-145 1.62059e-142 1.03701e-142 3.07964e-140 1.8725e-140 5.55285e-138 3.21269e-138 9.51686e-136 5.24598e-136 1.5528e-133 8.16425e-134 2.4155e-131 1.21257e-131 3.58694e-129 1.72071e-129 5.09059e-127 2.33546e-127 6.9116e-125 3.03456e-125 8.98549e-123 3.7777e-123 1.11946e-120 4.50899e-121 1.33739e-118 5.16291e-119 1.53303e-116 5.67419e-117 1.68701e-114 5.98831e-115 1.78303e-112 6.07103e-113 1.81068e-110 5.91446e-111 1.76727e-108 5.53828e-109 1.6583e-106 4.98569e-107 1.49627e-104 4.31547e-105 1.29841e-102 3.59186e-103 1.08372e-100 2.87485e-101 8.70047e-99 2.21263e-99 6.71892e-97 1.63745e-97 4.99079e-95 1.16505e-95 3.56545e-93 7.96826e-94 2.44952e-91 5.2376e-92 1.61805e-89 3.30775e-90 1.02744e-87 2.00644e-88 6.26982e-86 1.16856e-86 3.67588e-84 6.53159e-85 2.06977e-82 3.50205e-83 1.11884e-80 1.8002e-81 5.80368e-79 8.86653e-80 2.88751e-77 4.18142e-78 1.37719e-75 1.8867e-76 6.29309e-74 8.13826e-75 2.75333e-72 3.35278e-73 1.1526e-70 1.31789e-71 4.61326e-69 4.93691e-70 1.76399e-67 1.76026e-68 6.43838e-66 5.96506e-67 2.24105e-64 1.91806e-65 7.43174e-63 5.84106e-64 2.3455e-61 1.68092e-62 7.03702e-60 4.55912e-61 2.00456e-58 1.16171e-59 5.41449e-57 2.76972e-58 1.38478e-55 6.14583e-57 3.34826e-54 1.25983e-55 7.64084e-53 2.35954e-54 1.64265e-51 3.9645e-53 3.3201e-50 5.77009e-52 6.29474e-49 6.67449e-51 1.11667e-47 4.23362e-50 1.84795e-46 -1.42427e-50 2.83988e-45 -6.94355e-49 4.13771e-44 -1.75777e-47 5.8028e-43 -3.59987e-46 7.82161e-42 -6.54018e-45 1.01223e-40 -1.09006e-43 1.25529e-39 -1.69374e-42 1.48921e-38 -2.47323e-41 1.6871e-37 -3.40904e-40 1.82117e-36 -4.44327e-39 1.86994e-35 -5.48025e-38 1.82202e-34 -6.39767e-37 1.68075e-33 -7.05788e-36 1.46494e-32 -7.34923e-35 1.2032e-31 -7.2051e-34 9.28863e-31 -6.63456e-33 6.72234e-30 -5.72421e-32 4.55047e-29 -4.61607e-31 2.87393e-28 -3.47073e-30 1.69062e-27 -2.42896e-29 9.2471e-27 -1.57862e-28 4.69633e-26 -9.51328e-28 -5.30116e-27 2.21301e-25 3.79208e-226 2.07788e-225 6.63056e-213 4.155e-212 1.67193e-205 8.89331e-205 3.93956e-200 1.74408e-199 8.88846e-196 3.28852e-195 5.2573e-192 1.64102e-191 1.36541e-188 3.63721e-188 2.07674e-185 4.77912e-185 2.18838e-182 4.40376e-182 1.76838e-179 3.1478e-179 1.16588e-176 1.85512e-176 6.52558e-174 9.36853e-174 3.18408e-171 4.15809e-171 1.37868e-168 1.6492e-168 5.37147e-166 5.92133e-166 1.90185e-163 1.94209e-163 6.17239e-161 5.86479e-161 1.84795e-158 1.64013e-158 5.13256e-156 4.26948e-156 1.32899e-153 1.03919e-153 3.22053e-151 2.37335e-151 7.32973e-149 5.10239e-149 1.57176e-146 1.03562e-146 3.18359e-144 1.98902e-144 6.10522e-142 3.6226e-142 1.11087e-139 6.2689e-140 1.92122e-137 1.03243e-137 3.1632e-135 1.62049e-135 4.96525e-133 2.4273e-133 7.43997e-131 3.47368e-131 1.06541e-128 4.75447e-129 1.45957e-126 6.22952e-127 1.91455e-124 7.81967e-125 2.40655e-122 9.41049e-123 2.90059e-120 1.08634e-120 3.3543e-118 1.20359e-118 3.72365e-116 1.2804e-116 3.96992e-114 1.30835e-114 4.06638e-112 1.28455e-112 4.00298e-110 1.21208e-110 3.78811e-108 1.09937e-108 3.44675e-106 9.58629e-107 3.01586e-104 8.03666e-105 2.53786e-102 6.47784e-103 2.05399e-100 5.01994e-101 1.59883e-98 3.73976e-99 1.1969e-96 2.67796e-97 8.61636e-95 1.84289e-95 5.96398e-93 1.21849e-93 3.96837e-91 7.73824e-92 2.53777e-89 4.71854e-90 1.55931e-87 2.76147e-88 9.20261e-86 1.55037e-86 5.21468e-84 8.34575e-85 2.83595e-82 4.30493e-83 1.47952e-80 2.12641e-81 7.40064e-79 1.00504e-79 3.54728e-77 4.5416e-78 1.62828e-75 1.96029e-76 7.15275e-74 8.07354e-75 3.00475e-72 3.16906e-73 1.20611e-70 1.18398e-71 4.62198e-69 4.20397e-70 1.68938e-67 1.4162e-68 5.88366e-66 4.51735e-67 1.95034e-64 1.36116e-65 6.146e-63 3.86345e-64 1.83879e-61 1.02934e-62 5.21571e-60 2.56282e-61 1.40044e-58 5.92729e-60 3.55341e-57 1.26267e-58 8.50405e-56 2.44549e-57 1.9155e-54 4.21089e-56 4.05108e-53 6.15911e-55 8.02202e-52 6.74367e-54 1.48255e-50 2.32721e-53 2.546e-49 -2.5676e-53 4.06529e-48 -9.46855e-52 6.26474e-47 -2.34331e-50 9.35412e-46 -4.93841e-49 1.35288e-44 -9.44324e-48 1.893e-43 -1.68251e-46 2.55711e-42 -2.82789e-45 3.33019e-41 -4.51483e-44 4.17359e-40 -6.86984e-43 5.02457e-39 -9.98204e-42 5.79731e-38 -1.38607e-40 6.39695e-37 -1.83776e-39 6.73799e-36 -2.32261e-38 6.75343e-35 -2.79261e-37 6.42562e-34 -3.18267e-36 5.78366e-33 -3.42903e-35 4.90908e-32 -3.47714e-34 3.91733e-31 -3.30941e-33 2.93004e-30 -2.94512e-32 2.04835e-29 -2.4457e-31 1.33564e-28 -1.88974e-30 8.10256e-28 -1.35571e-29 4.56569e-27 -9.00655e-29 -5.515e-28 2.38491e-26 9.82201e-229 5.04575e-228 4.33977e-215 2.66884e-214 1.60915e-207 8.47128e-207 4.66967e-202 2.05211e-201 1.18915e-197 4.37127e-197 7.55652e-194 2.34335e-193 2.05009e-190 5.42223e-190 3.20539e-187 7.31739e-187 3.44103e-184 6.86218e-184 2.81881e-181 4.96741e-181 1.87912e-178 2.95724e-178 1.06215e-175 1.50682e-175 5.23031e-173 6.74389e-173 2.28485e-170 2.69664e-170 8.98015e-168 9.76052e-168 3.20728e-165 3.22719e-165 1.0499e-162 9.82408e-163 3.17048e-160 2.76963e-160 8.88176e-158 7.26815e-158 2.31944e-155 1.7833e-155 5.66859e-153 4.10545e-153 1.30113e-150 8.89704e-151 2.81377e-148 1.82026e-148 5.74745e-146 3.52382e-146 1.11146e-143 6.46865e-144 2.0392e-141 1.12816e-141 3.55595e-139 1.8724e-139 5.90293e-137 2.96152e-137 9.34152e-135 4.46981e-135 1.4111e-132 6.44496e-133 2.037e-130 8.8871e-131 2.81289e-128 1.17301e-128 3.71894e-126 1.48314e-126 4.71123e-124 1.79763e-124 5.72234e-122 2.08978e-122 6.66802e-120 2.33131e-120 7.4581e-118 2.49685e-118 8.0105e-116 2.56823e-116 8.2652e-114 2.53778e-114 8.1949e-112 2.40964e-112 7.80978e-110 2.19889e-110 7.15518e-108 1.92865e-108 6.30301e-106 1.62604e-106 5.33897e-104 1.31775e-104 4.34874e-102 1.02645e-102 3.4061e-100 7.6841e-101 2.56514e-98 5.52754e-99 1.85727e-96 3.81996e-97 1.29263e-94 2.53543e-95 8.64613e-93 1.61573e-93 5.55653e-91 9.88185e-92 3.42994e-89 5.79779e-90 2.0329e-87 3.26148e-88 1.15642e-85 1.75808e-86 6.31084e-84 9.07499e-85 3.30225e-82 4.48238e-83 1.65591e-80 2.11671e-81 7.95237e-79 9.54754e-80 3.65505e-77 4.10903e-78 1.60658e-75 1.68532e-76 6.74785e-74 6.57851e-75 2.70581e-72 2.44006e-73 1.03484e-70 8.58466e-72 3.7708e-69 2.85878e-70 1.30762e-67 8.98877e-69 4.30977e-66 2.66049e-67 1.34818e-64 7.3846e-66 3.99654e-63 1.91283e-64 1.12077e-61 4.59349e-63 2.96761e-60 1.013e-61 7.40284e-59 2.02121e-60 1.73536e-57 3.55402e-59 3.81154e-56 5.20487e-58 7.81618e-55 5.32894e-57 1.49003e-53 -1.78581e-59 2.62381e-52 -2.69209e-56 4.33427e-51 -8.96559e-55 6.99773e-50 -2.22563e-53 1.10367e-48 -4.85218e-52 1.7009e-47 -9.76611e-51 2.55541e-46 -1.85512e-49 3.7393e-45 -3.36137e-48 5.3175e-44 -5.84476e-47 7.33833e-43 -9.78299e-46 9.808e-42 -1.5793e-44 1.26744e-40 -2.45957e-43 1.58066e-39 -3.68966e-42 1.89725e-38 -5.31764e-41 2.18482e-37 -7.34028e-40 2.40645e-36 -9.65069e-39 2.52357e-35 -1.20371e-37 2.5111e-34 -1.41593e-36 2.35901e-33 -1.56446e-35 2.08545e-32 -1.61631e-34 1.72756e-31 -1.55769e-33 1.33784e-30 -1.39836e-32 9.6546e-30 -1.16792e-31 6.47758e-29 -9.07707e-31 4.03034e-28 -6.55091e-30 -4.36912e-29 2.3179e-27 2.23437e-231 1.07013e-230 2.55709e-217 1.54851e-216 1.40932e-209 7.37521e-209 5.07025e-204 2.22225e-203 1.46339e-199 5.37098e-199 1.00168e-195 3.10152e-195 2.8431e-192 7.50383e-192 4.57336e-189 1.04094e-188 5.0034e-186 9.9387e-186 4.15533e-183 7.28663e-183 2.80068e-180 4.38165e-180 1.59834e-177 2.25218e-177 7.9408e-175 1.01615e-174 3.49865e-172 4.09503e-172 1.38661e-169 1.49365e-169 4.99339e-167 4.97648e-167 1.64794e-164 1.52643e-164 5.01702e-162 4.33613e-162 1.41685e-159 1.14653e-159 3.72961e-157 2.83416e-157 9.18731e-155 6.57328e-155 2.12544e-152 1.43507e-152 4.63238e-150 2.95758e-150 9.53553e-148 5.76714e-148 1.85815e-145 1.06627e-145 3.43499e-143 1.87276e-143 6.03474e-141 3.12984e-141 1.00918e-138 4.98436e-139 1.60871e-136 7.57365e-137 2.44757e-134 1.09928e-134 3.55828e-132 1.52568e-132 4.94799e-130 2.02659e-130 6.58676e-128 2.57835e-128 8.40052e-126 3.14404e-126 1.02709e-123 3.67656e-124 1.20457e-121 4.12497e-122 1.35582e-119 4.44232e-120 1.46522e-117 4.59368e-118 1.52087e-115 4.56244e-116 1.51671e-113 4.35323e-114 1.45357e-111 3.99091e-112 1.33895e-109 3.51575e-110 1.18563e-107 2.97622e-108 1.00928e-105 2.42105e-106 8.25968e-104 1.89234e-104 6.4981e-102 1.42099e-102 4.91409e-100 1.02493e-100 3.57169e-98 7.09909e-99 2.49457e-96 4.72035e-97 1.67381e-94 3.01196e-95 1.07864e-92 1.84346e-93 6.67368e-91 1.0817e-91 3.96273e-89 6.08154e-90 2.25721e-87 3.27391e-88 1.23276e-85 1.68631e-86 6.45158e-84 8.30339e-85 3.23343e-82 3.90485e-83 1.55085e-80 1.75192e-81 7.11291e-79 7.48935e-80 3.11698e-77 3.04641e-78 1.30384e-75 1.17718e-76 5.20089e-74 4.31313e-75 1.97607e-72 1.49514e-73 7.14265e-71 4.89065e-72 2.45278e-69 1.50474e-70 7.98968e-68 4.33712e-69 2.46446e-66 1.16496e-67 7.18443e-65 2.8952e-66 1.975e-63 6.5884e-65 5.10661e-62 1.35038e-63 1.23809e-60 2.41968e-62 2.8043e-59 3.547e-61 5.90682e-58 3.39385e-60 1.15026e-56 -1.75205e-61 2.05193e-55 -1.93032e-59 3.48533e-54 -6.14834e-58 5.83813e-53 -1.54332e-56 9.64819e-52 -3.47395e-55 1.57148e-50 -7.32826e-54 2.51802e-49 -1.47585e-52 3.96372e-48 -2.86369e-51 6.11747e-47 -5.38495e-50 9.2436e-46 -9.84651e-49 1.36496e-44 -1.75259e-47 1.96696e-43 -3.03453e-46 2.76023e-42 -5.09651e-45 3.75944e-41 -8.27045e-44 4.95008e-40 -1.28925e-42 6.27481e-39 -1.91709e-41 7.60858e-38 -2.70204e-40 8.78371e-37 -3.58643e-39 9.59184e-36 -4.46166e-38 9.86278e-35 -5.18582e-37 9.5021e-34 -5.62424e-36 8.55374e-33 -5.70365e-35 7.18228e-32 -5.41914e-34 5.617e-31 -4.84457e-33 4.09184e-30 -4.09012e-32 2.77153e-29 -3.25541e-31 -2.42522e-30 1.74089e-28 4.45749e-234 1.97637e-233 1.35605e-219 8.11797e-219 1.12305e-211 5.87045e-211 5.04229e-206 2.21538e-205 1.65632e-201 6.10121e-201 1.22442e-197 3.80527e-197 3.64132e-194 9.64139e-194 6.03103e-191 1.37599e-190 6.7267e-188 1.33808e-187 5.66427e-185 9.93699e-185 3.85953e-182 6.0352e-182 2.22343e-179 3.12869e-179 1.11418e-176 1.42268e-176 4.94944e-174 5.77644e-174 1.97733e-171 2.12244e-171 7.17684e-169 7.12295e-169 2.38686e-166 2.20049e-166 7.32242e-164 6.29559e-164 2.0836e-161 1.67641e-161 5.52561e-159 4.17284e-159 1.37118e-156 9.7447e-157 3.19529e-154 2.14194e-154 7.01415e-152 4.444e-152 1.45404e-149 8.72269e-150 2.85315e-147 1.62313e-147 5.31038e-145 2.86887e-145 9.39203e-143 4.82425e-143 1.58095e-140 7.7292e-141 2.5364e-138 1.18137e-138 3.88334e-136 1.72453e-136 5.6804e-134 2.4068e-134 7.94641e-132 3.21424e-132 1.06402e-129 4.11065e-130 1.36472e-127 5.03758e-128 1.67775e-125 5.91901e-126 1.97813e-123 6.67121e-124 2.23789e-121 7.2155e-122 2.43034e-119 7.4917e-120 2.53448e-117 7.469e-118 2.5388e-115 7.15151e-116 2.44333e-113 6.57726e-114 2.25954e-111 5.81079e-112 2.00812e-109 4.93143e-110 1.71517e-107 4.02009e-108 1.40791e-105 3.14759e-106 1.11062e-103 2.3666e-104 8.41834e-102 1.70834e-102 6.1304e-100 1.18359e-100 4.288e-98 7.86763e-99 2.88009e-96 5.01556e-97 1.85696e-94 3.06484e-95 1.14887e-92 1.79415e-93 6.81749e-91 1.0055e-91 3.87829e-89 5.39077e-90 2.11383e-87 2.76241e-88 1.10316e-85 1.35167e-86 5.50854e-84 6.30834e-85 2.62977e-82 2.8046e-83 1.19924e-80 1.18606e-81 5.21881e-79 4.76318e-80 2.16497e-77 1.81297e-78 8.55111e-76 6.52504e-77 3.21146e-74 2.21449e-75 1.14509e-72 7.06293e-74 3.86996e-71 2.10797e-72 1.23725e-69 5.85427e-71 3.73364e-68 1.50135e-69 1.06074e-66 3.51581e-68 2.82841e-65 7.38467e-67 7.05231e-64 1.34657e-65 1.63662e-62 1.97878e-64 3.5138e-61 1.78695e-63 6.92294e-60 -1.30602e-64 1.23821e-58 -1.00786e-62 2.13932e-57 -3.13097e-61 3.6785e-56 -7.92997e-60 6.30601e-55 -1.83212e-58 1.07535e-53 -4.01375e-57 1.82182e-52 -8.47929e-56 3.0595e-51 -1.74365e-54 5.0812e-50 -3.5095e-53 8.33588e-49 -6.92845e-52 1.34927e-47 -1.34172e-50 2.1503e-46 -2.54356e-49 3.36418e-45 -4.69561e-48 5.14355e-44 -8.39186e-47 7.64528e-43 -1.43806e-45 1.09724e-41 -2.34685e-44 1.50861e-40 -3.61712e-43 1.97321e-39 -5.24559e-42 2.43791e-38 -7.12442e-41 2.83037e-37 -9.08161e-40 3.07675e-36 -1.08742e-38 3.12638e-35 -1.2306e-37 2.97488e-34 -1.32542e-36 2.65524e-33 -1.36542e-35 2.23207e-32 -1.35173e-34 1.77363e-31 -1.28056e-33 1.3305e-30 -1.14485e-32 -9.46541e-32 9.383e-30 7.80029e-237 3.16745e-236 6.47546e-222 3.84795e-221 8.14544e-214 4.27524e-213 4.59381e-208 2.03447e-207 1.72437e-203 6.41115e-203 1.38018e-199 4.32999e-199 4.3071e-196 1.15067e-195 7.35114e-193 1.69088e-192 8.36196e-190 1.67538e-189 7.13997e-187 1.26041e-186 4.91803e-184 7.73119e-184 2.85944e-181 4.04153e-181 1.44491e-178 1.85172e-178 6.46951e-176 7.57268e-176 2.60443e-173 2.80196e-173 9.52377e-171 9.46826e-171 3.19059e-168 2.94482e-168 9.85881e-166 8.48153e-166 2.82524e-163 2.27338e-163 7.54435e-161 5.69526e-161 1.88489e-158 1.33843e-158 4.4219e-156 2.96029e-156 9.77047e-154 6.17926e-154 2.03843e-151 1.22007e-151 4.02493e-149 2.28345e-149 7.53706e-147 4.05861e-147 1.34094e-144 6.86198e-145 2.27023e-142 1.10517e-142 3.66269e-140 1.69775e-140 5.63822e-138 2.4904e-138 8.29067e-136 3.49185e-136 1.16566e-133 4.684e-134 1.56838e-131 6.01547e-132 2.02094e-129 7.40105e-130 2.49545e-127 8.72811e-128 2.9545e-125 9.87089e-126 3.35561e-123 1.07096e-123 3.65753e-121 1.11509e-121 3.82719e-119 1.11448e-119 3.84559e-117 1.06939e-117 3.71132e-115 9.85259e-116 3.44061e-113 8.71639e-114 3.06423e-111 7.40434e-112 2.62179e-109 6.03898e-110 2.15501e-107 4.7283e-108 1.70152e-105 3.5532e-106 1.29032e-103 2.56206e-104 9.39604e-102 1.77198e-102 6.56847e-100 1.17504e-100 4.40675e-98 7.4671e-99 2.83624e-96 4.54475e-97 1.75044e-94 2.6475e-95 1.0354e-92 1.47502e-93 5.86649e-91 7.85271e-92 3.18179e-89 3.99085e-90 1.65071e-87 1.93394e-88 8.18501e-86 8.92454e-87 3.87541e-84 3.916e-85 1.75034e-82 1.63102e-83 7.53238e-81 6.43502e-82 3.08454e-79 2.39921e-80 1.20023e-77 8.4286e-79 4.4304e-76 2.78007e-77 1.54848e-74 8.57056e-76 5.11355e-73 2.45502e-74 1.59141e-71 6.48125e-73 4.6535e-70 1.5584e-71 1.27389e-68 3.34877e-70 3.24979e-67 6.21169e-69 7.68103e-66 9.18487e-68 1.66877e-64 8.01897e-67 3.29519e-63 -5.84603e-68 5.8432e-62 -3.95319e-66 1.01293e-60 -1.20331e-64 1.76527e-59 -3.04834e-63 3.10003e-58 -7.14294e-62 5.47111e-57 -1.60409e-60 9.6802e-56 -3.50727e-59 1.71241e-54 -7.53559e-58 3.02406e-53 -1.59694e-56 5.32526e-52 -3.34357e-55 9.33002e-51 -6.90865e-54 1.62156e-49 -1.40136e-52 2.78398e-48 -2.77086e-51 4.68912e-47 -5.28292e-50 7.69333e-46 -9.61953e-49 1.21661e-44 -1.66158e-47 1.84035e-43 -2.70656e-46 2.63918e-42 -4.1543e-45 3.57291e-41 -6.02339e-44 4.54298e-40 -8.28853e-43 5.43511e-39 -1.09316e-41 6.12154e-38 -1.38802e-40 6.52914e-37 -1.71015e-39 6.63973e-36 -2.03774e-38 6.46903e-35 -2.32947e-37 6.06653e-34 -2.53006e-36 5.45388e-33 -2.5602e-35 4.63966e-32 -2.36553e-34 -1.94704e-33 3.67303e-31 1.19745e-239 4.38702e-239 2.78671e-224 1.65127e-223 5.38124e-216 2.8523e-215 3.83641e-210 1.72303e-209 1.65205e-205 6.23803e-205 1.43522e-201 4.57381e-201 4.70665e-198 1.27671e-197 8.28424e-195 1.93325e-194 9.61396e-192 1.95246e-191 8.32485e-189 1.48817e-188 5.7962e-186 9.21852e-186 3.40061e-183 4.85862e-183 1.73235e-180 2.24247e-180 7.81578e-178 9.23423e-178 3.16948e-175 3.43961e-175 1.16725e-172 1.16989e-172 3.93753e-170 3.66178e-170 1.22494e-167 1.06126e-167 3.53356e-165 2.86202e-165 9.49651e-163 7.21261e-163 2.38755e-160 1.70489e-160 5.63553e-158 3.79223e-158 1.25262e-155 7.9593e-156 2.62848e-153 1.57987e-153 5.21903e-151 2.97198e-151 9.82592e-149 5.30835e-149 1.75726e-146 9.01711e-147 2.98995e-144 1.45878e-144 4.84699e-142 2.25049e-142 7.49546e-140 3.31446e-140 1.10696e-137 4.66478e-138 1.56278e-135 6.27926e-136 2.11083e-133 8.09017e-134 2.72972e-131 9.98272e-132 3.38188e-129 1.18035e-129 4.01622e-127 1.33795e-127 4.57403e-125 1.45446e-125 4.99775e-123 1.51679e-123 5.24061e-121 1.51777e-121 5.2751e-119 1.45752e-119 5.098e-117 1.34333e-117 4.73087e-115 1.18828e-115 4.2158e-113 1.00879e-113 3.60756e-111 8.21826e-112 2.96425e-109 6.42348e-110 2.33846e-107 4.81573e-108 1.77084e-105 3.46188e-106 1.28693e-103 2.3853e-104 8.97271e-102 1.57451e-102 5.99962e-100 9.95108e-101 3.84561e-98 6.0177e-99 2.3617e-96 3.47929e-97 1.38882e-94 1.92162e-95 7.81523e-93 1.01279e-93 4.20514e-91 5.08796e-92 2.16168e-89 2.43308e-90 1.06062e-87 1.10583e-88 4.96144e-86 4.7682e-87 2.21008e-84 1.94644e-85 9.36183e-83 7.50334e-84 3.76513e-81 2.72321e-82 1.43511e-79 9.27038e-81 5.17329e-78 2.9461e-79 1.75942e-76 8.68644e-78 5.62911e-75 2.35613e-76 1.68831e-73 5.80678e-75 4.72649e-72 1.27499e-73 1.22828e-70 2.40638e-72 2.94131e-69 3.59775e-71 6.4244e-68 3.13723e-70 1.26027e-66 -1.8535e-71 2.1872e-65 -1.18946e-69 3.7401e-64 -3.52885e-68 6.50106e-63 -8.82786e-67 1.15041e-61 -2.06572e-65 2.0685e-60 -4.67524e-64 3.76314e-59 -1.03931e-62 6.90594e-58 -2.28761e-61 1.27673e-56 -4.99624e-60 2.37125e-55 -1.08437e-58 4.41302e-54 -2.32913e-57 8.19589e-53 -4.91131e-56 1.5078e-51 -1.00417e-54 2.72407e-50 -1.96465e-53 4.7751e-49 -3.6557e-52 8.03616e-48 -6.42414e-51 1.28872e-46 -1.07037e-49 1.95656e-45 -1.69543e-48 2.80862e-44 -2.59118e-47 3.82e-43 -3.84564e-46 4.94421e-42 -5.60803e-45 6.14823e-41 -7.9927e-44 7.37682e-40 -1.10129e-42 8.60588e-39 -1.4515e-41 9.7279e-38 -1.79133e-40 1.05684e-36 -2.05758e-39 1.09276e-35 -2.17698e-38 1.05473e-34 -2.07636e-37 9.32268e-34 -1.75252e-36 -1.26947e-35 7.39083e-33 1.61309e-242 5.22063e-242 1.08201e-226 6.42791e-226 3.24162e-218 1.74656e-217 2.93951e-212 1.34803e-211 1.45762e-207 5.62864e-207 1.37771e-203 4.49118e-203 4.75436e-200 1.31868e-199 8.63617e-197 2.05917e-196 1.02285e-193 2.12048e-193 8.98271e-191 1.63763e-190 6.32143e-188 1.02441e-187 3.74174e-185 5.44261e-185 1.92119e-182 2.52994e-182 8.73147e-180 1.04874e-179 3.56563e-177 3.93131e-177 1.32202e-174 1.34539e-174 4.48879e-172 4.23641e-172 1.40532e-169 1.235e-169 4.07888e-167 3.34947e-167 1.10274e-164 8.48736e-165 2.78846e-162 2.01688e-162 6.61867e-160 4.50927e-160 1.47906e-157 9.51082e-158 3.11965e-155 1.89671e-155 6.22493e-153 3.58398e-153 1.1775e-150 6.42858e-151 2.11528e-148 1.09636e-148 3.61441e-146 1.7803e-146 5.88273e-144 2.75603e-144 9.13121e-142 4.07194e-142 1.35322e-139 5.74745e-140 1.91655e-137 7.75663e-138 2.5962e-135 1.00162e-135 3.36611e-133 1.2383e-133 4.17982e-131 1.46644e-131 4.9735e-129 1.66422e-129 5.67332e-127 1.81057e-127 6.2065e-125 1.88886e-125 6.51359e-123 1.88995e-123 6.5593e-121 1.81394e-121 6.33907e-119 1.67007e-119 5.87984e-117 1.47497e-117 5.23466e-115 1.24946e-115 4.47279e-113 1.01505e-113 3.66768e-111 7.90635e-112 2.88572e-109 5.90267e-110 2.17805e-107 4.22217e-108 1.57652e-105 2.89221e-106 1.09393e-103 1.8962e-104 7.27366e-102 1.18909e-102 4.63194e-100 7.12661e-101 2.82331e-98 4.0785e-99 1.64604e-96 2.22649e-97 9.17218e-95 1.15805e-95 4.88051e-93 5.7309e-94 2.4773e-91 2.69413e-92 1.19817e-89 1.2009e-90 5.51459e-88 5.06454e-89 2.41169e-86 2.01551e-87 1.00045e-84 7.54529e-86 3.92904e-83 2.64683e-84 1.45744e-81 8.65767e-83 5.09235e-80 2.62365e-81 1.6705e-78 7.30174e-80 5.12424e-77 1.84263e-78 1.46235e-75 4.13249e-77 3.85698e-74 7.94567e-76 9.31729e-73 1.20874e-74 2.03463e-71 1.09112e-73 3.93414e-70 -4.2022e-75 6.58457e-69 -2.79384e-73 1.08828e-67 -8.00616e-72 1.84848e-66 -1.94358e-70 3.23423e-65 -4.45328e-69 5.81217e-64 -9.96106e-68 1.06657e-62 -2.20477e-66 1.99154e-61 -4.84636e-65 3.77459e-60 -1.06255e-63 7.23019e-59 -2.32393e-62 1.39581e-57 -5.02655e-61 2.69666e-56 -1.06041e-59 5.16093e-55 -2.14179e-58 9.64857e-54 -4.11058e-57 1.73686e-52 -7.45054e-56 2.9893e-51 -1.27802e-54 4.88091e-50 -2.11036e-53 7.58605e-49 -3.40474e-52 1.12476e-47 -5.47044e-51 1.61402e-46 -8.73619e-50 2.25532e-45 -1.36955e-48 3.10431e-44 -2.0633e-47 4.18567e-43 -2.90043e-46 5.46794e-42 -3.79796e-45 6.84665e-41 -4.54241e-44 8.0432e-40 -4.9535e-43 8.81116e-39 -4.93154e-42 8.90841e-38 -4.40958e-41 8.13763e-37 -3.45067e-40 6.60129e-36 -2.32236e-39 -1.2796e-38 4.62929e-35 1.91359e-245 5.28533e-245 3.7977e-229 2.27589e-228 1.78319e-220 9.84037e-220 2.06895e-214 9.76427e-214 1.18562e-209 4.71942e-209 1.22193e-205 4.10735e-205 4.44316e-202 1.27021e-201 8.33497e-199 2.04688e-198 1.00779e-195 2.1499e-195 8.97662e-193 1.68248e-192 6.3845e-190 1.06274e-189 3.812e-187 5.69082e-187 1.97228e-184 2.66363e-184 9.02709e-182 1.11123e-181 3.71104e-179 4.19093e-179 1.38475e-176 1.44264e-176 4.73081e-174 4.5683e-174 1.48991e-171 1.33903e-171 4.34916e-169 3.65074e-169 1.18226e-166 9.29737e-167 3.00536e-164 2.22007e-164 7.16964e-162 4.98652e-162 1.6099e-159 1.05634e-159 3.41112e-157 2.1153e-157 6.83591e-155 4.01245e-155 1.29832e-152 7.22295e-153 2.34115e-150 1.2359e-150 4.01441e-148 2.01295e-148 6.55484e-146 3.12462e-146 1.02043e-143 4.62754e-144 1.51621e-141 6.54505e-142 2.15232e-139 8.84807e-140 2.92131e-137 1.14408e-137 3.79374e-135 1.41576e-135 4.71671e-133 1.6775e-133 5.61719e-131 1.90395e-131 6.41057e-129 2.07069e-129 7.01334e-127 2.15847e-127 7.35737e-125 2.15687e-125 7.40249e-123 2.06626e-123 7.14409e-121 1.89776e-121 6.61387e-119 1.67095e-119 5.87354e-117 1.41024e-117 5.00317e-115 1.14061e-115 4.08723e-113 8.83827e-114 3.20152e-111 6.55875e-112 2.40382e-109 4.65903e-110 1.72945e-107 3.16625e-108 1.19175e-105 2.05723e-106 7.86157e-104 1.27695e-104 4.96154e-102 7.56537e-103 2.99362e-100 4.27357e-101 1.72545e-98 2.29898e-99 9.49138e-97 1.17612e-97 4.97757e-95 5.71263e-96 2.48566e-93 2.62939e-94 1.18032e-91 1.14429e-92 5.32106e-90 4.69575e-91 2.2732e-88 1.81115e-89 9.18301e-87 6.53942e-88 3.49898e-85 2.19917e-86 1.2537e-83 6.84297e-85 4.2086e-82 1.95247e-83 1.31758e-80 5.04274e-82 3.82445e-79 1.15545e-80 1.0212e-77 2.2672e-79 2.48133e-76 3.53078e-78 5.39785e-75 3.39171e-77 1.02344e-73 -6.47112e-79 1.62972e-72 -5.22563e-77 2.54138e-71 -1.42793e-75 4.11344e-70 -3.29258e-74 6.95065e-69 -7.24056e-73 1.22011e-67 -1.56418e-71 2.20979e-66 -3.34823e-70 4.10502e-65 -7.13146e-69 7.76606e-64 -1.52421e-67 1.49288e-62 -3.25111e-66 2.9038e-61 -6.79259e-65 5.6488e-60 -1.36063e-63 1.08152e-58 -2.57156e-62 1.99732e-57 -4.56657e-61 3.52681e-56 -7.61347e-60 5.91231e-55 -1.2386e-58 9.42212e-54 -2.00993e-57 1.45107e-52 -3.32612e-56 2.1908e-51 -5.5271e-55 3.3038e-50 -8.95612e-54 4.96501e-49 -1.35809e-52 7.34166e-48 -1.91389e-51 1.04545e-46 -2.42082e-50 1.39169e-45 -2.78542e-49 1.72867e-44 -2.8877e-48 1.96428e-43 -2.62992e-47 2.03794e-42 -2.14867e-46 1.93272e-41 -1.59792e-45 1.64815e-40 -9.85397e-45 1.23171e-39 -5.22569e-44 7.93647e-39 -2.25029e-43 -7.20566e-43 4.2123e-38 2.00463e-248 4.47134e-248 1.20811e-231 7.35658e-231 8.97684e-223 5.118e-222 1.34004e-216 6.56729e-216 8.90372e-212 3.68691e-211 1.00265e-207 3.50723e-207 3.84603e-204 1.14378e-203 7.45539e-201 1.90323e-200 9.20489e-198 2.03951e-197 8.31627e-195 1.61745e-194 5.97734e-192 1.03158e-191 3.59935e-189 5.56665e-189 1.87612e-186 2.62304e-186 8.64539e-184 1.10103e-183 3.57686e-181 4.17663e-181 1.3428e-178 1.44568e-178 4.61417e-176 4.60233e-176 1.46127e-173 1.35589e-173 4.28819e-171 3.71466e-171 1.17157e-168 9.50383e-169 2.99252e-166 2.27933e-166 7.17155e-164 5.14079e-164 1.6172e-161 1.09321e-161 3.44029e-159 2.19695e-159 6.91994e-157 4.18096e-157 1.31877e-154 7.54863e-155 2.38543e-152 1.29505e-152 4.1018e-150 2.11418e-150 6.71416e-148 3.28825e-148 1.04747e-145 4.87777e-146 1.55919e-143 6.90754e-144 2.2165e-141 9.34601e-142 3.01158e-139 1.20899e-139 3.91352e-137 1.49609e-137 4.8668e-135 1.77188e-135 5.79482e-133 2.00921e-133 6.60899e-131 2.18203e-131 7.22225e-129 2.27006e-129 7.56413e-127 2.26262e-127 7.59398e-125 2.16077e-125 7.30877e-123 1.97705e-123 6.74362e-121 1.73297e-121 5.96478e-119 1.45494e-119 5.05699e-117 1.16968e-117 4.10867e-115 9.00113e-116 3.19816e-113 6.62731e-114 2.38417e-111 4.66605e-112 1.70145e-109 3.1394e-110 1.16177e-107 2.01693e-108 7.58534e-106 1.23621e-106 4.73229e-104 7.22095e-105 2.81865e-102 4.01477e-103 1.6013e-100 2.12166e-101 8.66729e-99 1.06393e-99 4.46396e-97 5.0528e-98 2.18447e-95 2.26739e-96 1.01397e-93 9.58741e-95 4.45553e-92 3.80722e-93 1.84909e-90 1.41404e-91 7.2277e-89 4.88664e-90 2.6521e-87 1.56076e-88 9.0981e-86 4.56555e-87 2.903e-84 1.20745e-85 8.55818e-83 2.83054e-84 2.3102e-81 5.68623e-83 5.63767e-80 9.1332e-82 1.21973e-78 9.53973e-81 2.26317e-77 -4.23072e-83 3.39695e-76 -7.94462e-81 4.85886e-75 -2.05387e-79 7.27431e-74 -4.4066e-78 1.15398e-72 -9.08654e-77 1.93257e-71 -1.84956e-75 3.3684e-70 -3.70647e-74 6.03742e-69 -7.42299e-73 1.10496e-67 -1.49552e-71 2.06824e-66 -2.98004e-70 3.9199e-65 -5.68933e-69 7.36079e-64 -1.01488e-67 1.33741e-62 -1.66966e-66 2.31006e-61 -2.54827e-65 3.77258e-60 -3.81409e-64 5.81488e-59 -5.901e-63 8.78509e-58 -9.40794e-62 1.32898e-56 -1.52411e-60 2.05701e-55 -2.32427e-59 3.20629e-54 -3.3086e-58 4.8856e-53 -4.16981e-57 6.98176e-52 -4.75877e-56 9.29004e-51 -4.68641e-55 1.11134e-49 -3.91128e-54 1.2111e-48 -3.0074e-53 1.19061e-47 -1.91744e-52 1.02925e-46 -1.05127e-51 7.98784e-46 -5.15767e-51 5.6455e-45 -1.87496e-50 3.30933e-44 -5.96157e-50 1.6686e-43 -1.52187e-49 6.83947e-43 -2.98051e-49 -4.53464e-49 2.0926e-42 1.85807e-251 3.03102e-251 3.49227e-234 2.18133e-233 4.14526e-225 2.46738e-224 8.00316e-219 4.11646e-218 6.18439e-214 2.69262e-213 7.62352e-210 2.80498e-209 3.08807e-206 9.65691e-206 6.18881e-203 1.66019e-202 7.80406e-200 1.81552e-199 7.15141e-197 1.45914e-196 5.19381e-194 9.39564e-194 3.15363e-191 5.10858e-191 1.65566e-188 2.42291e-188 7.67945e-186 1.02307e-185 3.19662e-183 3.90243e-183 1.20696e-180 1.35787e-180 4.17013e-178 4.34445e-178 1.3275e-175 1.286e-175 3.91475e-173 3.53901e-173 1.07449e-170 9.09261e-171 2.7565e-168 2.18934e-168 6.6328e-166 4.95596e-166 1.50133e-163 1.05744e-163 3.20479e-161 2.13154e-161 6.46642e-159 4.06751e-159 1.23579e-156 7.36128e-157 2.24085e-154 1.26547e-154 3.86136e-152 2.06934e-152 6.33172e-150 3.22264e-150 9.89182e-148 4.7847e-148 1.47389e-145 6.77896e-146 2.09648e-143 9.17238e-144 2.84898e-141 1.18604e-141 3.70121e-139 1.46636e-139 4.59938e-137 1.73425e-137 5.46973e-135 1.96275e-135 6.22744e-133 2.12627e-133 6.78987e-131 2.20524e-131 7.09112e-129 2.18986e-129 7.09461e-127 2.08213e-127 6.80029e-125 1.89538e-125 6.24456e-123 1.65163e-123 5.49297e-121 1.37737e-121 4.6277e-119 1.09891e-119 3.73305e-117 8.38408e-118 2.88239e-115 6.11362e-116 2.12933e-113 4.25802e-114 1.5042e-111 2.8304e-112 1.01548e-109 1.794e-110 6.54669e-108 1.08312e-108 4.02708e-106 6.22127e-107 2.36123e-104 3.39464e-105 1.31818e-102 1.75669e-103 6.9971e-101 8.60442e-102 3.52615e-99 3.97974e-100 1.68401e-97 1.73331e-98 7.60563e-96 7.08458e-97 3.24039e-94 2.70617e-95 1.29849e-92 9.60995e-94 4.87637e-91 3.15113e-92 1.70861e-89 9.45495e-91 5.55433e-88 2.56314e-89 1.66284e-86 6.15872e-88 4.5387e-85 1.27074e-86 1.1133e-83 2.11712e-85 2.3998e-82 2.41919e-84 4.37321e-81 5.09494e-84 6.21548e-80 -1.00357e-84 7.90473e-79 -2.46388e-83 1.05614e-77 -4.79778e-82 1.52685e-76 -9.06705e-81 2.37235e-75 -1.68124e-79 3.87125e-74 -3.03755e-78 6.4689e-73 -5.51576e-77 1.10998e-71 -1.00471e-75 1.9543e-70 -1.76301e-74 3.4547e-69 -2.85372e-73 5.92035e-68 -4.11984e-72 9.56956e-67 -5.34564e-71 1.43758e-65 -6.8174e-70 2.01625e-64 -9.22577e-69 2.78804e-63 -1.33533e-67 4.0031e-62 -1.88269e-66 5.94552e-61 -2.53399e-65 9.0023e-60 -2.98873e-64 1.28671e-58 -3.18047e-63 1.72079e-57 -2.76353e-62 2.04161e-56 -2.01952e-61 2.19717e-55 -1.31352e-60 2.04331e-54 -6.4094e-60 1.61223e-53 -2.94912e-59 1.17295e-52 -9.49368e-59 7.07982e-52 -2.614e-58 3.67546e-51 -6.13015e-58 1.70705e-50 -1.11396e-57 5.87029e-50 -1.60937e-57 1.7634e-49 -1.92725e-57 4.24609e-49 -1.95356e-57 7.8344e-49 -1.68705e-57 -1.24392e-57 1.12384e-48 1.53785e-254 1.43906e-254 9.20955e-237 5.96879e-236 1.76065e-227 1.10812e-226 4.41698e-221 2.41531e-220 3.98034e-216 1.84582e-215 5.37995e-212 2.10919e-211 2.30344e-208 7.67282e-208 4.77473e-205 1.36347e-204 6.15023e-202 1.52185e-201 5.71623e-199 1.23954e-198 4.19433e-196 8.0577e-196 2.5675e-193 4.41371e-193 1.35736e-190 2.10664e-190 6.33546e-188 8.94614e-188 2.65254e-185 3.43059e-185 1.00699e-182 1.19965e-182 3.49717e-180 3.85636e-180 1.11867e-177 1.14659e-177 3.31385e-175 3.16841e-175 9.134e-173 8.17176e-173 2.35245e-170 1.97462e-170 5.68093e-168 4.48438e-168 1.29007e-165 9.59597e-166 2.76188e-163 1.93925e-163 5.58711e-161 3.70873e-161 1.07012e-158 6.72427e-159 1.94404e-156 1.15765e-156 3.35485e-154 1.89501e-154 5.50711e-152 2.95304e-152 8.6093e-150 4.38532e-150 1.2831e-147 6.21156e-148 1.82471e-145 8.39856e-146 2.47798e-143 1.08465e-143 3.21547e-141 1.33868e-141 3.98908e-139 1.57961e-139 4.73346e-137 1.7826e-137 5.37423e-135 1.9244e-135 5.83985e-133 1.98763e-133 6.07454e-131 1.96425e-131 6.04913e-129 1.85723e-129 5.76692e-127 1.67992e-127 5.26302e-125 1.45334e-125 4.59726e-123 1.20217e-123 3.84264e-121 9.50392e-122 3.07244e-119 7.17718e-120 2.34896e-117 5.17418e-118 1.71625e-115 3.55823e-116 1.19763e-113 2.33205e-114 7.97587e-112 1.4551e-112 5.06495e-110 8.63314e-111 3.06389e-108 4.86338e-109 1.7634e-106 2.59691e-107 9.64315e-105 1.3118e-105 5.0024e-103 6.25372e-104 2.45704e-101 2.80571e-102 1.14015e-99 1.18059e-100 4.98532e-98 4.63962e-99 2.04754e-96 1.69402e-97 7.86892e-95 5.70793e-96 2.81623e-93 1.75908e-94 9.32968e-92 4.89761e-93 2.83829e-90 1.20976e-91 7.84329e-89 2.57522e-90 1.93804e-87 4.47956e-89 4.17868e-86 5.62046e-88 7.53416e-85 2.87957e-87 1.03783e-83 -1.04563e-88 1.13947e-82 -2.59479e-87 1.30384e-81 -4.48786e-86 1.65424e-80 -7.5995e-85 2.31732e-79 -1.24355e-83 3.41146e-78 -1.9669e-82 5.10703e-77 -3.12799e-81 7.9104e-76 -4.90979e-80 1.25514e-74 -7.09148e-79 1.94908e-73 -8.78869e-78 2.82657e-72 -9.11844e-77 3.69201e-71 -9.18201e-76 4.36899e-70 -9.99214e-75 5.11513e-69 -1.19726e-73 6.38973e-68 -1.39797e-72 8.57668e-67 -1.48062e-71 1.12581e-65 -1.42233e-70 1.41545e-64 -1.08824e-69 1.56393e-63 -6.61384e-69 1.56283e-62 -3.45902e-68 1.27781e-61 -1.32671e-67 8.80193e-61 -4.30577e-67 5.40389e-60 -9.39906e-67 2.49179e-59 -1.66335e-66 1.08437e-58 -2.32247e-66 3.30328e-58 -2.54057e-66 8.60871e-58 -2.24123e-66 1.91053e-57 -1.64878e-66 3.28348e-57 -1.03845e-66 4.48111e-57 -5.70105e-67 5.06022e-57 -2.75942e-67 4.82676e-57 -1.18543e-67 3.91604e-57 -4.81858e-68 -5.03053e-67 2.71208e-57 1.14896e-257 1.3596e-258 2.2275e-239 1.51856e-238 6.90359e-230 4.66413e-229 2.25893e-223 1.3336e-222 2.37901e-218 1.19345e-217 3.53029e-214 1.49794e-213 1.59871e-210 5.76221e-210 3.42865e-207 1.05877e-206 4.51154e-204 1.20632e-203 4.25269e-201 9.9572e-201 3.15222e-198 6.53385e-198 1.94498e-195 3.60512e-195 1.03521e-192 1.73134e-192 4.86112e-190 7.39302e-190 2.04658e-187 2.84945e-187 7.80958e-185 1.00116e-184 2.7253e-182 3.23264e-182 8.75688e-180 9.65124e-180 2.60487e-177 2.67716e-177 7.20739e-175 6.92901e-175 1.86279e-172 1.67968e-172 4.51271e-170 3.8254e-170 1.02766e-167 8.20616e-168 2.20545e-165 1.66188e-165 4.4707e-163 3.18377e-163 8.57723e-161 5.78015e-161 1.56017e-158 9.9602e-159 2.6947e-156 1.63123e-156 4.42533e-154 2.5421e-154 6.91803e-152 3.77348e-152 1.03054e-149 5.34006e-150 1.46412e-147 7.20991e-148 1.98535e-145 9.29313e-146 2.57106e-143 1.14406e-143 3.18147e-141 1.34576e-141 3.76325e-139 1.51302e-139 4.2566e-137 1.62617e-137 4.60494e-135 1.67101e-135 4.76551e-133 1.64168e-133 4.71779e-131 1.54189e-131 4.46782e-129 1.38418e-129 4.04693e-127 1.18737e-127 3.50535e-125 9.72885e-126 2.90253e-123 7.61033e-124 2.2966e-121 5.67993e-122 1.73552e-119 4.04162e-120 1.25182e-117 2.7394e-118 8.61177e-116 1.76679e-116 5.64546e-114 1.08295e-114 3.52306e-112 6.2995e-113 2.09041e-110 3.47173e-111 1.17764e-108 1.80907e-109 6.28863e-107 8.89233e-108 3.177e-105 4.1115e-106 1.51495e-103 1.78208e-104 6.80006e-102 7.21088e-103 2.86376e-100 2.70975e-101 1.127e-98 9.39466e-100 4.12382e-97 2.97903e-98 1.39412e-95 8.53843e-97 4.31824e-94 2.1749e-95 1.21164e-92 4.79615e-94 3.02937e-91 8.75144e-93 6.58008e-90 1.20189e-91 1.18868e-88 9.15166e-91 1.6321e-87 -7.30298e-93 1.56286e-86 -2.53712e-91 1.46878e-85 -3.81809e-90 1.5655e-84 -5.65641e-89 1.91522e-83 -7.93523e-88 2.45213e-82 -1.05499e-86 3.18378e-81 -1.41312e-85 4.29131e-80 -1.79673e-84 5.84039e-79 -1.92625e-83 7.43966e-78 -1.55512e-82 8.23907e-77 -1.11992e-81 7.71849e-76 -8.71513e-81 7.0772e-75 -7.68073e-80 7.0615e-74 -6.7416e-79 7.80262e-73 -5.22427e-78 8.4423e-72 -3.52435e-77 8.31939e-71 -1.64497e-76 7.46176e-70 -6.63758e-76 5.34618e-69 -1.819e-75 3.05027e-68 -3.85265e-75 1.50082e-67 -5.70379e-75 5.42525e-67 -6.17215e-75 1.66189e-66 -5.16896e-75 3.42813e-66 -3.49334e-75 5.73818e-66 -1.96278e-75 7.58283e-66 -9.37451e-76 7.85337e-66 -3.87274e-76 6.55953e-66 -1.40328e-76 4.56744e-66 -4.51064e-77 2.72079e-66 -1.29806e-77 1.41104e-66 -3.8252e-78 6.44127e-67 -1.31289e-75 2.60539e-67 -1.76447e-72 9.96291e-68 -1.05186e-69 -3.52642e-67 9.79206e-67 7.83951e-261 -5.26733e-264 4.96125e-242 3.62506e-241 2.50556e-232 1.85298e-231 1.07271e-225 6.97213e-225 1.3227e-220 7.31934e-220 2.15725e-216 1.01013e-215 1.03386e-212 4.11113e-212 2.29448e-209 7.81255e-209 3.08423e-206 9.08685e-206 2.94819e-203 7.60066e-203 2.20714e-200 5.03406e-200 1.37242e-197 2.7975e-197 7.35252e-195 1.35157e-194 3.47267e-192 5.80228e-192 1.46979e-189 2.24729e-189 5.63611e-187 7.9316e-187 1.97581e-184 2.57185e-184 6.37531e-182 7.70823e-182 1.90373e-179 2.14577e-179 5.28581e-177 5.57146e-177 1.37044e-174 1.35446e-174 3.32913e-172 3.09241e-172 7.59924e-170 6.64771e-170 1.63411e-167 1.34857e-167 3.31777e-165 2.58692e-165 6.37273e-163 4.70071e-163 1.16004e-160 8.10372e-161 2.00419e-158 1.32717e-158 3.29081e-156 2.06723e-156 5.14113e-154 3.06555e-154 7.64965e-152 4.33168e-152 1.08498e-149 5.83641e-150 1.46797e-147 7.50299e-148 1.89572e-145 9.20699e-146 2.33781e-143 1.07883e-143 2.75417e-141 1.20742e-141 3.10057e-139 1.29092e-139 3.33615e-137 1.31856e-137 3.43117e-135 1.2866e-135 3.37313e-133 1.19913e-133 3.16938e-131 1.06724e-131 2.84567e-129 9.06717e-130 2.44082e-127 7.35013e-128 1.99922e-125 5.68163e-126 1.56293e-123 4.18497e-124 1.16548e-121 2.93478e-122 8.28384e-120 1.95738e-120 5.60708e-118 1.24012e-118 3.61049e-116 7.45281e-117 2.209e-114 4.24155e-115 1.28235e-112 2.28152e-113 7.05113e-111 1.15716e-111 3.66525e-109 5.51871e-110 1.79688e-107 2.46656e-108 8.28484e-106 1.02892e-106 3.58042e-104 3.98565e-105 1.44436e-102 1.42453e-103 5.41096e-101 4.65898e-102 1.87022e-99 1.37887e-100 5.91311e-98 3.63571e-99 1.69051e-96 8.34466e-98 4.29864e-95 1.60513e-96 9.4798e-94 2.4085e-95 1.73804e-92 2.35396e-94 2.43747e-91 4.18299e-94 2.17562e-90 -2.4192e-95 1.62539e-89 -3.22769e-94 1.37058e-88 -4.1099e-93 1.41002e-87 -4.88549e-92 1.51466e-86 -5.31778e-91 1.63087e-85 -5.82802e-90 1.8345e-84 -5.71335e-89 2.0091e-83 -4.17878e-88 1.89023e-82 -2.07527e-87 1.35846e-81 -1.02925e-86 8.80688e-81 -6.0605e-86 6.22553e-80 -3.70753e-85 5.02082e-79 -2.06047e-84 4.05752e-78 -9.42462e-84 2.90988e-77 -2.97421e-83 1.82457e-76 -6.53426e-83 7.94458e-76 -1.15571e-82 2.99998e-75 -1.33049e-82 7.71448e-75 -1.07156e-82 1.53673e-74 -6.57825e-83 2.14396e-74 -3.26353e-83 2.18992e-74 -1.3587e-83 1.73355e-74 -4.86656e-84 1.1087e-74 -1.52571e-84 5.90034e-75 -4.24023e-85 2.67107e-75 -1.05504e-85 1.04637e-75 -2.36908e-86 3.59623e-76 -4.847e-87 1.0964e-76 -4.71237e-87 2.99182e-77 -9.01748e-85 8.35573e-78 -2.00861e-82 2.71647e-75 -4.86105e-80 3.4576e-72 -1.16064e-77 1.95436e-69 -2.41072e-75 -4.00162e-73 6.23003e-67 4.96908e-264 -7.86568e-267 1.02002e-244 8.20573e-244 8.43354e-235 7.00502e-234 4.73618e-228 3.47568e-227 6.84675e-223 4.28528e-222 1.2282e-218 6.50706e-218 6.23132e-215 2.80286e-214 1.43126e-211 5.50933e-211 1.96529e-208 6.54139e-208 1.90484e-205 5.54416e-205 1.44011e-202 3.70588e-202 9.02271e-200 2.0739e-199 4.86451e-197 1.00786e-196 2.31044e-194 4.34923e-194 9.82839e-192 1.69246e-191 3.78634e-189 5.99929e-189 1.33304e-186 1.9531e-186 4.31809e-184 5.87512e-184 1.29398e-181 1.64087e-181 3.6042e-179 4.27307e-179 9.37066e-177 1.04149e-176 2.28181e-174 2.38305e-174 5.21893e-172 5.13194e-172 1.12402e-169 1.0425e-169 2.28472e-167 2.00166e-167 4.39153e-165 3.63902e-165 7.99588e-163 6.2736e-163 1.38113e-160 1.02698e-160 2.26613e-158 1.59813e-158 3.53594e-156 2.3664e-156 5.25195e-154 3.33699e-154 7.43177e-152 4.48449e-152 1.00258e-149 5.74653e-150 1.29017e-147 7.02453e-148 1.58441e-145 8.19389e-146 1.85755e-143 9.12266e-144 2.07955e-141 9.69529e-142 2.22339e-139 9.83585e-140 2.2704e-137 9.52426e-138 2.21414e-135 8.80101e-136 2.06183e-133 7.75846e-134 1.8329e-131 6.52189e-132 1.55489e-129 5.22497e-130 1.25813e-127 3.98663e-128 9.70418e-126 2.89452e-126 7.12985e-124 1.99784e-124 4.98551e-122 1.30932e-122 3.31431e-120 8.13621e-121 2.09219e-118 4.78606e-119 1.25231e-116 2.66e-117 7.09578e-115 1.39361e-115 3.79827e-113 6.86388e-114 1.91626e-111 3.16779e-112 9.086e-110 1.3645e-110 4.03513e-108 5.45882e-109 1.67146e-106 2.01591e-107 6.42462e-105 6.81844e-106 2.27647e-103 2.09048e-104 7.37295e-102 5.72796e-103 2.15781e-100 1.37428e-101 5.61581e-99 2.79738e-100 1.26898e-97 4.57396e-99 2.39466e-96 5.35645e-98 3.51164e-95 3.0785e-97 3.37158e-94 -1.81022e-99 2.01451e-93 -3.00847e-98 1.24226e-92 -3.17126e-97 1.02842e-91 -3.21435e-96 9.05576e-91 -2.82302e-95 7.82605e-90 -2.45174e-94 7.10907e-89 -1.79865e-93 5.9478e-88 -8.26321e-93 3.79191e-87 -2.44726e-92 1.66777e-86 -8.09386e-92 7.41666e-86 -3.04691e-91 3.95468e-85 -1.12698e-90 2.20842e-84 -3.58673e-90 1.1278e-83 -7.35971e-90 4.76645e-83 -9.51242e-90 1.39633e-82 -9.11188e-90 2.85901e-82 -6.43298e-90 4.72865e-82 -3.41678e-90 5.10532e-82 -1.41937e-90 3.86569e-82 -4.78697e-91 2.2359e-82 -1.35136e-91 1.04703e-82 -3.27073e-92 4.12106e-83 -6.91555e-93 1.39735e-83 -1.29641e-93 4.15199e-84 -2.18027e-94 1.09472e-84 -3.32088e-95 2.58629e-85 -4.67936e-96 5.51818e-86 -1.97016e-95 1.07343e-86 -5.79675e-93 9.92845e-87 -2.9132e-90 1.80859e-84 -1.64276e-87 3.83801e-82 -6.73489e-85 8.86038e-80 -1.85257e-82 2.0228e-77 -3.42307e-80 4.03438e-75 -4.24397e-78 -3.45149e-76 6.46991e-73 3.063e-267 -8.28321e-270 1.95022e-247 1.78319e-246 2.63805e-237 2.54324e-236 1.94464e-230 1.66529e-229 3.29763e-225 2.41249e-224 6.50835e-221 4.03161e-220 3.4961e-217 1.83803e-216 8.31038e-214 3.7368e-213 1.1655e-210 4.52876e-210 1.14521e-207 3.88886e-207 8.74165e-205 2.6231e-204 5.51736e-202 1.4781e-201 2.99292e-199 7.22451e-199 1.4292e-196 3.1334e-196 6.10928e-194 1.22491e-193 2.36401e-191 4.36014e-191 8.35668e-189 1.42492e-188 2.71688e-186 4.30115e-186 8.16812e-184 1.20499e-183 2.28167e-181 3.14653e-181 5.94688e-179 7.6871e-179 1.45107e-176 1.76229e-176 3.32429e-174 3.80084e-174 7.16818e-172 7.72933e-172 1.45812e-169 1.48501e-169 2.80351e-167 2.7002e-167 5.10351e-165 4.65364e-165 8.80923e-163 7.61172e-163 1.44365e-160 1.18291e-160 2.24866e-158 1.74827e-158 3.33221e-156 2.45928e-156 4.70153e-154 3.29486e-154 6.32021e-152 4.20654e-152 8.09911e-150 5.1197e-150 9.89788e-148 5.94185e-148 1.15394e-145 6.5771e-146 1.28364e-143 6.94406e-144 1.36261e-141 6.99261e-142 1.38026e-139 6.71499e-140 1.33403e-137 6.14776e-138 1.22994e-135 5.36393e-136 1.08137e-133 4.45781e-134 9.06235e-132 3.52656e-132 7.23492e-130 2.65353e-130 5.4985e-128 1.89726e-128 3.97466e-126 1.28755e-126 2.72996e-124 8.28219e-125 1.77946e-122 5.04178e-123 1.09918e-120 2.89911e-121 6.4237e-119 1.5712e-119 3.54464e-117 8.00481e-118 1.84247e-115 3.8216e-116 8.99621e-114 1.70324e-114 4.11221e-112 7.05374e-113 1.75247e-110 2.69876e-111 6.92733e-109 9.46958e-110 2.52366e-107 3.01855e-108 8.40319e-106 8.63063e-107 2.52945e-104 2.17446e-105 6.77933e-103 4.70252e-104 1.5826e-101 8.36975e-103 3.10935e-100 1.13516e-101 4.84326e-99 9.78916e-101 5.28198e-98 2.08979e-100 3.05228e-97 -3.3344e-102 1.33519e-96 -2.89127e-101 8.10533e-96 -2.57132e-100 5.76904e-95 -1.8676e-99 3.9037e-94 -1.26569e-98 2.75663e-93 -7.18971e-98 1.70315e-92 -2.21606e-97 6.75435e-92 -3.99441e-97 1.75858e-91 -8.26904e-97 5.18508e-91 -1.90767e-96 1.75938e-90 -4.34944e-96 5.91783e-90 -6.20703e-96 1.72522e-89 -6.1217e-96 3.26223e-89 -4.31787e-96 3.90522e-89 -2.18803e-96 3.47947e-89 -8.29476e-97 2.29321e-89 -2.46361e-97 1.14058e-89 -5.96049e-98 4.44878e-90 -1.21113e-98 1.41201e-90 -2.11624e-99 3.75879e-91 -3.23898e-100 8.59341e-92 -4.40603e-101 1.71887e-92 -5.38946e-102 3.05225e-93 -5.98411e-103 4.86801e-94 -6.0904e-104 7.03897e-95 -4.8077e-104 9.42502e-96 -1.42295e-101 3.77449e-95 -5.48648e-99 1.05742e-92 -1.97442e-96 5.06608e-90 -5.39505e-94 2.72768e-87 -1.02563e-91 1.0701e-84 -1.28316e-89 2.82588e-82 -9.48441e-88 5.03771e-80 -3.29823e-86 6.06996e-78 -7.34395e-85 -1.39545e-82 4.84041e-76 1.80531e-270 -7.68017e-273 3.45556e-250 3.77293e-249 7.63566e-240 8.95866e-239 7.3872e-233 7.73566e-232 1.46937e-227 1.31634e-226 3.19054e-223 2.42043e-222 1.81446e-219 1.16772e-218 4.46316e-216 2.45501e-215 6.39255e-213 3.03645e-212 6.36713e-210 2.64134e-209 4.90651e-207 1.79763e-206 3.11927e-204 1.01986e-203 1.7022e-201 5.0129e-201 8.17092e-199 2.18497e-198 3.50901e-196 8.57961e-196 1.36354e-193 3.06636e-193 4.83841e-191 1.00581e-190 1.57838e-188 3.04614e-188 4.75954e-186 8.55903e-186 1.33299e-183 2.24069e-183 3.48187e-181 5.48588e-181 8.51086e-179 1.25982e-178 1.95233e-176 2.72067e-176 4.21345e-174 5.53744e-174 8.5742e-172 1.06431e-171 1.64839e-169 1.93507e-169 2.99895e-167 3.33305e-167 5.17072e-165 5.44571e-165 8.45967e-163 8.44914e-163 1.31476e-160 1.246e-160 1.9428e-158 1.74785e-158 2.73172e-156 2.33374e-156 3.65721e-154 2.96743e-154 4.66424e-152 3.59452e-152 5.66891e-150 4.14903e-150 6.56783e-148 4.56412e-148 7.25468e-146 4.78499e-146 7.64027e-144 4.78055e-144 7.67122e-142 4.55045e-142 7.34199e-140 4.12544e-140 6.69618e-138 3.56058e-138 5.81738e-136 2.92382e-136 4.8115e-134 2.28263e-134 3.7861e-132 1.69271e-132 2.83207e-130 1.19103e-130 2.0118e-128 7.94142e-129 1.35556e-126 5.0101e-127 8.65173e-125 2.9853e-125 5.22174e-123 1.6765e-123 2.97453e-121 8.85139e-122 1.59556e-119 4.3804e-120 8.03709e-118 2.02462e-118 3.78919e-116 8.70189e-117 1.66536e-114 3.45925e-115 6.78944e-113 1.26333e-113 2.55173e-111 4.2022e-112 8.7718e-110 1.2588e-110 2.72966e-108 3.34423e-109 7.58271e-107 7.70995e-108 1.84362e-105 1.49272e-106 3.80923e-104 2.29903e-105 6.37456e-103 2.53814e-104 7.9018e-102 1.52805e-103 5.87413e-101 -6.54525e-107 2.11579e-100 -3.62141e-105 7.93232e-100 -2.64914e-104 4.49849e-99 -1.74052e-103 2.39844e-98 -9.39023e-103 1.28382e-97 -4.37665e-102 6.02454e-97 -1.12468e-101 1.58119e-96 -1.24323e-101 2.48026e-96 -1.51051e-101 4.54187e-96 -2.03565e-101 9.38676e-96 -2.78057e-101 1.93663e-95 -2.28802e-101 2.52136e-95 -1.17401e-101 2.28381e-95 -4.10169e-102 1.48767e-95 -1.05492e-102 6.99453e-96 -2.11752e-103 2.46992e-96 -3.46187e-104 6.85601e-97 -4.75702e-105 1.55466e-97 -5.62614e-106 2.96791e-98 -5.83288e-107 4.88234e-99 -5.37769e-108 7.04756e-100 -4.45993e-109 9.05509e-101 -3.35814e-110 1.04749e-101 -2.31317e-111 1.10108e-102 -2.14663e-112 1.06186e-103 -2.31905e-110 7.94868e-104 -7.10773e-108 2.23249e-101 -2.18092e-105 8.17446e-99 -6.03099e-103 2.79618e-96 -1.2742e-100 7.27167e-94 -1.65516e-98 1.31822e-91 -8.82913e-97 1.57753e-89 -6.08176e-96 1.12073e-87 -2.87415e-93 3.77348e-86 -9.72823e-91 8.21962e-85 -2.02459e-88 -2.56376e-86 1.54673e-82 1.05318e-273 -6.77982e-276 5.73497e-253 7.88294e-252 2.03994e-242 3.09504e-241 2.57539e-235 3.51645e-234 5.99203e-230 7.02074e-229 1.42921e-225 1.41941e-224 8.59642e-222 7.24297e-221 2.18657e-218 1.57416e-217 3.19662e-215 1.98649e-214 3.22596e-212 1.75019e-211 2.50866e-209 1.20168e-208 1.60591e-206 6.86342e-206 8.81345e-204 3.39234e-203 4.25158e-201 1.48584e-200 1.83387e-198 5.85993e-198 7.15427e-196 2.10267e-195 2.54765e-193 6.92192e-193 8.33696e-191 2.10306e-190 2.52083e-188 5.92585e-188 7.07643e-186 1.55511e-185 1.85193e-183 3.81508e-183 4.53333e-181 8.77514e-181 1.04096e-178 1.89722e-178 2.24779e-176 3.86413e-176 4.57443e-174 7.4286e-174 8.79049e-172 1.35027e-171 1.59773e-169 2.32398e-169 2.75063e-167 3.79214e-167 4.49093e-165 5.87276e-165 6.96102e-163 8.6397e-163 1.02525e-160 1.20831e-160 1.43593e-158 1.60749e-158 1.91358e-156 2.03521e-156 2.42753e-154 2.45303e-154 2.93254e-152 2.81529e-152 3.37429e-150 3.07691e-150 3.69853e-148 3.20231e-148 3.86173e-146 3.17326e-146 3.84049e-144 2.99314e-144 3.63702e-142 2.68631e-142 3.27866e-140 2.29277e-140 2.81208e-138 1.85971e-138 2.29332e-136 1.43236e-136 1.77691e-134 1.04649e-134 1.30683e-132 7.24398e-133 9.11227e-131 4.74409e-131 6.01595e-129 2.93447e-129 3.75453e-127 1.71096e-127 2.21084e-125 9.38117e-126 1.22559e-123 4.82359e-124 6.3792e-122 2.31808e-122 3.10765e-120 1.03697e-120 1.41149e-118 4.29681e-119 5.94917e-117 1.63911e-117 2.31327e-115 5.71216e-116 8.23724e-114 1.80056e-114 2.66072e-112 5.06682e-113 7.69844e-111 1.25019e-111 1.96099e-109 2.63588e-110 4.28953e-108 4.56488e-109 7.75555e-107 6.07407e-108 1.08669e-105 5.43436e-107 1.03987e-104 2.21896e-106 4.89152e-104 -4.25969e-109 1.2129e-103 -3.83622e-108 4.55877e-103 -2.44626e-107 2.01681e-102 -1.16222e-106 8.20296e-102 -4.63677e-106 3.06764e-101 -1.19335e-105 6.57958e-101 -1.0179e-105 6.23769e-101 -7.30968e-106 6.62955e-101 -6.12991e-106 7.93317e-101 -5.30907e-106 9.73478e-101 -2.67804e-106 7.26338e-101 -8.22406e-107 3.40492e-101 -1.70605e-107 1.09355e-101 -2.59845e-108 2.59868e-102 -3.08469e-109 4.8403e-103 -2.97905e-110 7.36912e-104 -2.41517e-111 9.45815e-105 -1.68299e-112 1.04748e-105 -1.02657e-113 1.01905e-106 -5.56018e-115 8.83168e-108 -2.70475e-116 6.89462e-109 -1.19255e-117 4.89183e-110 -4.80822e-119 3.17749e-111 -2.92252e-119 2.78174e-112 -9.43426e-117 2.83529e-110 -3.08142e-114 8.19726e-108 -8.77257e-112 2.37163e-105 -1.89255e-109 6.18041e-103 -2.40766e-107 1.22986e-100 -1.14589e-105 1.50435e-98 -7.07719e-106 7.56043e-97 -3.57313e-104 4.91649e-96 -2.89743e-101 2.20333e-93 -1.6906e-98 7.12952e-91 -7.06208e-96 1.43638e-88 -2.06757e-93 -4.12323e-91 1.78913e-86 5.61387e-277 -5.93423e-279 8.21867e-256 1.65375e-254 4.7405e-245 1.06064e-243 7.83837e-238 1.57933e-236 2.13641e-232 3.69235e-231 5.60087e-228 8.19826e-227 3.56375e-224 4.42153e-223 9.37346e-221 9.92925e-220 1.3985e-217 1.27805e-216 1.42964e-214 1.14027e-213 1.12159e-211 7.8976e-211 7.22714e-209 4.54074e-208 3.98749e-206 2.2567e-205 1.93236e-203 9.93213e-203 8.36859e-201 3.93402e-200 3.2765e-198 1.41714e-197 1.17052e-195 4.68168e-195 3.84129e-193 1.42688e-192 1.16433e-190 4.03157e-190 3.27527e-188 1.06048e-187 8.58575e-186 2.60661e-185 2.10429e-183 6.0044e-183 4.83583e-181 1.29952e-180 1.04457e-178 2.6483e-178 2.1255e-176 5.09177e-176 4.08185e-174 9.25159e-174 7.41035e-172 1.59089e-171 1.27355e-169 2.59223e-169 2.0745e-167 4.00661e-167 3.20608e-165 5.87937e-165 4.70519e-163 8.19686e-163 6.56192e-161 1.08637e-160 8.70131e-159 1.36935e-158 1.09755e-156 1.64205e-156 1.3173e-154 1.87355e-154 1.5047e-152 2.03412e-152 1.63588e-150 2.10132e-150 1.69264e-148 2.065e-148 1.66653e-146 1.92985e-146 1.5609e-144 1.71439e-144 1.39014e-142 1.4468e-142 1.17657e-140 1.15903e-140 9.45658e-139 8.80579e-139 7.2115e-137 6.33788e-137 5.21221e-135 4.31566e-135 3.56586e-133 2.77584e-133 2.30563e-131 1.68338e-131 1.40642e-129 9.60414e-130 8.0763e-128 5.14154e-128 4.35498e-126 2.57483e-126 2.19852e-124 1.20177e-124 1.03531e-122 5.20421e-123 4.52788e-121 2.07954e-121 1.82917e-119 7.61521e-120 6.77969e-118 2.53359e-118 2.28573e-116 7.57294e-117 6.93169e-115 2.00371e-115 1.86269e-113 4.59857e-114 4.34365e-112 8.89081e-113 8.52597e-111 1.38474e-111 1.34305e-109 1.61034e-110 1.56388e-108 1.19817e-109 1.13986e-107 3.50078e-109 3.48846e-107 -7.2423e-112 6.84616e-107 -4.86324e-111 2.44851e-106 -2.44868e-110 8.07378e-106 -8.68621e-110 2.46266e-105 -2.37714e-109 5.12189e-105 -2.91592e-109 3.65961e-105 -1.21538e-109 2.25724e-105 -6.55561e-110 1.65612e-105 -3.59501e-110 1.27274e-105 -1.4025e-110 5.76033e-106 -2.8687e-111 1.60146e-106 -3.26848e-112 3.02974e-107 -2.41857e-113 4.23393e-108 -1.28833e-114 4.63494e-109 -5.2813e-116 4.14516e-110 -1.74356e-117 3.12301e-111 -4.78884e-119 2.02839e-112 -1.121e-120 1.15602e-113 -2.27817e-122 5.86164e-115 -4.0776e-124 2.67333e-116 -6.50049e-126 1.10616e-117 -1.1803e-127 4.18729e-119 -9.62707e-126 2.38915e-119 -3.32106e-123 7.23391e-117 -9.80728e-121 2.21267e-114 -2.39181e-118 5.88505e-112 -4.5207e-116 1.18217e-109 -5.77774e-114 1.39427e-107 -3.01893e-112 6.11911e-106 -5.38901e-113 3.46341e-106 -4.594e-114 1.59185e-104 -2.75423e-115 1.16781e-101 -2.22577e-112 6.13948e-99 -8.93849e-109 2.31186e-96 -1.99441e-105 6.15194e-94 -2.59787e-102 -2.12041e-99 1.13551e-91 4.5098e-280 1.43864e-258 1.15116e-247 2.28198e-240 6.90195e-235 1.92015e-230 1.26232e-226 3.37807e-223 5.08571e-220 5.22468e-217 4.11203e-214 2.65656e-211 1.46945e-208 7.14003e-206 3.10075e-203 1.21747e-200 4.36183e-198 1.43539e-195 4.36236e-193 1.23019e-190 3.23206e-188 7.93715e-186 1.82706e-183 3.95185e-181 8.04898e-179 1.54662e-176 2.80817e-174 4.8246e-172 7.85243e-170 1.21195e-167 1.77526e-165 2.46962e-163 3.26454e-161 4.10212e-159 4.90126e-157 5.56906e-155 6.01786e-153 6.18362e-151 6.04062e-149 5.60802e-147 4.94537e-145 4.13967e-143 3.28661e-141 2.47232e-139 1.75997e-137 1.18388e-135 7.5122e-134 4.48732e-132 2.51713e-130 1.32212e-128 6.48008e-127 2.95128e-125 1.24263e-123 4.80654e-122 1.69446e-120 5.3893e-119 1.52623e-117 3.78134e-116 7.99835e-115 1.39404e-113 1.89425e-112 1.82372e-111 1.02274e-110 2.21422e-110 3.82783e-110 1.11447e-109 2.71702e-109 5.56347e-109 5.37951e-109 1.83082e-109 8.27091e-110 3.87276e-110 1.30986e-110 2.35195e-111 2.37709e-112 1.57424e-113 7.56203e-115 2.81349e-116 8.47629e-118 2.13429e-119 4.59762e-121 8.62436e-123 1.428e-124 2.10885e-126 3.54853e-128 2.68046e-126 8.54662e-124 2.32453e-121 5.19283e-119 8.91894e-117 1.02427e-114 4.73411e-113 7.31261e-114 5.22853e-115 2.51183e-116 1.51496e-113 4.00989e-110 4.45256e-107 3.90492e-105 -1.49346e-98 -2.88195e-162 -4.75851e-160 -1.7796e-161 -3.04387e-159 -1.05755e-160 -1.91248e-158 -5.97843e-160 -1.15814e-157 -3.19236e-159 -6.68181e-157 -1.60433e-158 -3.64697e-156 -7.57799e-158 -1.87628e-155 -3.36501e-157 -9.08683e-155 -1.40652e-156 -4.14351e-154 -5.54492e-156 -1.78122e-153 -2.0668e-155 -7.23307e-153 -7.30385e-155 -2.78131e-152 -2.45421e-154 -1.01553e-151 -7.86436e-154 -3.53124e-151 -2.4103e-153 -1.17286e-150 -7.08536e-153 -3.73198e-150 -2.00305e-152 -1.14093e-149 -5.45934e-152 -3.36051e-149 -1.4378e-151 -9.56093e-149 -3.66659e-151 -2.63387e-148 -9.07088e-151 -7.04133e-148 -2.18066e-150 -1.83053e-147 -5.10188e-150 -4.63651e-147 -1.16315e-149 -1.14622e-146 -2.58666e-149 -2.77017e-146 -5.61448e-149 -6.55423e-146 -1.18958e-148 -1.51982e-145 -2.45928e-148 -3.4564e-145 -4.95605e-148 -7.71176e-145 -9.72024e-148 -1.68795e-144 -1.85062e-147 -3.62273e-144 -3.40645e-147 -7.61594e-144 -6.02448e-147 -1.56508e-143 -1.01421e-146 -3.13288e-143 -1.60397e-146 -6.0755e-143 -2.3444e-146 -1.13301e-142 -3.09825e-146 -2.01738e-142 -3.56499e-146 -3.40945e-142 -3.2848e-146 -5.4374e-142 -1.73859e-146 -8.15469e-142 1.18572e-146 -1.15767e-141 5.51096e-146 -1.55247e-141 1.2261e-145 -2.01753e-141 2.18949e-145 -2.54438e-141 3.42215e-145 -3.07393e-141 4.81652e-145 -3.52392e-141 6.43698e-145 -3.97347e-141 8.21284e-145 -4.38369e-141 1.02164e-144 -4.80483e-141 1.18527e-144 -4.98467e-141 1.30033e-144 -4.94438e-141 1.34206e-144 -4.65436e-141 1.28883e-144 -4.10935e-141 1.21084e-144 -3.57395e-141 1.10967e-144 -3.04907e-141 9.97512e-145 -2.56474e-141 8.52396e-145 -2.05866e-141 6.92804e-145 -1.57785e-141 5.46914e-145 -1.1784e-141 4.13502e-145 -8.45239e-142 2.95131e-145 -5.73903e-142 1.96614e-145 -3.64513e-142 1.21553e-145 -2.15242e-142 6.97477e-146 -1.18174e-142 3.75126e-146 -6.09222e-143 1.91574e-146 -2.9876e-143 9.40239e-147 -1.41048e-143 4.47866e-147 -6.47347e-144 2.08557e-147 -2.90896e-144 9.54385e-148 -1.28636e-144 4.30664e-148 -5.61636e-145 1.91909e-148 -2.4243e-145 8.44277e-149 -1.0342e-145 3.66223e-149 -4.35422e-146 1.56351e-149 -1.80591e-146 6.55661e-150 -7.36315e-147 2.69514e-150 -2.94502e-147 1.08369e-150 -1.15306e-147 4.25366e-151 -4.4101e-148 1.62649e-151 -1.64426e-148 6.04561e-152 -5.96312e-149 2.17938e-152 -2.09876e-149 7.60084e-153 -7.15096e-150 2.55784e-153 -2.35247e-150 8.28201e-154 -7.45093e-151 2.57241e-154 -2.26525e-151 7.64047e-155 -6.58998e-152 2.1631e-155 -1.8286e-152 5.81829e-156 -4.82416e-153 1.48216e-156 -1.2062e-153 3.56498e-157 -2.84976e-154 8.07404e-158 -6.34475e-155 1.71791e-158 -1.3282e-155 3.42851e-159 -2.61023e-156 6.41447e-160 -4.81328e-157 1.12616e-160 -8.33671e-158 1.86143e-161 -1.36076e-158 2.91628e-162 -2.10736e-159 4.38015e-163 -3.13203e-160 -4.55327e-161 6.42816e-164 -2.55539e-158 -4.40931e-156 -1.49609e-157 -2.66523e-155 -8.46837e-157 -1.58893e-154 -4.5816e-156 -9.16951e-154 -2.35262e-155 -5.06419e-153 -1.14232e-154 -2.65796e-152 -5.23694e-154 -1.32085e-151 -2.26677e-153 -6.20556e-151 -9.27266e-153 -2.75633e-150 -3.59077e-152 -1.15861e-149 -1.31907e-151 -4.61664e-149 -4.60762e-151 -1.74752e-148 -1.53432e-150 -6.29906e-148 -4.8833e-150 -2.16773e-147 -1.48932e-149 -7.14104e-147 -4.36345e-149 -2.25786e-146 -1.23104e-148 -6.86965e-146 -3.35189e-148 -2.0163e-145 -8.82616e-148 -5.72239e-145 -2.25185e-147 -1.57383e-144 -5.5762e-147 -4.20327e-144 -1.34228e-146 -1.09217e-143 -3.14531e-146 -2.76596e-143 -7.18335e-146 -6.83873e-143 -1.60049e-145 -1.65329e-142 -3.48099e-145 -3.91335e-142 -7.39133e-145 -9.07907e-142 -1.53157e-144 -2.06596e-141 -3.09419e-144 -4.61234e-141 -6.0851e-144 -1.01022e-140 -1.16204e-143 -2.16975e-140 -2.14636e-143 -4.56504e-140 -3.81128e-143 -9.38967e-140 -6.44733e-143 -1.88149e-139 -1.02582e-142 -3.65285e-139 -1.51131e-142 -6.82059e-139 -2.01989e-142 -1.21603e-138 -2.36694e-142 -2.05783e-138 -2.26502e-142 -3.28577e-138 -1.38694e-142 -4.93311e-138 4.45739e-143 -7.00882e-138 3.0598e-142 -9.40737e-138 7.18273e-142 -1.22304e-137 1.31097e-141 -1.54317e-137 2.07407e-141 -1.86542e-137 2.94049e-141 -2.13849e-137 3.95092e-141 -2.41214e-137 5.06028e-141 -2.66155e-137 6.31569e-141 -2.91861e-137 7.35032e-141 -3.03058e-137 8.08269e-141 -3.00768e-137 8.35369e-141 -2.83099e-137 8.033e-141 -2.49978e-137 7.55777e-141 -2.175e-137 6.93481e-141 -1.85627e-137 6.24239e-141 -1.56244e-137 5.33861e-141 -1.25444e-137 4.34276e-141 -9.61836e-138 3.43053e-141 -7.18554e-138 2.5947e-141 -5.15444e-138 1.85263e-141 -3.50028e-138 1.23431e-141 -2.22302e-138 7.6282e-142 -1.31204e-138 4.37429e-142 -7.19829e-139 2.35091e-142 -3.70811e-139 1.19979e-142 -1.81728e-139 5.88547e-143 -8.57574e-140 2.80246e-143 -3.93494e-140 1.30477e-143 -1.76818e-140 5.97038e-144 -7.82005e-141 2.69412e-144 -3.41512e-141 1.20058e-144 -1.4746e-141 5.28207e-145 -6.29286e-142 2.29133e-145 -2.6505e-142 9.78297e-146 -1.09978e-142 4.10286e-146 -4.48638e-143 1.68675e-146 -1.79549e-143 6.78398e-147 -7.03521e-144 2.664e-147 -2.69343e-144 1.01941e-147 -1.00555e-144 3.79354e-148 -3.65337e-145 1.36995e-148 -1.28897e-145 4.79008e-149 -4.40615e-146 1.61772e-149 -1.45575e-146 5.26332e-150 -4.63659e-147 1.64526e-150 -1.41975e-147 4.9272e-151 -4.16778e-148 1.40964e-151 -1.16956e-148 3.84153e-152 -3.12839e-149 9.94425e-153 -7.95399e-150 2.43872e-153 -1.91722e-150 5.65253e-154 -4.37081e-151 1.23589e-154 -9.40647e-152 2.5458e-155 -1.90866e-152 4.93923e-156 -3.65052e-153 9.03667e-157 -6.5893e-154 1.56446e-157 -1.12635e-154 2.58028e-158 -1.83575e-155 4.10044e-159 -2.88515e-156 -4.45632e-157 6.39812e-160 -1.90162e-154 -3.46705e-152 -1.05906e-153 -1.98762e-151 -5.72606e-153 -1.12801e-150 -2.97198e-152 -6.22115e-150 -1.47045e-151 -3.29715e-149 -6.90922e-151 -1.6676e-148 -3.078e-150 -8.01876e-148 -1.29977e-149 -3.66e-147 -5.20639e-149 -1.58537e-146 -1.98092e-148 -6.52204e-146 -7.17176e-148 -2.5518e-145 -2.47573e-147 -9.51287e-145 -8.16682e-147 -3.38602e-144 -2.58024e-146 -1.15336e-143 -7.82549e-146 -3.76834e-143 -2.28333e-145 -1.18378e-142 -6.42322e-145 -3.5837e-142 -1.74555e-144 -1.04785e-141 -4.59104e-144 -2.96553e-141 -1.17066e-143 -8.13966e-141 -2.89852e-143 -2.17084e-140 -6.97852e-143 -5.63549e-140 -1.63591e-142 -1.4264e-139 -3.73817e-142 -3.52566e-139 -8.33403e-142 -8.52243e-139 -1.8138e-141 -2.0173e-138 -3.8539e-141 -4.68069e-138 -7.99108e-141 -1.06529e-137 -1.61548e-140 -2.37888e-137 -3.17909e-140 -5.21194e-137 -6.07486e-140 -1.11983e-136 -1.1228e-139 -2.35715e-136 -1.99505e-139 -4.85113e-136 -3.37697e-139 -9.72745e-136 -5.37569e-139 -1.89012e-135 -7.92152e-139 -3.53257e-135 -1.05833e-138 -6.30469e-135 -1.23802e-138 -1.06802e-134 -1.1786e-138 -1.70692e-134 -7.05875e-139 -2.56479e-134 2.64892e-139 -3.64596e-134 1.66089e-138 -4.89694e-134 3.85969e-138 -6.36748e-134 7.01926e-138 -8.03654e-134 1.10872e-137 -9.71864e-134 1.56974e-137 -1.11401e-133 2.10795e-137 -1.2569e-133 2.69847e-137 -1.38697e-133 3.36794e-137 -1.52155e-133 3.92189e-137 -1.58134e-133 4.31392e-137 -1.57026e-133 4.45741e-137 -1.47794e-133 4.28638e-137 -1.3053e-133 4.03432e-137 -1.13631e-133 3.70317e-137 -9.70278e-134 3.33573e-137 -8.17341e-134 2.85368e-137 -6.56509e-134 2.32248e-137 -5.03676e-134 1.83538e-137 -3.76483e-134 1.38847e-137 -2.70146e-134 9.91642e-138 -1.8352e-134 6.60712e-138 -1.16573e-134 4.0818e-138 -6.87858e-135 2.33923e-138 -3.77204e-135 1.25636e-138 -1.94216e-135 6.40824e-139 -9.51464e-136 3.14229e-139 -4.4892e-136 1.49596e-139 -2.05997e-136 6.96485e-140 -9.25907e-137 3.18738e-140 -4.09678e-137 1.43862e-140 -1.79012e-137 6.41265e-141 -7.73443e-138 2.82214e-141 -3.30295e-138 1.22462e-141 -1.3922e-138 5.23039e-142 -5.78126e-139 2.19442e-142 -2.3604e-139 9.02581e-143 -9.45578e-140 3.63229e-143 -3.70923e-140 1.42751e-143 -1.42203e-140 5.4686e-144 -5.31808e-141 2.0382e-144 -1.93637e-141 7.37626e-145 -6.85092e-142 2.58665e-145 -2.3503e-142 8.76978e-146 -7.8008e-143 2.86793e-146 -2.49905e-143 9.02429e-147 -7.70834e-144 2.72536e-147 -2.28347e-144 7.87935e-148 -6.47984e-145 2.17524e-148 -1.75696e-145 5.72013e-149 -4.54067e-146 1.42953e-149 -1.11594e-146 3.38836e-150 -2.60286e-147 7.60506e-151 -5.75246e-148 1.61477e-151 -1.20346e-148 3.2434e-152 -2.38331e-149 6.1713e-153 -4.47405e-150 1.11628e-153 -7.98966e-151 1.93258e-154 -1.36651e-151 3.23846e-155 -2.26371e-152 -3.70088e-153 5.35187e-156 -1.2428e-150 -2.35494e-148 -6.60935e-150 -1.28588e-147 -3.42455e-149 -6.97317e-147 -1.70971e-148 -3.68759e-146 -8.16792e-148 -1.88082e-145 -3.71981e-147 -9.18871e-145 -1.61209e-146 -4.28384e-144 -6.64574e-146 -1.90257e-143 -2.60738e-145 -8.04679e-143 -9.74649e-145 -3.24277e-142 -3.47638e-144 -1.24658e-141 -1.18524e-143 -4.57841e-141 -3.86997e-143 -1.60947e-140 -1.21254e-142 -5.42611e-140 -3.65292e-142 -1.75802e-139 -1.0602e-141 -5.48525e-139 -2.97005e-141 -1.65159e-138 -8.04525e-141 -4.80853e-138 -2.11078e-140 -1.35632e-137 -5.37211e-140 -3.71312e-137 -1.32821e-139 -9.88316e-137 -3.19434e-139 -2.56177e-136 -7.48186e-139 -6.47658e-136 -1.7085e-138 -1.5994e-135 -3.80683e-138 -3.8635e-135 -8.28091e-138 -9.14013e-135 -1.75867e-137 -2.11984e-134 -3.64491e-137 -4.82299e-134 -7.36507e-137 -1.07674e-133 -1.44864e-136 -2.35865e-133 -2.76667e-136 -5.06739e-133 -5.11046e-136 -1.06668e-132 -9.07387e-136 -2.19566e-132 -1.53442e-135 -4.40414e-132 -2.43915e-135 -8.5616e-132 -3.58623e-135 -1.60112e-131 -4.77261e-135 -2.85966e-131 -5.54104e-135 -4.84798e-131 -5.18378e-135 -7.75308e-131 -2.8931e-135 -1.16562e-130 1.59109e-135 -1.65745e-130 8.16967e-135 -2.22717e-130 1.84801e-134 -2.89577e-130 3.32557e-134 -3.65519e-130 5.22434e-134 -4.42131e-130 7.36877e-134 -5.06681e-130 9.8731e-134 -5.71788e-130 1.2617e-133 -6.30969e-130 1.57322e-133 -6.92425e-130 1.8317e-133 -7.20256e-130 2.01427e-133 -7.15616e-130 2.07985e-133 -6.73534e-130 1.99946e-133 -5.95023e-130 1.88215e-133 -5.18303e-130 1.72801e-133 -4.42834e-130 1.55745e-133 -3.73374e-130 1.33275e-133 -3.00084e-130 1.0852e-133 -2.30408e-130 8.58017e-134 -1.72356e-130 6.49274e-134 -1.23737e-130 4.63889e-134 -8.41107e-131 3.09145e-134 -5.34504e-131 1.90952e-134 -3.15398e-131 1.09389e-134 -1.72923e-131 5.87271e-135 -8.90172e-132 2.99469e-135 -4.36074e-132 1.46838e-135 -2.05784e-132 6.99193e-136 -9.44678e-133 3.25666e-136 -4.24891e-133 1.49128e-136 -1.88159e-133 6.73584e-137 -8.2299e-134 3.00501e-137 -3.55969e-134 1.32367e-137 -1.52191e-134 5.74936e-138 -6.4227e-135 2.4581e-138 -2.67056e-135 1.03246e-138 -1.09187e-135 4.25184e-139 -4.38068e-136 1.71351e-139 -1.72135e-136 6.74539e-140 -6.61216e-137 2.58924e-140 -2.47848e-137 9.67409e-141 -9.04936e-138 3.51178e-141 -3.21245e-138 1.2362e-141 -1.10662e-138 4.21127e-142 -3.69159e-139 1.3854e-142 -1.19002e-139 4.39152e-143 -3.6987e-140 1.33829e-143 -1.1059e-140 3.91197e-144 -3.17365e-141 1.09439e-144 -8.72172e-142 2.92383e-145 -2.29038e-142 7.44506e-146 -5.73604e-143 1.80374e-146 -1.36762e-143 4.15239e-147 -3.10021e-144 9.07669e-148 -6.67692e-145 1.88425e-148 -1.36646e-145 3.72048e-149 -2.66146e-146 7.01241e-150 -4.95114e-147 1.27021e-150 -8.85706e-148 2.23579e-151 -1.54056e-148 -2.65427e-149 3.89596e-152 -7.27315e-147 -1.40028e-144 -3.70686e-146 -7.31134e-144 -1.84636e-145 -3.80192e-143 -8.89047e-145 -1.93378e-142 -4.11024e-144 -9.51709e-142 -1.81759e-143 -4.50139e-141 -7.67394e-143 -2.03847e-140 -3.09176e-142 -8.82272e-140 -1.18904e-141 -3.64781e-139 -4.36895e-141 -1.4413e-138 -1.53565e-140 -5.44721e-138 -5.17127e-140 -1.97182e-137 -1.67111e-139 -6.84716e-137 -5.19122e-139 -2.28483e-136 -1.55292e-138 -7.33982e-136 -4.48123e-138 -2.27408e-135 -1.24952e-137 -6.80788e-135 -3.37194e-137 -1.97281e-134 -8.81988e-137 -5.54347e-134 -2.23924e-136 -1.51293e-133 -5.52539e-136 -4.01687e-133 -1.32671e-135 -1.03906e-132 -3.10332e-135 -2.62248e-132 -7.07861e-135 -6.46711e-132 -1.57574e-134 -1.5603e-131 -3.42489e-134 -3.68746e-131 -7.26856e-134 -8.54439e-131 -1.50555e-133 -1.94242e-130 -3.0407e-133 -4.33344e-130 -5.97854e-133 -9.48699e-130 -1.14153e-132 -2.03722e-129 -2.10839e-132 -4.28683e-129 -3.74385e-132 -8.82241e-129 -6.33248e-132 -1.76961e-128 -1.00703e-131 -3.44064e-128 -1.48139e-131 -6.43652e-128 -1.97255e-131 -1.15012e-127 -2.29117e-131 -1.95082e-127 -2.14414e-131 -3.12113e-127 -1.19642e-131 -4.69402e-127 6.59052e-132 -6.67516e-127 3.38256e-131 -8.97218e-127 7.64918e-131 -1.16626e-126 1.37644e-130 -1.47203e-126 2.1626e-130 -1.78075e-126 3.04934e-130 -2.04011e-126 4.08623e-130 -2.30261e-126 5.22171e-130 -2.54084e-126 6.51299e-130 -2.78908e-126 7.58961e-130 -2.90364e-126 8.35093e-130 -2.88658e-126 8.62295e-130 -2.71687e-126 8.29237e-130 -2.40099e-126 7.81107e-130 -2.09282e-126 7.17622e-130 -1.78929e-126 6.47445e-130 -1.51015e-126 5.5443e-130 -1.21462e-126 4.51865e-130 -9.33488e-127 3.57592e-130 -6.98968e-127 2.70776e-130 -5.02144e-127 1.93613e-130 -3.41607e-127 1.29106e-130 -2.17223e-127 7.97632e-131 -1.28209e-127 4.56942e-131 -7.02961e-128 2.45322e-131 -3.61894e-128 1.25122e-131 -1.77327e-128 6.13773e-132 -8.37212e-129 2.92459e-132 -3.84625e-129 1.36348e-132 -1.73172e-129 6.25082e-133 -7.6783e-130 2.82706e-133 -3.36316e-130 1.263e-133 -1.45689e-130 5.57168e-134 -6.23879e-131 2.42388e-134 -2.63731e-131 1.03804e-134 -1.09854e-131 4.36776e-135 -4.49994e-132 1.80219e-135 -1.80911e-132 7.27825e-136 -7.12459e-133 2.87195e-136 -2.74357e-133 1.1054e-136 -1.03131e-133 4.14319e-137 -3.77788e-134 1.50966e-137 -1.34631e-134 5.33811e-138 -4.65905e-135 1.82831e-138 -1.56277e-135 6.05384e-139 -5.07097e-136 1.93403e-139 -1.58859e-136 5.94935e-140 -4.79481e-137 1.75863e-140 -1.39152e-137 4.98563e-141 -3.87528e-138 1.35298e-141 -1.0337e-138 3.50872e-142 -2.63642e-139 8.68273e-143 -6.41991e-140 2.04807e-143 -1.49095e-140 4.60251e-144 -3.30063e-141 9.85719e-145 -6.96742e-142 2.01527e-145 -1.40476e-142 3.94743e-146 -2.71493e-143 7.45775e-147 -5.06359e-144 1.37389e-147 -9.2138e-145 -1.66608e-145 2.51385e-148 -3.83176e-143 -7.35796e-141 -1.87768e-142 -3.68677e-140 -9.01665e-142 -1.84423e-139 -4.19784e-141 -9.04768e-139 -1.88212e-140 -4.30716e-138 -8.09598e-140 -1.97641e-137 -3.33488e-139 -8.70912e-137 -1.31463e-138 -3.67866e-136 -4.96032e-138 -1.48856e-135 -1.79269e-137 -5.77164e-135 -6.21221e-137 -2.14593e-134 -2.06673e-136 -7.6594e-134 -6.61052e-136 -2.62798e-133 -2.03589e-135 -8.68053e-133 -6.04648e-135 -2.76475e-132 -1.73439e-134 -8.50466e-132 -4.81207e-134 -2.53081e-131 -1.29324e-133 -7.29733e-131 -3.37116e-133 -2.04197e-130 -8.53463e-133 -5.5536e-130 -2.10095e-132 -1.47017e-129 -5.03457e-132 -3.7935e-129 -1.17565e-131 -9.55394e-129 -2.67778e-131 -2.35163e-128 -5.95354e-131 -5.66436e-128 -1.29265e-130 -1.33667e-127 -2.74096e-130 -3.0931e-127 -5.67348e-130 -7.02306e-127 -1.14529e-129 -1.56509e-126 -2.25123e-129 -3.42301e-126 -4.29846e-129 -7.3443e-126 -7.94204e-129 -1.54435e-125 -1.41133e-128 -3.1767e-125 -2.39021e-128 -6.36983e-125 -3.80845e-128 -1.23833e-124 -5.61862e-128 -2.31674e-124 -7.51444e-128 -4.1407e-124 -8.79251e-128 -7.02555e-124 -8.35883e-128 -1.12426e-123 -4.95916e-128 -1.6911e-123 1.97806e-128 -2.40459e-123 1.19954e-127 -3.23251e-123 2.77425e-127 -4.19994e-123 5.03687e-127 -5.30008e-123 7.95241e-127 -6.41154e-123 1.12428e-126 -7.34263e-123 1.50982e-126 -8.28835e-123 1.93208e-126 -9.14518e-123 2.41316e-126 -1.00408e-122 2.81687e-126 -1.04617e-122 3.1034e-126 -1.04062e-122 3.20644e-126 -9.79476e-123 3.08617e-126 -8.65937e-123 2.91034e-126 -7.55337e-123 2.67674e-126 -6.46261e-123 2.41836e-126 -5.46025e-123 2.07324e-126 -4.39544e-123 1.69193e-126 -3.38179e-123 1.34071e-126 -2.53507e-123 1.01626e-126 -1.82273e-123 7.27494e-127 -1.24119e-123 4.85591e-127 -7.89913e-124 3.00179e-127 -4.66423e-124 1.72033e-127 -2.55804e-124 9.23999e-128 -1.31732e-124 4.71554e-128 -6.45812e-125 2.31514e-128 -3.05143e-125 1.10441e-128 -1.40336e-125 5.15627e-129 -6.32705e-126 2.3678e-129 -2.80988e-126 1.07285e-129 -1.23295e-126 4.80243e-130 -5.35129e-127 2.12295e-130 -2.29619e-127 9.25553e-131 -9.72713e-128 3.97269e-131 -4.06071e-128 1.67557e-131 -1.66727e-128 6.93113e-132 -6.71969e-129 2.80685e-132 -2.65349e-129 1.11089e-132 -1.02485e-129 4.29006e-133 -3.86517e-130 1.61405e-133 -1.42118e-130 5.90671e-134 -5.08638e-131 2.09912e-134 -1.76899e-131 7.23194e-135 -5.96833e-132 2.41121e-135 -1.94994e-132 7.76604e-136 -6.15804e-133 2.41193e-136 -1.8764e-133 7.21033e-137 -5.50665e-134 2.07119e-137 -1.55371e-134 5.70763e-138 -4.20784e-135 1.50669e-138 -1.09223e-135 3.80531e-139 -2.71394e-136 9.18711e-140 -6.44961e-137 2.11955e-140 -1.46543e-137 4.67513e-141 -3.18495e-138 9.87583e-142 -6.63262e-139 2.00525e-142 -1.32829e-139 3.93973e-143 -2.57519e-140 7.57081e-144 -4.88542e-141 -9.23607e-142 1.44904e-144 -1.82256e-139 -3.43833e-137 -8.61361e-139 -1.65858e-136 -3.99872e-138 -8.00455e-136 -1.80441e-137 -3.79758e-135 -7.86249e-137 -1.7527e-134 -3.29587e-136 -7.81794e-134 -1.3266e-135 -3.3578e-133 -5.12338e-135 -1.38608e-132 -1.8986e-134 -5.4954e-132 -6.7547e-134 -2.09279e-131 -2.30912e-133 -7.65995e-131 -7.59315e-133 -2.69712e-130 -2.40469e-132 -9.14626e-130 -7.34378e-132 -2.99101e-129 -2.16563e-131 -9.44543e-129 -6.17498e-131 -2.88455e-128 -1.70469e-130 -8.53126e-128 -4.56218e-130 -2.44712e-127 -1.18507e-129 -6.81738e-127 -2.99134e-129 -1.84713e-126 -7.34541e-129 -4.87386e-126 -1.7565e-128 -1.25405e-125 -4.09442e-128 -3.15043e-125 -9.31176e-128 -7.73731e-125 -2.06768e-127 -1.85993e-124 -4.48472e-127 -4.38098e-124 -9.50179e-127 -1.01205e-123 -1.96566e-126 -2.29434e-123 -3.96689e-126 -5.1056e-123 -7.7979e-126 -1.1152e-122 -1.48961e-125 -2.38998e-122 -2.75498e-125 -5.02072e-122 -4.90378e-125 -1.03195e-121 -8.3258e-125 -2.06805e-121 -1.33152e-124 -4.01894e-121 -1.97526e-124 -7.51783e-121 -2.66427e-124 -1.34373e-120 -3.16269e-124 -2.28024e-120 -3.09972e-124 -3.64912e-120 -2.04809e-124 -5.48904e-120 3.13905e-125 -7.80291e-120 3.60103e-124 -1.04898e-119 8.81303e-124 -1.36211e-119 1.63436e-123 -1.71837e-119 2.6094e-123 -2.07848e-119 3.71316e-123 -2.37932e-119 5.01035e-123 -2.68602e-119 6.43279e-123 -2.96335e-119 8.0568e-123 -3.25403e-119 9.43134e-123 -3.39313e-119 1.04136e-122 -3.37707e-119 1.07744e-122 -3.17881e-119 1.03863e-122 -2.81158e-119 9.81138e-123 -2.45437e-119 9.03838e-123 -2.10159e-119 8.18107e-123 -1.77764e-119 7.02452e-123 -1.43236e-119 5.74257e-123 -1.10338e-119 4.55843e-123 -8.2819e-120 3.46013e-123 -5.96043e-120 2.48066e-123 -4.06326e-120 1.65803e-123 -2.58849e-120 1.02591e-123 -1.52935e-120 5.8839e-124 -8.3913e-121 3.16278e-124 -4.32355e-121 1.61568e-124 -2.12117e-121 7.94225e-125 -1.00327e-121 3.79458e-125 -4.62026e-122 1.77487e-125 -2.08651e-122 8.16729e-126 -9.28414e-123 3.709e-126 -4.08245e-123 1.66425e-126 -1.77588e-123 7.37539e-127 -7.63821e-124 3.22385e-127 -3.24369e-124 1.38751e-127 -1.35761e-124 5.86882e-128 -5.58931e-125 2.435e-128 -2.25918e-125 9.89257e-129 -8.94873e-126 3.92887e-129 -3.46784e-126 1.52304e-129 -1.3127e-126 5.75436e-130 -4.84652e-127 2.11586e-130 -1.74261e-127 7.56e-131 -6.09268e-128 2.62077e-131 -2.06811e-128 8.8007e-132 -6.80447e-129 2.85814e-132 -2.1665e-129 8.96252e-133 -6.66441e-130 2.70939e-133 -1.97746e-130 7.8841e-134 -5.65111e-131 2.20527e-134 -1.55318e-131 5.92186e-135 -4.10037e-132 1.5251e-135 -1.0387e-132 3.76432e-136 -2.52299e-133 8.90313e-137 -5.8752e-134 2.01893e-137 -1.31238e-134 4.3974e-138 -2.81704e-135 9.23299e-139 -5.83177e-136 1.8811e-139 -1.17199e-136 3.75847e-140 -2.31079e-137 -4.55156e-138 7.49833e-141 -7.86481e-136 -1.43613e-133 -3.59461e-135 -6.68898e-133 -1.6172e-134 -3.12285e-132 -7.08843e-134 -1.43617e-131 -3.00743e-133 -6.43981e-131 -1.23054e-132 -2.79739e-130 -4.84638e-132 -1.1729e-129 -1.83576e-131 -4.73783e-129 -6.68741e-131 -1.84242e-128 -2.34377e-130 -6.89733e-128 -7.90842e-130 -2.48685e-127 -2.5714e-129 -8.64218e-127 -8.06494e-129 -2.8975e-126 -2.44268e-128 -9.38272e-126 -7.15268e-128 -2.93805e-125 -2.0273e-127 -8.90757e-125 -5.56827e-127 -2.61809e-124 -1.48379e-126 -7.46954e-124 -3.84016e-126 -2.07128e-123 -9.66308e-126 -5.58942e-123 -2.36652e-125 -1.46963e-122 -5.64618e-125 -3.76955e-122 -1.31357e-124 -9.44345e-122 -2.98248e-124 -2.3134e-121 -6.61344e-124 -5.54816e-121 -1.43282e-123 -1.30404e-120 -3.03315e-123 -3.00646e-120 -6.2713e-123 -6.80303e-120 -1.26535e-122 -1.51128e-119 -2.48787e-122 -3.29585e-119 -4.75593e-122 -7.05334e-119 -8.80803e-122 -1.4799e-118 -1.57126e-121 -3.03867e-118 -2.67653e-121 -6.08477e-118 -4.30122e-121 -1.18182e-117 -6.42633e-121 -2.21e-117 -8.76295e-121 -3.94973e-117 -1.05933e-120 -6.70247e-117 -1.07713e-120 -1.07251e-116 -7.96691e-121 -1.61309e-116 -8.28702e-122 -2.2922e-116 9.06333e-121 -3.0813e-116 2.4623e-120 -3.99813e-116 4.72918e-120 -5.04177e-116 7.6848e-120 -6.09705e-116 1.10479e-119 -6.97633e-116 1.50153e-119 -7.87615e-116 1.93743e-119 -8.68811e-116 2.43619e-119 -9.54109e-116 2.8626e-119 -9.95649e-116 3.17014e-119 -9.91501e-116 3.28661e-119 -9.33364e-116 3.17488e-119 -8.25947e-116 3.0057e-119 -7.21591e-116 2.77448e-119 -6.18388e-116 2.51688e-119 -5.23676e-116 2.16525e-119 -4.22403e-116 1.77381e-119 -3.25816e-116 1.41101e-119 -2.44907e-116 1.07287e-119 -1.76444e-116 7.7056e-120 -1.20429e-116 5.15884e-120 -7.68044e-117 3.19597e-120 -4.54111e-117 1.83493e-120 -2.49314e-117 9.87428e-121 -1.28546e-117 5.05085e-121 -6.31251e-118 2.4868e-121 -2.98939e-118 1.19037e-121 -1.37883e-118 5.58009e-122 -6.23867e-119 2.57409e-122 -2.78206e-119 1.17208e-122 -1.22627e-119 5.27395e-123 -5.34796e-120 2.34404e-123 -2.30633e-120 1.02769e-123 -9.82133e-121 4.43689e-124 -4.12247e-121 1.88281e-124 -1.70238e-121 7.83867e-125 -6.90299e-122 3.19615e-125 -2.74364e-122 1.2743e-125 -1.06713e-122 4.96063e-126 -4.05565e-123 1.88287e-126 -1.50395e-123 6.95864e-127 -5.43414e-124 2.50058e-127 -1.91045e-124 8.72478e-128 -6.52555e-125 2.95145e-128 -2.16242e-125 9.66621e-129 -6.9417e-126 3.0605e-129 -2.15556e-126 9.35499e-130 -6.46566e-127 2.75699e-130 -1.87087e-127 7.8243e-131 -5.21579e-128 2.13606e-131 -1.39951e-128 5.60498e-132 -3.61111e-129 1.41287e-132 -8.95529e-130 3.42118e-133 -2.13435e-130 7.96323e-134 -4.89202e-131 1.78498e-134 -1.08027e-131 3.86701e-135 -2.30656e-132 8.1493e-136 -4.79278e-133 1.68809e-136 -9.79328e-134 -2.00338e-134 3.49925e-137 -3.07944e-132 -5.37922e-130 -1.3647e-131 -2.42564e-129 -5.96424e-131 -1.09821e-128 -2.54468e-130 -4.90681e-128 -1.05319e-129 -2.14187e-127 -4.213e-129 -9.07655e-127 -1.62575e-128 -3.72066e-126 -6.04682e-128 -1.47256e-125 -2.16739e-127 -5.62252e-125 -7.48857e-127 -2.07085e-124 -2.49548e-126 -7.35981e-124 -8.0264e-126 -2.52552e-123 -2.49388e-125 -8.3744e-123 -7.4925e-125 -2.68585e-122 -2.17876e-124 -8.34036e-122 -6.13858e-124 -2.51036e-121 -1.67745e-123 -7.33204e-121 -4.45034e-123 -2.08041e-120 -1.14745e-122 -5.74129e-120 -2.87801e-122 -1.54276e-119 -7.02868e-122 -4.04117e-119 -1.67292e-121 -1.03306e-118 -3.88397e-121 -2.58014e-118 -8.80304e-121 -6.30307e-118 -1.94913e-120 -1.50776e-117 -4.2178e-120 -3.53532e-117 -8.92071e-120 -8.13236e-117 -1.84341e-119 -1.83632e-116 -3.71881e-119 -4.07134e-116 -7.31399e-119 -8.86288e-116 -1.39942e-118 -1.89361e-115 -2.59597e-118 -3.96737e-115 -4.64282e-118 -8.1363e-115 -7.93878e-118 -1.62766e-114 -1.28281e-117 -3.15903e-114 -1.93209e-117 -5.90455e-114 -2.66667e-117 -1.05502e-113 -3.2876e-117 -1.79009e-113 -3.47094e-117 -2.86384e-113 -2.83714e-117 -4.30638e-113 -9.961e-118 -6.11636e-113 1.82396e-117 -8.22077e-113 6.02822e-117 -1.06576e-112 1.22218e-116 -1.34327e-112 2.03706e-116 -1.62395e-112 2.97102e-116 -1.85724e-112 4.07759e-116 -2.09693e-112 5.29663e-116 -2.3127e-112 6.6946e-116 -2.53978e-112 7.90327e-116 -2.65227e-112 8.78481e-116 -2.64272e-112 9.13163e-116 -2.48801e-112 8.84446e-116 -2.20287e-112 8.39521e-116 -1.92617e-112 7.76803e-116 -1.65213e-112 7.06474e-116 -1.40076e-112 6.09154e-116 -1.13115e-112 5.00236e-116 -8.73738e-113 3.98886e-116 -6.57789e-113 3.03889e-116 -4.74442e-113 2.18706e-116 -3.24241e-113 1.467e-116 -2.0704e-113 9.10146e-117 -1.22516e-113 5.23224e-117 -6.73119e-114 2.81942e-117 -3.47352e-114 1.44444e-117 -1.70762e-114 7.12485e-118 -8.09815e-115 3.41787e-118 -3.74178e-115 1.60618e-118 -1.6966e-115 7.42974e-119 -7.58412e-116 3.39306e-119 -3.35176e-116 1.53149e-119 -1.46584e-116 6.82862e-120 -6.33993e-117 3.00374e-120 -2.70795e-117 1.30125e-120 -1.14022e-117 5.54151e-121 -4.72399e-118 2.31566e-121 -1.92217e-118 9.47893e-122 -7.66784e-119 3.79499e-122 -2.99411e-119 1.48395e-122 -1.14275e-119 5.65994e-123 -4.25728e-120 2.10295e-123 -1.54613e-120 7.6017e-124 -5.46659e-121 2.66988e-124 -1.87918e-121 9.09913e-125 -6.27225e-122 3.00519e-125 -2.03003e-122 9.60627e-126 -6.36276e-123 2.96838e-126 -1.92891e-123 8.85667e-127 -5.64936e-124 2.54894e-127 -1.5968e-124 7.06974e-128 -4.35183e-125 1.88845e-128 -1.14278e-125 4.85623e-129 -2.89035e-126 1.20229e-129 -7.04128e-127 2.86791e-130 -1.65344e-127 6.60338e-131 -3.74935e-128 1.47289e-131 -8.23964e-129 3.20289e-132 -1.76607e-129 6.86023e-133 -3.73001e-130 -7.90208e-131 1.47323e-133 -1.09714e-128 -1.8117e-126 -4.72545e-128 -7.92886e-126 -2.01041e-127 -3.48921e-125 -8.36514e-127 -1.51774e-124 -3.38292e-126 -6.46131e-124 -1.3249e-125 -2.67548e-123 -5.01546e-125 -1.07375e-122 -1.83354e-124 -4.16872e-122 -6.47168e-124 -1.56437e-121 -2.20577e-123 -5.67324e-121 -7.26279e-123 -1.98871e-120 -2.31157e-122 -6.74178e-120 -7.11677e-122 -2.21171e-119 -2.12118e-121 -7.02711e-119 -6.12576e-121 -2.16424e-118 -1.71562e-120 -6.4673e-118 -4.66391e-120 -1.877e-117 -1.23181e-119 -5.29624e-117 -3.16367e-119 -1.4544e-116 -7.90815e-119 -3.89104e-116 -1.92563e-118 -1.01523e-115 -4.57149e-118 -2.58602e-115 -1.05899e-117 -6.43775e-115 -2.39562e-117 -1.56796e-114 -5.29567e-117 -3.74023e-114 -1.14444e-116 -8.74694e-114 -2.41808e-116 -2.0071e-113 -4.99363e-116 -4.52158e-113 -1.00717e-115 -1.00031e-112 -1.98143e-115 -2.17319e-112 -3.79461e-115 -4.63465e-112 -7.05106e-115 -9.6944e-112 -1.26444e-114 -1.98538e-111 -2.17065e-114 -3.9672e-111 -3.52764e-114 -7.69291e-111 -5.35732e-114 -1.437e-110 -7.48544e-114 -2.56673e-110 -9.40857e-114 -4.35411e-110 -1.02878e-113 -6.96361e-110 -9.1286e-114 -1.0468e-109 -4.89761e-114 -1.48591e-109 2.4781e-114 -1.99675e-109 1.27808e-113 -2.58607e-109 2.81732e-113 -3.25752e-109 4.86526e-113 -3.93669e-109 7.2341e-113 -4.49995e-109 1.00545e-112 -5.081e-109 1.31717e-112 -5.60266e-109 1.67544e-112 -6.1524e-109 1.98898e-112 -6.42925e-109 2.22057e-112 -6.40967e-109 2.31564e-112 -6.03516e-109 2.24983e-112 -5.3467e-109 2.142e-112 -4.6792e-109 1.98741e-112 -4.01708e-109 1.81259e-112 -3.41005e-109 1.56691e-112 -2.75702e-109 1.29021e-112 -2.13278e-109 1.0316e-112 -1.60833e-109 7.87636e-113 -1.16142e-109 5.68135e-113 -7.94805e-110 3.81888e-113 -5.08174e-110 2.37321e-113 -3.00987e-110 1.36635e-113 -1.65503e-110 7.37418e-114 -8.54875e-111 3.78468e-114 -4.20788e-111 1.8707e-114 -1.99866e-111 8.99539e-115 -9.2527e-112 4.23877e-115 -4.20503e-112 1.96664e-115 -1.88464e-112 9.01021e-116 -8.35279e-113 4.0805e-116 -3.66395e-113 1.82571e-116 -1.58965e-113 8.05938e-117 -6.81168e-114 3.50418e-117 -2.87773e-114 1.49796e-117 -1.19642e-114 6.2844e-118 -4.886e-115 2.58317e-118 -1.95667e-115 1.03875e-118 -7.67191e-116 4.08093e-119 -2.9411e-116 1.5644e-119 -1.10097e-116 5.84463e-120 -4.0195e-117 2.12553e-120 -1.42943e-117 7.5155e-121 -4.94558e-118 2.58055e-121 -1.66269e-118 8.59455e-122 -5.4253e-119 2.77332e-122 -1.71615e-119 8.66127e-123 -5.25695e-120 2.61542e-123 -1.55784e-120 7.62957e-124 -4.46203e-121 2.14854e-124 -1.23435e-121 5.8376e-125 -3.2961e-122 1.52989e-125 -8.49363e-123 3.86801e-126 -2.11242e-123 9.44202e-127 -5.07463e-124 2.22946e-127 -1.17969e-124 5.11017e-128 -2.66325e-125 1.14419e-128 -5.87562e-126 2.52807e-129 -1.27964e-126 -2.80021e-127 5.60987e-130 -3.55024e-125 -5.49632e-123 -1.48935e-124 -2.33981e-122 -6.18049e-124 -1.0029e-121 -2.51242e-123 -4.2551e-121 -9.94348e-123 -1.76972e-120 -3.81793e-122 -7.17121e-120 -1.41948e-121 -2.82137e-119 -5.10557e-121 -1.0757e-118 -1.77598e-120 -3.97111e-118 -5.97506e-120 -1.41908e-117 -1.94488e-119 -4.90946e-117 -6.12769e-119 -1.64496e-116 -1.86986e-118 -5.34079e-116 -5.52992e-118 -1.68141e-115 -1.58615e-117 -5.13674e-115 -4.4159e-117 -1.52405e-114 -1.19423e-116 -4.3953e-114 -3.13982e-116 -1.23324e-113 -8.03189e-116 -3.36962e-113 -2.00069e-115 -8.97423e-113 -4.85671e-115 -2.33193e-112 -1.14988e-114 -5.91783e-112 -2.65743e-114 -1.46815e-111 -5.9992e-114 -3.5644e-111 -1.32383e-113 -8.4772e-111 -2.85674e-113 -1.97691e-110 -6.02916e-113 -4.52422e-110 -1.24414e-112 -1.01665e-109 -2.50845e-112 -2.24384e-109 -4.93574e-112 -4.86408e-109 -9.45986e-112 -1.03525e-108 -1.76058e-111 -2.16159e-108 -3.16524e-111 -4.42004e-108 -5.45445e-111 -8.82085e-108 -8.91329e-111 -1.70874e-107 -1.36442e-110 -3.18953e-107 -1.92858e-110 -5.69454e-107 -2.46736e-110 -9.65707e-107 -2.78165e-110 -1.54386e-106 -2.63219e-110 -2.31992e-106 -1.76817e-110 -3.29092e-106 1.10642e-113 -4.42119e-106 2.29449e-110 -5.71974e-106 5.77932e-110 -7.19999e-106 1.04769e-109 -8.69719e-106 1.59702e-109 -9.93647e-106 2.25451e-109 -1.12201e-105 2.98397e-109 -1.23692e-105 3.8241e-109 -1.3581e-105 4.56875e-109 -1.4201e-105 5.12635e-109 -1.41655e-105 5.36569e-109 -1.33398e-105 5.23171e-109 -1.18257e-105 4.9977e-109 -1.03588e-105 4.651e-109 -8.90125e-106 4.2548e-109 -7.56541e-106 3.68843e-109 -6.12437e-106 3.04593e-109 -4.74511e-106 2.44254e-109 -3.58461e-106 1.86924e-109 -2.59172e-106 1.35153e-109 -1.7761e-106 9.1051e-110 -1.13712e-106 5.6684e-110 -6.74164e-107 3.26885e-110 -3.71036e-107 1.76723e-110 -1.91857e-107 9.08775e-111 -9.45644e-108 4.50198e-111 -4.49926e-108 2.17037e-111 -2.08722e-108 1.02569e-111 -9.50896e-109 4.77408e-112 -4.27366e-109 2.19472e-112 -1.89982e-109 9.97467e-113 -8.36009e-110 4.47919e-113 -3.63907e-110 1.98468e-113 -1.56465e-110 8.66243e-114 -6.63337e-111 3.71772e-114 -2.7679e-111 1.56615e-114 -1.13471e-111 6.4655e-115 -4.56249e-112 2.61183e-115 -1.7966e-112 1.03109e-115 -6.91908e-113 3.9732e-116 -2.60294e-113 1.49275e-116 -9.55414e-114 5.46203e-117 -3.41774e-114 1.94431e-117 -1.19019e-114 6.72594e-118 -4.03039e-115 2.25871e-118 -1.32575e-115 7.35625e-119 -4.23172e-116 2.32133e-119 -1.30948e-116 7.09154e-120 -3.92497e-117 2.0958e-120 -1.13867e-117 5.98831e-121 -3.19535e-118 1.65359e-121 -8.66979e-119 4.41216e-122 -2.27401e-119 1.13783e-122 -5.7672e-120 2.8384e-123 -1.41544e-120 6.86202e-124 -3.36806e-121 1.61339e-124 -7.79736e-122 3.71208e-125 -1.76716e-122 8.44166e-126 -3.96002e-123 -8.93014e-124 1.93103e-126 -1.04373e-121 -1.50389e-119 -4.27276e-121 -6.23995e-119 -1.73252e-120 -2.60997e-118 -6.89148e-120 -1.08197e-117 -2.67297e-119 -4.40306e-117 -1.00743e-118 -1.74844e-116 -3.68252e-118 -6.75162e-116 -1.30431e-117 -2.53059e-115 -4.47467e-117 -9.19818e-115 -1.48691e-116 -3.24125e-114 -4.78678e-116 -1.10732e-113 -1.49348e-115 -3.66867e-113 -4.51812e-115 -1.17924e-112 -1.32604e-114 -3.67956e-112 -3.77802e-114 -1.11522e-111 -1.04561e-113 -3.2855e-111 -2.81302e-113 -9.41562e-111 -7.36185e-113 -2.62695e-110 -1.87557e-112 -7.14122e-110 -4.65511e-112 -1.89315e-109 -1.12643e-111 -4.89866e-109 -2.65944e-111 -1.23835e-108 -6.13075e-111 -3.06125e-108 -1.381e-110 -7.40738e-108 -3.04165e-110 -1.75617e-107 -6.55314e-110 -4.08328e-107 -1.38126e-109 -9.3184e-107 -2.84764e-109 -2.08837e-106 -5.73853e-109 -4.59764e-106 -1.12912e-108 -9.94315e-106 -2.16538e-108 -2.11171e-105 -4.03546e-108 -4.40073e-105 -7.27168e-108 -8.98364e-105 -1.25743e-107 -1.79031e-104 -2.06523e-107 -3.46422e-104 -3.18446e-107 -6.46101e-104 -4.54849e-107 -1.15294e-103 -5.91068e-107 -1.9545e-103 -6.83796e-107 -3.12318e-103 -6.80165e-107 -4.69114e-103 -5.24476e-107 -6.64985e-103 -1.74903e-107 -8.93125e-103 3.28923e-107 -1.15406e-102 1.04842e-106 -1.45165e-102 2.03291e-106 -1.7526e-102 3.19862e-106 -2.00131e-102 4.60162e-106 -2.26e-102 6.16482e-106 -2.49079e-102 7.96878e-106 -2.73422e-102 9.58871e-106 -2.8607e-102 1.08193e-105 -2.85508e-102 1.13716e-105 -2.68913e-102 1.11313e-105 -2.3856e-102 1.06722e-105 -2.09164e-102 9.96402e-106 -1.79907e-102 9.14446e-106 -1.53096e-102 7.9509e-106 -1.24099e-102 6.5861e-106 -9.63073e-103 5.29785e-106 -7.28888e-103 4.06423e-106 -5.27661e-103 2.9459e-106 -3.62119e-103 1.98928e-106 -2.32166e-103 1.24077e-106 -1.37784e-103 7.16781e-107 -7.59048e-104 3.88231e-107 -3.92944e-104 2.00062e-107 -1.93962e-104 9.93462e-108 -9.24523e-105 4.80245e-108 -4.29828e-105 2.27657e-108 -1.96329e-105 1.06321e-108 -8.8496e-106 4.90527e-109 -3.94652e-106 2.23767e-109 -1.74245e-106 1.00867e-109 -7.61088e-107 4.48672e-110 -3.28395e-107 1.96612e-110 -1.39732e-107 8.4729e-111 -5.85272e-108 3.58465e-111 -2.40886e-108 1.48647e-111 -9.72621e-109 6.03308e-112 -3.84692e-109 2.3936e-112 -1.48853e-109 9.27256e-113 -5.62817e-110 3.50367e-113 -2.07714e-110 1.28995e-113 -7.47474e-111 4.62289e-114 -2.62002e-111 1.61109e-114 -8.93629e-112 5.45488e-115 -2.96301e-112 1.79279e-115 -9.54204e-113 5.71483e-116 -2.98209e-113 1.76562e-116 -9.03755e-114 5.28388e-117 -2.65436e-114 1.53095e-117 -7.5515e-115 4.29327e-118 -2.08031e-115 1.16522e-118 -5.54893e-116 3.06165e-119 -1.43351e-116 7.79502e-120 -3.5899e-117 1.92667e-120 -8.73097e-118 4.63908e-121 -2.0694e-118 1.0948e-121 -4.80916e-119 2.55736e-122 -1.10666e-119 -2.56629e-120 6.01735e-123 -2.78272e-118 -3.71469e-116 -1.11358e-117 -1.50496e-115 -4.41902e-117 -6.15307e-115 -1.72249e-116 -2.49622e-114 -6.55597e-116 -9.95368e-114 -2.4282e-115 -3.87824e-113 -8.73533e-115 -1.47152e-112 -3.04933e-114 -5.42724e-112 -1.03248e-113 -1.94389e-111 -3.39064e-113 -6.75914e-111 -1.08008e-112 -2.28153e-110 -3.33832e-112 -7.4776e-110 -1.00151e-111 -2.38036e-109 -2.91763e-111 -7.36311e-109 -8.25811e-111 -2.21435e-108 -2.27222e-110 -6.47824e-108 -6.08139e-110 -1.84493e-107 -1.58422e-109 -5.11827e-107 -4.01955e-109 -1.38425e-106 -9.93994e-109 -3.65252e-106 -2.39739e-108 -9.4106e-106 -5.64358e-108 -2.36952e-105 -1.29762e-107 -5.83593e-105 -2.91625e-107 -1.40725e-104 -6.41e-107 -3.32546e-104 -1.37861e-106 -7.70808e-104 -2.90164e-106 -1.75385e-103 -5.97557e-106 -3.91956e-103 -1.20337e-105 -8.60617e-103 -2.3673e-105 -1.85661e-102 -4.54169e-105 -3.93404e-102 -8.47354e-105 -8.18156e-102 -1.52995e-104 -1.6672e-101 -2.6539e-104 -3.31745e-101 -4.37885e-104 -6.4114e-101 -6.79658e-104 -1.19468e-100 -9.79911e-104 -2.13063e-100 -1.29084e-103 -3.61036e-100 -1.52614e-103 -5.76615e-100 -1.57861e-103 -8.65689e-100 -1.33513e-103 -1.22621e-99 -7.10973e-104 -1.64638e-99 3.03416e-104 -2.12464e-99 1.65809e-103 -2.67033e-99 3.54313e-103 -3.22202e-99 5.80651e-103 -3.67738e-99 8.54626e-103 -4.153e-99 1.16128e-102 -4.57574e-99 1.51581e-102 -5.02139e-99 1.83838e-102 -5.25636e-99 2.08703e-102 -5.24879e-99 2.20364e-102 -4.94472e-99 2.16631e-102 -4.38997e-99 2.08505e-102 -3.85277e-99 1.95341e-102 -3.31715e-99 1.79875e-102 -2.82625e-99 1.56892e-102 -2.29411e-99 1.30381e-102 -1.78334e-99 1.05223e-102 -1.35232e-99 8.09257e-103 -9.80228e-100 5.88085e-103 -6.73669e-100 3.98083e-103 -4.32523e-100 2.48784e-103 -2.5696e-100 1.43985e-103 -1.41704e-100 7.81394e-104 -7.34474e-101 4.03557e-104 -3.63112e-101 2.00901e-104 -1.7341e-101 9.73934e-105 -8.08072e-102 4.63171e-105 -3.701e-102 2.17072e-105 -1.67336e-102 1.00524e-105 -7.48718e-103 4.60341e-106 -3.31722e-103 2.0833e-106 -1.45413e-103 9.30414e-107 -6.29735e-104 4.09394e-107 -2.68965e-104 1.77176e-107 -1.13098e-104 7.52882e-108 -4.67394e-105 3.13637e-108 -1.89531e-105 1.27909e-108 -7.53047e-106 5.10055e-109 -2.92792e-106 1.98659e-109 -1.11277e-106 7.5498e-110 -4.12963e-107 2.79695e-110 -1.49501e-107 1.00915e-110 -5.27459e-108 3.5429e-111 -1.81196e-108 1.2093e-111 -6.05545e-109 4.01003e-112 -1.96715e-109 1.29092e-112 -6.20734e-110 4.03205e-113 -1.90144e-110 1.22129e-113 -5.65126e-111 3.58607e-114 -1.629e-111 1.02055e-114 -4.55317e-112 2.81496e-115 -1.23401e-112 7.52821e-116 -3.24403e-113 1.95387e-116 -8.27959e-114 4.93055e-117 -2.05539e-114 1.2139e-117 -4.98e-115 2.93337e-118 -1.18473e-115 7.02537e-119 -2.79441e-116 -6.65061e-117 1.69698e-119 -6.72796e-115 -8.28631e-113 -2.63601e-114 -3.28332e-112 -1.02522e-113 -1.31422e-111 -3.92118e-113 -5.22507e-111 -1.46628e-112 -2.0442e-110 -5.34258e-112 -7.8242e-110 -1.89325e-111 -2.92008e-109 -6.5188e-111 -1.0607e-108 -2.17988e-110 -3.74653e-108 -7.07854e-110 -1.28627e-107 -2.23217e-109 -4.29205e-107 -6.83697e-109 -1.39213e-106 -2.03457e-108 -4.39017e-106 -5.8845e-108 -1.34656e-105 -1.65484e-107 -4.01882e-105 -4.52713e-107 -1.16767e-104 -1.20542e-106 -3.30474e-104 -3.12568e-106 -9.11639e-104 -7.89777e-106 -2.45284e-103 -1.94577e-105 -6.44155e-103 -4.67721e-105 -1.6524e-102 -1.09771e-104 -4.14377e-102 -2.51706e-104 -1.01671e-101 -5.64295e-104 -2.44292e-101 -1.23763e-103 -5.75335e-101 -2.65669e-103 -1.32928e-100 -5.58262e-103 -3.01526e-100 -1.14819e-102 -6.71885e-100 -2.31018e-102 -1.47116e-99 -4.5427e-102 -3.16549e-99 -8.71643e-102 -6.6914e-99 -1.6276e-101 -1.3886e-98 -2.94362e-101 -2.82427e-98 -5.11984e-101 -5.6108e-98 -8.48161e-101 -1.08295e-97 -1.32413e-100 -2.01596e-97 -1.92472e-100 -3.59303e-97 -2.56507e-100 -6.08553e-97 -3.08763e-100 -9.71385e-97 -3.29293e-100 -1.45764e-96 -2.97121e-100 -2.06304e-96 -1.96362e-100 -2.76905e-96 -1.17042e-101 -3.56855e-96 2.23489e-100 -4.48116e-96 5.53458e-100 -5.40348e-96 9.55647e-100 -6.16412e-96 1.44527e-99 -6.96194e-96 1.99591e-99 -7.6681e-96 2.63348e-99 -8.41164e-96 3.2211e-99 -8.80918e-96 3.68074e-99 -8.801e-96 3.9055e-99 -8.29318e-96 3.85682e-99 -7.36895e-96 3.7273e-99 -6.47375e-96 3.50455e-99 -5.57946e-96 3.23819e-99 -4.75953e-96 2.83376e-99 -3.86892e-96 2.36282e-99 -3.01273e-96 1.9134e-99 -2.28919e-96 1.47539e-99 -1.66146e-96 1.07496e-99 -1.1435e-96 7.29463e-100 -7.35224e-97 4.568e-100 -4.37261e-97 2.64879e-100 -2.41392e-97 1.44041e-100 -1.2528e-97 7.45631e-101 -6.20385e-98 3.72165e-101 -2.96872e-98 1.80953e-101 -1.38672e-98 8.63417e-102 -6.36924e-99 4.0613e-102 -2.88897e-99 1.88802e-102 -1.29709e-99 8.68069e-103 -5.76754e-100 3.94454e-103 -2.53764e-100 1.76897e-103 -1.10313e-100 7.81665e-104 -4.72987e-101 3.39757e-104 -1.99688e-101 1.45026e-104 -8.28704e-102 6.06989e-105 -3.37526e-102 2.48763e-105 -1.34729e-102 9.97114e-106 -5.26423e-103 3.90489e-106 -2.01119e-103 1.49267e-106 -7.50565e-104 5.5645e-107 -2.73362e-104 2.02126e-107 -9.70778e-105 7.14828e-108 -3.35868e-105 2.45947e-108 -1.13122e-105 8.22712e-109 -3.70635e-106 2.67402e-109 -1.18059e-106 8.44066e-110 -3.65411e-107 2.58651e-110 -1.09852e-107 7.69241e-111 -3.20663e-108 2.22008e-111 -9.08746e-109 6.21824e-112 -2.50044e-109 1.69099e-112 -6.68254e-110 4.46893e-113 -1.73629e-110 1.1499e-113 -4.39405e-111 2.89059e-114 -1.08676e-111 7.141e-115 -2.64245e-112 1.7505e-115 -6.37773e-113 -1.555e-113 4.33286e-116 -1.47444e-111 -1.66978e-109 -5.66411e-111 -6.48073e-109 -2.16199e-110 -2.54328e-108 -8.12393e-110 -9.92281e-108 -2.98792e-109 -3.81355e-107 -1.07207e-108 -1.43545e-106 -3.74559e-108 -5.27458e-106 -1.27302e-107 -1.88859e-105 -4.20685e-107 -6.58308e-105 -1.35147e-106 -2.23293e-104 -4.22062e-106 -7.36917e-104 -1.28149e-105 -2.36635e-103 -3.78366e-105 -7.39493e-103 -1.08663e-104 -2.24957e-102 -3.0365e-104 -6.66387e-102 -8.25964e-104 -1.92308e-101 -2.18798e-103 -5.40915e-101 -5.64724e-103 -1.48374e-100 -1.42094e-102 -3.97145e-100 -3.48751e-102 -1.03798e-99 -8.35444e-102 -2.65085e-99 -1.95462e-101 -6.6201e-99 -4.46929e-101 -1.618e-98 -9.9939e-101 -3.87342e-98 -2.18682e-100 -9.09055e-98 -4.68455e-100 -2.09332e-97 -9.82632e-100 -4.73321e-97 -2.01805e-99 -1.05147e-96 -4.0559e-99 -2.29565e-96 -7.97026e-99 -4.92609e-96 -1.52914e-98 -1.03869e-95 -2.85688e-98 -2.15059e-95 -5.17368e-98 -4.36537e-95 -9.01909e-98 -8.65764e-95 -1.49934e-97 -1.6687e-94 -2.35268e-97 -3.1031e-94 -3.44427e-97 -5.5268e-94 -4.63616e-97 -9.35594e-94 -5.66527e-97 -1.49252e-93 -6.19163e-97 -2.23846e-93 -5.86034e-97 -3.16554e-93 -4.39608e-97 -4.24739e-93 -1.5577e-97 -5.46574e-93 2.40586e-97 -6.85715e-93 7.68102e-97 -8.26258e-93 1.42158e-96 -9.42129e-93 2.22171e-96 -1.06416e-92 3.12605e-96 -1.17167e-92 4.17456e-96 -1.28466e-92 5.15323e-96 -1.34587e-92 5.93002e-96 -1.34528e-92 6.32538e-96 -1.26803e-92 6.27686e-96 -1.12774e-92 6.09206e-96 -9.91777e-93 5.74946e-96 -8.55675e-93 5.33117e-96 -7.30803e-93 4.68125e-96 -5.94935e-93 3.91675e-96 -4.64098e-93 3.18297e-96 -3.53381e-93 2.46077e-96 -2.56811e-93 1.79763e-96 -1.77003e-93 1.22291e-96 -1.1397e-93 7.67368e-97 -6.7855e-94 4.45833e-97 -3.75011e-94 2.42956e-97 -1.94893e-94 1.26067e-97 -9.66777e-95 6.30942e-98 -4.63606e-95 3.07711e-98 -2.17099e-95 1.4733e-98 -1.00007e-95 6.95614e-99 -4.55119e-96 3.24668e-99 -2.0507e-96 1.49891e-99 -9.1526e-97 6.83971e-100 -4.04246e-97 3.08038e-100 -1.76414e-97 1.36703e-100 -7.59422e-98 5.9683e-101 -3.21936e-98 2.55928e-101 -1.34176e-98 1.07628e-101 -5.48951e-99 4.43298e-102 -2.20162e-99 1.78621e-102 -8.64541e-100 7.03392e-103 -3.32053e-100 2.70459e-103 -1.24623e-100 1.01457e-103 -4.56646e-101 3.71019e-104 -1.63228e-101 1.32168e-104 -5.68738e-102 4.58335e-105 -1.93031e-102 1.54636e-105 -6.37778e-103 5.07326e-106 -2.05026e-103 1.61786e-106 -6.40998e-104 5.01351e-107 -1.94835e-104 1.50941e-107 -5.75637e-105 4.41486e-108 -1.65298e-105 1.25469e-108 -4.61401e-106 3.46628e-109 -1.25248e-106 9.31796e-110 -3.30946e-107 2.44181e-110 -8.52784e-108 6.25884e-111 -2.15015e-108 1.57839e-111 -5.33571e-109 3.95385e-112 -1.31569e-109 -3.28087e-110 1.00117e-112 -2.93004e-108 -3.03945e-106 -1.10513e-107 -1.15716e-105 -4.14516e-107 -4.45827e-105 -1.53204e-106 -1.70912e-104 -5.54794e-106 -6.45999e-104 -1.96202e-105 -2.39379e-103 -6.76375e-105 -8.66819e-103 -2.27066e-104 -3.0618e-102 -7.41956e-104 -1.05395e-101 -2.35919e-103 -3.53391e-101 -7.29923e-103 -1.154e-100 -2.19756e-102 -3.67007e-100 -6.43883e-102 -1.13684e-99 -1.83639e-101 -3.43063e-99 -5.09953e-101 -1.00882e-98 -1.37927e-100 -2.89181e-98 -3.63486e-100 -8.08404e-98 -9.33777e-100 -2.20495e-97 -2.33953e-99 -5.8711e-97 -5.7197e-99 -1.52705e-96 -1.3653e-98 -3.88229e-96 -3.1839e-98 -9.65454e-96 -7.25843e-98 -2.35026e-95 -1.61866e-97 -5.60523e-95 -3.53308e-97 -1.31077e-94 -7.55153e-97 -3.00798e-94 -1.58088e-96 -6.77885e-94 -3.24123e-96 -1.50114e-93 -6.50566e-96 -3.2675e-93 -1.27728e-95 -6.99163e-93 -2.4496e-95 -1.47034e-92 -4.57764e-95 -3.03709e-92 -8.29785e-95 -6.15195e-92 -1.44921e-94 -1.2179e-91 -2.41633e-94 -2.34396e-91 -3.80833e-94 -4.35392e-91 -5.60979e-94 -7.74886e-91 -7.61565e-94 -1.31102e-90 -9.42436e-94 -2.0901e-90 -1.05056e-93 -3.13299e-90 -1.03123e-93 -4.4268e-90 -8.40414e-94 -5.93758e-90 -4.44037e-94 -7.629e-90 1.66302e-94 -9.56172e-90 9.3603e-94 -1.15125e-89 1.90617e-93 -1.31212e-89 3.10088e-93 -1.48222e-89 4.45828e-93 -1.6313e-89 6.03386e-93 -1.78755e-89 7.52276e-93 -1.87325e-89 8.72182e-93 -1.87332e-89 9.35584e-93 -1.76634e-89 9.33178e-93 -1.57249e-89 9.0975e-93 -1.38441e-89 8.6192e-93 -1.19573e-89 8.02066e-93 -1.02243e-89 7.06757e-93 -8.33621e-90 5.9342e-93 -6.51474e-90 4.83996e-93 -4.97132e-90 3.7517e-93 -3.61748e-90 2.74788e-93 -2.49684e-90 1.87407e-93 -1.60997e-90 1.17839e-93 -9.59592e-91 6.85998e-94 -5.30939e-91 3.74648e-94 -2.76321e-91 1.94884e-94 -1.37319e-91 9.7809e-95 -6.59945e-92 4.78522e-95 -3.09848e-92 2.29926e-95 -1.43168e-92 1.0898e-95 -6.53777e-93 5.10742e-96 -2.95672e-93 2.36796e-96 -1.32473e-93 1.08518e-96 -5.87409e-94 4.90856e-97 -2.57374e-94 2.18797e-97 -1.11246e-94 9.59556e-98 -4.7358e-95 4.13391e-98 -1.98242e-95 1.74693e-98 -8.1478e-96 7.23182e-99 -3.28352e-96 2.92948e-99 -1.29595e-96 1.16007e-99 -5.00428e-97 4.48702e-100 -1.88891e-97 1.69382e-100 -6.96364e-98 6.23584e-101 -2.50545e-98 2.23745e-101 -8.79133e-99 7.81954e-102 -3.00655e-99 2.66046e-102 -1.00159e-99 8.80837e-103 -3.24877e-100 2.83699e-103 -1.02566e-100 8.88679e-104 -3.15087e-101 2.70713e-104 -9.41755e-102 8.01964e-105 -2.73855e-102 2.31085e-105 -7.74916e-103 6.47994e-106 -2.13473e-103 1.77005e-106 -5.73071e-104 4.71863e-107 -1.50192e-104 1.23171e-107 -3.85564e-105 3.16651e-108 -9.75166e-106 8.09366e-109 -2.45307e-106 -6.24654e-107 2.09324e-109 -5.27936e-105 -4.99714e-103 -1.95759e-104 -1.8687e-102 -7.22404e-104 -7.07737e-102 -2.62908e-103 -2.66909e-101 -9.38326e-103 -9.93262e-101 -3.27358e-102 -3.62696e-100 -1.11435e-101 -1.29541e-99 -3.69753e-101 -4.51734e-99 -1.19527e-100 -1.53658e-98 -3.76329e-100 -5.09581e-98 -1.15389e-99 -1.64727e-97 -3.44551e-99 -5.19019e-97 -1.00198e-98 -1.59402e-96 -2.83823e-98 -4.77259e-96 -7.83254e-98 -1.39334e-95 -2.10642e-97 -3.9676e-95 -5.52233e-97 -1.10236e-94 -1.4119e-96 -2.9897e-94 -3.52199e-96 -7.91879e-94 -8.57603e-96 -2.04955e-93 -2.03955e-95 -5.18677e-93 -4.74008e-95 -1.28429e-92 -1.07722e-94 -3.1137e-92 -2.39528e-94 -7.39723e-92 -5.21429e-94 -1.72343e-91 -1.11178e-93 -3.94087e-91 -2.32238e-93 -8.85079e-91 -4.75253e-93 -1.9535e-90 -9.52431e-93 -4.23881e-90 -1.86782e-92 -9.04314e-90 -3.57988e-92 -1.89656e-89 -6.68949e-92 -3.90772e-89 -1.21338e-91 -7.8981e-89 -2.12229e-91 -1.56063e-88 -3.54748e-91 -2.99891e-88 -5.61257e-91 -5.56384e-88 -8.31195e-91 -9.89432e-88 -1.13669e-90 -1.673e-87 -1.42177e-90 -2.66542e-87 -1.61077e-90 -3.9931e-87 -1.62696e-90 -5.6372e-87 -1.40534e-90 -7.55827e-87 -9.0308e-91 -9.69563e-87 -5.41023e-92 -1.21394e-86 9.79525e-91 -1.46037e-86 2.29451e-90 -1.66376e-86 3.92315e-90 -1.87963e-86 5.78353e-90 -2.06774e-86 7.94488e-90 -2.26424e-86 1.00118e-89 -2.37322e-86 1.17002e-89 -2.3744e-86 1.26259e-89 -2.23968e-86 1.26615e-89 -1.99603e-86 1.24007e-89 -1.75928e-86 1.17957e-89 -1.52124e-86 1.1016e-89 -1.30225e-86 9.74183e-90 -1.06344e-86 8.20894e-90 -8.32617e-87 6.7201e-90 -6.36781e-87 5.22289e-90 -4.63967e-87 3.83549e-90 -3.20688e-87 2.62238e-90 -2.07074e-87 1.65232e-90 -1.23557e-87 9.63848e-91 -6.84439e-88 5.27567e-91 -3.56735e-88 2.7513e-91 -1.77615e-88 1.38482e-91 -8.55562e-89 6.7971e-92 -4.02778e-89 3.27786e-92 -1.86696e-89 1.55984e-92 -8.55573e-90 7.34114e-93 -3.88415e-90 3.41841e-93 -1.74719e-90 1.57349e-93 -7.77879e-91 7.14898e-94 -3.42229e-91 3.20097e-94 -1.4854e-91 1.41028e-94 -6.35054e-92 6.10461e-95 -2.6702e-92 2.59247e-95 -1.10257e-92 1.07875e-95 -4.46508e-93 4.39346e-96 -1.77139e-93 1.74968e-96 -6.8775e-94 6.80804e-97 -2.61096e-94 2.58625e-97 -9.68465e-95 9.58545e-98 -3.50726e-95 3.46402e-98 -1.23929e-95 1.21995e-98 -4.27021e-96 4.18511e-99 -1.43413e-96 1.39803e-99 -4.69268e-97 4.54633e-100 -1.49562e-97 1.43904e-100 -4.64199e-98 4.43333e-101 -1.40293e-98 1.32942e-101 -4.12892e-99 3.88127e-102 -1.18358e-99 1.10381e-102 -3.30624e-100 3.06096e-103 -9.00898e-101 8.29218e-104 -2.39892e-101 2.2017e-104 -6.26297e-102 5.76264e-105 -1.61238e-102 1.50087e-105 -4.13213e-103 -1.07293e-103 3.95877e-106 -8.62242e-102 -7.41764e-100 -3.147e-101 -2.72807e-99 -1.14388e-100 -1.01688e-98 -4.10345e-100 -3.77687e-98 -1.44474e-99 -1.38523e-97 -4.97632e-99 -4.98915e-97 -1.67387e-98 -1.75902e-96 -5.49278e-98 -6.06013e-96 -1.75745e-97 -2.0382e-95 -5.48105e-97 -6.68875e-95 -1.66596e-96 -2.14126e-94 -4.93473e-96 -6.6862e-94 -1.42451e-95 -2.03646e-93 -4.00779e-95 -6.05058e-93 -1.09914e-94 -1.75392e-92 -2.93904e-94 -4.96155e-92 -7.66456e-94 -1.3701e-91 -1.95009e-93 -3.69474e-91 -4.84264e-93 -9.73431e-91 -1.17429e-92 -2.50693e-90 -2.78195e-92 -6.31463e-90 -6.44244e-92 -1.55668e-89 -1.45925e-91 -3.75832e-89 -3.23478e-91 -8.89318e-89 -7.02168e-91 -2.06406e-88 -1.4932e-90 -4.70243e-88 -3.11165e-90 -1.05237e-87 -6.35423e-90 -2.3148e-87 -1.27115e-89 -5.00638e-87 -2.48942e-89 -1.06478e-86 -4.76695e-89 -2.22669e-86 -8.90476e-89 -4.57602e-86 -1.61573e-88 -9.22753e-86 -2.82921e-88 -1.81969e-85 -4.73896e-88 -3.491e-85 -7.52241e-88 -6.4686e-85 -1.11922e-87 -1.14935e-84 -1.54023e-87 -1.94215e-84 -1.94408e-87 -3.09208e-84 -2.23221e-87 -4.62954e-84 -2.30667e-87 -6.5299e-84 -2.07934e-87 -8.7518e-84 -1.50267e-87 -1.12076e-83 -4.83876e-88 -1.40173e-83 8.40225e-88 -1.68476e-83 2.4659e-87 -1.9187e-83 4.49051e-87 -2.16788e-83 6.81593e-87 -2.38364e-83 9.51925e-87 -2.60808e-83 1.21339e-86 -2.73383e-83 1.42999e-86 -2.73636e-83 1.55287e-86 -2.58227e-83 1.56606e-86 -2.30406e-83 1.54114e-86 -2.03317e-83 1.47196e-86 -1.76013e-83 1.37965e-86 -1.50841e-83 1.22455e-86 -1.23379e-83 1.03563e-86 -9.67811e-84 8.51019e-87 -7.41879e-84 6.63178e-87 -5.41241e-84 4.88288e-87 -3.74619e-84 3.34683e-87 -2.42235e-84 2.11315e-87 -1.44696e-84 1.23519e-87 -8.02494e-85 6.77631e-88 -4.18907e-85 3.54316e-88 -2.0898e-85 1.78869e-88 -1.00904e-85 8.80871e-89 -4.76365e-86 4.26387e-89 -2.21526e-86 2.03739e-89 -1.01892e-86 9.63026e-90 -4.64397e-87 4.5044e-90 -2.09755e-87 2.08276e-90 -9.37766e-88 9.50583e-91 -4.14309e-88 4.27581e-91 -1.80592e-88 1.89266e-91 -7.75456e-89 8.23224e-92 -3.27531e-89 3.51358e-92 -1.35884e-89 1.46969e-92 -5.53029e-90 6.01841e-93 -2.20547e-90 2.41057e-93 -8.61011e-91 9.43617e-94 -3.28779e-91 3.60745e-94 -1.22704e-91 1.34604e-94 -4.47281e-92 4.89922e-95 -1.5915e-92 1.73858e-95 -5.52479e-93 6.01304e-96 -1.87033e-93 2.02626e-96 -6.17263e-94 6.65135e-97 -1.98551e-94 2.12666e-97 -6.22392e-95 6.62306e-98 -1.90122e-95 2.00929e-98 -5.66001e-96 5.93981e-99 -1.64258e-96 1.71193e-99 -4.64927e-97 4.81532e-100 -1.28477e-97 1.3243e-100 -3.47251e-98 3.57265e-101 -9.20982e-99 9.50864e-102 -2.41063e-99 2.52021e-102 -6.28581e-100 -1.66205e-100 6.77027e-103 -1.27532e-98 -9.93608e-97 -4.58672e-98 -3.5982e-96 -1.64385e-97 -1.32146e-95 -5.81824e-97 -4.83883e-95 -2.02252e-96 -1.75077e-94 -6.88317e-96 -6.22493e-94 -2.28927e-95 -2.16814e-93 -7.43332e-95 -7.38452e-93 -2.35505e-94 -2.4571e-92 -7.27794e-94 -7.98292e-92 -2.19344e-93 -2.53176e-91 -6.44632e-93 -7.83699e-91 -1.84737e-92 -2.3677e-90 -5.1626e-92 -6.98188e-90 -1.40704e-91 -2.00973e-89 -3.74066e-91 -5.64809e-89 -9.70291e-91 -1.55018e-88 -2.45644e-90 -4.15651e-88 -6.07192e-90 -1.08923e-87 -1.46605e-89 -2.79103e-87 -3.4593e-89 -6.99687e-87 -7.98122e-89 -1.71712e-86 -1.80151e-88 -4.128e-86 -3.98051e-88 -9.72812e-86 -8.61414e-88 -2.249e-85 -1.82665e-87 -5.10438e-85 -3.79663e-87 -1.13814e-84 -7.73491e-87 -2.49461e-84 -1.54424e-86 -5.37699e-84 -3.01931e-86 -1.13994e-83 -5.77489e-86 -2.37677e-83 -1.0781e-85 -4.87121e-83 -1.95619e-85 -9.79915e-83 -3.42799e-85 -1.9284e-82 -5.75148e-85 -3.6932e-82 -9.15516e-85 -6.83412e-82 -1.36759e-84 -1.2132e-81 -1.89221e-84 -2.04863e-81 -2.40687e-84 -3.25927e-81 -2.79455e-84 -4.87691e-81 -2.94179e-84 -6.87264e-81 -2.73903e-84 -9.20746e-81 -2.1405e-84 -1.17702e-80 -1.02863e-84 -1.47044e-80 5.15445e-85 -1.76568e-80 2.3458e-84 -2.0102e-80 4.63777e-84 -2.27152e-80 7.28518e-84 -2.49621e-80 1.03642e-83 -2.72878e-80 1.33744e-83 -2.86025e-80 1.59024e-83 -2.86406e-80 1.73841e-83 -2.70417e-80 1.76357e-83 -2.41591e-80 1.74404e-83 -2.13446e-80 1.67278e-83 -1.85005e-80 1.57354e-83 -1.58715e-80 1.40186e-83 -1.30034e-80 1.18996e-83 -1.02196e-80 9.81615e-84 -7.85232e-81 7.66982e-84 -5.73607e-81 5.66183e-84 -3.97565e-81 3.89032e-84 -2.57424e-81 2.46136e-84 -1.53936e-81 1.4417e-84 -8.54775e-82 7.92763e-85 -4.46902e-82 4.15632e-85 -2.23399e-82 2.10464e-85 -1.08133e-82 1.04002e-85 -5.11973e-83 5.05363e-86 -2.38889e-83 2.42495e-86 -1.10294e-83 1.15133e-86 -5.04736e-84 5.4099e-87 -2.28937e-84 2.51306e-87 -1.02792e-84 1.15231e-87 -4.56094e-85 5.20745e-88 -1.9967e-85 2.31603e-88 -8.61183e-86 1.01232e-88 -3.65412e-86 4.34266e-89 -1.52329e-86 1.82614e-89 -6.23084e-87 7.51966e-90 -2.49803e-87 3.02939e-90 -9.80672e-88 1.19309e-90 -3.76674e-88 4.59043e-91 -1.41452e-88 1.72441e-91 -5.19006e-89 6.32125e-92 -1.85957e-89 2.26024e-92 -6.50316e-90 7.88031e-93 -2.21892e-90 2.67832e-93 -7.38481e-91 8.87256e-94 -2.39684e-91 2.86469e-94 -7.58583e-92 9.01506e-95 -2.34118e-92 2.76561e-95 -7.04674e-93 8.27332e-96 -2.06912e-93 2.41481e-96 -5.93014e-94 6.88402e-97 -1.66058e-94 1.92024e-97 -4.55154e-95 5.25814e-98 -1.2251e-95 1.42147e-98 -3.25662e-96 3.82941e-99 -8.63007e-97 -2.3208e-97 1.04643e-99 -1.70614e-95 -1.20035e-93 -6.05268e-95 -4.2847e-93 -2.14088e-94 -1.55195e-92 -7.48262e-94 -5.60774e-92 -2.57011e-93 -2.00332e-91 -8.64803e-93 -7.03703e-91 -2.84561e-92 -2.42297e-90 -9.14722e-92 -8.1633e-90 -2.87083e-91 -2.68857e-89 -8.79393e-91 -8.65138e-89 -2.62858e-90 -2.71913e-88 -7.66598e-90 -8.34622e-88 -2.1812e-89 -2.50169e-87 -6.05495e-89 -7.32259e-87 -1.64e-88 -2.09323e-86 -4.33473e-88 -5.84466e-86 -1.11831e-87 -1.59437e-85 -2.81687e-87 -4.2505e-85 -6.93002e-87 -1.10785e-84 -1.66587e-86 -2.82429e-84 -3.91459e-86 -7.04615e-84 -8.99684e-86 -1.72131e-83 -2.02341e-85 -4.12007e-83 -4.45559e-85 -9.66899e-83 -9.61134e-85 -2.22635e-82 -2.03198e-84 -5.03333e-82 -4.2116e-84 -1.11806e-81 -8.55857e-84 -2.44164e-81 -1.70486e-83 -5.24438e-81 -3.32718e-83 -1.10813e-80 -6.35479e-83 -2.30332e-80 -1.18531e-82 -4.70737e-80 -2.15014e-82 -9.44584e-80 -3.76953e-82 -1.85484e-79 -6.33267e-82 -3.54596e-79 -1.01039e-81 -6.55245e-79 -1.51448e-81 -1.16209e-78 -2.10514e-81 -1.96089e-78 -2.69545e-81 -3.11738e-78 -3.15896e-81 -4.66172e-78 -3.37647e-81 -6.56343e-78 -3.22354e-81 -8.78951e-78 -2.66304e-81 -1.12153e-77 -1.56055e-81 -1.39949e-77 7.63169e-83 -1.67882e-77 1.95099e-81 -1.91081e-77 4.31105e-81 -2.15946e-77 7.05291e-81 -2.37162e-77 1.02426e-80 -2.58998e-77 1.33927e-80 -2.71433e-77 1.60735e-80 -2.71897e-77 1.7694e-80 -2.56869e-77 1.80607e-80 -2.29805e-77 1.79508e-80 -2.03289e-77 1.72911e-80 -1.76422e-77 1.63235e-80 -1.51503e-77 1.45973e-80 -1.24335e-77 1.24367e-80 -9.79043e-78 1.02993e-80 -7.54064e-78 8.06854e-81 -5.51547e-78 5.9714e-81 -3.82792e-78 4.11297e-81 -2.4819e-78 2.60752e-81 -1.48574e-78 1.53048e-81 -8.26015e-79 8.43563e-82 -4.32566e-79 4.43482e-82 -2.16688e-79 2.25269e-82 -1.05153e-79 1.11709e-82 -4.99355e-80 5.44953e-83 -2.33813e-80 2.62621e-83 -1.08372e-80 1.25259e-83 -4.98016e-81 5.91332e-84 -2.2687e-81 2.75992e-84 -1.02311e-81 1.27149e-84 -4.55962e-82 5.77337e-85 -2.00496e-82 2.58013e-85 -8.6864e-83 1.13335e-85 -3.70293e-83 4.88696e-86 -1.55114e-83 2.06609e-86 -6.37714e-84 8.55554e-87 -2.5704e-84 3.46698e-87 -1.01477e-84 1.37383e-87 -3.92084e-85 5.31995e-88 -1.48157e-85 2.01199e-88 -5.47181e-86 7.4281e-89 -1.97413e-86 2.67601e-89 -6.9545e-87 9.40424e-90 -2.39139e-87 3.22327e-90 -8.02465e-88 1.07736e-90 -2.62741e-88 3.5116e-91 -8.39337e-89 1.11627e-91 -2.61619e-89 3.46127e-92 -7.95786e-90 1.04724e-92 -2.36292e-90 3.09356e-93 -6.85281e-91 8.93136e-94 -1.94311e-91 2.52475e-94 -5.39659e-92 7.0108e-95 -1.4728e-92 1.92316e-95 -3.97212e-93 5.26035e-96 -1.06863e-93 -2.91941e-94 1.46048e-96 -2.0615e-92 -1.30687e-90 -7.22018e-92 -4.60259e-90 -2.52252e-91 -1.64561e-89 -8.71275e-91 -5.87242e-89 -2.959e-90 -2.0729e-88 -9.85015e-90 -7.19863e-88 -3.20831e-89 -2.45176e-87 -1.02143e-88 -8.17537e-87 -3.17679e-88 -2.66634e-86 -9.6484e-88 -8.50095e-86 -2.86096e-87 -2.64868e-85 -8.28112e-87 -8.06354e-85 -2.33966e-86 -2.39836e-84 -6.45197e-86 -6.96927e-84 -1.73672e-85 -1.97863e-83 -4.56374e-85 -5.4891e-83 -1.17098e-84 -1.48828e-82 -2.93448e-84 -3.94491e-82 -7.18475e-84 -1.02262e-81 -1.71934e-83 -2.59362e-81 -4.02318e-83 -6.43912e-81 -9.20972e-83 -1.56573e-80 -2.06354e-82 -3.7311e-80 -4.52788e-82 -8.71901e-80 -9.73452e-82 -1.99939e-79 -2.0515e-81 -4.5022e-79 -4.23945e-81 -9.96202e-79 -8.59172e-81 -2.16735e-78 -1.70732e-80 -4.63843e-78 -3.32512e-80 -9.76734e-78 -6.34056e-80 -2.02371e-77 -1.18134e-79 -4.12387e-77 -2.14182e-79 -8.25347e-77 -3.75558e-79 -1.61706e-76 -6.31534e-79 -3.08563e-76 -1.0096e-78 -5.69348e-76 -1.51772e-78 -1.00874e-75 -2.11802e-78 -1.70082e-75 -2.7273e-78 -2.7019e-75 -3.22145e-78 -4.03786e-75 -3.48705e-78 -5.67987e-75 -3.39537e-78 -7.60292e-75 -2.92272e-78 -9.6828e-75 -1.93053e-78 -1.20683e-74 -4.04545e-79 -1.44622e-74 1.38857e-78 -1.64576e-74 3.59577e-78 -1.86015e-74 6.17508e-78 -2.04157e-74 9.17574e-78 -2.22708e-74 1.21671e-77 -2.33333e-74 1.47456e-77 -2.33815e-74 1.63501e-77 -2.21037e-74 1.67953e-77 -1.98046e-74 1.67787e-77 -1.7542e-74 1.62321e-77 -1.52432e-74 1.53777e-77 -1.31022e-74 1.38037e-77 -1.07712e-74 1.18041e-77 -8.49778e-75 9.81388e-78 -6.56101e-75 7.70837e-78 -4.80511e-75 5.71922e-78 -3.33936e-75 3.94862e-78 -2.16795e-75 2.50833e-78 -1.29917e-75 1.4753e-78 -7.23185e-76 8.15084e-79 -3.79342e-76 4.29708e-79 -1.90438e-76 2.1897e-79 -9.26582e-77 1.08975e-79 -4.4138e-77 5.33757e-80 -2.07408e-77 2.58362e-80 -9.65198e-78 1.23802e-80 -4.45458e-78 5.87258e-81 -2.03831e-78 2.75414e-81 -9.2335e-79 1.27493e-81 -4.1335e-79 5.81686e-82 -1.82576e-79 2.61224e-82 -7.9461e-80 1.15321e-82 -3.40327e-80 4.99842e-83 -1.43261e-80 2.12467e-83 -5.92015e-81 8.848e-84 -2.39912e-81 3.60672e-84 -9.52536e-82 1.43805e-84 -3.70232e-82 5.60465e-85 -1.40776e-82 2.13403e-85 -5.23342e-83 7.93462e-86 -1.90119e-83 2.87984e-86 -6.74633e-84 1.02001e-86 -2.33765e-84 3.52506e-87 -7.90801e-85 1.18855e-87 -2.61146e-85 3.90988e-88 -8.41823e-86 1.25503e-88 -2.64917e-86 3.93171e-89 -8.14013e-87 1.20254e-89 -2.443e-87 3.59306e-90 -7.16537e-88 1.04986e-90 -2.05596e-88 3.00532e-91 -5.78151e-89 8.45566e-92 -1.59852e-89 2.35151e-92 -4.37016e-90 6.52429e-93 -1.19247e-90 -3.30606e-91 1.83843e-93 -2.24639e-89 -1.28131e-87 -7.77353e-89 -4.45616e-87 -2.68446e-88 -1.57394e-86 -9.16906e-88 -5.55096e-86 -3.08082e-87 -1.93738e-85 -1.01515e-86 -6.6554e-85 -3.27447e-86 -2.24338e-84 -1.03292e-85 -7.40702e-84 -3.18457e-85 -2.39318e-83 -9.59244e-85 -7.56239e-83 -2.82225e-84 -2.33645e-82 -8.10917e-84 -7.05636e-82 -2.27523e-83 -2.08298e-81 -6.23336e-83 -6.00964e-81 -1.66756e-82 -1.69466e-80 -4.35661e-82 -4.67125e-80 -1.11173e-81 -1.25886e-79 -2.77167e-81 -3.31762e-79 -6.75327e-81 -8.55323e-79 -1.60871e-80 -2.15808e-78 -3.74816e-80 -5.33147e-78 -8.54541e-80 -1.29032e-77 -1.90735e-79 -3.06103e-77 -4.16992e-79 -7.12232e-77 -8.93381e-79 -1.62643e-76 -1.87654e-78 -3.64749e-76 -3.86582e-78 -8.03879e-76 -7.81197e-78 -1.74219e-75 -1.54835e-77 -3.71466e-75 -3.00876e-77 -7.79447e-75 -5.72693e-77 -1.60962e-74 -1.06561e-76 -3.27017e-74 -1.93056e-76 -6.52727e-74 -3.38489e-76 -1.27588e-73 -5.69585e-76 -2.42992e-73 -9.12037e-76 -4.47676e-73 -1.37445e-75 -7.92338e-73 -1.92461e-75 -1.33487e-72 -2.49025e-75 -2.11894e-72 -2.96093e-75 -3.16462e-72 -3.23905e-75 -4.44742e-72 -3.20374e-75 -5.9504e-72 -2.84571e-75 -7.56347e-72 -2.03624e-75 -9.4155e-72 -7.5424e-76 -1.12714e-71 8.08788e-76 -1.28253e-71 2.68091e-75 -1.4498e-71 4.88169e-75 -1.59007e-71 7.44165e-75 -1.7325e-71 1.00156e-74 -1.81439e-71 1.22618e-74 -1.81873e-71 1.36984e-74 -1.72061e-71 1.41639e-74 -1.54414e-71 1.42232e-74 -1.36953e-71 1.38201e-74 -1.19162e-71 1.31375e-74 -1.02511e-71 1.18377e-74 -8.44195e-72 1.01601e-74 -6.67294e-72 8.48037e-75 -5.16481e-72 6.67816e-75 -3.78745e-72 4.96712e-75 -2.63563e-72 3.43726e-75 -1.71323e-72 2.18776e-75 -1.02775e-72 1.28938e-75 -5.72809e-73 7.14063e-76 -3.00969e-73 3.77515e-76 -1.51429e-73 1.92997e-76 -7.38786e-74 9.63992e-77 -3.53044e-74 4.741e-77 -1.66511e-74 2.30517e-77 -7.78076e-75 1.10984e-77 -3.60683e-75 5.29019e-78 -1.65793e-75 2.49315e-78 -7.54496e-76 1.15973e-78 -3.39306e-76 5.31692e-79 -1.50554e-76 2.39941e-79 -6.58262e-77 1.06457e-79 -2.83265e-77 4.63825e-80 -1.19829e-77 1.98228e-80 -4.97747e-78 8.30188e-81 -2.02808e-78 3.40418e-81 -8.09818e-79 1.3657e-81 -3.16646e-79 5.35707e-82 -1.21156e-79 2.05353e-82 -4.53364e-80 7.68927e-83 -1.65832e-80 2.81143e-83 -5.92707e-81 1.00351e-83 -2.06936e-81 3.49625e-84 -7.05633e-82 1.18892e-84 -2.34979e-82 3.94627e-85 -7.64172e-83 1.27869e-85 -2.42721e-83 4.04563e-86 -7.53118e-84 1.25029e-86 -2.28354e-84 3.77665e-87 -6.77011e-85 1.11615e-87 -1.96458e-85 3.23336e-88 -5.59008e-86 9.21085e-89 -1.56473e-86 2.59478e-89 -4.33292e-87 7.29629e-90 -1.19814e-87 -3.36787e-88 2.08465e-90 -2.20476e-86 -1.13031e-84 -7.5433e-86 -3.88503e-84 -2.57646e-85 -1.35652e-83 -8.70737e-85 -4.73117e-83 -2.89606e-84 -1.6336e-82 -9.45008e-84 -5.55417e-82 -3.01999e-83 -1.85373e-81 -9.44236e-83 -6.06283e-81 -2.88669e-82 -1.94125e-80 -8.62578e-82 -6.08167e-80 -2.51863e-81 -1.86362e-79 -7.18481e-81 -5.5846e-79 -2.00216e-80 -1.63634e-78 -5.44993e-80 -4.68784e-78 -1.44909e-79 -1.31309e-77 -3.76399e-79 -3.59647e-77 -9.55262e-79 -9.63355e-77 -2.3693e-78 -2.52425e-76 -5.74478e-78 -6.47224e-76 -1.36219e-77 -1.62453e-75 -3.16002e-77 -3.99345e-75 -7.17494e-77 -9.61922e-75 -1.59522e-76 -2.27163e-74 -3.47454e-76 -5.26249e-74 -7.41745e-76 -1.19663e-73 -1.55271e-75 -2.67248e-73 -3.18836e-75 -5.86605e-73 -6.42353e-75 -1.26628e-72 -1.26966e-74 -2.68963e-72 -2.4613e-74 -5.62311e-72 -4.67559e-74 -1.15727e-71 -8.68682e-74 -2.34384e-71 -1.5723e-73 -4.66531e-71 -2.75593e-73 -9.09733e-71 -4.63944e-73 -1.72916e-70 -7.43854e-73 -3.18069e-70 -1.12336e-72 -5.62331e-70 -1.57761e-72 -9.46567e-70 -2.04978e-72 -1.50139e-69 -2.45093e-72 -2.24084e-69 -2.70517e-72 -3.14624e-69 -2.70979e-72 -4.20737e-69 -2.46711e-72 -5.33732e-69 -1.86936e-72 -6.63622e-69 -8.94138e-73 -7.93578e-69 3.38716e-73 -9.02989e-69 1.77675e-72 -1.02091e-68 3.47752e-72 -1.11886e-68 5.45543e-72 -1.21756e-68 7.45961e-72 -1.27438e-68 9.22962e-72 -1.27782e-68 1.03914e-71 -1.20987e-68 1.08173e-71 -1.08768e-68 1.09194e-71 -9.65964e-69 1.06566e-71 -8.41603e-69 1.01639e-71 -7.24531e-69 9.19297e-72 -5.97713e-69 7.91887e-72 -4.73363e-69 6.63565e-72 -3.67293e-69 5.23878e-72 -2.69694e-69 3.90597e-72 -1.87926e-69 2.70895e-72 -1.22308e-69 1.72748e-72 -7.34461e-70 1.02015e-72 -4.09857e-70 5.66299e-73 -2.15718e-70 3.00246e-73 -1.08783e-70 1.54e-73 -5.3221e-71 7.72057e-74 -2.55161e-71 3.81287e-74 -1.20802e-71 1.86237e-74 -5.66883e-72 9.00976e-75 -2.63974e-72 4.31586e-75 -1.21907e-72 2.04405e-75 -5.57385e-73 9.55493e-76 -2.51831e-73 4.40189e-76 -1.12256e-73 1.99621e-76 -4.93094e-74 8.90111e-77 -2.13199e-74 3.89829e-77 -9.06357e-75 1.67507e-77 -3.7844e-75 7.05499e-78 -1.55037e-75 2.91001e-78 -6.22618e-76 1.17465e-78 -2.44911e-76 4.63735e-79 -9.42974e-77 1.78958e-79 -3.55177e-77 6.74781e-80 -1.30808e-77 2.48523e-80 -4.70882e-78 8.93848e-81 -1.65637e-78 3.13906e-81 -5.69246e-79 1.07637e-81 -1.91123e-79 3.60393e-82 -6.26913e-80 1.17845e-82 -2.00925e-80 3.76421e-83 -6.2934e-81 1.17498e-83 -1.92716e-81 3.58632e-84 -5.77279e-82 1.07148e-84 -1.69332e-82 3.1393e-85 -4.87264e-83 9.04875e-86 -1.37994e-83 2.58038e-86 -3.86782e-84 7.34779e-87 -1.08303e-84 -3.08375e-85 2.12674e-87 -1.94706e-83 -8.96367e-82 -6.5906e-83 -3.04734e-81 -2.22768e-82 -1.05255e-80 -7.453e-82 -3.63235e-80 -2.45487e-81 -1.24141e-79 -7.93601e-81 -4.17924e-79 -2.51355e-80 -1.38165e-78 -7.792e-80 -4.4778e-78 -2.36277e-79 -1.42126e-77 -7.0055e-79 -4.41553e-77 -2.03041e-78 -1.34228e-76 -5.75135e-78 -3.99171e-76 -1.59198e-77 -1.1611e-75 -4.30585e-77 -3.30328e-75 -1.13797e-76 -9.19137e-75 -2.93891e-76 -2.50153e-74 -7.41808e-76 -6.66019e-74 -1.8304e-75 -1.7351e-73 -4.41647e-75 -4.42444e-73 -1.04239e-74 -1.10472e-72 -2.40759e-74 -2.70209e-72 -5.44386e-74 -6.47761e-72 -1.20556e-73 -1.52272e-71 -2.61589e-73 -3.51193e-71 -5.56405e-73 -7.95128e-71 -1.16065e-72 -1.76829e-70 -2.3753e-72 -3.86527e-70 -4.77042e-72 -8.30993e-70 -9.40188e-72 -1.75813e-69 -1.81794e-71 -3.66188e-69 -3.44602e-71 -7.50994e-69 -6.39167e-71 -1.51612e-68 -1.15558e-70 -3.00909e-68 -2.02452e-70 -5.85318e-68 -3.40883e-70 -1.11026e-67 -5.47119e-70 -2.03892e-67 -8.27724e-70 -3.60057e-67 -1.16538e-69 -6.05536e-67 -1.51965e-69 -9.59712e-67 -1.82581e-69 -1.43139e-66 -2.0306e-69 -2.00782e-66 -2.05526e-69 -2.68351e-66 -1.9087e-69 -3.39734e-66 -1.50969e-69 -4.21903e-66 -8.38896e-70 -5.03979e-66 3.98953e-71 -5.73533e-66 1.03892e-69 -6.4854e-66 2.22782e-69 -7.10222e-66 3.61002e-69 -7.71872e-66 5.0203e-69 -8.07324e-66 6.2801e-69 -8.0973e-66 7.12752e-69 -7.67355e-66 7.47132e-69 -6.91152e-66 7.5815e-69 -6.14618e-66 7.43155e-69 -5.36208e-66 7.11062e-69 -4.61901e-66 6.45563e-69 -3.81727e-66 5.58087e-69 -3.0288e-66 4.69485e-69 -2.356e-66 3.7159e-69 -1.73226e-66 2.77716e-69 -1.2087e-66 1.93023e-69 -7.87602e-67 1.23316e-69 -4.7344e-67 7.29667e-70 -2.64527e-67 4.06003e-70 -1.39468e-67 2.15874e-70 -7.04948e-68 1.11093e-70 -3.45883e-68 5.5904e-71 -1.6639e-68 2.77256e-71 -7.90829e-69 1.36053e-71 -3.72729e-69 6.61421e-72 -1.74373e-69 3.18423e-72 -8.09138e-70 1.51566e-72 -3.71736e-70 7.12005e-73 -1.68751e-70 3.29619e-73 -7.55749e-71 1.5021e-73 -3.33524e-71 6.7313e-74 -1.44896e-71 2.96323e-74 -6.19043e-72 1.28014e-74 -2.5982e-72 5.422e-75 -1.07024e-72 2.24961e-75 -4.32272e-73 9.13653e-76 -1.71061e-73 3.63004e-76 -6.62775e-74 1.41018e-76 -2.51276e-74 5.35408e-77 -9.31759e-75 1.98614e-77 -3.37804e-75 7.19707e-78 -1.19709e-75 2.54728e-78 -4.14595e-76 8.80582e-79 -1.40325e-76 2.9735e-79 -4.64174e-77 9.80942e-80 -1.50078e-77 3.16234e-80 -4.74397e-78 9.96635e-81 -1.46661e-78 3.07254e-81 -4.43709e-79 9.27576e-82 -1.31504e-79 2.74718e-82 -3.82496e-80 8.00765e-83 -1.09536e-80 2.31006e-83 -3.10571e-81 6.65662e-84 -8.79971e-82 -2.53579e-82 1.95003e-84 -1.54588e-80 -6.38418e-79 -5.1801e-80 -2.14852e-78 -1.73365e-79 -7.34557e-78 -5.74453e-79 -2.5096e-77 -1.8746e-78 -8.49338e-77 -6.00607e-78 -2.83235e-76 -1.88598e-77 -9.27846e-76 -5.7984e-77 -2.98069e-75 -1.74439e-76 -9.3809e-75 -5.13298e-76 -2.89079e-74 -1.47696e-75 -8.71925e-74 -4.15477e-75 -2.57357e-73 -1.14248e-74 -7.43229e-73 -3.07065e-74 -2.09991e-72 -8.06668e-74 -5.80452e-72 -2.07142e-73 -1.5698e-71 -5.20011e-73 -4.15428e-71 -1.27651e-72 -1.07602e-70 -3.06499e-72 -2.72867e-70 -7.20064e-72 -6.77722e-70 -1.65581e-71 -1.64933e-69 -3.72836e-71 -3.9348e-69 -8.2236e-71 -9.20678e-69 -1.77753e-70 -2.11387e-68 -3.76676e-70 -4.76495e-68 -7.82902e-70 -1.05511e-67 -1.59669e-69 -2.29652e-67 -3.1962e-69 -4.91668e-67 -6.28026e-69 -1.03601e-66 -1.21107e-68 -2.14947e-66 -2.29039e-68 -4.39223e-66 -4.24042e-68 -8.83758e-66 -7.65665e-68 -1.7488e-65 -1.34053e-67 -3.393e-65 -2.25716e-67 -6.42241e-65 -3.62572e-67 -1.17743e-64 -5.49348e-67 -2.07672e-64 -7.75144e-67 -3.48923e-64 -1.01396e-66 -5.52557e-64 -1.22328e-66 -8.23526e-64 -1.3694e-66 -1.15402e-63 -1.39792e-66 -1.54142e-63 -1.31949e-66 -1.94747e-63 -1.07899e-66 -2.4156e-63 -6.62349e-67 -2.8824e-63 -1.09571e-67 -3.281e-63 5.29992e-67 -3.71085e-63 1.28084e-66 -4.06066e-63 2.15347e-66 -4.4074e-63 3.04925e-66 -4.6059e-63 3.85825e-66 -4.62086e-63 4.41524e-66 -4.38328e-63 4.66128e-66 -3.95591e-63 4.75485e-66 -3.52236e-63 4.68125e-66 -3.07708e-63 4.49272e-66 -2.65194e-63 4.09418e-66 -2.19553e-63 3.55191e-66 -1.74527e-63 2.99966e-66 -1.361e-63 2.38018e-66 -1.00207e-63 1.78311e-66 -7.00181e-64 1.24192e-66 -4.56789e-64 7.94854e-67 -2.74864e-64 4.71231e-67 -1.53769e-64 2.62817e-67 -8.12148e-65 1.40143e-67 -4.11483e-65 7.23629e-68 -2.02494e-65 3.65536e-68 -9.7752e-66 1.82069e-68 -4.6648e-66 8.97653e-69 -2.2085e-66 4.38569e-69 -1.03815e-66 2.12213e-69 -4.84106e-67 1.01524e-69 -2.23507e-67 4.79308e-70 -1.01955e-67 2.22982e-70 -4.58779e-68 1.02112e-70 -2.03426e-68 4.59861e-71 -8.88019e-69 2.03477e-71 -3.81283e-69 8.83738e-72 -1.60866e-69 3.76402e-72 -6.66274e-70 1.57085e-72 -2.70661e-70 6.41879e-73 -1.07755e-70 2.56647e-73 -4.20128e-71 1.00359e-73 -1.60328e-71 3.83652e-74 -5.98577e-72 1.43332e-74 -2.18552e-72 5.23227e-75 -7.80204e-73 1.86611e-75 -2.72284e-73 6.50254e-76 -9.28923e-74 2.21397e-76 -3.09818e-74 7.36679e-77 -1.01033e-74 2.39619e-77 -3.22221e-75 7.62211e-78 -1.00541e-75 2.37255e-78 -3.07106e-76 7.23437e-79 -9.19277e-77 2.16484e-79 -2.70149e-77 6.37793e-80 -7.81899e-78 1.86023e-80 -2.2413e-78 5.42065e-81 -6.42141e-79 -1.871e-79 1.60565e-81 -1.10268e-77 -4.07975e-76 -3.66029e-77 -1.36036e-75 -1.21357e-76 -4.60679e-75 -3.9845e-76 -1.55898e-74 -1.28874e-75 -5.2271e-74 -4.09365e-75 -1.72735e-73 -1.27484e-74 -5.60895e-73 -3.8883e-74 -1.78657e-72 -1.16081e-73 -5.57662e-72 -3.39067e-73 -1.70486e-71 -9.68747e-73 -5.10297e-71 -2.70672e-72 -1.4951e-70 -7.39467e-72 -4.28712e-70 -1.97515e-71 -1.20301e-69 -5.15798e-71 -3.30349e-69 -1.317e-70 -8.87771e-69 -3.28835e-70 -2.33515e-68 -8.03068e-70 -6.01324e-68 -1.91879e-69 -1.51641e-67 -4.48692e-69 -3.74624e-67 -1.02723e-68 -9.07051e-67 -2.30323e-68 -2.15336e-66 -5.05963e-68 -5.01472e-66 -1.08935e-67 -1.1461e-65 -2.29964e-67 -2.57185e-65 -4.76195e-67 -5.66961e-65 -9.67696e-67 -1.22862e-64 -1.93051e-66 -2.61905e-64 -3.78128e-66 -5.49551e-64 -7.27104e-66 -1.1356e-63 -1.37174e-65 -2.31174e-63 -2.53459e-65 -4.63532e-63 -4.57004e-65 -9.144e-63 -7.99485e-65 -1.7694e-62 -1.34593e-64 -3.34184e-62 -2.1633e-64 -6.11569e-62 -3.28176e-64 -1.07728e-61 -4.63949e-64 -1.8081e-61 -6.08548e-64 -2.86088e-61 -7.36791e-64 -4.26046e-61 -8.29454e-64 -5.96403e-61 -8.52791e-64 -7.96036e-61 -8.15948e-64 -1.00367e-60 -6.85265e-64 -1.24346e-60 -4.51942e-64 -1.48213e-60 -1.40145e-64 -1.68772e-60 2.30945e-64 -1.9093e-60 6.58844e-64 -2.08771e-60 1.15602e-63 -2.26312e-60 1.66911e-63 -2.36269e-60 2.13742e-63 -2.37097e-60 2.46708e-63 -2.25139e-60 2.62378e-63 -2.03621e-60 2.69052e-63 -1.81525e-60 2.66049e-63 -1.58783e-60 2.56073e-63 -1.3689e-60 2.34231e-63 -1.13534e-60 2.03915e-63 -9.04165e-61 1.72877e-63 -7.06861e-61 1.37523e-63 -5.212e-61 1.03272e-63 -3.64723e-61 7.2076e-64 -2.38226e-61 4.62118e-64 -1.43498e-61 2.74493e-64 -8.0381e-62 1.53449e-64 -4.253e-62 8.20617e-65 -2.16011e-62 4.25179e-65 -1.06627e-62 2.15615e-65 -5.16603e-63 1.07868e-65 -2.47563e-63 5.34393e-66 -1.17753e-63 2.62419e-66 -5.56274e-64 1.27637e-66 -2.60722e-64 6.1378e-67 -1.20986e-64 2.91239e-67 -5.54644e-65 1.36159e-67 -2.50798e-65 6.26577e-68 -1.11742e-65 2.83577e-68 -4.90168e-66 1.26116e-68 -2.1152e-66 5.50661e-69 -8.97112e-67 2.35844e-69 -3.73621e-67 9.89988e-70 -1.52659e-67 4.06986e-70 -6.11457e-68 1.63757e-70 -2.39916e-68 6.44555e-71 -9.21606e-69 2.48075e-71 -3.46432e-69 9.3333e-72 -1.27386e-69 3.4319e-72 -4.58094e-70 1.23323e-72 -1.61086e-70 4.33085e-73 -5.53885e-71 1.48649e-73 -1.86238e-71 4.98762e-74 -6.12446e-72 1.6364e-74 -1.97027e-72 5.25207e-75 -6.20308e-73 1.65003e-75 -1.9124e-73 5.07967e-76 -5.7795e-74 1.53515e-76 -1.71526e-74 4.56898e-77 -5.01507e-75 1.34653e-77 -1.45249e-75 3.9649e-78 -4.20474e-76 -1.23751e-76 1.18634e-78 -7.06244e-75 -2.33684e-73 -2.32409e-74 -7.72811e-73 -7.63811e-74 -2.59416e-72 -2.48615e-73 -8.70067e-72 -7.97335e-73 -2.89147e-71 -2.51199e-72 -9.47239e-71 -7.76083e-72 -3.04985e-70 -2.34895e-71 -9.63462e-70 -6.96064e-71 -2.98337e-69 -2.01865e-70 -9.05005e-69 -5.72778e-70 -2.68851e-68 -1.58975e-69 -7.81968e-68 -4.31544e-69 -2.22646e-67 -1.1456e-68 -6.20513e-67 -2.97406e-68 -1.69273e-66 -7.55089e-68 -4.52011e-66 -1.87517e-67 -1.18168e-65 -4.55588e-67 -3.02504e-65 -1.08321e-66 -7.58539e-65 -2.52114e-66 -1.8638e-64 -5.74609e-66 -4.48923e-64 -1.28288e-65 -1.06042e-63 -2.80656e-65 -2.45756e-63 -6.01842e-65 -5.59018e-63 -1.26552e-64 -1.24863e-62 -2.61052e-64 -2.73995e-62 -5.28523e-64 -5.91054e-62 -1.05063e-63 -1.25429e-61 -2.05103e-63 -2.62032e-61 -3.9321e-63 -5.3919e-61 -7.39886e-63 -1.09329e-60 -1.36417e-62 -2.18421e-60 -2.45583e-62 -4.2947e-60 -4.29218e-62 -8.2873e-60 -7.22341e-62 -1.56162e-59 -1.16149e-61 -2.85243e-59 -1.76378e-61 -5.01748e-59 -2.49765e-61 -8.41163e-59 -3.28392e-61 -1.32971e-58 -3.98829e-61 -1.97848e-58 -4.51201e-61 -2.76646e-58 -4.66727e-61 -3.68935e-58 -4.51782e-61 -4.64205e-58 -3.87879e-61 -5.74433e-58 -2.70241e-61 -6.8394e-58 -1.11796e-61 -7.79204e-58 8.21738e-62 -8.81771e-58 3.02e-61 -9.63474e-58 5.57407e-61 -1.0432e-57 8.2221e-61 -1.08787e-57 1.0664e-60 -1.09196e-57 1.24199e-60 -1.03801e-57 1.33101e-60 -9.40916e-58 1.37205e-60 -8.39734e-58 1.36269e-60 -7.35438e-58 1.31522e-60 -6.34143e-58 1.20756e-60 -5.26902e-58 1.05489e-60 -4.20384e-58 8.97781e-61 -3.29478e-58 7.16035e-61 -2.4332e-58 5.39024e-61 -1.70542e-58 3.76964e-61 -1.11531e-58 2.4212e-61 -6.72558e-59 1.44092e-61 -3.77235e-59 8.07409e-62 -1.99965e-59 4.33056e-62 -1.0182e-59 2.25163e-62 -5.04214e-60 1.14643e-62 -2.45218e-60 5.7614e-63 -1.18028e-60 2.86847e-63 -5.64143e-61 1.41595e-63 -2.67884e-61 6.92369e-64 -1.26223e-61 3.34708e-64 -5.88828e-62 1.59639e-64 -2.71338e-62 7.50088e-65 -1.23311e-62 3.4688e-65 -5.52129e-63 1.57772e-65 -2.43402e-63 7.05242e-66 -1.05572e-63 3.09565e-66 -4.50148e-64 1.33321e-66 -1.88525e-64 5.62888e-67 -7.74834e-65 2.32808e-67 -3.12264e-65 9.42637e-68 -1.23309e-65 3.73448e-68 -4.76833e-66 1.44702e-68 -1.80478e-66 5.48202e-69 -6.68362e-67 2.03025e-69 -2.42115e-67 7.34962e-70 -8.57826e-68 2.60074e-70 -2.97257e-68 8.99691e-71 -1.00751e-68 3.04325e-71 -3.34058e-69 1.00683e-71 -1.08381e-69 3.25935e-72 -3.44201e-70 1.03309e-72 -1.07069e-70 3.20955e-73 -3.26559e-71 9.79106e-74 -9.78329e-72 2.94212e-74 -2.88799e-72 8.75529e-75 -8.44567e-73 2.60283e-75 -2.46827e-73 -7.32992e-74 7.85824e-76 -4.06073e-72 -1.19854e-70 -1.32593e-71 -3.93573e-70 -4.32255e-71 -1.31069e-69 -1.39561e-70 -4.35962e-69 -4.44033e-70 -1.43676e-68 -1.38807e-69 -4.66801e-68 -4.25604e-69 -1.49079e-67 -1.2787e-68 -4.67213e-67 -3.76215e-68 -1.4355e-66 -1.0835e-67 -4.32159e-66 -3.05372e-67 -1.27432e-65 -8.4205e-67 -3.67969e-65 -2.27138e-66 -1.04034e-64 -5.99308e-66 -2.8796e-64 -1.54671e-65 -7.80326e-64 -3.90481e-65 -2.07031e-63 -9.64458e-65 -5.37864e-63 -2.33107e-64 -1.36864e-62 -5.51486e-64 -3.41206e-62 -1.27749e-63 -8.33709e-62 -2.89841e-63 -1.99736e-61 -6.4428e-63 -4.69368e-61 -1.40355e-62 -1.08232e-60 -2.99736e-62 -2.44989e-60 -6.27713e-62 -5.44563e-60 -1.28968e-61 -1.18923e-59 -2.60091e-61 -2.55312e-59 -5.15091e-61 -5.39244e-59 -1.00202e-60 -1.12132e-58 -1.91488e-60 -2.29711e-58 -3.59305e-60 -4.63826e-58 -6.60932e-60 -9.23077e-58 -1.18778e-59 -1.80874e-57 -2.07366e-59 -3.48e-57 -3.48806e-59 -6.54164e-57 -5.60991e-59 -1.19247e-56 -8.52571e-59 -2.09432e-56 -1.20907e-58 -3.5065e-56 -1.59305e-58 -5.53744e-56 -1.94003e-58 -8.23096e-56 -2.20438e-58 -1.14947e-55 -2.29243e-58 -1.5314e-55 -2.24185e-58 -1.92286e-55 -1.96131e-58 -2.37665e-55 -1.42824e-58 -2.82655e-55 -7.0393e-59 -3.22226e-55 2.08611e-59 -3.64775e-55 1.22543e-58 -3.98321e-55 2.40713e-58 -4.30849e-55 3.63733e-58 -4.48733e-55 4.78323e-58 -4.5054e-55 5.62425e-58 -4.28757e-55 6.07599e-58 -3.89568e-55 6.29658e-58 -3.47997e-55 6.28134e-58 -3.05125e-55 6.0787e-58 -2.63099e-55 5.60246e-58 -2.19012e-55 4.9112e-58 -1.75059e-55 4.19604e-58 -1.37551e-55 3.35572e-58 -1.01756e-55 2.53271e-58 -7.14465e-56 1.77495e-58 -4.67861e-56 1.14212e-58 -2.82462e-56 6.81047e-59 -1.58653e-56 3.82537e-59 -8.42601e-57 2.05797e-59 -4.30178e-57 1.07391e-59 -2.13742e-57 5.49076e-60 -1.04369e-57 2.77246e-60 -5.04678e-58 1.38749e-60 -2.42464e-58 6.88625e-61 -1.15762e-58 3.38585e-61 -5.48496e-59 1.64578e-61 -2.57296e-59 7.89147e-62 -1.19209e-59 3.72708e-62 -5.44602e-60 1.73231e-62 -2.45103e-60 7.91886e-63 -1.08608e-60 3.55802e-63 -4.73549e-61 1.57016e-63 -2.03023e-61 6.80009e-64 -8.5516e-62 2.88783e-64 -3.53588e-62 1.20167e-64 -1.43397e-62 4.89632e-65 -5.69971e-63 1.95247e-65 -2.21904e-63 7.61625e-66 -8.45777e-64 2.90538e-66 -3.15473e-64 1.08364e-66 -1.15126e-64 3.95142e-67 -4.10988e-65 1.40869e-67 -1.43522e-65 4.91046e-68 -4.90308e-66 1.67401e-68 -1.63888e-66 5.58278e-69 -5.36119e-67 1.82214e-69 -1.71703e-67 5.82415e-70 -5.38719e-68 1.82499e-70 -1.65753e-68 5.61622e-71 -5.01009e-69 1.70264e-71 -1.49229e-69 5.11179e-72 -4.40312e-70 1.53269e-72 -1.29788e-70 -3.88427e-71 4.66329e-73 -2.09683e-69 -5.49862e-68 -6.80079e-69 -1.79545e-67 -2.20106e-68 -5.93786e-67 -7.05403e-68 -1.96021e-66 -2.22779e-67 -6.41012e-66 -6.91349e-67 -2.06644e-65 -2.10464e-66 -6.54849e-65 -6.27892e-66 -2.0366e-64 -1.83467e-65 -6.21021e-64 -5.24838e-65 -1.85568e-63 -1.46947e-64 -5.43185e-63 -4.026e-64 -1.5572e-62 -1.0792e-63 -4.37148e-62 -2.83015e-63 -1.20163e-61 -7.26102e-63 -3.2342e-61 -1.82263e-62 -8.52418e-61 -4.47693e-62 -2.20038e-60 -1.07632e-61 -5.56429e-60 -2.5334e-61 -1.37887e-59 -5.83982e-61 -3.34964e-59 -1.31874e-60 -7.98002e-59 -2.91812e-60 -1.86512e-58 -6.32899e-60 -4.27816e-58 -1.34574e-59 -9.63377e-58 -2.80622e-59 -2.13045e-57 -5.74123e-59 -4.62885e-57 -1.15304e-58 -9.88706e-57 -2.27439e-58 -2.07773e-56 -4.40775e-58 -4.29921e-56 -8.39422e-58 -8.7654e-56 -1.57029e-57 -1.76196e-55 -2.88113e-57 -3.49206e-55 -5.16781e-57 -6.81725e-55 -9.01071e-57 -1.30752e-54 -1.51464e-56 -2.45147e-54 -2.43608e-56 -4.45896e-54 -3.70439e-56 -7.81762e-54 -5.26006e-56 -1.30694e-53 -6.94339e-56 -2.06155e-53 -8.47618e-56 -3.06079e-53 -9.66859e-56 -4.26846e-53 -1.01032e-55 -5.67985e-53 -9.97188e-56 -7.11694e-53 -8.86921e-56 -8.78598e-53 -6.70279e-56 -1.04369e-52 -3.72981e-56 -1.19066e-52 1.29231e-57 -1.34848e-52 4.35737e-56 -1.47174e-52 9.2749e-56 -1.59073e-52 1.44133e-55 -1.6545e-52 1.92473e-55 -1.66164e-52 2.28663e-55 -1.58308e-52 2.49152e-55 -1.4419e-52 2.59593e-55 -1.28891e-52 2.60135e-55 -1.13127e-52 2.52406e-55 -9.75292e-53 2.33555e-55 -8.13427e-53 2.0547e-55 -6.51412e-53 1.76249e-55 -5.13152e-53 1.41366e-55 -3.80334e-53 1.06996e-55 -2.67577e-53 7.51498e-56 -1.7547e-53 4.84514e-56 -1.06073e-53 2.89518e-56 -5.96688e-54 1.6303e-56 -3.17542e-54 8.79855e-57 -1.62569e-54 4.60901e-57 -8.10646e-55 2.36698e-57 -3.9753e-55 1.20116e-57 -1.9318e-55 6.04418e-58 -9.33189e-56 3.01702e-58 -4.48124e-56 1.49207e-58 -2.13586e-56 7.29458e-59 -1.00785e-56 3.51739e-59 -4.69643e-57 1.67025e-59 -2.15753e-57 7.80411e-60 -9.76297e-58 3.58619e-60 -4.34949e-58 1.61991e-60 -1.9069e-58 7.1881e-61 -8.22207e-59 3.13095e-61 -3.48394e-59 1.33761e-61 -1.44954e-59 5.60073e-62 -5.91702e-60 2.2968e-62 -2.36786e-60 9.21966e-63 -9.28335e-61 3.62094e-63 -3.56383e-61 1.39091e-63 -1.33911e-61 5.22465e-64 -4.92365e-62 1.91891e-64 -1.77117e-62 6.89129e-65 -6.23333e-63 2.42013e-65 -2.14629e-63 8.31297e-66 -7.23151e-64 2.79368e-66 -2.38477e-64 9.18929e-67 -7.70024e-65 2.96042e-67 -2.43593e-65 9.35064e-68 -7.55734e-66 2.90077e-68 -2.30341e-66 8.86488e-69 -6.91782e-67 2.68236e-69 -2.05761e-67 8.10136e-70 -6.11032e-68 -1.84004e-68 2.48002e-70 -9.73695e-67 -2.25409e-65 -3.14091e-66 -7.33145e-65 -1.01021e-65 -2.41071e-64 -3.21618e-65 -7.90554e-64 -1.00889e-64 -2.56697e-63 -3.10975e-64 -8.21528e-63 -9.40313e-64 -2.58435e-62 -2.78655e-63 -7.97844e-62 -8.08816e-63 -2.41503e-61 -2.29853e-62 -7.16358e-61 -6.39369e-62 -2.08161e-60 -1.74047e-61 -5.92432e-60 -4.63594e-61 -1.65119e-59 -1.2082e-60 -4.50659e-59 -3.08092e-60 -1.20449e-58 -7.68777e-60 -3.15285e-58 -1.87749e-59 -8.08411e-58 -4.48864e-59 -2.03097e-57 -1.05084e-58 -5.00103e-57 -2.40979e-58 -1.20744e-56 -5.41455e-58 -2.85947e-56 -1.19232e-57 -6.64473e-56 -2.57369e-57 -1.51558e-55 -5.44686e-57 -3.39395e-55 -1.13054e-56 -7.46428e-55 -2.30232e-56 -1.61288e-54 -4.60294e-56 -3.42622e-54 -9.03956e-56 -7.161e-54 -1.74459e-55 -1.47385e-53 -3.30974e-55 -2.9895e-53 -6.17043e-55 -5.98017e-53 -1.12888e-54 -1.17991e-52 -2.02038e-54 -2.29421e-52 -3.51739e-54 -4.3853e-52 -5.90689e-54 -8.19884e-52 -9.49775e-54 -1.48769e-51 -1.44464e-53 -2.60312e-51 -2.05335e-53 -4.34437e-51 -2.71455e-53 -6.84373e-51 -3.32045e-53 -1.01472e-50 -3.8002e-53 -1.41283e-50 -3.98791e-53 -1.87727e-50 -3.96859e-53 -2.34736e-50 -3.58096e-53 -2.89421e-50 -2.79262e-53 -3.43368e-50 -1.69882e-53 -3.92032e-50 -2.5591e-54 -4.44227e-50 1.34326e-53 -4.84671e-50 3.18086e-53 -5.23648e-50 5.10755e-53 -5.43846e-50 6.93789e-53 -5.4638e-50 8.33435e-53 -5.21113e-50 9.16377e-53 -4.75824e-50 9.59946e-53 -4.25488e-50 9.66336e-53 -3.73761e-50 9.4005e-53 -3.22121e-50 8.7344e-53 -2.69204e-50 7.71255e-53 -2.16014e-50 6.64265e-53 -1.70607e-50 5.34493e-53 -1.26719e-50 4.05792e-53 -8.93501e-51 2.85692e-53 -5.8685e-51 1.84589e-53 -3.5527e-51 1.10548e-53 -2.00174e-51 6.24184e-54 -1.06759e-51 3.38009e-54 -5.48188e-52 1.77792e-54 -2.74399e-52 9.17427e-55 -1.35183e-52 4.68081e-55 -6.60435e-53 2.36925e-55 -3.20916e-53 1.18993e-55 -1.55066e-53 5.92177e-56 -7.4379e-54 2.91311e-56 -3.53204e-54 1.41318e-56 -1.65611e-54 6.74971e-57 -7.65391e-55 3.17162e-57 -3.4837e-55 1.46561e-57 -1.56101e-55 6.65784e-58 -6.88392e-56 2.97159e-58 -2.98618e-56 1.30221e-58 -1.27334e-56 5.59853e-59 -5.33297e-57 2.35956e-59 -2.19194e-57 9.74186e-60 -8.8344e-58 3.93769e-60 -3.48911e-58 1.55746e-60 -1.34956e-58 6.02577e-61 -5.10999e-59 2.27995e-61 -1.89349e-59 8.43539e-62 -6.86503e-60 3.05177e-62 -2.43518e-60 1.07971e-62 -8.45167e-61 3.73634e-63 -2.87033e-61 1.26501e-63 -9.54109e-62 4.19208e-64 -3.10526e-62 1.36059e-64 -9.90118e-63 4.32945e-65 -3.09596e-63 1.35298e-65 -9.50942e-64 4.16444e-66 -2.87748e-64 1.26859e-66 -8.61905e-65 3.8539e-67 -2.57514e-65 -7.78629e-66 1.18448e-67 -4.07537e-64 -8.24643e-63 -1.30943e-63 -2.67722e-62 -4.18998e-63 -8.76473e-62 -1.32632e-62 -2.85819e-61 -4.13544e-62 -9.22255e-61 -1.26675e-61 -2.93199e-60 -3.80608e-61 -9.16014e-60 -1.12065e-60 -2.80808e-59 -3.23163e-60 -8.43919e-59 -9.12359e-60 -2.48515e-58 -2.52112e-59 -7.16858e-58 -6.81759e-59 -2.02518e-57 -1.80398e-58 -5.60277e-57 -4.67072e-58 -1.51789e-56 -1.18333e-57 -4.02722e-56 -2.934e-57 -1.04654e-55 -7.12082e-57 -2.66429e-55 -1.69213e-56 -6.64689e-55 -3.93823e-56 -1.62562e-54 -8.97977e-56 -3.89896e-54 -2.00652e-55 -9.17439e-54 -4.39472e-55 -2.11861e-53 -9.43617e-55 -4.80273e-53 -1.9866e-54 -1.06903e-52 -4.10195e-54 -2.33704e-52 -8.31051e-54 -5.01973e-52 -1.65306e-53 -1.05997e-51 -3.23039e-53 -2.20229e-51 -6.20526e-53 -4.50631e-51 -1.17213e-52 -9.08914e-51 -2.17673e-52 -1.80855e-50 -3.96905e-52 -3.55087e-50 -7.08504e-52 -6.87401e-50 -1.23114e-51 -1.3091e-49 -2.06477e-51 -2.43998e-49 -3.31772e-51 -4.41559e-49 -5.0456e-51 -7.70886e-49 -7.17601e-51 -1.28397e-48 -9.49697e-51 -2.01958e-48 -1.16343e-50 -2.98977e-48 -1.3351e-50 -4.15513e-48 -1.40617e-50 -5.51158e-48 -1.40946e-50 -6.87754e-48 -1.28766e-50 -8.46827e-48 -1.0313e-50 -1.00324e-47 -6.71352e-51 -1.14637e-47 -1.89826e-51 -1.29978e-47 3.53163e-51 -1.41799e-47 9.68454e-51 -1.53214e-47 1.61564e-50 -1.58881e-47 2.2363e-50 -1.59687e-47 2.71828e-50 -1.52456e-47 3.01727e-50 -1.39554e-47 3.17746e-50 -1.24781e-47 3.21307e-50 -1.09679e-47 3.13354e-50 -9.44791e-48 2.92407e-50 -7.913e-48 2.59197e-50 -6.36315e-48 2.24172e-50 -5.03881e-48 1.81006e-50 -3.75158e-48 1.3789e-50 -2.65191e-48 9.73316e-51 -1.74478e-48 6.30357e-51 -1.05796e-48 3.78444e-51 -5.97163e-49 2.14306e-51 -3.19228e-49 1.16477e-51 -1.64441e-49 6.15412e-52 -8.26519e-50 3.1922e-52 -4.09229e-50 1.63832e-52 -2.01088e-50 8.34591e-53 -9.83369e-51 4.21989e-53 -4.78366e-51 2.11445e-53 -2.31038e-51 1.04726e-53 -1.10471e-51 5.11419e-54 -5.21488e-52 2.45838e-54 -2.42593e-52 1.16238e-54 -1.11121e-52 5.40454e-55 -5.01062e-53 2.47041e-55 -2.22371e-53 1.10966e-55 -9.70942e-54 4.89502e-56 -4.16843e-54 2.11899e-56 -1.75824e-54 8.99441e-57 -7.2802e-55 3.74077e-57 -2.95672e-55 1.52339e-57 -1.17695e-55 6.07136e-58 -4.58894e-56 2.36707e-58 -1.75171e-56 9.02542e-59 -6.54416e-57 3.36502e-59 -2.39215e-57 1.22675e-59 -8.55498e-58 4.37324e-60 -2.99326e-58 1.52474e-60 -1.02473e-58 5.2005e-61 -3.43316e-59 1.7359e-61 -1.12603e-59 5.6742e-62 -3.61762e-60 1.81809e-62 -1.13953e-60 5.71974e-63 -3.52499e-61 1.77164e-63 -1.07374e-61 5.42709e-64 -3.23518e-62 1.65572e-64 -9.70924e-63 -2.94002e-63 5.09576e-65 -1.54142e-61 -2.68799e-60 -4.94117e-61 -8.73048e-60 -1.57495e-60 -2.85014e-59 -4.96154e-60 -9.25317e-59 -1.53871e-59 -2.96968e-58 -4.68626e-59 -9.3847e-58 -1.39951e-58 -2.91326e-57 -4.09469e-58 -8.87084e-57 -1.17306e-57 -2.64736e-56 -3.28947e-57 -7.73957e-56 -9.02698e-57 -2.21595e-55 -2.42389e-56 -6.21272e-55 -6.36814e-56 -1.70554e-54 -1.637e-55 -4.58469e-54 -4.11782e-55 -1.20691e-53 -1.01378e-54 -3.11202e-53 -2.44336e-54 -7.86187e-53 -5.76671e-54 -1.94659e-52 -1.33324e-53 -4.7256e-52 -3.02042e-53 -1.12525e-51 -6.70679e-53 -2.62919e-51 -1.45993e-52 -6.02993e-51 -3.11583e-52 -1.35777e-50 -6.5207e-52 -3.00221e-50 -1.33844e-51 -6.52001e-50 -2.69577e-51 -1.39124e-49 -5.33127e-51 -2.91851e-49 -1.03599e-50 -6.02433e-49 -1.97938e-50 -1.22483e-48 -3.72038e-50 -2.45524e-48 -6.87809e-50 -4.85698e-48 -1.24931e-49 -9.48481e-48 -2.22331e-49 -1.82731e-47 -3.8545e-49 -3.46592e-47 -6.45344e-49 -6.43827e-47 -1.03583e-48 -1.1617e-46 -1.57442e-48 -2.02291e-46 -2.23982e-48 -3.36159e-46 -2.96637e-48 -5.27838e-46 -3.638e-48 -7.80018e-46 -4.18396e-48 -1.08182e-45 -4.42139e-48 -1.4321e-45 -4.46078e-48 -1.78341e-45 -4.12086e-48 -2.1926e-45 -3.37957e-48 -2.59336e-45 -2.32514e-48 -2.96565e-45 -8.92683e-49 -3.36489e-45 7.52185e-49 -3.6717e-45 2.5909e-48 -3.96997e-45 4.53162e-48 -4.11037e-45 6.4104e-48 -4.13333e-45 7.89387e-48 -3.94953e-45 8.85189e-48 -3.62415e-45 9.37135e-48 -3.23847e-45 9.52007e-48 -2.84747e-45 9.30861e-48 -2.45134e-45 8.72679e-48 -2.05795e-45 7.7681e-48 -1.6588e-45 6.74774e-48 -1.31707e-45 5.46965e-48 -9.83244e-46 4.18273e-48 -6.96971e-46 2.96101e-48 -4.5942e-46 1.92279e-48 -2.79063e-46 1.15757e-48 -1.57821e-46 6.5764e-49 -8.4579e-47 3.58879e-49 -4.37172e-47 1.90552e-49 -2.20711e-47 9.94136e-50 -1.09875e-47 5.13561e-50 -5.43319e-48 2.63482e-50 -2.67544e-48 1.34216e-50 -1.31103e-48 6.77632e-51 -6.37949e-49 3.38174e-51 -3.07335e-49 1.66375e-51 -1.46155e-49 8.05552e-52 -6.84806e-50 3.83572e-52 -3.15882e-50 1.79586e-52 -1.43423e-50 8.2665e-53 -6.40952e-51 3.7399e-53 -2.81864e-51 1.66206e-53 -1.21909e-51 7.25045e-54 -5.18196e-52 3.10217e-54 -2.16293e-52 1.30079e-54 -8.85749e-53 5.34171e-55 -3.55589e-53 2.14695e-55 -1.39848e-53 8.44163e-56 -5.38505e-54 3.246e-56 -2.0294e-54 1.22038e-56 -7.48276e-55 4.4857e-57 -2.69898e-55 1.61196e-57 -9.52262e-56 5.66394e-58 -3.28663e-56 1.94635e-58 -1.10982e-56 6.5436e-59 -3.66765e-57 2.15359e-59 -1.18683e-57 6.94499e-60 -3.76396e-58 2.19798e-60 -1.17171e-58 6.84428e-61 -3.58925e-59 2.10554e-61 -1.08635e-59 6.43921e-62 -3.26904e-60 -9.88678e-61 1.979e-62 -5.27482e-59 -7.78902e-58 -1.68977e-58 -2.5366e-57 -5.37162e-58 -8.2707e-57 -1.68557e-57 -2.67648e-56 -5.20252e-57 -8.55142e-56 -1.5759e-56 -2.68808e-55 -4.67834e-56 -8.29506e-55 -1.36001e-55 -2.50956e-54 -3.86956e-55 -7.43774e-54 -1.07728e-54 -2.15857e-53 -2.93405e-54 -6.13309e-53 -7.81722e-54 -1.70586e-52 -2.03745e-53 -4.64481e-52 -5.19536e-53 -1.23821e-51 -1.29631e-52 -3.23223e-51 -3.16575e-52 -8.26426e-51 -7.56924e-52 -2.07036e-50 -1.77252e-51 -5.08397e-50 -4.06678e-51 -1.22422e-49 -9.14473e-51 -2.89208e-49 -2.01587e-50 -6.70533e-49 -4.3571e-50 -1.52624e-48 -9.23444e-50 -3.41124e-48 -1.9193e-49 -7.48765e-48 -3.91281e-49 -1.61434e-47 -7.82793e-49 -3.41981e-47 -1.53786e-48 -7.12246e-47 -2.96925e-48 -1.45972e-46 -5.63845e-48 -2.94705e-46 -1.05376e-47 -5.8676e-46 -1.93812e-47 -1.15333e-45 -3.50464e-47 -2.23897e-45 -6.21479e-47 -4.29084e-45 -1.0745e-46 -8.10289e-45 -1.79516e-46 -1.49968e-44 -2.87696e-46 -2.69727e-44 -4.36858e-46 -4.68334e-44 -6.21456e-46 -7.76247e-44 -8.23344e-46 -1.21653e-43 -1.01049e-45 -1.79421e-43 -1.16412e-45 -2.48275e-43 -1.234e-45 -3.27906e-43 -1.2524e-45 -4.07556e-43 -1.16857e-45 -5.00217e-43 -9.79003e-46 -5.90518e-43 -7.05575e-46 -6.7575e-43 -3.27779e-46 -7.67327e-43 1.14538e-46 -8.37771e-43 6.02369e-46 -9.07114e-43 1.11938e-45 -9.37719e-43 1.62457e-45 -9.43553e-43 2.02969e-45 -9.02167e-43 2.30124e-45 -8.29764e-43 2.44923e-45 -7.40497e-43 2.49982e-45 -6.51099e-43 2.45103e-45 -5.60112e-43 2.3095e-45 -4.71445e-43 2.06528e-45 -3.8102e-43 1.80222e-45 -3.0334e-43 1.46721e-45 -2.2713e-43 1.12678e-45 -1.61486e-43 8.00219e-46 -1.06656e-43 5.21187e-46 -6.49062e-44 3.1473e-46 -3.67815e-44 1.79445e-46 -1.97641e-44 9.83594e-47 -1.02528e-44 5.25093e-47 -5.20086e-45 2.75707e-47 -2.60438e-45 1.43464e-47 -1.29667e-45 7.41856e-48 -6.43329e-46 3.81025e-48 -3.17751e-46 1.94e-48 -1.55878e-46 9.76381e-49 -7.57102e-47 4.84385e-49 -3.62959e-47 2.36448e-49 -1.71406e-47 1.13489e-49 -7.96746e-48 5.35562e-50 -3.64508e-48 2.48495e-50 -1.64145e-48 1.13344e-50 -7.27498e-49 5.07983e-51 -3.17206e-49 2.23546e-51 -1.35973e-49 9.65153e-52 -5.7253e-50 4.08483e-52 -2.36584e-50 1.6934e-52 -9.58596e-51 6.87151e-53 -3.80553e-51 2.7278e-53 -1.47925e-51 1.05889e-53 -5.6272e-52 4.01828e-54 -2.09412e-52 1.4904e-54 -7.62184e-53 5.40266e-55 -2.71273e-53 1.91415e-55 -9.44125e-54 6.62937e-56 -3.21342e-54 2.24508e-56 -1.06986e-54 7.43843e-57 -3.48584e-55 2.41328e-57 -1.11243e-55 7.67782e-58 -3.48204e-56 2.40098e-58 -1.07149e-56 7.4071e-59 -3.2532e-57 2.26654e-59 -9.7983e-58 -2.95298e-58 6.93924e-60 -1.63024e-56 -2.00036e-55 -5.2261e-56 -6.54326e-55 -1.65853e-55 -2.13377e-54 -5.18732e-55 -6.89012e-54 -1.59399e-54 -2.19331e-53 -4.80263e-54 -6.86171e-53 -1.41704e-53 -2.10558e-52 -4.09138e-53 -6.32993e-52 -1.15548e-52 -1.86303e-51 -3.19128e-52 -5.36633e-51 -8.61879e-52 -1.51256e-50 -2.27624e-51 -4.1718e-50 -5.87932e-51 -1.12604e-49 -1.48545e-50 -2.97502e-49 -3.67219e-50 -7.69565e-49 -8.8854e-50 -1.94974e-48 -2.10515e-49 -4.84018e-48 -4.88566e-49 -1.1779e-47 -1.11115e-48 -2.81141e-47 -2.47733e-48 -6.58439e-47 -5.41579e-48 -1.51375e-46 -1.16109e-47 -3.41718e-46 -2.44129e-47 -7.57588e-46 -5.03435e-47 -1.64965e-45 -1.01842e-46 -3.52857e-45 -2.02194e-46 -7.41623e-45 -3.94263e-46 -1.53252e-44 -7.55711e-46 -3.11653e-44 -1.42513e-45 -6.24419e-44 -2.64625e-45 -1.23409e-43 -4.83866e-45 -2.40891e-43 -8.70509e-45 -4.64651e-43 -1.53738e-44 -8.85416e-43 -2.64953e-44 -1.66416e-42 -4.41521e-44 -3.06797e-42 -7.06164e-44 -5.49894e-42 -1.07074e-43 -9.51777e-42 -1.52252e-43 -1.57308e-41 -2.01705e-43 -2.46026e-41 -2.47616e-43 -3.62102e-41 -2.85571e-43 -4.99843e-41 -3.03541e-43 -6.58467e-41 -3.09614e-43 -8.16959e-41 -2.91338e-43 -1.00075e-40 -2.48629e-43 -1.17875e-40 -1.86161e-43 -1.34956e-40 -9.83026e-44 -1.53378e-40 6.66163e-45 -1.67622e-40 1.20936e-43 -1.81909e-40 2.4263e-43 -1.87754e-40 3.62598e-43 -1.89069e-40 4.60116e-43 -1.80834e-40 5.27705e-43 -1.66673e-40 5.64423e-43 -1.48433e-40 5.78717e-43 -1.30467e-40 5.68993e-43 -1.12145e-40 5.39033e-43 -9.46629e-41 4.84434e-43 -7.67381e-41 4.24697e-43 -6.12557e-41 3.47373e-43 -4.60142e-41 2.67983e-43 -3.28178e-41 1.90955e-43 -2.17177e-41 1.24761e-43 -1.32409e-41 7.55827e-44 -7.51862e-42 4.32575e-44 -4.05104e-42 2.38231e-44 -2.10944e-42 1.27924e-44 -1.07542e-42 6.76362e-45 -5.41918e-43 3.54735e-45 -2.71799e-43 1.85014e-45 -1.35942e-43 9.58835e-46 -6.77157e-44 4.9271e-46 -3.35094e-44 2.50287e-46 -1.64188e-44 1.25316e-46 -7.93988e-45 6.1728e-47 -3.78161e-45 2.98925e-47 -1.77249e-45 1.42318e-47 -8.176e-46 6.66258e-48 -3.71233e-46 3.06686e-48 -1.65927e-46 1.38756e-48 -7.2982e-47 6.16638e-49 -3.15696e-47 2.68952e-49 -1.34186e-47 1.15026e-49 -5.59916e-48 4.81966e-50 -2.29142e-48 1.97696e-50 -9.18923e-49 7.9332e-51 -3.60842e-49 3.11266e-51 -1.38659e-49 1.19362e-51 -5.21144e-50 4.47227e-52 -1.91509e-50 1.63695e-52 -6.87914e-51 5.85275e-53 -2.41512e-51 2.04423e-53 -8.2871e-52 6.97645e-54 -2.77968e-52 2.32738e-54 -9.11769e-53 7.59568e-55 -2.92678e-53 2.42829e-55 -9.20582e-54 7.62034e-56 -2.84311e-54 2.35495e-56 -8.64904e-55 7.19971e-57 -2.60357e-55 -7.80696e-56 2.19224e-57 -4.51891e-54 -4.53537e-53 -1.45065e-53 -1.49139e-52 -4.59791e-53 -4.86813e-52 -1.43358e-52 -1.56953e-51 -4.38528e-52 -4.97989e-51 -1.31379e-51 -1.55086e-50 -3.85072e-51 -4.73248e-50 -1.10349e-50 -1.41355e-49 -3.09084e-50 -4.13043e-49 -8.46087e-50 -1.18039e-48 -2.2636e-49 -3.29898e-48 -5.91964e-49 -9.01784e-48 -1.51357e-48 -2.41148e-47 -3.78489e-48 -6.31032e-47 -9.26012e-48 -1.61649e-46 -2.2176e-47 -4.05551e-46 -5.20071e-47 -9.96991e-46 -1.19499e-46 -2.40296e-45 -2.69141e-46 -5.68131e-45 -5.94389e-46 -1.3183e-44 -1.28748e-45 -3.00346e-44 -2.73552e-45 -6.72035e-44 -5.70123e-45 -1.47702e-43 -1.16557e-44 -3.18883e-43 -2.33789e-44 -6.76334e-43 -4.60281e-44 -1.40959e-42 -8.90161e-44 -2.88859e-42 -1.69266e-43 -5.82575e-42 -3.16778e-43 -1.15775e-41 -5.84043e-43 -2.2702e-41 -1.06105e-42 -4.39852e-41 -1.89821e-42 -8.42627e-41 -3.3373e-42 -1.59597e-40 -5.73114e-42 -2.98478e-40 -9.52277e-42 -5.48013e-40 -1.5194e-41 -9.78726e-40 -2.29965e-41 -1.68834e-39 -3.26759e-41 -2.78222e-39 -4.32753e-41 -4.34228e-39 -5.31182e-41 -6.37782e-39 -6.12915e-41 -8.78197e-39 -6.53084e-41 -1.15367e-38 -6.68887e-41 -1.42919e-38 -6.33784e-41 -1.74682e-38 -5.49555e-41 -2.05206e-38 -4.24734e-41 -2.34999e-38 -2.45945e-41 -2.67324e-38 -3.01171e-42 -2.92546e-38 2.06792e-41 -3.18502e-38 4.58052e-41 -3.28237e-38 7.07811e-41 -3.30851e-38 9.13133e-41 -3.1642e-38 1.05972e-40 -2.92178e-38 1.13846e-40 -2.59444e-38 1.17234e-40 -2.27882e-38 1.15581e-40 -1.95722e-38 1.10117e-40 -1.6573e-38 9.94923e-41 -1.34811e-38 8.7626e-41 -1.07887e-38 7.20249e-41 -8.13215e-39 5.58212e-41 -5.81782e-39 3.99082e-41 -3.85696e-39 2.61548e-41 -2.35544e-39 1.58958e-41 -1.33997e-39 9.13239e-42 -7.23898e-40 5.0539e-42 -3.78388e-40 2.73031e-42 -1.93907e-40 1.45419e-42 -9.83594e-41 7.69104e-43 -4.97168e-41 4.04803e-43 -2.50788e-41 2.11801e-43 -1.26045e-41 1.09908e-43 -6.29475e-42 5.63858e-44 -3.11285e-42 2.85111e-44 -1.51916e-42 1.4181e-44 -7.30074e-43 6.9334e-45 -3.45219e-43 3.33259e-45 -1.6063e-43 1.57523e-45 -7.35728e-44 7.32284e-46 -3.31776e-44 3.34712e-46 -1.47275e-44 1.50336e-46 -6.43166e-45 6.62971e-47 -2.76101e-45 2.86788e-47 -1.16396e-45 1.21577e-47 -4.81386e-46 5.04632e-48 -1.95127e-46 2.04924e-48 -7.74521e-47 8.13602e-49 -3.00826e-47 3.15639e-49 -1.1426e-47 1.19603e-49 -4.24189e-48 4.42517e-50 -1.53868e-48 1.59833e-50 -5.45196e-49 5.63536e-51 -1.8868e-49 1.93971e-51 -6.37807e-50 6.51999e-52 -2.10653e-50 2.14158e-52 -6.80187e-51 6.8816e-53 -2.14956e-51 2.16718e-53 -6.6606e-52 6.70721e-54 -2.02909e-52 2.04774e-54 -6.10035e-53 -1.81904e-53 6.19845e-55 -1.11011e-51 -9.03507e-51 -3.56731e-51 -2.98568e-50 -1.12875e-50 -9.75444e-50 -3.50635e-50 -3.13968e-49 -1.067e-49 -9.92697e-49 -3.17604e-49 -3.07647e-48 -9.23928e-49 -9.33181e-48 -2.6255e-48 -2.76808e-47 -7.28665e-48 -8.02599e-47 -1.97513e-47 -2.27437e-46 -5.2298e-47 -6.29931e-46 -1.35306e-46 -1.70563e-45 -3.42176e-46 -4.51624e-45 -8.46197e-46 -1.16991e-44 -2.04739e-45 -2.96636e-44 -4.84925e-45 -7.36605e-44 -1.12496e-44 -1.79246e-43 -2.55758e-44 -4.27696e-43 -5.70111e-44 -1.00127e-42 -1.2465e-43 -2.30109e-42 -2.6738e-43 -5.19343e-42 -5.6273e-43 -1.15141e-41 -1.16197e-42 -2.50787e-41 -2.35399e-42 -5.36649e-41 -4.67941e-42 -1.12824e-40 -9.13167e-42 -2.33101e-40 -1.75074e-41 -4.73546e-40 -3.301e-41 -9.46832e-40 -6.1279e-41 -1.86566e-39 -1.12128e-40 -3.62819e-39 -2.02309e-40 -6.97495e-39 -3.59775e-40 -1.32663e-38 -6.29522e-40 -2.49689e-38 -1.07703e-39 -4.64581e-38 -1.78405e-39 -8.49447e-38 -2.83894e-39 -1.51163e-37 -4.288e-39 -2.59872e-37 -6.0874e-39 -4.26985e-37 -8.05789e-39 -6.65103e-37 -9.88606e-39 -9.75042e-37 -1.14063e-38 -1.33936e-36 -1.21802e-38 -1.75434e-36 -1.25122e-38 -2.1708e-36 -1.19171e-38 -2.64655e-36 -1.04694e-38 -3.09955e-36 -8.30085e-39 -3.54926e-36 -5.13933e-39 -4.04115e-36 -1.30266e-39 -4.42978e-36 2.99123e-39 -4.84281e-36 7.50903e-39 -4.98349e-36 1.20339e-38 -5.02884e-36 1.57852e-38 -4.80712e-36 1.85323e-38 -4.44573e-36 1.99784e-38 -3.93303e-36 2.06518e-38 -3.45128e-36 2.04134e-38 -2.96211e-36 1.95615e-38 -2.51673e-36 1.77731e-38 -2.05513e-36 1.57216e-38 -1.6486e-36 1.29869e-38 -1.2471e-36 1.01098e-38 -8.94713e-37 7.24943e-39 -5.94004e-37 4.76418e-39 -3.6322e-37 2.90373e-39 -2.06934e-37 1.67425e-39 -1.12067e-37 9.30916e-40 -5.87984e-38 5.0596e-40 -3.02892e-38 2.71493e-40 -1.54693e-38 1.4483e-40 -7.88257e-39 7.69446e-41 -4.01157e-39 4.06546e-41 -2.03492e-39 2.13087e-41 -1.02588e-39 1.10429e-41 -5.12141e-40 5.64013e-42 -2.52296e-40 2.83325e-42 -1.22369e-40 1.39884e-42 -5.83866e-41 6.78916e-43 -2.74096e-41 3.24059e-43 -1.26662e-41 1.5216e-43 -5.76357e-42 7.02729e-44 -2.58231e-42 3.1905e-44 -1.13865e-42 1.42287e-44 -4.93737e-43 6.22707e-45 -2.10323e-43 2.67164e-45 -8.79229e-44 1.12257e-45 -3.60316e-44 4.61535e-46 -1.44613e-44 1.85522e-46 -5.67933e-45 7.28608e-47 -2.18087e-45 2.79414e-47 -8.18339e-46 1.04583e-47 -2.99912e-46 3.81933e-48 -1.07312e-46 1.36061e-48 -3.74797e-47 4.72806e-49 -1.27764e-47 1.60292e-49 -4.25166e-48 5.30432e-50 -1.38182e-48 1.71489e-50 -4.39025e-49 5.42484e-51 -1.36561e-49 1.68291e-51 -4.16825e-50 5.13542e-52 -1.25222e-50 -3.71651e-51 1.54725e-52 -2.37977e-49 -1.57295e-48 -7.64366e-49 -5.21478e-48 -2.41118e-48 -1.70323e-47 -7.45304e-48 -5.46741e-47 -2.25348e-47 -1.72096e-46 -6.65713e-47 -5.30249e-46 -1.92014e-46 -1.59737e-45 -5.40579e-46 -4.70164e-45 -1.4854e-45 -1.3517e-44 -3.98429e-45 -3.79567e-44 -1.04354e-44 -1.04124e-43 -2.66988e-44 -2.79127e-43 -6.67589e-44 -7.31538e-43 -1.63231e-43 -1.87535e-42 -3.90509e-43 -4.70545e-42 -9.14692e-43 -1.15631e-41 -2.09898e-42 -2.78486e-41 -4.72165e-42 -6.57781e-41 -1.04172e-41 -1.52471e-40 -2.25497e-41 -3.47023e-40 -4.79023e-41 -7.75838e-40 -9.98653e-41 -1.70423e-39 -2.04308e-40 -3.67841e-39 -4.10146e-40 -7.80116e-39 -8.08025e-40 -1.62564e-38 -1.56289e-39 -3.32918e-38 -2.97023e-39 -6.70395e-38 -5.55246e-39 -1.32867e-37 -1.02227e-38 -2.59523e-37 -1.85616e-38 -5.00418e-37 -3.3256e-38 -9.54303e-37 -5.87837e-38 -1.80171e-36 -1.02369e-37 -3.36922e-36 -1.74496e-37 -6.23656e-36 -2.88187e-37 -1.13564e-35 -4.57377e-37 -2.01399e-35 -6.89477e-37 -3.45084e-35 -9.78101e-37 -5.65435e-35 -1.29429e-36 -8.79297e-35 -1.58729e-36 -1.28709e-34 -1.83079e-36 -1.76417e-34 -1.9596e-36 -2.30378e-34 -2.01778e-36 -2.84877e-34 -1.92978e-36 -3.46343e-34 -1.71488e-36 -4.04256e-34 -1.39025e-36 -4.6271e-34 -9.08446e-37 -5.27249e-34 -3.20752e-37 -5.78968e-34 3.51697e-37 -6.36046e-34 1.05404e-36 -6.53572e-34 1.7625e-36 -6.60368e-34 2.35373e-36 -6.30689e-34 2.79663e-36 -5.84055e-34 3.0239e-36 -5.145e-34 3.13752e-36 -4.51043e-34 3.10985e-36 -3.86928e-34 2.9982e-36 -3.29927e-34 2.74048e-36 -2.70564e-34 2.43415e-36 -2.17495e-34 2.02086e-36 -1.65131e-34 1.57958e-36 -1.1875e-34 1.13552e-36 -7.89062e-35 7.47897e-37 -4.82813e-35 4.56895e-37 -2.75308e-35 2.64287e-37 -1.49405e-35 1.47604e-37 -7.86709e-36 8.06961e-38 -4.07373e-36 4.3623e-38 -2.09507e-36 2.34732e-38 -1.0765e-36 1.25884e-38 -5.52846e-37 6.71649e-39 -2.83095e-37 3.55551e-39 -1.44087e-37 1.86103e-39 -7.26204e-38 9.59946e-40 -3.61128e-38 4.86912e-40 -1.76772e-38 2.42693e-40 -8.51037e-39 1.18899e-40 -4.03048e-39 5.72879e-41 -1.87888e-39 2.71572e-41 -8.62537e-40 1.26662e-41 -3.89966e-40 5.80985e-42 -1.73574e-40 2.61883e-42 -7.60026e-41 1.15891e-42 -3.2706e-41 5.02961e-43 -1.38166e-41 2.13844e-43 -5.72354e-42 8.89826e-44 -2.32249e-42 3.62046e-44 -9.22245e-43 1.43921e-44 -3.58074e-43 5.58589e-45 -1.35835e-43 2.11551e-45 -5.03155e-44 7.81434e-46 -1.81898e-44 2.81439e-46 -6.41573e-45 9.88132e-47 -2.20737e-45 3.38223e-47 -7.40861e-46 1.12899e-47 -2.42646e-46 3.67771e-48 -7.76069e-47 1.17055e-48 -2.42689e-47 3.64671e-49 -7.43385e-48 1.11461e-49 -2.23571e-48 -6.61976e-49 3.35154e-50 -4.38719e-47 -2.38052e-46 -1.40508e-46 -7.89584e-46 -4.40984e-46 -2.57264e-45 -1.35401e-45 -8.22069e-45 -4.06181e-45 -2.57185e-44 -1.18942e-44 -7.86695e-44 -3.39831e-44 -2.35073e-43 -9.47173e-44 -6.85836e-43 -2.57556e-43 -1.95339e-42 -6.83443e-43 -5.43188e-42 -1.7705e-42 -1.47511e-41 -4.47989e-42 -3.91373e-41 -1.10782e-41 -1.01504e-40 -2.67904e-41 -2.57496e-40 -6.3401e-41 -6.39363e-40 -1.46934e-40 -1.555e-39 -3.33699e-40 -3.70717e-39 -7.43129e-40 -8.66959e-39 -1.62359e-39 -1.99015e-38 -3.48132e-39 -4.48682e-38 -7.32734e-39 -9.93869e-38 -1.51385e-38 -2.16345e-37 -3.06974e-38 -4.62818e-37 -6.10882e-38 -9.72949e-37 -1.1931e-37 -2.00986e-36 -2.28786e-37 -4.08035e-36 -4.31076e-37 -8.14491e-36 -7.9901e-37 -1.60003e-35 -1.45898e-36 -3.0977e-35 -2.62868e-36 -5.92137e-35 -4.67667e-36 -1.11996e-34 -8.21674e-36 -2.09859e-34 -1.42421e-35 -3.89878e-34 -2.41911e-35 -7.17958e-34 -3.9841e-35 -1.30222e-33 -6.30697e-35 -2.30211e-33 -9.49009e-35 -3.93243e-33 -1.34552e-34 -6.42818e-33 -1.7802e-34 -9.98417e-33 -2.18216e-34 -1.46003e-32 -2.51472e-34 -1.99766e-32 -2.69751e-34 -2.60062e-32 -2.78063e-34 -3.21549e-32 -2.66536e-34 -3.89771e-32 -2.38856e-34 -4.53353e-32 -1.96886e-34 -5.18534e-32 -1.3366e-34 -5.91134e-32 -5.62444e-35 -6.50056e-32 3.43383e-35 -7.17821e-32 1.28374e-34 -7.3648e-32 2.23809e-34 -7.45145e-32 3.03722e-34 -7.10835e-32 3.64732e-34 -6.59157e-32 3.95e-34 -5.78167e-32 4.11092e-34 -5.0657e-32 4.08458e-34 -4.34527e-32 3.96073e-34 -3.71832e-32 3.64194e-34 -3.06306e-32 3.24599e-34 -2.46638e-32 2.70775e-34 -1.87961e-32 2.12337e-34 -1.35391e-32 1.52888e-34 -8.99706e-33 1.00827e-34 -5.50431e-33 6.16815e-35 -3.13882e-33 3.57685e-35 -1.70606e-33 2.00556e-35 -9.0141e-34 1.10248e-35 -4.69187e-34 6.00278e-36 -2.43025e-34 3.25763e-36 -1.25952e-34 1.76318e-36 -6.52904e-35 9.4972e-37 -3.37553e-35 5.07592e-37 -1.73464e-35 2.68227e-37 -8.82613e-36 1.39655e-37 -4.43011e-36 7.14847e-38 -2.18824e-36 3.59469e-38 -1.06278e-36 1.77638e-38 -5.07666e-37 8.63253e-39 -2.38669e-37 4.12768e-39 -1.10499e-37 1.94225e-39 -5.03923e-38 8.9908e-40 -2.26306e-38 4.0915e-40 -1.00014e-38 1.82871e-40 -4.34559e-39 8.01891e-41 -1.85425e-39 3.44597e-41 -7.761e-40 1.44968e-41 -3.18278e-40 5.96446e-42 -1.27756e-40 2.39787e-42 -5.0146e-41 9.41248e-43 -1.92316e-41 3.60513e-43 -7.20137e-42 1.34661e-43 -2.63142e-42 4.90331e-44 -9.37898e-43 1.74001e-44 -3.25983e-43 6.01726e-45 -1.10479e-43 2.02821e-45 -3.65175e-44 6.66674e-46 -1.17784e-44 2.13895e-46 -3.71066e-45 6.70753e-47 -1.14341e-45 2.05947e-47 -3.45232e-46 -1.02334e-46 6.20317e-48 -6.89674e-45 -3.11843e-44 -2.19654e-44 -1.03139e-43 -6.8441e-44 -3.34328e-43 -2.08379e-43 -1.06104e-42 -6.19352e-43 -3.29287e-42 -1.79596e-42 -9.98322e-42 -5.07928e-42 -2.9549e-41 -1.401e-41 -8.53603e-41 -3.7695e-41 -2.40654e-40 -9.89664e-41 -6.62274e-40 -2.53661e-40 -1.7797e-39 -6.35077e-40 -4.67231e-39 -1.55412e-39 -1.1991e-38 -3.71987e-39 -3.01031e-38 -8.71518e-39 -7.3981e-38 -2.00008e-38 -1.78122e-37 -4.4993e-38 -4.20473e-37 -9.92758e-38 -9.73881e-37 -2.14961e-37 -2.21466e-36 -4.56918e-37 -4.94735e-36 -9.53542e-37 -1.08608e-35 -1.95365e-36 -2.34344e-35 -3.92904e-36 -4.96994e-35 -7.75524e-36 -1.03588e-34 -1.50236e-35 -2.12171e-34 -2.85736e-35 -4.27075e-34 -5.33939e-35 -8.4513e-34 -9.81492e-35 -1.64556e-33 -1.77773e-34 -3.15726e-33 -3.17865e-34 -5.98182e-33 -5.61618e-34 -1.12191e-32 -9.80952e-34 -2.08608e-32 -1.69271e-33 -3.84973e-32 -2.86608e-33 -7.05239e-32 -4.7093e-33 -1.27434e-31 -7.43911e-33 -2.24662e-31 -1.1179e-32 -3.82739e-31 -1.58501e-32 -6.24493e-31 -2.09805e-32 -9.69327e-31 -2.57173e-32 -1.41711e-30 -2.96096e-32 -1.93648e-30 -3.18477e-32 -2.51293e-30 -3.28555e-32 -3.10856e-30 -3.15511e-32 -3.75708e-30 -2.84868e-32 -4.35578e-30 -2.38296e-32 -4.97816e-30 -1.67125e-32 -5.67451e-30 -7.98235e-33 -6.243e-30 2.48795e-33 -6.92489e-30 1.32962e-32 -7.09214e-30 2.43259e-32 -7.18438e-30 3.35883e-32 -6.84622e-30 4.07893e-32 -6.35982e-30 4.42539e-32 -5.55948e-30 4.62212e-32 -4.8735e-30 4.60578e-32 -4.1825e-30 4.49195e-32 -3.59024e-30 4.15611e-32 -2.97063e-30 3.71542e-32 -2.39467e-30 3.11429e-32 -1.83199e-30 2.4483e-32 -1.32064e-30 1.76417e-32 -8.76829e-31 1.1639e-32 -5.35839e-31 7.12364e-33 -3.05277e-31 4.13878e-33 -1.6609e-31 2.32911e-33 -8.8042e-32 1.28717e-33 -4.60684e-32 7.05924e-34 -2.40414e-32 3.86417e-34 -1.25735e-32 2.11098e-34 -6.58153e-33 1.14789e-34 -3.4365e-33 6.19331e-35 -1.78335e-33 3.30324e-35 -9.16125e-34 1.73544e-35 -4.64119e-34 8.96074e-36 -2.31316e-34 4.54391e-36 -1.13325e-34 2.26373e-36 -5.45917e-35 1.10885e-36 -2.58789e-35 5.34411e-37 -1.20808e-35 2.53486e-37 -5.55559e-36 1.18311e-37 -2.51641e-36 5.43032e-38 -1.12202e-36 2.44881e-38 -4.92024e-37 1.0838e-38 -2.11966e-37 4.70237e-39 -8.96043e-38 1.99793e-39 -3.71253e-38 8.3041e-40 -1.50596e-38 3.37328e-40 -5.97494e-39 1.33815e-40 -2.31658e-39 5.18021e-41 -8.77061e-40 1.95581e-41 -3.24049e-40 7.19854e-42 -1.16783e-40 2.58206e-42 -4.10386e-41 9.02477e-43 -1.40601e-41 3.07388e-43 -4.69684e-42 1.02065e-43 -1.53039e-42 3.3059e-44 -4.86723e-43 1.04561e-44 -1.5125e-43 3.23341e-45 -4.59843e-44 -1.3696e-44 9.78928e-46 -9.2446e-43 -3.52845e-42 -2.92054e-42 -1.15983e-41 -9.01626e-42 -3.73022e-41 -2.71786e-41 -1.17312e-40 -7.99428e-41 -3.60468e-40 -2.29355e-40 -1.08146e-39 -6.41719e-40 -3.16662e-39 -1.75113e-39 -9.04796e-39 -4.66158e-39 -2.52293e-38 -1.21105e-38 -6.86714e-38 -3.07201e-38 -1.82534e-37 -7.61336e-38 -4.74069e-37 -1.84465e-37 -1.20379e-36 -4.37265e-37 -2.99071e-36 -1.01484e-36 -7.2753e-36 -2.30775e-36 -1.73428e-35 -5.14548e-36 -4.05437e-35 -1.12558e-35 -9.30207e-35 -2.4168e-35 -2.0959e-34 -5.09511e-35 -4.63997e-34 -1.05477e-34 -1.00963e-33 -2.14399e-34 -2.15964e-33 -4.27816e-34 -4.54111e-33 -8.3786e-34 -9.3853e-33 -1.61041e-33 -1.9062e-32 -3.03843e-33 -3.80453e-32 -5.6313e-33 -7.4634e-32 -1.02654e-32 -1.44011e-31 -1.84405e-32 -2.7375e-31 -3.27171e-32 -5.13879e-31 -5.73995e-32 -9.55384e-31 -9.96566e-32 -1.76223e-30 -1.71191e-31 -3.22946e-30 -2.88982e-31 -5.88413e-30 -4.73899e-31 -1.05938e-29 -7.47243e-31 -1.8634e-29 -1.12191e-30 -3.16759e-29 -1.59137e-30 -5.16202e-29 -2.10854e-30 -8.01226e-29 -2.58517e-30 -1.172e-28 -2.97234e-30 -1.60048e-28 -3.20593e-30 -2.06988e-28 -3.30779e-30 -2.56305e-28 -3.17968e-30 -3.08992e-28 -2.88716e-30 -3.57378e-28 -2.44144e-30 -4.083e-28 -1.7527e-30 -4.6494e-28 -9.09738e-31 -5.10745e-28 1.24463e-31 -5.67875e-28 1.18682e-30 -5.80164e-28 2.27565e-30 -5.88125e-28 3.1923e-30 -5.60228e-28 3.91791e-30 -5.21974e-28 4.25914e-30 -4.5582e-28 4.46685e-30 -4.00579e-28 4.4648e-30 -3.44183e-28 4.37652e-30 -2.96038e-28 4.07324e-30 -2.45862e-28 3.64968e-30 -1.98274e-28 3.0738e-30 -1.52289e-28 2.42011e-30 -1.09752e-28 1.74336e-30 -7.27232e-29 1.14944e-30 -4.43447e-29 7.03113e-31 -2.52122e-29 4.09015e-31 -1.37208e-29 2.30976e-31 -7.29671e-30 1.28341e-31 -3.83944e-30 7.09207e-32 -2.02003e-30 3.91761e-32 -1.06692e-30 2.16104e-32 -5.64334e-31 1.1867e-32 -2.97763e-31 6.46481e-33 -1.5611e-31 3.48054e-33 -8.09907e-32 1.8452e-33 -4.14213e-32 9.61052e-34 -2.08332e-32 4.91422e-34 -1.02968e-32 2.46801e-34 -5.00303e-33 1.21844e-34 -2.39176e-33 5.91808e-35 -1.12592e-33 2.82914e-35 -5.22163e-34 1.33106e-35 -2.38558e-34 6.15997e-36 -1.07315e-34 2.80176e-36 -4.74936e-35 1.25112e-36 -2.06566e-35 5.47889e-37 -8.81914e-36 2.35031e-37 -3.69171e-36 9.86599e-38 -1.51348e-36 4.04876e-38 -6.07058e-37 1.62295e-38 -2.38008e-37 6.34997e-39 -9.11424e-38 2.4236e-39 -3.40666e-38 9.01918e-40 -1.24219e-38 3.27145e-40 -4.41709e-39 1.15638e-40 -1.53138e-39 3.98342e-41 -5.17633e-40 1.33752e-41 -1.70629e-40 4.37966e-42 -5.4876e-41 1.39957e-42 -1.7232e-41 4.36875e-43 -5.28828e-42 -1.58729e-42 1.33322e-43 -1.06728e-40 -3.44389e-40 -3.33787e-40 -1.1221e-39 -1.01937e-39 -3.57271e-39 -3.03843e-39 -1.11137e-38 -8.83562e-39 -3.37594e-38 -2.50607e-38 -1.00097e-37 -6.93264e-38 -2.89626e-37 -1.87075e-37 -8.1777e-37 -4.92569e-37 -2.25356e-36 -1.26601e-36 -6.06308e-36 -3.17801e-36 -1.59331e-35 -7.79625e-36 -4.09205e-35 -1.87035e-35 -1.02778e-34 -4.39117e-35 -2.52634e-34 -1.00968e-34 -6.08209e-34 -2.27534e-34 -1.43525e-33 -5.02886e-34 -3.32237e-33 -1.0907e-33 -7.54969e-33 -2.32244e-33 -1.68516e-32 -4.85631e-33 -3.69651e-32 -9.97291e-33 -7.97122e-32 -2.01115e-32 -1.69005e-31 -3.98177e-32 -3.52295e-31 -7.73741e-32 -7.21892e-31 -1.47546e-31 -1.45376e-30 -2.76123e-31 -2.87659e-30 -5.07428e-31 -5.59269e-30 -9.16934e-31 -1.06898e-29 -1.63289e-30 -2.01209e-29 -2.87335e-30 -3.74006e-29 -5.00348e-30 -6.88883e-29 -8.63147e-30 -1.25978e-28 -1.47558e-29 -2.29133e-28 -2.48339e-29 -4.15043e-28 -4.06591e-29 -7.44594e-28 -6.40179e-29 -1.30742e-27 -9.60754e-29 -2.21883e-27 -1.36401e-28 -3.61373e-27 -1.81021e-28 -5.613e-27 -2.22072e-28 -8.22295e-27 -2.54858e-28 -1.12299e-26 -2.75697e-28 -1.44695e-26 -2.84462e-28 -1.79418e-26 -2.73765e-28 -2.15956e-26 -2.49816e-28 -2.49598e-26 -2.12917e-28 -2.85438e-26 -1.55395e-28 -3.24318e-26 -8.55642e-29 -3.54572e-26 1.63752e-30 -3.93465e-26 9.07885e-29 -4.00482e-26 1.82398e-28 -4.05777e-26 2.59899e-28 -3.87033e-26 3.22542e-28 -3.62516e-26 3.52008e-28 -3.17653e-26 3.7133e-28 -2.80731e-26 3.72476e-28 -2.41621e-26 3.66497e-28 -2.07787e-26 3.42847e-28 -1.72941e-26 3.07662e-28 -1.39386e-26 2.6038e-28 -1.07494e-26 2.05104e-28 -7.73526e-27 1.47546e-28 -5.10805e-27 9.7119e-29 -3.10416e-27 5.9313e-29 -1.75913e-27 3.45265e-29 -9.5682e-28 1.9567e-29 -5.10488e-28 1.09364e-29 -2.70273e-28 6.09428e-30 -1.43507e-28 3.40049e-30 -7.66374e-29 1.89581e-30 -4.10045e-29 1.05217e-30 -2.18824e-29 5.79157e-31 -1.15986e-29 3.14935e-31 -6.08047e-30 1.68566e-31 -3.14069e-30 8.86058e-32 -1.59467e-30 4.57112e-32 -7.95441e-31 2.3156e-32 -3.89989e-31 1.15293e-32 -1.88108e-31 5.64713e-33 -8.93421e-32 2.72254e-33 -4.18055e-32 1.29199e-33 -1.92737e-32 6.03247e-34 -8.75126e-33 2.76913e-34 -3.91036e-33 1.24844e-34 -1.71776e-33 5.5218e-35 -7.40987e-34 2.3933e-35 -3.13513e-34 1.01544e-35 -1.29959e-34 4.21325e-36 -5.27243e-35 1.70811e-36 -2.0915e-35 6.76111e-37 -8.10569e-36 2.61126e-37 -3.06695e-36 9.83541e-38 -1.1323e-36 3.61144e-38 -4.07727e-37 1.29245e-38 -1.43157e-37 4.50775e-39 -4.9006e-38 1.53239e-39 -1.63575e-38 5.07896e-40 -5.32533e-39 1.64207e-40 -1.69182e-39 5.182e-41 -5.24819e-40 -1.59023e-40 1.59694e-41 -1.07288e-38 -2.89476e-38 -3.31645e-38 -9.33179e-38 -1.00059e-37 -2.93698e-37 -2.94563e-37 -9.02529e-37 -8.45938e-37 -2.70725e-36 -2.36971e-36 -7.92521e-36 -6.47549e-36 -2.26398e-35 -1.72647e-35 -6.31175e-35 -4.49258e-35 -1.71768e-34 -1.1415e-34 -4.56473e-34 -2.83361e-34 -1.18517e-33 -6.87624e-34 -3.00813e-33 -1.63233e-33 -7.46886e-33 -3.79334e-33 -1.8154e-32 -8.63602e-33 -4.32301e-32 -1.9275e-32 -1.00933e-31 -4.22035e-32 -2.31228e-31 -9.07022e-32 -5.20128e-31 -1.91418e-31 -1.14948e-30 -3.96782e-31 -2.49703e-30 -8.07887e-31 -5.3335e-30 -1.61558e-30 -1.1203e-29 -3.17226e-30 -2.31409e-29 -6.11397e-30 -4.69966e-29 -1.15623e-29 -9.38089e-29 -2.14521e-29 -1.83957e-28 -3.9064e-29 -3.54277e-28 -6.99219e-29 -6.70308e-28 -1.23344e-28 -1.24826e-27 -2.15114e-28 -2.29557e-27 -3.71533e-28 -4.18552e-27 -6.36394e-28 -7.58192e-27 -1.0821e-27 -1.36742e-26 -1.81565e-27 -2.46063e-26 -2.96921e-27 -4.39905e-26 -4.6704e-27 -7.71505e-26 -7.01019e-27 -1.30778e-25 -9.9681e-27 -2.12996e-25 -1.32624e-26 -3.31375e-25 -1.62906e-26 -4.86825e-25 -1.86541e-26 -6.65519e-25 -2.02454e-26 -8.53915e-25 -2.09076e-26 -1.0605e-24 -2.01764e-26 -1.27655e-24 -1.85235e-26 -1.47795e-24 -1.5886e-26 -1.6962e-24 -1.17327e-26 -1.92056e-24 -6.77036e-27 -2.07998e-24 -5.30472e-28 -2.2871e-24 5.83298e-27 -2.31446e-24 1.23599e-26 -2.33852e-24 1.79465e-26 -2.2405e-24 2.25858e-26 -2.11771e-24 2.48626e-26 -1.87504e-24 2.64671e-26 -1.67347e-24 2.66605e-26 -1.44294e-24 2.62773e-26 -1.23639e-24 2.4671e-26 -1.02864e-24 2.21524e-26 -8.27463e-25 1.88427e-26 -6.40722e-25 1.48327e-26 -4.59667e-25 1.06415e-26 -3.01923e-25 6.9851e-27 -1.82577e-25 4.25448e-27 -1.03005e-25 2.47647e-27 -5.59438e-26 1.40869e-27 -2.99442e-26 7.92558e-28 -1.59642e-26 4.45903e-28 -8.56737e-27 2.51667e-28 -4.63369e-27 1.41983e-28 -2.5114e-27 7.973e-29 -1.3571e-27 4.43864e-29 -7.27913e-28 2.4399e-29 -3.8589e-28 1.31946e-29 -2.0142e-28 7.00456e-30 -1.03292e-28 3.64855e-30 -5.2024e-29 1.86584e-30 -2.57517e-29 9.37763e-31 -1.25405e-29 4.63661e-31 -6.01361e-30 2.25666e-31 -2.84132e-30 1.0813e-31 -1.32287e-30 5.09915e-32 -6.06705e-31 2.36487e-32 -2.739e-31 1.07761e-32 -1.21603e-31 4.81938e-33 -5.30333e-32 2.11303e-33 -2.26939e-32 9.07266e-34 -9.51778e-33 3.81103e-34 -3.90809e-33 1.56471e-34 -1.56955e-33 6.27434e-35 -6.1602e-34 2.45555e-35 -2.36104e-34 9.37425e-36 -8.8315e-35 3.48934e-36 -3.22238e-35 1.26602e-36 -1.14652e-35 4.47666e-37 -3.9771e-36 1.54271e-37 -1.34498e-36 5.18194e-38 -4.43497e-37 1.6971e-38 -1.42632e-37 5.42119e-39 -4.47558e-38 -1.37023e-38 1.68935e-39 -9.45614e-37 -2.08491e-36 -2.88574e-36 -6.64293e-36 -8.59179e-36 -2.06492e-35 -2.49542e-35 -6.2639e-35 -7.06979e-35 -1.85419e-34 -1.95382e-34 -5.35563e-34 -5.26793e-34 -1.5095e-33 -1.38609e-33 -4.15245e-33 -3.56045e-33 -1.11521e-32 -8.93279e-33 -2.9253e-32 -2.19019e-32 -7.49863e-32 -5.25131e-32 -1.87956e-31 -1.23209e-31 -4.6099e-31 -2.83084e-31 -1.10715e-30 -6.3739e-31 -2.60577e-30 -1.40739e-30 -6.01464e-30 -3.04941e-30 -1.36253e-29 -6.487e-30 -3.03139e-29 -1.35542e-29 -6.62751e-29 -2.78233e-29 -1.42456e-28 -5.61151e-29 -3.01152e-28 -1.11183e-28 -6.26246e-28 -2.16353e-28 -1.28104e-27 -4.13284e-28 -2.57718e-27 -7.74552e-28 -5.09646e-27 -1.42353e-27 -9.89907e-27 -2.56614e-27 -1.88706e-26 -4.54479e-27 -3.53092e-26 -7.93287e-27 -6.49848e-26 -1.36978e-26 -1.1811e-25 -2.344e-26 -2.1294e-25 -3.98232e-26 -3.81594e-25 -6.72915e-26 -6.81536e-25 -1.12559e-25 -1.2172e-24 -1.8394e-25 -2.16881e-24 -2.89143e-25 -3.80066e-24 -4.34285e-25 -6.43556e-24 -6.19015e-25 -1.04883e-23 -8.26678e-25 -1.63705e-23 -1.01762e-24 -2.41654e-23 -1.16201e-24 -3.31199e-23 -1.2654e-24 -4.22816e-23 -1.30999e-24 -5.2591e-23 -1.27052e-24 -6.34562e-23 -1.17629e-24 -7.37654e-23 -1.01329e-24 -8.52984e-23 -7.52735e-25 -9.61591e-23 -4.48888e-25 -1.02569e-22 -7.08731e-26 -1.10601e-22 3.12744e-25 -1.10992e-22 7.03752e-25 -1.11395e-22 1.04611e-24 -1.07749e-22 1.3408e-24 -1.03322e-22 1.4995e-24 -9.33217e-23 1.61783e-24 -8.45178e-23 1.6368e-24 -7.29579e-23 1.61052e-24 -6.20099e-23 1.51375e-24 -5.14158e-23 1.35826e-24 -4.12126e-23 1.16119e-24 -3.20414e-23 9.12092e-25 -2.28683e-23 6.5136e-25 -1.48957e-23 4.25733e-25 -8.94261e-24 2.58303e-25 -5.01721e-24 1.50216e-25 -2.7186e-24 8.57675e-26 -1.45971e-24 4.86144e-26 -7.84381e-25 2.76569e-26 -4.26329e-25 1.58159e-26 -2.34052e-25 9.04256e-27 -1.28732e-25 5.14396e-27 -7.05372e-26 2.89916e-27 -3.83274e-26 1.61228e-27 -2.05641e-26 8.81477e-28 -1.08534e-26 4.72844e-28 -5.62401e-27 2.48809e-28 -2.8613e-27 1.28528e-28 -1.43068e-27 6.52532e-29 -7.03856e-28 3.2593e-29 -3.41035e-28 1.60271e-29 -1.62831e-28 7.76027e-30 -7.66221e-29 3.69891e-30 -3.55228e-29 1.73446e-30 -1.62146e-29 7.99384e-31 -7.28037e-30 3.61738e-31 -3.21207e-30 1.60546e-31 -1.39096e-30 6.98076e-32 -5.90546e-31 2.9707e-32 -2.4555e-31 1.23613e-32 -9.98956e-32 5.02524e-33 -3.97269e-32 1.99446e-33 -1.54318e-32 7.72337e-34 -5.85128e-33 2.91667e-34 -2.16448e-33 1.07376e-34 -7.80802e-34 3.85262e-35 -2.74593e-34 1.34705e-35 -9.41322e-35 4.58975e-36 -3.14545e-35 1.52416e-36 -1.02464e-35 4.93375e-37 -3.25437e-36 -1.00753e-36 1.55666e-37 -7.2669e-35 -1.27631e-34 -2.18693e-34 -4.01682e-34 -6.41864e-34 -1.23257e-33 -1.83733e-33 -3.68922e-33 -5.1297e-33 -1.07717e-32 -1.39707e-32 -3.06834e-32 -3.71256e-32 -8.52828e-32 -9.62944e-32 -2.31354e-31 -2.43889e-31 -6.12796e-31 -6.03491e-31 -1.58558e-30 -1.45981e-30 -4.00994e-30 -3.45423e-30 -9.91851e-30 -8.00089e-30 -2.40114e-29 -1.81538e-29 -5.69338e-29 -4.03785e-29 -1.32323e-28 -8.81007e-29 -3.01672e-28 -1.88679e-28 -6.75127e-28 -3.96837e-28 -1.48415e-27 -8.20013e-28 -3.20682e-27 -1.6652e-27 -6.81393e-27 -3.3235e-27 -1.42439e-26 -6.51888e-27 -2.93009e-26 -1.2562e-26 -5.93175e-26 -2.37674e-26 -1.18147e-25 -4.41114e-26 -2.31353e-25 -8.02359e-26 -4.44826e-25 -1.43025e-25 -8.38644e-25 -2.50332e-25 -1.55017e-24 -4.31839e-25 -2.81645e-24 -7.37362e-25 -5.05288e-24 -1.24839e-24 -8.99479e-24 -2.10073e-24 -1.59162e-23 -3.52388e-24 -2.81044e-23 -5.87657e-24 -4.97678e-23 -9.59937e-24 -8.84078e-23 -1.50805e-23 -1.54745e-22 -2.26784e-23 -2.61554e-22 -3.24535e-23 -4.27047e-22 -4.3587e-23 -6.71043e-22 -5.38504e-23 -9.98642e-22 -6.12664e-23 -1.37588e-21 -6.69391e-23 -1.74404e-21 -6.96281e-23 -2.17183e-21 -6.80274e-23 -2.63283e-21 -6.37663e-23 -3.07309e-21 -5.51198e-23 -3.59692e-21 -4.09299e-23 -4.03701e-21 -2.48809e-23 -4.21645e-21 -5.64302e-24 -4.40204e-21 1.36961e-23 -4.3748e-21 3.31627e-23 -4.33586e-21 5.08749e-23 -4.2621e-21 6.68371e-23 -4.17002e-21 7.6708e-23 -3.88432e-21 8.43104e-23 -3.58509e-21 8.5631e-23 -3.09379e-21 8.37482e-23 -2.59733e-21 7.85752e-23 -2.14311e-21 7.03428e-23 -1.70904e-21 6.04452e-23 -1.33531e-21 4.72752e-23 -9.44951e-22 3.35062e-23 -6.07375e-22 2.17567e-23 -3.60421e-22 1.31352e-23 -2.00888e-22 7.62525e-24 -1.08586e-22 4.36967e-24 -5.8484e-23 2.49761e-24 -3.17072e-23 1.43973e-24 -1.75019e-23 8.36085e-25 -9.78319e-24 4.8531e-25 -5.47359e-24 2.80057e-25 -3.04644e-24 1.59965e-25 -1.67888e-24 9.00722e-26 -9.1246e-25 4.98154e-26 -4.8727e-25 2.70129e-26 -2.5524e-25 1.43645e-26 -1.31219e-25 7.49887e-27 -6.63051e-26 3.84797e-27 -3.29749e-26 1.94293e-27 -1.61557e-26 9.65958e-28 -7.80189e-27 4.72961e-28 -3.71387e-27 2.28009e-28 -1.74202e-27 1.08162e-28 -8.04622e-28 5.04459e-29 -3.65639e-28 2.31083e-29 -1.63302e-28 1.03858e-29 -7.16036e-29 4.57479e-30 -3.07901e-29 1.97299e-30 -1.29707e-29 8.32317e-31 -5.34763e-30 3.43156e-31 -2.15581e-30 1.38167e-31 -8.49095e-31 5.42937e-32 -3.26506e-31 2.08108e-32 -1.22505e-31 7.77737e-33 -4.48264e-32 2.83297e-33 -1.59907e-32 1.00559e-33 -5.55969e-33 3.47799e-34 -1.88375e-33 1.17206e-34 -6.21967e-34 3.84852e-35 -2.0011e-34 -6.27139e-35 1.23102e-35 -4.80917e-33 -6.56856e-33 -1.42576e-32 -2.04092e-32 -4.12115e-32 -6.17965e-32 -1.16158e-31 -1.82432e-31 -3.19312e-31 -5.25203e-31 -8.56286e-31 -1.4748e-30 -2.24078e-30 -4.04049e-30 -5.72441e-30 -1.08041e-29 -1.42833e-29 -2.82089e-29 -3.48281e-29 -7.1955e-29 -8.30435e-29 -1.79422e-28 -1.93751e-28 -4.37643e-28 -4.42639e-28 -1.04496e-27 -9.90896e-28 -2.44417e-27 -2.17512e-27 -5.60459e-27 -4.68492e-27 -1.26083e-26 -9.9072e-27 -2.78469e-26 -2.05807e-26 -6.04238e-26 -4.2017e-26 -1.28893e-25 -8.43308e-26 -2.70456e-25 -1.66428e-25 -5.58526e-25 -3.22945e-25 -1.13564e-24 -6.15938e-25 -2.27379e-24 -1.15367e-24 -4.4816e-24 -2.1191e-24 -8.68591e-24 -3.81153e-24 -1.65212e-23 -6.7112e-24 -3.07771e-23 -1.15953e-23 -5.61402e-23 -1.97449e-23 -1.00588e-22 -3.32905e-23 -1.77895e-22 -5.566e-23 -3.12023e-22 -9.26153e-23 -5.43711e-22 -1.54077e-22 -9.47502e-22 -2.56244e-22 -1.66285e-21 -4.18238e-22 -2.94595e-21 -6.56176e-22 -5.13535e-21 -9.8915e-22 -8.64821e-21 -1.42604e-21 -1.41977e-20 -1.93254e-21 -2.26342e-20 -2.4027e-21 -3.41425e-20 -2.71788e-21 -4.75036e-20 -2.97815e-21 -5.94036e-20 -3.11943e-21 -7.39812e-20 -3.06985e-21 -9.01477e-20 -2.92609e-21 -1.05035e-19 -2.53675e-21 -1.24798e-19 -1.86975e-21 -1.39594e-19 -1.13833e-21 -1.42168e-19 -3.22413e-22 -1.41854e-19 4.87083e-22 -1.40336e-19 1.28533e-21 -1.36403e-19 2.05302e-21 -1.36924e-19 2.78226e-21 -1.37023e-19 3.31371e-21 -1.32948e-19 3.72667e-21 -1.25334e-19 3.79456e-21 -1.07994e-19 3.67331e-21 -8.94254e-20 3.43517e-21 -7.37249e-20 3.06348e-21 -5.84805e-20 2.64827e-21 -4.61549e-20 2.05552e-21 -3.22109e-20 1.43868e-21 -2.02656e-20 9.23998e-22 -1.17741e-20 5.54519e-22 -6.50632e-21 3.21292e-22 -3.51517e-21 1.84778e-22 -1.90062e-21 1.06608e-22 -1.04049e-21 6.24367e-23 -5.85268e-22 3.69335e-23 -3.34489e-22 2.18164e-23 -1.90982e-22 1.27929e-23 -1.08225e-22 7.41408e-24 -6.05673e-23 4.23048e-24 -3.33703e-23 2.36829e-24 -1.80415e-23 1.29873e-24 -9.55716e-24 6.98154e-25 -4.96637e-24 3.68479e-25 -2.53705e-24 1.91222e-25 -1.27625e-24 9.76772e-26 -6.32824e-25 4.91403e-26 -3.09412e-25 2.4352e-26 -1.49162e-25 1.18841e-26 -7.08665e-26 5.70784e-27 -3.31567e-26 2.69584e-27 -1.52636e-26 1.25088e-27 -6.90656e-27 5.6963e-28 -3.06857e-27 2.54317e-28 -1.33728e-27 1.11206e-28 -5.71059e-28 4.75826e-29 -2.38719e-28 1.99046e-29 -9.75997e-29 8.13415e-30 -3.89945e-29 3.24509e-30 -1.52135e-29 1.26312e-30 -5.79224e-30 4.7946e-31 -2.15088e-30 1.77413e-31 -7.78649e-31 6.39756e-32 -2.74713e-31 2.24778e-32 -9.44327e-32 7.69392e-33 -3.16227e-32 2.56536e-33 -1.03141e-32 -3.27527e-33 8.33007e-34 -2.707e-31 -2.80596e-31 -7.89796e-31 -8.60345e-31 -2.24627e-30 -2.56958e-30 -6.22924e-30 -7.47941e-30 -1.68478e-29 -2.12239e-29 -4.44556e-29 -5.87315e-29 -1.14485e-28 -1.58547e-28 -2.87878e-28 -4.17707e-28 -7.07183e-28 -1.07457e-27 -1.69813e-27 -2.70081e-27 -3.98841e-27 -6.63626e-27 -9.16866e-27 -1.5952e-26 -2.06437e-26 -3.75384e-26 -4.55562e-26 -8.65405e-26 -9.86004e-26 -1.95598e-25 -2.09443e-25 -4.3374e-25 -4.36898e-25 -9.44342e-25 -8.95506e-25 -2.02014e-24 -1.80451e-24 -4.24916e-24 -3.57639e-24 -8.79457e-24 -6.97365e-24 -1.79235e-23 -1.33791e-23 -3.59904e-23 -2.52441e-23 -7.12234e-23 -4.6788e-23 -1.38851e-22 -8.50046e-23 -2.6623e-22 -1.51057e-22 -5.00593e-22 -2.62456e-22 -9.20635e-22 -4.47185e-22 -1.656e-21 -7.50687e-22 -2.92416e-21 -1.24721e-21 -5.089e-21 -2.05384e-21 -8.76497e-21 -3.37351e-21 -1.49843e-20 -5.5637e-21 -2.57463e-20 -9.23144e-21 -4.48367e-20 -1.50126e-20 -7.91829e-20 -2.34803e-20 -1.36137e-19 -3.56131e-20 -2.28049e-19 -5.21317e-20 -3.80669e-19 -7.16791e-20 -6.25681e-19 -9.01039e-20 -9.62505e-19 -1.00699e-19 -1.36149e-18 -1.1056e-19 -1.64515e-18 -1.16689e-19 -2.04179e-18 -1.15014e-19 -2.4878e-18 -1.11823e-19 -2.85689e-18 -9.73523e-20 -3.43344e-18 -7.09335e-20 -3.83132e-18 -4.26339e-20 -3.80119e-18 -1.43262e-20 -3.58283e-18 1.35519e-20 -3.60352e-18 4.02813e-20 -3.42525e-18 6.76684e-20 -3.4856e-18 9.50078e-20 -3.54627e-18 1.18716e-19 -3.61248e-18 1.36997e-19 -3.47637e-18 1.39726e-19 -2.99679e-18 1.33728e-19 -2.4586e-18 1.25181e-19 -2.05377e-18 1.11204e-19 -1.62745e-18 9.72212e-20 -1.32327e-18 7.44926e-20 -9.0328e-19 5.10784e-20 -5.50292e-19 3.21429e-20 -3.06613e-19 1.91377e-20 -1.66702e-19 1.109e-20 -9.05795e-20 6.40639e-21 -4.9385e-20 3.7343e-21 -2.73019e-20 2.22985e-21 -1.56993e-20 1.34929e-21 -9.21881e-21 8.13767e-22 -5.39483e-21 4.86092e-22 -3.12482e-21 2.86225e-22 -1.77836e-21 1.65649e-22 -9.93494e-22 9.39327e-23 -5.43911e-22 5.21212e-23 -2.91479e-22 2.83368e-23 -1.5314e-22 1.51289e-23 -7.9119e-23 7.94639e-24 -4.02863e-23 4.11064e-24 -2.02376e-23 2.09523e-24 -1.00312e-23 1.05229e-24 -4.90433e-24 5.20535e-25 -2.36343e-24 2.53452e-25 -1.12167e-24 1.21371e-25 -5.23749e-25 5.7108e-26 -2.40372e-25 2.63768e-26 -1.0832e-25 1.19471e-26 -4.78812e-26 5.30151e-27 -2.07411e-26 2.30269e-27 -8.79644e-27 9.78141e-28 -3.64925e-27 4.06029e-28 -1.47966e-27 1.64588e-28 -5.85943e-28 6.51111e-29 -2.26456e-28 2.51247e-29 -8.53664e-29 9.45245e-30 -3.1372e-29 3.46602e-30 -1.12348e-29 1.23834e-30 -3.91932e-30 4.31007e-31 -1.33155e-30 1.46109e-31 -4.40435e-31 -1.41779e-31 4.82293e-32 -1.28679e-29 -9.79289e-30 -3.69097e-29 -2.96282e-29 -1.03199e-28 -8.7279e-29 -2.81346e-28 -2.50461e-28 -7.48126e-28 -7.00448e-28 -1.94104e-27 -1.90979e-27 -4.91589e-27 -5.07878e-27 -1.21588e-26 -1.31798e-26 -2.93855e-26 -3.33941e-26 -6.94359e-26 -8.26617e-26 -1.60514e-25 -2.00027e-25 -3.63249e-25 -4.73496e-25 -8.05277e-25 -1.0972e-24 -1.74995e-24 -2.4906e-24 -3.73024e-24 -5.54218e-24 -7.80482e-24 -1.20987e-23 -1.60395e-23 -2.59301e-23 -3.2397e-23 -5.46051e-23 -6.43566e-23 -1.13085e-22 -1.25813e-22 -2.30532e-22 -2.42168e-22 -4.63057e-22 -4.59036e-22 -9.17266e-22 -8.56418e-22 -1.79274e-21 -1.56992e-21 -3.45509e-21 -2.81904e-21 -6.55018e-21 -4.94489e-21 -1.21645e-20 -8.47167e-21 -2.2074e-20 -1.42252e-20 -3.91666e-20 -2.35e-20 -6.81645e-20 -3.83435e-20 -1.1636e-19 -6.19585e-20 -1.95655e-19 -1.00367e-19 -3.26832e-19 -1.64309e-19 -5.55222e-19 -2.71875e-19 -9.65027e-19 -4.36288e-19 -1.69238e-18 -6.79165e-19 -2.79385e-18 -1.04815e-18 -4.69029e-18 -1.58323e-18 -8.19826e-18 -2.2223e-18 -1.42937e-17 -2.84364e-18 -2.23321e-17 -3.07556e-18 -3.23638e-17 -3.37148e-18 -3.54692e-17 -3.56693e-18 -4.33081e-17 -3.47656e-18 -5.17333e-17 -3.43509e-18 -5.91319e-17 -3.00512e-18 -7.05641e-17 -2.16054e-18 -7.82892e-17 -1.26268e-18 -7.59058e-17 -4.91282e-19 -6.62112e-17 2.88349e-19 -6.92479e-17 1.01562e-18 -6.55052e-17 1.78863e-18 -6.48517e-17 2.58904e-18 -6.74916e-17 3.42254e-18 -7.32227e-17 4.05114e-18 -7.17904e-17 4.14745e-18 -6.26693e-17 3.94225e-18 -5.1518e-17 3.74601e-18 -4.40598e-17 3.32922e-18 -3.54763e-17 3.00214e-18 -3.1647e-17 2.25216e-18 -2.09151e-17 1.49659e-18 -1.23007e-17 9.03854e-19 -6.3182e-18 5.2982e-19 -3.28779e-18 3.08964e-19 -1.81477e-18 1.80073e-19 -1.01578e-18 1.06054e-19 -5.65437e-19 6.47717e-20 -3.31991e-19 4.02903e-20 -2.00914e-19 2.49178e-20 -1.21103e-19 1.52217e-20 -7.22937e-20 9.11937e-21 -4.19104e-20 5.35439e-21 -2.37049e-20 3.07638e-21 -1.31255e-20 1.72793e-21 -7.11531e-21 9.50425e-22 -3.78032e-21 5.13545e-22 -1.97603e-21 2.73234e-22 -1.01933e-21 1.43309e-22 -5.19456e-22 7.41149e-23 -2.61459e-22 3.77846e-23 -1.29878e-22 1.89776e-23 -6.36048e-23 9.38301e-24 -3.06748e-23 4.5628e-24 -1.45523e-23 2.18024e-24 -6.78391e-24 1.02272e-24 -3.10455e-24 4.70528e-25 -1.39341e-24 2.12128e-25 -6.12809e-25 9.3631e-26 -2.63852e-25 4.04289e-26 -1.11127e-25 1.7064e-26 -4.57463e-26 7.03531e-27 -1.83923e-26 2.83152e-27 -7.21692e-27 1.11185e-27 -2.76201e-27 4.25751e-28 -1.0304e-27 1.58916e-28 -3.74518e-28 5.78011e-29 -1.32568e-28 2.04805e-29 -4.56816e-29 7.06758e-30 -1.53181e-29 -4.99648e-30 2.37478e-30 -5.15119e-28 -2.72716e-28 -1.45082e-27 -8.15064e-28 -3.98317e-27 -2.37035e-27 -1.06634e-26 -6.71106e-27 -2.78466e-26 -1.85075e-26 -7.09622e-26 -4.97384e-26 -1.76544e-25 -1.30329e-25 -4.2901e-25 -3.33146e-25 -1.01883e-24 -8.31234e-25 -2.36597e-24 -2.0257e-24 -5.37588e-24 -4.82466e-24 -1.19589e-23 -1.12379e-23 -2.60623e-23 -2.56163e-23 -5.56789e-23 -5.71822e-23 -1.16685e-22 -1.25091e-22 -2.40039e-22 -2.68375e-22 -4.85076e-22 -5.65153e-22 -9.63711e-22 -1.16925e-21 -1.88393e-21 -2.37921e-21 -3.62703e-21 -4.76744e-21 -6.88247e-21 -9.42001e-21 -1.28767e-20 -1.8378e-20 -2.37381e-20 -3.54311e-20 -4.30076e-20 -6.74546e-20 -7.62513e-20 -1.26322e-19 -1.31943e-19 -2.31348e-19 -2.22945e-19 -4.1453e-19 -3.6895e-19 -7.27664e-19 -5.97867e-19 -1.24914e-18 -9.52464e-19 -2.073e-18 -1.50417e-18 -3.37202e-18 -2.4098e-18 -5.50887e-18 -3.9389e-18 -9.3782e-18 -6.47529e-18 -1.65337e-17 -9.98353e-18 -2.84024e-17 -1.55862e-17 -4.20275e-17 -2.5209e-17 -7.43791e-17 -4.04317e-17 -1.44319e-16 -5.77048e-17 -1.99773e-16 -7.57517e-17 -4.40774e-17 -7.44308e-17 5.53707e-17 -8.04339e-17 -2.35826e-17 -8.36427e-17 1.25032e-17 -8.14218e-17 4.61542e-17 -8.02678e-17 -4.81253e-17 -7.03287e-17 -6.54614e-17 -5.00367e-17 -8.41401e-17 -2.7807e-17 -8.02925e-17 -1.24994e-17 -2.91228e-17 4.11086e-18 3.57056e-16 1.96154e-17 2.86336e-16 3.49978e-17 1.53405e-16 5.26526e-17 -4.03154e-17 7.47624e-17 -8.1402e-17 9.06355e-17 -8.0105e-17 9.43003e-17 -6.59863e-17 9.00479e-17 -4.67989e-17 8.7775e-17 -7.3565e-18 7.93878e-17 -3.65807e-17 7.86385e-17 3.44553e-17 5.71747e-17 -5.72954e-17 3.67097e-17 -2.38922e-16 2.04536e-17 -1.07754e-16 1.14828e-17 -4.97584e-17 6.80642e-18 -2.74658e-17 4.07493e-18 -1.68926e-17 2.41782e-18 -9.32019e-18 1.50861e-18 -5.48154e-18 9.67665e-19 -3.38581e-18 6.16771e-19 -2.10434e-18 3.8854e-19 -1.32239e-18 2.37269e-19 -7.82693e-19 1.4114e-19 -4.45087e-19 8.2075e-20 -2.47726e-19 4.66697e-20 -1.35648e-19 2.59803e-20 -7.28772e-20 1.42158e-20 -3.85591e-20 7.67008e-21 -2.01776e-20 4.08537e-21 -1.04524e-20 2.14795e-21 -5.35512e-21 1.11398e-21 -2.70951e-21 5.69345e-22 -1.35175e-21 2.86468e-22 -6.63973e-22 1.41753e-22 -3.20686e-22 6.89171e-23 -1.52121e-22 3.28899e-23 -7.08018e-23 1.53945e-23 -3.23038e-23 7.06112e-24 -1.44364e-23 3.17136e-24 -6.31415e-24 1.39363e-24 -2.70074e-24 5.98777e-25 -1.12885e-24 2.51362e-25 -4.60731e-25 1.03033e-25 -1.83488e-25 4.12135e-26 -7.12556e-26 1.60794e-26 -2.69651e-26 6.11606e-27 -9.93799e-27 2.26714e-27 -3.56513e-27 8.18737e-28 -1.24426e-27 2.87966e-28 -4.22252e-28 -1.39269e-28 9.86184e-29 -1.72953e-26 -5.79914e-27 -4.7756e-26 -1.71976e-26 -1.28544e-25 -4.95567e-26 -3.37405e-25 -1.3885e-25 -8.63953e-25 -3.78533e-25 -2.15897e-24 -1.00471e-24 -5.26764e-24 -2.59792e-24 -1.25549e-23 -6.54831e-24 -2.92457e-23 -1.61001e-23 -6.66196e-23 -3.86369e-23 -1.48483e-22 -9.05589e-23 -3.23995e-22 -2.07441e-22 -6.92539e-22 -4.64699e-22 -1.451e-21 -1.01872e-21 -2.9819e-21 -2.18705e-21 -6.01517e-21 -4.60172e-21 -1.19206e-20 -9.49823e-21 -2.32316e-20 -1.92532e-20 -4.45744e-20 -3.83781e-20 -8.43077e-20 -7.53506e-20 -1.57379e-19 -1.45993e-19 -2.9016e-19 -2.79698e-19 -5.2795e-19 -5.30713e-19 -9.44192e-19 -9.96935e-19 -1.6499e-18 -1.84058e-18 -2.81781e-18 -3.30737e-18 -4.70905e-18 -5.88142e-18 -7.68534e-18 -1.03146e-17 -1.21066e-17 -1.7444e-17 -1.86594e-17 -2.71552e-17 -2.88246e-17 -4.25213e-17 -4.62899e-17 -6.99099e-17 -7.67762e-17 -1.23658e-16 -1.23694e-16 -1.64131e-16 -1.7104e-16 -2.1265e-17 -2.8169e-16 -1.07968e-17 -5.06148e-16 1.20424e-17 -6.76507e-16 -2.05125e-17 -8.36939e-16 -2.4966e-16 -1.12284e-15 1.17926e-16 -1.42527e-15 1.49004e-17 -1.63998e-15 -7.57029e-17 -1.75028e-15 -1.19032e-16 -1.83519e-15 -1.90951e-17 -2.02005e-15 -2.70601e-16 -2.00316e-15 -5.22308e-16 -1.52586e-15 -9.909e-16 -8.31226e-16 -8.19102e-16 -5.57565e-16 -7.93121e-16 6.83192e-17 -3.99629e-16 6.47313e-16 -4.69413e-16 8.11603e-16 -3.41844e-16 1.54548e-15 -7.84292e-16 2.25105e-15 -1.38993e-15 2.7694e-15 -1.52879e-15 2.68136e-15 -1.29005e-15 2.39977e-15 -1.32455e-15 2.17697e-15 -1.2913e-15 1.84517e-15 -1.17726e-15 1.43147e-15 -9.34031e-16 9.72464e-16 -6.90269e-16 7.98907e-16 -8.8719e-16 3.91192e-16 -3.45579e-16 1.95051e-16 -1.46498e-16 1.15706e-16 -8.49062e-17 7.61699e-17 -1.90862e-16 4.48249e-17 -1.34057e-16 2.80341e-17 -7.38554e-17 1.83649e-17 -4.41166e-17 1.20777e-17 -2.75328e-17 8.01493e-18 -1.9278e-17 5.00084e-18 -1.16272e-17 2.99328e-18 -6.48971e-18 1.75126e-18 -3.55143e-18 1.00687e-18 -1.95074e-18 5.67426e-19 -1.05818e-18 3.14659e-19 -5.66332e-19 1.72454e-19 -3.01197e-19 9.3511e-20 -1.59195e-19 5.01252e-20 -8.33575e-20 2.65257e-20 -4.31248e-20 1.38375e-20 -2.19926e-20 7.1061e-21 -1.10353e-20 3.58808e-21 -5.43985e-21 1.77949e-21 -2.63116e-21 8.66034e-22 -1.24746e-21 4.13273e-22 -5.7923e-22 1.93233e-22 -2.63206e-22 8.84635e-23 -1.16963e-22 3.96274e-23 -5.07936e-23 1.73576e-23 -2.1541e-23 7.42965e-24 -8.91462e-24 3.10577e-24 -3.59748e-24 1.2672e-24 -1.41459e-24 5.04386e-25 -5.41594e-25 1.95758e-25 -2.0175e-25 7.40512e-26 -7.30681e-26 2.72923e-26 -2.57095e-26 9.79708e-27 -8.78109e-27 -2.90909e-27 3.42438e-27 -4.82322e-25 -8.48831e-26 -1.30315e-24 -2.53901e-25 -3.43233e-24 -7.34536e-25 -8.81609e-24 -2.0586e-24 -2.20912e-23 -5.59694e-24 -5.40247e-23 -1.47782e-23 -1.28998e-22 -3.793e-23 -3.00882e-22 -9.47094e-23 -6.85863e-22 -2.30262e-22 -1.52869e-21 -5.45519e-22 -3.3332e-21 -1.2603e-21 -7.11354e-21 -2.84128e-21 -1.48672e-20 -6.25487e-21 -3.04473e-20 -1.34551e-20 -6.1142e-20 -2.83031e-20 -1.2049e-19 -5.82667e-20 -2.33247e-19 -1.17511e-19 -4.44086e-19 -2.32456e-19 -8.32837e-19 -4.5174e-19 -1.54123e-18 -8.64159e-19 -2.81976e-18 -1.63143e-18 -5.10787e-18 -3.04921e-18 -9.15637e-18 -5.66374e-18 -1.6123e-17 -1.0499e-17 -2.76126e-17 -1.90671e-17 -4.6759e-17 -3.25767e-17 -7.80085e-17 -5.88225e-17 -1.25345e-16 -1.06866e-16 -1.85118e-16 -1.48056e-16 -2.74537e-16 -4.2265e-17 -4.26655e-16 4.38749e-18 -7.11735e-16 6.14955e-17 -9.47006e-16 1.13191e-16 -1.08777e-15 -4.37292e-17 -1.68645e-15 3.56396e-16 -3.1328e-15 1.0268e-15 -6.31407e-15 2.57721e-15 -1.33571e-14 5.67215e-15 -2.63327e-14 1.03757e-14 -4.46218e-14 1.37693e-14 -6.30718e-14 1.10533e-14 -7.7708e-14 4.18594e-15 -8.66098e-14 -4.35338e-15 -9.60034e-14 -6.31167e-15 -1.05442e-13 -1.00364e-14 -1.06013e-13 -2.22276e-14 -8.28952e-14 -4.82052e-14 -4.88305e-14 -5.82013e-14 -2.02411e-14 -4.95554e-14 -3.71533e-16 -4.00443e-14 1.77931e-14 -3.86481e-14 4.16618e-14 -4.34599e-14 7.71071e-14 -6.00484e-14 1.12415e-13 -6.79343e-14 1.38928e-13 -7.16409e-14 1.34692e-13 -5.6909e-14 1.22374e-13 -6.02019e-14 1.12284e-13 -6.45296e-14 9.68723e-14 -5.39156e-14 7.21732e-14 -3.99962e-14 4.36446e-14 -2.68802e-14 2.11719e-14 -1.90237e-14 8.86352e-15 -1.29729e-14 3.63512e-15 -6.95358e-15 1.72003e-15 -3.0696e-15 1.15889e-15 -1.79136e-15 7.43202e-16 -5.71082e-16 4.36057e-16 -2.53901e-16 2.76661e-16 -1.38496e-16 1.82967e-16 -1.01123e-16 1.35482e-16 -7.16806e-17 8.62643e-17 -1.19401e-16 5.07539e-17 -7.58559e-17 2.92405e-17 -3.803e-17 1.68913e-17 -2.03783e-17 9.62797e-18 -1.10922e-17 5.41078e-18 -5.93981e-18 3.02015e-18 -3.20707e-18 1.67469e-18 -1.73916e-18 9.19769e-19 -9.36879e-19 4.9905e-19 -4.98503e-19 2.66923e-19 -2.61115e-19 1.4049e-19 -1.34329e-19 7.26643e-20 -6.77643e-20 3.68911e-20 -3.34799e-20 1.8368e-20 -1.61843e-20 8.9625e-21 -7.64872e-21 4.28306e-21 -3.53152e-21 2.0035e-21 -1.59193e-21 9.16842e-22 -7.00128e-22 4.10237e-22 -3.00194e-22 1.79378e-22 -1.25384e-22 7.66056e-23 -5.09686e-23 3.19357e-23 -2.01459e-23 1.29896e-23 -7.73487e-24 5.15245e-24 -2.88122e-24 1.99222e-24 -1.03978e-24 7.50572e-25 -3.6291e-25 2.75433e-25 -1.22234e-25 -3.96242e-26 9.84164e-26 -1.10258e-23 -5.5673e-25 -2.90707e-23 -1.87712e-24 -7.47291e-23 -5.87282e-24 -1.87358e-22 -1.73708e-23 -4.58291e-22 -4.90837e-23 -1.09402e-21 -1.33351e-22 -2.54951e-21 -3.49249e-22 -5.80255e-21 -8.82461e-22 -1.29029e-20 -2.15672e-21 -2.80436e-20 -5.10835e-21 -5.95984e-20 -1.17441e-20 -1.239e-19 -2.62388e-20 -2.5208e-19 -5.70291e-20 -5.02188e-19 -1.20691e-19 -9.80243e-19 -2.48914e-19 -1.87627e-18 -5.00686e-19 -3.52544e-18 -9.83171e-19 -6.51183e-18 -1.88673e-18 -1.18459e-17 -3.54355e-18 -2.12745e-17 -6.52651e-18 -3.7834e-17 -1.18222e-17 -6.68683e-17 -2.11436e-17 -1.17932e-16 -3.75385e-17 -2.03709e-16 -7.06235e-17 -3.30875e-16 -4.19264e-17 -5.67604e-16 -7.55253e-19 -9.78868e-16 1.52234e-16 -1.40257e-15 1.32302e-16 -1.76089e-15 5.2396e-17 -2.89844e-15 1.02542e-15 -4.99035e-15 1.97704e-15 -8.53824e-15 3.51289e-15 -1.50536e-14 5.96777e-15 -2.62036e-14 1.03105e-14 -4.79139e-14 1.94864e-14 -9.46408e-14 4.07129e-14 -2.04707e-13 9.50779e-14 -4.665e-13 2.28275e-13 -1.00692e-12 4.69727e-13 -1.82025e-12 6.76607e-13 -2.67255e-12 6.07782e-13 -3.35432e-12 3.29661e-13 -3.74757e-12 -6.06438e-14 -4.14359e-12 -1.44606e-13 -4.58184e-12 -2.02494e-13 -4.7037e-12 -6.23635e-13 -3.80152e-12 -1.7281e-12 -2.31377e-12 -2.28838e-12 -1.01798e-12 -1.99706e-12 -1.31369e-13 -1.56593e-12 6.56034e-13 -1.47774e-12 1.6869e-12 -1.70308e-12 3.19885e-12 -2.33314e-12 4.66729e-12 -2.54355e-12 5.74028e-12 -2.56352e-12 5.58174e-12 -1.89766e-12 5.17267e-12 -2.09367e-12 4.86741e-12 -2.34829e-12 4.2526e-12 -1.91958e-12 3.17458e-12 -1.35668e-12 1.90465e-12 -8.87126e-13 9.293e-13 -6.71616e-13 4.00219e-13 -5.1023e-13 1.67207e-13 -2.85843e-13 7.43394e-14 -1.27157e-13 3.64342e-14 -5.23121e-14 1.91576e-14 -2.197e-14 1.05701e-14 -9.58543e-15 5.70696e-15 -4.32186e-15 2.954e-15 -2.022e-15 1.58304e-15 -9.97413e-16 1.0805e-15 -5.54161e-16 7.16113e-16 -9.63915e-17 3.7916e-16 -5.03702e-17 2.14388e-16 -5.60014e-17 1.23052e-16 -8.75625e-17 6.94504e-17 -4.2494e-17 3.9511e-17 -2.25461e-17 2.25744e-17 -1.26637e-17 1.28138e-17 -7.06732e-18 7.18633e-18 -3.88215e-18 3.96941e-18 -2.09273e-18 2.15479e-18 -1.1046e-18 1.148e-18 -5.69961e-19 5.99625e-19 -2.87097e-19 3.06817e-19 -1.41019e-19 1.53705e-19 -6.74805e-20 7.53535e-20 -3.14284e-20 3.61368e-20 -1.42318e-20 1.69457e-20 -6.25851e-21 7.76701e-21 -2.66867e-21 3.47816e-21 -1.10124e-21 1.52105e-21 -4.38637e-22 6.4935e-22 -1.68542e-22 2.70513e-22 -6.22955e-23 1.09923e-22 -2.20066e-23 4.35498e-23 -7.35502e-24 1.6814e-23 -2.2847e-24 6.32312e-24 -6.35988e-25 -1.44066e-25 2.31483e-24 -2.09275e-22 8.10193e-25 -5.30289e-22 1.6482e-24 -1.31506e-21 3.02714e-24 -3.19206e-21 4.61115e-24 -7.5853e-21 4.02567e-24 -1.76195e-20 -1.0056e-22 -3.99235e-20 -7.1664e-22 -8.82842e-20 -2.61404e-21 -1.906e-19 -7.77511e-21 -4.01869e-19 -2.07261e-20 -8.27712e-19 -5.13142e-20 -1.66578e-18 -1.20041e-19 -3.27658e-18 -2.67865e-19 -6.30118e-18 -5.73479e-19 -1.18516e-17 -1.18238e-18 -2.18131e-17 -2.35166e-18 -3.93154e-17 -4.5164e-18 -6.94708e-17 -8.37042e-18 -1.20553e-16 -1.49749e-17 -2.0598e-16 -2.58688e-17 -3.47797e-16 -4.33919e-17 -5.83356e-16 -4.52441e-17 -1.03734e-15 -1.20419e-17 -9.55207e-16 6.37076e-17 -1.54506e-15 2.69628e-16 -3.16916e-15 1.16991e-15 -7.26229e-15 6.99692e-16 -1.69419e-14 -5.88542e-15 -5.51279e-14 3.67829e-14 -1.16318e-13 5.91885e-14 -2.0606e-13 8.53493e-14 -3.88914e-13 1.80571e-13 -6.78718e-13 2.83281e-13 -1.09932e-12 4.16152e-13 -1.71134e-12 6.09855e-13 -2.78517e-12 1.03781e-12 -5.31005e-12 2.18606e-12 -1.24837e-11 6.22897e-12 -3.16946e-11 1.75293e-11 -6.49723e-11 3.00806e-11 -9.63943e-11 2.65582e-11 -1.2029e-10 1.49185e-11 -1.29554e-10 -2.55921e-12 -1.36527e-10 -7.01077e-12 -1.46029e-10 -6.69198e-12 -1.47412e-10 -1.71508e-11 -1.17028e-10 -5.11427e-11 -6.72606e-11 -7.00993e-11 -2.7463e-11 -5.76698e-11 -2.93385e-12 -4.1845e-11 1.79389e-11 -3.84784e-11 4.74119e-11 -4.66233e-11 9.41523e-11 -6.71583e-11 1.42014e-10 -7.33846e-11 1.7577e-10 -6.76977e-11 1.75675e-10 -4.55128e-11 1.71198e-10 -5.15147e-11 1.70328e-10 -6.02413e-11 1.53164e-10 -4.39122e-11 1.14306e-10 -2.32839e-11 6.67836e-11 -1.06073e-11 3.25668e-11 -1.21737e-11 1.48809e-11 -1.3015e-11 6.75258e-12 -8.00491e-12 3.22582e-12 -3.64065e-12 1.66656e-12 -1.48588e-12 9.09228e-13 -6.07377e-13 5.18554e-13 -2.42561e-13 2.82997e-13 -8.71097e-14 1.41556e-13 -2.11872e-14 6.17247e-14 4.63886e-15 1.67361e-14 1.36823e-14 9.0084e-15 -6.30139e-15 3.78914e-15 2.15656e-16 1.65779e-15 3.04556e-17 1.2723e-15 -1.73668e-16 6.55361e-16 3.57751e-17 3.69302e-16 -2.39985e-17 2.20468e-16 -5.77188e-17 1.30892e-16 -3.25367e-17 7.65796e-17 -1.78511e-17 4.40324e-17 -9.64258e-18 2.48354e-17 -5.08294e-18 1.37237e-17 -2.61174e-18 7.42246e-18 -1.30232e-18 3.92675e-18 -6.27776e-19 2.03121e-18 -2.91126e-19 1.02703e-18 -1.29009e-19 5.07467e-19 -5.40714e-20 2.44978e-19 -2.10548e-20 1.15507e-19 -7.34107e-21 5.31728e-20 -2.07705e-21 2.38863e-20 -2.87788e-22 1.04947e-20 1.47216e-23 4.51553e-21 1.69378e-23 1.90214e-21 1.15062e-23 7.8427e-22 6.51309e-24 3.16458e-22 3.32758e-24 1.24956e-22 1.58555e-24 7.16809e-25 4.82795e-23 -3.85904e-21 4.67746e-23 -9.21846e-21 1.06969e-22 -2.15466e-20 2.3843e-22 -4.92789e-20 5.17026e-22 -1.1028e-19 1.08939e-21 -2.41502e-19 2.2271e-21 -5.17554e-19 4.4092e-21 -1.08523e-18 8.43176e-21 -2.22591e-18 1.55124e-20 -4.46432e-18 2.72921e-20 -8.75143e-18 4.54846e-20 -1.67599e-17 7.06561e-20 -3.13449e-17 9.90171e-20 -5.72265e-17 1.15546e-19 -1.01867e-16 8.01267e-20 -1.76596e-16 -4.98578e-19 -2.97489e-16 -2.70661e-18 -4.86522e-16 -6.91476e-18 -7.71964e-16 -1.38334e-17 -1.19425e-15 -1.21616e-17 -1.28188e-15 -2.78123e-17 -1.69589e-15 -5.47966e-17 -1.85013e-15 -2.00556e-16 -1.44155e-15 -7.13872e-16 8.77746e-16 -3.24849e-15 2.92112e-15 -9.21631e-15 -1.65127e-13 -2.60754e-14 -9.85968e-13 -9.42925e-14 -2.22995e-12 -3.79738e-13 -2.83468e-12 -1.40643e-12 -6.7629e-12 3.82912e-12 -1.68029e-11 9.85998e-12 -3.15444e-11 1.43664e-11 -4.70088e-11 1.4287e-11 -5.71582e-11 9.40987e-12 -6.7161e-11 9.52619e-12 -8.64375e-11 1.65435e-11 -1.7693e-10 7.59445e-11 -5.72449e-10 3.67353e-10 -1.45987e-09 8.30014e-10 -2.20561e-09 6.28799e-10 -2.53543e-09 1.88463e-10 -2.47519e-09 -2.83288e-10 -2.31764e-09 -4.25604e-10 -2.24024e-09 -3.76206e-10 -2.11407e-09 -4.71719e-10 -1.56884e-09 -9.38518e-10 -7.80891e-10 -1.17878e-09 -1.93573e-10 -9.25403e-10 1.21594e-10 -6.36546e-10 4.21817e-10 -6.25015e-10 9.12772e-10 -8.06939e-10 1.68175e-09 -1.13625e-09 2.3969e-09 -1.13881e-09 2.8421e-09 -9.18397e-10 2.84879e-09 -5.02316e-10 2.91979e-09 -5.83525e-10 3.05929e-09 -6.6162e-10 2.79374e-09 -2.11514e-10 1.97633e-09 3.25491e-10 1.00102e-09 5.13868e-10 4.40137e-10 1.84973e-10 2.2071e-10 -4.86229e-11 1.29223e-10 -6.59583e-11 8.20134e-11 -3.19502e-11 5.46157e-11 -1.04901e-11 3.36511e-11 2.21497e-12 1.80346e-11 8.25333e-12 7.15237e-12 8.40217e-12 3.27433e-12 2.77222e-12 2.75913e-12 -1.70941e-12 6.18797e-13 -3.20996e-13 6.90715e-14 -9.75636e-14 7.1053e-15 -2.76117e-14 3.09876e-15 -1.03145e-14 2.37232e-15 -2.55272e-15 1.7724e-15 -6.2181e-16 1.41163e-15 -1.78445e-16 1.62606e-15 -4.69232e-17 9.98812e-16 -1.9151e-17 6.00379e-16 -6.07224e-18 3.57471e-16 -3.83184e-18 2.09183e-16 -1.50619e-19 1.20343e-16 2.73129e-19 6.79066e-17 3.1414e-19 3.75485e-17 2.59776e-19 2.03313e-17 1.86139e-19 1.07755e-17 1.2219e-19 5.58936e-18 7.53162e-20 2.83785e-18 4.41751e-20 1.41056e-18 2.48531e-20 6.86475e-19 1.34808e-20 3.27138e-19 7.07447e-21 1.52626e-19 3.59973e-21 6.97037e-20 1.77887e-21 3.11586e-20 8.54785e-22 1.36314e-20 3.99751e-22 5.83529e-21 1.82064e-22 2.4438e-21 8.07998e-23 3.49851e-23 1.00107e-21 -6.3346e-20 1.39904e-21 -1.42887e-19 3.12652e-21 -3.15018e-19 6.83112e-21 -6.78681e-19 1.45763e-20 -1.4285e-18 3.03658e-20 -2.93657e-18 6.17417e-20 -5.89349e-18 1.22481e-19 -1.15413e-17 2.36947e-19 -2.204e-17 4.46771e-19 -4.10118e-17 8.20468e-19 -7.42894e-17 1.46626e-18 -1.30842e-16 2.54731e-18 -2.2372e-16 4.2966e-18 -3.70637e-16 7.0255e-18 -5.93511e-16 1.11157e-17 -9.15606e-16 1.69832e-17 -1.35417e-15 2.49998e-17 -1.89956e-15 3.52957e-17 -1.64936e-15 7.08949e-17 -2.04071e-15 1.21931e-16 -2.75387e-15 3.42042e-16 -4.06485e-15 6.03375e-16 -8.87732e-15 1.94799e-15 -2.39694e-14 6.19373e-15 -7.32164e-14 1.85137e-14 -2.72469e-13 4.90345e-14 -6.87498e-13 9.57065e-14 -6.86887e-13 1.12161e-14 4.92222e-12 -2.08511e-12 -3.66187e-11 -1.22784e-11 -2.30312e-10 -5.64807e-11 -6.44748e-10 -2.24781e-10 -8.06464e-10 -7.0657e-10 -5.79569e-10 -7.49715e-10 -6.53249e-10 3.70532e-11 -6.69604e-10 -5.59903e-11 -5.68976e-10 -2.42542e-10 -1.17832e-09 3.40199e-10 -4.59196e-09 3.05462e-09 -1.1591e-08 6.42109e-09 -1.77365e-08 4.55005e-09 -2.02747e-08 -2.31527e-10 -1.8218e-08 -5.81759e-09 -1.50427e-08 -7.36347e-09 -1.317e-08 -6.18867e-09 -1.36249e-08 -4.06305e-09 -1.26147e-08 -5.99531e-09 -8.995e-09 -8.62235e-09 -4.05745e-09 -9.34929e-09 9.64482e-10 -9.26606e-09 6.61005e-09 -1.00202e-08 1.27413e-08 -1.04444e-08 1.92424e-08 -1.13083e-08 2.19272e-08 -7.70996e-09 2.08076e-08 -3.75234e-09 2.00306e-08 -3.67164e-09 2.12588e-08 -5.6189e-09 2.27135e-08 -5.74403e-09 1.97451e-08 -3.88384e-10 1.24442e-08 5.2564e-09 4.96245e-09 6.48964e-09 1.30189e-09 3.05535e-09 5.14334e-10 3.47948e-10 5.58254e-10 -2.83402e-10 5.23482e-10 -1.17726e-10 4.70416e-10 -4.68831e-11 7.07616e-10 -7.44662e-10 6.22411e-10 -7.27738e-10 2.64994e-10 -2.78713e-10 3.74479e-11 -6.02714e-11 -1.30619e-11 -1.28751e-11 1.44204e-12 -2.34785e-12 6.09405e-13 1.2668e-16 2.30499e-13 1.09005e-13 7.5792e-14 5.83642e-14 2.56883e-14 2.31023e-14 9.62366e-15 8.01898e-15 4.06966e-15 2.60382e-15 2.6527e-15 8.24223e-16 1.58617e-15 4.74994e-16 1.53069e-15 1.73799e-16 1.69657e-15 8.07909e-17 1.17339e-15 3.80953e-17 7.66505e-16 2.57862e-17 4.78467e-16 1.6706e-17 2.87873e-16 1.0438e-17 1.67919e-16 6.32167e-18 9.53195e-17 3.72354e-18 5.27776e-17 2.13744e-18 2.85421e-17 1.19729e-18 1.50874e-17 6.54926e-19 7.79845e-18 3.50003e-19 3.94243e-18 1.82788e-19 1.94952e-18 9.33016e-20 9.43018e-19 4.65513e-20 4.46214e-19 2.27034e-20 2.0653e-19 1.08234e-20 9.35003e-20 5.04355e-21 4.13997e-20 2.29732e-21 1.02366e-21 1.79259e-20 -7.68297e-19 2.63908e-20 -1.6203e-18 5.59841e-20 -3.32987e-18 1.15891e-19 -6.66372e-18 2.33779e-19 -1.29741e-17 4.59198e-19 -2.4549e-17 8.77515e-19 -4.50812e-17 1.62966e-18 -8.0214e-17 2.93731e-18 -1.38016e-16 5.12986e-18 -2.29079e-16 8.66381e-18 -3.65708e-16 1.41168e-17 -5.59499e-16 2.21286e-17 -8.16674e-16 3.32564e-17 -1.13155e-15 4.77216e-17 -1.48204e-15 6.50834e-17 -1.83952e-15 8.40539e-17 -2.22051e-15 1.03101e-16 -2.61198e-15 1.23244e-16 -3.05028e-15 2.21352e-16 -4.74251e-15 5.07147e-16 -9.99352e-15 1.45524e-15 -2.70883e-14 4.32678e-15 -8.33455e-14 1.28893e-14 -2.6314e-13 3.63508e-14 -8.13119e-13 8.94383e-14 -2.41406e-12 1.62344e-13 -6.58392e-12 1.41316e-14 -1.97188e-11 -1.5772e-12 -4.95809e-11 -1.13579e-11 -8.95541e-11 -7.76892e-11 2.66524e-10 -5.86887e-10 -2.02437e-10 -2.28189e-09 -2.63503e-09 -4.53428e-09 -5.7436e-09 -8.00941e-09 -4.39429e-09 -1.60767e-08 -1.35957e-09 -1.81942e-08 -1.94995e-10 -2.08148e-08 6.48792e-09 -2.85181e-08 3.88117e-08 -7.73335e-08 7.93044e-08 -2.00029e-07 8.89981e-08 -3.34226e-07 8.95204e-08 -4.63482e-07 8.96641e-08 -5.07788e-07 7.87543e-08 -4.63241e-07 5.92138e-08 -5.27779e-07 4.52568e-08 -6.7079e-07 4.22066e-08 -7.59145e-07 5.02372e-08 -7.65778e-07 3.18156e-08 -6.23133e-07 5.96072e-09 -5.37635e-07 -2.2688e-08 -5.24378e-07 -4.27019e-08 -5.67313e-07 -3.94036e-08 -7.11046e-07 -3.04656e-08 -7.71162e-07 -3.90478e-08 -7.14437e-07 -6.48492e-08 -5.83903e-07 -9.13143e-08 -4.60485e-07 -9.57202e-08 -4.82085e-07 -9.29466e-08 -4.71244e-07 -8.21062e-08 -3.41894e-07 -4.21042e-08 -2.02856e-07 -9.63412e-09 -8.0263e-08 1.27699e-10 -3.10883e-08 9.31507e-10 -2.00905e-08 2.85369e-09 -1.66975e-08 2.95203e-09 -1.41226e-08 1.57503e-09 -7.03368e-09 1.89958e-10 -3.82044e-09 -1.28824e-10 -1.88745e-09 9.40005e-11 -4.85748e-10 4.51867e-11 -6.86597e-11 1.94366e-11 -1.07969e-11 6.99317e-12 -1.58081e-12 2.46386e-12 -9.24187e-14 8.43089e-13 1.02869e-13 2.77445e-13 6.96939e-14 8.90376e-14 3.04762e-14 2.89466e-14 1.12733e-14 1.04182e-14 3.86372e-15 4.75903e-15 1.31128e-15 2.74645e-15 4.87377e-16 2.29433e-15 2.16416e-16 1.9421e-15 1.21159e-16 1.58317e-15 9.97677e-17 1.26255e-15 8.04353e-17 9.51894e-16 6.14073e-17 6.75106e-16 4.41703e-17 4.52552e-16 3.00672e-17 2.88642e-16 1.949e-17 1.76235e-16 1.20999e-17 1.03526e-16 7.22924e-18 5.87453e-17 4.17271e-18 3.23009e-17 2.33392e-18 1.72512e-17 1.26803e-18 8.9656e-18 6.70391e-19 4.54016e-18 3.4535e-19 2.24236e-18 1.73511e-19 1.08083e-18 8.5076e-20 5.08639e-19 4.07285e-20 1.90564e-20 2.3375e-19 -5.6197e-18 2.82863e-19 -1.08504e-17 5.54995e-19 -2.03012e-17 1.05709e-18 -3.67604e-17 1.95133e-18 -6.43272e-17 3.48636e-18 -1.08612e-16 6.02019e-18 -1.76645e-16 1.00314e-17 -2.76283e-16 1.6103e-17 -4.14998e-16 2.48636e-17 -5.9823e-16 3.68798e-17 -8.28024e-16 5.25234e-17 -1.10298e-15 7.18772e-17 -1.41983e-15 9.47627e-17 -1.77374e-15 1.20886e-16 -2.14995e-15 1.49831e-16 -2.50106e-15 1.80234e-16 -2.73188e-15 2.07694e-16 -3.27953e-15 2.2341e-16 -3.36076e-15 3.84845e-16 -3.46059e-15 7.53717e-16 -2.41669e-15 1.82672e-15 2.89304e-15 4.52733e-15 2.64431e-14 9.58526e-15 1.19949e-13 1.4277e-14 4.55108e-13 -1.00162e-14 1.54858e-12 -1.93535e-13 4.82989e-12 -1.15184e-12 1.76352e-11 -7.43359e-12 9.67132e-11 -7.73414e-11 1.53674e-10 -6.29347e-10 -7.18594e-11 -2.11438e-09 9.66871e-11 -3.58893e-09 3.33108e-10 -5.91314e-09 3.04323e-10 -8.34028e-09 1.03376e-10 -1.88379e-08 6.59558e-09 -4.0995e-08 3.16883e-08 -9.39266e-08 1.41574e-07 -3.47478e-07 4.48888e-07 -9.65454e-07 8.09356e-07 -1.38677e-06 1.03947e-06 -1.55677e-06 9.77326e-07 -1.49957e-06 7.35781e-07 -1.42348e-06 6.14792e-07 -1.36938e-06 5.87996e-07 -1.37052e-06 4.5533e-07 -1.41249e-06 2.18077e-07 -1.44056e-06 -5.22441e-08 -1.42384e-06 -8.99085e-08 -1.40859e-06 3.81577e-10 -1.40509e-06 6.85803e-08 -1.40281e-06 1.09395e-07 -1.40842e-06 -1.27028e-07 -1.40756e-06 -4.22594e-07 -1.44013e-06 -6.40784e-07 -1.42708e-06 -7.04232e-07 -1.38583e-06 -7.34699e-07 -1.36441e-06 -9.02611e-07 -1.41384e-06 -9.96839e-07 -1.48862e-06 -7.93909e-07 -1.52795e-06 -4.44039e-07 -1.38218e-06 -1.46346e-07 -9.75915e-07 -3.63686e-08 -3.67504e-07 -1.04176e-08 -1.01102e-07 -7.4447e-11 -4.13366e-08 -2.37204e-10 -1.72906e-08 -2.59552e-10 -6.6609e-09 -1.02995e-10 -4.48399e-09 -8.66591e-12 -2.90068e-09 -1.19934e-10 -1.71801e-09 -7.79952e-11 -5.61798e-10 -1.23576e-11 -7.03944e-11 -3.31812e-12 -6.2458e-12 -1.08873e-12 -9.43886e-13 -3.38078e-13 -1.61485e-13 -9.77295e-14 -1.5603e-14 -2.41182e-14 6.86967e-15 -3.43363e-15 5.43145e-15 1.82295e-15 2.81059e-15 2.87138e-15 1.2982e-15 2.82983e-15 6.09829e-16 2.77885e-15 3.27757e-16 2.2821e-15 2.0406e-16 2.08598e-15 1.90476e-16 1.79851e-15 1.66279e-16 1.48387e-15 1.38384e-16 1.18221e-15 1.1111e-16 9.09966e-16 8.6233e-17 6.74319e-16 6.44976e-17 4.79443e-16 4.63313e-17 3.26522e-16 3.1904e-17 2.13032e-16 2.10571e-17 1.3333e-16 1.33366e-17 8.02137e-17 8.12111e-18 4.64946e-17 4.76518e-18 2.60237e-17 2.70023e-18 1.40943e-17 1.48071e-18 7.39944e-18 7.87157e-19 3.7712e-18 4.06295e-19 2.03956e-19 1.86808e-18 -2.35033e-17 1.68162e-18 -4.1286e-17 3.0194e-18 -6.99887e-17 5.23918e-18 -1.14388e-16 8.77351e-18 -1.8009e-16 1.41645e-17 -2.72952e-16 2.20281e-17 -3.98166e-16 3.29796e-17 -5.59164e-16 4.75262e-17 -7.56642e-16 6.59504e-17 -9.8797e-16 8.82193e-17 -1.24705e-15 1.13943e-16 -1.52448e-15 1.4237e-16 -1.80834e-15 1.72365e-16 -2.08634e-15 2.02375e-16 -2.35025e-15 2.30455e-16 -2.59967e-15 2.54453e-16 -2.84745e-15 2.72098e-16 -3.04192e-15 2.81159e-16 -3.25271e-15 3.65012e-16 -2.62615e-15 4.98905e-16 -4.68454e-16 8.66988e-16 7.29392e-15 1.28334e-15 2.86445e-14 -1.68756e-15 8.5151e-14 -2.79131e-14 1.93226e-13 -2.25197e-13 1.25871e-12 -1.89129e-12 1.53063e-11 -2.13972e-11 6.34104e-11 -1.82352e-10 5.21093e-11 -7.57512e-10 -3.0819e-11 -1.65686e-09 6.15532e-11 -3.12645e-09 9.26254e-10 -2.11474e-09 1.60308e-09 -8.0589e-10 5.70399e-09 -5.51768e-09 2.41975e-08 -2.60194e-08 8.8207e-08 -1.11925e-07 2.64847e-07 -3.72414e-07 6.0826e-07 -1.11231e-06 8.01969e-07 -1.79244e-06 6.58634e-07 -1.73644e-06 5.82136e-07 -1.58111e-06 5.38459e-07 -1.45724e-06 4.799e-07 -1.36522e-06 4.30349e-07 -1.31874e-06 3.66158e-07 -1.30445e-06 2.67048e-07 -1.3114e-06 1.58527e-07 -1.33005e-06 8.94484e-08 -1.35278e-06 4.42714e-08 -1.36143e-06 -8.14588e-10 -1.35798e-06 -4.42784e-08 -1.3573e-06 -8.97026e-08 -1.36097e-06 -1.39674e-07 -1.35559e-06 -2.447e-07 -1.33309e-06 -3.58822e-07 -1.31095e-06 -4.41594e-07 -1.30105e-06 -4.85752e-07 -1.31884e-06 -5.34242e-07 -1.36544e-06 -5.6926e-07 -1.45487e-06 -6.51991e-07 -1.58056e-06 -7.74857e-07 -1.73469e-06 -5.96321e-07 -1.78696e-06 -2.71561e-07 -1.11991e-06 -9.41472e-08 -3.93892e-07 -2.52366e-08 -1.2325e-07 -5.20438e-09 -2.78511e-08 -1.07105e-09 -4.84339e-09 -2.20008e-10 -5.85564e-10 2.17701e-11 -2.02349e-09 3.41971e-11 -2.40532e-09 -3.87068e-11 -1.25755e-09 -5.03144e-11 -6.17105e-10 -1.31382e-11 -1.51581e-10 -1.03632e-12 -1.78261e-11 -1.32217e-13 -1.52237e-12 -4.96303e-14 -1.77697e-13 -1.63086e-14 -2.14336e-14 -4.52219e-15 -1.55047e-15 5.43345e-16 7.72146e-16 2.17886e-15 6.36569e-16 2.86853e-15 4.87107e-16 2.49887e-15 3.13643e-16 2.36935e-15 2.5442e-16 2.16056e-15 2.47619e-16 1.94184e-15 2.3125e-16 1.71597e-15 2.09027e-16 1.48109e-15 1.82977e-16 1.2417e-15 1.54971e-16 1.00741e-15 1.26859e-16 7.88989e-16 1.0026e-16 5.95421e-16 7.6399e-17 4.32414e-16 5.60602e-17 3.0197e-16 3.95754e-17 2.02737e-16 2.68676e-17 1.30902e-16 1.75447e-17 8.1346e-17 1.10272e-17 4.87026e-17 6.67758e-18 2.81268e-17 3.90057e-18 1.56886e-17 2.20071e-18 1.20117e-18 8.46212e-18 -6.13425e-17 6.11503e-18 -9.90553e-17 1.01059e-17 -1.5418e-16 1.61085e-17 -2.31239e-16 2.47469e-17 -3.34113e-16 3.66263e-17 -4.65124e-16 5.22162e-17 -6.24184e-16 7.17188e-17 -8.0842e-16 9.49619e-17 -1.01268e-15 1.2137e-16 -1.23104e-15 1.5005e-16 -1.45884e-15 1.79983e-16 -1.69384e-15 2.10204e-16 -1.93518e-15 2.3976e-16 -2.18102e-15 2.67268e-16 -2.42919e-15 2.90238e-16 -2.68559e-15 3.04833e-16 -2.97432e-15 3.06554e-16 -3.26238e-15 3.25294e-16 -3.61075e-15 4.53375e-16 -4.4442e-15 5.47064e-16 -7.11792e-15 -6.37635e-17 -1.58789e-14 -1.19656e-14 -1.80693e-14 -7.97779e-14 4.97437e-13 -6.58097e-13 6.78558e-12 -7.04653e-12 2.38454e-11 -7.51268e-11 2.24128e-11 -3.44055e-10 3.10393e-11 -6.80514e-10 -7.6928e-11 -1.00376e-09 -1.30873e-10 -1.45224e-09 5.11089e-11 -8.62959e-10 1.19907e-10 -1.30193e-10 2.78673e-10 -2.54628e-10 1.22382e-08 -1.75436e-08 7.55658e-08 -1.20365e-07 2.28675e-07 -3.67623e-07 4.40303e-07 -8.19448e-07 5.89435e-07 -1.53797e-06 4.36769e-07 -1.76241e-06 3.35759e-07 -1.62465e-06 2.32843e-07 -1.48461e-06 1.55344e-07 -1.38784e-06 1.1988e-07 -1.33166e-06 1.00616e-07 -1.29997e-06 9.69791e-08 -1.29989e-06 9.84537e-08 -1.3111e-06 8.85663e-08 -1.31819e-06 5.88848e-08 -1.3211e-06 2.30756e-08 -1.32359e-06 -9.60962e-09 -1.32325e-06 -4.10184e-08 -1.32382e-06 -7.48775e-08 -1.32506e-06 -1.05482e-07 -1.32296e-06 -1.17313e-07 -1.31926e-06 -1.13921e-07 -1.31242e-06 -1.1176e-07 -1.30199e-06 -1.29137e-07 -1.30178e-06 -1.63787e-07 -1.33271e-06 -2.36893e-07 -1.38961e-06 -3.35878e-07 -1.48793e-06 -4.30414e-07 -1.62919e-06 -5.76621e-07 -1.76625e-06 -4.31755e-07 -1.52332e-06 -2.28806e-07 -8.23415e-07 -7.74609e-08 -3.76526e-07 -1.16877e-08 -1.24955e-07 -2.46451e-10 -1.62291e-08 -1.28535e-10 -1.73782e-10 -5.52476e-11 -8.0775e-11 5.3099e-11 -4.74741e-10 2.33137e-10 -4.92569e-10 -1.37376e-11 -8.16868e-10 -1.57437e-11 -5.38228e-10 -1.72914e-11 -2.55359e-10 -4.97427e-12 -5.58846e-11 -3.49451e-13 -5.37698e-12 1.81533e-14 -4.62275e-13 1.01903e-14 -5.98213e-14 6.55102e-15 -9.03287e-15 3.44343e-15 -8.02703e-17 2.77978e-15 3.32723e-16 2.16035e-15 3.1742e-16 2.66542e-15 3.43408e-16 2.31161e-15 2.90004e-16 2.05176e-15 2.83786e-16 1.83765e-15 2.70142e-16 1.63599e-15 2.49985e-16 1.43222e-15 2.24483e-16 1.22439e-15 1.95386e-16 1.01746e-15 1.64688e-16 8.19357e-16 1.3431e-16 6.3811e-16 1.05887e-16 4.79944e-16 8.06261e-17 3.48309e-16 5.92459e-17 2.43766e-16 4.19873e-17 1.6447e-16 2.86869e-17 1.06975e-16 1.88929e-17 6.70845e-17 1.19953e-17 4.05752e-17 7.34505e-18 4.3408e-18 2.36812e-17 -1.13875e-16 1.56987e-17 -1.72736e-16 2.43239e-17 -2.52723e-16 3.63489e-17 -3.56757e-16 5.23788e-17 -4.86283e-16 7.28068e-17 -6.40832e-16 9.76977e-17 -8.18045e-16 1.26724e-16 -1.01429e-15 1.59184e-16 -1.22574e-15 1.94107e-16 -1.44945e-15 2.30367e-16 -1.68366e-15 2.66704e-16 -1.92679e-15 3.01521e-16 -2.1754e-15 3.32372e-16 -2.42373e-15 3.5532e-16 -2.67411e-15 3.64742e-16 -2.97814e-15 3.54839e-16 -3.25962e-15 3.60023e-16 -3.63678e-15 4.23277e-16 -4.57842e-15 6.41873e-16 -5.62557e-15 -1.69106e-15 6.0104e-16 -2.93752e-14 1.4179e-13 -2.17833e-13 2.92561e-12 -3.30235e-12 1.35533e-11 -3.51652e-11 1.87562e-11 -1.84475e-10 4.94399e-12 -2.85536e-10 -5.88976e-10 -4.39591e-10 -5.52688e-10 -1.28827e-10 -5.85905e-10 -4.82768e-12 -1.73788e-10 -3.31648e-11 -2.57394e-11 -5.92932e-11 -1.31094e-11 -1.31966e-10 1.63321e-09 -1.85979e-09 2.87657e-08 -5.14701e-08 1.10981e-07 -2.38275e-07 1.9216e-07 -5.04063e-07 1.952e-07 -8.30774e-07 9.72831e-08 -1.43981e-06 -1.72421e-09 -1.61855e-06 -6.52385e-08 -1.54632e-06 -1.25275e-07 -1.41346e-06 -1.47683e-07 -1.36961e-06 -1.34869e-07 -1.34589e-06 -1.03385e-07 -1.33022e-06 -7.40536e-08 -1.32709e-06 -5.34964e-08 -1.32825e-06 -3.96206e-08 -1.32788e-06 -2.84455e-08 -1.32784e-06 -2.03184e-08 -1.3272e-06 -1.30917e-08 -1.32591e-06 -6.21919e-09 -1.3261e-06 1.08295e-09 -1.32779e-06 1.19261e-08 -1.32927e-06 2.70822e-08 -1.33005e-06 4.83242e-08 -1.32997e-06 7.76644e-08 -1.32901e-06 1.11083e-07 -1.33396e-06 1.26786e-07 -1.34976e-06 1.0942e-07 -1.37609e-06 5.63552e-08 -1.42358e-06 -1.58054e-09 -1.55579e-06 -9.73601e-08 -1.62255e-06 -1.86746e-07 -1.42456e-06 -1.79422e-07 -8.2346e-07 -1.00481e-07 -4.96583e-07 -2.34251e-08 -2.29302e-07 -1.14442e-09 -4.09485e-08 7.36694e-12 -1.33565e-09 1.43932e-11 -9.87252e-11 8.39495e-11 -3.28437e-11 3.72017e-10 -1.96764e-11 3.65352e-10 -2.4512e-12 4.35118e-10 -1.0235e-10 -9.81671e-12 -3.13328e-10 -1.26114e-11 -2.07225e-10 -8.92586e-12 -1.31196e-10 -2.16134e-12 -2.64495e-11 -1.20313e-13 -2.37427e-12 -7.40012e-15 -1.65404e-13 5.00192e-15 -2.16951e-14 3.48048e-15 -1.03926e-15 2.72406e-15 3.45618e-16 2.56416e-15 3.55761e-16 2.37973e-15 3.0459e-16 2.1979e-15 3.22348e-16 1.98666e-15 3.30503e-16 1.7816e-15 3.21991e-16 1.58132e-15 3.02187e-16 1.38098e-15 2.74284e-16 1.18052e-15 2.41121e-16 9.84131e-16 2.05426e-16 7.97876e-16 1.6964e-16 6.27819e-16 1.35741e-16 4.78686e-16 1.05174e-16 3.53199e-16 7.88358e-17 2.51931e-16 5.71147e-17 1.73571e-16 3.99592e-17 1.15439e-16 2.69808e-17 7.40861e-17 1.75759e-17 1.10473e-17 4.58723e-17 -1.5776e-16 3.1078e-17 -2.29099e-16 4.59323e-17 -3.21322e-16 6.55208e-17 -4.35801e-16 9.02467e-17 -5.72588e-16 1.20171e-16 -7.30549e-16 1.54971e-16 -9.07856e-16 1.93982e-16 -1.10266e-15 2.36282e-16 -1.31357e-15 2.80737e-16 -1.53948e-15 3.25887e-16 -1.77858e-15 3.6959e-16 -2.02697e-15 4.08442e-16 -2.27991e-15 4.37227e-16 -2.54367e-15 4.49179e-16 -2.87189e-15 4.38266e-16 -3.19154e-15 4.35418e-16 -3.73042e-15 5.32494e-16 -5.46058e-15 9.62322e-16 -1.02802e-14 -1.67081e-15 1.42088e-14 -5.53323e-14 6.52607e-13 -8.56212e-13 7.12095e-12 -2.14357e-11 1.83645e-11 -9.98342e-11 -5.74445e-11 -1.20753e-10 -4.11431e-10 -2.27498e-10 -3.57165e-10 -6.79394e-11 -3.76781e-10 -1.07782e-11 -2.18104e-12 -2.1359e-12 -4.85099e-12 -2.72033e-12 -1.22738e-11 -1.14479e-11 -1.33087e-11 -4.6442e-11 1.9312e-10 -3.50473e-10 2.83051e-09 -2.73167e-09 3.19251e-09 -3.27995e-08 -4.21139e-09 -2.04522e-07 -3.58998e-08 -3.86574e-07 -1.1351e-07 -5.33335e-07 -2.28163e-07 -5.91077e-07 -4.02531e-07 -6.28605e-07 -5.69105e-07 -6.39417e-07 -5.93552e-07 -6.7475e-07 -5.62281e-07 -6.84227e-07 -5.1273e-07 -6.90179e-07 -4.2438e-07 -6.96033e-07 -3.33772e-07 -7.13762e-07 -2.49727e-07 -7.2969e-07 -1.77575e-07 -7.31404e-07 -1.16567e-07 -7.229e-07 -6.0019e-08 -7.11215e-07 -2.86521e-09 -7.04017e-07 5.69416e-08 -7.02725e-07 1.18945e-07 -7.08865e-07 1.87367e-07 -7.19184e-07 2.64502e-07 -7.30326e-07 3.4762e-07 -7.27837e-07 4.34724e-07 -7.14029e-07 5.14005e-07 -6.97335e-07 5.59014e-07 -6.81096e-07 5.92069e-07 -6.69041e-07 5.66253e-07 -6.53099e-07 3.94701e-07 -6.08792e-07 2.20138e-07 -5.99212e-07 1.10435e-07 -5.71012e-07 3.69358e-08 -5.17207e-07 4.14281e-09 -3.67233e-07 -3.56503e-09 -1.84018e-07 -2.66063e-09 -2.04939e-08 -1.75217e-10 -2.79419e-09 3.64643e-12 -2.83778e-10 6.33911e-12 -2.84472e-11 2.52511e-12 -6.94983e-12 1.14966e-12 -1.30915e-12 2.89848e-10 -1.74091e-12 2.39424e-10 -2.94336e-13 2.70718e-10 -4.56982e-11 3.08637e-11 -1.68481e-10 -1.10899e-11 -9.11516e-11 -5.1615e-12 -7.56688e-11 -2.89165e-13 -1.06351e-11 -8.2563e-15 -3.66494e-13 5.84052e-15 -3.50974e-14 2.9976e-15 -4.67397e-16 2.24005e-15 4.75724e-16 2.16402e-15 4.22642e-16 2.17768e-15 3.46197e-16 2.02983e-15 3.94195e-16 1.8132e-15 4.01748e-16 1.59834e-15 3.87509e-16 1.39256e-15 3.59571e-16 1.19545e-15 3.22978e-16 1.00804e-15 2.81759e-16 8.32622e-16 2.39118e-16 6.7184e-16 1.97471e-16 5.28163e-16 1.5856e-16 4.03492e-16 1.23602e-16 2.98855e-16 9.33682e-17 2.1419e-16 6.82259e-17 1.48321e-16 4.81549e-17 9.91327e-17 3.27973e-17 2.15479e-17 6.39046e-17 -1.56845e-16 4.92441e-17 -2.22298e-16 7.06476e-17 -3.04477e-16 9.78406e-17 -4.03779e-16 1.30928e-16 -5.19771e-16 1.69592e-16 -6.51599e-16 2.1314e-16 -7.98586e-16 2.6064e-16 -9.60655e-16 3.11019e-16 -1.13811e-15 3.62983e-16 -1.3304e-15 4.14588e-16 -1.53398e-15 4.62404e-16 -1.74117e-15 5.00571e-16 -1.9457e-15 5.2065e-16 -2.1655e-15 5.14016e-16 -2.44641e-15 4.77463e-16 -3.00458e-15 6.54387e-16 -4.34698e-15 1.10308e-15 -1.03322e-14 1.99741e-15 -1.6169e-14 -5.37773e-14 1.54303e-12 -1.94798e-12 2.00354e-12 -4.09143e-11 -2.21278e-10 -6.71991e-11 -2.03068e-10 -7.85671e-11 -2.12527e-10 -3.43642e-11 -2.58358e-10 -2.95833e-13 -1.05821e-11 -4.82671e-13 -9.64771e-13 -6.76194e-13 -2.00638e-12 -1.56087e-12 -2.35682e-12 -3.04777e-12 -5.25692e-12 -9.99941e-12 -2.2859e-11 -3.46018e-11 -2.46461e-10 -1.55376e-10 -1.84547e-09 -1.24473e-09 6.58085e-10 -1.23698e-08 -2.92881e-08 -3.27172e-08 -1.29614e-07 3.03336e-12 -1.88453e-07 1.05835e-11 -1.38788e-07 9.35449e-12 -1.93036e-07 3.35512e-12 -2.30516e-07 7.35769e-12 -2.02173e-07 1.97528e-11 -2.0051e-07 2.47378e-11 -1.91042e-07 2.81734e-11 -1.66468e-07 4.4243e-11 -1.35191e-07 6.67956e-11 -1.01104e-07 8.99172e-11 -6.43822e-08 9.37346e-11 -3.24461e-08 5.143e-11 -9.0432e-09 1.34213e-11 9.1623e-09 2.32395e-12 2.88152e-08 6.61921e-12 5.34382e-08 2.1075e-11 8.57869e-08 5.434e-11 1.23176e-07 8.1916e-11 1.54473e-07 7.62602e-11 1.82415e-07 5.65076e-11 2.02615e-07 3.63794e-11 2.04144e-07 2.21173e-11 1.94894e-07 1.88274e-11 2.14988e-07 1.50983e-11 1.82591e-07 5.96723e-12 1.46638e-07 3.06308e-12 1.96903e-07 8.69104e-12 1.25045e-07 1.04097e-11 2.62199e-08 3.22587e-12 -2.80343e-09 -2.70111e-08 2.02723e-09 -1.04491e-08 1.69993e-10 -9.95506e-10 1.38114e-11 -1.14457e-10 3.19516e-12 -2.07689e-11 8.1425e-13 -5.16323e-12 9.57134e-13 -1.00464e-12 3.89162e-13 -6.29046e-13 2.76799e-13 -2.28137e-13 1.73669e-10 -1.83186e-13 1.53656e-10 -1.40542e-13 1.40278e-10 -4.13456e-11 1.52491e-10 -6.71877e-11 -5.44031e-12 -5.05985e-11 -5.1529e-13 -1.51716e-11 -3.04669e-15 -6.26714e-13 3.47735e-15 -1.37814e-14 1.97787e-15 7.75619e-16 1.91837e-15 4.92156e-16 2.02142e-15 4.01283e-16 1.77437e-15 4.58239e-16 1.5515e-15 4.76897e-16 1.3568e-15 4.70831e-16 1.1765e-15 4.45461e-16 1.00688e-15 4.06636e-16 8.48575e-16 3.60081e-16 7.02875e-16 3.10365e-16 5.70783e-16 2.6073e-16 4.531e-16 2.13395e-16 3.50503e-16 1.69894e-16 2.63437e-16 1.31301e-16 1.91877e-16 9.82893e-17 1.35153e-16 7.11317e-17 9.19179e-17 4.96944e-17 3.34903e-17 6.02885e-17 -9.08241e-17 6.36439e-17 -1.29814e-16 9.03214e-17 -1.79204e-16 1.23689e-16 -2.39449e-16 1.63628e-16 -3.10566e-16 2.09512e-16 -3.92414e-16 2.60306e-16 -4.85126e-16 3.14762e-16 -5.89486e-16 3.71589e-16 -7.06992e-16 4.294e-16 -8.3941e-16 4.86284e-16 -9.87677e-16 5.38963e-16 -1.14906e-15 5.8167e-16 -1.30932e-15 6.04569e-16 -1.42958e-15 5.91522e-16 -1.72563e-15 5.21099e-16 -1.8853e-15 7.11341e-16 -2.05145e-15 1.75998e-15 -5.9524e-15 6.69133e-15 7.9713e-13 -9.33474e-13 -4.52826e-11 -2.50023e-11 -1.28948e-10 -5.03108e-11 -1.16016e-10 -6.01913e-11 -1.38601e-10 -1.21858e-11 -3.39625e-13 -4.0099e-13 -3.66028e-13 -2.99927e-13 -4.49364e-13 -4.28903e-13 -5.2108e-13 -6.42549e-13 1.2669e-13 -2.32288e-12 1.14106e-12 -7.84622e-12 5.29359e-12 -3.81011e-11 2.97822e-11 -1.33221e-10 1.70284e-10 -3.18995e-10 -2.27768e-09 -3.59645e-10 -9.885e-09 5.59583e-12 4.94099e-12 1.11214e-11 1.44109e-11 1.14369e-11 2.55124e-11 1.13568e-11 3.60724e-11 1.1103e-11 3.88024e-11 1.22864e-11 4.03816e-11 1.81931e-11 5.11237e-11 2.27791e-11 6.52215e-11 2.48868e-11 7.79038e-11 2.71416e-11 9.28702e-11 2.79129e-11 1.04443e-10 2.71908e-11 9.75354e-11 2.56895e-11 4.54089e-11 2.26588e-11 8.49429e-12 1.66282e-11 5.86068e-13 8.46041e-12 -4.15199e-13 4.19422e-13 -3.91358e-12 1.08854e-12 -1.99912e-11 3.44648e-12 -6.39525e-11 8.34739e-12 -1.06995e-10 1.28516e-11 -1.1014e-10 1.62178e-11 -9.30511e-11 1.86115e-11 -7.06372e-11 2.02095e-11 -5.49383e-11 2.0544e-11 -4.21721e-11 1.97248e-11 -3.43378e-11 1.91735e-11 -3.41512e-11 1.62672e-11 -3.26925e-11 1.15694e-11 -2.42857e-11 1.11111e-11 -1.48839e-11 1.2081e-11 -5.36606e-12 1.25637e-11 8.16864e-09 1.2561e-11 1.69822e-09 3.99236e-12 -1.54091e-10 -4.13466e-10 -2.50545e-11 -2.55494e-10 -4.51574e-12 -9.02307e-11 -8.94502e-13 -1.55896e-11 6.42572e-14 -2.11672e-12 2.17243e-13 -8.13443e-13 1.97624e-13 -2.28612e-13 1.70917e-13 -1.78195e-13 1.6669e-13 -1.5771e-13 1.09175e-10 -3.03242e-13 5.62351e-11 -4.91822e-11 1.79564e-11 -5.15029e-11 2.02071e-13 -2.3703e-11 -4.51964e-16 -4.51433e-13 -3.56562e-15 -3.37889e-15 1.39136e-15 1.68837e-15 1.47339e-15 5.54698e-16 1.26626e-15 4.54347e-16 1.11518e-15 5.38732e-16 9.48506e-16 5.63356e-16 8.04128e-16 5.56244e-16 6.77306e-16 5.27017e-16 5.6394e-16 4.82418e-16 4.6258e-16 4.2866e-16 3.72885e-16 3.70886e-16 2.94667e-16 3.12927e-16 2.2763e-16 2.57427e-16 1.71355e-16 2.06179e-16 1.25296e-16 1.60416e-16 8.87255e-17 1.20948e-16 6.06866e-17 8.81674e-17 4.00069e-17 6.2025e-17 4.20645e-17 2.53726e-17 2.07318e-17 6.4986e-17 2.65462e-17 9.34916e-17 3.18513e-17 1.29164e-16 3.56479e-17 1.72182e-16 3.66885e-17 2.21958e-16 3.37052e-17 2.77398e-16 2.55669e-17 3.36873e-16 1.14424e-17 3.987e-16 -1.04331e-17 4.61206e-16 -4.14283e-17 5.22005e-16 -8.05336e-17 5.7682e-16 -1.28503e-16 6.18755e-16 -1.86681e-16 6.39438e-16 -2.48362e-16 6.29961e-16 -3.66758e-16 5.61233e-16 -2.96596e-16 5.19478e-16 3.28954e-15 7.97931e-16 -1.4272e-14 2.57162e-14 -1.34112e-11 -4.36605e-13 -6.63694e-11 -1.98964e-11 -6.8911e-11 -3.96258e-11 -5.07439e-11 -3.03757e-11 -4.21897e-13 -1.59688e-12 -3.60965e-13 -4.76817e-13 -3.37911e-13 -3.52015e-13 -5.10072e-13 -2.91499e-13 -7.41314e-13 -5.02312e-13 -6.85272e-13 -2.65276e-12 5.98024e-12 -4.23392e-11 1.43337e-11 -7.10371e-11 -4.62946e-10 -8.58246e-11 -3.99271e-10 4.6283e-13 1.00771e-11 4.73937e-12 2.31782e-11 6.30215e-12 2.96947e-11 6.54409e-12 3.54463e-11 6.19884e-12 3.85154e-11 6.16709e-12 3.85614e-11 6.65451e-12 3.66706e-11 7.18579e-12 3.69793e-11 7.51584e-12 3.70606e-11 7.83264e-12 3.40448e-11 8.41571e-12 2.99176e-11 9.21074e-12 2.55657e-11 1.00852e-11 2.05694e-11 1.09887e-11 1.43804e-11 1.15503e-11 7.43865e-12 1.10729e-11 2.16166e-12 8.7258e-12 3.39216e-14 4.30204e-12 -3.39922e-14 3.32784e-13 -2.64044e-13 7.16511e-13 -1.41766e-12 2.35487e-12 -4.92273e-12 4.57912e-12 -9.82795e-12 6.67591e-12 -1.50151e-11 8.1499e-12 -1.99075e-11 8.97544e-12 -2.43838e-11 9.38653e-12 -2.85483e-11 9.6086e-12 -3.17097e-11 9.67984e-12 -3.2847e-11 9.74351e-12 -3.43609e-11 9.85408e-12 -3.8171e-11 9.66904e-12 -3.98581e-11 9.02069e-12 -3.80492e-11 8.35908e-12 -3.32978e-11 8.34322e-12 -2.72964e-11 8.64661e-12 -7.40442e-12 7.99051e-12 4.36973e-10 5.42518e-12 3.80564e-10 -4.91436e-12 -1.53071e-11 -6.39183e-11 -5.43453e-12 -4.97145e-11 5.8623e-13 -1.01504e-11 2.96315e-13 -6.28288e-13 2.23114e-13 -1.82231e-13 1.86411e-13 -1.60323e-13 2.57384e-13 -2.50708e-13 1.36107e-12 -1.43265e-12 6.29041e-11 -2.6816e-11 3.71193e-11 -4.04981e-11 3.09706e-12 -2.95675e-12 1.92658e-15 -1.49803e-16 -1.20967e-15 4.19545e-16 2.07907e-16 3.17258e-16 3.33426e-17 4.02792e-16 -4.98417e-17 5.25036e-16 -1.04749e-16 5.9792e-16 -1.3918e-16 6.19587e-16 -1.58917e-16 6.04334e-16 -1.67687e-16 5.65784e-16 -1.68038e-16 5.1247e-16 -1.61618e-16 4.5136e-16 -1.49798e-16 3.87498e-16 -1.33987e-16 3.24514e-16 -1.15489e-16 2.65082e-16 -9.57262e-17 2.10729e-16 -7.62233e-17 1.62555e-16 -5.82002e-17 1.21447e-16 -4.25352e-17 8.76356e-17 -2.93116e-17 6.09121e-17 4.01519e-17 -1.48508e-17 9.52143e-17 4.9829e-17 1.44694e-16 7.64393e-17 2.03044e-16 1.08463e-16 2.72471e-16 1.47399e-16 3.52706e-16 1.93516e-16 4.41851e-16 2.46198e-16 5.3724e-16 3.04278e-16 6.36097e-16 3.66239e-16 7.36003e-16 4.30287e-16 8.35077e-16 4.94273e-16 9.30853e-16 5.54897e-16 1.01804e-15 6.06332e-16 1.08898e-15 6.40721e-16 1.14063e-15 6.52928e-16 1.14624e-15 6.25262e-16 1.15175e-15 5.72521e-16 3.26458e-15 5.38975e-16 2.88268e-14 6.39582e-16 3.36497e-11 7.91922e-13 3.87247e-11 -3.65356e-15 1.88619e-11 -1.16196e-11 5.02021e-14 -2.47252e-11 -3.05601e-13 -1.7028e-11 -2.44861e-13 -1.6077e-12 -2.34048e-13 -3.77876e-13 -1.00597e-13 -5.12593e-13 -6.7833e-13 -4.03625e-13 -5.42064e-12 -6.41633e-13 -6.96794e-11 -1.06854e-11 -6.1276e-11 -3.36572e-11 5.48763e-13 -2.14392e-11 6.12727e-12 -9.63878e-13 8.57787e-12 2.00344e-12 9.05054e-12 2.97328e-12 8.68788e-12 3.4007e-12 7.57403e-12 3.56319e-12 6.30694e-12 3.56366e-12 5.51409e-12 3.44839e-12 5.2104e-12 3.24683e-12 5.08111e-12 2.95363e-12 4.95158e-12 2.5864e-12 4.86968e-12 2.18589e-12 4.76208e-12 1.80823e-12 4.45252e-12 1.48999e-12 3.85953e-12 1.23197e-12 2.92555e-12 9.87575e-13 1.72093e-12 7.48901e-13 5.75089e-13 5.30014e-13 2.38107e-14 3.32104e-13 6.66516e-15 1.58813e-13 -3.76248e-14 2.20018e-13 -2.68059e-13 6.33573e-13 -8.04534e-13 1.12704e-12 -1.60051e-12 1.56273e-12 -2.49394e-12 1.90021e-12 -3.35342e-12 2.19492e-12 -4.11483e-12 2.54011e-12 -4.74495e-12 2.98283e-12 -5.32282e-12 3.4967e-12 -5.83808e-12 4.00789e-12 -6.20475e-12 4.44297e-12 -6.69307e-12 4.76052e-12 -7.78443e-12 4.96666e-12 -9.45695e-12 5.04583e-12 -1.0837e-11 4.8982e-12 -1.11398e-11 4.45077e-12 -1.01184e-11 3.53998e-12 -6.34832e-12 1.77761e-12 2.70489e-11 -3.58462e-12 4.6898e-11 -3.72979e-11 3.94761e-11 -5.34643e-12 4.34937e-13 -3.78078e-13 9.1574e-14 -3.80841e-13 7.6358e-14 -2.98366e-13 8.58746e-14 -3.86736e-13 2.79254e-14 -1.07848e-12 2.59386e-13 -6.41124e-12 -1.09151e-11 -1.2864e-11 -3.24878e-11 -2.19271e-16 -1.92606e-15 -4.49127e-16 -2.60853e-15 6.94755e-17 -1.74115e-15 2.8232e-16 -1.744e-15 4.58978e-16 -1.62299e-15 5.26161e-16 -1.57253e-15 5.87726e-16 -1.47425e-15 6.15856e-16 -1.34641e-15 6.07379e-16 -1.2055e-15 5.72316e-16 -1.06024e-15 5.21317e-16 -9.16049e-16 4.618e-16 -7.76509e-16 3.99116e-16 -6.44225e-16 3.36938e-16 -5.21597e-16 2.77711e-16 -4.10769e-16 2.23144e-16 -3.13585e-16 1.7438e-16 -2.31369e-16 1.32162e-16 -1.64262e-16 9.68824e-17 -1.10895e-16 6.83993e-17 -6.87449e-17 4.59622e-17 2.83916e-17 -3.71707e-17 1.18507e-16 2.96152e-17 1.88439e-16 4.68197e-17 2.80573e-16 6.93467e-17 3.95944e-16 9.73816e-17 5.36127e-16 1.31248e-16 7.0157e-16 1.70985e-16 8.91159e-16 2.16213e-16 1.10255e-15 2.66156e-16 1.33278e-15 3.19694e-16 1.57892e-15 3.75393e-16 1.83796e-15 4.313e-16 2.10505e-15 4.84398e-16 2.37259e-15 5.30342e-16 2.63227e-15 5.64027e-16 2.87957e-15 5.80735e-16 2.92686e-15 5.41594e-16 3.37571e-15 4.16544e-16 3.82888e-15 2.863e-16 6.32801e-13 6.25676e-15 6.25795e-13 -2.10998e-16 1.11487e-10 3.91012e-13 1.44166e-10 -2.00325e-15 1.96443e-12 -4.09501e-12 -1.72907e-12 -7.16258e-12 7.83316e-13 -1.0524e-11 1.38692e-13 -1.07585e-11 1.59002e-12 -2.47943e-12 1.52322e-12 -1.07273e-12 2.27577e-11 -1.59072e-12 8.86327e-12 -4.15962e-12 -1.12901e-12 -1.08335e-11 5.03244e-13 -3.3471e-12 -9.87036e-13 -7.92369e-13 -1.33434e-12 -3.08081e-13 -1.30209e-12 2.84049e-13 -1.0515e-12 6.3462e-13 -7.25576e-13 7.58836e-13 -4.4992e-13 7.87936e-13 -2.65078e-13 8.01376e-13 -1.51903e-13 8.10388e-13 -7.98119e-14 7.92786e-13 -3.22126e-14 7.13437e-13 -1.63243e-15 6.07173e-13 1.50179e-14 5.0153e-13 2.49109e-14 4.10058e-13 2.81246e-14 3.15511e-13 2.57729e-14 2.05596e-13 1.91714e-14 1.17026e-13 1.02983e-14 9.1279e-14 1.56119e-14 6.16538e-14 4.91332e-14 9.08668e-14 9.68545e-14 2.2309e-13 1.51377e-13 3.94901e-13 2.1025e-13 5.3932e-13 2.79805e-13 6.45087e-13 3.74244e-13 7.39859e-13 5.05611e-13 8.59344e-13 6.77454e-13 1.00012e-12 8.86448e-13 1.1331e-12 1.12419e-12 1.229e-12 1.40308e-12 1.27432e-12 1.77775e-12 1.27303e-12 2.28799e-12 1.22846e-12 2.83981e-12 1.09054e-12 3.16721e-12 8.05605e-13 2.90268e-12 3.37716e-13 1.581e-12 -5.21014e-13 -2.04743e-12 -7.24538e-13 -8.85044e-12 -1.33776e-12 -1.8997e-11 -5.64544e-13 -8.07215e-13 -6.9745e-13 -1.04433e-12 -9.28893e-13 -3.34726e-13 -1.50084e-12 -1.3944e-13 -1.32105e-12 5.58706e-13 -8.11268e-13 -1.44543e-12 -8.37845e-14 -2.00478e-11 -8.47158e-16 -2.65039e-15 -9.38199e-16 -2.99435e-15 2.11435e-18 -3.6906e-15 1.29371e-16 -3.93248e-15 2.90337e-16 -3.74109e-15 4.20723e-16 -3.44006e-15 4.86886e-16 -3.17502e-15 5.11949e-16 -2.88874e-15 5.19412e-16 -2.58017e-15 5.05604e-16 -2.26479e-15 4.73909e-16 -1.9558e-15 4.30492e-16 -1.66123e-15 3.80916e-16 -1.3861e-15 3.29226e-16 -1.13375e-15 2.78239e-16 -9.06706e-16 2.2986e-16 -7.06928e-16 1.85365e-16 -5.35647e-16 1.45617e-16 -3.93017e-16 1.11141e-16 -2.77935e-16 8.21428e-17 -1.88071e-16 5.85231e-17 -1.2053e-16 3.99029e-17 -7.29688e-17 2.57722e-17 1.57299e-17 -4.40503e-17 9.85562e-17 1.42306e-17 1.53472e-16 2.18112e-17 2.34458e-16 3.27978e-17 3.44746e-16 4.74571e-17 4.87093e-16 6.59648e-17 6.63743e-16 8.8407e-17 8.7606e-16 1.1473e-16 1.12427e-15 1.447e-16 1.40745e-15 1.77887e-16 1.72381e-15 2.13655e-16 2.07094e-15 2.51123e-16 2.44557e-15 2.89047e-16 2.84308e-15 3.25658e-16 3.25708e-15 3.58551e-16 3.68415e-15 3.85168e-16 4.05066e-15 3.95581e-16 4.69049e-15 3.44045e-16 4.70072e-15 2.86397e-16 1.25389e-14 -1.99862e-16 1.06329e-14 1.68714e-16 4.0245e-13 1.86705e-15 3.80539e-13 -3.59897e-16 7.67124e-11 -1.39384e-15 8.66642e-11 -6.41302e-16 9.32421e-11 -2.30874e-16 2.27007e-11 -6.4927e-16 5.5752e-12 -3.57095e-13 5.79721e-12 -2.00946e-12 7.44496e-12 -3.97992e-12 7.27237e-12 -5.2359e-12 5.89974e-12 -7.89916e-12 -4.90545e-13 -2.04642e-12 -1.38244e-13 -1.35653e-12 4.54805e-13 -9.01411e-13 -4.57444e-13 -4.30234e-13 -8.68501e-13 -1.57112e-13 -8.93296e-13 -1.4524e-13 -8.0546e-13 -1.50774e-13 -7.09944e-13 -1.72293e-13 -6.16075e-13 -1.36235e-13 -5.10986e-13 -8.45532e-14 -3.84292e-13 2.7124e-14 -2.6795e-13 5.78343e-14 -1.76248e-13 7.61856e-14 -1.09716e-13 8.07037e-14 -5.93423e-14 6.42879e-14 -2.29449e-14 6.77519e-15 -4.33131e-15 -5.44742e-14 2.24062e-15 -9.11069e-15 9.98463e-15 1.92574e-14 4.12233e-14 1.00414e-14 1.0338e-13 1.66329e-15 1.84209e-13 4.89887e-14 2.74087e-13 9.06743e-14 3.79414e-13 1.08561e-13 5.21487e-13 1.06117e-13 7.08915e-13 9.49402e-14 9.298e-13 7.51921e-14 1.16007e-12 5.05224e-14 1.37699e-12 2.56486e-14 1.56659e-12 8.20448e-16 1.71439e-12 -8.12426e-14 1.7305e-12 -1.48872e-13 1.46989e-12 -1.9995e-13 7.15993e-13 -1.34501e-13 -4.33976e-13 -3.34618e-13 -5.07124e-13 -4.99109e-13 -8.35864e-13 -3.75083e-13 -5.65498e-13 -3.37364e-13 -1.11399e-12 -2.49456e-13 -1.45198e-12 -3.81948e-13 -7.76625e-12 -2.05048e-13 -9.56816e-12 -4.19891e-16 -8.20188e-12 -2.49018e-16 -4.85683e-12 -4.55466e-16 -4.28568e-15 -5.56884e-16 -4.50425e-15 -5.95939e-17 -5.5176e-15 2.778e-17 -5.75341e-15 1.31822e-16 -5.17452e-15 2.26468e-16 -4.92142e-15 2.64242e-16 -4.54108e-15 3.14764e-16 -4.09039e-15 3.33246e-16 -3.64637e-15 3.32049e-16 -3.20513e-15 3.1927e-16 -2.77484e-15 2.97304e-16 -2.36523e-15 2.69199e-16 -1.98366e-15 2.37825e-16 -1.63487e-15 2.05443e-16 -1.32175e-15 1.73679e-16 -1.04594e-15 1.43648e-16 -8.08067e-16 1.16099e-16 -6.0776e-16 9.15183e-17 -4.43588e-16 7.01877e-17 -3.13077e-16 5.22142e-17 -2.12918e-16 3.75475e-17 -1.39293e-16 2.60076e-17 -8.81808e-17 1.73213e-17 -5.5398e-17 1.11585e-17 7.13263e-18 -3.62408e-17 6.29789e-17 5.56307e-18 9.38433e-17 8.07112e-18 1.41216e-16 1.18198e-17 2.10074e-16 1.70938e-17 3.04931e-16 2.40937e-17 4.29732e-16 3.29334e-17 5.87747e-16 4.36381e-17 7.81442e-16 5.61426e-17 1.01238e-15 7.02902e-17 1.2812e-15 8.58326e-17 1.58765e-15 1.02426e-16 1.93068e-15 1.1961e-16 2.3083e-15 1.3677e-16 2.7175e-15 1.53079e-16 3.15494e-15 1.67485e-16 3.60487e-15 1.78068e-16 4.02576e-15 1.81673e-16 4.36189e-15 1.75107e-16 4.52855e-15 1.55428e-16 4.66073e-15 1.28402e-16 6.8863e-15 1.14206e-16 5.83181e-15 5.00659e-17 4.60302e-15 4.26636e-18 4.23834e-15 -4.58074e-17 5.46071e-15 -1.02186e-16 5.10463e-15 -1.5602e-16 1.33781e-11 -6.762e-16 2.07507e-11 -5.41172e-16 2.05484e-11 -3.86686e-16 2.04522e-11 -6.08351e-16 1.97992e-12 -5.8179e-16 -4.30403e-13 -4.01546e-16 7.97602e-13 -9.31134e-13 1.47947e-13 -9.27914e-13 -1.58926e-13 -9.07793e-13 -1.54575e-14 -5.81843e-13 4.05093e-14 -2.22644e-13 6.25062e-14 -1.81051e-13 5.66945e-14 -1.66265e-13 3.86715e-14 -1.18035e-13 2.17234e-14 -8.07591e-14 -3.03785e-14 -3.28251e-14 -5.39805e-14 -9.20606e-15 -5.78377e-14 -9.9151e-15 -4.80301e-14 1.92873e-15 -2.82551e-14 2.03531e-15 -1.96945e-15 -3.612e-14 5.1411e-15 -9.86105e-14 6.87046e-17 -3.53237e-14 1.3112e-15 1.15002e-15 4.5049e-16 -1.69617e-14 2.03396e-14 -6.81068e-14 5.1255e-14 -3.12388e-14 7.84589e-14 -3.30028e-15 9.43696e-14 1.59825e-15 1.01292e-13 7.32496e-16 9.45664e-14 -2.99541e-15 7.39815e-14 -1.09413e-14 4.33593e-14 -9.36219e-15 1.59211e-15 -2.34644e-14 -2.43955e-14 -4.66409e-14 -4.92789e-14 -5.63756e-14 -1.10802e-13 -8.73971e-14 -1.11405e-13 -1.99236e-13 -1.75087e-13 -2.64071e-13 -1.90852e-12 -2.50082e-13 -2.57779e-12 -1.41727e-13 -1.82396e-12 -4.04402e-16 -8.18285e-13 -5.08867e-16 -1.58094e-12 -4.67844e-16 -1.24688e-12 -4.4837e-16 -3.87447e-15 -6.22362e-16 -4.03919e-15 -3.20688e-16 -4.25567e-15 -1.72372e-16 -4.72952e-15 -1.22168e-16 -5.71509e-15 -7.03223e-17 -5.81895e-15 -2.25485e-17 -5.38109e-15 2.28536e-17 -5.08068e-15 6.57584e-17 -4.65294e-15 9.92126e-17 -4.21379e-15 1.20387e-16 -3.76026e-15 1.32074e-16 -3.30654e-15 1.35525e-16 -2.86953e-15 1.32542e-16 -2.45525e-15 1.25105e-16 -2.06958e-15 1.14665e-16 -1.71699e-15 1.02462e-16 -1.4003e-15 8.94742e-17 -1.12091e-15 7.64339e-17 -8.79027e-16 6.38691e-17 -6.73916e-16 5.21562e-17 -5.03968e-16 4.15583e-17 -3.66789e-16 3.22476e-17 -2.5931e-16 2.43174e-17 -1.77938e-16 1.77874e-17 -1.18742e-16 1.2611e-17 -7.76328e-17 8.68287e-18 -5.05143e-17 5.8488e-18 -3.34355e-17 3.91604e-18 2.66547e-18 -2.28207e-17 3.26356e-17 1.74136e-18 4.69675e-17 2.40101e-18 6.8429e-17 3.34634e-18 1.00107e-16 4.67059e-18 1.45416e-16 6.45284e-18 2.07852e-16 8.74264e-18 2.90778e-16 1.15492e-17 3.97242e-16 1.48363e-17 5.29829e-16 1.85204e-17 6.90552e-16 2.24728e-17 8.80783e-16 2.65226e-17 1.10122e-15 3.04602e-17 1.35188e-15 3.40362e-17 1.63204e-15 3.69551e-17 1.94027e-15 3.88669e-17 2.27328e-15 3.93186e-17 2.62361e-15 3.77233e-17 2.98003e-15 3.34046e-17 3.33099e-15 2.56905e-17 3.6422e-15 1.38763e-17 3.94973e-15 -1.37548e-18 4.0613e-15 -1.50965e-17 4.2808e-15 -3.3309e-17 4.55768e-15 -5.61737e-17 4.72264e-15 -8.40381e-17 4.57171e-15 -1.17046e-16 3.96638e-15 -1.54931e-16 3.64317e-15 -1.96214e-16 3.44446e-15 -2.37404e-16 3.31078e-15 -2.75368e-16 3.13416e-15 -3.05116e-16 2.97108e-15 -3.9462e-16 4.24993e-12 -6.58712e-16 4.35193e-12 -6.70013e-16 4.16537e-12 -4.34004e-16 1.60024e-13 -3.70208e-16 -6.70614e-14 -3.56047e-14 1.52268e-13 -2.26719e-13 5.2001e-14 -2.19254e-13 1.12639e-14 -2.30583e-13 -8.75283e-16 -2.27133e-13 -1.25825e-15 -8.3891e-14 7.73427e-15 -1.82587e-14 2.82965e-15 -5.06724e-15 -1.82006e-15 -1.31236e-15 -1.45152e-15 -2.5577e-16 1.9662e-14 -4.17827e-14 2.74899e-14 -8.07355e-14 3.36998e-15 -4.32414e-14 -2.18474e-15 -1.36599e-15 -1.91058e-14 -1.7222e-14 -2.58571e-14 -5.66035e-14 -2.95467e-15 -4.90555e-14 1.59111e-15 -7.79756e-15 9.07055e-16 -4.87916e-16 -6.78725e-16 -2.48799e-15 -3.65059e-15 -2.60409e-15 -9.94984e-15 -4.70922e-15 -1.48418e-15 -2.09152e-14 -2.62075e-14 -5.21706e-14 -7.77464e-15 -4.89492e-14 3.9918e-14 -4.87785e-14 -4.26296e-13 -4.1211e-14 -1.25562e-12 -3.24149e-15 -1.16494e-12 -3.55738e-16 -1.38242e-12 -3.81647e-16 -2.90823e-15 -4.51831e-16 -2.93416e-15 -3.42133e-16 -3.0324e-15 -2.68655e-16 -3.19791e-15 -2.43819e-16 -3.42721e-15 -2.14666e-16 -3.83812e-15 -1.84199e-16 -4.46434e-15 -1.50989e-16 -4.59569e-15 -1.17978e-16 -4.47659e-15 -8.99109e-17 -4.22896e-15 -6.39943e-17 -3.942e-15 -4.34936e-17 -3.62828e-15 -2.70134e-17 -3.29326e-15 -1.41584e-17 -2.94708e-15 -4.61185e-18 -2.60238e-15 3.90636e-18 -2.26824e-15 1.22932e-17 -1.95067e-15 1.77165e-17 -1.65456e-15 2.07884e-17 -1.38309e-15 2.20522e-17 -1.13837e-15 2.19608e-17 -9.21486e-16 2.08883e-17 -7.32639e-16 1.914e-17 -5.71272e-16 1.69687e-17 -4.36186e-16 1.45837e-17 -3.25635e-16 1.21592e-17 -2.37421e-16 9.8352e-18 -1.68986e-16 7.71757e-18 -1.17533e-16 5.87733e-18 -8.01536e-17 4.35119e-18 -5.39635e-17 3.14404e-18 -3.6239e-17 2.23359e-18 -2.45511e-17 1.57698e-18 -1.68881e-17 1.11977e-18 8.05938e-19 -1.17479e-17 1.44217e-17 4.14108e-19 2.03529e-17 5.40396e-19 2.88367e-17 7.03878e-19 4.10599e-17 9.13241e-19 5.85453e-17 1.17331e-18 8.30901e-17 1.4794e-18 1.16668e-16 1.81196e-18 1.61316e-16 2.13211e-18 2.19016e-16 2.3792e-18 2.91581e-16 2.46963e-18 3.80565e-16 2.29805e-18 4.87179e-16 1.73958e-18 6.12244e-16 6.51971e-19 7.56028e-16 -5.46904e-19 9.17958e-16 -1.76891e-18 1.09712e-15 -3.56116e-18 1.29177e-15 -6.03169e-18 1.49926e-15 -9.3303e-18 1.71613e-15 -1.36124e-17 1.93806e-15 -1.90613e-17 2.16176e-15 -2.58751e-17 2.38694e-15 -3.42666e-17 2.61062e-15 -4.44514e-17 2.82915e-15 -5.6641e-17 3.03792e-15 -7.10435e-17 3.22986e-15 -8.7842e-17 3.39285e-15 -1.07181e-16 3.5009e-15 -1.29135e-16 3.5175e-15 -1.53635e-16 3.43831e-15 -1.80361e-16 3.24759e-15 -2.08601e-16 2.85793e-15 -2.37065e-16 2.50675e-15 -2.63569e-16 2.3426e-15 -2.84384e-16 2.11033e-15 -2.94389e-16 1.94764e-15 -2.86015e-16 3.40744e-13 -4.10597e-16 6.76711e-13 -3.79565e-16 7.4061e-13 -3.27726e-16 7.01387e-13 -3.10728e-16 4.48407e-13 -1.06079e-14 -2.64755e-14 -3.50378e-14 -4.92439e-15 -2.40329e-14 1.05935e-15 -1.20164e-14 1.59527e-15 -1.83643e-15 2.03827e-15 -7.0007e-16 2.93341e-14 -3.02799e-14 3.29958e-14 -5.86811e-14 5.49549e-16 -2.36242e-14 8.37729e-17 -1.409e-15 -2.04865e-14 -4.65619e-15 -3.27163e-14 -3.51789e-14 -3.27594e-14 -3.80498e-14 -3.13099e-15 -8.93522e-15 -3.61028e-15 -5.61161e-16 -2.82065e-15 -2.90357e-15 -8.45949e-16 -2.70101e-15 -5.63975e-15 -1.91324e-15 -1.50719e-13 -8.03324e-16 -1.62242e-13 -4.68163e-16 -1.68098e-13 -4.25744e-16 -1.77104e-13 -3.31027e-16 -1.19278e-14 -3.57213e-16 -2.04952e-15 -3.30402e-16 -2.15329e-15 -2.75354e-16 -2.28191e-15 -2.61715e-16 -2.45722e-15 -2.41474e-16 -2.67164e-15 -2.17534e-16 -2.8137e-15 -1.92073e-16 -2.89816e-15 -1.66793e-16 -2.93911e-15 -1.42778e-16 -2.88464e-15 -1.20709e-16 -2.74531e-15 -1.00909e-16 -2.57591e-15 -8.34555e-17 -2.39067e-15 -6.8277e-17 -2.19702e-15 -5.52255e-17 -1.99932e-15 -4.41217e-17 -1.80104e-15 -3.47741e-17 -1.60528e-15 -2.69893e-17 -1.41504e-15 -2.05819e-17 -1.23189e-15 -1.53741e-17 -1.05793e-15 -1.12008e-17 -8.95785e-16 -7.91033e-18 -7.4735e-16 -5.36721e-18 -6.13846e-16 -3.44771e-18 -4.959e-16 -2.04782e-18 -3.93628e-16 -1.0555e-18 -3.06673e-16 -3.94333e-19 -2.34311e-16 5.54376e-20 -1.75516e-16 6.0584e-19 -1.28875e-16 8.6802e-19 -9.28232e-17 9.35806e-19 -6.57116e-17 8.84767e-19 -4.58916e-17 7.72546e-19 -3.1792e-17 6.39575e-19 -2.19923e-17 5.1104e-19 -1.52807e-17 3.99692e-19 -1.06917e-17 3.09261e-19 -7.51507e-18 2.38178e-19 1.82901e-19 -5.2729e-18 5.74781e-18 5.47867e-20 8.03882e-18 5.93858e-20 1.11999e-17 5.88989e-20 1.55954e-17 4.84356e-20 2.17311e-17 1.99809e-20 3.02632e-17 -1.72736e-20 4.19757e-17 -6.14911e-20 5.77698e-17 -1.38572e-19 7.86031e-17 -2.63075e-19 1.05438e-16 -4.59473e-19 1.39176e-16 -7.57565e-19 1.80602e-16 -1.19597e-18 2.30321e-16 -1.822e-18 2.88839e-16 -2.69101e-18 3.56693e-16 -3.86663e-18 4.3396e-16 -5.41941e-18 5.20509e-16 -7.42569e-18 6.15932e-16 -9.96597e-18 7.19569e-16 -1.31237e-17 8.30494e-16 -1.69839e-17 9.47532e-16 -2.16329e-17 1.06928e-15 -2.71573e-17 1.19411e-15 -3.36442e-17 1.32024e-15 -4.11807e-17 1.44568e-15 -4.98525e-17 1.56829e-15 -5.97425e-17 1.68577e-15 -7.09297e-17 1.79538e-15 -8.34858e-17 1.89351e-15 -9.74689e-17 1.97509e-15 -1.12911e-16 2.03328e-15 -1.29797e-16 2.0592e-15 -1.48024e-16 2.04139e-15 -1.67334e-16 1.96392e-15 -1.87168e-16 1.81156e-15 -2.06489e-16 1.5662e-15 -2.23847e-16 1.35305e-15 -2.36352e-16 1.22111e-15 -2.42253e-16 1.12131e-15 -2.40646e-16 1.03129e-15 -2.33719e-16 1.9548e-14 -2.42659e-16 4.89143e-14 -3.03755e-16 5.04372e-14 -4.35908e-16 4.71788e-15 -1.48638e-15 2.63459e-15 -5.43854e-16 6.18461e-15 -4.41224e-15 3.19143e-14 -2.72575e-14 2.56223e-14 -2.66604e-14 5.66776e-16 -2.66811e-15 -1.14314e-16 -1.50273e-15 -5.47804e-15 -7.97633e-16 -1.97881e-14 -1.57098e-14 -1.94589e-14 -2.82909e-14 -5.27861e-15 -7.53637e-15 -5.55878e-15 -6.14217e-16 -5.03597e-15 -1.78416e-15 -4.63619e-15 -1.68791e-15 -1.84572e-15 -3.38295e-16 -1.16217e-15 -2.86316e-16 -1.21749e-15 -2.74945e-16 -1.28116e-15 -2.61881e-16 -1.35417e-15 -2.42449e-16 -1.43965e-15 -2.26895e-16 -1.57434e-15 -2.11599e-16 -1.67554e-15 -1.94377e-16 -1.72849e-15 -1.75873e-16 -1.73936e-15 -1.57031e-16 -1.71476e-15 -1.38738e-16 -1.66264e-15 -1.21524e-16 -1.58987e-15 -1.05643e-16 -1.50266e-15 -9.11843e-17 -1.40588e-15 -7.8146e-17 -1.30314e-15 -6.64785e-17 -1.19699e-15 -5.61105e-17 -1.08944e-15 -4.69605e-17 -9.82205e-16 -3.89434e-17 -8.76839e-16 -3.19733e-17 -7.74744e-16 -2.5965e-17 -6.77159e-16 -2.08347e-17 -5.8515e-16 -1.65005e-17 -4.99594e-16 -1.28823e-17 -4.21161e-16 -9.90239e-18 -3.50311e-16 -7.48475e-18 -2.87288e-16 -5.5557e-18 -2.32125e-16 -4.04437e-18 -1.84673e-16 -2.88362e-18 -1.44574e-16 -2.01099e-18 -1.11344e-16 -1.3698e-18 -8.43459e-17 -9.1003e-19 -6.28247e-17 -5.88505e-19 -4.60756e-17 -3.69644e-19 -3.33505e-17 -2.2438e-19 -2.3904e-17 -1.30738e-19 -1.70342e-17 -7.17036e-20 -1.21162e-17 -3.5692e-20 -8.62621e-18 -1.4297e-20 -6.15082e-18 -2.09347e-21 -4.38467e-18 9.47481e-21 -3.11329e-18 1.57422e-20 1.76128e-20 -2.19302e-18 2.16432e-18 -5.89056e-21 3.01535e-18 -1.10598e-20 4.16486e-18 -1.92518e-20 5.71698e-18 -3.1981e-20 7.81661e-18 -5.13889e-20 1.06629e-17 -8.06653e-20 1.45259e-17 -1.24445e-19 1.9735e-17 -1.89442e-19 2.66884e-17 -2.85138e-19 3.58346e-17 -4.24534e-19 4.76601e-17 -6.24917e-19 6.26654e-17 -9.08521e-19 8.13386e-17 -1.30306e-18 1.04129e-16 -1.84202e-18 1.3142e-16 -2.56468e-18 1.63505e-16 -3.51575e-18 2.00564e-16 -4.74478e-18 2.42651e-16 -6.30515e-18 2.89679e-16 -8.25293e-18 3.41417e-16 -1.06455e-17 3.97489e-16 -1.35401e-17 4.57378e-16 -1.69927e-17 5.20433e-16 -2.10569e-17 5.8588e-16 -2.57827e-17 6.52837e-16 -3.12163e-17 7.20327e-16 -3.73997e-17 7.87288e-16 -4.43701e-17 8.52589e-16 -5.21596e-17 9.15017e-16 -6.07927e-17 9.73237e-16 -7.02831e-17 1.02572e-15 -8.06267e-17 1.07058e-15 -9.17913e-17 1.10537e-15 -1.03701e-16 1.12659e-15 -1.16213e-16 1.12954e-15 -1.29079e-16 1.10877e-15 -1.42041e-16 1.05606e-15 -1.54215e-16 9.71769e-16 -1.65162e-16 8.61588e-16 -1.73402e-16 7.4146e-16 -1.76799e-16 6.4744e-16 -1.72735e-16 5.95185e-16 -2.70195e-16 9.00098e-16 -3.45057e-16 1.44898e-15 -3.42089e-16 1.33187e-15 -3.66524e-16 5.03918e-15 -3.26984e-15 2.17054e-14 -1.96607e-14 5.01401e-15 -8.45717e-15 3.38565e-16 -2.23859e-16 -3.11775e-17 -1.11035e-15 -4.59177e-16 -4.17036e-16 -1.15735e-14 -1.60674e-15 -1.63019e-14 -1.24924e-14 -5.36765e-15 -8.34956e-15 -3.57604e-15 -2.48723e-15 -3.06056e-15 -8.29593e-16 -7.06057e-16 -1.31758e-15 -7.16327e-16 -4.22013e-16 -7.8906e-16 -2.04554e-16 -8.5268e-16 -1.89393e-16 -8.879e-16 -1.80614e-16 -9.28136e-16 -1.59195e-16 -9.61311e-16 -1.44221e-16 -9.76089e-16 -1.32886e-16 -9.72252e-16 -1.21666e-16 -9.52352e-16 -1.1033e-16 -9.2032e-16 -9.88964e-17 -8.7941e-16 -8.77483e-17 -8.32061e-16 -7.71717e-17 -7.80089e-16 -6.73262e-17 -7.24915e-16 -5.82828e-17 -6.67725e-16 -5.00604e-17 -6.09564e-16 -4.26489e-17 -5.51377e-16 -3.60224e-17 -4.94022e-16 -3.01462e-17 -4.38271e-16 -2.49806e-17 -3.84807e-16 -2.04822e-17 -3.34215e-16 -1.66051e-17 -2.8698e-16 -1.3301e-17 -2.43483e-16 -1.05193e-17 -2.03994e-16 -8.2084e-18 -1.68672e-16 -6.31573e-18 -1.37565e-16 -4.78902e-18 -1.10615e-16 -3.57722e-18 -8.76636e-17 -2.63159e-18 -6.84671e-17 -1.90659e-18 -5.27096e-17 -1.36079e-18 -4.00229e-17 -9.5742e-19 -3.00077e-17 -6.64715e-19 -2.22539e-17 -4.5603e-19 -1.63615e-17 -3.09651e-19 -1.19568e-17 -2.08424e-19 -8.70813e-18 -1.39217e-19 -6.33298e-18 -9.22934e-20 -4.60322e-18 -6.06547e-20 -3.34214e-18 -3.9408e-20 -2.4191e-18 -2.52051e-20 -1.74029e-18 -1.57824e-20 -1.24109e-18 -9.60527e-21 -5.61366e-21 -8.75765e-19 7.75757e-19 -6.36893e-21 1.08489e-18 -1.00567e-20 1.50231e-18 -1.55523e-20 2.06341e-18 -2.36488e-20 2.81678e-18 -3.54667e-20 3.82941e-18 -5.26187e-20 5.1926e-18 -7.74435e-20 7.02753e-18 -1.13322e-19 9.48904e-18 -1.65081e-19 1.27669e-17 -2.3946e-19 1.70839e-17 -3.45635e-19 2.269e-17 -4.9573e-19 2.98534e-17 -7.05299e-19 3.88485e-17 -9.93708e-19 4.99421e-17 -1.38438e-18 6.33775e-17 -1.90488e-18 7.936e-17 -2.58675e-18 9.80417e-17 -3.46514e-18 1.1951e-16 -4.57823e-18 1.43776e-16 -5.96641e-18 1.70773e-16 -7.67131e-18 2.00345e-16 -9.73474e-18 2.32254e-16 -1.21976e-17 2.6618e-16 -1.50987e-17 3.01726e-16 -1.84738e-17 3.38424e-16 -2.23543e-17 3.75738e-16 -2.67662e-17 4.13072e-16 -3.1728e-17 4.49761e-16 -3.72476e-17 4.85063e-16 -4.33186e-17 5.18148e-16 -4.99129e-17 5.48067e-16 -5.69729e-17 5.73732e-16 -6.44006e-17 5.93891e-16 -7.20472e-17 6.07072e-16 -7.97046e-17 6.11474e-16 -8.71056e-17 6.06079e-16 -9.39212e-17 5.885e-16 -9.97629e-17 5.56396e-16 -1.04293e-16 5.06756e-16 -1.07043e-16 4.37958e-16 -1.0755e-16 6.29612e-16 -1.05454e-16 6.57556e-16 -1.04875e-16 5.49088e-16 -1.71327e-16 7.08711e-16 -4.71475e-16 5.66587e-15 -5.10783e-15 1.37243e-14 -3.45477e-15 1.95566e-15 -2.52898e-16 1.83422e-15 -6.96957e-17 -1.33914e-16 -9.51654e-14 -2.0789e-16 -3.71398e-16 -2.16104e-15 -1.97052e-16 -6.61074e-15 -1.28762e-15 -2.8123e-15 -2.94424e-15 -2.62962e-15 -2.06745e-15 -2.15527e-15 -3.69024e-16 -1.57376e-15 -5.58473e-16 -4.58273e-16 -3.03563e-16 -4.84246e-16 -1.36855e-16 -5.20812e-16 -9.3431e-17 -5.12755e-16 -9.38757e-17 -5.14736e-16 -9.19842e-17 -5.22011e-16 -8.76369e-17 -5.22998e-16 -8.1948e-17 -5.16412e-16 -7.57438e-17 -5.01862e-16 -6.91296e-17 -4.80986e-16 -6.22713e-17 -4.55469e-16 -5.53976e-17 -4.26695e-16 -4.87284e-17 -3.95756e-16 -4.24237e-17 -3.63527e-16 -3.65797e-17 -3.30731e-16 -3.12448e-17 -2.97983e-16 -2.64358e-17 -2.65814e-16 -2.21494e-17 -2.34685e-16 -1.837e-17 -2.04991e-16 -1.50735e-17 -1.77062e-16 -1.22302e-17 -1.51161e-16 -9.80676e-18 -1.27487e-16 -7.76675e-18 -1.06167e-16 -6.07222e-18 -8.72592e-17 -4.68433e-18 -7.07572e-17 -3.56433e-18 -5.65924e-17 -2.67449e-18 -4.46418e-17 -1.97888e-18 -3.47377e-17 -1.44413e-18 -2.66782e-17 -1.04e-18 -2.02398e-17 -7.39774e-19 -1.51894e-17 -5.20463e-19 -1.12966e-17 -3.62791e-19 -8.34364e-18 -2.51054e-19 -6.13395e-18 -1.72821e-19 -4.49728e-18 -1.18539e-19 -3.29251e-18 -8.10863e-20 -2.40749e-18 -5.53068e-20 -1.75658e-18 -3.75646e-20 -1.27661e-18 -2.53496e-20 -9.221e-19 -1.69491e-20 -6.60531e-19 -1.11962e-20 -4.68416e-19 -7.2877e-21 -4.65978e-21 -3.284e-19 2.63742e-19 -3.15799e-21 3.73102e-19 -4.87744e-21 5.22054e-19 -7.41972e-21 7.23413e-19 -1.11364e-20 9.94524e-19 -1.65227e-20 1.35926e-18 -2.42923e-20 1.85067e-18 -3.5488e-20 2.51406e-18 -5.16426e-20 3.41013e-18 -7.49969e-20 4.6176e-18 -1.08775e-19 6.23484e-18 -1.5751e-19 8.3799e-18 -2.27402e-19 1.11887e-17 -3.26691e-19 1.48114e-17 -4.66003e-19 1.94063e-17 -6.58657e-19 2.51331e-17 -9.2089e-19 3.21439e-17 -1.27198e-18 4.05747e-17 -1.73423e-18 5.05363e-17 -2.33283e-18 6.2106e-17 -3.0955e-18 7.53203e-17 -4.05208e-18 9.01699e-17 -5.23387e-18 1.06595e-16 -6.67286e-18 1.24484e-16 -8.40086e-18 1.43673e-16 -1.04485e-17 1.63941e-16 -1.28437e-17 1.85013e-16 -1.56103e-17 2.06555e-16 -1.87661e-17 2.28163e-16 -2.23189e-17 2.49352e-16 -2.62628e-17 2.69542e-16 -3.0571e-17 2.88046e-16 -3.51875e-17 3.04061e-16 -4.00205e-17 3.16684e-16 -4.49419e-17 3.24953e-16 -4.98002e-17 3.27935e-16 -5.44447e-17 3.24808e-16 -5.87461e-17 3.14954e-16 -6.2601e-17 2.98357e-16 -6.59284e-17 2.75057e-16 -6.86797e-17 2.4562e-16 -7.08488e-17 2.11293e-16 -7.23218e-17 1.76317e-16 -7.18744e-17 2.50363e-16 -2.57064e-16 5.65439e-16 -4.69078e-16 4.81995e-15 -3.71368e-16 3.00461e-16 -4.83487e-16 9.50884e-17 -3.92548e-16 4.81313e-17 -5.52035e-17 -8.52859e-16 -2.07109e-13 -4.63877e-17 -1.40622e-15 -1.97075e-16 -6.87191e-17 -1.43052e-15 -1.77886e-16 -2.91955e-15 -3.43562e-16 -7.34618e-16 -6.40748e-16 -4.92573e-16 -3.72261e-16 -5.24602e-16 -6.40464e-17 -2.73376e-16 -6.23839e-17 -2.12304e-16 -6.12817e-17 -2.39573e-16 -6.04098e-17 -2.60897e-16 -5.91242e-17 -2.73861e-16 -5.71814e-17 -2.80087e-16 -5.45765e-17 -2.81409e-16 -5.13477e-17 -2.77736e-16 -4.75709e-17 -2.6936e-16 -4.33797e-17 -2.57051e-16 -3.89538e-17 -2.41805e-16 -3.44813e-17 -2.24568e-16 -3.01244e-17 -2.06129e-16 -2.60024e-17 -1.87116e-16 -2.21915e-17 -1.68029e-16 -1.87334e-17 -1.49267e-16 -1.56443e-17 -1.31153e-16 -1.2923e-17 -1.13945e-16 -1.05567e-17 -9.78469e-17 -8.52486e-18 -8.30124e-17 -6.80227e-18 -6.9548e-17 -5.3607e-18 -5.75148e-17 -4.17045e-18 -4.69304e-17 -3.20142e-18 -3.77725e-17 -2.42402e-18 -2.99824e-17 -1.8099e-18 -2.34714e-17 -1.33249e-18 -1.81265e-17 -9.67453e-19 -1.38186e-17 -6.93062e-19 -1.04098e-17 -4.90324e-19 -7.76057e-18 -3.4306e-19 -5.73654e-18 -2.37823e-19 -4.21382e-18 -1.63735e-19 -3.0829e-18 -1.12234e-19 -2.25084e-18 -7.67729e-20 -1.64197e-18 -5.24944e-20 -1.19703e-18 -3.58983e-20 -8.71306e-19 -2.45331e-20 -6.32094e-19 -1.67225e-20 -4.55995e-19 -1.13381e-20 -3.26385e-19 -7.62462e-21 -2.3136e-19 -5.07267e-21 -1.62224e-19 -3.3327e-21 -2.15903e-21 -1.12473e-19 8.0958e-20 -1.12958e-21 1.16092e-19 -1.7443e-21 1.64653e-19 -2.65893e-21 2.31124e-19 -4.00421e-21 3.21566e-19 -5.96584e-21 4.4439e-19 -8.81481e-21 6.11459e-19 -1.29559e-20 8.3956e-19 -1.90021e-20 1.15213e-18 -2.78821e-20 1.5811e-18 -4.09864e-20 2.16857e-18 -6.03515e-20 2.96805e-18 -8.88816e-20 4.04493e-18 -1.30597e-19 5.47608e-18 -1.90901e-19 7.34826e-18 -2.76844e-19 9.75552e-18 -3.97382e-19 1.27955e-17 -5.63591e-19 1.65649e-17 -7.88839e-19 2.11545e-17 -1.08889e-18 2.66437e-17 -1.48189e-18 3.30951e-17 -1.9883e-18 4.05498e-17 -2.63068e-18 4.90228e-17 -3.43329e-18 5.84987e-17 -4.42162e-18 6.89282e-17 -5.62168e-18 8.02245e-17 -7.05904e-18 9.22583e-17 -8.75764e-18 1.04852e-16 -1.07381e-17 1.17773e-16 -1.30154e-17 1.30717e-16 -1.55954e-17 1.43299e-16 -1.84701e-17 1.55036e-16 -2.16111e-17 1.65354e-16 -2.49627e-17 1.73626e-16 -2.84369e-17 1.79265e-16 -3.19169e-17 1.81831e-16 -3.52727e-17 1.81088e-16 -3.83911e-17 1.77001e-16 -4.12099e-17 1.69698e-16 -4.3743e-17 1.5947e-16 -4.60859e-17 1.46765e-16 -4.83985e-17 1.31854e-16 -5.08843e-17 1.1338e-16 -5.37646e-17 5.49956e-16 -5.71411e-17 5.14645e-16 -6.28206e-17 3.20916e-16 -1.81043e-16 2.50223e-16 -3.70193e-16 1.63723e-16 -2.75795e-16 1.18757e-16 -4.09413e-17 -5.08194e-17 -1.68322e-13 -3.83098e-17 -7.87126e-15 -7.53685e-17 -5.25385e-17 -9.59603e-17 -1.19609e-16 -2.95863e-16 -9.66243e-17 -4.06693e-16 -6.50557e-17 -8.55501e-17 -5.59414e-17 -9.74004e-17 -5.14141e-17 -1.10332e-16 -4.84266e-17 -1.23339e-16 -4.58998e-17 -1.35077e-16 -4.36457e-17 -1.44602e-16 -4.14767e-17 -1.51408e-16 -3.92125e-17 -1.55123e-16 -3.67252e-17 -1.55542e-16 -3.39629e-17 -1.52736e-16 -3.09509e-17 -1.47071e-16 -2.77726e-17 -1.39115e-16 -2.45419e-17 -1.29502e-16 -2.13736e-17 -1.18827e-16 -1.83631e-17 -1.07595e-16 -1.55778e-17 -9.62128e-17 -1.3057e-17 -8.49988e-17 -1.08172e-17 -7.4197e-17 -8.85861e-18 -6.3991e-17 -7.17062e-18 -5.45142e-17 -5.73561e-18 -4.58577e-17 -4.53194e-18 -3.80762e-17 -3.5358e-18 -3.11924e-17 -2.72264e-18 -2.52013e-17 -2.06818e-18 -2.00736e-17 -1.54913e-18 -1.57602e-17 -1.14375e-18 -1.21959e-17 -8.32161e-19 -9.30417e-18 -5.96622e-19 -7.00167e-18 -4.21616e-19 -5.20261e-18 -2.93865e-19 -3.8229e-18 -2.02261e-19 -2.78356e-18 -1.37723e-19 -2.01334e-18 -9.30071e-20 -1.45048e-18 -6.2484e-20 -1.04346e-18 -4.18975e-20 -7.5094e-19 -2.81225e-20 -5.41032e-19 -1.89325e-20 -3.90013e-19 -1.27884e-20 -2.80809e-19 -8.65547e-21 -2.01434e-19 -5.85387e-21 -1.43577e-19 -3.94257e-21 -1.01453e-19 -2.63545e-21 -7.09574e-20 -1.74401e-21 -4.90904e-20 -1.14079e-21 -7.37043e-22 -3.3599e-20 2.15839e-20 -3.16164e-22 3.14213e-20 -4.91997e-22 4.52552e-20 -7.56817e-22 6.4503e-20 -1.1512e-21 9.10977e-20 -1.73379e-21 1.27768e-19 -2.59221e-21 1.78476e-19 -3.86172e-21 2.49048e-19 -5.75592e-21 3.47999e-19 -8.61384e-21 4.87528e-19 -1.2968e-20 6.84595e-19 -1.96373e-20 9.61959e-19 -2.98458e-20 1.34905e-18 -4.53693e-20 1.88251e-18 -6.87069e-20 2.60629e-18 -1.03274e-19 3.57121e-18 -1.53611e-19 4.83388e-18 -2.25605e-19 6.45507e-18 -3.26702e-19 8.49748e-18 -4.66114e-19 1.1023e-17 -6.54984e-19 1.40896e-17 -9.06516e-19 1.7748e-17 -1.23601e-18 2.20382e-17 -1.66084e-18 2.69858e-17 -2.20024e-18 3.25982e-17 -2.87496e-18 3.88608e-17 -3.70673e-18 4.57323e-17 -4.71739e-18 5.31398e-17 -5.9277e-18 6.09722e-17 -7.35568e-18 6.90712e-17 -9.01433e-18 7.72209e-17 -1.09085e-17 8.51356e-17 -1.30314e-17 9.24536e-17 -1.53603e-17 9.87483e-17 -1.78548e-17 1.0357e-16 -2.04592e-17 1.06523e-16 -2.31113e-17 1.07363e-16 -2.57584e-17 1.06068e-16 -2.83773e-17 1.02847e-16 -3.0991e-17 9.80765e-17 -3.36751e-17 9.218e-17 -3.65443e-17 8.55307e-17 -3.97354e-17 7.83677e-17 -4.34168e-17 7.06107e-17 -4.79966e-17 6.25564e-17 -5.48433e-17 2.36353e-16 -6.4951e-17 1.98816e-16 -8.63072e-17 1.06737e-16 -1.20958e-16 6.49135e-17 -3.18853e-17 -2.17086e-16 -1.2888e-13 -1.84266e-17 -1.64731e-14 -4.68658e-17 -4.23471e-17 -5.71888e-17 -9.13754e-17 -5.1822e-17 -8.14034e-17 -5.55387e-17 -6.06382e-17 -6.2578e-17 -4.86977e-17 -6.92937e-17 -4.25871e-17 -7.5535e-17 -3.87519e-17 -8.12071e-17 -3.55334e-17 -8.60744e-17 -3.26771e-17 -8.97739e-17 -3.00632e-17 -9.19325e-17 -2.75768e-17 -9.22836e-17 -2.5127e-17 -9.07433e-17 -2.26651e-17 -8.74298e-17 -2.01884e-17 -8.26247e-17 -1.77307e-17 -7.67022e-17 -1.53459e-17 -7.00534e-17 -1.30909e-17 -6.30331e-17 -1.10122e-17 -5.5934e-17 -9.14052e-18 -4.89822e-17 -7.48977e-18 -4.2345e-17 -6.06035e-18 -3.61412e-17 -4.84287e-18 -3.04503e-17 -3.82167e-18 -2.53196e-17 -2.97755e-18 -2.07704e-17 -2.28974e-18 -1.68026e-17 -1.73725e-18 -1.33987e-17 -1.29984e-18 -1.05274e-17 -9.58658e-19 -8.14714e-18 -6.96582e-19 -6.20899e-18 -4.98462e-19 -4.65987e-18 -3.51161e-19 -3.44511e-18 -2.43528e-19 -2.51094e-18 -1.66285e-19 -1.80651e-18 -1.11871e-19 -1.28549e-18 -7.42546e-20 -9.07116e-19 -4.87329e-20 -6.36822e-19 -3.17226e-20 -4.46294e-19 -2.05634e-20 -3.13196e-19 -1.33331e-20 -2.2055e-19 -8.68304e-21 -1.55925e-19 -5.69544e-21 -1.10538e-19 -3.76493e-21 -7.83706e-20 -2.50358e-21 -5.53853e-20 -1.66848e-21 -3.88898e-20 -1.10936e-21 -2.70646e-20 -7.32874e-22 -1.86418e-20 -4.79633e-22 -1.27046e-20 -3.10507e-22 -1.98759e-22 -8.57044e-21 4.91625e-21 -7.18703e-23 7.27563e-21 -1.13178e-22 1.06571e-20 -1.76361e-22 1.54513e-20 -2.71989e-22 2.22015e-20 -4.15742e-22 3.16959e-20 -6.31868e-22 4.51236e-20 -9.59539e-22 6.43176e-20 -1.46397e-21 9.21016e-20 -2.25463e-21 1.32746e-19 -3.51331e-21 1.92521e-19 -5.53496e-21 2.80321e-19 -8.78436e-21 4.08307e-19 -1.39713e-20 5.92512e-19 -2.21467e-20 8.5334e-19 -3.48223e-20 1.21589e-18 -5.41129e-20 1.71005e-18 -8.29036e-20 2.37027e-18 -1.25036e-19 3.235e-18 -1.8551e-19 4.34572e-18 -2.70692e-19 5.74565e-18 -3.88514e-19 7.47795e-18 -5.4865e-19 9.58362e-18 -7.62634e-19 1.2099e-17 -1.04391e-18 1.50527e-17 -1.40776e-18 1.84623e-17 -1.87107e-18 2.23307e-17 -2.45194e-18 2.66411e-17 -3.16901e-18 3.1352e-17 -4.04052e-18 3.63913e-17 -5.08315e-18 4.16494e-17 -6.31036e-18 4.69728e-17 -7.73066e-18 5.21611e-17 -9.34582e-18 5.69737e-17 -1.115e-17 6.11507e-17 -1.31305e-17 6.44512e-17 -1.52717e-17 6.66987e-17 -1.75612e-17 6.78202e-17 -1.99992e-17 6.78563e-17 -2.26065e-17 6.6932e-17 -2.54282e-17 6.51871e-17 -2.85279e-17 6.27133e-17 -3.19754e-17 5.95535e-17 -3.58561e-17 5.59167e-17 -4.06367e-17 5.26343e-17 -4.72395e-17 4.91917e-17 -5.56244e-17 4.57438e-17 -7.16962e-17 4.43527e-17 -1.1714e-16 5.7175e-18 -2.61037e-17 -4.73485e-16 -9.03543e-14 -7.8347e-18 -2.74288e-14 -3.36748e-17 -3.49104e-17 -4.52068e-17 -8.39947e-17 -4.52149e-17 -7.04134e-17 -4.57216e-17 -4.97928e-17 -4.82951e-17 -4.20478e-17 -5.15372e-17 -3.60863e-17 -5.42074e-17 -3.17936e-17 -5.62067e-17 -2.82623e-17 -5.75142e-17 -2.51622e-17 -5.80391e-17 -2.23783e-17 -5.76645e-17 -1.98358e-17 -5.63123e-17 -1.74788e-17 -5.39883e-17 -1.5273e-17 -5.07956e-17 -1.32056e-17 -4.69167e-17 -1.12804e-17 -4.25766e-17 -9.51039e-18 -3.80035e-17 -7.91007e-18 -3.33991e-17 -6.48961e-18 -2.89245e-17 -5.25219e-18 -2.46981e-17 -4.19358e-18 -2.07998e-17 -3.30348e-18 -1.72776e-17 -2.5673e-18 -1.41544e-17 -1.96806e-18 -1.14336e-17 -1.48784e-18 -9.10331e-18 -1.10892e-18 -7.14101e-18 -8.14526e-19 -5.51649e-18 -5.89366e-19 -4.19478e-18 -4.19891e-19 -3.13853e-18 -2.94404e-19 -2.30992e-18 -2.03049e-19 -1.67225e-18 -1.37702e-19 -1.19114e-18 -9.18032e-20 -8.35464e-19 -6.0171e-20 -5.7787e-19 -3.87943e-20 -3.9507e-19 -2.46355e-20 -2.6784e-19 -1.54444e-20 -1.80811e-19 -9.59298e-21 -1.22098e-19 -5.93285e-21 -8.2828e-20 -3.67532e-21 -5.66093e-20 -2.2944e-21 -3.90069e-20 -1.45003e-21 -2.70505e-20 -9.29204e-22 -1.88105e-20 -6.02558e-22 -1.30582e-20 -3.93472e-22 -9.01266e-21 -2.57165e-22 -6.1667e-21 -1.67305e-22 -4.17701e-21 -1.07937e-22 -2.80043e-21 -6.89338e-23 -4.35656e-23 -1.85943e-21 9.57219e-22 -1.36489e-23 1.44193e-21 -2.18093e-23 2.15084e-21 -3.45154e-23 3.17694e-21 -5.41122e-23 4.6534e-21 -8.42048e-23 6.78104e-21 -1.30636e-22 9.87824e-21 -2.03412e-22 1.44644e-20 -3.20282e-22 2.13881e-20 -5.12997e-22 3.20104e-20 -8.3759e-22 4.84486e-20 -1.3904e-21 7.38826e-20 -2.33199e-21 1.12918e-19 -3.92139e-21 1.71993e-19 -6.56364e-21 2.59812e-19 -1.08737e-20 3.87769e-19 -1.776e-20 5.70334e-19 -2.85301e-20 8.25343e-19 -4.50206e-20 1.17415e-18 -6.97519e-20 1.64158e-18 -1.06104e-19 2.25562e-18 -1.58509e-19 3.04684e-18 -2.3265e-19 4.04739e-18 -3.35651e-19 5.28968e-18 -4.76242e-19 6.80454e-18 -6.64867e-19 8.61898e-18 -9.13719e-19 1.07535e-17 -1.23668e-18 1.32188e-17 -1.64911e-18 1.60124e-17 -2.16753e-18 1.91145e-17 -2.80912e-18 2.24843e-17 -3.59107e-18 2.6056e-17 -4.52973e-18 2.97369e-17 -5.63969e-18 3.34095e-17 -6.9329e-18 3.69377e-17 -8.41819e-18 4.0181e-17 -1.01018e-17 4.30112e-17 -1.19895e-17 4.53283e-17 -1.40898e-17 4.7067e-17 -1.64177e-17 4.81872e-17 -1.89968e-17 4.8646e-17 -2.18614e-17 4.83667e-17 -2.50664e-17 4.72544e-17 -2.87224e-17 4.55991e-17 -3.30694e-17 4.37814e-17 -3.85966e-17 4.08041e-17 -4.47288e-17 3.89955e-17 -6.22289e-17 4.20263e-17 -1.19127e-16 4.67808e-18 -2.16152e-17 9.48145e-17 -1.05436e-13 -1.22063e-17 -4.91222e-14 -2.91033e-17 -3.6565e-17 -3.76178e-17 -1.1746e-16 -3.49775e-17 -7.19259e-17 -3.71544e-17 -4.07778e-17 -3.84624e-17 -3.52487e-17 -3.9679e-17 -2.97683e-17 -4.03905e-17 -2.55432e-17 -4.04717e-17 -2.20985e-17 -3.99571e-17 -1.91415e-17 -3.88868e-17 -1.65289e-17 -3.7291e-17 -1.4196e-17 -3.52091e-17 -1.21067e-17 -3.27057e-17 -1.0237e-17 -2.98748e-17 -8.57064e-18 -2.68325e-17 -7.09643e-18 -2.37023e-17 -5.80581e-18 -2.06009e-17 -4.69019e-18 -1.76262e-17 -3.73946e-18 -1.48523e-17 -2.9414e-18 -1.23287e-17 -2.28185e-18 -1.0083e-17 -1.74532e-18 -8.1246e-18 -1.31577e-18 -6.44902e-18 -9.77368e-19 -5.04146e-18 -7.15071e-19 -3.88008e-18 -5.15091e-19 -2.93878e-18 -3.65156e-19 -2.18944e-18 -2.54645e-19 -1.60373e-18 -1.74599e-19 -1.15444e-18 -1.17648e-19 -8.16379e-19 -7.78644e-20 -5.67057e-19 -5.05955e-20 -3.86938e-19 -3.22667e-20 -2.5955e-19 -2.01938e-20 -1.71388e-19 -1.24063e-20 -1.11681e-19 -7.48983e-21 -7.20828e-20 -4.45274e-21 -4.63178e-20 -2.61642e-21 -2.98109e-20 -1.52808e-21 -1.93367e-20 -8.93759e-22 -1.26998e-20 -5.28015e-22 -8.45953e-21 -3.17479e-22 -5.70403e-21 -1.95058e-22 -3.87432e-21 -1.22303e-22 -2.63487e-21 -7.77928e-23 -1.78444e-21 -4.97853e-23 -1.19892e-21 -3.18136e-23 -7.97764e-22 -2.0193e-23 -5.25634e-22 -1.26995e-23 -7.90957e-24 -3.43175e-22 1.61149e-22 -2.21215e-24 2.47376e-22 -3.59129e-24 3.76219e-22 -5.77899e-24 5.66944e-22 -9.22254e-24 8.48254e-22 -1.46405e-23 1.26572e-21 -2.32682e-23 1.89619e-21 -3.73734e-23 2.87346e-21 -6.12785e-23 4.43078e-21 -1.03261e-22 6.96613e-21 -1.78893e-22 1.1137e-20 -3.16618e-22 1.79914e-20 -5.6671e-22 2.91399e-20 -1.01513e-21 4.69737e-20 -1.80428e-21 7.49293e-20 -3.16328e-21 1.17795e-19 -5.45059e-21 1.82047e-19 -9.21259e-21 2.76203e-19 -1.52614e-20 4.11148e-19 -2.47751e-20 6.00413e-19 -3.94222e-20 8.6034e-19 -6.15109e-20 1.2101e-18 -9.4161e-20 1.67149e-18 -1.41492e-19 2.26847e-18 -2.0882e-19 3.02638e-18 -3.02842e-19 3.9708e-18 -4.318e-19 5.12608e-18 -6.05586e-19 6.51347e-18 -8.35775e-19 8.14899e-18 -1.13554e-18 1.0041e-17 -1.51947e-18 1.21874e-17 -2.00318e-18 1.45729e-17 -2.60288e-18 1.71666e-17 -3.33481e-18 1.99191e-17 -4.2146e-18 2.27627e-17 -5.25679e-18 2.56127e-17 -6.4744e-18 2.83725e-17 -7.87872e-18 3.09402e-17 -9.47942e-18 3.32122e-17 -1.1285e-17 3.50834e-17 -1.33049e-17 3.64456e-17 -1.55579e-17 3.71986e-17 -1.80985e-17 3.72845e-17 -2.10817e-17 3.67248e-17 -2.48611e-17 3.56174e-17 -3.01185e-17 3.29453e-17 -3.51251e-17 3.85662e-17 -5.71869e-17 4.45293e-17 -1.12185e-16 9.36986e-18 -1.93287e-17 1.61163e-15 -1.53595e-13 -4.60641e-16 -8.10474e-14 -3.63068e-17 -4.85671e-16 -3.43587e-17 -1.74552e-16 -2.72126e-17 -5.45411e-17 -2.90057e-17 -3.30405e-17 -2.96571e-17 -2.8951e-17 -2.98651e-17 -2.34351e-17 -2.96277e-17 -1.93952e-17 -2.89046e-17 -1.63193e-17 -2.77157e-17 -1.3818e-17 -2.61342e-17 -1.1672e-17 -2.42473e-17 -9.79188e-18 -2.21417e-17 -8.14072e-18 -1.99009e-17 -6.69908e-18 -1.76056e-17 -5.45202e-18 -1.53302e-17 -4.38502e-18 -1.31397e-17 -3.48315e-18 -1.10867e-17 -2.73085e-18 -9.20927e-18 -2.11207e-18 -7.53118e-18 -1.61057e-18 -6.0631e-18 -1.21034e-18 -4.80468e-18 -8.95959e-19 -3.747e-18 -6.53031e-19 -2.87497e-18 -4.68437e-19 -2.16952e-18 -3.30554e-19 -1.60954e-18 -2.29354e-19 -1.17343e-18 -1.56398e-19 -8.40269e-19 -1.04761e-19 -5.90707e-19 -6.88935e-20 -4.07484e-19 -4.44568e-20 -2.75709e-19 -2.81348e-20 -1.82924e-19 -1.74531e-20 -1.19004e-19 -1.0608e-20 -7.59458e-20 -6.31535e-21 -4.75988e-20 -3.68288e-21 -2.9364e-20 -2.10513e-21 -1.78984e-20 -1.18139e-21 -1.08414e-20 -6.53074e-22 -6.57582e-21 -3.57639e-22 -4.02875e-21 -1.95684e-22 -2.5123e-21 -1.08172e-22 -1.60108e-21 -6.11148e-23 -1.04151e-21 -3.55812e-23 -6.87438e-22 -2.13721e-23 -4.56626e-22 -1.31594e-23 -3.02928e-22 -8.21671e-24 -1.9966e-22 -5.1474e-24 -1.30418e-22 -3.21085e-24 -8.43954e-23 -1.98687e-24 -1.21858e-24 -5.41442e-23 2.37367e-23 -3.11093e-25 3.71518e-23 -5.13287e-25 5.76405e-23 -8.40123e-25 8.86924e-23 -1.36567e-24 1.35767e-22 -2.2153e-24 2.081e-22 -3.62013e-24 3.22425e-22 -6.03918e-24 5.10055e-22 -1.04171e-23 8.29415e-22 -1.86963e-23 1.38682e-21 -3.47798e-23 2.3692e-21 -6.62645e-23 4.09337e-21 -1.27441e-22 7.07733e-21 -2.44315e-22 1.21399e-20 -4.62752e-22 2.05347e-20 -8.61291e-22 3.4124e-20 -1.57069e-21 5.55949e-20 -2.80286e-21 8.87164e-20 -4.89228e-21 1.38629e-19 -8.35344e-21 2.12151e-19 -1.39578e-20 3.18079e-19 -2.28334e-20 4.67445e-19 -3.65883e-20 6.73691e-19 -5.74582e-20 9.52715e-19 -8.84732e-20 1.32273e-18 -1.33635e-19 1.80389e-18 -1.98094e-19 2.41759e-18 -2.88294e-19 3.18547e-18 -4.12085e-19 4.12798e-18 -5.78737e-19 5.26264e-18 -7.98875e-19 6.60188e-18 -1.08427e-18 8.15073e-18 -1.44751e-18 9.9043e-18 -1.90154e-18 1.18455e-17 -2.45913e-18 1.39428e-17 -3.13239e-18 1.61486e-17 -3.93238e-18 1.83985e-17 -4.86928e-18 2.06107e-17 -5.95309e-18 2.26878e-17 -7.19546e-18 2.45223e-17 -8.61549e-18 2.60117e-17 -1.02576e-17 2.7095e-17 -1.22394e-17 2.78117e-17 -1.48383e-17 2.83295e-17 -1.85359e-17 2.88948e-17 -2.41087e-17 2.81043e-17 -2.79888e-17 3.4455e-17 -3.91719e-17 4.83313e-17 -1.59686e-16 1.23898e-16 -1.27782e-16 5.66321e-15 -2.05137e-13 -4.02455e-15 -1.01516e-13 -2.01257e-15 -7.37807e-15 -6.42798e-16 -1.32187e-14 -1.88381e-17 -5.83298e-16 -2.14101e-17 -2.68976e-17 -2.13064e-17 -2.49044e-17 -2.09088e-17 -1.89323e-17 -2.03212e-17 -1.46415e-17 -1.94833e-17 -1.16491e-17 -1.83479e-17 -9.50552e-18 -1.69498e-17 -7.82901e-18 -1.53646e-17 -6.43697e-18 -1.36764e-17 -5.25204e-18 -1.19626e-17 -4.23959e-18 -1.02874e-17 -3.38009e-18 -8.70054e-18 -2.6584e-18 -7.23828e-18 -2.06069e-18 -5.9238e-18 -1.57333e-18 -4.76902e-18 -1.18259e-18 -3.77638e-18 -8.74713e-19 -2.94081e-18 -6.36415e-19 -2.25163e-18 -4.55288e-19 -1.6945e-18 -3.20134e-19 -1.25298e-18 -2.21159e-19 -9.09975e-19 -1.50046e-19 -6.48782e-19 -9.99317e-20 -4.53877e-19 -6.53052e-20 -3.11404e-19 -4.18554e-20 -2.09424e-19 -2.62966e-20 -1.37981e-19 -1.61871e-20 -8.90217e-20 -9.75733e-21 -5.62198e-20 -5.75654e-21 -3.47466e-20 -3.32239e-21 -2.10197e-20 -1.87511e-21 -1.24555e-20 -1.03471e-21 -7.24256e-21 -5.58394e-22 -4.14676e-21 -2.95038e-22 -2.35138e-21 -1.53025e-22 -1.33198e-21 -7.83051e-23 -7.62247e-22 -3.98758e-23 -4.45835e-22 -2.04678e-23 -2.68735e-22 -1.07564e-23 -1.67136e-22 -5.86898e-24 -1.06568e-22 -3.34463e-24 -6.89146e-23 -1.98022e-24 -4.47169e-23 -1.20182e-24 -2.88943e-23 -7.36804e-25 -1.8522e-23 -4.51373e-25 -1.17688e-23 -2.74758e-25 -1.65931e-25 -7.41732e-24 3.08864e-24 -3.90952e-26 4.92795e-24 -6.55546e-26 7.79855e-24 -1.09156e-25 1.22557e-23 -1.80866e-25 1.92191e-23 -3.00417e-25 3.03641e-23 -5.07219e-25 4.89768e-23 -8.86496e-25 8.16939e-23 -1.62823e-24 1.418e-22 -3.15263e-24 2.55136e-22 -6.36409e-24 4.70189e-22 -1.31443e-23 8.74657e-22 -2.72746e-23 1.6217e-21 -5.61051e-23 2.97009e-21 -1.13474e-22 5.34355e-21 -2.24656e-22 9.41531e-21 -4.34465e-22 1.6224e-20 -8.20098e-22 2.73263e-20 -1.5108e-21 4.49888e-20 -2.71691e-21 7.24181e-20 -4.77135e-21 1.14023e-19 -8.18647e-21 1.75688e-19 -1.37292e-20 2.65045e-19 -2.25158e-20 3.91691e-19 -3.61263e-20 5.67315e-19 -5.67349e-20 8.05681e-19 -8.72483e-20 1.12238e-18 -1.31442e-19 1.53435e-18 -1.94078e-19 2.05897e-18 -2.8098e-19 2.71293e-18 -3.99053e-19 3.5106e-18 -5.56232e-19 4.46218e-18 -7.61329e-19 5.57158e-18 -1.02382e-18 6.83423e-18 -1.35355e-18 8.23516e-18 -1.76066e-18 9.74769e-18 -2.25592e-18 1.13333e-17 -2.85202e-18 1.29429e-17 -3.56542e-18 1.45199e-17 -4.41974e-18 1.60101e-17 -5.4556e-18 1.73871e-17 -6.76035e-18 1.87066e-17 -8.54145e-18 2.01652e-17 -1.1206e-17 2.20196e-17 -1.51989e-17 2.45095e-17 -2.12329e-17 2.36933e-17 -2.16941e-17 6.59237e-16 -6.64577e-16 6.07434e-15 -8.14457e-15 1.35293e-14 -7.6166e-15 1.02239e-14 -1.94303e-13 3.29635e-16 -1.10748e-13 -8.43203e-15 -1.21535e-14 -5.76244e-15 -3.60305e-14 -1.28171e-17 -8.97657e-15 -1.60731e-17 -2.25853e-17 -1.54025e-17 -2.37484e-17 -1.43509e-17 -1.73233e-17 -1.33331e-17 -1.24777e-17 -1.24173e-17 -9.01878e-18 -1.1471e-17 -6.80725e-18 -1.04351e-17 -5.30865e-18 -9.31874e-18 -4.1987e-18 -8.1618e-18 -3.32442e-18 -7.01093e-18 -2.61688e-18 -5.90725e-18 -2.03998e-18 -4.88306e-18 -1.57014e-18 -3.9608e-18 -1.19044e-18 -3.15311e-18 -8.87662e-19 -2.4638e-18 -6.50436e-19 -1.88966e-18 -4.68108e-19 -1.42245e-18 -3.30719e-19 -1.05074e-18 -2.29271e-19 -7.61477e-19 -1.55893e-19 -5.41243e-19 -1.03923e-19 -3.77177e-19 -6.78934e-20 -2.57595e-19 -4.34509e-20 -1.72334e-19 -2.72299e-20 -1.12885e-19 -1.67027e-20 -7.23628e-20 -1.00238e-20 -4.53723e-20 -5.88284e-21 -2.78134e-20 -3.37482e-21 -1.66618e-20 -1.89156e-21 -9.75122e-21 -1.03537e-21 -5.57492e-21 -5.53223e-22 -3.11481e-21 -2.88482e-22 -1.70285e-21 -1.46813e-22 -9.13409e-22 -7.2967e-23 -4.83226e-22 -3.54844e-23 -2.54349e-22 -1.69556e-23 -1.34927e-22 -8.02441e-24 -7.32787e-23 -3.81168e-24 -4.13201e-23 -1.85172e-24 -2.43362e-23 -9.38836e-25 -1.48917e-23 -5.03264e-25 -9.34158e-24 -2.84672e-25 -5.91962e-24 -1.67324e-25 -3.74819e-24 -1.00231e-25 -2.35785e-24 -6.02686e-26 -1.47114e-24 -3.60812e-26 -2.14539e-26 -9.10901e-25 3.62358e-25 -4.59064e-27 5.89143e-25 -7.82171e-27 9.5067e-25 -1.32533e-26 1.5261e-24 -2.24157e-26 2.45553e-24 -3.82795e-26 4.01604e-24 -6.73607e-26 6.79946e-24 -1.25109e-25 1.20987e-23 -2.4888e-25 2.26962e-23 -5.2746e-25 4.43915e-23 -1.16507e-24 8.88364e-23 -2.61447e-24 1.78601e-22 -5.84353e-24 3.55906e-22 -1.28501e-23 6.9716e-22 -2.76224e-23 1.33627e-21 -5.78673e-23 2.50069e-21 -1.18013e-22 4.56486e-21 -2.34248e-22 8.12651e-21 -4.52666e-22 1.41106e-20 -8.51993e-22 2.39049e-20 -1.56272e-21 3.95276e-20 -2.79486e-21 6.38231e-20 -4.87659e-21 1.00676e-19 -8.30602e-21 1.5522e-19 -1.38176e-20 2.34022e-19 -2.24636e-20 3.45185e-19 -3.57091e-20 4.98343e-19 -5.55373e-20 7.04484e-19 -8.45582e-20 9.75555e-19 -1.26113e-19 1.32381e-18 -1.84363e-19 1.76091e-18 -2.64347e-19 2.2967e-18 -3.72002e-19 2.93786e-18 -5.14124e-19 3.68637e-18 -6.98303e-19 4.53855e-18 -9.33718e-19 5.48522e-18 -1.23313e-18 6.51316e-18 -1.61654e-18 7.60711e-18 -2.11263e-18 8.75281e-18 -2.76572e-18 9.94908e-18 -3.64709e-18 1.12435e-17 -4.89753e-18 1.28043e-17 -6.83896e-18 1.49262e-17 -9.96724e-18 1.76724e-17 -1.4286e-17 2.10742e-17 -2.03033e-17 2.20118e-17 -1.85059e-17 1.08145e-14 -8.15237e-15 2.50579e-14 -2.16885e-14 2.51776e-15 -4.75079e-15 3.4861e-14 -1.61651e-13 3.85127e-16 -1.76228e-13 -1.0873e-14 -1.04564e-14 -1.60154e-14 -3.26019e-14 -1.33455e-17 -5.4322e-14 -1.49504e-17 -1.99244e-17 -1.35494e-17 -2.5482e-17 -1.1638e-17 -1.84213e-17 -9.75449e-18 -1.31914e-17 -8.3653e-18 -8.64175e-18 -7.29721e-18 -5.78779e-18 -6.37648e-18 -4.07051e-18 -5.52265e-18 -2.96625e-18 -4.71693e-18 -2.19337e-18 -3.96336e-18 -1.63621e-18 -3.2702e-18 -1.22484e-18 -2.64605e-18 -9.13834e-19 -2.09792e-18 -6.74854e-19 -1.62953e-18 -4.90434e-19 -1.23994e-18 -3.49918e-19 -9.24178e-19 -2.44974e-19 -6.74624e-19 -1.68186e-19 -4.82197e-19 -1.13168e-19 -3.37391e-19 -7.45874e-20 -2.31023e-19 -4.81253e-20 -1.54754e-19 -3.03821e-20 -1.01375e-19 -1.87578e-20 -6.49158e-20 -1.13206e-20 -4.06173e-20 -6.67564e-21 -2.48213e-20 -3.84473e-21 -1.4808e-20 -2.16176e-21 -8.62075e-21 -1.18614e-21 -4.89548e-21 -6.3483e-22 -2.71087e-21 -3.31266e-22 -1.46357e-21 -1.68459e-22 -7.70518e-22 -8.34526e-23 -3.9588e-22 -4.02631e-23 -1.98907e-22 -1.89222e-23 -9.81562e-23 -8.67165e-24 -4.79602e-23 -3.88654e-24 -2.35161e-23 -1.71448e-24 -1.17912e-23 -7.53554e-25 -6.17004e-24 -3.36673e-25 -3.41356e-24 -1.56959e-25 -1.99283e-24 -7.81266e-26 -1.20891e-24 -4.17658e-26 -7.47346e-25 -2.36231e-26 -4.63682e-25 -1.37895e-26 -2.86321e-25 -8.13316e-27 -1.7547e-25 -4.78919e-27 -2.80436e-27 -1.06754e-25 3.97564e-26 -4.82952e-28 6.58305e-26 -8.34759e-28 1.08279e-25 -1.4381e-27 1.77668e-25 -2.48675e-27 2.94258e-25 -4.39725e-27 5.02124e-25 -8.19093e-27 9.04312e-25 -1.65302e-26 1.74444e-24 -3.63562e-26 3.5852e-24 -8.52443e-26 7.67981e-24 -2.0602e-25 1.67132e-23 -4.99037e-25 3.62248e-23 -1.19082e-24 7.72381e-23 -2.77475e-24 1.60942e-22 -6.28927e-24 3.26711e-22 -1.38484e-23 6.45313e-22 -2.96178e-23 1.2398e-21 -6.15469e-23 2.31726e-21 -1.24333e-22 4.21495e-21 -2.44315e-22 7.46461e-21 -4.67245e-22 1.28779e-20 -8.70211e-22 2.16542e-20 -1.57922e-21 3.55094e-20 -2.79424e-21 5.68197e-20 -4.82348e-21 8.87688e-20 -8.12888e-21 1.35482e-19 -1.33839e-20 2.0212e-19 -2.15447e-20 2.94912e-19 -3.3934e-20 4.21079e-19 -5.23366e-20 5.88627e-19 -7.91008e-20 8.05964e-19 -1.17231e-19 1.08131e-18 -1.70461e-19 1.4219e-18 -2.43293e-19 1.83296e-18 -3.41121e-19 2.31889e-18 -4.73931e-19 2.88619e-18 -6.61835e-19 3.54831e-18 -9.44512e-19 4.32222e-18 -1.36505e-18 5.2338e-18 -2.00382e-18 6.32331e-18 -2.96523e-18 7.68829e-18 -4.41652e-18 9.57873e-18 -6.79539e-18 1.22274e-17 -1.05615e-17 1.4991e-17 -1.46243e-17 1.76586e-17 -1.89858e-17 3.31278e-17 -2.97846e-17 2.1011e-14 -2.15631e-14 1.84485e-14 -3.78134e-14 3.24961e-15 -4.08028e-15 7.98947e-15 -1.06338e-13 -2.47974e-14 -4.29027e-13 -1.20298e-14 -3.28721e-14 -1.20933e-14 -3.40388e-14 -1.1537e-16 -7.32485e-14 -1.66031e-17 -1.17696e-16 -1.41948e-17 -2.99358e-17 -1.17668e-17 -2.15731e-17 -8.77537e-18 -1.70977e-17 -6.59875e-18 -1.08312e-17 -5.14989e-18 -6.59914e-18 -4.12334e-18 -4.16217e-18 -3.32218e-18 -2.72986e-18 -2.68161e-18 -1.74679e-18 -2.1596e-18 -1.141e-18 -1.72516e-18 -7.73658e-19 -1.35871e-18 -5.40828e-19 -1.04962e-18 -3.85156e-19 -7.93908e-19 -2.7237e-19 -5.87855e-19 -1.88878e-19 -4.26012e-19 -1.28438e-19 -3.02049e-19 -8.56211e-20 -2.0944e-19 -5.59277e-20 -1.41964e-19 -3.57693e-20 -9.40237e-20 -2.23791e-20 -6.08194e-20 -1.36845e-20 -3.84062e-20 -8.17176e-21 -2.36661e-20 -4.76186e-21 -1.42244e-20 -2.70599e-21 -8.33575e-21 -1.49869e-21 -4.76077e-21 -8.08566e-22 -2.64882e-21 -4.2478e-22 -1.43516e-21 -2.17223e-22 -7.56924e-22 -1.08097e-22 -3.88493e-22 -5.23317e-23 -1.94018e-22 -2.46405e-23 -9.43112e-23 -1.12815e-23 -4.46762e-23 -5.02204e-24 -2.06875e-23 -2.17435e-24 -9.42524e-24 -9.16895e-25 -4.2774e-24 -3.77998e-25 -1.97292e-24 -1.53667e-25 -9.49467e-25 -6.2662e-26 -4.87813e-25 -2.63622e-26 -2.6916e-25 -1.18434e-26 -1.57114e-25 -5.81502e-27 -9.46311e-26 -3.10322e-27 -5.75693e-26 -1.74875e-27 -3.49413e-26 -1.00899e-27 -2.10614e-26 -5.84523e-28 -3.37459e-28 -1.26052e-26 3.92435e-27 -3.85986e-29 6.60292e-27 -6.75691e-29 1.10529e-26 -1.18406e-28 1.85522e-26 -2.10601e-28 3.18264e-26 -3.9232e-28 5.74989e-26 -7.97881e-28 1.12531e-25 -1.81405e-27 2.40012e-25 -4.53306e-27 5.45752e-25 -1.19267e-26 1.2792e-24 -3.17605e-26 3.00528e-24 -8.35408e-26 6.95537e-24 -2.14425e-25 1.5718e-23 -5.34228e-25 3.45472e-23 -1.28938e-24 7.3748e-23 -3.01295e-24 1.52862e-22 -6.81661e-24 3.07726e-22 -1.49363e-23 6.01929e-22 -3.17104e-23 1.14463e-21 -6.52658e-23 2.11723e-21 -1.30311e-22 3.81153e-21 -2.52593e-22 6.68219e-21 -4.75771e-22 1.14158e-20 -8.71651e-22 1.90175e-20 -1.55498e-21 3.09156e-20 -2.70417e-21 4.90795e-20 -4.5895e-21 7.6146e-20 -7.61126e-21 1.15543e-19 -1.23527e-20 1.71592e-19 -1.96546e-20 2.49567e-19 -3.07055e-20 3.55647e-19 -4.71306e-20 4.96715e-19 -7.10819e-20 6.79988e-19 -1.05376e-19 9.12732e-19 -1.54801e-19 1.21093e-18 -2.38801e-19 1.60943e-18 -4.04185e-19 2.17646e-18 -7.47606e-19 2.96375e-18 -1.27912e-18 4.06931e-18 -2.165e-18 5.57998e-18 -3.54585e-18 7.61159e-18 -5.42165e-18 1.05723e-17 -8.31483e-18 1.458e-17 -1.26132e-17 1.75617e-17 -1.56861e-17 1.93989e-17 -1.58734e-17 2.4514e-15 -2.45639e-15 3.05171e-14 -1.16329e-13 2.23989e-14 -5.55109e-14 7.86756e-15 -4.08388e-15 9.16731e-14 -1.00446e-13 1.20295e-13 -4.48414e-13 -3.77617e-15 -2.02591e-13 -1.29006e-15 -7.22416e-14 6.35094e-16 -7.8189e-14 -3.5088e-18 4.5858e-16 -5.69111e-18 -2.72839e-17 -7.16442e-18 -2.27561e-17 -6.24097e-18 -2.14959e-17 -4.82252e-18 -1.43913e-17 -3.66348e-18 -8.94093e-18 -2.79371e-18 -5.65648e-18 -2.02703e-18 -3.88853e-18 -1.47417e-18 -2.05196e-18 -1.0979e-18 -1.03429e-18 -8.34436e-19 -5.54657e-19 -6.41077e-19 -3.12144e-19 -4.86138e-19 -2.0228e-19 -3.59807e-19 -1.39045e-19 -2.60165e-19 -9.34874e-20 -1.83865e-19 -6.15992e-20 -1.27011e-19 -3.98403e-20 -8.5728e-20 -2.5324e-20 -5.65049e-20 -1.58145e-20 -3.63436e-20 -9.6846e-21 -2.27955e-20 -5.80147e-21 -1.39338e-20 -3.39261e-21 -8.29519e-21 -1.9337e-21 -4.80704e-21 -1.07277e-21 -2.7103e-21 -5.78524e-22 -1.4862e-21 -3.02905e-22 -7.92346e-22 -1.5381e-22 -4.10603e-22 -7.56731e-23 -2.06779e-22 -3.60453e-23 -1.01178e-22 -1.66133e-23 -4.80962e-23 -7.40617e-24 -2.22119e-23 -3.19284e-24 -9.97032e-24 -1.33111e-24 -4.35649e-24 -5.36827e-25 -1.86019e-24 -2.09613e-25 -7.8299e-25 -7.9412e-26 -3.30501e-25 -2.93365e-26 -1.43897e-25 -1.06883e-26 -6.68898e-26 -3.93099e-27 -3.39747e-26 -1.51859e-27 -1.87503e-26 -6.45797e-28 -1.09224e-26 -3.09453e-28 -6.50974e-27 -1.63547e-28 -3.89113e-27 -9.11796e-29 -2.31327e-27 -5.17604e-29 -2.94336e-29 -1.36597e-27 2.98843e-28 -2.16477e-30 5.10424e-28 -3.84689e-30 8.70462e-28 -6.89778e-30 1.50456e-27 -1.28322e-29 2.72138e-27 -2.6113e-29 5.37138e-27 -6.11069e-29 1.18496e-26 -1.63974e-28 2.87293e-26 -4.7752e-28 7.3343e-26 -1.42337e-27 1.89536e-25 -4.18881e-27 4.83882e-25 -1.19655e-26 1.20568e-24 -3.29527e-26 2.91658e-24 -8.72966e-26 6.83575e-24 -2.22382e-25 1.55134e-23 -5.44992e-25 3.4091e-23 -1.2859e-24 7.25615e-23 -2.92393e-24 1.49658e-22 -6.41424e-24 2.99271e-22 -1.35915e-23 5.80639e-22 -2.78556e-23 1.09392e-21 -5.52984e-23 2.00317e-21 -1.065e-22 3.56919e-21 -1.99315e-22 6.19502e-21 -3.63099e-22 1.04869e-20 -6.45074e-22 1.73338e-20 -1.12064e-21 2.80102e-20 -1.91458e-21 4.43151e-20 -3.25364e-21 6.87598e-20 -5.57037e-21 1.04773e-19 -9.61562e-21 1.56848e-19 -1.65371e-20 2.30625e-19 -2.81528e-20 3.33041e-19 -4.75403e-20 4.75896e-19 -9.13835e-20 7.12529e-19 -2.11656e-19 1.16674e-18 -5.61577e-19 2.0783e-18 -1.35991e-18 3.40265e-18 -2.21802e-18 5.46256e-18 -3.65448e-18 8.38269e-18 -6.04283e-18 1.18089e-17 -8.16539e-18 1.63066e-17 -1.05219e-17 2.15999e-17 -1.39739e-17 2.25593e-17 -1.45952e-17 2.32138e-17 -1.17069e-17 1.06425e-13 -9.97646e-14 5.72895e-14 -2.44092e-13 7.16343e-15 -9.68073e-14 1.62898e-14 -2.77703e-14 1.52482e-13 -1.63736e-13 1.77328e-13 -4.60054e-13 4.67168e-14 -6.05703e-13 -1.93612e-16 -7.78921e-14 8.50044e-16 -9.49526e-14 -3.79259e-16 3.1958e-14 -7.25565e-18 -4.08804e-16 -1.08332e-17 -2.95652e-17 -9.76029e-18 -2.47363e-17 -7.48513e-18 -1.86853e-17 -5.54502e-18 -1.39624e-17 -4.31285e-18 -9.67236e-18 -2.51589e-18 -9.51622e-18 -1.37952e-18 -4.28683e-18 -7.95692e-19 -1.66212e-18 -4.77729e-19 -7.49211e-19 -3.28342e-19 -2.48069e-19 -2.38344e-19 -1.10094e-19 -1.68693e-19 -6.90203e-20 -1.16736e-19 -4.21404e-20 -7.91576e-20 -2.49818e-20 -5.26872e-20 -1.441e-20 -3.44227e-20 -8.24554e-21 -2.20403e-20 -4.76455e-21 -1.37983e-20 -2.7865e-21 -8.43008e-21 -1.62613e-21 -5.01867e-21 -9.34176e-22 -2.90743e-21 -5.24651e-22 -1.63693e-21 -2.87116e-22 -8.94543e-22 -1.52767e-22 -4.73946e-22 -7.88716e-23 -2.43209e-22 -3.94368e-23 -1.20781e-22 -1.90627e-23 -5.80123e-23 -8.8928e-24 -2.69381e-23 -3.99758e-24 -1.20907e-23 -1.72925e-24 -5.24548e-24 -7.18936e-25 -2.20048e-24 -2.86967e-25 -8.93384e-25 -1.09879e-25 -3.51792e-25 -4.03381e-26 -1.35035e-25 -1.42001e-26 -5.11031e-26 -4.80112e-27 -1.95167e-26 -1.56722e-27 -7.8263e-27 -5.00765e-28 -3.45332e-27 -1.61686e-28 -1.71597e-27 -5.59534e-29 -9.39691e-28 -2.22427e-29 -5.42214e-28 -1.03858e-29 -3.18037e-28 -5.4322e-30 -1.86368e-28 -2.98713e-30 -1.66461e-30 -1.08622e-28 1.63802e-29 -8.52207e-32 2.85158e-29 -1.53184e-31 4.99373e-29 -2.80948e-31 9.05636e-29 -5.51427e-31 1.79444e-28 -1.24301e-30 4.08569e-28 -3.32351e-30 1.06632e-27 -1.00419e-29 3.01981e-27 -3.17394e-29 8.75363e-27 -9.9594e-29 2.50553e-26 -3.02891e-28 6.9627e-26 -8.85218e-28 1.86595e-25 -2.48124e-27 4.81186e-25 -6.6732e-27 1.19368e-24 -1.72411e-26 2.84992e-24 -4.28499e-26 6.55403e-24 -1.02583e-25 1.45332e-23 -2.36875e-25 3.11098e-23 -5.28299e-25 6.43695e-23 -1.13971e-24 1.28924e-22 -2.38209e-24 2.50346e-22 -4.83225e-24 4.72095e-22 -9.53305e-24 8.66095e-22 -1.83337e-23 1.54858e-21 -3.45193e-23 2.7038e-21 -6.45574e-23 4.62264e-21 -1.26677e-22 7.78363e-21 -2.95571e-22 1.30555e-20 -8.6076e-22 2.20927e-20 -2.60669e-21 3.7748e-20 -6.91056e-21 6.43445e-20 -1.57634e-20 1.08706e-19 -3.39284e-20 1.82376e-19 -7.25057e-20 3.48642e-19 -2.76868e-19 8.03745e-19 -6.81994e-19 2.12404e-18 -2.25728e-18 5.12521e-18 -4.70462e-18 8.32964e-18 -5.67474e-18 1.3665e-17 -7.78288e-18 2.2446e-17 -1.18448e-17 2.99652e-17 -1.56108e-17 3.77142e-17 -1.43032e-17 4.78563e-17 -1.50465e-17 4.59294e-17 -1.27627e-17 4.61765e-17 -7.18399e-18 4.10199e-13 -6.26987e-14 4.08409e-13 -1.05599e-13 5.49148e-14 -6.34862e-14 2.19168e-13 -2.67931e-13 1.83311e-13 -1.25617e-13 2.49179e-15 -2.19398e-13 -2.28984e-13 -4.61653e-13 -1.30586e-13 -4.19719e-13 -1.8004e-13 -6.918e-14 -9.13565e-14 -1.65955e-14 -5.0944e-17 -9.17291e-14 -4.79548e-17 -2.82524e-16 -3.88821e-17 -3.08821e-17 -3.03087e-17 -2.79876e-17 -2.15395e-17 -3.52735e-17 -2.15381e-17 -1.64996e-17 -9.81329e-18 -3.60573e-17 -3.8401e-18 -1.35989e-17 -1.74599e-18 -4.45235e-18 -5.83332e-19 -2.46269e-18 -2.61448e-19 -5.44231e-19 -1.65726e-19 -1.75296e-19 -1.02446e-19 -8.90779e-20 -6.15822e-20 -4.74244e-20 -3.60759e-20 -2.42651e-20 -2.09996e-20 -1.09035e-20 -1.23649e-20 -4.17686e-21 -7.38158e-21 -1.40588e-21 -4.40472e-21 -4.93945e-22 -2.5918e-21 -2.13483e-22 -1.4934e-21 -1.07902e-22 -8.39824e-22 -5.69656e-23 -4.59875e-22 -2.9867e-23 -2.4469e-22 -1.53341e-23 -1.2625e-22 -7.67396e-24 -6.30422e-23 -3.73295e-24 -3.04102e-23 -1.76083e-24 -1.41469e-23 -8.03677e-25 -6.33705e-24 -3.54241e-25 -2.72964e-24 -1.50524e-25 -1.12928e-24 -6.15597e-26 -4.48293e-25 -2.41934e-26 -1.70655e-25 -9.12325e-27 -6.23007e-26 -3.29613e-27 -2.1845e-26 -1.13936e-27 -7.39475e-27 -3.76455e-28 -2.44987e-27 -1.18973e-28 -8.19926e-28 -3.61561e-29 -2.93991e-28 -1.0755e-29 -1.21007e-28 -3.27522e-30 -5.84451e-29 -1.10835e-30 -3.15757e-29 -4.50412e-31 -1.78991e-29 -2.17814e-31 -1.02517e-29 -1.15822e-31 -6.35321e-32 -5.85975e-30 6.50723e-31 -1.7455e-33 1.15284e-30 -3.13345e-33 2.07832e-30 -5.79872e-33 4.00185e-30 -1.17351e-32 8.83792e-30 -2.77657e-32 2.31317e-29 -7.70702e-32 6.83869e-29 -2.34433e-31 2.11467e-28 -7.27756e-31 6.49231e-28 -2.21638e-30 1.93236e-27 -6.52304e-30 5.52925e-27 -1.84915e-29 1.51821e-26 -5.05533e-29 4.00253e-26 -1.3362e-28 1.01448e-25 -3.42266e-28 2.47578e-25 -8.51131e-28 5.82624e-25 -2.05732e-27 1.32411e-24 -4.83845e-27 2.91071e-24 -1.10833e-26 6.19914e-24 -2.4764e-26 1.28148e-23 -5.40821e-26 2.5764e-23 -1.15845e-25 5.04892e-23 -2.46048e-25 9.6696e-23 -5.50139e-25 1.81802e-22 -1.68367e-24 3.40519e-22 -9.79703e-24 6.7131e-22 -7.74478e-23 1.57895e-21 -5.38591e-22 4.65163e-21 -2.77592e-21 1.43033e-20 -1.01412e-20 3.86508e-20 -2.72125e-20 9.02276e-20 -6.09315e-20 1.9958e-19 -1.45467e-19 4.40254e-19 -3.80859e-19 1.7435e-18 -2.51193e-18 4.4768e-18 -4.22521e-18 1.55348e-17 -1.80103e-17 3.41714e-17 -2.5708e-17 4.38469e-17 -2.22395e-17 6.45803e-17 -2.49392e-17 1.06725e-16 1.51329e-16 1.54663e-16 -5.23239e-17 1.57818e-16 -2.57228e-17 1.8661e-16 -3.75983e-17 1.77513e-16 -2.17073e-17 1.81827e-16 -6.86021e-18 2.18811e-12 -2.83414e-13 2.26147e-12 -1.37099e-13 1.91815e-12 -4.00836e-14 2.42399e-12 -2.46675e-13 2.60881e-12 -1.1829e-13 2.6237e-12 -3.22611e-14 2.63942e-12 1.17534e-14 7.67846e-13 4.63344e-15 6.71959e-13 3.06525e-15 6.24637e-13 1.97752e-13 5.07216e-16 -1.21656e-18 2.30023e-17 -6.13122e-18 -1.30681e-17 -1.85477e-17 -3.07264e-17 -2.12505e-17 -1.94982e-17 -2.32264e-16 -5.17632e-17 1.01e-17 -2.6568e-17 -1.11981e-16 -8.06318e-18 -2.45608e-17 -4.83584e-18 -9.76143e-18 -1.14219e-18 -9.05422e-18 -3.89155e-19 -1.54664e-18 -2.07582e-19 -6.89673e-19 -1.15347e-19 -2.18673e-19 -6.13374e-20 -1.09344e-19 -2.85552e-20 -5.79645e-20 -1.13076e-20 -2.7517e-20 -3.92825e-21 -1.04954e-20 -1.42308e-21 -2.9303e-21 -6.33825e-22 -5.83295e-22 -3.3006e-22 -8.6989e-23 -1.7953e-22 -1.14589e-23 -9.69978e-23 -2.04355e-24 -5.13349e-23 -6.74655e-25 -2.64924e-23 -3.00038e-25 -1.32947e-23 -1.40165e-25 -6.47197e-24 -6.4901e-26 -3.0496e-24 -2.94612e-26 -1.38811e-24 -1.30636e-26 -6.09236e-25 -5.64554e-27 -2.57383e-25 -2.37393e-27 -1.04496e-25 -9.70068e-28 -4.07054e-26 -3.84774e-28 -1.519e-26 -1.47933e-28 -5.42229e-27 -5.50182e-29 -1.8497e-27 -1.97404e-29 -6.03342e-28 -6.81206e-30 -1.8917e-28 -2.25566e-30 -5.80244e-29 -7.17523e-31 -1.82086e-29 -2.21622e-31 -6.34373e-30 -6.86979e-32 -2.65068e-30 -2.29218e-32 -1.31571e-30 -8.97826e-33 -7.16487e-31 -4.21988e-33 -4.01215e-31 -2.22691e-33 -1.22611e-33 -2.25179e-31 1.30928e-32 -1.1214e-35 2.32419e-32 -1.97718e-35 4.24099e-32 -3.58488e-35 8.4431e-32 -7.038e-35 1.96149e-31 -1.57579e-34 5.3382e-31 -4.01625e-34 1.59038e-30 -1.10023e-33 4.83193e-30 -3.05167e-33 1.43949e-29 -8.29356e-33 4.1429e-29 -2.18722e-32 1.14827e-28 -5.60929e-32 3.06926e-28 -1.40669e-31 7.93261e-28 -3.46586e-31 1.98738e-27 -8.41481e-31 4.83577e-27 -2.0179e-30 1.14437e-26 -4.79371e-30 2.63684e-26 -1.13263e-29 5.92314e-26 -2.67472e-29 1.29919e-25 -6.41093e-29 2.78877e-25 -1.77906e-28 5.8797e-25 -1.0371e-27 1.23112e-24 -1.46882e-26 2.71829e-24 -2.39697e-25 8.23039e-24 -3.43513e-24 4.74724e-23 -4.10459e-23 3.72744e-22 -3.90996e-22 2.57993e-21 -2.76333e-21 1.32615e-20 -1.3493e-20 4.84152e-20 -4.46326e-20 1.30076e-19 -1.07018e-19 2.92124e-19 -2.36442e-19 7.00592e-19 -7.56824e-19 1.84507e-18 -2.59091e-18 1.22536e-17 -2.22326e-17 2.07711e-17 -1.73608e-17 8.92783e-17 -1.28345e-16 1.28596e-16 -9.72933e-17 1.12476e-16 -9.96314e-18 3.4476e-16 -2.56283e-16 2.29019e-15 -4.72405e-15 2.82048e-16 1.95622e-15 1.45052e-16 1.22972e-16 2.26952e-16 -4.12275e-17 1.43988e-16 -1.07047e-17 1.41247e-16 -1.65905e-19 1.37598e-12 3.39481e-13 5.62627e-13 1.62229e-13 1.85456e-13 1.87056e-14 1.53761e-12 3.45935e-13 -1.00958e-14 2.47599e-13 9.65459e-14 2.24439e-13 -4.97991e-14 6.41425e-13 -3.87786e-13 1.1205e-13 -8.6707e-13 5.38071e-13 -3.6904e-17 9.941e-13 -6.24654e-17 7.23099e-18 -1.18048e-16 3.49353e-18 -1.1944e-16 -3.35899e-18 -1.32829e-16 -2.1505e-17 -4.80778e-15 -2.82915e-16 -1.30579e-15 -7.22779e-15 -1.07679e-16 -1.17529e-15 -4.21466e-17 -1.02599e-16 -3.86651e-17 -1.31961e-17 -6.5468e-18 -4.33319e-17 -2.89773e-18 -8.98228e-18 -9.13062e-19 -6.69135e-18 -4.54278e-19 -7.42579e-19 -2.39952e-19 -3.2632e-19 -1.13684e-19 -1.66675e-19 -4.33539e-20 -8.79915e-20 -1.21262e-20 -3.8307e-20 -2.42323e-21 -1.19133e-20 -3.63572e-22 -2.52604e-21 -4.82856e-23 -3.73927e-22 -8.6999e-24 -4.07931e-23 -2.90764e-24 -3.50754e-24 -1.31156e-24 -2.52464e-25 -6.22541e-25 -1.59714e-26 -2.93349e-25 -1.11517e-27 -1.35707e-25 -1.74481e-28 -6.13986e-26 -5.9676e-29 -2.71013e-26 -2.44067e-29 -1.16492e-26 -1.02262e-29 -4.86907e-27 -4.30858e-30 -1.9763e-27 -1.81414e-30 -7.77735e-28 -7.58762e-31 -2.96102e-28 -3.13609e-31 -1.08754e-28 -1.27577e-31 -3.84105e-29 -5.08771e-32 -1.30139e-29 -1.97848e-32 -4.23395e-30 -7.45565e-33 -1.33675e-30 -2.71259e-33 -4.23222e-31 -9.59026e-34 -1.44079e-31 -3.38928e-34 -5.74983e-32 -1.26989e-34 -2.74829e-32 -5.40137e-35 -1.47146e-32 -2.65587e-35 -8.19712e-33 -1.43743e-35 -8.07155e-36 -4.59008e-33 8.07121e-35 -1.0876e-38 1.40882e-34 -1.83079e-38 2.52238e-34 -3.10828e-38 4.87772e-34 -5.47231e-38 1.07337e-33 -1.03028e-37 2.68405e-33 -2.0886e-37 7.20446e-33 -4.44921e-37 1.9561e-32 -9.6467e-37 5.20065e-32 -2.08763e-36 1.34128e-31 -4.47657e-36 3.36355e-31 -9.4889e-36 8.24908e-31 -1.98825e-35 1.98833e-30 -4.14623e-35 4.7254e-30 -8.77805e-35 1.11009e-29 -1.96546e-34 2.58606e-29 -5.69759e-34 5.99944e-29 -5.71733e-33 1.39316e-28 -1.69785e-31 3.28922e-28 -5.32256e-30 9.00862e-28 -1.47063e-28 5.19429e-27 -3.50065e-27 7.29375e-26 -7.15428e-26 1.18317e-24 -1.25279e-24 1.6902e-23 -1.85879e-23 2.0191e-22 -2.29602e-22 1.92887e-21 -2.22473e-21 1.37156e-20 -1.52286e-20 6.76088e-20 -6.83054e-20 2.26551e-19 -2.00109e-19 5.52262e-19 -4.44375e-19 1.24509e-18 -1.17313e-18 4.08276e-18 -6.28819e-18 1.43786e-17 -2.17632e-17 1.27505e-16 -2.01433e-16 1.03409e-16 -2.63895e-18 7.98092e-16 -8.19396e-16 2.49091e-15 -1.8019e-15 2.83859e-14 -6.3963e-14 5.09103e-14 -3.47093e-14 5.72076e-14 -5.00353e-15 4.74549e-14 -7.49933e-15 6.94841e-15 6.52827e-15 5.70961e-15 -5.91617e-16 2.08824e-16 5.49066e-15 1.97122e-16 1.39597e-17 9.40523e-13 2.5252e-12 1.11665e-12 1.25737e-12 6.31469e-13 1.81002e-13 6.29989e-14 2.81195e-12 -6.29861e-14 3.26846e-13 -5.61829e-13 1.00698e-12 4.30857e-13 2.83478e-12 -1.25421e-12 6.25641e-13 -7.7555e-12 3.16581e-12 -8.15737e-16 1.56578e-12 -2.43855e-15 7.80945e-17 -2.08569e-16 2.99784e-15 -4.14577e-16 1.92734e-16 1.20743e-16 -5.91484e-16 -1.00504e-15 -4.83558e-16 -1.53509e-13 -1.40294e-14 -1.57746e-13 -9.39407e-14 -1.43193e-15 -7.43547e-14 -2.82395e-16 -1.16447e-15 -5.47769e-17 -2.76842e-16 -3.85744e-17 -1.04466e-16 -4.08088e-18 -1.07367e-16 -1.722e-18 -3.71579e-18 -8.50056e-19 -1.32889e-18 -4.36255e-19 -5.17984e-19 -1.8562e-19 -2.8375e-19 -5.66995e-20 -1.45107e-19 -1.1863e-20 -5.21252e-20 -1.74032e-21 -1.22048e-20 -1.88918e-22 -1.89875e-21 -1.62243e-23 -2.07036e-22 -1.17044e-24 -1.71393e-23 -7.4451e-26 -1.18212e-24 -5.24206e-27 -7.04966e-26 -8.29238e-28 -3.59936e-27 -2.87411e-28 -1.57011e-28 -1.1936e-28 -5.88699e-30 -5.08695e-29 -1.91671e-31 -2.18321e-29 -6.0377e-33 -9.37455e-30 -4.13736e-34 -4.00208e-30 -1.2331e-34 -1.68943e-30 -5.58278e-35 -7.02204e-31 -2.74813e-35 -2.86163e-31 -1.38749e-35 -1.13708e-31 -6.98196e-36 -4.37705e-32 -3.45582e-36 -1.62589e-32 -1.6753e-36 -5.86418e-33 -7.95401e-37 -2.112e-33 -3.72062e-37 -8.05282e-34 -1.74729e-37 -3.47934e-34 -8.51838e-38 -1.73395e-34 -4.44447e-38 -9.48696e-35 -2.48337e-38 -5.36975e-35 -1.44515e-38 -8.50615e-39 -3.0497e-35 7.03617e-38 -5.45656e-43 1.1681e-37 -8.01827e-43 1.95031e-37 -1.1495e-42 3.36689e-37 -1.60614e-42 6.19921e-37 -2.18706e-42 1.2263e-36 -2.90596e-42 2.54462e-36 -3.77874e-42 5.36727e-36 -4.82764e-42 1.12893e-35 -6.07493e-42 2.35157e-35 -7.52158e-42 4.84083e-35 -9.47175e-42 9.85115e-35 -4.1786e-41 1.9958e-34 -2.35014e-39 4.10734e-34 -1.53943e-37 8.94719e-34 -8.77736e-36 2.52606e-33 -4.32201e-34 2.47202e-32 -1.84085e-32 7.17054e-31 -6.79947e-31 2.19969e-29 -2.18097e-29 5.95989e-28 -6.07973e-28 1.39443e-26 -1.46399e-26 2.80843e-25 -3.11652e-25 4.86047e-24 -5.85429e-24 7.14994e-23 -9.30856e-23 8.78662e-22 -1.22784e-21 8.50207e-21 -1.20055e-20 5.8355e-20 -7.599e-20 2.63613e-19 -2.97362e-19 7.81599e-19 -7.6433e-19 1.76608e-18 -1.88266e-18 4.77296e-18 -6.49332e-18 2.63734e-17 -4.58336e-17 9.48614e-17 8.82601e-17 4.86471e-15 -4.91584e-15 5.57476e-14 -4.88202e-14 2.52777e-13 -3.32354e-13 8.0498e-13 -3.58173e-13 5.08562e-13 -2.85343e-13 5.96505e-13 -1.18715e-13 6.5248e-13 -5.6088e-14 1.78059e-12 2.00154e-13 9.77367e-13 8.01971e-13 6.76416e-13 2.98331e-13 3.43995e-12 1.43432e-12 2.46409e-12 3.2269e-12 6.5964e-13 6.62315e-12 -1.99038e-16 4.90944e-12 -9.75825e-13 4.77793e-12 -1.49237e-12 5.25311e-12 -1.77934e-12 2.0029e-13 -1.45783e-12 2.51091e-12 -3.59457e-13 5.42703e-12 -1.42534e-11 4.64139e-12 -1.77e-11 6.69523e-12 -9.40357e-13 1.02316e-12 -9.44792e-13 2.94053e-15 -2.60265e-12 1.20275e-13 -4.416e-12 1.17908e-12 -2.11982e-13 9.43936e-14 -2.14661e-13 -1.78251e-16 -1.07646e-12 -9.9973e-15 -4.0076e-12 -1.84488e-13 -4.87393e-13 -2.79433e-13 -1.46523e-13 -3.42263e-13 -1.08393e-14 -1.15412e-13 -7.87049e-16 -1.02112e-14 -2.49362e-17 -8.8669e-16 -8.28595e-18 -3.9049e-17 -3.03656e-18 -8.88129e-18 -1.57934e-18 -2.25735e-18 -7.73229e-19 -9.86912e-19 -2.67839e-19 -5.8714e-19 -6.08601e-20 -2.52291e-19 -9.24157e-21 -6.72697e-20 -9.88772e-22 -1.13076e-20 -8.07129e-23 -1.25765e-21 -5.51425e-24 -9.88973e-23 -3.27124e-25 -6.15506e-24 -1.66799e-26 -3.37442e-25 -7.29288e-28 -1.64451e-26 -2.74978e-29 -7.00809e-28 -9.03024e-31 -2.59102e-29 -2.87685e-32 -8.27555e-31 -1.99845e-33 -2.29579e-32 -6.05031e-34 -5.50155e-34 -2.78728e-34 -1.13903e-35 -1.39807e-34 -2.02643e-37 -7.20035e-35 -3.08971e-39 -3.69884e-35 -4.98827e-41 -1.86983e-35 -8.41607e-42 -9.2589e-36 -6.56537e-42 -4.48923e-36 -5.28296e-42 -2.14319e-36 -4.17316e-42 -1.0262e-36 -3.23942e-42 -5.09347e-37 -2.46731e-42 -2.70037e-37 -1.83883e-42 -1.52953e-37 -1.33805e-42 -8.99867e-38 -9.49611e-43 -5.34136e-38 -6.57143e-43 -4.43697e-43 -3.1553e-38 3.08646e-42 -2.63967e-49 4.44035e-42 -2.91263e-49 6.21156e-42 -3.05416e-49 8.43747e-42 -3.03215e-49 1.11297e-41 -2.84054e-49 1.42796e-41 -2.5059e-49 1.78806e-41 -2.34079e-49 2.19462e-41 -2.57777e-48 2.64783e-41 -1.83624e-46 3.13796e-41 -1.35984e-44 3.77678e-41 -1.0786e-42 1.59044e-40 -8.68048e-41 8.52854e-39 -6.48745e-39 5.32079e-37 -4.24975e-37 2.88658e-35 -2.41295e-35 1.35112e-33 -1.18467e-33 5.46527e-32 -5.03928e-32 1.91537e-30 -1.86227e-30 5.82395e-29 -5.98737e-29 1.53766e-27 -1.67618e-27 3.50404e-26 -4.18083e-26 7.05402e-25 -1.06748e-24 1.25235e-23 -2.45144e-23 1.88131e-22 -4.34551e-22 2.34421e-21 -6.16732e-21 2.16573e-20 -5.49242e-20 1.29602e-19 -2.80634e-19 4.79975e-19 -8.58981e-19 1.1694e-18 -2.18945e-18 2.73621e-18 -7.70123e-18 8.99243e-18 -1.54887e-17 1.35706e-15 -5.33064e-16 5.49382e-14 -8.89966e-14 3.1813e-13 -4.71608e-13 6.74387e-13 -4.18808e-13 5.35115e-13 -3.59606e-13 4.28051e-13 -3.43803e-15 3.93059e-13 -2.80147e-15 3.30403e-13 -6.75797e-15 6.58692e-13 -1.01725e-15 1.69304e-12 5.38364e-13 4.1852e-13 1.367e-12 9.56893e-15 1.59517e-12 1.02506e-13 1.77759e-12 1.18653e-12 2.90767e-12 2.56139e-12 4.34336e-12 3.05534e-12 6.73867e-12 2.64605e-13 9.38852e-12 3.67481e-13 7.36112e-12 -1.8965e-14 2.30531e-13 -4.99541e-13 2.0207e-12 -3.27462e-12 8.21882e-12 -7.05237e-12 8.59768e-12 -6.41875e-12 6.23986e-12 -2.59657e-12 3.53567e-12 2.78399e-13 4.24121e-13 -3.81748e-12 7.83099e-13 -1.09526e-11 2.68345e-12 -8.19485e-14 1.05368e-12 -8.33216e-14 8.0544e-16 -3.47041e-13 -2.20866e-14 -1.23278e-12 -2.06644e-14 -1.25485e-12 -4.1308e-16 -1.24199e-12 -9.81708e-14 -4.90996e-13 -2.91339e-13 -1.40551e-13 -4.4041e-13 -6.27666e-15 -3.0443e-13 -2.3383e-17 -6.31718e-15 -6.00869e-18 -6.54756e-17 -2.54327e-18 -1.10738e-17 -1.51182e-18 -2.57571e-18 -6.52408e-19 -1.40666e-18 -1.75475e-19 -7.93645e-19 -2.98696e-20 -2.70597e-19 -3.37581e-21 -5.4489e-20 -2.70574e-22 -6.82456e-21 -1.72105e-23 -5.70062e-22 -9.66637e-25 -3.2377e-23 -4.83637e-26 -1.43182e-24 -2.11985e-27 -5.71367e-26 -8.0742e-29 -2.19928e-27 -2.66047e-30 -7.8881e-29 -7.62329e-32 -2.49109e-30 -1.88876e-33 -6.85222e-32 -4.0463e-35 -1.6323e-33 -7.45327e-37 -3.36799e-35 -1.17707e-38 -5.98558e-37 -1.96871e-40 -9.10494e-39 -3.44088e-41 -1.20305e-40 -2.77982e-41 -1.40087e-42 -2.31513e-41 -1.56434e-44 -1.89106e-41 -1.78309e-46 -1.51595e-41 -2.16443e-48 -1.19034e-41 -1.87702e-49 -9.12562e-42 -1.9717e-49 -6.81247e-42 -2.17767e-49 -4.94478e-42 -2.26591e-49 -3.48823e-42 -2.2274e-49 -2.3936e-42 -2.07701e-49 -1.84515e-49 -1.60229e-42 1.26498e-48 -4.98525e-58 1.35386e-48 -3.75578e-58 1.37063e-48 -2.77942e-58 1.30698e-48 -7.63477e-57 1.16977e-48 -2.08271e-54 9.80806e-49 -3.424e-52 8.66373e-49 -3.9109e-50 8.97743e-48 -3.42281e-48 5.98724e-46 -2.5401e-46 4.12955e-44 -1.84353e-44 3.03347e-42 -1.43449e-42 2.24666e-40 -1.13291e-40 1.53394e-38 -8.30862e-39 9.10065e-37 -5.34104e-37 4.63063e-35 -2.97668e-35 2.01059e-33 -1.43487e-33 7.43566e-32 -5.9942e-32 2.33518e-30 -2.17604e-30 6.17997e-29 -6.87422e-29 1.35781e-27 -1.91579e-27 2.45626e-26 -8.70844e-26 3.88978e-25 -4.7844e-24 3.44566e-24 -1.37909e-22 -5.02839e-22 -2.15992e-21 -1.65395e-20 -1.9284e-20 -1.47253e-19 -9.98709e-20 -6.4852e-19 -3.00049e-19 -2.1805e-18 -5.26348e-19 -9.63441e-18 -6.08329e-19 -2.37632e-17 -7.2264e-19 -3.23706e-17 -1.01133e-18 -5.6819e-16 -1.34627e-18 -1.23166e-12 -1.92465e-17 -1.34252e-12 -4.88867e-16 -1.3992e-12 -5.6766e-15 -1.76452e-14 -2.77756e-14 -2.00058e-14 -7.46118e-15 -2.11818e-14 -7.95342e-15 -3.42736e-14 -2.55563e-15 -4.72548e-13 -3.51082e-17 -1.63476e-11 1.11369e-13 -1.46039e-11 5.8807e-13 -1.21813e-11 1.48478e-13 -9.97667e-12 5.55035e-13 -7.25672e-12 1.17043e-12 -4.69763e-12 2.87955e-12 -1.92936e-12 4.35255e-12 1.00517e-12 6.83407e-12 4.75775e-13 6.16039e-12 4.9477e-14 2.01878e-13 1.53734e-12 3.37861e-13 3.47702e-12 4.9994e-12 5.18237e-12 7.09979e-12 6.80303e-12 4.82513e-12 7.36291e-12 3.1889e-12 9.27965e-12 1.59673e-12 9.05695e-12 1.0763e-12 1.1613e-11 2.06822e-13 1.24588e-11 2.78114e-13 3.26508e-12 -5.11811e-14 3.88221e-14 -8.37071e-15 1.31053e-14 -3.45962e-16 3.36878e-15 -1.684e-15 1.13364e-12 -1.31433e-14 1.22107e-12 -3.40243e-14 1.12591e-12 -5.00512e-16 9.33102e-14 -2.39551e-15 1.51796e-16 -1.45321e-17 8.81993e-17 -3.25573e-18 1.19198e-17 -2.25754e-18 2.16375e-18 -1.214e-18 8.74162e-19 -7.86841e-19 3.30347e-19 -6.4184e-19 5.9403e-20 -3.93189e-19 1.51545e-21 -1.42966e-19 -9.52275e-23 -2.99728e-20 -1.17223e-23 -3.62259e-21 -7.97187e-25 -2.51361e-22 -4.29329e-26 -1.00609e-23 -2.08066e-27 -2.43575e-25 -8.99856e-29 -4.42906e-27 -3.3271e-30 -1.03394e-28 -1.04881e-31 -3.26489e-30 -2.81726e-33 -9.04618e-32 -6.4724e-35 -2.17298e-33 -1.26782e-36 -4.52637e-35 -2.10797e-38 -8.13023e-37 -3.02316e-40 -1.25112e-38 -3.79788e-42 -1.6741e-40 -4.55122e-44 -1.97531e-42 -5.54005e-46 -2.23723e-44 -7.14891e-48 -2.58895e-46 -6.56125e-49 -3.00432e-48 -7.26155e-49 -3.07747e-50 -8.41084e-49 -2.49445e-52 -9.13383e-49 -1.44775e-54 -9.32431e-49 -5.52494e-57 -8.98565e-49 -4.55427e-58 -8.21369e-49 -6.08595e-58 -7.74573e-58 -7.16014e-49 2.09764e-57 -1.82151e-66 1.52713e-57 -1.07056e-64 1.08637e-57 -7.12023e-63 2.85064e-56 -4.07565e-61 7.3784e-54 -1.96765e-59 1.14291e-51 -8.09108e-58 1.22114e-49 -3.06983e-56 9.92192e-48 -1.32861e-54 6.78018e-46 -8.29992e-53 4.48995e-44 -6.70295e-51 3.15398e-42 -5.47357e-49 2.21984e-40 -4.11012e-47 1.42745e-38 -2.83848e-45 7.87589e-37 -1.86548e-43 3.65812e-35 -1.1923e-41 1.40719e-33 -7.4504e-40 4.37293e-32 -4.48664e-38 1.03343e-30 -2.51242e-36 1.4873e-29 -1.27125e-34 -3.96444e-27 -2.1714e-32 -1.46926e-24 -6.58772e-30 -7.92283e-23 -7.86752e-28 -1.83356e-21 -4.53958e-26 -2.18287e-20 -1.47473e-24 -1.42422e-19 -2.93412e-23 -5.20469e-19 -3.7593e-22 -1.08553e-18 -3.20627e-21 -1.46967e-18 -1.86672e-20 -1.98505e-18 -7.58576e-20 -3.27579e-18 -2.19651e-19 -4.8216e-18 -4.61163e-19 -5.85579e-18 -7.1262e-19 -2.36487e-17 -8.26989e-19 -5.18811e-16 -7.3648e-19 -3.3374e-15 -4.88144e-19 -6.22339e-14 -2.41867e-18 -5.85098e-14 -1.69278e-19 -5.3088e-14 -3.42713e-19 -1.21887e-14 -7.00178e-19 -1.22372e-14 -9.89876e-20 2.58325e-14 -4.58813e-19 6.80506e-13 -4.29947e-18 -5.73132e-12 -2.63011e-16 -1.43465e-11 -1.6915e-14 -1.21241e-11 -6.29577e-14 -7.85318e-12 3.35939e-13 -6.78545e-12 -1.50719e-15 -4.1961e-12 -1.00415e-14 -2.9587e-13 1.86221e-13 3.04263e-16 5.96743e-16 3.40465e-13 5.1096e-16 4.79901e-12 2.84874e-14 1.09904e-11 1.17271e-13 1.65745e-11 2.73399e-13 1.91666e-11 8.22538e-13 2.10187e-11 -3.85077e-15 3.73673e-12 -1.64633e-14 -2.4316e-13 -2.92991e-15 6.80916e-13 -4.37165e-16 4.85059e-13 -9.00303e-18 -1.00862e-14 -1.78515e-18 -1.04307e-14 -2.69101e-19 5.67583e-14 -1.79195e-19 4.5406e-14 -2.0926e-19 7.45182e-15 -2.52168e-19 2.46198e-15 -1.33438e-18 6.78602e-17 -6.16722e-19 2.46142e-17 -7.95528e-19 1.29612e-17 -7.73255e-19 7.35444e-18 -5.69171e-19 3.6519e-18 -3.13685e-19 2.0544e-18 -1.27929e-19 1.44664e-18 -3.80855e-20 7.57509e-19 -8.14432e-21 2.31776e-19 -1.2286e-21 3.99252e-20 -1.28144e-22 3.82231e-21 -9.02149e-24 1.9799e-22 -4.15321e-25 5.31044e-24 -1.19402e-26 6.68291e-26 -1.98966e-28 1.17138e-28 -1.66705e-30 -7.2691e-31 -4.88716e-33 -4.23146e-32 -3.76927e-36 -1.53981e-33 -6.63249e-38 -4.28044e-35 -1.06021e-39 -9.58814e-37 -1.58182e-41 -1.76398e-38 -2.27876e-43 -2.74168e-40 -3.25027e-45 -3.67943e-42 -4.597e-47 -4.66415e-44 -6.22947e-49 -5.96354e-46 -7.8804e-51 -7.56452e-48 -9.32499e-53 -8.39155e-50 -1.15538e-54 -7.30466e-52 -1.80595e-56 -4.51764e-54 -3.50408e-58 -1.82357e-56 -6.86895e-60 -1.57881e-57 -1.20325e-61 -2.20154e-57 -1.77156e-63 -2.90763e-57 -2.40094e-65 -5.48323e-67 -3.58165e-57 6.88464e-66 -2.13906e-66 3.91839e-64 -1.53121e-64 2.51027e-62 -1.02281e-62 1.375e-60 -5.69944e-61 6.3057e-59 -2.64683e-59 2.44374e-57 -1.03256e-57 8.66599e-56 -3.52468e-56 3.47468e-54 -1.24575e-54 1.99159e-52 -6.44846e-53 1.45962e-50 -5.03486e-51 1.06782e-48 -4.33021e-49 7.07094e-47 -3.49283e-47 4.22008e-45 -2.54922e-45 2.3324e-43 -1.68521e-43 1.20555e-41 -1.00354e-41 5.72959e-40 -5.39085e-40 2.34979e-38 -2.611e-38 6.90207e-37 -1.13708e-36 2.71646e-36 -4.45288e-35 -1.54759e-30 -1.59126e-33 -3.91553e-28 -6.215e-32 -3.48855e-26 -2.79677e-30 -1.54693e-24 -1.19434e-28 -3.93524e-23 -4.05235e-27 -6.19486e-22 -1.0356e-25 -6.32418e-21 -1.97217e-24 -4.32982e-20 -2.7944e-23 -2.04443e-19 -2.94312e-22 -6.82564e-19 -2.30354e-21 -1.64537e-18 -1.33217e-20 -2.91576e-18 -5.5807e-20 -3.88758e-18 -1.65682e-19 -4.00784e-18 -3.49339e-19 -3.18738e-18 -5.1697e-19 -1.81042e-18 -5.41e-19 -1.73473e-18 -3.81029e-19 -1.78481e-18 -2.15669e-19 -1.89043e-18 -2.00819e-19 -2.57059e-18 -3.09723e-19 -2.5719e-18 -4.52766e-19 -2.6105e-18 -6.00763e-19 -6.31789e-18 -7.85197e-19 -2.68614e-16 -1.05946e-18 -1.71919e-14 -1.28057e-18 -1.59946e-13 -5.34196e-18 -1.19649e-14 3.81788e-17 -1.3885e-14 2.04404e-16 -2.39782e-14 -3.22092e-18 -1.46832e-15 3.48324e-19 6.23573e-17 1.50392e-16 3.24548e-15 1.64692e-16 3.59699e-14 -9.66837e-20 7.11958e-14 3.55894e-18 1.99883e-13 9.33235e-18 2.5525e-13 -2.49031e-17 6.1169e-14 -1.35652e-17 3.85329e-15 -6.81518e-17 4.48637e-16 -1.75868e-19 1.05684e-17 -2.23528e-19 3.32224e-18 -3.39356e-19 3.1273e-18 -3.97424e-19 2.99886e-18 -3.54932e-19 2.26769e-18 -2.65628e-19 2.09192e-18 -2.47183e-19 2.01338e-18 -3.77287e-19 1.99955e-18 -5.59962e-19 3.47007e-18 -5.95283e-19 3.88848e-18 -4.52564e-19 3.30149e-18 -2.50081e-19 2.12723e-18 -1.00676e-19 1.02653e-18 -2.95014e-20 3.65871e-19 -6.31228e-21 9.47576e-20 -9.90353e-22 1.74895e-20 -1.139e-22 2.24982e-21 -9.56433e-24 1.96578e-22 -5.83054e-25 1.12954e-23 -2.56362e-26 4.07978e-25 -8.09957e-28 8.62842e-27 -1.85475e-29 9.37712e-29 -3.21421e-31 3.78324e-31 -4.76774e-33 -4.39522e-38 -7.50651e-35 -1.64718e-38 -1.47838e-36 -5.09978e-40 -3.30466e-38 -1.12335e-41 -6.64685e-40 -2.13331e-43 -1.19921e-41 -3.76791e-45 -1.93945e-43 -6.34145e-47 -2.80756e-45 -9.94625e-49 -3.65674e-47 -1.42663e-50 -4.24952e-49 -1.88351e-52 -4.53126e-51 -2.56967e-54 -4.88279e-53 -4.37324e-56 -7.14161e-55 -9.14734e-58 -1.57313e-56 -1.91552e-59 -3.8375e-58 -3.55432e-61 -8.28267e-60 -5.50004e-63 -1.47496e-61 -7.77958e-65 -2.13011e-63 -1.84373e-66 -2.50805e-65 -2.61144e-67 -4.45749e-67 7.41023e-66 -2.47144e-72 5.16963e-64 -1.25239e-70 3.3496e-62 -6.99858e-69 1.79921e-60 -3.49547e-67 7.99562e-59 -1.45162e-65 2.96101e-57 -4.80693e-64 9.51343e-56 -1.20448e-62 3.13625e-54 -2.11671e-61 1.49957e-52 -2.34095e-60 1.06995e-50 -1.9036e-59 8.30698e-49 -1.2078e-57 5.96211e-47 -2.04397e-55 3.80366e-45 -3.14422e-53 2.14816e-43 -4.25213e-51 1.05922e-41 -5.06514e-49 4.50036e-40 -5.32547e-47 1.60017e-38 -4.94831e-45 4.43005e-37 -4.07889e-43 7.34083e-36 -2.98269e-41 -3.84409e-33 -1.92838e-39 -8.16295e-31 -1.106e-37 -6.28219e-29 -5.65012e-36 -3.10118e-27 -2.80719e-34 -1.04698e-25 -1.32913e-32 -2.49413e-24 -5.73139e-31 -4.2705e-23 -2.13523e-29 -5.30977e-22 -6.41436e-28 -4.82699e-21 -1.4634e-26 -3.2057e-20 -2.4815e-25 -1.53048e-19 -3.14407e-24 -5.15487e-19 -3.00917e-23 -1.22186e-18 -2.17701e-22 -2.06562e-18 -1.17206e-21 -2.46117e-18 -4.59482e-21 -2.01415e-18 -1.25996e-20 -1.29871e-18 -2.10464e-20 -1.40893e-18 -2.13406e-20 -2.53977e-18 -1.39534e-20 -4.29202e-18 -1.60839e-20 -6.30613e-18 -2.18113e-20 -8.36211e-18 -2.80963e-20 -1.0391e-17 -3.27014e-20 -1.11574e-17 -3.55229e-20 -6.44129e-19 -3.61982e-20 -6.95758e-18 -3.58496e-20 -1.43637e-17 -3.25928e-20 -1.40134e-17 -2.16999e-20 -1.73959e-17 -9.82184e-21 -1.1512e-17 1.49886e-21 4.73957e-19 2.50207e-19 1.58767e-17 3.29219e-19 1.62254e-17 6.96709e-21 2.25072e-17 -8.18631e-21 3.33227e-17 -2.05578e-20 1.55151e-17 -3.11404e-20 7.78124e-19 -3.57415e-20 3.11393e-18 -3.51589e-20 1.1342e-17 -3.53437e-20 1.08791e-17 -3.36992e-20 8.94214e-18 -3.01891e-20 6.56309e-18 -2.46352e-20 4.21671e-18 -1.87182e-20 2.45967e-18 -1.55597e-20 1.87181e-18 -2.13322e-20 2.41798e-18 -2.2832e-20 3.08435e-18 -1.5912e-20 2.86612e-18 -7.04686e-21 1.92177e-18 -2.21666e-21 9.41158e-19 -5.06048e-22 3.36363e-19 -8.5477e-23 8.74217e-20 -1.07808e-23 1.6534e-20 -1.01619e-24 2.2793e-21 -7.14636e-26 2.28287e-22 -3.7405e-27 1.64851e-23 -1.45792e-28 8.49163e-25 -4.26854e-30 3.07705e-26 -9.54655e-32 7.72128e-28 -1.66972e-33 1.32412e-29 -2.36628e-35 1.54548e-31 -2.90222e-37 1.2062e-33 -3.4764e-39 2.21697e-36 -4.82076e-41 -6.31154e-39 -6.85592e-43 -2.71813e-40 -8.68934e-45 -7.48862e-42 -9.79186e-47 -1.62456e-43 -9.80322e-49 -2.94333e-45 -8.70807e-51 -4.59393e-47 -6.8478e-53 -6.20802e-49 -4.73638e-55 -7.52764e-51 -2.88307e-57 -9.06405e-53 -1.7865e-59 -1.46016e-54 -8.87757e-61 -3.49907e-56 -1.04109e-61 -9.18459e-58 -7.43403e-63 -2.11196e-59 -3.53544e-64 -3.97043e-61 -1.22435e-65 -6.00358e-63 -3.27194e-67 -7.34826e-65 -7.02807e-69 -7.90866e-67 -1.292e-70 -2.50603e-72 -5.09447e-68 7.94578e-72 -1.75099e-75 3.96471e-70 -3.31853e-74 2.17353e-68 -4.51178e-73 1.05923e-66 -3.50053e-72 4.26347e-65 -2.03651e-71 1.35811e-63 -2.25468e-69 3.24725e-62 -4.05622e-67 5.39938e-61 -6.66893e-65 5.60007e-60 -1.00162e-62 4.23108e-59 -1.3744e-60 2.4695e-57 -1.72429e-58 3.80239e-55 -1.97891e-56 5.25579e-53 -2.08746e-54 6.29319e-51 -2.01658e-52 6.51785e-49 -1.77882e-50 5.81993e-47 -1.43141e-48 4.44723e-45 -1.05144e-46 2.87496e-43 -7.00349e-45 1.52514e-41 -4.227e-43 6.13667e-40 -2.30488e-41 1.38739e-38 -1.1338e-39 -1.9036e-35 -5.00263e-38 -3.49406e-33 -1.97281e-36 -2.63293e-31 -6.89034e-35 -1.40466e-29 -2.12172e-33 -5.50899e-28 -5.74524e-32 -1.55565e-26 -1.33327e-30 -3.15432e-25 -2.59311e-29 -4.66553e-24 -4.17119e-28 -5.1224e-23 -5.50271e-27 -4.19551e-22 -5.94609e-26 -2.53144e-21 -5.14805e-25 -1.10338e-20 -3.53408e-24 -3.28258e-20 -1.90738e-23 -6.1368e-20 -7.83939e-23 -6.80692e-20 -2.29409e-22 -4.84726e-20 -4.05276e-22 -6.05848e-20 -2.81826e-22 -8.86625e-20 -2.13695e-22 -1.22631e-19 -2.55421e-22 -1.52591e-19 -4.67251e-22 -1.77079e-19 -7.14218e-22 -1.87533e-19 -9.69966e-22 -2.16044e-19 -1.0248e-21 -2.38284e-19 -1.32864e-21 -2.15e-19 -1.62426e-21 -1.67243e-19 -1.64251e-21 -3.46957e-20 -2.03872e-21 -3.39778e-21 -7.04221e-22 1.08662e-20 -3.29925e-22 2.39911e-20 -3.03331e-22 6.58773e-20 -5.69595e-22 2.54945e-19 -1.87065e-21 3.34263e-19 -1.72564e-21 3.56898e-19 -1.6507e-21 3.29016e-19 -1.42025e-21 2.81142e-19 -1.09423e-21 2.526e-19 -9.80532e-22 2.17565e-19 -7.67304e-22 1.76735e-19 -5.3018e-22 1.31177e-19 -3.04355e-22 9.08494e-20 -2.26369e-22 6.89251e-20 -2.74715e-22 8.6289e-20 -4.19946e-22 8.43211e-20 -2.74811e-22 5.25675e-20 -1.06668e-22 2.16205e-20 -2.86526e-23 6.17766e-21 -5.72032e-24 1.27628e-21 -8.87385e-25 1.94103e-22 -1.08934e-25 2.18961e-23 -1.06458e-26 1.83007e-24 -8.40524e-28 1.12837e-25 -5.39431e-29 5.10147e-27 -2.81349e-30 1.68323e-28 -1.19504e-31 4.05546e-30 -4.16529e-33 7.15647e-32 -1.20803e-34 9.22513e-34 -2.99478e-36 8.47191e-36 -6.66112e-38 4.80873e-38 -1.39507e-39 -1.19894e-42 -2.78682e-41 -1.46582e-43 -5.0295e-43 -3.4945e-45 -8.18623e-45 -5.77687e-47 -1.20277e-46 -7.61822e-49 -1.59881e-48 -8.38862e-51 -1.93259e-50 -7.86178e-53 -2.12537e-52 -6.30245e-55 -2.12712e-54 -4.35346e-57 -1.94629e-56 -3.00994e-59 -1.6303e-58 -1.64542e-60 -1.24561e-60 -2.09675e-61 -8.70034e-63 -1.60895e-62 -5.54364e-65 -8.13952e-64 -3.21255e-67 -2.97022e-65 -1.71223e-69 -8.29131e-67 -2.02842e-71 -1.84588e-68 -3.26783e-72 -3.4941e-70 -3.62777e-73 -6.94474e-72 -2.42564e-74 -1.20626e-75 -5.70902e-73 4.94692e-75 -2.22329e-81 9.3187e-74 -8.08702e-80 1.25576e-72 -1.29276e-78 9.61182e-72 -8.51885e-78 5.48269e-71 -1.78832e-77 5.90869e-69 -2.68101e-77 1.02659e-66 -2.32825e-75 1.61662e-64 -8.05453e-73 2.30594e-62 -2.4973e-70 2.97933e-60 -6.97005e-68 3.48891e-58 -1.73957e-65 3.70416e-56 -3.88172e-63 3.58091e-54 -7.76622e-61 3.13844e-52 -1.39403e-58 2.48348e-50 -2.24595e-56 1.7696e-48 -3.23845e-54 1.13311e-46 -4.16565e-52 6.45121e-45 -4.76655e-50 3.2428e-43 -4.83272e-48 1.42005e-41 -4.32869e-46 5.30842e-40 -3.41421e-44 1.61886e-38 -2.35517e-42 3.59939e-37 -1.41373e-40 3.0904e-36 -7.35129e-39 -5.17959e-33 -3.29021e-37 -2.96296e-31 -1.25457e-35 -9.09434e-30 -4.03517e-34 -1.98257e-28 -1.08355e-32 -3.27753e-27 -2.41971e-31 -4.22869e-26 -4.43129e-30 -4.22816e-25 -6.55231e-29 -3.26989e-24 -7.71332e-28 -1.9493e-23 -7.15572e-27 -8.70403e-23 -5.18755e-26 -2.72706e-22 -2.89244e-25 -5.08849e-22 -1.17779e-24 -3.68853e-22 -3.00446e-24 -2.87686e-22 -2.83481e-24 -3.48791e-22 -2.12374e-24 -6.37471e-22 -1.78771e-24 -9.57144e-22 -3.23669e-24 -1.25188e-21 -6.27849e-24 -1.243e-21 -1.01005e-23 -1.46416e-21 -1.23501e-23 -1.54307e-21 -1.65543e-23 -1.22201e-21 -2.08048e-23 -9.71028e-22 -2.11317e-23 -1.05531e-22 -2.80334e-23 1.52017e-22 -1.08349e-23 1.99652e-22 -5.80281e-24 3.00905e-22 -5.44627e-24 7.66239e-22 -9.0515e-24 3.07439e-21 -2.75098e-23 3.24191e-21 -2.24471e-23 3.39166e-21 -2.14061e-23 3.09767e-21 -1.8053e-23 2.48096e-21 -1.31107e-23 2.27204e-21 -1.05061e-23 1.79033e-21 -6.94884e-24 1.22934e-21 -3.72837e-24 6.93224e-22 -1.95043e-24 5.01319e-22 -2.1094e-24 5.86155e-22 -2.87324e-24 8.56101e-22 -3.30142e-24 5.31046e-22 -1.40889e-24 1.93881e-22 -3.68455e-25 4.85993e-23 -6.92924e-26 8.97858e-24 -9.97773e-27 1.27702e-24 -1.12021e-27 1.42212e-25 -9.88794e-29 1.24501e-26 -6.90699e-30 8.67026e-28 -3.8464e-31 4.81166e-29 -1.72558e-32 2.11316e-30 -6.30181e-34 7.27733e-32 -1.89603e-35 1.93979e-33 -4.78008e-37 3.8819e-35 -1.03487e-38 5.26672e-37 -1.98229e-40 1.94773e-39 -3.41111e-42 -3.28641e-42 -5.1474e-44 -1.34024e-43 -6.83047e-46 -3.40986e-45 -8.01294e-48 -6.83146e-47 -8.37142e-50 -1.15204e-48 -7.80917e-52 -1.68892e-50 -6.53211e-54 -2.18375e-52 -4.91811e-56 -2.51091e-54 -3.34526e-58 -2.59191e-56 -2.0606e-60 -2.41277e-58 -1.1512e-62 -2.02213e-60 -5.83928e-65 -1.53133e-62 -2.70768e-67 -1.04651e-64 -1.14537e-69 -6.43851e-67 -4.3979e-72 -3.60815e-69 -1.54273e-74 -4.4535e-71 -4.96741e-77 -7.41278e-72 -2.61698e-79 -8.44025e-73 -1.42226e-79 -5.75419e-74 -1.13667e-79 -2.90602e-75 -4.71554e-80 -2.95709e-81 -2.65935e-76 5.01852e-81 -4.22906e-85 1.82771e-79 -9.90389e-84 2.92007e-78 -1.11384e-82 1.91584e-77 -5.0407e-82 3.98224e-77 -1.16932e-81 5.87124e-77 -1.55931e-79 4.97615e-75 -4.24008e-77 1.66662e-72 -1.07034e-74 4.96185e-70 -2.50092e-72 1.31907e-67 -5.40535e-70 3.11098e-65 -1.07959e-67 6.50963e-63 -1.99262e-65 1.21209e-60 -3.38368e-63 2.0096e-58 -5.26774e-61 2.96756e-56 -7.48002e-59 3.89013e-54 -9.66618e-57 4.50908e-52 -1.13196e-54 4.6031e-50 -1.19741e-52 4.11551e-48 -1.13872e-50 3.20543e-46 -9.68646e-49 2.16034e-44 -7.33569e-47 1.24481e-42 -4.92199e-45 6.05177e-41 -2.9108e-43 2.43693e-39 -1.50819e-41 7.86328e-38 -6.80339e-40 1.8911e-36 -2.64597e-38 2.70176e-35 -8.80005e-37 -2.95546e-33 -2.47047e-35 -3.85699e-31 -5.79098e-34 -1.02601e-29 -1.12153e-32 -1.70017e-28 -1.77553e-31 -1.98958e-27 -2.26856e-30 -1.70617e-26 -2.31629e-29 -1.0771e-25 -1.85867e-28 -4.80359e-25 -1.14879e-27 -1.30572e-24 -5.21007e-27 -1.28109e-24 -1.50848e-26 -9.74998e-25 -1.60194e-26 -8.14209e-25 -1.24856e-26 -1.42522e-24 -9.31354e-27 -2.59428e-24 -1.41357e-26 -3.77366e-24 -3.15659e-26 -3.96778e-24 -5.76724e-26 -4.2395e-24 -7.89779e-26 -3.70898e-24 -1.07103e-25 -1.86967e-24 -1.32225e-25 2.49585e-25 -1.3194e-25 3.36412e-24 -1.74352e-25 2.53973e-24 -7.23827e-26 2.04047e-24 -4.53934e-26 2.54865e-24 -4.36737e-26 5.24697e-24 -6.30208e-26 1.88027e-23 -1.73576e-25 1.74369e-23 -1.39186e-25 1.83628e-23 -1.35051e-25 1.67089e-23 -1.16211e-25 1.28421e-23 -8.24943e-26 1.07124e-23 -5.95501e-26 7.26967e-24 -3.44467e-26 3.9505e-24 -1.55742e-26 2.06848e-24 -9.41596e-27 2.21446e-24 -1.23073e-26 2.95451e-24 -1.63061e-26 3.29107e-24 -1.62798e-26 1.34751e-24 -5.85912e-27 3.34501e-25 -1.33177e-27 5.90319e-26 -2.19919e-28 7.87652e-27 -2.78165e-29 8.07649e-28 -2.75008e-30 6.39986e-29 -2.15863e-31 3.92817e-30 -1.35915e-32 1.86896e-31 -6.93252e-34 6.88794e-33 -2.89925e-35 1.94642e-34 -1.00771e-36 4.08181e-36 -2.94981e-38 5.67147e-38 -7.39335e-40 1.98248e-40 -1.60924e-41 -2.8184e-43 -3.05356e-43 -9.62885e-45 -5.06237e-45 -2.0091e-46 -7.37749e-47 -3.23486e-48 -9.49647e-49 -4.31612e-50 -1.08492e-50 -4.91597e-52 -1.10513e-52 -4.8675e-54 -1.0094e-54 -4.23967e-56 -8.29979e-57 -3.27672e-58 -6.16816e-59 -2.25974e-60 -4.15271e-61 -1.39557e-62 -2.54436e-63 -7.73666e-65 -1.42621e-65 -3.87972e-67 -7.32042e-68 -1.75705e-69 -3.45497e-70 -7.15265e-72 -1.50083e-72 -2.63476e-74 -6.00765e-75 -8.82638e-77 -2.21856e-77 -4.79558e-79 -7.55503e-80 -2.66659e-79 -2.38525e-82 -2.16586e-79 -1.19295e-84 -9.08578e-80 -6.34933e-85 -5.744e-81 -4.05565e-85 -2.40796e-86 -3.25456e-82 6.0205e-85 -1.66523e-89 1.4111e-83 -6.62261e-88 1.58783e-82 -1.1087e-86 7.17226e-82 -5.39825e-86 1.65357e-81 -4.33193e-86 2.17891e-79 -2.97455e-86 5.81516e-77 -5.86089e-84 1.43025e-74 -2.7598e-81 3.23185e-72 -1.19151e-78 6.70561e-70 -4.72316e-76 1.27663e-67 -1.69672e-73 2.23097e-65 -5.51014e-71 3.56397e-63 -1.6008e-68 5.18751e-61 -4.16114e-66 6.84537e-59 -9.592e-64 8.17095e-57 -1.96251e-61 8.78334e-55 -3.5511e-59 8.47263e-53 -5.6573e-57 7.29516e-51 -7.90839e-55 5.57412e-49 -9.66932e-53 3.75781e-47 -1.02757e-50 2.22123e-45 -9.42821e-49 1.14309e-43 -7.43265e-47 5.07809e-42 -5.02427e-45 1.9283e-40 -2.91267e-43 6.167e-39 -1.42964e-41 1.63494e-37 -5.89788e-40 3.50205e-36 -2.03178e-38 5.85784e-35 -5.7555e-37 7.19608e-34 -1.3318e-35 5.49798e-33 -2.50813e-34 3.95582e-33 -3.78656e-33 -4.36112e-30 -4.54614e-32 -5.09421e-29 -4.24498e-31 -3.16348e-28 -3.00801e-30 -1.0927e-27 -1.55491e-29 -1.27158e-27 -5.16447e-29 -1.017e-27 -5.98684e-29 -7.32223e-28 -4.7726e-29 -1.00192e-27 -3.44123e-29 -1.84006e-27 -4.14522e-29 -2.36361e-27 -1.02843e-28 -1.51193e-27 -2.13825e-28 5.4669e-28 -3.18645e-28 3.94182e-27 -4.34669e-28 9.2766e-27 -5.29098e-28 1.40408e-26 -5.19858e-28 2.52636e-26 -6.84252e-28 1.33771e-26 -3.0069e-28 1.02263e-26 -2.18119e-28 1.15909e-26 -2.14233e-28 1.91747e-26 -2.79228e-28 5.91916e-26 -6.83058e-28 5.2179e-26 -5.45441e-28 5.47267e-26 -5.35361e-28 5.01447e-26 -4.66736e-28 3.73909e-26 -3.26763e-28 2.79989e-26 -2.16256e-28 1.6604e-26 -1.09477e-28 7.61037e-27 -4.39886e-29 4.61389e-27 -3.42104e-29 5.98256e-27 -4.73966e-29 7.77805e-27 -6.08486e-29 7.53521e-27 -5.42358e-29 2.60046e-27 -1.66469e-29 5.59519e-28 -3.27036e-30 8.62047e-29 -4.66159e-31 1.00036e-29 -5.02729e-32 8.89124e-31 -4.21158e-33 6.11461e-32 -2.79802e-34 3.25832e-33 -1.48926e-35 1.33755e-34 -6.43637e-37 4.1488e-36 -2.27559e-38 9.11105e-38 -6.61415e-40 1.03439e-39 -1.6063e-41 -3.65332e-43 -3.29285e-43 -2.52696e-44 -5.74302e-45 -7.34448e-46 -8.56434e-47 -1.54587e-47 -1.09656e-48 -2.62087e-49 -1.20737e-50 -3.73493e-51 -1.14824e-52 -4.5772e-53 -9.47758e-55 -4.90072e-55 -6.81391e-57 -4.63093e-57 -4.28574e-59 -3.89292e-59 -2.36611e-61 -2.92566e-61 -1.15135e-63 -1.97812e-63 -4.94765e-66 -1.21097e-65 -1.87846e-68 -6.72297e-68 -6.31024e-71 -3.40018e-70 -1.88863e-73 -1.5684e-72 -5.02041e-76 -6.60654e-75 -1.18896e-78 -2.54456e-77 -2.53307e-81 -8.96004e-80 -4.81323e-84 -2.90171e-82 -8.23341e-87 -1.4782e-84 -1.29108e-89 -7.96905e-85 -8.52595e-91 -5.13658e-85 -1.73539e-90 -3.0724e-86 -1.77699e-90 -4.06695e-92 -1.06355e-87 9.13179e-90 -4.35831e-97 3.55987e-88 -6.67989e-95 5.87492e-87 -6.32308e-93 2.83155e-86 -2.84491e-91 2.2546e-86 -5.44423e-92 1.53707e-86 -4.99272e-90 3.00385e-84 -2.70722e-87 1.39951e-81 -1.34586e-84 5.9571e-79 -6.12354e-82 2.31793e-76 -2.55268e-79 8.13317e-74 -9.70487e-77 2.56616e-71 -3.3414e-74 7.20303e-69 -1.03514e-71 1.79871e-66 -2.86753e-69 3.95985e-64 -7.07456e-67 7.69102e-62 -1.54714e-64 1.31294e-59 -2.98363e-62 1.96075e-57 -5.04139e-60 2.55239e-55 -7.43339e-58 2.88587e-53 -9.52596e-56 2.81531e-51 -1.05712e-53 2.35278e-49 -1.01236e-51 1.67525e-47 -8.36408e-50 1.0135e-45 -5.93853e-48 5.20594e-44 -3.61295e-46 2.23912e-42 -1.87084e-44 7.995e-41 -8.16736e-43 2.35092e-39 -2.97821e-41 5.59589e-38 -8.97092e-40 1.06888e-36 -2.22088e-38 1.62863e-35 -4.50138e-37 1.94514e-34 -7.36815e-36 1.80338e-33 -9.61552e-35 1.26993e-32 -9.79426e-34 6.67215e-32 -7.517e-33 2.56783e-31 -4.16673e-32 6.68557e-31 -1.49187e-31 6.87473e-31 -1.73194e-31 5.78115e-31 -1.33379e-31 5.09198e-31 -9.81263e-32 8.0706e-31 -9.58464e-32 2.67794e-30 -2.64543e-31 7.35235e-30 -6.12807e-31 1.41342e-29 -9.56259e-31 2.42441e-29 -1.29519e-30 3.62071e-29 -1.55915e-30 4.26736e-29 -1.50527e-30 6.6015e-29 -1.99127e-30 3.34725e-29 -9.24548e-31 2.75512e-29 -7.56387e-31 3.02393e-29 -7.49612e-31 4.34287e-29 -8.898e-31 1.15544e-28 -1.98284e-30 9.91339e-29 -1.57666e-30 1.03354e-28 -1.56506e-30 9.46752e-29 -1.38057e-30 6.89214e-29 -9.69311e-31 4.6953e-29 -6.10012e-31 2.4227e-29 -2.76731e-31 9.82518e-30 -9.9935e-32 7.6366e-30 -9.71972e-32 1.04677e-29 -1.32731e-31 1.31569e-29 -1.74516e-31 1.1354e-29 -1.52388e-31 3.33346e-30 -4.27647e-32 6.18009e-31 -7.75159e-33 8.18551e-32 -1.00969e-33 8.05339e-33 -9.88709e-35 6.01685e-34 -7.54364e-36 3.4616e-35 -4.56949e-37 1.53195e-36 -2.22949e-38 5.17755e-38 -8.88161e-40 1.28749e-39 -2.8898e-41 2.07797e-41 -7.74656e-43 8.20192e-44 -1.71847e-44 -1.27457e-46 -3.19947e-46 -4.31246e-48 -5.02584e-48 -8.68625e-50 -6.71901e-50 -1.31121e-51 -7.66501e-52 -1.58836e-53 -7.46973e-54 -1.59426e-55 -6.24037e-56 -1.34947e-57 -4.46918e-58 -9.75493e-60 -2.76732e-60 -6.07354e-62 -1.48925e-62 -3.28168e-64 -6.98419e-65 -1.54557e-66 -2.86056e-67 -6.35845e-69 -1.025e-69 -2.29122e-71 -3.22133e-72 -7.28898e-74 -8.90869e-75 -2.04238e-76 -2.17922e-77 -5.05977e-79 -4.74416e-80 -1.11992e-81 -9.23679e-83 -2.19756e-84 -1.61576e-85 -3.86269e-87 -2.53933e-88 -6.2012e-90 -3.57289e-91 -4.18375e-91 -4.46642e-94 -8.69697e-91 -6.28946e-97 -9.10842e-91 -1.31698e-96 -2.13876e-92 -6.01447e-96 -1.05138e-97 -1.99575e-94 -3.29795e-96 -3.90201e-94 -2.0146e-92 -4.15827e-93 -3.91185e-91 -2.08298e-88 -9.77146e-86 -4.03902e-83 -1.47311e-80 -4.7115e-78 -1.30652e-75 -3.09316e-73 -6.10158e-71 -9.59245e-69 -1.06556e-66 -3.99764e-65 9.19799e-65 3.23307e-62 6.48142e-60 9.62095e-58 1.1278e-55 1.06793e-53 8.25205e-52 5.19226e-50 2.63699e-48 1.05567e-46 3.1668e-45 6.24187e-44 3.43174e-43 -5.33524e-40 -1.87262e-38 -3.48744e-37 -4.29917e-36 -3.59737e-35 -1.99175e-34 -6.48432e-34 -6.0045e-34 -2.84465e-34 -3.374e-35 1.85617e-34 4.36822e-34 2.01855e-33 6.7896e-33 1.42175e-32 2.45466e-32 3.63016e-32 4.18565e-32 6.46447e-32 3.43868e-32 3.17146e-32 3.49364e-32 4.55204e-32 1.10089e-31 9.40224e-32 9.92869e-32 9.23418e-32 6.77836e-32 4.42438e-32 2.06591e-32 7.62297e-33 7.52188e-33 1.03491e-32 1.36167e-32 1.1819e-32 3.2751e-33 5.82313e-34 7.39084e-35 7.00516e-36 5.13869e-37 2.97249e-38 1.3756e-39 5.16269e-41 1.5721e-42 3.91939e-44 8.04053e-46 1.378e-47 1.98672e-49 2.43686e-51 2.55904e-53 2.31472e-55 1.82083e-57 1.25388e-59 7.66881e-62 4.20259e-64 2.06915e-66 9.13752e-69 3.60092e-71 1.25906e-73 3.88615e-76 1.0562e-78 2.52616e-81 5.31153e-84 9.80902e-87 1.58227e-89 2.20796e-92 2.62471e-95 3.33201e-98 5.84779e-98 1.99737e-97 2.0723e-99 3.83251e-165 -5.32156e-162 2.00371e-150 -2.12353e-155 9.96344e-143 -1.41798e-147 4.1003e-140 -6.11318e-145 1.13997e-139 -1.60743e-144 2.94847e-140 -3.79434e-145 2.39576e-141 -2.82991e-146 9.98399e-143 -1.10611e-147 2.67268e-144 -2.8337e-149 5.23034e-146 -5.38278e-151 8.1721e-148 -8.21497e-153 1.09518e-149 -1.07285e-154 1.35137e-151 -1.27493e-156 1.66533e-153 -1.48019e-158 2.24266e-155 -1.82635e-160 3.55157e-157 -2.59356e-162 6.80249e-159 -4.42617e-164 1.5579e-160 -9.06066e-166 4.15016e-162 -2.16561e-167 1.25372e-163 -5.8732e-169 4.2668e-165 -1.78758e-170 1.66447e-166 -6.18785e-172 7.56808e-168 -2.47314e-173 4.00695e-169 -1.13778e-174 2.44856e-170 -5.94738e-176 1.74875e-171 -3.54914e-177 1.5146e-172 -2.48022e-178 1.66665e-173 -2.08919e-179 2.38826e-174 -2.08213e-180 4.66971e-175 -2.272e-181 1.36184e-175 -1.32734e-182 7.06026e-176 1.63012e-178 5.66067e-176 3.04825e-178 5.94792e-176 5.07373e-178 8.06671e-176 9.47757e-178 1.31177e-175 1.97325e-177 2.58313e-175 4.75611e-177 5.71524e-175 1.24925e-176 1.46786e-174 3.7257e-176 4.18771e-174 1.21376e-175 1.29553e-173 4.23198e-175 4.05998e-173 1.47903e-174 1.35335e-172 5.45082e-174 4.61686e-172 2.04102e-173 1.58598e-171 7.64856e-173 5.37887e-171 2.81487e-172 1.76836e-170 9.99622e-172 5.96608e-170 3.6284e-171 1.81559e-169 1.18382e-170 5.20078e-169 3.62437e-170 1.49631e-168 1.11147e-169 3.78882e-168 2.99253e-169 9.61981e-168 8.06173e-169 2.3064e-167 2.04689e-168 5.5244e-167 5.18333e-168 1.23977e-166 1.22795e-167 2.59642e-166 2.71122e-167 5.08034e-166 5.58644e-167 9.79976e-166 1.13366e-166 1.78229e-165 2.1672e-166 3.0878e-165 3.9438e-166 5.31877e-165 7.13122e-166 8.52437e-165 1.19921e-165 1.35946e-164 2.00596e-165 2.04184e-164 3.1593e-165 3.14752e-164 5.10612e-165 4.61746e-164 7.85366e-165 6.61865e-164 1.1804e-164 9.38773e-164 1.75593e-164 1.32373e-163 2.59767e-164 1.94811e-163 4.01268e-164 2.34968e-163 5.08296e-164 2.64752e-163 6.01917e-164 2.88278e-163 6.89374e-164 3.33345e-163 8.39274e-164 3.85627e-163 1.02336e-163 5.79549e-163 1.6232e-163 6.02011e-163 1.78224e-163 6.06459e-163 1.9011e-163 5.28388e-163 1.75744e-163 5.58556e-163 1.97576e-163 4.4483e-163 1.67791e-163 4.65978e-163 1.88014e-163 5.23939e-163 2.26936e-163 1.57496e-162 7.35324e-163 2.12814e-162 1.07617e-162 2.11343e-162 1.16408e-162 1.84008e-162 1.11133e-162 1.19162e-162 7.95475e-163 6.54542e-163 4.87685e-163 1.16679e-163 9.82061e-164 1.84228e-163 1.7784e-163 1.93706e-164 2.18702e-164 1.142e-163 1.54779e-163 2.2503e-164 3.79532e-164 3.33067e-163 7.36656e-163 1.96855e-160 6.20153e-160 6.60931e-158 3.44355e-157 5.77742e-158 7.14338e-157 1.24359e-161 4.21124e-161 -5.74028e-158 1.97361e-154 -3.74234e-159 1.55739e-146 -1.94182e-151 7.92011e-144 -1.11796e-148 2.43009e-143 -3.39523e-148 6.5679e-144 -8.59533e-149 5.47547e-145 -6.66664e-150 2.33396e-146 -2.67446e-151 6.38264e-148 -6.99154e-153 1.27385e-149 -1.35069e-154 2.02241e-151 -2.09085e-156 2.73424e-153 -2.75997e-158 3.35959e-155 -3.29548e-160 4.03858e-157 -3.80644e-162 5.1751e-159 -4.60934e-164 7.66385e-161 -6.34573e-166 1.37071e-162 -1.04517e-167 2.95751e-164 -2.07151e-169 7.49961e-166 -4.82122e-171 2.17414e-167 -1.27889e-172 7.13561e-169 -3.81426e-174 2.6912e-170 -1.29349e-175 1.18665e-171 -5.06281e-177 6.11685e-173 -2.28194e-178 3.65435e-174 -1.16743e-179 2.55946e-175 -6.78997e-181 2.17956e-176 -4.59297e-182 2.36991e-177 -3.68374e-183 3.37042e-178 -3.3502e-184 6.54945e-179 -2.77258e-185 1.89003e-179 1.64132e-182 9.02065e-180 3.77891e-182 6.26767e-180 4.7582e-182 6.05875e-180 6.70694e-182 7.87165e-180 1.15107e-181 1.25716e-179 2.29449e-181 2.47165e-179 5.42668e-181 5.51217e-179 1.41866e-180 1.43753e-178 4.25459e-180 4.18302e-178 1.40283e-179 1.32386e-177 4.97216e-179 4.24705e-177 1.76951e-178 1.45185e-176 6.6578e-178 5.08151e-176 2.54782e-177 1.7919e-175 9.76807e-177 6.23718e-175 3.67866e-176 2.10446e-174 1.33726e-175 7.28929e-174 4.972e-175 2.27475e-173 1.66012e-174 6.67871e-173 5.20012e-174 1.97097e-172 1.63311e-173 5.11132e-172 4.49684e-173 1.32925e-171 1.23924e-172 3.26125e-171 3.21621e-172 7.98984e-171 8.32213e-172 1.83198e-170 2.0126e-171 3.91695e-170 4.53318e-171 7.81814e-170 9.52184e-171 1.53711e-169 1.9683e-170 2.84714e-169 3.83022e-170 5.02032e-169 7.09075e-170 8.79302e-169 1.3032e-169 1.43228e-168 2.22655e-169 2.31921e-168 3.78041e-169 3.53475e-168 6.04039e-169 5.52254e-168 9.89263e-169 8.20753e-168 1.54121e-168 1.19099e-167 2.3447e-168 1.70947e-167 3.52921e-168 2.43731e-167 5.27857e-168 3.6243e-167 8.23804e-168 4.4208e-167 1.05524e-167 5.0391e-167 1.26403e-167 5.54446e-167 1.46281e-167 6.47773e-167 1.7993e-167 7.56291e-167 2.21423e-167 1.14631e-166 3.54214e-167 1.20141e-166 3.92426e-167 1.22176e-166 4.22597e-167 1.07276e-166 3.93736e-167 1.1434e-166 4.46359e-167 9.16836e-167 3.81713e-167 9.68084e-167 4.31186e-167 1.09328e-166 5.22809e-167 3.26932e-166 1.68549e-166 4.43993e-166 2.4797e-166 4.42322e-166 2.69139e-166 3.86044e-166 2.5764e-166 2.49675e-166 1.84247e-166 1.36143e-166 1.12187e-166 2.39692e-167 2.23253e-167 3.75436e-167 4.01347e-167 3.91205e-168 4.89533e-168 2.31304e-167 3.47778e-167 4.55528e-168 8.53162e-168 6.92918e-167 1.70368e-166 5.16681e-164 1.81156e-163 1.61073e-161 9.35078e-161 1.16458e-161 1.60557e-160 2.81671e-165 3.86034e-157 -5.2189e-154 2.93169e-158 -2.30753e-155 1.78221e-150 -2.11198e-155 1.20031e-147 -1.61428e-152 4.22473e-147 -5.80514e-152 1.21961e-147 -1.59086e-152 1.05697e-148 -1.29423e-153 4.63981e-150 -5.37284e-155 1.30314e-151 -1.44456e-156 2.6676e-153 -2.86042e-158 4.3367e-155 -4.52854e-160 5.98441e-157 -6.10165e-162 7.46038e-159 -7.4151e-164 9.00684e-161 -8.6734e-166 1.14309e-162 -1.05522e-167 1.65563e-164 -1.44677e-169 2.88285e-166 -2.36029e-171 6.07457e-168 -4.63039e-173 1.51298e-169 -1.06872e-174 4.32816e-171 -2.81668e-176 1.4049e-172 -8.3521e-178 5.24247e-174 -2.81381e-179 2.28866e-175 -1.09344e-180 1.17043e-176 -4.88967e-182 6.94919e-178 -2.47967e-183 4.83937e-179 -1.42765e-184 4.10357e-180 -9.51486e-186 4.44597e-181 -7.44166e-187 6.31266e-182 -6.45192e-188 1.2258e-182 -4.3296e-189 3.51804e-183 6.23196e-186 1.50272e-183 8.16724e-186 9.22418e-184 8.45266e-186 8.06721e-184 1.04551e-185 9.79768e-184 1.64855e-185 1.50375e-183 3.12221e-185 2.90183e-183 7.18854e-185 6.4391e-183 1.8581e-184 1.68832e-182 5.57434e-184 4.9725e-182 1.85256e-183 1.60018e-181 6.65292e-183 5.22977e-181 2.40465e-182 1.82617e-180 9.21686e-182 6.5362e-180 3.59831e-181 2.35947e-179 1.40925e-180 8.40908e-179 5.42398e-180 2.90601e-178 2.01614e-179 1.0316e-177 7.67136e-179 3.29637e-177 2.61939e-178 9.90696e-177 8.38938e-178 2.9952e-176 2.6965e-177 7.94723e-176 7.59018e-177 2.11494e-175 2.13884e-176 5.30572e-175 5.6721e-176 1.32859e-174 1.49924e-175 3.11055e-174 3.70026e-175 6.78618e-174 8.50051e-175 1.38106e-173 1.81982e-174 2.76628e-173 3.83127e-174 5.21636e-173 7.58806e-174 9.35808e-173 1.42891e-173 1.6661e-172 2.66908e-173 2.7575e-172 4.6329e-173 4.53252e-172 7.98425e-173 7.00888e-172 1.29427e-172 1.10969e-171 2.14799e-172 1.6706e-171 3.38979e-172 2.45396e-171 5.22035e-172 3.56414e-171 7.95117e-172 5.13795e-171 1.20245e-171 7.71928e-171 1.89608e-171 9.52189e-171 2.4562e-171 1.09795e-170 2.97645e-171 1.22076e-170 3.48088e-171 1.44103e-170 4.32627e-171 1.69802e-170 5.37373e-171 2.59563e-170 8.67075e-171 2.74502e-170 9.6943e-171 2.81826e-170 1.05411e-170 2.49424e-170 9.90056e-171 2.68091e-170 1.13197e-170 2.16499e-170 9.74997e-171 2.30472e-170 1.11044e-170 2.6149e-170 1.35269e-170 7.78219e-170 4.34007e-170 1.06253e-169 6.41905e-170 1.06239e-169 6.99186e-170 9.29933e-170 6.7119e-170 6.0108e-170 4.79624e-170 3.25621e-170 2.90075e-170 5.66774e-171 5.70558e-171 8.81396e-171 1.01809e-170 9.11407e-172 1.23194e-171 5.41017e-171 8.78361e-171 1.06658e-171 2.156e-171 1.67746e-170 4.44839e-170 1.56479e-167 5.91132e-167 4.54439e-165 2.83792e-164 2.72844e-165 4.03658e-164 7.26346e-169 3.05776e-153 -4.06905e-150 1.55925e-154 -2.02581e-151 1.65338e-154 -8.30215e-153 1.46165e-151 -2.99096e-154 6.02951e-151 -1.79651e-155 1.86976e-151 -2.7579e-156 1.69267e-152 -2.17956e-157 7.68715e-154 -9.24091e-159 2.22758e-155 -2.56252e-160 4.7007e-157 -5.26203e-162 7.8727e-159 -8.697e-164 1.11783e-160 -1.23458e-165 1.43e-162 -1.59552e-167 1.76241e-164 -1.98748e-169 2.26481e-166 -2.52517e-171 3.29152e-168 -3.4611e-173 5.71768e-170 -5.40796e-175 1.20088e-171 -1.00562e-176 2.98637e-173 -2.24197e-178 8.54545e-175 -5.83246e-180 2.77642e-176 -1.72646e-181 1.03641e-177 -5.82369e-183 4.52538e-179 -2.2644e-184 2.31496e-180 -1.01347e-185 1.37549e-181 -5.14693e-187 9.59471e-183 -2.96677e-188 8.14543e-184 -1.98037e-189 8.83458e-185 -1.55435e-190 1.26015e-185 -1.3566e-191 2.45626e-186 -9.23537e-193 6.99755e-187 1.32698e-189 2.81125e-187 1.65894e-189 1.58696e-187 1.58091e-189 1.27525e-187 1.79569e-189 1.4467e-187 2.64185e-189 2.11908e-187 4.76894e-189 3.98254e-187 1.0679e-188 8.73373e-187 2.72435e-188 2.28976e-186 8.16178e-188 6.79635e-186 2.73019e-187 2.21623e-185 9.92367e-187 7.35883e-185 3.6401e-186 2.61893e-184 1.42053e-185 9.56819e-184 5.65541e-185 3.53034e-183 2.2618e-184 1.28663e-182 8.89432e-184 4.54909e-182 3.37978e-183 1.65352e-181 1.31579e-182 5.40618e-181 4.59382e-182 1.66214e-180 1.50421e-181 5.14501e-180 4.94738e-181 1.39609e-179 1.42349e-180 3.80034e-179 4.10135e-180 9.74514e-179 1.11136e-179 2.49339e-178 3.00058e-179 5.95929e-178 7.55804e-179 1.32635e-177 1.77091e-178 2.75173e-177 3.86414e-178 5.6145e-177 8.28531e-178 1.07772e-176 1.67013e-177 1.96694e-176 3.19914e-177 3.55954e-176 6.07337e-177 5.98592e-176 1.07104e-176 9.98792e-176 1.87361e-176 1.5671e-175 3.08153e-176 2.51451e-175 5.18286e-176 3.83494e-175 8.28597e-176 5.7029e-175 1.29187e-175 8.38231e-175 1.9913e-175 1.22189e-174 3.04522e-175 1.85494e-174 4.85223e-175 2.31415e-174 6.35751e-175 2.69964e-174 7.79477e-175 3.03349e-174 9.21328e-175 3.61839e-174 1.15718e-174 4.30381e-174 1.45096e-174 6.63577e-174 2.36158e-174 7.08256e-174 2.66491e-174 7.34256e-174 2.92613e-174 6.55149e-174 2.77093e-174 7.10238e-174 3.19551e-174 5.7777e-174 2.77267e-174 6.20173e-174 3.18412e-174 7.07019e-174 3.89737e-174 2.09462e-173 1.24476e-173 2.87539e-173 1.85091e-173 2.88588e-173 2.02357e-173 2.53358e-173 1.94817e-173 1.63681e-173 1.39132e-173 8.80953e-174 8.35921e-174 1.5162e-174 1.62556e-174 2.34055e-174 2.87878e-174 2.40234e-175 3.457e-175 1.43123e-174 2.47332e-174 2.82392e-175 6.07544e-175 4.61222e-174 1.30188e-173 5.31489e-171 2.13782e-170 1.43565e-168 9.55076e-168 7.14715e-169 1.12614e-167 2.09676e-172 2.13204e-149 -2.75755e-146 1.21246e-150 -1.52985e-147 5.69518e-152 -7.03364e-149 2.3469e-153 -2.82382e-150 1.60047e-154 -1.03076e-151 2.75697e-155 -3.51625e-153 2.41094e-156 -1.13566e-154 1.1154e-157 -3.47366e-156 3.33466e-159 -9.97672e-158 7.31569e-161 -2.65592e-159 1.28426e-162 -6.46499e-161 1.93051e-164 -1.42169e-162 2.64006e-166 -2.7969e-164 3.48347e-168 -4.88564e-166 4.69917e-170 -7.53238e-168 6.86153e-172 -1.01978e-169 1.14698e-173 -1.20662e-171 2.29353e-175 -1.24143e-173 5.53273e-177 -1.10436e-175 1.56886e-178 -8.4405e-178 5.10713e-180 -5.49967e-180 1.91542e-181 -3.02795e-182 8.3948e-183 -1.39391e-184 4.31099e-184 -5.31043e-187 2.57202e-185 -1.72953e-189 1.80052e-186 -9.69904e-192 1.53443e-187 -3.92596e-193 1.67224e-188 -3.0931e-194 2.4037e-189 -2.82683e-195 4.7391e-190 -2.32671e-196 1.36808e-190 1.82279e-193 5.42688e-191 3.0774e-193 2.93933e-191 2.95585e-193 2.23226e-191 3.23489e-193 2.39747e-191 4.55036e-193 3.36503e-191 7.91595e-193 6.15767e-191 1.73203e-192 1.3326e-190 4.37023e-192 3.48779e-190 1.30891e-191 1.04186e-189 4.41047e-191 3.43894e-189 1.62359e-190 1.15918e-188 6.04755e-190 4.20193e-188 2.40414e-189 1.5663e-187 9.76586e-189 5.90465e-187 3.99039e-188 2.1999e-186 1.60402e-187 7.95577e-186 6.23375e-187 2.96035e-185 2.48411e-186 9.90198e-185 8.8715e-186 3.11407e-184 2.97098e-185 9.86763e-184 1.00015e-184 2.73814e-183 2.94237e-184 7.62352e-183 8.66957e-184 1.99815e-182 2.4009e-183 5.22356e-182 6.62224e-183 1.27445e-181 1.70261e-182 2.89373e-181 4.06946e-182 6.1202e-181 9.05157e-182 1.27198e-180 1.97682e-181 2.48539e-180 4.05614e-181 4.61476e-180 7.90408e-181 8.48878e-180 1.52522e-180 1.45051e-179 2.73303e-180 2.45701e-179 4.85356e-180 3.91176e-179 8.10015e-180 6.36161e-179 1.38083e-179 9.82987e-179 2.23668e-179 1.48004e-178 3.53086e-179 2.20174e-178 5.50859e-179 3.24575e-178 8.51961e-179 4.97932e-178 1.37188e-178 6.28346e-178 1.81824e-178 7.41684e-178 2.25577e-178 8.42366e-178 2.69514e-178 1.01541e-177 3.42114e-178 1.21923e-177 4.33088e-178 1.89616e-177 7.11084e-178 2.04273e-177 8.09996e-178 2.13857e-177 8.9824e-178 1.92399e-177 8.57723e-178 2.10387e-177 9.97798e-178 1.72426e-177 8.72285e-178 1.86626e-177 1.01014e-177 2.1379e-177 1.24247e-177 6.30596e-177 3.951e-177 8.70314e-177 5.90694e-177 8.76822e-177 6.4829e-177 7.72046e-177 6.26e-177 4.98534e-177 4.46881e-177 2.66561e-177 2.66756e-177 4.53632e-178 5.12984e-178 6.94818e-178 9.01528e-178 7.07838e-179 1.07471e-178 4.22992e-178 7.71403e-178 8.3511e-179 1.89652e-178 1.42454e-177 4.24612e-177 2.0028e-174 8.5126e-174 5.03028e-172 3.54055e-171 2.07101e-172 3.46272e-171 6.69739e-176 1.31941e-145 -1.63987e-142 8.28786e-147 -1.00416e-143 4.32506e-148 -5.1233e-145 1.96637e-149 -2.28114e-146 8.07319e-151 -9.18521e-148 3.0661e-152 -3.42531e-149 1.08952e-153 -1.19618e-150 3.62436e-155 -3.91287e-152 1.12102e-156 -1.19056e-153 3.19045e-158 -3.33418e-155 8.26412e-160 -8.49996e-157 1.92944e-161 -1.95342e-158 4.0287e-163 -4.01514e-160 7.47733e-165 -7.33569e-162 1.22768e-166 -1.1854e-163 1.77574e-168 -1.6869e-165 2.25371e-170 -2.10511e-167 2.49935e-172 -2.2933e-169 2.41072e-174 -2.16985e-171 2.01166e-176 -1.77262e-173 1.44335e-178 -1.24157e-175 8.84236e-181 -7.39502e-178 4.58879e-183 -3.70879e-180 2.00428e-185 -1.54774e-182 7.65262e-188 -5.29672e-185 5.18968e-190 -1.45929e-187 2.66124e-191 -3.15683e-190 2.86548e-192 -5.16781e-193 4.15293e-193 -5.98618e-196 8.33599e-194 -4.56254e-199 2.49196e-194 5.98592e-198 1.02441e-194 5.0296e-197 5.55292e-195 5.33544e-197 4.11824e-195 5.90824e-197 4.27669e-195 8.18084e-197 5.8173e-195 1.39383e-196 1.042e-194 3.0056e-196 2.23085e-194 7.53739e-196 5.83641e-194 2.26407e-195 1.75614e-193 7.70326e-195 5.87144e-193 2.87756e-194 2.01039e-192 1.09027e-193 7.42707e-192 4.42189e-193 2.82626e-191 1.83515e-192 1.08914e-190 7.66993e-192 4.15025e-190 3.15475e-191 1.53586e-189 1.25502e-190 5.85273e-189 5.12306e-190 2.00357e-188 1.87287e-189 6.44749e-188 6.41883e-189 2.09191e-187 2.2128e-188 5.9377e-187 6.65955e-188 1.69121e-186 2.0075e-187 4.53175e-186 5.68394e-187 1.21064e-185 1.60216e-186 3.0158e-185 4.20593e-186 6.98693e-185 1.02574e-185 1.50671e-184 2.3263e-185 3.1902e-184 5.17594e-185 6.34621e-184 1.08124e-184 1.19894e-183 2.14388e-184 2.24206e-183 4.20576e-184 3.89336e-183 7.65893e-184 6.696e-183 1.38102e-183 1.08191e-182 2.33912e-183 1.78358e-182 4.04218e-183 2.79268e-182 6.63487e-183 4.25803e-182 1.06067e-182 6.41196e-182 1.6751e-182 9.56064e-182 2.62045e-182 1.48237e-181 4.26481e-182 1.89242e-181 5.71842e-182 2.26051e-181 7.17958e-182 2.59543e-181 8.6719e-182 3.16221e-181 1.11262e-181 3.83368e-181 1.42214e-181 6.01478e-181 2.35561e-181 6.54146e-181 2.70891e-181 6.91691e-181 3.03416e-181 6.27569e-181 2.92195e-181 6.9229e-181 3.42914e-181 5.71737e-181 3.02082e-181 6.24075e-181 3.52787e-181 7.18511e-181 4.3609e-181 2.11069e-180 1.38102e-180 2.92926e-180 2.07602e-180 2.96326e-180 2.28756e-180 2.61752e-180 2.2157e-180 1.69007e-180 1.58131e-180 8.98152e-181 9.3796e-181 1.51234e-181 1.78419e-181 2.29922e-181 3.11123e-181 2.32686e-182 3.68304e-182 1.39527e-181 2.65168e-181 2.7585e-182 6.52594e-182 4.95241e-181 1.53725e-180 8.39547e-178 3.71479e-177 1.96488e-175 1.43913e-174 6.71634e-176 1.1682e-174 2.36801e-179 7.28927e-142 -8.62091e-139 5.01469e-143 -5.77682e-140 2.87924e-144 -3.23931e-141 1.43911e-145 -1.58369e-142 6.46419e-147 -6.9678e-144 2.66508e-148 -2.81702e-145 1.01857e-149 -1.05669e-146 3.61123e-151 -3.67932e-148 1.18126e-152 -1.18256e-149 3.53544e-154 -3.47888e-151 9.59697e-156 -9.2848e-153 2.3445e-157 -2.23061e-154 5.1224e-159 -4.79328e-156 9.96016e-161 -9.1669e-158 1.71675e-162 -1.55385e-159 2.61377e-164 -2.32584e-161 3.50305e-166 -3.0629e-163 4.11747e-168 -3.53436e-165 4.2266e-170 -3.55715e-167 3.77079e-172 -3.10573e-169 2.90749e-174 -2.33734e-171 1.92514e-176 -1.50496e-173 1.08652e-178 -8.2161e-176 5.18276e-181 -3.76245e-178 2.06949e-183 -1.42633e-180 6.84401e-186 -4.40345e-183 1.85233e-188 -1.08295e-185 4.05239e-191 -2.0561e-188 7.0831e-194 -2.85349e-191 1.10562e-196 -2.53662e-194 4.14395e-198 -6.35865e-198 1.81901e-198 6.77096e-201 1.03162e-198 8.99205e-201 7.74038e-199 1.06372e-200 7.9736e-199 1.49944e-200 1.06839e-198 2.55444e-200 1.89105e-198 5.49531e-200 4.02749e-198 1.37989e-199 1.05698e-197 4.17728e-199 3.21174e-197 1.44025e-198 1.08986e-196 5.47487e-198 3.79721e-196 2.11507e-197 1.43179e-195 8.76941e-197 5.56944e-195 3.72499e-196 2.19651e-194 1.59494e-195 8.56921e-194 6.722e-195 3.24787e-193 2.7407e-194 1.26848e-192 1.14726e-193 4.4474e-192 4.29747e-193 1.46538e-191 1.50862e-192 4.87067e-191 5.32947e-192 1.41486e-190 1.64191e-191 4.12431e-190 5.06654e-191 1.13027e-189 1.46741e-190 3.0866e-189 4.22893e-190 7.853e-189 1.13401e-189 1.85691e-188 2.82307e-189 4.08393e-188 6.53046e-189 8.81123e-188 1.48074e-188 1.78487e-187 3.15008e-188 3.43165e-187 6.35686e-188 6.52502e-187 1.26808e-187 1.15169e-186 2.34733e-187 2.01141e-186 4.29838e-187 3.29879e-186 7.39034e-187 5.51348e-186 1.29487e-186 8.74911e-186 2.15416e-186 1.35107e-185 3.48801e-186 2.05972e-185 5.57713e-186 3.10679e-185 8.82628e-186 4.8691e-185 1.45208e-185 6.28917e-185 1.97003e-185 7.60316e-185 2.50342e-185 8.82601e-185 3.05731e-185 1.08696e-184 3.96522e-185 1.33064e-184 5.11799e-185 2.10617e-184 8.55278e-185 2.31267e-184 9.93055e-185 2.47008e-184 1.12353e-184 2.26035e-184 1.09131e-184 2.51553e-184 1.29212e-184 2.09361e-184 1.14715e-184 2.30458e-184 1.35111e-184 2.6666e-184 1.67863e-184 7.80217e-184 5.29516e-184 1.08872e-183 8.00406e-184 1.10586e-183 8.85625e-184 9.79861e-184 8.60526e-184 6.32577e-184 6.14095e-184 3.34066e-184 3.62003e-184 5.5651e-185 6.81328e-185 8.39261e-185 1.17872e-184 8.43501e-186 1.38609e-185 5.07033e-185 1.00078e-184 1.00299e-185 2.46583e-185 1.90788e-184 6.15923e-184 3.84219e-181 1.76994e-180 8.36997e-179 6.38944e-178 2.37542e-179 4.30697e-178 9.15823e-183 3.61192e-138 -4.02638e-135 2.69994e-139 -2.92975e-136 1.69071e-140 -1.79022e-137 9.20744e-142 -9.52741e-139 4.48657e-143 -4.54287e-140 1.99305e-144 -1.97697e-141 8.14322e-146 -7.92001e-143 3.06315e-147 -2.92309e-144 1.0564e-148 -9.89646e-146 3.31849e-150 -3.05315e-147 9.42978e-152 -8.52332e-149 2.40912e-153 -2.1398e-150 5.50628e-155 -4.80678e-152 1.12151e-156 -9.62284e-154 2.02902e-158 -1.71101e-155 3.25109e-160 -2.69367e-157 4.59967e-162 -3.74261e-159 5.72717e-164 -4.57264e-161 6.25218e-166 -4.89227e-163 5.9579e-168 -4.56105e-165 4.93072e-170 -3.68385e-167 3.52318e-172 -2.56004e-169 2.15887e-174 -1.51827e-171 1.12575e-176 -7.60983e-174 4.95215e-179 -3.18561e-176 1.81985e-181 -1.09752e-178 5.5266e-184 -3.05274e-181 1.37094e-186 -6.67334e-184 2.7449e-189 -1.09737e-186 4.38624e-192 -1.23651e-189 5.54397e-195 -6.62625e-193 6.21116e-198 1.40549e-200 7.26378e-201 5.46923e-203 1.52008e-202 1.94865e-204 1.51546e-202 2.74894e-204 2.04149e-202 4.79645e-204 3.61775e-202 1.04522e-203 7.72845e-202 2.65356e-203 2.04571e-201 8.14826e-203 6.30213e-201 2.86026e-202 2.17715e-200 1.11045e-201 7.73804e-200 4.38713e-201 2.98431e-199 1.86414e-200 1.18881e-198 8.12185e-200 4.80594e-198 3.56921e-199 1.92227e-197 1.54389e-198 7.47113e-197 6.4607e-198 2.99371e-196 2.77679e-197 1.07604e-195 1.06702e-196 3.63332e-195 3.84066e-196 1.23802e-194 1.39156e-195 3.68297e-194 4.39222e-195 1.09936e-193 1.38834e-194 3.08291e-193 4.11582e-194 8.61004e-193 1.21336e-193 2.23829e-192 3.32524e-193 5.40394e-192 8.45375e-193 1.21255e-191 1.99547e-192 2.66659e-191 4.61257e-192 5.502e-191 9.99634e-192 1.07681e-190 2.05371e-191 2.08233e-190 4.16697e-191 3.73663e-190 7.84269e-191 6.62843e-190 1.45881e-190 1.10366e-189 2.54659e-190 1.87052e-189 4.52485e-190 3.00883e-189 7.63097e-190 4.70672e-189 1.25173e-189 7.2657e-189 2.02672e-189 1.10882e-188 3.24538e-189 1.75684e-188 5.39799e-189 2.29633e-188 7.41127e-189 2.81005e-188 9.53341e-189 3.29854e-188 1.17736e-188 4.10676e-188 1.54376e-188 5.07712e-188 2.01233e-188 8.10795e-188 3.39299e-188 8.98974e-188 3.97812e-188 9.69943e-188 4.54674e-188 8.9534e-188 4.45491e-188 1.00535e-187 5.32189e-188 8.43386e-188 4.7623e-188 9.3635e-188 5.65705e-188 1.08907e-187 7.06466e-188 3.1748e-187 2.22025e-187 4.45511e-187 3.37483e-187 4.54486e-187 3.75012e-187 4.04051e-187 3.65568e-187 2.609e-187 2.609e-187 1.36972e-187 1.5287e-187 2.25874e-188 2.84758e-188 3.37976e-188 4.88686e-188 3.37627e-189 5.71049e-189 2.03532e-188 4.13391e-188 4.03249e-189 1.0199e-188 8.20629e-188 2.72478e-187 1.93817e-184 9.18054e-184 3.93737e-182 3.08967e-181 9.28487e-183 1.73048e-181 3.88673e-186 1.60739e-134 -1.67763e-131 1.29671e-135 -1.31648e-132 8.78967e-137 -8.70028e-134 5.17591e-138 -5.00226e-135 2.71644e-139 -2.56663e-136 1.29204e-140 -1.19485e-137 5.61466e-142 -5.08659e-139 2.23209e-143 -1.98243e-140 8.09369e-145 -7.05134e-142 2.66359e-146 -2.27738e-143 7.91358e-148 -6.64273e-145 2.11261e-149 -1.7415e-146 5.04833e-151 -4.0876e-148 1.07653e-152 -8.56249e-150 2.0433e-154 -1.59636e-151 3.44346e-156 -2.64188e-153 5.13914e-158 -3.87012e-155 6.77247e-160 -5.00224e-157 7.85392e-162 -5.68312e-159 7.98327e-164 -5.64997e-161 7.07969e-166 -4.88918e-163 5.44833e-168 -3.65962e-165 3.61622e-170 -2.35189e-167 2.05562e-172 -1.28628e-169 9.92869e-175 -5.92333e-172 4.03869e-177 -2.26666e-174 1.37001e-179 -7.08707e-177 3.8346e-182 -1.76909e-179 8.7577e-185 -3.40136e-182 1.6142e-187 -4.69875e-185 2.37772e-190 -3.77774e-188 2.86982e-193 1.74042e-196 3.55469e-196 2.17591e-198 4.38222e-199 5.10699e-201 5.37387e-202 9.24841e-204 6.94983e-205 1.58424e-206 7.28321e-206 2.06963e-207 1.55991e-205 5.31608e-207 4.19398e-205 1.66882e-206 1.31655e-204 5.99778e-206 4.64815e-204 2.38845e-205 1.69057e-203 9.68389e-205 6.68602e-203 4.22923e-204 2.73362e-202 1.89472e-203 1.13495e-201 8.56436e-203 4.66198e-201 3.80926e-202 1.86076e-200 1.63871e-201 7.65955e-200 7.24158e-201 2.82567e-199 2.85811e-200 9.78741e-199 1.05599e-199 3.42171e-198 3.9277e-199 1.04328e-197 1.27119e-198 3.19101e-197 4.11898e-198 9.16233e-197 1.25071e-197 2.61831e-196 3.77396e-197 6.95821e-196 1.05759e-196 1.71603e-195 2.74715e-196 3.92999e-195 6.61983e-196 8.81259e-195 1.56057e-195 1.8527e-194 3.4466e-195 3.69214e-194 7.2112e-195 7.2633e-194 1.48866e-194 1.3254e-193 2.84956e-194 2.38858e-193 5.38547e-194 4.03852e-193 9.54751e-194 6.94212e-193 1.72075e-193 1.13215e-192 2.94244e-193 1.79439e-192 4.89059e-193 2.80527e-192 8.02002e-193 4.33226e-192 1.29966e-192 6.94033e-192 2.18583e-192 9.18124e-192 3.03754e-192 1.1374e-191 3.95578e-192 1.35026e-191 4.9409e-192 1.69967e-191 6.55031e-192 2.12228e-191 8.62416e-192 3.41966e-191 1.46722e-191 3.82894e-191 1.73726e-191 4.17352e-191 2.00598e-191 3.88643e-191 1.98286e-191 4.40308e-191 2.39011e-191 3.72333e-191 2.15605e-191 4.16915e-191 2.5832e-191 4.87445e-191 3.24293e-191 1.41598e-190 1.01562e-190 1.99817e-190 1.55248e-190 2.04738e-190 1.73273e-190 1.82621e-190 1.69472e-190 1.17945e-190 1.20979e-190 6.15532e-191 7.04677e-191 1.00482e-191 1.29952e-191 1.49105e-191 2.21194e-191 1.48042e-192 2.56941e-192 8.94393e-192 1.86449e-191 1.77412e-192 4.60661e-192 3.89633e-191 1.32858e-190 1.06287e-187 5.17206e-187 2.01263e-185 1.62332e-184 3.9426e-186 7.5577e-185 1.79384e-189 6.44147e-131 -6.25323e-128 5.57292e-132 -5.25957e-129 4.06152e-133 -3.73454e-130 2.56872e-134 -2.30444e-131 1.44286e-135 -1.26454e-132 7.30765e-137 -6.26372e-134 3.36223e-138 -2.8212e-135 1.40771e-139 -1.15719e-136 5.35314e-141 -4.31373e-138 1.84224e-142 -1.45601e-139 5.71518e-144 -4.43202e-141 1.59274e-145 -1.21229e-142 3.97604e-147 -2.97098e-144 8.87042e-149 -6.50765e-146 1.76498e-150 -1.27125e-147 3.12577e-152 -2.20987e-149 4.91625e-154 -3.4101e-151 6.84927e-156 -4.65782e-153 8.42674e-158 -5.61209e-155 9.12246e-160 -5.94043e-157 8.65302e-162 -5.49735e-159 7.15661e-164 -4.42224e-161 5.13207e-166 -3.07139e-163 3.17072e-168 -1.827e-165 1.67563e-170 -9.21847e-168 7.5136e-173 -3.89903e-170 2.83336e-175 -1.36184e-172 8.8989e-178 -3.84972e-175 2.30415e-180 -8.54707e-178 4.86796e-183 -1.41206e-180 8.31031e-186 -1.51186e-183 1.13695e-188 -3.99238e-187 1.5202e-191 6.9922e-194 2.0367e-194 2.10788e-196 2.71437e-197 4.37488e-199 3.5964e-200 7.87971e-202 4.73443e-203 1.31303e-204 6.19225e-206 2.0803e-207 1.70685e-208 6.74228e-210 2.91006e-208 1.32289e-209 1.05446e-207 5.42792e-209 3.93902e-207 2.26724e-208 1.60231e-206 1.02092e-207 6.74102e-206 4.71562e-207 2.88057e-205 2.19738e-206 1.21744e-204 1.00695e-205 4.99825e-204 4.4608e-205 2.11654e-203 2.02979e-204 8.0239e-203 8.2393e-204 2.8542e-202 3.12841e-203 1.02473e-201 1.19567e-202 3.205e-201 3.97166e-202 1.00523e-200 1.32025e-201 2.95725e-200 4.10906e-201 8.65223e-200 1.26987e-200 2.35183e-199 3.64095e-200 5.9276e-199 9.66819e-200 1.38616e-198 2.37949e-199 3.17065e-198 5.72315e-199 6.79424e-198 1.28859e-198 1.37914e-197 2.74662e-198 2.7608e-197 5.77062e-198 5.12445e-197 1.12373e-197 9.38448e-197 2.15839e-197 1.6116e-196 3.88695e-197 2.81036e-196 7.10751e-197 4.64777e-196 1.23259e-196 7.46507e-196 2.0763e-196 1.18216e-195 3.44924e-196 1.84778e-195 5.65774e-196 2.99354e-195 9.62337e-196 4.00863e-195 1.35378e-195 5.02806e-195 1.78514e-195 6.03747e-195 2.25538e-195 7.68444e-195 3.02348e-195 9.69203e-195 4.02108e-195 1.5758e-194 6.9031e-195 1.78199e-194 8.25525e-195 1.96244e-194 9.63086e-195 1.8438e-194 9.60509e-195 2.10785e-194 1.16828e-194 1.79704e-194 1.0625e-194 2.02962e-194 1.28401e-194 2.38564e-194 1.62054e-194 6.9073e-194 5.0585e-194 9.80288e-194 7.77641e-194 1.00901e-193 8.71861e-194 9.03104e-194 8.55649e-194 5.83517e-194 6.11052e-194 3.02789e-194 3.53883e-194 4.89517e-195 6.46287e-195 7.20375e-195 1.0909e-194 7.11304e-196 1.26017e-195 4.30684e-195 9.16417e-195 8.55712e-196 2.26779e-195 2.04866e-194 7.12936e-194 6.36225e-191 3.15935e-190 1.12425e-188 9.25136e-188 1.83252e-189 3.58211e-188 9.02258e-193 2.32497e-127 -2.08995e-124 2.14547e-128 -1.87379e-125 1.67129e-129 -1.42106e-126 1.12869e-130 -9.35632e-128 6.74888e-132 -5.46134e-129 3.62257e-133 -2.86492e-130 1.7579e-134 -1.36e-131 7.72816e-136 -5.85351e-133 3.07506e-137 -2.2818e-134 1.10482e-138 -8.03593e-136 3.5745e-140 -2.54962e-137 1.03889e-141 -7.26937e-139 2.70699e-143 -1.85859e-140 6.31305e-145 -4.25363e-142 1.3157e-146 -8.69935e-144 2.4464e-148 -1.58701e-145 4.0507e-150 -2.57703e-147 5.95902e-152 -3.71528e-149 7.76724e-154 -4.74078e-151 8.94097e-156 -5.33423e-153 9.05438e-158 -5.26899e-155 8.03069e-160 -4.54498e-157 6.20651e-162 -3.40243e-159 4.15546e-164 -2.19436e-161 2.39454e-166 -1.20857e-163 1.17891e-168 -5.62394e-166 4.91902e-171 -2.18169e-168 1.72425e-173 -6.93166e-171 5.03027e-176 -1.75804e-173 1.20973e-178 -3.40738e-176 2.37607e-181 -4.57131e-179 3.77954e-184 -2.75835e-182 5.4786e-187 1.65967e-189 8.01933e-190 7.19599e-192 1.16753e-192 1.7432e-194 1.68967e-195 3.53281e-197 2.4293e-198 6.538e-200 3.46783e-201 1.14272e-202 4.91235e-204 1.9174e-205 6.90148e-207 3.11675e-208 9.86414e-210 5.06471e-211 9.88503e-211 5.69302e-212 4.09384e-210 2.61644e-211 1.77711e-209 1.2495e-210 7.83423e-209 6.01662e-210 3.41362e-208 2.84646e-209 1.4441e-207 1.30084e-208 6.30014e-207 6.10437e-208 2.45771e-206 2.55195e-207 8.98867e-206 9.96988e-207 3.31739e-205 3.9195e-206 1.06531e-204 1.3375e-205 3.42895e-204 4.56491e-205 1.03428e-203 1.45732e-204 3.10007e-203 4.61555e-204 8.62378e-203 1.35477e-203 2.22249e-202 3.67949e-203 5.30937e-202 9.25348e-203 1.23929e-201 2.27171e-202 2.7078e-201 5.21643e-202 5.60037e-201 1.13311e-201 1.14116e-200 2.42366e-201 2.15515e-200 4.80283e-201 4.01165e-200 9.37795e-201 6.99903e-200 1.71596e-200 1.23845e-199 3.18419e-200 2.07743e-199 5.60155e-200 3.38208e-199 9.56503e-200 5.42612e-199 1.60997e-199 8.58571e-199 2.67352e-199 1.40683e-198 4.59974e-199 1.90726e-198 6.55145e-199 2.42247e-198 8.74852e-199 2.94253e-198 1.11819e-198 3.7873e-198 1.51592e-198 4.82543e-198 2.03677e-198 7.91676e-198 3.52849e-198 9.04269e-198 4.26228e-198 1.00617e-197 5.02437e-198 9.53882e-198 5.05635e-198 1.10041e-197 6.20621e-198 9.45923e-198 5.69115e-198 1.07761e-197 6.93734e-198 1.27349e-197 8.80297e-198 3.67576e-197 2.73933e-197 5.24644e-197 4.23528e-197 5.42509e-197 4.77049e-197 4.87248e-197 4.6981e-197 3.14987e-197 3.35693e-197 1.62531e-197 1.93325e-197 2.60296e-198 3.49755e-198 3.79793e-198 5.85351e-198 3.7306e-199 6.72673e-199 2.26293e-198 4.90106e-198 4.50309e-199 1.21491e-198 1.18636e-197 4.20436e-197 4.12934e-194 2.08944e-193 6.80311e-192 5.71029e-191 9.20646e-193 1.83961e-191 4.9213e-196 7.57029e-124 -6.27269e-121 7.4136e-125 -5.96504e-122 6.13981e-126 -4.80633e-123 4.40442e-127 -3.35907e-124 2.78995e-128 -2.07571e-125 1.58047e-129 -1.14841e-126 8.06105e-131 -5.72626e-128 3.71103e-132 -2.57932e-129 1.54191e-133 -1.04932e-130 5.77457e-135 -3.84996e-132 1.94608e-136 -1.27172e-133 5.89287e-138 -3.77585e-135 1.60129e-139 -1.00629e-136 3.90039e-141 -2.40431e-138 8.50667e-143 -5.14353e-140 1.65907e-144 -9.83785e-142 2.88887e-146 -1.67925e-143 4.48209e-148 -2.55224e-145 6.18091e-150 -3.44424e-147 7.5536e-152 -4.11293e-149 8.15198e-154 -4.32837e-151 7.73772e-156 -3.99497e-153 6.42948e-158 -3.21546e-155 4.65209e-160 -2.24176e-157 2.91366e-162 -1.34296e-159 1.56911e-164 -6.84621e-162 7.21272e-167 -2.93426e-164 2.80741e-169 -1.04079e-166 9.17423e-172 -2.98773e-169 2.49497e-174 -6.69363e-172 5.5976e-177 -1.08524e-174 1.02757e-179 -9.84698e-178 1.62188e-182 2.38298e-185 2.599e-185 1.9714e-187 4.14178e-188 5.67833e-190 6.55999e-191 1.30219e-192 1.03205e-193 2.68483e-195 1.61189e-196 5.19178e-198 2.49785e-199 9.60232e-201 3.83848e-202 1.71662e-203 5.84633e-205 2.9848e-206 8.82079e-208 5.06745e-209 1.31877e-210 8.42874e-212 6.9444e-213 4.89283e-214 2.2783e-212 1.7563e-213 1.02552e-211 8.59554e-213 4.47844e-211 4.05976e-212 2.01604e-210 1.96773e-211 8.10412e-210 8.48373e-211 3.05115e-209 3.41439e-210 1.15873e-208 1.38212e-209 3.82414e-208 4.84972e-209 1.26418e-207 1.70081e-208 3.91249e-207 5.57354e-208 1.20212e-206 1.81019e-207 3.42426e-206 5.44264e-207 9.0282e-206 1.5127e-206 2.20434e-205 3.88919e-206 5.25274e-205 9.74956e-206 1.1707e-204 2.28409e-205 2.46792e-204 5.05802e-205 5.12035e-204 1.10177e-204 9.84187e-204 2.22245e-204 1.86259e-203 4.41266e-204 3.30224e-203 8.20599e-204 5.93036e-203 1.54563e-203 1.00922e-202 2.75879e-203 1.66571e-202 4.77634e-203 2.708e-202 8.14719e-203 4.33836e-202 1.36993e-202 7.19108e-202 2.38439e-202 9.87148e-202 3.43899e-202 1.26979e-201 4.65107e-202 1.56048e-201 6.01479e-202 2.03124e-201 8.24699e-202 2.61468e-201 1.11951e-201 4.32892e-201 1.95723e-201 4.99485e-201 2.38837e-201 5.61583e-201 2.84493e-201 5.37254e-201 2.88925e-201 6.25442e-201 3.57881e-201 5.42143e-201 3.30942e-201 6.22983e-201 4.06922e-201 7.40252e-201 5.19191e-201 2.13043e-200 1.61096e-200 3.05831e-200 2.50507e-200 3.17749e-200 2.83507e-200 2.86397e-200 2.80199e-200 1.85272e-200 2.00352e-200 9.50777e-201 1.14754e-200 1.50889e-201 2.0573e-201 2.18246e-201 3.41318e-201 2.13353e-202 3.9036e-202 1.29627e-201 2.84871e-201 2.58424e-202 7.07453e-202 7.56758e-201 2.72132e-200 2.91076e-197 1.49458e-196 4.4767e-195 3.81335e-194 5.04218e-196 1.02257e-194 2.91295e-199 2.2239e-120 -1.69255e-117 2.30082e-121 -1.69943e-118 2.01619e-122 -1.4479e-119 1.52914e-123 -1.06915e-120 1.02177e-124 -6.96455e-122 6.08617e-126 -4.04899e-123 3.25279e-127 -2.11427e-124 1.56437e-128 -9.94311e-126 6.7748e-130 -4.21381e-127 2.64098e-131 -1.60845e-128 9.26055e-133 -5.52536e-130 2.9188e-134 -1.70679e-131 8.26419e-136 -4.73744e-133 2.10068e-137 -1.18069e-134 4.79033e-139 -2.63979e-136 9.79018e-141 -5.2886e-138 1.79084e-142 -9.47927e-140 2.92689e-144 -1.51703e-141 4.2646e-146 -2.16218e-143 5.52466e-148 -2.73597e-145 6.34309e-150 -3.06216e-147 6.43058e-152 -3.01792e-149 5.73189e-154 -2.60539e-151 4.47034e-156 -1.95808e-153 3.03396e-158 -1.2717e-155 1.78102e-160 -7.07417e-158 8.98274e-163 -3.33378e-160 3.86427e-165 -1.31222e-162 1.40691e-167 -4.22973e-165 4.30019e-170 -1.08234e-167 1.09446e-172 -2.06952e-170 2.30142e-175 -2.47985e-173 3.97325e-178 -2.5566e-178 6.98045e-181 4.35079e-183 1.21959e-183 1.52511e-185 2.11746e-186 3.97873e-188 3.65122e-189 9.16279e-191 6.24935e-192 1.96405e-193 1.06113e-194 4.01069e-196 1.78651e-197 7.89787e-199 2.9807e-200 1.51037e-201 4.9258e-203 2.81731e-204 8.05849e-206 5.14025e-207 1.30443e-208 9.19049e-210 2.08816e-211 1.6123e-212 3.63337e-214 3.05434e-215 1.49404e-214 1.35991e-215 6.92684e-214 6.79505e-215 2.87322e-213 3.02553e-214 1.11493e-212 1.25591e-213 4.36143e-212 5.23985e-213 1.48068e-211 1.89236e-212 5.03125e-211 6.82476e-212 1.59882e-210 2.29732e-211 5.0388e-210 7.6561e-211 1.4706e-209 2.35929e-210 3.96867e-209 6.71379e-210 9.90826e-209 1.76549e-209 2.41135e-208 4.52115e-209 5.484e-208 1.08106e-208 1.17874e-207 2.44136e-208 2.49091e-207 5.41739e-208 4.87426e-207 1.11267e-207 9.38122e-207 2.24701e-207 1.69056e-206 4.24786e-207 3.082e-206 8.12313e-207 5.32211e-206 1.47139e-206 8.90715e-206 2.58337e-206 1.4676e-205 4.4664e-206 2.38093e-205 7.60579e-206 3.99281e-205 1.33943e-205 5.55071e-205 1.95653e-205 7.23176e-205 2.6803e-205 8.99258e-205 3.50743e-205 1.1839e-204 4.86422e-205 1.53978e-204 6.67193e-205 2.57268e-204 1.1772e-204 2.99889e-204 1.45129e-204 3.40717e-204 1.74693e-204 3.28961e-204 1.79054e-204 3.86471e-204 2.23826e-204 3.37843e-204 2.08739e-204 3.91594e-204 2.58901e-204 4.67878e-204 3.32167e-204 1.34285e-203 1.02786e-203 1.93886e-203 1.60764e-203 2.02419e-203 1.82828e-203 1.83107e-203 1.81351e-203 1.18553e-203 1.29783e-203 6.05166e-204 7.39422e-204 9.52016e-205 1.31408e-204 1.36467e-204 2.16075e-204 1.32812e-205 2.46041e-205 8.07862e-205 1.79786e-204 1.6134e-205 4.47361e-205 5.29955e-204 1.9307e-203 2.22053e-200 1.15538e-199 3.18885e-198 2.753e-197 2.99192e-199 6.14728e-198 1.86741e-202 5.89762e-117 -4.10864e-114 6.41895e-118 -4.33763e-115 5.92561e-119 -3.89077e-116 4.73147e-120 -3.02281e-117 3.32214e-121 -2.06783e-118 2.0738e-122 -1.25911e-119 1.15825e-123 -6.86674e-121 5.80667e-125 -3.36446e-122 2.61665e-126 -1.48287e-123 1.06037e-127 -5.88115e-125 3.86461e-129 -2.09886e-126 1.26674e-130 -6.73929e-128 3.734e-132 -1.9466e-129 9.89687e-134 -5.0564e-131 2.35769e-135 -1.1805e-132 5.04467e-137 -2.47497e-134 9.68417e-139 -4.65348e-136 1.66539e-140 -7.83274e-138 2.56057e-142 -1.17754e-139 3.51131e-144 -1.5766e-141 4.28201e-146 -1.87351e-143 4.62803e-148 -1.96786e-145 4.41589e-150 -1.81816e-147 3.70329e-152 -1.46923e-149 2.71606e-154 -1.03138e-151 1.73246e-156 -6.23844e-154 9.55226e-159 -3.21882e-156 4.52248e-161 -1.39856e-158 1.82552e-163 -5.02747e-161 6.23598e-166 -1.45513e-163 1.78916e-168 -3.22448e-166 4.27956e-171 -4.79736e-169 8.47228e-174 -1.99688e-172 1.62614e-176 8.04876e-179 3.119e-179 3.54041e-181 5.94421e-182 1.05584e-183 1.12496e-184 2.72144e-186 2.11299e-187 6.47544e-189 3.93668e-190 1.46184e-191 7.27111e-193 3.17482e-194 1.33069e-195 6.68573e-197 2.41172e-198 1.37179e-199 4.32636e-201 2.75088e-202 7.67776e-204 5.40239e-205 1.3472e-206 1.04043e-207 2.33604e-209 1.96671e-210 4.00076e-212 3.65094e-213 6.7891e-215 6.6831e-216 1.2072e-216 1.2766e-217 4.38247e-216 4.96095e-217 1.76759e-215 2.13531e-216 6.1787e-215 7.94421e-216 2.1597e-214 2.94857e-215 7.05192e-214 1.02025e-214 2.28105e-213 3.49097e-214 6.82489e-213 1.10318e-213 1.88619e-212 3.21583e-213 4.81742e-212 8.65313e-213 1.19787e-211 2.26457e-212 2.78089e-211 5.52855e-212 6.09652e-211 1.27365e-211 1.31257e-210 2.87992e-211 2.61554e-210 6.02435e-211 5.12068e-210 1.23772e-210 9.38161e-210 2.37913e-210 1.7366e-209 4.61995e-210 3.04356e-209 8.49408e-210 5.16605e-209 1.51264e-209 8.62817e-209 2.65114e-209 1.41772e-208 4.57283e-209 2.40573e-208 8.14924e-209 3.38733e-208 1.20573e-208 4.47042e-208 1.67326e-208 5.62538e-208 2.21592e-208 7.49103e-208 3.10855e-208 9.84481e-208 4.3086e-208 1.66002e-207 7.67237e-208 1.95501e-207 9.55682e-208 2.24456e-207 1.16253e-207 2.18722e-207 1.20266e-207 2.59319e-207 1.51723e-207 2.28633e-207 1.42714e-207 2.67318e-207 1.78555e-207 3.21185e-207 2.30372e-207 9.19484e-207 7.11056e-207 1.33535e-206 1.11864e-206 1.40104e-206 1.2785e-206 1.27205e-206 1.27286e-206 8.24404e-207 9.11821e-207 4.18659e-207 5.16829e-207 6.53099e-208 9.10812e-208 9.27635e-208 1.48399e-207 8.99191e-209 1.68311e-208 5.47448e-208 1.23108e-207 1.09544e-208 3.06966e-208 4.07115e-207 1.49927e-206 1.83335e-203 9.64608e-203 2.45824e-201 2.14708e-200 1.91965e-202 3.99384e-201 1.29528e-205 1.41164e-113 -8.97634e-111 1.61015e-114 -9.92628e-112 1.55963e-115 -9.33667e-113 1.3061e-116 -7.60301e-114 9.60311e-118 -5.44305e-115 6.26364e-119 -3.46099e-116 3.64691e-120 -1.96655e-117 1.90219e-121 -1.00193e-118 8.90595e-123 -4.58574e-120 3.74732e-124 -1.88748e-121 1.41815e-125 -6.99121e-123 4.83002e-127 -2.33147e-124 1.48112e-128 -7.00244e-126 4.09013e-130 -1.89428e-127 1.01708e-131 -4.61428e-129 2.27635e-133 -1.01146e-130 4.58154e-135 -1.99298e-132 8.28143e-137 -3.52433e-134 1.34201e-138 -5.58169e-136 1.9454e-140 -7.89649e-138 2.51602e-142 -9.94719e-140 2.89413e-144 -1.11152e-141 2.95033e-146 -1.09683e-143 2.65465e-148 -9.50758e-146 2.09867e-150 -7.19418e-148 1.45036e-152 -4.7163e-150 8.71309e-155 -2.65406e-152 4.52264e-157 -1.267e-154 2.01512e-159 -5.0492e-157 7.65472e-162 -1.6396e-159 2.46167e-164 -4.15453e-162 6.65535e-167 -7.40116e-165 1.50228e-169 -5.60818e-168 3.16228e-172 1.1917e-174 6.67335e-175 6.8625e-177 1.39896e-177 2.35102e-179 2.91162e-180 6.79645e-182 6.0129e-183 1.79802e-184 1.23145e-185 4.49409e-187 2.49975e-188 1.07804e-189 5.02689e-191 2.50368e-192 1.00091e-193 5.65941e-195 1.97225e-196 1.24932e-197 3.84387e-199 2.69926e-200 7.40607e-202 5.71633e-203 1.4099e-204 1.18771e-205 2.65051e-207 2.42262e-208 4.91786e-210 4.85289e-211 9.00075e-213 9.54829e-214 1.62418e-215 1.84552e-216 3.65794e-218 4.43799e-219 2.78257e-218 3.59478e-219 9.99468e-218 1.37163e-218 3.3556e-217 4.88176e-218 1.1147e-216 1.71599e-217 3.42092e-216 5.56374e-217 9.68685e-216 1.66216e-216 2.53209e-215 4.57847e-216 6.43534e-215 1.22495e-215 1.52559e-214 3.05433e-215 3.41232e-214 7.18027e-215 7.48709e-214 1.65485e-214 1.51968e-213 3.52655e-214 3.02716e-213 7.37281e-214 5.6397e-213 1.44129e-213 1.06019e-212 2.84264e-213 1.88614e-212 5.30581e-213 3.24748e-212 9.58527e-213 5.49876e-212 1.70331e-212 9.15235e-212 2.97627e-212 1.5717e-211 5.36798e-212 2.24167e-211 8.04565e-212 2.99706e-211 1.13118e-211 3.81682e-211 1.51616e-211 5.14133e-211 2.15156e-211 6.82797e-211 3.0137e-211 1.16194e-210 5.41622e-211 1.38265e-210 6.81693e-211 1.60422e-210 8.38036e-211 1.57786e-210 8.75096e-211 1.88792e-210 1.11418e-210 1.67892e-210 1.05712e-210 1.98008e-210 1.33416e-210 2.39254e-210 1.73112e-210 6.83305e-210 5.33057e-210 9.98178e-210 8.43546e-210 1.05258e-209 9.68979e-210 9.59248e-210 9.68331e-210 6.22371e-210 6.94452e-210 3.14473e-210 3.91658e-210 4.86627e-211 6.84698e-211 6.8468e-211 1.10512e-210 6.61326e-212 1.249e-211 4.02866e-211 9.14119e-211 8.07858e-212 2.28432e-211 3.42405e-210 1.27252e-209 1.63703e-206 8.69366e-206 2.05023e-204 1.80809e-203 1.33312e-205 2.80276e-204 9.71402e-209 3.0498e-110 -1.76532e-107 3.63268e-111 -2.03754e-108 3.67852e-112 -2.00239e-109 3.21951e-113 -1.70313e-110 2.47098e-114 -1.27202e-111 1.67947e-115 -8.42357e-113 1.01712e-116 -4.97578e-114 5.50982e-118 -2.63149e-115 2.67653e-119 -1.249e-116 1.16806e-120 -5.32937e-118 4.58595e-122 -2.04693e-119 1.62166e-123 -7.08404e-121 5.16929e-125 -2.21071e-122 1.48622e-126 -6.22347e-124 3.85473e-128 -1.58047e-125 9.01692e-130 -3.61916e-127 1.901e-131 -7.46629e-129 3.60812e-133 -1.38571e-130 6.1557e-135 -2.30936e-132 9.42125e-137 -3.44763e-134 1.29041e-138 -4.59712e-136 1.57724e-140 -5.45583e-138 1.71474e-142 -5.73904e-140 1.65201e-144 -5.32461e-142 1.4045e-146 -4.33188e-144 1.04883e-148 -3.06879e-146 6.84441e-151 -1.87687e-148 3.88142e-153 -9.80249e-151 1.90138e-155 -4.30792e-153 7.9952e-158 -1.55847e-155 2.86713e-160 -4.46726e-158 8.71105e-163 -9.30182e-161 2.22761e-165 -9.92846e-164 5.15506e-168 1.4e-170 1.19831e-170 1.11801e-172 2.76636e-173 4.41216e-175 6.33879e-176 1.43142e-177 1.44086e-178 4.21245e-180 3.24728e-181 1.16639e-182 7.25226e-184 3.0924e-185 1.6042e-186 7.92606e-188 3.51276e-189 1.97527e-190 7.61067e-192 4.80376e-193 1.63063e-194 1.14274e-195 3.45315e-197 2.66324e-198 7.22398e-200 6.08718e-201 1.49211e-202 1.36538e-203 3.04122e-205 3.00674e-206 6.11328e-208 6.50165e-209 1.21123e-210 1.38055e-211 2.364e-213 2.87839e-214 4.54227e-216 5.89162e-217 8.63656e-219 1.19043e-219 1.88187e-220 2.75062e-221 5.87913e-220 9.09555e-221 1.85152e-219 3.02704e-220 5.37422e-219 9.27193e-220 1.43832e-218 2.61546e-219 3.73768e-218 7.15618e-219 9.05107e-218 1.82297e-218 2.06609e-217 4.37428e-218 4.62115e-217 1.02783e-217 9.55638e-217 2.23186e-217 1.93726e-216 4.74905e-217 3.67086e-216 9.44337e-217 7.00932e-216 1.89199e-216 1.26605e-215 3.58563e-216 2.21149e-215 6.57225e-216 3.79681e-215 1.18427e-215 6.40235e-215 2.09658e-215 1.11276e-214 3.82739e-215 1.60784e-214 5.81187e-215 2.17788e-214 8.27894e-215 2.80723e-214 1.12317e-214 3.82522e-214 1.61241e-214 5.1339e-214 2.28251e-214 8.81717e-214 4.14012e-214 1.06017e-213 5.2655e-214 1.2431e-213 6.5419e-214 1.23417e-213 6.89568e-214 1.49029e-213 8.86065e-214 1.33689e-213 8.48055e-214 1.5904e-213 1.07963e-213 1.93266e-213 1.40888e-213 5.50733e-213 4.32874e-213 8.09251e-213 6.89057e-213 8.57738e-213 7.95599e-213 7.84642e-213 7.98096e-213 5.09716e-213 5.73089e-213 2.56297e-213 3.21646e-213 3.93563e-214 5.58012e-214 5.48369e-214 8.91959e-214 5.27995e-215 1.00499e-214 3.21681e-214 7.35708e-214 6.46433e-215 1.84272e-214 3.14562e-213 1.1788e-212 1.57853e-209 8.45532e-209 1.84705e-207 1.64347e-206 1.00094e-208 2.12381e-207 7.87257e-212 5.94628e-107 -3.12488e-104 7.37183e-108 -3.75215e-105 7.77744e-109 -3.83967e-106 7.09106e-110 -3.40024e-107 5.66469e-111 -2.6418e-108 4.00219e-112 -1.81754e-109 2.51604e-113 -1.11389e-110 1.41327e-114 -6.10526e-112 7.11414e-116 -3.00132e-113 3.21686e-117 -1.32628e-114 1.30918e-118 -5.2779e-116 4.803e-120 -1.8942e-117 1.59043e-121 -6.13774e-119 4.75742e-123 -1.79685e-120 1.28606e-124 -4.75382e-122 3.14172e-126 -1.13631e-123 6.9322e-128 -2.45221e-125 1.38027e-129 -4.77196e-127 2.47656e-131 -8.35937e-129 3.99714e-133 -1.31532e-130 5.79045e-135 -1.85395e-132 7.50949e-137 -2.33321e-134 8.69239e-139 -2.61169e-136 8.94988e-141 -2.58829e-138 8.16536e-143 -2.25877e-140 6.57293e-145 -1.72451e-142 4.64649e-147 -1.14267e-144 2.86977e-149 -6.5045e-147 1.54004e-151 -3.13766e-149 7.13916e-154 -1.25698e-151 2.84164e-156 -4.04015e-154 9.65198e-159 -9.66344e-157 2.78015e-161 -1.31508e-159 7.08724e-164 1.28261e-166 1.81657e-166 1.5459e-168 4.62286e-169 7.03335e-171 1.16737e-171 2.56001e-173 2.92356e-174 8.38029e-176 7.25756e-177 2.57119e-178 1.78493e-179 7.5373e-181 4.34692e-182 2.13314e-183 1.04774e-184 5.86438e-186 2.4981e-187 1.57218e-188 5.88891e-190 4.12052e-191 1.37182e-192 1.05753e-193 3.15626e-195 2.66076e-196 7.16842e-198 6.56747e-199 1.60624e-200 1.59094e-201 3.54888e-203 3.78329e-204 7.72702e-206 8.83224e-207 1.65698e-208 2.02408e-209 3.49736e-211 4.55265e-212 7.26126e-214 1.00479e-214 1.48201e-216 2.17526e-217 2.97178e-219 4.61806e-220 6.93082e-222 1.1384e-222 3.23207e-222 5.60326e-223 8.82897e-222 1.61355e-222 2.34667e-221 4.51624e-222 5.80643e-221 1.17569e-221 1.35304e-220 2.88023e-221 3.08566e-220 6.90122e-221 6.5026e-220 1.52726e-220 1.34176e-219 3.30817e-220 2.58635e-219 6.69232e-220 5.017e-219 1.36223e-219 9.2016e-219 2.62164e-219 1.63087e-218 4.87607e-219 2.83939e-218 8.91046e-219 4.85118e-218 1.5984e-218 8.53449e-218 2.95368e-218 1.24939e-217 4.54434e-218 1.71466e-217 6.55901e-218 2.2371e-217 9.00719e-218 3.08377e-217 1.30813e-217 4.18277e-217 1.87152e-217 7.24992e-217 3.42606e-217 8.80886e-217 4.40326e-217 1.04383e-216 5.5288e-217 1.04613e-216 5.88306e-217 1.27483e-216 7.62916e-217 1.15368e-216 7.36631e-217 1.38436e-216 9.45933e-217 1.69194e-216 1.24152e-216 4.81133e-216 3.80667e-216 7.11155e-216 6.09544e-216 7.57687e-216 7.07472e-216 6.9577e-216 7.12429e-216 4.52596e-216 5.12281e-216 2.265e-216 2.86166e-216 3.45278e-217 4.92861e-217 4.76289e-217 7.79979e-217 4.57368e-218 8.76523e-218 2.78569e-217 6.4155e-217 5.61035e-218 1.61074e-217 3.15217e-216 1.19007e-215 1.6433e-212 8.8716e-212 1.79643e-210 1.61188e-209 8.11264e-212 1.73713e-210 6.88968e-215 1.04609e-103 -4.97783e-101 1.34562e-104 -6.19903e-102 1.47444e-105 -6.58496e-103 1.39625e-106 -6.05353e-104 1.15786e-107 -4.87984e-105 8.48414e-109 -3.48021e-106 5.52643e-110 -2.20887e-107 3.21404e-111 -1.25292e-108 1.67457e-112 -6.37211e-110 7.83834e-114 -2.91352e-111 3.3041e-115 -1.20035e-112 1.25676e-116 -4.46439e-114 4.32019e-118 -1.50104e-115 1.34363e-119 -4.56681e-117 3.78313e-121 -1.25781e-118 9.64447e-123 -3.13599e-120 2.22543e-124 -7.0736e-122 4.64426e-126 -1.44196e-123 8.75515e-128 -2.65242e-125 1.48853e-129 -4.39373e-127 2.27789e-131 -6.53789e-129 3.1301e-133 -8.71244e-131 3.85163e-135 -1.03604e-132 4.23086e-137 -1.09469e-134 4.1341e-139 -1.02254e-136 3.5793e-141 -8.3925e-139 2.73402e-143 -6.00709e-141 1.83377e-145 -3.71411e-143 1.07454e-147 -1.95835e-145 5.47131e-150 -8.64153e-148 2.40718e-152 -3.09139e-150 9.09822e-155 -8.38159e-153 2.93658e-157 -1.37935e-155 8.26043e-160 8.80414e-163 2.3368e-162 1.83137e-164 6.5613e-165 9.58998e-167 1.82756e-167 3.91184e-169 5.04706e-170 1.42385e-171 1.38122e-172 4.84049e-174 3.74394e-175 1.56923e-176 1.00465e-177 4.90539e-179 2.66751e-180 1.48828e-181 7.00456e-183 4.4004e-184 1.81811e-185 1.27128e-186 4.66229e-188 3.59491e-189 1.18057e-190 9.96186e-192 2.95026e-193 2.7072e-194 7.27229e-196 7.21818e-197 1.76718e-198 1.88871e-199 4.23093e-201 4.85029e-202 9.97433e-204 1.22239e-204 2.31398e-206 3.02288e-207 5.27948e-209 7.33328e-210 1.18386e-211 1.74462e-212 2.60734e-214 4.06877e-215 5.6362e-217 9.29811e-218 1.19498e-219 2.08105e-220 2.48896e-222 4.56997e-223 2.09808e-224 4.05717e-225 4.02893e-224 8.19781e-225 9.58375e-224 2.05031e-224 2.22893e-223 5.01052e-224 4.78755e-223 1.13027e-223 1.00569e-222 2.4926e-223 1.97231e-222 5.13061e-223 3.88724e-222 1.06115e-222 7.2403e-222 2.07405e-222 1.30221e-221 3.91476e-222 2.29929e-221 7.25541e-222 3.98067e-221 1.31888e-221 7.08898e-221 2.46715e-221 1.0515e-220 3.84613e-221 1.46216e-220 5.62489e-221 1.93102e-220 7.81919e-221 2.69281e-220 1.14884e-220 3.6914e-220 1.66118e-220 6.45714e-220 3.06908e-220 7.92837e-220 3.98613e-220 9.49449e-220 5.05819e-220 9.60581e-220 5.43348e-220 1.18131e-219 7.11084e-220 1.07851e-219 6.92673e-220 1.30532e-219 8.97178e-220 1.60454e-219 1.18435e-219 4.55381e-219 3.62435e-219 6.77067e-219 5.83796e-219 7.2517e-219 6.81179e-219 6.68486e-219 6.88626e-219 4.35489e-219 4.95909e-219 2.16939e-219 2.75757e-219 3.28427e-220 4.71681e-220 4.48365e-220 7.38785e-220 4.29605e-221 8.28458e-221 2.61467e-220 6.05987e-220 5.2782e-221 1.52525e-220 3.44029e-219 1.30761e-218 1.84669e-215 1.004e-214 1.88655e-213 1.70542e-212 7.10336e-215 1.53336e-213 6.50908e-218 1.65981e-100 -7.13337e-98 2.20898e-101 -9.18723e-99 2.5065e-102 -1.01015e-99 2.45856e-103 -9.61419e-101 2.11124e-104 -8.02196e-102 1.60111e-105 -5.91859e-103 1.07879e-106 -3.88392e-104 6.48715e-108 -2.2769e-105 3.49456e-109 -1.19674e-106 1.6918e-110 -5.65691e-108 7.38115e-112 -2.41115e-109 2.90888e-113 -9.28716e-111 1.03741e-114 -3.2381e-112 3.35256e-116 -1.02318e-113 9.82532e-118 -2.93182e-115 2.6121e-119 -7.61877e-117 6.29832e-121 -1.79477e-118 1.37649e-122 -3.82924e-120 2.72383e-124 -7.38908e-122 4.87325e-126 -1.28718e-123 7.86877e-128 -2.01954e-125 1.14421e-129 -2.8458e-127 1.49459e-131 -3.58952e-129 1.74869e-133 -4.03656e-131 1.82671e-135 -4.02772e-133 1.69758e-137 -3.54555e-135 1.39786e-139 -2.73408e-137 1.01553e-141 -1.83031e-139 6.47848e-144 -1.05087e-141 3.61111e-146 -5.08337e-144 1.7495e-148 -2.01083e-146 7.327e-151 -6.11326e-149 2.6376e-153 -1.17621e-151 8.19857e-156 4.0961e-159 2.56199e-158 1.87704e-160 7.94433e-161 1.12582e-162 2.44316e-163 5.13668e-165 7.44799e-166 2.07761e-167 2.24955e-168 7.82629e-170 6.72824e-171 2.80704e-172 1.99176e-173 9.69855e-175 5.83286e-176 3.25e-177 1.68894e-178 1.06076e-179 4.83294e-181 3.38136e-182 1.36598e-183 1.05461e-184 3.81141e-186 3.2221e-187 1.0493e-188 9.65086e-190 2.84871e-191 2.83518e-192 7.62229e-194 8.1713e-195 2.00892e-196 2.31067e-197 5.21221e-199 6.41058e-200 1.33046e-201 1.74465e-202 3.33912e-204 4.65653e-205 8.23441e-207 1.2185e-207 1.99396e-209 3.12491e-210 4.73794e-212 7.85064e-213 1.10393e-214 1.93117e-215 2.52034e-217 4.6489e-218 5.6339e-220 1.09457e-220 1.23215e-222 2.51907e-223 2.70756e-225 5.82047e-226 1.79698e-226 4.05929e-227 3.81429e-226 9.04955e-227 8.15781e-226 2.03202e-226 1.62792e-225 4.2561e-226 3.26024e-225 8.94515e-226 6.16739e-225 1.77575e-225 1.12572e-224 3.40165e-225 2.01595e-224 6.39436e-225 3.53681e-224 1.17793e-224 6.37614e-224 2.23071e-224 9.58314e-224 3.52377e-224 1.35025e-223 5.22181e-224 1.8051e-223 7.34806e-224 2.54649e-223 1.0922e-223 3.52805e-223 1.59614e-223 6.22796e-223 2.976e-223 7.72774e-223 3.90613e-223 9.35204e-223 5.00915e-223 9.55163e-223 5.43205e-223 1.18537e-222 7.17394e-223 1.09182e-222 7.05039e-223 1.33277e-222 9.21042e-223 1.64777e-222 1.22291e-222 4.66791e-222 3.7355e-222 6.98142e-222 6.05273e-222 7.51733e-222 7.10018e-222 6.95676e-222 7.20595e-222 4.53917e-222 5.19764e-222 2.25109e-222 2.87744e-222 3.38579e-223 4.89013e-223 4.57265e-223 7.57781e-223 4.37362e-224 8.48364e-224 2.65853e-223 6.19859e-223 5.3797e-224 1.5642e-223 4.08264e-222 1.56167e-221 2.239e-218 1.22533e-217 2.13814e-216 1.94613e-215 6.71677e-218 1.46039e-216 6.63656e-221 2.37355e-97 -9.19167e-95 3.2597e-98 -1.22115e-95 3.82016e-99 -1.38615e-96 3.87163e-100 -1.36255e-97 3.43528e-101 -1.17423e-98 2.69131e-102 -8.94611e-100 1.8728e-103 -6.06065e-101 1.16301e-104 -3.66764e-102 6.47113e-106 -1.9903e-103 3.23757e-107 -9.71832e-105 1.46097e-108 -4.28242e-106 5.96177e-110 -1.70719e-107 2.20455e-111 -6.1688e-109 7.3983e-113 -2.02318e-110 2.25543e-114 -6.02724e-112 6.2488e-116 -1.63136e-113 1.5733e-117 -4.01051e-115 3.59797e-119 -8.94795e-117 7.46686e-121 -1.80959e-118 1.40442e-122 -3.31153e-120 2.39016e-124 -5.47192e-122 3.67343e-126 -8.14276e-124 5.0867e-128 -1.08782e-125 6.32959e-130 -1.29977e-127 7.05672e-132 -1.38276e-129 7.02553e-134 -1.30269e-131 6.22325e-136 -1.07952e-133 4.88517e-138 -7.80169e-136 3.38365e-140 -4.86038e-138 2.05836e-142 -2.56608e-140 1.09436e-144 -1.11584e-142 5.05903e-147 -3.76841e-145 2.02252e-149 -8.27012e-148 6.96002e-152 7.98569e-156 2.40645e-154 1.68301e-156 8.25466e-157 1.14712e-158 2.80745e-159 5.84144e-161 9.46172e-162 2.624e-163 3.15819e-164 1.09536e-165 1.0435e-166 4.34795e-168 3.41121e-169 1.66104e-170 1.10274e-171 6.1502e-173 3.52342e-174 2.21665e-175 1.11216e-176 7.7988e-178 3.46624e-179 2.68341e-180 1.06614e-181 9.04084e-183 3.23449e-184 2.985e-185 9.67378e-187 9.66297e-188 2.85066e-189 3.06779e-190 8.27197e-192 9.55287e-193 2.36228e-194 2.91758e-195 6.63521e-197 8.73835e-198 1.83193e-199 2.566e-200 4.96843e-202 7.38536e-203 1.32282e-204 2.08264e-205 3.45508e-207 5.75174e-208 8.84684e-210 1.55496e-210 2.21909e-212 4.11285e-213 5.44871e-215 1.06371e-215 1.30859e-217 2.6884e-218 3.07152e-220 6.63533e-221 7.04003e-223 1.59818e-223 1.57462e-225 3.75444e-226 4.14775e-228 1.03832e-228 1.46175e-228 3.84083e-229 2.96009e-228 8.16249e-229 5.68745e-228 1.64582e-228 1.0536e-227 3.1998e-228 1.91373e-227 6.10084e-228 3.4025e-227 1.13894e-227 6.20973e-227 2.18352e-227 9.45712e-227 3.49512e-227 1.35013e-226 5.24801e-227 1.82709e-226 7.47562e-227 2.60743e-226 1.12406e-226 3.65097e-226 1.66022e-226 6.50368e-226 3.12369e-226 8.15514e-226 4.14332e-226 9.97326e-226 5.36931e-226 1.0283e-225 5.878e-226 1.28769e-225 7.83333e-226 1.19663e-225 7.76708e-226 1.47312e-225 1.02331e-225 1.83181e-225 1.36658e-225 5.18022e-225 4.16719e-225 7.79343e-225 6.79227e-225 8.43684e-225 8.01075e-225 7.83838e-225 8.16215e-225 5.12306e-225 5.89737e-225 2.5297e-225 3.25078e-225 3.7818e-226 5.49133e-226 5.05079e-226 8.41548e-226 4.82499e-227 9.41072e-227 2.92767e-226 6.86472e-226 5.93891e-227 1.73693e-226 5.26107e-225 2.02481e-224 2.92737e-221 1.61249e-220 2.61292e-219 2.39483e-218 6.84977e-221 1.50054e-219 7.29906e-224 3.05596e-94 -1.06438e-91 4.32074e-95 -1.45525e-92 5.21764e-96 -1.70138e-93 5.45177e-97 -1.72352e-94 4.98857e-98 -1.53112e-95 4.03067e-99 -1.20258e-96 2.89281e-100 -8.39915e-98 1.85311e-101 -5.24093e-99 1.06405e-102 -2.93368e-100 5.49738e-104 -1.47858e-101 2.56412e-105 -6.73133e-103 1.08279e-106 -2.77557e-104 4.14909e-108 -1.03876e-105 1.4451e-109 -3.53386e-107 4.57989e-111 -1.09382e-108 1.3215e-112 -3.08146e-110 3.47182e-114 -7.89948e-112 8.30164e-116 -1.84154e-113 1.8053e-117 -3.89955e-115 3.56634e-119 -7.48897e-117 6.39064e-121 -1.30178e-118 1.0369e-122 -2.04314e-120 1.52018e-124 -2.88682e-122 2.00895e-126 -3.65903e-124 2.38659e-128 -4.14281e-126 2.541e-130 -4.16834e-128 2.41649e-132 -3.7033e-130 2.04512e-134 -2.88131e-132 1.53415e-136 -1.94132e-134 1.01568e-138 -1.1141e-136 5.90749e-141 -5.29686e-139 3.00395e-143 -1.97055e-141 1.32854e-145 -4.83422e-144 5.08041e-148 -2.852e-148 1.94427e-150 1.3324e-152 7.37898e-153 1.01878e-154 2.77534e-155 5.76376e-157 1.03394e-157 2.86857e-159 3.8134e-160 1.32493e-161 1.39173e-162 5.81423e-164 5.02355e-165 2.45409e-166 1.79254e-167 1.00342e-168 6.31998e-170 3.99197e-171 2.20057e-172 1.54968e-173 7.5633e-175 5.88125e-176 2.5646e-177 2.1848e-178 8.57496e-180 7.95104e-181 2.82564e-182 2.83614e-183 9.17139e-185 9.91852e-186 2.9305e-187 3.40116e-188 9.21267e-190 1.14356e-190 2.84779e-192 3.76949e-193 8.65051e-195 1.21788e-195 2.58056e-197 3.85558e-198 7.55507e-200 1.1956e-200 2.16933e-202 3.62999e-203 6.10481e-205 1.07856e-205 1.68254e-207 3.13457e-208 4.53814e-210 8.90546e-211 1.19695e-212 2.4718e-213 3.08465e-215 6.69827e-216 7.76079e-218 1.77093e-218 1.90455e-220 4.56459e-221 4.55475e-223 1.1461e-223 1.06049e-225 2.80089e-226 2.4044e-228 6.66435e-229 1.09622e-230 3.18859e-231 1.06882e-230 3.26275e-231 1.96702e-230 6.30301e-231 3.54419e-230 1.19247e-230 6.54818e-230 2.31434e-230 1.01052e-229 3.75374e-230 1.46172e-229 5.71076e-230 2.00234e-229 8.2344e-230 2.89054e-229 1.25245e-229 4.09034e-229 1.86948e-229 7.35213e-229 3.54916e-229 9.31623e-229 4.75733e-229 1.15124e-228 6.22955e-229 1.19826e-228 6.88448e-229 1.51402e-228 9.2571e-229 1.41951e-228 9.26069e-229 1.76224e-228 1.23038e-228 2.20401e-228 1.65263e-228 6.22246e-228 5.03113e-228 9.41667e-228 8.24894e-228 1.02492e-227 9.7816e-228 9.55947e-228 1.00059e-227 6.25882e-228 7.24249e-228 3.07747e-228 3.97562e-228 4.57471e-229 6.67823e-229 6.03933e-229 1.01171e-228 5.76541e-230 1.13066e-229 3.49035e-229 8.22962e-229 7.09896e-230 2.08801e-229 7.35447e-228 2.84709e-227 4.12792e-224 2.28777e-223 3.44404e-222 3.17742e-221 7.53603e-224 1.66318e-222 8.6579e-227 3.53847e-91 -1.10693e-88 5.1398e-92 -1.5542e-89 6.3824e-93 -1.86761e-90 6.86238e-94 -1.94594e-91 6.46471e-95 -1.77896e-92 5.37921e-96 -1.43828e-93 3.97694e-97 -1.03433e-94 2.62532e-98 -6.64784e-96 1.55433e-99 -3.83508e-97 8.28669e-101 -1.99358e-98 3.99256e-102 -9.37022e-100 1.7437e-103 -3.99375e-101 6.91994e-105 -1.5471e-102 2.49995e-106 -5.456e-104 8.23167e-108 -1.75346e-105 2.47209e-109 -5.13781e-107 6.77224e-111 -1.37241e-108 1.69191e-112 -3.34013e-110 3.85228e-114 -7.39916e-112 7.98578e-116 -1.48976e-113 1.50523e-117 -2.7212e-115 2.57558e-119 -4.49903e-117 3.99304e-121 -6.71408e-119 5.59671e-123 -9.01384e-121 7.07427e-125 -1.08427e-122 8.04153e-127 -1.16287e-124 8.19522e-129 -1.10514e-126 7.46228e-131 -9.23259e-129 6.0487e-133 -6.70665e-131 4.34704e-135 -4.16766e-133 2.75805e-137 -2.15546e-135 1.53779e-139 -8.76483e-138 7.49757e-142 -2.36137e-140 3.17829e-144 -1.41504e-144 1.34665e-146 9.30517e-149 5.65596e-149 7.86754e-151 2.35326e-151 4.92254e-153 9.69451e-154 2.70865e-155 3.95239e-156 1.38276e-157 1.5939e-158 6.70438e-160 6.35508e-161 3.12553e-162 2.50399e-163 1.41103e-164 9.74509e-166 6.19604e-167 3.74427e-168 2.654e-169 1.41958e-170 1.111e-171 5.30816e-173 4.55097e-174 1.95656e-175 1.82568e-176 7.10519e-178 7.17628e-179 2.54071e-180 2.76473e-181 8.94102e-183 1.04408e-183 3.09473e-185 3.86487e-186 1.05294e-187 1.40216e-188 3.5194e-190 4.98454e-191 1.15489e-192 1.73577e-193 3.71829e-195 5.91893e-196 1.17377e-197 1.97558e-198 3.63042e-200 6.45124e-201 1.0994e-202 2.05998e-203 3.2573e-205 6.42853e-206 9.43467e-208 1.9594e-208 2.6694e-210 5.82924e-211 7.37152e-213 1.69152e-213 1.98507e-215 4.78408e-216 5.20804e-218 1.31774e-218 1.32995e-220 3.53189e-221 3.30238e-223 9.20338e-224 7.96499e-226 2.32937e-226 1.86393e-228 5.72072e-229 4.24901e-231 1.36885e-231 4.92556e-233 1.66612e-233 7.47894e-233 2.65739e-233 1.16915e-232 4.36605e-233 1.71342e-232 6.72954e-233 2.37577e-232 9.82162e-233 3.46898e-232 1.51098e-232 4.96073e-232 2.27916e-232 8.99626e-232 4.36553e-232 1.15194e-231 5.91304e-232 1.4383e-231 7.82327e-232 1.51119e-231 8.72746e-232 1.9264e-231 1.18395e-231 1.82223e-231 1.19496e-231 2.28102e-231 1.60085e-231 2.86927e-231 2.16261e-231 8.08777e-231 6.57324e-231 1.23115e-230 1.08408e-230 1.34729e-230 1.29251e-230 1.26158e-230 1.32736e-230 8.27511e-231 9.62569e-231 4.05226e-231 5.26242e-231 5.99245e-232 8.79437e-232 7.81591e-232 1.31639e-231 7.46001e-233 1.47106e-232 4.50299e-232 1.06774e-231 9.18264e-233 2.71672e-232 1.11355e-230 4.33718e-230 6.27294e-227 3.49896e-226 4.89237e-225 4.5446e-224 8.94246e-227 1.98841e-225 1.10722e-229 3.68027e-88 -1.03308e-85 5.48161e-89 -1.48669e-86 6.9869e-90 -1.83273e-87 7.71765e-91 -1.96072e-88 7.47402e-92 -1.84171e-89 6.39641e-93 -1.53067e-90 4.86614e-94 -1.13208e-91 3.3073e-95 -7.48715e-93 2.01742e-96 -4.44761e-94 1.10914e-97 -2.38277e-95 5.51672e-99 -1.15547e-96 2.49041e-100 -5.08728e-98 1.023e-101 -2.03852e-99 3.83127e-103 -7.44755e-101 1.30992e-104 -2.48352e-102 4.0918e-106 -7.56332e-104 1.16808e-107 -2.10353e-105 3.0468e-109 -5.34039e-107 7.25765e-111 -1.23648e-108 1.57743e-112 -2.6075e-110 3.12459e-114 -4.99952e-112 5.63237e-116 -8.69696e-114 9.22343e-118 -1.36899e-115 1.36939e-119 -1.94381e-117 1.83909e-121 -2.48e-119 2.22849e-123 -2.8297e-121 2.42952e-125 -2.87031e-123 2.37557e-127 -2.56822e-125 2.07618e-129 -2.00522e-127 1.61584e-131 -1.34422e-129 1.11538e-133 -7.52465e-132 6.79902e-136 -3.31834e-134 3.64259e-138 -9.6398e-137 1.70857e-140 2.42696e-144 8.01535e-143 5.75433e-145 3.72607e-145 5.29953e-147 1.71539e-147 3.6493e-149 7.81669e-150 2.21515e-151 3.52379e-152 1.24833e-153 1.57076e-154 6.68274e-156 6.92008e-157 3.43958e-158 3.01167e-159 1.71407e-160 1.29416e-161 8.30645e-163 5.48834e-164 3.92549e-165 2.29589e-166 1.81249e-167 9.46888e-169 8.18653e-170 3.84822e-171 3.6201e-172 1.5403e-173 1.56805e-174 6.06873e-176 6.65487e-177 2.35233e-178 2.76764e-179 8.96514e-181 1.12787e-181 3.35753e-183 4.50336e-184 1.23487e-185 1.76135e-186 4.45755e-188 6.74616e-189 1.57819e-190 2.5294e-191 5.47679e-193 9.28004e-194 1.86164e-195 3.33004e-196 6.19382e-198 1.16814e-198 2.01556e-200 4.00349e-201 6.41024e-203 1.33975e-203 1.99089e-205 4.37487e-206 6.03332e-208 1.39304e-208 1.78247e-210 4.32214e-211 5.12922e-213 1.30566e-213 1.43625e-215 3.83707e-216 3.90955e-218 1.09602e-218 1.03343e-220 3.04008e-221 2.64982e-223 8.18017e-224 6.58296e-226 2.13301e-226 1.58255e-228 5.3838e-229 3.67673e-231 1.31383e-231 8.3896e-234 3.15069e-234 2.35273e-235 9.29222e-236 3.05223e-235 1.26884e-235 4.50684e-235 1.97391e-235 6.51241e-235 3.00855e-235 1.19142e-234 5.8132e-235 1.54153e-234 7.95601e-235 1.94454e-234 1.06343e-234 2.06231e-234 1.19748e-234 2.65202e-234 1.63871e-234 2.5309e-234 1.66862e-234 3.19411e-234 2.25372e-234 4.04077e-234 3.06197e-234 1.13722e-233 9.29244e-234 1.7412e-233 1.54149e-233 1.91583e-233 1.84789e-233 1.80096e-233 1.9052e-233 1.18357e-233 1.38428e-233 5.77288e-234 7.53818e-234 8.49666e-235 1.25386e-234 1.09438e-234 1.85351e-234 1.04497e-235 2.07229e-235 6.28523e-235 1.49899e-234 1.28518e-235 3.825e-235 1.82479e-233 7.15177e-233 1.02729e-229 5.76782e-229 7.4892e-228 7.00579e-227 1.14429e-229 2.564e-228 1.52616e-232 3.43446e-85 -8.64477e-83 5.23607e-86 -1.2727e-83 6.83933e-87 -1.60676e-84 7.74965e-88 -1.76222e-85 7.70506e-89 -1.6983e-86 6.77444e-90 -1.44915e-87 5.29798e-91 -1.10106e-88 3.70415e-92 -7.48598e-90 2.32625e-93 -4.57517e-91 1.31801e-94 -2.52424e-92 6.7636e-96 -1.26201e-93 3.15422e-97 -5.73583e-95 1.3404e-98 -2.37594e-96 5.20112e-100 -8.98641e-98 1.84541e-101 -3.10726e-99 5.99233e-103 -9.82821e-101 1.78139e-104 -2.84389e-102 4.84791e-106 -7.52533e-104 1.20723e-107 -1.81951e-105 2.74878e-109 -4.01487e-107 5.71673e-111 -8.07189e-109 1.08453e-112 -1.47565e-110 1.87388e-114 -2.44692e-112 2.94345e-116 -3.66915e-114 4.19451e-118 -4.95698e-116 5.41004e-120 -6.00599e-118 6.29917e-122 -6.48841e-120 6.60203e-124 -6.20207e-122 6.20879e-126 -5.18915e-124 5.22118e-128 -3.73819e-126 3.91136e-130 -2.2531e-128 2.59954e-132 -1.06847e-130 1.52579e-134 -3.27474e-133 7.93526e-137 4.80352e-140 4.12005e-139 3.16449e-141 2.11913e-141 3.12884e-143 1.07917e-143 2.35864e-145 5.43832e-146 1.57496e-147 2.7105e-148 9.78128e-150 1.33543e-150 5.77492e-152 6.50072e-153 3.27907e-154 3.12504e-155 1.80281e-156 1.48281e-157 9.63778e-159 6.94125e-160 5.02367e-161 3.204e-162 2.55782e-163 1.45757e-164 1.27364e-165 6.53162e-167 6.20725e-168 2.88164e-169 2.96235e-170 1.25098e-171 1.38478e-172 5.34086e-174 6.34124e-175 2.24118e-176 2.84452e-177 9.2383e-179 1.24977e-179 3.7385e-181 5.37696e-182 1.4843e-183 2.26469e-184 5.77818e-186 9.33452e-187 2.20402e-188 3.76362e-189 8.23194e-191 1.48371e-191 3.00844e-193 5.71616e-194 1.07502e-195 2.15093e-196 3.75317e-198 7.90052e-199 1.27921e-200 2.83083e-201 4.25293e-203 9.88784e-204 1.37805e-205 3.36435e-206 4.34791e-208 1.11424e-208 1.33452e-210 3.58896e-211 3.98075e-213 1.1233e-213 1.15279e-215 3.41314e-216 3.23743e-218 1.0058e-218 8.80661e-221 2.87155e-221 2.31761e-223 7.93377e-224 5.89285e-226 2.11877e-226 1.44562e-228 5.46227e-229 3.41649e-231 1.35756e-231 7.76654e-234 3.24807e-234 1.75841e-236 7.74755e-237 9.60826e-238 4.46508e-238 1.70766e-237 8.38113e-238 2.2323e-237 1.15886e-237 2.84453e-237 1.56468e-237 3.04496e-237 1.77828e-237 3.94949e-237 2.4545e-237 3.80243e-237 2.52133e-237 4.83751e-237 3.43283e-237 6.15441e-237 4.69028e-237 1.72944e-236 1.42122e-236 2.66326e-236 2.37126e-236 2.9463e-236 2.85809e-236 2.78044e-236 2.95827e-236 1.83086e-236 2.1537e-236 8.89554e-237 1.16833e-236 1.30369e-237 1.93517e-237 1.65726e-237 2.82353e-237 1.58393e-238 3.16013e-238 9.48667e-238 2.27652e-237 1.94516e-238 5.82624e-238 3.23287e-236 1.27546e-235 1.81218e-232 1.0246e-231 1.2348e-230 1.16379e-229 1.57821e-232 3.56582e-231 2.26683e-235 2.873e-82 -6.4796e-80 4.47518e-83 -9.7408e-81 5.98102e-84 -1.25735e-81 6.94247e-85 -1.41158e-82 7.0779e-86 -1.39388e-83 6.38637e-87 -1.21966e-84 5.12953e-88 -9.51e-86 3.68635e-89 -6.64059e-87 2.38181e-90 -4.17205e-88 1.38985e-91 -2.36871e-89 7.35436e-93 -1.2201e-90 3.54117e-94 -5.72065e-92 1.55594e-95 -2.44798e-93 6.25197e-97 -9.57918e-95 2.30074e-98 -3.43212e-96 7.76153e-100 -1.12669e-97 2.40131e-101 -3.3894e-99 6.8136e-103 -9.34059e-101 1.77249e-104 -2.35635e-102 4.22462e-106 -5.43535e-104 9.21692e-108 -1.14466e-105 1.83852e-109 -2.19663e-107 3.34823e-111 -3.83209e-109 5.55792e-113 -6.05969e-111 8.39336e-115 -8.65465e-113 1.15069e-116 -1.11145e-114 1.4287e-118 -1.27607e-116 1.60226e-120 -1.29977e-118 1.61832e-122 -1.16174e-120 1.46737e-124 -8.95787e-123 1.19021e-126 -5.78079e-125 8.60247e-129 -2.91939e-127 5.51617e-131 -9.17057e-130 3.18559e-133 4.22367e-136 1.83231e-135 1.54475e-137 1.04332e-137 1.6229e-139 5.87841e-140 1.33349e-141 3.27591e-142 9.77092e-144 1.80484e-144 6.67605e-146 9.82589e-147 4.34142e-148 5.28357e-149 2.71667e-150 2.80474e-151 1.6464e-152 1.46911e-153 9.70252e-155 7.58914e-156 5.57471e-157 3.86445e-158 3.12826e-159 1.93872e-160 1.71643e-161 9.57737e-163 9.21556e-164 4.65639e-165 4.84382e-166 2.22683e-167 2.49307e-168 1.04693e-169 1.25662e-170 4.83612e-172 6.2026e-173 2.19365e-174 2.99771e-175 9.76493e-177 1.41825e-177 4.26319e-179 6.56653e-180 1.82427e-181 2.97431e-182 7.64621e-184 1.31742e-184 3.13699e-186 5.70361e-187 1.25888e-188 2.41237e-189 4.93795e-191 9.96246e-192 1.89178e-193 4.01476e-194 7.07316e-196 1.57778e-196 2.57883e-198 6.04266e-199 9.16067e-201 2.25368e-201 3.16765e-203 8.17906e-204 1.06523e-205 2.88605e-206 3.48035e-208 9.89273e-209 1.10362e-210 3.29108e-211 3.39281e-213 1.06155e-213 1.01004e-215 3.31647e-216 2.90822e-218 1.00243e-218 8.08824e-221 2.92794e-221 2.16978e-223 8.25375e-224 5.60619e-226 2.24249e-226 1.39288e-228 5.86365e-229 3.3221e-231 1.47327e-231 7.59198e-234 3.55093e-234 1.65935e-236 8.19632e-237 3.80922e-239 1.99009e-239 4.57023e-240 2.52983e-240 4.86336e-240 2.85812e-240 6.36138e-240 3.97817e-240 6.17823e-240 4.12221e-240 7.92213e-240 5.65667e-240 1.0135e-239 7.77173e-240 2.84369e-239 2.35134e-239 4.40424e-239 3.94554e-239 4.89877e-239 4.78141e-239 4.64087e-239 4.96817e-239 3.06208e-239 3.62434e-239 1.48216e-239 1.95878e-239 2.16399e-240 3.23238e-240 2.71335e-240 4.65232e-240 2.59727e-241 5.21549e-241 1.54789e-240 3.73912e-240 3.18283e-241 9.59832e-241 6.18743e-239 2.45833e-238 3.44299e-235 1.961e-234 2.19261e-233 2.08271e-232 2.34652e-235 5.34821e-234 3.62728e-238 2.1524e-79 -4.34575e-77 3.4189e-80 -6.65779e-78 4.6679e-81 -8.7719e-79 5.54296e-82 -1.00657e-79 5.78775e-83 -1.01706e-80 5.35376e-84 -9.11495e-82 4.41243e-85 -7.28583e-83 3.25686e-86 -5.2202e-84 2.16348e-87 -3.36861e-85 1.29942e-88 -1.96663e-86 7.08604e-90 -1.04293e-87 3.52099e-91 -5.04117e-89 1.59881e-92 -2.22709e-90 6.64902e-94 -9.01046e-92 2.53648e-95 -3.34302e-93 8.88487e-97 -1.13823e-94 2.85913e-98 -3.55722e-96 8.45323e-100 -1.02015e-97 2.29564e-101 -2.68288e-99 5.72321e-103 -6.46335e-101 1.30881e-104 -1.42434e-102 2.74255e-106 -2.86595e-104 5.25923e-108 -5.25338e-106 9.2157e-110 -8.74783e-108 1.47308e-111 -1.31867e-109 2.14374e-113 -1.79156e-111 2.83409e-115 -2.18118e-113 3.39544e-117 -2.36118e-115 3.67658e-119 -2.24716e-117 3.58724e-121 -1.84665e-119 3.14345e-123 -1.26776e-121 2.46476e-125 -6.73522e-124 1.72199e-127 -2.07101e-126 1.10507e-129 2.54589e-132 7.04761e-132 6.66544e-134 4.44643e-134 7.38941e-136 2.77403e-136 6.59785e-138 1.71063e-138 5.29644e-140 1.04224e-140 3.9772e-142 6.27137e-143 2.84646e-144 3.7252e-145 1.96154e-146 2.18342e-147 1.30947e-148 1.26219e-149 8.50083e-151 7.19291e-152 5.38006e-153 4.03893e-154 3.32501e-155 2.23353e-156 2.0089e-157 1.21578e-158 1.1874e-159 6.51075e-161 6.86905e-162 3.42832e-163 3.89009e-164 1.77404e-165 2.15684e-166 9.01643e-168 1.17071e-168 4.4982e-170 6.22001e-171 2.20149e-172 3.23402e-173 1.05633e-174 1.64504e-175 4.9661e-177 8.18339e-178 2.28602e-179 3.97958e-180 1.02967e-181 1.89098e-182 4.53496e-184 8.77536e-185 1.95158e-186 3.97493e-187 8.19997e-189 1.7564e-189 3.36134e-191 7.56611e-192 1.34318e-193 3.17527e-194 5.2277e-196 1.29728e-196 1.97994e-198 5.15587e-199 7.29046e-201 1.99171e-201 2.60732e-203 7.47197e-204 9.04737e-206 2.71974e-206 3.04275e-208 9.59572e-209 9.90661e-211 3.27821e-211 3.11867e-213 1.08323e-213 9.48056e-216 3.45798e-216 2.77919e-218 1.0651e-218 7.84477e-221 3.16111e-221 2.12876e-223 9.02692e-224 5.54395e-226 2.47636e-226 1.3831e-228 6.51526e-229 3.29884e-231 1.64097e-231 7.50575e-234 3.94878e-234 1.62524e-236 9.05898e-237 3.34121e-239 1.97712e-239 7.60572e-242 4.78893e-242 1.09732e-242 7.37138e-243 1.40252e-242 1.00824e-242 1.8041e-242 1.39278e-242 5.05413e-242 4.20729e-242 7.8719e-242 7.09961e-242 8.803e-242 8.65006e-242 8.3714e-242 9.02231e-242 5.53483e-242 6.59549e-242 2.66924e-242 3.55158e-242 3.88442e-243 5.84199e-243 4.80114e-243 8.28913e-243 4.6055e-244 9.31333e-244 2.72905e-243 6.63985e-243 5.62767e-244 1.7097e-243 1.2781e-241 5.11707e-241 7.04116e-238 4.04268e-237 4.19032e-236 4.01428e-235 3.76087e-238 8.65107e-237 6.25181e-241 1.44285e-76 -2.6051e-74 2.33223e-77 -4.05853e-75 3.24745e-78 -5.44807e-76 3.93937e-79 -6.37975e-77 4.20763e-80 -6.58691e-78 3.98589e-81 -6.03874e-79 3.36777e-82 -4.94285e-80 2.5511e-83 -3.63038e-81 1.74115e-84 -2.4042e-82 1.07576e-85 -1.4422e-83 6.04246e-87 -7.86878e-85 3.09687e-88 -3.91865e-86 1.45255e-89 -1.78616e-87 6.24926e-91 -7.46715e-89 2.47012e-92 -2.86705e-90 8.97957e-94 -1.0118e-91 3.00392e-95 -3.28278e-93 9.24876e-97 -9.78986e-95 2.62038e-98 -2.68182e-96 6.82859e-100 -6.74166e-98 1.63558e-101 -1.55308e-99 3.59737e-103 -3.27298e-101 7.2572e-105 -6.29588e-103 1.34103e-106 -1.1024e-104 2.2663e-108 -1.75104e-106 3.49651e-110 -2.51193e-108 4.91503e-112 -3.23554e-110 6.28088e-114 -3.71206e-112 7.27839e-116 -3.74823e-114 7.6272e-118 -3.26652e-116 7.20544e-120 -2.36701e-118 6.11501e-122 -1.30077e-120 4.64302e-124 -3.58632e-123 3.31246e-126 1.19318e-128 2.34353e-128 2.52777e-130 1.63923e-130 2.94784e-132 1.13309e-132 2.85349e-134 7.73689e-135 2.50632e-136 5.21627e-137 2.06699e-138 3.47108e-139 1.62748e-140 2.27874e-141 1.23478e-142 1.47524e-143 9.07814e-145 9.41398e-146 6.49057e-147 5.91878e-148 4.52344e-149 3.66468e-150 3.07779e-151 2.23345e-152 2.04667e-153 1.33918e-154 1.33105e-155 7.8959e-157 8.46954e-158 4.57551e-159 5.27402e-160 2.60447e-161 3.21417e-162 1.45546e-163 1.917e-164 7.98057e-166 1.11875e-166 4.29109e-168 6.38717e-169 2.26119e-170 3.56628e-171 1.16701e-172 1.94671e-173 5.89517e-175 1.03846e-175 2.91283e-177 5.41099e-178 1.40679e-179 2.75264e-180 6.6364e-182 1.36637e-182 3.0556e-184 6.61417e-185 1.37211e-186 3.12031e-187 6.00419e-189 1.43365e-189 2.55817e-191 6.4106e-192 1.0603e-193 2.78761e-194 4.27123e-196 1.17785e-196 1.67062e-198 4.83173e-199 6.33804e-201 1.92251e-201 2.3298e-203 7.41258e-204 8.28839e-206 2.76666e-206 2.85025e-208 9.985e-209 9.46225e-211 3.48048e-211 3.02836e-213 1.17026e-213 9.33e-216 3.79049e-216 2.76268e-218 1.181e-218 7.84896e-221 3.53405e-221 2.13565e-223 1.01399e-223 5.55412e-226 2.7845e-226 1.37761e-228 7.3039e-229 3.25109e-231 1.82608e-231 7.28096e-234 4.34131e-234 1.54295e-236 9.78881e-237 3.08407e-239 2.08737e-239 5.79623e-242 4.19798e-242 1.36574e-244 1.06221e-244 9.7231e-245 8.15396e-245 1.52018e-244 1.38119e-244 1.70906e-244 1.69179e-244 1.63136e-244 1.77123e-244 1.08081e-244 1.29751e-244 5.19363e-245 6.96211e-245 7.5372e-246 1.1421e-245 9.17719e-246 1.59648e-245 8.82748e-247 1.79885e-246 5.19695e-246 1.27433e-245 1.07484e-246 3.29155e-246 2.84751e-244 1.1495e-243 1.54956e-240 8.97416e-240 8.61524e-239 8.33015e-238 6.49284e-241 1.50918e-239 1.16018e-243 8.64706e-74 -1.39405e-71 1.41902e-74 -2.20303e-72 2.01127e-75 -3.00678e-73 2.4885e-76 -3.58683e-74 2.71528e-77 -3.77832e-75 2.63117e-78 -3.53868e-76 2.27695e-79 -2.96267e-77 1.76873e-80 -2.22844e-78 1.23948e-81 -1.51326e-79 7.87327e-83 -9.3205e-81 4.55291e-84 -5.22871e-82 2.40577e-85 -2.68115e-83 1.16509e-86 -1.26021e-84 5.1834e-88 -5.44087e-86 2.12196e-89 -2.16072e-87 8.00211e-91 -7.89908e-89 2.78151e-92 -2.65899e-90 8.91374e-94 -8.24014e-92 2.63327e-95 -2.3495e-93 7.16836e-97 -6.15777e-95 1.79707e-98 -1.4815e-96 4.14547e-100 -3.26639e-98 8.79018e-102 -6.58535e-100 1.71124e-103 -1.21074e-101 3.05422e-105 -2.02295e-103 4.98965e-107 -3.05798e-105 7.4478e-109 -4.15706e-107 1.01365e-110 -5.03898e-109 1.25501e-112 -5.37625e-111 1.4099e-114 -4.93911e-113 1.433e-116 -3.73858e-115 1.3133e-118 -2.07009e-117 1.08098e-120 -4.04272e-120 8.57594e-123 4.48144e-125 6.73319e-125 8.38676e-127 5.22305e-127 1.0281e-128 4.00136e-129 1.07697e-130 3.02615e-131 1.03366e-132 2.25837e-133 9.35408e-135 1.66242e-135 8.09781e-137 1.20654e-137 6.76166e-139 8.63e-140 5.47332e-141 6.08078e-142 4.30895e-143 4.21881e-144 3.30637e-145 2.88074e-146 2.47638e-147 1.93506e-148 1.81214e-149 1.27807e-150 1.29643e-151 8.29604e-153 9.07102e-154 5.28956e-155 6.20873e-156 3.31112e-157 4.15732e-158 2.03378e-159 2.72312e-160 1.22509e-161 1.7446e-162 7.23301e-164 1.09297e-164 4.18313e-166 6.69384e-167 2.36838e-168 4.00632e-169 1.31189e-170 2.34232e-171 7.10486e-173 1.33716e-173 3.75952e-175 7.44971e-176 1.94233e-177 4.04839e-178 9.79054e-180 2.14467e-180 4.81121e-182 1.10688e-182 2.30313e-184 5.56179e-185 1.07309e-186 2.7189e-187 4.86215e-189 1.29214e-189 2.14041e-191 5.96502e-192 9.14587e-194 2.67259e-194 3.78939e-196 1.16112e-196 1.52077e-198 4.88679e-199 5.90494e-201 1.99036e-201 2.21564e-203 7.83654e-204 8.02344e-206 2.97917e-206 2.80028e-208 1.0922e-208 9.40555e-211 3.85624e-211 3.03548e-213 1.30936e-213 9.39706e-216 4.26887e-216 2.78538e-218 1.33414e-218 7.8893e-221 3.9897e-221 2.13067e-223 1.13939e-223 5.47375e-226 3.10078e-226 1.33418e-228 8.02249e-229 3.07646e-231 1.96818e-231 6.68969e-234 4.56552e-234 1.36684e-236 9.98167e-237 2.61358e-239 2.04951e-239 4.65546e-242 3.93626e-242 7.71599e-245 7.06795e-245 4.75139e-247 4.74186e-247 3.43451e-247 3.75948e-247 2.27909e-247 2.75845e-247 1.09133e-247 1.47498e-247 1.58023e-248 2.41434e-248 1.89405e-248 3.32249e-248 1.82799e-249 3.75664e-249 1.0683e-248 2.64217e-248 2.21603e-249 6.84629e-249 6.83619e-247 2.78486e-246 3.66766e-243 2.14432e-242 1.90474e-241 1.86033e-240 1.20811e-243 2.83947e-242 2.31783e-246 4.63103e-71 -6.6482e-69 7.69361e-72 -1.06254e-69 1.10752e-72 -1.47096e-70 1.39511e-73 -1.78403e-71 1.55271e-74 -1.91412e-72 1.53718e-75 -1.82883e-73 1.36105e-76 -1.56428e-74 1.0833e-77 -1.20381e-75 7.78954e-79 -8.37577e-77 5.08444e-80 -5.29347e-78 3.02571e-81 -3.05164e-79 1.64774e-82 -1.61047e-80 8.23662e-84 -7.80228e-82 3.78809e-85 -3.47733e-83 1.60559e-86 -1.42768e-84 6.27881e-88 -5.40402e-86 2.26689e-89 -1.88633e-87 7.558e-91 -6.07096e-89 2.32694e-92 -1.80047e-90 6.61347e-94 -4.91583e-92 1.73424e-95 -1.23403e-93 4.1928e-97 -2.84339e-95 9.33732e-99 -6.00055e-97 1.91332e-100 -1.15664e-98 3.60286e-102 -2.02922e-100 6.22546e-104 -3.22524e-102 9.85462e-106 -4.6146e-104 1.42639e-107 -5.88885e-106 1.88387e-109 -6.60594e-108 2.26481e-111 -6.34812e-110 2.47169e-113 -4.94445e-112 2.44089e-115 -2.63165e-114 2.17265e-117 -1.85959e-118 1.91704e-119 1.38721e-121 1.67077e-121 2.4224e-123 1.43763e-123 3.12788e-125 1.22083e-125 3.54249e-127 1.02274e-127 3.71127e-129 8.449e-130 3.68187e-131 6.8802e-132 3.50181e-133 5.52043e-134 3.21597e-135 4.36252e-136 2.86462e-137 3.39396e-138 2.4821e-139 2.5983e-140 2.0961e-141 1.95652e-142 1.72749e-143 1.44842e-144 1.39061e-145 1.05369e-146 1.09404e-147 7.52878e-149 8.41475e-150 5.281e-151 6.32862e-152 3.63466e-153 4.65428e-154 2.45324e-155 3.34689e-156 1.62296e-157 2.35294e-158 1.05178e-159 1.61682e-160 6.67336e-162 1.08559e-162 4.1429e-164 7.11992e-165 2.51501e-166 4.55952e-167 1.49201e-168 2.84973e-169 8.64399e-171 1.73748e-171 4.88727e-173 1.03285e-173 2.69474e-175 5.98279e-176 1.4479e-177 3.37488e-178 7.57519e-180 1.85274e-180 3.85589e-182 9.89158e-183 1.90791e-184 5.13206e-185 9.16853e-187 2.58552e-187 4.27503e-189 1.26377e-189 1.93215e-191 5.98774e-192 8.45552e-194 2.74739e-194 3.57892e-196 1.21954e-196 1.46338e-198 5.23148e-199 5.77296e-201 2.16621e-201 2.19427e-203 8.64738e-204 8.0241e-206 3.32355e-206 2.81864e-208 1.2281e-208 9.49481e-211 4.35623e-211 3.06158e-213 1.48086e-213 9.43102e-216 4.81569e-216 2.76941e-218 1.49519e-218 7.73404e-221 4.42283e-221 2.04874e-223 1.24351e-223 5.13311e-226 3.31456e-226 1.21255e-228 8.35188e-229 2.69081e-231 1.98309e-231 5.58707e-234 4.42131e-234 1.08045e-236 9.21853e-237 1.93579e-239 1.78931e-239 3.19366e-242 3.21614e-242 4.81713e-245 5.32071e-245 6.6379e-248 8.10695e-248 3.28298e-250 4.47746e-250 3.58666e-251 5.52997e-251 4.21839e-251 7.46808e-251 4.08744e-252 8.47849e-252 2.36916e-251 5.9153e-251 4.92912e-252 1.53769e-251 1.76705e-249 7.27106e-249 9.33074e-246 5.51276e-245 4.52512e-244 4.46902e-243 2.42191e-246 5.76227e-245 4.98373e-249 2.21752e-68 -2.81938e-66 3.71551e-69 -4.54077e-67 5.41706e-70 -6.35904e-68 6.93178e-71 -7.82407e-69 7.85477e-72 -8.53471e-70 7.93278e-73 -8.30631e-71 7.17819e-74 -7.24999e-72 5.8489e-75 -5.70311e-73 4.31265e-76 -4.06289e-74 2.89123e-77 -2.63342e-75 1.76996e-78 -1.55949e-76 9.93128e-80 -8.46743e-78 5.12292e-81 -4.22711e-79 2.43508e-82 -1.94423e-80 1.06837e-83 -8.25e-82 4.33146e-85 -3.23215e-83 1.62383e-86 -1.16942e-84 5.63081e-88 -3.90667e-86 1.80602e-89 -1.20435e-87 5.35655e-91 -3.42295e-89 1.46846e-92 -8.95751e-91 3.71856e-94 -2.15462e-92 8.69102e-96 -4.75331e-94 1.87294e-97 -9.59055e-96 3.71742e-99 -1.76325e-97 6.78654e-101 -2.93941e-99 1.13787e-102 -4.41229e-101 1.74916e-104 -5.90213e-103 2.46044e-106 -6.91649e-105 3.15989e-108 -6.87648e-107 3.69562e-110 -5.37752e-109 3.92402e-112 -2.47355e-111 3.8714e-114 9.21571e-117 3.78047e-116 3.65972e-118 3.64465e-118 6.18271e-120 3.46781e-120 8.40832e-122 3.25527e-122 1.02641e-123 3.01359e-124 1.17002e-125 2.75023e-126 1.26893e-127 2.47317e-128 1.32272e-129 2.19051e-130 1.33329e-131 1.91004e-132 1.30458e-133 1.63888e-134 1.24221e-135 1.38309e-136 1.15299e-137 1.14749e-138 1.04437e-139 9.35478e-141 9.23861e-142 7.49015e-143 7.98523e-144 5.88716e-145 6.74555e-146 4.54004e-147 5.56993e-148 3.43344e-149 4.49559e-150 2.545e-151 3.54641e-152 1.84798e-153 2.73388e-154 1.31377e-155 2.059e-156 9.13923e-158 1.51457e-158 6.21739e-160 1.08775e-160 4.13384e-162 7.62429e-163 2.68455e-164 5.21328e-165 1.70168e-166 3.4758e-167 1.05216e-168 2.2584e-169 6.34115e-171 1.42924e-171 3.72238e-173 8.80447e-174 2.12669e-175 5.27612e-176 1.18158e-177 3.07354e-178 6.37877e-180 1.73923e-180 3.34297e-182 9.55274e-183 1.6992e-184 5.08854e-185 8.36843e-187 2.62643e-187 3.98909e-189 1.31232e-189 1.83845e-191 6.3413e-192 8.18203e-194 2.96015e-194 3.51202e-196 1.33337e-196 1.45195e-198 5.78837e-199 5.77326e-201 2.41856e-201 2.20438e-203 9.71267e-204 8.06907e-206 3.74316e-206 2.82647e-208 1.3821e-208 9.45574e-211 4.88054e-211 3.0147e-213 1.64503e-213 9.13842e-216 5.28124e-216 2.62694e-218 1.61116e-218 7.14063e-221 4.65874e-221 1.82956e-223 1.27316e-223 4.40279e-226 3.27798e-226 9.91129e-229 7.92303e-229 2.0776e-231 1.79057e-231 4.03399e-234 3.76633e-234 7.21105e-237 7.33487e-237 1.17825e-239 1.31451e-239 1.74477e-242 2.15235e-242 2.3174e-245 3.19244e-245 2.72559e-248 4.24494e-248 2.803e-251 5.01299e-251 3.42716e-254 7.18227e-254 5.66644e-254 1.42964e-253 1.18211e-254 3.7273e-254 4.9141e-252 2.04445e-251 2.55011e-248 1.52407e-247 1.15451e-246 1.1542e-245 5.23081e-249 1.26141e-247 1.1531e-251 9.50777e-66 -1.06085e-63 1.59902e-66 -1.71445e-64 2.35291e-67 -2.42144e-65 3.04992e-68 -3.01503e-66 3.5107e-69 -3.3371e-67 3.61043e-70 -3.30309e-68 3.33424e-71 -2.93853e-69 2.77851e-72 -2.3609e-70 2.09939e-73 -1.72117e-71 1.44493e-74 -1.14375e-72 9.09717e-76 -6.95625e-74 5.25837e-77 -3.88551e-75 2.79878e-78 -1.9986e-76 1.37483e-79 -9.48564e-78 6.24324e-81 -4.15943e-79 2.62384e-82 -1.6863e-80 1.02123e-83 -6.32207e-82 3.68222e-85 -2.19136e-83 1.23e-86 -7.01841e-85 3.80565e-88 -2.07499e-86 1.0902e-89 -5.65547e-88 2.88999e-91 -1.41851e-89 7.08411e-93 -3.26677e-91 1.60433e-94 -6.8871e-93 3.35334e-96 -1.32395e-94 6.46127e-98 -2.30813e-96 1.1461e-99 -3.62064e-98 1.86856e-101 -5.04804e-100 2.79508e-103 -6.1244e-102 3.82801e-105 -6.19254e-104 4.78832e-107 -4.63987e-106 5.45526e-109 -1.26805e-108 5.99381e-111 3.16994e-113 6.50181e-113 8.18618e-115 6.95549e-115 1.38387e-116 7.3355e-117 1.99503e-118 7.62411e-119 2.63021e-120 7.80646e-121 3.26399e-122 7.87174e-123 3.86855e-124 7.81412e-125 4.41567e-126 7.63343e-127 4.87882e-128 7.33535e-129 5.23527e-130 6.9312e-131 5.46797e-132 6.43729e-133 5.56705e-134 5.87377e-135 5.53064e-136 5.26331e-137 5.36496e-138 4.62945e-139 5.08376e-140 3.99507e-141 4.70687e-142 3.38091e-143 4.25843e-144 2.8044e-145 3.7647e-146 2.27886e-147 3.2518e-148 1.81317e-149 2.7438e-150 1.41177e-151 2.26102e-152 1.07509e-153 1.81905e-154 8.00266e-156 1.42831e-156 5.81921e-158 1.0941e-158 4.13109e-160 8.17259e-161 2.86123e-162 5.94999e-163 1.93213e-164 4.21986e-165 1.27119e-166 2.91381e-167 8.14242e-169 1.95767e-169 5.07383e-171 1.27896e-171 3.07332e-173 8.11913e-174 1.80803e-175 5.00476e-176 1.03215e-177 2.99323e-178 5.71236e-180 1.73548e-180 3.06195e-182 9.74639e-183 1.58796e-184 5.29667e-185 7.95899e-187 2.7827e-187 3.85075e-189 1.41179e-189 1.79621e-191 6.90912e-192 8.06705e-194 3.25757e-194 3.48332e-196 1.4778e-196 1.44385e-198 6.44139e-199 5.73565e-201 2.69355e-201 2.17966e-203 1.0788e-203 7.90847e-206 4.13099e-206 2.73379e-208 1.50947e-208 8.98232e-211 5.25204e-211 2.79797e-213 1.73604e-213 8.23929e-216 5.43754e-216 2.28637e-218 1.60925e-218 5.95751e-221 4.48591e-221 1.45178e-223 1.17365e-223 3.29353e-226 2.87041e-226 6.91942e-229 6.53259e-229 1.33804e-231 1.37621e-231 2.36456e-234 2.6674e-234 3.78612e-237 4.72263e-237 5.43625e-240 7.57269e-240 6.91024e-243 1.08833e-242 7.65083e-246 1.38381e-245 7.22283e-249 1.53103e-248 5.64885e-252 1.44178e-251 3.54271e-255 1.13031e-254 1.46911e-254 6.1866e-254 7.48218e-251 4.52837e-250 3.16128e-249 3.20276e-248 1.21748e-251 2.97913e-250 2.87051e-254 3.65746e-63 -3.53516e-61 6.14116e-64 -5.70662e-62 9.08207e-65 -8.10032e-63 1.18845e-65 -1.01785e-63 1.38576e-66 -1.14055e-64 1.448e-67 -1.14622e-65 1.36252e-68 -1.03812e-66 1.15989e-69 -8.5123e-68 8.97395e-71 -6.3481e-69 6.33813e-72 -4.3243e-70 4.10298e-73 -2.70116e-71 2.44293e-74 -1.55228e-72 1.34162e-75 -8.2279e-74 6.81089e-77 -4.03002e-75 3.20129e-78 -1.82619e-76 1.39464e-79 -7.66088e-78 5.63511e-81 -2.97555e-79 2.11245e-82 -1.06977e-80 7.34751e-84 -3.55773e-82 2.37081e-85 -1.09338e-83 7.09432e-87 -3.10082e-85 1.96774e-88 -8.09994e-87 5.0558e-90 -1.94415e-88 1.20238e-91 -4.27381e-90 2.64435e-93 -8.56702e-92 5.37226e-95 -1.5562e-93 1.00697e-96 -2.53778e-95 1.73889e-98 -3.65873e-97 2.76185e-100 -4.53232e-99 4.02671e-102 -4.52032e-101 5.37672e-104 -2.89586e-103 6.62897e-106 9.03909e-109 8.08174e-108 7.03026e-110 9.71889e-110 1.55754e-111 1.15227e-111 2.68931e-113 1.34618e-113 4.12597e-115 1.54902e-115 5.88044e-117 1.7548e-117 7.947e-119 1.95626e-119 1.02967e-120 2.14526e-121 1.28745e-122 2.31317e-123 1.55991e-124 2.45151e-125 1.83647e-126 2.55259e-127 2.10466e-128 2.61017e-129 2.3509e-130 2.62009e-131 2.56164e-132 2.5807e-133 2.72443e-134 2.49311e-135 2.82921e-136 2.36121e-137 2.86926e-138 2.19139e-139 2.84198e-140 1.99199e-141 2.74921e-142 1.77267e-143 2.59705e-144 1.54356e-145 2.39529e-146 1.31446e-147 2.15643e-148 1.09412e-149 1.89445e-150 8.89676e-152 1.6235e-152 7.06316e-154 1.35666e-154 5.47146e-156 1.10498e-156 4.13305e-158 8.76778e-159 3.0424e-160 6.77423e-161 2.18094e-162 5.09357e-163 1.52138e-164 3.72493e-165 1.03199e-166 2.64772e-167 6.80163e-169 1.82806e-169 4.35202e-171 1.22507e-171 2.70104e-173 7.96242e-174 1.62455e-175 5.01525e-176 9.45965e-178 3.05861e-178 5.32735e-180 1.80442e-180 2.89844e-182 1.02874e-182 1.52171e-184 5.66195e-185 7.69962e-187 3.0049e-187 3.74976e-189 1.53593e-189 1.75515e-191 7.55143e-192 7.8838e-194 3.56609e-194 3.39273e-196 1.61513e-196 1.3963e-198 7.00433e-199 5.48499e-201 2.90336e-201 2.05219e-203 1.14808e-203 7.29606e-206 4.32176e-206 2.45852e-208 1.54513e-208 7.82951e-211 5.23327e-211 2.34906e-213 1.67438e-213 6.61617e-216 5.0447e-216 1.74233e-218 1.42619e-218 4.27048e-221 3.76826e-221 9.69098e-224 9.26285e-224 2.02374e-226 2.10723e-226 3.86119e-229 4.40956e-229 6.67351e-232 8.42713e-232 1.03406e-234 1.45828e-234 1.41814e-237 2.26127e-237 1.69353e-240 3.10147e-240 1.72391e-243 3.70047e-243 1.45317e-246 3.75673e-246 9.73441e-250 3.14663e-249 4.86849e-253 2.07796e-252 2.35606e-253 1.44605e-252 9.27958e-252 9.54164e-251 3.05265e-254 7.59215e-253 7.68587e-257 1.26423e-60 -1.04188e-58 2.10823e-61 -1.67223e-59 3.11929e-62 -2.37652e-60 4.1047e-63 -3.00426e-61 4.83282e-64 -3.39995e-62 5.11803e-65 -3.46309e-63 4.89767e-66 -3.18936e-64 4.25357e-67 -2.66732e-65 3.36704e-68 -2.03432e-66 2.43922e-69 -1.4206e-67 1.62326e-70 -9.11579e-69 9.95538e-72 -5.39128e-70 5.6417e-73 -2.94565e-71 2.96025e-74 -1.48931e-72 1.44031e-75 -6.97527e-74 6.5048e-77 -3.02784e-75 2.72856e-78 -1.21821e-76 1.06339e-79 -4.54123e-78 3.85076e-81 -1.56738e-79 1.2955e-82 -5.00315e-81 4.04801e-84 -1.47476e-82 1.17428e-85 -4.00615e-84 3.1607e-87 -1.0002e-85 7.8881e-89 -2.28671e-87 1.82381e-90 -4.76292e-89 3.90288e-92 -8.97017e-91 7.72134e-94 -1.50947e-92 1.41035e-95 -2.22274e-94 2.37472e-97 -2.74387e-96 3.67909e-99 -2.52377e-98 5.23458e-101 -8.47209e-101 7.18904e-103 3.8537e-105 9.72984e-105 1.23555e-106 1.29674e-106 2.59634e-108 1.70136e-108 4.65087e-110 2.19693e-110 7.61157e-112 2.79119e-112 1.17124e-113 3.48811e-114 1.71936e-115 4.28627e-116 2.42805e-117 5.17743e-118 3.31547e-119 6.14524e-120 4.39214e-121 7.16462e-122 5.65743e-123 8.20177e-124 7.09628e-125 9.21523e-126 8.67683e-127 1.0158e-127 1.03493e-128 1.09806e-129 1.20469e-130 1.16351e-131 1.36888e-132 1.20792e-133 1.51859e-134 1.2281e-135 1.64476e-136 1.22221e-137 1.7391e-138 1.19004e-139 1.79488e-140 1.13309e-141 1.80778e-142 1.05444e-143 1.77641e-144 9.58534e-146 1.70252e-146 8.507e-148 1.59087e-148 7.36683e-150 1.44878e-150 6.22102e-152 1.2853e-152 5.11977e-154 1.11029e-154 4.10362e-156 9.33415e-157 3.20125e-158 7.63283e-159 2.42886e-160 6.06754e-161 1.791e-162 4.68581e-163 1.28252e-164 3.51327e-165 8.91154e-167 2.55556e-167 6.00332e-169 1.8021e-169 3.91731e-171 1.23096e-171 2.47358e-173 8.13775e-174 1.50996e-175 5.20197e-176 8.90099e-178 3.21225e-178 5.06112e-180 1.91416e-180 2.77241e-182 1.09948e-182 1.46116e-184 6.08025e-185 7.39877e-187 3.23309e-187 3.59401e-189 1.65073e-189 1.67203e-191 8.0807e-192 7.43673e-194 3.78643e-194 3.15611e-196 1.69534e-196 1.27536e-198 7.23927e-199 4.89577e-201 2.94194e-201 1.78074e-203 1.1352e-203 6.11983e-206 4.1486e-206 1.98092e-208 1.43186e-208 6.01782e-211 4.65261e-211 1.7089e-213 1.41826e-213 4.51564e-216 4.03964e-216 1.10449e-218 1.07023e-218 2.48544e-221 2.62351e-221 5.10884e-224 5.91442e-224 9.51056e-227 1.21745e-226 1.58689e-229 2.26869e-229 2.34292e-232 3.78748e-232 3.01131e-235 5.5915e-235 3.29814e-238 7.17906e-238 2.99024e-241 7.84042e-241 2.15343e-244 7.06204e-244 1.157e-247 5.01207e-247 4.18103e-251 2.60604e-250 3.75229e-254 3.92192e-253 8.30164e-257 2.10248e-255 2.21814e-259 3.92634e-58 -2.71145e-56 6.47377e-59 -4.3096e-57 9.54146e-60 -6.10952e-58 1.2578e-60 -7.74652e-59 1.49055e-61 -8.83354e-60 1.5957e-62 -9.10422e-61 1.54994e-63 -8.5172e-62 1.37146e-64 -7.26145e-63 1.10978e-65 -5.66335e-64 8.24278e-67 -4.05502e-65 5.63817e-68 -2.67399e-66 3.56189e-69 -1.62823e-67 2.08317e-70 -9.17378e-69 1.12995e-71 -4.78929e-70 5.69201e-73 -2.31878e-71 2.66525e-74 -1.04153e-72 1.16071e-75 -4.33981e-74 4.70276e-77 -1.67672e-75 1.77278e-78 -6.00168e-77 6.21712e-80 -1.98778e-78 2.0279e-81 -6.0814e-80 6.14978e-83 -1.71467e-81 1.73306e-84 -4.44155e-83 4.53563e-86 -1.05239e-84 1.10156e-87 -2.26649e-86 2.4805e-89 -4.39362e-88 5.17344e-91 -7.54094e-90 9.9815e-93 -1.11008e-91 1.7789e-94 -1.29786e-93 2.92348e-96 -8.90325e-96 4.51492e-98 1.18741e-100 6.87328e-100 6.8628e-102 1.03019e-101 1.7822e-103 1.51983e-103 3.74056e-105 2.20623e-105 7.04131e-107 3.15013e-107 1.23544e-108 4.42241e-109 2.05774e-110 6.10202e-111 3.28652e-112 8.27188e-113 5.06381e-114 1.10124e-114 7.55595e-116 1.43926e-116 1.09467e-117 1.8459e-118 1.54247e-119 2.32233e-120 2.11649e-121 2.86497e-122 2.83036e-123 3.46436e-124 3.69095e-125 4.10451e-126 4.69532e-127 4.76275e-128 5.82796e-129 5.41045e-130 7.05883e-131 6.01449e-132 8.34284e-133 6.53979e-134 9.62113e-135 6.95229e-136 1.08244e-136 7.22247e-138 1.18785e-138 7.32863e-140 1.27111e-140 7.25967e-142 1.32598e-142 7.01676e-144 1.34794e-144 6.61365e-146 1.33481e-146 6.07547e-148 1.28704e-148 5.43614e-150 1.20779e-150 4.73477e-152 1.10254e-152 4.01162e-154 9.78526e-155 3.30408e-156 8.43855e-157 2.64349e-158 7.06666e-159 2.0529e-160 5.74281e-161 1.54623e-162 4.52577e-163 1.12857e-164 3.45616e-165 7.97524e-167 2.55554e-167 5.4514e-169 1.82806e-169 3.60068e-171 1.26393e-171 2.29568e-173 8.43843e-174 1.41122e-175 5.43447e-176 8.35416e-178 3.37232e-178 4.75634e-180 2.01401e-180 2.60073e-182 1.15612e-182 1.36369e-184 6.37018e-185 6.8458e-187 3.36407e-187 3.28439e-189 1.69998e-189 1.50304e-191 8.20595e-192 6.54723e-194 3.77651e-194 2.70839e-196 1.65357e-196 1.06126e-198 6.87266e-199 3.92795e-201 2.70457e-201 1.3689e-203 1.0049e-203 4.47612e-206 3.51422e-206 1.3678e-208 1.15263e-208 3.88821e-211 3.53158e-211 1.02284e-213 1.00622e-213 2.47488e-216 2.65208e-216 5.46853e-219 6.42694e-219 1.09405e-221 1.42177e-221 1.96131e-224 2.84668e-224 3.11032e-227 5.10494e-227 4.29255e-230 8.09338e-230 5.04651e-233 1.11558e-232 4.90924e-236 1.30755e-235 3.79142e-239 1.26343e-238 2.1831e-242 9.61399e-242 8.44618e-246 5.35536e-245 1.80274e-249 1.91865e-248 1.30549e-253 3.373e-252 1.2858e-256 1.09089e-55 -6.21637e-54 1.77347e-56 -9.75778e-55 2.59577e-57 -1.37619e-55 3.41837e-58 -1.74625e-56 4.06752e-59 -2.00301e-57 4.39328e-60 -2.08637e-58 4.32494e-61 -1.98134e-59 3.89496e-62 -1.72155e-60 3.21992e-63 -1.3731e-61 2.4512e-64 -1.00834e-62 1.72322e-65 -6.83564e-64 1.12148e-66 -4.28711e-65 6.77018e-68 -2.49159e-66 3.79695e-69 -1.34338e-67 1.98057e-70 -6.72365e-69 9.6163e-72 -3.12441e-70 4.3481e-73 -1.34769e-71 1.83137e-74 -5.3926e-73 7.1857e-76 -1.99967e-74 2.62627e-77 -6.86182e-76 8.93909e-79 -2.17454e-77 2.83259e-80 -6.34675e-79 8.35248e-82 -1.69951e-80 2.29058e-83 -4.1522e-82 5.83822e-85 -9.17806e-84 1.38187e-86 -1.81007e-85 3.0345e-88 -3.10384e-87 6.17504e-90 -4.36729e-89 1.16284e-91 -4.17128e-91 2.02835e-93 1.18646e-96 3.48702e-95 2.76463e-97 5.89627e-97 8.98488e-99 9.8017e-99 2.20901e-100 1.6013e-100 4.77602e-102 2.57021e-102 9.53791e-104 4.05202e-104 1.79899e-105 6.27288e-106 3.24298e-107 9.53322e-108 5.62672e-109 1.42189e-109 9.43833e-111 2.08076e-111 1.53514e-112 2.98657e-113 2.42598e-114 4.20316e-115 3.7301e-116 5.79813e-117 5.58563e-118 7.8371e-119 8.15138e-120 1.03757e-120 1.15982e-121 1.34496e-122 1.60943e-123 1.70632e-124 2.17839e-125 2.11782e-126 2.87608e-127 2.57046e-128 3.70379e-129 3.04956e-130 4.6518e-131 3.53484e-132 5.69703e-133 4.00131e-134 6.8019e-135 4.42103e-136 7.91493e-137 4.76556e-138 8.97348e-139 5.00893e-140 9.90873e-141 5.13073e-142 1.06524e-142 5.11884e-144 1.11446e-144 4.97124e-146 1.13414e-146 4.69667e-148 1.12212e-148 4.31388e-150 1.07883e-150 3.84951e-152 1.00729e-152 3.33498e-154 9.12817e-155 2.80289e-156 8.02339e-157 2.28352e-158 6.83562e-159 1.80189e-160 5.64058e-161 1.37592e-162 4.50459e-163 1.01578e-164 3.47865e-165 7.24299e-167 2.59538e-167 4.98298e-169 1.86903e-169 3.30391e-171 1.29781e-171 2.10868e-173 8.67978e-174 1.29384e-175 5.58475e-176 7.62135e-178 3.45259e-178 4.30346e-180 2.04806e-180 2.32561e-182 1.164e-182 1.20067e-184 6.3283e-185 5.91085e-187 3.28539e-187 2.76889e-189 1.62567e-189 1.23138e-191 7.65096e-192 5.18569e-194 3.41703e-194 2.06218e-196 1.44455e-196 7.71941e-199 5.76436e-199 2.71049e-201 2.16442e-201 8.89168e-204 7.62035e-204 2.71277e-206 2.50566e-206 7.65707e-209 7.65966e-209 1.9874e-211 2.16553e-211 4.70938e-214 5.62781e-214 1.01014e-216 1.33481e-216 1.94099e-219 2.86469e-219 3.29828e-222 5.50514e-222 4.87602e-225 9.35032e-225 6.13831e-228 1.38033e-227 6.39128e-231 1.73208e-230 5.28022e-234 1.79099e-233 3.24997e-237 1.45753e-236 1.34266e-240 8.67581e-240 3.05514e-244 3.31728e-243 2.35179e-248 6.21136e-247 2.51199e-251 2.68242e-53 -1.25189e-51 4.30049e-54 -1.93972e-52 6.24796e-55 -2.71939e-53 8.21517e-56 -3.4509e-54 9.81057e-57 -3.97961e-55 1.06864e-57 -4.18814e-56 1.06591e-58 -4.03689e-57 9.76823e-60 -3.57485e-58 8.2493e-61 -2.91628e-59 6.43685e-62 -2.19685e-60 4.65149e-63 -1.5313e-61 3.1191e-64 -9.89274e-63 1.94392e-65 -5.93058e-64 1.1274e-66 -3.30168e-65 6.09017e-68 -1.70758e-66 3.06624e-69 -8.20378e-68 1.4394e-70 -3.65971e-69 6.3016e-72 -1.51468e-70 2.57296e-73 -5.80894e-72 9.79708e-75 -2.06062e-73 3.4782e-76 -6.74443e-75 1.151e-77 -2.02967e-76 3.5488e-79 -5.58788e-78 1.01895e-80 -1.39664e-79 2.72282e-82 -3.12979e-81 6.76624e-84 -6.14725e-83 1.56223e-85 -1.00768e-84 3.34762e-87 -1.19135e-86 6.65006e-89 -2.5213e-89 1.28952e-90 8.49994e-93 2.45595e-92 3.41e-94 4.59316e-94 9.72088e-96 8.43431e-96 2.39752e-97 1.52047e-97 5.42537e-99 2.69046e-99 1.15529e-100 4.67213e-101 2.34579e-102 7.96062e-103 4.57693e-104 1.33049e-104 8.62286e-106 2.18067e-106 1.57362e-107 3.50387e-108 2.78778e-109 5.51755e-110 4.80146e-111 8.51217e-112 8.04814e-113 1.28611e-113 1.31382e-114 1.9024e-115 2.08981e-116 2.75394e-117 3.23998e-118 3.90002e-119 4.8969e-120 5.40099e-121 7.21566e-122 7.31138e-123 1.03658e-123 9.6709e-125 1.45168e-125 1.24938e-126 1.9816e-127 1.57576e-128 2.63611e-129 1.93937e-130 3.4167e-131 2.32812e-132 4.31352e-133 2.72465e-134 5.30275e-135 3.10714e-136 6.34547e-137 3.45085e-138 7.38845e-139 3.73053e-140 8.36736e-141 3.92324e-142 9.21239e-143 4.01134e-144 9.85586e-145 3.98503e-146 1.02406e-146 3.84402e-148 1.03283e-148 3.59789e-150 1.01051e-150 3.26516e-152 9.58476e-153 2.87089e-154 8.80766e-155 2.44362e-156 7.83542e-157 2.01177e-158 6.74296e-159 1.6005e-160 5.60877e-161 1.22925e-162 4.50538e-163 9.10498e-165 3.49167e-165 6.49672e-167 2.60816e-167 4.46033e-169 1.87571e-169 2.94268e-171 1.29724e-171 1.86306e-173 8.61704e-174 1.13025e-175 5.4902e-176 6.55974e-178 3.35024e-178 3.63587e-180 1.95494e-180 1.92094e-182 1.08896e-182 9.65377e-185 5.77951e-185 4.60433e-187 2.91658e-187 2.07885e-189 1.39628e-189 8.86028e-192 6.32546e-192 3.55368e-194 2.70409e-194 1.33655e-196 1.08743e-196 4.69505e-199 4.0993e-199 1.53344e-201 1.44284e-201 4.63221e-204 4.72011e-204 1.28637e-206 1.42772e-206 3.26046e-209 3.9687e-209 7.47839e-212 1.00658e-211 1.53614e-214 2.30945e-214 2.7896e-217 4.74332e-217 4.40571e-220 8.60785e-220 5.92272e-223 1.35725e-222 6.58225e-226 1.81835e-225 5.80081e-229 2.00643e-228 3.8055e-232 1.74135e-231 1.67375e-235 1.10439e-234 4.0473e-239 4.49297e-238 3.30007e-243 8.93118e-242 3.81785e-246 5.75034e-51 -2.20636e-49 9.12348e-52 -3.38296e-50 1.31937e-52 -4.72352e-51 1.73642e-53 -6.00419e-52 2.08578e-54 -6.9706e-53 2.29567e-55 -7.41921e-54 2.32354e-56 -7.26339e-55 2.16937e-57 -6.55798e-56 1.87318e-58 -5.47262e-57 1.49913e-59 -4.22863e-58 1.11408e-60 -3.02984e-59 7.69968e-62 -2.0153e-60 4.95499e-63 -1.24536e-61 2.97195e-64 -7.1525e-63 1.66256e-65 -3.81817e-64 8.67884e-67 -1.89388e-65 4.22898e-68 -8.72273e-67 1.92385e-69 -3.72627e-68 8.17108e-71 -1.47404e-69 3.23989e-72 -5.38716e-71 1.19907e-73 -1.81299e-72 4.14096e-75 -5.59165e-74 1.33394e-76 -1.56904e-75 4.00632e-78 -3.95853e-77 1.12117e-79 -8.7891e-79 2.92144e-81 -1.64095e-80 7.082e-83 -2.25994e-82 1.59608e-84 -8.77434e-85 3.48987e-86 2.09975e-88 7.48774e-88 9.93044e-90 1.57617e-89 3.23262e-91 3.25503e-91 9.02924e-93 6.59437e-93 2.30575e-94 1.31041e-94 5.5286e-96 2.5538e-96 1.26213e-97 4.87997e-98 2.76545e-99 9.1409e-100 5.8449e-101 1.67796e-101 1.19553e-102 3.01761e-103 2.37184e-104 5.31495e-105 4.57109e-106 9.16539e-107 8.56707e-108 1.54695e-108 1.56263e-109 2.55465e-110 2.77534e-111 4.12636e-112 4.80144e-113 6.51684e-114 8.09314e-115 1.00597e-115 1.32924e-116 1.51725e-117 2.1274e-118 2.23507e-119 3.31769e-120 3.21453e-121 5.04106e-122 4.51198e-123 7.46179e-124 6.17813e-125 1.07576e-125 8.24904e-127 1.51022e-127 1.07352e-128 2.06392e-129 1.36106e-130 2.74498e-131 1.68031e-132 3.55167e-133 2.01895e-134 4.46893e-135 2.35971e-136 5.46607e-137 2.68129e-138 6.4961e-139 2.96024e-140 7.49768e-141 3.17354e-142 8.39992e-143 3.3015e-144 9.12974e-145 3.33071e-146 9.621e-147 3.25618e-148 9.82401e-149 3.08245e-150 9.71344e-151 2.82328e-152 9.29317e-153 2.49983e-154 8.59665e-155 2.13784e-156 7.68277e-157 1.76414e-158 6.62752e-159 1.40326e-160 5.51349e-161 1.07477e-162 4.41886e-163 7.91684e-165 3.40832e-165 5.60149e-167 2.52706e-167 3.8017e-169 1.79886e-169 2.47137e-171 1.22774e-171 1.53636e-173 8.02252e-174 9.11782e-176 5.01106e-176 5.15599e-178 2.98687e-178 2.77241e-180 1.69574e-180 1.41429e-182 9.15092e-183 6.82754e-185 4.68327e-185 3.11041e-187 2.26739e-187 1.33304e-189 1.03558e-189 5.35566e-192 4.44807e-192 2.0091e-194 1.79047e-194 7.00545e-197 6.72736e-197 2.25862e-199 2.34875e-199 6.69234e-202 7.58004e-202 1.80936e-204 2.24753e-204 4.42543e-207 6.07878e-207 9.69041e-210 1.48686e-209 1.87529e-212 3.25466e-212 3.15496e-215 6.29274e-215 4.51613e-218 1.05674e-217 5.34151e-221 1.50718e-220 5.00658e-224 1.76953e-223 3.49017e-227 1.63291e-226 1.62915e-230 1.10004e-229 4.17266e-234 4.74657e-233 3.5907e-238 9.98283e-237 4.49347e-241 1.0601e-48 -3.39411e-47 1.67504e-49 -5.17647e-48 2.42472e-50 -7.23014e-49 3.21094e-51 -9.24091e-50 3.8981e-52 -1.0834e-50 4.3529e-53 -1.16892e-51 4.4857e-54 -1.16402e-52 4.27776e-55 -1.0723e-53 3.78371e-56 -9.15406e-55 3.10982e-57 -7.25164e-56 2.37855e-58 -5.33604e-57 1.69502e-59 -3.64973e-58 1.1265e-60 -2.32128e-59 6.98733e-62 -1.37294e-60 4.04714e-63 -7.54956e-62 2.18985e-64 -3.85722e-63 1.10719e-65 -1.82922e-64 5.23145e-67 -8.03941e-66 2.31009e-68 -3.26726e-67 9.53246e-70 -1.22391e-68 3.67518e-71 -4.20603e-70 1.32352e-72 -1.31644e-71 4.4505e-74 -3.70829e-73 1.39672e-75 -9.20059e-75 4.0887e-77 -1.91976e-76 1.11563e-78 -2.94199e-78 2.83612e-80 -1.15482e-80 6.99956e-82 4.30377e-84 1.69324e-83 2.26641e-85 4.01453e-85 8.26608e-87 9.32897e-87 2.59264e-88 2.12474e-88 7.43272e-90 4.74262e-90 2.00002e-91 1.0373e-91 5.12085e-93 2.2227e-93 1.25753e-94 4.66494e-95 2.97662e-96 9.58704e-97 6.81366e-98 1.92876e-98 1.51166e-99 3.79754e-100 3.25556e-101 7.3153e-102 6.81351e-103 1.37829e-103 1.38686e-104 2.53919e-105 2.74697e-106 4.57263e-107 5.29667e-108 8.04675e-109 9.9447e-110 1.38331e-110 1.81838e-111 2.3223e-112 3.23824e-113 3.80603e-114 5.61648e-115 6.08732e-116 9.48686e-117 9.49779e-118 1.56038e-118 1.44509e-119 2.49874e-120 2.14324e-121 3.89496e-122 3.09722e-123 5.90843e-124 4.35921e-125 8.7198e-126 5.9729e-127 1.25162e-127 7.96338e-129 1.74669e-129 1.0326e-130 2.36907e-131 1.30155e-132 3.12163e-133 1.59386e-134 3.99423e-135 1.89521e-136 4.96054e-137 2.18684e-138 5.97654e-139 2.44715e-140 6.9817e-141 2.65398e-142 7.90338e-143 2.78756e-144 8.66437e-145 2.83348e-146 9.19282e-147 2.78512e-148 9.43286e-149 2.64505e-150 9.35398e-151 2.42496e-152 8.95695e-153 2.14411e-154 8.27492e-155 1.82651e-156 7.36902e-157 1.49749e-158 6.31932e-159 1.18022e-160 5.213e-161 8.93065e-163 4.13208e-163 6.47945e-165 3.14325e-165 4.50087e-167 2.29163e-167 2.98865e-169 1.59897e-169 1.89377e-171 1.06608e-171 1.14298e-173 6.7804e-174 6.55716e-176 4.10607e-176 3.5676e-178 2.36274e-178 1.83625e-180 1.28898e-180 8.91598e-183 6.65015e-183 4.07135e-185 3.2357e-185 1.74228e-187 1.48015e-187 6.95954e-190 6.3435e-190 2.5832e-192 2.53696e-192 8.86296e-195 9.42523e-195 2.79382e-197 3.2359e-197 8.03335e-200 1.02042e-199 2.08902e-202 2.93439e-202 4.86184e-205 7.62905e-205 9.99627e-208 1.77447e-207 1.78606e-210 3.6443e-210 2.7139e-213 6.49801e-213 3.4054e-216 9.83578e-216 3.38381e-219 1.22483e-218 2.49832e-222 1.1979e-221 1.23336e-225 8.54326e-225 3.33361e-229 3.89612e-228 3.01519e-233 8.63712e-232 4.0763e-236 1.67647e-46 -4.54812e-45 2.65636e-47 -6.94468e-46 3.87391e-48 -9.75791e-47 5.19319e-49 -1.26017e-47 6.40744e-50 -1.49796e-48 7.29481e-51 -1.6432e-49 7.6845e-52 -1.66751e-50 7.50832e-53 -1.56856e-51 6.81806e-54 -1.3697e-52 5.76323e-55 -1.11149e-53 4.5406e-56 -8.38764e-55 3.3377e-57 -5.88848e-56 2.29097e-58 -3.84621e-57 1.46927e-59 -2.33686e-58 8.80848e-61 -1.31993e-59 4.93815e-62 -6.92399e-61 2.58932e-63 -3.36812e-62 1.27003e-64 -1.51591e-63 5.82716e-66 -6.29207e-65 2.50078e-67 -2.39681e-66 1.00368e-68 -8.31576e-68 3.7662e-70 -2.5949e-69 1.32081e-71 -7.11482e-71 4.32723e-73 -1.62858e-72 1.32369e-74 -2.66176e-74 3.77739e-76 -3.33451e-77 1.05313e-77 7.39755e-80 2.87414e-79 4.08648e-81 7.67871e-81 1.64418e-82 2.00843e-82 5.74066e-84 5.1431e-84 1.83846e-85 1.28938e-85 5.53221e-87 3.16435e-87 1.58436e-88 7.6009e-89 4.35109e-90 1.78666e-90 1.15131e-91 4.1088e-92 2.94449e-93 9.24236e-94 7.29445e-95 2.03299e-95 1.75308e-96 4.3718e-97 4.09177e-98 9.18847e-99 9.28249e-100 1.88699e-100 2.04789e-101 3.78546e-102 4.39551e-103 7.41603e-104 9.18107e-105 1.4184e-105 1.86651e-106 2.64774e-107 3.69368e-108 4.82241e-109 7.11519e-110 8.5669e-111 1.33412e-111 1.48392e-112 2.4347e-113 2.50536e-114 4.32394e-115 4.12141e-116 7.47169e-117 6.60349e-118 1.25595e-118 1.0301e-119 2.05321e-120 1.56381e-121 3.26347e-122 2.30939e-123 5.04171e-124 3.31607e-125 7.56799e-126 4.62759e-127 1.10339e-127 6.273e-129 1.56187e-129 8.25575e-131 2.14558e-131 1.05429e-132 2.8591e-133 1.30568e-134 3.69388e-135 1.56718e-136 4.62462e-137 1.8219e-138 5.60743e-139 2.05002e-140 6.58089e-141 2.23104e-142 7.47065e-143 2.34658e-144 8.1976e-145 2.38336e-146 8.68861e-147 2.33557e-148 8.88809e-149 2.20618e-150 8.76789e-151 2.00679e-152 8.33333e-153 1.75596e-154 7.62357e-155 1.47633e-156 6.70597e-157 1.19117e-158 5.66553e-159 9.21098e-161 4.59166e-161 6.8164e-163 3.56515e-163 4.81995e-165 2.64817e-165 3.25109e-167 1.8789e-167 2.08788e-169 1.27121e-169 1.27405e-171 8.18621e-172 7.37039e-174 5.00747e-174 4.03215e-176 2.90302e-176 2.08027e-178 1.59111e-178 1.00899e-180 8.22178e-181 4.58486e-183 3.99304e-183 1.94407e-185 1.81634e-185 7.65726e-188 7.70777e-188 2.78703e-190 3.0376e-190 9.31692e-193 1.10594e-192 2.84014e-195 3.69734e-195 7.82729e-198 1.12687e-197 1.92992e-200 3.10409e-200 4.20227e-203 7.64712e-203 7.94807e-206 1.66283e-205 1.2778e-208 3.13788e-208 1.6954e-211 5.02422e-211 1.77993e-214 6.61402e-214 1.38697e-217 6.83229e-217 7.21513e-221 5.14044e-220 2.04989e-224 2.4685e-223 1.93999e-228 5.74491e-227 2.82947e-231 2.29899e-44 -5.3035e-43 3.67299e-45 -8.15117e-44 5.42317e-46 -1.15741e-44 7.39232e-47 -1.51611e-45 9.30663e-48 -1.83301e-46 1.08398e-48 -2.04905e-47 1.17055e-49 -2.12203e-48 1.17431e-50 -2.03939e-49 1.09638e-51 -1.82119e-50 9.54031e-53 -1.51251e-51 7.74629e-54 -1.16884e-52 5.8745e-55 -8.40635e-54 4.16413e-56 -5.62581e-55 2.76066e-57 -3.50149e-56 1.7125e-58 -2.0248e-57 9.94304e-60 -1.08616e-58 5.40465e-61 -5.39234e-60 2.75056e-62 -2.46903e-61 1.31063e-63 -1.0372e-62 5.84665e-65 -3.96438e-64 2.44131e-66 -1.35934e-65 9.53906e-68 -4.06942e-67 3.48667e-69 -9.99258e-69 1.19207e-70 -1.63741e-70 3.82403e-72 5.30651e-75 1.20226e-73 1.03243e-75 3.69925e-75 5.84433e-77 1.11346e-76 2.55795e-78 3.27795e-78 9.87609e-80 9.43774e-80 3.518e-81 2.65731e-81 1.18025e-82 7.31629e-83 3.77194e-84 1.96953e-84 1.1562e-85 5.1831e-86 3.41414e-87 1.33321e-87 9.74075e-89 3.35121e-89 2.69064e-90 8.23015e-91 7.20615e-92 1.97433e-92 1.87323e-93 4.62527e-94 4.72993e-95 1.05793e-95 1.16073e-96 2.36198e-97 2.76949e-98 5.14615e-99 6.42651e-100 1.09387e-100 1.45057e-101 2.2678e-102 3.18517e-103 4.58438e-104 6.80415e-105 9.03372e-106 1.41401e-106 1.73472e-107 2.85851e-108 3.24513e-109 5.62065e-110 5.91193e-111 1.0748e-111 1.04851e-112 1.99842e-113 1.80968e-114 3.61216e-115 3.03846e-116 6.34545e-117 4.96087e-118 1.08306e-118 7.87285e-120 1.79559e-120 1.21391e-121 2.89054e-122 1.81771e-123 4.51663e-124 2.64203e-125 6.84764e-126 3.72567e-127 1.00688e-127 5.09442e-129 1.43526e-129 6.75095e-131 1.98239e-131 8.66476e-133 2.65173e-133 1.07646e-134 3.4333e-135 1.29359e-136 4.30011e-137 1.50263e-138 5.20668e-139 1.6859e-140 6.09062e-141 1.82553e-142 6.8781e-143 1.90615e-144 7.49285e-145 1.91751e-146 7.86751e-147 1.85655e-148 7.95525e-149 1.72826e-150 7.73894e-151 1.5451e-152 7.23559e-153 1.325e-154 6.49457e-155 1.08849e-156 5.58971e-157 8.55374e-159 4.60709e-159 6.4201e-161 3.63122e-161 4.5946e-163 2.73273e-163 3.12947e-165 1.96036e-165 2.02456e-167 1.33804e-167 1.24123e-169 8.672e-170 7.19377e-172 5.325e-172 3.93048e-174 3.09026e-174 2.01824e-176 1.69024e-176 9.70571e-179 8.68642e-179 4.35398e-181 4.17983e-181 1.81378e-183 1.8758e-183 6.97994e-186 7.81552e-186 2.46626e-188 3.00749e-188 7.94368e-191 1.06237e-190 2.31236e-193 3.42015e-193 6.01985e-196 9.94835e-196 1.38341e-198 2.58706e-198 2.76028e-201 5.93577e-201 4.67886e-204 1.18138e-203 6.54103e-207 1.99393e-206 7.22932e-210 2.76499e-209 5.92334e-213 3.00592e-212 3.23442e-216 2.37691e-215 9.61936e-220 1.19719e-218 9.4816e-224 2.91261e-222 1.48982e-226 2.78014e-42 -5.36097e-41 4.49078e-43 -8.3167e-42 6.72634e-44 -1.19588e-42 9.33515e-45 -1.59135e-43 1.20032e-45 -1.95913e-44 1.43126e-46 -2.23357e-45 1.58512e-47 -2.36162e-46 1.63325e-48 -2.319e-47 1.56809e-49 -2.11707e-48 1.40472e-50 -1.79811e-49 1.17542e-51 -1.42129e-50 9.19562e-53 -1.04544e-51 6.73077e-54 -7.1524e-53 4.61207e-55 -4.54677e-54 2.95979e-56 -2.68124e-55 1.77949e-57 -1.46303e-56 1.00249e-58 -7.35844e-58 5.2924e-60 -3.39123e-59 2.61825e-61 -1.41832e-60 1.21369e-62 -5.29246e-62 5.27071e-64 -1.70297e-63 2.14358e-65 -4.3226e-65 8.16738e-67 -5.98903e-67 2.9605e-68 1.10144e-70 1.04962e-69 1.1464e-71 3.63828e-71 6.60518e-73 1.23277e-72 3.12223e-74 4.08225e-74 1.32622e-75 1.32088e-75 5.23395e-77 4.17544e-77 1.95218e-78 1.28931e-78 6.94683e-80 3.88836e-80 2.37236e-81 1.14516e-81 7.80517e-83 3.29302e-83 2.48051e-84 9.24436e-85 7.62898e-86 2.53301e-86 2.27377e-87 6.77323e-88 6.57373e-89 1.76713e-89 1.84492e-90 4.49746e-91 5.02892e-92 1.11635e-92 1.33191e-93 2.70191e-94 3.42843e-95 6.37499e-96 8.57864e-97 1.46596e-97 2.08685e-98 3.28467e-99 4.93557e-100 7.16924e-101 1.13489e-101 1.52387e-102 2.537e-103 3.15351e-104 5.51316e-105 6.35155e-106 1.1645e-106 1.24472e-107 2.39038e-108 2.3726e-109 4.76765e-110 4.39738e-111 9.23759e-112 7.92175e-113 1.73829e-113 1.38658e-114 3.176e-115 2.35716e-116 5.6325e-117 3.89024e-118 9.69271e-119 6.23038e-120 1.61793e-120 9.67843e-122 2.61867e-122 1.45759e-123 4.108e-124 2.12707e-125 6.24336e-126 3.00615e-127 9.18842e-128 4.11217e-129 1.30882e-129 5.44122e-131 1.80345e-131 6.95996e-133 2.40247e-133 8.60007e-135 3.09228e-135 1.0258e-136 3.84307e-137 1.18019e-138 4.60838e-139 1.3086e-140 5.32798e-141 1.39712e-142 5.93425e-143 1.4349e-144 6.3618e-145 1.41618e-146 6.55838e-147 1.34166e-148 6.49494e-149 1.21864e-150 6.17221e-151 1.05986e-152 5.62184e-153 8.81356e-155 4.90152e-155 6.99712e-157 4.085e-157 5.29449e-159 3.24939e-159 3.81127e-161 2.46284e-161 2.60483e-163 1.77545e-163 1.68651e-165 1.2149e-165 1.03186e-167 7.87362e-168 5.94955e-170 4.82102e-170 3.22281e-172 2.78126e-172 1.63442e-174 1.50712e-174 7.72954e-177 7.64443e-177 3.39344e-179 3.61511e-179 1.37579e-181 1.58677e-181 5.11967e-184 6.43061e-184 1.73612e-186 2.39159e-186 5.31885e-189 8.10363e-189 1.45676e-191 2.4801e-191 3.52055e-194 6.78347e-194 7.38341e-197 1.63634e-196 1.31473e-199 3.42242e-199 1.92938e-202 6.06658e-202 2.23627e-205 8.82856e-205 1.91897e-208 1.0062e-207 1.09527e-211 8.32878e-211 3.39429e-215 4.38123e-214 3.46644e-219 1.10906e-217 5.85957e-222 2.97465e-40 -4.66702e-39 4.86411e-41 -7.3128e-40 7.39316e-42 -1.06491e-40 1.0443e-42 -1.43904e-41 1.37042e-43 -1.80302e-42 1.67157e-44 -2.09527e-43 1.89726e-45 -2.26056e-44 2.00663e-46 -2.26662e-45 1.98034e-47 -2.1138e-46 1.82586e-48 -1.83418e-47 1.57433e-49 -1.48077e-48 1.27053e-50 -1.11166e-49 9.60342e-52 -7.75202e-51 6.80207e-53 -5.01198e-52 4.51647e-54 -2.99568e-53 2.81201e-55 -1.64788e-54 1.64196e-56 -8.28299e-56 8.99218e-58 -3.75901e-57 4.61856e-59 -1.506e-58 2.2246e-60 -5.07296e-60 1.00495e-61 -1.25046e-61 4.25339e-63 -4.28216e-64 1.74795e-64 1.20119e-66 7.00664e-66 9.89636e-68 2.74013e-67 5.85371e-69 1.04574e-68 2.98734e-70 3.89503e-70 1.39162e-71 1.41587e-71 6.06992e-73 5.02253e-73 2.51117e-74 1.73842e-74 9.92968e-76 5.87033e-76 3.7712e-77 1.93367e-77 1.38017e-78 6.2123e-79 4.87846e-80 1.9463e-80 1.66819e-81 5.94551e-82 5.52517e-83 1.77061e-83 1.77407e-84 5.13975e-85 5.52607e-86 1.45402e-86 1.67069e-87 4.00802e-88 4.90427e-89 1.07632e-89 1.39819e-90 2.81523e-91 3.87216e-92 7.1707e-93 1.04181e-93 1.77823e-94 2.72328e-95 4.29235e-96 6.91637e-97 1.00827e-97 1.70659e-98 2.30422e-99 4.09088e-100 5.12179e-101 9.52574e-102 1.10701e-102 2.15436e-103 2.32585e-104 4.73156e-105 4.74881e-106 1.00897e-106 9.4193e-108 2.08856e-108 1.81442e-109 4.19575e-110 3.39301e-111 8.17805e-112 6.15744e-113 1.54612e-113 1.08395e-114 2.83435e-115 1.85025e-116 5.03656e-117 3.06107e-118 8.6721e-119 4.90608e-120 1.44628e-120 7.61376e-122 2.33526e-122 1.14351e-123 3.64901e-124 1.66117e-125 5.51517e-126 2.33273e-127 8.0586e-128 3.1646e-129 1.13772e-129 4.14464e-131 1.55103e-131 5.23667e-133 2.04051e-133 6.37813e-135 2.58875e-135 7.48249e-137 3.16483e-137 8.44758e-139 3.72541e-139 9.16943e-141 4.21879e-141 9.55951e-143 4.5919e-143 9.56174e-145 4.799e-145 9.16498e-147 4.81057e-147 8.40743e-149 4.61978e-149 7.371e-151 4.24496e-151 6.16682e-153 3.72696e-153 4.91529e-155 3.12182e-155 3.72561e-157 2.49069e-157 2.68002e-159 1.88931e-159 1.82561e-161 1.35986e-161 1.17474e-163 9.26686e-164 7.12113e-166 5.96424e-166 4.05407e-168 3.61555e-168 2.16004e-170 2.05806e-170 1.07288e-172 1.09623e-172 4.94524e-175 5.44238e-175 2.1043e-177 2.50705e-177 8.21601e-180 1.06599e-179 2.92221e-182 4.1582e-182 9.38648e-185 1.47734e-184 2.69436e-187 4.73919e-187 6.8214e-190 1.35819e-189 1.49794e-192 3.43143e-192 2.79115e-195 7.51294e-195 4.28284e-198 1.39325e-197 5.18503e-201 2.11948e-200 4.64051e-204 2.52224e-203 2.75633e-207 2.17633e-206 8.85827e-211 1.19033e-209 9.32015e-215 3.11982e-213 1.69252e-217 2.77752e-38 -3.47148e-37 4.60465e-39 -5.49626e-38 7.10824e-40 -8.10402e-39 1.0222e-40 -1.11133e-39 1.36906e-41 -1.41579e-40 1.70815e-42 -1.67529e-41 1.98705e-43 -1.84215e-42 2.15754e-44 -1.8835e-43 2.18923e-45 -1.79127e-44 2.07809e-46 -1.58441e-45 1.84703e-47 -1.30254e-46 1.53829e-48 -9.93891e-48 1.20116e-49 -7.02307e-49 8.79755e-51 -4.57931e-50 6.04581e-52 -2.73957e-51 3.8992e-53 -1.48983e-52 2.36033e-54 -7.24241e-54 1.34117e-55 -3.04521e-55 7.15276e-57 -1.01708e-56 3.5824e-58 -1.88936e-58 1.70542e-59 6.1759e-62 7.91928e-61 8.74157e-63 3.58531e-62 6.57321e-64 1.58211e-63 4.0464e-65 6.804e-65 2.23111e-66 2.85162e-66 1.13983e-67 1.16468e-67 5.48822e-69 4.63551e-69 2.51493e-70 1.79777e-70 1.10339e-71 6.7934e-72 4.65324e-73 2.501e-73 1.89139e-74 8.96953e-75 7.42418e-76 3.13333e-76 2.81821e-77 1.06603e-77 1.03565e-78 3.53191e-79 3.68733e-80 1.13937e-80 1.27273e-81 3.57832e-82 4.26072e-83 1.09392e-83 1.3839e-84 3.25474e-85 4.36225e-86 9.42327e-87 1.3347e-87 2.65438e-88 3.96435e-89 7.27316e-90 1.14317e-90 1.93818e-91 3.20044e-92 5.02215e-93 8.69891e-94 1.26506e-94 2.29539e-95 3.09716e-96 5.87964e-97 7.36779e-98 1.46185e-98 1.70264e-99 3.52738e-100 3.82124e-101 8.25914e-102 8.32639e-103 1.87616e-103 1.76096e-104 4.13398e-105 3.61366e-106 8.83344e-107 7.19287e-108 1.82998e-108 1.38823e-109 3.67448e-110 2.59692e-111 7.14905e-112 4.70679e-113 1.34729e-113 8.26179e-115 2.45856e-115 1.40383e-116 4.3425e-117 2.30802e-118 7.42101e-119 3.66968e-120 1.22647e-120 5.6396e-122 1.95938e-122 8.37244e-124 3.0243e-124 1.19998e-125 4.50754e-126 1.65932e-127 6.48348e-128 2.21216e-129 8.99411e-130 2.84127e-131 1.20253e-131 3.51292e-133 1.54848e-133 4.17746e-135 1.91888e-135 4.77356e-137 2.28642e-137 5.23629e-139 2.6172e-139 5.50795e-141 2.87517e-141 5.54925e-143 3.02812e-143 5.34817e-145 3.05398e-145 4.92387e-147 2.94574e-147 4.324e-149 2.71374e-149 3.61599e-151 2.38418e-151 2.87442e-153 1.99433e-153 2.16765e-155 1.58548e-155 1.54735e-157 1.19556e-157 1.04301e-159 8.53255e-160 6.62061e-162 5.74938e-162 3.9454e-164 3.64768e-164 2.19969e-166 2.17238e-166 1.14288e-168 1.21026e-168 5.50865e-171 6.28252e-171 2.45035e-173 3.02512e-173 9.99758e-176 1.34412e-175 3.71458e-178 5.47723e-178 1.24597e-180 2.03221e-180 3.73327e-183 6.80577e-183 9.86148e-186 2.03543e-185 2.25822e-188 5.36421e-188 4.38499e-191 1.22447e-190 7.00588e-194 2.36583e-193 8.82106e-197 3.74643e-196 8.197e-200 4.63515e-199 5.04269e-203 4.15033e-202 1.67184e-206 2.34886e-205 1.80115e-210 6.34004e-209 3.50935e-213 2.23082e-36 -2.19001e-35 3.75787e-37 -3.50662e-36 5.90279e-38 -5.23669e-37 8.65517e-39 -7.28598e-38 1.18468e-39 -9.43163e-39 1.51389e-40 -1.13513e-39 1.80712e-41 -1.27e-40 2.01676e-42 -1.32087e-41 2.10626e-43 -1.2767e-42 2.0604e-44 -1.14576e-43 1.88932e-45 -9.53013e-45 1.62499e-46 -7.32502e-46 1.31159e-47 -5.17753e-47 9.93819e-49 -3.33914e-48 7.07117e-50 -1.93789e-49 4.72552e-51 -9.86203e-51 2.96605e-52 -4.12836e-52 1.75008e-53 -1.17527e-53 9.72043e-55 1.42751e-57 5.25594e-56 4.67662e-58 2.76464e-57 4.51305e-59 1.41455e-58 3.34535e-60 7.04166e-60 2.17836e-61 3.41095e-61 1.30156e-62 1.60786e-62 7.29163e-64 7.37556e-64 3.87296e-65 3.29231e-65 1.96384e-66 1.43003e-66 9.54913e-68 6.04364e-68 4.4662e-69 2.48505e-69 2.0136e-70 9.94088e-71 8.76519e-72 3.86843e-72 3.68824e-73 1.4643e-73 1.50156e-74 5.39102e-75 5.91877e-76 1.93027e-76 2.26007e-77 6.72091e-78 8.36365e-79 2.27535e-79 3.00049e-80 7.48908e-81 1.0438e-81 2.39613e-82 3.52164e-83 7.45135e-84 1.15248e-84 2.25183e-85 3.65863e-86 6.61215e-87 1.12672e-87 1.88618e-88 3.36611e-89 5.22609e-90 9.75541e-91 1.40618e-91 2.74249e-92 3.67355e-93 7.47809e-94 9.3157e-95 1.9776e-95 2.29261e-96 5.07144e-97 5.47422e-98 1.26097e-98 1.26788e-99 3.03936e-100 2.84759e-101 7.10035e-102 6.20003e-103 1.60732e-103 1.30824e-104 3.52488e-105 2.67435e-106 7.48672e-107 5.29453e-108 1.53964e-108 1.01474e-109 3.06472e-110 1.88202e-111 5.90281e-112 3.37638e-113 1.09968e-113 5.85652e-115 1.98078e-115 9.81697e-117 3.44819e-117 1.58943e-118 5.79868e-119 2.48422e-120 9.41536e-121 3.746e-122 1.47531e-122 5.44627e-124 2.22959e-124 7.62941e-126 3.24782e-126 1.02903e-127 4.55721e-128 1.33526e-129 6.15515e-130 1.66551e-131 7.99611e-132 1.99514e-133 9.98297e-134 2.29307e-135 1.19672e-135 2.52593e-137 1.37614e-137 2.6637e-139 1.51638e-139 2.68577e-141 1.59933e-141 2.58569e-143 1.61255e-143 2.37338e-145 1.5522e-145 2.07363e-147 1.4243e-147 1.72145e-149 1.24385e-149 1.35517e-151 1.032e-151 1.00945e-153 8.11846e-154 7.09753e-156 6.04238e-156 4.69767e-158 4.24452e-158 2.91798e-160 2.80645e-160 1.69515e-162 1.74128e-162 9.17385e-165 1.01033e-164 4.60419e-167 5.46059e-167 2.13179e-169 2.73675e-169 9.0505e-172 1.26527e-171 3.49778e-174 5.36319e-174 1.21992e-176 2.06922e-176 3.79911e-179 7.20349e-179 1.04254e-181 2.23863e-181 2.47877e-184 6.12767e-184 4.99404e-187 1.45199e-186 8.27093e-190 2.91019e-189 1.07811e-192 4.77589e-192 1.03522e-195 6.115e-195 6.56227e-199 5.65466e-198 2.2316e-202 3.29424e-201 2.44485e-206 9.10389e-205 5.10475e-209 1.53622e-34 -1.16097e-33 2.63548e-35 -1.8814e-34 4.22119e-36 -2.84605e-35 6.32242e-37 -4.01556e-36 8.85786e-38 -5.2754e-37 1.16094e-38 -6.44423e-38 1.42386e-39 -7.3125e-39 1.63514e-40 -7.70046e-40 1.75947e-41 -7.51423e-41 1.77527e-42 -6.77742e-42 1.68065e-43 -5.62615e-43 1.49367e-44 -4.26791e-44 1.24673e-45 -2.92173e-45 9.77666e-47 -1.76363e-46 7.20385e-48 -8.88048e-48 4.99237e-49 -3.21338e-49 3.2504e-50 8.89333e-54 2.05195e-51 1.63585e-53 1.25733e-52 1.94815e-54 7.47994e-54 1.71417e-55 4.32214e-55 1.30834e-56 2.42622e-56 9.11526e-58 1.32321e-57 5.93024e-59 7.01137e-59 3.64713e-60 3.60959e-60 2.13642e-61 1.80548e-61 1.19766e-62 8.77402e-63 6.44618e-64 4.14258e-64 3.33888e-65 1.9002e-65 1.66712e-66 8.46778e-67 8.03453e-68 3.66579e-68 3.74118e-69 1.54161e-69 1.6844e-70 6.29751e-71 7.33718e-72 2.49875e-72 3.09364e-73 9.62962e-74 1.26308e-74 3.60407e-75 4.995e-76 1.3099e-76 1.91376e-77 4.62275e-78 7.10492e-79 1.58393e-79 2.55628e-80 5.2686e-81 8.91402e-82 1.70107e-82 3.01284e-83 5.33042e-84 9.87024e-85 1.62086e-85 3.13418e-86 4.78199e-87 9.64614e-88 1.3686e-88 2.87734e-89 3.79901e-90 8.31769e-91 1.0226e-91 2.32994e-92 2.66865e-93 6.3236e-94 6.75041e-95 1.66265e-95 1.6547e-96 4.2343e-97 3.92961e-98 1.0443e-98 9.03857e-100 2.49373e-100 2.01301e-101 5.76431e-102 4.3396e-103 1.28948e-103 9.05254e-105 2.79082e-105 1.82664e-106 5.8421e-107 3.56395e-108 1.18246e-108 6.72095e-110 2.31331e-110 1.22451e-111 4.37265e-112 2.15441e-113 7.98259e-114 3.65855e-115 1.40682e-115 5.99341e-117 2.39235e-117 9.46622e-119 3.92354e-119 1.44062e-120 6.20239e-121 2.1111e-122 9.44517e-123 2.97676e-124 1.38468e-124 4.03577e-126 1.95291e-126 5.25652e-128 2.64775e-128 6.57164e-130 3.44815e-130 7.87835e-132 4.30951e-132 9.04751e-134 5.16404e-134 9.94177e-136 5.92684e-136 1.04401e-137 6.50789e-138 1.04633e-139 6.82828e-140 9.99343e-142 6.83683e-142 9.08123e-144 6.52285e-144 7.83767e-146 5.92053e-146 6.41196e-148 5.10336e-148 4.96147e-150 4.16943e-150 3.6224e-152 3.22167e-152 2.4887e-154 2.34865e-154 1.60404e-156 1.61108e-156 9.66559e-159 1.03671e-158 5.42385e-161 6.23652e-161 2.8216e-163 3.49357e-163 1.3537e-165 1.81418e-165 5.95295e-168 8.68778e-168 2.38219e-170 3.81322e-170 8.59946e-173 1.52291e-172 2.77069e-175 5.48594e-175 7.8624e-178 1.76343e-177 1.93192e-180 4.99041e-180 4.01944e-183 1.22184e-182 6.86721e-186 2.5284e-185 9.22087e-189 4.27945e-188 9.10146e-192 5.64237e-191 5.91147e-195 5.36016e-194 2.04903e-198 3.19614e-197 2.26542e-202 8.98545e-201 5.06364e-205 9.06933e-33 -5.10426e-32 1.58815e-33 -8.36606e-33 2.59903e-34 -1.27993e-33 3.98284e-35 -1.82655e-34 5.71868e-36 -2.42614e-35 7.69469e-37 -2.99229e-36 9.70422e-38 -3.41849e-37 1.14753e-38 -3.60694e-38 1.27298e-39 -3.50014e-39 1.32547e-40 -3.10153e-40 1.29612e-41 -2.47967e-41 1.19081e-42 -1.74561e-42 1.02828e-43 -1.02579e-43 8.35428e-45 -4.29041e-45 6.38202e-46 3.31124e-49 4.71734e-47 3.97746e-49 3.37785e-48 5.39736e-50 2.34398e-49 5.51971e-51 1.57694e-50 4.88688e-52 1.02874e-51 3.94569e-53 6.50838e-53 2.97209e-54 3.99338e-54 2.11349e-55 2.37647e-55 1.4292e-56 1.37172e-56 9.23462e-58 7.6798e-58 5.71997e-59 4.17064e-59 3.4043e-60 2.19702e-60 1.95021e-61 1.12267e-61 1.07678e-62 5.56495e-63 5.73594e-64 2.67586e-64 2.95033e-65 1.24813e-65 1.46623e-66 5.64728e-67 7.04408e-68 2.47854e-68 3.27279e-69 1.05515e-69 1.47106e-70 4.35693e-71 6.39849e-72 1.7449e-72 2.69374e-73 6.77732e-74 1.09784e-74 2.55279e-75 4.33198e-76 9.32411e-77 1.65515e-77 3.30215e-78 6.12385e-79 1.13381e-79 2.19414e-80 3.77393e-81 7.6131e-82 1.21759e-82 2.55808e-83 3.80722e-84 8.32358e-85 1.15359e-85 2.62257e-86 3.38658e-87 8.00076e-88 9.6309e-89 2.36312e-89 2.65269e-90 6.75679e-91 7.07512e-92 1.86999e-92 1.82691e-93 5.00862e-94 4.56597e-95 1.29808e-95 1.10427e-96 3.25466e-97 2.58362e-98 7.89298e-99 5.84608e-100 1.85099e-100 1.27894e-101 4.19646e-102 2.70422e-103 9.19512e-104 5.52438e-105 1.94667e-105 1.08996e-106 3.98058e-107 2.07606e-108 7.85889e-109 3.81577e-110 1.4975e-110 6.76444e-112 2.75284e-112 1.15602e-113 4.87982e-114 1.90346e-115 8.33723e-116 3.01793e-117 1.37215e-117 4.60453e-119 2.17417e-119 6.75573e-121 3.31455e-121 9.5246e-123 4.8585e-123 1.28932e-124 6.8424e-125 1.67431e-126 9.25123e-127 2.08382e-128 1.19978e-128 2.48309e-130 1.49111e-130 2.82974e-132 1.77411e-132 3.0803e-134 2.01854e-134 3.19858e-136 2.19358e-136 3.16378e-138 2.27381e-138 2.97609e-140 2.24498e-140 2.65773e-142 2.10784e-142 2.24883e-144 1.87873e-144 1.79906e-146 1.58655e-146 1.35746e-148 1.26668e-148 9.63467e-151 9.53802e-151 6.41285e-153 6.75558e-153 3.98913e-155 4.48706e-155 2.31002e-157 2.78525e-157 1.23967e-159 1.60941e-159 6.13312e-162 8.61817e-162 2.78021e-164 4.25438e-164 1.14641e-166 1.92428e-166 4.26258e-169 7.91672e-169 1.41393e-171 2.93665e-171 4.12853e-174 9.71631e-174 1.04314e-176 2.82878e-176 2.22979e-179 7.1206e-179 3.90949e-182 1.51361e-181 5.37824e-185 2.62845e-184 5.42575e-188 3.54937e-187 3.58852e-191 3.44412e-190 1.25895e-194 2.08884e-193 1.39242e-198 5.93135e-197 3.32915e-201 4.56099e-31 -1.82497e-30 8.16796e-32 -3.01525e-31 1.36828e-32 -4.64302e-32 2.14861e-33 -6.65718e-33 3.16552e-34 -8.85903e-34 4.3769e-35 -1.08928e-34 5.68044e-36 -1.23016e-35 6.92131e-37 -1.26531e-36 7.9205e-38 -1.16895e-37 8.5155e-39 -9.41478e-39 8.60879e-40 -6.25621e-40 8.18627e-41 -2.64904e-41 7.34346e-42 1.89508e-44 6.37572e-43 6.58048e-45 5.35396e-44 9.68694e-46 4.34817e-45 1.11964e-46 3.41609e-46 1.13796e-47 2.59694e-47 1.05869e-48 1.91064e-48 9.19917e-50 1.36061e-49 7.54597e-51 9.37936e-51 5.8835e-52 6.25949e-52 4.37851e-53 4.04453e-53 3.12e-54 2.53043e-54 2.13341e-55 1.53304e-55 1.40223e-56 8.99436e-57 8.87042e-58 5.11062e-58 5.4062e-59 2.81245e-59 3.177e-60 1.49908e-60 1.80137e-61 7.73934e-62 9.86023e-63 3.87022e-63 5.21267e-64 1.87468e-64 2.66246e-65 8.79588e-66 1.31429e-66 3.99755e-67 6.27177e-68 1.75981e-68 2.89384e-69 7.50383e-70 1.29128e-70 3.09911e-71 5.57295e-72 1.23967e-72 2.32658e-73 4.80257e-74 9.39623e-75 1.80181e-75 3.67129e-76 6.54613e-77 1.38781e-77 2.30284e-78 5.07563e-79 7.84341e-80 1.79598e-80 2.58621e-81 6.14824e-82 8.25443e-83 2.0362e-83 2.54988e-84 6.52357e-85 7.62251e-86 2.02166e-86 2.20472e-87 6.05964e-88 6.16891e-89 1.75652e-89 1.66949e-90 4.92339e-91 4.36903e-92 1.33418e-92 1.1054e-93 3.49488e-94 2.70318e-95 8.84764e-96 6.38766e-97 2.16426e-97 1.45812e-98 5.11412e-99 3.21435e-100 1.16708e-100 6.84069e-102 2.57142e-102 1.40493e-103 5.4683e-104 2.78347e-105 1.12199e-105 5.31759e-107 2.22035e-107 9.79131e-109 4.23617e-109 1.73681e-110 7.78853e-111 2.96632e-112 1.3793e-112 4.87517e-114 2.35159e-114 7.70546e-116 3.8576e-116 1.17045e-117 6.08506e-118 1.70743e-119 9.22394e-120 2.39012e-121 1.34265e-121 3.20788e-123 1.87529e-123 4.12415e-125 2.51109e-125 5.07377e-127 3.2207e-127 5.96664e-129 3.95272e-129 6.69902e-131 4.63688e-131 7.17142e-133 5.19304e-133 7.30947e-135 5.5452e-135 7.08216e-137 5.63752e-137 6.51156e-139 5.44816e-139 5.67027e-141 4.99626e-141 4.66647e-143 4.33947e-143 3.62074e-145 3.56198e-145 2.64157e-147 2.75658e-147 1.80663e-149 2.0059e-149 1.15431e-151 1.36833e-151 6.86323e-154 8.72027e-154 3.78027e-156 5.17157e-156 1.91883e-158 2.84126e-158 8.92073e-161 1.43855e-160 3.77096e-163 6.671e-163 1.43674e-165 2.8128e-165 4.88093e-168 1.0689e-167 1.45875e-170 3.62134e-170 3.76974e-173 1.07895e-172 8.23358e-176 2.77737e-175 1.47307e-178 6.03143e-178 2.06394e-181 1.06855e-180 2.11472e-184 1.46909e-183 1.41441e-187 1.44689e-186 4.98276e-191 8.86363e-190 5.45842e-195 2.52174e-193 1.39536e-197 1.937e-29 -5.13827e-29 3.55329e-30 -8.48334e-30 6.10378e-31 -1.29892e-30 9.83772e-32 -1.83932e-31 1.48927e-32 -2.39266e-32 2.11855e-33 -2.82657e-33 2.8323e-34 -2.96762e-34 3.55958e-35 -2.67033e-35 4.20856e-36 -1.85886e-36 4.67654e-37 -4.56561e-38 4.9583e-38 3.08782e-40 5.07296e-39 7.23219e-41 5.01009e-40 1.10925e-41 4.774e-41 1.4283e-42 4.3909e-42 1.64806e-43 3.89928e-43 1.75716e-44 3.34399e-44 1.75628e-45 2.76992e-45 1.65899e-46 2.21643e-46 1.48956e-47 1.7135e-47 1.27602e-48 1.28002e-48 1.04571e-49 9.24075e-50 8.21441e-51 6.44785e-51 6.19463e-52 4.349e-52 4.49008e-53 2.83582e-53 3.13123e-54 1.78783e-54 2.10251e-55 1.08987e-55 1.3602e-56 6.42469e-57 8.483e-58 3.66264e-58 5.1024e-59 2.01942e-59 2.96105e-60 1.0769e-60 1.65847e-61 5.55462e-62 8.96769e-63 2.77129e-63 4.68244e-64 1.33743e-64 2.36141e-65 6.24346e-66 1.15041e-66 2.81936e-67 5.41478e-68 1.23153e-68 2.46269e-69 5.20362e-70 1.08238e-70 2.12677e-71 4.59757e-72 8.40767e-73 1.88747e-73 3.21479e-74 7.48943e-75 1.18885e-75 2.87242e-76 4.25181e-77 1.06482e-77 1.47046e-78 3.81532e-79 4.91732e-80 1.32129e-80 1.58984e-81 4.42235e-82 4.96908e-83 1.43045e-83 1.5012e-84 4.47115e-85 4.38306e-86 1.35036e-86 1.23657e-87 3.94014e-88 3.37045e-89 1.11058e-89 8.87344e-91 3.02336e-91 2.256e-92 7.94806e-93 5.5376e-94 2.01732e-94 1.31198e-95 4.94238e-96 2.99938e-97 1.16853e-97 6.61452e-99 2.66542e-99 1.40663e-100 5.86393e-101 2.88349e-102 1.24385e-102 5.69558e-104 2.54302e-104 1.08355e-105 5.00916e-106 1.98451e-107 9.50236e-108 3.49721e-109 1.7352e-109 5.92677e-111 3.04863e-111 9.65342e-113 5.15061e-113 1.51018e-114 8.36288e-115 2.26753e-116 1.30412e-116 3.2653e-118 1.95183e-118 4.50582e-120 2.80154e-120 5.95266e-122 3.85323e-122 7.52149e-124 5.07379e-124 9.07992e-126 6.38988e-126 1.046e-127 7.68843e-128 1.14839e-129 8.82787e-130 1.19986e-131 9.66017e-132 1.19119e-133 1.00602e-133 1.12171e-135 9.95507e-136 9.99998e-138 9.34422e-138 8.42176e-140 8.30366e-140 6.6843e-142 6.97103e-142 4.98647e-144 5.51556e-144 3.48579e-146 4.10188e-146 2.27557e-148 2.85869e-148 1.38184e-150 1.86059e-150 7.77036e-153 1.1265e-152 4.02498e-155 6.31616e-155 1.90876e-157 3.26237e-157 8.22666e-160 1.54275e-159 3.1941e-162 6.63064e-162 1.10514e-164 2.56719e-164 3.36156e-167 8.8564e-167 8.83367e-170 2.68514e-169 1.95972e-172 7.02769e-172 3.55572e-175 1.54994e-174 5.04129e-178 2.78424e-177 5.20977e-181 3.87217e-180 3.49677e-184 3.84396e-183 1.2259e-187 2.36015e-186 1.31448e-191 6.66683e-190 3.59317e-194 6.88904e-28 -1.07011e-27 1.29678e-28 -1.72038e-28 2.28861e-29 -2.51982e-29 3.79295e-30 -3.3116e-30 5.91095e-31 -3.80876e-31 8.67013e-32 -3.55246e-32 1.1962e-32 -1.80651e-33 1.56218e-33 6.51623e-36 1.96344e-34 2.45761e-36 2.37496e-35 4.87149e-37 2.76515e-36 7.87593e-38 3.0993e-37 1.12641e-38 3.34534e-38 1.4737e-39 3.47829e-39 1.79636e-40 3.48442e-40 2.06094e-41 3.36369e-41 2.23899e-42 3.12975e-42 2.31355e-43 2.80732e-43 2.28011e-44 2.428e-44 2.14817e-45 2.02516e-45 1.93806e-46 1.62931e-46 1.6766e-47 1.26461e-47 1.39226e-48 9.47086e-49 1.11077e-49 6.84487e-50 8.52053e-51 4.77469e-51 6.28803e-52 3.21504e-52 4.46684e-53 2.08997e-53 3.05579e-54 1.31177e-54 2.01398e-55 7.95018e-56 1.27923e-56 4.65311e-57 7.8331e-58 2.63022e-58 4.62518e-59 1.436e-59 2.63412e-60 7.57281e-61 1.44725e-61 3.85769e-62 7.67244e-63 1.89838e-63 3.9253e-64 9.02483e-65 1.9383e-65 4.14484e-66 9.23912e-67 1.83906e-67 4.2515e-68 7.88325e-69 1.88882e-69 3.26463e-70 8.10228e-71 1.30609e-71 3.3559e-72 5.04794e-73 1.34218e-73 1.88468e-74 5.18349e-75 6.79702e-76 1.93304e-76 2.36773e-77 6.96082e-78 7.96606e-79 2.42029e-79 2.58828e-80 8.12535e-81 8.12064e-82 2.63363e-82 2.45994e-83 8.24086e-84 7.19377e-85 2.48915e-85 2.03056e-86 7.25667e-87 5.53128e-88 2.04162e-88 1.45379e-89 5.54235e-90 3.68593e-91 1.4515e-91 9.01283e-93 3.66655e-93 2.12484e-94 8.93134e-95 4.82859e-96 2.09743e-96 1.05731e-97 4.74731e-98 2.23008e-99 1.0353e-99 4.52913e-101 2.1747e-101 8.85323e-103 4.39829e-103 1.6649e-104 8.56143e-105 3.01063e-106 1.60323e-106 5.23217e-108 2.88682e-108 8.73387e-110 4.99567e-110 1.39945e-111 8.3036e-112 2.15098e-113 1.32485e-113 3.16896e-115 2.02769e-115 4.47139e-117 2.97469e-117 6.03705e-119 4.17964e-119 7.79184e-121 5.61959e-121 9.60339e-123 7.22301e-123 1.12894e-124 8.86581e-125 1.26421e-126 1.038e-126 1.34665e-128 1.15772e-128 1.3624e-130 1.22834e-130 1.30682e-132 1.23785e-132 1.18619e-134 1.18279e-134 1.01671e-136 1.06955e-136 8.20938e-139 9.1334e-139 6.2277e-141 7.34785e-141 4.42525e-143 5.55426e-143 2.93527e-145 3.93294e-145 1.81032e-147 2.59983e-147 1.03346e-149 1.5981e-149 5.43218e-152 9.09347e-152 2.61284e-154 4.7647e-154 1.14159e-156 2.28471e-156 4.49059e-159 9.95201e-159 1.57307e-161 3.90297e-161 4.84044e-164 1.36301e-163 1.28544e-166 4.17992e-166 2.87794e-169 1.10544e-168 5.26008e-172 2.46019e-171 7.49283e-175 4.45106e-174 7.74962e-178 6.2174e-177 5.17469e-181 6.17313e-180 1.78686e-184 3.76587e-183 1.84938e-188 1.04525e-186 5.41014e-191 2.03123e-26 -1.37454e-26 3.93207e-27 -1.91959e-27 7.14887e-28 -2.11285e-28 1.22096e-28 -1.06439e-29 1.97731e-29 1.0684e-31 3.07244e-30 4.24579e-32 4.58155e-31 1.00338e-32 6.55909e-32 1.96186e-33 9.01551e-33 3.41075e-34 1.19014e-33 5.43548e-35 1.50938e-34 8.0559e-36 1.8395e-35 1.12195e-36 2.15481e-36 1.47617e-37 2.42675e-37 1.84308e-38 2.62815e-38 2.18972e-39 2.73775e-39 2.48122e-40 2.74385e-40 2.68624e-41 2.6464e-41 2.7824e-42 2.45683e-42 2.7604e-43 2.1959e-43 2.62548e-44 1.88999e-44 2.39591e-45 1.56674e-45 2.09916e-46 1.25114e-46 1.76679e-47 9.62629e-48 1.42924e-48 7.13722e-49 1.11174e-49 5.10015e-50 8.31854e-51 3.51303e-51 5.98953e-52 2.33286e-52 4.15123e-53 1.49367e-53 2.77028e-54 9.22215e-55 1.78051e-55 5.49123e-56 1.10241e-56 3.15363e-57 6.57671e-58 1.74701e-58 3.78116e-59 9.3359e-60 2.0954e-60 4.81313e-61 1.11943e-61 2.39406e-62 5.7661e-63 1.14896e-63 2.86397e-64 5.3205e-65 1.37184e-65 2.37735e-66 6.33764e-67 1.02503e-67 2.82405e-68 4.26473e-69 1.21385e-69 1.7122e-70 5.03301e-71 6.63314e-72 2.01314e-72 2.47958e-73 7.76801e-74 8.94359e-75 2.8916e-75 3.11243e-76 1.03838e-76 1.04499e-77 3.59703e-78 3.38468e-79 1.20196e-79 1.05747e-80 3.87403e-81 3.18652e-82 1.20429e-82 9.25988e-84 3.61036e-84 2.59459e-85 1.04369e-85 7.00857e-87 2.90891e-87 1.82476e-88 7.81562e-89 4.57826e-90 2.0239e-90 1.10665e-91 5.0503e-92 2.57644e-93 1.21408e-93 5.77564e-95 2.81107e-95 1.24626e-96 6.26701e-97 2.58753e-98 1.34486e-98 5.16733e-100 2.77697e-100 9.92109e-102 5.51536e-102 1.83046e-103 1.05317e-103 3.24375e-105 1.93263e-105 5.51788e-107 3.40641e-107 9.00472e-109 5.76375e-109 1.4088e-110 9.35637e-111 2.11148e-112 1.45617e-112 3.02926e-114 2.17123e-114 4.1564e-116 3.09912e-116 5.4489e-118 4.23088e-118 6.81795e-120 5.51909e-120 8.13298e-122 6.87213e-122 9.23726e-124 8.15833e-124 9.97526e-126 9.22245e-126 1.02263e-127 9.91329e-128 9.9354e-130 1.01168e-129 9.13042e-132 9.78544e-132 7.91976e-134 8.95365e-134 6.46867e-136 7.73357e-136 4.96177e-138 6.29052e-138 3.56338e-140 4.80573e-140 2.38779e-142 3.43782e-142 1.48706e-144 2.29491e-144 8.56809e-147 1.42396e-146 4.54323e-149 8.17528e-149 2.20326e-151 4.32e-151 9.69985e-154 2.08802e-153 3.84205e-156 9.16274e-156 1.35413e-158 3.61776e-158 4.1882e-161 1.27098e-160 1.11657e-163 3.91737e-163 2.50554e-166 1.03997e-165 4.57966e-169 2.31957e-168 6.50336e-172 4.19629e-171 6.67417e-175 5.84162e-174 4.39012e-178 5.75145e-177 1.47518e-181 3.45191e-180 1.44844e-185 9.30105e-184 4.54392e-188 4.91064e-25 1.74143e-28 9.93904e-26 9.83445e-28 1.9229e-26 3.61477e-28 3.5586e-27 9.73344e-29 6.30212e-28 2.23488e-29 1.0682e-28 4.63393e-30 1.73379e-29 8.85993e-31 2.69577e-30 1.58273e-31 4.01666e-31 2.66151e-32 5.73701e-32 4.23126e-33 7.85731e-33 6.38081e-34 1.03221e-33 9.14569e-35 1.30105e-34 1.24829e-35 1.57393e-35 1.62499e-36 1.82797e-36 2.01995e-37 2.03871e-37 2.4003e-38 2.18405e-38 2.72906e-39 2.24798e-39 2.97109e-40 2.22357e-40 3.0993e-41 2.11414e-41 3.09964e-42 1.93256e-42 2.9736e-43 1.69879e-43 2.73766e-44 1.43629e-44 2.41982e-45 1.1682e-45 2.05427e-46 9.14208e-47 1.67555e-47 6.885e-48 1.31346e-48 4.99073e-49 9.89845e-50 3.48251e-50 7.1734e-51 2.33968e-51 5.00034e-52 1.51361e-52 3.35346e-53 9.43025e-54 2.1642e-54 5.659e-55 1.34432e-55 3.27124e-56 8.0387e-57 1.82176e-57 4.62831e-58 9.77494e-59 2.56615e-59 5.05387e-60 1.37033e-60 2.518e-61 7.04871e-62 1.20903e-62 3.4929e-63 5.59501e-64 1.66763e-64 2.49554e-65 7.67172e-66 1.07287e-66 3.40093e-67 4.44588e-68 1.45292e-68 1.77585e-69 5.98206e-70 6.83744e-71 2.37377e-71 2.53755e-72 9.07852e-73 9.07737e-74 3.34645e-74 3.12975e-75 1.1889e-75 1.04002e-76 4.07081e-77 3.33061e-78 1.34332e-78 1.02782e-79 4.27183e-80 3.05615e-81 1.30903e-81 8.75466e-83 3.86494e-83 2.41572e-84 1.09937e-84 6.4198e-86 3.01227e-86 1.64278e-87 7.9491e-88 4.04691e-89 2.01994e-89 9.59507e-91 4.94151e-91 2.18893e-92 1.16353e-92 4.8033e-94 2.63621e-94 1.01351e-95 5.74554e-96 2.05555e-97 1.20417e-97 4.00557e-99 2.42598e-99 7.49614e-101 4.69629e-101 1.34658e-102 8.73162e-103 2.32065e-104 1.55845e-104 3.83451e-106 2.66877e-106 6.07079e-108 4.3822e-108 9.20248e-110 6.89528e-110 1.33458e-111 1.03891e-111 1.85007e-113 1.49773e-113 2.4492e-115 2.06413e-115 3.09313e-117 2.71695e-117 3.72232e-119 3.41205e-119 4.26303e-121 4.08358e-121 4.63991e-123 4.65168e-123 4.79198e-125 5.03638e-125 4.68804e-127 5.17483e-127 4.33622e-129 5.03735e-129 3.78401e-131 4.6367e-131 3.10798e-133 4.02712e-133 2.39621e-135 3.2925e-135 1.72891e-137 2.5272e-137 1.16338e-139 1.81559e-139 7.27201e-142 1.21664e-141 4.2032e-144 7.57444e-144 2.23451e-146 4.36114e-146 1.08576e-148 2.3099e-148 4.786e-151 1.1184e-150 1.89652e-153 4.91307e-153 6.68071e-156 1.94042e-155 2.06273e-158 6.81271e-158 5.48151e-161 2.09607e-160 1.22366e-163 5.5465e-163 2.21904e-166 1.23066e-165 3.11443e-169 2.20868e-168 3.14106e-172 3.0381e-171 2.0124e-175 2.93784e-174 6.48612e-179 1.7153e-177 5.90918e-183 4.42301e-181 1.9953e-185 1.10619e-23 4.05088e-25 2.42373e-24 1.09618e-25 5.07754e-25 2.71875e-26 1.01699e-25 6.24901e-27 1.94722e-26 1.34563e-27 3.56423e-27 2.72692e-28 6.23767e-28 5.22639e-29 1.04398e-28 9.49909e-30 1.6715e-29 1.64107e-30 2.56102e-30 2.69853e-31 3.75632e-31 4.22864e-32 5.27593e-32 6.31939e-33 7.09842e-33 9.01344e-34 9.15133e-34 1.22787e-34 1.13082e-34 1.59864e-35 1.33971e-35 1.99046e-36 1.52216e-36 2.37142e-37 1.65901e-37 2.70481e-38 1.73497e-38 2.95493e-39 1.74137e-39 3.0933e-40 1.67783e-40 3.10409e-41 1.55225e-41 2.98703e-42 1.37919e-42 2.75732e-43 1.17712e-43 2.44237e-44 9.65254e-45 2.07655e-45 7.60617e-46 1.69512e-46 5.76067e-47 1.32891e-47 4.1941e-48 1.00078e-48 2.93586e-49 7.24156e-50 1.97621e-50 5.03581e-51 1.27937e-51 3.36621e-52 7.96696e-53 2.16339e-53 4.77288e-54 1.337e-54 2.75117e-55 7.94713e-56 1.52601e-56 4.54402e-57 8.14617e-58 2.49972e-58 4.18552e-59 1.32319e-59 2.07009e-60 6.74058e-61 9.85623e-62 3.30494e-62 4.51803e-63 1.55981e-63 1.99403e-64 7.08704e-65 8.4739e-66 3.10012e-66 3.46755e-67 1.3057e-67 1.36635e-68 5.29525e-69 5.18453e-70 2.06788e-70 1.89436e-71 7.77626e-72 6.66527e-73 2.81598e-73 2.25818e-74 9.81977e-75 7.36659e-76 3.29742e-76 2.31371e-77 1.06618e-77 6.99604e-79 3.31933e-79 2.03632e-80 9.94929e-81 5.70477e-82 2.87089e-82 1.53801e-83 7.97387e-84 3.98965e-85 2.13151e-85 9.95583e-87 5.48274e-87 2.38939e-88 1.3568e-88 5.51381e-90 3.22955e-90 1.22306e-91 7.39212e-92 2.60693e-93 1.62657e-93 5.33761e-95 3.43964e-95 1.04936e-96 6.98775e-97 1.98004e-98 1.36325e-98 3.58411e-100 2.55292e-100 6.22042e-102 4.58686e-102 1.0345e-103 7.90277e-104 1.64755e-105 1.30489e-105 2.51092e-107 2.0636e-107 3.65912e-109 3.12338e-109 5.09446e-111 4.521e-111 6.77003e-113 6.25297e-113 8.57837e-115 8.25607e-115 1.03525e-116 1.03956e-116 1.18842e-118 1.24686e-118 1.2959e-120 1.42277e-120 1.34024e-122 1.5424e-122 1.31238e-124 1.58614e-124 1.21444e-126 1.54463e-126 1.05976e-128 1.42173e-128 8.69999e-131 1.23423e-130 6.70094e-133 1.00816e-132 4.82765e-135 7.72765e-135 3.24196e-137 5.54145e-137 2.02125e-139 3.70468e-139 1.16457e-141 2.29984e-141 6.16747e-144 1.31966e-143 2.98318e-146 6.96145e-146 1.30792e-148 3.35469e-148 5.14998e-151 1.46559e-150 1.80054e-153 5.75116e-153 5.50972e-156 2.00399e-155 1.44842e-158 6.11068e-158 3.19083e-161 1.59966e-160 5.69129e-164 3.50282e-163 7.81916e-167 6.18327e-166 7.6649e-170 8.32466e-169 4.71952e-173 7.82079e-172 1.43327e-176 4.38407e-175 1.1761e-180 1.06309e-178 4.30249e-183 2.45915e-22 1.88897e-23 5.76194e-23 4.88121e-24 1.28834e-23 1.18948e-24 2.7502e-24 2.74115e-25 5.60737e-25 5.98844e-26 1.09234e-25 1.2427e-26 2.03369e-26 2.45342e-27 3.61937e-27 4.61407e-28 6.15864e-28 8.27445e-29 1.00211e-28 1.41585e-29 1.55955e-29 2.31268e-30 2.32172e-30 3.60707e-31 3.30692e-31 5.37334e-32 4.50744e-32 7.64731e-33 5.8806e-33 1.04014e-33 7.34509e-34 1.35251e-34 8.78536e-35 1.68198e-35 1.0065e-35 2.00117e-36 1.10475e-36 2.2787e-37 1.16202e-37 2.48411e-38 1.17156e-38 2.59344e-39 1.13245e-39 2.5938e-40 1.04973e-40 2.48589e-41 9.33326e-42 2.28367e-42 7.96124e-43 2.01145e-43 6.51643e-44 1.69913e-44 5.11929e-45 1.37686e-45 3.8607e-46 1.07056e-46 2.79552e-47 7.98888e-48 1.94393e-48 5.7229e-49 1.29836e-49 3.93637e-50 8.33079e-51 2.60025e-51 5.13598e-52 1.64991e-52 3.04282e-53 1.00581e-53 1.73265e-54 5.89197e-55 9.48398e-56 3.31718e-56 4.99084e-57 1.79519e-57 2.52531e-58 9.34017e-59 1.22875e-59 4.67261e-60 5.74993e-61 2.24792e-61 2.58795e-62 1.04009e-62 1.12041e-63 4.62888e-64 4.66612e-65 1.98168e-65 1.86945e-66 8.16164e-67 7.20558e-68 3.23396e-68 2.67196e-69 1.2329e-69 9.53238e-71 4.52237e-71 3.27173e-72 1.59609e-72 1.08031e-73 5.42003e-74 3.43156e-75 1.77088e-75 1.04853e-76 5.56672e-77 3.08158e-78 1.68348e-78 8.71014e-80 4.89754e-80 2.36744e-81 1.37045e-81 6.18679e-83 3.68817e-83 1.55419e-84 9.54448e-85 3.75237e-86 2.3747e-86 8.70487e-88 5.67924e-88 1.9398e-89 1.30525e-89 4.15105e-91 2.88206e-91 8.52737e-93 6.11202e-93 1.68098e-94 1.24449e-94 3.17844e-96 2.43198e-96 5.76195e-98 4.55939e-98 1.00093e-99 8.19649e-100 1.66518e-101 1.41221e-101 2.65139e-103 2.33063e-103 4.03773e-105 3.68193e-105 5.8765e-107 5.56425e-107 8.16679e-109 8.03772e-109 1.08276e-110 1.10889e-110 1.36808e-112 1.45973e-112 1.64552e-114 1.83162e-114 1.88175e-116 2.18823e-116 2.04307e-118 2.48597e-118 2.10281e-120 2.68193e-120 2.04819e-122 2.74334e-122 1.88437e-124 2.65613e-124 1.63402e-126 2.42958e-126 1.3323e-128 2.09505e-128 1.01865e-130 1.69904e-130 7.28097e-133 1.29234e-132 4.8481e-135 9.19152e-135 2.99516e-137 6.09127e-137 1.70886e-139 3.7462e-139 8.95477e-142 2.12818e-141 4.28216e-144 1.11069e-143 1.85426e-146 5.29095e-146 7.20274e-149 2.28284e-148 2.48075e-151 8.83727e-151 7.46503e-154 3.03366e-153 1.92546e-156 9.09761e-156 4.14925e-159 2.33705e-158 7.20923e-162 5.00686e-161 9.59043e-165 8.61099e-164 9.02049e-168 1.12263e-166 5.25132e-171 1.01181e-169 1.46796e-174 5.35966e-173 1.03776e-178 1.19504e-176 4.16041e-181 4.71435e-21 5.72231e-22 1.18031e-21 1.51822e-22 2.8141e-22 3.81914e-23 6.3916e-23 9.11451e-24 1.38354e-23 2.06615e-24 2.85542e-24 4.45412e-25 5.62132e-25 9.14013e-26 1.05605e-25 1.78702e-26 1.89403e-26 3.33165e-27 3.24417e-27 5.92704e-28 5.30851e-28 1.00663e-28 8.3006e-29 1.6326e-29 1.24053e-29 2.52897e-30 1.77235e-30 3.74219e-31 2.42108e-31 5.29045e-32 3.16267e-32 7.14702e-33 3.95146e-33 9.22806e-34 4.72273e-34 1.13906e-34 5.40059e-35 1.34441e-35 5.90996e-36 1.51764e-36 6.19031e-37 1.63896e-37 6.20748e-38 1.6937e-38 5.96059e-39 1.67528e-39 5.48189e-40 1.58646e-40 4.82989e-41 1.43871e-41 4.07764e-42 1.24979e-42 3.29947e-43 1.04023e-43 2.5594e-44 8.29772e-45 1.90366e-45 6.34503e-46 1.35797e-46 4.65222e-47 9.29255e-48 3.27145e-48 6.10111e-49 2.20685e-49 3.84415e-50 1.42842e-50 2.32482e-51 8.87319e-52 1.34976e-52 5.29094e-53 7.52448e-54 3.029e-54 4.02827e-55 1.66517e-55 2.07133e-56 8.79192e-57 1.02312e-57 4.4591e-58 4.85526e-59 2.17276e-59 2.21387e-60 1.01727e-60 9.70047e-62 4.57695e-62 4.08482e-63 1.97914e-63 1.65319e-64 8.22586e-65 6.43093e-66 3.28643e-66 2.40459e-67 1.26221e-67 8.64245e-69 4.66046e-69 2.98585e-70 1.65435e-70 9.91581e-72 5.64588e-72 3.16525e-73 1.85243e-73 9.71148e-75 5.84317e-75 2.86373e-76 1.77186e-76 8.11533e-78 5.16485e-78 2.20983e-79 1.44709e-79 5.78137e-81 3.89665e-81 1.45294e-82 1.00829e-82 3.50692e-84 2.50675e-84 8.12769e-86 5.9866e-86 1.80826e-87 1.37308e-87 3.8608e-89 3.02377e-89 7.90817e-91 6.39164e-91 1.55345e-92 1.29642e-92 2.92525e-94 2.52224e-94 5.27804e-96 4.705e-96 9.12027e-98 8.41137e-98 1.50843e-99 1.44042e-99 2.38644e-101 2.36147e-101 3.60903e-103 3.70405e-103 5.21332e-105 5.55491e-105 7.18718e-107 7.9589e-107 9.44761e-109 1.08854e-108 1.18294e-110 1.41986e-110 1.40925e-112 1.7645e-112 1.59536e-114 2.08678e-114 1.71384e-116 2.34571e-116 1.74443e-118 2.5027e-118 1.67944e-120 2.53054e-120 1.52639e-122 2.42073e-122 1.30686e-124 2.18661e-124 1.05149e-126 1.86107e-126 7.92869e-129 1.4889e-128 5.58563e-131 1.1166e-130 3.66332e-133 7.82554e-133 2.22757e-135 5.10706e-135 1.24992e-137 3.09098e-137 6.43596e-140 1.72676e-139 3.02107e-142 8.85458e-142 1.2826e-144 4.14043e-144 4.87779e-147 1.75158e-146 1.64194e-149 6.63937e-149 4.81833e-152 2.22794e-151 1.20851e-154 6.51737e-154 2.52273e-157 1.62861e-156 4.22323e-160 3.3813e-159 5.37095e-163 5.6058e-162 4.77157e-166 6.99028e-165 2.57154e-169 5.95362e-168 6.4038e-173 2.9209e-171 3.62135e-177 5.80736e-175 1.62551e-179 6.61944e-20 1.13043e-20 1.78004e-20 3.16391e-21 4.54642e-21 8.39536e-22 1.10327e-21 2.11193e-22 2.54473e-22 5.0404e-23 5.58129e-23 1.14232e-23 1.16455e-23 2.46033e-24 2.31266e-24 5.03971e-25 4.37322e-25 9.82512e-26 7.87814e-26 1.82427e-26 1.35261e-26 3.22781e-27 2.21428e-27 5.44489e-28 3.4575e-28 8.75937e-29 5.15127e-29 1.34423e-29 7.32522e-30 1.96832e-30 9.94501e-31 2.75074e-31 1.28937e-31 3.6698e-32 1.59678e-32 4.67501e-33 1.88932e-33 5.68822e-34 2.13625e-34 6.61196e-35 2.30879e-35 7.34423e-36 2.38558e-36 7.797e-37 2.3571e-37 7.91367e-38 2.22757e-38 7.68073e-39 2.01398e-39 7.13029e-40 1.7424e-40 6.33287e-41 1.44282e-41 5.3826e-42 1.1438e-42 4.37915e-43 8.68281e-44 3.41119e-44 6.3132e-45 2.54477e-45 4.39761e-46 1.81856e-46 2.93536e-47 1.24522e-47 1.87794e-48 8.17169e-49 1.15178e-49 5.14073e-50 6.77356e-51 3.10088e-51 3.82043e-52 1.79384e-52 2.06698e-53 9.95435e-54 1.07293e-54 5.29979e-55 5.34427e-56 2.7077e-56 2.5548e-57 1.32775e-57 1.1723e-58 6.24988e-59 5.16405e-60 2.82446e-60 2.18406e-61 1.22564e-61 8.86958e-63 5.10748e-63 3.45895e-64 2.04414e-64 1.29544e-65 7.85805e-66 4.65955e-67 2.90166e-67 1.60967e-68 1.02927e-68 5.3408e-70 3.50735e-70 1.70194e-71 1.14815e-71 5.20885e-73 3.61069e-73 1.531e-74 1.09078e-74 4.32129e-76 3.16535e-76 1.17115e-77 8.82286e-78 3.04735e-79 2.36189e-79 7.61157e-81 6.07181e-81 1.8247e-82 1.49872e-82 4.19741e-84 3.55132e-84 9.26275e-86 8.07667e-86 1.9604e-87 1.76257e-87 3.97797e-89 3.68984e-89 7.73628e-91 7.40766e-91 1.4414e-92 1.42565e-92 2.57174e-94 2.62925e-94 4.3918e-96 4.64455e-96 7.17448e-98 7.85474e-98 1.12048e-99 1.27104e-99 1.67184e-101 1.96679e-101 2.38138e-103 2.90828e-103 3.23555e-105 4.10646e-105 4.18943e-107 5.53213e-107 5.16425e-109 7.10416e-109 6.05361e-111 8.68735e-111 6.73959e-113 1.01048e-112 7.11641e-115 1.11658e-114 7.1158e-117 1.1705e-116 6.72625e-119 1.16226e-118 5.99887e-121 1.09128e-120 5.03698e-123 9.67012e-123 3.97204e-125 8.06959e-125 2.93358e-127 6.32608e-127 2.02279e-129 4.64602e-129 1.2975e-131 3.18657e-131 7.71006e-134 2.03376e-133 4.22373e-136 1.20283e-135 2.12106e-138 6.56051e-138 9.69829e-141 3.28124e-140 4.00488e-143 1.49478e-142 1.47883e-145 6.15213e-145 4.82282e-148 2.26496e-147 1.36734e-150 7.36669e-150 3.30112e-153 2.08313e-152 6.59979e-156 5.01421e-155 1.05064e-158 9.97938e-158 1.25716e-161 1.57501e-160 1.03329e-164 1.85043e-163 5.00336e-168 1.46074e-166 1.05341e-171 6.45727e-170 4.06798e-176 1.09226e-173 2.14911e-178 5.80049e-19 1.31372e-19 1.70116e-19 3.97677e-20 4.71613e-20 1.13704e-20 1.23675e-20 3.07089e-21 3.06969e-21 7.83949e-22 7.21581e-22 1.89345e-22 1.60732e-22 4.33072e-23 3.39463e-23 9.3877e-24 6.80147e-24 1.93011e-24 1.29354e-24 3.76661e-25 2.33652e-25 6.9817e-26 4.01062e-26 1.22991e-26 6.54544e-27 2.06018e-27 1.01619e-27 3.28286e-28 1.50155e-28 4.97845e-29 2.11267e-29 7.18809e-30 2.83172e-30 9.88538e-31 3.61727e-31 1.29544e-31 4.40553e-32 1.61831e-32 5.1176e-33 1.92795e-33 5.67206e-34 2.19118e-34 6.00024e-35 2.37661e-35 6.06019e-36 2.46082e-36 5.84554e-37 2.43319e-37 5.38653e-38 2.29815e-38 4.74309e-39 2.07401e-39 3.99205e-40 1.78894e-40 3.21239e-41 1.4752e-41 2.47213e-42 1.16331e-42 1.81984e-43 8.77486e-44 1.28181e-44 6.33292e-45 8.64065e-46 4.37418e-46 5.57585e-47 2.89221e-47 3.44523e-48 1.83109e-48 2.03878e-49 1.11032e-49 1.15575e-50 6.4497e-51 6.27754e-52 3.58997e-52 3.2677e-53 1.91512e-53 1.63045e-54 9.79365e-55 7.79944e-56 4.80205e-56 3.57757e-57 2.25799e-57 1.5738e-58 1.01837e-58 6.64062e-60 4.40606e-60 2.68797e-61 1.82901e-61 1.04387e-62 7.28548e-63 3.88964e-64 2.78501e-64 1.39076e-65 1.02179e-65 4.77196e-67 3.59826e-67 1.5713e-68 1.21632e-68 4.9653e-70 3.94674e-70 1.50575e-71 1.22934e-71 4.38195e-73 3.67576e-73 1.22367e-74 1.05499e-74 3.27879e-76 2.90635e-76 8.42875e-78 7.6845e-78 2.07853e-79 1.94986e-79 4.91612e-81 4.74734e-81 1.115e-82 1.10889e-82 2.42447e-84 2.48445e-84 5.05279e-86 5.33798e-86 1.00899e-87 1.09955e-87 1.92989e-89 2.17074e-89 3.5343e-91 4.10594e-91 6.19451e-93 7.43804e-93 1.03856e-94 1.2899e-94 1.66473e-96 2.1404e-96 2.54965e-98 3.39655e-98 3.72861e-100 5.1514e-100 5.2026e-102 7.46214e-102 6.92057e-104 1.03165e-103 8.76824e-106 1.36009e-105 1.05704e-107 1.70834e-107 1.21111e-109 2.04227e-109 1.31717e-111 2.32108e-111 1.35789e-113 2.50474e-113 1.32486e-115 2.56286e-115 1.22123e-117 2.48255e-117 1.06146e-119 2.27263e-119 8.6802e-122 1.96232e-121 6.66188e-124 1.59466e-123 4.78498e-126 1.2166e-125 3.20614e-128 8.68936e-128 1.99664e-130 5.79158e-130 1.15074e-132 3.58903e-132 6.10738e-135 2.05912e-134 2.96745e-137 1.08833e-136 1.31079e-139 5.26836e-139 5.21956e-142 2.31957e-141 1.85434e-144 9.21094e-144 5.80178e-147 3.2649e-146 1.57225e-149 1.01966e-148 3.61036e-152 2.75914e-151 6.81834e-155 6.32583e-154 1.01515e-157 1.19144e-156 1.11881e-160 1.7629e-159 8.2582e-164 1.914e-162 3.42537e-167 1.3637e-165 5.51519e-171 5.21076e-169 8.01439e-176 6.89795e-173 6.32669e-178 2.91891e-18 8.55505e-19 9.43221e-19 2.84384e-19 2.86099e-19 8.86997e-20 8.15851e-20 2.59811e-20 2.19e-20 7.155e-21 5.53961e-21 1.85499e-21 1.32165e-21 4.53313e-22 2.9766e-22 1.04535e-22 6.33317e-23 2.27697e-23 1.27389e-23 4.6888e-24 2.42417e-24 9.13549e-25 4.3673e-25 1.68536e-25 7.45378e-26 2.94599e-26 1.20598e-26 4.88221e-27 1.85093e-27 7.67533e-28 2.69647e-28 1.14531e-28 3.73101e-29 1.62313e-29 4.90612e-30 2.18592e-30 6.13446e-31 2.79907e-31 7.29755e-32 3.4098e-32 8.26349e-33 3.95374e-33 8.91141e-34 4.3658e-34 9.1564e-35 4.59301e-35 8.9678e-36 4.60574e-36 8.37543e-37 4.40402e-37 7.46199e-38 4.01714e-38 6.34435e-39 3.49674e-39 5.14938e-40 2.90565e-40 3.99117e-41 2.30571e-41 2.95503e-42 1.74778e-42 2.09061e-43 1.26598e-43 1.41371e-44 8.7651e-45 9.14001e-46 5.80238e-46 5.65137e-47 3.67366e-47 3.34269e-48 2.22512e-48 1.89184e-49 1.2897e-49 1.02477e-50 7.15508e-51 5.31408e-52 3.80049e-52 2.63865e-53 1.93316e-53 1.25483e-54 9.41877e-55 5.71634e-56 4.39656e-56 2.49497e-57 1.96657e-57 1.04352e-58 8.43069e-59 4.18298e-60 3.46455e-60 1.60725e-61 1.36498e-61 5.92031e-63 5.15652e-63 2.09078e-64 1.86806e-64 7.07965e-66 6.49037e-66 2.29867e-67 2.16284e-67 7.15681e-69 6.91319e-69 2.13671e-70 2.11957e-70 6.11714e-72 6.23353e-72 1.67924e-73 1.75846e-73 4.41989e-75 4.75802e-75 1.11533e-76 1.23477e-76 2.69799e-78 3.07309e-78 6.25538e-80 7.33397e-80 1.38984e-81 1.67808e-81 2.95858e-83 3.68057e-83 6.03246e-85 7.73666e-85 1.17781e-86 1.55818e-86 2.20129e-88 3.00596e-88 3.93675e-90 5.55267e-90 6.73398e-92 9.81773e-92 1.10121e-93 1.66083e-93 1.72067e-95 2.68681e-95 2.5674e-97 4.15443e-97 3.65569e-99 6.13606e-99 4.96363e-101 8.6513e-101 6.42132e-103 1.16349e-102 7.90759e-105 1.49135e-104 9.26005e-107 1.82023e-106 1.03e-108 2.11331e-108 1.08683e-110 2.33129e-110 1.08636e-112 2.44049e-112 1.02704e-114 2.42098e-114 9.16707e-117 2.27225e-116 7.70971e-119 2.0142e-118 6.09587e-121 1.68295e-120 4.5198e-123 1.3225e-122 3.13353e-125 9.74923e-125 2.02461e-127 6.72284e-127 1.21449e-129 4.32229e-129 6.73394e-132 2.58115e-131 3.43342e-134 1.42544e-133 1.59999e-136 7.24256e-136 6.76493e-139 3.36524e-138 2.57224e-141 1.41962e-140 8.69962e-144 5.38936e-143 2.58118e-146 1.8213e-145 6.59928e-149 5.40402e-148 1.41968e-151 1.38283e-150 2.48671e-154 2.97918e-153 3.38253e-157 5.22533e-156 3.32439e-160 7.10357e-159 2.09593e-163 6.93575e-162 6.77431e-167 4.2814e-165 6.2541e-171 1.31392e-168 -2.50018e-181 1.11724e-172 8.11173e-179 9.04276e-18 3.42276e-18 3.2108e-18 1.25042e-18 1.06278e-18 4.25652e-19 3.28646e-19 1.35223e-19 9.51135e-20 4.01549e-20 2.58015e-20 1.11643e-20 6.56904e-21 2.9109e-21 1.57147e-21 7.1278e-22 3.53583e-22 1.64117e-22 7.48956e-23 3.55707e-23 1.49476e-23 7.26432e-24 2.81315e-24 1.3991e-24 4.99659e-25 2.54337e-25 8.38223e-26 4.36728e-26 1.3292e-26 7.08877e-27 1.99391e-27 1.08845e-27 2.8316e-28 1.58213e-28 3.80974e-29 2.17867e-29 4.85971e-30 2.8443e-30 5.88142e-31 3.52291e-31 6.75775e-32 4.14253e-32 7.37651e-33 4.62757e-33 7.65415e-34 4.91396e-34 7.55429e-35 4.96316e-35 7.09547e-36 4.77064e-36 6.34581e-37 4.36634e-37 5.40661e-38 3.80712e-38 4.39034e-39 3.16388e-39 3.39935e-40 2.50715e-40 2.51072e-41 1.89524e-41 1.76961e-42 1.36723e-42 1.19067e-43 9.41627e-44 7.65056e-45 6.19346e-45 4.696e-46 3.89182e-46 2.75444e-47 2.33711e-47 1.54432e-48 1.34167e-48 8.27876e-50 7.36512e-50 4.24456e-51 3.86727e-51 2.08184e-52 1.94283e-52 9.77047e-54 9.3406e-54 4.38865e-55 4.29862e-55 1.88704e-56 1.89405e-56 7.7687e-58 7.99184e-58 3.0627e-59 3.2298e-59 1.15642e-60 1.2504e-60 4.18251e-62 4.63802e-62 1.44916e-63 1.64846e-63 4.81055e-65 5.61481e-65 1.53003e-66 1.8329e-66 4.66286e-68 5.73482e-68 1.36164e-69 1.71987e-69 3.81003e-71 4.94396e-71 1.0215e-72 1.36225e-72 2.62406e-74 3.59774e-74 6.45794e-76 9.10687e-76 1.52249e-77 2.20923e-77 3.43789e-79 5.13566e-79 7.4342e-81 1.14386e-80 1.53918e-82 2.44062e-82 3.05037e-84 4.98753e-84 5.78496e-86 9.75939e-86 1.04952e-87 1.82806e-87 1.8208e-89 3.27677e-89 3.01948e-91 5.61862e-91 4.78401e-93 9.21211e-93 7.23789e-95 1.44354e-94 1.04504e-96 2.16077e-96 1.43899e-98 3.08773e-98 1.8883e-100 4.20951e-100 2.35942e-102 5.47096e-102 2.80453e-104 6.77292e-104 3.16798e-106 7.97934e-106 3.39681e-108 8.93697e-108 3.45278e-110 9.5049e-110 3.32236e-112 9.587e-112 3.02138e-114 9.15745e-114 2.59212e-116 8.27042e-116 2.09368e-118 7.04952e-118 1.58842e-120 5.65967e-120 1.12897e-122 4.27e-122 7.49483e-125 3.01955e-124 4.63136e-127 1.99548e-126 2.65338e-129 1.2282e-128 1.40289e-131 7.01301e-131 6.80809e-134 3.69806e-133 3.01295e-136 1.79123e-135 1.20654e-138 7.91907e-138 4.33042e-141 3.17115e-140 1.37653e-143 1.1395e-142 3.81688e-146 3.63156e-145 9.0497e-149 1.0113e-147 1.78572e-151 2.41301e-150 2.82249e-154 4.80343e-153 3.3752e-157 7.68071e-156 2.78549e-160 9.32161e-159 1.34085e-163 7.84139e-162 2.48463e-167 3.89305e-165 -2.85929e-176 8.07052e-169 -4.24198e-182 1.87447e-173 4.75979e-180 1.89475e-17 9.47661e-18 7.23785e-18 3.73758e-18 2.56395e-18 1.36587e-18 8.44275e-19 4.63397e-19 2.58953e-19 1.46228e-19 7.41126e-20 4.29977e-20 1.98231e-20 1.18028e-20 4.96196e-21 3.0296e-21 1.16376e-21 7.28277e-22 2.56022e-22 1.64167e-22 5.28862e-23 3.4742e-23 1.02678e-23 6.90986e-24 1.87539e-24 1.29286e-24 3.2254e-25 2.27773e-25 5.22805e-26 3.78176e-26 7.9936e-27 5.92245e-27 1.15389e-27 8.75567e-28 1.57388e-28 1.22299e-28 2.03009e-29 1.61534e-29 2.47821e-30 2.01909e-30 2.86534e-31 2.39025e-31 3.14015e-32 2.68195e-32 3.26415e-33 2.85424e-33 3.22059e-34 2.88316e-34 3.01809e-35 2.76615e-35 2.68804e-36 2.52225e-36 2.27673e-37 2.18712e-37 1.83487e-38 1.80462e-38 1.40786e-39 1.41764e-39 1.02896e-40 1.06083e-40 7.16698e-42 7.56564e-42 4.75964e-43 5.14478e-43 3.01509e-44 3.33737e-44 1.82261e-45 2.06604e-45 1.05176e-46 1.22108e-46 5.796e-48 6.89245e-48 3.05118e-49 3.71688e-49 1.53487e-50 1.91557e-50 7.38e-52 9.43749e-52 3.39265e-53 4.44604e-53 1.49149e-54 2.00335e-54 6.27186e-56 8.63588e-56 2.52317e-57 3.56215e-57 9.7129e-59 1.40622e-58 3.57823e-60 5.31383e-60 1.26172e-61 1.92237e-61 4.25871e-63 6.6588e-63 1.37612e-64 2.20869e-64 4.25726e-66 7.016e-66 1.26101e-67 2.13449e-67 3.57628e-69 6.21966e-69 9.71119e-71 1.73588e-70 2.52484e-72 4.64043e-72 6.28485e-74 1.18815e-73 1.4977e-75 2.91367e-75 3.41649e-77 6.84281e-77 7.4594e-79 1.53891e-78 1.55857e-80 3.31374e-80 3.11575e-82 6.83099e-82 5.95814e-84 1.34779e-83 1.08956e-85 2.54471e-85 1.9048e-87 4.59634e-87 3.18234e-89 7.93977e-89 5.07882e-91 1.31121e-90 7.73914e-93 2.0693e-92 1.1254e-94 3.11936e-94 1.5608e-96 4.48917e-96 2.06311e-98 6.16413e-98 2.5972e-100 8.07039e-100 3.11121e-102 1.00673e-101 3.54313e-104 1.19554e-103 3.83196e-106 1.35034e-105 3.93113e-108 1.44912e-107 3.82034e-110 1.47584e-109 3.51182e-112 1.42456e-111 3.04848e-114 1.30136e-113 2.49424e-116 1.12325e-115 1.91945e-118 9.14356e-118 1.38595e-120 7.00501e-120 9.36394e-123 5.03883e-122 5.90116e-125 3.39398e-124 3.45624e-127 2.13407e-126 1.87335e-129 1.24822e-128 9.35032e-132 6.76338e-131 4.27239e-134 3.37864e-133 1.77452e-136 1.54723e-135 6.64222e-139 6.4514e-138 2.21675e-141 2.42914e-140 6.50697e-144 8.17577e-143 1.65035e-146 2.42827e-145 3.53068e-149 6.25927e-148 6.15786e-152 1.36938e-150 8.31793e-155 2.46489e-153 7.9935e-158 3.48795e-156 4.62116e-161 3.61276e-159 9.34767e-165 2.42042e-162 -2.58447e-172 8.08896e-166 -1.11137e-176 7.3573e-170 -3.39789e-183 1.1953e-174 2.28789e-181 2.78323e-17 1.96742e-17 1.11563e-17 8.19717e-18 4.12858e-18 3.14935e-18 1.41433e-18 1.11841e-18 4.49539e-19 3.67887e-19 1.32832e-19 1.12312e-19 3.65512e-20 3.18837e-20 9.38024e-21 8.43211e-21 2.24818e-21 2.08088e-21 5.03844e-22 4.79895e-22 1.0571e-22 1.03565e-22 2.07865e-23 2.09401e-23 3.83492e-24 3.97143e-24 6.64511e-25 7.07265e-25 1.08258e-25 1.18394e-25 1.65984e-26 1.86473e-26 2.39736e-27 2.76607e-27 3.26486e-28 3.86795e-28 4.19618e-29 5.10353e-29 5.09423e-30 6.35948e-30 5.84665e-31 7.49051e-31 6.3489e-32 8.34655e-32 6.52828e-33 8.80566e-33 6.36131e-34 8.80278e-34 5.8785e-35 8.34475e-35 5.15552e-36 7.50691e-36 4.29403e-37 6.41314e-37 3.39885e-38 5.20639e-38 2.55828e-39 4.01918e-39 1.83219e-40 2.95214e-40 1.24923e-41 2.06436e-41 8.11317e-43 1.37504e-42 5.02143e-44 8.72856e-44 2.9631e-45 5.28285e-45 1.66773e-46 3.04984e-46 8.95638e-48 1.68012e-47 4.59108e-49 8.83517e-49 2.24704e-50 4.43652e-50 1.05037e-51 2.12791e-51 4.69059e-53 9.75142e-53 2.00153e-54 4.27066e-54 8.16286e-56 1.78786e-55 3.18235e-57 7.15609e-57 1.18619e-58 2.73905e-58 4.22795e-60 1.00273e-59 1.44122e-61 3.51151e-61 4.69905e-63 1.17649e-62 1.46558e-64 3.77153e-64 4.37282e-66 1.15699e-65 1.24823e-67 3.39671e-67 3.409e-69 9.54407e-69 8.90767e-71 2.5667e-70 2.22693e-72 6.60682e-72 5.32649e-74 1.62775e-73 1.21883e-75 3.8384e-75 2.66797e-77 8.66285e-77 5.58602e-79 1.87105e-78 1.11852e-80 3.86705e-80 2.14156e-82 7.64687e-82 3.91978e-84 1.44651e-83 6.85693e-86 2.617e-85 1.14604e-87 4.52711e-87 1.82943e-89 7.48591e-89 2.78807e-91 1.18284e-90 4.05471e-93 1.78523e-92 5.62409e-95 2.57249e-94 7.43566e-97 3.53736e-96 9.36409e-99 4.63893e-98 1.12242e-100 5.79808e-100 1.27943e-102 6.90169e-102 1.38557e-104 7.81753e-104 1.424e-106 8.41819e-106 1.38717e-108 8.60887e-108 1.27906e-110 8.35099e-110 1.11457e-112 7.67393e-112 9.16266e-115 6.67013e-114 7.09179e-117 5.47465e-116 5.1561e-119 4.23502e-118 3.51224e-121 3.081e-120 2.23481e-123 2.10279e-122 1.32369e-125 1.3426e-124 7.26871e-128 7.9936e-127 3.68287e-130 4.42132e-129 1.712e-132 2.26194e-131 7.25142e-135 1.06486e-133 2.77502e-137 4.58484e-136 9.493e-140 1.79209e-138 2.86307e-142 6.30155e-141 7.47267e-145 1.97078e-143 1.64389e-147 5.40221e-146 2.92716e-150 1.27294e-148 3.93094e-153 2.51017e-151 3.3926e-156 3.98422e-154 8.26935e-160 4.79012e-157 -8.84997e-166 3.92457e-160 -5.23693e-169 1.94684e-163 -7.06716e-173 5.22762e-167 -1.17808e-177 4.93591e-171 -1.97628e-184 6.83865e-176 9.41461e-183 2.67644e-17 3.17209e-17 1.0883e-17 1.36143e-17 4.06747e-18 5.36295e-18 1.40151e-18 1.9443e-18 4.46396e-19 6.50321e-19 1.31736e-19 2.01136e-19 3.60948e-20 5.76521e-20 9.19887e-21 1.5347e-20 2.18421e-21 3.80154e-21 4.83928e-22 8.77776e-22 1.00184e-22 1.89223e-22 1.94048e-23 3.81369e-23 3.52088e-24 7.19551e-24 5.99142e-25 1.27245e-24 9.57251e-26 2.11142e-25 1.43747e-26 3.29095e-26 2.03088e-27 4.82315e-27 2.70212e-28 6.65329e-28 3.38897e-29 8.64696e-29 4.01004e-30 1.05982e-29 4.4808e-31 1.22612e-30 4.73227e-32 1.34019e-31 4.72783e-33 1.38522e-32 4.47194e-34 1.35508e-33 4.00793e-35 1.25565e-34 3.40623e-36 1.103e-35 2.74712e-37 9.19223e-37 2.1039e-38 7.27316e-38 1.53113e-39 5.46732e-39 1.05951e-40 3.90711e-40 6.97525e-42 2.656e-41 4.37122e-43 1.71843e-42 2.60881e-44 1.05873e-43 1.48345e-45 6.21435e-45 8.04021e-47 3.47651e-46 4.15513e-48 1.85439e-47 2.04819e-49 9.43451e-49 9.63284e-51 4.57976e-50 4.32373e-52 2.12178e-51 1.85265e-53 9.38453e-53 7.57979e-55 3.9636e-54 2.96153e-56 1.59897e-55 1.10528e-57 6.16234e-57 3.94102e-59 2.26936e-58 1.34274e-60 7.98723e-60 4.37208e-62 2.68721e-61 1.36067e-63 8.6435e-63 4.04795e-65 2.65842e-64 1.15127e-66 7.81923e-66 3.1305e-68 2.19968e-67 8.13896e-70 5.91905e-69 2.02329e-71 1.52362e-70 4.80935e-73 3.75199e-72 1.09307e-74 8.83933e-74 2.37533e-76 1.99231e-75 4.93497e-78 4.29604e-77 9.8013e-80 8.86209e-79 1.86063e-81 1.74875e-80 3.37544e-83 3.30064e-82 5.85054e-85 5.95777e-84 9.68591e-87 1.02827e-85 1.53116e-88 1.69655e-87 2.31032e-90 2.67516e-89 3.32582e-92 4.03011e-91 4.56535e-94 5.79834e-93 5.97227e-96 7.96382e-95 7.44043e-98 1.04365e-96 8.82081e-100 1.30422e-98 9.94215e-102 1.55322e-100 1.06431e-103 1.76147e-102 1.08086e-105 1.90072e-104 1.03989e-107 1.94962e-106 9.46369e-110 1.89892e-108 8.1326e-112 1.75415e-110 6.5857e-114 1.53476e-112 5.01345e-116 1.26988e-114 3.5777e-118 9.91924e-117 2.38525e-120 7.30012e-119 1.47945e-122 5.0506e-121 8.49367e-125 3.27636e-123 4.48398e-127 1.98699e-125 2.1577e-129 1.12272e-127 9.34701e-132 5.88695e-130 3.57606e-134 2.85109e-132 1.16846e-136 1.26828e-134 3.02965e-139 5.14743e-137 4.84272e-142 1.89045e-139 -1.37995e-147 6.21858e-142 -1.88968e-149 1.8119e-144 -7.5079e-152 4.62481e-147 -1.99331e-154 1.01533e-149 -3.86923e-157 1.86798e-152 -5.43548e-160 2.78699e-155 -5.19391e-163 3.2025e-158 -2.95073e-166 2.61798e-161 -8.11423e-170 1.32164e-164 -7.35052e-174 3.3516e-168 -8.91218e-179 2.9139e-172 -9.14373e-186 3.5258e-177 3.34767e-184 1.04063e-17 4.02053e-17 3.85297e-18 1.72561e-17 1.29394e-18 6.76572e-18 3.95123e-19 2.43244e-18 1.09858e-19 8.04411e-19 2.78092e-20 2.45391e-19 6.39672e-21 6.92367e-20 1.33095e-21 1.81117e-20 2.48206e-22 4.40219e-21 4.06984e-23 9.961e-22 5.62753e-24 2.10157e-22 5.79965e-25 4.14047e-23 1.85637e-26 7.62775e-24 -1.77474e-27 1.31536e-24 -5.865e-28 2.1283e-25 -1.24451e-28 3.23241e-26 -2.16256e-29 4.61172e-27 -3.2916e-30 6.18732e-28 -4.5173e-31 7.81429e-29 -5.67797e-32 9.30034e-30 -6.59642e-33 1.04506e-30 -7.12723e-34 1.10876e-31 -7.19393e-35 1.11171e-32 -6.80632e-36 1.05437e-33 -6.05223e-37 9.46723e-35 -5.06888e-38 8.05433e-36 -4.00549e-39 6.49749e-37 -2.99198e-40 4.9735e-38 -2.11513e-41 3.6167e-39 -1.41637e-42 2.49937e-40 -8.99286e-44 1.64195e-41 -5.41842e-45 1.02596e-42 -3.1005e-46 6.10034e-44 -1.68604e-47 3.45317e-45 -8.71859e-49 1.86167e-46 -4.28951e-50 9.56262e-48 -2.00895e-51 4.68159e-49 -8.96065e-53 2.18525e-50 -3.80807e-54 9.72837e-52 -1.54258e-55 4.13181e-53 -5.95846e-57 1.67467e-54 -2.19584e-58 6.4794e-56 -7.72151e-60 2.39485e-57 -2.59165e-61 8.45395e-59 -8.30499e-63 2.85088e-60 -2.5416e-64 9.1863e-62 -7.42996e-66 2.82906e-63 -2.07529e-67 8.32856e-65 -5.53957e-69 2.34427e-66 -1.41337e-70 6.30999e-68 -3.44742e-72 1.62442e-69 -8.03981e-74 4.00016e-71 -1.79293e-75 9.42345e-73 -3.82366e-77 2.12391e-74 -7.79869e-79 4.58014e-76 -1.52124e-80 9.45047e-78 -2.83795e-82 1.86578e-79 -5.06307e-84 3.52439e-81 -8.63977e-86 6.36933e-83 -1.40991e-87 1.10146e-84 -2.19946e-89 1.82229e-86 -3.27932e-91 2.88314e-88 -4.67166e-93 4.36118e-90 -6.3567e-95 6.30535e-92 -8.25834e-97 8.7102e-94 -1.02388e-98 1.14917e-95 -1.2108e-100 1.44733e-97 -1.36485e-102 1.73915e-99 -1.46548e-104 1.99259e-101 -1.49764e-106 2.1752e-103 -1.45534e-108 2.26058e-105 -1.34427e-110 2.23446e-107 -1.17821e-112 2.10001e-109 -9.78486e-115 1.87317e-111 -7.68821e-117 1.58352e-113 -5.70541e-119 1.26677e-115 -3.99111e-121 9.57305e-118 -2.62587e-123 6.82066e-120 -1.62261e-125 4.5714e-122 -9.37999e-128 2.87833e-124 -5.05541e-130 1.69569e-126 -2.53021e-132 9.31497e-129 -1.17217e-134 4.75255e-131 -4.99468e-137 2.24476e-133 -1.94411e-139 9.75323e-136 -6.87215e-142 3.87146e-138 -2.18018e-144 1.3958e-140 -6.14786e-147 4.51692e-143 -1.51565e-149 1.2994e-145 -3.20615e-152 3.26848e-148 -5.66854e-155 7.05586e-151 -8.07869e-158 1.27359e-153 -8.80434e-161 1.85457e-156 -6.78793e-164 2.0685e-159 -3.23527e-167 1.6374e-162 -7.57968e-171 8.06135e-166 -5.72805e-175 1.97175e-169 -5.49258e-180 1.58247e-173 -3.49422e-187 1.64337e-178 1.03351e-185 -6.68032e-18 3.87234e-17 -2.71316e-18 1.62842e-17 -1.00028e-18 6.26019e-18 -3.36877e-19 2.20625e-18 -1.0403e-19 7.159e-19 -2.95519e-20 2.14382e-19 -7.75413e-21 5.93775e-20 -1.88223e-21 1.52622e-20 -4.2352e-22 3.644e-21 -8.8618e-23 8.09368e-22 -1.7256e-23 1.67718e-22 -3.13194e-24 3.24337e-23 -5.3057e-25 5.86049e-24 -8.40784e-26 9.90554e-25 -1.24761e-26 1.56923e-25 -1.7353e-27 2.33188e-26 -2.26526e-28 3.25308e-27 -2.77871e-29 4.2652e-28 -3.20657e-30 5.26147e-29 -3.48696e-31 6.11274e-30 -3.5759e-32 6.69911e-31 -3.46085e-33 6.93011e-32 -3.16404e-34 6.77163e-33 -2.73491e-35 6.25534e-34 -2.23684e-36 5.46718e-35 -1.7324e-37 4.52432e-36 -1.27142e-38 3.54757e-37 -8.84828e-40 2.63742e-38 -5.84473e-41 1.86029e-39 -3.66565e-42 1.24606e-40 -2.18372e-43 7.92838e-42 -1.23631e-44 4.79376e-43 -6.65502e-46 2.75569e-44 -3.40777e-47 1.50677e-45 -1.66067e-48 7.84012e-47 -7.70504e-50 3.8837e-48 -3.40506e-51 1.8323e-49 -1.43385e-52 8.23662e-51 -5.75547e-54 3.52918e-52 -2.20301e-55 1.44189e-53 -8.04394e-57 5.61931e-55 -2.80305e-58 2.0897e-56 -9.32493e-60 7.41844e-58 -2.96265e-61 2.51493e-59 -8.99043e-63 8.1451e-61 -2.60657e-64 2.52037e-62 -7.22202e-66 7.45336e-64 -1.91272e-67 2.10704e-65 -4.84327e-69 5.69547e-67 -1.17275e-70 1.47238e-68 -2.71597e-72 3.64105e-70 -6.01665e-74 8.61443e-72 -1.2751e-75 1.95021e-73 -2.58542e-77 4.22519e-75 -5.01571e-79 8.76108e-77 -9.31013e-81 1.73877e-78 -1.65345e-82 3.30302e-80 -2.80936e-84 6.00563e-82 -4.5667e-86 1.0451e-83 -7.10073e-88 1.74067e-85 -1.05594e-89 2.77436e-87 -1.50149e-91 4.23095e-89 -2.04061e-93 6.17257e-91 -2.64969e-95 8.61108e-93 -3.2858e-97 1.14832e-94 -3.88938e-99 1.46322e-96 -4.39204e-101 1.7807e-98 -4.72837e-103 2.06856e-100 -4.84942e-105 2.29229e-102 -4.734e-107 2.42147e-104 -4.39446e-109 2.43637e-106 -3.87621e-111 2.33268e-108 -3.24442e-113 2.12378e-110 -2.57319e-115 1.8363e-112 -1.93045e-117 1.50573e-114 -1.36748e-119 1.16895e-116 -9.12813e-122 8.57705e-119 -5.72836e-124 5.93636e-121 -3.37366e-126 3.86693e-123 -1.85829e-128 2.36667e-125 -9.53646e-131 1.35643e-127 -4.54109e-133 7.25292e-130 -1.99938e-135 3.60383e-132 -8.09138e-138 1.65833e-134 -2.98771e-140 7.02621e-137 -1.00085e-142 2.72134e-139 -3.00587e-145 9.58198e-142 -8.01684e-148 3.03169e-144 -1.86676e-150 8.53946e-147 -3.72383e-153 2.10585e-149 -6.19916e-156 4.46236e-152 -8.29307e-159 7.91814e-155 -8.44711e-162 1.13341e-157 -6.03528e-165 1.24078e-160 -2.64462e-168 9.57965e-164 -5.63174e-172 4.56858e-167 -3.73788e-176 1.06962e-170 -2.90262e-181 7.92103e-175 -1.12905e-188 6.97086e-180 2.79004e-187 -1.54312e-17 3.03031e-17 -5.84796e-18 1.25599e-17 -2.03194e-18 4.76158e-18 -6.49125e-19 1.65768e-18 -1.9121e-19 5.31255e-19 -5.20428e-20 1.57163e-19 -1.31147e-20 4.30071e-20 -3.06548e-21 1.09084e-20 -6.65632e-22 2.56927e-21 -1.34504e-22 5.62761e-22 -2.53174e-23 1.14825e-22 -4.44716e-24 2.18446e-23 -7.29825e-25 3.88157e-24 -1.12055e-25 6.44884e-25 -1.61139e-26 1.00307e-25 -2.17267e-27 1.46222e-26 -2.75045e-28 1.9997e-27 -3.27304e-29 2.56894e-28 -3.66393e-30 3.10379e-29 -3.86283e-31 3.52914e-30 -3.83868e-32 3.78079e-31 -3.59841e-33 3.81924e-32 -3.18452e-34 3.64061e-33 -2.66263e-35 3.27731e-34 -2.10542e-36 2.78823e-35 -1.57535e-37 2.24401e-36 -1.11599e-38 1.70941e-37 -7.48971e-40 1.23318e-38 -4.76577e-41 8.43009e-40 -2.87661e-42 5.46514e-41 -1.64791e-43 3.36159e-42 -8.96476e-45 1.96285e-43 -4.63381e-46 1.08861e-44 -2.27701e-47 5.73778e-46 -1.06426e-48 2.87561e-47 -4.73381e-50 1.37106e-48 -2.00477e-51 6.22229e-50 -8.08815e-53 2.68919e-51 -3.11017e-54 1.10742e-52 -1.14028e-55 4.34752e-54 -3.98761e-57 1.62761e-55 -1.33067e-58 5.81338e-57 -4.23917e-60 1.98178e-58 -1.28981e-61 6.45099e-60 -3.7489e-63 2.006e-61 -1.04124e-64 5.96033e-63 -2.76441e-66 1.69272e-64 -7.01735e-68 4.59634e-66 -1.70361e-69 1.19363e-67 -3.9563e-71 2.96535e-69 -8.79046e-73 7.04893e-71 -1.869e-74 1.60362e-72 -3.80309e-76 3.49213e-74 -7.40692e-78 7.28029e-76 -1.38082e-79 1.4532e-77 -2.46405e-81 2.7775e-79 -4.20894e-83 5.0834e-81 -6.88184e-85 8.9091e-83 -1.0769e-86 1.49521e-84 -1.61261e-88 2.40269e-86 -2.31053e-90 3.69628e-88 -3.167e-92 5.4434e-90 -4.15088e-94 7.67264e-92 -5.20028e-96 1.03467e-93 -6.22477e-98 1.33444e-95 -7.11558e-100 1.64535e-97 -7.76312e-102 1.93857e-99 -8.07815e-104 2.18136e-101 -8.01136e-106 2.34277e-103 -7.56563e-108 2.39979e-105 -6.79679e-110 2.34264e-107 -5.80333e-112 2.17733e-109 -4.7039e-114 1.9251e-111 -3.61432e-116 1.61737e-113 -2.62782e-118 1.28944e-115 -1.80459e-120 9.73818e-118 -1.16811e-122 6.95487e-120 -7.11029e-125 4.68795e-122 -4.061e-127 2.97568e-124 -2.1703e-129 1.77497e-126 -1.08075e-131 9.92329e-129 -4.99412e-134 5.17872e-131 -2.13284e-136 2.51294e-133 -8.3746e-139 1.12941e-135 -2.99976e-141 4.67815e-138 -9.74056e-144 1.77245e-140 -2.83577e-146 6.10577e-143 -7.32414e-149 1.89211e-145 -1.65051e-151 5.22131e-148 -3.18359e-154 1.26249e-150 -5.11895e-157 2.62537e-153 -6.60143e-160 4.57578e-156 -6.46216e-163 6.43564e-159 -4.40698e-166 6.91851e-162 -1.82327e-169 5.22293e-165 -3.59963e-173 2.41467e-168 -2.1301e-177 5.39048e-172 -1.34709e-182 3.66269e-176 -3.13595e-190 2.69976e-181 6.63247e-189 -1.77525e-17 1.89443e-17 -6.55369e-18 7.78527e-18 -2.22449e-18 2.93057e-18 -6.95316e-19 1.01389e-18 -2.00618e-19 3.22908e-19 -5.353e-20 9.4906e-20 -1.32252e-20 2.57941e-20 -3.0311e-21 6.49174e-21 -6.45568e-22 1.51592e-21 -1.27899e-22 3.29039e-22 -2.36008e-23 6.64536e-23 -4.06299e-24 1.25036e-23 -6.53479e-25 2.1954e-24 -9.82811e-26 3.60201e-25 -1.38361e-26 5.52715e-26 -1.8252e-27 7.94006e-27 -2.25876e-28 1.06894e-27 -2.62507e-29 1.35017e-28 -2.86715e-30 1.6017e-29 -2.94602e-31 1.78589e-30 -2.84948e-32 1.87347e-31 -2.59645e-33 1.85021e-32 -2.2306e-34 1.72155e-33 -1.80807e-35 1.51035e-34 -1.38414e-36 1.25033e-35 -1.00136e-37 9.7763e-37 -6.85048e-39 7.22446e-38 -4.43492e-40 5.04885e-39 -2.71901e-41 3.33923e-40 -1.57988e-42 2.09168e-41 -8.70591e-44 1.24186e-42 -4.55237e-45 6.99295e-44 -2.26039e-46 3.737e-45 -1.06642e-47 1.89648e-46 -4.78352e-49 9.14572e-48 -2.04127e-50 4.19376e-49 -8.29164e-52 1.82967e-50 -3.20811e-53 7.59943e-52 -1.183e-54 3.00684e-53 -4.15923e-56 1.13403e-54 -1.39492e-57 4.07842e-56 -4.4647e-59 1.39936e-57 -1.36441e-60 4.58295e-59 -3.98289e-62 1.43332e-60 -1.11096e-63 4.28269e-62 -2.96212e-65 1.22299e-63 -7.55186e-67 3.339e-65 -1.84154e-68 8.71868e-67 -4.29642e-70 2.17801e-68 -9.59269e-72 5.20678e-70 -2.05005e-73 1.19151e-71 -4.19422e-75 2.61057e-73 -8.21601e-77 5.47718e-75 -1.54114e-78 1.10061e-76 -2.76836e-80 2.11846e-78 -4.7623e-82 3.90619e-80 -7.84572e-84 6.90011e-82 -1.23793e-85 1.16774e-83 -1.87029e-87 1.89346e-85 -2.70522e-89 2.94102e-87 -3.74558e-91 4.37541e-89 -4.96333e-93 6.23406e-91 -6.29205e-95 8.50513e-93 -7.6281e-97 1.11068e-94 -8.84013e-99 1.38788e-96 -9.78813e-101 1.65882e-98 -1.03487e-102 1.89551e-100 -1.04406e-104 2.06965e-102 -1.00436e-106 2.15796e-104 -9.20451e-109 2.14712e-106 -8.02842e-111 2.03697e-108 -6.65872e-113 1.84087e-110 -5.24475e-115 1.58348e-112 -3.91757e-117 1.29488e-114 -2.77009e-119 1.00529e-116 -1.85083e-121 7.39714e-119 -1.1661e-123 5.14994e-121 -6.91166e-126 3.38576e-123 -3.84488e-128 2.09729e-125 -2.0022e-130 1.22137e-127 -9.71846e-133 6.6706e-130 -4.37886e-135 3.40276e-132 -1.8235e-137 1.61489e-134 -6.9847e-140 7.10093e-137 -2.4412e-142 2.87995e-139 -7.73281e-145 1.06908e-141 -2.19707e-147 3.60932e-144 -5.53543e-150 1.09728e-146 -1.21667e-152 2.97133e-149 -2.28812e-155 7.05523e-152 -3.58425e-158 1.44172e-154 -4.49613e-161 2.47032e-157 -4.26852e-164 3.41539e-160 -2.8065e-167 3.60465e-163 -1.10732e-170 2.66061e-166 -2.04305e-174 1.19179e-169 -1.0826e-178 2.52994e-173 -5.56169e-184 1.56778e-177 -7.57163e-192 9.56162e-183 1.39581e-190 -1.43577e-17 9.39453e-18 -5.22488e-18 3.86049e-18 -1.75085e-18 1.45472e-18 -5.4085e-19 5.03851e-19 -1.54298e-19 1.60619e-19 -4.07168e-20 4.72288e-20 -9.94827e-21 1.28334e-20 -2.2543e-21 3.22656e-21 -4.74598e-22 7.5198e-22 -9.28972e-23 1.62762e-22 -1.69264e-23 3.27431e-23 -2.87466e-24 6.12985e-24 -4.55716e-25 1.06934e-24 -6.74817e-26 1.74081e-25 -9.3412e-27 2.64636e-26 -1.20985e-27 3.75972e-27 -1.46753e-28 4.9965e-28 -1.66857e-29 6.2172e-29 -1.77982e-30 7.24995e-30 -1.78281e-31 7.92984e-31 -1.67822e-32 8.14355e-32 -1.48573e-33 7.85792e-33 -1.23805e-34 7.12992e-34 -9.71886e-36 6.08853e-35 -7.19432e-37 4.89744e-36 -5.02596e-38 3.71431e-37 -3.31634e-39 2.65829e-38 -2.06862e-40 1.79681e-39 -1.22083e-41 1.14804e-40 -6.82322e-43 6.93969e-42 -3.61438e-44 3.97252e-43 -1.81587e-45 2.1552e-44 -8.65919e-47 1.10894e-45 -3.92226e-48 5.41587e-47 -1.68884e-49 2.51244e-48 -6.91713e-51 1.10796e-49 -2.69668e-52 4.64783e-51 -1.00138e-53 1.85593e-52 -3.54413e-55 7.05925e-54 -1.19613e-56 2.55933e-55 -3.85161e-58 8.84886e-57 -1.18392e-59 2.91932e-58 -3.47559e-61 9.19467e-60 -9.74905e-63 2.76611e-61 -2.61394e-64 7.95216e-63 -6.7019e-66 2.18557e-64 -1.64369e-67 5.74487e-66 -3.85746e-69 1.44475e-67 -8.66498e-71 3.47734e-69 -1.86363e-72 8.01261e-71 -3.83836e-74 1.76817e-72 -7.57176e-76 3.73742e-74 -1.4308e-77 7.56831e-76 -2.59022e-79 1.4685e-77 -4.49269e-81 2.73061e-79 -7.46622e-83 4.86623e-81 -1.18885e-84 8.31186e-83 -1.81391e-86 1.3608e-84 -2.65135e-88 2.13561e-86 -3.71205e-90 3.21211e-88 -4.97721e-92 4.62967e-90 -6.38977e-94 6.3935e-92 -7.85161e-96 8.45811e-94 -9.23099e-98 1.07156e-95 -1.03792e-99 1.29965e-97 -1.11554e-101 1.50844e-99 -1.14539e-103 1.67464e-101 -1.12275e-105 1.77735e-103 -1.04988e-107 1.80221e-105 -9.35765e-110 1.7447e-107 -7.94158e-112 1.61131e-109 -6.41207e-114 1.41826e-111 -4.91841e-116 1.18883e-113 -3.5791e-118 9.4774e-116 -2.46659e-120 7.1761e-118 -1.60695e-122 5.15244e-120 -9.87614e-125 3.502e-122 -5.71262e-127 2.24879e-124 -3.10263e-129 1.3613e-126 -1.57791e-131 7.75141e-129 -7.48298e-134 4.14114e-131 -3.29538e-136 2.06746e-133 -1.34167e-138 9.60804e-136 -5.02633e-141 4.13906e-138 -1.71877e-143 1.64561e-140 -5.32743e-146 5.99195e-143 -1.48174e-148 1.98514e-145 -3.65443e-151 5.92708e-148 -7.86375e-154 1.57696e-150 -1.44769e-156 3.68145e-153 -2.21869e-159 7.40083e-156 -2.71941e-162 1.24786e-158 -2.51506e-165 1.69718e-161 -1.6015e-168 1.75884e-164 -6.05084e-172 1.26888e-167 -1.04603e-175 5.50002e-171 -4.9633e-180 1.10671e-174 -2.05858e-185 6.21732e-179 -1.60148e-193 3.09933e-184 2.61021e-192 -8.96472e-18 3.71155e-18 -3.24178e-18 1.54134e-18 -1.08063e-18 5.86972e-19 -3.32333e-19 2.0533e-19 -9.44199e-20 6.60722e-20 -2.48112e-20 1.95953e-20 -6.03564e-21 5.36472e-21 -1.36101e-21 1.35756e-21 -2.84873e-22 3.18032e-22 -5.53772e-23 6.90799e-23 -1.00075e-23 1.39217e-23 -1.68293e-24 2.60588e-24 -2.63659e-25 4.53521e-25 -3.85051e-26 7.34727e-26 -5.24527e-27 1.10873e-26 -6.67035e-28 1.5595e-27 -7.92579e-29 2.04641e-28 -8.80724e-30 2.50753e-29 -9.16184e-31 2.87185e-30 -8.93095e-32 3.07752e-31 -8.16638e-33 3.08894e-32 -7.01051e-34 2.90704e-33 -5.65564e-35 2.5675e-34 -4.29214e-36 2.13023e-35 -3.06753e-37 1.66212e-36 -2.06666e-38 1.22093e-37 -1.31386e-39 8.45222e-39 -7.88982e-41 5.52006e-40 -4.47969e-42 3.40454e-41 -2.40739e-43 1.98496e-42 -1.22565e-44 1.09518e-43 -5.91651e-46 5.7237e-45 -2.71034e-47 2.83588e-46 -1.17923e-48 1.33324e-47 -4.87721e-50 5.95262e-49 -1.9189e-51 2.5262e-50 -7.18695e-53 1.0198e-51 -2.56422e-54 3.91878e-53 -8.72127e-56 1.43449e-54 -2.82925e-57 5.00559e-56 -8.75955e-59 1.66603e-57 -2.5897e-60 5.29231e-59 -7.3147e-62 1.6054e-60 -1.97483e-63 4.65293e-62 -5.09843e-65 1.28911e-63 -1.2592e-66 3.41564e-65 -2.97619e-68 8.65868e-67 -6.73412e-70 2.10087e-68 -1.45909e-71 4.88049e-70 -3.02847e-73 1.08589e-71 -6.02236e-75 2.31486e-73 -1.14759e-76 4.72889e-75 -2.09577e-78 9.25907e-77 -3.66853e-80 1.7379e-78 -6.1555e-82 3.12744e-80 -9.90081e-84 5.39641e-82 -1.52658e-85 8.92885e-84 -2.25645e-87 1.4167e-85 -3.19674e-89 2.15565e-87 -4.34014e-91 3.14503e-89 -5.64582e-93 4.39921e-91 -7.03512e-95 5.89863e-93 -8.39455e-97 7.57991e-95 -9.58831e-99 9.3323e-97 -1.04789e-100 1.10047e-98 -1.09521e-102 1.24241e-100 -1.09403e-104 1.34228e-102 -1.04379e-106 1.387e-104 -9.50457e-109 1.36991e-106 -8.25343e-111 1.2924e-108 -6.82723e-113 1.16376e-110 -5.37523e-115 9.99197e-113 -4.02212e-117 8.17379e-115 -2.8563e-119 6.36179e-117 -1.92183e-121 4.70485e-119 -1.2229e-123 3.30095e-121 -7.34398e-126 2.19336e-123 -4.15264e-128 1.37757e-125 -2.20582e-130 8.16022e-128 -1.09747e-132 4.54934e-130 -5.09367e-135 2.38043e-132 -2.19624e-137 1.16454e-134 -8.75828e-140 5.30583e-137 -3.21478e-142 2.2421e-139 -1.07749e-144 8.74803e-142 -3.27449e-147 3.12772e-144 -8.9326e-150 1.01802e-146 -2.16121e-152 2.98795e-149 -4.56322e-155 7.81913e-152 -8.24272e-158 1.79649e-154 -1.2389e-160 3.55595e-157 -1.48742e-163 5.90419e-160 -1.34342e-166 7.90354e-163 -8.3037e-170 8.04358e-166 -3.00939e-173 5.66943e-169 -4.87446e-177 2.37463e-172 -2.06616e-181 4.51344e-176 -6.86438e-187 2.28454e-180 -2.9834e-195 9.19826e-186 4.34843e-194 -4.60471e-18 1.17266e-18 -1.66438e-18 4.99862e-19 -5.55076e-19 1.94901e-19 -1.70896e-19 6.96583e-20 -4.86083e-20 2.28618e-20 -1.27815e-20 6.90225e-21 -3.1091e-21 1.91971e-21 -7.0016e-22 4.9248e-22 -1.46081e-22 1.16671e-22 -2.82478e-23 2.55517e-23 -5.06611e-24 5.17628e-24 -8.4336e-25 9.70833e-25 -1.3042e-25 1.68737e-25 -1.87487e-26 2.72025e-26 -2.5072e-27 4.07097e-27 -3.1218e-28 5.6601e-28 -3.62289e-29 7.31877e-29 -3.92293e-30 8.81096e-30 -3.96848e-31 9.88759e-31 -3.75466e-32 1.03569e-31 -3.32661e-33 1.0138e-32 -2.76304e-34 9.28619e-34 -2.15397e-35 7.9686e-35 -1.57791e-36 6.41396e-36 -1.08752e-37 4.84857e-37 -7.06017e-39 3.44658e-38 -4.32236e-40 2.30665e-39 -2.4983e-41 1.45518e-40 -1.36478e-42 8.66359e-42 -7.0544e-44 4.87324e-43 -3.45366e-45 2.59284e-44 -1.603e-46 1.30626e-45 -7.06072e-48 6.2374e-47 -2.95392e-49 2.82579e-48 -1.17487e-50 1.21568e-49 -4.44594e-52 4.97125e-51 -1.60189e-53 1.93385e-52 -5.49946e-55 7.16177e-54 -1.80025e-56 2.52691e-55 -5.62271e-58 8.50056e-57 -1.67659e-59 2.72822e-58 -4.77554e-61 8.3591e-60 -1.30006e-62 2.44651e-61 -3.38429e-64 6.84353e-63 -8.42805e-66 1.83056e-64 -2.00875e-67 4.68451e-66 -4.58381e-69 1.14739e-67 -1.00179e-70 2.69088e-69 -2.09754e-72 6.04471e-71 -4.209e-74 1.30105e-72 -8.09576e-76 2.68419e-74 -1.49286e-77 5.30903e-76 -2.63954e-79 1.0069e-77 -4.47543e-81 1.83146e-79 -7.27734e-83 3.1953e-81 -1.13489e-84 5.34777e-83 -1.69739e-86 8.58628e-85 -2.43476e-88 1.32258e-86 -3.34896e-90 1.9545e-88 -4.41667e-92 2.77074e-90 -5.58347e-94 3.76759e-92 -6.7644e-96 4.91302e-94 -7.85113e-98 6.14268e-96 -8.72672e-100 7.36157e-98 -9.28524e-102 8.45358e-100 -9.45224e-104 9.29814e-102 -9.20065e-106 9.79112e-104 -8.55752e-108 9.86539e-106 -7.5998e-110 9.50537e-108 -6.43939e-112 8.75189e-110 -5.19976e-114 7.69493e-112 -3.99787e-116 6.4538e-114 -2.92247e-118 5.15917e-116 -2.02833e-120 3.92558e-118 -1.33436e-122 2.83937e-120 -8.30522e-125 1.9492e-122 -4.88054e-127 1.26782e-124 -2.70163e-129 7.79795e-127 -1.4055e-131 4.52575e-129 -6.85061e-134 2.47326e-131 -3.11618e-136 1.26897e-133 -1.31734e-138 6.09022e-136 -5.15299e-141 2.72342e-138 -1.85579e-143 1.13015e-140 -6.1052e-146 4.33183e-143 -1.82185e-148 1.5223e-145 -4.88145e-151 4.87283e-148 -1.16043e-153 1.40722e-150 -2.40791e-156 3.62545e-153 -4.27443e-159 8.20494e-156 -6.31057e-162 1.6003e-158 -7.43258e-165 2.61804e-161 -6.56472e-168 3.45051e-164 -3.94294e-171 3.44855e-167 -1.37126e-174 2.37334e-170 -2.07831e-178 9.59072e-174 -7.84081e-183 1.71572e-177 -2.06856e-188 7.77574e-182 -4.91334e-197 2.49953e-187 6.46431e-196 -2.06981e-18 2.8479e-19 -7.50201e-19 1.29101e-19 -2.51027e-19 5.29118e-20 -7.75438e-20 1.97184e-20 -2.21135e-20 6.70581e-21 -5.82206e-21 2.08635e-21 -1.41547e-21 5.94953e-22 -3.17844e-22 1.55738e-22 -6.59365e-23 3.74649e-23 -1.264e-23 8.29063e-24 -2.24047e-24 1.68902e-24 -3.67494e-25 3.17114e-25 -5.5825e-26 5.49332e-26 -7.86115e-27 8.78973e-27 -1.0271e-27 1.30067e-27 -1.24656e-28 1.782e-28 -1.40714e-29 2.26359e-29 -1.47932e-30 2.66972e-30 -1.4506e-31 2.92794e-31 -1.32846e-32 2.99098e-32 -1.13787e-33 2.8499e-33 -9.12766e-35 2.53684e-34 -6.86684e-36 2.11263e-35 -4.85122e-37 1.64843e-36 -3.22268e-38 1.20681e-37 -2.01569e-39 8.3011e-39 -1.18854e-40 5.37225e-40 -6.61494e-42 3.27549e-41 -3.47911e-43 1.88388e-42 -1.7312e-44 1.02334e-43 -8.15893e-46 5.25664e-45 -3.64565e-47 2.55627e-46 -1.54611e-48 1.1781e-47 -6.22881e-50 5.15131e-49 -2.38612e-51 2.13898e-50 -8.69878e-53 8.44285e-52 -3.0202e-54 3.17054e-53 -9.99447e-56 1.13367e-54 -3.15458e-57 3.86278e-56 -9.50329e-59 1.25515e-57 -2.7342e-60 3.89202e-59 -7.5174e-62 1.15247e-60 -1.97616e-63 3.26077e-62 -4.96952e-65 8.82066e-64 -1.19604e-66 2.28245e-65 -2.75616e-68 5.6524e-67 -6.08349e-70 1.34027e-68 -1.2866e-71 3.04408e-70 -2.60802e-73 6.62501e-72 -5.06874e-75 1.38206e-73 -9.44701e-77 2.76463e-75 -1.68877e-78 5.30404e-77 -2.89596e-80 9.76169e-79 -4.76444e-82 1.72373e-80 -7.52073e-84 2.92079e-82 -1.13907e-85 4.74965e-84 -1.65532e-87 7.41276e-86 -2.30805e-89 1.11036e-87 -3.08732e-91 1.59632e-89 -3.96147e-93 2.20244e-91 -4.87468e-95 2.91605e-93 -5.75095e-97 3.70411e-95 -6.50279e-99 4.51311e-97 -7.04468e-101 5.27293e-99 -7.30855e-103 5.90562e-101 -7.25745e-105 6.33786e-103 -6.89384e-107 6.51448e-105 -6.25985e-109 6.40972e-107 -5.42965e-111 6.03321e-109 -4.49526e-113 5.42892e-111 -3.54823e-115 4.66696e-113 -2.66763e-117 3.8286e-115 -1.90758e-119 2.99467e-117 -1.29565e-121 2.23042e-119 -8.34481e-124 1.5798e-121 -5.08693e-126 1.06247e-123 -2.92889e-128 6.77283e-126 -1.58916e-130 4.08435e-128 -8.10687e-133 2.32515e-130 -3.87573e-135 1.24691e-132 -1.72994e-137 6.27995e-135 -7.17885e-140 2.95993e-137 -2.75774e-142 1.30046e-139 -9.75595e-145 5.30479e-142 -3.154e-147 1.99941e-144 -9.25277e-150 6.91272e-147 -2.43794e-152 2.17812e-149 -5.70117e-155 6.19438e-152 -1.16402e-157 1.57245e-154 -2.03305e-160 3.5081e-157 -2.95151e-163 6.74656e-160 -3.41363e-166 1.08804e-162 -2.95076e-169 1.41223e-165 -1.72278e-172 1.3859e-168 -5.747e-176 9.30601e-172 -8.13344e-180 3.6219e-175 -2.71888e-184 6.0761e-179 -5.64426e-190 2.45005e-183 -7.1718e-199 6.21715e-189 8.58287e-198 -8.61646e-19 3.81573e-20 -3.1268e-19 2.21029e-20 -1.04705e-19 1.05346e-20 -3.23306e-20 4.35496e-21 -9.19911e-21 1.59683e-21 -2.41085e-21 5.25409e-22 -5.81859e-22 1.56195e-22 -1.2932e-22 4.21423e-23 -2.647e-23 1.03511e-23 -4.99154e-24 2.3199e-24 -8.67804e-25 4.75362e-25 -1.39234e-25 8.92275e-26 -2.06384e-26 1.53723e-26 -2.82973e-27 2.43529e-27 -3.59302e-28 3.5542e-28 -4.231e-29 4.78679e-29 -4.62747e-30 5.96034e-30 -4.70797e-31 6.87432e-31 -4.46318e-32 7.35745e-32 -3.94832e-33 7.32165e-33 -3.26453e-34 6.78596e-34 -2.52654e-35 5.86818e-35 -1.83323e-36 4.74257e-36 -1.24877e-37 3.58838e-37 -7.99703e-39 2.54567e-38 -4.82123e-40 1.69584e-39 -2.73998e-41 1.06241e-40 -1.46979e-42 6.26822e-42 -7.45105e-44 3.48768e-43 -3.57397e-45 1.83247e-44 -1.62386e-46 9.10327e-46 -6.99642e-48 4.2809e-47 -2.86168e-49 1.90784e-48 -1.11217e-50 8.0674e-50 -4.111e-52 3.23977e-51 -1.44651e-53 1.23689e-52 -4.8489e-55 4.49335e-54 -1.54971e-56 1.55454e-55 -4.72569e-58 5.12604e-57 -1.37589e-59 1.6123e-58 -3.82725e-61 4.84071e-60 -1.01774e-62 1.38824e-61 -2.58864e-64 3.80528e-63 -6.30111e-66 9.97545e-65 -1.46852e-67 2.50229e-66 -3.27826e-69 6.00926e-68 -7.01266e-71 1.38223e-69 -1.43796e-72 3.04651e-71 -2.82727e-74 6.43648e-73 -5.33196e-76 1.30396e-74 -9.64703e-78 2.53396e-76 -1.67481e-79 4.72453e-78 -2.79044e-81 8.45339e-80 -4.46232e-83 1.45177e-81 -6.84957e-85 2.39342e-83 -1.00924e-86 3.78827e-85 -1.42741e-88 5.7569e-87 -1.93778e-90 8.39987e-89 -2.52477e-92 1.17676e-90 -3.15695e-94 1.58271e-92 -3.78711e-96 2.04364e-94 -4.35742e-98 2.53264e-96 -4.80722e-100 3.01171e-98 -5.08318e-102 3.43561e-100 -5.14943e-104 3.75837e-102 -4.99503e-106 3.94116e-104 -4.63674e-108 3.95981e-106 -4.11606e-110 3.80989e-108 -3.4916e-112 3.50805e-110 -2.82818e-114 3.08913e-112 -2.1849e-116 2.59971e-114 -1.60825e-118 2.08864e-116 -1.12637e-120 1.60047e-118 -7.49604e-123 1.16821e-120 -4.73233e-125 8.1123e-123 -2.82872e-127 5.35106e-125 -1.59762e-129 3.34688e-127 -8.50621e-132 1.98109e-129 -4.25958e-134 1.10742e-131 -1.99958e-136 5.83358e-134 -8.76744e-139 2.88692e-136 -3.57528e-141 1.33763e-138 -1.35018e-143 5.77967e-141 -4.69673e-146 2.31964e-143 -1.49367e-148 8.60473e-146 -4.31216e-151 2.92943e-148 -1.11839e-153 9.09331e-151 -2.57532e-156 2.5487e-153 -5.17862e-159 6.37968e-156 -8.90739e-162 1.40401e-158 -1.27267e-164 2.66392e-161 -1.44635e-167 4.23703e-164 -1.22409e-170 5.41682e-167 -6.94646e-174 5.21868e-170 -2.22057e-177 3.41612e-173 -2.92696e-181 1.27808e-176 -8.62625e-186 2.00319e-180 -1.39594e-191 7.14076e-185 -9.29208e-201 1.41458e-190 1.018e-199 -3.42424e-19 -5.31697e-21 -1.23364e-19 -8.1501e-22 -4.09414e-20 3.38453e-22 -1.25048e-20 4.40011e-22 -3.51146e-21 2.32677e-22 -9.05974e-22 9.25602e-23 -2.14712e-22 3.08236e-23 -4.67408e-23 8.93415e-24 -9.34833e-24 2.29654e-24 -1.71873e-24 5.29154e-25 -2.9075e-25 1.10052e-25 -4.531e-26 2.0766e-26 -6.51392e-27 3.56983e-27 -8.6512e-28 5.61069e-28 -1.06295e-28 8.08644e-29 -1.2102e-29 1.07155e-29 -1.2789e-30 1.30888e-30 -1.25657e-31 1.47731e-31 -1.14991e-32 1.54428e-32 -9.8169e-34 1.49846e-33 -7.8312e-35 1.35239e-34 -5.84691e-36 1.13754e-35 -4.09273e-37 8.93437e-37 -2.68954e-38 6.56519e-38 -1.6617e-39 4.52067e-39 -9.66614e-41 2.92174e-40 -5.3012e-42 1.77522e-41 -2.74465e-43 1.01553e-42 -1.3432e-44 5.47764e-44 -6.22099e-46 2.78965e-45 -2.72989e-47 1.34318e-46 -1.13625e-48 6.1219e-48 -4.49095e-50 2.64436e-49 -1.68708e-51 1.08383e-50 -6.02956e-53 4.21929e-52 -2.05196e-54 1.56171e-53 -6.65494e-56 5.50111e-55 -2.05851e-57 1.84575e-56 -6.07744e-59 5.9038e-58 -1.71375e-60 1.80166e-59 -4.61867e-62 5.24946e-61 -1.1904e-63 1.46138e-62 -2.93574e-65 3.8895e-64 -6.93133e-67 9.90309e-66 -1.56747e-68 2.41343e-67 -3.39665e-70 5.63259e-69 -7.05585e-72 1.25949e-70 -1.40553e-73 2.69949e-72 -2.68572e-75 5.54796e-74 -4.92425e-77 1.0937e-75 -8.66511e-79 2.06882e-77 -1.46367e-80 3.7559e-79 -2.37365e-82 6.54587e-81 -3.69609e-84 1.09538e-82 -5.52651e-86 1.76021e-84 -7.93515e-88 2.71655e-86 -1.09408e-89 4.02669e-88 -1.44848e-91 5.7328e-90 -1.8412e-93 7.83907e-92 -2.24694e-95 1.02947e-93 -2.63173e-97 1.29841e-95 -2.95758e-99 1.57228e-97 -3.18814e-101 1.82755e-99 -3.29516e-103 2.03852e-101 -3.26406e-105 2.1813e-103 -3.09711e-107 2.2382e-105 -2.81324e-109 2.20119e-107 -2.44462e-111 2.07375e-109 -2.03068e-113 1.87034e-111 -1.61123e-115 1.6138e-113 -1.21976e-117 1.33119e-115 -8.80076e-120 1.04865e-117 -6.044e-122 7.88128e-120 -3.94563e-124 5.64421e-122 -2.44434e-126 3.84703e-124 -1.43427e-128 2.49161e-126 -7.95453e-131 1.53071e-128 -4.16034e-133 8.90264e-131 -2.04709e-135 4.89154e-133 -9.44528e-138 2.53348e-135 -4.07224e-140 1.23312e-137 -1.63344e-142 5.62193e-140 -6.06965e-145 2.3911e-142 -2.07805e-147 9.44985e-145 -6.50701e-150 3.45291e-147 -1.85021e-152 1.15847e-149 -4.72769e-155 3.54528e-152 -1.07285e-157 9.8006e-155 -2.12645e-160 2.42058e-157 -3.60462e-163 5.25814e-160 -5.0719e-166 9.84788e-163 -5.6664e-169 1.54531e-165 -4.69607e-172 1.94611e-168 -2.58926e-175 1.84016e-171 -7.92097e-179 1.17318e-174 -9.69548e-183 4.21069e-178 -2.5056e-187 6.14233e-182 -3.13045e-193 1.92313e-186 -1.06936e-202 2.94141e-192 1.07809e-201 -1.26051e-19 -5.49168e-21 -4.46753e-20 -1.59126e-21 -1.45609e-20 -3.99459e-22 -4.35415e-21 -8.27191e-23 -1.19348e-21 -1.18362e-23 -2.99829e-22 -3.29702e-26 -6.90839e-23 2.30982e-24 -1.45998e-23 1.05946e-24 -2.83114e-24 3.33879e-25 -5.04105e-25 8.58207e-26 -8.25074e-26 1.89953e-26 -1.243e-26 3.71167e-27 -1.72644e-27 6.49333e-28 -2.21413e-28 1.02641e-28 -2.62618e-29 1.4754e-29 -2.88584e-30 1.93809e-30 -2.94316e-31 2.33612e-31 -2.79077e-32 2.59295e-32 -2.46479e-33 2.65839e-33 -2.03097e-34 2.52457e-34 -1.56395e-35 2.22625e-35 -1.12736e-36 1.82722e-36 -7.62049e-38 1.39891e-37 -4.83708e-39 1.00122e-38 -2.88734e-40 6.71057e-40 -1.62313e-41 4.21945e-41 -8.6049e-43 2.49321e-42 -4.3078e-44 1.38665e-43 -2.03907e-45 7.27018e-45 -9.13704e-47 3.59848e-46 -3.88042e-48 1.68378e-47 -1.56362e-49 7.45768e-49 -5.98482e-51 3.13047e-50 -2.17794e-52 1.24691e-51 -7.54274e-54 4.71771e-53 -2.48823e-55 1.69728e-54 -7.82509e-57 5.81192e-56 -2.34786e-58 1.89595e-57 -6.72607e-60 5.89722e-59 -1.84103e-61 1.75038e-60 -4.81788e-63 4.96147e-62 -1.20617e-64 1.34397e-63 -2.89044e-66 3.4814e-65 -6.63357e-68 8.62917e-67 -1.4587e-69 2.04777e-68 -3.07475e-71 4.65496e-70 -6.21523e-73 1.0141e-71 -1.20518e-74 2.11821e-73 -2.24249e-76 4.24371e-75 -4.00514e-78 8.15756e-77 -6.8677e-80 1.50506e-78 -1.13082e-81 2.66587e-80 -1.78826e-83 4.53434e-82 -2.71628e-85 7.40735e-84 -3.96325e-87 1.16238e-85 -5.55489e-89 1.75233e-87 -7.47895e-91 2.53801e-89 -9.67212e-93 3.53176e-91 -1.20136e-94 4.72172e-93 -1.43313e-96 6.06448e-95 -1.64135e-98 7.48296e-97 -1.80432e-100 8.86764e-99 -1.90317e-102 1.00903e-100 -1.92542e-104 1.10214e-102 -1.86751e-106 1.15521e-104 -1.73565e-108 1.16146e-106 -1.54474e-110 1.11959e-108 -1.31567e-112 1.03416e-110 -1.07153e-114 9.14782e-113 -8.3383e-117 7.74368e-115 -6.19283e-119 6.26841e-117 -4.38492e-121 4.84738e-119 -2.95618e-123 3.5773e-121 -1.89512e-125 2.5164e-123 -1.15331e-127 1.68527e-125 -6.64996e-130 1.07285e-127 -3.62531e-132 6.48044e-130 -1.86438e-134 3.70703e-132 -9.02251e-137 2.00393e-134 -4.09557e-139 1.02141e-136 -1.73786e-141 4.894e-139 -6.86291e-144 2.19739e-141 -2.51137e-146 9.20729e-144 -8.46945e-149 3.586e-146 -2.61339e-151 1.29168e-148 -7.32444e-154 4.27401e-151 -1.84532e-156 1.2904e-153 -4.12969e-159 3.52074e-156 -8.07343e-162 8.5851e-159 -1.34957e-164 1.84177e-161 -1.87097e-167 3.40647e-164 -2.05544e-170 5.27525e-167 -1.66804e-173 6.54447e-170 -8.93046e-177 6.07126e-173 -2.61016e-180 3.76603e-176 -2.95731e-184 1.29388e-179 -6.66328e-189 1.74982e-183 -6.36439e-195 4.78021e-188 -1.09303e-204 5.58279e-194 1.01836e-203 -4.15652e-20 -2.64398e-21 -1.41769e-20 -7.98184e-22 -4.45419e-21 -2.18178e-22 -1.28792e-21 -5.35181e-23 -3.42324e-22 -1.16116e-23 -8.3498e-23 -2.17641e-24 -1.86383e-23 -3.3492e-25 -3.80829e-24 -3.62698e-26 -7.13153e-25 -1.43729e-28 -1.2259e-25 5.26204e-27 -1.93655e-26 1.8109e-27 -2.8154e-27 4.27561e-28 -3.77328e-28 8.25176e-29 -4.66954e-29 1.37639e-29 -5.34512e-30 2.03567e-30 -5.66965e-31 2.70849e-31 -5.5829e-32 3.2725e-32 -5.11281e-33 3.61475e-33 -4.36259e-34 3.66906e-34 -3.47404e-35 3.4366e-35 -2.58624e-36 2.98042e-36 -1.80289e-37 2.40058e-37 -1.17895e-38 1.80057e-38 -7.24195e-40 1.26088e-39 -4.18488e-41 8.2604e-41 -2.27826e-42 5.07291e-42 -1.17008e-43 2.9259e-43 -5.67663e-45 1.5877e-44 -2.60486e-46 8.11885e-46 -1.13193e-47 3.91838e-47 -4.66342e-49 1.78744e-48 -1.82353e-50 7.71717e-50 -6.77519e-52 3.1575e-51 -2.39414e-53 1.22583e-52 -8.05391e-55 4.52058e-54 -2.58155e-56 1.58526e-55 -7.89107e-58 5.29157e-57 -2.30206e-59 1.68288e-58 -6.41423e-61 5.10372e-60 -1.70814e-62 1.47723e-61 -4.3505e-64 4.08384e-63 -1.06036e-65 1.07911e-64 -2.47461e-67 2.72726e-66 -5.53261e-69 6.59665e-68 -1.18557e-70 1.52794e-69 -2.43607e-72 3.3908e-71 -4.80171e-74 7.21312e-73 -9.08214e-76 1.47154e-74 -1.64893e-77 2.88011e-76 -2.87447e-79 5.40987e-78 -4.81232e-81 9.75541e-80 -7.73883e-83 1.68928e-81 -1.1956e-84 2.80968e-83 -1.77475e-86 4.48946e-85 -2.53137e-88 6.8925e-87 -3.4694e-90 1.01684e-88 -4.56905e-92 1.44163e-90 -5.78154e-94 1.9642e-92 -7.02852e-96 2.57182e-94 -8.20863e-98 3.23588e-96 -9.20698e-100 3.91242e-98 -9.91487e-102 4.54434e-100 -1.0248e-103 5.06958e-102 -1.01627e-105 5.43036e-104 -9.66483e-108 5.58336e-106 -8.80985e-110 5.50804e-108 -7.69251e-112 5.2111e-110 -6.42972e-114 4.72557e-112 -5.14051e-116 4.10488e-114 -3.9278e-118 3.4132e-116 -2.86522e-120 2.71463e-118 -1.99317e-122 2.06309e-120 -1.32055e-124 1.49671e-122 -8.3221e-127 1.03528e-124 -4.98027e-129 6.81971e-127 -2.82462e-131 4.27162e-129 -1.51512e-133 2.53945e-131 -7.66861e-136 1.43011e-133 -3.65329e-138 7.61298e-136 -1.63291e-140 3.82207e-138 -6.82522e-143 1.80432e-140 -2.65578e-145 7.98502e-143 -9.57803e-148 3.29885e-145 -3.18427e-150 1.26712e-147 -9.68983e-153 4.50257e-150 -2.67865e-155 1.47041e-152 -6.65875e-158 4.38254e-155 -1.47051e-160 1.18092e-157 -2.83718e-163 2.84457e-160 -4.6793e-166 6.02974e-163 -6.39412e-169 1.10179e-165 -6.90857e-172 1.68427e-168 -5.48884e-175 2.05832e-171 -2.8512e-178 1.87261e-174 -7.94689e-182 1.12892e-177 -8.30547e-186 3.70426e-181 -1.62177e-190 4.62577e-185 -1.17236e-196 1.09517e-189 -9.91711e-207 9.65809e-196 8.56691e-206 -1.18452e-20 -9.1098e-22 -3.85295e-21 -2.69549e-22 -1.15454e-21 -7.2937e-23 -3.18417e-22 -1.79751e-23 -8.0767e-23 -4.0166e-24 -1.88358e-23 -8.08986e-25 -4.03979e-24 -1.45643e-25 -7.97402e-25 -2.31061e-26 -1.4465e-25 -3.14269e-27 -2.40528e-26 -3.43234e-28 -3.67089e-27 -2.37682e-29 -5.1549e-28 6.50447e-30 -6.67476e-29 4.6739e-30 -7.98269e-30 1.0853e-30 -8.83372e-31 1.86677e-31 -9.06183e-32 2.68971e-32 -8.63308e-33 3.39463e-33 -7.65231e-34 3.83601e-34 -6.32251e-35 3.93156e-35 -4.87726e-36 3.68609e-36 -3.51873e-37 3.18063e-37 -2.37816e-38 2.53783e-38 -1.50827e-39 1.87968e-39 -8.98921e-41 1.29665e-40 -5.04197e-42 8.3528e-42 -2.66523e-43 5.03698e-43 -1.32959e-44 2.84963e-44 -6.26789e-46 1.51549e-45 -2.79571e-47 7.5902e-47 -1.18127e-48 3.5861e-48 -4.73366e-50 1.6008e-49 -1.80098e-51 6.76127e-51 -6.51253e-53 2.70573e-52 -2.24049e-54 1.02723e-53 -7.33998e-56 3.70414e-55 -2.29188e-57 1.27006e-56 -6.82651e-59 4.14502e-58 -1.94114e-60 1.2889e-59 -5.27341e-62 3.82207e-61 -1.36962e-63 1.08176e-62 -3.40306e-65 2.92456e-64 -8.09393e-67 7.55806e-66 -1.8438e-68 1.86843e-67 -4.02493e-70 4.42114e-69 -8.42361e-72 1.00193e-70 -1.69092e-73 2.17583e-72 -3.25697e-75 4.5301e-74 -6.02159e-77 9.04676e-76 -1.06893e-78 1.73358e-77 -1.82241e-80 3.18872e-79 -2.9847e-82 5.63185e-81 -4.69674e-84 9.55359e-83 -7.1023e-86 1.55692e-84 -1.03218e-87 2.438e-86 -1.44176e-89 3.66892e-88 -1.93565e-91 5.30671e-90 -2.49774e-93 7.37779e-92 -3.0976e-95 9.85943e-94 -3.69163e-97 1.26646e-95 -4.22772e-99 1.56359e-97 -4.65099e-101 1.85544e-99 -4.91385e-103 2.11562e-101 -4.98417e-105 2.31741e-103 -4.85166e-107 2.43793e-105 -4.53019e-109 2.46233e-107 -4.05548e-111 2.38675e-109 -3.4786e-113 2.2192e-111 -2.85695e-115 1.97825e-113 -2.24491e-117 1.68962e-115 -1.68626e-119 1.38169e-117 -1.20955e-121 1.08097e-119 -8.27579e-124 8.08304e-122 -5.39422e-126 5.77097e-124 -3.34524e-128 3.92942e-126 -1.97056e-130 2.54863e-128 -1.10039e-132 1.57224e-130 -5.813e-135 9.20795e-133 -2.89828e-137 5.10974e-135 -1.36038e-139 2.68102e-137 -5.99235e-142 1.32692e-139 -2.46921e-144 6.17687e-142 -9.4745e-147 2.69647e-144 -3.37012e-149 1.09919e-146 -1.1053e-151 4.16693e-149 -3.31932e-154 1.46172e-151 -9.0565e-157 4.71438e-154 -2.22277e-159 1.38796e-156 -4.84665e-162 3.69588e-159 -9.23352e-165 8.7987e-162 -1.50317e-167 1.8437e-164 -2.02522e-170 3.32949e-167 -2.15219e-173 5.02512e-170 -1.6735e-176 6.04906e-173 -8.42638e-180 5.39425e-176 -2.23508e-183 3.15673e-179 -2.14688e-187 9.86869e-183 -3.61027e-192 1.13329e-186 -1.95492e-198 2.3093e-191 -7.9781e-209 1.52047e-197 6.40575e-208 -2.85972e-21 -2.45171e-22 -8.80398e-22 -6.94094e-23 -2.4978e-22 -1.80443e-23 -6.52628e-23 -4.29781e-24 -1.56961e-23 -9.35831e-25 -3.47484e-24 -1.8585e-25 -7.08325e-25 -3.3564e-26 -1.33057e-25 -5.49114e-27 -2.30549e-26 -8.09083e-28 -3.68926e-27 -1.06345e-28 -5.46084e-28 -1.22261e-29 -7.45275e-29 -1.18304e-30 -9.36782e-30 -8.5566e-32 -1.0867e-30 -2.21785e-33 -1.16691e-31 5.84969e-33 -1.16196e-32 1.4563e-33 -1.07492e-33 2.26668e-34 -9.25548e-35 2.84606e-35 -7.43105e-36 3.09131e-36 -5.57253e-37 2.99373e-37 -3.90967e-38 2.62731e-38 -2.5706e-39 2.11088e-39 -1.58653e-40 1.56362e-40 -9.20477e-42 1.07349e-41 -5.02763e-43 6.85825e-43 -2.58888e-44 4.09092e-44 -1.25848e-45 2.28481e-45 -5.7828e-47 1.19774e-46 -2.51492e-48 5.90611e-48 -1.03639e-49 2.74477e-49 -4.05165e-51 1.20432e-50 -1.50426e-52 4.99694e-52 -5.30949e-54 1.96352e-53 -1.78338e-55 7.31707e-55 -5.70564e-57 2.58912e-56 -1.74027e-58 8.70949e-58 -5.06458e-60 2.78826e-59 -1.40743e-61 8.50386e-61 -3.73755e-63 2.47316e-62 -9.4913e-65 6.86477e-64 -2.30635e-66 1.82009e-65 -5.36596e-68 4.61302e-67 -1.19601e-69 1.11843e-68 -2.55511e-71 2.59566e-70 -5.23457e-73 5.76985e-72 -1.02881e-74 1.22913e-73 -1.94068e-76 2.51054e-75 -3.51464e-78 4.91912e-77 -6.11287e-80 9.24962e-79 -1.02133e-81 1.66969e-80 -1.63961e-83 2.89445e-82 -2.52961e-85 4.81989e-84 -3.75119e-87 7.71177e-86 -5.34729e-89 1.18578e-87 -7.32786e-91 1.75249e-89 -9.65403e-93 2.48977e-91 -1.2227e-94 3.40052e-93 -1.48863e-96 4.46504e-95 -1.74204e-98 5.6363e-97 -1.95935e-100 6.83952e-99 -2.11744e-102 7.9784e-101 -2.19807e-104 8.9444e-103 -2.19108e-106 9.63466e-105 -2.0965e-108 9.96904e-107 -1.92466e-110 9.90505e-109 -1.69436e-112 9.44657e-111 -1.42951e-114 8.64377e-113 -1.15505e-116 7.58417e-115 -8.93101e-119 6.37702e-117 -6.60262e-121 5.13482e-119 -4.66229e-123 3.9563e-121 -3.14093e-125 2.91407e-123 -2.01627e-127 2.04978e-125 -1.23172e-129 1.37534e-127 -7.14885e-132 8.79222e-130 -3.9342e-134 5.34711e-132 -2.04864e-136 3.08791e-134 -1.00706e-138 1.69005e-136 -4.66119e-141 8.74761e-139 -2.02511e-143 4.27168e-141 -8.23287e-146 1.96238e-143 -3.11742e-148 8.45681e-146 -1.09446e-150 3.40402e-148 -3.54354e-153 1.27445e-150 -1.05088e-155 4.41635e-153 -2.83166e-158 1.40761e-155 -6.86572e-161 4.09593e-158 -1.47889e-163 1.0784e-160 -2.78336e-166 2.53861e-163 -4.47426e-169 5.26063e-166 -5.94499e-172 9.39178e-169 -6.21372e-175 1.39972e-171 -4.72679e-178 1.65947e-174 -2.30448e-181 1.44968e-177 -5.80421e-185 8.22436e-181 -5.10439e-189 2.44357e-184 -7.34464e-194 2.56962e-188 -2.94777e-200 4.47498e-193 -5.68349e-211 2.17451e-199 4.24756e-210 -5.82604e-22 -5.33329e-23 -1.68481e-22 -1.42411e-23 -4.49377e-23 -3.50053e-24 -1.10495e-23 -7.90978e-25 -2.50438e-24 -1.64141e-25 -5.233e-25 -3.1251e-26 -1.0087e-25 -5.45337e-27 -1.79507e-26 -8.71069e-28 -2.95302e-27 -1.27137e-28 -4.49674e-28 -1.69093e-29 -6.34787e-29 -2.04021e-30 -8.32231e-30 -2.21569e-31 -1.01525e-30 -2.13408e-32 -1.15237e-31 -1.76522e-33 -1.20968e-32 -1.15403e-34 -1.17621e-33 -4.09213e-36 -1.06243e-34 3.94183e-36 -8.9332e-36 1.10151e-36 -7.00487e-37 1.54683e-37 -5.13115e-38 1.69587e-38 -3.51716e-39 1.59385e-39 -2.25975e-40 1.33241e-40 -1.36306e-41 1.00971e-41 -7.73045e-43 7.01549e-43 -4.12823e-44 4.50307e-44 -2.07878e-45 2.68493e-45 -9.88388e-47 1.49336e-46 -4.44309e-48 7.77462e-48 -1.8907e-49 3.79929e-49 -7.62526e-51 1.74697e-50 -2.91795e-52 7.57429e-52 -1.06063e-53 3.10232e-53 -3.66574e-55 1.2024e-54 -1.20586e-56 4.41668e-56 -3.77899e-58 1.53967e-57 -1.12922e-59 5.10033e-59 -3.22012e-61 1.60739e-60 -8.76986e-63 4.82464e-62 -2.28278e-64 1.3806e-63 -5.68311e-66 3.76993e-65 -1.35407e-67 9.83186e-67 -3.08951e-69 2.45087e-68 -6.75425e-71 5.84395e-70 -1.41555e-72 1.3338e-71 -2.8454e-74 2.91569e-73 -5.48802e-76 6.10814e-75 -1.01608e-77 1.22693e-76 -1.80644e-79 2.36426e-78 -3.08482e-81 4.37225e-80 -5.06134e-83 7.76276e-82 -7.98053e-85 1.32365e-83 -1.20951e-86 2.16823e-85 -1.76224e-88 3.41287e-87 -2.46856e-90 5.16304e-89 -3.32488e-92 7.50818e-91 -4.30597e-94 1.04969e-92 -5.36192e-96 1.41096e-94 -6.41943e-98 1.82353e-96 -7.38844e-100 2.26595e-98 -8.17445e-102 2.70707e-100 -8.6913e-104 3.10925e-102 -8.878e-106 3.4325e-104 -8.70978e-108 3.64144e-106 -8.20339e-110 3.71129e-108 -7.41441e-112 3.63264e-110 -6.42728e-114 3.41345e-112 -5.34051e-116 3.07779e-114 -4.25052e-118 2.66147e-116 -3.23793e-120 2.20584e-118 -2.35872e-122 1.75101e-120 -1.64146e-124 1.33022e-122 -1.09001e-126 9.66205e-125 -6.89846e-129 6.70315e-127 -4.15539e-131 4.43674e-129 -2.37858e-133 2.79832e-131 -1.29122e-135 1.67935e-133 -6.63363e-138 9.57167e-136 -3.21781e-140 5.17134e-138 -1.46989e-142 2.64272e-140 -6.30371e-145 1.27433e-142 -2.53025e-147 5.7819e-145 -9.46154e-150 2.46154e-147 -3.28079e-152 9.79048e-150 -1.04931e-154 3.62256e-152 -3.0749e-157 1.24087e-154 -8.18757e-160 3.91078e-157 -1.96221e-162 1.12538e-159 -4.17745e-165 2.9311e-162 -7.77035e-168 6.82598e-165 -1.2338e-170 1.39941e-167 -1.61704e-173 2.47059e-170 -1.66218e-176 3.63638e-173 -1.23634e-179 4.24529e-176 -5.82915e-183 3.63073e-179 -1.3908e-186 1.99408e-182 -1.11535e-190 5.61612e-186 -1.36402e-195 5.38473e-190 -4.01394e-202 7.95679e-195 -3.57886e-213 2.82006e-201 2.49098e-212 -1.00241e-22 -9.5807e-24 -2.70409e-23 -2.3884e-24 -6.73396e-24 -5.49269e-25 -1.5481e-24 -1.16421e-25 -3.2864e-25 -2.27331e-26 -6.44574e-26 -4.08895e-27 -1.16892e-26 -6.77397e-28 -1.96199e-27 -1.03366e-28 -3.05221e-28 -1.45225e-29 -4.40686e-29 -1.87791e-30 -5.9143e-30 -2.23249e-31 -7.39234e-31 -2.43457e-32 -8.62188e-32 -2.42573e-33 -9.40138e-33 -2.19254e-34 -9.60236e-34 -1.77289e-35 -9.1958e-35 -1.24516e-36 -8.18837e-36 -7.02528e-38 -6.77569e-37 -2.32216e-39 -5.2255e-38 1.86584e-39 -3.76354e-39 5.06557e-40 -2.53586e-40 6.23774e-41 -1.60128e-41 5.93568e-42 -9.4913e-43 4.83654e-43 -5.28898e-44 3.5095e-44 -2.77497e-45 2.31297e-45 -1.37282e-46 1.40084e-46 -6.41259e-48 7.85697e-48 -2.832e-49 4.10369e-49 -1.18397e-50 2.00435e-50 -4.69132e-52 9.1856e-52 -1.76383e-53 3.96073e-53 -6.29945e-55 1.61063e-54 -2.13935e-56 6.18943e-56 -6.91551e-58 2.25173e-57 -2.12979e-59 7.76759e-59 -6.25464e-61 2.54439e-60 -1.75302e-62 7.92451e-62 -4.6928e-64 2.34947e-63 -1.20077e-65 6.63819e-65 -2.93885e-67 1.78914e-66 -6.88433e-69 4.60417e-68 -1.54447e-70 1.13225e-69 -3.32027e-72 2.66286e-71 -6.84338e-74 5.99356e-73 -1.35294e-75 1.29192e-74 -2.56676e-77 2.66844e-76 -4.67493e-79 5.28435e-78 -8.17697e-81 1.00384e-79 -1.37395e-82 1.83002e-81 -2.21833e-84 3.20288e-83 -3.44241e-86 5.38356e-85 -5.13524e-88 8.69311e-87 -7.36523e-90 1.34887e-88 -1.01575e-91 2.01164e-90 -1.34708e-93 2.88397e-92 -1.71797e-95 3.97508e-94 -2.10691e-97 5.26808e-96 -2.4846e-99 6.71317e-98 -2.81708e-101 8.22562e-100 -3.07071e-103 9.69064e-102 -3.21703e-105 1.09766e-103 -3.23838e-107 1.19514e-105 -3.13126e-109 1.25057e-107 -2.9071e-111 1.25727e-109 -2.59031e-113 1.21403e-111 -2.21395e-115 1.1255e-113 -1.81404e-117 1.00134e-115 -1.42392e-119 8.54467e-118 -1.06991e-121 6.98917e-120 -7.68866e-124 5.47601e-122 -5.27903e-126 4.10645e-124 -3.45912e-128 2.94463e-126 -2.16054e-130 2.01702e-128 -1.28455e-132 1.31833e-130 -7.25847e-135 8.21168e-133 -3.89027e-137 4.86753e-135 -1.97356e-139 2.74061e-137 -9.4546e-142 1.46291e-139 -4.26581e-144 7.38729e-142 -1.80722e-146 3.52036e-144 -7.16734e-149 1.57875e-146 -2.64855e-151 6.64466e-149 -9.0767e-154 2.61322e-151 -2.86954e-156 9.5621e-154 -8.31393e-159 3.23968e-156 -2.18881e-161 1.01019e-158 -5.18755e-164 2.87633e-161 -1.09205e-166 7.41462e-164 -2.00834e-169 1.70895e-166 -3.15078e-172 3.46742e-169 -4.07376e-175 6.05494e-172 -4.11768e-178 8.80212e-175 -2.99298e-181 1.01168e-177 -1.36288e-184 8.46469e-181 -3.07279e-188 4.49406e-184 -2.23789e-192 1.19657e-187 -2.31022e-197 1.04141e-191 -4.9297e-204 1.29615e-196 -1.98844e-215 3.31041e-203 1.28813e-214 -1.46452e-23 -1.45841e-24 -3.66238e-24 -3.36823e-25 -8.46536e-25 -7.189e-26 -1.80901e-25 -1.41745e-26 -3.5763e-26 -2.58168e-27 -6.5463e-27 -4.34512e-28 -1.1109e-27 -6.76008e-29 -1.74965e-28 -9.72525e-30 -2.56178e-29 -1.29495e-30 -3.49256e-30 -1.59692e-31 -4.44105e-31 -1.82493e-32 -5.27569e-32 -1.93201e-33 -5.86623e-33 -1.89331e-34 -6.11802e-34 -1.71397e-35 -5.9957e-35 -1.42723e-36 -5.53267e-36 -1.08475e-37 -4.81467e-37 -7.41713e-39 -3.95537e-38 -4.41119e-40 -3.03377e-39 -2.10322e-41 -2.16784e-40 -5.50867e-43 -1.44761e-41 7.31804e-43 -9.05139e-43 1.48418e-43 -5.30855e-44 1.54584e-44 -2.92522e-45 1.26691e-45 -1.51691e-46 8.9585e-47 -7.41382e-48 5.66822e-48 -3.42005e-49 3.26951e-49 -1.49118e-50 1.73856e-50 -6.15323e-52 8.58585e-52 -2.40599e-53 3.95892e-53 -8.92512e-55 1.71129e-54 -3.14451e-56 6.95702e-56 -1.05335e-57 2.66698e-57 -3.35821e-59 9.66244e-59 -1.01994e-60 3.31481e-60 -2.95373e-62 1.07862e-61 -8.16316e-64 3.33404e-63 -2.15471e-65 9.80269e-65 -5.4361e-67 2.74485e-66 -1.31179e-68 7.32772e-68 -3.02971e-70 1.86694e-69 -6.70146e-72 4.54361e-71 -1.42041e-73 1.05717e-72 -2.88648e-75 2.35336e-74 -5.62649e-77 5.01579e-76 -1.05249e-78 1.02417e-77 -1.89012e-80 2.00465e-79 -3.2599e-82 3.76334e-81 -5.40128e-84 6.77915e-83 -8.59979e-86 1.17226e-84 -1.31607e-87 1.94661e-86 -1.93624e-89 3.10514e-88 -2.73899e-91 4.75938e-90 -3.72584e-93 7.0111e-92 -4.87406e-95 9.92819e-94 -6.13202e-97 1.35164e-95 -7.41916e-99 1.7693e-97 -8.63212e-101 2.22695e-99 -9.65708e-103 2.69519e-101 -1.03872e-104 3.1363e-103 -1.07389e-106 3.50897e-105 -1.06688e-108 3.7739e-107 -1.01818e-110 3.90083e-109 -9.33076e-113 3.87406e-111 -8.20728e-115 3.69555e-113 -6.92537e-117 3.38476e-115 -5.60256e-119 2.97519e-117 -4.34241e-121 2.50847e-119 -3.22208e-123 2.02742e-121 -2.28677e-125 1.5697e-123 -1.55078e-127 1.16326e-125 -1.00375e-129 8.24396e-128 -6.19355e-132 5.58137e-130 -3.63812e-134 3.60599e-132 -2.03126e-136 2.22039e-134 -1.07582e-138 1.30119e-136 -5.39385e-141 7.24362e-139 -2.55404e-143 3.82341e-141 -1.1391e-145 1.90937e-143 -4.77085e-148 8.99919e-146 -1.8708e-150 3.992e-148 -6.83626e-153 1.66217e-150 -2.31697e-155 6.46799e-153 -7.24482e-158 2.34201e-155 -2.07649e-160 7.85298e-158 -5.40812e-163 2.42402e-160 -1.26814e-165 6.83285e-163 -2.64093e-168 1.74408e-165 -4.80365e-171 3.98013e-168 -7.4479e-174 7.99494e-171 -9.50052e-177 1.38121e-173 -9.44099e-180 1.98319e-176 -6.70149e-183 2.2435e-179 -2.94297e-186 1.83506e-182 -6.25389e-190 9.40335e-186 -4.11872e-194 2.36037e-189 -3.56396e-199 1.85633e-193 -5.45248e-206 1.93149e-198 -9.72633e-218 3.51115e-205 5.85338e-217 -1.84655e-24 -1.96162e-25 -4.25558e-25 -4.16893e-26 -9.07931e-26 -8.20147e-27 -1.794e-26 -1.49339e-27 -3.28593e-27 -2.51761e-28 -5.58458e-28 -3.93078e-29 -8.81674e-29 -5.6894e-30 -1.29548e-29 -7.63986e-31 -1.77484e-30 -9.53249e-32 -2.27205e-31 -1.10637e-32 -2.72248e-32 -1.19628e-33 -3.05956e-33 -1.20627e-34 -3.23123e-34 -1.1352e-35 -3.21235e-35 -9.9699e-37 -3.01181e-36 -8.16518e-38 -2.66741e-37 -6.21864e-39 -2.23653e-38 -4.38287e-40 -1.77802e-39 -2.833e-41 -1.34227e-40 -1.64836e-42 -9.61969e-42 -8.30199e-44 -6.44371e-43 -3.23338e-45 -4.02943e-44 -4.63315e-47 -2.35933e-45 2.03758e-46 -1.29605e-46 2.80511e-47 -6.69172e-48 2.42102e-48 -3.25295e-49 1.70244e-49 -1.49121e-50 1.04691e-50 -6.45618e-52 5.80329e-52 -2.64366e-53 2.94725e-53 -1.0252e-54 1.38507e-54 -3.76989e-56 6.06427e-56 -1.31609e-57 2.48581e-57 -4.3668e-59 9.57584e-59 -1.37854e-60 3.47704e-60 -4.14468e-62 1.19301e-61 -1.1879e-63 3.87604e-63 -3.24839e-65 1.19461e-64 -8.48235e-67 3.4982e-66 -2.11671e-68 9.74648e-68 -5.05148e-70 2.58689e-69 -1.15367e-71 6.54817e-71 -2.52304e-73 1.58239e-72 -5.28691e-75 3.65391e-74 -1.06206e-76 8.06887e-76 -2.04634e-78 1.70532e-77 -3.78347e-80 3.4517e-79 -6.71536e-82 6.69523e-81 -1.14465e-83 1.24524e-82 -1.87429e-85 2.22182e-84 -2.94909e-87 3.80474e-86 -4.45997e-89 6.25566e-88 -6.4842e-91 9.87878e-90 -9.06426e-93 1.4988e-91 -1.21846e-94 2.18525e-93 -1.57516e-96 3.06242e-95 -1.95835e-98 4.12571e-97 -2.34153e-100 5.34381e-99 -2.69234e-102 6.65499e-101 -2.9767e-104 7.96878e-103 -3.16425e-106 9.1742e-105 -3.23319e-108 1.01545e-106 -3.17466e-110 1.08042e-108 -2.99456e-112 1.10477e-110 -2.7125e-114 1.08539e-112 -2.35837e-116 1.02425e-114 -1.96715e-118 9.28032e-117 -1.57318e-120 8.06975e-119 -1.20544e-122 6.73084e-121 -8.84287e-125 5.3818e-123 -6.20502e-127 4.12224e-125 -4.16061e-129 3.02232e-127 -2.66285e-131 2.11912e-129 -1.62482e-133 1.4195e-131 -9.43858e-136 9.07439e-134 -5.21171e-138 5.52883e-136 -2.73004e-140 3.20605e-138 -1.35388e-142 1.7662e-140 -6.34151e-145 9.22609e-143 -2.79795e-147 4.56008e-145 -1.15935e-149 2.12731e-147 -4.49807e-152 9.34105e-150 -1.62644e-154 3.85036e-152 -5.45496e-157 1.48341e-154 -1.68801e-159 5.3185e-157 -4.78868e-162 1.76597e-159 -1.23444e-164 5.39896e-162 -2.86518e-167 1.50739e-164 -5.90512e-170 3.81148e-167 -1.06269e-172 8.61562e-170 -1.62872e-175 1.71388e-172 -2.04983e-178 2.92987e-175 -2.00215e-181 4.1551e-178 -1.3869e-184 4.62511e-181 -5.86503e-188 3.69536e-184 -1.17154e-191 1.8247e-187 -6.94676e-196 4.30576e-191 -5.00266e-201 3.04586e-195 -5.424e-208 2.62931e-200 -4.17811e-220 3.35902e-207 2.32827e-219 -2.07556e-25 -2.50439e-26 -4.38482e-26 -4.85874e-27 -8.58883e-27 -8.7292e-28 -1.56077e-27 -1.45351e-28 -2.63317e-28 -2.24513e-29 -4.13029e-29 -3.22005e-30 -6.03137e-30 -4.29114e-31 -8.2175e-31 -5.32266e-32 -1.04657e-31 -6.1512e-33 -1.2491e-32 -6.63744e-34 -1.4003e-33 -6.70107e-35 -1.47802e-34 -6.34138e-36 -1.47198e-35 -5.63278e-37 -1.38645e-36 -4.70326e-38 -1.23694e-37 -3.69298e-39 -1.04716e-38 -2.72744e-40 -8.42569e-40 -1.89155e-41 -6.45405e-41 -1.22782e-42 -4.71338e-42 -7.41161e-44 -3.28714e-43 -4.10926e-45 -2.1918e-44 -2.04179e-46 -1.38975e-45 -8.58811e-48 -8.22459e-47 -2.51561e-49 -4.55114e-48 6.80752e-50 -2.36137e-49 3.49983e-50 -1.15121e-50 3.42325e-51 -5.28362e-52 2.44891e-52 -2.28696e-53 1.48093e-53 -9.35069e-55 7.95305e-55 -3.61696e-56 3.88269e-56 -1.32546e-57 1.74627e-57 -4.60769e-59 7.2974e-59 -1.52133e-60 2.85024e-60 -4.77618e-62 1.04511e-61 -1.42732e-63 3.60989e-63 -4.06421e-65 1.1778e-64 -1.1037e-66 3.63821e-66 -2.86107e-68 1.06606e-67 -7.08528e-70 2.96812e-69 -1.67753e-71 7.86352e-71 -3.79991e-73 1.98495e-72 -8.24049e-75 4.77943e-74 -1.71188e-76 1.09886e-75 -3.4086e-78 2.41463e-77 -6.5086e-80 5.07529e-79 -1.19237e-81 1.02117e-80 -2.09671e-83 1.96814e-82 -3.54021e-85 3.63584e-84 -5.7416e-87 6.44131e-86 -8.94702e-89 1.0949e-87 -1.33991e-90 1.78645e-89 -1.92893e-92 2.7989e-91 -2.6698e-94 4.21211e-93 -3.55315e-96 6.09041e-95 -4.54736e-98 8.463e-97 -5.59674e-100 1.13034e-98 -6.62426e-102 1.45127e-100 -7.53954e-104 1.79135e-102 -8.25114e-106 2.12575e-104 -8.68157e-108 2.42513e-106 -8.78009e-110 2.65969e-108 -8.53295e-112 2.80371e-110 -7.9664e-114 2.84023e-112 -7.14206e-116 2.76431e-114 -6.14595e-118 2.58404e-116 -5.07382e-120 2.31914e-118 -4.01607e-122 1.99747e-120 -3.04574e-124 1.65019e-122 -2.21142e-126 1.30684e-124 -1.53588e-128 9.91404e-127 -1.01933e-130 7.19905e-129 -6.45733e-133 4.99923e-131 -3.9001e-135 3.3166e-133 -2.24255e-137 2.09987e-135 -1.2257e-139 1.26713e-137 -6.35563e-142 7.27728e-140 -3.12011e-144 3.97062e-142 -1.44678e-146 2.05433e-144 -6.31952e-149 1.00572e-146 -2.59246e-151 4.64731e-149 -9.9584e-154 2.0214e-151 -3.56527e-156 8.25395e-154 -1.18402e-158 3.15033e-156 -3.62798e-161 1.11905e-158 -1.01921e-163 3.68157e-161 -2.60177e-166 1.11533e-163 -5.97993e-169 3.0859e-166 -1.2202e-171 7.73269e-169 -2.1732e-174 1.73201e-171 -3.29303e-177 3.41306e-174 -4.08911e-180 5.7744e-177 -3.92459e-183 8.08833e-180 -2.65091e-186 8.85591e-183 -1.07783e-189 6.90579e-186 -2.01819e-193 3.28036e-189 -1.07267e-197 7.25568e-193 -6.38231e-203 4.59494e-197 -4.84649e-210 3.26546e-202 -1.57249e-222 2.89375e-209 8.06996e-222 -2.21179e-26 -3.23234e-27 -4.25116e-27 -5.69898e-28 -7.58443e-28 -9.27965e-29 -1.25733e-28 -1.39941e-29 -1.93922e-29 -1.95744e-30 -2.78544e-30 -2.54477e-31 -3.73404e-31 -3.08099e-32 -4.6786e-32 -3.48108e-33 -5.49392e-33 -3.67944e-34 -6.06282e-34 -3.64467e-35 -6.3046e-35 -3.39179e-36 -6.19302e-36 -2.97076e-37 -5.76308e-37 -2.45499e-38 -5.09172e-38 -1.918e-39 -4.28269e-39 -1.41859e-40 -3.43544e-40 -9.94316e-42 -2.63318e-41 -6.60669e-43 -1.93137e-42 -4.16013e-44 -1.35739e-43 -2.47657e-45 -9.1499e-45 -1.38709e-46 -5.92384e-46 -7.24337e-48 -3.68834e-47 -3.46356e-49 -2.20973e-48 -1.46118e-50 -1.25023e-49 -4.92457e-52 -6.59683e-51 -7.54391e-54 -3.25882e-52 2.88212e-53 -1.51111e-53 3.64991e-54 -6.59204e-55 2.71983e-55 -2.71088e-56 1.63347e-56 -1.05283e-57 8.55343e-58 -3.868e-59 4.03521e-59 -1.34632e-60 1.74499e-60 -4.44583e-62 6.99018e-62 -1.39462e-63 2.61224e-63 -4.16078e-65 9.15319e-65 -1.18191e-66 3.01883e-66 -3.19984e-68 9.40012e-68 -8.26453e-70 2.77035e-69 -2.03814e-71 7.74361e-71 -4.80317e-73 2.05648e-72 -1.0825e-74 5.1969e-74 -2.33476e-76 1.25136e-75 -4.82218e-78 2.87439e-77 -9.54314e-80 6.30514e-79 -1.8106e-81 1.322e-80 -3.29495e-83 2.65167e-82 -5.75404e-85 5.09192e-84 -9.6464e-87 9.36727e-86 -1.55304e-88 1.65184e-87 -2.40192e-90 2.7937e-89 -3.56954e-92 4.53364e-91 -5.0985e-94 7.06234e-93 -7.00048e-96 1.05642e-94 -9.24125e-98 1.5179e-96 -1.17298e-99 2.09541e-98 -1.43163e-101 2.77973e-100 -1.68018e-103 3.5441e-102 -1.89602e-105 4.34327e-104 -2.05709e-107 5.11628e-106 -2.14557e-109 5.79311e-108 -2.15089e-111 6.3049e-110 -2.07187e-113 6.59466e-112 -1.9171e-115 6.62786e-114 -1.70334e-117 6.3991e-116 -1.45259e-119 5.93334e-118 -1.18834e-121 5.28148e-120 -9.3206e-124 4.51129e-122 -7.00414e-126 3.69582e-124 -5.03897e-128 2.9022e-126 -3.46754e-130 2.18302e-128 -2.28014e-132 1.57166e-130 -1.43112e-134 1.08204e-132 -8.56384e-137 7.11655e-135 -4.87857e-139 4.46677e-137 -2.64168e-141 2.67194e-139 -1.35704e-143 1.5211e-141 -6.60005e-146 8.22667e-144 -3.03199e-148 4.21903e-146 -1.31207e-150 2.04738e-148 -5.33254e-153 9.37774e-151 -2.02935e-155 4.04325e-153 -7.198e-158 1.63652e-155 -2.36831e-160 6.19169e-158 -7.18956e-163 2.1803e-160 -2.00111e-165 7.11086e-163 -5.06095e-168 2.13574e-165 -1.15233e-170 5.85849e-168 -2.32878e-173 1.45542e-170 -4.10592e-176 3.2314e-173 -6.15221e-179 6.30951e-176 -7.53729e-182 1.05661e-178 -7.10597e-185 1.46172e-181 -4.67654e-188 1.57367e-184 -1.82514e-191 1.19662e-187 -3.19456e-195 5.45872e-191 -1.51504e-199 1.12839e-194 -7.39322e-205 6.36693e-199 -3.88481e-212 3.69585e-204 -5.17001e-225 2.24153e-211 2.42454e-224 -2.37005e-27 -3.84527e-28 -4.12363e-28 -6.2122e-29 -6.65283e-29 -9.24232e-30 -9.96791e-30 -1.27077e-30 -1.39009e-30 -1.61811e-31 -1.80841e-31 -1.91094e-32 -2.19992e-32 -2.0992e-33 -2.50951e-33 -2.15038e-34 -2.69032e-34 -2.06172e-35 -2.7187e-35 -1.85698e-36 -2.59609e-36 -1.57627e-37 -2.35011e-37 -1.26573e-38 -2.0229e-38 -9.63657e-40 -1.65996e-39 -6.96973e-41 -1.30202e-40 -4.7993e-42 -9.78554e-42 -3.15086e-43 -7.06567e-43 -1.97528e-44 -4.91005e-44 -1.18262e-45 -3.28959e-45 -6.76297e-47 -2.12666e-46 -3.68992e-48 -1.32817e-47 -1.91356e-49 -8.01725e-49 -9.36245e-51 -4.6834e-50 -4.26269e-52 -2.64918e-51 -1.75515e-53 -1.44035e-52 -6.12053e-55 -7.30749e-54 -1.40594e-56 -3.46205e-55 1.3186e-56 -1.537e-56 3.00283e-57 -6.41173e-58 2.38336e-58 -2.5192e-59 1.4313e-59 -9.342e-61 7.33964e-61 -3.27579e-62 3.35862e-62 -1.08796e-63 1.4015e-63 -3.4276e-65 5.40055e-65 -1.02575e-66 1.93755e-66 -2.91953e-68 6.5093e-68 -7.91232e-70 2.05656e-69 -2.04396e-71 6.13079e-71 -5.03779e-73 1.72912e-72 -1.18575e-74 4.6241e-74 -2.66742e-76 1.17471e-75 -5.73935e-78 2.83943e-77 -1.18198e-79 6.53923e-79 -2.33134e-81 1.43663e-80 -4.40664e-83 3.01406e-82 -7.98623e-85 6.04442e-84 -1.38842e-86 1.15963e-85 -2.31648e-88 2.12995e-87 -3.7105e-90 3.74794e-89 -5.70792e-92 6.32185e-91 -8.43511e-94 1.0227e-92 -1.19778e-95 1.58744e-94 -1.63465e-97 2.36518e-96 -2.14438e-99 3.3837e-98 -2.70428e-101 4.64942e-100 -3.27874e-103 6.13736e-102 -3.82185e-105 7.78417e-104 -4.28288e-107 9.48724e-106 -4.61382e-109 1.1112e-107 -4.77752e-111 1.25074e-109 -4.75417e-113 1.35288e-111 -4.54535e-115 1.40611e-113 -4.17396e-117 1.40401e-115 -3.6801e-119 1.34653e-117 -3.11395e-121 1.24002e-119 -2.52747e-123 1.09612e-121 -1.96664e-125 9.29641e-124 -1.46602e-127 7.56114e-126 -1.04616e-129 5.89409e-128 -7.14034e-132 4.40063e-130 -4.65665e-134 3.14444e-132 -2.89851e-136 2.14839e-134 -1.72001e-138 1.40214e-136 -9.71608e-141 8.73238e-139 -5.21657e-143 5.1826e-141 -2.65697e-145 2.92703e-143 -1.28119e-147 1.57042e-145 -5.83522e-150 7.98929e-148 -2.50342e-152 3.8458e-150 -1.00867e-154 1.74729e-152 -3.80525e-157 7.47248e-155 -1.33796e-159 2.99986e-157 -4.36386e-162 1.12573e-159 -1.31316e-164 3.93182e-162 -3.62292e-167 1.27188e-164 -9.08173e-170 3.789e-167 -2.04928e-172 1.03089e-169 -4.10313e-175 2.53999e-172 -7.16341e-178 5.59195e-175 -1.06151e-180 1.08215e-177 -1.28303e-183 1.79396e-180 -1.18777e-186 2.4509e-183 -7.60956e-190 2.59347e-186 -2.84593e-193 1.92128e-189 -4.64294e-197 8.40218e-193 -1.95579e-201 1.61834e-196 -7.76942e-207 8.09677e-201 -2.79033e-214 3.80854e-206 -1.48069e-227 1.55913e-213 6.27337e-227 -2.35718e-28 -3.31624e-29 -3.75324e-29 -4.91362e-30 -5.52632e-30 -6.76093e-31 -7.53965e-31 -8.65658e-32 -9.54685e-32 -1.03118e-32 -1.12549e-32 -1.14044e-33 -1.23882e-33 -1.1701e-34 -1.27825e-34 -1.11538e-35 -1.24149e-35 -9.89669e-37 -1.13912e-36 -8.21158e-38 -9.91691e-38 -6.401e-39 -8.21522e-39 -4.71515e-40 -6.49326e-40 -3.2995e-41 -4.91212e-41 -2.20268e-42 -3.56579e-42 -1.40695e-43 -2.49126e-43 -8.61881e-45 -1.67868e-44 -5.06809e-46 -1.09393e-45 -2.86487e-47 -6.91181e-47 -1.55802e-48 -4.24161e-48 -8.14774e-50 -2.53074e-49 -4.09507e-51 -1.46922e-50 -1.97315e-52 -8.30468e-52 -9.05755e-54 -4.57128e-53 -3.9153e-55 -2.45334e-54 -1.55765e-56 -1.2811e-55 -5.41355e-58 -6.29525e-57 -1.39948e-59 -2.87863e-58 -1.34787e-62 -1.23066e-59 1.95689e-60 -4.93525e-61 1.68357e-61 -1.86172e-62 1.01415e-62 -6.62219e-64 5.10434e-64 -2.2258e-65 2.27108e-65 -7.08226e-67 9.1685e-67 -2.13688e-68 3.40781e-68 -6.12285e-70 1.17701e-69 -1.6683e-71 3.80177e-71 -4.32786e-73 1.15377e-72 -1.0701e-74 3.30177e-74 -2.52446e-76 8.93519e-76 -5.68725e-78 2.29198e-77 -1.22459e-79 5.58363e-79 -2.52213e-81 1.29403e-80 -4.97204e-83 2.85702e-82 -9.38789e-85 6.01681e-84 -1.69871e-86 1.20997e-85 -2.94722e-88 2.3257e-87 -4.90514e-90 4.27633e-89 -7.83457e-92 7.52749e-91 -1.20133e-93 1.26934e-92 -1.76901e-95 2.05164e-94 -2.50228e-97 3.1801e-96 -3.40075e-99 4.72917e-98 -4.44141e-101 6.74988e-100 -5.57481e-103 9.24929e-102 -6.72572e-105 1.21711e-103 -7.79935e-107 1.53833e-105 -8.69326e-109 1.86776e-107 -9.31281e-111 2.17865e-109 -9.58765e-113 2.44148e-111 -9.4841e-115 2.62859e-113 -9.0121e-117 2.71863e-115 -8.22386e-119 2.70065e-117 -7.20425e-121 2.57624e-119 -6.05594e-123 2.35932e-121 -4.88243e-125 2.07357e-123 -3.77312e-127 1.74825e-125 -2.79311e-129 1.41328e-127 -1.97911e-131 1.09482e-129 -1.34112e-133 8.12202e-132 -8.68269e-136 5.76573e-134 -5.36468e-138 3.91319e-136 -3.1597e-140 2.53665e-138 -1.77137e-142 1.56893e-140 -9.43756e-145 9.24629e-143 -4.76962e-147 5.18495e-145 -2.28193e-149 2.76179e-147 -1.03113e-151 1.39478e-149 -4.38865e-154 6.66471e-152 -1.75412e-156 3.00557e-154 -6.56393e-159 1.27576e-156 -2.28912e-161 5.08285e-159 -7.40508e-164 1.89289e-161 -2.20991e-166 6.56093e-164 -6.0462e-169 2.1061e-166 -1.50287e-171 6.22592e-169 -3.36198e-174 1.68083e-171 -6.67136e-177 4.10882e-174 -1.15355e-179 8.97247e-177 -1.69074e-182 1.72126e-179 -2.01596e-185 2.82503e-182 -1.8319e-188 3.81118e-185 -1.14147e-191 3.96223e-188 -4.08405e-195 2.85697e-191 -6.19251e-199 1.19566e-194 -2.30628e-203 2.13936e-198 -7.40255e-209 9.44461e-203 -1.79445e-216 3.57099e-208 -3.68402e-230 9.7269e-216 1.38643e-229 -1.72318e-29 -1.84753e-30 -2.54309e-30 -2.40484e-31 -3.49196e-31 -2.97957e-32 -4.45949e-32 -3.53026e-33 -5.28684e-33 -3.98645e-34 -5.81549e-34 -4.24977e-35 -5.94623e-35 -4.23386e-36 -5.66422e-36 -3.92433e-37 -5.05198e-37 -3.37255e-38 -4.24045e-38 -2.68976e-39 -3.37088e-39 -1.99882e-40 -2.55256e-40 -1.38966e-41 -1.85022e-41 -9.11307e-43 -1.28849e-42 -5.67246e-44 -8.64874e-44 -3.37842e-45 -5.60655e-45 -1.93419e-46 -3.51999e-46 -1.06909e-47 -2.14592e-47 -5.71634e-49 -1.27272e-48 -2.95587e-50 -7.36419e-50 -1.48014e-51 -4.16702e-51 -7.17441e-53 -2.30835e-52 -3.36212e-54 -1.25333e-53 -1.51976e-55 -6.67084e-55 -6.5969e-57 -3.48044e-56 -2.72124e-58 -1.78195e-57 -1.04591e-59 -8.94566e-59 -3.58179e-61 -4.28589e-60 -9.66218e-63 -1.90255e-61 -8.76601e-65 -7.87285e-63 1.0445e-63 -3.04923e-64 9.79065e-65 -1.1091e-65 5.90785e-66 -3.7992e-67 2.9191e-67 -1.22857e-68 1.26439e-68 -3.75838e-70 4.94705e-70 -1.08965e-71 1.77725e-71 -2.99884e-73 5.92252e-73 -7.84575e-75 1.84341e-74 -1.95382e-76 5.38622e-76 -4.63669e-78 1.48302e-77 -1.0497e-79 3.85949e-79 -2.26915e-81 9.51696e-81 -4.68795e-83 2.22812e-82 -9.26316e-85 4.96135e-84 -1.75186e-86 1.05226e-85 -3.17308e-88 2.12842e-87 -5.50746e-90 4.11043e-89 -9.16505e-92 7.58636e-91 -1.46295e-93 1.33926e-92 -2.24081e-95 2.2631e-94 -3.29472e-97 3.66296e-96 -4.65152e-99 5.68197e-98 -6.30729e-101 8.45115e-100 -8.21575e-103 1.20577e-101 -1.02819e-104 1.65082e-103 -1.23641e-106 2.16942e-105 -1.42869e-108 2.73716e-107 -1.58635e-110 3.31618e-109 -1.69246e-112 3.8584e-111 -1.73486e-114 4.3115e-113 -1.70829e-116 4.6271e-115 -1.6155e-118 4.76888e-117 -1.46684e-120 4.71944e-119 -1.2783e-122 4.48381e-121 -1.06876e-124 4.0886e-123 -8.56867e-127 3.57711e-125 -6.58385e-129 3.00154e-127 -4.84503e-131 2.41436e-129 -3.41225e-133 1.86064e-131 -2.29794e-135 1.37293e-133 -1.4783e-137 9.69224e-136 -9.07462e-140 6.54052e-138 -5.3094e-142 4.21486e-140 -2.95642e-144 2.59118e-142 -1.56428e-146 1.51763e-144 -7.85029e-149 8.45633e-147 -3.72912e-151 4.47517e-149 -1.67293e-153 2.24521e-151 -7.06824e-156 1.06566e-153 -2.80425e-158 4.7732e-156 -1.04145e-160 2.01214e-158 -3.6043e-163 7.96058e-161 -1.157e-165 2.9436e-163 -3.42596e-168 1.01302e-165 -9.29913e-171 3.22845e-168 -2.29289e-173 9.47435e-171 -5.08691e-176 2.53906e-173 -1.00071e-178 6.16009e-176 -1.71411e-181 1.33467e-178 -2.48515e-184 2.53867e-181 -2.92286e-187 4.12547e-184 -2.60597e-190 5.49517e-187 -1.57787e-193 5.61048e-190 -5.39152e-197 3.93377e-193 -7.57585e-201 1.57266e-196 -2.48295e-205 2.60616e-200 -6.3907e-211 1.01026e-204 -1.03223e-218 3.04546e-210 -7.93613e-233 5.43779e-218 2.58733e-232 -8.13138e-31 -6.98557e-32 -1.07687e-31 -7.9535e-33 -1.36389e-32 -8.52805e-34 -1.64574e-33 -8.84424e-35 -1.87425e-34 -8.9857e-36 -1.9947e-35 -8.94102e-37 -1.97567e-36 -8.58566e-38 -1.81549e-37 -7.85263e-39 -1.54978e-38 -6.74968e-40 -1.23441e-39 -5.39892e-41 -9.21532e-41 -4.01274e-42 -6.50389e-42 -2.76788e-43 -4.36922e-43 -1.78096e-44 -2.81802e-44 -1.07446e-45 -1.7543e-45 -6.13064e-47 -1.05958e-46 -3.3355e-48 -6.22794e-48 -1.74802e-49 -3.56591e-49 -8.8713e-51 -1.99495e-50 -4.38355e-52 -1.09249e-51 -2.11142e-53 -5.86774e-53 -9.90755e-55 -3.0974e-54 -4.52711e-56 -1.61087e-55 -2.012e-57 -8.26121e-57 -8.67086e-59 -4.17855e-58 -3.60866e-60 -2.08459e-59 -1.43676e-61 -1.02615e-60 -5.3731e-63 -4.98473e-62 -1.81538e-64 -2.33924e-63 -4.98633e-66 -1.01382e-64 -6.20424e-68 -4.07983e-66 4.66656e-67 -1.53246e-67 4.75227e-68 -5.3948e-69 2.86451e-69 -1.78582e-70 1.38907e-70 -5.57413e-72 5.86225e-72 -1.64443e-73 2.22614e-73 -4.59434e-75 7.74337e-75 -1.2178e-76 2.49429e-76 -3.0672e-78 7.49586e-78 -7.35053e-80 2.1128e-79 -1.6782e-81 5.60802e-81 -3.65421e-83 1.40622e-82 -7.59625e-85 3.33967e-84 -1.50885e-86 7.52799e-86 -2.86604e-88 1.61343e-87 -5.20975e-90 3.2929e-89 -9.06838e-92 6.40806e-91 -1.51241e-93 1.19037e-92 -2.418e-95 2.11288e-94 -3.70752e-97 3.58649e-96 -5.45405e-99 5.82629e-98 -7.70034e-101 9.06403e-100 -1.0437e-102 1.35114e-101 -1.35835e-104 1.93078e-103 -1.69784e-106 2.64605e-105 -2.03838e-108 3.47887e-107 -2.35073e-110 4.38906e-109 -2.60412e-112 5.31476e-111 -2.77102e-114 6.17784e-113 -2.83212e-116 6.89388e-115 -2.77977e-118 7.38552e-117 -2.61962e-120 7.59571e-119 -2.36963e-122 7.49847e-121 -2.05681e-124 7.10429e-123 -1.71238e-126 6.45814e-125 -1.36676e-128 5.63116e-127 -1.04526e-130 4.70787e-129 -7.65453e-133 3.77212e-131 -5.36356e-135 2.89495e-133 -3.59303e-137 2.12676e-135 -2.29886e-139 1.4945e-137 -1.40324e-141 1.00367e-139 -8.16247e-144 6.43545e-142 -4.51797e-146 3.93571e-144 -2.37584e-148 2.29267e-146 -1.18481e-150 1.27035e-148 -5.59199e-153 6.6841e-151 -2.4922e-155 3.33364e-153 -1.04592e-157 1.57272e-155 -4.12132e-160 7.00084e-158 -1.51989e-162 2.93262e-160 -5.22271e-165 1.15273e-162 -1.66443e-167 4.23448e-165 -4.89236e-170 1.44758e-167 -1.31797e-172 4.58227e-170 -3.22486e-175 1.33549e-172 -7.09774e-178 3.55408e-175 -1.38461e-180 8.5606e-178 -2.34992e-183 1.84078e-180 -3.37037e-186 3.47226e-183 -3.90965e-189 5.58726e-186 -3.41874e-192 7.34723e-189 -2.0096e-195 7.36359e-192 -6.54685e-199 5.0156e-195 -8.50069e-203 1.91208e-198 -2.44049e-207 2.92591e-202 -4.9989e-213 9.91069e-207 -5.30959e-221 2.36243e-212 -1.47586e-235 2.72247e-220 4.00709e-235 -2.70389e-32 -1.35642e-33 -3.07028e-33 -1.54166e-34 -3.37516e-34 -1.57e-35 -3.63591e-35 -1.48071e-36 -3.83711e-36 -1.32979e-37 -3.90978e-37 -1.1652e-38 -3.79715e-38 -1.00476e-39 -3.46896e-39 -8.53753e-41 -2.95273e-40 -7.10528e-42 -2.33889e-41 -5.68446e-43 -1.72249e-42 -4.32493e-44 -1.18589e-43 -3.08443e-45 -7.67504e-45 -2.04805e-46 -4.71205e-46 -1.2669e-47 -2.7684e-47 -7.31144e-49 -1.57329e-48 -3.9675e-50 -8.70193e-50 -2.03966e-51 -4.71426e-51 -1.00503e-52 -2.50757e-52 -4.79417e-54 -1.31088e-53 -2.23199e-55 -6.74675e-55 -1.02026e-56 -3.42471e-56 -4.57733e-58 -1.7166e-57 -2.01292e-59 -8.5166e-59 -8.65844e-61 -4.18618e-60 -3.62914e-62 -2.0394e-61 -1.4749e-63 -9.84611e-63 -5.76086e-65 -4.71096e-64 -2.1247e-66 -2.23682e-65 -7.13604e-68 -1.03452e-66 -1.98036e-69 -4.4043e-68 -2.83221e-71 -1.73213e-69 1.8049e-70 -6.33587e-71 1.95396e-71 -2.16648e-72 1.17012e-72 -6.95273e-74 5.56238e-74 -2.1009e-75 2.28819e-75 -5.99316e-77 8.44257e-77 -1.61771e-78 2.84728e-78 -4.13975e-80 8.87964e-80 -1.00602e-81 2.58067e-81 -2.32513e-83 7.02856e-83 -5.11756e-85 1.80147e-84 -1.07388e-86 4.35959e-86 -2.15069e-88 9.98795e-88 -4.11458e-90 2.17104e-89 -7.52586e-92 4.48554e-91 -1.31701e-93 8.82245e-93 -2.20649e-95 1.65413e-94 -3.54116e-97 2.95971e-96 -5.44678e-99 5.05891e-98 -8.03293e-101 8.26732e-100 -1.13635e-102 1.29269e-101 -1.54238e-104 1.93517e-103 -2.00921e-106 2.77511e-105 -2.51247e-108 3.81397e-107 -3.01639e-110 5.02548e-109 -3.47715e-112 6.35064e-111 -3.8488e-114 7.69841e-113 -4.09059e-116 8.95376e-115 -4.17428e-118 9.99258e-117 -4.08936e-120 1.07015e-118 -3.8452e-122 1.09976e-120 -3.46947e-124 1.08442e-122 -3.00295e-126 1.02583e-124 -2.49232e-128 9.30765e-127 -1.98256e-130 8.09767e-129 -1.51069e-132 6.7527e-131 -1.10199e-134 5.39505e-133 -7.68984e-137 4.12745e-135 -5.12898e-139 3.02185e-137 -3.26657e-141 2.11566e-139 -1.9844e-143 1.41524e-141 -1.14853e-145 9.03659e-144 -6.32405e-148 5.50208e-146 -3.3076e-150 3.19025e-148 -1.64023e-152 1.75909e-150 -7.69673e-155 9.20884e-153 -3.40984e-157 4.56871e-155 -1.4223e-159 2.1437e-157 -5.56929e-162 9.48916e-160 -2.04061e-164 3.95213e-162 -6.9656e-167 1.54424e-164 -2.20489e-169 5.63814e-167 -6.4362e-172 1.91549e-169 -1.72153e-174 6.02509e-172 -4.18159e-177 1.74459e-174 -9.13326e-180 4.61206e-177 -1.76727e-182 1.10324e-179 -2.97234e-185 2.35498e-182 -4.21757e-188 4.40607e-185 -4.82473e-191 7.02073e-188 -4.13605e-194 9.1131e-191 -2.35815e-197 8.96166e-194 -7.31216e-201 5.92421e-197 -8.74859e-205 2.14989e-200 -2.19004e-209 3.0288e-204 -3.54298e-215 8.92095e-209 -2.44155e-223 1.66761e-214 -2.36243e-238 1.22036e-222 4.99319e-238 -5.40694e-34 -9.0932e-36 -5.74443e-35 -1.16717e-36 -5.66902e-36 -1.28091e-37 -5.33774e-37 -1.25074e-38 -4.9118e-38 -1.11555e-39 -4.45518e-39 -9.32144e-41 -3.98851e-40 -7.39917e-42 -3.50321e-41 -5.64543e-43 -2.96314e-42 -4.23297e-44 -2.38807e-43 -3.14426e-45 -1.80779e-44 -2.30967e-46 -1.27706e-45 -1.66986e-47 -8.42599e-47 -1.15961e-48 -5.20165e-48 -7.65306e-50 -3.02928e-49 -4.72274e-51 -1.67764e-50 -2.72116e-52 -8.94405e-52 -1.46335e-53 -4.63978e-53 -7.40996e-55 -2.36334e-54 -3.55995e-56 -1.19051e-55 -1.64775e-57 -5.9379e-57 -7.42109e-59 -2.93468e-58 -3.28699e-60 -1.43829e-59 -1.43937e-61 -6.99228e-61 -6.22681e-63 -3.37619e-62 -2.65247e-64 -1.62101e-63 -1.10718e-65 -7.73855e-65 -4.49284e-67 -3.6726e-66 -1.75677e-68 -1.73232e-67 -6.50113e-70 -8.13945e-69 -2.19682e-71 -3.74438e-70 -6.18357e-73 -1.57644e-71 -9.41477e-75 -6.0897e-73 6.1549e-74 -2.17802e-74 6.86551e-75 -7.25872e-76 4.06338e-76 -2.26513e-77 1.89199e-77 -6.64351e-79 7.5906e-79 -1.83706e-80 2.72402e-80 -4.80139e-82 8.91913e-82 -1.18868e-83 2.69671e-83 -2.79266e-85 7.59028e-85 -6.23628e-87 2.0004e-86 -1.32554e-88 4.95801e-88 -2.68505e-90 1.15961e-89 -5.18889e-92 2.56636e-91 -9.57581e-94 5.38647e-93 -1.68897e-95 1.0742e-94 -2.84931e-97 2.03868e-96 -4.60059e-99 3.68706e-98 -7.11365e-101 6.3618e-100 -1.05389e-102 1.04829e-101 -1.49661e-104 1.65102e-103 -2.03795e-106 2.48724e-105 -2.6618e-108 3.5863e-107 -3.33553e-110 4.9519e-109 -4.01088e-112 6.5507e-111 -4.62863e-114 8.3053e-113 -5.12664e-116 1.00948e-114 -5.44983e-118 1.17654e-116 -5.56016e-120 1.31508e-118 -5.44374e-122 1.40984e-120 -5.11371e-124 1.44965e-122 -4.60785e-126 1.42958e-124 -3.98155e-128 1.3519e-126 -3.29786e-130 1.22571e-128 -2.61724e-132 1.06518e-130 -1.98907e-134 8.86938e-133 -1.4467e-136 7.07315e-135 -1.0063e-138 5.39951e-137 -6.68855e-141 3.94331e-139 -4.24397e-143 2.75309e-141 -2.5679e-145 1.83596e-143 -1.47995e-147 1.16835e-145 -8.11253e-150 7.08778e-148 -4.22304e-152 4.09364e-150 -2.08386e-154 2.24783e-152 -9.72817e-157 1.17156e-154 -4.28677e-159 5.78548e-157 -1.77817e-161 2.7015e-159 -6.92288e-164 1.18981e-161 -2.52144e-166 4.92957e-164 -8.55396e-169 1.91567e-166 -2.69057e-171 6.95492e-169 -7.80288e-174 2.34922e-171 -2.073e-176 7.3456e-174 -5.00028e-179 2.1139e-176 -1.08414e-181 5.55322e-179 -2.08133e-184 1.3196e-181 -3.46963e-187 2.79695e-184 -4.87098e-190 5.19122e-187 -5.49451e-193 8.19158e-190 -4.61584e-196 1.04943e-192 -2.55029e-199 1.01214e-195 -7.51468e-203 6.48764e-199 -8.26173e-207 2.23736e-202 -1.79519e-211 2.89356e-206 -2.27642e-217 7.37537e-211 -1.00384e-225 1.07222e-216 -3.24401e-241 4.89889e-225 4.67117e-241 -4.02947e-36 -9.93137e-39 -4.58405e-37 -1.67582e-39 -4.65528e-38 -2.29915e-40 -4.32796e-39 -2.69488e-41 -3.77702e-40 -2.78437e-42 -3.13727e-41 -2.6215e-43 -2.50958e-42 -2.2819e-44 -1.97661e-43 -1.83122e-45 -1.54531e-44 -1.36912e-46 -1.19714e-45 -9.72377e-48 -9.14744e-47 -6.63087e-49 -6.72879e-48 -4.48196e-50 -4.7155e-49 -3.04024e-51 -3.09833e-50 -2.05404e-52 -1.90648e-51 -1.36675e-53 -1.09859e-52 -8.67535e-55 -5.98395e-54 -5.20838e-56 -3.10614e-55 -2.91092e-57 -1.56138e-56 -1.52308e-58 -7.68349e-58 -7.48626e-60 -3.74544e-59 -3.50082e-61 -1.82094e-60 -1.58207e-62 -8.84103e-62 -6.99877e-64 -4.28469e-63 -3.06515e-65 -2.07112e-64 -1.33461e-66 -9.96603e-66 -5.77266e-68 -4.77864e-67 -2.46136e-69 -2.28179e-68 -1.02366e-70 -1.08421e-69 -4.10174e-72 -5.12382e-71 -1.55279e-73 -2.41721e-72 -5.36e-75 -1.11839e-73 -1.53852e-76 -4.69006e-75 -2.39675e-78 -1.78898e-76 1.89851e-77 -6.28206e-78 2.0875e-78 -2.04746e-79 1.21296e-79 -6.23032e-81 5.52437e-81 -1.77815e-82 2.16187e-82 -4.77669e-84 7.55202e-84 -1.21129e-85 2.40304e-85 -2.90658e-87 7.05198e-87 -6.61317e-89 1.92459e-88 -1.42918e-90 4.91402e-90 -2.93808e-92 1.17915e-91 -5.75322e-94 2.66843e-93 -1.07429e-95 5.71121e-95 -1.91484e-97 1.15874e-96 -3.26076e-99 2.23284e-98 -5.30904e-101 4.09307e-100 -8.27018e-103 7.14745e-102 -1.23329e-104 1.19034e-103 -1.76152e-106 1.89254e-105 -2.41081e-108 2.87503e-107 -3.16261e-110 4.17618e-109 -3.97794e-112 5.80398e-111 -4.79848e-114 7.72159e-113 -5.55194e-116 9.83815e-115 -6.16205e-118 1.20085e-116 -6.56085e-120 1.4046e-118 -6.70107e-122 1.57464e-120 -6.56506e-124 1.69213e-122 -6.16844e-126 1.74312e-124 -5.55724e-128 1.72128e-126 -4.79915e-130 1.62914e-128 -3.97132e-132 1.47766e-130 -3.14758e-134 1.28407e-132 -2.38817e-136 1.06871e-134 -1.73353e-138 8.51548e-137 -1.20303e-140 6.49256e-139 -7.9753e-143 4.73403e-141 -5.0457e-145 3.29875e-143 -3.04325e-147 2.19486e-145 -1.74779e-149 1.39314e-147 -9.54467e-152 8.4269e-150 -4.94851e-154 4.85149e-152 -2.43138e-156 2.65468e-154 -1.1299e-158 1.3784e-156 -4.95519e-161 6.77956e-159 -2.04515e-163 3.15217e-161 -7.92074e-166 1.38204e-163 -2.86907e-168 5.699e-166 -9.67779e-171 2.20366e-168 -3.02611e-173 7.959e-171 -8.72231e-176 2.67396e-173 -2.30246e-178 8.3146e-176 -5.51689e-181 2.37891e-178 -1.18773e-183 6.21196e-181 -2.26285e-186 1.46679e-183 -3.73953e-189 3.08768e-186 -5.19459e-192 5.68595e-189 -5.77723e-195 8.88565e-192 -4.75427e-198 1.12336e-194 -2.54334e-201 1.06217e-197 -7.11029e-205 6.59554e-201 -7.16395e-209 2.15799e-204 -1.34522e-213 2.55487e-208 -1.32709e-219 5.60901e-213 -3.69264e-228 6.28925e-219 -3.81063e-244 1.76262e-227 2.56447e-244 -5.46626e-39 -5.82324e-43 -7.75318e-40 -1.74153e-43 -9.42939e-41 -3.7783e-44 -1.01329e-41 -6.63869e-45 -9.94253e-43 -9.84848e-46 -9.03692e-44 -1.22651e-46 -7.58688e-45 -1.41047e-47 -5.9454e-46 -1.46681e-48 -4.43413e-47 -1.36496e-49 -3.18134e-48 -1.15666e-50 -2.26689e-49 -8.91363e-52 -1.62443e-50 -6.25567e-53 -1.16198e-51 -4.16957e-54 -8.206e-53 -2.6908e-55 -5.54298e-54 -1.75396e-56 -3.55196e-55 -1.16256e-57 -2.12602e-56 -7.70768e-59 -1.1959e-57 -4.94523e-60 -6.34738e-59 -2.99848e-61 -3.22175e-60 -1.69671e-62 -1.58991e-61 -8.98991e-64 -7.73634e-63 -4.4692e-65 -3.7596e-64 -2.11977e-66 -1.83618e-65 -9.74954e-68 -9.03105e-67 -4.41331e-69 -4.45677e-68 -1.98871e-70 -2.19686e-69 -8.95124e-72 -1.07903e-70 -4.0117e-73 -5.26862e-72 -1.76094e-74 -2.55633e-73 -7.42377e-76 -1.23241e-74 -2.93909e-77 -5.9299e-76 -1.05315e-78 -2.79144e-77 -3.10555e-80 -1.17339e-78 -4.68957e-82 -4.43983e-80 5.32894e-81 -1.53616e-81 5.54465e-82 -4.9103e-83 3.14353e-83 -1.46064e-84 1.39847e-84 -4.06504e-86 5.33864e-86 -1.06286e-87 1.81638e-87 -2.61953e-89 5.6214e-89 -6.102e-91 1.60264e-90 -1.34647e-92 4.24498e-92 -2.81985e-94 1.05107e-93 -5.61384e-96 2.44406e-95 -1.06391e-97 5.35659e-97 -1.92169e-99 1.10972e-98 -3.3117e-101 2.17829e-100 -5.45005e-103 4.0592e-102 -8.57184e-105 7.19287e-104 -1.28934e-106 1.21367e-105 -1.85582e-108 1.95232e-107 -2.55737e-110 2.99701e-109 -3.37536e-112 4.39418e-111 -4.26841e-114 6.15794e-113 -5.17313e-116 8.25325e-115 -6.00984e-118 1.05845e-116 -6.69352e-120 1.29941e-118 -7.14758e-122 1.52752e-120 -7.3178e-124 1.71989e-122 -7.1828e-126 1.85506e-124 -6.75835e-128 1.91689e-126 -6.09446e-130 1.89765e-128 -5.26576e-132 1.79965e-130 -4.3578e-134 1.63473e-132 -3.45281e-136 1.42198e-134 -2.6179e-138 1.18413e-136 -1.89824e-140 9.43603e-139 -1.31544e-142 7.19207e-141 -8.70494e-145 5.24027e-143 -5.49565e-147 3.64745e-145 -3.30653e-149 2.42327e-147 -1.89374e-151 1.53529e-149 -1.03099e-153 9.26644e-152 -5.32716e-156 5.32138e-154 -2.60781e-158 2.90351e-156 -1.2071e-160 1.50285e-158 -5.27137e-163 7.36617e-161 -2.16588e-165 3.41213e-163 -8.34865e-168 1.49004e-165 -3.00889e-170 6.11828e-168 -1.0096e-172 2.35507e-170 -3.13949e-175 8.46533e-173 -8.99715e-178 2.82991e-175 -2.36064e-180 8.75379e-178 -5.62046e-183 2.49087e-180 -1.20184e-185 6.46725e-183 -2.27282e-188 1.51779e-185 -3.72406e-191 3.17385e-188 -5.11895e-194 5.79971e-191 -5.61262e-197 8.97635e-194 -4.52292e-200 1.11975e-196 -2.34085e-203 1.03756e-199 -6.19977e-207 6.23604e-203 -5.71005e-211 1.93277e-206 -9.22639e-216 2.08909e-210 -7.02955e-222 3.93242e-215 -1.21701e-230 3.37316e-221 -3.82215e-247 5.69371e-230 -8.22711e-251 -4.97647e-43 -3.1161e-49 -1.12686e-43 -1.97321e-49 -2.07035e-44 -9.72041e-50 -3.21397e-45 -3.65152e-50 -4.19088e-46 -1.08064e-50 -5.04976e-47 -2.85526e-51 -5.50719e-48 -5.70137e-52 -5.37984e-49 -1.03705e-52 -4.79135e-50 -1.5814e-53 -3.8857e-51 -1.99586e-54 -2.87394e-52 -2.3275e-55 -2.02197e-53 -2.33542e-56 -1.37979e-54 -2.05381e-57 -9.52938e-56 -1.61313e-58 -6.70718e-57 -1.12318e-59 -4.73392e-58 -7.51151e-61 -3.24266e-59 -4.94769e-62 -2.10599e-60 -3.40037e-63 -1.28126e-61 -2.34837e-64 -7.33105e-63 -1.60314e-65 -3.95589e-64 -1.0214e-66 -2.04899e-65 -6.08578e-68 -1.03663e-66 -3.39059e-69 -5.20736e-68 -1.77751e-70 -2.63252e-69 -8.91891e-72 -1.34774e-70 -4.35177e-73 -6.99431e-72 -2.09801e-74 -3.64189e-73 -1.01251e-75 -1.88446e-74 -4.90348e-77 -9.64428e-76 -2.34174e-78 -4.87994e-77 -1.06885e-79 -2.44337e-78 -4.52245e-81 -1.21904e-79 -1.70497e-82 -5.89752e-81 -5.17011e-84 -2.49682e-82 -6.98465e-86 -9.40532e-84 1.38117e-84 -3.21556e-85 1.30766e-85 -1.01052e-86 7.17398e-87 -2.94444e-88 3.10906e-88 -8.00513e-90 1.15674e-89 -2.04051e-91 3.83264e-91 -4.89478e-93 1.15398e-92 -1.10832e-94 3.19758e-94 -2.37472e-96 8.22451e-96 -4.82476e-98 1.97596e-97 -9.31137e-100 4.45531e-99 -1.70951e-101 9.46257e-101 -2.98955e-103 1.89869e-102 -4.98527e-105 3.6079e-104 -7.93473e-107 6.50546e-106 -1.20639e-108 1.11492e-107 -1.75332e-110 1.81872e-109 -2.43725e-112 2.82719e-111 -3.24207e-114 4.19221e-113 -4.12865e-116 5.9347e-115 -5.03505e-118 8.02661e-117 -5.88185e-120 1.03778e-118 -6.58289e-122 1.2833e-120 -7.05927e-124 1.51831e-122 -7.25376e-126 1.71924e-124 -7.1419e-128 1.86359e-126 -6.737e-130 1.934e-128 -6.08759e-132 1.92164e-130 -5.26798e-134 1.82803e-132 -4.36437e-136 1.66471e-134 -3.46021e-138 1.45094e-136 -2.62405e-140 1.21004e-138 -1.9023e-142 9.65215e-141 -1.31746e-144 7.36076e-143 -8.70962e-147 5.36368e-145 -5.49112e-149 3.73212e-147 -3.29811e-151 2.4777e-149 -1.88499e-153 1.56801e-151 -1.02374e-155 9.44958e-154 -5.27513e-158 5.41636e-156 -2.57439e-160 2.94873e-158 -1.18758e-162 1.52233e-160 -5.16694e-165 7.43998e-163 -2.11449e-167 3.43521e-165 -8.11576e-170 1.49484e-167 -2.91155e-172 6.11467e-170 -9.72189e-175 2.34402e-172 -3.00767e-177 8.38876e-175 -8.57289e-180 2.79134e-177 -2.23645e-182 8.59246e-180 -5.29263e-185 2.43235e-182 -1.12439e-187 6.28098e-185 -2.11112e-190 1.46547e-187 -3.43028e-193 3.04472e-190 -4.66614e-196 5.52174e-193 -5.04345e-199 8.46443e-196 -3.97857e-202 1.04175e-198 -1.99062e-205 9.45626e-202 -4.98773e-209 5.49683e-205 -4.18903e-213 1.61147e-208 -5.80064e-218 1.5862e-212 -3.38899e-224 2.54893e-217 -3.60012e-233 1.6594e-223 -3.28556e-250 1.65558e-232 -3.81643e-253 -4.79284e-49 -1.83683e-57 -2.49878e-49 -2.24582e-57 -9.92424e-50 -2.25188e-57 -3.10018e-50 -1.84674e-57 -8.63451e-51 -1.26428e-57 -1.81584e-51 -7.52752e-58 -3.47722e-52 -3.85507e-58 -5.5822e-53 -1.54348e-58 -7.41918e-54 -5.30475e-59 -9.11646e-55 -1.57227e-59 -9.64641e-56 -3.52269e-60 -8.9552e-57 -7.45569e-61 -7.43447e-58 -1.12857e-61 -5.47962e-59 -1.542e-62 -3.88614e-60 -1.76886e-63 -2.72005e-61 -1.70919e-64 -1.99123e-62 -1.42102e-65 -1.46888e-63 -1.04289e-66 -1.0745e-64 -7.54045e-68 -7.36312e-66 -5.62351e-69 -4.73929e-67 -4.36042e-70 -2.86703e-68 -3.31406e-71 -1.64203e-69 -2.32373e-72 -9.06728e-71 -1.51326e-73 -4.91262e-72 -9.25541e-75 -2.65921e-73 -5.34974e-76 -1.46134e-74 -2.96776e-77 -8.2076e-76 -1.60079e-78 -4.65987e-77 -8.57359e-80 -2.61957e-78 -4.61889e-81 -1.44102e-79 -2.48292e-82 -7.75411e-81 -1.26317e-83 -4.10073e-82 -5.83207e-85 -2.15356e-83 -2.33917e-86 -1.07664e-84 -7.24705e-88 -4.59535e-86 -7.00462e-90 -1.72527e-87 3.27624e-88 -5.83565e-89 2.76822e-89 -1.80509e-90 1.45943e-90 -5.1578e-92 6.14347e-92 -1.37136e-93 2.22471e-93 -3.4112e-95 7.17453e-95 -7.97179e-97 2.10125e-96 -1.75612e-98 5.65919e-98 -3.65662e-100 1.41375e-99 -7.21293e-102 3.29664e-101 -1.35041e-103 7.20981e-103 -2.4034e-105 1.48441e-104 -4.07173e-107 2.88577e-106 -6.5739e-109 5.31016e-108 -1.01248e-110 9.26759e-110 -1.48877e-112 1.53663e-111 -2.09149e-114 2.42399e-113 -2.80883e-116 3.64216e-115 -3.60788e-118 5.21783e-117 -4.43422e-120 7.13324e-119 -5.21614e-122 9.3124e-121 -5.87423e-124 1.1616e-122 -6.33416e-126 1.38508e-124 -6.54035e-128 1.57932e-126 -6.46682e-130 1.72253e-128 -6.12246e-132 1.79737e-130 -5.54938e-134 1.79442e-132 -4.81449e-136 1.71404e-134 -3.99681e-138 1.56639e-136 -3.17371e-140 1.36926e-138 -2.40939e-142 1.14464e-140 -1.74777e-144 9.14737e-143 -1.21066e-146 6.98524e-145 -8.0017e-149 5.09447e-147 -5.04155e-151 3.54624e-149 -3.02494e-153 2.35421e-151 -1.72639e-155 1.48917e-153 -9.35916e-158 8.96656e-156 -4.81217e-160 5.13293e-158 -2.34255e-162 2.78979e-160 -1.07754e-164 1.43735e-162 -4.67314e-167 7.0078e-165 -1.90568e-169 3.22678e-167 -7.28631e-172 1.39983e-169 -2.6031e-174 5.70667e-172 -8.6531e-177 2.1795e-174 -2.66424e-179 7.76872e-177 -7.55553e-182 2.57392e-179 -1.96037e-184 7.88706e-182 -4.61251e-187 2.22177e-184 -9.73778e-190 5.70745e-187 -1.81562e-192 1.32418e-189 -2.92606e-195 2.73394e-192 -3.93927e-198 4.92138e-195 -4.19714e-201 7.47235e-198 -3.24032e-204 9.07258e-201 -1.56631e-207 8.06517e-204 -3.7082e-211 4.53104e-207 -2.83378e-215 1.2548e-210 -3.35007e-220 1.12218e-214 -1.49084e-226 1.5332e-219 -9.58679e-236 7.5187e-226 -2.57251e-253 4.35114e-235 -5.45009e-256 -4.68279e-57 -2.55903e-67 -5.01364e-57 -1.13376e-67 -4.37774e-57 -2.69095e-67 -3.18111e-57 -5.64848e-67 -2.00518e-57 -1.02132e-66 -1.08512e-57 -1.57566e-66 -4.58525e-58 -2.05863e-66 -1.66203e-58 -2.27538e-66 -5.19397e-59 -2.1404e-66 -1.2271e-59 -1.70937e-66 -2.73963e-60 -1.11699e-66 -4.37734e-61 -5.77161e-67 -6.3188e-62 -2.57449e-67 -7.66681e-63 -8.11752e-68 -7.84691e-64 -2.31189e-68 -6.92205e-65 -4.40568e-69 -5.40102e-66 -7.38585e-70 -4.16159e-67 -9.74723e-71 -3.31661e-68 -1.05762e-71 -2.757e-69 -9.3078e-73 -2.2549e-70 -7.86236e-74 -1.70895e-71 -6.79726e-75 -1.20922e-72 -6.24813e-76 -8.08611e-74 -5.50897e-77 -5.14865e-75 -4.36681e-78 -3.17538e-76 -3.18754e-79 -1.92608e-77 -2.21642e-80 -1.17704e-78 -1.47103e-81 -7.37455e-80 -9.34973e-83 -4.73157e-81 -5.77755e-84 -2.98212e-82 -3.57191e-85 -1.80745e-83 -2.22726e-86 -1.05417e-84 -1.29577e-87 -5.97963e-86 -6.60793e-89 -3.34988e-87 -2.82113e-90 -1.72815e-88 -8.69492e-92 -7.42143e-90 3.47958e-93 -2.77504e-91 7.15472e-92 -9.28563e-93 5.34843e-93 -2.82775e-94 2.68953e-94 -7.92707e-96 1.09514e-95 -2.06219e-97 3.85086e-97 -5.00842e-99 1.20696e-98 -1.14088e-100 3.43529e-100 -2.44641e-102 8.98768e-102 -4.95284e-104 2.17995e-103 -9.4899e-106 4.9327e-105 -1.72433e-107 1.04627e-106 -2.97617e-109 2.08809e-108 -4.88642e-111 3.93292e-110 -7.6408e-113 7.00823e-112 -1.13907e-114 1.18389e-113 -1.62025e-116 1.89915e-115 -2.20065e-118 2.89707e-117 -2.85573e-120 4.20748e-119 -3.54242e-122 5.82344e-121 -4.20206e-124 7.68775e-123 -4.76796e-126 9.68653e-125 -5.17612e-128 1.16554e-126 -5.37692e-130 1.3399e-128 -5.34496e-132 1.47212e-130 -5.08417e-134 1.54614e-132 -4.62714e-136 1.55254e-134 -4.02847e-138 1.49056e-136 -3.35415e-140 1.36819e-138 -2.66983e-142 1.20056e-140 -2.03071e-144 1.00683e-142 -1.47516e-146 8.06736e-145 -1.02278e-148 6.17346e-147 -6.76316e-151 4.50955e-149 -4.26134e-153 3.14249e-151 -2.55581e-155 2.08745e-153 -1.45747e-157 1.32063e-155 -7.89168e-160 7.94942e-158 -4.05112e-162 4.54738e-160 -1.96815e-164 2.46873e-162 -9.03178e-167 1.26998e-164 -3.90624e-169 6.17988e-167 -1.58802e-171 2.83899e-169 -6.05103e-174 1.22832e-171 -2.15363e-176 4.99249e-174 -7.12962e-179 1.90035e-176 -2.18544e-181 6.74884e-179 -6.16825e-184 2.2271e-181 -1.59223e-186 6.79511e-184 -3.72572e-189 1.90532e-186 -7.81837e-192 4.87028e-189 -1.44791e-194 1.12384e-191 -2.31479e-197 2.30618e-194 -3.08451e-200 4.12111e-197 -3.23952e-203 6.19811e-200 -2.44707e-206 7.42364e-203 -1.14213e-209 6.46119e-206 -2.552e-213 3.50613e-209 -1.77097e-217 9.16155e-213 -1.78122e-222 7.42872e-217 -6.00083e-229 8.59811e-222 -2.30697e-238 3.15433e-228 -1.83821e-256 1.03956e-237 -5.9464e-259 -2.10906e-67 -3.27314e-68 -5.33777e-67 -6.87574e-71 -1.19181e-66 -9.3399e-74 -2.28586e-66 -1.29074e-76 -3.73173e-66 -1.35762e-77 -5.14994e-66 -4.11069e-77 -6.00518e-66 -1.16078e-76 -5.95521e-66 -2.92568e-76 -5.01211e-66 -6.56391e-76 -3.45147e-66 -1.30689e-75 -1.87989e-66 -2.29608e-75 -8.84343e-67 -3.51668e-75 -2.94284e-67 -4.59406e-75 -8.85416e-68 -4.96585e-75 -1.78466e-68 -4.29636e-75 -3.16918e-69 -2.86578e-75 -4.43806e-70 -1.40884e-75 -5.12044e-71 -5.81085e-76 -4.80332e-72 -1.46537e-76 -4.33708e-73 -3.20472e-77 -4.02129e-74 -5.01415e-78 -3.97973e-75 -5.94375e-79 -3.79515e-76 -6.33184e-80 -3.27133e-77 -6.95303e-81 -2.61351e-78 -8.02248e-82 -2.00458e-79 -8.55192e-83 -1.4817e-80 -7.82344e-84 -1.06148e-81 -6.72024e-85 -7.50743e-83 -5.58367e-86 -5.42089e-84 -4.41214e-87 -4.05911e-85 -3.28387e-88 -2.95308e-86 -2.41075e-89 -2.00793e-87 -1.8012e-90 -1.28555e-88 -1.21995e-91 -7.90644e-90 -6.88424e-93 -4.7685e-91 -3.09149e-94 -2.49941e-92 -8.78763e-96 -1.07254e-93 7.19645e-95 -3.97884e-95 1.43802e-95 -1.31401e-96 9.54481e-97 -3.93434e-98 4.55222e-98 -1.08114e-99 1.78566e-99 -2.75054e-101 6.07945e-101 -6.52067e-103 1.84818e-102 -1.44765e-104 5.10478e-104 -3.02158e-106 1.29602e-105 -5.9479e-108 3.04963e-107 -1.10704e-109 6.69206e-109 -1.95231e-111 1.37596e-110 -3.26804e-113 2.66079e-112 -5.20019e-115 4.85381e-114 -7.87579e-117 8.37316e-116 -1.13644e-118 1.36874e-117 -1.56373e-120 2.12369e-119 -2.0533e-122 3.13191e-121 -2.57445e-124 4.39529e-123 -3.08364e-126 5.87565e-125 -3.52981e-128 7.48787e-127 -3.8625e-130 9.10292e-129 -4.04109e-132 1.05622e-130 -4.04284e-134 1.17019e-132 -3.86753e-136 1.23828e-134 -3.5376e-138 1.25178e-136 -3.09346e-140 1.20899e-138 -2.58544e-142 1.11558e-140 -2.06458e-144 9.83393e-143 -1.57454e-146 8.27976e-145 -1.14623e-148 6.65653e-147 -7.9602e-151 5.10799e-149 -5.26968e-153 3.73956e-151 -3.32253e-155 2.61034e-153 -1.99316e-157 1.73602e-155 -1.13634e-159 1.09907e-157 -6.14876e-162 6.61728e-160 -3.15297e-164 3.7845e-162 -1.52951e-166 2.05321e-164 -7.00553e-169 1.05508e-166 -3.02291e-171 5.12642e-169 -1.22563e-173 2.35054e-171 -4.65599e-176 1.01466e-173 -1.65146e-178 4.11313e-176 -5.4466e-181 1.5609e-178 -1.66265e-183 5.52464e-181 -4.67176e-186 1.81635e-183 -1.20008e-188 5.51951e-186 -2.79335e-191 1.54086e-188 -5.82794e-194 3.91994e-191 -1.07223e-196 8.99818e-194 -1.70076e-199 1.83551e-196 -2.24342e-202 3.25656e-199 -2.32256e-205 4.85185e-202 -1.71632e-208 5.73242e-205 -7.73124e-212 4.88387e-208 -1.62891e-215 2.5586e-211 -1.02474e-219 6.30224e-215 -8.74243e-225 4.62539e-219 -2.21763e-231 4.52102e-224 -5.04086e-241 1.23346e-230 -1.24512e-259 2.27606e-240 -5.58464e-262 -1.13574e-70 -4.05815e-73 -1.63624e-73 -2.73122e-75 -2.39527e-76 -1.49314e-77 -2.66416e-77 -6.91524e-80 -8.51672e-77 -3.01691e-82 -2.53596e-76 -1.44211e-84 -6.73424e-76 -8.76448e-87 -1.59103e-75 -9.38393e-87 -3.33518e-75 -4.17646e-86 -6.16953e-75 -1.69889e-85 -9.95165e-75 -6.2486e-85 -1.36981e-74 -2.05858e-84 -1.56117e-74 -6.0078e-84 -1.42537e-74 -1.53401e-83 -1.00442e-74 -3.38146e-83 -5.22345e-75 -6.34206e-83 -2.28266e-75 -9.93058e-83 -6.11028e-76 -1.25473e-82 -1.42154e-76 -1.1955e-82 -2.37205e-77 -7.77244e-83 -3.00766e-78 -3.53041e-83 -3.43907e-79 -1.21241e-83 -4.06992e-80 -2.7611e-84 -5.08505e-81 -4.33513e-85 -5.90318e-82 -6.17655e-86 -5.92115e-83 -9.19933e-87 -5.62291e-84 -1.31944e-87 -5.21771e-85 -1.63554e-88 -4.66385e-86 -1.75407e-89 -3.99181e-87 -1.86261e-90 -3.44474e-88 -1.90865e-91 -3.11931e-89 -1.77429e-92 -2.67958e-90 -1.59028e-93 -2.06545e-91 -1.4547e-94 -1.46237e-92 -1.14013e-95 -9.84203e-94 -6.96581e-97 -6.3581e-95 -3.15188e-98 -3.30915e-96 -6.3889e-100 -1.40638e-97 2.44668e-98 -5.1482e-99 2.69917e-99 -1.67234e-100 1.59906e-100 -4.91166e-102 7.19406e-102 -1.32094e-103 2.70536e-103 -3.28281e-105 8.88518e-105 -7.59045e-107 2.61264e-106 -1.64139e-108 6.98787e-108 -3.33317e-110 1.71869e-109 -6.37718e-112 3.91809e-111 -1.15262e-113 8.32851e-113 -1.97234e-115 1.65839e-114 -3.20121e-117 3.10477e-116 -4.93578e-119 5.48139e-118 -7.23838e-121 9.14822e-120 -1.01072e-122 1.44617e-121 -1.34496e-124 2.16899e-123 -1.70687e-126 3.09068e-125 -2.06708e-128 4.18906e-127 -2.3899e-130 5.40568e-129 -2.63892e-132 6.64652e-131 -2.78361e-134 7.79153e-133 -2.80541e-136 8.71268e-135 -2.70156e-138 9.2971e-137 -2.48571e-140 9.46932e-139 -2.185e-142 9.20727e-141 -1.83454e-144 8.54683e-143 -1.47077e-146 7.5739e-145 -1.12546e-148 6.40632e-147 -8.21612e-151 5.17085e-149 -5.71874e-153 3.98129e-151 -3.79242e-155 2.92282e-153 -2.39408e-157 2.04477e-155 -1.43726e-159 1.36219e-157 -8.19643e-162 8.63417e-160 -4.43432e-164 5.20204e-162 -2.27242e-166 2.97574e-164 -1.10119e-168 1.61402e-166 -5.03625e-171 8.28815e-169 -2.16902e-173 4.02249e-171 -8.77399e-176 1.84149e-173 -3.32416e-178 7.93351e-176 -1.17543e-180 3.20848e-178 -3.86325e-183 1.21425e-180 -1.17478e-185 4.28439e-183 -3.28707e-188 1.40369e-185 -8.40496e-191 4.24928e-188 -1.94651e-193 1.1813e-190 -4.03849e-196 2.99146e-193 -7.38269e-199 6.83213e-196 -1.16205e-201 1.38559e-198 -1.51751e-204 2.44101e-201 -1.54869e-207 3.60293e-204 -1.11947e-210 4.1992e-207 -4.86517e-214 3.50164e-210 -9.65833e-218 1.77048e-213 -5.50064e-222 4.10798e-217 -3.97068e-227 2.72532e-221 -7.55041e-234 2.24414e-226 -1.00592e-243 4.53222e-233 -7.93259e-263 4.61644e-243 -4.7908e-265 -4.022e-75 -2.20202e-76 -2.30684e-77 -2.62342e-78 -1.12262e-79 -2.13902e-80 -5.14913e-82 -1.28166e-82 -2.58781e-84 -5.86305e-85 -1.65339e-86 -2.04984e-87 -1.86083e-86 -5.63214e-90 -8.70556e-86 -1.46148e-92 -3.72278e-85 -4.54102e-95 -1.43977e-84 -6.49301e-96 -4.98935e-84 -4.39322e-95 -1.53241e-83 -2.80599e-94 -4.12055e-83 -1.63654e-93 -9.57317e-83 -8.63245e-93 -1.89429e-82 -4.0703e-92 -3.13315e-82 -1.69111e-91 -4.18768e-82 -6.08214e-91 -4.2279e-82 -1.85207e-90 -2.91841e-82 -4.64411e-90 -1.41069e-82 -9.26515e-90 -5.16942e-83 -1.41307e-89 -1.26016e-83 -1.58577e-89 -2.12564e-84 -1.27675e-89 -3.26772e-85 -6.96195e-90 -5.27809e-86 -2.26685e-90 -8.25961e-87 -4.64592e-91 -1.12524e-87 -9.32854e-92 -1.33815e-88 -1.91172e-92 -1.59309e-89 -3.30999e-93 -1.85595e-90 -4.58356e-94 -1.99748e-91 -6.31849e-95 -2.12431e-92 -8.60146e-96 -2.38754e-93 -1.01712e-96 -2.42516e-94 -1.14493e-97 -2.10437e-95 -1.28744e-98 -1.64273e-96 -1.12072e-99 -1.21369e-97 -7.09833e-101 -8.05696e-99 -2.93149e-102 -4.08567e-100 7.69971e-102 -1.70001e-101 5.91686e-102 -6.09551e-103 4.77152e-103 -1.93765e-104 2.54446e-104 -5.56183e-106 1.07592e-105 -1.45997e-107 3.86196e-107 -3.53709e-109 1.21894e-108 -7.96382e-111 3.45599e-110 -1.67527e-112 8.92801e-112 -3.30637e-114 2.12276e-113 -6.143e-116 4.6799e-115 -1.07736e-117 9.62137e-117 -1.78763e-119 1.85286e-118 -2.81161e-121 3.35434e-120 -4.19799e-123 5.72541e-122 -5.95794e-125 9.23521e-124 -8.04609e-127 1.41051e-125 -1.03491e-128 2.04317e-127 -1.26868e-130 2.81074e-129 -1.48315e-132 3.67624e-131 -1.65426e-134 4.57566e-133 -1.76095e-136 5.42365e-135 -1.78944e-138 6.126e-137 -1.73607e-140 6.59647e-139 -1.60805e-142 6.77384e-141 -1.42194e-144 6.63493e-143 -1.20017e-146 6.19956e-145 -9.66636e-149 5.52593e-147 -7.42648e-151 4.69811e-149 -5.43997e-153 3.80906e-151 -3.79715e-155 2.94407e-153 -2.52384e-157 2.16836e-155 -1.59604e-159 1.521e-157 -9.59352e-162 1.0154e-159 -5.47505e-164 6.44622e-162 -2.9628e-166 3.88794e-164 -1.51801e-168 2.22529e-166 -7.35125e-171 1.20709e-168 -3.35834e-173 6.19623e-171 -1.44413e-175 3.00473e-173 -5.83019e-178 1.3738e-175 -2.20361e-180 5.9086e-178 -7.7703e-183 2.38455e-180 -2.54572e-185 9.00174e-183 -7.71358e-188 3.16704e-185 -2.14971e-190 1.03422e-187 -5.47266e-193 3.11946e-190 -1.26129e-195 8.63728e-193 -2.60271e-198 2.1776e-195 -4.72843e-201 4.94892e-198 -7.38665e-204 9.9797e-201 -9.55084e-207 1.74598e-203 -9.60912e-210 2.5533e-206 -6.79417e-213 2.93573e-209 -2.84819e-216 2.39603e-212 -5.32504e-220 1.16902e-215 -2.74297e-224 2.55404e-219 -1.67247e-229 1.53036e-223 -2.37702e-236 1.05996e-228 -1.84684e-246 1.58003e-235 -4.83334e-266 8.79877e-246 -3.94599e-268 -3.27165e-78 -3.37783e-82 -2.76971e-80 -3.01175e-84 -1.73109e-82 -4.63113e-86 -8.28478e-85 -1.14107e-87 -3.0356e-87 -1.61349e-89 -8.75003e-90 -1.31622e-91 -2.38351e-92 -6.97928e-94 -7.77784e-95 -2.81269e-96 -1.16841e-95 -1.00285e-98 -8.30884e-95 -3.64403e-101 -5.58004e-94 -1.43077e-103 -3.4237e-93 -7.89999e-104 -1.90106e-92 -7.82674e-103 -9.44305e-92 -7.17286e-102 -4.13697e-91 -6.0041e-101 -1.57064e-90 -4.55258e-100 -5.05538e-90 -3.09538e-99 -1.34198e-89 -1.86348e-98 -2.83942e-89 -9.77504e-98 -4.60246e-89 -4.37574e-97 -5.50282e-89 -1.62591e-96 -4.73389e-89 -4.82876e-96 -2.76733e-89 -1.08753e-95 -9.69793e-90 -1.72944e-95 -2.14913e-90 -1.79802e-95 -4.69162e-91 -1.21822e-95 -1.05221e-91 -4.36419e-96 -2.00968e-92 -1.24375e-96 -3.1e-93 -3.54227e-97 -4.81874e-94 -8.30708e-98 -7.51359e-95 -1.49315e-98 -1.03892e-95 -2.72837e-99 -1.407e-96 -4.9019e-100 -1.98445e-97 -7.25245e-101 -2.31589e-98 -1.05052e-101 -2.22418e-99 -1.35895e-102 -1.90253e-100 -1.21068e-103 -1.53075e-101 -7.28334e-105 -9.7286e-103 -1.90236e-106 -4.73115e-104 9.75081e-105 -1.907e-105 1.23827e-105 -6.64732e-107 8.08526e-107 -2.05651e-108 3.90358e-108 -5.74551e-110 1.54596e-109 -1.46741e-111 5.27261e-111 -3.45706e-113 1.59263e-112 -7.56423e-115 4.33829e-114 -1.54531e-116 1.07916e-115 -2.95994e-118 2.47388e-117 -5.3338e-120 5.2624e-119 -9.06728e-122 1.04431e-120 -1.4575e-123 1.94162e-122 -2.21932e-125 3.39382e-124 -3.20614e-127 5.59224e-126 -4.40002e-129 8.70652e-128 -5.74262e-131 1.28318e-129 -7.1338e-133 1.7931e-131 -8.44101e-135 2.37875e-133 -9.51859e-137 2.99906e-135 -1.02339e-138 3.5966e-137 -1.04938e-140 4.10557e-139 -1.02642e-142 4.46345e-141 -9.57739e-145 4.62333e-143 -8.52494e-147 4.56398e-145 -7.23768e-149 4.29444e-147 -5.85963e-151 3.85177e-149 -4.52229e-153 3.29288e-151 -3.3256e-155 2.68271e-153 -2.329e-157 2.08223e-155 -1.55226e-159 1.5391e-157 -9.83773e-162 1.08283e-159 -5.9231e-164 7.24636e-162 -3.38419e-166 4.60893e-164 -1.83252e-168 2.78356e-166 -9.39044e-171 1.59454e-168 -4.54606e-173 8.65248e-171 -2.07519e-175 4.44092e-173 -8.91246e-178 2.15225e-175 -3.59206e-180 9.83004e-178 -1.35482e-182 4.22154e-180 -4.76521e-185 1.70045e-182 -1.5566e-187 6.40435e-185 -4.7007e-190 2.2471e-187 -1.30512e-192 7.31526e-190 -3.30863e-195 2.19876e-192 -7.58993e-198 6.06441e-195 -1.55804e-200 1.52237e-197 -2.81341e-203 3.44318e-200 -4.36265e-206 6.90469e-203 -5.58584e-209 1.19977e-205 -5.54093e-212 1.73855e-208 -3.83227e-215 1.9722e-211 -1.54958e-218 1.57554e-214 -2.72785e-222 7.41796e-218 -1.27027e-226 1.52589e-221 -6.53645e-232 8.25579e-226 -6.93496e-239 4.807e-231 -3.14059e-249 5.28484e-238 -2.87605e-269 1.6041e-248 -3.15919e-271 -2.96835e-84 -1.68465e-87 -4.70992e-86 -1.44807e-89 -1.20629e-87 -7.70441e-92 -1.78172e-89 -2.66373e-94 -1.52267e-91 -2.49545e-96 -8.47265e-94 -1.9399e-96 -3.58645e-96 -3.97973e-98 -1.34383e-98 -3.63932e-100 -5.13335e-101 -1.98106e-102 -2.11945e-103 -7.43458e-105 -1.23095e-103 -2.35248e-107 -1.28326e-102 -7.59335e-110 -1.23809e-101 -8.21385e-112 -1.09171e-100 -8.43912e-111 -8.7267e-100 -1.16965e-109 -6.26118e-99 -1.48741e-108 -3.98217e-98 -1.72395e-107 -2.20985e-97 -1.8065e-106 -1.04823e-96 -1.69465e-105 -4.13517e-96 -1.40574e-104 -1.30679e-95 -1.01518e-103 -3.14e-95 -6.25467e-103 -5.34391e-95 -3.19986e-102 -5.96752e-95 -1.30899e-101 -4.36153e-95 -4.05081e-101 -1.6941e-95 -8.68936e-101 -5.26653e-96 -1.1129e-100 -1.64818e-96 -6.68775e-101 -4.28518e-97 -2.71008e-101 -8.6341e-98 -1.04358e-101 -1.79341e-98 -3.16002e-102 -3.7299e-99 -7.26552e-103 -6.54686e-100 -1.83054e-103 -1.16492e-100 -4.05383e-104 -1.95236e-101 -7.31434e-105 -2.46881e-102 -1.33733e-105 -2.55658e-103 -1.72323e-106 -2.38553e-104 -1.42068e-107 -1.92326e-105 -6.505e-109 -1.11982e-106 1.11359e-107 -5.15306e-108 2.91378e-108 -1.99136e-109 2.38626e-109 -6.6952e-111 1.32773e-110 -2.00372e-112 5.8347e-112 -5.42286e-114 2.15909e-113 -1.34246e-115 6.96969e-115 -3.06603e-117 2.00685e-116 -6.50266e-119 5.23329e-118 -1.28731e-120 1.24948e-119 -2.38858e-122 2.75374e-121 -4.16785e-124 5.63766e-123 -6.85813e-126 1.07749e-124 -1.06651e-127 1.93024e-126 -1.57031e-129 3.25137e-128 -2.19248e-131 5.16316e-130 -2.90651e-133 7.74649e-132 -3.66221e-135 1.10007e-133 -4.38951e-137 1.48084e-135 -5.00823e-139 1.89188e-137 -5.44224e-141 2.29624e-139 -5.63467e-143 2.6499e-141 -5.55988e-145 2.90948e-143 -5.22908e-147 3.04075e-145 -4.68772e-149 3.02602e-147 -4.0053e-151 2.86801e-149 -3.26111e-153 2.5891e-151 -2.52941e-155 2.2262e-153 -1.86817e-157 1.82291e-155 -1.3132e-159 1.42114e-157 -8.77978e-162 1.05444e-159 -5.57858e-164 7.44223e-162 -3.36548e-166 4.99344e-164 -1.92572e-168 3.18256e-166 -1.04376e-170 1.92506e-168 -5.35105e-173 1.10388e-170 -2.59046e-175 5.99313e-173 -1.1819e-177 3.07613e-175 -5.07108e-180 1.49017e-177 -2.04093e-182 6.80001e-180 -7.68338e-185 2.91637e-182 -2.69617e-187 1.17265e-184 -8.78321e-190 4.40682e-187 -2.64397e-192 1.54222e-189 -7.31445e-195 5.00552e-192 -1.8468e-197 1.49943e-194 -4.21734e-200 4.11992e-197 -8.61304e-203 1.02988e-199 -1.54605e-205 2.31831e-202 -2.37998e-208 4.6235e-205 -3.01788e-211 7.97997e-208 -2.95183e-214 1.14595e-210 -1.99721e-217 1.28276e-213 -7.79001e-221 1.00326e-216 -1.29122e-224 4.55929e-220 -5.43542e-229 8.83284e-224 -2.36008e-234 4.31691e-228 -1.8696e-241 2.1144e-233 -4.95234e-252 1.71758e-240 -1.64763e-272 2.86023e-251 -2.50326e-274 -9.38534e-90 -7.513e-94 -5.18822e-92 -2.39211e-96 -1.88108e-94 -4.84264e-99 -1.85829e-96 -6.44144e-102 -1.52743e-96 -5.87252e-105 -3.31619e-98 -9.6847e-106 -3.20904e-100 -3.26411e-105 -1.84756e-102 -5.43835e-105 -7.32863e-105 -6.83381e-107 -2.44962e-107 -4.71854e-109 -8.34864e-110 -2.3883e-111 -9.53286e-112 -1.02603e-113 -1.03383e-110 -4.00139e-116 -1.51271e-109 -1.43729e-118 -2.0317e-108 -1.90734e-118 -2.48864e-107 -4.67704e-117 -2.75847e-106 -1.05471e-115 -2.74027e-105 -2.16789e-114 -2.41049e-104 -4.02753e-113 -1.84909e-103 -6.69273e-112 -1.21255e-102 -9.81846e-111 -6.61825e-102 -1.25056e-109 -2.89662e-101 -1.35307e-108 -9.62262e-101 -1.20768e-107 -2.22468e-100 -8.53298e-107 -3.08551e-100 -4.48888e-106 -2.01932e-100 -1.59199e-105 -8.97258e-101 -3.17194e-105 -3.82001e-101 -2.42462e-105 -1.29195e-101 -1.3128e-105 -3.36039e-102 -6.29151e-106 -9.73689e-103 -2.19307e-106 -2.53495e-103 -6.77734e-107 -5.54461e-104 -2.20599e-107 -1.28646e-104 -5.41658e-108 -2.26754e-105 -1.241e-108 -2.95839e-106 -2.27616e-109 -3.25251e-107 -2.52657e-110 -3.18978e-108 -1.61869e-111 -2.25402e-109 6.0439e-111 -1.1964e-110 6.81695e-111 -5.16724e-112 6.93842e-112 -1.90038e-113 4.42163e-113 -6.12536e-115 2.1492e-114 -1.76458e-116 8.61499e-116 -4.60754e-118 2.96968e-117 -1.1019e-119 9.03551e-119 -2.43276e-121 2.46971e-120 -4.98909e-123 6.14125e-122 -9.55096e-125 1.40237e-123 -1.71356e-126 2.96209e-125 -2.89073e-128 5.82004e-127 -4.5971e-130 1.06865e-128 -6.90664e-132 1.84027e-130 -9.82064e-134 2.98093e-132 -1.32359e-135 4.55318e-134 -1.69294e-137 6.5714e-136 -2.05699e-139 8.97648e-138 -2.37619e-141 1.16215e-139 -2.61135e-143 1.42765e-141 -2.73148e-145 1.66566e-143 -2.72034e-147 1.84706e-145 -2.58005e-149 1.94781e-147 -2.3305e-151 1.95416e-149 -2.00481e-153 1.8657e-151 -1.64224e-155 1.69531e-153 -1.28062e-157 1.4662e-155 -9.50308e-160 1.20677e-157 -6.70734e-162 9.45037e-160 -4.49993e-164 7.03906e-162 -2.86745e-166 4.98444e-164 -1.7339e-168 3.3534e-166 -9.93884e-171 2.14189e-168 -5.39365e-173 1.29768e-170 -2.76717e-175 7.44942e-173 -1.3399e-177 4.04686e-175 -6.11174e-180 2.07741e-177 -2.62036e-182 1.00601e-179 -1.05334e-184 4.58689e-182 -3.95892e-187 1.96473e-184 -1.38631e-189 7.88661e-187 -4.50478e-192 2.95748e-189 -1.35205e-194 1.0324e-191 -3.72777e-197 3.34095e-194 -9.37615e-200 9.97469e-197 -2.13193e-202 2.73049e-199 -4.33278e-205 6.7972e-202 -7.73299e-208 1.52294e-204 -1.18207e-210 3.02081e-207 -1.48488e-213 5.17928e-210 -1.43264e-216 7.37166e-213 -9.48721e-220 8.14418e-216 -3.57198e-223 6.23779e-219 -5.58081e-227 2.73745e-222 -2.12752e-231 4.99814e-226 -7.82148e-237 2.20896e-230 -4.66182e-244 9.1184e-236 -7.39108e-255 5.49767e-243 -9.64331e-276 5.10611e-254 -2.01446e-277 -6.86991e-97 -9.79303e-100 -1.52365e-99 -2.38115e-102 -2.23303e-102 -3.80632e-105 -2.24151e-105 -4.15806e-108 -4.05214e-106 -3.16394e-111 -1.48821e-105 -2.43066e-114 -2.68542e-105 -1.37009e-113 -3.63439e-107 -1.58124e-112 -2.68998e-109 -8.79243e-112 -1.45394e-111 -1.84731e-113 -6.65066e-114 -1.57121e-115 -2.7557e-116 -9.15651e-118 -1.05015e-118 -4.25114e-120 -1.47724e-118 -1.68771e-122 -3.83853e-117 -5.96988e-125 -9.17389e-116 -5.1963e-127 -1.99949e-114 -2.41546e-125 -3.94259e-113 -1.56184e-123 -6.96241e-112 -9.0671e-122 -1.08722e-110 -4.67687e-120 -1.47692e-109 -2.11494e-118 -1.7084e-108 -8.24165e-117 -1.6348e-107 -2.70564e-115 -1.24259e-106 -7.25673e-114 -7.06012e-106 -1.52264e-112 -2.71721e-105 -2.34217e-111 -5.90824e-105 -2.37741e-110 -4.96168e-105 -1.32141e-109 -2.97512e-105 -2.94864e-109 -1.59431e-105 -2.42347e-109 -6.28877e-106 -1.5872e-109 -2.23285e-106 -8.19484e-110 -8.51946e-107 -3.15224e-110 -2.52151e-107 -1.33869e-110 -7.25677e-108 -4.57665e-111 -1.78667e-108 -1.27635e-111 -3.01058e-109 -3.10123e-112 -3.98244e-110 -4.49056e-113 -4.611e-111 -3.69272e-114 -3.93434e-112 3.31464e-114 -2.40317e-113 1.73105e-113 -1.15899e-114 2.06821e-114 -4.66132e-116 1.48027e-115 -1.61827e-117 7.89276e-117 -4.96379e-119 3.41335e-118 -1.3677e-120 1.25367e-119 -3.42682e-122 4.02504e-121 -7.87995e-124 1.15209e-122 -1.67499e-125 2.98164e-124 -3.31006e-127 7.05083e-126 -6.10927e-129 1.53586e-127 -1.05711e-130 3.10127e-129 -1.71993e-132 5.83482e-131 -2.63778e-134 1.02694e-132 -3.82123e-136 1.69641e-134 -5.23782e-138 2.63737e-136 -6.80284e-140 3.86769e-138 -8.3816e-142 5.36017e-140 -9.80553e-144 7.03116e-142 -1.09006e-145 8.74079e-144 -1.15218e-147 1.03086e-145 -1.15841e-149 1.15437e-147 -1.10814e-151 1.22817e-149 -1.00875e-153 1.24208e-151 -8.73847e-156 1.19443e-153 -7.20284e-158 1.09238e-155 -5.64796e-160 9.50209e-158 -4.21162e-162 7.8607e-160 -2.98519e-164 6.18324e-162 -2.01002e-166 4.62326e-164 -1.28472e-168 3.28443e-166 -7.78773e-171 2.21561e-168 -4.4726e-173 1.41818e-170 -2.4306e-175 8.60599e-173 -1.24809e-177 4.94579e-175 -6.04569e-180 2.68841e-177 -2.75728e-182 1.38024e-179 -1.18142e-184 6.6817e-182 -4.7438e-187 3.04407e-184 -1.78008e-189 1.30226e-186 -6.22048e-192 5.21862e-189 -2.01625e-194 1.95286e-191 -6.03351e-197 6.79994e-194 -1.65784e-199 2.19412e-196 -4.15368e-202 6.5291e-199 -9.40339e-205 1.78065e-201 -1.90163e-207 4.4144e-204 -3.37437e-210 9.84477e-207 -5.12154e-213 1.94227e-209 -6.37277e-216 3.3083e-212 -6.06429e-219 4.66758e-215 -3.92985e-222 5.09073e-218 -1.42787e-225 3.81991e-221 -2.10184e-229 1.61989e-224 -7.25001e-234 2.79039e-228 -2.25237e-239 1.11715e-232 -1.00549e-246 3.89887e-238 -9.43963e-258 1.75776e-245 -4.54424e-279 9.38618e-257 -1.68211e-280 -1.54861e-104 -9.59652e-107 -1.88801e-109 -2.09121e-112 -2.10492e-115 -1.4593e-114 -1.98696e-113 -1.26641e-112 -2.988e-114 -2.81222e-116 -1.79432e-118 -9.05159e-121 -3.88376e-123 -1.47949e-125 -1.38386e-127 -6.90573e-126 -4.79323e-124 -2.98931e-122 -1.65884e-120 -8.08735e-119 -3.40691e-117 -1.21309e-115 -3.54278e-114 -8.13168e-113 -1.37563e-111 -1.5451e-110 -9.57006e-110 -2.39887e-109 -2.23516e-109 -1.67709e-109 -1.00434e-109 -4.54894e-110 -2.31901e-110 -9.77253e-111 -3.49326e-111 -1.15756e-111 -2.55543e-112 -4.17037e-113 -5.7152e-114 -5.74888e-115 -4.04407e-116 -2.1939e-117 -9.73003e-119 -3.66464e-120 -1.2034e-121 -3.51181e-123 -9.23826e-125 -2.21463e-126 -4.87911e-128 -9.94543e-130 -1.88577e-131 -3.34087e-133 -5.54937e-135 -8.6675e-137 -1.27602e-138 -1.77419e-140 -2.33362e-142 -2.90761e-144 -3.43557e-146 -3.85305e-148 -4.10454e-150 -4.15528e-152 -3.99913e-154 -3.6598e-156 -3.18498e-158 -2.63567e-160 -2.07362e-162 -1.55055e-164 -1.10147e-166 -7.42911e-169 -4.75407e-171 -2.8839e-173 -1.6567e-175 -9.00171e-178 -4.61959e-180 -2.2355e-182 -1.01816e-184 -4.35495e-187 -1.74504e-189 -6.53245e-192 -2.27663e-194 -7.35771e-197 -2.19488e-199 -6.01128e-202 -1.50109e-204 -3.38699e-207 -6.82719e-210 -1.2076e-212 -1.82688e-215 -2.26435e-218 -2.14244e-221 -1.37455e-224 -4.90208e-228 -6.97039e-232 -2.25901e-236 -6.29301e-242 -2.32758e-249 -1.57943e-260 -4.50281e-282 ) ; boundaryField { leftWall { type calculated; value uniform 0; } rightWall { type calculated; value uniform 0; } lowerWall { type calculated; value uniform 0; } atmosphere { type calculated; value nonuniform List<scalar> 300 ( 0 3.50407e-257 3.63696e-246 7.06861e-239 1.93082e-233 4.70165e-229 2.67768e-225 6.20965e-222 8.14951e-219 7.36118e-216 5.14219e-213 2.97586e-210 1.48699e-207 6.5756e-205 2.61559e-202 9.45822e-200 3.13538e-197 9.585e-195 2.71532e-192 7.15847e-190 1.76268e-187 4.06587e-185 8.80764e-183 1.7957e-180 3.45239e-178 6.26955e-176 1.07698e-173 1.7521e-171 2.70235e-169 3.9548e-167 5.49552e-165 7.25494e-163 9.10282e-161 1.08579e-158 1.23143e-156 1.32791e-154 1.36135e-152 1.3265e-150 1.22804e-148 1.07963e-146 9.00724e-145 7.12538e-143 5.3393e-141 3.78525e-139 2.53523e-137 1.60145e-135 9.52172e-134 5.31615e-132 2.77931e-130 1.3561e-128 6.15067e-127 2.5806e-125 9.95637e-124 3.50634e-122 1.11666e-120 3.17734e-119 7.95058e-118 1.71216e-116 3.0772e-115 4.40651e-114 4.65362e-113 3.10889e-112 8.25781e-112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.79248e-116 5.74232e-116 6.97739e-117 5.29486e-118 3.00617e-119 1.37899e-120 5.34166e-122 1.79835e-123 5.36909e-125 1.44254e-126 3.5268e-128 7.91401e-130 1.64108e-131 3.16215e-133 5.68633e-135 9.57709e-137 1.51525e-138 2.25763e-140 3.17414e-142 4.21833e-144 5.30649e-146 6.32594e-148 7.15325e-150 7.6781e-152 7.8273e-154 7.5814e-156 6.97858e-158 6.10534e-160 5.07647e-162 4.01101e-164 3.01062e-166 2.14578e-168 1.45142e-170 9.31038e-173 5.65908e-175 3.25589e-177 1.77094e-179 9.09351e-182 4.40077e-184 2.00338e-186 8.5602e-189 3.42473e-191 1.27892e-193 4.4423e-196 1.42929e-198 4.23933e-201 1.15195e-203 2.84418e-206 6.31399e-209 1.23912e-211 2.09706e-214 2.93342e-217 3.15939e-220 2.32369e-223 9.52949e-227 1.55068e-230 5.63581e-235 1.66918e-240 5.67285e-248 1.78663e-259 0 ) ; } defaultFaces { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "stig.m.nilsen@gmail.com" ]
stig.m.nilsen@gmail.com
0d4eccd2a5b7b3bf2d06cdfb18ea1ce72e0f97da
cd142a4e15d3576546fcb44841417039f0b8fb00
/src/test3/src/main_window.cpp
2f77df4e56761e9f4556ef3ea1cc76c21b9ddc8e
[]
no_license
mgou123/rplidar
4389819eb1998d404d1066c7b4a983972d236ce7
608c1f6da2d3e5a8bac06e8d55d8569af828a40b
refs/heads/master
2022-11-10T05:51:56.403293
2020-06-29T04:16:14
2020-06-29T04:16:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,172
cpp
/** * @file /src/main_window.cpp * * @brief Implementation for the qt gui. * * @date February 2011 **/ /***************************************************************************** ** Includes *****************************************************************************/ #include <QtGui> #include <QMessageBox> #include <iostream> #include "../include/test3/main_window.hpp" #include "../include/test3/myviz.h" #include <QScrollArea> #include <sys/wait.h> /***************************************************************************** ** Namespaces *****************************************************************************/ namespace test3 { using namespace Qt; /***************************************************************************** ** Implementation [MainWindow] *****************************************************************************/ MainWindow::MainWindow(int argc, char** argv, QWidget *parent) : QMainWindow(parent) , qnode(argc,argv) { ui.setupUi(this); // Calling this incidentally connects all ui's triggers to on_...() callbacks in this class. QObject::connect(ui.actionAbout_Qt, SIGNAL(triggered(bool)), qApp, SLOT(aboutQt())); // qApp is a global variable for the application ReadSettings(); setWindowIcon(QIcon(":/images/robot.png")); ui.tab_manager->setCurrentIndex(0); // ensure the first tab is showing - qt-designer should have this already hardwired, but often loses it (settings?). QObject::connect(&qnode, SIGNAL(rosShutdown()), this, SLOT(close())); /********************* ** Logging **********************/ QObject::connect(&qnode,SIGNAL(loggingCamera()),this,SLOT(updateLogcamera())); ui.view_logging_2->setModel(qnode.loggingModel()); ui.listView_hight->setModel(qnode.loggingModel_sub()); QObject::connect(&qnode, SIGNAL(loggingUpdated()), this, SLOT(updateLoggingView())); QObject::connect(&qnode,SIGNAL(loggingCamera2()),this,SLOT(updateLogcamera2())); QObject::connect(&qnode,SIGNAL(loggingCamera3()),this,SLOT(updateLogcamera3())); QObject::connect(&qnode,SIGNAL(loggingCamera4()),this,SLOT(updateLogcamera4())); QObject::connect(&qnode,SIGNAL(loggingCamera5()),this,SLOT(updateLogcamera5())); QObject::connect(&qnode,SIGNAL(loggingCamera6()),this,SLOT(updateLogcamera6())); QObject::connect(&qnode,SIGNAL(loggingCamera7()),this,SLOT(updateLogcamera7())); QObject::connect(&qnode,SIGNAL(loggingCamera8()),this,SLOT(updateLogcamera8())); //QObject::connect(ui.lineEdit_hight,SIGNAL(returnPressed()),this,SLOT(pub_cmd())); //add /********************* ** Auto Start **********************/ if ( ui.checkbox_remember_settings->isChecked() ) { on_button_connect_clicked(true); } } MainWindow::~MainWindow() {} /***************************************************************************** ** Implementation [Slots] *****************************************************************************/ void MainWindow::showNoMasterMessage() { QMessageBox msgBox; msgBox.setText("Couldn't find the ros master."); msgBox.exec(); close(); } /* * These triggers whenever the button is clicked, regardless of whether it * is already checked or not. */ void MainWindow::on_button_connect_clicked(bool check ) { if ( ui.checkbox_use_environment->isChecked() ) { if ( !qnode.init() ) { showNoMasterMessage(); } else { ui.button_connect->setEnabled(false); } } else { if ( ! qnode.init(ui.line_edit_master->text().toStdString(), ui.line_edit_host->text().toStdString()) ) { showNoMasterMessage(); } else { ui.button_connect->setEnabled(false); ui.line_edit_master->setReadOnly(true); ui.line_edit_host->setReadOnly(true); ui.line_edit_topic->setReadOnly(true); } } } void MainWindow::on_checkbox_use_environment_stateChanged(int state) { bool enabled; if ( state == 0 ) { enabled = true; } else { enabled = false; } ui.line_edit_master->setEnabled(enabled); ui.line_edit_host->setEnabled(enabled); //ui.line_edit_topic->setEnabled(enabled); } /***************************************************************************** ** Implemenation [Slots][manually connected] *****************************************************************************/ /** * This function is signalled by the underlying model. When the model changes, * this will drop the cursor down to the last line in the QListview to ensure * the user can always see the latest log message. */ void MainWindow::updateLoggingView() { ui.view_logging_2->scrollToBottom(); } void MainWindow::updateLoggingView_sub() { ui.listView_hight->scrollToBottom(); } /***************************************************************************** ** Implementation [Menu] *****************************************************************************/ void MainWindow::on_actionAbout_triggered() { QMessageBox::about(this, tr("About ..."),tr("<h2>PACKAGE_NAME Test Program 0.10</h2><p>Copyright Yujin Robot</p><p>This package needs an about description.</p>")); } /***************************************************************************** ** Implementation [Configuration] *****************************************************************************/ void MainWindow::ReadSettings() { QSettings settings("Qt-Ros Package", "test3"); restoreGeometry(settings.value("geometry").toByteArray()); restoreState(settings.value("windowState").toByteArray()); QString master_url = settings.value("master_url",QString("http://192.168.1.2:11311/")).toString(); QString host_url = settings.value("host_url", QString("192.168.1.3")).toString(); //QString topic_name = settings.value("topic_name", QString("/chatter")).toString(); ui.line_edit_master->setText(master_url); ui.line_edit_host->setText(host_url); //ui.line_edit_topic->setText(topic_name); bool remember = settings.value("remember_settings", false).toBool(); ui.checkbox_remember_settings->setChecked(remember); bool checked = settings.value("use_environment_variables", false).toBool(); ui.checkbox_use_environment->setChecked(checked); if ( checked ) { ui.line_edit_master->setEnabled(false); ui.line_edit_host->setEnabled(false); //ui.line_edit_topic->setEnabled(false); } } void MainWindow::WriteSettings() { QSettings settings("Qt-Ros Package", "test3"); settings.setValue("master_url",ui.line_edit_master->text()); settings.setValue("host_url",ui.line_edit_host->text()); //settings.setValue("topic_name",ui.line_edit_topic->text()); settings.setValue("use_environment_variables",QVariant(ui.checkbox_use_environment->isChecked())); settings.setValue("geometry", saveGeometry()); settings.setValue("windowState", saveState()); settings.setValue("remember_settings",QVariant(ui.checkbox_remember_settings->isChecked())); } void MainWindow::closeEvent(QCloseEvent *event) { WriteSettings(); QMainWindow::closeEvent(event); } /*void MainWindow::on_pushButton_clicked() { MyViz* myviz = new MyViz(); myviz->show(); myviz->resize(600,400); myviz->setWindowTitle("Mapping Show"); }*/ void MainWindow::on_pushButton_run_clicked() { system("gnome-terminal -x bash -c 'source ~/catkin_ws/devel/setup.bash;roslaunch rplidar_ros rplidar.launch limited:=true'&"); //system("gnome-terminal -x bash -c 'source ~/catkin_ws/devel/setup.bash;rosrun service_example server_node limited:=true'&"); sleep(3); system("gnome-terminal -x bash -c 'source ~/catkin_ws/devel/setup.bash;rosrun calibration calibration limited:=true'&"); sleep(3); system("gnome-terminal -x bash -c 'source ~/catkin_ws/devel/setup.bash;roslaunch scan_pcl scan_pcl.launch limited:=true'&"); } void MainWindow::on_pushButton_save2_clicked(){ initrviz2(); } void MainWindow::on_pushButton_save_clicked() { //system("gnome-terminal -x bash -c '  rosbag record -O out /point_cloud3;rosrun pcl_ros bag_to_pcd out.bag /point_cloud3 pcd limited:=true'&"); } void MainWindow::on_pushButton_point_clicked() { system("gnome-terminal -x bash -c 'source ~/dogkin_ws/devel/setup.bash;roslaunch uvc_camera stereo_node.launch limited:=true'&"); sleep(3); system("gnome-terminal -x bash -c 'source ~/dogkin_ws/devel/setup.bash;roslaunch double point_find.launch limited:=true'&"); sleep(3); system("gnome-terminal -x bash -c 'source ~/dogkin_ws/devel/setup.bash;roslaunch stereo_vision find_target.launch limited:=true'&"); } pid_t getProcessPidByName(const char *proc_name) { FILE *fp; char buf[100]; char cmd[200] = {'\0'}; pid_t pid = -1; sprintf(cmd, "pidof %s", proc_name); if((fp = popen(cmd, "r")) != NULL) { if(fgets(buf, 255, fp) != NULL) { pid = atoi(buf); } } printf("pid = %d \n", pid); pclose(fp); return pid; } void MainWindow::on_pushButton_close_clicked() { ROS_INFO("end"); int killa; //killa=getProcessPidByName("/home/pi/catkin_ws/devel/lib/scan_pcl/scan_pcl"); kill(killa,SIGTERM); ROS_INFO(" end"); } void MainWindow::on_close_uvc_clicked() { std_msgs::Int8 close; close.data=0; qnode.sent_cmd_close(close); } void MainWindow::on_pushButton_close2_clicked() { ROS_INFO("camera_end"); int killa; // killa=getProcessPidByName("/home/xu/dogkin_ws/devel/lib/uvc_camera/uvc_stereo_node"); // kill(killa,SIGTERM); //sleep(3); killa=getProcessPidByName("/home/xu/dogkin_ws/devel/lib/double/find_target_double"); kill(killa,SIGTERM); sleep(3); //killa=getProcessPidByName("/home/xu/dogkin_ws/devel/lib/stereo_vision/cal_target_3Dposition"); // kill(killa,SIGTERM); // ROS_INFO(" camera end"); } void MainWindow::updateLogstring(){ //ui.lineEdit_listener->setText(qnode.str); } //update camera topic messages void MainWindow::updateLogcamera() { displayMat(qnode.image); //ui.label_camera; //ui.graphicsView->setForegroundBrush(); } void MainWindow::displayMat(const QImage &image) { /*cv::Mat rgb; QImage img; qimage_ = image.copy(); if(image.channels()==3) { //cvt Mat BGR 2 QImage RGB cv::cvtColor(image,rgb,CV_BGR2RGB); img =QImage((const unsigned char*)(rgb.data), rgb.cols,rgb.rows, rgb.cols*rgb.channels(), QImage::Format_RGB888); } else { img =QImage((const unsigned char*)(image.data), image.cols,image.rows, image.cols*image.channels(), QImage::Format_RGB888); }*/ //ROS_INFO("I'm setting picture in mainwindow!"); qimage_mutex_.lock(); qimage_ = image.copy(); ui.label_camera->setPixmap(QPixmap::fromImage(qimage_)); ui.label_camera->resize(ui.label_camera->pixmap()->size()); qimage_mutex_.unlock(); /*int c=cv::waitKey(30);//每一帧间隔30ms if(c>=0)//任意键暂停 { cv::waitKey(0); }*/ } void MainWindow::displayCamera2(const QImage &image) { qimage_mutex_2.lock(); qimage_2 = image.copy(); ui.camera_before_2->setPixmap(QPixmap::fromImage(qimage_2)); ui.camera_before_2->resize(ui.camera_before_2->pixmap()->size()); qimage_mutex_2.unlock(); } void MainWindow::updateLogcamera2() { displayCamera2(qnode.image2); } void MainWindow::displayCamera3(const QImage &image) { qimage_mutex_3.lock(); qimage_3 = image.copy(); ui.camera_after_right->setPixmap(QPixmap::fromImage(qimage_3)); ui.camera_after_right->resize(ui.camera_after_right->pixmap()->size()); qimage_mutex_3.unlock(); } void MainWindow::updateLogcamera3() { displayCamera3(qnode.image3); } void MainWindow::displayCamera4(const QImage &image) { qimage_mutex_4.lock(); qimage_4 = image.copy(); ui.camera_before_right->setPixmap(QPixmap::fromImage(qimage_4)); ui.camera_before_right->resize(ui.camera_before_right->pixmap()->size()); qimage_mutex_4.unlock(); } void MainWindow::updateLogcamera4() { displayCamera4(qnode.image4); } void MainWindow::displayCamera5(const QImage &image) { qimage_mutex_5.lock(); qimage_5 = image.copy(); ui.second_after_left->setPixmap(QPixmap::fromImage(qimage_5)); ui.second_after_left->resize(ui.second_after_left->pixmap()->size()); qimage_mutex_5.unlock(); } void MainWindow::updateLogcamera5() { displayCamera5(qnode.image5); } void MainWindow::displayCamera6(const QImage &image) { qimage_mutex_6.lock(); qimage_6 = image.copy(); ui.second_before_left->setPixmap(QPixmap::fromImage(qimage_6)); ui.second_before_left->resize(ui.second_before_left->pixmap()->size()); qimage_mutex_6.unlock(); } void MainWindow::updateLogcamera6() { displayCamera6(qnode.image6); } void MainWindow::displayCamera7(const QImage &image) { qimage_mutex_7.lock(); qimage_7 = image.copy(); ui.second_after_right->setPixmap(QPixmap::fromImage(qimage_7)); ui.second_after_right->resize(ui.second_after_right->pixmap()->size()); qimage_mutex_7.unlock(); } void MainWindow::updateLogcamera7() { displayCamera7(qnode.image7); } void MainWindow::displayCamera8(const QImage &image) { qimage_mutex_8.lock(); qimage_8 = image.copy(); ui.second_before_right->setPixmap(QPixmap::fromImage(qimage_8)); ui.second_before_right->resize(ui.second_before_right->pixmap()->size()); qimage_mutex_8.unlock(); } void MainWindow::updateLogcamera8() { displayCamera8(qnode.image8); } /**void MainWindow::pub_cmd() { std_msgs::Float64 high_out; QString mstring = ui.lineEdit_hight->text(); high_out.data=mstring.toFloat(); qnode.sent_cmd(high_out); } **/ void MainWindow::initrviz(){ rviz::VisualizationManager* manager_; rviz::RenderPanel *render_panel_=new rviz::RenderPanel; // //设置鼠标形状 render_panel_->setCursor(Qt::PointingHandCursor); //render_panel_->initialize(manager_->getSceneManager(),manager_); //向layout添加widget ui.verticalLayout->addWidget(render_panel_); // render_panel_->initialize(manager_->getSceneManager(),manager_); //初始化rviz控制对象 manager_=new rviz::VisualizationManager(render_panel_); render_panel_->initialize( manager_->getSceneManager(), manager_ ); manager_->initialize(); manager_->startUpdate(); manager_->removeAllDisplays(); manager_->setFixedFrame("laser"); manager_->setProperty("Background Color",QColor(48,48,48)); manager_->setProperty("Frame Rate",1000); rviz::Display* grid_ = manager_->createDisplay( "rviz/Grid", "adjustable grid", true ); grid_->subProp( "Line Style" )->setValue( "" ); grid_->subProp( "Color" )->setValue(QColor(160,160,164)); grid_->subProp("Alpha")->setValue(0.5); grid_->subProp( "Reference Frame" )->setValue("laser"); grid_->subProp("Plane Cell Count")->setValue(10); rviz::Display* laser_=manager_->createDisplay("rviz/PointCloud2","point_cloud",true); ROS_ASSERT(laser_); laser_->subProp("Topic")->setValue("point_cloud"); laser_->setEnabled(true); rviz::Display* map_=manager_->createDisplay("rviz/Map","QMap",true); ROS_ASSERT(map_); manager_->startUpdate(); } void MainWindow::on_pushButton_2_clicked(){ initrviz(); } void MainWindow::initrviz2(){ rviz::VisualizationManager* manager_; rviz::RenderPanel *render_panel_=new rviz::RenderPanel; // //设置鼠标形状 render_panel_->setCursor(Qt::PointingHandCursor); //向layout添加widget ui.verticalLayout->addWidget(render_panel_); // render_panel_->initialize(manager_->getSceneManager(),manager_); //初始化rviz控制对象 manager_=new rviz::VisualizationManager(render_panel_); render_panel_->initialize( manager_->getSceneManager(), manager_ ); manager_->initialize(); manager_->startUpdate(); manager_->removeAllDisplays(); manager_->setFixedFrame("laser"); manager_->setProperty("Background Color",QColor(48,48,48)); manager_->setProperty("Frame Rate",1000); rviz::Display* grid_ = manager_->createDisplay( "rviz/Grid", "adjustable grid", true ); grid_->subProp( "Line Style" )->setValue( "" ); grid_->subProp( "Color" )->setValue(QColor(160,160,164)); grid_->subProp("Alpha")->setValue(0.5); grid_->subProp( "Reference Frame" )->setValue("laser"); grid_->subProp("Plane Cell Count")->setValue(10); rviz::Display* laser_=manager_->createDisplay("rviz/PointCloud2","point_cloud",true); ROS_ASSERT(laser_); laser_->subProp("Topic")->setValue("pcbb"); laser_->setEnabled(true); rviz::Display* map_=manager_->createDisplay("rviz/Map","QMap",true); ROS_ASSERT(map_); manager_->startUpdate(); } } // namespace test3
[ "492798337@qq.com" ]
492798337@qq.com
b107576cf395ec6c3ee85c86a74638eb98dcef60
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5658068650033152_0/C++/SQLNinja/solution.cpp
da8224f98a4994c577942dda33f0e5d64a31aa4e
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
1,275
cpp
#include<iostream> #include<string> #include<cstring> #include<algorithm> #include<cstdio> using namespace std; bool isalpha(char a){ if( a >='0'&&a<='9') return true; return false; } int sum(string a){ int sum=0; for(int i=0;i<a.length();i++) sum+=(a[i]-'0'); return sum; } int main() { freopen("hindu.in","r",stdin); freopen("hindu.txt","w",stdout); string str; int v=1; char g; while(true){ cin>>str; if(str==".") break; cout<<v++<<". "; int k=0; int a,b,c; a=b=c=0; int n=str.length(); int f=str.find('='); c=sum(str.substr(f+1,n-f-2)); int d=str.find('+'); if(d!=string::npos){ g='+'; } else{ d=str.find('*'); g='*'; } a=sum(str.substr(0,d)); b=sum(str.substr(d+1,f-d-1)); if(g=='+') { if((a+b)%9==c%9) cout<<"PASS"; else cout<<"NOT!"; } else{ if((a*b)%9==c%9) cout<<"PASS"; else cout<<"NOT!"; } cout<<endl; } }
[ "root@debian" ]
root@debian
db077de1d0aa8af2b247143a9039a75ec35fcd4e
d255a6c41b2d41e9351673a2b09872297ec051eb
/pat_b1047/pat_b1047_0.cpp
885968af4ae71c17aaf308c28fa95ebb8f503549
[]
no_license
wangruici/pat_doing
9080e0adfc57fed801090c2ab4edd6e36729e5e4
440090c5bbea219fd1dd56465512038488781436
refs/heads/master
2021-01-24T01:22:18.170878
2018-04-18T13:58:07
2018-04-18T13:58:07
122,806,167
3
0
null
null
null
null
UTF-8
C++
false
false
652
cpp
#include <iostream> #include <string> #include <cstring> #include <cstdlib> #include <cstdio> #include <cassert> #include <unordered_map> #include <map> using std::cin; using std::cout; using std::endl; using std::flush; using std::string; using std::map; using std::unordered_map; int main(){ unordered_map<int,int> orders; int sch_or=0,stu_or=0,score=0; int count=0; int max=0; int maxScore=0; scanf("%d",&count); for(int i=0;i<count;++i){ scanf("%d-%d %d",&sch_or,&stu_or,&score); orders[sch_or]+=score; if(maxScore<orders[sch_or]){ max=sch_or; maxScore=orders[sch_or]; } } printf("%d %d\n",max,maxScore); return 0; }
[ "wrctianming@163.com" ]
wrctianming@163.com
d3567ac6631751efa3044488e2c53d2e6c9017e0
9aaa15bc1301243323cdfe4f2e5274bcbcfe39c4
/Evaluator.h
51ba631eb68c8616609ac13b6d599aa182016af4
[]
no_license
0x17/CPP-Simulation
862353e954d1b1155777476cf97d38a78137c3aa
95a29eedff6d0510e839726f29df478ed4180426
refs/heads/master
2021-01-13T14:11:20.362715
2018-07-04T15:07:05
2018-07-04T15:07:05
72,837,984
0
0
null
null
null
null
UTF-8
C++
false
false
1,572
h
#pragma once #include "Simulation.h" class AbstractEvaluator : public BookingLimitOptimizer { public: explicit AbstractEvaluator(const AbstractSimulation &_sim) : BookingLimitOptimizer("FullEnumeration", _sim) {} virtual ~AbstractEvaluator() = default; virtual ResultList collectResults(const DemandScenarioList &scenarios) const = 0; virtual Result computeOptimum(const DemandScenarioList &scenarios) const = 0; static Result extractOptimumFromList(const ResultList &results, bool printOpts = false); Result solve(const DemandScenarioList& scenarios, const boost::optional<ConsumptionScenarioFunc&> consumptionScenarioFunc) override; }; class Evaluator2D : public AbstractEvaluator { public: explicit Evaluator2D(const AbstractSimulation &_sim) : AbstractEvaluator(_sim) {} ResultList collectResults(const DemandScenarioList &scenarios) const override; Result computeOptimum(const DemandScenarioList& scenarios) const override; }; class Evaluator3D : public AbstractEvaluator { public: explicit Evaluator3D(const AbstractSimulation &_sim) : AbstractEvaluator(_sim) {} ResultList collectResults(const DemandScenarioList &scenarios) const override; Result computeOptimum(const DemandScenarioList& scenarios) const override; }; class EvaluatorMultiDimensional : public AbstractEvaluator { public: explicit EvaluatorMultiDimensional(const AbstractSimulation &_sim) : AbstractEvaluator(_sim) {} ResultList collectResults(const DemandScenarioList &scenarios) const override; Result computeOptimum(const DemandScenarioList& scenarios) const override; };
[ "andreschnabel@me.com" ]
andreschnabel@me.com
a268700c52e509830888a661d2df524488ac7a58
e82735c11a6129518fb5a9df123e443368122c87
/mp2-lab8-tables/mp2-lab7-tables/Record.h
ca62d2e41bf9d09773742ce29ddd6c44ef4d38c3
[]
no_license
MBarysheva/mp2-lab8-table
b418328644ccd79e0b076ae9fa32deda90823e91
9fa499dcb9052c89c8baffc325b6f527f72076ae
refs/heads/main
2023-05-08T02:19:27.635211
2021-05-31T15:35:28
2021-05-31T15:35:28
369,791,310
0
0
null
null
null
null
UTF-8
C++
false
false
1,188
h
#pragma once #ifndef _record_h #define _record_h #include <iostream> #include <string> using namespace std; typedef int TKey; typedef int TValue; class TTabRecord { protected: //TKey Key; //TValue pValue; virtual void Print(ostream& os) { os << Key << " " << pValue; } public: TKey Key; TValue pValue; TTabRecord(TKey k = 0, TValue pVal = 0) { Key = k; pValue = pVal; } void SetKey(TKey k) { Key = k; } TKey GetKey(void) { return Key; } void SetValue(TValue p) { pValue = p; } TValue GetValue(void) { return pValue; } TTabRecord& operator=(TTabRecord& tr) { Key = tr.Key; pValue = tr.pValue; return *this; } virtual int operator==(const TTabRecord& tr) { return Key == tr.Key; } virtual int operator< (const TTabRecord& tr) { return Key < tr.Key; } virtual int operator> (const TTabRecord& tr) { return Key > tr.Key; } virtual int operator=(const TTabRecord& tr) { return Key = tr.Key; } virtual int operator!= (const TTabRecord& tr) { return Key != tr.Key; } friend class TArrayTable; friend class TScanTable; friend class TSortTable; friend class TTreeNode; friend class TTreeTable; friend class TArrayHashTable; friend class HashTable; }; #endif
[ "mari.barysheva.2001@mail.ru" ]
mari.barysheva.2001@mail.ru
9b03fb78cf3992a4fdeb7c588351d7c38b2bc4e5
a1cc22bafb4429b53898962b1131333420eddf05
/cmdstan/stan/lib/stan_math/stan/math/prim/fun/erf.hpp
5ca0e168ede1df15834551d77819d2659236d946
[ "BSD-3-Clause", "GPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only" ]
permissive
metrumresearchgroup/Torsten
d9510b00242b9f77cdc989657a4956b3018a5f3a
0168482d400e4b819acadbc28cc817dd1a037c1b
refs/heads/master
2023-09-01T17:44:46.020886
2022-05-18T22:46:35
2022-05-18T22:46:35
124,574,336
50
18
BSD-3-Clause
2023-09-09T06:32:36
2018-03-09T17:48:27
C++
UTF-8
C++
false
false
1,004
hpp
#ifndef STAN_MATH_PRIM_FUN_ERF_HPP #define STAN_MATH_PRIM_FUN_ERF_HPP #include <stan/math/prim/meta.hpp> #include <stan/math/prim/functor/apply_scalar_unary.hpp> #include <cmath> namespace stan { namespace math { /** * Structure to wrap `erf()` so it can be vectorized. * * @tparam T type of variable * @param x variable * @return Error function of x. */ struct erf_fun { template <typename T> static inline T fun(const T& x) { using std::erf; return erf(x); } }; /** * Returns the elementwise `erf()` of the input, * which may be a scalar or any Stan container of numeric scalars. * * @tparam T type of container * @param x container * @return Error function applied to each value in x. */ template < typename T, require_all_not_nonscalar_prim_or_rev_kernel_expression_t<T>* = nullptr, require_not_var_matrix_t<T>* = nullptr> inline auto erf(const T& x) { return apply_scalar_unary<erf_fun, T>::apply(x); } } // namespace math } // namespace stan #endif
[ "yzhang@c-path.org" ]
yzhang@c-path.org
a1dfcfff3f13090d6b23c281130193f51208dd7d
93574cdfec6227131bda78ec7c2a687f7bb43edf
/c++/minimum-depth-of-binary-tree.cpp
10854aa1382e449105f4d5c69925c194b2bca475
[]
no_license
fyang26/leetcode
642cd051fe29fb26c8c24921c5fc1504554bbe67
2f7d2aa174a719d93bd42790f3c216f6f0173d5b
refs/heads/master
2021-01-10T11:08:33.920393
2016-04-27T00:59:05
2016-04-27T00:59:05
43,520,536
0
0
null
null
null
null
UTF-8
C++
false
false
547
cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: int minDepth(TreeNode* root) { if (!root) return 0; else if (!root->left && !root->right) return 1; else if (!root->left) return minDepth(root->right)+1; else if (!root->right) return minDepth(root->left)+1; else return min(minDepth(root->left), minDepth(root->right)) + 1; } };
[ "fyang@umiacs.umd.edu" ]
fyang@umiacs.umd.edu
c410868f277af3b7cb6bad65adae20ad42f04678
7e9dda3cb7e0045a7583dc973acf0ce43dcf8583
/xjoi/3335.cpp
30725991fc285725f2a1d582c5e1c459cf51dfa3
[]
no_license
ymzqwq/qwerty
344f80982efe72a80f3d5bc7bf2165c5b430d6e8
08551dd89904992acac018e7eca4811feeaef15a
refs/heads/master
2020-03-07T16:41:07.608460
2018-07-19T13:04:54
2018-07-19T13:04:54
127,590,048
1
0
null
null
null
null
UTF-8
C++
false
false
763
cpp
#include<bits/stdc++.h> #define LL long long using namespace std; const int N=100001; int n,dis[N]; vector<int> a[N],v[N]; void read(int &x){ char ch=getchar();x=0;int w=1; for(;ch<'0'||ch>'9';ch=getchar()) if (ch=='-') w=-1; for(;ch>='0'&&ch<='9';ch=getchar()) x=(x<<3)+(x<<1)+ch-'0'; x*=w; } void dfs(int x,int f){ for(int i=0;i<a[x].size();i++) if (a[x][i]!=f){ dis[a[x][i]]=dis[x]+v[x][i]; dfs(a[x][i],x); } } int main(){ read(n); for(int i=1;i<n;i++){ int x,y,z; read(x);read(y);read(z); a[x].push_back(y); a[y].push_back(x); v[x].push_back(z); v[y].push_back(z); } dfs(1,0); int x=1; for(int i=1;i<=n;i++) if (dis[i]>dis[x]) x=i; dis[x]=0; dfs(x,0); x=0; for(int i=1;i<=n;i++) x=max(x,dis[i]); cout<<x; return 0; }
[ "ymzqwq@qq.com" ]
ymzqwq@qq.com
4adef2cc79f703fc3a28876a9a55ab944c7eb02d
2c27397d7f6ba5da9110f7a7b3cfcd04c2eb52a9
/Practica/bluetooth_HC-06/bluetooth_HC-06.ino
e356ab8c0a9f8ecff8d7f28fab4fbc737a520447
[]
no_license
elfoche/Arduino
a8bdd48cc2293688e1918e393a00d374db50322d
1e8afded1a5e8f01a9b84709a901a8e07e275722
refs/heads/master
2020-03-19T03:54:16.123528
2018-09-21T00:10:25
2018-09-21T00:10:25
135,773,495
0
0
null
null
null
null
UTF-8
C++
false
false
1,715
ino
//Esto en teoria es para cambiar el nombre de la placa y la pass. pero no me anduvo. #include <SoftwareSerial.h> /* Programa el modulo bluetooth HC-06 con un nuevo: NOMBRE (Nombre de 20 caracteres) PIN (Clave de cuatro numeros) BPS (Velocidad de conexion en baudios) Tienda donde se compro el modulo: http://dinastiatecnologica.com/producto/modulo-bluetooth-hc-05/ By: http://elprofegarcia.com CONEXIONES: ARDUINO BLUETOOTH 5V VCC GND GND PIN 2 TX PIN 3 RX */ SoftwareSerial blue(2,3); //Crea conexion al bluetooth - PIN 2 a TX y PIN 3 a RX char NOMBRE="FX06"; // Nombre de 20 caracteres maximo char BPS= "4"; // 1=1200 , 2=2400, 3=4800, 4=9600, 5=19200, 6=38400, 7=57600, 8=115200 char PASS="0811"; // PIN O CLAVE de 4 caracteres numericos void setup() { blue.begin(9600); // inicialmente la comunicacion serial a 9600 Baudios (velocidad de fabrica) pinMode(13,OUTPUT); digitalWrite(13,HIGH); // Enciende el LED 13 durante 4s antes de configurar el Bluetooth delay(4000); digitalWrite(13,LOW); // Apaga el LED 13 para iniciar la programacion blue.print("AT"); // Inicializa comando AT delay(1000); blue.print("AT+NAME"); // Configura el nuevo nombre blue.print(NOMBRE); delay(1000); // espera 1 segundo blue.print("AT+BAUD"); // Configura la nueva velocidad blue.print(BPS); delay(1000); blue.print("AT+PIN"); // Configura el nuevo PIN blue.print(PASS); delay(1000); } void loop() { digitalWrite(13, !digitalRead(13)); // cuando termina de configurar el Bluetooth queda el LED 13 parpadeando delay(300); }
[ "elfoche@gmail.com" ]
elfoche@gmail.com
3907883a8bfdab1d5f6eb75bf7a925e1ece5e16d
a0442fcd9edc8b6d0975ce8799ea5a67e808c568
/casa6/casa5/code/alma/ASDM/FocusTable.h
9dcfd6e038e1cbebf6743de76e2f4e3f1a241e90
[]
no_license
kernsuite-debian/carta-casacore
f0046b996e2d0e59bfbf3dbc6b5d7eeaf97813f7
a88f662d4f6d7ba015dcaf13301d57117a2f3a17
refs/heads/master
2022-07-30T04:44:30.215120
2021-06-30T10:49:40
2021-06-30T10:49:40
381,669,021
0
0
null
null
null
null
UTF-8
C++
false
false
16,165
h
/* * ALMA - Atacama Large Millimeter Array * (c) European Southern Observatory, 2002 * (c) Associated Universities Inc., 2002 * Copyright by ESO (in the framework of the ALMA collaboration), * Copyright by AUI (in the framework of the ALMA collaboration), * All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY, without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Warning! * -------------------------------------------------------------------- * | This is generated code! Do not modify this file. | * | If you do, all changes will be lost when the file is re-generated. | * -------------------------------------------------------------------- * * File FocusTable.h */ #ifndef FocusTable_CLASS #define FocusTable_CLASS #include <string> #include <vector> #include <map> #include <alma/ASDM/ArrayTimeInterval.h> #include <alma/ASDM/Angle.h> #include <alma/ASDM/Length.h> #include <alma/ASDM/Tag.h> #include <alma/ASDM/ConversionException.h> #include <alma/ASDM/DuplicateKey.h> #include <alma/ASDM/UniquenessViolationException.h> #include <alma/ASDM/NoSuchRow.h> #include <alma/ASDM/DuplicateKey.h> #ifndef WITHOUT_ACS #include <asdmIDLC.h> #endif #include <alma/ASDM/Representable.h> #include <pthread.h> namespace asdm { //class asdm::ASDM; //class asdm::FocusRow; class ASDM; class FocusRow; /** * The FocusTable class is an Alma table. * <BR> * * \par Role * Contains the focus information. * <BR> * Generated from model's revision "-1", branch "" * * <TABLE BORDER="1"> * <CAPTION> Attributes of Focus </CAPTION> * <TR BGCOLOR="#AAAAAA"> <TH> Name </TH> <TH> Type </TH> <TH> Expected shape </TH> <TH> Comment </TH></TR> * <TR> <TH BGCOLOR="#CCCCCC" colspan="4" align="center"> Key </TD></TR> * <TR> * <TD> antennaId </TD> * <TD> Tag</TD> * <TD> &nbsp; </TD> * <TD> &nbsp;refers to a unique row in AntennaTable. </TD> * </TR> * <TR> * <TD> timeInterval </TD> * <TD> ArrayTimeInterval</TD> * <TD> &nbsp; </TD> * <TD> &nbsp;time interval for which the row's content is valid. </TD> * </TR> * <TR> <TH BGCOLOR="#CCCCCC" colspan="4" valign="center"> Value <br> (Mandatory) </TH></TR> * <TR> * <TD> focusTracking </TD> * <TD> bool </TD> * <TD> &nbsp; </TD> * <TD> &nbsp;the focus motions have been tracked (true) or not tracked (false). </TD> * </TR> * <TR> * <TD> focusOffset </TD> * <TD> std::vector<Length > </TD> * <TD> 3 </TD> * <TD> &nbsp;focus offset relative to the tracked position (a triple ). </TD> * </TR> * <TR> * <TD> focusRotationOffset </TD> * <TD> std::vector<Angle > </TD> * <TD> 2 </TD> * <TD> &nbsp;focus rotation offset relative to the tracked position (tip, tilt). </TD> * </TR> * <TR> * <TD> focusModelId </TD> * <TD> int </TD> * <TD> &nbsp; </TD> * <TD> &nbsp;refers to a collection of rows in FocusModelTable. </TD> * </TR> * <TR> <TH BGCOLOR="#CCCCCC" colspan="4" valign="center"> Value <br> (Optional) </TH></TR> * <TR> * <TD> measuredFocusPosition</TD> * <TD> std::vector<Length > </TD> * <TD> 3 </TD> * <TD>&nbsp; the measured focus position. </TD> * </TR> * <TR> * <TD> measuredFocusRotation</TD> * <TD> std::vector<Angle > </TD> * <TD> 2 </TD> * <TD>&nbsp; the measured focus rotation (tip, tilt). </TD> * </TR> * </TABLE> */ class FocusTable : public Representable { friend class ASDM; public: /** * Return the list of field names that make up key key * as an array of strings. * @return a vector of string. */ static const std::vector<std::string>& getKeyName(); virtual ~FocusTable(); /** * Return the container to which this table belongs. * * @return the ASDM containing this table. */ ASDM &getContainer() const; /** * Return the number of rows in the table. * * @return the number of rows in an unsigned int. */ unsigned int size() const; /** * Return the name of this table. * * This is a instance method of the class. * * @return the name of this table in a string. */ std::string getName() const; /** * Return the name of this table. * * This is a static method of the class. * * @return the name of this table in a string. */ static std::string name() ; /** * Return the version information about this table. * */ std::string getVersion() const ; /** * Return the names of the attributes of this table. * * @return a vector of string */ static const std::vector<std::string>& getAttributesNames(); /** * Return the default sorted list of attributes names in the binary representation of the table. * * @return a const reference to a vector of string */ static const std::vector<std::string>& defaultAttributesNamesInBin(); /** * Return this table's Entity. */ Entity getEntity() const; /** * Set this table's Entity. * @param e An entity. */ void setEntity(Entity e); /** * Produces an XML representation conform * to the schema defined for Focus (FocusTable.xsd). * * @returns a string containing the XML representation. * @throws ConversionException */ std::string toXML() ; #ifndef WITHOUT_ACS // Conversion Methods /** * Convert this table into a FocusTableIDL CORBA structure. * * @return a pointer to a FocusTableIDL */ asdmIDL::FocusTableIDL *toIDL() ; /** * Fills the CORBA data structure passed in parameter * with the content of this table. * * @param x a reference to the asdmIDL::FocusTableIDL to be populated * with the content of this. */ void toIDL(asdmIDL::FocusTableIDL& x) const; #endif #ifndef WITHOUT_ACS /** * Populate this table from the content of a FocusTableIDL Corba structure. * * @throws DuplicateKey Thrown if the method tries to add a row having a key that is already in the table. * @throws ConversionException */ void fromIDL(asdmIDL::FocusTableIDL x) ; #endif // // ====> Row creation. // /** * Create a new row with default values. * @return a pointer on a FocusRow */ FocusRow *newRow(); /** * Create a new row initialized to the specified values. * @return a pointer on the created and initialized row. * @param antennaId * @param timeInterval * @param focusTracking * @param focusOffset * @param focusRotationOffset * @param focusModelId */ FocusRow *newRow(Tag antennaId, ArrayTimeInterval timeInterval, bool focusTracking, std::vector<Length > focusOffset, std::vector<Angle > focusRotationOffset, int focusModelId); /** * Create a new row using a copy constructor mechanism. * * The method creates a new FocusRow owned by this. Each attribute of the created row * is a (deep) copy of the corresponding attribute of row. The method does not add * the created row to this, its simply parents it to this, a call to the add method * has to be done in order to get the row added (very likely after having modified * some of its attributes). * If row is null then the method returns a new FocusRow with default values for its attributes. * * @param row the row which is to be copied. */ FocusRow *newRow(FocusRow *row); // // ====> Append a row to its table. // /** * Add a row. * @param x a pointer to the FocusRow to be added. * * @return a pointer to a FocusRow. If the table contains a FocusRow whose attributes (key and mandatory values) are equal to x ones * then returns a pointer on that FocusRow, otherwise returns x. * * @throw DuplicateKey { thrown when the table contains a FocusRow with a key equal to the x one but having * and a value section different from x one } * * @note The row is inserted in the table in such a way that all the rows having the same value of * ( antennaId ) are stored by ascending time. * @see method getByContext. */ FocusRow* add(FocusRow* x) ; // // ====> Methods returning rows. // /** * Get a collection of pointers on the rows of the table. * @return Alls rows in a vector of pointers of FocusRow. The elements of this vector are stored in the order * in which they have been added to the FocusTable. */ std::vector<FocusRow *> get() ; /** * Get a const reference on the collection of rows pointers internally hold by the table. * @return A const reference of a vector of pointers of FocusRow. The elements of this vector are stored in the order * in which they have been added to the FocusTable. * */ const std::vector<FocusRow *>& get() const ; /** * Returns all the rows sorted by ascending startTime for a given context. * The context is defined by a value of ( antennaId ). * * @return a pointer on a vector<FocusRow *>. A null returned value means that the table contains * no FocusRow for the given ( antennaId ). * * @throws IllegalAccessException when a call is done to this method when it's called while the dataset has been imported with the * option checkRowUniqueness set to false. */ std::vector <FocusRow*> *getByContext(Tag antennaId); /** * Returns a FocusRow* given a key. * @return a pointer to the row having the key whose values are passed as parameters, or 0 if * no row exists for that key. * @param antennaId * @param timeInterval * */ FocusRow* getRowByKey(Tag antennaId, ArrayTimeInterval timeInterval); /** * Look up the table for a row whose all attributes * are equal to the corresponding parameters of the method. * @return a pointer on this row if any, null otherwise. * * @param antennaId * @param timeInterval * @param focusTracking * @param focusOffset * @param focusRotationOffset * @param focusModelId */ FocusRow* lookup(Tag antennaId, ArrayTimeInterval timeInterval, bool focusTracking, std::vector<Length > focusOffset, std::vector<Angle > focusRotationOffset, int focusModelId); void setUnknownAttributeBinaryReader(const std::string& attributeName, BinaryAttributeReaderFunctor* barFctr); BinaryAttributeReaderFunctor* getUnknownAttributeBinaryReader(const std::string& attributeName) const; private: /** * Create a FocusTable. * <p> * This constructor is private because only the * container can create tables. All tables must know the container * to which they belong. * @param container The container to which this table belongs. */ FocusTable (ASDM & container); ASDM & container; bool archiveAsBin; // If true archive binary else archive XML bool fileAsBin ; // If true file binary else file XML std::string version ; Entity entity; /** * If this table has an autoincrementable attribute then check if *x verifies the rule of uniqueness and throw exception if not. * Check if *x verifies the key uniqueness rule and throw an exception if not. * Append x to its table. * @throws DuplicateKey */ FocusRow* checkAndAdd(FocusRow* x, bool skipCheckUniqueness=false) ; /** * Brutally append an FocusRow x to the collection of rows already stored in this table. No uniqueness check is done ! * * @param FocusRow* x a pointer onto the FocusRow to be appended. */ void append(FocusRow* x) ; /** * Brutally append an FocusRow x to the collection of rows already stored in this table. No uniqueness check is done ! * * @param FocusRow* x a pointer onto the FocusRow to be appended. */ void addWithoutCheckingUnique(FocusRow* x) ; /** * Insert a FocusRow* in a vector of FocusRow* so that it's ordered by ascending time. * * @param FocusRow* x . The pointer to be inserted. * @param vector <FocusRow*>& row . A reference to the vector where to insert x. * */ FocusRow * insertByStartTime(FocusRow* x, std::vector<FocusRow* >& row); // A data structure to store the pointers on the table's rows. // In all cases we maintain a private vector of FocusRow s. std::vector<FocusRow * > privateRows; typedef std::vector <FocusRow* > TIME_ROWS; std::map<std::string, TIME_ROWS > context; /** * Returns a string built by concatenating the ascii representation of the * parameters values suffixed with a "_" character. */ std::string Key(Tag antennaId) ; /** * Fills the vector vout (passed by reference) with pointers on elements of vin * whose attributes are equal to the corresponding parameters of the method. * */ void getByKeyNoAutoIncNoTime(std::vector <FocusRow*>& vin, std::vector <FocusRow*>& vout, Tag antennaId); void error() ; //throw(ConversionException); /** * Populate this table from the content of a XML document that is required to * be conform to the XML schema defined for a Focus (FocusTable.xsd). * @throws ConversionException * */ void fromXML(std::string& xmlDoc) ; std::map<std::string, BinaryAttributeReaderFunctor *> unknownAttributes2Functors; /** * Private methods involved during the build of this table out of the content * of file(s) containing an external representation of a Focus table. */ void setFromMIMEFile(const std::string& directory); /* void openMIMEFile(const std::string& directory); */ void setFromXMLFile(const std::string& directory); /** * Serialize this into a stream of bytes and encapsulates that stream into a MIME message. * @returns a string containing the MIME message. * * @param byteOrder a const pointer to a static instance of the class ByteOrder. * */ std::string toMIME(const asdm::ByteOrder* byteOrder=asdm::ByteOrder::Machine_Endianity); /** * Extracts the binary part of a MIME message and deserialize its content * to fill this with the result of the deserialization. * @param mimeMsg the string containing the MIME message. * @throws ConversionException */ void setFromMIME(const std::string & mimeMsg); /** * Private methods involved during the export of this table into disk file(s). */ std::string MIMEXMLPart(const asdm::ByteOrder* byteOrder=asdm::ByteOrder::Machine_Endianity); /** * Stores a representation (binary or XML) of this table into a file. * * Depending on the boolean value of its private field fileAsBin a binary serialization of this (fileAsBin==true) * will be saved in a file "Focus.bin" or an XML representation (fileAsBin==false) will be saved in a file "Focus.xml". * The file is always written in a directory whose name is passed as a parameter. * @param directory The name of directory where the file containing the table's representation will be saved. * */ void toFile(std::string directory); /** * Load the table in memory if necessary. */ bool loadInProgress; void checkPresenceInMemory() { if (!presentInMemory && !loadInProgress) { loadInProgress = true; setFromFile(getContainer().getDirectory()); presentInMemory = true; loadInProgress = false; } } /** * Reads and parses a file containing a representation of a FocusTable as those produced by the toFile method. * This table is populated with the result of the parsing. * @param directory The name of the directory containing the file te be read and parsed. * @throws ConversionException If any error occurs while reading the * files in the directory or parsing them. * */ void setFromFile(const std::string& directory); }; } // End namespace asdm #endif /* FocusTable_CLASS */
[ "aramaila@ska.ac.za" ]
aramaila@ska.ac.za
590848d6a52947c2f16343051d5a88526a98ba3d
98c9ea8ef935819cd6c957c2ea560a2d97f3dd6b
/LSL/liblsl/lslboost/boost/random/seed_seq.hpp
cb9a79b12a7dce842264f490040ba90af3b464cf
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gisogrimm/labstreaminglayer
dd9c18f1e50d22df4902a938135c9a958c6bd1c1
c7b12d1f0f3487a04bba6081be7e5122af10aafe
refs/heads/master
2020-12-25T00:05:40.953942
2018-06-15T12:38:15
2018-06-15T12:38:15
51,507,985
2
0
null
2018-06-15T12:34:28
2016-02-11T10:33:59
C++
UTF-8
C++
false
false
3,804
hpp
/* boost random/seed_seq.hpp header file * * Copyright Steven Watanabe 2010 * Distributed under the Boost Software License, Version 1.0. (See * accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * * See http://www.boost.org for most recent version including documentation. * * $Id$ * */ #ifndef BOOST_RANDOM_SEED_SEQ_HPP #define BOOST_RANDOM_SEED_SEQ_HPP #include <boost/config.hpp> #include <boost/cstdint.hpp> #include <boost/range/begin.hpp> #include <boost/range/end.hpp> #include <cstddef> #include <vector> #include <algorithm> #include <iterator> #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST #include <initializer_list> #endif namespace lslboost { namespace random { /** * The class @c seed_seq stores a sequence of 32-bit words * for seeding a \pseudo_random_number_generator. These * words will be combined to fill the entire state of the * generator. */ class seed_seq { public: typedef lslboost::uint_least32_t result_type; /** Initializes a seed_seq to hold an empty sequence. */ seed_seq() {} #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST /** Initializes the sequence from an initializer_list. */ template<class T> seed_seq(const std::initializer_list<T>& il) : v(il.begin(), il.end()) {} #endif /** Initializes the sequence from an iterator range. */ template<class Iter> seed_seq(Iter first, Iter last) : v(first, last) {} /** Initializes the sequence from Boost.Range range. */ template<class Range> explicit seed_seq(const Range& range) : v(lslboost::begin(range), lslboost::end(range)) {} /** * Fills a range with 32-bit values based on the stored sequence. * * Requires: Iter must be a Random Access Iterator whose value type * is an unsigned integral type at least 32 bits wide. */ template<class Iter> void generate(Iter first, Iter last) const { typedef typename std::iterator_traits<Iter>::value_type value_type; std::fill(first, last, static_cast<value_type>(0x8b8b8b8bu)); std::size_t s = v.size(); std::size_t n = last - first; std::size_t t = (n >= 623) ? 11 : (n >= 68) ? 7 : (n >= 39) ? 5 : (n >= 7) ? 3 : (n - 1)/2; std::size_t p = (n - t) / 2; std::size_t q = p + t; std::size_t m = (std::max)(s+1, n); value_type mask = 0xffffffffu; for(std::size_t k = 0; k < m; ++k) { value_type r1 = static_cast<value_type> (*(first + k%n) ^ *(first + (k+p)%n) ^ *(first + (k+n-1)%n)); r1 = r1 ^ (r1 >> 27); r1 = (r1 * 1664525u) & mask; value_type r2 = static_cast<value_type>(r1 + ((k == 0) ? s : (k <= s) ? k % n + v[k - 1] : (k % n))); *(first + (k+p)%n) = (*(first + (k+p)%n) + r1) & mask; *(first + (k+q)%n) = (*(first + (k+q)%n) + r2) & mask; *(first + k%n) = r2; } for(std::size_t k = m; k < m + n; ++k) { value_type r3 = static_cast<value_type> ((*(first + k%n) + *(first + (k+p)%n) + *(first + (k+n-1)%n)) & mask); r3 = r3 ^ (r3 >> 27); r3 = (r3 * 1566083941u) & mask; value_type r4 = static_cast<value_type>(r3 - k%m); *(first + (k+p)%n) ^= r3; *(first + (k+q)%n) ^= r4; *(first + k%n) = r4; } } /** Returns the size of the sequence. */ std::size_t size() const { return v.size(); } /** Writes the stored sequence to iter. */ template<class Iter> void param(Iter out) { std::copy(v.begin(), v.end(), out); } private: std::vector<result_type> v; }; } } #endif
[ "derstenner@gmail.com" ]
derstenner@gmail.com
f6a780846cef4c5b0444b4aec3eef3ec01ad5b0c
3078ae0b843641976a4b624e9b98204c86037e76
/Machine_Learning/Project_5_MachineLearning/Project_5_MachineLearning/AttributeFactory.cpp
6ac28038399205dec3c5f2cf17c9829e6d2eaa46
[]
no_license
grwim/Portfolio
0888d63cfb432ae112ed878a1b8b766b91f7b989
862942118f6701e40fb1c4b3e659d565058a5729
refs/heads/master
2020-03-28T04:30:57.113423
2019-01-17T23:57:12
2019-01-17T23:57:12
147,719,480
0
0
null
null
null
null
UTF-8
C++
false
false
987
cpp
// // AttributeFactory.cpp // Project_5_MachineLearning // // Created by Konrad Rauscher on 4/24/16. // Copyright © 2016 Konrad Rauscher. All rights reserved. // #include "AttributeFactory.hpp" Attribute * AttributeFactory::make( const vector<string> &data ) throw ( logic_error ) { if (data[1] == "numeric") { // attribute is numeric Attribute * numAtt = new NumericAttribute(data[0]); // cout << "New num is: "; // dynamic_cast<NumericAttribute *>(numAtt)->print(); // cout << endl; return numAtt; } else{ Attribute * nomAtt = new NominalAttribute(data[0]); // cout << "added values: " << endl; for (unsigned int i = 1; i < data.size(); i++) { dynamic_cast<NominalAttribute *>(nomAtt)->addValue(data[i]); //cout << data[i] << " "; } return nomAtt; } }
[ "konmanr@gmail.com" ]
konmanr@gmail.com
7825a2cfba86202bb814507888aed646e08f6795
8d03a062b75f65f7a0bc8993842c019a17cc7a8d
/src/logic/BoxStacker.cxx
5ca5b9b6e8408938dfdf6f42fa9b1eac5cf88f6d
[]
no_license
onatbas/robocubes
4bde7740be7cc0c8216f0386f116cb82d43407a8
d48c780a33fe71b5c64a62f68d9c2a730e0bbe76
refs/heads/master
2021-06-20T13:12:27.322784
2017-01-09T10:32:10
2017-01-09T10:32:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
385
cxx
// // Created by Onat Bas on 01/01/17. // #include "BoxStacker.hxx" Stack BoxStacker::stackOnTop(const Box first_box, const Box second_box) const { Stack s; s.boxes.push_back(first_box); s.boxes.push_back(second_box); return s; } Stack BoxStacker::stackOn(const Stack stack, Box box) { Stack nStack = stack; nStack.boxes.push_back(box); return nStack; }
[ "i@onat.me" ]
i@onat.me
da0311b1be023b89ee4d572a03ed64ad4ed942a2
043679db67cbea9537f215ff468b96621194b51f
/OOInteraction/src/string_components/BinaryOperatorStringComponents.cpp
f7932266cd581edf06d4f3fa7c2d9c0fa6f8d31e
[ "BSD-3-Clause" ]
permissive
teeberg/Envision
bd0e4a9f0a5848defdede5d12838855e57e2a1e2
964b58e7af0eae204b4d49118756b716daccadbf
refs/heads/master
2021-01-17T06:26:24.646555
2013-04-05T09:07:04
2013-04-05T09:07:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,912
cpp
/*********************************************************************************************************************** ** ** Copyright (c) 2011, 2013 ETH Zurich ** 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 ETH Zurich nor the names of its 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 "string_components/BinaryOperatorStringComponents.h" #include "OOModel/src/expressions/BinaryOperation.h" namespace OOInteraction { BinaryOperatorStringComponents::BinaryOperatorStringComponents(OOModel::BinaryOperation* e ) : exp_(e) { } QStringList BinaryOperatorStringComponents::components() { QStringList result; if (!exp_) return result; // First comes the prefix. Currently there is no binary operator that has a prefix. result << QString() << stringForNode(exp_->left()); switch(exp_->op()) { case OOModel::BinaryOperation::TIMES: result << "*"; break; case OOModel::BinaryOperation::DIVIDE: result << "/"; break; case OOModel::BinaryOperation::REMAINDER: result << "%"; break; case OOModel::BinaryOperation::PLUS: result << "+"; break; case OOModel::BinaryOperation::MINUS: result << "-"; break; case OOModel::BinaryOperation::LEFT_SHIFT: result << "<<"; break; case OOModel::BinaryOperation::RIGHT_SHIFT_SIGNED: result << ">>"; break; case OOModel::BinaryOperation::RIGHT_SHIFT_UNSIGNED: result << ">>>"; break; case OOModel::BinaryOperation::LESS: result << "<"; break; case OOModel::BinaryOperation::GREATER: result << ">"; break; case OOModel::BinaryOperation::LESS_EQUALS: result << "<="; break; case OOModel::BinaryOperation::GREATER_EQUALS: result << ">="; break; case OOModel::BinaryOperation::EQUALS: result << "=="; break; case OOModel::BinaryOperation::NOT_EQUALS: result << "!="; break; case OOModel::BinaryOperation::XOR: result << "^"; break; case OOModel::BinaryOperation::AND: result << "&"; break; case OOModel::BinaryOperation::OR: result << "|"; break; case OOModel::BinaryOperation::CONDITIONAL_AND: result << "&&"; break; case OOModel::BinaryOperation::CONDITIONAL_OR: result << "||"; break; case OOModel::BinaryOperation::ARRAY_INDEX: result << "["; break; default: result << QString(); break; } result << stringForNode(exp_->right()); result << (exp_->op() == OOModel::BinaryOperation::ARRAY_INDEX ? "]" : QString()); // Postfix return result; } } /* namespace OOInteraction */
[ "dimitar.asenov@inf.ethz.ch" ]
dimitar.asenov@inf.ethz.ch
a29b7004de9c4936666d42dc420efd81f91842ba
d4433d8c51e9dc6e0c2904def0a524c9125555de
/Battle/CombatEffect.h
f8700fc0db9d412b2827f2d332cb8c5bc6b1e615
[]
no_license
54993306/Classes
3458d9e86d1f0e2caa791cde87aff383b2a228bb
d4d1ec5ca100162bd64156deba3748ce1410151d
refs/heads/master
2020-04-12T06:23:49.273040
2016-11-17T04:00:19
2016-11-17T04:00:19
58,427,218
1
3
null
null
null
null
UTF-8
C++
false
false
1,632
h
#ifndef _ATKEXP_H_ #define _ATKEXP_H_ #include "AppUI.h" #include <spine/spine-cocos2dx.h> /************************************************************* * * * Data : 2016.8.11 * * Name : * * Author : Lin_Xiancheng * * Description : 战斗效果处理 * * *************************************************************/ namespace BattleSpace { } using namespace spine; class CPlayerSkillData; namespace BattleSpace{ class BattleScene; class BaseRole; class WarManager; class CombatLogic; class CombatEffect : public CCObject { public: CombatEffect(); ~CombatEffect(); virtual bool init(); void addEvent(); CREATE_FUNC(CombatEffect) void AttackNull(CCObject* ob); void PlayerSkill(BaseRole* alive); void SkillEfHandle(CCObject* ob); void SkillEfHandleForEnemy(CCObject* ob); void skillShowCallBack(CCObject* ob); void BattleEffect(CCObject* ob); void DelayEffect(CCObject* ob); void setScene(BattleScene* scene); void armatureMovementEventCallFunc(CCArmature * pArmature, MovementEventType type, const char *data); void SpineActionEnd(int trackIndex); void SpineActionEvent(int trackIndex, spEvent* pEvent); void BatterSpine(int index); void continuousHurt(); //计算连击伤害 float CountAliveAtk(); void showVsAnimate( CombatLogic *pCombatLogic ); //pvp的开场vs动画 void showVsAnimateCallBack(CCNode *pSender); CC_SYNTHESIZE(int, m_PlayerNum, PlayerNum); private: BattleScene* m_Scene; CCArmature* _armaturePlayerSkill; SkeletonAnimation* m_skeletonNode; CPlayerSkillData* _playerSkillData; WarManager* mManage; }; }; #endif
[ "54993306@qq.com" ]
54993306@qq.com
f01ed669bf3edb6c5e749e8a5137d394e6a67605
87313d3572625f4c246ab12d9323366341626889
/DiligentSamples/Tutorials/Tutorial04_Instancing/src/Tutorial04_Instancing.hpp
d7c116b6479fb1367fc09250d85a8143496fc666
[ "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
JorisSAN/Town_Runner
0a10830b2e3c260c064b6cb0e302ef834014ba81
5701b916bc2e9fefab1cf5ad0d20d4b6bb0f64c5
refs/heads/master
2023-03-13T00:45:23.096600
2021-02-24T15:09:43
2021-02-24T15:09:43
306,413,169
0
0
Apache-2.0
2021-02-10T15:18:54
2020-10-22T17:35:23
C++
UTF-8
C++
false
false
2,644
hpp
/* * Copyright 2019-2020 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * 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. * * In no event and under no legal theory, whether in tort (including negligence), * contract, or otherwise, unless required by applicable law (such as deliberate * and grossly negligent acts) or agreed to in writing, shall any Contributor be * liable for any damages, including any direct, indirect, special, incidental, * or consequential damages of any character arising as a result of this License or * out of the use or inability to use the software (including but not limited to damages * for loss of goodwill, work stoppage, computer failure or malfunction, or any and * all other commercial damages or losses), even if such Contributor has been advised * of the possibility of such damages. */ #pragma once #include "SampleBase.hpp" #include "BasicMath.hpp" namespace Diligent { class Tutorial04_Instancing final : public SampleBase { public: virtual void Initialize(const SampleInitInfo& InitInfo) override final; virtual void Render() override final; virtual void Update(double CurrTime, double ElapsedTime) override final; virtual const Char* GetSampleName() const override final { return "Tutorial04: Instancing"; } private: void CreatePipelineState(); void CreateInstanceBuffer(); void UpdateUI(); void PopulateInstanceBuffer(); RefCntAutoPtr<IPipelineState> m_pPSO; RefCntAutoPtr<IBuffer> m_CubeVertexBuffer; RefCntAutoPtr<IBuffer> m_CubeIndexBuffer; RefCntAutoPtr<IBuffer> m_InstanceBuffer; RefCntAutoPtr<IBuffer> m_VSConstants; RefCntAutoPtr<ITextureView> m_TextureSRV; RefCntAutoPtr<IShaderResourceBinding> m_SRB; float4x4 m_ViewProjMatrix; float4x4 m_RotationMatrix; int m_GridSize = 5; static constexpr int MaxGridSize = 32; static constexpr int MaxInstances = MaxGridSize * MaxGridSize * MaxGridSize; }; } // namespace Diligent
[ "sancho.joris@gmail.com" ]
sancho.joris@gmail.com
dcf02f0d562ee7e3591811ef78408491b3771a83
2bb27dc9bd3067deebb82f7c57fdac02a915d0d4
/src/chainparams.cpp
fb833ab3b5671fece0e6b72378041833fa3ea6f6
[ "MIT" ]
permissive
bedri/proxynode
e46504844abd3f1772c16f37342bce1ca1f8c30a
5b42796d008a5976703b2c2adcfcafc639c64c8f
refs/heads/master
2020-05-19T13:14:45.538666
2019-05-05T08:36:00
2019-05-05T08:36:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,267
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2018 The Prx developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chainparams.h" #include "random.h" #include "util.h" #include "utilstrencodings.h" #include <assert.h> #include <boost/assign/list_of.hpp> using namespace std; using namespace boost::assign; struct SeedSpec6 { uint8_t addr[16]; uint16_t port; }; #include "chainparamsseeds.h" /** * Main network */ //! Convert the pnSeeds6 array into usable address objects. static void convertSeed6(std::vector<CAddress>& vSeedsOut, const SeedSpec6* data, unsigned int count) { // It'll only connect to one or two seed nodes because once it connects, // it'll get a pile of addresses with newer timestamps. // Seed nodes are given a random 'last seen time' of between one and two // weeks ago. const int64_t nOneWeek = 7 * 24 * 60 * 60; for (unsigned int i = 0; i < count; i++) { struct in6_addr ip; memcpy(&ip, data[i].addr, sizeof(ip)); CAddress addr(CService(ip, data[i].port)); addr.nTime = GetTime() - GetRand(nOneWeek) - nOneWeek; vSeedsOut.push_back(addr); } } // What makes a good checkpoint block? // + Is surrounded by blocks with reasonable timestamps // (no blocks before with a timestamp after, none after with // timestamp before) // + Contains no strange transactions static Checkpoints::MapCheckpoints mapCheckpoints = boost::assign::map_list_of (1, uint256("0x000001c57a7b4607f287e9a9c64f122ea2d6f31b93e2d93ab58ebe1223222dfb")); static const Checkpoints::CCheckpointData data = { &mapCheckpoints, 1542877503, // * UNIX timestamp of last checkpoint block 2, // * total number of transactions between genesis and last checkpoint // (the tx=... number in the SetBestChain debug.log lines) 2000 // * estimated number of transactions per day after checkpoint }; static Checkpoints::MapCheckpoints mapCheckpointsTestnet = boost::assign::map_list_of(0, uint256("0x001")); static const Checkpoints::CCheckpointData dataTestnet = { &mapCheckpointsTestnet, 1532008046, 0, 250}; static Checkpoints::MapCheckpoints mapCheckpointsRegtest = boost::assign::map_list_of(0, uint256("0x001")); static const Checkpoints::CCheckpointData dataRegtest = { &mapCheckpointsRegtest, 1532008046, 0, 100}; class CMainParams : public CChainParams { public: CMainParams() { networkID = CBaseChainParams::MAIN; strNetworkID = "main"; /** * The message start string is designed to be unlikely to occur in normal data. * The characters are rarely used upper ASCII, not valid as UTF-8, and produce * a large 4-byte int at any alignment. */ pchMessageStart[0] = 0xaf; pchMessageStart[1] = 0xd5; pchMessageStart[2] = 0x2d; pchMessageStart[3] = 0xd9; vAlertPubKey = ParseHex("0317dc37db1011c0a162fc11335812349817392cdad2a12b85a0f841c4c48346bd85f45ec5c1d"); nDefaultPort = 12195; bnProofOfWorkLimit = ~uint256(0) >> 20; // Prx starting difficulty is 1 / 2^12 nSubsidyHalvingInterval = 2100000; nMaxReorganizationDepth = 100; nEnforceBlockUpgradeMajority = 750; nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 0; nTargetTimespan = 1 * 60; // Prx: 1 day nTargetSpacing = 1 * 60; // Prx: 1 minute nLastPOWBlock = 200; nMaturity = 20; nMasternodeCountDrift = 20; nMasternodeCollateralLimit = 2000; nModifierUpdateBlock = 615800; nMaxMoneyOut = 275000000 * COIN; const char* pszTimestamp = "PROXYNODE new blockchain is here"; CMutableTransaction txNew; txNew.vin.resize(1); txNew.vout.resize(1); txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); txNew.vout[0].nValue = 1 * COIN; txNew.vout[0].scriptPubKey = CScript() << ParseHex("042292b1f401860eea99e1a8aab3effbd7e1c013a59a1a3a0c91c9d1997a0bc6f338567278c11344802838c107055bf7c1641eaed61e879245c255a4f5be5746fc") << OP_CHECKSIG; genesis.vtx.push_back(txNew); genesis.hashPrevBlock = 0; genesis.hashMerkleRoot = genesis.BuildMerkleTree(); genesis.nVersion = 1; genesis.nTime = 1536621253; genesis.nBits = 0x1e0ffff0; genesis.nNonce = 1634836; hashGenesisBlock = genesis.GetHash(); assert(hashGenesisBlock == uint256("0x000002d5a967ee5a93d36c2de7dd0cf23d9cb5d1b265104e4a4bebfd0593ad15")); assert(genesis.hashMerkleRoot == uint256("0xe658d8c00694e7a288d399ad881dc3fcd7629527aae7f5cd9aead0fddff982eb")); vSeeds.push_back(CDNSSeedData("178.238.235.79", "178.238.235.79")); vSeeds.push_back(CDNSSeedData("79.143.189.105", "79.143.189.105")); vSeeds.push_back(CDNSSeedData("185.2.103.114", "185.2.103.114")); vSeeds.push_back(CDNSSeedData("80.241.213.68", "80.241.213.68")); vSeeds.push_back(CDNSSeedData("193.200.241.152", "193.200.241.152")); vSeeds.push_back(CDNSSeedData("185.2.103.115", "185.2.103.115")); base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 55); // P base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 138); // x base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 98); // g base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x02)(0x2D)(0x25)(0x73).convert_to_container<std::vector<unsigned char> >(); base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x02)(0x21)(0x31)(0x2B).convert_to_container<std::vector<unsigned char> >(); // BIP44 coin type is from https://github.com/satoshilabs/slips/blob/master/slip-0044.md 1135 base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x04)(0x6f).convert_to_container<std::vector<unsigned char> >(); convertSeed6(vFixedSeeds, pnSeed6_main, ARRAYLEN(pnSeed6_main)); fRequireRPCPassword = true; fMiningRequiresPeers = true; // default true fAllowMinDifficultyBlocks = false; fDefaultConsistencyChecks = false; fRequireStandard = true; fMineBlocksOnDemand = false; fSkipProofOfWorkCheck = true; // default false fTestnetToBeDeprecatedFieldRPC = false; fHeadersFirstSyncingActive = false; nPoolMaxTransactions = 3; strSporkKey = "04FCB2AC4470656450326EE36711828EF64D162F88BB5BA7C5AAEE3CF0331ED493737158D3F4F844B4609FADB3DEC092892090697B1101750AD90A9873EC603577"; strPrivateSendPoolDummyAddress = "AJ4HhEc82t4x3y3zKcfaLyBnDsu5nSe94P"; nStartMasternodePayments = 1532008046; } const Checkpoints::CCheckpointData& Checkpoints() const { return data; } }; static CMainParams mainParams; /** * Testnet (v3) */ class CTestNetParams : public CMainParams { public: CTestNetParams() { networkID = CBaseChainParams::TESTNET; strNetworkID = "test"; pchMessageStart[0] = 0x41; pchMessageStart[1] = 0x4d; pchMessageStart[2] = 0x5e; pchMessageStart[3] = 0x78; vAlertPubKey = ParseHex("043e8760d1c9ef3af5a5e49796afe4389a5cb53c6028b54b9af0a152f34762e453615a1aab9260a31045b85f87d4de36bbe6fd04478fcc103fd47c8e1b813c3d3c"); nDefaultPort = 39795; nEnforceBlockUpgradeMajority = 51; nRejectBlockOutdatedMajority = 75; nToCheckBlockUpgradeMajority = 100; nMinerThreads = 0; nTargetTimespan = 1 * 60; // Prx: 1 day nTargetSpacing = 1 * 60; // Prx: 1 minute nLastPOWBlock = 200; nMaturity = 15; nMasternodeCountDrift = 4; nMasternodeCollateralLimit = 1000; nModifierUpdateBlock = 51197; //approx Mon, 17 Apr 2017 04:00:00 GMT nMaxMoneyOut = 43199500 * COIN; //! Modify the testnet genesis block so the timestamp is valid for a later start. genesis.nTime = 1524873600; genesis.nNonce = 2394236; hashGenesisBlock = genesis.GetHash(); // assert(hashGenesisBlock == uint256("00000dfdec6a9190b26520e93ef5eba15a82646a47ddf8fb5be4477a836467ee")); vFixedSeeds.clear(); vSeeds.clear(); /* vSeeds.push_back(CDNSSeedData("80.211.202.181", "80.211.202.181")); // Single node address vSeeds.push_back(CDNSSeedData("94.177.187.54", "94.177.187.54")); // Single node address */ base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 139); // Testnet prx addresses start with 'x' or 'y' base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 19); // Testnet prx script addresses start with '8' or '9' base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 239); // Testnet private keys start with '9' or 'c' (Bitcoin defaults) // Testnet prx BIP32 pubkeys start with 'DRKV' base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x3a)(0x80)(0x61)(0xa0).convert_to_container<std::vector<unsigned char> >(); // Testnet prx BIP32 prvkeys start with 'DRKP' base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x3a)(0x80)(0x58)(0x37).convert_to_container<std::vector<unsigned char> >(); // Testnet prx BIP44 coin type is '1' (All coin's testnet default) base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x00)(0x01).convert_to_container<std::vector<unsigned char> >(); convertSeed6(vFixedSeeds, pnSeed6_test, ARRAYLEN(pnSeed6_test)); fRequireRPCPassword = true; fMiningRequiresPeers = false; fAllowMinDifficultyBlocks = true; fDefaultConsistencyChecks = false; fRequireStandard = false; fMineBlocksOnDemand = false; fSkipProofOfWorkCheck = true; fTestnetToBeDeprecatedFieldRPC = true; nPoolMaxTransactions = 2; strSporkKey = "04cded1204a57acd6280c8499b7a2df052609dbf96546453984d632204d651d72a37013edc9d115e5a385e100eb7e867923fdd0bb7d9dc31aa1eb9d59b00c76697"; strPrivateSendPoolDummyAddress = "xxVKdbxVogrXrPLMo2qEEyCm1GRv2KZCLy"; nStartMasternodePayments = 1524873600; //Fri, 09 Jan 2015 21:05:58 GMT } const Checkpoints::CCheckpointData& Checkpoints() const { return dataTestnet; } }; static CTestNetParams testNetParams; /** * Regression test */ class CRegTestParams : public CTestNetParams { public: CRegTestParams() { networkID = CBaseChainParams::REGTEST; strNetworkID = "regtest"; strNetworkID = "regtest"; pchMessageStart[0] = 0x2d; pchMessageStart[1] = 0x53; pchMessageStart[2] = 0x6f; pchMessageStart[3] = 0x40; nSubsidyHalvingInterval = 150; nEnforceBlockUpgradeMajority = 750; nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 1; nTargetTimespan = 24 * 60 * 60; // Prx: 1 day nTargetSpacing = 1 * 60; // Prx: 1 minutes bnProofOfWorkLimit = ~uint256(0) >> 1; genesis.nTime = 1524873600; genesis.nBits = 0x207fffff; genesis.nNonce = 906460; hashGenesisBlock = genesis.GetHash(); nDefaultPort = 39793; // assert(hashGenesisBlock == uint256("00000d885e2813770fd59e71010b6b62a9b0609655109bf4e1b24c3bd524ae0c")); vFixedSeeds.clear(); //! Testnet mode doesn't have any fixed seeds. vSeeds.clear(); //! Testnet mode doesn't have any DNS seeds. fRequireRPCPassword = false; fMiningRequiresPeers = false; fAllowMinDifficultyBlocks = true; fDefaultConsistencyChecks = true; fRequireStandard = false; fMineBlocksOnDemand = true; fTestnetToBeDeprecatedFieldRPC = false; } const Checkpoints::CCheckpointData& Checkpoints() const { return dataRegtest; } }; static CRegTestParams regTestParams; /** * Unit test */ class CUnitTestParams : public CMainParams, public CModifiableParams { public: CUnitTestParams() { networkID = CBaseChainParams::UNITTEST; strNetworkID = "unittest"; nDefaultPort = 39791; vFixedSeeds.clear(); //! Unit test mode doesn't have any fixed seeds. vSeeds.clear(); //! Unit test mode doesn't have any DNS seeds. fRequireRPCPassword = false; fMiningRequiresPeers = false; fDefaultConsistencyChecks = true; fAllowMinDifficultyBlocks = false; fMineBlocksOnDemand = true; } const Checkpoints::CCheckpointData& Checkpoints() const { // UnitTest share the same checkpoints as MAIN return data; } //! Published setters to allow changing values in unit test cases virtual void setSubsidyHalvingInterval(int anSubsidyHalvingInterval) { nSubsidyHalvingInterval = anSubsidyHalvingInterval; } virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority) { nEnforceBlockUpgradeMajority = anEnforceBlockUpgradeMajority; } virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority) { nRejectBlockOutdatedMajority = anRejectBlockOutdatedMajority; } virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority) { nToCheckBlockUpgradeMajority = anToCheckBlockUpgradeMajority; } virtual void setDefaultConsistencyChecks(bool afDefaultConsistencyChecks) { fDefaultConsistencyChecks = afDefaultConsistencyChecks; } virtual void setAllowMinDifficultyBlocks(bool afAllowMinDifficultyBlocks) { fAllowMinDifficultyBlocks = afAllowMinDifficultyBlocks; } virtual void setSkipProofOfWorkCheck(bool afSkipProofOfWorkCheck) { fSkipProofOfWorkCheck = afSkipProofOfWorkCheck; } }; static CUnitTestParams unitTestParams; static CChainParams* pCurrentParams = 0; CModifiableParams* ModifiableParams() { assert(pCurrentParams); assert(pCurrentParams == &unitTestParams); return (CModifiableParams*)&unitTestParams; } const CChainParams& Params() { assert(pCurrentParams); return *pCurrentParams; } CChainParams& Params(CBaseChainParams::Network network) { switch (network) { case CBaseChainParams::MAIN: return mainParams; case CBaseChainParams::TESTNET: return testNetParams; case CBaseChainParams::REGTEST: return regTestParams; case CBaseChainParams::UNITTEST: return unitTestParams; default: assert(false && "Unimplemented network"); return mainParams; } } void SelectParams(CBaseChainParams::Network network) { SelectBaseParams(network); pCurrentParams = &Params(network); } bool SelectParamsFromCommandLine() { CBaseChainParams::Network network = NetworkIdFromCommandLine(); if (network == CBaseChainParams::MAX_NETWORK_TYPES) return false; SelectParams(network); return true; }
[ "root@m5079.contaboserver.net" ]
root@m5079.contaboserver.net
39bda6464d5a0c8aa3615fdc1924423a697f23cb
860ba53e293246322771ab6ad47f45ef57672c9e
/source/engine/moteur3D/primitiveGl.cpp
8f569e7062c0e4a2387b4ffa4fbf949104f22124
[]
no_license
tHeBeStXu/QColorRampSlider
808f60ee6529eab7ff590310e22325f08541dcea
e7d9163dfed7561d4fe389c290b37a2eea3e77eb
refs/heads/master
2023-03-25T05:03:32.815636
2013-12-29T14:18:49
2013-12-29T14:18:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,449
cpp
#include "primitiveGl.h" #include <GL/glut.h> #include <GL/gl.h> #include <GL/glext.h> #include <GL/freeglut.h> //--------------------------------------------------- //Primitive //--------------------------------------------------- /*Point3D_t<int> PrimitiveGL:: RepereOpenGl(Point3D_t<int> A) { return Point3D_t<int>(-A.x+p1.x,-A.z+p1.y,-A.y+p1.z ); }*/ //Modification de la fonction initiale Point3D_Color_t<float> PrimitiveGL:: RepereOpenGl2(Point3D_Color_t<float> A) { return Point3D_Color_t<float>( -A.x+p1.x, -A.z+p1.y, -A.y+p1.z, A.Red(), A.Green(), A.Blue()); } /*void PrimitiveGL::setLstPointFromVolume(ImageSequence<char>*mask){ //rappel p1=Point(w/2,d/2,h/2); //coordonne lst = x y z //coordonne en opengl = x z y _volume=new MiList<Point3D_t<int> >; int size=mask->getGlobalSize(); for (int i=0;i<size;++i) { if(mask->get(i)==1) { Point3D_t<int>p=mask->getPoint3DFromIndex(i,mask->getWidth(),mask->getHeight()); _volume->add(RepereOpenGl(p)); } } }*/ //Modification de la fonction initiale bool PrimitiveGL::setLstPointFromVolume(MiList<Point3D_Color_t<float> *> * list) { _vol = new MiList<Point3D_Color_t<float> >; int size=list->size(); for (int i=0;i<size;++i) { Point3D_Color_t<float> * p = new Point3D_Color_t<float>(list->get(i)->x, list->get(i)->z, list->get(i)->y, list->get(i)->Red(), list->get(i)->Green(), list->get(i)->Blue()); _vol->add(RepereOpenGl2(*p)); } return true; } void PrimitiveGL::setLstPointFromNode(MiList<Node *> nodes){ //rappel p1=Point(w/2,d/2,h/2); //coordonne lst = x y z //coordonne en opengl = x z y _nodes=new MiList<Point3D_t<int> >; int size=nodes.size(); for (int i=0;i<size;++i){ Node*p=nodes.get(i); _nodes->add(Point3D_t<int>(-p->x+p1.x,-p->z+p1.y, -p->y+p1.z)); } } //Permet de récupérer, sous forme d'image, ce qui est affiché dans le moteur 3D GLvoid PrimitiveGL::copyScreen(const string & filename) { GLint viewport[4] ; glGetIntegerv(GL_VIEWPORT, viewport); int width=viewport[2], height=viewport[3]; ofstream file (filename.c_str (), ios::out|ios::binary); if (! file) cerr << "Cannot open file \"" << filename.c_str () << "\"!\n"; else { file << "P6\n#\n" << width << ' ' << height << "\n255\n"; glPixelStorei (GL_PACK_ALIGNMENT, 1); char * pixels = (char *)malloc((3 * width * height) * sizeof(char)); glReadPixels (0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, pixels); char * ppix = pixels + (3 * width * (height)); for (unsigned int j = height; j-- ; ppix -= 3 * width) file.write (ppix, 3 * width); free(pixels); file.close (); } } GLvoid PrimitiveGL::draw_xyz_repere() { glBegin(GL_LINES); //axe X en rouge glColor3f(1.0,0.0,0.0); glVertex3f(-1000,0, 0); glVertex3f(1000,0, 0); //axe Y en vert glColor3f(0.0,1.0,0.0); glVertex3f(0,-1000, 0); glVertex3f(0,1000, 0); //axe Z en vert glColor3f(0.0,0.0,1.0); glVertex3f(0,0, -1000); glVertex3f(0, 0, 1000); //axe Z en vert glColor3f(1.0,1.0,1.0); glVertex3f(100,0, 0); glVertex3f(100, 0, 0); glEnd(); } /*GLvoid PrimitiveGL::drawLine(MiList<Point3D_t<int> >* Line) { double vert2[4] = {0, 0.78, 0, 1.0}; glColor4dv( vert2 ); glPointSize (10.0); glBegin (GL_POINTS); for (int i=0;i<Line->size();++i){ Point3D_t<int> T= RepereOpenGl(Line->get(i)); glVertex3f( T.x, T.y, T.z ); } glEnd(); }*/ /*GLvoid PrimitiveGL::drawingVolume() { glPointSize (1.0); glColor3d(1, 0, 0); glBegin (GL_POINTS); for (int i=0;i<_volume->size();++i) { Point3D_t<int>p= _volume->get(i); glVertex3f(p.x ,p.y ,p.z ); } glEnd(); }*/ //Modification de la fonction initiale GLvoid PrimitiveGL::drawingVolume() { glPointSize (0.5); glBegin (GL_POINTS); for (int i=0;i<_vol->size();++i) { Point3D_Color_t<float> p = _vol->get(i); glColor3d(((double)p.Red()/255), ((double)p.Green()/255), ((double)p.Blue()/255)); glVertex3f(p.x ,p.z ,p.y ); } glEnd(); copyScreen(_name+"_Client3D_Streaming.ppm"); } GLvoid PrimitiveGL::drawLstNode() { glPointSize (1.0); glColor3d(1, 0.8, 0.2); glBegin (GL_POINTS); for (int i=0; i<_nodes->size();++i) { Point3D_t<int>p= _volume->get(i); glVertex3f(p.x ,p.y ,p.z ); } glEnd(); } //test des composantes //void PrimitiveGL::DrawCC() //{ // for(int i=0;i< this->Composante->size();++i){ // if(i==0){ // double vert[4]= {0, 1, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==1){ // double vert[4]= {1, 0, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==2){ // double vert[4]= {0, 0, 1, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==3){ // double vert[4]= {0, 0.8, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==4){ // double vert[4]= {1, 0, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==5){ // double vert[4]= { 0.2,0, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==6){ // double vert[4]= {0.4, 0, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==7){ // double vert[4]= {0.6, 0, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==8){ // double vert[4]= {0.8, 0, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==9){ // double vert[4]= {0.2, 0.2, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==10){ // double vert[4]= {0.4, 0.2, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==11){ // double vert[4]= {0.6, 0.2, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i==12){ // double vert[4]= {0.8, 0.2, 0, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // if(i>12){ // double vert[4]= {0.5, 0.2, 0.6, 1.0} ; // glColor4dv( vert ); // glPointSize (10.0); // glBegin (GL_POINTS); // for (int f=0;f<this->Composante->at(i)->size();++f){ // Point T= RepereOpenGl(this->Composante->at(i)->at(f)); // glVertex3f( T.x, T.y, T.z ); // } // glEnd(); // } // } //} //GLvoid PrimitiveGL::drawLstBranch(){ // for (int i=0; i<lst->size();++i){ // //glLoadName(i); // drawingLstNode(lst->at(i)->getlstNode()); // } //} //GLvoid PrimitiveGL::drawingSkeleton(){ // //cout<<"nb noeud="<<lst->size()<<endl; // QList<Node*> nodeq; // nodeq.append(new Node(*lst->first()) ); // while ( !nodeq.isEmpty() ) { // Node *n = nodeq.first(); // int i; // n->children.first(); // for (i=0; i<n->children.size();++i) { // Node *child = n->children.at(i); // glColor3d(1, 1, 0); // glPointSize (10.0); // //dessin du pere et du fils // glBegin (GL_POINTS); // glVertex3f( -n->cx+p1.x, -n->cz+p1.y, -n->cy+p1.z ); // glVertex3f(-child->cx+p1.x, -child->cz+p1.y, -child->cy+p1.z); // glEnd(); // //dessin des lignes // glBegin( GL_LINES ); // glVertex3f( -n->cx+p1.x, -n->cz+p1.y, -n->cy+p1.z ); // glVertex3f(-child->cx+p1.x, -child->cz+p1.y, -child->cy+p1.z); // glEnd(); // glPopName(); // nodeq.append( child ); // } // nodeq.removeFirst(); // } //} void PrimitiveGL::drawScene(GLenum mode) { if (mode == GL_SELECT) { if(SKELETON) { /*if(!lstBranch->isEmpty()) { drawLstBranch(lstBranch); }*/ if(LABEL) { } if(SIZE) { } } } if (mode == GL_RENDER) { if(REPERE) { glColor3d(0,1,0); draw_xyz_repere(); } if(VOLUME) { drawingVolume(); } if(SKELETON) { } } }
[ "jjalageas@yahoo.com" ]
jjalageas@yahoo.com
66560adf098396d827ba778e7ea4a4a9b6daef74
7068d7ec8842a7a02adac3cea53935ea3fbdff95
/Basics/d_NestedStatements/lab/b_smallShop.cpp
5974b80e561fd622ea4feb33b2438bf3221213be
[ "MIT" ]
permissive
KaPrimov/cpp-courses
ff2aa76710bf3be1a29a9fb856c913caa9ee2e07
c114e46cd570d2e987ee65baf26dd85557f929d3
refs/heads/master
2020-03-27T20:06:46.679492
2019-03-28T21:56:07
2019-03-28T21:56:07
147,039,855
0
0
null
null
null
null
UTF-8
C++
false
false
1,131
cpp
#include <iostream> using namespace std; int main() { string product, town; double qty; double price; cin >> product >> town >> qty; if (town == "Sofia") { if (product == "coffee") { price = 0.5 * qty; } else if (product == "water") { price = qty * 0.8; } else if (product == "beer") { price = qty * 1.2; } else if (product == "sweets") { price = qty * 1.45; } else if (product == "peanuts") { price = qty * 1.6; } } else if (town == "Plovdiv") { if (product == "coffee") { price = 0.4 * qty; } else if (product == "water") { price = qty * 0.7; } else if (product == "beer") { price = qty * 1.15; } else if (product == "sweets") { price = qty * 1.3; } else if (product == "peanuts") { price = qty * 1.5; } } else if (town == "Varna") { if (product == "coffee") { price = 0.45 * qty; } else if (product == "water") { price = qty * 0.7; } else if (product == "beer") { price = qty * 1.10; } else if (product == "sweets") { price = qty * 1.35; } else if (product == "peanuts") { price = qty * 1.55; } } cout << price << endl; return 0; }
[ "k.primov92@gmail.com" ]
k.primov92@gmail.com
00db5c1f32754b8feb0a3c3061bd71b47b4bd3ed
9802284a0f2f13a6a7ac93278f8efa09cc0ec26b
/SDK/BP_Beretta_M9_Reload_Event_Closed_parameters.h
7711b8fce197321d965a27f2770a1f3dc07d28c0
[]
no_license
Berxz/Scum-SDK
05eb0a27eec71ce89988636f04224a81a12131d8
74887c5497b435f535bbf8608fcf1010ff5e948c
refs/heads/master
2021-05-17T15:38:25.915711
2020-03-31T06:32:10
2020-03-31T06:32:10
250,842,227
0
0
null
null
null
null
UTF-8
C++
false
false
897
h
#pragma once #include "../SDK.h" // Name: SCUM, Version: 3.75.21350 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function BP_Beretta_M9_Reload_Event_Closed.BP_Beretta_M9_Reload_Event_Closed_C.CanExecuteUsingData struct UBP_Beretta_M9_Reload_Event_Closed_C_CanExecuteUsingData_Params { struct FWeaponReloadData* Data; // (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm) bool ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "37065724+Berxz@users.noreply.github.com" ]
37065724+Berxz@users.noreply.github.com
79417eb9059bef28b35c5a2ef492e165813e9754
6d1fd68e4554fb8bc17533aa70e1bcb624a81c3d
/src/blackfox/modules/scripting/lua/entities/components/physics/BFLuaScriptingPhysicsComponentEntities.cpp
482aacd4ce9fb67db355e4c53face33898934584
[ "MIT" ]
permissive
RLefrancoise/BlackFox
c3a303c734ae804baeeaa70d2c791bb442e5bba6
7814c58dca5c11cb9a80f42d4ed5f43ea7745875
refs/heads/master
2021-07-06T18:31:04.224033
2020-12-02T00:06:31
2020-12-02T00:06:31
220,683,087
3
0
null
null
null
null
UTF-8
C++
false
false
2,142
cpp
#include "BFLuaScriptingPhysicsComponentEntities.h" #include <sol/property.hpp> #include "BFBoxColliderComponent.h" #include "BFCircleColliderComponent.h" #include "BFRadian.h" #include "BFDegree.h" #include "BFRigidBodyComponent.h" #include "BFPhysicsSystem.h" BF_SCRIPTING_LUA_ENTITY_REGISTER(BlackFox::BFLuaScriptingPhysicsComponentEntities, "PhysicsComponents") using namespace BlackFox::Components; namespace BlackFox { void BFLuaScriptingPhysicsComponentEntities::registerEntity() { //Rigid body auto rb_t = registerType<BFRigidBodyComponent>(); auto bodyType_t = m_namespace["Physics"].get_or_create<sol::table>().new_usertype<b2BodyType>("BodyType"); bodyType_t["Static"] = sol::var(b2_staticBody); bodyType_t["Kinematic"] = sol::var(b2_kinematicBody); bodyType_t["Dynamic"] = sol::var(b2_dynamicBody); rb_t["type"] = &BFRigidBodyComponent::type; rb_t["linearVelocity"] = &BFRigidBodyComponent::linearVelocity; rb_t["angularVelocity"] = &BFRigidBodyComponent::angularVelocity; rb_t["linearDamping"] = &BFRigidBodyComponent::linearDamping; rb_t["angularDamping"] = &BFRigidBodyComponent::angularDamping; rb_t["bullet"] = &BFRigidBodyComponent::bullet; //Collider auto componentsNamespace = componentNamespace(); auto col_t = componentsNamespace.new_usertype<BFColliderComponent>( "Collider", sol::base_classes, sol::bases<IBFComponent>()); col_t["friction"] = &BFColliderComponent::friction; col_t["restitution"] = &BFColliderComponent::restitution; col_t["density"] = &BFColliderComponent::density; col_t["isSensor"] = &BFColliderComponent::isSensor; col_t["filter"] = &BFColliderComponent::filter; //Box collider auto box_t = registerType<BFBoxColliderComponent, BFColliderComponent>(); box_t["extents"] = &BFBoxColliderComponent::extents; box_t["center"] = &BFBoxColliderComponent::center; //Circle collider auto circle_t = registerType<BFCircleColliderComponent, BFColliderComponent>(); circle_t["radius"] = &BFCircleColliderComponent::radius; } std::string BFLuaScriptingPhysicsComponentEntities::namespaceName() const { return "Physics"; } }
[ "renaud.lefrancoise@gmail.com" ]
renaud.lefrancoise@gmail.com
85304bffdb6b8a8e49d5ad8d68daab07d554c29d
2e5c75f3a893ae04b5054cecb73dbe929c8cd7c8
/src/pctool/Anyka IP Camera/Anyka IP Camera/Anyka IP Camera/Aimer39RTSPClient.h
b3c5fe91e8ffe547b0ba662e9327ec498da066b3
[]
no_license
amartol/videorec
385192b1aca0acc42c24c700b93f4b0bc28a483f
a0b2372b27552c6326218799668d773f175cda6b
refs/heads/master
2022-12-05T01:09:31.291281
2020-08-25T08:39:26
2020-08-25T08:39:26
72,375,362
5
0
null
null
null
null
UTF-8
C++
false
false
7,850
h
#pragma once #include <liveMedia.hh> #include <BasicUsageEnvironment.hh> #include <string> #include <vector> #include "ThreadBase.h" #include "AutoLock.h" #include "InterfaceClass.h" #include "Clock.h" using namespace std; class CAimer39RTSPClient; typedef enum StreamType_en { STREAM_UNKNOWN = -1, STREAM_AUDIO = 0, STREAM_VIDEO, STREAM_TYPE_CNT }STREAM_TYPE, *PSTREAM_TYPE; class StreamClientState { public: StreamClientState(); virtual ~StreamClientState(); public: MediaSubsessionIterator* iter; MediaSession* session; MediaSubsession* subsession; TaskToken streamTimerTask; double duration; }; // If you're streaming just a single stream (i.e., just from a single URL, once), then you can define and use just a single // "StreamClientState" structure, as a global variable in your application. However, because - in this demo application - we're // showing how to play multiple streams, concurrently, we can't do that. Instead, we have to have a separate "StreamClientState" // structure for each "RTSPClient". To do this, we subclass "RTSPClient", and add a "StreamClientState" field to the subclass: class ourRTSPClient: public RTSPClient { public: static ourRTSPClient* createNew(UsageEnvironment& env, char const* rtspURL, int verbosityLevel = 0, char const* applicationName = NULL, portNumBits tunnelOverHTTPPortNum = 0); protected: ourRTSPClient(UsageEnvironment& env, char const* rtspURL, int verbosityLevel, char const* applicationName, portNumBits tunnelOverHTTPPortNum); // called only by createNew(); virtual ~ourRTSPClient(); public: StreamClientState scs; }; // Define a data sink (a subclass of "MediaSink") to receive the data for each subsession (i.e., each audio or video 'substream'). // In practice, this might be a class (or a chain of classes) that decodes and then renders the incoming audio or video. // Or it might be a "FileSink", for outputting the received data into a file (as is done by the "openRTSP" application). // In this example code, however, we define a simple 'dummy' sink that receives incoming data, but does nothing with it. class DummySink: public MediaSink { public: static DummySink* createNew(UsageEnvironment& env, MediaSubsession& subsession, // identifies the kind of data that's being received CAimer39RTSPClient * AimerClient, char const* streamId = NULL); // identifies the stream itself (optional) void play(); void pause(); private: DummySink(UsageEnvironment& env, MediaSubsession& subsession, CAimer39RTSPClient * AimerClient, char const* streamId); // called only by "createNew()" virtual ~DummySink(); static void afterGettingFrame(void* clientData, unsigned frameSize, unsigned numTruncatedBytes, struct timeval presentationTime, unsigned durationInMicroseconds); void afterGettingFrame(unsigned frameSize, unsigned numTruncatedBytes, struct timeval presentationTime, unsigned durationInMicroseconds); void calcNPTandInform(); private: // redefined virtual functions: virtual Boolean continuePlaying(); private: u_int8_t* fReceiveBuffer; MediaSubsession& fSubsession; CAimer39RTSPClient * fAimerClient; double fLassNPT; char* fStreamId; Boolean fIsPause; struct timeval fSyncTime; u_int32_t fSyncTimestamp; }; typedef unsigned char BYTE; typedef unsigned char * PBYTE; typedef void (__stdcall *CLIENTCALLBACK)(void * pLParam, void * pRParam); typedef void (__stdcall *STARTPLAYCB)(double duration, double startDuration, void * pLParam, void * pRParam); typedef void (__stdcall *PLAYNPTCB)(double sNPT, const char * mediumName, void * pLParam, void * pRParam); class CAimer39RTSPClient : protected CThreadBase { public: static CAimer39RTSPClient * CreateNew(); virtual ~CAimer39RTSPClient(void); uint64_t GetID(); /* open the rtsp url eg: rtsp://192.168.x.x/WebCamera720p */ int OpenURL( const char * strURL ); int Close(); int GetURL(string & strURL); /* Is our client connect server success @ret if return 0 success, otherwise the error code identifier, hint why failed to connect server. you can use GetLastError to receive the error string message. */ int IsPrepare( bool & bIsPrepare ); const char * GetLastError(); int Play(); int StartPlay(double dDuration); int PausePlay(); int StopPlay(); /* get net bits rate per second */ double GetBitsRate(); double GetBitsRatePerSec(); /* get this client received how many stream from server */ int GetStreamCount( unsigned int & nStreamCnt ); /* get stream is type @arg nStreamNum[in] the stream number @arg pType[out] the type of stream */ int GetStreamType( unsigned int nStreamNum, STREAM_TYPE & Type ); int GetVideoHeight( unsigned int nStreamNum ); int GetVideoWidth( unsigned int nStreamNum ); int GetVideoFPS( unsigned int nStreamNum ); int NoNeedStream( unsigned int nStreamNum ); /* register the data sink @arg type[in] this sink will receive what type of stream @arg pISink[in] the sink interface point */ int RegisterSink( STREAM_TYPE type, IDataSink * pISink ); int UnregisterSink( IDataSink * pISink ); void RegisterFinishCallback(CLIENTCALLBACK pCallback, void * pParam) { m_pFinishCallback = pCallback; m_pCallBackParam = pParam; } void RegisterDisConnCallback(CLIENTCALLBACK pCallback, void * pParam, int nDisConnLimmitMSec = -1) { m_pDisConnCallback = pCallback; m_pDCCallBackParam = pParam; m_nDisConnLimmtMSec = nDisConnLimmitMSec; } void RegistrerStartPlayCallback(STARTPLAYCB pCallback, void * pParam) { m_pStartPlayCB = pCallback; m_pStartPlayCBP = pParam; } void RegistrerPlayNPTCallback(PLAYNPTCB pCallback, void * pParam, double dUpdateInterval) { m_pPlayNPTCB = pCallback; m_pPlayNPTCBP = pParam; m_dNPTInformInterval = dUpdateInterval; } private: static CAimer39RTSPClient * findClient( ourRTSPClient * pkey ); static void continueAfterDESCRIBE(RTSPClient* rtspClient, int resultCode, char* resultString); static void continueAfterSETUP(RTSPClient* rtspClient, int resultCode, char* resultString); static void continueAfterPLAY(RTSPClient* rtspClient, int resultCode, char* resultString); static void setupNextSubsession(RTSPClient* rtspClient); static void shutdownStream( RTSPClient* rtspClient ); static void subsessionAfterPlaying(void* clientData); static void subsessionByeHandler(void* clientData); static void streamTimerHandler(void* clientData); MediaSubsession * findSubSessionByStreamNum( unsigned int nStreamNum ); void CalcBitsRatePerSec(); protected: CAimer39RTSPClient(void); virtual void Run(); private: friend class DummySink; char m_eventLoopWatchVariable; bool m_bIsPrepare, m_bIsPlay, m_bIsShutDown; int m_errorCode; uint64_t m_nRecvBytes, m_nRecvVideoBytes, m_nLastMsSinceStart, m_nRecvBytesSec, m_nID; string m_rtspURL; string m_lastErrorMsg; CLIENTCALLBACK m_pFinishCallback; void * m_pCallBackParam; CLIENTCALLBACK m_pDisConnCallback; void * m_pDCCallBackParam; int m_nDisConnLimmtMSec; STARTPLAYCB m_pStartPlayCB; void * m_pStartPlayCBP; PLAYNPTCB m_pPlayNPTCB; void * m_pPlayNPTCBP; double m_dNPTInformInterval; double m_dBitsRatePerSec; ourRTSPClient * m_pRTSPClient; TaskScheduler * m_Scheduler; UsageEnvironment * m_Env; vector<IDataSink *> m_aVecDataSink[STREAM_TYPE_CNT]; vector<MediaSubsession *> m_vecNoNeedStream; CriticalSection m_cs; CClock m_StaticClock; static uint64_t m_nCount; static CriticalSection m_cs4Create; static vector<CAimer39RTSPClient *> vecAllClient; };
[ "li.bin@lamobo.org" ]
li.bin@lamobo.org
eae5869694fb1a688fb6946dff2edb56cd70bbcf
500d9a3048560023bd989dbf5d770e0b8abf224d
/BZOJ/2754 喵星球上的点名/2754.cpp
e54efab36e995da2d4eb1f539a5232ac1a7af5b9
[]
no_license
hilbertanjou/OJ
2138bd349607adebd7674861e00dad57a23724bd
641f412d904edd66e97befdabcc32b7076729a53
refs/heads/master
2020-12-30T23:33:13.961562
2013-08-23T09:44:49
2013-08-23T09:44:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,857
cpp
#include <cctype> #include <cstdio> #include <map> using namespace std; typedef map<int, int> MII; typedef MII::iterator MIT; const int MAXL = 111111, MAXN = 22222, MAXM = 55555, MAXB = 3333333; char buf[MAXB], *h = buf; int a[MAXL << 1], g[MAXL], v[MAXL], p[MAXL], q[MAXL], f[MAXL], s[MAXN], id[MAXM]; MII nxt[MAXL]; inline int getint() { for (; !isdigit(*h); ++h); int ret = *h++ - 48; for (; isdigit(*h); (ret *= 10) += *h++ - 48); return ret; } int main() { fread(buf, 1, MAXB - 10, stdin); int n = getint(), m = getint(), tot = 0, r = -1; for (int i = 1, j = -1; i <= n; ++i) for (int d = 0; d < 2; ++d) for (int k = a[++j] = getint(); k--; ) a[++j] = getint(); for (int i = 0; i < m; ++i) { int &x = id[i]; for (int c, k = getint(); k--; x = nxt[x][c]) if (!nxt[x][c = getint()]) nxt[x][c] = ++tot; ++g[x]; } for (MIT it = nxt[0].begin(); it != nxt[0].end(); ++it) q[++r] = it->second; for (int l = 0; l <= r; ++l) for (MIT it = nxt[q[l]].begin(); it != nxt[q[l]].end(); ++it) { q[++r] = it->second; int x = p[q[l]]; for (; x && !nxt[x][it->first]; x = p[x]); p[q[r]] = nxt[x][it->first]; } for (int i = 1, j = 0; i <= n; ++i) for (int d = 0; d < 2; ++d) for (int k = a[j++], x = 0; k--; ++j) { for (; x && !nxt[x][a[j]]; x = p[x]); for (int t = x = nxt[x][a[j]]; t && v[t] != i; t = p[t]) { v[t] = i; s[i] += g[t]; ++f[t]; } } for (int i = 0; i < m; ++i) printf("%d\n", f[id[i]]); for (int i = 1; i < n; ++i) printf("%d ", s[i]); printf("%d\n", s[n]); return 0; }
[ "xy_xuyi@foxmail.com" ]
xy_xuyi@foxmail.com
ceed3a245adf3f72beaf21f1c87ae2ba6ac7effe
60f5e2e60f725f4d0bfdda68974c942030021fb2
/codechef/UPSOLVE/COCONUTS.cpp
049155e055c89b62498a9dab89e55a98341899b5
[]
no_license
i-64/Competitive-Programming
3887080a40b8c4c4f31390ac1c61e04f3b27de0d
43d65120bd94fdb10dd45c323fe445ae775e6408
refs/heads/master
2020-09-12T08:42:18.304339
2019-11-19T05:44:03
2019-11-19T05:44:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
269
cpp
#include <bits/stdc++.h> using namespace std; int main () { int t; cin >> t; while (t--) { int n; cin >> n; rep(i, 0, n) { cin >> arr[i]; } sort(arr, arr + n); rep (i, 0, n) { } } return 0; } sum(0, z-1) + (n-z) * arr[z-1]
[ "mrunal.ahire@gmail.com" ]
mrunal.ahire@gmail.com
245fbd315745fbf71d44f9657138a8fe0a0fa798
9f3d0c4d6a88bd36a264ddac1de9a8ac2fe0e974
/winrt/impl/Windows.Security.Cryptography.Certificates.0.h
d5553ce4b5b278a9ce7af13f050d9338bf35726b
[ "MIT" ]
permissive
mthiesen/xbocontroller-winapi
6ee4c7825b2dd266ae5251a6a7f537b1752a78f9
b4a1e053476f200877bcfaeb564c59cd024a697b
refs/heads/master
2021-01-06T19:27:59.055634
2020-02-20T20:11:08
2020-02-20T20:11:25
241,458,019
0
0
null
null
null
null
UTF-8
C++
false
false
105,747
h
// WARNING: Please don't edit this file. It was generated by C++/WinRT v2.3.4.5 #ifndef WINRT_Windows_Security_Cryptography_Certificates_0_H #define WINRT_Windows_Security_Cryptography_Certificates_0_H WINRT_EXPORT namespace winrt::Windows::Foundation { struct IAsyncAction; template <typename TResult> struct IAsyncOperation; } WINRT_EXPORT namespace winrt::Windows::Foundation::Collections { template <typename T> struct IIterable; template <typename T> struct IVectorView; template <typename T> struct IVector; } WINRT_EXPORT namespace winrt::Windows::Networking { struct HostName; } WINRT_EXPORT namespace winrt::Windows::Storage::Streams { struct IBuffer; struct IInputStream; } WINRT_EXPORT namespace winrt::Windows::Security::Cryptography::Certificates { enum class CertificateChainPolicy : int32_t { Base = 0, Ssl = 1, NTAuthentication = 2, MicrosoftRoot = 3, }; enum class ChainValidationResult : int32_t { Success = 0, Untrusted = 1, Revoked = 2, Expired = 3, IncompleteChain = 4, InvalidSignature = 5, WrongUsage = 6, InvalidName = 7, InvalidCertificateAuthorityPolicy = 8, BasicConstraintsError = 9, UnknownCriticalExtension = 10, RevocationInformationMissing = 11, RevocationFailure = 12, OtherErrors = 13, }; enum class EnrollKeyUsages : uint32_t { None = 0, Decryption = 0x1, Signing = 0x2, KeyAgreement = 0x4, All = 0xffffff, }; enum class ExportOption : int32_t { NotExportable = 0, Exportable = 1, }; enum class InstallOptions : uint32_t { None = 0, DeleteExpired = 0x1, }; enum class KeyProtectionLevel : int32_t { NoConsent = 0, ConsentOnly = 1, ConsentWithPassword = 2, ConsentWithFingerprint = 3, }; enum class KeySize : int32_t { Invalid = 0, Rsa2048 = 2048, Rsa4096 = 4096, }; enum class SignatureValidationResult : int32_t { Success = 0, InvalidParameter = 1, BadMessage = 2, InvalidSignature = 3, OtherErrors = 4, }; struct ICertificate; struct ICertificate2; struct ICertificate3; struct ICertificateChain; struct ICertificateEnrollmentManagerStatics; struct ICertificateEnrollmentManagerStatics2; struct ICertificateEnrollmentManagerStatics3; struct ICertificateExtension; struct ICertificateFactory; struct ICertificateKeyUsages; struct ICertificateQuery; struct ICertificateQuery2; struct ICertificateRequestProperties; struct ICertificateRequestProperties2; struct ICertificateRequestProperties3; struct ICertificateRequestProperties4; struct ICertificateStore; struct ICertificateStore2; struct ICertificateStoresStatics; struct ICertificateStoresStatics2; struct IChainBuildingParameters; struct IChainValidationParameters; struct ICmsAttachedSignature; struct ICmsAttachedSignatureFactory; struct ICmsAttachedSignatureStatics; struct ICmsDetachedSignature; struct ICmsDetachedSignatureFactory; struct ICmsDetachedSignatureStatics; struct ICmsSignerInfo; struct ICmsTimestampInfo; struct IKeyAlgorithmNamesStatics; struct IKeyAlgorithmNamesStatics2; struct IKeyAttestationHelperStatics; struct IKeyAttestationHelperStatics2; struct IKeyStorageProviderNamesStatics; struct IKeyStorageProviderNamesStatics2; struct IPfxImportParameters; struct IStandardCertificateStoreNamesStatics; struct ISubjectAlternativeNameInfo; struct ISubjectAlternativeNameInfo2; struct IUserCertificateEnrollmentManager; struct IUserCertificateEnrollmentManager2; struct IUserCertificateStore; struct Certificate; struct CertificateChain; struct CertificateEnrollmentManager; struct CertificateExtension; struct CertificateKeyUsages; struct CertificateQuery; struct CertificateRequestProperties; struct CertificateStore; struct CertificateStores; struct ChainBuildingParameters; struct ChainValidationParameters; struct CmsAttachedSignature; struct CmsDetachedSignature; struct CmsSignerInfo; struct CmsTimestampInfo; struct KeyAlgorithmNames; struct KeyAttestationHelper; struct KeyStorageProviderNames; struct PfxImportParameters; struct StandardCertificateStoreNames; struct SubjectAlternativeNameInfo; struct UserCertificateEnrollmentManager; struct UserCertificateStore; } namespace winrt::impl { template <> struct category<Windows::Security::Cryptography::Certificates::ICertificate>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificate2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificate3>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateChain>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics3>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateExtension>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateFactory>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateKeyUsages>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateQuery>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateQuery2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties3>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties4>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateStore>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateStore2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IChainBuildingParameters>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IChainValidationParameters>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsAttachedSignature>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureFactory>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsDetachedSignature>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureFactory>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsSignerInfo>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ICmsTimestampInfo>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IPfxImportParameters>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IStandardCertificateStoreNamesStatics>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager2>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::IUserCertificateStore>{ using type = interface_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::Certificate>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateChain>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateEnrollmentManager>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateExtension>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateKeyUsages>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateQuery>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateRequestProperties>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateStore>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateStores>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ChainBuildingParameters>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ChainValidationParameters>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CmsAttachedSignature>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CmsDetachedSignature>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CmsSignerInfo>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CmsTimestampInfo>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::KeyAlgorithmNames>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::KeyAttestationHelper>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::KeyStorageProviderNames>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::PfxImportParameters>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::StandardCertificateStoreNames>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::SubjectAlternativeNameInfo>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::UserCertificateEnrollmentManager>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::UserCertificateStore>{ using type = class_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::CertificateChainPolicy>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ChainValidationResult>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::EnrollKeyUsages>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::ExportOption>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::InstallOptions>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::KeyProtectionLevel>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::KeySize>{ using type = enum_category; }; template <> struct category<Windows::Security::Cryptography::Certificates::SignatureValidationResult>{ using type = enum_category; }; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::Certificate> = L"Windows.Security.Cryptography.Certificates.Certificate"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateChain> = L"Windows.Security.Cryptography.Certificates.CertificateChain"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateEnrollmentManager> = L"Windows.Security.Cryptography.Certificates.CertificateEnrollmentManager"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateExtension> = L"Windows.Security.Cryptography.Certificates.CertificateExtension"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateKeyUsages> = L"Windows.Security.Cryptography.Certificates.CertificateKeyUsages"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateQuery> = L"Windows.Security.Cryptography.Certificates.CertificateQuery"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateRequestProperties> = L"Windows.Security.Cryptography.Certificates.CertificateRequestProperties"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateStore> = L"Windows.Security.Cryptography.Certificates.CertificateStore"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateStores> = L"Windows.Security.Cryptography.Certificates.CertificateStores"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ChainBuildingParameters> = L"Windows.Security.Cryptography.Certificates.ChainBuildingParameters"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ChainValidationParameters> = L"Windows.Security.Cryptography.Certificates.ChainValidationParameters"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CmsAttachedSignature> = L"Windows.Security.Cryptography.Certificates.CmsAttachedSignature"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CmsDetachedSignature> = L"Windows.Security.Cryptography.Certificates.CmsDetachedSignature"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CmsSignerInfo> = L"Windows.Security.Cryptography.Certificates.CmsSignerInfo"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CmsTimestampInfo> = L"Windows.Security.Cryptography.Certificates.CmsTimestampInfo"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::KeyAlgorithmNames> = L"Windows.Security.Cryptography.Certificates.KeyAlgorithmNames"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::KeyAttestationHelper> = L"Windows.Security.Cryptography.Certificates.KeyAttestationHelper"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::KeyStorageProviderNames> = L"Windows.Security.Cryptography.Certificates.KeyStorageProviderNames"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::PfxImportParameters> = L"Windows.Security.Cryptography.Certificates.PfxImportParameters"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::StandardCertificateStoreNames> = L"Windows.Security.Cryptography.Certificates.StandardCertificateStoreNames"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::SubjectAlternativeNameInfo> = L"Windows.Security.Cryptography.Certificates.SubjectAlternativeNameInfo"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::UserCertificateEnrollmentManager> = L"Windows.Security.Cryptography.Certificates.UserCertificateEnrollmentManager"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::UserCertificateStore> = L"Windows.Security.Cryptography.Certificates.UserCertificateStore"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::CertificateChainPolicy> = L"Windows.Security.Cryptography.Certificates.CertificateChainPolicy"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ChainValidationResult> = L"Windows.Security.Cryptography.Certificates.ChainValidationResult"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::EnrollKeyUsages> = L"Windows.Security.Cryptography.Certificates.EnrollKeyUsages"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ExportOption> = L"Windows.Security.Cryptography.Certificates.ExportOption"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::InstallOptions> = L"Windows.Security.Cryptography.Certificates.InstallOptions"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::KeyProtectionLevel> = L"Windows.Security.Cryptography.Certificates.KeyProtectionLevel"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::KeySize> = L"Windows.Security.Cryptography.Certificates.KeySize"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::SignatureValidationResult> = L"Windows.Security.Cryptography.Certificates.SignatureValidationResult"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificate> = L"Windows.Security.Cryptography.Certificates.ICertificate"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificate2> = L"Windows.Security.Cryptography.Certificates.ICertificate2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificate3> = L"Windows.Security.Cryptography.Certificates.ICertificate3"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateChain> = L"Windows.Security.Cryptography.Certificates.ICertificateChain"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics> = L"Windows.Security.Cryptography.Certificates.ICertificateEnrollmentManagerStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics2> = L"Windows.Security.Cryptography.Certificates.ICertificateEnrollmentManagerStatics2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics3> = L"Windows.Security.Cryptography.Certificates.ICertificateEnrollmentManagerStatics3"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateExtension> = L"Windows.Security.Cryptography.Certificates.ICertificateExtension"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateFactory> = L"Windows.Security.Cryptography.Certificates.ICertificateFactory"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateKeyUsages> = L"Windows.Security.Cryptography.Certificates.ICertificateKeyUsages"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateQuery> = L"Windows.Security.Cryptography.Certificates.ICertificateQuery"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateQuery2> = L"Windows.Security.Cryptography.Certificates.ICertificateQuery2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties> = L"Windows.Security.Cryptography.Certificates.ICertificateRequestProperties"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties2> = L"Windows.Security.Cryptography.Certificates.ICertificateRequestProperties2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties3> = L"Windows.Security.Cryptography.Certificates.ICertificateRequestProperties3"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties4> = L"Windows.Security.Cryptography.Certificates.ICertificateRequestProperties4"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateStore> = L"Windows.Security.Cryptography.Certificates.ICertificateStore"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateStore2> = L"Windows.Security.Cryptography.Certificates.ICertificateStore2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics> = L"Windows.Security.Cryptography.Certificates.ICertificateStoresStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics2> = L"Windows.Security.Cryptography.Certificates.ICertificateStoresStatics2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IChainBuildingParameters> = L"Windows.Security.Cryptography.Certificates.IChainBuildingParameters"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IChainValidationParameters> = L"Windows.Security.Cryptography.Certificates.IChainValidationParameters"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsAttachedSignature> = L"Windows.Security.Cryptography.Certificates.ICmsAttachedSignature"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureFactory> = L"Windows.Security.Cryptography.Certificates.ICmsAttachedSignatureFactory"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureStatics> = L"Windows.Security.Cryptography.Certificates.ICmsAttachedSignatureStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsDetachedSignature> = L"Windows.Security.Cryptography.Certificates.ICmsDetachedSignature"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureFactory> = L"Windows.Security.Cryptography.Certificates.ICmsDetachedSignatureFactory"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureStatics> = L"Windows.Security.Cryptography.Certificates.ICmsDetachedSignatureStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsSignerInfo> = L"Windows.Security.Cryptography.Certificates.ICmsSignerInfo"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ICmsTimestampInfo> = L"Windows.Security.Cryptography.Certificates.ICmsTimestampInfo"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics> = L"Windows.Security.Cryptography.Certificates.IKeyAlgorithmNamesStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics2> = L"Windows.Security.Cryptography.Certificates.IKeyAlgorithmNamesStatics2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics> = L"Windows.Security.Cryptography.Certificates.IKeyAttestationHelperStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics2> = L"Windows.Security.Cryptography.Certificates.IKeyAttestationHelperStatics2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics> = L"Windows.Security.Cryptography.Certificates.IKeyStorageProviderNamesStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics2> = L"Windows.Security.Cryptography.Certificates.IKeyStorageProviderNamesStatics2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IPfxImportParameters> = L"Windows.Security.Cryptography.Certificates.IPfxImportParameters"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IStandardCertificateStoreNamesStatics> = L"Windows.Security.Cryptography.Certificates.IStandardCertificateStoreNamesStatics"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo> = L"Windows.Security.Cryptography.Certificates.ISubjectAlternativeNameInfo"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo2> = L"Windows.Security.Cryptography.Certificates.ISubjectAlternativeNameInfo2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager> = L"Windows.Security.Cryptography.Certificates.IUserCertificateEnrollmentManager"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager2> = L"Windows.Security.Cryptography.Certificates.IUserCertificateEnrollmentManager2"; template <> inline constexpr auto& name_v<Windows::Security::Cryptography::Certificates::IUserCertificateStore> = L"Windows.Security.Cryptography.Certificates.IUserCertificateStore"; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificate>{ 0x333F740C,0x04D8,0x43B3,{ 0xB2,0x78,0x8C,0x5F,0xCC,0x9B,0xE5,0xA0 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificate2>{ 0x17B8374C,0x8A25,0x4D96,{ 0xA4,0x92,0x8F,0xC2,0x9A,0xC4,0xFD,0xA6 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificate3>{ 0xBE51A966,0xAE5F,0x4652,{ 0xAC,0xE7,0xC6,0xD7,0xE7,0x72,0x4C,0xF3 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateChain>{ 0x20BF5385,0x3691,0x4501,{ 0xA6,0x2C,0xFD,0x97,0x27,0x8B,0x31,0xEE } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics>{ 0x8846EF3F,0xA986,0x48FB,{ 0x9F,0xD7,0x9A,0xEC,0x06,0x93,0x5B,0xF1 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics2>{ 0xDC5B1C33,0x6429,0x4014,{ 0x99,0x9C,0x5D,0x97,0x35,0x80,0x2D,0x1D } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics3>{ 0xFDEC82BE,0x617C,0x425A,{ 0xB7,0x2D,0x39,0x8B,0x26,0xAC,0x72,0x64 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateExtension>{ 0x84CF0656,0xA9E6,0x454D,{ 0x8E,0x45,0x2E,0xA7,0xC4,0xBC,0xD5,0x3B } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateFactory>{ 0x17B4221C,0x4BAF,0x44A2,{ 0x96,0x08,0x04,0xFB,0x62,0xB1,0x69,0x42 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateKeyUsages>{ 0x6AC6206F,0xE1CF,0x486A,{ 0xB4,0x85,0xA6,0x9C,0x83,0xE4,0x6F,0xD1 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateQuery>{ 0x5B082A31,0xA728,0x4916,{ 0xB5,0xEE,0xFF,0xCB,0x8A,0xCF,0x24,0x17 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateQuery2>{ 0x935A0AF7,0x0BD9,0x4F75,{ 0xB8,0xC2,0xE2,0x7A,0x7F,0x74,0xEE,0xCD } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties>{ 0x487E84F6,0x94E2,0x4DCE,{ 0x88,0x33,0x1A,0x70,0x0A,0x37,0xA2,0x9A } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties2>{ 0x3DA0C954,0xD73F,0x4FF3,{ 0xA0,0xA6,0x06,0x77,0xC0,0xAD,0xA0,0x5B } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties3>{ 0xE687F616,0x734D,0x46B1,{ 0x9D,0x4C,0x6E,0xDF,0xDB,0xFC,0x84,0x5B } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties4>{ 0x4E429AD2,0x1C61,0x4FEA,{ 0xB8,0xFE,0x13,0x5F,0xB1,0x9C,0xDC,0xE4 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateStore>{ 0xB0BFF720,0x344E,0x4331,{ 0xAF,0x14,0xA7,0xF7,0xA7,0xEB,0xC9,0x3A } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateStore2>{ 0xC7E68E4A,0x417D,0x4D1A,{ 0xBA,0xBD,0x15,0x68,0x7E,0x54,0x99,0x74 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics>{ 0xFBECC739,0xC6FE,0x4DE7,{ 0x99,0xCF,0x74,0xC3,0xE5,0x96,0xE0,0x32 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics2>{ 0xFA900B79,0xA0D4,0x4B8C,{ 0xBC,0x55,0xC0,0xA3,0x7E,0xB1,0x41,0xED } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IChainBuildingParameters>{ 0x422BA922,0x7C8D,0x47B7,{ 0xB5,0x9B,0xB1,0x27,0x03,0x73,0x3A,0xC3 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IChainValidationParameters>{ 0xC4743B4A,0x7EB0,0x4B56,{ 0xA0,0x40,0xB9,0xC8,0xE6,0x55,0xDD,0xF3 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsAttachedSignature>{ 0x61899D9D,0x3757,0x4ECB,{ 0xBD,0xDC,0x0C,0xA3,0x57,0xD7,0xA9,0x36 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureFactory>{ 0xD0C8FC15,0xF757,0x4C64,{ 0xA3,0x62,0x52,0xCC,0x1C,0x77,0xCF,0xFB } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureStatics>{ 0x87989C8E,0xB0AD,0x498D,{ 0xA7,0xF5,0x78,0xB5,0x9B,0xCE,0x4B,0x36 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsDetachedSignature>{ 0x0F1EF154,0xF65E,0x4536,{ 0x83,0x39,0x59,0x44,0x08,0x1D,0xB2,0xCA } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureFactory>{ 0xC4AB3503,0xAE7F,0x4387,{ 0xAD,0x19,0x00,0xF1,0x50,0xE4,0x8E,0xBB } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureStatics>{ 0x3D114CFD,0xBF9B,0x4682,{ 0x9B,0xE6,0x91,0xF5,0x7C,0x05,0x38,0x08 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsSignerInfo>{ 0x50D020DB,0x1D2F,0x4C1A,{ 0xB5,0xC5,0xD0,0x18,0x8F,0xF9,0x1F,0x47 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ICmsTimestampInfo>{ 0x2F5F00F2,0x2C18,0x4F88,{ 0x84,0x35,0xC5,0x34,0x08,0x60,0x76,0xF5 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics>{ 0x479065D7,0x7AC7,0x4581,{ 0x8C,0x3B,0xD0,0x70,0x27,0x14,0x04,0x48 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics2>{ 0xC99B5686,0xE1FD,0x4A4A,{ 0x89,0x3D,0xA2,0x6F,0x33,0xDD,0x8B,0xB4 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics>{ 0x1648E246,0xF644,0x4326,{ 0x88,0xBE,0x3A,0xF1,0x02,0xD3,0x0E,0x0C } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics2>{ 0x9C590B2C,0xA6C6,0x4A5E,{ 0x9E,0x64,0xE8,0x5D,0x52,0x79,0xDF,0x97 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics>{ 0xAF186AE0,0x5529,0x4602,{ 0xBD,0x94,0x0A,0xAB,0x91,0x95,0x7B,0x5C } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics2>{ 0x262D743D,0x9C2E,0x41CC,{ 0x88,0x12,0xC4,0xD9,0x71,0xDD,0x7C,0x60 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IPfxImportParameters>{ 0x680D3511,0x9A08,0x47C8,{ 0x86,0x4A,0x2E,0xDD,0x4D,0x8E,0xB4,0x6C } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IStandardCertificateStoreNamesStatics>{ 0x0C154ADB,0xA496,0x41F8,{ 0x8F,0xE5,0x9E,0x96,0xF3,0x6E,0xFB,0xF8 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo>{ 0x582859F1,0x569D,0x4C20,{ 0xBE,0x7B,0x4E,0x1C,0x9A,0x0B,0xC5,0x2B } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo2>{ 0x437A78C6,0x1C51,0x41EA,{ 0xB3,0x4A,0x3D,0x65,0x43,0x98,0xA3,0x70 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager>{ 0x96313718,0x22E1,0x4819,{ 0xB2,0x0B,0xAB,0x46,0xA6,0xEC,0xA0,0x6E } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager2>{ 0x0DAD9CB1,0x65DE,0x492A,{ 0xB8,0x6D,0xFC,0x5C,0x48,0x2C,0x37,0x47 } }; template <> inline constexpr guid guid_v<Windows::Security::Cryptography::Certificates::IUserCertificateStore>{ 0xC9FB1D83,0x789F,0x4B4E,{ 0x91,0x80,0x04,0x5A,0x75,0x7A,0xAC,0x6D } }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::Certificate>{ using type = Windows::Security::Cryptography::Certificates::ICertificate; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CertificateChain>{ using type = Windows::Security::Cryptography::Certificates::ICertificateChain; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CertificateExtension>{ using type = Windows::Security::Cryptography::Certificates::ICertificateExtension; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CertificateKeyUsages>{ using type = Windows::Security::Cryptography::Certificates::ICertificateKeyUsages; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CertificateQuery>{ using type = Windows::Security::Cryptography::Certificates::ICertificateQuery; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CertificateRequestProperties>{ using type = Windows::Security::Cryptography::Certificates::ICertificateRequestProperties; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CertificateStore>{ using type = Windows::Security::Cryptography::Certificates::ICertificateStore; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::ChainBuildingParameters>{ using type = Windows::Security::Cryptography::Certificates::IChainBuildingParameters; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::ChainValidationParameters>{ using type = Windows::Security::Cryptography::Certificates::IChainValidationParameters; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CmsAttachedSignature>{ using type = Windows::Security::Cryptography::Certificates::ICmsAttachedSignature; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CmsDetachedSignature>{ using type = Windows::Security::Cryptography::Certificates::ICmsDetachedSignature; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CmsSignerInfo>{ using type = Windows::Security::Cryptography::Certificates::ICmsSignerInfo; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::CmsTimestampInfo>{ using type = Windows::Security::Cryptography::Certificates::ICmsTimestampInfo; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::PfxImportParameters>{ using type = Windows::Security::Cryptography::Certificates::IPfxImportParameters; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::SubjectAlternativeNameInfo>{ using type = Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::UserCertificateEnrollmentManager>{ using type = Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager; }; template <> struct default_interface<Windows::Security::Cryptography::Certificates::UserCertificateStore>{ using type = Windows::Security::Cryptography::Certificates::IUserCertificateStore; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificate> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall BuildChainAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall BuildChainWithParametersAsync(void*, void*, void**) noexcept = 0; virtual int32_t __stdcall get_SerialNumber(uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall GetHashValue(uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall GetHashValueWithAlgorithm(void*, uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall GetCertificateBlob(void**) noexcept = 0; virtual int32_t __stdcall get_Subject(void**) noexcept = 0; virtual int32_t __stdcall get_Issuer(void**) noexcept = 0; virtual int32_t __stdcall get_HasPrivateKey(bool*) noexcept = 0; virtual int32_t __stdcall get_IsStronglyProtected(bool*) noexcept = 0; virtual int32_t __stdcall get_ValidFrom(int64_t*) noexcept = 0; virtual int32_t __stdcall get_ValidTo(int64_t*) noexcept = 0; virtual int32_t __stdcall get_EnhancedKeyUsages(void**) noexcept = 0; virtual int32_t __stdcall put_FriendlyName(void*) noexcept = 0; virtual int32_t __stdcall get_FriendlyName(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificate2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_IsSecurityDeviceBound(bool*) noexcept = 0; virtual int32_t __stdcall get_KeyUsages(void**) noexcept = 0; virtual int32_t __stdcall get_KeyAlgorithmName(void**) noexcept = 0; virtual int32_t __stdcall get_SignatureAlgorithmName(void**) noexcept = 0; virtual int32_t __stdcall get_SignatureHashAlgorithmName(void**) noexcept = 0; virtual int32_t __stdcall get_SubjectAlternativeName(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificate3> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_IsPerUser(bool*) noexcept = 0; virtual int32_t __stdcall get_StoreName(void**) noexcept = 0; virtual int32_t __stdcall get_KeyStorageProviderName(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateChain> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall Validate(int32_t*) noexcept = 0; virtual int32_t __stdcall ValidateWithParameters(void*, int32_t*) noexcept = 0; virtual int32_t __stdcall GetCertificates(bool, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall CreateRequestAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall InstallCertificateAsync(void*, uint32_t, void**) noexcept = 0; virtual int32_t __stdcall ImportPfxDataAsync(void*, void*, int32_t, int32_t, uint32_t, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_UserCertificateEnrollmentManager(void**) noexcept = 0; virtual int32_t __stdcall ImportPfxDataToKspAsync(void*, void*, int32_t, int32_t, uint32_t, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics3> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall ImportPfxDataToKspWithParametersAsync(void*, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateExtension> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_ObjectId(void**) noexcept = 0; virtual int32_t __stdcall put_ObjectId(void*) noexcept = 0; virtual int32_t __stdcall get_IsCritical(bool*) noexcept = 0; virtual int32_t __stdcall put_IsCritical(bool) noexcept = 0; virtual int32_t __stdcall EncodeValue(void*) noexcept = 0; virtual int32_t __stdcall get_Value(uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall put_Value(uint32_t, uint8_t*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateFactory> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall CreateCertificate(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateKeyUsages> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_EncipherOnly(bool*) noexcept = 0; virtual int32_t __stdcall put_EncipherOnly(bool) noexcept = 0; virtual int32_t __stdcall get_CrlSign(bool*) noexcept = 0; virtual int32_t __stdcall put_CrlSign(bool) noexcept = 0; virtual int32_t __stdcall get_KeyCertificateSign(bool*) noexcept = 0; virtual int32_t __stdcall put_KeyCertificateSign(bool) noexcept = 0; virtual int32_t __stdcall get_KeyAgreement(bool*) noexcept = 0; virtual int32_t __stdcall put_KeyAgreement(bool) noexcept = 0; virtual int32_t __stdcall get_DataEncipherment(bool*) noexcept = 0; virtual int32_t __stdcall put_DataEncipherment(bool) noexcept = 0; virtual int32_t __stdcall get_KeyEncipherment(bool*) noexcept = 0; virtual int32_t __stdcall put_KeyEncipherment(bool) noexcept = 0; virtual int32_t __stdcall get_NonRepudiation(bool*) noexcept = 0; virtual int32_t __stdcall put_NonRepudiation(bool) noexcept = 0; virtual int32_t __stdcall get_DigitalSignature(bool*) noexcept = 0; virtual int32_t __stdcall put_DigitalSignature(bool) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateQuery> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_EnhancedKeyUsages(void**) noexcept = 0; virtual int32_t __stdcall get_IssuerName(void**) noexcept = 0; virtual int32_t __stdcall put_IssuerName(void*) noexcept = 0; virtual int32_t __stdcall get_FriendlyName(void**) noexcept = 0; virtual int32_t __stdcall put_FriendlyName(void*) noexcept = 0; virtual int32_t __stdcall get_Thumbprint(uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall put_Thumbprint(uint32_t, uint8_t*) noexcept = 0; virtual int32_t __stdcall get_HardwareOnly(bool*) noexcept = 0; virtual int32_t __stdcall put_HardwareOnly(bool) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateQuery2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_IncludeDuplicates(bool*) noexcept = 0; virtual int32_t __stdcall put_IncludeDuplicates(bool) noexcept = 0; virtual int32_t __stdcall get_IncludeExpiredCertificates(bool*) noexcept = 0; virtual int32_t __stdcall put_IncludeExpiredCertificates(bool) noexcept = 0; virtual int32_t __stdcall get_StoreName(void**) noexcept = 0; virtual int32_t __stdcall put_StoreName(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Subject(void**) noexcept = 0; virtual int32_t __stdcall put_Subject(void*) noexcept = 0; virtual int32_t __stdcall get_KeyAlgorithmName(void**) noexcept = 0; virtual int32_t __stdcall put_KeyAlgorithmName(void*) noexcept = 0; virtual int32_t __stdcall get_KeySize(uint32_t*) noexcept = 0; virtual int32_t __stdcall put_KeySize(uint32_t) noexcept = 0; virtual int32_t __stdcall get_FriendlyName(void**) noexcept = 0; virtual int32_t __stdcall put_FriendlyName(void*) noexcept = 0; virtual int32_t __stdcall get_HashAlgorithmName(void**) noexcept = 0; virtual int32_t __stdcall put_HashAlgorithmName(void*) noexcept = 0; virtual int32_t __stdcall get_Exportable(int32_t*) noexcept = 0; virtual int32_t __stdcall put_Exportable(int32_t) noexcept = 0; virtual int32_t __stdcall get_KeyUsages(uint32_t*) noexcept = 0; virtual int32_t __stdcall put_KeyUsages(uint32_t) noexcept = 0; virtual int32_t __stdcall get_KeyProtectionLevel(int32_t*) noexcept = 0; virtual int32_t __stdcall put_KeyProtectionLevel(int32_t) noexcept = 0; virtual int32_t __stdcall get_KeyStorageProviderName(void**) noexcept = 0; virtual int32_t __stdcall put_KeyStorageProviderName(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_SmartcardReaderName(void**) noexcept = 0; virtual int32_t __stdcall put_SmartcardReaderName(void*) noexcept = 0; virtual int32_t __stdcall get_SigningCertificate(void**) noexcept = 0; virtual int32_t __stdcall put_SigningCertificate(void*) noexcept = 0; virtual int32_t __stdcall get_AttestationCredentialCertificate(void**) noexcept = 0; virtual int32_t __stdcall put_AttestationCredentialCertificate(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties3> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_CurveName(void**) noexcept = 0; virtual int32_t __stdcall put_CurveName(void*) noexcept = 0; virtual int32_t __stdcall get_CurveParameters(uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall put_CurveParameters(uint32_t, uint8_t*) noexcept = 0; virtual int32_t __stdcall get_ContainerNamePrefix(void**) noexcept = 0; virtual int32_t __stdcall put_ContainerNamePrefix(void*) noexcept = 0; virtual int32_t __stdcall get_ContainerName(void**) noexcept = 0; virtual int32_t __stdcall put_ContainerName(void*) noexcept = 0; virtual int32_t __stdcall get_UseExistingKey(bool*) noexcept = 0; virtual int32_t __stdcall put_UseExistingKey(bool) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties4> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_SuppressedDefaults(void**) noexcept = 0; virtual int32_t __stdcall get_SubjectAlternativeName(void**) noexcept = 0; virtual int32_t __stdcall get_Extensions(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateStore> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall Add(void*) noexcept = 0; virtual int32_t __stdcall Delete(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateStore2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Name(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall FindAllAsync(void**) noexcept = 0; virtual int32_t __stdcall FindAllWithQueryAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall get_TrustedRootCertificationAuthorities(void**) noexcept = 0; virtual int32_t __stdcall get_IntermediateCertificationAuthorities(void**) noexcept = 0; virtual int32_t __stdcall GetStoreByName(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall GetUserStoreByName(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IChainBuildingParameters> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_EnhancedKeyUsages(void**) noexcept = 0; virtual int32_t __stdcall get_ValidationTimestamp(int64_t*) noexcept = 0; virtual int32_t __stdcall put_ValidationTimestamp(int64_t) noexcept = 0; virtual int32_t __stdcall get_RevocationCheckEnabled(bool*) noexcept = 0; virtual int32_t __stdcall put_RevocationCheckEnabled(bool) noexcept = 0; virtual int32_t __stdcall get_NetworkRetrievalEnabled(bool*) noexcept = 0; virtual int32_t __stdcall put_NetworkRetrievalEnabled(bool) noexcept = 0; virtual int32_t __stdcall get_AuthorityInformationAccessEnabled(bool*) noexcept = 0; virtual int32_t __stdcall put_AuthorityInformationAccessEnabled(bool) noexcept = 0; virtual int32_t __stdcall get_CurrentTimeValidationEnabled(bool*) noexcept = 0; virtual int32_t __stdcall put_CurrentTimeValidationEnabled(bool) noexcept = 0; virtual int32_t __stdcall get_ExclusiveTrustRoots(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IChainValidationParameters> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_CertificateChainPolicy(int32_t*) noexcept = 0; virtual int32_t __stdcall put_CertificateChainPolicy(int32_t) noexcept = 0; virtual int32_t __stdcall get_ServerDnsName(void**) noexcept = 0; virtual int32_t __stdcall put_ServerDnsName(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsAttachedSignature> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Certificates(void**) noexcept = 0; virtual int32_t __stdcall get_Content(uint32_t* __valueSize, uint8_t**) noexcept = 0; virtual int32_t __stdcall get_Signers(void**) noexcept = 0; virtual int32_t __stdcall VerifySignature(int32_t*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureFactory> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall CreateCmsAttachedSignature(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall GenerateSignatureAsync(void*, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsDetachedSignature> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Certificates(void**) noexcept = 0; virtual int32_t __stdcall get_Signers(void**) noexcept = 0; virtual int32_t __stdcall VerifySignatureAsync(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureFactory> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall CreateCmsDetachedSignature(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall GenerateSignatureAsync(void*, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsSignerInfo> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Certificate(void**) noexcept = 0; virtual int32_t __stdcall put_Certificate(void*) noexcept = 0; virtual int32_t __stdcall get_HashAlgorithmName(void**) noexcept = 0; virtual int32_t __stdcall put_HashAlgorithmName(void*) noexcept = 0; virtual int32_t __stdcall get_TimestampInfo(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ICmsTimestampInfo> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_SigningCertificate(void**) noexcept = 0; virtual int32_t __stdcall get_Certificates(void**) noexcept = 0; virtual int32_t __stdcall get_Timestamp(int64_t*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Rsa(void**) noexcept = 0; virtual int32_t __stdcall get_Dsa(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdh256(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdh384(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdh521(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdsa256(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdsa384(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdsa521(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Ecdsa(void**) noexcept = 0; virtual int32_t __stdcall get_Ecdh(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall DecryptTpmAttestationCredentialAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall GetTpmAttestationCredentialId(void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall DecryptTpmAttestationCredentialWithContainerNameAsync(void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_SoftwareKeyStorageProvider(void**) noexcept = 0; virtual int32_t __stdcall get_SmartcardKeyStorageProvider(void**) noexcept = 0; virtual int32_t __stdcall get_PlatformKeyStorageProvider(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_PassportKeyStorageProvider(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IPfxImportParameters> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Exportable(int32_t*) noexcept = 0; virtual int32_t __stdcall put_Exportable(int32_t) noexcept = 0; virtual int32_t __stdcall get_KeyProtectionLevel(int32_t*) noexcept = 0; virtual int32_t __stdcall put_KeyProtectionLevel(int32_t) noexcept = 0; virtual int32_t __stdcall get_InstallOptions(uint32_t*) noexcept = 0; virtual int32_t __stdcall put_InstallOptions(uint32_t) noexcept = 0; virtual int32_t __stdcall get_FriendlyName(void**) noexcept = 0; virtual int32_t __stdcall put_FriendlyName(void*) noexcept = 0; virtual int32_t __stdcall get_KeyStorageProviderName(void**) noexcept = 0; virtual int32_t __stdcall put_KeyStorageProviderName(void*) noexcept = 0; virtual int32_t __stdcall get_ContainerNamePrefix(void**) noexcept = 0; virtual int32_t __stdcall put_ContainerNamePrefix(void*) noexcept = 0; virtual int32_t __stdcall get_ReaderName(void**) noexcept = 0; virtual int32_t __stdcall put_ReaderName(void*) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IStandardCertificateStoreNamesStatics> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_Personal(void**) noexcept = 0; virtual int32_t __stdcall get_TrustedRootCertificationAuthorities(void**) noexcept = 0; virtual int32_t __stdcall get_IntermediateCertificationAuthorities(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_EmailName(void**) noexcept = 0; virtual int32_t __stdcall get_IPAddress(void**) noexcept = 0; virtual int32_t __stdcall get_Url(void**) noexcept = 0; virtual int32_t __stdcall get_DnsName(void**) noexcept = 0; virtual int32_t __stdcall get_DistinguishedName(void**) noexcept = 0; virtual int32_t __stdcall get_PrincipalName(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall get_EmailNames(void**) noexcept = 0; virtual int32_t __stdcall get_IPAddresses(void**) noexcept = 0; virtual int32_t __stdcall get_Urls(void**) noexcept = 0; virtual int32_t __stdcall get_DnsNames(void**) noexcept = 0; virtual int32_t __stdcall get_DistinguishedNames(void**) noexcept = 0; virtual int32_t __stdcall get_PrincipalNames(void**) noexcept = 0; virtual int32_t __stdcall get_Extension(void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall CreateRequestAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall InstallCertificateAsync(void*, uint32_t, void**) noexcept = 0; virtual int32_t __stdcall ImportPfxDataAsync(void*, void*, int32_t, int32_t, uint32_t, void*, void**) noexcept = 0; virtual int32_t __stdcall ImportPfxDataToKspAsync(void*, void*, int32_t, int32_t, uint32_t, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager2> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall ImportPfxDataToKspWithParametersAsync(void*, void*, void*, void**) noexcept = 0; }; }; template <> struct abi<Windows::Security::Cryptography::Certificates::IUserCertificateStore> { struct __declspec(novtable) type : inspectable_abi { virtual int32_t __stdcall RequestAddAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall RequestDeleteAsync(void*, void**) noexcept = 0; virtual int32_t __stdcall get_Name(void**) noexcept = 0; }; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificate { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Cryptography::Certificates::CertificateChain>) BuildChainAsync(param::async_iterable<Windows::Security::Cryptography::Certificates::Certificate> const& certificates) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Cryptography::Certificates::CertificateChain>) BuildChainAsync(param::async_iterable<Windows::Security::Cryptography::Certificates::Certificate> const& certificates, Windows::Security::Cryptography::Certificates::ChainBuildingParameters const& parameters) const; [[nodiscard]] WINRT_IMPL_AUTO(com_array<uint8_t>) SerialNumber() const; WINRT_IMPL_AUTO(com_array<uint8_t>) GetHashValue() const; WINRT_IMPL_AUTO(com_array<uint8_t>) GetHashValue(param::hstring const& hashAlgorithmName) const; WINRT_IMPL_AUTO(Windows::Storage::Streams::IBuffer) GetCertificateBlob() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Subject() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Issuer() const; [[nodiscard]] WINRT_IMPL_AUTO(bool) HasPrivateKey() const; [[nodiscard]] WINRT_IMPL_AUTO(bool) IsStronglyProtected() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::DateTime) ValidFrom() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::DateTime) ValidTo() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) EnhancedKeyUsages() const; WINRT_IMPL_AUTO(void) FriendlyName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) FriendlyName() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificate> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificate<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificate2 { [[nodiscard]] WINRT_IMPL_AUTO(bool) IsSecurityDeviceBound() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CertificateKeyUsages) KeyUsages() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) KeyAlgorithmName() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) SignatureAlgorithmName() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) SignatureHashAlgorithmName() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::SubjectAlternativeNameInfo) SubjectAlternativeName() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificate2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificate2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificate3 { [[nodiscard]] WINRT_IMPL_AUTO(bool) IsPerUser() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) StoreName() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) KeyStorageProviderName() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificate3> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificate3<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateChain { WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::ChainValidationResult) Validate() const; WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::ChainValidationResult) Validate(Windows::Security::Cryptography::Certificates::ChainValidationParameters const& parameter) const; WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::Certificate>) GetCertificates(bool includeRoot) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateChain> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateChain<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateEnrollmentManagerStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<hstring>) CreateRequestAsync(Windows::Security::Cryptography::Certificates::CertificateRequestProperties const& request) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) InstallCertificateAsync(param::hstring const& certificate, Windows::Security::Cryptography::Certificates::InstallOptions const& installOption) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ImportPfxDataAsync(param::hstring const& pfxData, param::hstring const& password, Windows::Security::Cryptography::Certificates::ExportOption const& exportable, Windows::Security::Cryptography::Certificates::KeyProtectionLevel const& keyProtectionLevel, Windows::Security::Cryptography::Certificates::InstallOptions const& installOption, param::hstring const& friendlyName) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateEnrollmentManagerStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateEnrollmentManagerStatics2 { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::UserCertificateEnrollmentManager) UserCertificateEnrollmentManager() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ImportPfxDataAsync(param::hstring const& pfxData, param::hstring const& password, Windows::Security::Cryptography::Certificates::ExportOption const& exportable, Windows::Security::Cryptography::Certificates::KeyProtectionLevel const& keyProtectionLevel, Windows::Security::Cryptography::Certificates::InstallOptions const& installOption, param::hstring const& friendlyName, param::hstring const& keyStorageProvider) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateEnrollmentManagerStatics2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateEnrollmentManagerStatics3 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ImportPfxDataAsync(param::hstring const& pfxData, param::hstring const& password, Windows::Security::Cryptography::Certificates::PfxImportParameters const& pfxImportParameters) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateEnrollmentManagerStatics3> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateEnrollmentManagerStatics3<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateExtension { [[nodiscard]] WINRT_IMPL_AUTO(hstring) ObjectId() const; WINRT_IMPL_AUTO(void) ObjectId(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) IsCritical() const; WINRT_IMPL_AUTO(void) IsCritical(bool value) const; WINRT_IMPL_AUTO(void) EncodeValue(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(com_array<uint8_t>) Value() const; WINRT_IMPL_AUTO(void) Value(array_view<uint8_t const> value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateExtension> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateExtension<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateFactory { WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::Certificate) CreateCertificate(Windows::Storage::Streams::IBuffer const& certBlob) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateFactory> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateFactory<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateKeyUsages { [[nodiscard]] WINRT_IMPL_AUTO(bool) EncipherOnly() const; WINRT_IMPL_AUTO(void) EncipherOnly(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) CrlSign() const; WINRT_IMPL_AUTO(void) CrlSign(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) KeyCertificateSign() const; WINRT_IMPL_AUTO(void) KeyCertificateSign(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) KeyAgreement() const; WINRT_IMPL_AUTO(void) KeyAgreement(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) DataEncipherment() const; WINRT_IMPL_AUTO(void) DataEncipherment(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) KeyEncipherment() const; WINRT_IMPL_AUTO(void) KeyEncipherment(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) NonRepudiation() const; WINRT_IMPL_AUTO(void) NonRepudiation(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) DigitalSignature() const; WINRT_IMPL_AUTO(void) DigitalSignature(bool value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateKeyUsages> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateKeyUsages<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateQuery { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) EnhancedKeyUsages() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) IssuerName() const; WINRT_IMPL_AUTO(void) IssuerName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) FriendlyName() const; WINRT_IMPL_AUTO(void) FriendlyName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(com_array<uint8_t>) Thumbprint() const; WINRT_IMPL_AUTO(void) Thumbprint(array_view<uint8_t const> value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) HardwareOnly() const; WINRT_IMPL_AUTO(void) HardwareOnly(bool value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateQuery> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateQuery<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateQuery2 { [[nodiscard]] WINRT_IMPL_AUTO(bool) IncludeDuplicates() const; WINRT_IMPL_AUTO(void) IncludeDuplicates(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) IncludeExpiredCertificates() const; WINRT_IMPL_AUTO(void) IncludeExpiredCertificates(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) StoreName() const; WINRT_IMPL_AUTO(void) StoreName(param::hstring const& value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateQuery2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateQuery2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties { [[nodiscard]] WINRT_IMPL_AUTO(hstring) Subject() const; WINRT_IMPL_AUTO(void) Subject(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) KeyAlgorithmName() const; WINRT_IMPL_AUTO(void) KeyAlgorithmName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(uint32_t) KeySize() const; WINRT_IMPL_AUTO(void) KeySize(uint32_t value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) FriendlyName() const; WINRT_IMPL_AUTO(void) FriendlyName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) HashAlgorithmName() const; WINRT_IMPL_AUTO(void) HashAlgorithmName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::ExportOption) Exportable() const; WINRT_IMPL_AUTO(void) Exportable(Windows::Security::Cryptography::Certificates::ExportOption const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::EnrollKeyUsages) KeyUsages() const; WINRT_IMPL_AUTO(void) KeyUsages(Windows::Security::Cryptography::Certificates::EnrollKeyUsages const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::KeyProtectionLevel) KeyProtectionLevel() const; WINRT_IMPL_AUTO(void) KeyProtectionLevel(Windows::Security::Cryptography::Certificates::KeyProtectionLevel const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) KeyStorageProviderName() const; WINRT_IMPL_AUTO(void) KeyStorageProviderName(param::hstring const& value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties2 { [[nodiscard]] WINRT_IMPL_AUTO(hstring) SmartcardReaderName() const; WINRT_IMPL_AUTO(void) SmartcardReaderName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::Certificate) SigningCertificate() const; WINRT_IMPL_AUTO(void) SigningCertificate(Windows::Security::Cryptography::Certificates::Certificate const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::Certificate) AttestationCredentialCertificate() const; WINRT_IMPL_AUTO(void) AttestationCredentialCertificate(Windows::Security::Cryptography::Certificates::Certificate const& value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties3 { [[nodiscard]] WINRT_IMPL_AUTO(hstring) CurveName() const; WINRT_IMPL_AUTO(void) CurveName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(com_array<uint8_t>) CurveParameters() const; WINRT_IMPL_AUTO(void) CurveParameters(array_view<uint8_t const> value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) ContainerNamePrefix() const; WINRT_IMPL_AUTO(void) ContainerNamePrefix(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) ContainerName() const; WINRT_IMPL_AUTO(void) ContainerName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) UseExistingKey() const; WINRT_IMPL_AUTO(void) UseExistingKey(bool value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties3> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties3<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties4 { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) SuppressedDefaults() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::SubjectAlternativeNameInfo) SubjectAlternativeName() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<Windows::Security::Cryptography::Certificates::CertificateExtension>) Extensions() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateRequestProperties4> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateRequestProperties4<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateStore { WINRT_IMPL_AUTO(void) Add(Windows::Security::Cryptography::Certificates::Certificate const& certificate) const; WINRT_IMPL_AUTO(void) Delete(Windows::Security::Cryptography::Certificates::Certificate const& certificate) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateStore> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateStore<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateStore2 { [[nodiscard]] WINRT_IMPL_AUTO(hstring) Name() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateStore2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateStore2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateStoresStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::Certificate>>) FindAllAsync() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::Certificate>>) FindAllAsync(Windows::Security::Cryptography::Certificates::CertificateQuery const& query) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CertificateStore) TrustedRootCertificationAuthorities() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CertificateStore) IntermediateCertificationAuthorities() const; WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CertificateStore) GetStoreByName(param::hstring const& storeName) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateStoresStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICertificateStoresStatics2 { WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::UserCertificateStore) GetUserStoreByName(param::hstring const& storeName) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICertificateStoresStatics2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICertificateStoresStatics2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IChainBuildingParameters { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) EnhancedKeyUsages() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::DateTime) ValidationTimestamp() const; WINRT_IMPL_AUTO(void) ValidationTimestamp(Windows::Foundation::DateTime const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) RevocationCheckEnabled() const; WINRT_IMPL_AUTO(void) RevocationCheckEnabled(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) NetworkRetrievalEnabled() const; WINRT_IMPL_AUTO(void) NetworkRetrievalEnabled(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) AuthorityInformationAccessEnabled() const; WINRT_IMPL_AUTO(void) AuthorityInformationAccessEnabled(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(bool) CurrentTimeValidationEnabled() const; WINRT_IMPL_AUTO(void) CurrentTimeValidationEnabled(bool value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<Windows::Security::Cryptography::Certificates::Certificate>) ExclusiveTrustRoots() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IChainBuildingParameters> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IChainBuildingParameters<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IChainValidationParameters { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CertificateChainPolicy) CertificateChainPolicy() const; WINRT_IMPL_AUTO(void) CertificateChainPolicy(Windows::Security::Cryptography::Certificates::CertificateChainPolicy const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Networking::HostName) ServerDnsName() const; WINRT_IMPL_AUTO(void) ServerDnsName(Windows::Networking::HostName const& value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IChainValidationParameters> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IChainValidationParameters<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsAttachedSignature { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::Certificate>) Certificates() const; [[nodiscard]] WINRT_IMPL_AUTO(com_array<uint8_t>) Content() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::CmsSignerInfo>) Signers() const; WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::SignatureValidationResult) VerifySignature() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsAttachedSignature> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsAttachedSignature<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsAttachedSignatureFactory { WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CmsAttachedSignature) CreateCmsAttachedSignature(Windows::Storage::Streams::IBuffer const& inputBlob) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureFactory> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsAttachedSignatureFactory<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsAttachedSignatureStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Storage::Streams::IBuffer>) GenerateSignatureAsync(Windows::Storage::Streams::IBuffer const& data, param::async_iterable<Windows::Security::Cryptography::Certificates::CmsSignerInfo> const& signers, param::async_iterable<Windows::Security::Cryptography::Certificates::Certificate> const& certificates) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsAttachedSignatureStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsAttachedSignatureStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsDetachedSignature { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::Certificate>) Certificates() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::CmsSignerInfo>) Signers() const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Security::Cryptography::Certificates::SignatureValidationResult>) VerifySignatureAsync(Windows::Storage::Streams::IInputStream const& data) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsDetachedSignature> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsDetachedSignature<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsDetachedSignatureFactory { WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CmsDetachedSignature) CreateCmsDetachedSignature(Windows::Storage::Streams::IBuffer const& inputBlob) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureFactory> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsDetachedSignatureFactory<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsDetachedSignatureStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<Windows::Storage::Streams::IBuffer>) GenerateSignatureAsync(Windows::Storage::Streams::IInputStream const& data, param::async_iterable<Windows::Security::Cryptography::Certificates::CmsSignerInfo> const& signers, param::async_iterable<Windows::Security::Cryptography::Certificates::Certificate> const& certificates) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsDetachedSignatureStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsDetachedSignatureStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsSignerInfo { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::Certificate) Certificate() const; WINRT_IMPL_AUTO(void) Certificate(Windows::Security::Cryptography::Certificates::Certificate const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) HashAlgorithmName() const; WINRT_IMPL_AUTO(void) HashAlgorithmName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CmsTimestampInfo) TimestampInfo() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsSignerInfo> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsSignerInfo<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ICmsTimestampInfo { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::Certificate) SigningCertificate() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<Windows::Security::Cryptography::Certificates::Certificate>) Certificates() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::DateTime) Timestamp() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ICmsTimestampInfo> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ICmsTimestampInfo<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IKeyAlgorithmNamesStatics { [[nodiscard]] WINRT_IMPL_AUTO(hstring) Rsa() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Dsa() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdh256() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdh384() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdh521() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdsa256() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdsa384() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdsa521() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IKeyAlgorithmNamesStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IKeyAlgorithmNamesStatics2 { [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdsa() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Ecdh() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IKeyAlgorithmNamesStatics2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IKeyAlgorithmNamesStatics2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IKeyAttestationHelperStatics { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<hstring>) DecryptTpmAttestationCredentialAsync(param::hstring const& credential) const; WINRT_IMPL_AUTO(hstring) GetTpmAttestationCredentialId(param::hstring const& credential) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IKeyAttestationHelperStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IKeyAttestationHelperStatics2 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<hstring>) DecryptTpmAttestationCredentialAsync(param::hstring const& credential, param::hstring const& containerName) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IKeyAttestationHelperStatics2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IKeyAttestationHelperStatics2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IKeyStorageProviderNamesStatics { [[nodiscard]] WINRT_IMPL_AUTO(hstring) SoftwareKeyStorageProvider() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) SmartcardKeyStorageProvider() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) PlatformKeyStorageProvider() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IKeyStorageProviderNamesStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IKeyStorageProviderNamesStatics2 { [[nodiscard]] WINRT_IMPL_AUTO(hstring) PassportKeyStorageProvider() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IKeyStorageProviderNamesStatics2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IKeyStorageProviderNamesStatics2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IPfxImportParameters { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::ExportOption) Exportable() const; WINRT_IMPL_AUTO(void) Exportable(Windows::Security::Cryptography::Certificates::ExportOption const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::KeyProtectionLevel) KeyProtectionLevel() const; WINRT_IMPL_AUTO(void) KeyProtectionLevel(Windows::Security::Cryptography::Certificates::KeyProtectionLevel const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::InstallOptions) InstallOptions() const; WINRT_IMPL_AUTO(void) InstallOptions(Windows::Security::Cryptography::Certificates::InstallOptions const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) FriendlyName() const; WINRT_IMPL_AUTO(void) FriendlyName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) KeyStorageProviderName() const; WINRT_IMPL_AUTO(void) KeyStorageProviderName(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) ContainerNamePrefix() const; WINRT_IMPL_AUTO(void) ContainerNamePrefix(param::hstring const& value) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) ReaderName() const; WINRT_IMPL_AUTO(void) ReaderName(param::hstring const& value) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IPfxImportParameters> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IPfxImportParameters<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IStandardCertificateStoreNamesStatics { [[nodiscard]] WINRT_IMPL_AUTO(hstring) Personal() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) TrustedRootCertificationAuthorities() const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) IntermediateCertificationAuthorities() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IStandardCertificateStoreNamesStatics> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IStandardCertificateStoreNamesStatics<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ISubjectAlternativeNameInfo { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) EmailName() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) IPAddress() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) Url() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) DnsName() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) DistinguishedName() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVectorView<hstring>) PrincipalName() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ISubjectAlternativeNameInfo<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_ISubjectAlternativeNameInfo2 { [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) EmailNames() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) IPAddresses() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) Urls() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) DnsNames() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) DistinguishedNames() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Foundation::Collections::IVector<hstring>) PrincipalNames() const; [[nodiscard]] WINRT_IMPL_AUTO(Windows::Security::Cryptography::Certificates::CertificateExtension) Extension() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::ISubjectAlternativeNameInfo2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_ISubjectAlternativeNameInfo2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IUserCertificateEnrollmentManager { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<hstring>) CreateRequestAsync(Windows::Security::Cryptography::Certificates::CertificateRequestProperties const& request) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) InstallCertificateAsync(param::hstring const& certificate, Windows::Security::Cryptography::Certificates::InstallOptions const& installOption) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ImportPfxDataAsync(param::hstring const& pfxData, param::hstring const& password, Windows::Security::Cryptography::Certificates::ExportOption const& exportable, Windows::Security::Cryptography::Certificates::KeyProtectionLevel const& keyProtectionLevel, Windows::Security::Cryptography::Certificates::InstallOptions const& installOption, param::hstring const& friendlyName) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ImportPfxDataAsync(param::hstring const& pfxData, param::hstring const& password, Windows::Security::Cryptography::Certificates::ExportOption const& exportable, Windows::Security::Cryptography::Certificates::KeyProtectionLevel const& keyProtectionLevel, Windows::Security::Cryptography::Certificates::InstallOptions const& installOption, param::hstring const& friendlyName, param::hstring const& keyStorageProvider) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IUserCertificateEnrollmentManager<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IUserCertificateEnrollmentManager2 { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncAction) ImportPfxDataAsync(param::hstring const& pfxData, param::hstring const& password, Windows::Security::Cryptography::Certificates::PfxImportParameters const& pfxImportParameters) const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IUserCertificateEnrollmentManager2> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IUserCertificateEnrollmentManager2<D>; }; template <typename D> struct consume_Windows_Security_Cryptography_Certificates_IUserCertificateStore { WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<bool>) RequestAddAsync(Windows::Security::Cryptography::Certificates::Certificate const& certificate) const; WINRT_IMPL_AUTO(Windows::Foundation::IAsyncOperation<bool>) RequestDeleteAsync(Windows::Security::Cryptography::Certificates::Certificate const& certificate) const; [[nodiscard]] WINRT_IMPL_AUTO(hstring) Name() const; }; template <> struct consume<Windows::Security::Cryptography::Certificates::IUserCertificateStore> { template <typename D> using type = consume_Windows_Security_Cryptography_Certificates_IUserCertificateStore<D>; }; } #endif
[ "malte@kamalook.de" ]
malte@kamalook.de
009cf3e82c79a891f4d12fb9290028c217b45cfb
7c17e5606be4ad8d1785226deb3fe5677e04d099
/stuff/urho3d/Source/Samples/00_ignition/relative_pose/_zzz/pioneer_src/scenegraph/Label3D.cpp
0419319a88e1aa2e08300368a5d18d10bd49fb44
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
z80/ignition
a4fa4adb32fed843ee41bcdc83e41ba3d70f048b
629c9d998d53de33f3b123910770f73c9e783234
refs/heads/master
2023-07-21T17:46:52.510964
2023-04-04T17:18:41
2023-04-04T17:18:41
206,724,558
14
3
null
2022-06-23T00:02:44
2019-09-06T06:06:22
C++
UTF-8
C++
false
false
2,700
cpp
// Copyright © 2008-2020 Pioneer Developers. See AUTHORS.txt for details // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt #include "Label3D.h" #include "NodeVisitor.h" #include "graphics/Renderer.h" #include "graphics/RenderState.h" #include "graphics/VertexArray.h" #include "graphics/VertexBuffer.h" namespace SceneGraph { Label3D::Label3D(Graphics::Renderer *r, RefCountedPtr<Text::DistanceFieldFont> font) : Node(r, NODE_TRANSPARENT), m_font(font) { Graphics::MaterialDescriptor matdesc; matdesc.textures = 1; matdesc.alphaTest = true; matdesc.lighting = true; m_geometry.reset(font->CreateVertexArray()); m_material.Reset(r->CreateMaterial(matdesc)); m_material->texture0 = font->GetTexture(); m_material->diffuse = Color::WHITE; m_material->emissive = Color(38, 38, 38); m_material->specular = Color::WHITE; Graphics::RenderStateDesc rsd; rsd.depthWrite = false; m_renderState = r->CreateRenderState(rsd); } Label3D::Label3D(const Label3D &label, NodeCopyCache *cache) : Node(label, cache), m_material(label.m_material), m_font(label.m_font), m_renderState(label.m_renderState) { m_geometry.reset(m_font->CreateVertexArray()); } Node *Label3D::Clone(NodeCopyCache *cache) { return new Label3D(*this, cache); } void Label3D::SetText(const std::string &text) { //regenerate geometry m_geometry->Clear(); if (!text.empty()) { m_font->GetGeometry(*m_geometry, text, vector2f(0.f)); // Happens if none of the characters in the string have glyphs in the SDF font. // Most noticeably, this means text consisting of entirely Cyrillic // or Chinese characters will vanish when rendered on a Label3D. if (m_geometry->IsEmpty()) { return; } //create buffer and upload data Graphics::VertexBufferDesc vbd; vbd.attrib[0].semantic = Graphics::ATTRIB_POSITION; vbd.attrib[0].format = Graphics::ATTRIB_FORMAT_FLOAT3; vbd.attrib[1].semantic = Graphics::ATTRIB_NORMAL; vbd.attrib[1].format = Graphics::ATTRIB_FORMAT_FLOAT3; vbd.attrib[2].semantic = Graphics::ATTRIB_UV0; vbd.attrib[2].format = Graphics::ATTRIB_FORMAT_FLOAT2; vbd.numVertices = m_geometry->GetNumVerts(); vbd.usage = Graphics::BUFFER_USAGE_STATIC; m_vbuffer.reset(m_renderer->CreateVertexBuffer(vbd)); m_vbuffer->Populate(*m_geometry); } } void Label3D::Render(const matrix4x4f &trans, const RenderData *rd) { PROFILE_SCOPED() if (m_vbuffer.get()) { Graphics::Renderer *r = GetRenderer(); r->SetTransform(trans); r->DrawBuffer(m_vbuffer.get(), m_renderState, m_material.Get()); } } void Label3D::Accept(NodeVisitor &nv) { nv.ApplyLabel(*this); } } // namespace SceneGraph
[ "bashkirov.sergey@gmail.com" ]
bashkirov.sergey@gmail.com
fe9a59495149faefab1fcba15fb28f4534009556
1a77b5eac40055032b72e27e720ac5d43451bbd6
/VisualC++/Chap6/Rei47/Rei47/stdafx.cpp
4af2ce0a248e2a31b875d033bdfb84d7159e22ca
[]
no_license
motonobu-t/algorithm
8c8d360ebb982a0262069bb968022fe79f2c84c2
ca7b29d53860eb06a357eb268f44f47ec9cb63f7
refs/heads/master
2021-01-22T21:38:34.195001
2017-05-15T12:00:51
2017-05-15T12:01:00
85,451,237
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
372
cpp
// stdafx.cpp : 標準インクルード Rei47.pch のみを // 含むソース ファイルは、プリコンパイル済みヘッダーになります。 // stdafx.obj にはプリコンパイル済み型情報が含まれます。 #include "stdafx.h" // TODO: このファイルではなく、STDAFX.H で必要な // 追加ヘッダーを参照してください。
[ "rx_78_bd@yahoo.co.jp" ]
rx_78_bd@yahoo.co.jp
0cc6397788918d9946b1772987875d768ae85735
6ac8f056ab6efaf854b8d7798e6a44e07b061dcc
/CvGameCoreDLL_Expansion1/CvSiteEvaluationClasses.cpp
d069d68d464c4d1b08957bcf03a7b7e3e3d4ab9b
[]
no_license
DelnarErsike/Civ5-Artificial-Unintelligence-DLL
b8587deb33735c38104aa0d7b9f38b2f57a3db32
1add515c01838e743e94c1c1c0cb1cfbe569e097
refs/heads/master
2020-06-04T23:05:06.522287
2015-01-09T06:53:57
2015-01-09T06:53:57
25,795,041
25
10
null
null
null
null
WINDOWS-1252
C++
false
false
29,071
cpp
/* ------------------------------------------------------------------------------------------------------- © 1991-2012 Take-Two Interactive Software and its subsidiaries. Developed by Firaxis Games. Sid Meier's Civilization V, Civ, Civilization, 2K Games, Firaxis Games, Take-Two Interactive Software and their respective logos are all trademarks of Take-Two interactive Software, Inc. All other marks and trademarks are the property of their respective owners. All rights reserved. ------------------------------------------------------------------------------------------------------- */ #include "CvGameCoreDLLPCH.h" #include "CvGameCoreUtils.h" #include "CvSiteEvaluationClasses.h" #include "CvImprovementClasses.h" #include "CvCitySpecializationAI.h" #include "CvDiplomacyAI.h" #include "CvGrandStrategyAI.h" // include this after all other headers! #include "LintFree.h" //===================================== // CvCitySiteEvaluator //===================================== /// Constructor CvCitySiteEvaluator::CvCitySiteEvaluator(void) { m_iExpansionIndex = 12; m_iGrowthIndex = 13; } /// Destructor CvCitySiteEvaluator::~CvCitySiteEvaluator(void) { } /// Initialize void CvCitySiteEvaluator::Init() { // Set up city ring multipliers m_iRingModifier[0] = 1; // Items under city get handled separately m_iRingModifier[1] = /*6*/ GC.getCITY_RING_1_MULTIPLIER(); m_iRingModifier[2] = /*3*/ GC.getCITY_RING_2_MULTIPLIER(); m_iRingModifier[3] = /*2*/ GC.getCITY_RING_3_MULTIPLIER(); m_iRingModifier[4] = /*1*/ GC.getCITY_RING_4_MULTIPLIER(); m_iRingModifier[5] = /*1*/ GC.getCITY_RING_5_MULTIPLIER(); m_iRingModifier[6] = 0; m_iRingModifier[7] = 0; m_iGrowthIndex = GC.getInfoTypeForString("FLAVOR_GROWTH"); m_iExpansionIndex = GC.getInfoTypeForString("FLAVOR_EXPANSION"); m_iNavalIndex = GC.getInfoTypeForString("FLAVOR_NAVAL"); } /// Is it valid for this player to found a city here? bool CvCitySiteEvaluator::CanFound(CvPlot* pPlot, const CvPlayer* pPlayer, bool bTestVisible) const { CvAssert(pPlot); if(!pPlot) return false; CvPlot* pLoopPlot(NULL); bool bValid(false); int iRange(0), iDX(0), iDY(0); // Used to have a Python hook: CANNOT_FOUND_CITY_CALLBACK if(GC.getGame().isFinalInitialized()) { if(GC.getGame().isOption(GAMEOPTION_ONE_CITY_CHALLENGE) && pPlayer && pPlayer->isHuman()) { if(pPlayer->getNumCities() > 0) { return false; } } } if(pPlot->isImpassable() || pPlot->isMountain()) { return false; } if(pPlot->getFeatureType() != NO_FEATURE) { if(GC.getFeatureInfo(pPlot->getFeatureType())->isNoCity()) { return false; } } if(pPlayer) { if(pPlot->isOwned() && (pPlot->getOwner() != pPlayer->GetID())) { return false; } } CvTerrainInfo* pTerrainInfo = GC.getTerrainInfo(pPlot->getTerrainType()); if(!bValid) { if(pTerrainInfo->isFound()) { bValid = true; } } if(!bValid) { if(pTerrainInfo->isFoundCoast()) { if(pPlot->isCoastalLand()) { bValid = true; } } } if(!bValid) { if(pTerrainInfo->isFoundFreshWater()) { if(pPlot->isFreshWater()) { bValid = true; } } } // Used to have a Python hook: CAN_FOUND_CITIES_ON_WATER_CALLBACK if(pPlot->isWater()) { return false; } if(!bValid) { return false; } if(!bTestVisible) { // look at same land mass iRange = GC.getMIN_CITY_RANGE(); for(iDX = -(iRange); iDX <= iRange; iDX++) { for(iDY = -(iRange); iDY <= iRange; iDY++) { pLoopPlot = plotXYWithRangeCheck(pPlot->getX(), pPlot->getY(), iDX, iDY, iRange); if(pLoopPlot != NULL) { if(pLoopPlot->isCity()) { if(pLoopPlot->getLandmass() == pPlot->getLandmass()) { return false; } else if(hexDistance(iDX, iDY) < iRange) // one less for off shore { return false; } } } } } } return true; } /// Setup flavor multipliers - call once per player before PlotFoundValue() or PlotFertilityValue() void CvCitySiteEvaluator::ComputeFlavorMultipliers(CvPlayer* pPlayer) { // Set all to 0 for(int iI = 0; iI < NUM_YIELD_TYPES; iI++) { m_iFlavorMultiplier[iI] = 0; } m_iFlavorMultiplier[SITE_EVALUATION_HAPPINESS] = 0; // Find out if player has a desired next city specialization CitySpecializationTypes eNextSpecialization = pPlayer->GetCitySpecializationAI()->GetNextSpecializationDesired(); CvCitySpecializationXMLEntry* pkCitySpecializationEntry = NULL; if(eNextSpecialization != NO_CITY_SPECIALIZATION) pkCitySpecializationEntry = GC.getCitySpecializationInfo(eNextSpecialization); for(int iFlavorLoop = 0; iFlavorLoop < GC.getNumFlavorTypes(); iFlavorLoop++) { const FlavorTypes eFlavor = static_cast<FlavorTypes>(iFlavorLoop); const CvString& strFlavor = GC.getFlavorTypes(eFlavor); if(strFlavor == "FLAVOR_GROWTH" || strFlavor == "FLAVOR_EXPANSION") { m_iFlavorMultiplier[YIELD_FOOD] += pPlayer->GetFlavorManager()->GetPersonalityIndividualFlavor(eFlavor); if(pkCitySpecializationEntry) { m_iFlavorMultiplier[YIELD_FOOD] += pkCitySpecializationEntry->GetFlavorValue(eFlavor); } } else if(strFlavor == "FLAVOR_GOLD" || strFlavor == "FLAVOR_TILE_IMPROVEMENT") { m_iFlavorMultiplier[YIELD_GOLD] += pPlayer->GetFlavorManager()->GetPersonalityIndividualFlavor(eFlavor); if(pkCitySpecializationEntry) { m_iFlavorMultiplier[YIELD_GOLD] += pkCitySpecializationEntry->GetFlavorValue(eFlavor); } } else if(strFlavor == "FLAVOR_PRODUCTION" || strFlavor == "FLAVOR_WONDER") { m_iFlavorMultiplier[YIELD_PRODUCTION] += pPlayer->GetFlavorManager()->GetPersonalityIndividualFlavor(eFlavor); if(pkCitySpecializationEntry) { m_iFlavorMultiplier[YIELD_PRODUCTION] += pkCitySpecializationEntry->GetFlavorValue(eFlavor); } } else if(strFlavor == "FLAVOR_SCIENCE") { // Doubled since only one flavor related to science m_iFlavorMultiplier[YIELD_SCIENCE] += pPlayer->GetFlavorManager()->GetPersonalityIndividualFlavor(eFlavor) * 2; if(pkCitySpecializationEntry) { m_iFlavorMultiplier[YIELD_SCIENCE] += pkCitySpecializationEntry->GetFlavorValue(eFlavor) * 2; } } else if(strFlavor == "FLAVOR_HAPPINESS") { // Doubled since only one flavor related to Happiness m_iFlavorMultiplier[SITE_EVALUATION_HAPPINESS] += pPlayer->GetFlavorManager()->GetPersonalityIndividualFlavor(eFlavor) * 2; if(pkCitySpecializationEntry) { m_iFlavorMultiplier[SITE_EVALUATION_HAPPINESS] += pkCitySpecializationEntry->GetFlavorValue(eFlavor) * 2; } } else if(strFlavor == "FLAVOR_RELIGION") { // Doubled since only one flavor related to faith m_iFlavorMultiplier[YIELD_FAITH] += pPlayer->GetFlavorManager()->GetPersonalityIndividualFlavor(eFlavor) * 2; if (pkCitySpecializationEntry) { m_iFlavorMultiplier[YIELD_FAITH] += pkCitySpecializationEntry->GetFlavorValue(eFlavor) * 2; } } } // Make sure none are negative for(int iI = 0; iI < NUM_YIELD_TYPES; iI++) { if(m_iFlavorMultiplier[iI] < 0) { m_iFlavorMultiplier[iI] = 0; } } // Set tradable resources and strategic value to times 10 (so multiplying this by the number of map gives a number from 1 to 100) m_iFlavorMultiplier[SITE_EVALUATION_RESOURCES] = 10; m_iFlavorMultiplier[SITE_EVALUATION_STRATEGIC] = 10; } /// Retrieve the relative value of this plot (including plots that would be in city radius) int CvCitySiteEvaluator::PlotFoundValue(CvPlot* pPlot, CvPlayer* pPlayer, YieldTypes eYield, bool) { CvAssert(pPlot); if(!pPlot) return 0; // Make sure this player can even build a city here if(!CanFound(pPlot, pPlayer, false)) { return 0; } int rtnValue = 0; int iFoodValue = 0; int iHappinessValue = 0; int iProductionValue = 0; int iGoldValue = 0; int iScienceValue = 0; int iFaithValue = 0; int iResourceValue = 0; int iStrategicValue = 0; int iCelticForestCount = 0; int iIroquoisForestCount = 0; int iTotalFoodValue = 0; int iTotalHappinessValue = 0; int iTotalProductionValue = 0; int iTotalGoldValue = 0; int iTotalScienceValue = 0; int iTotalFaithValue = 0; int iTotalResourceValue = 0; int iTotalStrategicValue = 0; int iClosestCityOfMine = 999; int iClosestEnemyCity = 999; int iCapitalArea = NULL; if ( pPlayer->getCapitalCity() ) iCapitalArea = pPlayer->getCapitalCity()->getArea(); for (int iDX = -7; iDX <= 7; iDX++) { for (int iDY = -7; iDY <= 7; iDY++) { CvPlot* pLoopPlot = plotXY(pPlot->getX(), pPlot->getY(), iDX, iDY); if (pLoopPlot != NULL) { int iDistance = plotDistance(pPlot->getX(), pPlot->getY(), pLoopPlot->getX(), pLoopPlot->getY()); if (iDistance <= 7) { if ((pLoopPlot->getOwner() == NO_PLAYER) || (pLoopPlot->getOwner() == pPlayer->GetID())) { // See if there are other cities nearby if (iClosestCityOfMine > iDistance) { if (pLoopPlot->isCity()) { iClosestCityOfMine = iDistance; } } // Skip the city plot itself for now if (iDistance <= 5) { int iRingModifier = m_iRingModifier[iDistance]; iFoodValue = 0; iProductionValue = 0; iGoldValue = 0; iScienceValue = 0; iHappinessValue = 0; iResourceValue = 0; iStrategicValue = 0; if (iDistance > 0 && iDistance <= NUM_CITY_RINGS) { if (eYield == NO_YIELD || eYield == YIELD_FOOD) { iFoodValue = iRingModifier * ComputeFoodValue(pLoopPlot, pPlayer) * /*15*/ GC.getSETTLER_FOOD_MULTIPLIER(); } if (eYield == NO_YIELD || eYield == YIELD_PRODUCTION) { iProductionValue = iRingModifier * ComputeProductionValue(pLoopPlot, pPlayer) * /*3*/ GC.getSETTLER_PRODUCTION_MULTIPLIER(); } if (eYield == NO_YIELD || eYield == YIELD_GOLD) { iGoldValue = iRingModifier * ComputeGoldValue(pLoopPlot, pPlayer) * /*2*/ GC.getSETTLER_GOLD_MULTIPLIER(); } if (eYield == NO_YIELD || eYield == YIELD_SCIENCE) { iScienceValue = iRingModifier * ComputeScienceValue(pLoopPlot, pPlayer) * /*1*/ GC.getSETTLER_SCIENCE_MULTIPLIER(); } if (eYield == NO_YIELD || eYield == YIELD_FAITH) { iFaithValue = iRingModifier * ComputeFaithValue(pLoopPlot, pPlayer) * /*1*/ GC.getSETTLER_FAITH_MULTIPLIER(); } } // whether or not we are working these we get the benefit as long as culture can grow to take them if (iDistance <= 5 && pLoopPlot->getOwner() == NO_PLAYER) // there is no benefit if we already own these tiles { iHappinessValue = iRingModifier * ComputeHappinessValue(pLoopPlot, pPlayer) * /*6*/ GC.getSETTLER_HAPPINESS_MULTIPLIER(); iResourceValue = iRingModifier * ComputeTradeableResourceValue(pLoopPlot, pPlayer) * /*1*/ GC.getSETTLER_RESOURCE_MULTIPLIER(); if (iDistance) iStrategicValue = ComputeStrategicValue(pLoopPlot, pPlayer, iDistance) * /*1*/ GC.getSETTLER_STRATEGIC_MULTIPLIER(); // the ring is included in the computation } iTotalFoodValue += iFoodValue; iTotalHappinessValue += iHappinessValue; iTotalProductionValue += iProductionValue; iTotalGoldValue += iGoldValue; iTotalScienceValue += iScienceValue; iTotalFaithValue += iFaithValue; iTotalResourceValue += iResourceValue; iTotalStrategicValue += iStrategicValue; int iPlotValue = iFoodValue + iHappinessValue + iProductionValue + iGoldValue + iScienceValue + iFaithValue + iResourceValue; if (iPlotValue == 0) { // this tile is so bad it gets negatives iPlotValue -= iRingModifier * GC.getSETTLER_FOOD_MULTIPLIER() * 2; } iPlotValue += iStrategicValue; // if this tile is a NW boost the value just so that we force the AI to claim them (if we can work it) if (pLoopPlot->IsNaturalWonder() && iDistance > 0 && iDistance <= NUM_CITY_RINGS) { iPlotValue += iPlotValue * 2 + 10; } // lower value a lot if we already own this tile if (iPlotValue > 0 && pLoopPlot->getOwner() == pPlayer->GetID()) { iPlotValue /= 4; } // add this plot into the total rtnValue += iPlotValue; if (pLoopPlot->getFeatureType() == FEATURE_FOREST) { if (iDistance <= 5) { ++iIroquoisForestCount; if (iDistance == 1) { if (pLoopPlot->getImprovementType() == NO_IMPROVEMENT) { ++iCelticForestCount; } } } } } } else // this tile is owned by someone else { // See if there are other cities nearby (only count major civs) if (iClosestEnemyCity > iDistance) { if (pLoopPlot->isCity() && (pLoopPlot->getOwner() < MAX_MAJOR_CIVS)) { iClosestEnemyCity = iDistance; } } } } } } } if (pPlayer->GetPlayerTraits()->IsFaithFromUnimprovedForest()) { if (iCelticForestCount >= 3) { rtnValue += 2 * 1000 * m_iFlavorMultiplier[YIELD_FAITH]; } else if (iCelticForestCount >= 1) { rtnValue += 1 * 1000 * m_iFlavorMultiplier[YIELD_FAITH]; } } else if (pPlayer->GetPlayerTraits()->IsMoveFriendlyWoodsAsRoad()) { rtnValue += iIroquoisForestCount * 10; } if (rtnValue < 0) rtnValue = 0; // Finally, look at the city plot itself and use it as an overall multiplier if (pPlot->getResourceType(pPlayer->getTeam()) != NO_RESOURCE) { rtnValue += (int)rtnValue * /*-50*/ GC.getBUILD_ON_RESOURCE_PERCENT() / 100; } if (pPlot->isRiver()) { rtnValue += (int)rtnValue * /*15*/ GC.getBUILD_ON_RIVER_PERCENT() / 100; } if (pPlot->isCoastalLand(GC.getMIN_WATER_SIZE_FOR_OCEAN())) { rtnValue += (int)rtnValue * /*25*/ GC.getSETTLER_BUILD_ON_COAST_PERCENT() / 100; int iNavalFlavor = pPlayer->GetGrandStrategyAI()->GetPersonalityAndGrandStrategy((FlavorTypes)m_iNavalIndex); if (iNavalFlavor > 7) { rtnValue += (int)rtnValue * /*25*/ GC.getSETTLER_BUILD_ON_COAST_PERCENT() / 100; } if (pPlayer->getCivilizationInfo().isCoastalCiv()) // we really like the coast (England, Norway, Polynesia, Carthage, etc.) { rtnValue *= 2; } } // Nearby Cities? // Human if (pPlayer != NULL && pPlayer->isHuman()) { if (iClosestCityOfMine == 3) { rtnValue /= 2; } } // AI else { int iGrowthFlavor = pPlayer->GetGrandStrategyAI()->GetPersonalityAndGrandStrategy((FlavorTypes)m_iGrowthIndex); int iExpansionFlavor = pPlayer->GetGrandStrategyAI()->GetPersonalityAndGrandStrategy((FlavorTypes)m_iExpansionIndex); int iSweetSpot = 5; iSweetSpot += (iGrowthFlavor > 7) ? 1 : 0; iSweetSpot += (iExpansionFlavor > 7) ? -1 : 0; iSweetSpot += (iGrowthFlavor < 4) ? -1 : 0; iSweetSpot += (iExpansionFlavor < 4) ? 1 : 0; iSweetSpot = max(4,iSweetSpot); iSweetSpot = min(6,iSweetSpot); if (iClosestCityOfMine == iSweetSpot) { // 1.5 was not enough 2.0 was too much, so lets split the difference rtnValue *= 175; rtnValue /= 100; } else if (iClosestCityOfMine < iSweetSpot) { rtnValue /= 2; } else if (iClosestCityOfMine > 7) { rtnValue *= 2; rtnValue /= 3; } // use boldness to decide if we want to push close to enemies int iBoldness = pPlayer->GetDiplomacyAI()->GetBoldness(); if (iBoldness < 4) { if (iClosestEnemyCity <= 4) { rtnValue /= 4; } else if (iClosestEnemyCity == 5) { rtnValue /= 2; } } else if (iBoldness > 7) { if (iClosestEnemyCity <= 5 && iClosestCityOfMine < 8) { rtnValue *= 3; rtnValue /= 2; } } else { if (iClosestEnemyCity < 5) { rtnValue *= 2; rtnValue /= 3; } } // if we are offshore, pull cities in tighter if (iCapitalArea != pPlot->getArea()) { if (iClosestCityOfMine < 7) { rtnValue *= 3; rtnValue /= 2; } } } rtnValue = (rtnValue > 0) ? rtnValue : 0; return rtnValue; } /// Retrieve the relative fertility of this plot (alone) int CvCitySiteEvaluator::PlotFertilityValue(CvPlot* pPlot) { int rtnValue = 0; if(!pPlot->isWater() && !pPlot->isImpassable() && !pPlot->isMountain()) { rtnValue += ComputeFoodValue(pPlot, NULL); rtnValue += ComputeProductionValue(pPlot, NULL); rtnValue += ComputeGoldValue(pPlot, NULL); rtnValue += ComputeScienceValue(pPlot, NULL); rtnValue += ComputeTradeableResourceValue(pPlot, NULL); } if(rtnValue < 0) rtnValue = 0; return rtnValue; } /// How strong a city site can we find nearby for this type of yield? int CvCitySiteEvaluator::BestFoundValueForSpecificYield(CvPlayer* pPlayer, YieldTypes eYield) { pPlayer; eYield; return 0; } // PROTECTED METHODS (can be overridden in derived classes) /// Value of plot for providing food int CvCitySiteEvaluator::ComputeFoodValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; // From tile yield if(pPlayer == NULL) { rtnValue += pPlot->calculateNatureYield(YIELD_FOOD, NO_TEAM); } else { rtnValue += pPlot->calculateNatureYield(YIELD_FOOD, pPlayer->getTeam()); } // From resource TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { rtnValue += GC.getResourceInfo(eResource)->getYieldChange(YIELD_FOOD); CvImprovementEntry* pImprovement = GC.GetGameImprovements()->GetImprovementForResource(eResource); if(pImprovement) { rtnValue += pImprovement->GetImprovementResourceYield(eResource, YIELD_FOOD); } } return rtnValue * m_iFlavorMultiplier[YIELD_FOOD]; } /// Value of plot for providing Happiness int CvCitySiteEvaluator::ComputeHappinessValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; // From resource TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { // Add a bonus if adds Happiness if(!pPlot->isOwned()) { rtnValue += GC.getResourceInfo(eResource)->getHappiness(); } // If we don't have this resource yet, increase it's value if(pPlayer) { if(pPlayer->getNumResourceTotal(eResource) == 0) rtnValue *= 5; } } return rtnValue * m_iFlavorMultiplier[SITE_EVALUATION_HAPPINESS]; } /// Value of plot for providing hammers int CvCitySiteEvaluator::ComputeProductionValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; // From tile yield if(pPlayer == NULL) { rtnValue += pPlot->calculateNatureYield(YIELD_PRODUCTION, NO_TEAM); } else { rtnValue += pPlot->calculateNatureYield(YIELD_PRODUCTION, pPlayer->getTeam()); } // From resource TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { rtnValue += GC.getResourceInfo(eResource)->getYieldChange(YIELD_PRODUCTION); CvImprovementEntry* pImprovement = GC.GetGameImprovements()->GetImprovementForResource(eResource); if(pImprovement) { rtnValue += pImprovement->GetImprovementResourceYield(eResource, YIELD_PRODUCTION); } } return rtnValue * m_iFlavorMultiplier[YIELD_PRODUCTION]; } /// Value of plot for providing gold int CvCitySiteEvaluator::ComputeGoldValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; // From tile yield if(pPlayer == NULL) { rtnValue += pPlot->calculateNatureYield(YIELD_GOLD, NO_TEAM); } else { rtnValue += pPlot->calculateNatureYield(YIELD_GOLD, pPlayer->getTeam()); } // From resource TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { rtnValue += GC.getResourceInfo(eResource)->getYieldChange(YIELD_GOLD); CvImprovementEntry* pImprovement = GC.GetGameImprovements()->GetImprovementForResource(eResource); if(pImprovement) { rtnValue += pImprovement->GetImprovementResourceYield(eResource, YIELD_GOLD); } } return rtnValue * m_iFlavorMultiplier[YIELD_GOLD]; } /// Value of plot for providing science int CvCitySiteEvaluator::ComputeScienceValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; CvAssert(pPlot); if(!pPlot) return rtnValue; // From tile yield if(pPlayer == NULL) { rtnValue += pPlot->calculateNatureYield(YIELD_SCIENCE, NO_TEAM); } else { rtnValue += pPlot->calculateNatureYield(YIELD_SCIENCE, pPlayer->getTeam()); } // From resource TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { rtnValue += GC.getResourceInfo(eResource)->getYieldChange(YIELD_SCIENCE); CvImprovementEntry* pImprovement = GC.GetGameImprovements()->GetImprovementForResource(eResource); if(pImprovement) { rtnValue += pImprovement->GetImprovementResourceYield(eResource, YIELD_SCIENCE); } } return rtnValue * m_iFlavorMultiplier[YIELD_SCIENCE]; } /// Vale of plot for providing faith int CvCitySiteEvaluator::ComputeFaithValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; CvAssert(pPlot); if(!pPlot) return rtnValue; // From tile yield if(pPlayer == NULL) { rtnValue += pPlot->calculateNatureYield(YIELD_FAITH, NO_TEAM); } else { rtnValue += pPlot->calculateNatureYield(YIELD_FAITH, pPlayer->getTeam()); } // From resource TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { rtnValue += GC.getResourceInfo(eResource)->getYieldChange(YIELD_FAITH); CvImprovementEntry* pImprovement = GC.GetGameImprovements()->GetImprovementForResource(eResource); if(pImprovement) { rtnValue += pImprovement->GetImprovementResourceYield(eResource, YIELD_FAITH); } } return rtnValue * m_iFlavorMultiplier[YIELD_FAITH]; } /// Value of plot for providing tradeable resources int CvCitySiteEvaluator::ComputeTradeableResourceValue(CvPlot* pPlot, CvPlayer* pPlayer) { int rtnValue = 0; CvAssert(pPlot); if(!pPlot) return rtnValue; // If we already own this Tile then we already have access to the Strategic Resource if(pPlot->isOwned()) { return rtnValue; } TeamTypes eTeam = NO_TEAM; if(pPlayer != NULL) { eTeam = pPlayer->getTeam(); } ResourceTypes eResource; eResource = pPlot->getResourceType(eTeam); if(eResource != NO_RESOURCE) { ResourceUsageTypes eResourceUsage = GC.getResourceInfo(eResource)->getResourceUsage(); // Multiply number of tradeable resources by flavor value if(eResourceUsage == RESOURCEUSAGE_LUXURY || eResourceUsage == RESOURCEUSAGE_STRATEGIC) { rtnValue += pPlot->getNumResource() * m_iFlavorMultiplier[SITE_EVALUATION_RESOURCES]; if(pPlayer) { // If we don't have this resource yet, increase it's value if(pPlayer->getNumResourceTotal(eResource) == 0) rtnValue *= 3; } } } return rtnValue; } /// Value of plot for providing strategic value int CvCitySiteEvaluator::ComputeStrategicValue(CvPlot* pPlot, CvPlayer* pPlayer, int iPlotsFromCity) { int rtnValue = 0; CvAssert(pPlot); if(!pPlot) return rtnValue; // Possible chokepoint if impassable terrain and exactly 2 plots from city if(iPlotsFromCity == 2 && (pPlot->isImpassable() || pPlot->isMountain())) { rtnValue += /*5*/ GC.getCHOKEPOINT_STRATEGIC_VALUE(); } // Hills in first ring are useful for defense and production if(iPlotsFromCity == 1 && pPlot->isHills()) { rtnValue += /*3*/ GC.getHILL_STRATEGIC_VALUE(); } // Some Features are less attractive to settle in, (e.g. Jungles, since it takes a while before you can clear them and they slow down movement) if(pPlot->getFeatureType() != NO_FEATURE) { int iWeight = GC.getFeatureInfo(pPlot->getFeatureType())->getStartingLocationWeight(); if(iWeight != 0 && iPlotsFromCity == 1) { rtnValue += iWeight; } } // Nearby City if(pPlayer != NULL && pPlot->isCity()) { // if (pPlot->getOwner() == pPlayer->getID()) { rtnValue += /*-1000*/ GC.getALREADY_OWNED_STRATEGIC_VALUE(); } } // POSSIBLE FUTURE: Is there any way for us to know to grab land between us and another major civ? rtnValue *= m_iFlavorMultiplier[SITE_EVALUATION_STRATEGIC]; return rtnValue; } //===================================== // CvSiteEvaluatorForSettler //===================================== /// Constructor CvSiteEvaluatorForSettler::CvSiteEvaluatorForSettler(void) { } /// Destructor CvSiteEvaluatorForSettler::~CvSiteEvaluatorForSettler(void) { } /// Value of this site for a settler int CvSiteEvaluatorForSettler::PlotFoundValue(CvPlot* pPlot, CvPlayer* pPlayer, YieldTypes eYield, bool bCoastOnly) { CvAssert(pPlot); if(!pPlot) return 0; if(!CanFound(pPlot, pPlayer, true)) { return 0; } // Is there any reason this site doesn't work for a settler? // // First must be on coast if settling a new continent bool bIsCoastal = pPlot->isCoastalLand(GC.getMIN_WATER_SIZE_FOR_OCEAN()); CvArea* pArea = pPlot->area(); CvAssert(pArea); if(!pArea) return 0; int iNumAreaCities = pArea->getCitiesPerPlayer(pPlayer->GetID()); if(bCoastOnly && !bIsCoastal && iNumAreaCities == 0) { return 0; } // Seems okay for a settler, use base class to determine exact value else { return CvCitySiteEvaluator::PlotFoundValue(pPlot, pPlayer, eYield); } } //===================================== // CvSiteEvaluatorForStart //===================================== /// Constructor CvSiteEvaluatorForStart::CvSiteEvaluatorForStart(void) { } /// Destructor CvSiteEvaluatorForStart::~CvSiteEvaluatorForStart(void) { } /// Overridden - ignore flavors for initial site selection void CvSiteEvaluatorForStart::ComputeFlavorMultipliers(CvPlayer*) { // Set all to 1; we assign start position without considering flavors yet for(int iI = 0; iI < NUM_SITE_EVALUATION_FACTORS; iI++) { m_iFlavorMultiplier[iI] = 1; } } /// Value of this site for a civ starting location int CvSiteEvaluatorForStart::PlotFoundValue(CvPlot* pPlot, CvPlayer* pPlayer, YieldTypes, bool) { int rtnValue = 0; int iI; CvPlot* pLoopPlot(NULL); int iCelticForestCount = 0; CvAssert(pPlot); if(!pPlot) return rtnValue; if(!CanFound(pPlot, pPlayer, false)) { return rtnValue; } // Is there any reason this site doesn't work for a start location? // // Not on top of a goody hut if(pPlot->isGoody()) { return 0; } // We have our own special method of scoring, so don't call the base class for that (like settler version does) for(iI = 0; iI < NUM_CITY_PLOTS; iI++) { pLoopPlot = plotCity(pPlot->getX(), pPlot->getY(), iI); // Too close to map edge? if(pLoopPlot == NULL) { return 0; } else { int iDistance = plotDistance(pPlot->getX(), pPlot->getY(), pLoopPlot->getX(), pLoopPlot->getY()); CvAssert(iDistance <= NUM_CITY_RINGS); if(iDistance > NUM_CITY_RINGS) continue; int iRingModifier = m_iRingModifier[iDistance]; // Skip the city plot itself for now if(iDistance != 0) { rtnValue += iRingModifier * ComputeFoodValue(pLoopPlot, pPlayer) * /*6*/ GC.getSTART_AREA_FOOD_MULTIPLIER(); rtnValue += iRingModifier * ComputeHappinessValue(pLoopPlot, pPlayer) * /*12*/ GC.getSTART_AREA_HAPPINESS_MULTIPLIER(); rtnValue += iRingModifier * ComputeProductionValue(pLoopPlot, pPlayer) * /*8*/ GC.getSTART_AREA_PRODUCTION_MULTIPLIER(); rtnValue += iRingModifier * ComputeGoldValue(pLoopPlot, pPlayer) * /*2*/ GC.getSTART_AREA_GOLD_MULTIPLIER(); rtnValue += iRingModifier * ComputeScienceValue(pLoopPlot, pPlayer) * /*1*/ GC.getSTART_AREA_SCIENCE_MULTIPLIER(); rtnValue += iRingModifier * ComputeFaithValue(pLoopPlot, pPlayer) * /*1*/ GC.getSTART_AREA_FAITH_MULTIPLIER(); rtnValue += iRingModifier * ComputeTradeableResourceValue(pLoopPlot, pPlayer) * /*1*/ GC.getSTART_AREA_RESOURCE_MULTIPLIER(); rtnValue += iRingModifier * ComputeStrategicValue(pLoopPlot, pPlayer, iDistance) * /*1*/ GC.getSTART_AREA_STRATEGIC_MULTIPLIER(); } if (pPlayer) { if (iDistance == 1 && pLoopPlot->getFeatureType() == FEATURE_FOREST) { if (pLoopPlot->getImprovementType() == NO_IMPROVEMENT && pPlayer->GetPlayerTraits()->IsFaithFromUnimprovedForest()) { iCelticForestCount += 1; } } } } } if (iCelticForestCount >= 3) { rtnValue += 2 * 1000 * m_iFlavorMultiplier[YIELD_FAITH]; } else if (iCelticForestCount >= 1) { rtnValue += 1 * 1000 * m_iFlavorMultiplier[YIELD_FAITH]; } if(rtnValue < 0) rtnValue = 0; // Finally, look at the city plot itself and use it as an overall multiplier if(pPlot->getResourceType() != NO_RESOURCE) { rtnValue += rtnValue * GC.getBUILD_ON_RESOURCE_PERCENT() / 100; } if(pPlot->isRiver()) { rtnValue += rtnValue * GC.getBUILD_ON_RIVER_PERCENT() / 100; } if(pPlot->isCoastalLand()) { rtnValue += rtnValue * GC.getSTART_AREA_BUILD_ON_COAST_PERCENT() / 100; } return rtnValue; }
[ "delnar.ersike@gmail.com" ]
delnar.ersike@gmail.com
13afad930b9340edc1c3b12dfa066342369e7087
5dc0123b8ee938d5e9bceaa0986c469b267fd9b6
/Chapter9/ex9_27.cpp
b58545f57e879bb5743bda1c19c8bde506e95c89
[]
no_license
RenzoWang/CPlusPlusPrimer.github.io
e40adbbd18eaf1b9b83ef2e32b6d966cbfb25719
6321bdf4e5054bf5570e92a765185f3d3241bdaf
refs/heads/master
2023-05-09T22:39:55.618515
2021-05-31T14:17:59
2021-05-31T14:17:59
358,492,385
0
0
null
null
null
null
UTF-8
C++
false
false
749
cpp
/* * File: ex9_27.cpp * Project: Chapter9 * Author: Renzo WANG (you@you.you) * ----- * Modified By: Renzo WANG (you@you.you>) * ----- * Brief: Write a program to find and remove the odd-valued elements in a forward_list<int>. * -----command: g++ -std=c++1y ex9_27.cpp -o ex9_27 */ #include<iostream> #include<forward_list> using std::cout; using std::cin; using std::forward_list; auto remove_odd(forward_list<int> & flist) { auto is_odd = [](int i) {return (i & 0x1);}; flist.remove_if(is_odd); } int main() { forward_list<int> data; auto it = data.cbefore_begin(); for(int i; cin >> i; ++it ) data.insert_after(it, i); remove_odd(data); for(auto i:data) cout << i << " "; return 0; }
[ "wrzeternal@163.com" ]
wrzeternal@163.com
2d6faf4aeed75cd17de9da0a56975fc627833086
07c61596c1fba2e2a7034fe5af9707794ea2e2c1
/Kattis/nineknights.cpp
fd83f63f88331046849a016c6640e4536a02e0fd
[]
no_license
H-Shen/Collection_of_my_coding_practice
2fcb2f8fef9451ad4a3a9c063bbf6a34ea5966b4
6415552d38a756c9c89de0c774799654c73073a6
refs/heads/master
2023-08-24T21:19:08.886667
2023-08-22T03:47:39
2023-08-22T03:47:39
180,731,825
8
1
null
2021-08-13T18:25:25
2019-04-11T06:48:09
C++
UTF-8
C++
false
false
1,946
cpp
// https://open.kattis.com/problems/nineknights #include <bits/extc++.h> using namespace std; const double eps = 1e-8; const int MAXN = 5; inline int sgn(double a) { if (a < -eps) return -1; if (a > eps) return 1; return 0; } bool judge(const vector<vector<char> > &A, int i, int j) { char s = '\0'; try { s = A.at(i - 2).at(j - 1); if (s == 'k') return false; } catch (...) {} try { s = A.at(i - 1).at(j - 2); if (s == 'k') return false; } catch (...) {} try { s = A.at(i + 1).at(j - 2); if (s == 'k') return false; } catch (...) {} try { s = A.at(i + 2).at(j - 1); if (s == 'k') return false; } catch (...) {} try { s = A.at(i - 2).at(j + 1); if (s == 'k') return false; } catch (...) {} try { s = A.at(i - 1).at(j + 2); if (s == 'k') return false; } catch (...) {} try { s = A.at(i + 1).at(j + 2); if (s == 'k') return false; } catch (...) {} try { s = A.at(i + 2).at(j + 1); if (s == 'k') return false; } catch (...) {} return true; } int main() { ios_base::sync_with_stdio(false); vector<vector<char> > A(MAXN); for (auto &&i : A) { i.resize(MAXN); } string s; for (int i = 0; i < MAXN; ++i) { cin >> s; for (int j = 0; j < MAXN; ++j) { A[i][j] = s[j]; } } int knightCnt = 0; for (int i = 0; i < MAXN; ++i) { for (int j = 0; j < MAXN; ++j) { if (A[i][j] == 'k') { ++knightCnt; if (!judge(A, i, j)) { cout << "invalid" << endl; return 0; } } } } if (knightCnt != 9) { cout << "invalid" << endl; } else { cout << "valid" << endl; } return 0; }
[ "haohu.shen@ucalgary.ca" ]
haohu.shen@ucalgary.ca
1b09fcc12d8a7e8ca46921eb949e04de19f1773f
7ed14d043993cccec210b754d77e95deff9c2d7c
/RenderACube/stdafx.cpp
c6e87fa912d3b7ad6f3bbd792273d3e13bf3c2f5
[]
no_license
pdlogingithub/Minimum-CPU-Renderer-Toy
9ae00a549185d174f38b71c2fab49aa65d427f68
80833c969a4de55b6d092cadd04db2e81026d93e
refs/heads/master
2021-07-25T11:18:23.287503
2017-11-05T06:38:51
2017-11-05T06:38:51
109,551,803
1
0
null
null
null
null
UTF-8
C++
false
false
290
cpp
// stdafx.cpp : source file that includes just the standard includes // RenderACube.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "xiangyunyang64@gmail.com" ]
xiangyunyang64@gmail.com
220a2492c5c9e4aca00392b1e8efcf3860906090
3894c1c0a265dfa91e114ff4df12236454efdb2c
/LeetCode/iter2/C++/SwapNodesInPairs.cpp
24d871f3eb8b967d02ffbe3556b0ad97f2ad683f
[]
no_license
jonathenzc/Algorithm
d770802337a8f4f36b94e42722d4d1954b45f408
f6b3d1a3f987dd3f38aa38c6de4b37caef0880bc
refs/heads/master
2020-04-04T00:16:38.780515
2020-03-12T16:10:43
2020-03-12T16:10:43
33,028,640
2
0
null
null
null
null
UTF-8
C++
false
false
1,338
cpp
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <sstream> #include <unordered_map> #include <unordered_set> #include <utility> #include <queue> using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: ListNode* swapPairs(ListNode* head) { if (head == NULL || head->next == NULL) return head; ListNode *nextNode = head->next; ListNode *current = nextNode->next; ListNode *preNode = head; nextNode->next = head; head->next = current; head = nextNode; while (current != NULL && current->next != NULL) { nextNode = current->next; current->next = nextNode->next; nextNode->next = current; preNode->next = nextNode; preNode = current; current = current->next; } return head; } }; void printList(ListNode *l) { while (l != NULL) { cout << l->val << " "; l = l->next; } cout << endl; } int main(void) { ListNode *l1 = new ListNode(1); ListNode *l2 = new ListNode(2); ListNode *l3 = new ListNode(3); ListNode *l4 = new ListNode(4); ListNode *l5 = new ListNode(5); ListNode *l6 = new ListNode(6); l1->next = l2; l2->next = l3; l3->next = l4; l4->next = l5; l5->next = l6; Solution ss; ListNode *ret = ss.swapPairs(l1); printList(ret); return 0; }
[ "459309661@163.com" ]
459309661@163.com
9242dac1c9b5db8d8c1da435487e82eb25f1f245
87c2a39f802ef610f94de448b3b3fe9148fad933
/src/SoundMgr.cpp
c771398973307b4c21fdd00876640fd68e272820
[]
no_license
martin96richard/bomberman_indie_studio_2018
06b24f27ac19b6d639f34758718b76d26ebf4593
58e9178af829dbec3517be75834dadfea28b6ca1
refs/heads/master
2020-05-17T07:58:13.558317
2019-04-26T13:00:37
2019-04-26T13:00:37
183,592,614
0
0
null
null
null
null
UTF-8
C++
false
false
990
cpp
// // EPITECH PROJECT, 2018 // Indie_studio // File description: // Sound Manager // #include "SoundMgr.hpp" SoundMgr::SoundMgr() { _engine = irrklang::createIrrKlangDevice(); } SoundMgr::~SoundMgr() { } void SoundMgr::playMusic(void) { _music = _engine->play2D(THEME_PATH, true, false, true, irrklang::ESM_AUTO_DETECT, true); } void SoundMgr::stopMusic(void) { _music->stop(); _music->drop(); } void SoundMgr::closeSMgr(void) { _engine->drop(); } void SoundMgr::playSound(Stype type) { switch (type) { case EXPLODE: _engine->play2D(SEXP_PATH, false, false, true, irrklang::ESM_AUTO_DETECT, false); break; case FUSE: _engine->play2D(SFUS_PATH, false, false, true, irrklang::ESM_AUTO_DETECT, false); break; case GMOVER: _engine->play2D(SGVER_PATH, false, false, true, irrklang::ESM_AUTO_DETECT, false); break; case POWUP: _engine->play2D(SPWUP_PATH, false, false, true, irrklang::ESM_AUTO_DETECT, false); break; default: break; } }
[ "martin.richard@epitech.eu" ]
martin.richard@epitech.eu
a6cd68a73741f13bc20aa9f6ff3bbb11ad9d9437
949e1ccffd1dcb5fc1c72f6f82226eb49a767c65
/Offer/NetEase/1/main.cpp
dda60f92de7e8940419aaaf25a603b7b158748b4
[]
no_license
WhatTheNathan/n-Algorithm
4b98ee8c405b73cd8b38738b93fed69ac5544da4
b1ae44e92b2a852c436029fa615348ab2f6330c9
refs/heads/master
2021-05-09T17:20:43.071738
2018-10-13T14:25:28
2018-10-13T14:25:28
119,136,298
0
0
null
null
null
null
UTF-8
C++
false
false
473
cpp
#include <iostream> using namespace::std; int main() { int N; string turn; cin>>N; cin>>turn; int direct = 0; char direction[] = {'N','E','S','W'}; for(int i=0;i<N;i++){ if(turn[i] == 'L') { direct = direct - 1; if(direct == -1) direct = 3; } else if(turn[i] == 'R') { direct = (direct + 1) % 4; } } cout<<direction[direct]<<endl; return 0; }
[ "nathanliuyolo@gmail.com" ]
nathanliuyolo@gmail.com
26ace50f206d3fa09ed61023021186c4f6619dc0
e33de627a5e2b6a2ff84c408dcf97c5e0fd6f07e
/programers/level1/문자열다루기기본.cpp
0c6ead18fdfb85dbe7f50c989e87098b8a1bcf3a
[]
no_license
urbanGY/problemSolving
41a870f1d0487030434b8bc68ebc390b3e84d837
02860611622161745bf1a44dd22b8694e5e44c56
refs/heads/master
2021-08-04T10:50:22.568709
2021-07-13T13:38:45
2021-07-13T13:38:45
142,012,167
1
0
null
null
null
null
UTF-8
C++
false
false
251
cpp
#include <string> #include <vector> using namespace std; bool solution(string s) { int len = s.size(); if(!(len == 4 || len == 6)) return false; for(auto c : s){ if(!(c >= '0' && c <= '9')) return false; } return true; }
[ "sfsfkj@gmail.com" ]
sfsfkj@gmail.com
b4ca1f5ec606fa04c553905bd8a45bdffeb2f6fe
41cc486683181d0c8e1a89d18dcc6837501dfda5
/nJinnVk/SystemStartup.cpp
c51d0417b015530e16dcc59061a1b5d0beea3567
[]
no_license
romanchom/nJinnVulkan
3f2131f8a7bacfc3af9be1b8915320fd6798edc5
491746e59a221e456e008bec7bf0266f18b961b0
refs/heads/master
2022-11-20T10:27:39.254873
2017-07-31T10:09:40
2017-07-31T10:09:40
279,956,877
0
0
null
null
null
null
UTF-8
C++
false
false
1,416
cpp
#include "stdafx.hpp" #include "SystemStartup.hpp" #include "Config.hpp" #include "Debug.hpp" #include "ThreadPool.hpp" #include "Context.hpp" #include "Memory.hpp" #include "Screen.hpp" #include "ResourceUploader.hpp" #include "PipelineFactory.hpp" #include "ResourceManager.hpp" #include "RendererSystem.hpp" #include "Clock.hpp" #include "UniformBuffer.hpp" namespace nJinn { using namespace nJinn::literals; void nJinnStart() { debug = new Debug(config.getValue<uint32_t>("debug")); threadPool = new ThreadPool(config.getValue<uint32_t>("threads")); context = new Context(); memory = new Memory(); uniformManager = new UniformManager(1_MiB); screen = new Screen(config.getValue<uint32_t>("rendering.width"), config.getValue<uint32_t>("rendering.height")); resourceUploader = new ResourceUploader(); pipelineFactory = new PipelineFactory(); resourceManager = new ResourceManager(); rendererSystem = new RendererSystem(); clock = new Clock(); } template<typename T> void safeDelete(T *& pointer) { delete pointer; pointer = nullptr; } void nJinnStop() { context->dev().waitIdle(); safeDelete(clock); safeDelete(rendererSystem); safeDelete(resourceManager); safeDelete(pipelineFactory); safeDelete(resourceUploader); safeDelete(screen); safeDelete(uniformManager); safeDelete(memory); safeDelete(context); safeDelete(threadPool); safeDelete(debug); } }
[ "romanchom@gmail.com" ]
romanchom@gmail.com
ea465e04f0f04b7d05ef6c208bd846f6da68f0a9
8dc84558f0058d90dfc4955e905dab1b22d12c08
/components/services/leveldb/leveldb_database_impl.h
8a1140599feb8e75d0af17749dc75685c7671580
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
5,054
h
// Copyright 2016 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 COMPONENTS_SERVICES_LEVELDB_LEVELDB_DATABASE_IMPL_H_ #define COMPONENTS_SERVICES_LEVELDB_LEVELDB_DATABASE_IMPL_H_ #include <memory> #include <vector> #include "base/trace_event/memory_dump_provider.h" #include "base/unguessable_token.h" #include "components/services/leveldb/public/interfaces/leveldb.mojom.h" #include "mojo/public/cpp/bindings/interface_request.h" #include "third_party/leveldatabase/src/include/leveldb/cache.h" #include "third_party/leveldatabase/src/include/leveldb/db.h" namespace leveldb { // The backing to a database object that we pass to our called. class LevelDBDatabaseImpl : public mojom::LevelDBDatabase, public base::trace_event::MemoryDumpProvider { public: LevelDBDatabaseImpl(std::unique_ptr<leveldb::Env> environment, std::unique_ptr<leveldb::DB> db, std::unique_ptr<leveldb::Cache> cache, base::Optional<base::trace_event::MemoryAllocatorDumpGuid> memory_dump_id); ~LevelDBDatabaseImpl() override; // Overridden from LevelDBDatabase: void Put(const std::vector<uint8_t>& key, const std::vector<uint8_t>& value, PutCallback callback) override; void Delete(const std::vector<uint8_t>& key, DeleteCallback callback) override; void DeletePrefixed(const std::vector<uint8_t>& key_prefix, DeletePrefixedCallback callback) override; void Write(std::vector<mojom::BatchedOperationPtr> operations, WriteCallback callback) override; void Get(const std::vector<uint8_t>& key, GetCallback callback) override; void GetPrefixed(const std::vector<uint8_t>& key_prefix, GetPrefixedCallback callback) override; void CopyPrefixed(const std::vector<uint8_t>& source_key_prefix, const std::vector<uint8_t>& destination_key_prefix, CopyPrefixedCallback callback) override; void GetSnapshot(GetSnapshotCallback callback) override; void ReleaseSnapshot(const base::UnguessableToken& snapshot) override; void GetFromSnapshot(const base::UnguessableToken& snapshot, const std::vector<uint8_t>& key, GetCallback callback) override; void NewIterator(NewIteratorCallback callback) override; void NewIteratorFromSnapshot( const base::UnguessableToken& snapshot, NewIteratorFromSnapshotCallback callback) override; void ReleaseIterator(const base::UnguessableToken& iterator) override; void IteratorSeekToFirst(const base::UnguessableToken& iterator, IteratorSeekToFirstCallback callback) override; void IteratorSeekToLast(const base::UnguessableToken& iterator, IteratorSeekToLastCallback callback) override; void IteratorSeek(const base::UnguessableToken& iterator, const std::vector<uint8_t>& target, IteratorSeekToLastCallback callback) override; void IteratorNext(const base::UnguessableToken& iterator, IteratorNextCallback callback) override; void IteratorPrev(const base::UnguessableToken& iterator, IteratorPrevCallback callback) override; // base::trace_event::MemoryDumpProvider implementation. bool OnMemoryDump(const base::trace_event::MemoryDumpArgs& args, base::trace_event::ProcessMemoryDump* pmd) override; private: // Returns the state of |it| to a caller. Note: This assumes that all the // iterator movement methods have the same callback signature. We don't // directly reference the underlying type in case of bindings change. void ReplyToIteratorMessage(leveldb::Iterator* it, IteratorSeekToFirstCallback callback); leveldb::Status DeletePrefixedHelper(const leveldb::Slice& key_prefix, leveldb::WriteBatch* batch); leveldb::Status CopyPrefixedHelper( const std::vector<uint8_t>& source_key_prefix, const std::vector<uint8_t>& destination_key_prefix, leveldb::WriteBatch* batch); std::unique_ptr<leveldb::Env> environment_; std::unique_ptr<leveldb::Cache> cache_; std::unique_ptr<leveldb::DB> db_; base::Optional<base::trace_event::MemoryAllocatorDumpGuid> memory_dump_id_; std::map<base::UnguessableToken, const Snapshot*> snapshot_map_; // TODO(erg): If we have an existing iterator which depends on a snapshot, // and delete the snapshot from the client side, that shouldn't delete the // snapshot maybe? At worse it's a DDoS if there's multiple users of the // system, but this maybe should be fixed... std::map<base::UnguessableToken, Iterator*> iterator_map_; DISALLOW_COPY_AND_ASSIGN(LevelDBDatabaseImpl); }; } // namespace leveldb #endif // COMPONENTS_SERVICES_LEVELDB_LEVELDB_DATABASE_IMPL_H_
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
8b4f87eda099a9a261c0c93fe36d2003dd0070de
6e4242884615a850ee5d98bae468fa82e5012b66
/xwalkdriver/logging.cc
3ce9ece64b2b5aeee5efb4fd2430701420f6a90e
[ "BSD-3-Clause" ]
permissive
luisxiaomai/crosswalk-web-driver
5d13210eb300cf6c88f3c37999593dcc17d99331
d01c17855b24ab3ef2cf6e94cf1716dc918cb8a1
refs/heads/master
2021-01-18T05:02:42.428034
2014-12-24T02:49:04
2014-12-24T02:49:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,069
cc
// 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. #include "xwalk/test/xwalkdriver/logging.h" #include <stdio.h> #include "base/basictypes.h" #include "base/command_line.h" #include "base/json/json_reader.h" #include "base/logging.h" #include "base/strings/stringprintf.h" #include "base/time/time.h" #include "xwalk/test/xwalkdriver/capabilities.h" #include "xwalk/test/xwalkdriver/xwalk/console_logger.h" #include "xwalk/test/xwalkdriver/xwalk/performance_logger.h" #include "xwalk/test/xwalkdriver/xwalk/status.h" #include "xwalk/test/xwalkdriver/session.h" #if defined(OS_POSIX) #include <fcntl.h> // NOLINT #include <unistd.h> // NOLINT #endif namespace { Log::Level g_log_level = Log::kWarning; int64 g_start_time = 0; // Array indices are the Log::Level enum values. const char* kLevelToName[] = { "ALL", // kAll "DEBUG", // kDebug "INFO", // kInfo "WARNING", // kWarning "SEVERE", // kError "OFF", // kOff }; const char* LevelToName(Log::Level level) { const int index = level - Log::kAll; CHECK_GE(index, 0); CHECK_LT(static_cast<size_t>(index), arraysize(kLevelToName)); return kLevelToName[index]; } struct LevelPair { const char* name; Log::Level level; }; const LevelPair kNameToLevel[] = { {"ALL", Log::kAll}, {"DEBUG", Log::kDebug}, {"INFO", Log::kInfo}, {"WARNING", Log::kWarning}, {"SEVERE", Log::kError}, {"OFF", Log::kOff}, }; Log::Level GetLevelFromSeverity(int severity) { switch (severity) { case logging::LOG_FATAL: case logging::LOG_ERROR: return Log::kError; case logging::LOG_WARNING: return Log::kWarning; case logging::LOG_INFO: return Log::kInfo; case logging::LOG_VERBOSE: default: return Log::kDebug; } } WebDriverLog* GetSessionLog() { Session* session = GetThreadLocalSession(); if (!session) return NULL; return session->driver_log.get(); } bool InternalIsVLogOn(int vlog_level) { WebDriverLog* session_log = GetSessionLog(); Log::Level session_level = session_log ? session_log->min_level() : Log::kOff; Log::Level level = g_log_level < session_level ? g_log_level : session_level; return GetLevelFromSeverity(vlog_level * -1) >= level; } bool HandleLogMessage(int severity, const char* file, int line, size_t message_start, const std::string& str) { Log::Level level = GetLevelFromSeverity(severity); std::string message = str.substr(message_start); if (level >= g_log_level) { const char* level_name = LevelToName(level); std::string entry = base::StringPrintf( "[%.3lf][%s]: %s", base::TimeDelta(base::TimeTicks::Now() - base::TimeTicks::FromInternalValue(g_start_time)) .InSecondsF(), level_name, message.c_str()); fprintf(stderr, "%s", entry.c_str()); fflush(stderr); } WebDriverLog* session_log = GetSessionLog(); if (session_log) session_log->AddEntry(level, message); return true; } } // namespace const char WebDriverLog::kBrowserType[] = "browser"; const char WebDriverLog::kDriverType[] = "driver"; const char WebDriverLog::kPerformanceType[] = "performance"; bool WebDriverLog::NameToLevel(const std::string& name, Log::Level* out_level) { for (size_t i = 0; i < arraysize(kNameToLevel); ++i) { if (name == kNameToLevel[i].name) { *out_level = kNameToLevel[i].level; return true; } } return false; } WebDriverLog::WebDriverLog(const std::string& type, Log::Level min_level) : type_(type), min_level_(min_level), entries_(new base::ListValue()) { } WebDriverLog::~WebDriverLog() { VLOG(1) << "Log type '" << type_ << "' lost " << entries_->GetSize() << " entries on destruction"; } scoped_ptr<base::ListValue> WebDriverLog::GetAndClearEntries() { scoped_ptr<base::ListValue> ret(entries_.release()); entries_.reset(new base::ListValue()); return ret.Pass(); } void WebDriverLog::AddEntryTimestamped(const base::Time& timestamp, Log::Level level, const std::string& source, const std::string& message) { if (level < min_level_) return; scoped_ptr<base::DictionaryValue> log_entry_dict(new base::DictionaryValue()); log_entry_dict->SetDouble("timestamp", static_cast<int64>(timestamp.ToJsTime())); log_entry_dict->SetString("level", LevelToName(level)); if (!source.empty()) log_entry_dict->SetString("source", source); log_entry_dict->SetString("message", message); entries_->Append(log_entry_dict.release()); } const std::string& WebDriverLog::type() const { return type_; } void WebDriverLog::set_min_level(Level min_level) { min_level_ = min_level; } Log::Level WebDriverLog::min_level() const { return min_level_; } bool InitLogging() { InitLogging(&InternalIsVLogOn); g_start_time = base::TimeTicks::Now().ToInternalValue(); CommandLine* cmd_line = CommandLine::ForCurrentProcess(); if (cmd_line->HasSwitch("log-path")) { g_log_level = Log::kInfo; base::FilePath log_path = cmd_line->GetSwitchValuePath("log-path"); #if defined(OS_WIN) FILE* redir_stderr = _wfreopen(log_path.value().c_str(), L"w", stderr); #else FILE* redir_stderr = freopen(log_path.value().c_str(), "w", stderr); #endif if (!redir_stderr) { printf("Failed to redirect stderr to log file.\n"); return false; } } if (cmd_line->HasSwitch("silent")) g_log_level = Log::kOff; if (cmd_line->HasSwitch("verbose")) g_log_level = Log::kAll; // Turn on VLOG for xwalkdriver. This is parsed during logging::InitLogging. cmd_line->AppendSwitchASCII("vmodule", "*/xwalk/test/xwalkdriver/*=3"); logging::SetMinLogLevel(logging::LOG_WARNING); logging::SetLogItems(false, // enable_process_id false, // enable_thread_id false, // enable_timestamp false); // enable_tickcount logging::SetLogMessageHandler(&HandleLogMessage); logging::LoggingSettings logging_settings; logging_settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; return logging::InitLogging(logging_settings); } Status CreateLogs(const Capabilities& capabilities, ScopedVector<WebDriverLog>* out_logs, ScopedVector<DevToolsEventListener>* out_listeners) { ScopedVector<WebDriverLog> logs; ScopedVector<DevToolsEventListener> listeners; Log::Level browser_log_level = Log::kWarning; const LoggingPrefs& prefs = capabilities.logging_prefs; for (LoggingPrefs::const_iterator iter = prefs.begin(); iter != prefs.end(); ++iter) { std::string type = iter->first; Log::Level level = iter->second; if (type == WebDriverLog::kPerformanceType) { if (level != Log::kOff) { WebDriverLog* log = new WebDriverLog(type, Log::kAll); logs.push_back(log); listeners.push_back(new PerformanceLogger(log)); } } else if (type == WebDriverLog::kBrowserType) { browser_log_level = level; } else if (type != WebDriverLog::kDriverType) { // Driver "should" ignore unrecognized log types, per Selenium tests. // For example the Java client passes the "client" log type in the caps, // which the server should never provide. LOG(WARNING) << "Ignoring unrecognized log type: " << type; } } // Create "browser" log -- should always exist. WebDriverLog* browser_log = new WebDriverLog(WebDriverLog::kBrowserType, browser_log_level); logs.push_back(browser_log); // If the level is OFF, don't even bother listening for DevTools events. if (browser_log_level != Log::kOff) listeners.push_back(new ConsoleLogger(browser_log)); out_logs->swap(logs); out_listeners->swap(listeners); return Status(kOk); }
[ "yangangx.han@intel.com" ]
yangangx.han@intel.com
c3881d5becaaf44b1301fc41044a7fc80ee6c735
56b79b147409991ee947d82b608856fc49484de1
/Lab6/Lab6/Lab6/Boid.cpp
c2029c59ea4fb879e124c2ed9707e104db1dde01
[]
no_license
C00196266/Artificial_Intelligence
37bd137d8eed61ae5fb9fc47d0f21ddf02eb6b1b
7cb6234f3ba1b0a056e23363f4b6cc14efa96db5
refs/heads/master
2021-09-16T12:29:42.320547
2018-03-15T15:50:04
2018-03-15T15:50:04
105,781,917
0
0
null
null
null
null
UTF-8
C++
false
false
8,523
cpp
// This file defines the boid class. This includes the attributes found in // boids -- speed, location on the board, acceleration, etc. #include <iostream> #include <vector> #include <string> #include <math.h> #include "SFML/Graphics.hpp" #include "Boid.h" // Global Variables for borders() // desktopTemp gets screen resolution of PC running the program sf::VideoMode desktopTemp = sf::VideoMode::getDesktopMode(); const int window_height = desktopTemp.height; const int window_width = desktopTemp.width; #define w_height window_height #define w_width window_width #define PI 3.141592635 using namespace std; // =============================================== // // ======== Boid Functions from Boid.h =========== //m_leader->update(deltaTime); // =============================================== // // Adds force Pvector to current force Pvector void Boid::applyForce(Pvector force) { acceleration.addVector(force); } // Function that checks and modifies the distance // of a boid if it breaks the law of separation. Pvector Boid::Separation(vector<Boid> boids) { // If the boid we're looking at is a predator, do not run the separation // algorithm // Distance of field of vision for separation between boids float desiredseparation = 20; Pvector steer(0, 0); int count = 0; // For every boid in the system, check if it's too close for (int i = 0; i < boids.size(); i++) { // Calculate distance from current boid to boid we're looking at float d = location.distance(boids[i].location); // If this is a fellow boid and it's too close, move away from it if ((d > 0) && (d < desiredseparation)) { Pvector diff(0,0); diff = diff.subTwoVector(location, boids[i].location); diff.normalize(); diff.divScalar(d); // Weight by distance steer.addVector(diff); count++; } // If current boid is a predator and the boid we're looking at is also // a predator, then separate only slightly else if ((d > 0) && (d < desiredseparation) && predator == true && boids[i].predator == true) { Pvector pred2pred(0, 0); pred2pred = pred2pred.subTwoVector(location, boids[i].location); pred2pred.normalize(); pred2pred.divScalar(d); steer.addVector(pred2pred); count++; } // If current boid is not a predator, but the boid we're looking at is // a predator, then create a large separation Pvector else if ((d > 0) && (d < desiredseparation+70) && boids[i].predator == true) { Pvector pred(0, 0); pred = pred.subTwoVector(location, boids[i].location); pred.mulScalar(900); steer.addVector(pred); count++; } } // Adds average difference of location to acceleration if (count > 0) steer.divScalar((float)count); if (steer.magnitude() > 0) { // Steering = Desired - Velocity steer.normalize(); steer.mulScalar(maxSpeed); steer.subVector(velocity); steer.limit(maxForce); } return steer; } // Alignment calculates the average velocity in the field of view and // manipulates the velocity of the Boid passed as parameter to adjust to that // of nearby boids. Pvector Boid::Alignment(vector<Boid> Boids) { // If the boid we're looking at is a predator, do not run the alignment // algorithm //if (predator == true) // return Pvector(0,0); float neighbordist = 50; Pvector sum(0, 0); int count = 0; for (int i = 0; i < Boids.size(); i++) { float d = location.distance(Boids[i].location); if ((d > 0) && (d < neighbordist)) // 0 < d < 50 { sum.addVector(Boids[i].velocity); count++; } } // If there are boids close enough for alignment... if (count > 0) { sum.divScalar((float)count);// Divide sum by the number of close boids (average of velocity) sum.normalize(); // Turn sum into a unit vector, and sum.mulScalar(maxSpeed); // Multiply by maxSpeed // Steer = Desired - Velocity Pvector steer; steer = steer.subTwoVector(sum, velocity); //sum = desired(average) steer.limit(maxForce); return steer; } else { Pvector temp(0, 0); return temp; } } // Cohesion finds the average location of nearby boids and manipulates the // steering force to move in that direction. Pvector Boid::Cohesion(vector<Boid> Boids) { // If the boid we're looking at is a predator, do not run the cohesion // algorithm //if (predator == true) // return Pvector(0,0); float neighbordist = 50; Pvector sum(0, 0); int count = 0; for (int i = 0; i < Boids.size(); i++) { float d = location.distance(Boids[i].location); if ((d > 0) && (d < neighbordist)) { sum.addVector(Boids[i].location); count++; } } if (count > 0) { sum.divScalar(count); return seek(sum); } else { Pvector temp(0,0); return temp; } } // Seek function limits the maxSpeed, finds necessary steering force and // normalizes the vectors. Pvector Boid::seek(Pvector v) { Pvector desired; desired.subVector(v); // A vector pointing from the location to the target // Normalize desired and scale to maximum speed desired.normalize(); desired.mulScalar(maxSpeed); // Steering = Desired minus Velocity acceleration.subTwoVector(desired, velocity); acceleration.limit(maxForce); // Limit to maximum steering force return acceleration; // this returns 0 - doesn't seem to be intended at all } void Boid::predatorSeek(Pvector target, vector<Boid> &b) { Pvector sub(0, 0); sub = sub.subTwoVector(target, location); int eatenIndex = -1; float d = sub.magnitude();; for (int i = 0; i < b.size(); i++) { if (b[i].predator == false) { Pvector prey = sub.subTwoVector(b[i].location, location); float preyD = prey.magnitude(); if (preyD <= d) { sub = prey; d = preyD; eatenIndex = i; } } } if (d < 7.5f) { if (eatenIndex >= 0) { b[eatenIndex].alive = false; } } sub.normalize(); sub.mulScalar(1); applyForce(sub); update(); borders(); } //Update modifies velocity, location, and resets acceleration with values that //are given by the three laws. void Boid::update() { //To make the slow down not as abrupt acceleration.mulScalar(.4); // Update velocity velocity.addVector(acceleration); // Limit speed velocity.limit(maxSpeed); location.addVector(velocity); // Reset accelertion to 0 each cycle acceleration.mulScalar(0); } //Run runs flock on the flock of boids for each boid. //Which applies the three rules, modifies accordingly, updates data, checks is data is //out of range, fixes that for SFML, and renders it on the window. void Boid::run(vector <Boid> v) { flock(v); update(); borders(); } //Applies all three laws for the flock of boids and modifies to keep them from //breaking the laws. void Boid::flock(vector<Boid> v) { Pvector sep = Separation(v); Pvector ali = Alignment(v); Pvector coh = Cohesion(v); // Arbitrarily weight these forces sep.mulScalar(1.5); ali.mulScalar(1.0); // Might need to alter weights for different characteristics coh.mulScalar(1.0); // Add the force vectors to acceleration applyForce(sep); applyForce(ali); applyForce(coh); } // Checks if boids go out of the window and if so, wraps them around to the other side. void Boid::borders() { if (underwater == true) { if (location.x < 0) location.x += 1920; if (location.y < 520) applyForce(Pvector(0, 20000)); if (location.x > 1920) location.x -= 1920; if (location.y > 1050) applyForce(Pvector(0, -100)); } else { if (location.x < 0) location.x += 1920; if (location.y < 10) applyForce(Pvector(0, 100)); if (location.x > 1920) location.x -= 1920; if (location.y > 495) applyForce(Pvector(0, -100)); } } // Calculates the angle for the velocity of a boid which allows the visual // image to rotate in the direction that it is going in. float Boid::angle(Pvector v) { // From the definition of the dot product float angle = (float)(atan2(v.x, -v.y) * 180 / PI); return angle; } void Boid::swarm(vector <Boid> v) { /* Lenard-Jones Potential function Vector R = me.position - you.position Real D = R.magnitude() Real U = -A / pow(D, N) + B / pow(D, M) R.normalise() force = force + R*U */ Pvector R; int A = 100; int B = 5000; int N = 1; int M = 2; int count = 0; float totalForce = 0; Pvector sum(0, 0); for (int i = 0; i < v.size(); i++) { R = R.subTwoVector(location, v[i].location); float D = R.magnitude(); if (D > 0) { float U = -A / pow(D, N) + B / pow(D, M); R.normalize(); R.mulScalar(U); sum.addVector(R); } } sum.divScalar(v.size() - 1); applyForce(sum); update(); borders(); applyForce(sum); update(); borders(); }
[ "c00196266@itcarlow.ie" ]
c00196266@itcarlow.ie
12f2d49ef3b65584a90ce417d34828f4cb964920
00d3968a7e023a1c495f3fa31d66b879da255915
/fluorender/FluoRender/Formats/lbl_reader.cpp
2b6c88d8b9f2a552d41cb18439f9d10f666f4173
[ "MIT" ]
permissive
sandorbx/VVD_Viewer
4a054fa09c259def86373730f466ba5ba2e6eef7
ad21f4c8700c81d89e8973a4ecacb777ee1d0f37
refs/heads/master
2021-05-23T18:58:20.385051
2018-05-24T17:08:24
2018-05-24T17:08:24
257,201,481
0
0
NOASSERTION
2020-04-20T07:15:23
2020-04-20T07:15:22
null
UTF-8
C++
false
false
3,318
cpp
/* For more information, please see: http://software.sci.utah.edu The MIT License Copyright (c) 2014 Scientific Computing and Imaging Institute, University of Utah. 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 "lbl_reader.h" #include "../compatibility.h" #include <sstream> #include <inttypes.h> LBLReader::LBLReader() { m_id_string = L"FluoRender_mask_reader_id"; } LBLReader::~LBLReader() { } void LBLReader::SetFile(string &file) { if (!file.empty()) { if (!m_path_name.empty()) m_path_name.clear(); m_path_name.assign(file.length(), L' '); copy(file.begin(), file.end(), m_path_name.begin()); } } void LBLReader::SetFile(wstring &file) { m_path_name = file; } void LBLReader::Preprocess() { } void LBLReader::SetSliceSeq(bool ss) { } bool LBLReader::GetSliceSeq() { return false; } void LBLReader::SetTimeSeq(bool ss) { } bool LBLReader::GetTimeSeq() { return false; } void LBLReader::SetTimeId(wstring &id) { } wstring LBLReader::GetTimeId() { return wstring(L""); } void LBLReader::SetBatch(bool batch) { } int LBLReader::LoadBatch(int index) { return 0; } Nrrd* LBLReader::Convert(int t, int c, bool get_max) { int64_t pos = m_path_name.find_last_of('.'); if (pos == -1) return 0; wstring str_name = m_path_name.substr(0, pos); wostringstream strs; strs << str_name /*<< "_t" << t << "_c" << c*/ << ".lbl"; str_name = strs.str(); FILE* lbl_file = 0; if (!WFOPEN(&lbl_file, str_name.c_str(), L"rb")) return 0; Nrrd *output = nrrdNew(); NrrdIoState *nio = nrrdIoStateNew(); nrrdIoStateSet(nio, nrrdIoStateSkipData, AIR_TRUE); if (nrrdRead(output, lbl_file, nio)) { fclose(lbl_file); return 0; } nio = nrrdIoStateNix(nio); rewind(lbl_file); if (output->dim != 3 || (output->type != nrrdTypeInt && output->type != nrrdTypeUInt)) { delete []output->data; nrrdNix(output); fclose(lbl_file); return 0; } int slice_num = int(output->axis[2].size); int x_size = int(output->axis[0].size); int y_size = int(output->axis[1].size); int data_size = slice_num * x_size * y_size; output->data = new unsigned int[data_size]; if (nrrdRead(output, lbl_file, NULL)) { delete []output->data; nrrdNix(output); fclose(lbl_file); return 0; } fclose(lbl_file); return output; } wstring LBLReader::GetCurName(int t, int c) { return wstring(L""); }
[ "kawase@gr.bot.kyoto-u.ac.jp" ]
kawase@gr.bot.kyoto-u.ac.jp
a1c84c990295847d359f1319a57acef6541f342e
36183993b144b873d4d53e7b0f0dfebedcb77730
/GameDevelopment/3D Game Engine Programming/Chapter Data/chap_09/ZFXInput/ZFXDI/ZFXDI.cpp
d77171570be7070f96d6ab3fcbc44c8e053d7ca0
[]
no_license
alecnunn/bookresources
b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0
4562f6430af5afffde790c42d0f3a33176d8003b
refs/heads/master
2020-04-12T22:28:54.275703
2018-12-22T09:00:31
2018-12-22T09:00:31
162,790,540
20
14
null
null
null
null
UTF-8
C++
false
false
11,869
cpp
// File: ZFXDI.cpp #include <windows.h> // type definitions #include "ZFXDI.h" // class definition #pragma comment(lib, "dinput8.lib") #pragma comment(lib, "dxguid.lib") bool g_bLF=false; /*-----------------------------------------------------------*/ /* DLL stuff implementation * /*-----------------------------------------------------------*/ /** * DLL Entry Point similar to WinMain()/main() */ BOOL WINAPI DllEntryPoint(HINSTANCE hDll, DWORD fdwReason, LPVOID lpvReserved) { switch(fdwReason) { // called when we attach to the DLL case DLL_PROCESS_ATTACH: /* dll init/setup stuff */ break; case DLL_PROCESS_DETACH: /* dll shutdown/release stuff */ break; default: break; }; return TRUE; } // DllEntryPoint /*----------------------------------------------------------------*/ /** * Exported create function: Creates a new ZFXInputDevice object. */ HRESULT CreateInputDevice(HINSTANCE hDLL, ZFXInputDevice **pDevice) { if(!*pDevice) { *pDevice = new ZFXDI(hDLL); return ZFX_OK; } return ZFX_FAIL; } /*----------------------------------------------------------------*/ /** * Exported release function: Realeses the given ZFXInputDevice object. */ HRESULT ReleaseInputDevice(ZFXInputDevice **pDevice) { if(!*pDevice) { return ZFX_FAIL; } delete *pDevice; *pDevice = NULL; return ZFX_OK; } /*----------------------------------------------------------------*/ /*-----------------------------------------------------------*/ /* ZFXDI class implementation * /*-----------------------------------------------------------*/ /** * Constructor */ ZFXDI::ZFXDI(HINSTANCE hDLL) { m_hDLL = hDLL; m_pDI = NULL; m_pLog = NULL; m_bRunning = false; m_pKB = NULL; m_pMouse = NULL; m_pJoy = NULL; // open a new logfile m_pLog = fopen("Log_ZFXInputDevice.txt", "w"); Log("online (waiting for initialization call)"); } /*----------------------------------------------------------------*/ /** * Destructor */ ZFXDI::~ZFXDI() { Release(); } /*----------------------------------------------------------------*/ /** * Release all stuff. */ void ZFXDI::Release() { Log("shutting down DirectInput"); if (m_pKB) { delete m_pKB; m_pKB = NULL; } if (m_pMouse) { delete m_pMouse; m_pMouse = NULL; } if (m_pJoy) { delete m_pJoy; m_pJoy = NULL; } if (m_pDI) { m_pDI->Release(); m_pDI = NULL; } Log("offline (ok)"); fclose(m_pLog); } /*----------------------------------------------------------------*/ /** * Initializes at least keyboard and mouse, otherwise returns error. * If present joystick will also be initialized, but is not mandatory. * -> IN: HWND - handle to main application window * bool - should log be made safe? (flush at once) */ HRESULT ZFXDI::Init(HWND hWnd, const RECT *prcCage, bool bSaveLog) { HRESULT hr; Log("calling initialization"); m_hWndMain = hWnd; g_bLF = bSaveLog; // create main DirectInput object if (FAILED (hr = DirectInput8Create(m_hDLL, DIRECTINPUT_VERSION, IID_IDirectInput8, (void**)&m_pDI, NULL)) ) { Log("error: DirectInput8Create() failed"); return ZFX_FAIL; } // create all input device objects m_pKB = new ZFXKeyboard(m_pDI, hWnd, m_pLog); m_pMouse = new ZFXMouse(m_pDI, hWnd, m_pLog); m_pJoy = new ZFXJoystick(m_pDI, hWnd, m_pLog); // initialize all input device objects if (FAILED( m_pKB->Init() )) { if (m_pKB) delete m_pKB; m_pKB = NULL; Log("error: Init(Keyboard) failed"); return ZFX_FAIL; } if (FAILED( m_pMouse->Init() )) { if (m_pMouse) delete m_pMouse; m_pMouse = NULL; Log("error: Init(Mouse) failed"); return ZFX_FAIL; } if (prcCage) m_pMouse->SetCage(*prcCage); if (FAILED( m_pJoy->Init() )) { if (m_pJoy) delete m_pJoy; m_pJoy = NULL; Log("warning: no joystick active"); /* no need to fail */ } Log("initialized (online and ready)"); m_bRunning = true; return ZFX_OK; } // Init /*----------------------------------------------------------------*/ /** * Query if a Joystick is active and ready or not. Also returns * Joytsicks name if any was found. */ bool ZFXDI::HasJoystick(char *pJoyName) { if (m_pJoy) { if (pJoyName) m_pJoy->GetName(pJoyName); return true; } return false; } // HasJoystick /*----------------------------------------------------------------*/ /** * Update all input devices */ HRESULT ZFXDI::Update(void) { HRESULT hr; if (!IsRunning()) return ZFX_FAIL; if (m_pKB) { if ( FAILED( hr=m_pKB->Update() ) ) return hr; } if (m_pMouse) { if ( FAILED( hr=m_pMouse->Update() ) ) return hr; } if (m_pJoy) { if ( FAILED( hr=m_pJoy->Update() ) ) return hr; } return ZFX_OK; } // Update /*----------------------------------------------------------------*/ /** * If mouse or joystick return current position. */ HRESULT ZFXDI::GetPosition(ZFXINPUTDEV idType, POINT *pPt) { if (idType == IDV_MOUSE) { m_pMouse->GetPosition(pPt); return ZFX_OK; } else if (idType==IDV_JOYSTICK) { if (m_pJoy) m_pJoy->GetPosition(pPt); else { (*pPt).x = 0; (*pPt).y = 0; } return ZFX_OK; } else return ZFX_INVALIDPARAM; } // GetPosition /*----------------------------------------------------------------*/ /** * If joystick return current intensity on axes. */ HRESULT ZFXDI::GetJoyDeflection(float *pfX, float *pfY) { if (m_pJoy) return m_pJoy->GetJoyDeflection(pfX, pfY); else { (*pfX) = 0.0f; (*pfY) = 0.0f; return ZFX_OK; } } // GetPosition /*----------------------------------------------------------------*/ /** * Return the change of mouse cursor since last call to Update(). */ POINT ZFXDI::GetMouseDelta(void) { return m_pMouse->GetMouseDelta(); } /*----------------------------------------------------------------*/ /** * Ask about button state. */ bool ZFXDI::IsPressed(ZFXINPUTDEV idType, UINT nBtn) { if (idType == IDV_MOUSE) return m_pMouse->IsPressed(nBtn); else if (idType==IDV_KEYBOARD) return m_pKB->IsPressed(nBtn); else if ( (idType==IDV_JOYSTICK) && (m_pJoy) ) return m_pJoy->IsPressed(nBtn); else return false; } // Pressed /*----------------------------------------------------------------*/ /** * Ask about button/key state for mouse, joytsick or keyboard. */ bool ZFXDI::IsReleased(ZFXINPUTDEV idType, UINT nBtn) { if (idType == IDV_MOUSE) return m_pMouse->IsReleased(nBtn); else if (idType==IDV_KEYBOARD) return m_pKB->IsReleased(nBtn); else if ( (idType==IDV_JOYSTICK) && (m_pJoy) ) return m_pJoy->IsReleased(nBtn); else return false; } // Released /*----------------------------------------------------------------*/ /** * write outputstring to attribut outputstream if exists * -> IN: bool - flush immediately * char - format string to output * ... - output values */ void ZFXDI::Log(char *chString, ...) { char ch[256]; char *pArgs; pArgs = (char*) &chString + sizeof(chString); vsprintf(ch, chString, pArgs); fprintf(m_pLog, "[ZFXDIDevice]: "); fprintf(m_pLog, ch); fprintf(m_pLog, "\n"); if (g_bLF) fflush(m_pLog); } // Log /*----------------------------------------------------------------*/ /*-----------------------------------------------------------*/ /* ZFXDIDevice class implementation * /*-----------------------------------------------------------*/ /** * Set basic attributes to pointers. */ void ZFXDIDevice::Create(LPDIRECTINPUT8 pDI, HWND hWnd, FILE* pLog) { m_pLog = pLog; m_hWnd = hWnd; m_pDI = pDI; m_pDevice = NULL; } /*----------------------------------------------------------------*/ /** * Release the object. */ void ZFXDIDevice::Release(void) { if (m_pDevice) { m_pDevice->Unacquire(); m_pDevice->Release(); m_pDevice = NULL; } Log("input device offline (ok)"); } // Release /*----------------------------------------------------------------*/ /** * Call all stuff DirectInput needs to initialize an input device. */ HRESULT ZFXDIDevice::CrankUp(REFGUID rguid, LPCDIDATAFORMAT pdf) { DWORD dwFlags = DISCL_FOREGROUND | DISCL_NONEXCLUSIVE; // if device is already build destroy it if (m_pDevice) { m_pDevice->Unacquire(); m_pDevice->Release(); m_pDevice = NULL; } // 1. Step: create device if ( FAILED(m_pDI->CreateDevice(rguid, &m_pDevice, NULL))) { Log("error: CreateDevice failed"); return ZFX_FAIL; } // set the correct device data format if ( FAILED(m_pDevice->SetDataFormat(pdf))) { Log("error: SetDataFormat failed"); return ZFX_FAIL; } // set the cooperation level with windows if ( FAILED(m_pDevice->SetCooperativeLevel(m_hWnd, dwFlags))) { Log("error: SetCoopLevel failed"); return ZFX_FAIL; } return ZFX_OK; } // CrankUp /*----------------------------------------------------------------*/ /** * Get the state or data from the device object. * -> IN: ZFXINPUTDEV - keyboard, mouse or joystick * void* - stores the data * DWORD* - stores a counter (mouse only) */ HRESULT ZFXDIDevice::GetData(ZFXINPUTDEV Type, void *pData, DWORD *pdwNum) { HRESULT hr=ZFX_FAIL; size_t size=0; // is this a mouse? if (Type == IDV_MOUSE) { size = sizeof(DIDEVICEOBJECTDATA); hr=m_pDevice->GetDeviceData(size, (DIDEVICEOBJECTDATA*) pData, pdwNum, 0); } else { if (Type==IDV_KEYBOARD) size = sizeof(char)*256; else size = sizeof(DIJOYSTATE); hr = m_pDevice->GetDeviceState(size, pData); } if (FAILED(hr)) { // if lost or not yet acquired then acquire it at all costs if ( (hr==DIERR_NOTACQUIRED) || (hr==DIERR_INPUTLOST) ) { hr = m_pDevice->Acquire(); while (hr==DIERR_INPUTLOST) hr = m_pDevice->Acquire(); // if another application is using this input device // we have to give up and try next frame if (hr==DIERR_OTHERAPPHASPRIO) return ZFX_OK; // if we got back device then try again to read data if (SUCCEEDED(hr)) { if (Type == IDV_MOUSE) hr = m_pDevice->GetDeviceData(size, (DIDEVICEOBJECTDATA*) pData, pdwNum, 0); else hr = m_pDevice->GetDeviceState(size, pData); } if (FAILED(hr)) return ZFX_FAIL; } else return ZFX_FAIL; } return ZFX_OK; } // GetData /*----------------------------------------------------------------*/ /** * write outputstring to attribut outputstream if exists */ void ZFXDIDevice::Log(char *chString, ...) { char ch[256]; char *pArgs; pArgs = (char*) &chString + sizeof(chString); vsprintf(ch, chString, pArgs); fprintf(m_pLog, "[ZFXDIDevice]: "); fprintf(m_pLog, ch); fprintf(m_pLog, "\n"); if (g_bLF) fflush(m_pLog); } // Log /*----------------------------------------------------------------*/
[ "alec.nunn@gmail.com" ]
alec.nunn@gmail.com
15dbcf667bc2f328ff319570147b0f640f90ab87
e7d7377b40fc431ef2cf8dfa259a611f6acc2c67
/SampleDump/Cpp/SDK/BP_Sickle_classes.h
5ca3c435cb4d0b9e077a6cee927c9f535d50ab92
[]
no_license
liner0211/uSDK_Generator
ac90211e005c5f744e4f718cd5c8118aab3f8a18
9ef122944349d2bad7c0abe5b183534f5b189bd7
refs/heads/main
2023-09-02T16:37:22.932365
2021-10-31T17:38:03
2021-10-31T17:38:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
689
h
#pragma once // Name: Mordhau, Version: Patch23 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_Sickle.BP_Sickle_C // 0x0000 (FullSize[0x1C28] - InheritedSize[0x1C28]) class ABP_Sickle_C : public ABP_Axe_C { public: static UClass* StaticClass() { static UClass* ptr = UObject::FindClass("BlueprintGeneratedClass BP_Sickle.BP_Sickle_C"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "talon_hq@outlook.com" ]
talon_hq@outlook.com
83f6de9ed25a0f0ee966d3028451be2e60c591b2
7769b24938f426f2755568d76f031c461de60cde
/matr/ClassLibrary1/diff_wrapper.cpp
6414674a01d7b9d48f4bffc288b71c52b22767d4
[]
no_license
Stepashka94/matr
ee3a45934e8d9b5389c7edc2d8da6344ca62d1bf
8627be304c485876fa8334f881dce12df20611da
refs/heads/master
2016-09-14T04:36:51.175728
2016-05-19T16:17:51
2016-05-19T16:17:51
57,208,401
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
18,393
cpp
#include "stdafx.h" #include "diff_wrapper.h" #include "..\matr\MyDiffFuncs.h" #include "..\matr\MyDiffFuncs.cpp" math_wrapper::DiffFuncs::DiffFuncs() { myCppClass = new MyDiffFuncs(); } //================================================================================================ //================================================================================================ //================================================================================================ /// <summary> /// Решение системы дифференциальных уравнений методом Эйлера. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="a">Начальное значение интервала.</param> /// <param name="b">Конечное значение интервала.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::Eiler(array<FDelegate ^>^ fdelegate, double a, double b, int N, array<double>^ arr_y, int count) { double* y = new double[count];//создание неуправляемого массива System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count);//маршалинг. копирование данных из управляемого массива в неуправляемый delegatePointer = new void*[count];//создание массива указателей на функции for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer();//преобразование массива делегатов в массив указателей } double* res = myCppClass->Eiler(delegatePointer, a, b, N, y, count);//вызов функции. получение результата array<double>^ new_res = gcnew array<double>(count);//создание управляемого массива System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count);//копирование данных из неуправляемого массива в управляемый return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 2 порядка. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="a">Начальное значение интервала.</param> /// <param name="b">Конечное значение интервала.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta2(array<FDelegate ^>^ fdelegate, double a, double b, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta2(delegatePointer, a, b, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 4 порядка. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="a">Начальное значение интервала.</param> /// <param name="b">Конечное значение интервала.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta4(array<FDelegate ^>^ fdelegate, double a, double b, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta4(delegatePointer, a, b, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; //================================================================================================ //================================================================================================ //================================================================================================ /// <summary> /// Решение системы дифференциальных уравнений методом Эйлера. Параллельная реализация. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="a">Начальное значение интервала.</param> /// <param name="b">Конечное значение интервала.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::Eiler_Paral(array<FDelegate ^>^ fdelegate, double a, double b, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->Eiler_Paral(delegatePointer, a, b, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 2 порядка. Параллельная реализация. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="a">Начальное значение интервала.</param> /// <param name="b">Конечное значение интервала.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta2_Paral(array<FDelegate ^>^ fdelegate, double a, double b, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta2_Paral(delegatePointer, a, b, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 4 порядка. Параллельная реализация. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="a">Начальное значение интервала.</param> /// <param name="b">Конечное значение интервала.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta4_Paral(array<FDelegate ^>^ fdelegate, double a, double b, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta4_Paral(delegatePointer, a, b, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; //================================================================================================ //Перерузки с использованием tau вместо a и b //================================================================================================ /// <summary> /// Решение системы дифференциальных уравнений методом Эйлера. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="tau">Шаг по времени.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::Eiler(array<FDelegate ^>^ fdelegate, double tau, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->Eiler(delegatePointer, tau, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 2 порядка. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="tau">Шаг по времени.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta2(array<FDelegate ^>^ fdelegate, double tau, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta2(delegatePointer, tau, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 4 порядка. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="tau">Шаг по времени.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta4(array<FDelegate ^>^ fdelegate, double tau, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta4(delegatePointer, tau, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; //================================================================================================ //================================================================================================ //================================================================================================ /// <summary> /// Решение системы дифференциальных уравнений методом Эйлера. Параллельная реализация. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="tau">Шаг по времени.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::Eiler_Paral(array<FDelegate ^>^ fdelegate, double tau, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->Eiler_Paral(delegatePointer, tau, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 2 порядка. Параллельная реализация. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="tau">Шаг по времени.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta2_Paral(array<FDelegate ^>^ fdelegate, double tau, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta2_Paral(delegatePointer, tau, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; }; /// <summary> /// Решение системы дифференциальных уравнений методом Рунге-Кутта 4 порядка. Параллельная реализация. /// </summary> /// <param name="fdelegate">Массив указателей на функции.</param> /// <param name="tau">Шаг по времени.</param> /// <param name="N">Количество шагов.</param> /// <param name="arr_y">Массив с начальными значениями.</param> /// <param name="count">Количество уравнений.</param> /// <returns>Массив с найденными значениями.</returns> array<double>^ math_wrapper::DiffFuncs::RungeKutta4_Paral(array<FDelegate ^>^ fdelegate, double tau, int N, array<double>^ arr_y, int count) { double* y = new double[count]; System::Runtime::InteropServices::Marshal::Copy(arr_y, 0, System::IntPtr(y), count); delegatePointer = new void*[count]; for (int i = 0; i < count; i++) { delegatePointer[i] = (void*)Marshal::GetFunctionPointerForDelegate(fdelegate[i]).ToPointer(); } double* res = myCppClass->RungeKutta4_Paral(delegatePointer, tau, N, y, count); array<double>^ new_res = gcnew array<double>(count); System::Runtime::InteropServices::Marshal::Copy(System::IntPtr(res), new_res, 0, count); return new_res; };
[ "b9310508@yandex.ru" ]
b9310508@yandex.ru
04cac81beb3947aefa0e7614a163116fd5adba90
2ad0b5a659ec9538a7f27e84fe658d2139297721
/datafeed/datafeed.cpp
349e4bf43be19c3df28eb87daad8136dc57572ba
[]
no_license
wdy0401/cta1
ce40e75e9a6e54b19161c4b307116a6f8593dc48
1818c3663207bdae422bf347183482692ef6f08a
refs/heads/master
2021-01-10T01:36:45.406913
2015-12-25T08:45:17
2015-12-25T08:45:17
47,659,658
0
0
null
null
null
null
UTF-8
C++
false
false
1,024
cpp
#include "datafeed.h" #include"../../gpp_qt/wfunction/wfunction.h" #include<QFile> #include<iostream> #include<string> #include<list> #include<QDebug> using namespace std; datafeed::datafeed(QObject *parent) : QObject(parent) { } void datafeed::run() { QFile file(_file.c_str()); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { return; } while (!file.atEnd()) { string tmpstring= file.readLine().data(); if(tmpstring!="") { list<string> lists=wfunction::splitstring(tmpstring); list<string>::iterator iter=lists.begin(); double nowtime=atof(iter->c_str()); timer->settic(nowtime); string ctr=(++iter)->c_str(); string bidask=(++iter)->c_str(); long level=atol((++iter)->c_str()); double price=atof((++iter)->c_str()); long size=atol((++iter)->c_str()); emit send_quote(ctr,bidask,level,price,size); } } }
[ "wdy0401@gmail.com" ]
wdy0401@gmail.com
3b90d5a379d6a42ee5a5f8166500f8e63c4c6eca
e7be2ee48f952308f5672240c2c833d718d9d431
/Juliet_Test_Suite_v1.3_for_C_Cpp/C/testcases/CWE194_Unexpected_Sign_Extension/s01/CWE194_Unexpected_Sign_Extension__fscanf_malloc_73a.cpp
c8d45ceffa8c0b66641693751bb71f0663acadf7
[]
no_license
buihuynhduc/tooltest
5146c44cd1b7bc36b3b2912232ff8a881269f998
b3bb7a6436b3ab7170078860d6bcb7d386762b5e
refs/heads/master
2020-08-27T20:46:53.725182
2019-10-25T05:42:36
2019-10-25T05:42:36
217,485,049
1
0
null
null
null
null
UTF-8
C++
false
false
2,489
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE194_Unexpected_Sign_Extension__fscanf_malloc_73a.cpp Label Definition File: CWE194_Unexpected_Sign_Extension.label.xml Template File: sources-sink-73a.tmpl.cpp */ /* * @description * CWE: 194 Unexpected Sign Extension * BadSource: fscanf Read data from the console using fscanf() * GoodSource: Positive integer * Sinks: malloc * BadSink : Allocate memory using malloc() with the size of data * Flow Variant: 73 Data flow: data passed in a list from one function to another in different source files * * */ #include "std_testcase.h" #include <list> using namespace std; namespace CWE194_Unexpected_Sign_Extension__fscanf_malloc_73 { #ifndef OMITBAD /* bad function declaration */ void badSink(list<short> dataList); void bad() { short data; list<short> dataList; /* Initialize data */ data = 0; /* FLAW: Use a value input from the console using fscanf() */ fscanf (stdin, "%hd", &data); /* Put data in a list */ dataList.push_back(data); dataList.push_back(data); dataList.push_back(data); badSink(dataList); } #endif /* OMITBAD */ #ifndef OMITGOOD /* good function declarations */ /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink(list<short> dataList); static void goodG2B() { short data; list<short> dataList; /* Initialize data */ data = 0; /* FIX: Use a positive integer less than &InitialDataSize&*/ data = 100-1; /* Put data in a list */ dataList.push_back(data); dataList.push_back(data); dataList.push_back(data); goodG2BSink(dataList); } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on * its own for testing or for building a binary to use in testing binary * analysis tools. It is not used when compiling all the testcases as one * application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE194_Unexpected_Sign_Extension__fscanf_malloc_73; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "43197106+buihuynhduc@users.noreply.github.com" ]
43197106+buihuynhduc@users.noreply.github.com
f2f8ff278b41077e6e993c1504b97be6395f0c25
119aed807a2465b92153119f5aa3e6fcca688a11
/StackBombing/StackBombing/StackBombing.cpp
328767759460b6ce3b3abc3512a943c75a66b6b9
[]
no_license
3ts75/Process-injection
a08df327093b2a3ac6aa265bebe9232ee5016374
41ff58463491975c4fbd65a5635f980443058314
refs/heads/master
2023-01-13T23:38:38.049915
2020-11-26T01:11:50
2020-11-26T01:11:50
280,528,110
0
0
null
null
null
null
UTF-8
C++
false
false
541
cpp
#include <iostream> using namespace std; #include "process_and_threads.h" #include "inject_and_resume.h" int main() { DWORD dw_process_id = NameToPid(TEXT("notepad.exe")); if (!dw_process_id) return 1; cout << dw_process_id << endl; vector<DWORD> vecdw_threads_id = PidToTids(dw_process_id); if (vecdw_threads_id.size() == 0) return 1; for (DWORD dw_thread_id : vecdw_threads_id) cout << dw_thread_id << " "; cout << endl; for (DWORD dw_thread_id : vecdw_threads_id) { inject(dw_thread_id); Sleep(300); } return 0; }
[ "bimy1280163@gn.iwasaki.ac.jp" ]
bimy1280163@gn.iwasaki.ac.jp
2b0882797993009a982dfbf230667a444e0e3126
36b857a9d76ea92a4db96298dff2d0a4c527c078
/thirdparty/OPTI-master/OPTI-master/Solvers/Source/ooqpmex.cpp
500c0d4f879fd092930231fd17718861c34a23c2
[ "BSD-3-Clause", "MIT" ]
permissive
AdamHibberd/Optimum_Interplanetary_Trajectory
19e1e283ff5f3d106e2dcc1cfda7d656c898a212
77a04b36566edb8bf0735aea4fbe64c161fed197
refs/heads/master
2023-09-06T02:23:12.582604
2023-08-30T19:34:15
2023-08-30T19:34:15
124,371,700
14
2
null
null
null
null
UTF-8
C++
false
false
31,640
cpp
/* OOQPMEX - A MATLAB MEX Interface to OOQP * Released Under the BSD 3-Clause License: * https://www.inverseproblem.co.nz/OPTI/index.php/DL/License * * Copyright (C) Jonathan Currie 2013 * www.inverseproblem.co.nz */ /* Based in parts on ooqp_mex.c supplied with OOQP */ #include "mex.h" #include "string.h" #include "QpGenData.h" #include "QpGenVars.h" #include "QpGenResiduals.h" #include "MehrotraSolver.h" #include "GondzioSolver.h" #include "QpGenSparsePardiso.h" #include "QpGenSparseMa27.h" #include "QpGenSparseMa57.h" #include "OoqpMonitor.h" #include "OoqpVersion.h" #include "Status.h" #include <exception> #include <time.h> #include <algorithm> #include "opti_util.h" #ifdef LINK_MKL #include "mkl.h" #endif //Linear Solvers #define USE_PARDISO 0 #define USE_MA57 1 #define USE_MA27 2 //QP Algorithms #define MEHROTRA 0 #define GONDZIO 1 //Extra Return Args #define MAX_TIME_EXCEEDED -1 #define USER_EXITED -2 //Ctrl-C Detection extern "C" bool utIsInterruptPending(); extern "C" void utSetInterruptPending(bool); //Define for debugging //#define DEBUG //Argument Enums (in expected order of arguments) enum {eH, eF, eA, eRL, eRU, eAEQ, eBEQ, eLB, eUB, eOPTS}; //PRHS Defines #define pH prhs[eH] #define pF prhs[eF] #define pA prhs[eA] #define pRL prhs[eRL] #define pRU prhs[eRU] #define pAEQ prhs[eAEQ] #define pBEQ prhs[eBEQ] #define pLB prhs[eLB] #define pUB prhs[eUB] #define pOPTS prhs[eOPTS] using namespace std; //Function Prototypes void printSolverInfo(); void checkInputs(const mxArray *prhs[], int nrhs); void lower(char *str); void sparseTranspose(mwIndex *sJc, mwIndex *sIr, double *sPr, int *dJc, int *dIr, double *dPr, mwIndex nnz, mwIndex sM, mwIndex sN); //Message Class class mexPrinter : public OoqpMonitor { public: virtual void doIt( Solver * solver, Data * data, Variables * vars, Residuals * resids, double alpha, double sigma, int i, double mu, int status_code, int level ); }; //Print Handler void mexPrinter::doIt( Solver * solver, Data * data, Variables * vars, Residuals * resids, double alpha, double sigma, int i, double mu, int status_code, int level ) { try { if(level < 2) { if(i == 1 || !(i%10)) mexPrintf(" iter duality gap mu resid norm\n"); mexPrintf("%5d %9.3g %9.3g %9.3g\n",i,resids->dualityGap(),mu,resids->residualNorm()); mexEvalString("drawnow;"); //flush draw buffer } } catch (std::exception& error) { mexErrMsgTxt(error.what()); } } //Custom Status Class class DerivedStatus : public Status { public: DerivedStatus(int maxIter, double maxTime, clock_t start); virtual int doIt( Solver * solver, Data * data, Variables * vars, Residuals * resids, int i, double mu, int stage ); private: int _maxIter; double _maxTime; clock_t _start; }; //Status Handler DerivedStatus::DerivedStatus(int maxIter, double maxTime, clock_t start) : Status() { _maxIter = maxIter; _maxTime = maxTime; _start = start; } int DerivedStatus::doIt( Solver * solver, Data * data, Variables * vars, Residuals * resids, int i, double mu, int stage ) { //Check for Ctrl-C if (utIsInterruptPending()) { utSetInterruptPending(false); /* clear Ctrl-C status */ mexPrintf("\nCtrl-C Detected. Exiting OOQP...\n\n"); return USER_EXITED; } //Check for MaxIts if(i>=_maxIter) return (int)MAX_ITS_EXCEEDED; //Check for MaxTime if(((double)(clock()-_start))/CLOCKS_PER_SEC >= _maxTime) return MAX_TIME_EXCEEDED; //Check Normal Termination Tests return solver->defaultStatus(data,vars,resids,min(i,5),mu,stage); //note fixed iter as we check above } //Main Function void mexFunction( int nlhs, mxArray * plhs[], int nrhs, const mxArray * prhs[] ) { //Input Args double *H = NULL, *f = NULL, *A = NULL, *rl = NULL, *ru = NULL, *Aeq = NULL, *beq = NULL, *lb = NULL, *ub = NULL; //Return Args double *x, *fval, *exitflag, *iter; //Options int maxIter = 100; int printLevel = 0; int linSolver = USE_MA57; int algorithm = GONDZIO; double objbias = 0; double maxTime = 1000; //Sparse Indicing double *Ht, *At, *Aeqt; int *iH_ir, *iH_jc, *iA_ir, *iA_jc, *iAeq_ir, *iAeq_jc; //Problem Size size_t ndec, neq, nin; mwSize nnzH, nnzA, nnzAeq; //Infinite Check Indexing char *ilb = NULL, *iub = NULL, *irl = NULL, *iru = NULL; //Local Copies double *qp_rl = NULL, *qp_ru = NULL, *qp_lb = NULL , *qp_ub = NULL; //Internal Vars int i, err; const char *fnames[4] = {"pi","y","phi","gamma"}; char msgbuf[1024]; mxArray *d_pi, *d_y, *d_phi, *d_gam; //Check # Inputs if(nrhs < 1) { if(nlhs < 1) printSolverInfo(); else { sprintf(msgbuf,"%d.%02d.%02d",OOQPVERSIONMAJOR,OOQPVERSIONMINOR,OOQPVERSIONPATCHLEVEL); plhs[0] = mxCreateString(msgbuf); plhs[1] = mxCreateDoubleScalar(OPTI_VER); } return; } //Thorough Check checkInputs(prhs,nrhs); //Get pointers to Input variables f = mxGetPr(pF); if(!mxIsEmpty(pA)) { rl = mxGetPr(pRL); ru = mxGetPr(pRU); } if(nrhs > eAEQ && !mxIsEmpty(pAEQ)) { beq = mxGetPr(pBEQ); } if(nrhs > eLB && !mxIsEmpty(pLB)) lb = mxGetPr(pLB); if(nrhs > eUB && !mxIsEmpty(pUB)) ub = mxGetPr(pUB); //Get options if specified if(nrhs > eOPTS) { if(mxGetField(pOPTS,0,"objbias")) objbias = *mxGetPr(mxGetField(pOPTS,0,"objbias")); if(mxGetField(pOPTS,0,"display")) printLevel = (int)*mxGetPr(mxGetField(pOPTS,0,"display")); if(mxGetField(pOPTS,0,"maxiter")) maxIter = (int)*mxGetPr(mxGetField(pOPTS,0,"maxiter")); if(mxGetField(pOPTS,0,"maxtime")) maxTime = *mxGetPr(mxGetField(pOPTS,0,"maxtime")); if(mxGetField(pOPTS,0,"linear_solver")) { if(mxIsChar(mxGetField(pOPTS,0,"linear_solver"))) { char *str = mxArrayToString(mxGetField(pOPTS,0,"linear_solver")); lower(str); if(!strcmp(str,"pardiso")) linSolver = USE_PARDISO; else if(!strcmp(str,"ma57")) linSolver = USE_MA57; else if(!strcmp(str,"ma27")) linSolver = USE_MA27; else mexErrMsgTxt("Unknown linear solver - options are 'pardiso', 'ma57' or 'ma27'"); mxFree(str); } else linSolver = (int)*mxGetPr(mxGetField(pOPTS,0,"linear_solver")); } if(mxGetField(pOPTS,0,"algorithm")) { if(mxIsChar(mxGetField(pOPTS,0,"algorithm"))) { char *str = mxArrayToString(mxGetField(pOPTS,0,"algorithm")); lower(str); if(!strcmp(str,"gondzio")) algorithm = GONDZIO; else if(!strcmp(str,"mehrotra")) algorithm = MEHROTRA; else mexErrMsgTxt("Unknown algorithm - options are 'gondzio' or 'mehrotra'"); mxFree(str); } else algorithm = (int)*mxGetPr(mxGetField(pOPTS,0,"algorithm")); } CheckOptiVersion(pOPTS); } //Check Linear Solver is Available switch(linSolver) { case USE_PARDISO: #if !defined(LINK_PARDISO) && !defined(LINK_MKL_PARDISO) mexErrMsgTxt("PARDISO is selected as the linear solver but is not available in this build"); #endif break; case USE_MA57: #if !defined(LINK_ML_MA57) && !defined(LINK_MA57) mexErrMsgTxt("MA57 is selected as the linear solver but is not available in this build"); #endif break; case USE_MA27: #ifndef LINK_MA27 mexErrMsgTxt("MA27 is selected as the linear solver but is not available in this build"); #endif break; default: mexErrMsgTxt("Unknown linear solver selected"); } //Get sizes ndec = mxGetNumberOfElements(pF); //f nin = mxGetM(pA); //A if(nrhs > eAEQ && !mxIsEmpty(pAEQ)) neq = mxGetM(pAEQ); //Aeq else neq = 0; if(mxIsEmpty(pH)) nnzH = 0; else nnzH = mxGetJc(pH)[mxGetN(pH)]; if(mxIsEmpty(pA)) nnzA = 0; else nnzA = mxGetJc(pA)[mxGetN(pA)]; if(nrhs <= eAEQ || mxIsEmpty(pAEQ)) nnzAeq = 0; else nnzAeq = mxGetJc(pAEQ)[mxGetN(pAEQ)]; //Create Outputs plhs[0] = mxCreateDoubleMatrix(ndec,1, mxREAL); plhs[1] = mxCreateDoubleMatrix(1,1, mxREAL); plhs[2] = mxCreateDoubleMatrix(1,1, mxREAL); plhs[3] = mxCreateDoubleMatrix(1,1, mxREAL); plhs[4] = mxCreateDoubleMatrix(nin+neq,1,mxREAL); x = mxGetPr(plhs[0]); fval = mxGetPr(plhs[1]); exitflag = mxGetPr(plhs[2]); iter = mxGetPr(plhs[3]); //Optional Outputs if(nlhs > 4) { plhs[4] = mxCreateStructMatrix(1,1,4,fnames); d_pi = mxCreateDoubleMatrix(nin,1, mxREAL); d_y = mxCreateDoubleMatrix(neq,1, mxREAL); d_phi = mxCreateDoubleMatrix(ndec,1, mxREAL); d_gam = mxCreateDoubleMatrix(ndec,1, mxREAL); } try { //QP Variables QpGenSparseMa27 *qp27 = NULL; QpGenSparseMa57 *qp57 = NULL; QpGenSparsePardiso *qpPD = NULL; QpGenData *prob = NULL; QpGenVars *vars = NULL; QpGenResiduals *resid = NULL; MehrotraSolver *sm = NULL; GondzioSolver *sg = NULL; mexPrinter *printer; //deleted automatically (I think) //Bounds Local Vectors ilb = (char*) mxCalloc(ndec, sizeof(char)); iub = (char*) mxCalloc(ndec, sizeof(char)); qp_lb = (double*)mxCalloc(ndec, sizeof(double)); qp_ub = (double*)mxCalloc(ndec, sizeof(double)); //Copy lb if exists if(nrhs > eLB && !mxIsEmpty(pLB)) { for(i=0;i<ndec;i++) { //Create Finite lb Index Vectors + Copy Finite Values if(mxIsFinite(lb[i])) { ilb[i] = 1; qp_lb[i] = lb[i]; } else { ilb[i] = 0; qp_lb[i] = 0.0; } } } //Else fill lb with 0s else { for(i=0;i<ndec;i++) { ilb[i] = 0; qp_lb[i] = 0.0; } } //Copy ub if exists if(nrhs > eUB && !mxIsEmpty(pUB)) { for(i=0;i<ndec;i++) { //Create Finite ub Index Vectors + Copy Finite Values if(mxIsFinite(ub[i])) { iub[i] = 1; qp_ub[i] = ub[i]; } else { iub[i] = 0; qp_ub[i] = 0.0; } } } //Else fill ub with 0s else { for(i=0;i<ndec;i++) { iub[i] = 0; qp_ub[i] = 0.0; } } //Copy Linear Inequalities RHS if exist if(nin > 0) { irl = (char*) mxCalloc(nin, sizeof(char)); iru = (char*) mxCalloc(nin, sizeof(char)); qp_rl = (double*)mxCalloc(nin, sizeof(double)); qp_ru = (double*)mxCalloc(nin, sizeof(double)); for( i = 0; i < nin; i++ ) { //Create Finite rl Index Vectors + Copy Finite Values if(mxIsFinite(rl[i])) { irl[i] = 1; qp_rl[i] = rl[i]; } else { irl[i] = 0; qp_rl[i] = 0.0; } //Create Finite ru Index Vectors + Copy Finite Values if(mxIsFinite(ru[i])) { iru[i] = 1; qp_ru[i] = ru[i]; } else { iru[i] = 0; qp_ru[i] = 0.0; } } } //QP H Matrix if(!mxIsEmpty(pH)) { iH_jc = (int*)mxCalloc(mxGetM(pH)+1,sizeof(int)); iH_ir = (int*)mxCalloc(nnzH,sizeof(int)); Ht = (double*)mxCalloc(nnzH,sizeof(double)); //Transpose Matrix & convert to int32 sparseTranspose(mxGetJc(pH), mxGetIr(pH), mxGetPr(pH), iH_jc, iH_ir, Ht, nnzH, mxGetM(pH), mxGetN(pH)); } else { iH_ir = (int*)mxCalloc(1,sizeof(int)); iH_jc = (int*)mxCalloc(ndec+1,sizeof(int)); iH_jc[ndec] = 0; Ht = (double*)mxCalloc(1,sizeof(int)); } //Linear Inequality Constraints A Matrix if(!mxIsEmpty(pA)) { //Allocate transpose memory iA_jc = (int*)mxCalloc(mxGetM(pA)+1,sizeof(int)); iA_ir = (int*)mxCalloc(nnzA,sizeof(int)); At = (double*)mxCalloc(nnzA,sizeof(double)); //Transpose Matrix & convert to int32 sparseTranspose(mxGetJc(pA), mxGetIr(pA), mxGetPr(pA), iA_jc, iA_ir, At, nnzA, mxGetM(pA), mxGetN(pA)); } else { iA_ir = (int*)mxCalloc(1,sizeof(int)); iA_jc = (int*)mxCalloc(1,sizeof(int)); iA_jc[0] = 0; At = (double*)mxCalloc(1,sizeof(double)); } //Linear Equality Constraints Aeq Matrix if(nrhs > eAEQ && !mxIsEmpty(pAEQ)) { //Allocate transpose memory iAeq_jc = (int*)mxCalloc(mxGetM(pAEQ)+1,sizeof(int)); iAeq_ir = (int*)mxCalloc(nnzAeq,sizeof(int)); Aeqt = (double*)mxCalloc(nnzAeq,sizeof(double)); //Transpose Matrix & convert to int32 sparseTranspose(mxGetJc(pAEQ), mxGetIr(pAEQ), mxGetPr(pAEQ), iAeq_jc, iAeq_ir, Aeqt, nnzAeq, mxGetM(pAEQ), mxGetN(pAEQ)); } else { iAeq_ir = (int*)mxCalloc(1,sizeof(int)); iAeq_jc = (int*)mxCalloc(1,sizeof(int)); iAeq_jc[0] = 0; Aeqt = (double*)mxCalloc(1,sizeof(double)); } #ifdef DEBUG mexPrintf("\n\nProblem properties\n"); for(i = 0; i < ndec; i++) { mexPrintf("%d: f %f lb %f ilb %d ub %f iub %d\n",i,f[i],qp_lb[i],ilb[i],qp_ub[i],iub[i]); } mexPrintf("\n"); for(i = 0; i < nin; i++) { mexPrintf("%d: rl %f irl %d ru %f iru %d\n",i,qp_rl[i],irl[i],qp_ru[i],iru[i]); } mexPrintf("\n"); for(i = 0; i < neq; i++) { mexPrintf("%d: beq %f\n",i,beq[i]); } mexPrintf("\n"); H = mxGetPr(pH); for(i = 0; i < nnzH; i++) { if(i <= mxGetM(pH)) mexPrintf("%d: Hjc %3d Hir %3d Hpr %f\n",i,iH_jc[i], iH_ir[i], H[i]); else mexPrintf("%d: Hir %3d Hpr %f\n",i,iH_ir[i], H[i]); } mexPrintf("\n"); for(i = 0; i < nnzA; i++) { if(i <= mxGetM(pA)) mexPrintf("%d: Ajc %3d Air %3d Apr %f\n",i,iA_jc[i], iA_ir[i], At[i]); else mexPrintf("%d: Air %3d Apr %f\n",i,iA_ir[i], At[i]); } mexPrintf("\n"); for(i = 0; i < nnzAeq; i++) { if(i <= mxGetM(pAEQ)) mexPrintf("%d: Aeqjc %3d Aeqir %3d Aeqpr %f\n",i,iAeq_jc[i], iAeq_ir[i], Aeqt[i]); else mexPrintf("%d: Aeqir %3d Aeqpr %f\n",i,iAeq_ir[i], Aeqt[i]); } #endif //Create Problem, fill in data and make variables switch(linSolver) { #if defined(LINK_PARDISO) || defined(LINK_MKL_PARDISO) case USE_PARDISO: qpPD = new QpGenSparsePardiso((int)ndec,(int)neq,(int)nin,(int)nnzH,(int)nnzAeq,(int)nnzA); prob = (QpGenData*) qpPD->makeData( f, iH_jc, iH_ir, Ht, qp_lb, ilb, qp_ub, iub, iAeq_jc, iAeq_ir, Aeqt, beq, iA_jc, iA_ir, At, qp_rl, irl, qp_ru, iru); vars = (QpGenVars*)qpPD->makeVariables(prob); resid = (QpGenResiduals*)qpPD->makeResiduals(prob); break; #endif #ifdef LINK_MA27 case USE_MA27: qp27 = new QpGenSparseMa27((int)ndec,(int)neq,(int)nin,(int)nnzH,(int)nnzAeq,(int)nnzA); prob = (QpGenData*) qp27->makeData( f, iH_jc, iH_ir, Ht, qp_lb, ilb, qp_ub, iub, iAeq_jc, iAeq_ir, Aeqt, beq, iA_jc, iA_ir, At, qp_rl, irl, qp_ru, iru); vars = (QpGenVars*)qp27->makeVariables(prob); resid = (QpGenResiduals*)qp27->makeResiduals(prob); break; #endif #if defined(LINK_MA57) || defined(LINK_ML_MA57) case USE_MA57: qp57 = new QpGenSparseMa57((int)ndec,(int)neq,(int)nin,(int)nnzH,(int)nnzAeq,(int)nnzA); prob = (QpGenData*) qp57->makeData( f, iH_jc, iH_ir, Ht, qp_lb, ilb, qp_ub, iub, iAeq_jc, iAeq_ir, Aeqt, beq, iA_jc, iA_ir, At, qp_rl, irl, qp_ru, iru); vars = (QpGenVars*)qp57->makeVariables(prob); resid = (QpGenResiduals*)qp57->makeResiduals(prob); break; #endif } //Make Solver switch(algorithm) { case MEHROTRA: switch(linSolver) { case USE_PARDISO: sm = new MehrotraSolver(qpPD,prob); break; case USE_MA27: sm = new MehrotraSolver(qp27,prob); break; case USE_MA57: sm = new MehrotraSolver(qp57,prob); break; } break; case GONDZIO: switch(linSolver) { case USE_PARDISO: sg = new GondzioSolver(qpPD,prob); break; case USE_MA27: sg = new GondzioSolver(qp27,prob); break; case USE_MA57: sg = new GondzioSolver(qp57,prob); break; } break; default: throw exception("Unknown algorithm!"); } //Assign Status Handler (need more info from solver class really..) DerivedStatus *ctrlCStatus = new DerivedStatus(maxIter, maxTime, clock()); switch(algorithm) { case MEHROTRA: sm->useStatus(ctrlCStatus); break; case GONDZIO: sg->useStatus(ctrlCStatus); break; } //Setup Options if(printLevel > 0) { if(printLevel > 1) { //iter print printer = new mexPrinter(); switch(algorithm) { case MEHROTRA: sm->addMonitor( printer ); break; case GONDZIO: sg->addMonitor( printer ); break; } } //Print Header char verStr[1024], algStr[128], linStr[128]; getOoqpVersionString( verStr, 1024); switch(algorithm) { case MEHROTRA: sprintf(algStr,"Mehrotra"); break; case GONDZIO: sprintf(algStr,"Gondzio"); break; } switch(linSolver) { case USE_PARDISO: sprintf(linStr,"PARDSIO"); break; case USE_MA27: sprintf(linStr,"MA27"); break; case USE_MA57: sprintf(linStr,"MA57"); break; } mexPrintf("\n------------------------------------------------------------------\n"); mexPrintf(" This is %s\n Authors: E. Michael Gertz, Stephen J. Wright\n\n",verStr); mexPrintf(" This run uses the %s Solver with %s\n\n Problem Properties:\n",algStr,linStr); mexPrintf(" # Decision Variables: %6d [%d nz]\n # Inequality Constraints: %6d [%d nz]\n # Equality Constraints: %6d [%d nz]\n",ndec,nnzH,nin,nnzA,neq,nnzAeq); if(printLevel > 1) mexPrintf("------------------------------------------------------------------\n"); mexEvalString("drawnow;"); } //Solve QP try { switch(algorithm) { case MEHROTRA: err = sm->solve(prob,vars,resid); break; case GONDZIO: err = sg->solve(prob,vars,resid); break; } } catch(...) { mexWarnMsgTxt("Error solving problem with OOQP"); return; } //Assign variables *exitflag = err; vars->x->copyIntoArray(x); *fval = prob->objectiveValue(vars)+objbias; switch(algorithm) { case MEHROTRA: *iter = (double)sm->iter; break; case GONDZIO: *iter = (double)sg->iter; break; } //Assign Dual Solution if(nlhs > 4) { vars->pi->copyIntoArray(mxGetPr(d_pi)); //dual row in mxSetField(plhs[4],0,fnames[0],d_pi); vars->y->copyIntoArray(mxGetPr(d_y)); //dual row eq mxSetField(plhs[4],0,fnames[1],d_y); vars->phi->copyIntoArray(mxGetPr(d_phi)); //dual col upper mxSetField(plhs[4],0,fnames[2],d_phi); vars->gamma->copyIntoArray(mxGetPr(d_gam)); //dual col lower mxSetField(plhs[4],0,fnames[3],d_gam); } if(printLevel > 0){ //Termination Detected switch(err) { case SUCCESSFUL_TERMINATION: mexPrintf("\n *** SUCCESSFUL TERMINATION ***\n"); break; case MAX_ITS_EXCEEDED: mexPrintf("\n *** MAXIMUM ITERATIONS REACHED ***\n"); break; case MAX_TIME_EXCEEDED: mexPrintf("\n *** MAXIMUM TIME REACHED ***\n"); break; case USER_EXITED: mexPrintf("\n *** USER EXITED ***\n"); break; case INFEASIBLE: mexPrintf("\n *** TERMINATION: PROBABLY INFEASIBLE ***\n"); break; default: mexPrintf("\n *** TERMINATION: STATUS UNKNOWN ***\n"); break; } if(err == SUCCESSFUL_TERMINATION || err == MAX_ITS_EXCEEDED || err == MAX_TIME_EXCEEDED) mexPrintf(" Final Objective Value: %9.3g\n In %3.0f iterations\n",*fval,*iter); mexPrintf("------------------------------------------------------------------\n\n"); } /* Free any scratch arrays */ if( iru != NULL ) mxFree( iru ); iru = NULL; if( irl != NULL ) mxFree( irl ); irl = NULL; if( iub != NULL ) mxFree( iub ); iub = NULL; if( ilb != NULL ) mxFree( ilb ); ilb = NULL; //Free Local Copies if( qp_ru != NULL ) mxFree( qp_ru ); qp_ru = NULL; if( qp_rl != NULL ) mxFree( qp_rl ); qp_rl = NULL; if( qp_ub != NULL ) mxFree( qp_ub ); qp_ub = NULL; if( qp_lb != NULL ) mxFree( qp_lb ); qp_lb = NULL; //Free sparse memory mxFree(iH_ir); mxFree(iH_jc); mxFree(Ht); mxFree(iA_ir); mxFree(iA_jc); mxFree(At); mxFree(iAeq_ir); mxFree(iAeq_jc); mxFree(Aeqt); //Free up classes if( qp27 != NULL) delete qp27; qp27 = NULL; if( qp57 != NULL) delete qp57; qp57 = NULL; if( qpPD != NULL) delete qpPD; qpPD = NULL; if( prob != NULL) delete prob; prob = NULL; if( vars != NULL) delete vars; vars = NULL; if( resid != NULL) delete resid; resid = NULL; if( sm != NULL) delete sm; sm = NULL; if( sg != NULL) delete sg; sg = NULL; } catch(exception& e) //Unfortunately still crashes matlab... { char msgbuf[1024]; sprintf(msgbuf,"Caught OOQP Error: %s",e.what()); mexErrMsgTxt(msgbuf); } catch(...) { mexErrMsgTxt("Fatal OOQP Error"); } } //Check all inputs for size and type errors void checkInputs(const mxArray *prhs[], int nrhs) { int i; double *beq; size_t ndec, nin, neq; //Correct number of inputs if(nrhs < 5) mexErrMsgTxt("You must supply at least 5 arguments to OOQP (H, f, A, rl, ru)"); //Check we have an objective if(mxIsEmpty(pH) && mxIsEmpty(pF)) mexErrMsgTxt("You must supply an objective function!"); //Ensure we have f if(mxIsEmpty(pF)) mexErrMsgTxt("You must supply f for this interface"); //Check options is a structure if(nrhs > eOPTS && !mxIsEmpty(pOPTS) && !mxIsStruct(pOPTS)) mexErrMsgTxt("The options argument must be a structure!"); //Get Sizes ndec = mxGetNumberOfElements(pF); nin = mxGetM(pA); if(nrhs > eAEQ) { neq = mxGetM(pAEQ); if(nrhs <= eBEQ) mexErrMsgTxt("You must supply both Aeq and beq"); } else { neq = 0; } //Check Constraint Pairs if(nin && mxIsEmpty(pRL)) mexErrMsgTxt("rl is empty!"); if(nin && mxIsEmpty(pRU)) mexErrMsgTxt("ru is empty!"); //Check Sparsity (only supported in A, AEQ and H) if(mxIsSparse(pF) || mxIsSparse(pRL) || mxIsSparse(pRU)) mexErrMsgTxt("f, rl, and ru must be dense"); if(nrhs > eBEQ && mxIsSparse(pBEQ)) mexErrMsgTxt("beq must be dense"); if(!mxIsEmpty(pH) && !mxIsSparse(pH)) mexErrMsgTxt("H must be a sparse matrix"); if(!mxIsEmpty(pA) && !mxIsSparse(pA)) mexErrMsgTxt("A must be a sparse matrix"); if(nrhs > eAEQ && !mxIsEmpty(pAEQ) && !mxIsSparse(pAEQ)) mexErrMsgTxt("Aeq must be a sparse matrix"); //Check Sizes if(!mxIsEmpty(pH) && ((mxGetM(pH) != ndec) || (mxGetN(pH) != ndec))) mexErrMsgTxt("H has incompatible dimensions"); if(nin) { if(mxGetN(pA) != ndec) mexErrMsgTxt("A has incompatible dimensions"); if(mxGetNumberOfElements(pRL) != nin) mexErrMsgTxt("rl has incompatible dimensions"); if(mxGetNumberOfElements(pRU) != nin) mexErrMsgTxt("ru has incompatible dimensions"); } if(neq) { if(mxGetN(pAEQ) != ndec) mexErrMsgTxt("Aeq has incompatible dimensions"); if(mxGetNumberOfElements(pBEQ) != neq) mexErrMsgTxt("beq has incompatible dimensions"); //Check for infinite equalities beq = mxGetPr(pBEQ); for(i=0;i<neq;i++) { if(mxIsInf(beq[i]) || mxIsNaN(beq[i])) mexErrMsgTxt("beq cannot contain Inf or NaN!"); } } if(nrhs > eLB && !mxIsEmpty(pLB) && (mxGetNumberOfElements(pLB) != ndec)) mexErrMsgTxt("lb has incompatible dimensions"); if(nrhs > eUB && !mxIsEmpty(pUB) && (mxGetNumberOfElements(pUB) != ndec)) mexErrMsgTxt("ub has incompatible dimensions"); //Ensure H is lower triangular if(!mxIsEmpty(pH)) { mwIndex *jc = mxGetJc(pH); mwIndex *ir = mxGetIr(pH); mwIndex k = 0; mwSize n = mxGetN(pH); for(mwIndex i = 0; i < n; i++) { mwIndex start = jc[i]; mwIndex stop = jc[i+1]; for(mwIndex j = start; j < stop; j++) { if(i > ir[k++]) mexErrMsgTxt("H is not symmetric lower triangular"); } } } } //Print Solver Information void printSolverInfo() { mexPrintf("\n-----------------------------------------------------------\n"); mexPrintf(" OOQP: Object Orientated Quadratic Programming [v%d.%02d.%02d]\n",OOQPVERSIONMAJOR,OOQPVERSIONMINOR,OOQPVERSIONPATCHLEVEL); PRINT_BUILD_INFO; mexPrintf(" - (C) 2001 University of Chicago\n"); mexPrintf(" - Source available from: http://pages.cs.wisc.edu/~swright/ooqp/\n\n"); #if defined(LINK_MKL) || defined(LINK_MA27) || defined(LINK_MA57) || defined(LINK_MKL_PARDISO) mexPrintf(" This binary is statically linked to the following software:\n"); #endif #ifdef LINK_MKL mexPrintf(" - Intel Math Kernel Library [v%d.%d R%d]\n",__INTEL_MKL__,__INTEL_MKL_MINOR__,__INTEL_MKL_UPDATE__); #endif #ifdef LINK_MKL_PARDISO mexPrintf(" - Intel MKL PARDISO [v%d.%d R%d]\n",__INTEL_MKL__,__INTEL_MKL_MINOR__,__INTEL_MKL_UPDATE__); #endif #ifdef LINK_MA27 mexPrintf(" - HSL MA27 (This Binary MUST NOT BE REDISTRIBUTED)\n"); #endif #ifdef LINK_MA57 mexPrintf(" - HSL MA57 (This Binary MUST NOT BE REDISTRIBUTED)\n"); #ifdef LINK_METIS mexPrintf(" - MeTiS [v4.0.3] Copyright University of Minnesota\n"); #endif #endif #ifdef LINK_ML_MA57 mexPrintf("\n This binary is dynamically linked to the following software:\n"); mexPrintf(" - MA57 [v3.0] (Included as part of the MATLAB distribution)\n"); #endif mexPrintf("\n MEX Interface J.Currie 2013 [BSD3] (www.inverseproblem.co.nz)\n"); mexPrintf("-----------------------------------------------------------\n"); } //Convert input string to lowercase void lower(char *str) { int i = 0; while(str[i]) { str[i] = tolower(str[i]); i++; } } //Sparse Matrix Transpose code void sparseTranspose(mwIndex *sJc, mwIndex *sIr, double *sPr, int *dJc, int *dIr, double *dPr, mwIndex nnz, mwIndex sM, mwIndex sN) { mwIndex i, j, ind = 0, index; //Transpose Dimensions mwIndex dN = sM; mwIndex dM = sN; //Create working memory int *inc = (int*)mxCalloc(sM,sizeof(int)); int *lmem = (int*)mxCalloc(nnz,sizeof(int)); //Initialize working memory for(i=0;i<dN;i++) dJc[i] = 0; for(i=0;i<dN;i++) inc[i] = 0; //Transpose and fill in for(i = 0; i < nnz; i++) dJc[sIr[i]+1]++; //sum each row index to determine no elements in each row for(i = 2; i <= dN; i++) dJc[i] += dJc[i-1]; //cumsum to determine new 'Jc' for(i = 0; i < sN; i++) //build full missing triple for(j = 0; j < (sJc[i+1]-sJc[i]); j++) lmem[ind++] = (int)i; for(i = 0; i < nnz; i++) { ind = sIr[i]; index = (dJc[ind]) + inc[ind]++; dIr[index] = lmem[i]; //new 'Ir' from generated sparse triple dPr[index] = sPr[i]; } //Free local memory mxFree(inc); mxFree(lmem); }
[ "34288648+AdamHibberd@users.noreply.github.com" ]
34288648+AdamHibberd@users.noreply.github.com
7cece0a02c8b67a4c645dc97858e290a5c75d04e
120f50ad80c0f60a659dafb6a09ff2cf31021c16
/client/SWGPaymentsXsollaApi.cpp
9e045aecc6a0a3b41bdfeda14d7788571cbb1747
[]
no_license
knetikmedia/knetikcloud-qt5cpp-client
72dc0d1d7cbdf7536021cf546e347885497a1973
cfad9f29a82a513941c0eb8fb2a82c18d16a24dc
refs/heads/master
2021-01-23T06:35:36.976006
2017-03-27T20:52:02
2017-03-27T20:52:02
86,382,081
0
0
null
null
null
null
UTF-8
C++
false
false
2,821
cpp
/** * Knetik Platform API Documentation latest * This is the spec for the Knetik API. Use this in conjunction with the documentation found at https://knetikcloud.com * * OpenAPI spec version: latest * Contact: support@knetik.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ #include "SWGPaymentsXsollaApi.h" #include "SWGHelpers.h" #include "SWGModelFactory.h" #include <QJsonArray> #include <QJsonDocument> namespace Swagger { SWGPaymentsXsollaApi::SWGPaymentsXsollaApi() {} SWGPaymentsXsollaApi::~SWGPaymentsXsollaApi() {} SWGPaymentsXsollaApi::SWGPaymentsXsollaApi(QString host, QString basePath) { this->host = host; this->basePath = basePath; } void SWGPaymentsXsollaApi::createXsollaTokenUrl(SWGXsollaPaymentRequest request) { QString fullPath; fullPath.append(this->host).append(this->basePath).append("/payment/provider/xsolla/payment"); HttpRequestWorker *worker = new HttpRequestWorker(); HttpRequestInput input(fullPath, "POST"); QString output = request.asJson(); input.request_body.append(output); connect(worker, &HttpRequestWorker::on_execution_finished, this, &SWGPaymentsXsollaApi::createXsollaTokenUrlCallback); worker->execute(&input); } void SWGPaymentsXsollaApi::createXsollaTokenUrlCallback(HttpRequestWorker * worker) { QString msg; if (worker->error_type == QNetworkReply::NoError) { msg = QString("Success! %1 bytes").arg(worker->response.length()); } else { msg = "Error: " + worker->error_str; } QString json(worker->response); QString* output = static_cast<QString*>(create(json, QString("QString"))); worker->deleteLater(); emit createXsollaTokenUrlSignal(output); } void SWGPaymentsXsollaApi::receiveXsollaNotification() { QString fullPath; fullPath.append(this->host).append(this->basePath).append("/payment/provider/xsolla/notifications"); HttpRequestWorker *worker = new HttpRequestWorker(); HttpRequestInput input(fullPath, "POST"); connect(worker, &HttpRequestWorker::on_execution_finished, this, &SWGPaymentsXsollaApi::receiveXsollaNotificationCallback); worker->execute(&input); } void SWGPaymentsXsollaApi::receiveXsollaNotificationCallback(HttpRequestWorker * worker) { QString msg; if (worker->error_type == QNetworkReply::NoError) { msg = QString("Success! %1 bytes").arg(worker->response.length()); } else { msg = "Error: " + worker->error_str; } worker->deleteLater(); emit receiveXsollaNotificationSignal(); } } /* namespace Swagger */
[ "shawn.stout@knetik.com" ]
shawn.stout@knetik.com
3db514d57e8269cfd2091a737f77a12fd2ccd681
785df77400157c058a934069298568e47950e40b
/TnbGeo/TnbLib/Geo/AirfoilOffsets/S833/Geo_AirfoilOffsets_S833.cxx
4fc32b28c5156e41ec2808087709a9f145fd932b
[]
no_license
amir5200fx/Tonb
cb108de09bf59c5c7e139435e0be008a888d99d5
ed679923dc4b2e69b12ffe621fc5a6c8e3652465
refs/heads/master
2023-08-31T08:59:00.366903
2023-08-31T07:42:24
2023-08-31T07:42:24
230,028,961
9
3
null
2023-07-20T16:53:31
2019-12-25T02:29:32
C++
UTF-8
C++
false
false
8,322
cxx
#include <Geo_AirfoilOffsets_S833.hxx> const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P0(1.0, 0.0); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P1(0.996065, 0.001004); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P2(0.985020, 0.004646); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P3(0.968439, 0.011090); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P4(0.947640, 0.019540); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P5(0.923225, 0.028827); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P6(0.895095, 0.037957); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P7(0.862843, 0.046779); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P8(0.826835, 0.055487); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P9(0.787593, 0.063938); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P10(0.745618, 0.071919); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P11(0.701398, 0.079186); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P12(0.655387, 0.085456); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P13(0.607899, 0.090488); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P14(0.559249, 0.094305); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P15(0.510051, 0.096851); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P16(0.460675, 0.097982); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P17(0.411514, 0.097776); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P18(0.363095, 0.096316); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P19(0.315946, 0.093639); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P20(0.270564, 0.089788); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P21(0.227440, 0.084804); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P22(0.187003, 0.078746); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P23(0.149688, 0.071682); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P24(0.115830, 0.063700); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P25(0.085796, 0.054909); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P26(0.059807, 0.045441); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P27(0.038158, 0.035491); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P28(0.021003, 0.025264); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P29(0.008633, 0.015086); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P30(0.001918, 0.006451); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P31(0.001336, 0.005330); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P32(0.000805, 0.004131); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::upper::P33(0.000137, 0.001900); const size_t tnbLib::geoLib::airfoilOffsetsLib::S833::upper::nbPnts = 34; namespace tnbLib { namespace geoLib { namespace airfoilOffsetsLib { namespace S833 { namespace upper { const std::vector<tnbLib::Pnt2d> coords = { P0,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13, P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25, P26,P27,P28,P29,P30,P31,P32, P33 }; } } } } } const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P0(0.000005, -0.000388); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P1(0.000267, -0.002838); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P2(0.000510, -0.004055); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P3(0.005161, -0.014877); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P4(0.014227, -0.026119); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P5(0.027615, -0.037318); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P6(0.045093, -0.047937); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P7(0.066696, -0.057725); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P8(0.092161, -0.066350); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P9(0.121486, -0.073652); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P10(0.154343, -0.079439); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P11(0.190655, -0.083625); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P12(0.230021, -0.086135); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P13(0.272278, -0.086956); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P14(0.316953, -0.086108); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P15(0.363791, -0.083647); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P16(0.412249, -0.079666); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P17(0.461977, -0.074263); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P18(0.512361, -0.067552); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P19(0.563000, -0.059518); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P20(0.613510, -0.050246); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P21(0.663842, -0.039707); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P22(0.713990, -0.028763); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P23(0.763368, -0.018233); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P24(0.811239, -0.008893); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P25(0.856691, -0.001519); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P26(0.898436, 0.003017); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P27(0.934459, 0.004533); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P28(0.963162, 0.003879); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P29(0.983725, 0.002236); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P30(0.995960, 0.000675); const tnbLib::Pnt2d tnbLib::geoLib::airfoilOffsetsLib::S833::lower::P31(1.000000, 0.000000); const size_t tnbLib::geoLib::airfoilOffsetsLib::S833::lower::nbPnts = 32; namespace tnbLib { namespace geoLib { namespace airfoilOffsetsLib { namespace S833 { namespace lower { const std::vector<tnbLib::Pnt2d> coords = { P0,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12, P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23, P24,P25,P26,P27,P28,P29,P30,P31 }; } } } } } const size_t tnbLib::geoLib::airfoilOffsetsLib::S833::nbPnts = 68; namespace tnbLib { namespace geoLib { namespace airfoilOffsetsLib { namespace S833 { const std::vector<tnbLib::Pnt2d> coords = { upper::P0, upper::P1, upper::P2, upper::P3, upper::P4, upper::P5, upper::P6, upper::P7, upper::P8, upper::P9, upper::P10, upper::P11, upper::P12, upper::P13, upper::P14, upper::P15, upper::P16, upper::P17, upper::P18, upper::P19, upper::P20, upper::P21, upper::P22, upper::P23, upper::P24, upper::P25, upper::P26, upper::P27, upper::P28, upper::P29, upper::P30, upper::P31, upper::P32, upper::P33, lower::P0, lower::P1, lower::P2, lower::P3, lower::P4, lower::P5, lower::P6, lower::P7, lower::P8, lower::P9, lower::P10, lower::P11, lower::P12, lower::P13, lower::P14, lower::P15, lower::P16, lower::P17, lower::P18, lower::P19, lower::P20, lower::P21, lower::P22, lower::P23, lower::P24, lower::P25, lower::P26, lower::P27, lower::P28, lower::P29, lower::P30, lower::P31 }; } } } }
[ "aasoleimani86@gmail.com" ]
aasoleimani86@gmail.com
e93c732ff560e6da1dea358a8b18bd1a191391a5
83713ec52903cf952ce9af0314d607887fd4c58c
/Tema 3/t5p1.cpp
ec3e22d10992fe0dcc7d8375e9351ef8f6ac1fee
[]
no_license
andreiarhip10/Teme-GPC
9490ca2ef10b852e99ea09b71d89478810dd5dba
743955380f0e6ce60d8b9b7656d62edd69fc8fa7
refs/heads/master
2021-04-27T00:24:49.022400
2018-04-04T18:26:04
2018-04-04T18:26:04
123,808,515
1
0
null
null
null
null
UTF-8
C++
false
false
7,922
cpp
#include <stdlib.h> #include <stdio.h> #include <math.h> #include <assert.h> #include <float.h> #include "glut.h" // dimensiunea ferestrei in pixeli #define dim 300 // numarul maxim de iteratii pentru testarea apartenentei la mult.Julia-Fatou #define NRITER_JF 5000 // modulul maxim pentru testarea apartenentei la mult.Julia-Fatou #define MODMAX_JF 10000000 // ratii ptr. CJuliaFatou #define RX_JF 0.01 #define RY_JF 0.01 unsigned char prevKey; class CComplex { public: CComplex() : re(0.0), im(0.0) {} CComplex(double re1, double im1) : re(re1 * 1.0), im(im1 * 1.0) {} CComplex(const CComplex &c) : re(c.re), im(c.im) {} ~CComplex() {} CComplex &operator=(const CComplex &c) { re = c.re; im = c.im; return *this; } double getRe() {return re;} void setRe(double re1) {re = re1;} double getIm() {return im;} void setIm(double im1) {im = im1;} double getModul() {return sqrt(re * re + im * im);} int operator==(CComplex &c1) { return ((re == c1.re) && (im == c1.im)); } CComplex pow2() { CComplex rez; rez.re = powl(re * 1.0, 2) - powl(im * 1.0, 2); rez.im = 2.0 * re * im; return rez; } friend CComplex operator+(const CComplex &c1, const CComplex &c2); friend CComplex operator*(CComplex &c1, CComplex &c2); void print(FILE *f) { fprintf(f, "%.20f%+.20f i", re, im); } private: double re, im; }; CComplex operator+(const CComplex &c1, const CComplex &c2) { CComplex rez(c1.re + c2.re, c1.im + c2.im); return rez; } CComplex operator*(CComplex &c1, CComplex &c2) { CComplex rez(c1.re * c2.re - c1.im * c2.im, c1.re * c2.im + c1.im * c2.re); return rez; } class CJuliaFatou { public: CJuliaFatou() { // m.c se initializeaza implicit cu 0+0i m.nriter = NRITER_JF; m.modmax = MODMAX_JF; } CJuliaFatou(CComplex &c) { m.c = c; m.nriter = NRITER_JF; m.modmax = MODMAX_JF; } ~CJuliaFatou() {} void setmodmax(double v) {assert(v <= MODMAX_JF); m.modmax = v;} double getmodmax() {return m.modmax;} void setnriter(int v) {assert(v <= NRITER_JF); m.nriter = v;} int getnriter() {return m.nriter;} // testeaza daca x apartine multimii Julia-Fatou Jc // returneaza 0 daca apartine, -1 daca converge finit, +1 daca converge infinit int isIn(CComplex &x) { int rez = 0; // tablou in care vor fi memorate valorile procesului iterativ z_n+1 = z_n * z_n + c CComplex z0,z1; z0 = x; for (int i = 1; i < m.nriter; i++) { z1 = z0 * z0 + m.c; if (z1 == z0) { // x nu apartine m.J-F deoarece procesul iterativ converge finit rez = -1; break; } else if (z1.getModul() > m.modmax) { // x nu apartine m.J-F deoarece procesul iterativ converge la infinit rez = 1; break; } z0 = z1; } return rez; } // afisarea multimii J-F care intersecteaza multimea argument void display(double xmin, double ymin, double xmax, double ymax) { glPushMatrix(); glLoadIdentity(); // glTranslated((xmin + xmax) * 1.0 / (xmin - xmax), (ymin + ymax) * 1.0 / (ymin - ymax), 0); // glScaled(1.0 / (xmax - xmin), 1.0 / (ymax - ymin), 1); // afisarea propriu-zisa glBegin(GL_POINTS); for(double x = xmin; x <= xmax; x+=RX_JF) for(double y = ymin; y <= ymax; y+=RY_JF) { CComplex z(x, y); int r = isIn(z); // z.print(stdout); if (r == 0) { // fprintf(stdout, " \n"); glVertex3d(x,y,0); } else if (r == -1) { // fprintf(stdout, " converge finit\n"); } else if (r == 1) { // fprintf(stdout, " converge infinit\n"); } } fprintf(stdout, "STOP\n"); glEnd(); glPopMatrix(); } private: struct SDate { CComplex c; // nr. de iteratii int nriter; // modulul maxim double modmax; } m; }; class Mandelbrot { public: Mandelbrot() { // m.c se initializeaza implicit cu 0+0i m.nriter = NRITER_JF; m.modmax = MODMAX_JF; } Mandelbrot(CComplex &c) { m.c = c; m.nriter = NRITER_JF; m.modmax = MODMAX_JF; } ~Mandelbrot() {} void setmodmax(double v) { assert(v <= MODMAX_JF); m.modmax = v; } double getmodmax() { return m.modmax; } void setnriter(int v) { assert(v <= NRITER_JF); m.nriter = v; } int getnriter() { return m.nriter; } // testeaza daca x apartine multimii Julia-Fatou Jc // returneaza 0 daca apartine, -1 daca converge finit, +1 daca converge infinit int isIn(CComplex &x) { int rez = 0; // tablou in care vor fi memorate valorile procesului iterativ z_n+1 = z_n * z_n + c CComplex z0, z1; z0 = x; for (int i = 1; i < m.nriter; i++) { z1 = z0 * z0 + x; if (z1 == z0) { // x nu apartine m.J-F deoarece procesul iterativ converge finit break; } else if (z1.getModul() > m.modmax) { // x nu apartine m.J-F deoarece procesul iterativ converge la infinit rez = 1; break; } z0 = z1; } return rez; } // afisarea multimii J-F care intersecteaza multimea argument void display(double xmin, double ymin, double xmax, double ymax) { glPushMatrix(); glLoadIdentity(); // glTranslated((xmin + xmax) * 1.0 / (xmin - xmax), (ymin + ymax) * 1.0 / (ymin - ymax), 0); // glScaled(1.0 / (xmax - xmin), 1.0 / (ymax - ymin), 1); // afisarea propriu-zisa int iteration = 0; glBegin(GL_POINTS); for (double x = xmin; x <= xmax; x += RX_JF) for (double y = ymin; y <= ymax; y += RY_JF) { CComplex z(x, y); int r = isIn(z); // z.print(stdout); if (r == 0) { // fprintf(stdout, " \n"); glVertex3d(x/2, y/2, 0); } else if (r == -1) { // fprintf(stdout, " converge finit\n"); } else if (r == 1) { // fprintf(stdout, " converge infinit\n"); glColor3f(0.1, 1.0, 0.1); glVertex3d(x / 2, y / 2, 0); glColor3f(1.0, 0.1, 0.1); } } fprintf(stdout, "STOP\n"); glEnd(); glPopMatrix(); } private: struct SDate { CComplex c; // nr. de iteratii int nriter; // modulul maxim double modmax; } m; }; // multimea Julia-Fatou pentru z0 = 0 si c = -0.12375+0.056805i void Display1() { CComplex c(-0.12375, 0.056805); CJuliaFatou cjf(c); glColor3f(1.0, 0.1, 0.1); cjf.setnriter(30); cjf.display(-0.8, -0.4, 0.8, 0.4); } // multimea Julia-Fatou pentru z0 = 0 si c = -0.012+0.74i void Display2() { CComplex c(-0.012, 0.74); CJuliaFatou cjf(c); glColor3f(1.0, 0.1, 0.1); cjf.setnriter(30); cjf.display(-1, -1, 1, 1); } void Display3() { CComplex c(-0.012, 0.74); Mandelbrot m(c); glColor3f(1.0, 0.1, 0.1); m.setnriter(100); m.display(-2, -2, 2, 2); } void Init(void) { glClearColor(1.0,1.0,1.0,1.0); glLineWidth(1); // glPointSize(3); glPolygonMode(GL_FRONT, GL_LINE); } void Display(void) { switch(prevKey) { case '1': glClear(GL_COLOR_BUFFER_BIT); Display1(); break; case '2': glClear(GL_COLOR_BUFFER_BIT); Display2(); break; case '3': glClear(GL_COLOR_BUFFER_BIT); Display3(); break; default: break; } glFlush(); } void Reshape(int w, int h) { glViewport(0, 0, (GLsizei) w, (GLsizei) h); } void KeyboardFunc(unsigned char key, int x, int y) { prevKey = key; if (key == 27) // escape exit(0); glutPostRedisplay(); } void MouseFunc(int button, int state, int x, int y) { } int main(int argc, char** argv) { glutInit(&argc, argv); glutInitWindowSize(dim, dim); glutInitWindowPosition(100, 100); glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB); glutCreateWindow (argv[0]); Init(); glutReshapeFunc(Reshape); glutKeyboardFunc(KeyboardFunc); glutMouseFunc(MouseFunc); glutDisplayFunc(Display); glutMainLoop(); return 0; }
[ "andrei.arhip10@yahoo.com" ]
andrei.arhip10@yahoo.com
1ee3b900df367c1ada41a4f4bcf56bcb52916477
e079408cf8c4b3302d3d86c94fac45944597f4b0
/ArduinoCode/libraries/HITBmirf/examples/HITBadgeLEDRoutine/HITBadgeLEDRoutine.ino
6b3894fb43206b5bbec4a6d2e9cdecbd91eadab7
[]
no_license
Ardillo/HITBadger
f1ec31864db131c28c2f388b7262af01750f5b78
ce3276dcbbabf2b66c349e6662c9e7d6c45d72a8
refs/heads/master
2021-01-10T20:47:31.618113
2015-06-01T12:53:07
2015-06-01T12:53:07
17,780,844
0
1
null
2015-06-01T12:53:07
2014-03-15T17:18:07
Eagle
UTF-8
C++
false
false
1,177
ino
#include "HITBadge.h" unsigned long time; unsigned long backup_time; HITBadge badge; /// SETUP void setup() { } /// PROGRAM void loop() { time = millis()/1000 - backup_time; if(time < 5){ badge.blinkOne(); } else if(time <10){ badge.blinkTwo(); } else if(time <15){ badge.blinkThree(); } else if(time <20){ for(int i=0; i<3; i++) badge.blinkUp(); } else if(time <25){ for(int i=0; i<3; i++) badge.blinkRight(); } else if(time <30){ for(int i=0; i<3; i++) badge.blinkDown(); } else if(time <35){ for(int i =0; i<3; i++) badge.blinkLeft(); } else if(time <40){ for(int i =0; i<3; i++) badge.arrow(); } else if(time <45){ for(int i =0; i<3; i++) badge.knightRider(); } else if(time <50){ for(int i =0; i<3; i++) badge.circleL(); } else if(time <55){ for(int i =0; i<3; i++) badge.circleR(); } else if(time <60){ for(int i =0; i<3; i++) badge.fill(1000); } else if(time <65){ for(int i=0; i<3; i++) badge.flashAll(); } else if(time <70){ badge.fadeAll(); } badge.reset(); backup_time = time; }
[ "ardillo@localhost.localdomain" ]
ardillo@localhost.localdomain
0b30191b30be59ea1f6e0397e040ef2e5c74057a
beef3f3a422c69ec2a8a130cc7669d8317cb0336
/Source/Escape/AI/BTTask_Attack.h
b316921316e755e4dfd6592ad52ce2d0e5f17821
[]
no_license
hoho520/UnrealProject
99aa5d7ba491d41fc96ab9e70c15561e5455f4f5
64de16c8a39c2e4ae0b6380a123d254250bc637d
refs/heads/master
2022-01-14T13:33:00.142671
2019-05-29T06:40:01
2019-05-29T06:40:01
175,144,934
0
0
null
null
null
null
UTF-8
C++
false
false
648
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "BehaviorTree/BTTaskNode.h" #include "BTTask_Attack.generated.h" /** * */ UCLASS() class ESCAPE_API UBTTask_Attack : public UBTTaskNode { GENERATED_BODY() protected: UBTTask_Attack(); virtual EBTNodeResult::Type ExecuteTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory) override; virtual void TickTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory, float DeltaSeconds) override; public: void SetIsAttacking(bool bTrue) { bIsAttacking = bTrue; } private: bool bIsAttacking = false; };
[ "swat91@naver.com" ]
swat91@naver.com
bf4d222e0ed40e945125cf99b3c90464702271e5
73e36e1e1b8f513f0fc2e7e239626fe34fe5a21c
/Paradox_2020_widget_v2/juego3.cpp
84556a385e2d6603578eab6c42ca0e9c2dd1cf7a
[]
no_license
Sebastianuribe1212/Proyecto-final
c40a66619a1c6da4b126b75cce09043475459295
d0c261b36b7c0718f32946de7a0271ed2cebd706
refs/heads/master
2023-02-24T09:07:55.497445
2021-01-20T21:08:04
2021-01-20T21:08:04
323,965,788
0
0
null
2021-01-21T05:43:42
2020-12-23T17:41:08
C++
UTF-8
C++
false
false
1,917
cpp
#include "juego3.h" juego3 :: juego3(QWidget * parent) { //Creacion y set de la escena scene = new QGraphicsScene(); scene->setSceneRect(0,0,800,600); setScene(scene); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setFixedSize(800,600); //creacion y set de personaje personaje = new cuerpo(); personaje->setPos(400,550); personaje->setFlag(QGraphicsItem::ItemIsFocusable); personaje->setFocus(); scene->addItem(personaje); portal1 = new pared(50,50,-380,-550); scene->addItem(portal1); //Creacion de paredes del mundo personaje->setPared(paredaux); for(int i = 0 ; i <paredaux.size(); i++){ scene->addItem(paredaux.at(i)); } //actualizacion para tomar la moneda monedas = new moneda(); monedas->setPos(400,300); scene->addItem(monedas); time = new QTimer; time->start(80); connect(time, SIGNAL(timeout()), this,SLOT(Actualizacion())); connect(time, SIGNAL(timeout()), this,SLOT(portal())); show(); if(finish == true){ setSalir(true); } } void juego3::Actualizacion() { if(monedas->collidesWithItem(personaje) ) { take = true; scene->removeItem(monedas); delete monedas; disconnect(time, SIGNAL(timeout()), this,SLOT(Actualizacion())); } } void juego3::portal() { if(portal1->collidesWithItem(personaje) && take == true ) { finish = true; scene->removeItem(personaje); delete personaje; for(int i = 0 ; i <paredaux.size(); i++){ scene->removeItem(paredaux.at(i)); } scene->removeItem(portal1); delete portal1; disconnect(time, SIGNAL(timeout()), this,SLOT(portal())); } } bool juego3::getSalir() const { return salir; } void juego3::setSalir(bool value) { salir = value; }
[ "sebastian.uribea@udea.edu.co" ]
sebastian.uribea@udea.edu.co
b9da211c196be4059e706a67011f1c2a0c514328
fe6bc47c2624bf3a9d3f48e9f2982c2968fba0e8
/include/hubDB/DBBufferMgr.h
5c5e40c04c2e2cc93e8c13206be55cf2c3b2b4d1
[]
no_license
candrowm/uebung_db2
ecda9084030247517fd66256d7641a5a57c10251
cd3fc2ed344684859c581f9e38d33c121793df68
refs/heads/master
2021-09-05T03:17:41.203955
2018-01-03T18:40:48
2018-01-03T18:40:48
111,203,733
0
0
null
null
null
null
UTF-8
C++
false
false
2,208
h
#ifndef DBBUFFERMGR_H_ #define DBBUFFERMGR_H_ #include <hubDB/DBManager.h> #include <hubDB/DBFileMgr.h> #include <hubDB/DBBCB.h> #include <hubDB/DBBACB.h> using namespace HubDB::File; using namespace HubDB::Buffer; namespace HubDB{ namespace Manager{ class DBBufferMgr : public DBManager { public: DBBufferMgr (bool doThreading,int bufferBlock = STD_BUFFER_BLOCKS); virtual ~DBBufferMgr ( ); virtual string toString(string linePrefix="") const; void createFile(const string & name){fileMgr.createFile(name);}; void createDirectory(const string & name){fileMgr.createDirectory(name);}; void dropFile(const string & name); void dropDirectory(const string & name){fileMgr.dropDirectory(name);}; DBFile & openFile(const string & name){return fileMgr.openFile(name);}; void closeFile(DBFile & file); uint getBlockCnt(DBFile & file){return fileMgr.getBlockCnt(file);}; void setBlockCnt(DBFile & file,uint cnt){fileMgr.setBlockCnt(file,cnt);}; DBBACB fixBlock(DBFile & file,BlockNo blockNo,DBBCBLockMode mode); DBBACB fixNewBlock(DBFile & file); DBBACB fixEmptyBlock(DBFile & file,BlockNo blockNo); void unfixBlock(const DBBACB & bacb); void flushBlock(DBBACB & bacb); DBBACB upgradeToExclusive(const DBBACB & bacb); const DBBACB downgradeToShared(const DBBACB & bacb); int blockCounter = 0; protected: virtual bool isBlockOfFileOpen(DBFile & file) const = 0; virtual void closeAllOpenBlocks(DBFile & file) = 0; virtual DBBCB * fixBlock(DBFile & file,BlockNo blockNo,DBBCBLockMode mode,bool read)=0; virtual void unfixBlock(DBBCB & bcb) = 0; void flushBCBBlock(DBBCB & bcb); void waitForLock(); void emitSignal(); DBFileMgr fileMgr; int maxBlockCnt; private: static LoggerPtr logger; pthread_cond_t cond; }; } namespace Exception{ class DBBufferMgrException : public DBException{ public: DBBufferMgrException(const std::string& msg); DBBufferMgrException(const DBBufferMgrException&); DBBufferMgrException& operator=(const DBBufferMgrException&); }; } } #endif /*DBBUFFERMGR_H_*/
[ "martin.candrowicz@web.de" ]
martin.candrowicz@web.de
88f435b19f5fcdd76d6015f0032621ad48d1cc80
8aa0bf891350627a46d461951b151f0d4860056e
/Arduino/libraries/AP_Baro/AP_Baro_BMP085.cpp
364f23b4eb95e95bbba702eb966599ee6584f5d1
[]
no_license
KitPan/monster-truck
92e7430eb9f9b5dc818c06ba230b17fcf83f548d
8a7f46c8521398a9b8bcbe93eb263731d13123e6
refs/heads/master
2021-01-17T04:24:45.744599
2012-07-01T00:41:14
2012-07-01T00:41:14
41,777,679
0
0
null
null
null
null
UTF-8
C++
false
false
6,350
cpp
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- /* APM_BMP085.cpp - Arduino Library for BMP085 absolute pressure sensor Code by Jordi Mu�oz and Jose Julio. DIYDrones.com This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. Sensor is conected to I2C port Sensor End of Conversion (EOC) pin is PC7 (30) Variables: RawTemp : Raw temperature data RawPress : Raw pressure data Temp : Calculated temperature (in 0.1�C units) Press : Calculated pressure (in Pa units) Methods: Init() : Initialization of I2C and read sensor calibration data Read() : Read sensor data and calculate Temperature and Pressure This function is optimized so the main host don�t need to wait You can call this function in your main loop It returns a 1 if there are new data. Internal functions: Command_ReadTemp(): Send commando to read temperature Command_ReadPress(): Send commando to read Pressure ReadTemp() : Read temp register ReadPress() : Read press register Calculate() : Calculate Temperature and Pressure in real units */ extern "C" { // AVR LibC Includes #include <inttypes.h> #include <avr/interrupt.h> } #if defined(ARDUINO) && ARDUINO >= 100 #include "Arduino.h" #else #include "WConstants.h" #endif #include <AP_Common.h> #include <AP_Math.h> // ArduPilot Mega Vector/Matrix math Library #include <I2C.h> #include "AP_Baro_BMP085.h" #define BMP085_ADDRESS 0x77 //(0xEE >> 1) #define BMP085_EOC 30 // End of conversion pin PC7 // the apm2 hardware needs to check the state of the // chip using a direct IO port // On APM2 prerelease hw, the data ready port is hooked up to PE7, which // is not available to the arduino digitalRead function. #define BMP_DATA_READY() (_apm2_hardware?(PINE&0x80):digitalRead(BMP085_EOC)) // oversampling 3 gives highest resolution #define OVERSAMPLING 3 // Public Methods ////////////////////////////////////////////////////////////// bool AP_Baro_BMP085::init( AP_PeriodicProcess * scheduler ) { byte buff[22]; pinMode(BMP085_EOC, INPUT); // End Of Conversion (PC7) input BMP085_State = 0; // Initial state // We read the calibration data registers if (I2c.read(BMP085_ADDRESS, 0xAA, 22, buff) != 0) { healthy = false; return false; } ac1 = ((int)buff[0] << 8) | buff[1]; ac2 = ((int)buff[2] << 8) | buff[3]; ac3 = ((int)buff[4] << 8) | buff[5]; ac4 = ((int)buff[6] << 8) | buff[7]; ac5 = ((int)buff[8] << 8) | buff[9]; ac6 = ((int)buff[10] << 8) | buff[11]; b1 = ((int)buff[12] << 8) | buff[13]; b2 = ((int)buff[14] << 8) | buff[15]; mb = ((int)buff[16] << 8) | buff[17]; mc = ((int)buff[18] << 8) | buff[19]; md = ((int)buff[20] << 8) | buff[21]; //Send a command to read Temp Command_ReadTemp(); BMP085_State = 1; // init raw temo RawTemp = 0; healthy = true; return true; } // Read the sensor. This is a state machine // We read one time Temperature (state=1) and then 4 times Pressure (states 2-5) uint8_t AP_Baro_BMP085::read() { uint8_t result = 0; if (BMP085_State == 1){ if (BMP_DATA_READY()){ BMP085_State = 2; ReadTemp(); // On state 1 we read temp Command_ReadPress(); } }else{ if (BMP_DATA_READY()){ BMP085_State = 1; // Start again from state = 1 ReadPress(); Calculate(); Command_ReadTemp(); // Read Temp result = 1; // New pressure reading } } return(result); } int32_t AP_Baro_BMP085::get_pressure() { return Press; } int16_t AP_Baro_BMP085::get_temperature() { return Temp; } float AP_Baro_BMP085::get_altitude() { return 0.0; // TODO } int32_t AP_Baro_BMP085::get_raw_pressure() { return RawPress; } int32_t AP_Baro_BMP085::get_raw_temp() { return RawTemp; } // Private functions: ///////////////////////////////////////////////////////// // Send command to Read Pressure void AP_Baro_BMP085::Command_ReadPress() { if (I2c.write(BMP085_ADDRESS, 0xF4, 0x34+(OVERSAMPLING << 6)) != 0) { healthy = false; } } // Read Raw Pressure values void AP_Baro_BMP085::ReadPress() { uint8_t buf[3]; if (!healthy && millis() < _retry_time) { return; } if (I2c.read(BMP085_ADDRESS, 0xF6, 3, buf) != 0) { _retry_time = millis() + 1000; I2c.setSpeed(false); healthy = false; return; } RawPress = (((uint32_t)buf[0] << 16) | ((uint32_t)buf[1] << 8) | ((uint32_t)buf[2])) >> (8 - OVERSAMPLING); RawPress = _press_filter.apply(RawPress); } // Send Command to Read Temperature void AP_Baro_BMP085::Command_ReadTemp() { if (I2c.write(BMP085_ADDRESS, 0xF4, 0x2E) != 0) { healthy = false; } } // Read Raw Temperature values void AP_Baro_BMP085::ReadTemp() { uint8_t buf[2]; int32_t _temp_sensor; if (!healthy && millis() < _retry_time) { return; } if (I2c.read(BMP085_ADDRESS, 0xF6, 2, buf) != 0) { _retry_time = millis() + 1000; I2c.setSpeed(false); healthy = false; return; } _temp_sensor = buf[0]; _temp_sensor = (_temp_sensor << 8) | buf[1]; RawTemp = _temp_filter.apply(_temp_sensor); } // Calculate Temperature and Pressure in real units. void AP_Baro_BMP085::Calculate() { int32_t x1, x2, x3, b3, b5, b6, p; uint32_t b4, b7; int32_t tmp; // See Datasheet page 13 for this formulas // Based also on Jee Labs BMP085 example code. Thanks for share. // Temperature calculations x1 = ((int32_t)RawTemp - ac6) * ac5 >> 15; x2 = ((int32_t) mc << 11) / (x1 + md); b5 = x1 + x2; Temp = (b5 + 8) >> 4; // Pressure calculations b6 = b5 - 4000; x1 = (b2 * (b6 * b6 >> 12)) >> 11; x2 = ac2 * b6 >> 11; x3 = x1 + x2; //b3 = (((int32_t) ac1 * 4 + x3)<<OVERSAMPLING + 2) >> 2; // BAD //b3 = ((int32_t) ac1 * 4 + x3 + 2) >> 2; //OK for OVERSAMPLING=0 tmp = ac1; tmp = (tmp*4 + x3)<<OVERSAMPLING; b3 = (tmp+2)/4; x1 = ac3 * b6 >> 13; x2 = (b1 * (b6 * b6 >> 12)) >> 16; x3 = ((x1 + x2) + 2) >> 2; b4 = (ac4 * (uint32_t) (x3 + 32768)) >> 15; b7 = ((uint32_t) RawPress - b3) * (50000 >> OVERSAMPLING); p = b7 < 0x80000000 ? (b7 * 2) / b4 : (b7 / b4) * 2; x1 = (p >> 8) * (p >> 8); x1 = (x1 * 3038) >> 16; x2 = (-7357 * p) >> 16; Press = p + ((x1 + x2 + 3791) >> 4); }
[ "nelsonprsn@gmail.com" ]
nelsonprsn@gmail.com
ad23be71baa2663b2188db9c88b39edf1b34a5bf
c844680fd2a5408e07bd11c139cd4f70e0fd5e0b
/dali/include/dali/integration-api/adaptors/trigger-event-factory-interface.h
8fa42904ec41895738415ed8003887d2c9ef05b5
[]
no_license
dalihub/androidhelloworld
53dfe9a0c628f7812ec5cdb4eb57928cedd05cd6
78d1ef7735c071e6201525354a0852e7fb783a38
refs/heads/master
2020-07-21T09:31:27.551673
2019-09-09T14:59:06
2019-09-09T15:02:23
206,816,793
0
0
null
null
null
null
UTF-8
C++
false
false
2,337
h
#ifndef DALI_INTEGRATION_TRIGGER_EVENT_FACTORY_INTERFACE_H #define DALI_INTEGRATION_TRIGGER_EVENT_FACTORY_INTERFACE_H /* * Copyright (c) 2019 Samsung Electronics Co., Ltd. * * 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. * */ // EXTERNAL INCLUDES #include <dali/public-api/signals/callback.h> // INTERNAL INCLUDES #ifdef DALI_ADAPTOR_COMPILATION #include <dali/integration-api/trigger-event-interface.h> #else #include <dali/integration-api/adaptors/trigger-event-interface.h> #endif namespace Dali { /** * @brief Trigger interface factory class for creating a TriggerEvents * */ class TriggerEventFactoryInterface { public: /** * @brief Create a new concrete implementation of the event trigger interface. * @param callback called when interface->Trigger() is called * @param options TriggerEventInterface option * @return pointer to a new trigger event * @note Ownership of callback should be taken over by deriving classes */ virtual TriggerEventInterface* CreateTriggerEvent( CallbackBase* callback, TriggerEventInterface::Options options ) = 0; /** * @brief destroy a trigger event * @param triggerEventInterface event to destroy */ virtual void DestroyTriggerEvent( TriggerEventInterface* triggerEventInterface ) = 0; protected: /** * @brief Constructor */ TriggerEventFactoryInterface() { } /** * @brief Virtual Destructor */ virtual ~TriggerEventFactoryInterface() { } private: // Undefined copy constructor. TriggerEventFactoryInterface( const TriggerEventFactoryInterface& ); // Undefined assignment operator. TriggerEventFactoryInterface& operator=( const TriggerEventFactoryInterface& ); }; } // namespace Dali #endif // DALI_INTEGRATION_TRIGGER_EVENT_FACTORY_INTERFACE_H
[ "a.obzhirov@samsung.com" ]
a.obzhirov@samsung.com
f3ca4b1213b1364d2ec1d2b41fcca043b91b5523
2a6b947fadef8332a0abf737c6579e1cbca700f4
/common/string_helper.h
ca4972951d8e7e62d7f34c505d9594dd13b5741b
[ "MIT" ]
permissive
Thalhammer/pve-simple-container
471b772c73011bcec1acb6db34b177eaa67b02ef
bfe7e72961fe6ae350587c71c71ef1be8e5fd5f5
refs/heads/master
2021-07-03T11:36:52.811457
2020-08-22T14:33:46
2020-08-22T14:33:46
147,509,253
1
0
null
null
null
null
UTF-8
C++
false
false
3,469
h
#pragma once #include <string> #include <sstream> #include <limits> #include <algorithm> namespace pvesc { namespace common { template<size_t Len> constexpr inline size_t strlen(const char (&data)[Len]) noexcept { return Len - 1; } template<typename CharT, typename Traits, typename Alloc> inline size_t strlen(const std::basic_string<CharT, Traits, Alloc>& str) noexcept { return str.length(); } template<typename T, typename TStart, typename TEnd> inline T find_section(const T& str, const TStart& start, const TEnd& end) { if(strlen(start) == 0) throw std::invalid_argument("Start can not be empty"); auto pos = str.find(start); if(pos == T::npos) throw std::invalid_argument("Section not found"); auto pend = strlen(end) == 0 ? str.size() : str.find(end, pos + strlen(start)); if(pend == T::npos) throw std::invalid_argument("Section not found"); return str.substr(pos + strlen(start), pend - pos - strlen(start)); } template<typename T, typename TFind, typename TReplace> inline void replace(T& str, const TFind& find, const TReplace& replace) { auto flen = strlen(find); auto rlen = strlen(replace); if(flen == 0) throw std::invalid_argument("Find string can not be empty"); auto pos = str.find(find); while(pos != T::npos) { str.replace(pos, flen, replace); pos = str.find(find, pos + rlen); } } template<typename T, typename TFind, typename TReplace> inline T replace_copy(const T& str, const TFind& find, const TReplace& replace) { T copy = str; common::replace(copy, find, replace); return copy; } template<typename StringType, typename TDelim> inline std::vector<StringType> split(const StringType& s, const TDelim& delim, size_t max = std::numeric_limits<size_t>::max()) { std::vector<StringType> res; size_t offset = 0; do { auto pos = s.find(delim, offset); if (res.size() < max - 1 && pos != std::string::npos) res.push_back(s.substr(offset, pos - offset)); else { res.push_back(s.substr(offset)); break; } offset = pos + strlen(delim); } while (true); return res; } template<typename StringType> inline std::vector<StringType> lines(const StringType& s) { std::vector<StringType> res; std::string line; std::istringstream ss(s); while(std::getline(ss, line)) res.push_back(line); return res; } // trim from start (in place) template<typename StringType = std::string> inline void ltrim(StringType &s) { s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](int ch) { return !std::isspace(ch); })); } // trim from end (in place) template<typename StringType = std::string> inline void rtrim(StringType &s) { s.erase(std::find_if(s.rbegin(), s.rend(), [](int ch) { return !std::isspace(ch); }).base(), s.end()); } // trim from both ends (in place) template<typename StringType = std::string> inline void trim(StringType &s) { ltrim(s); rtrim(s); } // trim from start (copying) template<typename StringType = std::string> inline StringType ltrim_copy(StringType s) { ltrim(s); return s; } // trim from end (copying) template<typename StringType = std::string> inline StringType rtrim_copy(StringType s) { rtrim(s); return s; } // trim from both ends (copying) template<typename StringType = std::string> inline StringType trim_copy(StringType s) { trim(s); return s; } } }
[ "dominik@thalhammer.it" ]
dominik@thalhammer.it
66eeae069cb16ac55c9c7ce9853e03e1aad8bd79
735441d9817e13191b24702feb969049db184c9e
/2sem/Array 14.02/array.h
dc379d834679d3c8e935abc8f39921ac1ce60d36
[]
no_license
p-mazhnik/mipt-cpp
0e7dcfe84d0b31e9b2cb2fe1133dd23f4538f5c3
5c9bd5e97880a353c64843170863e5ea6d9cf26d
refs/heads/master
2021-01-21T10:00:26.884468
2018-04-11T22:20:44
2018-04-11T22:20:44
83,356,174
2
3
null
2017-04-25T16:06:11
2017-02-27T20:58:18
C++
UTF-8
C++
false
false
839
h
#ifndef ARRAY_H_INCLUDED #define ARRAY_H_INCLUDED /// friend ??? ????????? ? ????????? ????? ?????? class int_array { private: int *values; int size; // void log(char *message); public: int_array(const int size); int_array(const int_array &that); ///??????????? ??????????? ??????????, ???? ???????? ?? ????????, ??????? ????? - ?? ?????? ~int_array(); void print() const; ///??????????? ???????, ??????? ???????, ??? ??? ?? ?????? ???????? ?????????? void set(int index, int value); int get(int index); int_array sub_array(int start, int finish); void resize (int size); int_array revert(); int max(); int min(); int_array operator+(const int_array &that); ///???????? ???? ???????? int_array operator+(const int &value); ///?????? + ????? }; #endif // ARRAY_H_INCLUDED
[ "mazhnik.pa@phystech.edu" ]
mazhnik.pa@phystech.edu
ba8bae5fddf12972fae9200e3e5fae8b869058af
68db9ca21ad8bf73dc8fab25fc681bbb55a9cd51
/Parcial_3/Practicas/Proyecto_final/Main.cpp
7f22ea11d49c3915b42bde80cbd15b341acbcea5
[]
no_license
Robert170/Prograc-on_II_2019B_Roberto_Ramirez_Ontiveros
7ad8ccd487cc5672c1679cc4e596715c7974fe9f
0a7a1148efdac3b3b00c10ee4a8ab43afd8e38ee
refs/heads/master
2020-05-18T02:39:46.591725
2019-08-16T17:28:06
2019-08-16T17:28:06
184,122,904
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
3,962
cpp
#include <iostream> #include <string> #include "Arbol_AVL.h" #include "Arbol_Bin.h" #include "Persona.h" using std::string; using std::cout; using std::cin; using std::endl; int arbol_avl(); int arbol_bin(); int main() { unsigned int menu = 0; cout << "\nIngresa \n0-Salir \n1-Para un arbol binario \n2-Para un arbol binario AVL" << endl; cin >> menu; switch (menu) { case 0: exit(0); //Caso para el arbol binario case 1: system("cls"); arbol_bin(); return main(); //Caso para el arbol binario AVL case 2: system("cls"); arbol_avl(); return main(); default: system("cls"); cout << "Ingresa un valor correcto" << endl; return main(); } cin.get(); cin.ignore(); return 0; } //Función menu para el árbol AVL int arbol_avl() { char eleccion; Arbol_AVL<Persona> arbol; unsigned int forzar_salida = 0; while (forzar_salida == 0) { system("cls"); cout << "Salir(0)" << endl; cout << "Agregar un elemento(1)" << endl; cout << "Mostrar el arbol in_orden(2)" << endl; cout << "Mostrar el arbol pre_orden(3)" << endl; cout << "Mostrar el arbol post_orden(4)" << endl; cout << "Eliminar un nodo(5)" << endl; cin >> eleccion; switch (eleccion) { case '0': exit(0); //ingresar nodos case '1': { //Limpiamos la pantalla system("cls"); Nodos<Persona>*nodo_temp = new Nodos<Persona>(Persona()); arbol.ingresar(nodo_temp); break; } //mostrar arbol en inorden case '2': //Limpiamos la pantalla system("cls"); arbol.in_orden(); forzar_salida++; break; //mostrar arbol en preorden case '3': //Limpiamos la pantalla system("cls"); arbol.pre_orden(); forzar_salida++; break; //mostrar arbol en postorden case '4': //Limpiamos la pantalla system("cls"); arbol.post_orden(); forzar_salida++; break; //eliminar el nodo que el usuario ingrese case '5': { //Limpiamos la pantalla system("cls"); //Creamos un nuevo nodo el cual nodo_temp va a tener el nombre, apellido y edad Nodos<Persona>*nodo_temp = new Nodos<Persona>(Persona()); //Finalmente arbol va arbol.eliminar(nodo_temp); forzar_salida++; arbol.balancear(); break; } default: system("cls"); cout << "Ingresa un valor correcto" << endl; return arbol_avl(); } } } //Función menu para el árbol binario int arbol_bin() { char eleccion; Arbol_Bin<Persona> arbol; unsigned int forzar_salida = 0; while (forzar_salida == 0) { system("cls"); cout << "Salir(0)" << endl; cout << "Agregar un elemento(1)" << endl; cout << "Eliminar un nodo(2)" << endl; cout << "Mostrar el arbol in_orden(3)" << endl; cout << "Mostrar el arbol pre_orden(4)" << endl; cout << "Mostrar el arbol post_orden(5)" << endl; cin >> eleccion; switch (eleccion) { case '0': exit(0); //ingresar nodos case '1': { //Limpiamos la pantalla system("cls"); //User * U = new User(Nombre, Apellido, Edad); Nodos<Persona>*nodo_temp = new Nodos<Persona>(Persona()); arbol.ingresar(nodo_temp); break; } //eliminar el nodo que el usuario ingrese case '2': { //Limpiamos la pantalla system("cls"); //Creamos un nuevo nodo el cual nodo_temp va a tener el nombre, apellido y edad Nodos<Persona>*nodo_temp = new Nodos<Persona>(Persona()); //Finalmente arbol va arbol.eliminar(nodo_temp); forzar_salida++; break; } //mostrar arbol en inorden case '3': //Limpiamos la pantalla system("cls"); arbol.in_orden(); forzar_salida++; break; //mostrar arbol en preorden case '4': //Limpiamos la pantalla system("cls"); arbol.pre_orden(); forzar_salida++; break; //mostrar arbol en postorden case '5': //Limpiamos la pantalla system("cls"); arbol.post_orden(); forzar_salida++; break; default: system("cls"); cout << "\nIngresa un valor correcto" << endl; return arbol_bin(); } } }
[ "42983312+Robert170@users.noreply.github.com" ]
42983312+Robert170@users.noreply.github.com
a25f6feee44f9f1f94cfe6fe402ef9f2f23c521d
60247e7161920de5476ae181bcfef1d5421c1748
/interoplogin.cpp
5aba7980b077c4abe83d743ddd379160f294d1ce
[]
no_license
utat-uav/Software
02c820061dabfd9fff76c7853d12906d2efc8668
e8c113dcc0148c4416ce88af690dd04746dda36c
refs/heads/master
2021-01-19T06:42:33.032472
2017-04-30T21:09:42
2017-04-30T21:09:42
63,461,914
1
4
null
null
null
null
UTF-8
C++
false
false
1,388
cpp
#include "interoplogin.h" #include "ui_interoplogin.h" #include <QSettings> InteropLogin::InteropLogin(QWidget *parent) : QDialog(parent), ui(new Ui::InteropLogin) { ui->setupUi(this); QSettings settings; QString defaultIP = settings.value("Interop/IP", QString("128.0.0.1")).toString(); int defaultPort = settings.value("Interop/Port", (int)0).toInt(); QString defaultUser = settings.value("Interop/User", QString("")).toString(); ui->ipEdit->setText(defaultIP); ui->portEdit->setValue(defaultPort); ui->userEdit->setText(defaultUser); // if (ui->userEdit->text() == "") // { // ui->userEdit->setFocus(); // } // else // { // ui->passEdit->setFocus(); // } } InteropLogin::~InteropLogin() { delete ui; } void InteropLogin::accept() { QSettings settings; settings.setValue("Interop/IP", ui->ipEdit->text()); settings.setValue("Interop/Port", ui->portEdit->value()); settings.setValue("Interop/User", ui->userEdit->text()); serverInfo.ip = ui->ipEdit->text(); serverInfo.port = ui->portEdit->value(); serverInfo.username = ui->userEdit->text(); serverInfo.password = ui->passEdit->text(); QDialog::accept(); } void InteropLogin::on_loginButton_clicked() { this->accept(); } InteropLogin::ServerInfo InteropLogin::getServerInfo() { return this->serverInfo; }
[ "Davis Wu" ]
Davis Wu
d32712e604c22dbcfcb47626d6526583e1d43c2c
3697687db308db5a57f5e1c7292393949cc32053
/src/Material.cpp
db55878462a07e1eff5b8a1f6d20a942665019e1
[]
no_license
essalguero/APIs_Practica08
b6786f8465a2ebaba04c3e53db6ee024f827a079
2c8285ed94065a24adb9f9d140bf096635df34d2
refs/heads/master
2020-03-21T04:02:23.048095
2018-06-23T23:02:55
2018-06-23T23:02:55
138,087,131
0
0
null
null
null
null
UTF-8
C++
false
false
7,710
cpp
#include "Material.h" #include "State.h" Material::Material(const std::shared_ptr<Texture>& tex, const std::shared_ptr<Shader>& shader) { materialTexture = tex; materialShader = shader; materialColor = glm::vec4(1.0f); } const std::shared_ptr<Shader>& Material::getShader() const { if (!materialShader) return State::defaultShader; return materialShader; } std::shared_ptr<Shader>& Material::getShader() { if (!materialShader) return State::defaultShader; return materialShader; } void Material::setShader(const std::shared_ptr<Shader>& shader) { materialShader = shader; } const std::shared_ptr<Texture>& Material::getTexture() const { return materialTexture; } void Material::setTexture(const std::shared_ptr<Texture>& tex) { materialTexture = tex; } void Material::prepare() { std::shared_ptr<Shader> shader; if (State::overrideShader) shader = State::overrideShader; else shader = getShader(); shader->use(); glm::mat4 mvMatrix = State::viewMatrix * State::modelMatrix; glm::mat4 mvpMatrix = State::projectionMatrix * mvMatrix; glm::mat4 normalsMatrix(mvMatrix); normalsMatrix = glm::transpose(glm::inverse(normalsMatrix)); shader->setMatrix(shader->getLocation("depthBiasMatrix"), State::depthBiasMatrix); shader->setInt(shader->getLocation("castShadows"), State::shadows); shader->setMatrix(shader->getLocation("mvMatrix"), mvMatrix); shader->setMatrix(shader->getLocation("normalsMatrix"), normalsMatrix); shader->setMatrix(shader->getLocation("mvpMatrix"), mvpMatrix); shader->setMatrix(shader->getLocation("ModelMatrix"), State::modelMatrix); shader->setVec3(shader->getLocation("eyePos"), State::eyePos); // Set other variables int isTexturizedLoc = getShader()->getLocation("isTexturized"); int hasColorLoc = getShader()->getLocation("hasColor"); int colorLoc = getShader()->getLocation("color"); // Check if there is a texture to be used if (isTexturizedLoc != -1) { if (materialTexture || normalTexture || reflectionTexture || refractionTexture) { shader->setInt(isTexturizedLoc, 1); } else { shader->setInt(isTexturizedLoc, 0); } } if (materialTexture) { shader->setInt(getShader()->getLocation("hasTexture"), 1); if (materialTexture->isCube()) { materialTexture->bind(0 + 4); int location = getShader()->getLocation("texSamplerCube"); shader->setInt(location, 0 + 4); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 1); } else { materialTexture->bind(0); int location = getShader()->getLocation("texSampler"); shader->setInt(location, 0); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 0); } } else { shader->setInt(getShader()->getLocation("hasTexture"), 0); } if (normalTexture) { int location = getShader()->getLocation("hasNormalTexture"); shader->setInt(location, 1); if (normalTexture->isCube()) { normalTexture->bind(1 + 4); int location = getShader()->getLocation("normalTextureCube"); shader->setInt(location, 1 + 4); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 1); } else { normalTexture->bind(1); int location = getShader()->getLocation("normalTexture"); shader->setInt(location, 1); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 0); } } else { shader->setInt(getShader()->getLocation("hasNormalTexture"), 0); } if (reflectionTexture) { int location = getShader()->getLocation("hasReflectionTexture"); shader->setInt(location, 1); if (reflectionTexture->isCube()) { reflectionTexture->bind(2 + 4); shader->setInt(getShader()->getLocation("reflectionTextureCube"), 2 + 4); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 1); } else { reflectionTexture->bind(2); shader->setInt(getShader()->getLocation("reflectionTexture"), 2); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 0); } } else { shader->setInt(getShader()->getLocation("hasReflectionTexture"), 0); } shader->setFloat(getShader()->getLocation("refractionCoef"), refractionCoef); if (refractionTexture) { int location = getShader()->getLocation("hasRefractionTexture"); shader->setInt(location, 1); if (refractionTexture->isCube()) { refractionTexture->bind(3 + 4); shader->setInt(getShader()->getLocation("refractionTextureCube"), 3 + 4); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 1); } else { refractionTexture->bind(3); shader->setInt(getShader()->getLocation("refractionTexture"), 3); location = getShader()->getLocation("isCubemap"); shader->setInt(location, 0); } } else { shader->setInt(getShader()->getLocation("hasRefractionTexture"), 0); } // Check if there is a texture to be used if (hasColorLoc != -1) { shader->setInt(hasColorLoc, 1); } shader->setVec4(colorLoc, materialColor); int variableLocation = shader->getLocation("numberLights"); if (lighting) { shader->setInt(variableLocation, static_cast<int>(State::lights.size())); variableLocation = shader->getLocation("shininess"); shader->setInt(variableLocation, materialShininess); variableLocation = shader->getLocation("ambientLight"); shader->setVec3(variableLocation, State::ambient); for (int i = 0; i < State::lights.size(); ++i) { State::lights.at(i)->prepare(i, shader); } } else { shader->setInt(variableLocation, 0); } variableLocation = shader->getLocation("diffuse"); shader->setVec4(variableLocation, materialColor); //Set blending mode switch (blendingMode) { case Material::BlendMode::ALPHA: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); break; case Material::BlendMode::ADD: glBlendFunc(GL_SRC_ALPHA, GL_ONE); break; case Material::BlendMode::MUL: glBlendFunc(GL_ZERO, GL_SRC_COLOR); break; default: break; } // Set culling mode (culling) ? glEnable(GL_CULL_FACE) : glDisable(GL_CULL_FACE); // Set Depth buffer active/non active glDepthMask(depthWrite); } const glm::vec4& Material::getColor() const { return materialColor; } void Material::setColor(const glm::vec4& color) { materialColor = color; } uint8_t Material::getShininess() const { return materialShininess; } void Material::setShininess(uint8_t shininess) { materialShininess = shininess; } Material::BlendMode Material::getBlendMode() const { return blendingMode; } void Material::setBlendMode(Material::BlendMode blendMode) { blendingMode = blendMode; } bool Material::getLighting() const { return lighting; } void Material::setLighting(bool enable) { lighting = enable; } bool Material::getCulling() const { return culling; } void Material::setCulling(bool enable) { culling = enable; } bool Material::getDepthWrite() const { return depthWrite; } void Material::setDepthWrite(bool enable) { depthWrite = enable; } const std::shared_ptr<Texture>& Material::getReflectionTexture() const { return reflectionTexture; } void Material::setReflectionTexture(const std::shared_ptr<Texture>& tex) { reflectionTexture = tex; } const std::shared_ptr<Texture>& Material::getRefractionTexture() const { return refractionTexture; } void Material::setRefractionTexture(const std::shared_ptr<Texture>& tex) { refractionTexture = tex; } const std::shared_ptr<Texture>& Material::getNormalTexture() const { return normalTexture; } void Material::setNormalTexture(const std::shared_ptr<Texture>& tex) { normalTexture = tex; } float Material::getRefractionCoef() const { return refractionCoef; } void Material::setRefractionCoef(float coef) { refractionCoef = coef; }
[ "essalguero@yahoo.es" ]
essalguero@yahoo.es
145abe8e626fa43a8ab6fd6a726f93a2d6e3c22f
975e662c22c3d325e1ff48e9abe4975f9d29408d
/test/task_test/ck_task_util_test.cpp
36ab9d89defabe0a2432a437e1bb1460786836dc
[]
no_license
dogtwelve/CakeStudy
8048dd6bb935fdbe8776e622406cbf930cbc1235
851caf5d532d292ec3aa17c7e3002e62a3702b32
refs/heads/master
2021-08-12T02:48:20.410384
2017-11-14T10:07:54
2017-11-14T10:07:54
110,673,533
0
0
null
null
null
null
UTF-8
C++
false
false
3,254
cpp
/* Copyright (c) 2007-2010 Takashi Kitao 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 "test.h" static bool s_is_new_task_in_dtor; static ckTask* s_delete_task_in_dtor; class TaskUtilTestClass : public ckTask { public: TaskUtilTestClass(ckTask::TaskOrder order) : ckTask(order) {} TaskUtilTestClass(ckTask* parent) : ckTask(parent) {} virtual ~TaskUtilTestClass() { if (s_is_new_task_in_dtor) { ckNewTask(TaskUtilTestClass)(ckTask::ORDER_ZERO); } if (s_delete_task_in_dtor) { ckDeleteTask(s_delete_task_in_dtor); } } }; void ckTaskUtilTest() { /* ckNewTask(type) ckDeleteTask(task) */ { s_is_new_task_in_dtor = false; s_delete_task_in_dtor = NULL; ckAssertThrow(ckNewTask(TaskUtilTestClass)(ckTask::ORDER_ZERO), ckTaskMgr::ExceptionNotInitialized); ckAssertThrow(ckDeleteTask(reinterpret_cast<ckTask*>(1)), ckTaskMgr::ExceptionNotInitialized); ckTaskMgr::createAfterSys(60); ckTask* task1 = ckNewTask(TaskUtilTestClass)(ckTask::ORDER_ZERO); ckTask* task2 = ckNewTask(TaskUtilTestClass)(ckTask::ORDER_ZERO); ckAssertThrow(ckNew(TaskUtilTestClass)(ckTask::ORDER_ZERO), ckTask::ExceptionInvalidCall); // This test leaks memory due to throw an exception in the constructor of the test class. ckDeleteTask(task1); task1 = ckNewTask(TaskUtilTestClass)(ckTask::ORDER_ZERO); s_is_new_task_in_dtor = true; ckAssertThrow(ckDeleteTask(task1), ckTaskMgr::ExceptionNewTaskInDestructor); s_is_new_task_in_dtor = false; task1 = ckNewTask(TaskUtilTestClass)(ckTask::ORDER_ZERO); s_delete_task_in_dtor = task2; ckAssertThrow(ckDeleteTask(task1), ckTaskMgr::ExceptionDeleteTaskInDestructor); s_delete_task_in_dtor = NULL; ckAssertThrow(ckDelete(task2, TaskUtilTestClass), ckTask::ExceptionInvalidCall); // This test leaks memory due to throw an exception in the destructor of the test class. ckAssertThrow(ckDeleteTask(NULL), ckTaskMgr::ExceptionInvalidArgument); ckTaskMgr::destroyFirst(); } }
[ "x3191@@hotmail.com" ]
x3191@@hotmail.com
c3c392735c95d09a00624f9d0371e868fab1fcb2
dfd6e4bb0a6e6b395f3753e11ec2459c8c3b8adc
/Dot_Engine/src/Dot/Utils/Parser/JsonParser.cpp
7bfeb9d910ab7fac07b85362c3befdc8fac753f3
[ "Apache-2.0" ]
permissive
SimonGido/Dot_Engine
f2bce1d4b85c7aa6bd32afd43618da2b4a29c437
1db28c56eeecefaed8aa3f1d87932765d5b16dd4
refs/heads/master
2022-04-03T08:37:16.832443
2020-02-09T21:30:23
2020-02-09T21:30:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,284
cpp
#include "stdafx.h" #include "JsonParser.h" namespace Dot { Json JsonParser::ParseJson(const std::string& filepath, const std::vector<std::string>& keywords) { Json json; std::ifstream file; file.open(filepath); std::string line; std::string tmp; while (std::getline(file, line)) { for (int i = 0; i < keywords.size(); ++i) { if (std::strstr(line.c_str(), keywords[i].c_str())) { JsonObject tmpObject; while (std::getline(file, line)) { if (!std::strstr(line.c_str(), "[") && !std::strstr(line.c_str(), "{") && !std::strstr(line.c_str(), "]") && !std::strstr(line.c_str(), "}")) { std::vector<std::string> output = DelimiterString(line, ":"); for (int i = 0; i < output.size(); i += 2) { JsonAttribute tmpAttr; EraseFromString(output[i], '"'); EraseFromString(output[i + 1], '"'); EraseFromString(output[i], ','); EraseFromString(output[i + 1], ','); EraseFromString(output[i], ' '); EraseFromString(output[i + 1], ' '); tmpAttr.m_Value.first = output[i]; tmpAttr.m_Value.second = output[i + 1]; tmpObject.m_Attribute.push_back(tmpAttr); } } if (std::strstr(line.c_str(), "}")) { json.m_Object[keywords[i]].push_back(tmpObject); tmpObject.m_Attribute.clear(); } if (std::strstr(line.c_str(), "]")) { // Look for new keyword break; } } } } } return json; } std::vector<std::string> JsonParser::DelimiterString(const std::string& str, const std::string& delimiter) { std::vector<std::string> strings; std::string::size_type pos = 0; std::string::size_type prev = 0; while ((pos = str.find(delimiter, prev)) != std::string::npos) { strings.push_back(str.substr(prev, pos - prev)); prev = pos + 1; } // To get the last substring (or only, if delimiter is not found) strings.push_back(str.substr(prev)); return strings; } void JsonParser::EraseFromString(std::string& str, const char character) { std::string::size_type pos = 0; std::string::size_type prev = 0; str.erase(std::remove(str.begin(), str.end(), character), str.end()); } }
[ "simongido1@gmail.com" ]
simongido1@gmail.com
184e3089497bbce9432b2cec325602554f0c02c1
d3701d9144f5c2b04619a5d97f0c322b8a9ce610
/moneda/src/blockchain_utilities/blocksdat_file.h
37ad89fb1e7c52708281e235303f3a8e144c2513
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
sarlongda/moneda
37538762b495d095f2244dd1d9ead363d4aff333
997d6a670b99e7e59e68cd8c903bad7efa827bec
refs/heads/master
2020-03-21T12:58:46.953161
2018-06-25T10:50:18
2018-06-25T10:50:18
138,581,500
0
0
null
null
null
null
UTF-8
C++
false
false
2,915
h
// Copyright (c) 2014-2018, The Moneda Project // // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // // 2. 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. // // 3. Neither the name of the copyright holder nor the names of its 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. #pragma once #include <boost/iostreams/stream_buffer.hpp> #include <boost/iostreams/stream.hpp> #include <boost/iostreams/device/back_inserter.hpp> #include <boost/iostreams/filtering_streambuf.hpp> #include <boost/filesystem/path.hpp> #include <boost/filesystem/operations.hpp> #include "cryptonote_basic/cryptonote_basic.h" #include "cryptonote_basic/cryptonote_boost_serialization.h" #include "cryptonote_core/blockchain.h" #include "blockchain_db/blockchain_db.h" #include <algorithm> #include <cstdio> #include <fstream> #include <boost/iostreams/copy.hpp> #include <atomic> #include "common/command_line.h" #include "version.h" #include "blockchain_utilities.h" using namespace cryptonote; class BlocksdatFile { public: bool store_blockchain_raw(cryptonote::Blockchain* cs, cryptonote::tx_memory_pool* txp, boost::filesystem::path& output_file, uint64_t use_block_height=0); protected: Blockchain* m_blockchain_storage; std::ofstream * m_raw_data_file; // open export file for write bool open_writer(const boost::filesystem::path& file_path, uint64_t block_stop); bool initialize_file(uint64_t block_stop); bool close(); void write_block(const crypto::hash &block_hash); private: uint64_t m_cur_height; // tracks current height during export std::vector<crypto::hash> m_hashes; };
[ "34284034+sarlongda@users.noreply.github.com" ]
34284034+sarlongda@users.noreply.github.com
18e08aac6c6c8829d32aa9e824aa4e1bfd627080
c95a83e1a741b8c0eb810dd018d91060e5872dd8
/Game/ClientShellDLL/ClientShellShared/SmokeFX.h
380bbab64a199dbc45b40898d9dffc23ffcb8e72
[]
no_license
rickyharis39/nolf2
ba0b56e2abb076e60d97fc7a2a8ee7be4394266c
0da0603dc961e73ac734ff365bfbfb8abb9b9b04
refs/heads/master
2021-01-01T17:21:00.678517
2011-07-23T12:11:19
2011-07-23T12:11:19
38,495,312
1
0
null
null
null
null
UTF-8
C++
false
false
3,088
h
// ----------------------------------------------------------------------- // // // MODULE : SmokeFX.h // // PURPOSE : Smoke special fx class - Definition // // CREATED : 12/15/97 // // ----------------------------------------------------------------------- // #ifndef __SMOKE_FX_H__ #define __SMOKE_FX_H__ #include "BaseParticleSystemFX.h" struct SMCREATESTRUCT : public BPSCREATESTRUCT { SMCREATESTRUCT(); LTVector vPos; LTVector vColor1; LTVector vColor2; LTVector vMinDriftVel; LTVector vMaxDriftVel; LTFLOAT fLifeTime; LTFLOAT fVolumeRadius; LTFLOAT fRadius; LTFLOAT fParticleCreateDelta; LTFLOAT fMinParticleLife; LTFLOAT fMaxParticleLife; uint8 nNumParticles; uint32 dwSystemFlags; LTBOOL bIgnoreWind; HSTRING hstrTexture; }; inline SMCREATESTRUCT::SMCREATESTRUCT() { vPos.Init(); vColor1.Init(); vColor2.Init(); vMinDriftVel.Init(); vMaxDriftVel.Init(); fLifeTime = 0.0f; fVolumeRadius = 0.0f; fRadius = 0.0f; fParticleCreateDelta = 0.0f; fMinParticleLife = 0.0f; fMaxParticleLife = 0.0f; nNumParticles = 0; dwSystemFlags = 0; bIgnoreWind = LTFALSE; hstrTexture = LTNULL; } class CSmokeFX : public CBaseParticleSystemFX { public : CSmokeFX() : CBaseParticleSystemFX() { m_vMinDriftVel.Init(); m_vMaxDriftVel.Init(); m_fElapsedTime = 0.0f; m_fElapsedEmissionTime = 0.0f; m_fVolumeRadius = 0.0f; m_fLifeTime = 0.0f; m_fParticleCreateDelta = 0.0f; m_nNumParticles = 5; m_fMinParticleLife = 5.0f; m_fMaxParticleLife = 10.0f; m_bIgnoreWind = LTFALSE; m_hstrTexture = LTNULL; } virtual LTBOOL Init(SFXCREATESTRUCT* psfxCreateStruct); virtual LTBOOL Update(); virtual LTBOOL CreateObject(ILTClient* pClientDE); inline void SetDriftVel(LTVector vMinVel, LTVector vMaxVel) { m_vMinDriftVel = vMinVel; m_vMaxDriftVel = vMaxVel; } virtual uint32 GetSFXID() { return SFX_SMOKE_ID; } private : LTFLOAT m_fVolumeRadius; // Radius of smoke volume LTFLOAT m_fLifeTime; // How long each particle stays around LTFLOAT m_fElapsedTime; // How much time has elapsed on this system LTFLOAT m_fElapsedEmissionTime; // How much time has passed since we last emitted particles LTVector m_vMinDriftVel; // Min Drift velocity LTVector m_vMaxDriftVel; // Max Drift velocity LTFLOAT m_fParticleCreateDelta; // How often we create smoke particles uint8 m_nNumParticles; // Number we create every delta LTFLOAT m_fMaxParticleLife; // Maximum lifetime of a particle LTFLOAT m_fMinParticleLife; // Minimum lifetime of a particle HSTRING m_hstrTexture; // Texture to sprite to use LTBOOL m_bIgnoreWind; // Ignore world wind }; #endif // __SMOKE_FX_H__
[ "vytautasrask@gmail.com" ]
vytautasrask@gmail.com
268a3189b6c98374a5ea213e6ebe7b898bbe173f
decf94b8d8d609b225c9de9868854f2997ce1718
/hls-syn/cnvW1A1-pynqZ1-Z2/sol1/syn/systemc/start_for_Streamibbk.h
cab5bbfbc40f040cddcf967740f8ba5f7f5c13d8
[]
no_license
archana95in/FPGA-Project-BNN
9dd54e2d0e83547ebcce8e87a303580b9572c578
a007a0da089d73056cd7469d26fc7d1f7e2b7561
refs/heads/master
2022-12-04T07:05:40.827191
2020-08-27T01:31:14
2020-08-27T01:31:14
262,349,976
0
0
null
null
null
null
UTF-8
C++
false
false
5,581
h
// ============================================================== // Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC v2019.2 (64-bit) // Copyright 1986-2019 Xilinx, Inc. All Rights Reserved. // ============================================================== #ifndef start_for_Streamibbk_HH_ #define start_for_Streamibbk_HH_ #include <systemc> using namespace std; SC_MODULE(start_for_Streamibbk) { static const unsigned int DATA_WIDTH = 1; static const unsigned int ADDR_WIDTH = 2; static const unsigned int start_for_Streamibbk_depth = 3; sc_core::sc_in_clk clk; sc_core::sc_in< sc_dt::sc_logic > reset; sc_core::sc_out< sc_dt::sc_logic > if_empty_n; sc_core::sc_in< sc_dt::sc_logic > if_read_ce; sc_core::sc_in< sc_dt::sc_logic > if_read; sc_core::sc_out< sc_dt::sc_lv<DATA_WIDTH> > if_dout; sc_core::sc_out< sc_dt::sc_logic > if_full_n; sc_core::sc_in< sc_dt::sc_logic > if_write_ce; sc_core::sc_in< sc_dt::sc_logic > if_write; sc_core::sc_in< sc_dt::sc_lv<DATA_WIDTH> > if_din; sc_core::sc_signal< sc_dt::sc_logic > internal_empty_n; sc_core::sc_signal< sc_dt::sc_logic > internal_full_n; sc_core::sc_signal< sc_dt::sc_lv<DATA_WIDTH> > mStorage[start_for_Streamibbk_depth]; sc_core::sc_signal< sc_dt::sc_uint<ADDR_WIDTH> > mInPtr; sc_core::sc_signal< sc_dt::sc_uint<ADDR_WIDTH> > mOutPtr; sc_core::sc_signal< sc_dt::sc_uint<1> > mFlag_nEF_hint; sc_core::sc_trace_file* mTrace; SC_CTOR(start_for_Streamibbk) : mTrace(0) { const char* dump_vcd = std::getenv("AP_WRITE_VCD"); if (dump_vcd && string(dump_vcd) == "1") { std::string tracefn = "sc_trace_" + std::string(name()); mTrace = sc_core::sc_create_vcd_trace_file( tracefn.c_str()); sc_trace(mTrace, clk, "(port)clk"); sc_trace(mTrace, reset, "(port)reset"); sc_trace(mTrace, if_full_n, "(port)if_full_n"); sc_trace(mTrace, if_write_ce, "(port)if_write_ce"); sc_trace(mTrace, if_write, "(port)if_write"); sc_trace(mTrace, if_din, "(port)if_din"); sc_trace(mTrace, if_empty_n, "(port)if_empty_n"); sc_trace(mTrace, if_read_ce, "(port)if_read_ce"); sc_trace(mTrace, if_read, "(port)if_read"); sc_trace(mTrace, if_dout, "(port)if_dout"); sc_trace(mTrace, mInPtr, "mInPtr"); sc_trace(mTrace, mOutPtr, "mOutPtr"); sc_trace(mTrace, mFlag_nEF_hint, "mFlag_nEF_hint"); } mInPtr = 0; mOutPtr = 0; mFlag_nEF_hint = 0; SC_METHOD(proc_read_write); sensitive << clk.pos(); SC_METHOD(proc_dout); sensitive << mOutPtr; for (unsigned i = 0; i < start_for_Streamibbk_depth; i++) { sensitive << mStorage[i]; } SC_METHOD(proc_ptr); sensitive << mInPtr << mOutPtr<< mFlag_nEF_hint; SC_METHOD(proc_status); sensitive << internal_empty_n << internal_full_n; } ~start_for_Streamibbk() { if (mTrace) sc_core::sc_close_vcd_trace_file(mTrace); } void proc_status() { if_empty_n.write(internal_empty_n.read()); if_full_n.write(internal_full_n.read()); } void proc_read_write() { if (reset.read() == sc_dt::SC_LOGIC_1) { mInPtr.write(0); mOutPtr.write(0); mFlag_nEF_hint.write(0); } else { if (if_read_ce.read() == sc_dt::SC_LOGIC_1 && if_read.read() == sc_dt::SC_LOGIC_1 && internal_empty_n.read() == sc_dt::SC_LOGIC_1) { sc_dt::sc_uint<ADDR_WIDTH> ptr; if (mOutPtr.read().to_uint() == (start_for_Streamibbk_depth-1)) { ptr = 0; mFlag_nEF_hint.write(~mFlag_nEF_hint.read()); } else { ptr = mOutPtr.read(); ptr++; } assert(ptr.to_uint() < start_for_Streamibbk_depth); mOutPtr.write(ptr); } if (if_write_ce.read() == sc_dt::SC_LOGIC_1 && if_write.read() == sc_dt::SC_LOGIC_1 && internal_full_n.read() == sc_dt::SC_LOGIC_1) { sc_dt::sc_uint<ADDR_WIDTH> ptr; ptr = mInPtr.read(); mStorage[ptr.to_uint()].write(if_din.read()); if (ptr.to_uint() == (start_for_Streamibbk_depth-1)) { ptr = 0; mFlag_nEF_hint.write(~mFlag_nEF_hint.read()); } else { ptr++; assert(ptr.to_uint() < start_for_Streamibbk_depth); } mInPtr.write(ptr); } } } void proc_dout() { sc_dt::sc_uint<ADDR_WIDTH> ptr = mOutPtr.read(); if (ptr.to_uint() > start_for_Streamibbk_depth) { if_dout.write(sc_dt::sc_lv<DATA_WIDTH>()); } else { if_dout.write(mStorage[ptr.to_uint()]); } } void proc_ptr() { if (mInPtr.read() == mOutPtr.read() && mFlag_nEF_hint.read().to_uint()==0) { internal_empty_n.write(sc_dt::SC_LOGIC_0); } else { internal_empty_n.write(sc_dt::SC_LOGIC_1); } if (mInPtr.read() == mOutPtr.read() && mFlag_nEF_hint.read().to_uint()==1) { internal_full_n.write(sc_dt::SC_LOGIC_0); } else { internal_full_n.write(sc_dt::SC_LOGIC_1); } } }; #endif //start_for_Streamibbk_HH_
[ "archana95in@gmail.com" ]
archana95in@gmail.com
3d7ddddab79fb9f43df02bbf6cb27909ca79985f
dfe1ab8c72ea79b4d615d04816472bdca7b33cd7
/QDisplay/Node/_NOTUSED/node.cpp
fe380bf6528dfd595b16a376d97a113b8c7b062e
[]
no_license
seco/Queue
0b9194fa9abc8063470e1898b8467189f73391af
35352d1ede1f2b69274ef13400fa103f296b4cef
refs/heads/master
2021-01-14T14:02:10.946033
2016-08-30T07:39:57
2016-08-30T07:39:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,871
cpp
#include "node.h" #include "ui_node.h" Node::Node(const QString &objName, DB *db, QWidget *parent) : QFrame(parent), ui(new Ui::Node) { ui->setupUi(this); m_db = db; setObjectName(objName); setSizePolicy(QSizePolicy::Ignored , QSizePolicy::Expanding); } Node::Node(QWidget *parent) : QFrame(parent) { } Node::~Node() { delete ui; } void Node::showEvent(QShowEvent *event) { ui->frame_1->hide(); ui->frame_2->hide(); ui->frame_3->hide(); ui->opr->hide(); ui->service->hide(); initVar(); updateUi(); m_bigNode->resetUi(); QFrame::showEvent(event); } void Node::initVar() { // QString nodeName = objectName(); // MyMap rcd = m_db->getQueueNo(nodeName); // CLIREQUEST action = (CLIREQUEST) m_dt.clientAction; // //QString nodeName = objectName(); // QString macAddress = m_db->getMacAddress(nodeName); // uint16_t queueNo = rcd["queue_no"].toInt(); // uint8_t nodeId = m_db->getNodeId(nodeName); // QString displayedName = m_db->getDisplayedName(nodeName); // QString ipAddressClient = "?"; // QString groupCode = m_db->getGroupCode(nodeName); // QString status = rcd["status_desc"].toString(); // //status = (status=="ONCALL") ? "Call" : ( (status=="PROCESS") ? "PROCESS" : "" ); // QString message = "restarted"; // uint8_t portNo = (uint8_t) m_db->getPortNo(nodeName); // bool connected = m_dt.connected; // bool busy = m_dt.busy; // bool RESULT = m_dt.RESULT; // uint8_t count = m_dt.count; // // added, 2016-08-17, NOT FINISHED YET // QString opr = m_db->getOpr(nodeName); // uint8_t calledCount = -9; // QString groupAssignment = m_db->getGroupAssignment(groupCode); // QString date_ = CURDATETIME_; // QString callingTime_ = (m_dt.calledCount == 2) ? m_dt.callingTime : CURDATETIME_; // QString processTime_ = CURDATETIME_; // m_dt.clientAction = action; // strncpy( m_dt.macAddress, macAddress.toUtf8(), sizeof(m_dt.macAddress)-1 ); // m_dt.nodeId = nodeId; // strncpy( m_dt.nodeName, nodeName.toUtf8(), sizeof(m_dt.nodeName)-1 ); // strncpy( m_dt.displayedName, displayedName.toUtf8(), sizeof(m_dt.displayedName)-1 ); // m_dt.queueNo = queueNo; // strncpy( m_dt.ipAddressClient, ipAddressClient.toUtf8(), sizeof(m_dt.ipAddressClient)-1 ); // strncpy( m_dt.groupCode, groupCode.toUtf8(), sizeof(m_dt.groupCode)-1 ); // strncpy( m_dt.clientAction_, status.toUtf8(), sizeof(m_dt.clientAction_)-1 ); // strncpy( m_dt.message, message.toUtf8(), sizeof(m_dt.message)-1 ); // m_dt.portNo = portNo; // m_dt.connected = connected; // m_dt.busy = busy; // m_dt.RESULT = RESULT; // m_dt.count = count; // // added, 2016-08-17, NOT FINISHED YET // strncpy( m_dt.opr, opr.toUtf8(), sizeof(m_dt.opr)-1 ); // //m_dt.calledCount = rcd["called_count"].toInt(); // strncpy( m_dt.service, groupAssignment.toUtf8(), sizeof(m_dt.service)-1 ); // strncpy( m_dt.date, date_.toUtf8(), sizeof(m_dt.date)-1 ); // strncpy( m_dt.callingTime, callingTime_.toUtf8(), sizeof(m_dt.callingTime)-1 ); // strncpy( m_dt.processTime, processTime_.toUtf8(), sizeof(m_dt.processTime)-1 ); const QString &nodeName = objectName(); const QString &macAddress = m_db->getMacAddress(nodeName); strncpy( m_dt.macAddress, macAddress.toUtf8(), sizeof(m_dt.macAddress) ); strncpy( m_dt.nodeName, nodeName.toUtf8(), sizeof(m_dt.nodeName) ); ClassHelper h(&m_dt, m_db); } void Node::clientConnected(NodeData &nodeData, Socket *tcpSocket) { m_dt = nodeData; ClassHelper h(&m_dt, m_db); MyMap rcd; // LOGIN, CALL, PROCESS, PING, NONE switch ( m_dt.clientRequest ) { case CLIREQUEST::CLI_LOGIN : emit signalLog( "Client LOGIN from " + QString(m_dt.macAddress) ); //message = "LOGIN"; //status = "???"; rcd = m_db->doLogin( m_dt.nodeName ); break; case CLIREQUEST::CLI_CALLING : emit signalLog( "Client CALL from " + QString(m_dt.macAddress) ); //message = "CALL"; rcd = m_db->doCalling( m_dt.nodeName ); //callingTime_ = rcd["calling_time"].toString() ; //h.A( m_dt.callingTime, rcd["calling_time"].toString() ); m_dt.serverAnswer = SRVANSWER::CALL_OK; break; case CLIREQUEST::CLI_PROCESS : emit signalLog( "Client do PROCESS : " + QString(m_dt.macAddress) ); //message = "PROCESS"; rcd = m_db->doProcess( m_dt.nodeName ); //processTime_ = rcd["process_time"].toString() ; //h.A( m_dt.processTime, rcd["process_time"].toString() ); m_dt.serverAnswer = SRVANSWER::PROCESS_OK; break; case CLIREQUEST::CLI_PING : emit signalLog( "Client PING from " + QString(m_dt.macAddress) ); //message = "PING"; rcd = m_db->doPing( m_dt.nodeName ); break; default: break; } h.A( m_dt.numOfWaiting, m_db->getNumOfWaiting( QString(m_dt.groupCode) ) ); h.A( m_dt.queueNo, rcd["queue_no"].toInt() ); h.A( m_dt.calledCount, rcd["called_count"].toInt() ); // QString service; // service = rcd["service"].toString(); // h.A( m_dt.service, service, sizeof(m_dt.service) ); h.A( m_dt.date_s, m_dt.date_s, sizeof( m_dt.date_s ) ); h.A( m_dt.callingTime_s, h.S( rcd["calling_time"] ), sizeof( m_dt.callingTime_s ) ); h.A( m_dt.processTime_s, h.S( rcd["process_time"] ), sizeof( m_dt.processTime_s ) ); updateUi(); tcpSocket->write( (char*)&m_dt, sizeof(m_dt) ); nodeData = m_dt; // data returned } void Node::updateUi() { mkCONFIX; QString status = tr(m_dt.clientRequest_s); status = status.trimmed(); QString numOfWaiting_ = QString::number(m_dt.numOfWaiting, 10); QString dateTime_; QString styleSheet; QString calledCount = ""; // if( status == CALLING_ ) // { // status += QString(" (%1x) ").arg(m_dt.calledCount); // styleSheet = confx->string( KEY("callingStyleSheet"), "" ); // dateTime_ = (tr(m_dt.callingTime)).right(8); // } // if( status == PROCESS_ ) // { // styleSheet = confx->string( KEY("processStyleSheet"), "" ); // dateTime_ = (tr(m_dt.processTime)).right(8); // } if( QString::fromUtf8(m_dt.nodeName) == "NODE_07" ) { __PF__; } switch (m_dt.clientRequest) { case CLIREQUEST::CLI_INIT: status = tr(m_dt.clientRequest_s); dateTime_ = (tr(m_dt.callingTime_s)).right(8); break; case CLIREQUEST::CLI_CALLING: //status = QString(" %1 ").arg(status); status = " CALLING "; calledCount = QString("%1x").arg( m_dt.calledCount ); styleSheet = confx->string( KEY("callingStyleSheet"), "" ); dateTime_ = (tr(m_dt.callingTime_s)).right(8); break; case CLIREQUEST::CLI_PROCESS: styleSheet = confx->string( KEY("processStyleSheet"), "" ); dateTime_ = (tr(m_dt.processTime_s)).right(8); break; default: break; } const QString &groupCode = tr( m_dt.groupCode ); const int &queueNo = m_dt.queueNo; ui->status->setText( status ); ui->status->stopRunningText(); if( m_dt.clientRequest == CLIREQUEST::CLI_CALLING ) { ui->status->startRunningText(); } ui->calledCount->setText( calledCount ); ui->queueNo->setText( TICKET(groupCode, queueNo) ); ui->displayedName->setText( tr(m_dt.displayedName) ); ui->connected->setPixmap( makePixmap(m_dt.connected) ); ui->message->setText( tr(m_dt.message) ); ui->groupCode->setText( tr(m_dt.groupCode) ); ui->nodeName->setText( tr(m_dt.nodeName) ); ui->macAddress->setText( tr(m_dt.macAddress) ); //ui->rowid->setText( tr(m_dt.opr) ); ui->service->setText( tr(m_dt.service) ); ui->dateTime->setText( dateTime_ ); ui->numOfWaiting->setText(numOfWaiting_); ui->opr->setText( m_dt.opr ); // styling ... ui->queueNo->setStyleSheet(styleSheet); m_bigNode->updateUi(&m_dt); } const QPixmap Node::makePixmap(const bool &connected) { QString pngDisconnected = QString::fromUtf8(":/icon/png_16/process-stop.png"); QString pngConnected = QString::fromUtf8(":/icon/png_16/checkbox.png"); QString png = connected ? pngConnected : pngDisconnected; const QPixmap &pixmap = QPixmap(png); return pixmap; } void Node::setBigNode(BigNode *bigNode) { m_bigNode = bigNode; }
[ "yasriady@yahoo.com" ]
yasriady@yahoo.com
4eb1e163f48bb6485b242b613b373eb8bf1a8df3
827e6baad58bba56a6ce3a6969d3b32107b896f0
/LAB 2(arrays and pointers)/LAB 2(arrays and pointers)/2.cpp
f86ec8d75e6976c7b04ad6cfe56884f50da06c02
[]
no_license
MuhammadSaim7776/2nd-semester-programs
3f41809c9bf509a8910c7d356366f4329066ba17
00e76b3526705c1de9644a682bbadcfc0f43fc89
refs/heads/main
2023-03-07T23:20:54.035073
2021-02-20T11:05:12
2021-02-20T11:05:12
340,632,203
0
0
null
null
null
null
UTF-8
C++
false
false
487
cpp
//#include<iostream> //#include<conio.h> //using namespace std; //void main() //{ // int number,fict=1; // int *numb=&number; // int *fic = &fict; // cout << "Enter the number of which you want to get fictorial" << endl; // cin >> *numb; // for (int i = 1; i <= *numb; i++) // { // *fic = *fic*i; // } // cout <<"The fictorial of given number is"<< *fic; // _getch(); //}
[ "saimzahir7776@gmail.com" ]
saimzahir7776@gmail.com
ff6d299fb684301541d22e4bd7d3af0393d51733
c4428fcbfd609a2657d0a3911ebb987ddb1f4b97
/securitycamera/src/motiondetect.cpp
0689ac4c919c2af0aa1d91149dc7d7537eece49f
[]
no_license
michaelstecklein/beagleboneblack
9b0928c8e3a318ad1799085f35af1a2f6b2ca2f3
a824f9ee7178dd324864d01be6ce3a3a0b5dd985
refs/heads/master
2020-04-17T09:39:02.461109
2017-01-09T16:46:29
2017-01-09T16:46:29
67,887,128
0
0
null
null
null
null
UTF-8
C++
false
false
2,462
cpp
#include <stdio.h> #include "opencv2/opencv.hpp" #include "led.hpp" #include "motiondetect.hpp" #include "deletion.hpp" #include "filelog.hpp" using namespace cv; volatile unsigned long long curr_time_tag = 0; #define VARIANCE_THRESHHOLD 30 void* thisBuf; volatile int buff_len = -1; volatile int ready_flag = -2; // +/-2 means first pass hasn't occured, -1 means not ready, 1 ready long get_nanos(void) { struct timespec ts; timespec_get(&ts, TIME_UTC); return (long)ts.tv_sec * 1000000000L + ts.tv_nsec; } double compare(Mat newMat, Mat oldMat) { int totalDiffs = 0; double numDiffs = 0; double totalDiffsSqr = 0; int i = 0; if (newMat.rows != oldMat.rows || newMat.cols != oldMat.cols || newMat.step != oldMat.step) return -1; uint8_t* newData = newMat.data; uint8_t* oldData = oldMat.data; int width = newMat.cols; int height = newMat.rows; int stride = newMat.step; for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { char newVal = newData[i*stride + j]; char oldVal = oldData[i*stride + j]; numDiffs++; int diff = newVal - oldVal; if (diff < 0) totalDiffs -= diff; else totalDiffs += diff; totalDiffsSqr += diff * diff; } } double variance = (totalDiffsSqr - (totalDiffs*totalDiffs)/numDiffs) / numDiffs; // Var = Mean(x^2) - (Mean(x))^2 printf("Var: %f\n", variance); if (variance > VARIANCE_THRESHHOLD) { printf("MOTION DETECTED!\n"); toggleLED0(); } return variance - VARIANCE_THRESHHOLD; } void MD_createBuffers(int len) { thisBuf = malloc(len); buff_len = len; } void MD_detectMotion(void* newBuf) { memcpy(thisBuf, newBuf, buff_len); while (ready_flag > 0) {} // block if last compare isn't done ready_flag *= -1; } Mat decodedOld; Mat rawNew; Mat decodedNew; void analyzeForMotion() { // Mat's create error : Corrupt JPEG data: XX extraneous bytes before marker 0xXX // there's nothing I can do about it rawNew = Mat (1, buff_len, CV_8UC1, (void*)thisBuf); decodedNew = imdecode(rawNew, 1); if (ready_flag == 2) { // first time deleteImgs(curr_time_tag); ready_flag--; } else if (compare(decodedNew, decodedOld) < 0) { deleteImgs(curr_time_tag); } else { logImgs(curr_time_tag); } decodedOld = decodedNew; } void* MD_main(void*) { // block while buffers aren't created while (buff_len < 0) {} while (1) { // block waiting for ready flag while (ready_flag < 0) {} analyzeForMotion(); ready_flag *= -1; } }
[ "michaelrstecklein@gmail.com" ]
michaelrstecklein@gmail.com
45c0c698d866244cc420a2b438468098a23eceaf
363a9aabefd421f6ff26c5dc9fc08987f0aa2986
/CWStore/CW_1/Task_2/HWTemple/HWTemple/algorithms.cpp
06d9447e0de9abefb5dbbe702122d7ad5ad1c5ab
[ "MIT" ]
permissive
Agesyne/HW
a2ec8ac2b894fb2195e1a3fea3431ba5e568f000
df9229c7f639f41ed85bae14b666bdaaf2e387b3
refs/heads/master
2021-10-09T12:58:05.957806
2018-12-23T13:39:46
2018-12-23T13:39:46
125,869,013
0
0
MIT
2018-12-28T03:59:22
2018-03-19T14:16:58
C++
UTF-8
C++
false
false
384
cpp
#include "pch.h" #include "mainFunctions.h" void selectionSort(int sortingArray[], int arraySize) { for (int i = 0; i < arraySize; i++) { int minElementIndex = arraySize - 1; for (int j = i; j < arraySize; j++) { if (sortingArray[j] < sortingArray[minElementIndex]) { minElementIndex = j; } } swap(&(sortingArray[minElementIndex]), &(sortingArray[i])); } }
[ "A40gE20Low8@mail.ru" ]
A40gE20Low8@mail.ru
b7a4b3db897ee6fa7168744305e1d68748f4aafb
41169491008bed674166347c1b2942cb6b083363
/ouzel/gui/Menu.cpp
2604813509a1296e5f5e311214ca0f6b8cf4592b
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
cnsuhao/ouzel
7ae1d33b3138e69a31e5d183be4763a8c8c5d72d
4f8face947c265bed1b17cd22426e8113469f446
refs/heads/master
2021-09-05T09:10:34.695831
2018-01-25T23:03:37
2018-01-25T23:03:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,763
cpp
// Copyright (C) 2018 Elviss Strazdins // This file is part of the Ouzel engine. #include <algorithm> #include "Menu.hpp" #include "core/Engine.hpp" #include "events/EventDispatcher.hpp" #include "input/Input.hpp" #include "utils/Log.hpp" namespace ouzel { namespace gui { Menu::Menu() { eventHandler.keyboardHandler = std::bind(&Menu::handleKeyboard, this, std::placeholders::_1, std::placeholders::_2); eventHandler.gamepadHandler = std::bind(&Menu::handleGamepad, this, std::placeholders::_1, std::placeholders::_2); eventHandler.uiHandler = std::bind(&Menu::handleUI, this, std::placeholders::_1, std::placeholders::_2); } void Menu::enter() { engine->getEventDispatcher()->addEventHandler(&eventHandler); } void Menu::leave() { eventHandler.remove(); } void Menu::setEnabled(bool newEnabled) { Widget::setEnabled(newEnabled); if (enabled) { if (!selectedWidget && !widgets.empty()) { selectWidget(widgets.front()); } } else { selectedWidget = nullptr; for (Widget* childWidget : widgets) { childWidget->setSelected(false); } } } void Menu::addChildWidget(Widget* widget) { addChild(widget); if (widget) { if (widget->menu) { widget->menu->removeChild(widget); } widget->menu = this; widgets.push_back(widget); if (!selectedWidget) { selectWidget(widget); } } } bool Menu::removeChildActor(Actor* actor) { auto i = std::find(widgets.begin(), widgets.end(), actor); if (i != widgets.end()) { widgets.erase(i); Widget* widget = static_cast<Widget*>(actor); widget->menu = nullptr; } if (selectedWidget == actor) { selectWidget(nullptr); } if (!Actor::removeChildActor(actor)) { return false; } return true; } void Menu::selectWidget(Widget* widget) { if (!enabled) return; selectedWidget = nullptr; for (Widget* childWidget : widgets) { if (childWidget == widget) { selectedWidget = widget; childWidget->setSelected(true); } else { childWidget->setSelected(false); } } } void Menu::selectNextWidget() { if (!enabled) return; std::vector<Widget*>::iterator firstWidgetIterator = selectedWidget ? std::find(widgets.begin(), widgets.end(), selectedWidget) : widgets.end(); std::vector<Widget*>::iterator widgetIterator = firstWidgetIterator; do { if (widgetIterator == widgets.end()) { widgetIterator = widgets.begin(); } else { widgetIterator++; } if (widgetIterator != widgets.end() && (*widgetIterator)->isEnabled()) { selectWidget(*widgetIterator); break; } } while (widgetIterator != firstWidgetIterator); } void Menu::selectPreviousWidget() { if (!enabled) return; std::vector<Widget*>::iterator firstWidgetIterator = selectedWidget ? std::find(widgets.begin(), widgets.end(), selectedWidget) : widgets.end(); std::vector<Widget*>::iterator widgetIterator = firstWidgetIterator; do { if (widgetIterator == widgets.begin()) widgetIterator = widgets.end(); if (widgetIterator != widgets.begin()) widgetIterator--; if (widgetIterator != widgets.end() && (*widgetIterator)->isEnabled()) { selectWidget(*widgetIterator); break; } } while (widgetIterator != firstWidgetIterator); } bool Menu::handleKeyboard(Event::Type type, const KeyboardEvent& event) { if (!enabled) return true; if (type == Event::Type::KEY_PRESS && !widgets.empty()) { switch (event.key) { case input::KeyboardKey::LEFT: case input::KeyboardKey::UP: selectPreviousWidget(); break; case input::KeyboardKey::RIGHT: case input::KeyboardKey::DOWN: selectNextWidget(); break; case input::KeyboardKey::RETURN: case input::KeyboardKey::SPACE: case input::KeyboardKey::SELECT: { if (selectedWidget) { Event clickEvent; clickEvent.type = Event::Type::ACTOR_CLICK; clickEvent.uiEvent.actor = selectedWidget; clickEvent.uiEvent.position = selectedWidget->getPosition(); engine->getEventDispatcher()->postEvent(clickEvent); } break; } default: break; } } return true; } bool Menu::handleGamepad(Event::Type type, const GamepadEvent& event) { if (!enabled) return true; if (type == Event::Type::GAMEPAD_BUTTON_CHANGE) { if (event.button == input::GamepadButton::DPAD_LEFT || event.button == input::GamepadButton::DPAD_UP) { if (!event.previousPressed && event.pressed) selectPreviousWidget(); } else if (event.button == input::GamepadButton::DPAD_RIGHT || event.button == input::GamepadButton::DPAD_DOWN) { if (!event.previousPressed && event.pressed) selectNextWidget(); } else if (event.button == input::GamepadButton::LEFT_THUMB_LEFT || event.button == input::GamepadButton::LEFT_THUMB_UP) { if (event.previousValue < 0.6f && event.value > 0.6f) selectPreviousWidget(); } else if (event.button == input::GamepadButton::LEFT_THUMB_RIGHT || event.button == input::GamepadButton::LEFT_THUMB_DOWN) { if (event.previousValue < 0.6f && event.value > 0.6f) selectNextWidget(); } #if !OUZEL_PLATFORM_IOS && !OUZEL_PLATFORM_TVOS // on iOS and tvOS menu items ar selected with a SELECT button else if (event.button == input::GamepadButton::FACE_BOTTOM) { if (event.previousPressed && event.pressed && selectedWidget) { Event clickEvent; clickEvent.type = Event::Type::ACTOR_CLICK; clickEvent.uiEvent.actor = selectedWidget; clickEvent.uiEvent.position = selectedWidget->getPosition(); engine->getEventDispatcher()->postEvent(clickEvent); } } #endif } return true; } bool Menu::handleUI(Event::Type type, const UIEvent& event) { if (!enabled) return true; if (type == Event::Type::ACTOR_ENTER) { if (std::find(widgets.begin(), widgets.end(), event.actor) != widgets.end()) { selectWidget(static_cast<Widget*>(event.actor)); } } return true; } } // namespace gui } // namespace ouzel
[ "elviss@elviss.lv" ]
elviss@elviss.lv
4e2251b1d915a2a14e63e2479ea9febc832839d8
fc0f661f9d0f17dc1ca93c6840e068dd2758913c
/main.cpp
0a1a7046d88f4bba94685fc4489ba278f246eb6c
[]
no_license
zeusd/CCG-Demo
208b3b9b554d80fdc77e6497d18b936ed745f7ae
df23c114e0c39f26d0fc0c9fb5bfc3e43f0c9916
refs/heads/master
2020-05-22T00:14:02.223987
2017-03-12T00:45:28
2017-03-12T00:45:28
84,653,871
0
0
null
null
null
null
UTF-8
C++
false
false
7,292
cpp
#include <SFML/Graphics.hpp> #include "MonsterCard.hpp" int main() { int const width = 1920; int const height = 1080; sf::RenderWindow window(sf::VideoMode(width, height), "", sf::Style::Fullscreen); sf::RectangleShape nest[20]; for (int j=0; j<4; j++) { for (int i=0; i<5; i++) { nest[i+5*j].setSize(sf::Vector2f(180, 240)); nest[i+5*j].setFillColor(sf::Color(115, 77, 38)); nest[i+5*j].setPosition(400 + 184*i, 54 + 244*j); } } sf::RectangleShape highlight(sf::Vector2f(180, 240)); highlight.setFillColor(sf::Color::Transparent); highlight.setOutlineThickness(4); highlight.setOutlineColor(sf::Color::Blue); sf::CircleShape hero1(60, 6); hero1.setFillColor(sf::Color(110, 110, 110)); hero1.setOutlineThickness(4); hero1.setOutlineColor(sf::Color(150, 100, 50)); hero1.setPosition(800, -20); sf::CircleShape hero2(60, 6); hero2.setFillColor(sf::Color(110, 110, 110)); hero2.setOutlineThickness(4); hero2.setOutlineColor(sf::Color(150, 102, 50)); hero2.setPosition(800, 980); sf::CircleShape portrait1(130); portrait1.setFillColor(sf::Color(110, 110, 110)); portrait1.setOutlineThickness(10); portrait1.setOutlineColor(sf::Color::Transparent); portrait1.setPosition(40, 166); sf::CircleShape portrait2(130); portrait2.setFillColor(sf::Color(110, 110, 110)); portrait2.setOutlineThickness(10); portrait2.setOutlineColor(sf::Color::Yellow); portrait2.setPosition(40, 654); int touchID; int chosenCard; bool click = 0; bool drag = 0; bool pickingCard = 1; bool choice = 0; bool attack = 0; bool hit = 0; bool full[20] = {0}; bool choosable[20] = {0}; MonsterCard *dragCard; sf::Vector2f dragOrig; MonsterCard deck[2]; MonsterCard *board[20]; deck[0].setStats(70, 20, 10); deck[1].setStats(10, 1, 2); deck[0].setPosition(1500, 200); deck[1].setPosition(1500, 500); while (window.isOpen()) { sf::Event event; while (window.pollEvent(event)) { if (event.type == sf::Event::Closed) { window.close(); } } click = sf::Mouse::isButtonPressed(sf::Mouse::Left) ? true : false; window.clear(sf::Color(150, 100, 50)); for (int i=0; i<20; i++) { window.draw(nest[i]); } window.draw(portrait1); window.draw(portrait2); for (int i=0; i<2; i++) { window.draw(deck[i]); } for (int j=0; j<4; j++) { for (int i=0; i<5; i++) { if (nest[i + 5*j].getGlobalBounds().contains((sf::Vector2f)sf::Mouse::getPosition()) && !(hero1.getGlobalBounds().contains((sf::Vector2f)sf::Mouse::getPosition()) || hero2.getGlobalBounds().contains((sf::Vector2f)sf::Mouse::getPosition()))) { { highlight.setPosition(400 + 184*i, 54 + 244*j); touchID = i + 5*j; if (attack && !choice && full[touchID] && touchID != chosenCard) { highlight.setFillColor(sf::Color(255, 0, 0, 100)); highlight.setOutlineColor(sf::Color::Transparent); window.draw(highlight); } else { highlight.setFillColor(sf::Color::Transparent); highlight.setOutlineColor(sf::Color::Blue); } if (pickingCard && full[i + 5*j]) { window.draw(highlight); } } } } } for (int i = 0; i<2; i++) { if (!drag && click && deck[i].contains(((sf::Vector2f)sf::Mouse::getPosition())) && sf::Mouse::getPosition().x > 1500) { drag = 1; dragCard = &deck[i]; dragOrig = deck[i].getPosition(); } } for (int i=0; i<20; i++) { if (pickingCard && full[i] && board[i]->contains((sf::Vector2f)sf::Mouse::getPosition()) && click) { pickingCard = 0; chosenCard = i; choice = 1; attack = 1; hit=0; } } if (choice) { hit = 0; for (int j = chosenCard/5 - 1; j<=chosenCard/5 + 1; j++) { for (int i = chosenCard%5 - 1; i<=chosenCard/5 + 1; i++) { if (chosenCard != i+5*j && full[i+5*j] && attack && board[i+5*j]->isAlive()) { choosable[i+5*j] = 1; nest[i+5*j].setOutlineThickness(4); nest[i+5*j].setOutlineColor(sf::Color::Red); choice = 0; } else { choosable[i+5*j]=0; nest[i+5*j].setOutlineThickness(0); } } } if (choice) { hit=1; } } if (attack && !choice && !hit) { if (click) { for (int j = chosenCard/5 - 1; j<=chosenCard/5 + 1; j++) { for (int i = chosenCard%5 - 1; i<=chosenCard/5 + 1; i++) { if (choosable[i+5*j] && (nest[i+5*j].getGlobalBounds().contains((sf::Vector2f)sf::Mouse::getPosition()))) { board[i+5*j]->damage(board[chosenCard]->getAtk()); nest[i+5*j].setOutlineThickness(0); highlight.setOutlineColor(sf::Color::Blue); attack = 0; if (!board[i+5*j]->isAlive()) { full[i+5*j] = 0; } } } } } } if (!attack && !choice && !hit && !click) { pickingCard = 1; } if (drag) { dragCard->setPosition((float)sf::Mouse::getPosition().x - 90, float(sf::Mouse::getPosition().y) - 120); } if (drag && !click) { if(touchID>=0) { int x = touchID%5; int y = touchID/5; dragCard->setPosition(400 + 184*x, 54 + 244*y); board[touchID] = dragCard; full[touchID] = 1; drag = 0; } else { dragCard->setPosition(dragOrig); drag = 0; } } touchID = -3; window.draw(hero1); window.draw(hero2); window.display(); } return 0; }
[ "thegdimov@gmail.com" ]
thegdimov@gmail.com
301d8aa3019107f56397a447e5a82a64e7f9ab0d
0233f23ff027707b4df08920888bd844a4ef7502
/quake_framebuffer/ustl/uratio.h
bc19373ab087fd0071241682dd2110e3c8b88e2a
[ "BSD-2-Clause", "MIT" ]
permissive
WarlockD/quake-stm32
2f187122247cf581d5232f639380212ba0fca3a7
8414f407f6fc529bf9d5a371ed91c1ee1194679b
refs/heads/master
2021-09-04T09:26:43.761690
2018-01-01T20:17:14
2018-01-01T20:17:14
104,211,905
6
0
null
null
null
null
UTF-8
C++
false
false
3,626
h
// This file is part of the uSTL library, an STL implementation. // // Copyright (c) 2016 by Mike Sharov <msharov@users.sourceforge.net> // This file is free software, distributed under the MIT License. #pragma once #include "sostream.h" #if HAVE_CPP11 // ratio requires constexpr namespace ustl { template <intmax_t N, intmax_t D = 1> struct ratio { static_assert (D, "denominator cannot be zero"); using type = ratio<N,D>; enum : intmax_t { init_gcd = gcd(N,D) }; static constexpr intmax_t num = N*sign(D) / init_gcd; static constexpr intmax_t den = absv(D) / init_gcd; void text_write (ostringstream& os) const { os.format ("%jd/%jd", num, den); } }; //{{{ Arithmetic operations -------------------------------------------- namespace { template <typename R1, typename R2> struct __ratio_add_impl { enum : intmax_t { den_gcd = gcd(R1::den, R2::den), n1 = R2::den/den_gcd * R1::num, n2 = R1::den/den_gcd * R2::num, nn = n1 + n2, nd = R1::den/den_gcd * R2::den }; }; template <typename R1, typename R2> struct __ratio_multiply_impl { enum : intmax_t { gcd1 = gcd(R1::num, R2::den), gcd2 = gcd(R2::num, R1::den), nn = (R1::num/gcd1) * (R2::num/gcd2), nd = (R1::den/gcd2) * (R2::den/gcd1) }; }; } // namespace template <typename R1, typename R2> struct ratio_add : public ratio< __ratio_add_impl<R1,R2>::nn, __ratio_add_impl<R1,R2>::nd> {}; template <typename R1, typename R2> struct ratio_multiply : public ratio< __ratio_multiply_impl<R1,R2>::nn, __ratio_multiply_impl<R1,R2>::nd> {}; template <typename R1, typename R2> struct ratio_subtract : public ratio_add<R1, ratio<-R2::num,R2::den>> {}; template <typename R1, typename R2> struct ratio_divide : public ratio_multiply<R1, ratio<R2::den,R2::num>> {}; //}}}------------------------------------------------------------------- //{{{ Comparators template <typename R1, typename R2> struct ratio_equal : public std::integral_constant<bool, R1::num == R2::num && R1::den == R2::den> {}; template <typename R1, typename R2> struct ratio_not_equal : public std::integral_constant<bool, !ratio_equal<R1,R2>::value> {}; template <typename R1, typename R2> struct ratio_less : public std::integral_constant<bool, ratio_subtract<R1,R2>::num < 0> {}; template <typename R1, typename R2> struct ratio_less_equal : public std::integral_constant<bool, ratio_subtract<R1,R2>::num <= 0> {}; template <typename R1, typename R2> struct ratio_greater : public std::integral_constant<bool, !ratio_less_equal<R1,R2>::value> {}; template <typename R1, typename R2> struct ratio_greater_equal : public std::integral_constant<bool, !ratio_less<R1,R2>::value> {}; //}}}------------------------------------------------------------------- //{{{ Metric prefix ratios using exa = ratio<1000000000000000000, 1>; using peta = ratio< 1000000000000000, 1>; using tera = ratio< 1000000000000, 1>; using giga = ratio< 1000000000, 1>; using mega = ratio< 1000000, 1>; using kilo = ratio< 1000, 1>; using hecto = ratio< 100, 1>; using deca = ratio< 10, 1>; using deci = ratio<1, 10>; using centi = ratio<1, 100>; using milli = ratio<1, 1000>; using micro = ratio<1, 1000000>; using nano = ratio<1, 1000000000>; using pico = ratio<1, 1000000000000>; using femto = ratio<1, 1000000000000000>; using atto = ratio<1, 1000000000000000000>; //}}}------------------------------------------------------------------- } // namespace ustl #endif // HAVE_CPP11
[ "warlockd@gmail.com" ]
warlockd@gmail.com
d577ef35f8e7593a4f2b554b3d80436b380701ce
46cea2c3e797a7b3607c6488334ebd0e92c794bd
/The NInth chapter assignment/Time_Class/Time_Class/Time.cpp
aa76badf0d00879f41526f208e911eec2b84572d
[]
no_license
shidaixianfeng/My_C-
0b6a5019f9e5fbb04f5a7cded330433d75b2ffcc
cd9aa767efb4a3836585bb43c76ba99621d85f8e
refs/heads/master
2021-01-22T22:49:30.465114
2017-04-30T15:26:36
2017-04-30T15:26:36
85,582,646
0
0
null
null
null
null
UTF-8
C++
false
false
1,474
cpp
#include "Time.h" #include<iostream> #include<string> #include<iomanip> using namespace std; Time::Time(int hour, int minute, int second, string x) { SetHour(hour); SetMinute(minute); SetSecond(second); if (x == "AM") m_iMorning = 1; else m_iMorning = 2; //m_bFlag = false; } Time::~Time() { } bool Time::SetHour(int Hour) { if (Hour > 12 || Hour < 0) { m_iHour = 0; return false; } else { m_iHour = Hour; } return true; } bool Time::SetMinute(int Minute) { if (Minute > 60 || Minute < 0) { m_iMinute = 0; return false; } else { m_iMinute = Minute; } return true; } bool Time::SetSecond(int Second) { if (Second > 60 || Second < 0) { m_iSecond = 0; return false; } else { m_iSecond = Second; } return true; } int Time::getHour() const { return m_iHour; } int Time::getMinute() const { return m_iMinute; } int Time::getSecond() const { return m_iSecond; } void Time::tick(bool counter) { if(counter) { m_iSecond += 1; if(m_iSecond>=60) { m_iSecond %= 60; m_iMinute += 1; if(m_iMinute>=60) { m_iMinute %= 60; m_iHour++; } } } if (m_iHour == 12 && m_iMinute == 0 && m_iSecond == 0) { m_iMorning++; } if (m_iHour >= 13) { m_iHour %= 12; } cout << setw(2)<<setfill('0')<<getHour() << ":" << setw(2) << setfill('0')<< getMinute()<< ":" << setw(2)<<setfill('0')<<getSecond() << " "; if (m_iMorning % 2 == 0) cout << "PM"; else cout << "AM"; cout << endl; }
[ "1461014539@qq.com" ]
1461014539@qq.com
cd68a9165bab70d9abe6000c820a19d3007822ec
38cea84aad798112978e45e330792d50ec05bd3e
/game/client/hud_controlpointpanel.cpp
02cd41b33870f49612d038b2076eb7740d6a5164
[]
no_license
HL2-Ghosting-Team/src
3822c5f7b621ef8e158fa7e2a74551c9cd81257f
8c9e32e78a0f67591d6dd8a17cb77bc0ebf832b5
refs/heads/master
2022-06-25T01:15:20.989386
2022-06-16T19:58:43
2022-06-18T17:52:05
12,396,254
20
19
null
2022-06-18T17:52:06
2013-08-27T03:49:09
C++
WINDOWS-1252
C++
false
false
27,849
cpp
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: // //=============================================================================// #include "cbase.h" #include "hudelement.h" #include <vgui_controls/Panel.h> #include <vgui_controls/Label.h> #include <vgui_controls/EditablePanel.h> #include <vgui_controls/ImagePanel.h> #include <vgui/isurface.h> #include "c_baseplayer.h" #include "iclientmode.h" #include "c_team_objectiveresource.h" #include "c_team.h" #include "view.h" #include "teamplay_gamerules.h" #define INTRO_NUM_FAKE_PLAYERS 3 extern ConVar mp_capstyle; extern ConVar mp_blockstyle; //----------------------------------------------------------------------------- // Purpose: Draws the progress bar //----------------------------------------------------------------------------- class CHudCapturePanelProgressBar : public vgui::ImagePanel { public: DECLARE_CLASS_SIMPLE( CHudCapturePanelProgressBar, vgui::ImagePanel ); CHudCapturePanelProgressBar( vgui::Panel *parent, const char *name ); virtual void Paint(); void SetPercentage( float flPercentage ){ m_flPercent = flPercentage; } private: float m_flPercent; int m_iTexture; CPanelAnimationVar( Color, m_clrActive, "color_active", "HudCaptureProgressBar.Active" ); CPanelAnimationVar( Color, m_clrInActive, "color_inactive", "HudCaptureProgressBar.InActive" ); }; //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- class CHudCapturePanelIcon : public vgui::ImagePanel { public: DECLARE_CLASS_SIMPLE( CHudCapturePanelIcon, vgui::ImagePanel ); CHudCapturePanelIcon( vgui::Panel *parent, const char *name ); virtual void Paint(); void SetActive( bool state ){ m_bActive = state; } private: bool m_bActive; int m_iTexture; CPanelAnimationVar( Color, m_clrActive, "color_active", "HudCaptureIcon.Active" ); CPanelAnimationVar( Color, m_clrInActive, "color_inactive", "HudCaptureIcon.InActive" ); }; //----------------------------------------------------------------------------- // //----------------------------------------------------------------------------- class CHudCapturePanel : public CHudElement, public vgui::EditablePanel { public: DECLARE_CLASS_SIMPLE( CHudCapturePanel, vgui::EditablePanel ); CHudCapturePanel( const char *pElementName ); virtual void Init( void ); virtual void LevelInit( void ); virtual void OnThink(); virtual void ApplySchemeSettings( vgui::IScheme *pScheme ); virtual void OnScreenSizeChanged( int iOldWide, int iOldTall ); virtual void FireGameEvent( IGameEvent *event ); private: int m_iCurrentCP; // the index of the control point the local is currently in int m_iOriginalYPos; CHudCapturePanelProgressBar *m_pProgressBar; CUtlVector<CHudCapturePanelIcon *> m_PlayerIcons; bool m_bInitializedFlags; vgui::ImagePanel *m_pTeamFlags[ MAX_TEAMS ]; vgui::Label *m_pMessage; vgui::Panel *m_pBackground; CPanelAnimationVarAliasType( float, m_nSpaceBetweenIcons, "icon_space", "2", "proportional_float" ); // For demonstrations of the element in the intro bool m_bFakingCapture; bool m_bFakingMultCapture; float m_flFakeCaptureTime; C_BaseAnimating *m_pFakePlayers[INTRO_NUM_FAKE_PLAYERS]; }; DECLARE_HUDELEMENT( CHudCapturePanel ); ConVar hud_capturepanel( "hud_capturepanel", "1", FCVAR_CLIENTDLL | FCVAR_ARCHIVE, "Set to 0 to not draw the HUD capture panel" ); //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- CHudCapturePanelProgressBar::CHudCapturePanelProgressBar( vgui::Panel *parent, const char *name ) : vgui::ImagePanel( parent, name ) { m_flPercent = 0.0f; m_iTexture = vgui::surface()->DrawGetTextureId( "vgui/progress_bar" ); if ( m_iTexture == -1 ) // we didn't find it, so create a new one { m_iTexture = vgui::surface()->CreateNewTextureID(); } vgui::surface()->DrawSetTextureFile( m_iTexture, "vgui/progress_bar", true, false ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanelProgressBar::Paint() { int wide, tall; GetSize( wide, tall ); float uv1 = 0.0f, uv2 = 1.0f; Vector2D uv11( uv1, uv1 ); Vector2D uv21( uv2, uv1 ); Vector2D uv22( uv2, uv2 ); Vector2D uv12( uv1, uv2 ); vgui::Vertex_t verts[4]; verts[0].Init( Vector2D( 0, 0 ), uv11 ); verts[1].Init( Vector2D( wide, 0 ), uv21 ); verts[2].Init( Vector2D( wide, tall ), uv22 ); verts[3].Init( Vector2D( 0, tall ), uv12 ); // first, just draw the whole thing inactive. vgui::surface()->DrawSetTexture( m_iTexture ); vgui::surface()->DrawSetColor( m_clrInActive ); vgui::surface()->DrawTexturedPolygon( 4, verts ); // now, let's calculate the "active" part of the progress bar vgui::surface()->DrawSetColor( m_clrActive ); // we're going to do this using quadrants // ------------------------- // | | | // | | | // | 4 | 1 | // | | | // | | | // ------------------------- // | | | // | | | // | 3 | 2 | // | | | // | | | // ------------------------- float flCompleteCircle = ( 2.0f * M_PI ); float fl90degrees = flCompleteCircle / 4.0f; float flEndAngle = flCompleteCircle * ( 1.0f - m_flPercent ); // count DOWN (counter-clockwise) // float flEndAngle = flCompleteCircle * m_flPercent; // count UP (clockwise) float flHalfWide = (float)wide / 2.0f; float flHalfTall = (float)tall / 2.0f; if ( flEndAngle >= fl90degrees * 3.0f ) // >= 270 degrees { // draw the first and second quadrants uv11.Init( 0.5f, 0.0f ); uv21.Init( 1.0f, 0.0f ); uv22.Init( 1.0f, 1.0f ); uv12.Init( 0.5, 1.0f ); verts[0].Init( Vector2D( flHalfWide, 0.0f ), uv11 ); verts[1].Init( Vector2D( wide, 0.0f ), uv21 ); verts[2].Init( Vector2D( wide, tall ), uv22 ); verts[3].Init( Vector2D( flHalfWide, tall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); // draw the third quadrant uv11.Init( 0.0f, 0.5f ); uv21.Init( 0.5f, 0.5f ); uv22.Init( 0.5f, 1.0f ); uv12.Init( 0.0f, 1.0f ); verts[0].Init( Vector2D( 0.0f, flHalfTall ), uv11 ); verts[1].Init( Vector2D( flHalfWide, flHalfTall ), uv21 ); verts[2].Init( Vector2D( flHalfWide, tall ), uv22 ); verts[3].Init( Vector2D( 0.0f, tall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); // draw the partial fourth quadrant if ( flEndAngle > fl90degrees * 3.5f ) // > 315 degrees { uv11.Init( 0.0f, 0.0f ); uv21.Init( 0.5f - ( tan(fl90degrees * 4.0f - flEndAngle) * 0.5 ), 0.0f ); uv22.Init( 0.5f, 0.5f ); uv12.Init( 0.0f, 0.5f ); verts[0].Init( Vector2D( 0.0f, 0.0f ), uv11 ); verts[1].Init( Vector2D( flHalfWide - ( tan(fl90degrees * 4.0f - flEndAngle) * flHalfTall ), 0.0f ), uv21 ); verts[2].Init( Vector2D( flHalfWide, flHalfTall ), uv22 ); verts[3].Init( Vector2D( 0.0f, flHalfTall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } else // <= 315 degrees { uv11.Init( 0.0f, 0.5f ); uv21.Init( 0.0f, 0.5f - ( tan(flEndAngle - fl90degrees * 3.0f) * 0.5 ) ); uv22.Init( 0.5f, 0.5f ); uv12.Init( 0.0f, 0.5f ); verts[0].Init( Vector2D( 0.0f, flHalfTall ), uv11 ); verts[1].Init( Vector2D( 0.0f, flHalfTall - ( tan(flEndAngle - fl90degrees * 3.0f) * flHalfWide ) ), uv21 ); verts[2].Init( Vector2D( flHalfWide, flHalfTall ), uv22 ); verts[3].Init( Vector2D( 0.0f, flHalfTall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } } else if ( flEndAngle >= fl90degrees * 2.0f ) // >= 180 degrees { // draw the first and second quadrants uv11.Init( 0.5f, 0.0f ); uv21.Init( 1.0f, 0.0f ); uv22.Init( 1.0f, 1.0f ); uv12.Init( 0.5, 1.0f ); verts[0].Init( Vector2D( flHalfWide, 0.0f ), uv11 ); verts[1].Init( Vector2D( wide, 0.0f ), uv21 ); verts[2].Init( Vector2D( wide, tall ), uv22 ); verts[3].Init( Vector2D( flHalfWide, tall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); // draw the partial third quadrant if ( flEndAngle > fl90degrees * 2.5f ) // > 225 degrees { uv11.Init( 0.5f, 0.5f ); uv21.Init( 0.5f, 1.0f ); uv22.Init( 0.0f, 1.0f ); uv12.Init( 0.0f, 0.5f + ( tan(fl90degrees * 3.0f - flEndAngle) * 0.5 ) ); verts[0].Init( Vector2D( flHalfWide, flHalfTall ), uv11 ); verts[1].Init( Vector2D( flHalfWide, tall ), uv21 ); verts[2].Init( Vector2D( 0.0f, tall ), uv22 ); verts[3].Init( Vector2D( 0.0f, flHalfTall + ( tan(fl90degrees * 3.0f - flEndAngle) * flHalfWide ) ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } else // <= 225 degrees { uv11.Init( 0.5f, 0.5f ); uv21.Init( 0.5f, 1.0f ); uv22.Init( 0.5f - ( tan( flEndAngle - fl90degrees * 2.0f) * 0.5 ), 1.0f ); uv12.Init( 0.5f, 0.5f ); verts[0].Init( Vector2D( flHalfWide, flHalfTall ), uv11 ); verts[1].Init( Vector2D( flHalfWide, tall ), uv21 ); verts[2].Init( Vector2D( flHalfWide - ( tan(flEndAngle - fl90degrees * 2.0f) * flHalfTall ), tall ), uv22 ); verts[3].Init( Vector2D( flHalfWide, flHalfTall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } } else if ( flEndAngle >= fl90degrees ) // >= 90 degrees { // draw the first quadrant uv11.Init( 0.5f, 0.0f ); uv21.Init( 1.0f, 0.0f ); uv22.Init( 1.0f, 0.5f ); uv12.Init( 0.5f, 0.5f ); verts[0].Init( Vector2D( flHalfWide, 0.0f ), uv11 ); verts[1].Init( Vector2D( wide, 0.0f ), uv21 ); verts[2].Init( Vector2D( wide, flHalfTall ), uv22 ); verts[3].Init( Vector2D( flHalfWide, flHalfTall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); // draw the partial second quadrant if ( flEndAngle > fl90degrees * 1.5f ) // > 135 degrees { uv11.Init( 0.5f, 0.5f ); uv21.Init( 1.0f, 0.5f ); uv22.Init( 1.0f, 1.0f ); uv12.Init( 0.5f + ( tan(fl90degrees * 2.0f - flEndAngle) * 0.5f ), 1.0f ); verts[0].Init( Vector2D( flHalfWide, flHalfTall ), uv11 ); verts[1].Init( Vector2D( wide, flHalfTall ), uv21 ); verts[2].Init( Vector2D( wide, tall ), uv22 ); verts[3].Init( Vector2D( flHalfWide + ( tan(fl90degrees * 2.0f - flEndAngle) * flHalfTall ), tall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } else // <= 135 degrees { uv11.Init( 0.5f, 0.5f ); uv21.Init( 1.0f, 0.5f ); uv22.Init( 1.0f, 0.5f + ( tan(flEndAngle - fl90degrees) * 0.5f ) ); uv12.Init( 0.5f, 0.5f ); verts[0].Init( Vector2D( flHalfWide, flHalfTall ), uv11 ); verts[1].Init( Vector2D( wide, flHalfTall ), uv21 ); verts[2].Init( Vector2D( wide, flHalfTall + ( tan(flEndAngle - fl90degrees) * flHalfWide ) ), uv22 ); verts[3].Init( Vector2D( flHalfWide, flHalfTall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } } else // > 0 degrees { if ( flEndAngle > fl90degrees / 2.0f ) // > 45 degrees { uv11.Init( 0.5f, 0.0f ); uv21.Init( 1.0f, 0.0f ); uv22.Init( 1.0f, 0.5f - ( tan(fl90degrees - flEndAngle) * 0.5 ) ); uv12.Init( 0.5f, 0.5f ); verts[0].Init( Vector2D( flHalfWide, 0.0f ), uv11 ); verts[1].Init( Vector2D( wide, 0.0f ), uv21 ); verts[2].Init( Vector2D( wide, flHalfTall - ( tan(fl90degrees - flEndAngle) * flHalfWide ) ), uv22 ); verts[3].Init( Vector2D( flHalfWide, flHalfTall ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } else // <= 45 degrees { uv11.Init( 0.5f, 0.0f ); uv21.Init( 0.5 + ( tan(flEndAngle) * 0.5 ), 0.0f ); uv22.Init( 0.5f, 0.5f ); uv12.Init( 0.5f, 0.0f ); verts[0].Init( Vector2D( flHalfWide, 0.0f ), uv11 ); verts[1].Init( Vector2D( flHalfWide + ( tan(flEndAngle) * flHalfTall ), 0.0f ), uv21 ); verts[2].Init( Vector2D( flHalfWide, flHalfTall ), uv22 ); verts[3].Init( Vector2D( flHalfWide, 0.0f ), uv12 ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } } } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- CHudCapturePanelIcon::CHudCapturePanelIcon( vgui::Panel *parent, const char *name ) : vgui::ImagePanel( parent, name ) { m_bActive = false; m_iTexture = vgui::surface()->DrawGetTextureId( "vgui/capture_icon" ); if ( m_iTexture == -1 ) // we didn't find it, so create a new one { m_iTexture = vgui::surface()->CreateNewTextureID(); } vgui::surface()->DrawSetTextureFile( m_iTexture, "vgui/capture_icon", true, false ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanelIcon::Paint() { int wide, tall; GetSize( wide, tall ); float uv1 = 0.0f, uv2 = 1.0f; Vector2D uv11( uv1, uv1 ); Vector2D uv12( uv1, uv2 ); Vector2D uv21( uv2, uv1 ); Vector2D uv22( uv2, uv2 ); vgui::Vertex_t verts[4]; verts[0].Init( Vector2D( 0, 0 ), uv11 ); verts[1].Init( Vector2D( wide, 0 ), uv21 ); verts[2].Init( Vector2D( wide, tall ), uv22 ); verts[3].Init( Vector2D( 0, tall ), uv12 ); // just draw the whole thing vgui::surface()->DrawSetTexture( m_iTexture ); vgui::surface()->DrawSetColor( m_bActive ? m_clrActive : m_clrInActive ); vgui::surface()->DrawTexturedPolygon( 4, verts ); } //----------------------------------------------------------------------------- // Purpose: Constructor //----------------------------------------------------------------------------- CHudCapturePanel::CHudCapturePanel( const char *pElementName ) : CHudElement( pElementName ), BaseClass( NULL, "HudCapturePanel" ) { SetParent( g_pClientMode->GetViewport() ); m_iCurrentCP = -1; m_bFakingCapture = false; m_pBackground = new vgui::Panel( this, "CapturePanelBackground" ); m_pProgressBar = new CHudCapturePanelProgressBar( this, "CapturePanelProgressBar" ); for ( int i = 0 ; i < 5 ; i++ ) { CHudCapturePanelIcon *pPanel; char szName[64]; Q_snprintf( szName, sizeof( szName ), "CapturePanelPlayerIcon%d", i + 1 ); pPanel = new CHudCapturePanelIcon( this, szName ); m_PlayerIcons.AddToTail( pPanel ); } m_bInitializedFlags = false; for ( int i = 0; i < MAX_TEAMS; i++ ) { m_pTeamFlags[i] = NULL; } m_pMessage = new vgui::Label( this, "CapturePanelMessage", " " ); // load control settings... LoadControlSettings( "resource/UI/HudCapturePanel.res" ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanel::Init( void ) { ListenForGameEvent( "controlpoint_starttouch" ); ListenForGameEvent( "controlpoint_endtouch" ); ListenForGameEvent( "teamplay_round_start" ); ListenForGameEvent( "controlpoint_fake_capture" ); ListenForGameEvent( "controlpoint_fake_capture_mult" ); ListenForGameEvent( "intro_finish" ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanel::LevelInit( void ) { m_iCurrentCP = -1; m_bFakingCapture = false; } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanel::OnScreenSizeChanged( int iOldWide, int iOldTall ) { LoadControlSettings( "resource/UI/HudCapturePanel.res" ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanel::ApplySchemeSettings( vgui::IScheme *pScheme ) { BaseClass::ApplySchemeSettings( pScheme ); if ( m_pBackground ) { m_pBackground->SetBgColor( GetSchemeColor( "HintMessageBg", pScheme ) ); m_pBackground->SetPaintBackgroundType( 2 ); } SetFgColor( GetSchemeColor( "HudProgressBar.Active", pScheme ) ); int iX; GetPos( iX, m_iOriginalYPos ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanel::OnThink() { BaseClass::OnThink(); if ( !GetNumberOfTeams() ) return; if ( !m_bInitializedFlags ) { m_bInitializedFlags = true; for ( int i = 0; i < GetNumberOfTeams(); i++ ) { if ( i == TEAM_SPECTATOR ) continue; m_pTeamFlags[i] = dynamic_cast< vgui::ImagePanel * >(FindChildByName( VarArgs("CapturePanelTeamFlag_%d", i) )); } InvalidateLayout(); } if ( m_bFakingCapture && gpGlobals->curtime > m_flFakeCaptureTime ) { m_bFakingCapture = false; if ( m_bFakingMultCapture ) { for ( int i = 0; i < INTRO_NUM_FAKE_PLAYERS; i++ ) { m_pFakePlayers[i]->Release(); m_pFakePlayers[i] = NULL; } } } C_BasePlayer *pPlayer = C_BasePlayer::GetLocalPlayer(); if ( pPlayer ) { bool bInCapZone = ( m_iCurrentCP >= 0 ); // Turn off the panel and children if the player is dead or not in a cap zone if ( !m_bFakingCapture && (!bInCapZone || !hud_capturepanel.GetBool() || !pPlayer->IsAlive()) ) { if ( IsVisible() ) { SetVisible( false ); } return; } int nOwningTeam = ObjectiveResource()->GetOwningTeam( m_iCurrentCP ); int nPlayerTeam = pPlayer->GetTeamNumber(); int nNumTeammates = ObjectiveResource()->GetNumPlayersInArea( m_iCurrentCP, nPlayerTeam ); int nRequiredTeammates = ObjectiveResource()->GetRequiredCappers( m_iCurrentCP, nPlayerTeam ); int nNumEnemies = 0; bool bEnemyTeamReadyToCap = false; for ( int i = LAST_SHARED_TEAM+1; i < GetNumberOfTeams(); i++ ) { if ( i == nPlayerTeam ) continue; int iTeamInArea = ObjectiveResource()->GetNumPlayersInArea( m_iCurrentCP, i ); nNumEnemies += iTeamInArea; if ( iTeamInArea >= ObjectiveResource()->GetRequiredCappers( m_iCurrentCP, i ) ) { // There's an enemy team here that has enough players to cap bEnemyTeamReadyToCap = true; } } int iCappingTeam = ObjectiveResource()->GetCappingTeam( m_iCurrentCP ); // If we're faking it, stomp all the data if ( m_bFakingCapture ) { nOwningTeam = TEAM_UNASSIGNED; iCappingTeam = nPlayerTeam; if ( m_bFakingMultCapture ) { nNumTeammates = nRequiredTeammates = 3; } else { nNumTeammates = nRequiredTeammates = 1; } nNumEnemies = 0; bEnemyTeamReadyToCap = false; } // If we're in more-players-cap-faster mode, we have no required amount. // Just show the number of players in the zone. if ( mp_capstyle.GetInt() == 1 ) { // Clip to max number of players we can show if ( nNumTeammates > 5 ) { nNumTeammates = 5; } nRequiredTeammates = nNumTeammates; } // if we already own this capture point and there are no enemies in the area // or we're playing minirounds and the current cap zone is not in the current round if ( ( nOwningTeam == nPlayerTeam && !bEnemyTeamReadyToCap ) || ( ObjectiveResource()->PlayingMiniRounds() && !ObjectiveResource()->IsInMiniRound( m_iCurrentCP ) ) ) { // don't need to do anything if ( IsVisible() ) { SetVisible( false ); } return; } // okay, turn on the capture point panel if ( !IsVisible() ) { SetVisible( true ); } // If there's a hint onscreen, move ourselves off it int iX,iY; GetPos( iX, iY ); if ( pPlayer->Hints() && pPlayer->Hints()->HintIsCurrentlyVisible() ) { int iMovedY = (m_iOriginalYPos - YRES(50)); if ( iY != iMovedY ) { SetPos( iX, iMovedY ); } } else if ( iY != m_iOriginalYPos ) { SetPos( iX, m_iOriginalYPos ); } // set the correct flag image for ( int i = 0; i < GetNumberOfTeams(); i++ ) { if ( !m_pTeamFlags[i] ) continue; m_pTeamFlags[i]->SetVisible( nOwningTeam == i ); } // arrange the player icons for ( int i = 0 ; i < m_PlayerIcons.Count() ; i++ ) { CHudCapturePanelIcon *pPanel = m_PlayerIcons[i]; if ( !pPanel ) { continue; } if ( i < nRequiredTeammates ) { if ( i < nNumTeammates ) { pPanel->SetActive( true ); if ( !pPanel->IsVisible() ) pPanel->SetVisible( true ); } else { pPanel->SetActive( false ); if ( !pPanel->IsVisible() ) pPanel->SetVisible( true ); } } else { if ( pPanel->IsVisible() ) pPanel->SetVisible( false ); } } int wide = 0, tall = 0, iconWide = 0, iconTall = 0; GetSize( wide, tall ); vgui::ImagePanel *pPanel = m_PlayerIcons[0]; if ( pPanel ) pPanel->GetSize( iconWide, iconTall ); int width = ( nRequiredTeammates * iconWide ) + ( ( nRequiredTeammates - 1 ) * m_nSpaceBetweenIcons ); int xpos = wide / 2.0 - width / 2.0; // rearrange the player icon panels for ( int i = 0 ; i < nRequiredTeammates ; i++ ) { CHudCapturePanelIcon *pPanel = m_PlayerIcons[i]; if ( pPanel ) { int x, y, w, t; pPanel->GetBounds( x, y, w, t ); pPanel->SetBounds( xpos, y, w, t ); } xpos += iconWide + m_nSpaceBetweenIcons; } // are we capping an area? if ( iCappingTeam == TEAM_UNASSIGNED || iCappingTeam != nPlayerTeam ) { // turn off the progress bar, we're not capping if ( m_pProgressBar && m_pProgressBar->IsVisible() ) { m_pProgressBar->SetVisible( false ); } // turn on the message if ( m_pMessage ) { m_pMessage->SetFgColor( GetFgColor() ); if ( !m_pMessage->IsVisible() ) { m_pMessage->SetVisible( true ); } char szReason[256]; // If a team's not allowed to cap a point, don't count players in it at all if ( !TeamplayGameRules()->TeamMayCapturePoint( nPlayerTeam, m_iCurrentCP ) ) { m_pMessage->SetText( "#Team_Capture_Linear" ); if ( m_pTeamFlags[ nOwningTeam ] ) { m_pTeamFlags[ nOwningTeam ]->SetVisible( false ); } } else if ( !TeamplayGameRules()->PlayerMayCapturePoint( pPlayer, m_iCurrentCP, szReason, sizeof(szReason) ) ) { m_pMessage->SetText( szReason ); if ( m_pTeamFlags[ nOwningTeam ] ) { m_pTeamFlags[ nOwningTeam ]->SetVisible( false ); } } else if ( nNumTeammates >= nRequiredTeammates && nNumEnemies > 0 ) { m_pMessage->SetText( "#Team_Capture_Blocked" ); } else if ( bEnemyTeamReadyToCap ) { m_pMessage->SetText( "#Team_Blocking_Capture" ); } else if ( mp_blockstyle.GetInt() == 1 && iCappingTeam != TEAM_UNASSIGNED ) { m_pMessage->SetText( "#Team_Blocking_Capture" ); for ( int i = 0; i < GetNumberOfTeams(); i++ ) { if ( m_pTeamFlags[i] ) { m_pTeamFlags[i]->SetVisible( false ); } } } else if ( !ObjectiveResource()->TeamCanCapPoint( m_iCurrentCP, nPlayerTeam ) ) { m_pMessage->SetText( "#Team_Cannot_Capture" ); if ( m_pTeamFlags[ nOwningTeam ] ) { m_pTeamFlags[ nOwningTeam ]->SetVisible( false ); } } else { m_pMessage->SetText( "#Team_Waiting_for_teammate" ); } if ( m_pBackground ) { // do we need to resize our background? int textW, textH, bgX, bgY, bgW, bgH; m_pMessage->GetContentSize( textW, textH ); m_pBackground->GetBounds( bgX, bgY, bgW, bgH ); if ( bgW < textW ) { m_pBackground->SetBounds( bgX + ( bgW / 2.0 ) - ( ( textW + XRES(3) ) / 2.0 ), bgY, textW + XRES(3), bgH ); } } } } else { // turn on the progress bar, we're capping if ( m_pProgressBar ) { if ( !m_pProgressBar->IsVisible() ) { m_pProgressBar->SetVisible( true ); } if ( m_bFakingCapture ) { float flProgress = RemapVal( m_flFakeCaptureTime - gpGlobals->curtime, 0, 5.0, 0, 1 ); m_pProgressBar->SetPercentage( flProgress ); } else { m_pProgressBar->SetPercentage( ObjectiveResource()->GetCPCapPercentage( m_iCurrentCP ) ); } } // If our cap is being paused by blocking enemies, show that if ( mp_blockstyle.GetInt() == 1 && nNumTeammates == 0 ) { m_pMessage->SetText( "#Team_Capture_Blocked" ); if ( !m_pMessage->IsVisible() ) { m_pMessage->SetVisible( true ); } for ( int i = 0; i < GetNumberOfTeams(); i++ ) { if ( m_pTeamFlags[i] ) { m_pTeamFlags[i]->SetVisible( false ); } } } else if ( m_pMessage && m_pMessage->IsVisible() ) { // turn off the message m_pMessage->SetVisible( false ); } } } } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void CHudCapturePanel::FireGameEvent( IGameEvent *event ) { m_iCurrentCP = -1; return; const char *eventname = event->GetName(); C_BasePlayer *pPlayer = C_BasePlayer::GetLocalPlayer(); if ( FStrEq( "controlpoint_starttouch", eventname ) ) { int iPlayer = event->GetInt( "player" ); if ( pPlayer && iPlayer == pPlayer->entindex() ) { m_iCurrentCP = event->GetInt( "area" ); } } else if ( FStrEq( "controlpoint_endtouch", eventname ) ) { int iPlayer = event->GetInt( "player" ); if ( pPlayer && iPlayer == pPlayer->entindex() ) { Assert( m_iCurrentCP == event->GetInt( "area" ) ); m_iCurrentCP = -1; } } else if ( FStrEq( "teamplay_round_start", eventname ) ) { m_iCurrentCP = -1; } else if ( FStrEq( "controlpoint_fake_capture", eventname ) ) { int iPlayer = event->GetInt( "player" ); if ( pPlayer && iPlayer == pPlayer->entindex() ) { m_iCurrentCP = event->GetInt( "int_data" ); m_bFakingCapture = true; m_bFakingMultCapture = false; m_flFakeCaptureTime = gpGlobals->curtime + 5.0; } } else if ( FStrEq( "controlpoint_fake_capture_mult", eventname ) ) { int iPlayer = event->GetInt( "player" ); if ( pPlayer && iPlayer == pPlayer->entindex() ) { m_iCurrentCP = event->GetInt( "int_data" ); m_bFakingCapture = true; m_bFakingMultCapture = true; m_flFakeCaptureTime = gpGlobals->curtime + 5.0; // Trace forward & find the world trace_t tr; Vector vecEnd; VectorMA( MainViewOrigin(), MAX_TRACE_LENGTH, MainViewForward(), vecEnd ); UTIL_TraceLine( MainViewOrigin(), vecEnd, MASK_SOLID_BRUSHONLY, pPlayer, COLLISION_GROUP_NONE, &tr ); if ( !tr.startsolid && tr.fraction < 1.0 ) { Vector vecPositions[INTRO_NUM_FAKE_PLAYERS] = { Vector( 100, 100, 0 ), Vector( 0, -100, 0 ), Vector( -100, 0, 0 ), }; const char *pszModels[INTRO_NUM_FAKE_PLAYERS] = { "models/player/engineer.mdl", "models/player/medic.mdl", "models/player/soldier.mdl", }; for ( int i = 0; i < INTRO_NUM_FAKE_PLAYERS; i++ ) { m_pFakePlayers[i] = new C_BaseAnimating; if ( m_pFakePlayers[i]->InitializeAsClientEntity( pszModels[i], RENDER_GROUP_OPAQUE_ENTITY ) ) { Vector vecOrigin = tr.endpos + vecPositions[i]; m_pFakePlayers[i]->SetAbsOrigin( vecOrigin ); m_pFakePlayers[i]->SetAbsAngles( QAngle(0,RandomInt(0,360),0) ); } } } } } else if ( FStrEq( "intro_finish", eventname ) ) { int iPlayer = event->GetInt( "player" ); if ( pPlayer && iPlayer == pPlayer->entindex() ) { m_iCurrentCP = -1; m_bFakingCapture = false; m_bFakingMultCapture = false; m_flFakeCaptureTime = 0; for ( int i = 0; i < INTRO_NUM_FAKE_PLAYERS; i++ ) { if ( m_pFakePlayers[i] ) { m_pFakePlayers[i]->Release(); m_pFakePlayers[i] = NULL; } } } } }
[ "nkerns25@yahoo.com" ]
nkerns25@yahoo.com
5f98f5da3ac22b8dbc7786c1fe645c1e7874b0cf
15ffa9caaaafa25abfb56a8a8120368f5e984f43
/include/algorithm/jaro_winkler.h
53a6411374c14e01b35219872cfb1f84f77b5d43
[ "MIT" ]
permissive
thomastli/k-means-cpp
1ee80a2dd53d70ed0446bc54ee866597acbf627b
643a5a7030931cf2373764591250348238dedbed
refs/heads/main
2023-07-28T21:40:25.320121
2023-07-11T21:59:09
2023-07-11T21:59:09
373,842,514
0
0
null
null
null
null
UTF-8
C++
false
false
811
h
/** * @author Thomas Li * @date 2021-06-04 * @brief Implementation of Jaro-Winkler algorithm for edit distance between strings * Modified from original source: https://github.com/TriviaMarketing/Jaro-Winkler */ #ifndef JAROWINKLER_HPP #define JAROWINKLER_HPP #include <string> #include "distance_interface.h" namespace algorithm { class JaroWinkler : public DistanceInterface { public: /** * Determine the distance between two strings * @param a The first string * @param b The second string * @return The distance, as a double value */ double Distance(const std::string &a, const std::string &b) override; private: double jaro_distance(const std::string &a, const std::string &b); }; } #endif // JAROWINKLER_HPP
[ "thomas.tong.li@gmail.com" ]
thomas.tong.li@gmail.com
9e92ae1c03d2fc8041b72d340c70cae1175faa50
6ffd23679939f59f0a09c9507a126ba056b239d7
/dnn/test/cuda/batched_matrix_mul.cpp
f209b99cb5c11c404e5a50764c60815b44e6166f
[ "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
MegEngine/MegEngine
74c1c9b6022c858962caf7f27e6f65220739999f
66b79160d35b2710c00befede0c3fd729109e474
refs/heads/master
2023-08-23T20:01:32.476848
2023-08-01T07:12:01
2023-08-11T06:04:12
248,175,118
5,697
585
Apache-2.0
2023-07-19T05:11:07
2020-03-18T08:21:58
C++
UTF-8
C++
false
false
11,860
cpp
#include <vector> #include "test/cuda/fixture.h" #include "test/common/checker.h" #include "test/common/matrix_mul.h" #include "test/common/rng.h" #include "test/cuda/benchmark.h" #include "test/cuda/utils.h" using namespace megdnn; using namespace test; #define F32_TEST_PART(x, algo) \ matrix_mul::check_batched_matrix_mul( \ dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), algo, 1e-3, \ matrix_mul::get_batched_matmul_args_mask(x)) TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_PART1) { F32_TEST_PART(0, "CUBLAS"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_PART2) { F32_TEST_PART(1, "CUBLAS"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_PART3) { F32_TEST_PART(2, "CUBLAS"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_PART4) { F32_TEST_PART(3, "CUBLAS"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_LT_F32_PART1) { require_compute_capability(7, 0); F32_TEST_PART(0, "CUBLAS_LT"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_LT_F32_PART2) { require_compute_capability(7, 0); F32_TEST_PART(1, "CUBLAS_LT"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_LT_F32_PART3) { require_compute_capability(7, 0); F32_TEST_PART(2, "CUBLAS_LT"); } TEST_F(CUDA, BATCHED_MATRIX_MUL_LT_F32_PART4) { require_compute_capability(7, 0); F32_TEST_PART(3, "CUBLAS_LT"); } #undef F32_TEST_PART TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BROADCAST_PART1) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), "CUBLAS", 1e-3, matrix_mul::get_batched_matmul_broadcast_args_mask(0)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BROADCAST_PART2) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), "CUBLAS", 1e-3, matrix_mul::get_batched_matmul_broadcast_args_mask(1)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BROADCAST_PART3) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), "CUBLAS", 1e-3, matrix_mul::get_batched_matmul_broadcast_args_mask(2)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BROADCAST_PART4) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), "CUBLAS", 1e-3, matrix_mul::get_batched_matmul_broadcast_args_mask(3)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BRUTE_FORCE_PART1) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}, 1e-3, matrix_mul::get_batched_matmul_args_mask(0)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BRUTE_FORCE_PART2) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}, 1e-3, matrix_mul::get_batched_matmul_args_mask(1)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BRUTE_FORCE_PART3) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}, 1e-3, matrix_mul::get_batched_matmul_args_mask(2)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_BRUTE_FORCE_PART4) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}, 1e-3, matrix_mul::get_batched_matmul_args_mask(3)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_NAIVE_PART0) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(0)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_NAIVE_PART1) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(1)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_NAIVE_PART2) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(2)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F32_NAIVE_PART3) { matrix_mul::check_batched_matrix_mul( dtype::Float32{}, dtype::Float32{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(3)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_NAIVE_PART0) { matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(0)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_NAIVE_PART1) { matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(1)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_NAIVE_PART2) { matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(2)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_NAIVE_PART3) { matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), ExecutionPolicyAlgoName{"NAIVE_BMM"}, 1e-5, matrix_mul::get_batched_matmul_args_mask(3)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_PART1) { require_compute_capability(6, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS", 2e-2, matrix_mul::get_batched_matmul_args_mask(0)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_PART2) { require_compute_capability(6, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS", 2e-2, matrix_mul::get_batched_matmul_args_mask(1)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_PART3) { require_compute_capability(6, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS", 2e-2, matrix_mul::get_batched_matmul_args_mask(2)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_F16_PART4) { require_compute_capability(6, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS", 2e-2, matrix_mul::get_batched_matmul_args_mask(3)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_CUBLASLT_F16_PART1) { require_compute_capability(7, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS_LT", 2e-2, matrix_mul::get_batched_matmul_args_mask(0)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_CUBLASLT_F16_PART2) { require_compute_capability(7, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS_LT", 2e-2, matrix_mul::get_batched_matmul_args_mask(1)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_CUBLASLT_F16_PART3) { require_compute_capability(7, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS_LT", 2e-2, matrix_mul::get_batched_matmul_args_mask(2)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_CUBLASLT_F16_PART4) { require_compute_capability(7, 0); matrix_mul::check_batched_matrix_mul( dtype::Float16{}, dtype::Float16{}, {}, handle_cuda(), "CUBLAS_LT", 2e-2, matrix_mul::get_batched_matmul_args_mask(3)); } TEST_F(CUDA, BATCHED_MATRIX_MUL_CUBLASLT_INT8) { require_compute_capability(7, 5); matrix_mul::check_batched_matrix_mul( dtype::Int8{}, dtype::Int8{}, {}, handle_cuda(), "CUBLAS_LT", 1e-3, matrix_mul::get_batched_matmul_args_cublaslt()); } TEST_F(CUDA, BATCHED_MATRIX_MUL_CUBLASLT_QS8) { require_compute_capability(7, 5); matrix_mul::check_batched_matrix_mul( dtype::QuantizedS8(1.2f), dtype::QuantizedS8(1.3f), {}, handle_cuda(), "CUBLAS_LT", 1e-3, matrix_mul::get_batched_matmul_args_cublaslt()); } TEST_F(CUDA, BATCHED_MATRIX_MUL_QS8) { matrix_mul::check_batched_matrix_mul( dtype::QuantizedS8(1.2f), dtype::QuantizedS8(1.3f), {}, handle_cuda()); } TEST_F(CUDA, BATCHED_MATRIX_MUL_INT8x8x32) { require_compute_capability(6, 1); matrix_mul::check_batched_matrix_mul( dtype::Int8{}, dtype::Int8{}, dtype::Int32{}, handle_cuda(), "INT8x8x32", 1e-2, matrix_mul::get_batched_matmul_args_int8x8x32()); } #if MEGDNN_WITH_BENCHMARK TEST_F(CUDA, BATCHED_MATMUL_8x8x32_BENCHMARK) { require_compute_capability(6, 1); auto run = [&](bool transA, bool transB, size_t m, size_t n, size_t k, const ExecutionPolicyAlgoName& algo1, const ExecutionPolicyAlgoName& algo2, size_t b = 128) { size_t RUNS = 10; CUBenchmarker<BatchedMatrixMul> bencher1(handle_cuda()); bencher1.set_display(false).set_times(RUNS); bencher1.set_before_exec_callback(AlgoChecker<BatchedMatrixMul>(algo1)); CUBenchmarker<BatchedMatrixMul> bencher2(handle_cuda()); bencher2.set_display(false).set_times(RUNS); bencher2.set_before_exec_callback(AlgoChecker<BatchedMatrixMul>(algo2)); using Param = MatrixMul::Param; DType stype = dtype::Int8(), dtype = dtype::Int32(); Param param; UniformIntRNG rng(-128, 127); param.transposeA = transA; param.transposeB = transB; TensorShape A, B; if (param.transposeA) A = TensorShape{b, k, m}; else A = TensorShape{b, m, k}; if (param.transposeB) B = TensorShape{b, n, k}; else B = TensorShape{b, k, n}; auto flo = (double)m * n * k * b * 2; bencher1.set_param(param) .set_dtype(0, stype) .set_dtype(1, stype) .set_dtype(2, dtype) .set_rng(0, &rng) .set_rng(1, &rng); auto time1 = bencher1.execs({A, B, {}}) / RUNS; auto flops1 = flo / time1 / 1e6; bencher2.set_param(param) .set_dtype(0, stype) .set_dtype(1, stype) .set_dtype(2, dtype) .set_rng(0, &rng) .set_rng(1, &rng); auto time2 = bencher2.execs({A, B, {}}) / RUNS; auto flops2 = flo / time2 / 1e6; printf("trA: %d, trB: %d, m: %ld, n: %ld, k: %ld, b: %ld, speedup: %s " "/ " "%s %.3f\n", transA, transB, m, n, k, b, algo1.name.c_str(), algo2.name.c_str(), flops1 / flops2); }; for (bool transA : {0, 1}) for (bool transB : {0, 1}) { run(transA, transB, 128, 576, 128, "INT8x8x32", ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}); run(transA, transB, 256, 144, 256, "INT8x8x32", ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}); run(transA, transB, 512, 36, 512, "INT8x8x32", ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}); run(transA, transB, 1024, 8, 1024, "INT8x8x32", ExecutionPolicyAlgoName{"BRUTE_FORCE", {{"CUBLAS", {}}}}); } } #endif // vim: syntax=cpp.doxygen
[ "megengine@megvii.com" ]
megengine@megvii.com
3cc386a67fa8e089aaae0e4007a3e4bea964a772
529fea537c2820b755e5115ecfafdc11f6fdf06d
/11.cpp
9325ece3cc8820c846b6fa81b76618ce476f62a6
[]
no_license
diegovernan/hackerrank_cpp
8217d80292992bb9d065e1e3862740761ad133c8
44f5f7318a3b4f230f9ab33e2ac02239fd0d8166
refs/heads/master
2022-11-19T07:28:31.611855
2020-07-16T14:11:59
2020-07-16T14:11:59
265,954,898
0
0
null
null
null
null
UTF-8
C++
false
false
526
cpp
#include <sstream> #include <vector> #include <iostream> using namespace std; vector<int> parseInts(string str) { // Complete this function stringstream ss(str); vector<int> ints; char ch; int tmp; while (ss >> tmp) { ints.push_back(tmp); ss >> ch; } return ints; } int main() { string str; cin >> str; vector<int> integers = parseInts(str); for (int i = 0; i < integers.size(); i++) { cout << integers[i] << "\n"; } return 0; }
[ "diegovernan@gmail.com" ]
diegovernan@gmail.com
87fa015d572d5a4367f82be296add899d3f36d69
f9f03edf48617e2dc512a812c030a4f3a07c03d2
/216.cpp
062b7b5ecf50ac9d1c4b7efb7a6597608b58e2ec
[]
no_license
gitchaofang/leetcode
8d2769383e563788486dfa85a21d2df0c1c568d6
86907b9df994280e376e8c9f136fa8c37807ba2a
refs/heads/master
2021-08-08T17:46:50.384188
2020-12-16T06:30:59
2020-12-16T06:30:59
232,033,250
0
0
null
null
null
null
UTF-8
C++
false
false
867
cpp
class Solution { public: std::vector<std::vector<int>> dfs(const int& pos, const int& k, const int& n){ if(k == 1){ if(pos == n) return {{pos}}; return {}; } std::vector<std::vector<int>> res; for(int i = pos + 1; i <= 9; ++i){ if(i + pos > n) break; std::vector<std::vector<int>> v = dfs(i, k - 1, n - pos); for(std::vector<int>& tv: v){ tv.insert(tv.begin(), pos); res.push_back(tv); } } return res; } vector<vector<int>> combinationSum3(int k, int n) { std::vector<std::vector<int>> res; for(int i = 1; i <= 9; ++i){ std::vector<std::vector<int>> v = dfs(i, k, n); if(!v.empty()) res.insert(res.end(),v.begin(),v.end()); } return res; } };
[ "fangchao118@gmail.com" ]
fangchao118@gmail.com
b8659644694bf00c27b8977eea87f587e4d641ab
927d718336c3df467d70d517a94dc8ccafdcd298
/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
0342db4696b122e6b5cf845fd50555350aa15ccc
[ "NCSA" ]
permissive
rofl0r/ellcc
3f54f0e9614d0920d8b648b64048a383c7304b3d
a40bd7b9d4a74992c4ac8273e44ecee44241ebde
refs/heads/master
2021-01-19T08:46:05.647311
2013-09-29T13:12:16
2013-09-29T13:12:16
4,942,860
6
1
null
null
null
null
UTF-8
C++
false
false
15,228
cpp
//===-- SparcInstrInfo.cpp - Sparc Instruction Information ----------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file contains the Sparc implementation of the TargetInstrInfo class. // //===----------------------------------------------------------------------===// #include "SparcInstrInfo.h" #include "Sparc.h" #include "SparcMachineFunctionInfo.h" #include "SparcSubtarget.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineMemOperand.h" #include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/TargetRegistry.h" #define GET_INSTRINFO_CTOR #include "SparcGenInstrInfo.inc" using namespace llvm; SparcInstrInfo::SparcInstrInfo(SparcSubtarget &ST) : SparcGenInstrInfo(SP::ADJCALLSTACKDOWN, SP::ADJCALLSTACKUP), RI(ST), Subtarget(ST) { } /// isLoadFromStackSlot - If the specified machine instruction is a direct /// load from a stack slot, return the virtual or physical register number of /// the destination along with the FrameIndex of the loaded stack slot. If /// not, return 0. This predicate must return 0 if the instruction has /// any side effects other than loading from the stack slot. unsigned SparcInstrInfo::isLoadFromStackSlot(const MachineInstr *MI, int &FrameIndex) const { if (MI->getOpcode() == SP::LDri || MI->getOpcode() == SP::LDXri || MI->getOpcode() == SP::LDFri || MI->getOpcode() == SP::LDDFri || MI->getOpcode() == SP::LDQFri) { if (MI->getOperand(1).isFI() && MI->getOperand(2).isImm() && MI->getOperand(2).getImm() == 0) { FrameIndex = MI->getOperand(1).getIndex(); return MI->getOperand(0).getReg(); } } return 0; } /// isStoreToStackSlot - If the specified machine instruction is a direct /// store to a stack slot, return the virtual or physical register number of /// the source reg along with the FrameIndex of the loaded stack slot. If /// not, return 0. This predicate must return 0 if the instruction has /// any side effects other than storing to the stack slot. unsigned SparcInstrInfo::isStoreToStackSlot(const MachineInstr *MI, int &FrameIndex) const { if (MI->getOpcode() == SP::STri || MI->getOpcode() == SP::STXri || MI->getOpcode() == SP::STFri || MI->getOpcode() == SP::STDFri || MI->getOpcode() == SP::STQFri) { if (MI->getOperand(0).isFI() && MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0) { FrameIndex = MI->getOperand(0).getIndex(); return MI->getOperand(2).getReg(); } } return 0; } static bool IsIntegerCC(unsigned CC) { return (CC <= SPCC::ICC_VC); } static SPCC::CondCodes GetOppositeBranchCondition(SPCC::CondCodes CC) { switch(CC) { case SPCC::ICC_NE: return SPCC::ICC_E; case SPCC::ICC_E: return SPCC::ICC_NE; case SPCC::ICC_G: return SPCC::ICC_LE; case SPCC::ICC_LE: return SPCC::ICC_G; case SPCC::ICC_GE: return SPCC::ICC_L; case SPCC::ICC_L: return SPCC::ICC_GE; case SPCC::ICC_GU: return SPCC::ICC_LEU; case SPCC::ICC_LEU: return SPCC::ICC_GU; case SPCC::ICC_CC: return SPCC::ICC_CS; case SPCC::ICC_CS: return SPCC::ICC_CC; case SPCC::ICC_POS: return SPCC::ICC_NEG; case SPCC::ICC_NEG: return SPCC::ICC_POS; case SPCC::ICC_VC: return SPCC::ICC_VS; case SPCC::ICC_VS: return SPCC::ICC_VC; case SPCC::FCC_U: return SPCC::FCC_O; case SPCC::FCC_O: return SPCC::FCC_U; case SPCC::FCC_G: return SPCC::FCC_LE; case SPCC::FCC_LE: return SPCC::FCC_G; case SPCC::FCC_UG: return SPCC::FCC_ULE; case SPCC::FCC_ULE: return SPCC::FCC_UG; case SPCC::FCC_L: return SPCC::FCC_GE; case SPCC::FCC_GE: return SPCC::FCC_L; case SPCC::FCC_UL: return SPCC::FCC_UGE; case SPCC::FCC_UGE: return SPCC::FCC_UL; case SPCC::FCC_LG: return SPCC::FCC_UE; case SPCC::FCC_UE: return SPCC::FCC_LG; case SPCC::FCC_NE: return SPCC::FCC_E; case SPCC::FCC_E: return SPCC::FCC_NE; } llvm_unreachable("Invalid cond code"); } bool SparcInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl<MachineOperand> &Cond, bool AllowModify) const { MachineBasicBlock::iterator I = MBB.end(); MachineBasicBlock::iterator UnCondBrIter = MBB.end(); while (I != MBB.begin()) { --I; if (I->isDebugValue()) continue; // When we see a non-terminator, we are done. if (!isUnpredicatedTerminator(I)) break; // Terminator is not a branch. if (!I->isBranch()) return true; // Handle Unconditional branches. if (I->getOpcode() == SP::BA) { UnCondBrIter = I; if (!AllowModify) { TBB = I->getOperand(0).getMBB(); continue; } while (llvm::next(I) != MBB.end()) llvm::next(I)->eraseFromParent(); Cond.clear(); FBB = 0; if (MBB.isLayoutSuccessor(I->getOperand(0).getMBB())) { TBB = 0; I->eraseFromParent(); I = MBB.end(); UnCondBrIter = MBB.end(); continue; } TBB = I->getOperand(0).getMBB(); continue; } unsigned Opcode = I->getOpcode(); if (Opcode != SP::BCOND && Opcode != SP::FBCOND) return true; // Unknown Opcode. SPCC::CondCodes BranchCode = (SPCC::CondCodes)I->getOperand(1).getImm(); if (Cond.empty()) { MachineBasicBlock *TargetBB = I->getOperand(0).getMBB(); if (AllowModify && UnCondBrIter != MBB.end() && MBB.isLayoutSuccessor(TargetBB)) { // Transform the code // // brCC L1 // ba L2 // L1: // .. // L2: // // into // // brnCC L2 // L1: // ... // L2: // BranchCode = GetOppositeBranchCondition(BranchCode); MachineBasicBlock::iterator OldInst = I; BuildMI(MBB, UnCondBrIter, MBB.findDebugLoc(I), get(Opcode)) .addMBB(UnCondBrIter->getOperand(0).getMBB()).addImm(BranchCode); BuildMI(MBB, UnCondBrIter, MBB.findDebugLoc(I), get(SP::BA)) .addMBB(TargetBB); OldInst->eraseFromParent(); UnCondBrIter->eraseFromParent(); UnCondBrIter = MBB.end(); I = MBB.end(); continue; } FBB = TBB; TBB = I->getOperand(0).getMBB(); Cond.push_back(MachineOperand::CreateImm(BranchCode)); continue; } // FIXME: Handle subsequent conditional branches. // For now, we can't handle multiple conditional branches. return true; } return false; } unsigned SparcInstrInfo::InsertBranch(MachineBasicBlock &MBB,MachineBasicBlock *TBB, MachineBasicBlock *FBB, const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const { assert(TBB && "InsertBranch must not be told to insert a fallthrough"); assert((Cond.size() == 1 || Cond.size() == 0) && "Sparc branch conditions should have one component!"); if (Cond.empty()) { assert(!FBB && "Unconditional branch with multiple successors!"); BuildMI(&MBB, DL, get(SP::BA)).addMBB(TBB); return 1; } // Conditional branch unsigned CC = Cond[0].getImm(); if (IsIntegerCC(CC)) BuildMI(&MBB, DL, get(SP::BCOND)).addMBB(TBB).addImm(CC); else BuildMI(&MBB, DL, get(SP::FBCOND)).addMBB(TBB).addImm(CC); if (!FBB) return 1; BuildMI(&MBB, DL, get(SP::BA)).addMBB(FBB); return 2; } unsigned SparcInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const { MachineBasicBlock::iterator I = MBB.end(); unsigned Count = 0; while (I != MBB.begin()) { --I; if (I->isDebugValue()) continue; if (I->getOpcode() != SP::BA && I->getOpcode() != SP::BCOND && I->getOpcode() != SP::FBCOND) break; // Not a branch I->eraseFromParent(); I = MBB.end(); ++Count; } return Count; } void SparcInstrInfo::copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, DebugLoc DL, unsigned DestReg, unsigned SrcReg, bool KillSrc) const { unsigned numSubRegs = 0; unsigned movOpc = 0; const unsigned *subRegIdx = 0; const unsigned DFP_FP_SubRegsIdx[] = { SP::sub_even, SP::sub_odd }; const unsigned QFP_DFP_SubRegsIdx[] = { SP::sub_even64, SP::sub_odd64 }; const unsigned QFP_FP_SubRegsIdx[] = { SP::sub_even, SP::sub_odd, SP::sub_odd64_then_sub_even, SP::sub_odd64_then_sub_odd }; if (SP::IntRegsRegClass.contains(DestReg, SrcReg)) BuildMI(MBB, I, DL, get(SP::ORrr), DestReg).addReg(SP::G0) .addReg(SrcReg, getKillRegState(KillSrc)); else if (SP::FPRegsRegClass.contains(DestReg, SrcReg)) BuildMI(MBB, I, DL, get(SP::FMOVS), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); else if (SP::DFPRegsRegClass.contains(DestReg, SrcReg)) { if (Subtarget.isV9()) { BuildMI(MBB, I, DL, get(SP::FMOVD), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); } else { // Use two FMOVS instructions. subRegIdx = DFP_FP_SubRegsIdx; numSubRegs = 2; movOpc = SP::FMOVS; } } else if (SP::QFPRegsRegClass.contains(DestReg, SrcReg)) { if (Subtarget.isV9()) { if (Subtarget.hasHardQuad()) { BuildMI(MBB, I, DL, get(SP::FMOVQ), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); } else { // Use two FMOVD instructions. subRegIdx = QFP_DFP_SubRegsIdx; numSubRegs = 2; movOpc = SP::FMOVD; } } else { // Use four FMOVS instructions. subRegIdx = QFP_FP_SubRegsIdx; numSubRegs = 4; movOpc = SP::FMOVS; } } else llvm_unreachable("Impossible reg-to-reg copy"); if (numSubRegs == 0 || subRegIdx == 0 || movOpc == 0) return; const TargetRegisterInfo *TRI = &getRegisterInfo(); MachineInstr *MovMI = 0; for (unsigned i = 0; i != numSubRegs; ++i) { unsigned Dst = TRI->getSubReg(DestReg, subRegIdx[i]); unsigned Src = TRI->getSubReg(SrcReg, subRegIdx[i]); assert(Dst && Src && "Bad sub-register"); MovMI = BuildMI(MBB, I, DL, get(movOpc), Dst).addReg(Src); } // Add implicit super-register defs and kills to the last MovMI. MovMI->addRegisterDefined(DestReg, TRI); if (KillSrc) MovMI->addRegisterKilled(SrcReg, TRI); } void SparcInstrInfo:: storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, unsigned SrcReg, bool isKill, int FI, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI) const { DebugLoc DL; if (I != MBB.end()) DL = I->getDebugLoc(); MachineFunction *MF = MBB.getParent(); const MachineFrameInfo &MFI = *MF->getFrameInfo(); MachineMemOperand *MMO = MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI), MachineMemOperand::MOStore, MFI.getObjectSize(FI), MFI.getObjectAlignment(FI)); // On the order of operands here: think "[FrameIdx + 0] = SrcReg". if (RC == &SP::I64RegsRegClass) BuildMI(MBB, I, DL, get(SP::STXri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (RC == &SP::IntRegsRegClass) BuildMI(MBB, I, DL, get(SP::STri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (RC == &SP::FPRegsRegClass) BuildMI(MBB, I, DL, get(SP::STFri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (SP::DFPRegsRegClass.hasSubClassEq(RC)) BuildMI(MBB, I, DL, get(SP::STDFri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else if (SP::QFPRegsRegClass.hasSubClassEq(RC)) // Use STQFri irrespective of its legality. If STQ is not legal, it will be // lowered into two STDs in eliminateFrameIndex. BuildMI(MBB, I, DL, get(SP::STQFri)).addFrameIndex(FI).addImm(0) .addReg(SrcReg, getKillRegState(isKill)).addMemOperand(MMO); else llvm_unreachable("Can't store this register to stack slot"); } void SparcInstrInfo:: loadRegFromStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, unsigned DestReg, int FI, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI) const { DebugLoc DL; if (I != MBB.end()) DL = I->getDebugLoc(); MachineFunction *MF = MBB.getParent(); const MachineFrameInfo &MFI = *MF->getFrameInfo(); MachineMemOperand *MMO = MF->getMachineMemOperand(MachinePointerInfo::getFixedStack(FI), MachineMemOperand::MOLoad, MFI.getObjectSize(FI), MFI.getObjectAlignment(FI)); if (RC == &SP::I64RegsRegClass) BuildMI(MBB, I, DL, get(SP::LDXri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (RC == &SP::IntRegsRegClass) BuildMI(MBB, I, DL, get(SP::LDri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (RC == &SP::FPRegsRegClass) BuildMI(MBB, I, DL, get(SP::LDFri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (SP::DFPRegsRegClass.hasSubClassEq(RC)) BuildMI(MBB, I, DL, get(SP::LDDFri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else if (SP::QFPRegsRegClass.hasSubClassEq(RC)) // Use LDQFri irrespective of its legality. If LDQ is not legal, it will be // lowered into two LDDs in eliminateFrameIndex. BuildMI(MBB, I, DL, get(SP::LDQFri), DestReg).addFrameIndex(FI).addImm(0) .addMemOperand(MMO); else llvm_unreachable("Can't load this register from stack slot"); } unsigned SparcInstrInfo::getGlobalBaseReg(MachineFunction *MF) const { SparcMachineFunctionInfo *SparcFI = MF->getInfo<SparcMachineFunctionInfo>(); unsigned GlobalBaseReg = SparcFI->getGlobalBaseReg(); if (GlobalBaseReg != 0) return GlobalBaseReg; // Insert the set of GlobalBaseReg into the first MBB of the function MachineBasicBlock &FirstMBB = MF->front(); MachineBasicBlock::iterator MBBI = FirstMBB.begin(); MachineRegisterInfo &RegInfo = MF->getRegInfo(); GlobalBaseReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass); DebugLoc dl; BuildMI(FirstMBB, MBBI, dl, get(SP::GETPCX), GlobalBaseReg); SparcFI->setGlobalBaseReg(GlobalBaseReg); return GlobalBaseReg; }
[ "rich@ellcc.org" ]
rich@ellcc.org