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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b7d92aa0139afd589edd6efbbded0a187cf79bab | dc9664e74cabbab6e524cfaa4a7780814b586f39 | /source/src/B3D_cudaCompress/CPU/RBUCCPU.cpp | dcdf6c1b9afb45a18717befbf86ebd6b35ac2d7c | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | adamkglaser/B3D | b57aeaa0ea3f464ccbf233ebd2038e19969dfb80 | 4bca9ac8010bb8181453c2b34839c09152897218 | refs/heads/main | 2023-01-31T00:22:54.080986 | 2020-12-16T07:42:03 | 2020-12-16T07:42:03 | 321,905,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,761 | cpp | #include "RBUCCPU.h"
#include <algorithm>
#include <cassert>
#include <cudaCompress/util.h>
namespace cudaCompress {
void rbucEncodeCPUBuildLengthsOneLevel(std::vector<Symbol16>& lengths, const std::vector<Symbol16>& symbols, uint branchFactor)
{
uint symbolCount = (uint)symbols.size();
uint lengthCount = (symbolCount + branchFactor - 1) / branchFactor;
lengths.resize(lengthCount);
for(uint i = 0; i < lengthCount; i++) {
Symbol16 symbolMax = symbols[i * branchFactor];
for(uint j = i * branchFactor + 1; j < std::min((i+1) * branchFactor, symbolCount); j++) {
symbolMax = std::max(symbolMax, symbols[j]);
}
uint bits = getRequiredBits(symbolMax);
lengths[i] = Symbol16(bits);
}
}
void rbucEncodeCPUOneLevel(BitStream& bitStream, std::vector<Symbol16>& lengths, const std::vector<Symbol16>& symbols, uint branchFactor)
{
rbucEncodeCPUBuildLengthsOneLevel(lengths, symbols, branchFactor);
uint symbolCount = (uint)symbols.size();
for(uint i = 0; i < symbolCount; i++) {
uint length = lengths[i / branchFactor];
bitStream.writeBits(symbols[i], length);
}
}
void rbucDecodeCPUOneLevel(BitStream& bitStream, const std::vector<Symbol16>& lengths, std::vector<Symbol16>& symbols, uint symbolCount, uint branchFactor)
{
for(uint i = 0; i < symbolCount; i++) {
uint length = lengths[i / branchFactor];
uint symbol = 0;
bitStream.readBits(symbol, length);
symbols.push_back(symbol);
}
}
void rbucEncodeCPUWriteTree(BitStream& bitStream, std::vector<uint>& offsets, const std::vector<std::vector<Symbol16>>& tree, const std::vector<uint>& branchFactors, uint level, uint index)
{
if(level+2 == tree.size()) {
offsets.push_back(bitStream.getBitPosition());
}
uint bits = (level+1 >= tree.size() ? 8 : tree[level+1][index / branchFactors[level]]);
bitStream.writeBits(tree[level][index], bits);
if(level > 0) {
uint branchFactor = branchFactors[level - 1];
uint childrenCount = std::min(branchFactor, (uint)tree[level - 1].size() - index * branchFactor);
for(uint i = 0; i < childrenCount; i++) {
rbucEncodeCPUWriteTree(bitStream, offsets, tree, branchFactors, level - 1, index * branchFactor + i);
}
}
}
void rbucDecodeCPUReadTree(BitStreamReadOnly& bitStream, std::vector<std::vector<Symbol16>>& tree, const std::vector<uint>& treeSizes, const std::vector<uint>& branchFactors, uint level, uint index)
{
uint bits = (level+1 >= tree.size() ? 8 : tree[level+1][index / branchFactors[level]]);
uint value = 0;
bitStream.readBits(value, bits);
assert(level == 0 || value <= 32); // lengths must be <= 32
tree[level].push_back(Symbol16(value));
if(level > 0) {
uint branchFactor = branchFactors[level - 1];
uint childrenCount = std::min(branchFactor, treeSizes[level - 1] - index * branchFactor);
for(uint i = 0; i < childrenCount; i++) {
rbucDecodeCPUReadTree(bitStream, tree, treeSizes, branchFactors, level - 1, index * branchFactor + i);
}
}
}
bool rbucEncodeCPU(BitStream& bitStream, std::vector<uint>& offsets, const std::vector<Symbol16>& symbols, const std::vector<uint>& branchFactors)
{
if(symbols.empty())
return true;
uint levelCount = (uint)branchFactors.size();
std::vector<std::vector<Symbol16>> tree;
tree.resize(levelCount + 2);
tree.front() = symbols;
std::vector<uint> treeBranchFactors = branchFactors;
for(uint level = 0; level <= levelCount; level++) {
if(level >= levelCount) treeBranchFactors.push_back((uint)tree[level].size());
uint branchFactor = treeBranchFactors[level];
rbucEncodeCPUBuildLengthsOneLevel(tree[level + 1], tree[level], branchFactor);
}
treeBranchFactors.push_back(1);
rbucEncodeCPUWriteTree(bitStream, offsets, tree, treeBranchFactors, levelCount + 1, 0);
//std::vector<std::vector<Symbol16>> lengths;
//lengths.resize(levelCount + 1);
//BitStream* pBitStreams = new BitStream[levelCount + 1];
//const std::vector<Symbol16>* pIn = &symbols;
//std::vector<Symbol16>* pOut = nullptr;
//for(uint level = 0; level <= levelCount; level++) {
// pOut = &lengths[level];
// uint branchFactor = (level < levelCount) ? branchFactors[level] : (uint)pIn->size();
// rbucEncodeCPUOneLevel(pBitStreams[level], *pOut, *pIn, branchFactor);
// pIn = pOut;
//}
//assert(lengths.back()[0] <= 255);
//byte lengthTopLevel = (byte)lengths.back()[0];
//bitStream.writeAligned(&lengthTopLevel, 1);
//for(uint i = levelCount + 1; i > 0; i--) {
// uint level = i - 1;
// uint bytes = pBitStreams[level].getBitSize() / 8;
// bitStream.writeAligned(pBitStreams[level].getRaw(), pBitStreams[level].getRawSizeUInts());
//}
//delete[] pBitStreams;
return true;
}
bool rbucDecodeCPU(BitStreamReadOnly& bitStream, uint symbolCount, std::vector<Symbol16>& symbols, const std::vector<uint>& branchFactors)
{
if(symbolCount == 0)
return true;
uint levelCount = (uint)branchFactors.size();
std::vector<std::vector<Symbol16>> tree;
tree.resize(levelCount + 2);
std::vector<uint> treeSizes;
treeSizes.resize(levelCount + 1);
treeSizes.front() = symbolCount;
for(uint i = 1; i <= levelCount; i++) {
uint branchFactor = branchFactors[i - 1];
treeSizes[i] = (treeSizes[i - 1] + branchFactor - 1) / branchFactor;
}
std::vector<uint> treeBranchFactors = branchFactors;
treeBranchFactors.push_back(treeSizes[levelCount]);
rbucDecodeCPUReadTree(bitStream, tree, treeSizes, treeBranchFactors, levelCount + 1, 0);
symbols = tree.front();
//std::vector<std::vector<Symbol16>> lengths;
//lengths.resize(levelCount + 1);
//byte lengthTopLevel;
//bitStream.readAligned(&lengthTopLevel, 1);
//lengths.back().push_back(lengthTopLevel);
//std::vector<uint> symbolCounts;
//symbolCounts.resize(levelCount + 1);
//symbolCounts[0] = symbolCount;
//for(uint level = 0; level < levelCount; level++) {
// symbolCounts[level + 1] = (symbolCounts[level] + branchFactors[level] - 1) / branchFactors[level];
//}
//for(uint i = levelCount + 1; i > 0; i--) {
// uint level = i - 1;
// std::vector<Symbol16>& symbolsOut = level >= 1 ? lengths[level-1] : symbols;
// uint branchFactor = (level < levelCount) ? branchFactors[level] : symbolCounts.back();
// bitStream.align<uint>();
// rbucDecodeCPUOneLevel(bitStream, lengths[level], symbolsOut, symbolCounts[level], branchFactor);
//}
return true;
}
}
| [
"adamkglaser@gmail.com"
] | adamkglaser@gmail.com |
cad011224b637ad0563b8d5ef1015e0e4d269206 | 855779cbfd505fe0288d124cf0ee0b4a4103204c | /src/net.h | 66bbf36c82bbcb5fa4b985cd20387422cd3b3f05 | [
"MIT"
] | permissive | viteseco/Vites | 22a631335862d62e2344c4d436d12f5892d669c7 | d82ea767f39fa7dbbc21f5648a6fa5df2a67bba7 | refs/heads/master | 2020-05-02T18:50:25.834286 | 2018-12-28T13:26:46 | 2018-12-28T13:26:46 | 178,141,425 | 0 | 2 | MIT | 2019-11-01T23:46:25 | 2019-03-28T06:35:26 | C++ | UTF-8 | C++ | false | false | 18,449 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef VITESCOIN_NET_H
#define VITESCOIN_NET_H
#include <deque>
#include <boost/array.hpp>
#include <boost/foreach.hpp>
#include <openssl/rand.h>
#ifndef WIN32
#include <arpa/inet.h>
#endif
#include "mruset.h"
#include "netbase.h"
#include "protocol.h"
#include "addrman.h"
class CRequestTracker;
class CNode;
class CBlockIndex;
extern int nBestHeight;
inline unsigned int ReceiveBufferSize() { return 1000*GetArg("-maxreceivebuffer", 5*1000); }
inline unsigned int SendBufferSize() { return 1000*GetArg("-maxsendbuffer", 1*1000); }
void AddOneShot(std::string strDest);
bool RecvLine(SOCKET hSocket, std::string& strLine);
bool GetMyExternalIP(CNetAddr& ipRet);
void AddressCurrentlyConnected(const CService& addr);
CNode* FindNode(const CNetAddr& ip);
CNode* FindNode(const CService& ip);
CNode* ConnectNode(CAddress addrConnect, const char *strDest = NULL);
void MapPort();
unsigned short GetListenPort();
bool BindListenPort(const CService &bindAddr, std::string& strError=REF(std::string()));
void StartNode(void* parg);
bool StopNode();
typedef int NodeId;
enum
{
LOCAL_NONE, // unknown
LOCAL_IF, // address a local interface listens on
LOCAL_BIND, // address explicit bound to
LOCAL_UPNP, // address reported by UPnP
LOCAL_IRC, // address reported by IRC (deprecated)
LOCAL_HTTP, // address reported by whatismyip.com and similar
LOCAL_MANUAL, // address explicitly specified (-externalip=)
LOCAL_MAX
};
void SetLimited(enum Network net, bool fLimited = true);
bool IsLimited(enum Network net);
bool IsLimited(const CNetAddr& addr);
bool AddLocal(const CService& addr, int nScore = LOCAL_NONE);
bool AddLocal(const CNetAddr& addr, int nScore = LOCAL_NONE);
bool SeenLocal(const CService& addr);
bool IsLocal(const CService& addr);
bool GetLocal(CService &addr, const CNetAddr *paddrPeer = NULL);
bool IsReachable(const CNetAddr &addr);
void SetReachable(enum Network net, bool fFlag = true);
CAddress GetLocalAddress(const CNetAddr *paddrPeer = NULL);
enum
{
MSG_TX = 1,
MSG_BLOCK,
};
class CRequestTracker
{
public:
void (*fn)(void*, CDataStream&);
void* param1;
explicit CRequestTracker(void (*fnIn)(void*, CDataStream&)=NULL, void* param1In=NULL)
{
fn = fnIn;
param1 = param1In;
}
bool IsNull()
{
return fn == NULL;
}
};
/** Thread types */
enum threadId
{
THREAD_SOCKETHANDLER,
THREAD_OPENCONNECTIONS,
THREAD_MESSAGEHANDLER,
THREAD_RPCLISTENER,
THREAD_UPNP,
THREAD_DNSSEED,
THREAD_ADDEDCONNECTIONS,
THREAD_DUMPADDRESS,
THREAD_RPCHANDLER,
THREAD_STAKE_MINER,
THREAD_MAX
};
extern bool fClient;
extern bool fDiscover;
extern bool fUseUPnP;
extern uint64_t nLocalServices;
extern uint64_t nLocalHostNonce;
extern CAddress addrSeenByPeer;
extern boost::array<int, THREAD_MAX> vnThreadsRunning;
extern CAddrMan addrman;
extern std::vector<CNode*> vNodes;
extern CCriticalSection cs_vNodes;
extern std::map<CInv, CDataStream> mapRelay;
extern std::deque<std::pair<int64_t, CInv> > vRelayExpiration;
extern CCriticalSection cs_mapRelay;
extern std::map<CInv, int64_t> mapAlreadyAskedFor;
extern NodeId nLastNodeId;
extern CCriticalSection cs_nLastNodeId;
class CNodeStats
{
public:
NodeId nodeid;
uint64_t nServices;
int64_t nLastSend;
int64_t nLastRecv;
int64_t nTimeConnected;
int64_t nTimeOffset;
std::string addrName;
int nVersion;
std::string strSubVer;
bool fInbound;
int nStartingHeight;
int nMisbehavior;
uint64_t nSendBytes;
uint64_t nRecvBytes;
double dPingTime;
double dPingWait;
std::string addrLocal;
};
/** Information about a peer */
class CNode
{
public:
// socket
uint64_t nServices;
SOCKET hSocket;
CDataStream vSend;
CDataStream vRecv;
CCriticalSection cs_vSend;
CCriticalSection cs_vRecv;
uint64_t nSendBytes;
uint64_t nRecvBytes;
int64_t nLastSend;
int64_t nLastRecv;
int64_t nLastSendEmpty;
int64_t nTimeConnected;
int64_t nTimeOffset;
int nHeaderStart;
unsigned int nMessageStart;
CAddress addr;
std::string addrName;
CService addrLocal;
int nVersion;
std::string strSubVer;
bool fOneShot;
bool fClient;
bool fInbound;
bool fNetworkNode;
bool fSuccessfullyConnected;
bool fDisconnect;
CSemaphoreGrant grantOutbound;
int nRefCount;
NodeId id;
protected:
// Denial-of-service detection/prevention
// Key is IP address, value is banned-until-time
static std::map<CNetAddr, int64_t> setBanned;
static CCriticalSection cs_setBanned;
int nMisbehavior;
public:
std::map<uint256, CRequestTracker> mapRequests;
CCriticalSection cs_mapRequests;
uint256 hashContinue;
CBlockIndex* pindexLastGetBlocksBegin;
uint256 hashLastGetBlocksEnd;
int nStartingHeight;
// flood relay
std::vector<CAddress> vAddrToSend;
std::set<CAddress> setAddrKnown;
bool fGetAddr;
std::set<uint256> setKnown;
uint256 hashCheckpointKnown; // vitescoin: known sent sync-checkpoint
// inventory based relay
mruset<CInv> setInventoryKnown;
std::vector<CInv> vInventoryToSend;
CCriticalSection cs_inventory;
std::multimap<int64_t, CInv> mapAskFor;
CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn = "", bool fInboundIn=false) : vSend(SER_NETWORK, MIN_PROTO_VERSION), vRecv(SER_NETWORK, MIN_PROTO_VERSION)
{
nServices = 0;
hSocket = hSocketIn;
nLastSend = 0;
nLastRecv = 0;
nSendBytes = 0;
nRecvBytes = 0;
nLastSendEmpty = GetTime();
nTimeConnected = GetTime();
nTimeOffset = 0;
nHeaderStart = -1;
nMessageStart = -1;
addr = addrIn;
addrName = addrNameIn == "" ? addr.ToStringIPPort() : addrNameIn;
nVersion = 0;
strSubVer = "";
fOneShot = false;
fClient = false; // set by version message
fInbound = fInboundIn;
fNetworkNode = false;
fSuccessfullyConnected = false;
fDisconnect = false;
nRefCount = 0;
hashContinue = 0;
pindexLastGetBlocksBegin = 0;
hashLastGetBlocksEnd = 0;
nStartingHeight = -1;
fGetAddr = false;
nMisbehavior = 0;
hashCheckpointKnown = 0;
setInventoryKnown.max_size(SendBufferSize() / 1000);
{
LOCK(cs_nLastNodeId);
id = nLastNodeId++;
}
// Be shy and don't send version until we hear
if (hSocket != INVALID_SOCKET && !fInbound)
PushVersion();
}
~CNode()
{
if (hSocket != INVALID_SOCKET)
{
closesocket(hSocket);
hSocket = INVALID_SOCKET;
}
}
private:
// Network usage totals
static CCriticalSection cs_totalBytesRecv;
static CCriticalSection cs_totalBytesSent;
static uint64_t nTotalBytesRecv;
static uint64_t nTotalBytesSent;
CNode(const CNode&);
void operator=(const CNode&);
public:
NodeId GetId() const {
return id;
}
int GetRefCount()
{
assert(nRefCount >= 0);
return nRefCount;
}
CNode* AddRef()
{
nRefCount++;
return this;
}
void Release()
{
nRefCount--;
}
void AddAddressKnown(const CAddress& addr)
{
setAddrKnown.insert(addr);
}
void PushAddress(const CAddress& addr)
{
// Known checking here is only to save space from duplicates.
// SendMessages will filter it again for knowns that were added
// after addresses were pushed.
if (addr.IsValid() && !setAddrKnown.count(addr))
vAddrToSend.push_back(addr);
}
void AddInventoryKnown(const CInv& inv)
{
{
LOCK(cs_inventory);
setInventoryKnown.insert(inv);
}
}
void PushInventory(const CInv& inv)
{
{
LOCK(cs_inventory);
if (!setInventoryKnown.count(inv))
vInventoryToSend.push_back(inv);
}
}
void AskFor(const CInv& inv)
{
// We're using mapAskFor as a priority queue,
// the key is the earliest time the request can be sent
int64_t& nRequestTime = mapAlreadyAskedFor[inv];
if (fDebugNet)
printf("askfor %s %" PRId64" (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str());
// Make sure not to reuse time indexes to keep things in the same order
int64_t nNow = (GetTime() - 1) * 1000000;
static int64_t nLastTime;
++nLastTime;
nNow = std::max(nNow, nLastTime);
nLastTime = nNow;
// Each retry is 2 minutes after the last
nRequestTime = std::max(nRequestTime + 2 * 60 * 1000000, nNow);
mapAskFor.insert(std::make_pair(nRequestTime, inv));
}
void BeginMessage(const char* pszCommand)
{
ENTER_CRITICAL_SECTION(cs_vSend);
if (nHeaderStart != -1)
AbortMessage();
nHeaderStart = vSend.size();
vSend << CMessageHeader(pszCommand, 0);
nMessageStart = vSend.size();
if (fDebug)
printf("sending: %s ", pszCommand);
}
void AbortMessage()
{
if (nHeaderStart < 0)
return;
vSend.resize(nHeaderStart);
nHeaderStart = -1;
nMessageStart = -1;
LEAVE_CRITICAL_SECTION(cs_vSend);
if (fDebug)
printf("(aborted)\n");
}
void EndMessage()
{
if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
{
printf("dropmessages DROPPING SEND MESSAGE\n");
AbortMessage();
return;
}
if (nHeaderStart < 0)
return;
// Set the size
unsigned int nSize = vSend.size() - nMessageStart;
memcpy((char*)&vSend[nHeaderStart] + CMessageHeader::MESSAGE_SIZE_OFFSET, &nSize, sizeof(nSize));
// Set the checksum
uint256 hash = Hash(vSend.begin() + nMessageStart, vSend.end());
unsigned int nChecksum = 0;
memcpy(&nChecksum, &hash, sizeof(nChecksum));
assert(nMessageStart - nHeaderStart >= CMessageHeader::CHECKSUM_OFFSET + sizeof(nChecksum));
memcpy((char*)&vSend[nHeaderStart] + CMessageHeader::CHECKSUM_OFFSET, &nChecksum, sizeof(nChecksum));
if (fDebug) {
printf("(%d bytes)\n", nSize);
}
nHeaderStart = -1;
nMessageStart = -1;
LEAVE_CRITICAL_SECTION(cs_vSend);
}
void EndMessageAbortIfEmpty()
{
if (nHeaderStart < 0)
return;
int nSize = vSend.size() - nMessageStart;
if (nSize > 0)
EndMessage();
else
AbortMessage();
}
void PushVersion();
void PushMessage(const char* pszCommand)
{
try
{
BeginMessage(pszCommand);
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1>
void PushMessage(const char* pszCommand, const T1& a1)
{
try
{
BeginMessage(pszCommand);
vSend << a1;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3, typename T4>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3 << a4;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3, typename T4, typename T5>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3 << a4 << a5;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3 << a4 << a5 << a6;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9)
{
try
{
BeginMessage(pszCommand);
vSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9;
EndMessage();
}
catch (...)
{
AbortMessage();
throw;
}
}
void PushRequest(const char* pszCommand,
void (*fn)(void*, CDataStream&), void* param1)
{
uint256 hashReply;
RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
{
LOCK(cs_mapRequests);
mapRequests[hashReply] = CRequestTracker(fn, param1);
}
PushMessage(pszCommand, hashReply);
}
template<typename T1>
void PushRequest(const char* pszCommand, const T1& a1,
void (*fn)(void*, CDataStream&), void* param1)
{
uint256 hashReply;
RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
{
LOCK(cs_mapRequests);
mapRequests[hashReply] = CRequestTracker(fn, param1);
}
PushMessage(pszCommand, hashReply, a1);
}
template<typename T1, typename T2>
void PushRequest(const char* pszCommand, const T1& a1, const T2& a2,
void (*fn)(void*, CDataStream&), void* param1)
{
uint256 hashReply;
RAND_bytes((unsigned char*)&hashReply, sizeof(hashReply));
{
LOCK(cs_mapRequests);
mapRequests[hashReply] = CRequestTracker(fn, param1);
}
PushMessage(pszCommand, hashReply, a1, a2);
}
void PushGetBlocks(CBlockIndex* pindexBegin, uint256 hashEnd);
bool IsSubscribed(unsigned int nChannel);
void Subscribe(unsigned int nChannel, unsigned int nHops=0);
void CancelSubscribe(unsigned int nChannel);
void CloseSocketDisconnect();
void Cleanup();
// Denial-of-service detection/prevention
// The idea is to detect peers that are behaving
// badly and disconnect/ban them, but do it in a
// one-coding-mistake-won't-shatter-the-entire-network
// way.
// IMPORTANT: There should be nothing I can give a
// node that it will forward on that will make that
// node's peers drop it. If there is, an attacker
// can isolate a node and/or try to split the network.
// Dropping a node for sending stuff that is invalid
// now but might be valid in a later version is also
// dangerous, because it can cause a network split
// between nodes running old code and nodes running
// new code.
static void ClearBanned(); // needed for unit testing
static bool IsBanned(CNetAddr ip);
bool Misbehaving(int howmuch); // 1 == a little, 100 == a lot
void copyStats(CNodeStats &stats);
// Network stats
static void RecordBytesRecv(uint64_t bytes);
static void RecordBytesSent(uint64_t bytes);
static uint64_t GetTotalBytesRecv();
static uint64_t GetTotalBytesSent();
};
inline void RelayInventory(const CInv& inv)
{
// Put on lists to offer to the other nodes
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes)
pnode->PushInventory(inv);
}
}
class CTransaction;
void RelayTransaction(const CTransaction& tx, const uint256& hash);
void RelayTransaction(const CTransaction& tx, const uint256& hash, const CDataStream& ss);
#endif
| [
"viteseco@gmail.com"
] | viteseco@gmail.com |
304d33807e8088525d25c16bd4769a44094f1670 | f98beedadd280842e62ce3099b72b900396ad2cb | /hh/hh/hh.cpp | 9dd1ff39825746777c7e88fcafee863e2627044c | [] | no_license | RbnAlexs/Programacion_VisualBasic | 93d68f2f149947ec747cee9aff1ec39af4f71f70 | 0547a1f11ba28e03d3f2c0d4c27e004e88b6bf47 | refs/heads/master | 2021-01-11T10:05:19.624528 | 2017-01-05T16:26:46 | 2017-01-05T16:26:46 | 77,478,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | cpp | #include "hh.h"
#include "hhFrame.h"
IMPLEMENT_APP( MyApp );
bool MyApp::OnInit()
{
hhFrame* frame = new hhFrame();
frame->SetIcon( wxICON( amain ) );
frame->Show();
return true;
}
| [
"rsanchezcolin@icloud.com"
] | rsanchezcolin@icloud.com |
bb6091230dfed1c9438b786078d933363d587109 | d15d4c2932159033e7563fe0889a2874b4822ce2 | /Other OJs/Libre OJ/119.cpp | c881d2e6a89a11b6554e0ae25bf803b6c896baf8 | [
"MIT"
] | permissive | lxdlam/CP-Answers | fd0ee514d87856423cb31d28298c75647f163067 | cde519ef9732ff9e4e9e3f53c00fb30d07bdb306 | refs/heads/master | 2021-03-17T04:50:44.772167 | 2020-05-04T09:24:32 | 2020-05-04T09:24:32 | 86,518,969 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,210 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/priority_queue.hpp>
using namespace std;
#define TemplateVersion "3.2.0"
// Useful Marcos
//====================START=====================
// Compile use C++11 and above
#ifdef LOCAL
#define debug(args...) \
{ \
string _s = #args; \
replace(_s.begin(), _s.end(), ',', ' '); \
stringstream _ss(_s); \
istream_iterator<string> _it(_ss); \
err(_it, args); \
}
void err(istream_iterator<string> it) {}
template <typename T, typename... Args>
void err(istream_iterator<string> it, T a, Args... args) {
cerr << *it << " = " << a << endl;
err(++it, args...);
}
#define MSG cout << "Finished" << endl
#else
#define debug(args...)
#define MSG
#endif
#if __cplusplus >= 201703L
template <typename... Args>
void readln(Args&... args) {
((cin >> args), ...);
}
template <typename... Args>
void writeln(Args... args) {
((cout << args << " "), ...);
cout << endl;
}
#elif __cplusplus >= 201103L
void readln() {}
template <typename T, typename... Args>
void readln(T& a, Args&... args) {
cin >> a;
readln(args...);
}
void writeln() { cout << endl; }
template <typename T, typename... Args>
void writeln(T a, Args... args) {
cout << a << " ";
writeln(args...);
}
#endif
#if __cplusplus >= 201103L
#define FOR(_i, _begin, _end) for (auto _i = _begin; _i < _end; _i++)
#define FORR(_i, _begin, _end) for (auto _i = _begin; _i > _end; _i--)
#else
#define FOR(_i, _begin, _end) for (int _i = (int)_begin; _i < (int)_end; _i++)
#define FORR(_i, _begin, _end) for (int _i = (int)_begin; _i > (int)_end; _i--)
#define nullptr NULL
#endif
#if __cplusplus >= 201103L
#define VIS(_kind, _name, _size) \
vector<_kind> _name(_size); \
for (auto& i : _name) cin >> i;
#else
#define VIS(_kind, _name, _size) \
vector<_kind> _name; \
_name.resize(_size); \
for (int i = 0; i < _size; i++) cin >> _name[i];
#endif
// alias
#define mp make_pair
#define pb push_back
#define eb emplace_back
// Swap max/min
template <typename T>
bool smax(T& a, const T& b) {
if (a > b) return false;
a = b;
return true;
}
template <typename T>
bool smin(T& a, const T& b) {
if (a < b) return false;
a = b;
return true;
}
// ceil divide
template <typename T>
T cd(T a, T b) {
return (a + b - 1) / b;
}
// min exchange
template <typename T>
bool se(T& a, T& b) {
if (a < b) return false;
swap(a, b);
return true;
}
// A better MAX choice
const int INF = 0x3f3f3f3f;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef set<int> si;
typedef vector<string> cb;
//====================END=====================
// Constants here
const int SIZE = 6210;
struct Edge {
int next, to, w;
Edge() : next(0), to(0), w(0) {}
};
Edge E[SIZE << 1];
int last[SIZE];
int cnt = 0;
void add_edge(int u, int v, int w) {
E[++cnt].next = last[u];
E[cnt].to = v;
E[cnt].w = w;
last[u] = cnt;
}
ll dis[SIZE];
using pqii = __gnu_pbds::priority_queue<pii, greater<pii>, __gnu_pbds::pairing_heap_tag>;
void dijkstra(int n, int s) {
pqii pq;
memset(dis, 0x3f, sizeof(dis));
dis[s] = 0;
pq.push(make_pair(0, s));
while (pq.size()) {
auto p = pq.top();
pq.pop();
int x = p.second;
if (dis[x] < p.first) continue;
for (int i = last[x]; i; i = E[i].next) {
if (dis[E[i].to] > dis[x] + E[i].w) {
dis[E[i].to] = dis[x] + E[i].w;
pq.push(make_pair(dis[E[i].to], E[i].to));
}
}
}
}
// Pre-Build Function
inline void build() {}
// Actual Solver
inline void solve() {
int n, m, s, t;
ll x, y, w;
readln(n, m, s, t);
while (m--) {
readln(x, y, w);
add_edge(x, y, w);
add_edge(y, x, w);
}
dijkstra(n, s);
cout << dis[t] << endl;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
#ifdef LOCAL
clock_t _begin = clock();
#endif
build();
solve();
#ifdef LOCAL
cerr << "Time elapsed: " << (double)(clock() - _begin) * 1000 / CLOCKS_PER_SEC << "ms." << endl;
#endif
return 0;
} | [
"lxdlam@gmail.com"
] | lxdlam@gmail.com |
d7ef528d3da14cc4305332bd43b31c26baa4ff28 | a4ea98d4a5cd870adb7a6caede8b1f8a27ad9ea2 | /src/Client/networkcar.cpp | 6b35a7a731fbb65347e0dc0c81b582bb0627d202 | [] | no_license | AlexLevick/WinSock-Cars | f878168e5b9f8a02f3b572a76dba7b5ba42256ae | a552d067c52823bd1d1504987e155068eae6b7a9 | refs/heads/master | 2020-03-23T16:38:43.048805 | 2018-07-23T18:26:28 | 2018-07-23T18:26:28 | 141,821,436 | 0 | 0 | null | 2018-07-21T16:41:43 | 2018-07-21T14:44:42 | C++ | UTF-8 | C++ | false | false | 2,381 | cpp | #include "networkcar.h"
NetworkCar::NetworkCar()
{}
NetworkCar::NetworkCar(GameCar player_, sf::Color colour_)
{
// Since gfx is created from box2d car, copy the player gfx and change the colour
car_gfx_ = player_.car_gfx_;
car_gfx_.setOutlineColor(colour_);
tire_gfx_ = player_.tire_gfx_;
for (int i = 0; i < tire_gfx_.size(); i++)
{
tire_gfx_[i].setOutlineColor(colour_);
}
}
NetworkCar::~NetworkCar()
{
}
void NetworkCar::Update(float time_)
{
if (timed_draw_)
{
// "Timed draw"
car_gfx_.setPosition(sf::Vector2f(previous_[0].x + (diff_[0].x * time_), previous_[0].y + (diff_[0].y * time_)));
// Used to fix issue from crossing 0 degrees and rotating wrong direction
float limit_ = 150;
float car_rotation_;
if (diff_[0].r > limit_)
{
diff_[0].r = -(diff_[0].r - 360);
car_rotation_ = previous_[0].r - (diff_[0].r * time_);
}
else if (diff_[0].r < -limit_)
{
diff_[0].r = (diff_[0].r + 360);
car_rotation_ = previous_[0].r + (diff_[0].r * time_);
}
else
car_rotation_ = previous_[0].r + (diff_[0].r * time_);
car_gfx_.setRotation(car_rotation_);
for (int i = 0; i < tire_gfx_.size(); i++)
{
tire_gfx_[i].setPosition(sf::Vector2f(previous_[i + 1].x + (diff_[i + 1].x * time_), previous_[i + 1].y + (diff_[i + 1].y * time_)));
// Used to fix issue from crossing 0 degrees and rotating wrong direction
float tire_rotation_;
if (diff_[i + 1].r > limit_)
{
diff_[i + 1].r = -(diff_[i + 1].r - 360);
tire_rotation_ = previous_[i + 1].r - (diff_[i + 1].r * time_);
}
else if (diff_[i + 1].r < -limit_)
{
diff_[i + 1].r = (diff_[i + 1].r + 360);
tire_rotation_ = previous_[i + 1].r + (diff_[i + 1].r * time_);
}
else
tire_rotation_ = previous_[i + 1].r + (diff_[i + 1].r * time_);
tire_gfx_[i].setRotation(tire_rotation_);
}
}
else
{
// "Untimed draw"
car_gfx_.setPosition(sf::Vector2f(previous_[0].x, previous_[0].y));
car_gfx_.setRotation(previous_[0].r);
for (int i = 0; i < tire_gfx_.size(); i++)
{
tire_gfx_[i].setPosition(sf::Vector2f(previous_[i + 1].x, previous_[i + 1].y));
tire_gfx_[i].setRotation(previous_[i + 1].r);
}
}
}
void NetworkCar::CalculateDiff()
{
for (int i = 0; i < 5; i++)
{
diff_[i].x = next_[i].x - previous_[i].x;
diff_[i].y = next_[i].y - previous_[i].y;
diff_[i].r = next_[i].r - previous_[i].r;
}
} | [
"alex.levick@live.co.uk"
] | alex.levick@live.co.uk |
848648d2622e22e16ac15e6c03c2177407959e0b | 7df8e0ff70cc85b09d02cb6d68bbfff4ee5a2997 | /yeasu_v0/rotateAzimuth.ino | 2a8786787c33a9bb85341ae5d7c13c1e7f3070b9 | [] | no_license | rebeccaljl/YeasuRotatorController | dfd01556fe93b8b01ce28293760dd8426ac0e23a | b9ccb5fe7100b3474a42790ef53303f11fcdd13b | refs/heads/master | 2021-06-22T02:19:42.527239 | 2020-03-09T08:41:44 | 2020-03-09T08:41:44 | 223,192,224 | 0 | 1 | null | 2021-06-05T19:06:00 | 2019-11-21T14:25:48 | C++ | UTF-8 | C++ | false | false | 405 | ino | /* Rotate Azimuth*/
void rotateAzimuth()
{
long rotorMoveAz = newAZ - rotorAzimuth;
if (rotorMoveAz < 0)
{
digitalWrite(G5500RG, LOW);
digitalWrite(G5500LF, HIGH);
azMovement = " L ";
azMovement = azMovement + String(newAZ );
}
else
{
digitalWrite(G5500LF, LOW);
digitalWrite(G5500RG, HIGH);
azMovement = " R ";
azMovement = azMovement + String(newAZ);
}
}
| [
"jinyee97@gmail.com"
] | jinyee97@gmail.com |
1f5a32eabe65e6168932c02b52df1956e3eb1dff | d077e40e376f16c9420f32001decf946a34a6e71 | /FEBioMech/FEVonMisesPlasticity.cpp | fc0617820fa2f91f045ae0680325e14adb2e3030 | [
"MIT"
] | permissive | jnbrunet/febio2 | 43196e79f8c54a5c92f3f592aa7437fd3b3fe842 | fdbedae97c7d2ecad3dc89d25c8343cfbdeb195a | refs/heads/master | 2021-07-21T01:04:58.828864 | 2020-05-19T06:47:31 | 2020-05-19T06:47:31 | 203,228,954 | 0 | 0 | null | 2019-08-19T18:38:29 | 2019-08-19T18:38:28 | null | UTF-8 | C++ | false | false | 4,510 | cpp | /*This file is part of the FEBio source code and is licensed under the MIT license
listed below.
See Copyright-FEBio.txt for details.
Copyright (c) 2019 University of Utah, The Trustees of Columbia University in
the City of New York, and others.
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 "stdafx.h"
#include "FEVonMisesPlasticity.h"
//-----------------------------------------------------------------------------
// define the material parameters
BEGIN_PARAMETER_LIST(FEVonMisesPlasticity, FESolidMaterial)
ADD_PARAMETER2(m_E, FE_PARAM_DOUBLE, FE_RANGE_GREATER(0.0), "E");
ADD_PARAMETER2(m_v, FE_PARAM_DOUBLE, FE_RANGE_RIGHT_OPEN(-1.0, 0.5), "v");
ADD_PARAMETER2(m_Y, FE_PARAM_DOUBLE, FE_RANGE_GREATER(0.0), "Y");
ADD_PARAMETER2(m_H, FE_PARAM_DOUBLE, FE_RANGE_GREATER_OR_EQUAL(0.0), "H");
END_PARAMETER_LIST();
//-----------------------------------------------------------------------------
FEVonMisesPlasticity::FEVonMisesPlasticity(FEModel* pfem) : FESolidMaterial(pfem)
{
m_E = m_v = m_Y = m_H = 0;
m_K = m_G = 0;
}
//-----------------------------------------------------------------------------
bool FEVonMisesPlasticity::Init()
{
if (FESolidMaterial::Init() == false) return false;
m_K = m_E/(3.0*(1.0 - 2*m_v));
m_G = m_E/(2.0*(1.0 + m_v));
return true;
}
//-----------------------------------------------------------------------------
FEMaterialPoint* FEVonMisesPlasticity::CreateMaterialPointData()
{
FEJ2PlasticMaterialPoint* pt = new FEJ2PlasticMaterialPoint(new FEElasticMaterialPoint);
pt->Y0 = m_Y;
return pt;
}
//-----------------------------------------------------------------------------
mat3ds FEVonMisesPlasticity::Stress(FEMaterialPoint &mp)
{
FEElasticMaterialPoint& pt = *mp.ExtractData<FEElasticMaterialPoint>();
FEJ2PlasticMaterialPoint& pp = *mp.ExtractData<FEJ2PlasticMaterialPoint>();
mat3d& F = pt.m_F;
// get the current strain
mat3ds e = F.sym() - mat3dd(1.0);
// calculate strain increment
mat3ds de = (e - pp.e0);
// get the trial stress
mat3ds strial = pp.sn + (de.dev()*(2.0*m_G) + de.iso()*(3.0*m_K));
mat3ds dev_strial = strial.dev();
double devs_norm = dev_strial.norm();
// get current yield strenght
double Y = pp.Y0;
double k = Y / sqrt(3.0);
double fac = devs_norm / (sqrt(2.0)*k);
mat3ds s;
if (fac<=1)
{
s = strial;
pp.b = false;
}
else
{
// calculate plastic strain rate
double L = (devs_norm - sqrt(2.0/3.0)*Y)/(2*m_G + m_H);
// update yield strength
pp.Y1 = Y + m_H*L/sqrt(2.0/3.0);
// update stress
s = strial.iso() + dev_strial*(1.0 - 2.0*m_G*L/devs_norm);
pp.b = true;
}
// store the current strain measure
pp.e1 = e;
return s;
}
//-----------------------------------------------------------------------------
tens4ds FEVonMisesPlasticity::Tangent(FEMaterialPoint &mp)
{
FEElasticMaterialPoint& pt = *mp.ExtractData<FEElasticMaterialPoint>();
FEJ2PlasticMaterialPoint& pp = *mp.ExtractData<FEJ2PlasticMaterialPoint>();
// lame parameters
double lam = m_K - m_G*2.0/3.0;
double mu = m_G;
double D[6][6] = {0};
D[0][0] = lam+2.*mu; D[0][1] = lam ; D[0][2] = lam ;
D[1][0] = lam ; D[1][1] = lam+2.*mu; D[1][2] = lam ;
D[2][0] = lam ; D[2][1] = lam ; D[2][2] = lam+2.*mu;
D[3][3] = mu;
D[4][4] = mu;
D[5][5] = mu;
tens4ds C(D);
// see if we are in plastic flow mode
if (pp.b)
{
// get the stress
mat3ds s = pt.m_s;
mat3ds n = s.dev()*2.0;
mat3ds A = C.dot(n);
double G = n.dotdot(A) + m_H;
C -= dyad4s(A)/G;
}
return C;
}
| [
"mherron@omen.sci.utah.edu"
] | mherron@omen.sci.utah.edu |
0350e32d0c8b355618c880431e8845fb6d47f9c3 | 11b9965933d407ed3708a252aebcdafc21c98664 | /MassGrav/src/chi_rhs.cpp | 4ddd8499dd06bc355e6f39a750af548177403304 | [
"BSD-3-Clause"
] | permissive | lanl/Dendro-GRCA | a265131e2a5d8327eba49e2133257d553826a41e | 8a475b1abd8832c3dfc19d00cc0ec4b9e2789c8a | refs/heads/master | 2023-05-31T06:25:06.113867 | 2020-09-23T18:00:13 | 2020-09-23T18:00:13 | 297,793,620 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,111 | cpp | massgrav::timer::t_rhs.start();
for (unsigned int k = 3; k < nz-3; k++) {
z = pmin[2] + k*hz;
for (unsigned int j = 3; j < ny-3; j++) {
y = pmin[1] + j*hy;
for (unsigned int i = 3; i < nx-3; i++) {
x = pmin[0] + i*hx;
pp = i + nx*(j + ny*k);
r_coord = sqrt(x*x + y*y + z*z);
eta=ETA_CONST;
if (r_coord >= ETA_R0) {
eta *= pow( (ETA_R0/r_coord), ETA_DAMPING_EXP);
}
// Dendro: {{{
// Dendro: original ops: 22
// Dendro: printing temp variables
double DENDRO_0 = (2.0L/3.0L)*chi[pp];
// Dendro: printing variables
//--
chi_rhs[pp] = DENDRO_0*K[pp]*alpha[pp] - DENDRO_0*(grad_0_beta0[pp] + grad_1_beta1[pp] + grad_2_beta2[pp]) + beta0[pp]*agrad_0_chi[pp] + beta1[pp]*agrad_1_chi[pp] + beta2[pp]*agrad_2_chi[pp];
// Dendro: reduced ops: 20
// Dendro: }}}
/* debugging */
/*unsigned int qi = 46 - 1;
unsigned int qj = 10 - 1;
unsigned int qk = 60 - 1;
unsigned int qidx = qi + nx*(qj + ny*qk);
if (0 && qidx == pp) {
std::cout << ".... end OPTIMIZED debug stuff..." << std::endl;
}*/
}
}
}
massgrav::timer::t_rhs.stop();
| [
"hylim1988@gmail.com"
] | hylim1988@gmail.com |
b87d912fe0ea12a02863abda2a91a301996a0351 | 052d96969a0c5ab0525d2a3f245f1756da5478b3 | /src/llmq/quorums.h | a5ad3b96629cc662c76db442fb9737bf1c2240f0 | [
"MIT"
] | permissive | altexclub/altex | 90a0f790c272825d2297c78b36fd2c338e04ba34 | 905ae6c6c7a6a09bcd547505f796b5ff9e5fe8be | refs/heads/master | 2022-12-16T15:18:19.518969 | 2020-09-11T12:57:21 | 2020-09-11T12:57:21 | 293,193,769 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,679 | h | // Copyright (c) 2018-2019 The Dash Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ALTEX_QUORUMS_H
#define ALTEX_QUORUMS_H
#include "evo/evodb.h"
#include "evo/deterministicmns.h"
#include "llmq/quorums_commitment.h"
#include "validationinterface.h"
#include "consensus/params.h"
#include "saltedhasher.h"
#include "unordered_lru_cache.h"
#include "bls/bls.h"
#include "bls/bls_worker.h"
namespace llmq
{
class CDKGSessionManager;
/**
* An object of this class represents a quorum which was mined on-chain (through a quorum commitment)
* It at least contains informations about the members and the quorum public key which is needed to verify recovered
* signatures from this quorum.
*
* In case the local node is a member of the same quorum and successfully participated in the DKG, the quorum object
* will also contain the secret key share and the quorum verification vector. The quorum vvec is then used to recover
* the public key shares of individual members, which are needed to verify signature shares of these members.
*/
class CQuorum
{
friend class CQuorumManager;
public:
const Consensus::LLMQParams& params;
CFinalCommitment qc;
int height;
uint256 minedBlockHash;
std::vector<CDeterministicMNCPtr> members;
// These are only valid when we either participated in the DKG or fully watched it
BLSVerificationVectorPtr quorumVvec;
CBLSSecretKey skShare;
private:
// Recovery of public key shares is very slow, so we start a background thread that pre-populates a cache so that
// the public key shares are ready when needed later
mutable CBLSWorkerCache blsCache;
std::atomic<bool> stopCachePopulatorThread;
std::thread cachePopulatorThread;
public:
CQuorum(const Consensus::LLMQParams& _params, CBLSWorker& _blsWorker) : params(_params), blsCache(_blsWorker), stopCachePopulatorThread(false) {}
~CQuorum();
void Init(const CFinalCommitment& _qc, int _height, const uint256& _minedBlockHash, const std::vector<CDeterministicMNCPtr>& _members);
bool IsMember(const uint256& proTxHash) const;
bool IsValidMember(const uint256& proTxHash) const;
int GetMemberIndex(const uint256& proTxHash) const;
CBLSPublicKey GetPubKeyShare(size_t memberIdx) const;
CBLSSecretKey GetSkShare() const;
private:
void WriteContributions(CEvoDB& evoDb);
bool ReadContributions(CEvoDB& evoDb);
static void StartCachePopulatorThread(std::shared_ptr<CQuorum> _this);
};
typedef std::shared_ptr<CQuorum> CQuorumPtr;
typedef std::shared_ptr<const CQuorum> CQuorumCPtr;
/**
* The quorum manager maintains quorums which were mined on chain. When a quorum is requested from the manager,
* it will lookup the commitment (through CQuorumBlockProcessor) and build a CQuorum object from it.
*
* It is also responsible for initialization of the inter-quorum connections for new quorums.
*/
class CQuorumManager
{
private:
CEvoDB& evoDb;
CBLSWorker& blsWorker;
CDKGSessionManager& dkgManager;
CCriticalSection quorumsCacheCs;
std::map<std::pair<Consensus::LLMQType, uint256>, CQuorumPtr> quorumsCache;
unordered_lru_cache<std::pair<Consensus::LLMQType, uint256>, std::vector<CQuorumCPtr>, StaticSaltedHasher, 32> scanQuorumsCache;
public:
CQuorumManager(CEvoDB& _evoDb, CBLSWorker& _blsWorker, CDKGSessionManager& _dkgManager);
void UpdatedBlockTip(const CBlockIndex *pindexNew, bool fInitialDownload);
bool HasQuorum(Consensus::LLMQType llmqType, const uint256& quorumHash);
// all these methods will lock cs_main for a short period of time
CQuorumCPtr GetQuorum(Consensus::LLMQType llmqType, const uint256& quorumHash);
CQuorumCPtr GetNewestQuorum(Consensus::LLMQType llmqType);
std::vector<CQuorumCPtr> ScanQuorums(Consensus::LLMQType llmqType, size_t maxCount);
// this one is cs_main-free
std::vector<CQuorumCPtr> ScanQuorums(Consensus::LLMQType llmqType, const CBlockIndex* pindexStart, size_t maxCount);
private:
// all private methods here are cs_main-free
void EnsureQuorumConnections(Consensus::LLMQType llmqType, const CBlockIndex *pindexNew);
bool BuildQuorumFromCommitment(const CFinalCommitment& qc, const CBlockIndex* pindexQuorum, const uint256& minedBlockHash, std::shared_ptr<CQuorum>& quorum) const;
bool BuildQuorumContributions(const CFinalCommitment& fqc, std::shared_ptr<CQuorum>& quorum) const;
CQuorumCPtr GetQuorum(Consensus::LLMQType llmqType, const CBlockIndex* pindex);
};
extern CQuorumManager* quorumManager;
}
#endif //ALTEX_QUORUMS_H
| [
"70829127+altexclub@users.noreply.github.com"
] | 70829127+altexclub@users.noreply.github.com |
883b2ad63ee1d369626f9bb6544f29cfc46d58c8 | d7f66d6d84a8e92dd9a90b4d55080199dba4fda5 | /Knapsack/Knapsack.cpp | b4c08997f25caa7207a3be481d9e6ce89f6a9178 | [] | no_license | Nitish-K15/ADA | 577e2358b28400f904eacf91ae2c24db554ed2ec | 74fa452240beb4424430d16286fd0eedb1c4291a | refs/heads/master | 2023-04-29T18:29:22.019757 | 2021-05-18T06:09:55 | 2021-05-18T06:09:55 | 364,144,675 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,325 | cpp | #include<iostream>
using namespace std;
struct Item
{
int w;
int v;
float d;
};
void swap(int& a, int& b)
{
int temp;
temp = a;
a = b;
b = temp;
}
void SelectionSort(Item a[3])
{
int min;
for (int i = 0;i < 3;i++)
{
min = i;
for (int j = i + 1;j < 10;j++)
if (a[j].d > a[min].d)
min = j;
swap(a[i].d, a[min].d);
}
for (int i = 0; i < 3;i++)
cout << a[i].d << " ";
cout << endl;
}
void input(Item items[], int sizeOfItems)
{
cout << "Enter total " << sizeOfItems << " item's values and weight" << endl;
for (int i = 0; i < sizeOfItems; i++)
{
cout << "Enter " << i + 1 << " V ";
cin >> items[i].v;
cout << "Enter " << i + 1 << " W ";
cin >> items[i].w;
}
}
void display(Item items[], int sizeOfItems)
{
int i;
cout << "values: ";
for (i = 0; i < sizeOfItems; i++)
{
cout << items[i].v << "\t";
}
cout << endl << "weight: ";
for (i = 0; i < sizeOfItems; i++)
{
cout << items[i].w << "\t";
}
cout << endl;
}
float knapsack(Item items[], int sizeOfItems, int W)
{
float TotalValue = 0;
float TotalWeight = 0;
for (int i = 0;i < sizeOfItems; i++)
items[i].d = items[i].v / items[i].w;
SelectionSort(items);
for (int i = 0; i < sizeOfItems;i++)
{
if (TotalWeight + items[i].w <= W)
{
cout << items[i].v <<" "<< items[i].w<<endl;
TotalWeight += items[i].w;
cout << TotalWeight << endl;
TotalValue += items[i].v;
cout << TotalValue << endl;
}
else
{
int wt = W - TotalWeight;
cout << "wt " << wt << endl;
TotalValue += (wt * items[i].d);
cout << TotalValue << endl;
TotalWeight += wt;
cout << TotalWeight << endl;
break;
}
}
cout << "Total Weight in the bag " << TotalWeight << endl;
return TotalValue;
}
int main()
{
int W;
Item items[3];
input(items, 3);
cout << "Entered data \n";
display(items, 3);
cout << "Enter Knapsack weight \n";
cin >> W;
float mxVal = knapsack(items, 3, W);
cout << "Max value for " << W << " weight is " << mxVal;
} | [
"79478893+Nitish-K15@users.noreply.github.com"
] | 79478893+Nitish-K15@users.noreply.github.com |
28887b73bb9737eb555237a3058681b20e253686 | 1e3ef0f5ddef358f25deb134939841d77c71ed58 | /Hw1_1/UVA/UVA-579.cpp | 98d399a5cb185463db29ada72e38cf42ed39debe | [] | no_license | LonEdit120/ACM | 6ddffd2c3b31e36ab0f94ae38ca9b57706e00e71 | 48faaf6c1896dc94314894fad5eb87f4470e66bd | refs/heads/master | 2021-06-02T12:51:20.666531 | 2016-07-04T12:13:34 | 2016-07-04T12:13:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 665 | cpp | #include <iostream>
#include <iomanip>
using namespace std;
int main()
{
float hour = 12;
float min = 59;
char column;
float angle, angle1, angle2;
float ha, ma;
cout << fixed << setprecision(3);
while(1)
{
cin >> hour >> column >> min;
if(hour == 0 && min == 0)
{
break;
}
ma = min*6;
if(min != 0)
{
ha = hour*30 + (30/(60/min));
}
else
{
if(hour == 12)
{
ha = 0;
}
else
{
ha = hour*30;
}
}
angle1 = ha - ma;
if(angle1 < 0)
{
angle1 = angle1 + 360;
}
angle2 = 360 - angle1;
if(angle1 > angle2)
{
angle = angle2;
}
else
{
angle = angle1;
}
cout << angle << endl;
}
}
| [
"bladeath860620@gmail.com"
] | bladeath860620@gmail.com |
51f25888b1ec2b9b29c1405f189785dbc8aaa6ba | a6590941fea4880593d5b1cd23eedfe696f4e446 | /Other/mitsuiBank2020/a.cpp | dfd703c879a08c99f8ed408a954f0f6bddc96d26 | [] | no_license | cod4i3/MyAtcoder | 9fb92f2dd06c5b6217e925a82d8db4f91355a70f | 53bdac3fa7eb4ac48ca6d5c70461639beb6aa81d | refs/heads/master | 2023-02-17T09:15:16.282873 | 2021-01-15T13:34:03 | 2021-01-15T13:34:03 | 232,006,424 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 190 | cpp | #include <iostream>
using namespace std;
int main() {
int M1, M2, D1, D2;
cin >> M1 >> D1 >> M2 >> D2;
if (M1 != M2)
cout << 1 << endl;
else
cout << 0 << endl;
return 0;
} | [
"imasdaisukiproducermasu@gmail.com"
] | imasdaisukiproducermasu@gmail.com |
0e3f7fd7adfc2a83d3442ebc17ae4b8be500e0d8 | 6a6dfd729b338b9ac440d4b7aead98edc668a017 | /HkOgre/hkOgrePrerequisites.h | ace86b5433446c39069b3fdc7209b55c7625bd0f | [] | no_license | kevinmore/MyPhysicsLab | af4ad6e86bfaf2f9e518171a10deca45e833bce6 | d060acb6d6f1ebdbfda088656f866f9ba60f8535 | refs/heads/master | 2020-05-09T21:28:45.198433 | 2014-03-11T10:18:02 | 2014-03-11T10:18:02 | 17,085,687 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,612 | h | #ifndef HKOGRE_PREREQUISITES
#define HKOGRE_PREREQUISITES
#include <OgreVector3.h>
#include <OgreVector4.h>
#include <OgreLogManager.h>
#include <OgreEntity.h>
#include <OgreSceneNode.h>
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <Physics/Internal/hkpInternal.h>
#include <Physics/Collide/Shape/Compound/Collection/SimpleMesh/hkpSimpleMeshShape.h>
#include <Physics/Collide/Shape/Compound/Tree/Mopp/hkpMoppUtility.h>
#include <Physics/Collide/Shape/Compound/Tree/hkpBvTreeShape.h>
#include <Physics/Collide/Shape/Compound/Tree/Mopp/hkpMoppBvTreeShape.h>
#include <Physics/Collide/Shape/hkpShape.h>
#include <Physics/Collide/Filter/Group/hkpGroupFilter.h>
// Math and base include
#include <Common/Base/hkBase.h>
#include <Common/Base/System/hkBaseSystem.h>
#include <Common/Base/System/Error/hkDefaultError.h>
#include <Common/Base/Memory/System/Util/hkMemoryInitUtil.h>
#include <Common/Base/Monitor/hkMonitorStream.h>
#include <Common/Base/Memory/System/hkMemorySystem.h>
#include <Common/Base/Memory/Allocator/Malloc/hkMallocAllocator.h>
#include <Common/Base/Math/hkMath.h>
#include <Common/Base/Types/Geometry/hkStridedVertices.h>
#include <Common/Base/Algorithm/PseudoRandom/hkPseudoRandomGenerator.h>
#include <Common/Base/Math/Matrix/hkMatrix3Util.h>
#include <Common/Base/Config/hkConfigThread.h>
// Serialize includes
#include <Common/SceneData/Scene/hkxScene.h>
#include <Common/SceneData/Mesh/hkxMesh.h>
#include <Common/SceneData/Scene/hkxSceneUtils.h>
#include <Common/Serialize/Util/hkLoader.h>
#include <Common/Serialize/Util/hkBuiltinTypeRegistry.h>
#include <Common/Base/System/Io/IStream/hkIStream.h>
#include <Common/Base/Reflection/hkClass.h>
#include <Common/Base/Reflection/Registry/hkTypeInfoRegistry.h>
#include <Common/Base/Reflection/Registry/hkVtableClassRegistry.h>
#include <Common/Serialize/Util/hkStructureLayout.h>
#include <Common/Serialize/Util/hkRootLevelContainer.h>
#include <Common/Serialize/Util/hkSerializeUtil.h>
#include <Common/Serialize/Resource/hkResource.h>
#include <Physics/Utilities/Serialize/hkpHavokSnapshot.h>
#include <Physics/Utilities/Serialize/hkpPhysicsData.h>
#include <Common/Serialize/Packfile/hkPackfileWriter.h>
#include <Common/Serialize/Packfile/hkPackfileData.h>
#include <Common/Serialize/Packfile/Binary/hkBinaryPackfileWriter.h>
#include <Common/Serialize/Serialize/Xml/hkXmlObjectWriter.h>
// Dynamics includes
#include <Physics/Collide/Query/CastUtil/hkpWorldRayCastInput.h>
#include <Physics/Collide/Query/CastUtil/hkpWorldRayCastOutput.h>
#include <Physics/Collide/hkpCollide.h>
#include <Physics/Collide/Agent/ConvexAgent/SphereBox/hkpSphereBoxAgent.h>
#include <Physics/Collide/Dispatch/hkpAgentRegisterUtil.h>
#include <Physics/Dynamics/World/hkpWorld.h>
#include <Physics/Dynamics/Entity/hkpRigidBody.h>
#include <Physics/Utilities/Dynamics/Inertia/hkpInertiaTensorComputer.h>
#include <Common/Base/Thread/Job/ThreadPool/Cpu/hkCpuJobThreadPool.h>
#include <Common/Base/Thread/Job/ThreadPool/Spu/hkSpuJobThreadPool.h>
#include <Common/Base/Thread/JobQueue/hkJobQueue.h>
#include <Common/Base/Math/Vector/hkVector4Util.h>
#include <Physics/Dynamics/Constraint/Bilateral/Hinge/hkpHingeConstraintData.h>
#include <Physics/Dynamics/Constraint/Bilateral/LimitedHinge/hkpLimitedHingeConstraintData.h>
#include <Physics/Dynamics/Constraint/Chain/Powered/hkpPoweredChainData.h>
#include <Physics/Dynamics/Constraint/Chain/hkpConstraintChainInstance.h>
#include <Physics/Dynamics/Constraint/Motor/Position/hkpPositionConstraintMotor.h>
#include <Physics/Dynamics/Phantom/hkpAabbPhantom.h>
#include <Physics/Dynamics/World/hkpSimulationIsland.h>
#include <Physics/Utilities/VisualDebugger/Viewer/Dynamics/hkpConstraintViewer.h>
#include <Physics/Utilities/Actions/Spring/hkpSpringAction.h>
#include <Physics/Utilities/Dynamics/KeyFrame/hkpKeyFrameUtility.h>
#include <Physics/Dynamics/Action/hkpUnaryAction.h>
#include <Physics/Dynamics/Constraint/Bilateral/StiffSpring/hkpStiffSpringConstraintData.h>
#include <Physics/Utilities/Collide/ContactModifiers/ViscoseSurface/hkpViscoseSurfaceUtil.h>
#include <Physics/Utilities/Collide/ContactModifiers/SurfaceVelocity/hkpSurfaceVelocityUtil.h>
#include <Physics/Utilities/Collide/hkpShapeGenerator.h>
#include <Physics/Dynamics/World/Listener/hkpWorldPostSimulationListener.h>
#include <Physics/Dynamics/World/Listener/hkpWorldDeletionListener.h>
#include <Physics/Dynamics/World/BroadPhaseBorder/hkpBroadPhaseBorder.h>
// Shape include
#include <Physics/Collide/Shape/Compound/Collection/ExtendedMeshShape/hkpExtendedMeshShape.h>
#include <Physics/Collide/Shape/Compound/Collection/StorageExtendedMesh/hkpStorageExtendedMeshShape.h>
#include <Physics/Collide/Shape/Compound/Collection/List/hkpListShape.h>
#include <Physics/Collide/Shape/Convex/Box/hkpBoxShape.h>
#include <Physics/Collide/Shape/Convex/Sphere/hkpSphereShape.h>
#include <Physics/Collide/Shape/Compound/Tree/Mopp/hkpMoppBvTreeShape.h>
#include <Physics/Collide/Shape/Convex/ConvexTranslate/hkpConvexTranslateShape.h>
#include <Physics/Collide/Shape/HeightField/CompressedSampledHeightField/hkpCompressedSampledHeightFieldShape.h>
#include <Physics/Collide/Shape/HeightField/TriSampledHeightField/hkpTriSampledHeightFieldCollection.h>
#include <Physics/Collide/Shape/HeightField/TriSampledHeightField/hkpTriSampledHeightFieldBvTreeShape.h>
#include <Physics/Collide/Agent/ConvexAgent/BoxBox/hkpBoxBoxAgent.h>
#include <Physics/Internal/Collide/StaticCompound/hkpStaticCompoundShape.h>
#include <Physics/Internal/Collide/BvCompressedMesh/hkpBvCompressedMeshShape.h>
#include <Physics/Internal/Collide/BvCompressedMesh/hkpBvCompressedMeshShapeCinfo.h>
#include <Physics/Collide/Shape/Convex/ConvexVertices/hkpConvexVerticesShape.h>
#include <Physics/Collide/Query/Collector/RayCollector/hkpAllRayHitCollector.h>
#include <Physics/Utilities/Deprecated/H1Group/hkpGroupCollisionFilter.h>
#include <Common/Visualize/hkDebugDisplay.h>
#include <Common/SceneData/SceneDataToGeometryConverter/hkxSceneDataToGeometryConverter.h>
#include <Physics/Collide/Shape/Convex/Capsule/hkpCapsuleShape.h>
// Visual Debugger includes
#include <Common/Visualize/hkVisualDebugger.h>
#include <Physics/Utilities/VisualDebugger/hkpPhysicsContext.h>
#include <Physics/Utilities/VisualDebugger/Viewer/Dynamics/hkpConstraintViewer.h>
namespace HkOgre
{
static void HK_CALL hkOgreErrorReport(const char* msg, void* userArgGivenToInit)
{
std::string message = msg;
Ogre::LogManager::getSingleton().getDefaultLog()->logMessage("[HkOgre] Havok Report: " + message);
}
}
#endif // HKOGRE_PREREQUISITES | [
"dingfengyu@gmail.com"
] | dingfengyu@gmail.com |
75d65eb41aa083965beddeb08a960a38be928501 | 3a140a0367e5553326e95de60d8e8d9ac3666958 | /ast/src/expression.cpp | f38ceeeb52affd876a56155d36ec49b68669c97b | [] | no_license | darkangel-ua/hammer | 57524e6c1300a0ca94e5dd533df22f347d1995be | 3a81dd07e4ff21f506d767c9f51313f9ffd1f5ae | refs/heads/master | 2020-04-16T00:51:32.287195 | 2019-12-01T08:43:59 | 2019-12-01T08:43:59 | 37,814,748 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,842 | cpp | #include <hammer/ast/visitor.h>
#include <hammer/ast/casts.h>
#include <hammer/ast/expression.h>
namespace hammer { namespace ast {
bool error_expression::accept(visitor& v) const
{
return v.visit(*this);
}
bool empty_expr::accept(visitor& v) const
{
return v.visit(*this);
}
bool id_expr::accept(visitor& v) const
{
return v.visit(*this);
}
bool named_expr::accept(visitor& v) const
{
return v.visit(*this);
}
bool public_expr::accept(visitor& v) const
{
return v.visit(*this);
}
bool is_error_expr(const expression* e)
{
return dynamic_cast<const error_expression*>(e);
}
template<>
bool is_a<error_expression>(const node& v) { return dynamic_cast<const error_expression*>(&v); }
template<>
bool is_a<named_expr>(const node& v) { return dynamic_cast<const named_expr*>(&v); }
template<>
bool is_a<public_expr>(const node& v) { return dynamic_cast<const public_expr*>(&v); }
template<>
bool is_a<empty_expr>(const node& v) { return dynamic_cast<const empty_expr*>(&v); }
template<>
bool is_a<id_expr>(const node& v) { return dynamic_cast<const id_expr*>(&v); }
template<>
const named_expr& as<named_expr>(const node& v) { return dynamic_cast<const named_expr&>(v); }
template<>
const named_expr* as<named_expr>(const node* v) { return dynamic_cast<const named_expr*>(v); }
template<>
const public_expr& as<public_expr>(const node& v) { return dynamic_cast<const public_expr&>(v); }
template<>
const public_expr* as<public_expr>(const node* v) { return dynamic_cast<const public_expr*>(v); }
template<>
const empty_expr& as<empty_expr>(const node& v) { return dynamic_cast<const empty_expr&>(v); }
template<>
const empty_expr* as<empty_expr>(const node* v) { return dynamic_cast<const empty_expr*>(v); }
template<>
const id_expr* as<id_expr>(const node* v) { return dynamic_cast<const id_expr*>(v); }
}}
| [
"to.darkangel@gmail.com"
] | to.darkangel@gmail.com |
69b79518945ba2039e5abd69fe692105de7b2c3a | 373dc1f2b4ba0181a11ca9cd546dcc3ab0c25b61 | /f1replaceresults.cpp | 611e1dda253b216ef3c8473f090ce380af15e552 | [] | no_license | 15831944/TMS | 0b5337e9a6b8d87c59cddd139334e5a91a3050e7 | 07ddc125b73093d91729d49382ba90457bc5633b | refs/heads/master | 2020-09-11T10:50:58.207283 | 2010-06-10T01:10:30 | 2010-06-10T01:10:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 791 | cpp | // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
// NOTE: Do not modify the contents of this file. If this class is regenerated by
// Microsoft Visual C++, your modifications will be overwritten.
#include "stdafx.h"
#include "f1replaceresults.h"
/////////////////////////////////////////////////////////////////////////////
// CF1ReplaceResults properties
/////////////////////////////////////////////////////////////////////////////
// CF1ReplaceResults operations
long CF1ReplaceResults::GetFound()
{
long result;
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
long CF1ReplaceResults::GetReplaced()
{
long result;
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
| [
"e.sitarski@themasterschedulder.com"
] | e.sitarski@themasterschedulder.com |
0e5cd692f066ed9766431e13b987886e78a2e4c6 | 739ce0da74d50f6ea042b2bbf1df8aaf5cbf64c3 | /src/Vulkan/PipelineLayout.hpp | 9be56f9d26a03fa66f0f88cdbf323e683ca077c8 | [] | no_license | dsmtE/learnVulkan | 06c10b1988efde30d31d4c013c5cf8e5e285242f | ef9c45551ed1822cb581e5834cfbbaf15ca0977d | refs/heads/master | 2022-12-03T05:13:47.775362 | 2020-08-26T23:23:56 | 2020-08-26T23:24:08 | 269,472,196 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 309 | hpp | #pragma once
#include "Vulkan.hpp"
namespace Vulkan {
class Device;
class PipelineLayout final {
public:
VULKAN_NON_COPIABLE(PipelineLayout)
PipelineLayout(const Device& device);
~PipelineLayout();
private:
const Device& device_;
VULKAN_HANDLE(VkPipelineLayout, pipelineLayout_)
};
}
| [
"desmet.enguerrand@gmail.com"
] | desmet.enguerrand@gmail.com |
1aad68900a032dbbcba0e4d3a0bfd4c235f0cf07 | 565e85570d42a599351e513040e1bda8d05d3948 | /lib/dtv-canvas/src/impl/x11/render.cpp | d530a210d3808d8767941e00ef9d40a7c5498d3c | [] | no_license | Hanun11/tvd | 95a74b8ee8a939ba06b4d15dce99bdc548e1be7b | 0d113c46014d738d87cb4db93b566d07fcbc031f | refs/heads/master | 2021-12-14T19:41:15.800531 | 2017-05-20T19:54:40 | 2017-05-20T19:54:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,138 | cpp | /*******************************************************************************
Copyright (C) 2010, 2013 LIFIA - Facultad de Informatica - Univ. Nacional de La Plata
********************************************************************************
This file is part of DTV-canvas implementation.
DTV-canvas 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 of the License.
DTV-canvas 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 program. If not, see <http://www.gnu.org/licenses/>.
********************************************************************************
Este archivo es parte de la implementación de DTV-canvas.
DTV-canvas es Software Libre: Ud. puede redistribuirlo y/o modificarlo
bajo los términos de la Licencia Pública General Reducida GNU como es publicada por la
Free Software Foundation, según la versión 2 de la licencia.
DTV-canvas se distribuye esperando que resulte de utilidad, pero SIN NINGUNA
GARANTÍA; ni siquiera la garantía implícita de COMERCIALIZACIÓN o ADECUACIÓN
PARA ALGÚN PROPÓSITO PARTICULAR. Para más detalles, revise la Licencia Pública
General Reducida GNU.
Ud. debería haber recibido una copia de la Licencia Pública General Reducida GNU
junto a este programa. Si no, puede verla en <http://www.gnu.org/licenses/>.
*******************************************************************************/
#include "render.h"
#include "window.h"
#include <util/log.h>
namespace canvas {
namespace x11 {
Render::Render( Window *win )
{
_window = win;
_renderInitialized = false;
}
Render::~Render()
{
}
// Initialization
bool Render::initialize() {
// Initialize x11 extensions
if (supportVideoOverlay()) {
if (!_window->initXCompositeExtension()) {
LERROR( "x11::render", "Cannot initialize window XComposite extension" );
return false;
}
if (!_window->initXDamageExtension()) {
LERROR( "x11::render", "Cannot initialize window XDamage extension" );
return false;
}
}
// Initialize generic implementation
if (!init()) {
LERROR( "x11::render", "Cannot initialize render system" );
return false;
}
// Initialize render
if (!initRender()) {
LERROR( "x11::render", "Cannot initialize render" );
return false;
}
return true;
}
void Render::finalize() {
finRender();
fin();
}
void Render::restartRender() {
if (_renderInitialized) {
finRender();
initRender();
}
}
bool Render::init() {
return true;
}
void Render::fin() {
}
bool Render::initRender() {
_renderInitialized = true;
return true;
}
void Render::finRender() {
_renderInitialized = false;
}
bool Render::supportVideoOverlay() const {
return false;
}
// Video methods
int Render::getFormat( char *chroma, unsigned *width, unsigned *height, unsigned *pitches, unsigned *lines ) {
const Size &size = _window->size();
strcpy( chroma, "ARGB" );
*width = size.w;
*height = size.h;
pitches[0] = size.w * 4;
pitches[1] = pitches[2] = 0;
lines [0] = size.h;
lines [1] = lines [2] = 0;
return 1;
}
void Render::cleanup() {
}
void *Render::allocFrame( void ** /*pixels*/ ) {
return NULL;
}
void Render::freeFrame( void * ) {
}
void Render::renderFrame( void * ) {
}
// Getters
Window *Render::window() const {
return _window;
}
::Display *Render::display() const {
return _window->dpy();
}
::Window Render::win() const {
return _window->win();
}
bool Render::isFullScreen() const {
return _window->isFullScreen();
}
const Size &Render::size() const {
return _window->size();
}
const Rect &Render::videoBounds() const {
return _window->getVideoBounds();
}
Size Render::canvasSize() {
return _window->canvasSize();
}
void *Render::visualInfo( Display * /*dpy*/ ) {
return NULL;
}
}
}
| [
"jbucar@gmail.com"
] | jbucar@gmail.com |
d1101be90919a415d9e01803ec6933c7d6af7d2c | c4e4b570b1a91495a89c939e876dcd38c7b6247f | /src/core/rendering/texture.cpp | a4214f38f29bddcbaedbf8280b83c39602d0831b | [
"Apache-2.0"
] | permissive | texel-sensei/eversim | 5392bc1f4bd5443a2bd8c25e44725acb84af5705 | 187262756186add9ee8583cbaa1d3ef9e6d0aa53 | refs/heads/master | 2021-06-01T10:21:27.586634 | 2020-09-08T15:10:38 | 2020-09-08T15:16:12 | 96,086,158 | 0 | 0 | Apache-2.0 | 2020-09-08T15:16:13 | 2017-07-03T08:07:25 | C++ | UTF-8 | C++ | false | false | 2,647 | cpp | #include "core/rendering/texture.h"
#include "core/rendering/texture_loader.h"
#include <easylogging++.h>
#include <vector>
using std::string;
using std::vector;
using std::swap;
using glm::ivec2;
namespace eversim {
namespace core {
namespace rendering {
texture_loader Texture::loader;
Texture::Texture()
{}
Texture::Texture(const ivec2& resolution,
std::function<void()> filtering) : resolution(resolution)
{
glGenTextures(1, &tex_id);
set_unique_id(tex_id);
glBindTexture(GL_TEXTURE_2D, tex_id);
vector<float> image(resolution[0] * resolution[1] * 4, 0.f);
for(size_t i = 3; i < image.size(); i+=4)
{
image.at(i) = 1.f;
}
LOG(INFO) << "Create empty texture with size " << resolution[0] << "/" <<
resolution[1];
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA,
resolution[0], resolution[1], 0, GL_RGBA, GL_FLOAT, image.data());
filtering();
glBindTexture(GL_TEXTURE_2D, 0);
valid = true;
}
Texture::Texture(const string& path,
std::function<void()> filtering)
{
//Let the loader create a texture with immutable storage
//this needs opengl 4.2
tex_ptr = loader.load(path);
auto& tp = *tex_ptr;
auto base_tex_id = tp.tex_id;
set_unique_id(base_tex_id);
resolution = tp.resolution;
/*LOG(INFO) << "Create texture with size " << resolution[0] << "/" <<
resolution[1];*/
//Generate the texture we want to use for the view
glGenTextures(1, &tex_id);
//Let opengl create a texture with the data from the immutable storage
glTextureView(tex_id, GL_TEXTURE_2D, base_tex_id, GL_RGBA8, 0, 1, 0, 1);
//Bind for setting the filter
glBindTexture(GL_TEXTURE_2D, tex_id);
filtering();
glBindTexture(GL_TEXTURE_2D, 0);
valid = true;
}
Texture::Texture(Texture&& other) noexcept
{
swap(valid, other.valid);
swap(tex_id, other.tex_id);
swap(resolution, other.resolution);
swap(tex_ptr, other.tex_ptr);
}
Texture::~Texture()
{
if (valid) {
glDeleteTextures(1, &tex_id);
valid = false;
}
}
Texture& Texture::operator=(Texture&& other) noexcept
{
swap(valid,other.valid);
swap(tex_id, other.tex_id);
swap(resolution, other.resolution);
swap(tex_ptr, other.tex_ptr);
return *this;
}
GLuint Texture::get_tex_id() const
{
return tex_id;
}
glm::ivec2 Texture::get_resolution() const
{
return resolution;
}
void Texture::bind() const
{
glBindTexture(GL_TEXTURE_2D, tex_id);
}
void Texture::unbind()
{
glBindTexture(GL_TEXTURE_2D, 0);
}
}
}
} | [
"lukasac@gmx.de"
] | lukasac@gmx.de |
faa58a875c9e854b279b3a206e327d3fc2eab4a7 | a787651a8ab86df82268ce0cfeeb9bb239180bda | /设计模式/Head_First/builder/main.cpp | 5bfb983e4b4dfd687e03487d664db4141d8240d6 | [] | no_license | ljdongysu/git_pro | 89a499f40c5e6e874fe41723c0eb519be13cdc88 | 891e7a2765df7099ae5971c87145aa7fb6f209d7 | refs/heads/master | 2022-06-25T21:11:53.708492 | 2022-06-07T06:53:21 | 2022-06-07T06:53:21 | 246,498,903 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,566 | cpp | #include <iostream>
#include <vector>
/**
* It makes sense to use the Builder pattern only when your products are quite
* complex and require extensive configuration.
*
* Unlike in other creational patterns, different concrete builders can produce
* unrelated products. In other words, results of various builders may not
* always follow the same interface.
*/
class Product1{
public:
std::vector<std::string> parts_;
void ListParts()const{
std::cout << "Product parts: ";
for (size_t i=0;i<parts_.size();i++){
if(parts_[i]== parts_.back()){
std::cout << parts_[i];
}else{
std::cout << parts_[i] << ", ";
}
}
std::cout << "\n\n";
}
};
/**
* The Builder interface specifies methods for creating the different parts of
* the Product objects.
*/
class Builder{
public:
virtual ~Builder(){}
virtual void ProducePartA() const =0;
virtual void ProducePartB() const =0;
virtual void ProducePartC() const =0;
};
/**
* The Concrete Builder classes follow the Builder interface and provide
* specific implementations of the building steps. Your program may have several
* variations of Builders, implemented differently.
*/
class ConcreteBuilder1 : public Builder{
private:
Product1* product;
/**
* A fresh builder instance should contain a blank product object, which is
* used in further assembly.
*/
public:
ConcreteBuilder1(){
this->Reset();
}
~ConcreteBuilder1(){
delete product;
}
void Reset(){
this->product= new Product1();
}
/**
* All production steps work with the same product instance.
*/
void ProducePartA()const override{
this->product->parts_.push_back("PartA1");
}
void ProducePartB()const override{
this->product->parts_.push_back("PartB1");
}
void ProducePartC()const override{
this->product->parts_.push_back("PartC1");
}
/**
* Concrete Builders are supposed to provide their own methods for
* retrieving results. That's because various types of builders may create
* entirely different products that don't follow the same interface.
* Therefore, such methods cannot be declared in the base Builder interface
* (at least in a statically typed programming language). Note that PHP is a
* dynamically typed language and this method CAN be in the base interface.
* However, we won't declare it there for the sake of clarity.
*
* Usually, after returning the end result to the client, a builder instance
* is expected to be ready to start producing another product. That's why
* it's a usual practice to call the reset method at the end of the
* `getProduct` method body. However, this behavior is not mandatory, and
* you can make your builders wait for an explicit reset call from the
* client code before disposing of the previous result.
*/
/**
* Please be careful here with the memory ownership. Once you call
* GetProduct the user of this function is responsable to release this
* memory. Here could be a better option to use smart pointers to avoid
* memory leaks
*/
Product1* GetProduct() {
Product1* result= this->product;
this->Reset();
return result;
}
};
/**
* The Director is only responsible for executing the building steps in a
* particular sequence. It is helpful when producing products according to a
* specific order or configuration. Strictly speaking, the Director class is
* optional, since the client can control builders directly.
*/
class Director{
/**
* @var Builder
*/
private:
Builder* builder;
/**
* The Director works with any builder instance that the client code passes
* to it. This way, the client code may alter the final type of the newly
* assembled product.
*/
public:
void set_builder(Builder* builder){
this->builder=builder;
}
/**
* The Director can construct several product variations using the same
* building steps.
*/
void BuildMinimalViableProduct(){
this->builder->ProducePartA();
}
void BuildFullFeaturedProduct(){
this->builder->ProducePartA();
this->builder->ProducePartB();
this->builder->ProducePartC();
}
};
/**
* The client code creates a builder object, passes it to the director and then
* initiates the construction process. The end result is retrieved from the
* builder object.
*/
/**
* I used raw pointers for simplicity however you may prefer to use smart
* pointers here
*/
void ClientCode(Director& director)
{
ConcreteBuilder1* builder = new ConcreteBuilder1();
director.set_builder(builder);
std::cout << "Standard basic product:\n";
director.BuildMinimalViableProduct();
Product1* p= builder->GetProduct();
p->ListParts();
delete p;
std::cout << "Standard full featured product:\n";
director.BuildFullFeaturedProduct();
p= builder->GetProduct();
p->ListParts();
delete p;
// Remember, the Builder pattern can be used without a Director class.
std::cout << "Custom product:\n";
builder->ProducePartA();
builder->ProducePartC();
p=builder->GetProduct();
p->ListParts();
delete p;
delete builder;
}
int main(){
Director* director= new Director();
ClientCode(*director);
delete director;
return 0;
}
| [
"841476652@qq.com"
] | 841476652@qq.com |
6da12d169adfb1fa9a9b24c1f4633d4c22fffe15 | 0b46515c55a3767f9743d537a61a50666d253245 | /ftrace_reader/src/format_parser.cc | d986b8edc6afd8ab86b56963a714a07df6088c89 | [
"Apache-2.0"
] | permissive | chromy/perfetto | ff1409533c0fe34f7534cc2a434411a596e92ceb | a635f039448528f3385763256387e728e5601528 | refs/heads/demo | 2023-08-31T05:52:17.510889 | 2017-12-01T12:29:14 | 2017-12-01T12:29:14 | 112,371,395 | 0 | 0 | null | 2017-11-28T18:13:01 | 2017-11-28T18:13:00 | null | UTF-8 | C++ | false | false | 3,677 | cc | /*
* Copyright (C) 2017 The Android Open Source Project
*
* 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.
*/
#include "ftrace_reader/format_parser.h"
#include <string.h>
#include <iosfwd>
#include <iostream>
#include <memory>
#include <vector>
#include "base/utils.h"
#include "ftrace_reader/ftrace_to_proto.h"
namespace perfetto {
namespace {
#define MAX_FIELD_LENGTH 127
#define STRINGIFY(x) STRINGIFY2(x)
#define STRINGIFY2(x) #x
const char* kCommonFieldPrefix = "common_";
bool IsCommonFieldName(std::string name) {
return name.compare(0, strlen(kCommonFieldPrefix), kCommonFieldPrefix) == 0;
}
} // namespace
bool ParseFtraceEvent(const std::string& input, FtraceEvent* output) {
std::unique_ptr<char[], base::FreeDeleter> input_copy(strdup(input.c_str()));
char* s = input_copy.get();
char buffer[MAX_FIELD_LENGTH + 1];
bool has_id = false;
bool has_name = false;
int id = 0;
std::string name;
std::vector<FtraceEvent::Field> common_fields;
std::vector<FtraceEvent::Field> fields;
for (char* line = strtok(s, "\n"); line; line = strtok(nullptr, "\n")) {
if (!has_id && sscanf(line, "ID: %d", &id) == 1) {
has_id = true;
continue;
}
if (!has_name &&
sscanf(line, "name: %" STRINGIFY(MAX_FIELD_LENGTH) "s", buffer) == 1) {
name = std::string(buffer);
has_name = true;
continue;
}
if (strcmp("format:", line) == 0) {
continue;
}
size_t offset = 0;
size_t size = 0;
int is_signed = 0;
if (sscanf(line,
"\tfield:%" STRINGIFY(MAX_FIELD_LENGTH) "[^;];\toffset: "
"%zu;\tsize: "
"%zu;\tsigned: %d;",
buffer, &offset, &size, &is_signed) == 4) {
std::string type_and_name(buffer);
FtraceEvent::Field field{type_and_name, offset, size, is_signed == 1};
if (IsCommonFieldName(GetNameFromTypeAndName(type_and_name))) {
common_fields.push_back(field);
} else {
fields.push_back(field);
}
continue;
}
if (strncmp(line, "print fmt:", 10) == 0) {
break;
}
if (output)
fprintf(stderr, "Cannot parse line: \"%s\"\n", line);
return false;
}
if (!has_id || !has_name || fields.size() == 0) {
if (output)
fprintf(stderr, "Could not parse format file: %s.\n",
!has_id ? "no ID found"
: !has_name ? "no name found" : "no fields found");
return false;
}
if (!output)
return true;
output->id = id;
output->name = name;
output->fields = std::move(fields);
output->common_fields = std::move(common_fields);
return true;
}
::std::ostream& operator<<(::std::ostream& os,
const FtraceEvent::Field& field) {
PrintTo(field, &os);
return os;
}
// Allow gtest to pretty print FtraceEvent::Field.
void PrintTo(const FtraceEvent::Field& field, ::std::ostream* os) {
*os << "FtraceEvent::Field(" << field.type_and_name << ", " << field.offset
<< ", " << field.size << ", " << field.is_signed << ")";
}
} // namespace perfetto
| [
"hjd@google.com"
] | hjd@google.com |
2be5b51db106550f62f881b991f96f065abe3b33 | 7d521f182a8b0b4425e6885056c7d3fc95690ae1 | /include/hpp/fcl/shape/convex.h | cafbddd040b474fbab5204eb4c7d156869530db7 | [
"BSD-3-Clause"
] | permissive | rstrudel/hpp-fcl | 08a4a72f3056a23467c44a15f6132bd85c1c0c92 | be06a13ca9a8c25129904d135a58e157c12d5a9c | refs/heads/master | 2020-11-24T00:12:22.466851 | 2019-12-09T12:10:06 | 2019-12-09T17:34:07 | 227,877,538 | 0 | 0 | NOASSERTION | 2019-12-13T16:17:06 | 2019-12-13T16:17:05 | null | UTF-8 | C++ | false | false | 3,378 | h | /*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011-2014, Willow Garage, Inc.
* Copyright (c) 2014-2015, Open Source Robotics Foundation
* 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 Open Source Robotics 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 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.
*/
/** \author Jia Pan */
#ifndef HPP_FCL_SHAPE_CONVEX_H
#define HPP_FCL_SHAPE_CONVEX_H
#include <hpp/fcl/shape/geometric_shapes.h>
namespace hpp
{
namespace fcl
{
/// @brief Convex polytope
/// @tparam PolygonT the polygon class. It must have method \c size() and
/// \c operator[](int i)
template <typename PolygonT>
class Convex : public ConvexBase
{
public:
/// @brief Constructing a convex, providing normal and offset of each polytype surface, and the points and shape topology information
/// \param own_storage whether this class owns the pointers of points and
/// polygons. If owned, they are deleted upon destruction.
/// \param points_ list of 3D points
/// \param num_points_ number of 3D points
/// \param polygons_ \copydoc Convex::polygons
/// \param num_polygons_ the number of polygons.
/// \note num_polygons_ is not the allocated size of polygons_.
Convex(bool ownStorage,
Vec3f* points_, int num_points_,
PolygonT* polygons_, int num_polygons_);
/// @brief Copy constructor
/// Only the list of neighbors is copied.
Convex(const Convex& other);
~Convex();
/// @brief An array of PolygonT object.
/// PolygonT should contains a list of vertices for each polygon,
/// in counter clockwise order.
PolygonT* polygons;
int num_polygons;
/// based on http://number-none.com/blow/inertia/bb_inertia.doc
Matrix3f computeMomentofInertia() const;
Vec3f computeCOM() const;
FCL_REAL computeVolume() const;
protected:
void fillNeighbors();
};
}
} // namespace hpp
#include <hpp/fcl/shape/details/convex.hxx>
#endif
| [
"jmirabel@laas.fr"
] | jmirabel@laas.fr |
f215ba2201330b83161147e8c10de2e475afaf68 | 40924f56177c1a6a576dfc29767b28fc58bc0b4a | /Solaris/Component.cpp | eefc75a8492926e47e73cf5f0df388b68bfd7657 | [] | no_license | suliaron/solaris | 4aecd81e56880f4df418cadeb20a1d2937b62d62 | 1c3ecd0f583fca243d99d49c2bdcf8761b2e3040 | refs/heads/master | 2021-01-23T15:56:53.675986 | 2014-03-21T14:18:07 | 2014-03-21T14:18:07 | 13,243,212 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 152 | cpp | #include "Component.h"
Component::Component()
{
ratio = 0.0;
}
Component::Component(std::string n, double r)
{
name = n;
ratio = r;
}
| [
"a.suli@astro.elte.hu"
] | a.suli@astro.elte.hu |
b87a636171eca49ad133cbb65854dbc00ec6a8f9 | dc298e43ec1521dbb4fe68288127ef32ef57ca6b | /core/src/overture/.deps/android-toolchain-21-arm64/include/c++/4.9.x/__hash_table | 44ba268a0ec819db8d076aa14dd356f8e09a8c20 | [
"LicenseRef-scancode-generic-cla",
"MIT",
"NCSA",
"LicenseRef-scancode-arm-llvm-sga"
] | permissive | 1170762202/ShadowsocksDemo | ce1a599945a89b4aeb5a9f2afe8a6d035dc2e281 | d2f00c31724c71c4d5ca958a37fec00ef55512b9 | refs/heads/master | 2020-04-26T16:01:12.761746 | 2019-03-04T08:08:34 | 2019-03-04T08:08:34 | 173,664,896 | 7 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 95,438 | // -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef _LIBCPP__HASH_TABLE
#define _LIBCPP__HASH_TABLE
#include <__config>
#include <initializer_list>
#include <memory>
#include <iterator>
#include <algorithm>
#include <cmath>
#include <utility>
#include <type_traits>
#include <__debug>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
#endif
_LIBCPP_PUSH_MACROS
#include <__undef_macros>
_LIBCPP_BEGIN_NAMESPACE_STD
template <class _Key, class _Tp>
struct __hash_value_type;
template <class _Key, class _Cp, class _Hash,
bool = is_empty<_Hash>::value && !__libcpp_is_final<_Hash>::value>
class __unordered_map_hasher;
template <class _Key, class _Cp, class _Pred,
bool = is_empty<_Pred>::value && !__libcpp_is_final<_Pred>::value
>
class __unordered_map_equal;
#ifndef _LIBCPP_CXX03_LANG
template <class _Tp>
struct __is_hash_value_type_imp : false_type {};
template <class _Key, class _Value>
struct __is_hash_value_type_imp<__hash_value_type<_Key, _Value>> : true_type {};
template <class ..._Args>
struct __is_hash_value_type : false_type {};
template <class _One>
struct __is_hash_value_type<_One> : __is_hash_value_type_imp<typename __uncvref<_One>::type> {};
#endif
_LIBCPP_FUNC_VIS
size_t __next_prime(size_t __n);
template <class _NodePtr>
struct __hash_node_base
{
typedef typename pointer_traits<_NodePtr>::element_type __node_type;
typedef __hash_node_base __first_node;
typedef typename __rebind_pointer<_NodePtr, __first_node>::type __node_base_pointer;
typedef _NodePtr __node_pointer;
#if defined(_LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB)
typedef __node_base_pointer __next_pointer;
#else
typedef typename conditional<
is_pointer<__node_pointer>::value,
__node_base_pointer,
__node_pointer>::type __next_pointer;
#endif
__next_pointer __next_;
_LIBCPP_INLINE_VISIBILITY
__next_pointer __ptr() _NOEXCEPT {
return static_cast<__next_pointer>(
pointer_traits<__node_base_pointer>::pointer_to(*this));
}
_LIBCPP_INLINE_VISIBILITY
__node_pointer __upcast() _NOEXCEPT {
return static_cast<__node_pointer>(
pointer_traits<__node_base_pointer>::pointer_to(*this));
}
_LIBCPP_INLINE_VISIBILITY
size_t __hash() const _NOEXCEPT {
return static_cast<__node_type const&>(*this).__hash_;
}
_LIBCPP_INLINE_VISIBILITY __hash_node_base() _NOEXCEPT : __next_(nullptr) {}
};
template <class _Tp, class _VoidPtr>
struct __hash_node
: public __hash_node_base
<
typename __rebind_pointer<_VoidPtr, __hash_node<_Tp, _VoidPtr> >::type
>
{
typedef _Tp __node_value_type;
size_t __hash_;
__node_value_type __value_;
};
inline _LIBCPP_INLINE_VISIBILITY
bool
__is_hash_power2(size_t __bc)
{
return __bc > 2 && !(__bc & (__bc - 1));
}
inline _LIBCPP_INLINE_VISIBILITY
size_t
__constrain_hash(size_t __h, size_t __bc)
{
return !(__bc & (__bc - 1)) ? __h & (__bc - 1) :
(__h < __bc ? __h : __h % __bc);
}
inline _LIBCPP_INLINE_VISIBILITY
size_t
__next_hash_pow2(size_t __n)
{
return __n < 2 ? __n : (size_t(1) << (std::numeric_limits<size_t>::digits - __clz(__n-1)));
}
template <class _Tp, class _Hash, class _Equal, class _Alloc> class __hash_table;
template <class _NodePtr> class _LIBCPP_TEMPLATE_VIS __hash_iterator;
template <class _ConstNodePtr> class _LIBCPP_TEMPLATE_VIS __hash_const_iterator;
template <class _NodePtr> class _LIBCPP_TEMPLATE_VIS __hash_local_iterator;
template <class _ConstNodePtr> class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator;
template <class _HashIterator> class _LIBCPP_TEMPLATE_VIS __hash_map_iterator;
template <class _HashIterator> class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator;
template <class _Tp>
struct __hash_key_value_types {
static_assert(!is_reference<_Tp>::value && !is_const<_Tp>::value, "");
typedef _Tp key_type;
typedef _Tp __node_value_type;
typedef _Tp __container_value_type;
static const bool __is_map = false;
_LIBCPP_INLINE_VISIBILITY
static key_type const& __get_key(_Tp const& __v) {
return __v;
}
_LIBCPP_INLINE_VISIBILITY
static __container_value_type const& __get_value(__node_value_type const& __v) {
return __v;
}
_LIBCPP_INLINE_VISIBILITY
static __container_value_type* __get_ptr(__node_value_type& __n) {
return _VSTD::addressof(__n);
}
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY
static __container_value_type&& __move(__node_value_type& __v) {
return _VSTD::move(__v);
}
#endif
};
template <class _Key, class _Tp>
struct __hash_key_value_types<__hash_value_type<_Key, _Tp> > {
typedef _Key key_type;
typedef _Tp mapped_type;
typedef __hash_value_type<_Key, _Tp> __node_value_type;
typedef pair<const _Key, _Tp> __container_value_type;
typedef __container_value_type __map_value_type;
static const bool __is_map = true;
_LIBCPP_INLINE_VISIBILITY
static key_type const& __get_key(__container_value_type const& __v) {
return __v.first;
}
template <class _Up>
_LIBCPP_INLINE_VISIBILITY
static typename enable_if<__is_same_uncvref<_Up, __node_value_type>::value,
__container_value_type const&>::type
__get_value(_Up& __t) {
return __t.__get_value();
}
template <class _Up>
_LIBCPP_INLINE_VISIBILITY
static typename enable_if<__is_same_uncvref<_Up, __container_value_type>::value,
__container_value_type const&>::type
__get_value(_Up& __t) {
return __t;
}
_LIBCPP_INLINE_VISIBILITY
static __container_value_type* __get_ptr(__node_value_type& __n) {
return _VSTD::addressof(__n.__get_value());
}
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY
static pair<key_type&&, mapped_type&&> __move(__node_value_type& __v) {
return __v.__move();
}
#endif
};
template <class _Tp, class _AllocPtr, class _KVTypes = __hash_key_value_types<_Tp>,
bool = _KVTypes::__is_map>
struct __hash_map_pointer_types {};
template <class _Tp, class _AllocPtr, class _KVTypes>
struct __hash_map_pointer_types<_Tp, _AllocPtr, _KVTypes, true> {
typedef typename _KVTypes::__map_value_type _Mv;
typedef typename __rebind_pointer<_AllocPtr, _Mv>::type
__map_value_type_pointer;
typedef typename __rebind_pointer<_AllocPtr, const _Mv>::type
__const_map_value_type_pointer;
};
template <class _NodePtr, class _NodeT = typename pointer_traits<_NodePtr>::element_type>
struct __hash_node_types;
template <class _NodePtr, class _Tp, class _VoidPtr>
struct __hash_node_types<_NodePtr, __hash_node<_Tp, _VoidPtr> >
: public __hash_key_value_types<_Tp>, __hash_map_pointer_types<_Tp, _VoidPtr>
{
typedef __hash_key_value_types<_Tp> __base;
public:
typedef ptrdiff_t difference_type;
typedef size_t size_type;
typedef typename __rebind_pointer<_NodePtr, void>::type __void_pointer;
typedef typename pointer_traits<_NodePtr>::element_type __node_type;
typedef _NodePtr __node_pointer;
typedef __hash_node_base<__node_pointer> __node_base_type;
typedef typename __rebind_pointer<_NodePtr, __node_base_type>::type
__node_base_pointer;
typedef typename __node_base_type::__next_pointer __next_pointer;
typedef _Tp __node_value_type;
typedef typename __rebind_pointer<_VoidPtr, __node_value_type>::type
__node_value_type_pointer;
typedef typename __rebind_pointer<_VoidPtr, const __node_value_type>::type
__const_node_value_type_pointer;
private:
static_assert(!is_const<__node_type>::value,
"_NodePtr should never be a pointer to const");
static_assert((is_same<typename pointer_traits<_VoidPtr>::element_type, void>::value),
"_VoidPtr does not point to unqualified void type");
static_assert((is_same<typename __rebind_pointer<_VoidPtr, __node_type>::type,
_NodePtr>::value), "_VoidPtr does not rebind to _NodePtr.");
};
template <class _HashIterator>
struct __hash_node_types_from_iterator;
template <class _NodePtr>
struct __hash_node_types_from_iterator<__hash_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
template <class _NodePtr>
struct __hash_node_types_from_iterator<__hash_const_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
template <class _NodePtr>
struct __hash_node_types_from_iterator<__hash_local_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
template <class _NodePtr>
struct __hash_node_types_from_iterator<__hash_const_local_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
template <class _NodeValueTp, class _VoidPtr>
struct __make_hash_node_types {
typedef __hash_node<_NodeValueTp, _VoidPtr> _NodeTp;
typedef typename __rebind_pointer<_VoidPtr, _NodeTp>::type _NodePtr;
typedef __hash_node_types<_NodePtr> type;
};
template <class _NodePtr>
class _LIBCPP_TEMPLATE_VIS __hash_iterator
{
typedef __hash_node_types<_NodePtr> _NodeTypes;
typedef _NodePtr __node_pointer;
typedef typename _NodeTypes::__next_pointer __next_pointer;
__next_pointer __node_;
public:
typedef forward_iterator_tag iterator_category;
typedef typename _NodeTypes::__node_value_type value_type;
typedef typename _NodeTypes::difference_type difference_type;
typedef value_type& reference;
typedef typename _NodeTypes::__node_value_type_pointer pointer;
_LIBCPP_INLINE_VISIBILITY __hash_iterator() _NOEXCEPT : __node_(nullptr) {
_LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this));
}
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_iterator(const __hash_iterator& __i)
: __node_(__i.__node_)
{
__get_db()->__iterator_copy(this, &__i);
}
_LIBCPP_INLINE_VISIBILITY
~__hash_iterator()
{
__get_db()->__erase_i(this);
}
_LIBCPP_INLINE_VISIBILITY
__hash_iterator& operator=(const __hash_iterator& __i)
{
if (this != &__i)
{
__get_db()->__iterator_copy(this, &__i);
__node_ = __i.__node_;
}
return *this;
}
#endif // _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
reference operator*() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container iterator");
return __node_->__upcast()->__value_;
}
_LIBCPP_INLINE_VISIBILITY
pointer operator->() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container iterator");
return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_);
}
_LIBCPP_INLINE_VISIBILITY
__hash_iterator& operator++() {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to increment non-incrementable unordered container iterator");
__node_ = __node_->__next_;
return *this;
}
_LIBCPP_INLINE_VISIBILITY
__hash_iterator operator++(int)
{
__hash_iterator __t(*this);
++(*this);
return __t;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_iterator& __x, const __hash_iterator& __y)
{
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator!=(const __hash_iterator& __x, const __hash_iterator& __y)
{return !(__x == __y);}
private:
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_iterator(__next_pointer __node, const void* __c) _NOEXCEPT
: __node_(__node)
{
__get_db()->__insert_ic(this, __c);
}
#else
_LIBCPP_INLINE_VISIBILITY
__hash_iterator(__next_pointer __node) _NOEXCEPT
: __node_(__node)
{}
#endif
template <class, class, class, class> friend class __hash_table;
template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_const_iterator;
template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_iterator;
template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_map;
template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_multimap;
};
template <class _NodePtr>
class _LIBCPP_TEMPLATE_VIS __hash_const_iterator
{
static_assert(!is_const<typename pointer_traits<_NodePtr>::element_type>::value, "");
typedef __hash_node_types<_NodePtr> _NodeTypes;
typedef _NodePtr __node_pointer;
typedef typename _NodeTypes::__next_pointer __next_pointer;
__next_pointer __node_;
public:
typedef __hash_iterator<_NodePtr> __non_const_iterator;
typedef forward_iterator_tag iterator_category;
typedef typename _NodeTypes::__node_value_type value_type;
typedef typename _NodeTypes::difference_type difference_type;
typedef const value_type& reference;
typedef typename _NodeTypes::__const_node_value_type_pointer pointer;
_LIBCPP_INLINE_VISIBILITY __hash_const_iterator() _NOEXCEPT : __node_(nullptr) {
_LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this));
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator(const __non_const_iterator& __x) _NOEXCEPT
: __node_(__x.__node_)
{
_LIBCPP_DEBUG_MODE(__get_db()->__iterator_copy(this, &__x));
}
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator(const __hash_const_iterator& __i)
: __node_(__i.__node_)
{
__get_db()->__iterator_copy(this, &__i);
}
_LIBCPP_INLINE_VISIBILITY
~__hash_const_iterator()
{
__get_db()->__erase_i(this);
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator& operator=(const __hash_const_iterator& __i)
{
if (this != &__i)
{
__get_db()->__iterator_copy(this, &__i);
__node_ = __i.__node_;
}
return *this;
}
#endif // _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
reference operator*() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container const_iterator");
return __node_->__upcast()->__value_;
}
_LIBCPP_INLINE_VISIBILITY
pointer operator->() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container const_iterator");
return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_);
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator& operator++() {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to increment non-incrementable unordered container const_iterator");
__node_ = __node_->__next_;
return *this;
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator operator++(int)
{
__hash_const_iterator __t(*this);
++(*this);
return __t;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_const_iterator& __x, const __hash_const_iterator& __y)
{
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator!=(const __hash_const_iterator& __x, const __hash_const_iterator& __y)
{return !(__x == __y);}
private:
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator(__next_pointer __node, const void* __c) _NOEXCEPT
: __node_(__node)
{
__get_db()->__insert_ic(this, __c);
}
#else
_LIBCPP_INLINE_VISIBILITY
__hash_const_iterator(__next_pointer __node) _NOEXCEPT
: __node_(__node)
{}
#endif
template <class, class, class, class> friend class __hash_table;
template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator;
template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_map;
template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_multimap;
};
template <class _NodePtr>
class _LIBCPP_TEMPLATE_VIS __hash_local_iterator
{
typedef __hash_node_types<_NodePtr> _NodeTypes;
typedef _NodePtr __node_pointer;
typedef typename _NodeTypes::__next_pointer __next_pointer;
__next_pointer __node_;
size_t __bucket_;
size_t __bucket_count_;
public:
typedef forward_iterator_tag iterator_category;
typedef typename _NodeTypes::__node_value_type value_type;
typedef typename _NodeTypes::difference_type difference_type;
typedef value_type& reference;
typedef typename _NodeTypes::__node_value_type_pointer pointer;
_LIBCPP_INLINE_VISIBILITY __hash_local_iterator() _NOEXCEPT : __node_(nullptr) {
_LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this));
}
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_local_iterator(const __hash_local_iterator& __i)
: __node_(__i.__node_),
__bucket_(__i.__bucket_),
__bucket_count_(__i.__bucket_count_)
{
__get_db()->__iterator_copy(this, &__i);
}
_LIBCPP_INLINE_VISIBILITY
~__hash_local_iterator()
{
__get_db()->__erase_i(this);
}
_LIBCPP_INLINE_VISIBILITY
__hash_local_iterator& operator=(const __hash_local_iterator& __i)
{
if (this != &__i)
{
__get_db()->__iterator_copy(this, &__i);
__node_ = __i.__node_;
__bucket_ = __i.__bucket_;
__bucket_count_ = __i.__bucket_count_;
}
return *this;
}
#endif // _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
reference operator*() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container local_iterator");
return __node_->__upcast()->__value_;
}
_LIBCPP_INLINE_VISIBILITY
pointer operator->() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container local_iterator");
return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_);
}
_LIBCPP_INLINE_VISIBILITY
__hash_local_iterator& operator++() {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to increment non-incrementable unordered container local_iterator");
__node_ = __node_->__next_;
if (__node_ != nullptr && __constrain_hash(__node_->__hash(), __bucket_count_) != __bucket_)
__node_ = nullptr;
return *this;
}
_LIBCPP_INLINE_VISIBILITY
__hash_local_iterator operator++(int)
{
__hash_local_iterator __t(*this);
++(*this);
return __t;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_local_iterator& __x, const __hash_local_iterator& __y)
{
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator!=(const __hash_local_iterator& __x, const __hash_local_iterator& __y)
{return !(__x == __y);}
private:
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_local_iterator(__next_pointer __node, size_t __bucket,
size_t __bucket_count, const void* __c) _NOEXCEPT
: __node_(__node),
__bucket_(__bucket),
__bucket_count_(__bucket_count)
{
__get_db()->__insert_ic(this, __c);
if (__node_ != nullptr)
__node_ = __node_->__next_;
}
#else
_LIBCPP_INLINE_VISIBILITY
__hash_local_iterator(__next_pointer __node, size_t __bucket,
size_t __bucket_count) _NOEXCEPT
: __node_(__node),
__bucket_(__bucket),
__bucket_count_(__bucket_count)
{
if (__node_ != nullptr)
__node_ = __node_->__next_;
}
#endif
template <class, class, class, class> friend class __hash_table;
template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator;
template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_iterator;
};
template <class _ConstNodePtr>
class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator
{
typedef __hash_node_types<_ConstNodePtr> _NodeTypes;
typedef _ConstNodePtr __node_pointer;
typedef typename _NodeTypes::__next_pointer __next_pointer;
__next_pointer __node_;
size_t __bucket_;
size_t __bucket_count_;
typedef pointer_traits<__node_pointer> __pointer_traits;
typedef typename __pointer_traits::element_type __node;
typedef typename remove_const<__node>::type __non_const_node;
typedef typename __rebind_pointer<__node_pointer, __non_const_node>::type
__non_const_node_pointer;
public:
typedef __hash_local_iterator<__non_const_node_pointer>
__non_const_iterator;
typedef forward_iterator_tag iterator_category;
typedef typename _NodeTypes::__node_value_type value_type;
typedef typename _NodeTypes::difference_type difference_type;
typedef const value_type& reference;
typedef typename _NodeTypes::__const_node_value_type_pointer pointer;
_LIBCPP_INLINE_VISIBILITY __hash_const_local_iterator() _NOEXCEPT : __node_(nullptr) {
_LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this));
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator(const __non_const_iterator& __x) _NOEXCEPT
: __node_(__x.__node_),
__bucket_(__x.__bucket_),
__bucket_count_(__x.__bucket_count_)
{
_LIBCPP_DEBUG_MODE(__get_db()->__iterator_copy(this, &__x));
}
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator(const __hash_const_local_iterator& __i)
: __node_(__i.__node_),
__bucket_(__i.__bucket_),
__bucket_count_(__i.__bucket_count_)
{
__get_db()->__iterator_copy(this, &__i);
}
_LIBCPP_INLINE_VISIBILITY
~__hash_const_local_iterator()
{
__get_db()->__erase_i(this);
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator& operator=(const __hash_const_local_iterator& __i)
{
if (this != &__i)
{
__get_db()->__iterator_copy(this, &__i);
__node_ = __i.__node_;
__bucket_ = __i.__bucket_;
__bucket_count_ = __i.__bucket_count_;
}
return *this;
}
#endif // _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
reference operator*() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container const_local_iterator");
return __node_->__upcast()->__value_;
}
_LIBCPP_INLINE_VISIBILITY
pointer operator->() const {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to dereference a non-dereferenceable unordered container const_local_iterator");
return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_);
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator& operator++() {
_LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this),
"Attempted to increment non-incrementable unordered container const_local_iterator");
__node_ = __node_->__next_;
if (__node_ != nullptr && __constrain_hash(__node_->__hash(), __bucket_count_) != __bucket_)
__node_ = nullptr;
return *this;
}
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator operator++(int)
{
__hash_const_local_iterator __t(*this);
++(*this);
return __t;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator==(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y)
{
return __x.__node_ == __y.__node_;
}
friend _LIBCPP_INLINE_VISIBILITY
bool operator!=(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y)
{return !(__x == __y);}
private:
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator(__next_pointer __node, size_t __bucket,
size_t __bucket_count, const void* __c) _NOEXCEPT
: __node_(__node),
__bucket_(__bucket),
__bucket_count_(__bucket_count)
{
__get_db()->__insert_ic(this, __c);
if (__node_ != nullptr)
__node_ = __node_->__next_;
}
#else
_LIBCPP_INLINE_VISIBILITY
__hash_const_local_iterator(__next_pointer __node, size_t __bucket,
size_t __bucket_count) _NOEXCEPT
: __node_(__node),
__bucket_(__bucket),
__bucket_count_(__bucket_count)
{
if (__node_ != nullptr)
__node_ = __node_->__next_;
}
#endif
template <class, class, class, class> friend class __hash_table;
template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator;
};
template <class _Alloc>
class __bucket_list_deallocator
{
typedef _Alloc allocator_type;
typedef allocator_traits<allocator_type> __alloc_traits;
typedef typename __alloc_traits::size_type size_type;
__compressed_pair<size_type, allocator_type> __data_;
public:
typedef typename __alloc_traits::pointer pointer;
_LIBCPP_INLINE_VISIBILITY
__bucket_list_deallocator()
_NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
: __data_(0) {}
_LIBCPP_INLINE_VISIBILITY
__bucket_list_deallocator(const allocator_type& __a, size_type __size)
_NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
: __data_(__size, __a) {}
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY
__bucket_list_deallocator(__bucket_list_deallocator&& __x)
_NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
: __data_(_VSTD::move(__x.__data_))
{
__x.size() = 0;
}
#endif
_LIBCPP_INLINE_VISIBILITY
size_type& size() _NOEXCEPT {return __data_.first();}
_LIBCPP_INLINE_VISIBILITY
size_type size() const _NOEXCEPT {return __data_.first();}
_LIBCPP_INLINE_VISIBILITY
allocator_type& __alloc() _NOEXCEPT {return __data_.second();}
_LIBCPP_INLINE_VISIBILITY
const allocator_type& __alloc() const _NOEXCEPT {return __data_.second();}
_LIBCPP_INLINE_VISIBILITY
void operator()(pointer __p) _NOEXCEPT
{
__alloc_traits::deallocate(__alloc(), __p, size());
}
};
template <class _Alloc> class __hash_map_node_destructor;
template <class _Alloc>
class __hash_node_destructor
{
typedef _Alloc allocator_type;
typedef allocator_traits<allocator_type> __alloc_traits;
public:
typedef typename __alloc_traits::pointer pointer;
private:
typedef __hash_node_types<pointer> _NodeTypes;
allocator_type& __na_;
__hash_node_destructor& operator=(const __hash_node_destructor&);
public:
bool __value_constructed;
_LIBCPP_INLINE_VISIBILITY
explicit __hash_node_destructor(allocator_type& __na,
bool __constructed = false) _NOEXCEPT
: __na_(__na),
__value_constructed(__constructed)
{}
_LIBCPP_INLINE_VISIBILITY
void operator()(pointer __p) _NOEXCEPT
{
if (__value_constructed)
__alloc_traits::destroy(__na_, _NodeTypes::__get_ptr(__p->__value_));
if (__p)
__alloc_traits::deallocate(__na_, __p, 1);
}
template <class> friend class __hash_map_node_destructor;
};
#ifndef _LIBCPP_CXX03_LANG
template <class _Key, class _Hash, class _Equal, class _Alloc>
struct __diagnose_hash_table_helper {
static constexpr bool __trigger_diagnostics()
_LIBCPP_DIAGNOSE_WARNING(__check_hash_requirements<_Key, _Hash>::value
&& !__invokable<_Hash const&, _Key const&>::value,
"the specified hash functor does not provide a const call operator")
_LIBCPP_DIAGNOSE_WARNING(is_copy_constructible<_Equal>::value
&& !__invokable<_Equal const&, _Key const&, _Key const&>::value,
"the specified comparator type does not provide a const call operator")
{
static_assert(__check_hash_requirements<_Key, _Hash>::value,
"the specified hash does not meet the Hash requirements");
static_assert(is_copy_constructible<_Equal>::value,
"the specified comparator is required to be copy constructible");
return true;
}
};
template <class _Key, class _Value, class _Hash, class _Equal, class _Alloc>
struct __diagnose_hash_table_helper<
__hash_value_type<_Key, _Value>,
__unordered_map_hasher<_Key, __hash_value_type<_Key, _Value>, _Hash>,
__unordered_map_equal<_Key, __hash_value_type<_Key, _Value>, _Equal>,
_Alloc>
: __diagnose_hash_table_helper<_Key, _Hash, _Equal, _Alloc>
{
};
#endif // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
class __hash_table
{
public:
typedef _Tp value_type;
typedef _Hash hasher;
typedef _Equal key_equal;
typedef _Alloc allocator_type;
private:
typedef allocator_traits<allocator_type> __alloc_traits;
typedef typename
__make_hash_node_types<value_type, typename __alloc_traits::void_pointer>::type
_NodeTypes;
public:
typedef typename _NodeTypes::__node_value_type __node_value_type;
typedef typename _NodeTypes::__container_value_type __container_value_type;
typedef typename _NodeTypes::key_type key_type;
typedef value_type& reference;
typedef const value_type& const_reference;
typedef typename __alloc_traits::pointer pointer;
typedef typename __alloc_traits::const_pointer const_pointer;
#ifndef _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE
typedef typename __alloc_traits::size_type size_type;
#else
typedef typename _NodeTypes::size_type size_type;
#endif
typedef typename _NodeTypes::difference_type difference_type;
public:
// Create __node
typedef typename _NodeTypes::__node_type __node;
typedef typename __rebind_alloc_helper<__alloc_traits, __node>::type __node_allocator;
typedef allocator_traits<__node_allocator> __node_traits;
typedef typename _NodeTypes::__void_pointer __void_pointer;
typedef typename _NodeTypes::__node_pointer __node_pointer;
typedef typename _NodeTypes::__node_pointer __node_const_pointer;
typedef typename _NodeTypes::__node_base_type __first_node;
typedef typename _NodeTypes::__node_base_pointer __node_base_pointer;
typedef typename _NodeTypes::__next_pointer __next_pointer;
private:
// check for sane allocator pointer rebinding semantics. Rebinding the
// allocator for a new pointer type should be exactly the same as rebinding
// the pointer using 'pointer_traits'.
static_assert((is_same<__node_pointer, typename __node_traits::pointer>::value),
"Allocator does not rebind pointers in a sane manner.");
typedef typename __rebind_alloc_helper<__node_traits, __first_node>::type
__node_base_allocator;
typedef allocator_traits<__node_base_allocator> __node_base_traits;
static_assert((is_same<__node_base_pointer, typename __node_base_traits::pointer>::value),
"Allocator does not rebind pointers in a sane manner.");
private:
typedef typename __rebind_alloc_helper<__node_traits, __next_pointer>::type __pointer_allocator;
typedef __bucket_list_deallocator<__pointer_allocator> __bucket_list_deleter;
typedef unique_ptr<__next_pointer[], __bucket_list_deleter> __bucket_list;
typedef allocator_traits<__pointer_allocator> __pointer_alloc_traits;
typedef typename __bucket_list_deleter::pointer __node_pointer_pointer;
#ifndef _LIBCPP_CXX03_LANG
static_assert(__diagnose_hash_table_helper<_Tp, _Hash, _Equal, _Alloc>::__trigger_diagnostics(), "");
#endif
// --- Member data begin ---
__bucket_list __bucket_list_;
__compressed_pair<__first_node, __node_allocator> __p1_;
__compressed_pair<size_type, hasher> __p2_;
__compressed_pair<float, key_equal> __p3_;
// --- Member data end ---
_LIBCPP_INLINE_VISIBILITY
size_type& size() _NOEXCEPT {return __p2_.first();}
public:
_LIBCPP_INLINE_VISIBILITY
size_type size() const _NOEXCEPT {return __p2_.first();}
_LIBCPP_INLINE_VISIBILITY
hasher& hash_function() _NOEXCEPT {return __p2_.second();}
_LIBCPP_INLINE_VISIBILITY
const hasher& hash_function() const _NOEXCEPT {return __p2_.second();}
_LIBCPP_INLINE_VISIBILITY
float& max_load_factor() _NOEXCEPT {return __p3_.first();}
_LIBCPP_INLINE_VISIBILITY
float max_load_factor() const _NOEXCEPT {return __p3_.first();}
_LIBCPP_INLINE_VISIBILITY
key_equal& key_eq() _NOEXCEPT {return __p3_.second();}
_LIBCPP_INLINE_VISIBILITY
const key_equal& key_eq() const _NOEXCEPT {return __p3_.second();}
_LIBCPP_INLINE_VISIBILITY
__node_allocator& __node_alloc() _NOEXCEPT {return __p1_.second();}
_LIBCPP_INLINE_VISIBILITY
const __node_allocator& __node_alloc() const _NOEXCEPT
{return __p1_.second();}
public:
typedef __hash_iterator<__node_pointer> iterator;
typedef __hash_const_iterator<__node_pointer> const_iterator;
typedef __hash_local_iterator<__node_pointer> local_iterator;
typedef __hash_const_local_iterator<__node_pointer> const_local_iterator;
_LIBCPP_INLINE_VISIBILITY
__hash_table()
_NOEXCEPT_(
is_nothrow_default_constructible<__bucket_list>::value &&
is_nothrow_default_constructible<__first_node>::value &&
is_nothrow_default_constructible<__node_allocator>::value &&
is_nothrow_default_constructible<hasher>::value &&
is_nothrow_default_constructible<key_equal>::value);
_LIBCPP_INLINE_VISIBILITY
__hash_table(const hasher& __hf, const key_equal& __eql);
__hash_table(const hasher& __hf, const key_equal& __eql,
const allocator_type& __a);
explicit __hash_table(const allocator_type& __a);
__hash_table(const __hash_table& __u);
__hash_table(const __hash_table& __u, const allocator_type& __a);
#ifndef _LIBCPP_CXX03_LANG
__hash_table(__hash_table&& __u)
_NOEXCEPT_(
is_nothrow_move_constructible<__bucket_list>::value &&
is_nothrow_move_constructible<__first_node>::value &&
is_nothrow_move_constructible<__node_allocator>::value &&
is_nothrow_move_constructible<hasher>::value &&
is_nothrow_move_constructible<key_equal>::value);
__hash_table(__hash_table&& __u, const allocator_type& __a);
#endif // _LIBCPP_CXX03_LANG
~__hash_table();
__hash_table& operator=(const __hash_table& __u);
#ifndef _LIBCPP_CXX03_LANG
_LIBCPP_INLINE_VISIBILITY
__hash_table& operator=(__hash_table&& __u)
_NOEXCEPT_(
__node_traits::propagate_on_container_move_assignment::value &&
is_nothrow_move_assignable<__node_allocator>::value &&
is_nothrow_move_assignable<hasher>::value &&
is_nothrow_move_assignable<key_equal>::value);
#endif
template <class _InputIterator>
void __assign_unique(_InputIterator __first, _InputIterator __last);
template <class _InputIterator>
void __assign_multi(_InputIterator __first, _InputIterator __last);
_LIBCPP_INLINE_VISIBILITY
size_type max_size() const _NOEXCEPT
{
return std::min<size_type>(
__node_traits::max_size(__node_alloc()),
numeric_limits<difference_type >::max()
);
}
pair<iterator, bool> __node_insert_unique(__node_pointer __nd);
iterator __node_insert_multi(__node_pointer __nd);
iterator __node_insert_multi(const_iterator __p,
__node_pointer __nd);
#ifndef _LIBCPP_CXX03_LANG
template <class _Key, class ..._Args>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __emplace_unique_key_args(_Key const& __k, _Args&&... __args);
template <class... _Args>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __emplace_unique_impl(_Args&&... __args);
template <class _Pp>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __emplace_unique(_Pp&& __x) {
return __emplace_unique_extract_key(_VSTD::forward<_Pp>(__x),
__can_extract_key<_Pp, key_type>());
}
template <class _First, class _Second>
_LIBCPP_INLINE_VISIBILITY
typename enable_if<
__can_extract_map_key<_First, key_type, __container_value_type>::value,
pair<iterator, bool>
>::type __emplace_unique(_First&& __f, _Second&& __s) {
return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f),
_VSTD::forward<_Second>(__s));
}
template <class... _Args>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __emplace_unique(_Args&&... __args) {
return __emplace_unique_impl(_VSTD::forward<_Args>(__args)...);
}
template <class _Pp>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool>
__emplace_unique_extract_key(_Pp&& __x, __extract_key_fail_tag) {
return __emplace_unique_impl(_VSTD::forward<_Pp>(__x));
}
template <class _Pp>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool>
__emplace_unique_extract_key(_Pp&& __x, __extract_key_self_tag) {
return __emplace_unique_key_args(__x, _VSTD::forward<_Pp>(__x));
}
template <class _Pp>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool>
__emplace_unique_extract_key(_Pp&& __x, __extract_key_first_tag) {
return __emplace_unique_key_args(__x.first, _VSTD::forward<_Pp>(__x));
}
template <class... _Args>
_LIBCPP_INLINE_VISIBILITY
iterator __emplace_multi(_Args&&... __args);
template <class... _Args>
_LIBCPP_INLINE_VISIBILITY
iterator __emplace_hint_multi(const_iterator __p, _Args&&... __args);
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool>
__insert_unique(__container_value_type&& __x) {
return __emplace_unique_key_args(_NodeTypes::__get_key(__x), _VSTD::move(__x));
}
template <class _Pp, class = typename enable_if<
!__is_same_uncvref<_Pp, __container_value_type>::value
>::type>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __insert_unique(_Pp&& __x) {
return __emplace_unique(_VSTD::forward<_Pp>(__x));
}
template <class _Pp>
_LIBCPP_INLINE_VISIBILITY
iterator __insert_multi(_Pp&& __x) {
return __emplace_multi(_VSTD::forward<_Pp>(__x));
}
template <class _Pp>
_LIBCPP_INLINE_VISIBILITY
iterator __insert_multi(const_iterator __p, _Pp&& __x) {
return __emplace_hint_multi(__p, _VSTD::forward<_Pp>(__x));
}
#else // !defined(_LIBCPP_CXX03_LANG)
template <class _Key, class _Args>
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __emplace_unique_key_args(_Key const&, _Args& __args);
iterator __insert_multi(const __container_value_type& __x);
iterator __insert_multi(const_iterator __p, const __container_value_type& __x);
#endif
_LIBCPP_INLINE_VISIBILITY
pair<iterator, bool> __insert_unique(const __container_value_type& __x) {
return __emplace_unique_key_args(_NodeTypes::__get_key(__x), __x);
}
void clear() _NOEXCEPT;
void rehash(size_type __n);
_LIBCPP_INLINE_VISIBILITY void reserve(size_type __n)
{rehash(static_cast<size_type>(ceil(__n / max_load_factor())));}
_LIBCPP_INLINE_VISIBILITY
size_type bucket_count() const _NOEXCEPT
{
return __bucket_list_.get_deleter().size();
}
_LIBCPP_INLINE_VISIBILITY
iterator begin() _NOEXCEPT;
_LIBCPP_INLINE_VISIBILITY
iterator end() _NOEXCEPT;
_LIBCPP_INLINE_VISIBILITY
const_iterator begin() const _NOEXCEPT;
_LIBCPP_INLINE_VISIBILITY
const_iterator end() const _NOEXCEPT;
template <class _Key>
_LIBCPP_INLINE_VISIBILITY
size_type bucket(const _Key& __k) const
{
_LIBCPP_ASSERT(bucket_count() > 0,
"unordered container::bucket(key) called when bucket_count() == 0");
return __constrain_hash(hash_function()(__k), bucket_count());
}
template <class _Key>
iterator find(const _Key& __x);
template <class _Key>
const_iterator find(const _Key& __x) const;
typedef __hash_node_destructor<__node_allocator> _Dp;
typedef unique_ptr<__node, _Dp> __node_holder;
iterator erase(const_iterator __p);
iterator erase(const_iterator __first, const_iterator __last);
template <class _Key>
size_type __erase_unique(const _Key& __k);
template <class _Key>
size_type __erase_multi(const _Key& __k);
__node_holder remove(const_iterator __p) _NOEXCEPT;
template <class _Key>
_LIBCPP_INLINE_VISIBILITY
size_type __count_unique(const _Key& __k) const;
template <class _Key>
size_type __count_multi(const _Key& __k) const;
template <class _Key>
pair<iterator, iterator>
__equal_range_unique(const _Key& __k);
template <class _Key>
pair<const_iterator, const_iterator>
__equal_range_unique(const _Key& __k) const;
template <class _Key>
pair<iterator, iterator>
__equal_range_multi(const _Key& __k);
template <class _Key>
pair<const_iterator, const_iterator>
__equal_range_multi(const _Key& __k) const;
void swap(__hash_table& __u)
#if _LIBCPP_STD_VER <= 11
_NOEXCEPT_DEBUG_(
__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value
&& (!allocator_traits<__pointer_allocator>::propagate_on_container_swap::value
|| __is_nothrow_swappable<__pointer_allocator>::value)
&& (!__node_traits::propagate_on_container_swap::value
|| __is_nothrow_swappable<__node_allocator>::value)
);
#else
_NOEXCEPT_DEBUG_(__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value);
#endif
_LIBCPP_INLINE_VISIBILITY
size_type max_bucket_count() const _NOEXCEPT
{return max_size(); }
size_type bucket_size(size_type __n) const;
_LIBCPP_INLINE_VISIBILITY float load_factor() const _NOEXCEPT
{
size_type __bc = bucket_count();
return __bc != 0 ? (float)size() / __bc : 0.f;
}
_LIBCPP_INLINE_VISIBILITY void max_load_factor(float __mlf) _NOEXCEPT
{
_LIBCPP_ASSERT(__mlf > 0,
"unordered container::max_load_factor(lf) called with lf <= 0");
max_load_factor() = _VSTD::max(__mlf, load_factor());
}
_LIBCPP_INLINE_VISIBILITY
local_iterator
begin(size_type __n)
{
_LIBCPP_ASSERT(__n < bucket_count(),
"unordered container::begin(n) called with n >= bucket_count()");
#if _LIBCPP_DEBUG_LEVEL >= 2
return local_iterator(__bucket_list_[__n], __n, bucket_count(), this);
#else
return local_iterator(__bucket_list_[__n], __n, bucket_count());
#endif
}
_LIBCPP_INLINE_VISIBILITY
local_iterator
end(size_type __n)
{
_LIBCPP_ASSERT(__n < bucket_count(),
"unordered container::end(n) called with n >= bucket_count()");
#if _LIBCPP_DEBUG_LEVEL >= 2
return local_iterator(nullptr, __n, bucket_count(), this);
#else
return local_iterator(nullptr, __n, bucket_count());
#endif
}
_LIBCPP_INLINE_VISIBILITY
const_local_iterator
cbegin(size_type __n) const
{
_LIBCPP_ASSERT(__n < bucket_count(),
"unordered container::cbegin(n) called with n >= bucket_count()");
#if _LIBCPP_DEBUG_LEVEL >= 2
return const_local_iterator(__bucket_list_[__n], __n, bucket_count(), this);
#else
return const_local_iterator(__bucket_list_[__n], __n, bucket_count());
#endif
}
_LIBCPP_INLINE_VISIBILITY
const_local_iterator
cend(size_type __n) const
{
_LIBCPP_ASSERT(__n < bucket_count(),
"unordered container::cend(n) called with n >= bucket_count()");
#if _LIBCPP_DEBUG_LEVEL >= 2
return const_local_iterator(nullptr, __n, bucket_count(), this);
#else
return const_local_iterator(nullptr, __n, bucket_count());
#endif
}
#if _LIBCPP_DEBUG_LEVEL >= 2
bool __dereferenceable(const const_iterator* __i) const;
bool __decrementable(const const_iterator* __i) const;
bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
#endif // _LIBCPP_DEBUG_LEVEL >= 2
private:
void __rehash(size_type __n);
#ifndef _LIBCPP_CXX03_LANG
template <class ..._Args>
__node_holder __construct_node(_Args&& ...__args);
template <class _First, class ..._Rest>
__node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... __rest);
#else // _LIBCPP_CXX03_LANG
__node_holder __construct_node(const __container_value_type& __v);
__node_holder __construct_node_hash(size_t __hash, const __container_value_type& __v);
#endif
_LIBCPP_INLINE_VISIBILITY
void __copy_assign_alloc(const __hash_table& __u)
{__copy_assign_alloc(__u, integral_constant<bool,
__node_traits::propagate_on_container_copy_assignment::value>());}
void __copy_assign_alloc(const __hash_table& __u, true_type);
_LIBCPP_INLINE_VISIBILITY
void __copy_assign_alloc(const __hash_table&, false_type) {}
#ifndef _LIBCPP_CXX03_LANG
void __move_assign(__hash_table& __u, false_type);
void __move_assign(__hash_table& __u, true_type)
_NOEXCEPT_(
is_nothrow_move_assignable<__node_allocator>::value &&
is_nothrow_move_assignable<hasher>::value &&
is_nothrow_move_assignable<key_equal>::value);
_LIBCPP_INLINE_VISIBILITY
void __move_assign_alloc(__hash_table& __u)
_NOEXCEPT_(
!__node_traits::propagate_on_container_move_assignment::value ||
(is_nothrow_move_assignable<__pointer_allocator>::value &&
is_nothrow_move_assignable<__node_allocator>::value))
{__move_assign_alloc(__u, integral_constant<bool,
__node_traits::propagate_on_container_move_assignment::value>());}
_LIBCPP_INLINE_VISIBILITY
void __move_assign_alloc(__hash_table& __u, true_type)
_NOEXCEPT_(
is_nothrow_move_assignable<__pointer_allocator>::value &&
is_nothrow_move_assignable<__node_allocator>::value)
{
__bucket_list_.get_deleter().__alloc() =
_VSTD::move(__u.__bucket_list_.get_deleter().__alloc());
__node_alloc() = _VSTD::move(__u.__node_alloc());
}
_LIBCPP_INLINE_VISIBILITY
void __move_assign_alloc(__hash_table&, false_type) _NOEXCEPT {}
#endif // _LIBCPP_CXX03_LANG
void __deallocate_node(__next_pointer __np) _NOEXCEPT;
__next_pointer __detach() _NOEXCEPT;
template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_map;
template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_multimap;
};
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table()
_NOEXCEPT_(
is_nothrow_default_constructible<__bucket_list>::value &&
is_nothrow_default_constructible<__first_node>::value &&
is_nothrow_default_constructible<__node_allocator>::value &&
is_nothrow_default_constructible<hasher>::value &&
is_nothrow_default_constructible<key_equal>::value)
: __p2_(0),
__p3_(1.0f)
{
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const hasher& __hf,
const key_equal& __eql)
: __bucket_list_(nullptr, __bucket_list_deleter()),
__p1_(),
__p2_(0, __hf),
__p3_(1.0f, __eql)
{
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const hasher& __hf,
const key_equal& __eql,
const allocator_type& __a)
: __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
__p1_(__second_tag(), __node_allocator(__a)),
__p2_(0, __hf),
__p3_(1.0f, __eql)
{
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const allocator_type& __a)
: __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
__p1_(__second_tag(), __node_allocator(__a)),
__p2_(0),
__p3_(1.0f)
{
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const __hash_table& __u)
: __bucket_list_(nullptr,
__bucket_list_deleter(allocator_traits<__pointer_allocator>::
select_on_container_copy_construction(
__u.__bucket_list_.get_deleter().__alloc()), 0)),
__p1_(__second_tag(), allocator_traits<__node_allocator>::
select_on_container_copy_construction(__u.__node_alloc())),
__p2_(0, __u.hash_function()),
__p3_(__u.__p3_)
{
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const __hash_table& __u,
const allocator_type& __a)
: __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
__p1_(__second_tag(), __node_allocator(__a)),
__p2_(0, __u.hash_function()),
__p3_(__u.__p3_)
{
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u)
_NOEXCEPT_(
is_nothrow_move_constructible<__bucket_list>::value &&
is_nothrow_move_constructible<__first_node>::value &&
is_nothrow_move_constructible<__node_allocator>::value &&
is_nothrow_move_constructible<hasher>::value &&
is_nothrow_move_constructible<key_equal>::value)
: __bucket_list_(_VSTD::move(__u.__bucket_list_)),
__p1_(_VSTD::move(__u.__p1_)),
__p2_(_VSTD::move(__u.__p2_)),
__p3_(_VSTD::move(__u.__p3_))
{
if (size() > 0)
{
__bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] =
__p1_.first().__ptr();
__u.__p1_.first().__next_ = nullptr;
__u.size() = 0;
}
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u,
const allocator_type& __a)
: __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
__p1_(__second_tag(), __node_allocator(__a)),
__p2_(0, _VSTD::move(__u.hash_function())),
__p3_(_VSTD::move(__u.__p3_))
{
if (__a == allocator_type(__u.__node_alloc()))
{
__bucket_list_.reset(__u.__bucket_list_.release());
__bucket_list_.get_deleter().size() = __u.__bucket_list_.get_deleter().size();
__u.__bucket_list_.get_deleter().size() = 0;
if (__u.size() > 0)
{
__p1_.first().__next_ = __u.__p1_.first().__next_;
__u.__p1_.first().__next_ = nullptr;
__bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] =
__p1_.first().__ptr();
size() = __u.size();
__u.size() = 0;
}
}
}
#endif // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::~__hash_table()
{
#if defined(_LIBCPP_CXX03_LANG)
static_assert((is_copy_constructible<key_equal>::value),
"Predicate must be copy-constructible.");
static_assert((is_copy_constructible<hasher>::value),
"Hasher must be copy-constructible.");
#endif
__deallocate_node(__p1_.first().__next_);
#if _LIBCPP_DEBUG_LEVEL >= 2
__get_db()->__erase_c(this);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__copy_assign_alloc(
const __hash_table& __u, true_type)
{
if (__node_alloc() != __u.__node_alloc())
{
clear();
__bucket_list_.reset();
__bucket_list_.get_deleter().size() = 0;
}
__bucket_list_.get_deleter().__alloc() = __u.__bucket_list_.get_deleter().__alloc();
__node_alloc() = __u.__node_alloc();
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
__hash_table<_Tp, _Hash, _Equal, _Alloc>&
__hash_table<_Tp, _Hash, _Equal, _Alloc>::operator=(const __hash_table& __u)
{
if (this != &__u)
{
__copy_assign_alloc(__u);
hash_function() = __u.hash_function();
key_eq() = __u.key_eq();
max_load_factor() = __u.max_load_factor();
__assign_multi(__u.begin(), __u.end());
}
return *this;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__deallocate_node(__next_pointer __np)
_NOEXCEPT
{
__node_allocator& __na = __node_alloc();
while (__np != nullptr)
{
__next_pointer __next = __np->__next_;
#if _LIBCPP_DEBUG_LEVEL >= 2
__c_node* __c = __get_db()->__find_c_and_lock(this);
for (__i_node** __p = __c->end_; __p != __c->beg_; )
{
--__p;
iterator* __i = static_cast<iterator*>((*__p)->__i_);
if (__i->__node_ == __np)
{
(*__p)->__c_ = nullptr;
if (--__c->end_ != __p)
memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
}
}
__get_db()->unlock();
#endif
__node_pointer __real_np = __np->__upcast();
__node_traits::destroy(__na, _NodeTypes::__get_ptr(__real_np->__value_));
__node_traits::deallocate(__na, __real_np, 1);
__np = __next;
}
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__next_pointer
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__detach() _NOEXCEPT
{
size_type __bc = bucket_count();
for (size_type __i = 0; __i < __bc; ++__i)
__bucket_list_[__i] = nullptr;
size() = 0;
__next_pointer __cache = __p1_.first().__next_;
__p1_.first().__next_ = nullptr;
return __cache;
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__move_assign(
__hash_table& __u, true_type)
_NOEXCEPT_(
is_nothrow_move_assignable<__node_allocator>::value &&
is_nothrow_move_assignable<hasher>::value &&
is_nothrow_move_assignable<key_equal>::value)
{
clear();
__bucket_list_.reset(__u.__bucket_list_.release());
__bucket_list_.get_deleter().size() = __u.__bucket_list_.get_deleter().size();
__u.__bucket_list_.get_deleter().size() = 0;
__move_assign_alloc(__u);
size() = __u.size();
hash_function() = _VSTD::move(__u.hash_function());
max_load_factor() = __u.max_load_factor();
key_eq() = _VSTD::move(__u.key_eq());
__p1_.first().__next_ = __u.__p1_.first().__next_;
if (size() > 0)
{
__bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] =
__p1_.first().__ptr();
__u.__p1_.first().__next_ = nullptr;
__u.size() = 0;
}
#if _LIBCPP_DEBUG_LEVEL >= 2
__get_db()->swap(this, &__u);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__move_assign(
__hash_table& __u, false_type)
{
if (__node_alloc() == __u.__node_alloc())
__move_assign(__u, true_type());
else
{
hash_function() = _VSTD::move(__u.hash_function());
key_eq() = _VSTD::move(__u.key_eq());
max_load_factor() = __u.max_load_factor();
if (bucket_count() != 0)
{
__next_pointer __cache = __detach();
#ifndef _LIBCPP_NO_EXCEPTIONS
try
{
#endif // _LIBCPP_NO_EXCEPTIONS
const_iterator __i = __u.begin();
while (__cache != nullptr && __u.size() != 0)
{
__cache->__upcast()->__value_ =
_VSTD::move(__u.remove(__i++)->__value_);
__next_pointer __next = __cache->__next_;
__node_insert_multi(__cache->__upcast());
__cache = __next;
}
#ifndef _LIBCPP_NO_EXCEPTIONS
}
catch (...)
{
__deallocate_node(__cache);
throw;
}
#endif // _LIBCPP_NO_EXCEPTIONS
__deallocate_node(__cache);
}
const_iterator __i = __u.begin();
while (__u.size() != 0)
{
__node_holder __h = __construct_node(_NodeTypes::__move(__u.remove(__i++)->__value_));
__node_insert_multi(__h.get());
__h.release();
}
}
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
__hash_table<_Tp, _Hash, _Equal, _Alloc>&
__hash_table<_Tp, _Hash, _Equal, _Alloc>::operator=(__hash_table&& __u)
_NOEXCEPT_(
__node_traits::propagate_on_container_move_assignment::value &&
is_nothrow_move_assignable<__node_allocator>::value &&
is_nothrow_move_assignable<hasher>::value &&
is_nothrow_move_assignable<key_equal>::value)
{
__move_assign(__u, integral_constant<bool,
__node_traits::propagate_on_container_move_assignment::value>());
return *this;
}
#endif // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _InputIterator>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__assign_unique(_InputIterator __first,
_InputIterator __last)
{
typedef iterator_traits<_InputIterator> _ITraits;
typedef typename _ITraits::value_type _ItValueType;
static_assert((is_same<_ItValueType, __container_value_type>::value),
"__assign_unique may only be called with the containers value type");
if (bucket_count() != 0)
{
__next_pointer __cache = __detach();
#ifndef _LIBCPP_NO_EXCEPTIONS
try
{
#endif // _LIBCPP_NO_EXCEPTIONS
for (; __cache != nullptr && __first != __last; ++__first)
{
__cache->__upcast()->__value_ = *__first;
__next_pointer __next = __cache->__next_;
__node_insert_unique(__cache->__upcast());
__cache = __next;
}
#ifndef _LIBCPP_NO_EXCEPTIONS
}
catch (...)
{
__deallocate_node(__cache);
throw;
}
#endif // _LIBCPP_NO_EXCEPTIONS
__deallocate_node(__cache);
}
for (; __first != __last; ++__first)
__insert_unique(*__first);
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _InputIterator>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__assign_multi(_InputIterator __first,
_InputIterator __last)
{
typedef iterator_traits<_InputIterator> _ITraits;
typedef typename _ITraits::value_type _ItValueType;
static_assert((is_same<_ItValueType, __container_value_type>::value ||
is_same<_ItValueType, __node_value_type>::value),
"__assign_multi may only be called with the containers value type"
" or the nodes value type");
if (bucket_count() != 0)
{
__next_pointer __cache = __detach();
#ifndef _LIBCPP_NO_EXCEPTIONS
try
{
#endif // _LIBCPP_NO_EXCEPTIONS
for (; __cache != nullptr && __first != __last; ++__first)
{
__cache->__upcast()->__value_ = *__first;
__next_pointer __next = __cache->__next_;
__node_insert_multi(__cache->__upcast());
__cache = __next;
}
#ifndef _LIBCPP_NO_EXCEPTIONS
}
catch (...)
{
__deallocate_node(__cache);
throw;
}
#endif // _LIBCPP_NO_EXCEPTIONS
__deallocate_node(__cache);
}
for (; __first != __last; ++__first)
__insert_multi(_NodeTypes::__get_value(*__first));
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::begin() _NOEXCEPT
{
#if _LIBCPP_DEBUG_LEVEL >= 2
return iterator(__p1_.first().__next_, this);
#else
return iterator(__p1_.first().__next_);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::end() _NOEXCEPT
{
#if _LIBCPP_DEBUG_LEVEL >= 2
return iterator(nullptr, this);
#else
return iterator(nullptr);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::begin() const _NOEXCEPT
{
#if _LIBCPP_DEBUG_LEVEL >= 2
return const_iterator(__p1_.first().__next_, this);
#else
return const_iterator(__p1_.first().__next_);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::end() const _NOEXCEPT
{
#if _LIBCPP_DEBUG_LEVEL >= 2
return const_iterator(nullptr, this);
#else
return const_iterator(nullptr);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::clear() _NOEXCEPT
{
if (size() > 0)
{
__deallocate_node(__p1_.first().__next_);
__p1_.first().__next_ = nullptr;
size_type __bc = bucket_count();
for (size_type __i = 0; __i < __bc; ++__i)
__bucket_list_[__i] = nullptr;
size() = 0;
}
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_unique(__node_pointer __nd)
{
__nd->__hash_ = hash_function()(__nd->__value_);
size_type __bc = bucket_count();
bool __inserted = false;
__next_pointer __ndptr;
size_t __chash;
if (__bc != 0)
{
__chash = __constrain_hash(__nd->__hash_, __bc);
__ndptr = __bucket_list_[__chash];
if (__ndptr != nullptr)
{
for (__ndptr = __ndptr->__next_; __ndptr != nullptr &&
__constrain_hash(__ndptr->__hash(), __bc) == __chash;
__ndptr = __ndptr->__next_)
{
if (key_eq()(__ndptr->__upcast()->__value_, __nd->__value_))
goto __done;
}
}
}
{
if (size()+1 > __bc * max_load_factor() || __bc == 0)
{
rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
size_type(ceil(float(size() + 1) / max_load_factor()))));
__bc = bucket_count();
__chash = __constrain_hash(__nd->__hash_, __bc);
}
// insert_after __bucket_list_[__chash], or __first_node if bucket is null
__next_pointer __pn = __bucket_list_[__chash];
if (__pn == nullptr)
{
__pn =__p1_.first().__ptr();
__nd->__next_ = __pn->__next_;
__pn->__next_ = __nd->__ptr();
// fix up __bucket_list_
__bucket_list_[__chash] = __pn;
if (__nd->__next_ != nullptr)
__bucket_list_[__constrain_hash(__nd->__next_->__hash(), __bc)] = __nd->__ptr();
}
else
{
__nd->__next_ = __pn->__next_;
__pn->__next_ = __nd->__ptr();
}
__ndptr = __nd->__ptr();
// increment size
++size();
__inserted = true;
}
__done:
#if _LIBCPP_DEBUG_LEVEL >= 2
return pair<iterator, bool>(iterator(__ndptr, this), __inserted);
#else
return pair<iterator, bool>(iterator(__ndptr), __inserted);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_multi(__node_pointer __cp)
{
__cp->__hash_ = hash_function()(__cp->__value_);
size_type __bc = bucket_count();
if (size()+1 > __bc * max_load_factor() || __bc == 0)
{
rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
size_type(ceil(float(size() + 1) / max_load_factor()))));
__bc = bucket_count();
}
size_t __chash = __constrain_hash(__cp->__hash_, __bc);
__next_pointer __pn = __bucket_list_[__chash];
if (__pn == nullptr)
{
__pn =__p1_.first().__ptr();
__cp->__next_ = __pn->__next_;
__pn->__next_ = __cp->__ptr();
// fix up __bucket_list_
__bucket_list_[__chash] = __pn;
if (__cp->__next_ != nullptr)
__bucket_list_[__constrain_hash(__cp->__next_->__hash(), __bc)]
= __cp->__ptr();
}
else
{
for (bool __found = false; __pn->__next_ != nullptr &&
__constrain_hash(__pn->__next_->__hash(), __bc) == __chash;
__pn = __pn->__next_)
{
// __found key_eq() action
// false false loop
// true true loop
// false true set __found to true
// true false break
if (__found != (__pn->__next_->__hash() == __cp->__hash_ &&
key_eq()(__pn->__next_->__upcast()->__value_, __cp->__value_)))
{
if (!__found)
__found = true;
else
break;
}
}
__cp->__next_ = __pn->__next_;
__pn->__next_ = __cp->__ptr();
if (__cp->__next_ != nullptr)
{
size_t __nhash = __constrain_hash(__cp->__next_->__hash(), __bc);
if (__nhash != __chash)
__bucket_list_[__nhash] = __cp->__ptr();
}
}
++size();
#if _LIBCPP_DEBUG_LEVEL >= 2
return iterator(__cp->__ptr(), this);
#else
return iterator(__cp->__ptr());
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_multi(
const_iterator __p, __node_pointer __cp)
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
"unordered container::emplace_hint(const_iterator, args...) called with an iterator not"
" referring to this unordered container");
#endif
if (__p != end() && key_eq()(*__p, __cp->__value_))
{
__next_pointer __np = __p.__node_;
__cp->__hash_ = __np->__hash();
size_type __bc = bucket_count();
if (size()+1 > __bc * max_load_factor() || __bc == 0)
{
rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
size_type(ceil(float(size() + 1) / max_load_factor()))));
__bc = bucket_count();
}
size_t __chash = __constrain_hash(__cp->__hash_, __bc);
__next_pointer __pp = __bucket_list_[__chash];
while (__pp->__next_ != __np)
__pp = __pp->__next_;
__cp->__next_ = __np;
__pp->__next_ = static_cast<__next_pointer>(__cp);
++size();
#if _LIBCPP_DEBUG_LEVEL >= 2
return iterator(static_cast<__next_pointer>(__cp), this);
#else
return iterator(static_cast<__next_pointer>(__cp));
#endif
}
return __node_insert_multi(__cp);
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key, class ..._Args>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_key_args(_Key const& __k, _Args&&... __args)
#else
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key, class _Args>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_key_args(_Key const& __k, _Args& __args)
#endif
{
size_t __hash = hash_function()(__k);
size_type __bc = bucket_count();
bool __inserted = false;
__next_pointer __nd;
size_t __chash;
if (__bc != 0)
{
__chash = __constrain_hash(__hash, __bc);
__nd = __bucket_list_[__chash];
if (__nd != nullptr)
{
for (__nd = __nd->__next_; __nd != nullptr &&
(__nd->__hash() == __hash || __constrain_hash(__nd->__hash(), __bc) == __chash);
__nd = __nd->__next_)
{
if (key_eq()(__nd->__upcast()->__value_, __k))
goto __done;
}
}
}
{
#ifndef _LIBCPP_CXX03_LANG
__node_holder __h = __construct_node_hash(__hash, _VSTD::forward<_Args>(__args)...);
#else
__node_holder __h = __construct_node_hash(__hash, __args);
#endif
if (size()+1 > __bc * max_load_factor() || __bc == 0)
{
rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
size_type(ceil(float(size() + 1) / max_load_factor()))));
__bc = bucket_count();
__chash = __constrain_hash(__hash, __bc);
}
// insert_after __bucket_list_[__chash], or __first_node if bucket is null
__next_pointer __pn = __bucket_list_[__chash];
if (__pn == nullptr)
{
__pn = __p1_.first().__ptr();
__h->__next_ = __pn->__next_;
__pn->__next_ = __h.get()->__ptr();
// fix up __bucket_list_
__bucket_list_[__chash] = __pn;
if (__h->__next_ != nullptr)
__bucket_list_[__constrain_hash(__h->__next_->__hash(), __bc)]
= __h.get()->__ptr();
}
else
{
__h->__next_ = __pn->__next_;
__pn->__next_ = static_cast<__next_pointer>(__h.get());
}
__nd = static_cast<__next_pointer>(__h.release());
// increment size
++size();
__inserted = true;
}
__done:
#if _LIBCPP_DEBUG_LEVEL >= 2
return pair<iterator, bool>(iterator(__nd, this), __inserted);
#else
return pair<iterator, bool>(iterator(__nd), __inserted);
#endif
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class... _Args>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_impl(_Args&&... __args)
{
__node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
pair<iterator, bool> __r = __node_insert_unique(__h.get());
if (__r.second)
__h.release();
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class... _Args>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_multi(_Args&&... __args)
{
__node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
iterator __r = __node_insert_multi(__h.get());
__h.release();
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class... _Args>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_hint_multi(
const_iterator __p, _Args&&... __args)
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
"unordered container::emplace_hint(const_iterator, args...) called with an iterator not"
" referring to this unordered container");
#endif
__node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
iterator __r = __node_insert_multi(__p, __h.get());
__h.release();
return __r;
}
#else // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__insert_multi(const __container_value_type& __x)
{
__node_holder __h = __construct_node(__x);
iterator __r = __node_insert_multi(__h.get());
__h.release();
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__insert_multi(const_iterator __p,
const __container_value_type& __x)
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
"unordered container::insert(const_iterator, lvalue) called with an iterator not"
" referring to this unordered container");
#endif
__node_holder __h = __construct_node(__x);
iterator __r = __node_insert_multi(__p, __h.get());
__h.release();
return __r;
}
#endif // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::rehash(size_type __n)
{
if (__n == 1)
__n = 2;
else if (__n & (__n - 1))
__n = __next_prime(__n);
size_type __bc = bucket_count();
if (__n > __bc)
__rehash(__n);
else if (__n < __bc)
{
__n = _VSTD::max<size_type>
(
__n,
__is_hash_power2(__bc) ? __next_hash_pow2(size_t(ceil(float(size()) / max_load_factor()))) :
__next_prime(size_t(ceil(float(size()) / max_load_factor())))
);
if (__n < __bc)
__rehash(__n);
}
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__rehash(size_type __nbc)
{
#if _LIBCPP_DEBUG_LEVEL >= 2
__get_db()->__invalidate_all(this);
#endif // _LIBCPP_DEBUG_LEVEL >= 2
__pointer_allocator& __npa = __bucket_list_.get_deleter().__alloc();
__bucket_list_.reset(__nbc > 0 ?
__pointer_alloc_traits::allocate(__npa, __nbc) : nullptr);
__bucket_list_.get_deleter().size() = __nbc;
if (__nbc > 0)
{
for (size_type __i = 0; __i < __nbc; ++__i)
__bucket_list_[__i] = nullptr;
__next_pointer __pp = __p1_.first().__ptr();
__next_pointer __cp = __pp->__next_;
if (__cp != nullptr)
{
size_type __chash = __constrain_hash(__cp->__hash(), __nbc);
__bucket_list_[__chash] = __pp;
size_type __phash = __chash;
for (__pp = __cp, __cp = __cp->__next_; __cp != nullptr;
__cp = __pp->__next_)
{
__chash = __constrain_hash(__cp->__hash(), __nbc);
if (__chash == __phash)
__pp = __cp;
else
{
if (__bucket_list_[__chash] == nullptr)
{
__bucket_list_[__chash] = __pp;
__pp = __cp;
__phash = __chash;
}
else
{
__next_pointer __np = __cp;
for (; __np->__next_ != nullptr &&
key_eq()(__cp->__upcast()->__value_,
__np->__next_->__upcast()->__value_);
__np = __np->__next_)
;
__pp->__next_ = __np->__next_;
__np->__next_ = __bucket_list_[__chash]->__next_;
__bucket_list_[__chash]->__next_ = __cp;
}
}
}
}
}
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k)
{
size_t __hash = hash_function()(__k);
size_type __bc = bucket_count();
if (__bc != 0)
{
size_t __chash = __constrain_hash(__hash, __bc);
__next_pointer __nd = __bucket_list_[__chash];
if (__nd != nullptr)
{
for (__nd = __nd->__next_; __nd != nullptr &&
(__nd->__hash() == __hash
|| __constrain_hash(__nd->__hash(), __bc) == __chash);
__nd = __nd->__next_)
{
if ((__nd->__hash() == __hash)
&& key_eq()(__nd->__upcast()->__value_, __k))
#if _LIBCPP_DEBUG_LEVEL >= 2
return iterator(__nd, this);
#else
return iterator(__nd);
#endif
}
}
}
return end();
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k) const
{
size_t __hash = hash_function()(__k);
size_type __bc = bucket_count();
if (__bc != 0)
{
size_t __chash = __constrain_hash(__hash, __bc);
__next_pointer __nd = __bucket_list_[__chash];
if (__nd != nullptr)
{
for (__nd = __nd->__next_; __nd != nullptr &&
(__hash == __nd->__hash()
|| __constrain_hash(__nd->__hash(), __bc) == __chash);
__nd = __nd->__next_)
{
if ((__nd->__hash() == __hash)
&& key_eq()(__nd->__upcast()->__value_, __k))
#if _LIBCPP_DEBUG_LEVEL >= 2
return const_iterator(__nd, this);
#else
return const_iterator(__nd);
#endif
}
}
}
return end();
}
#ifndef _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class ..._Args>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node(_Args&& ...__args)
{
static_assert(!__is_hash_value_type<_Args...>::value,
"Construct cannot be called with a hash value type");
__node_allocator& __na = __node_alloc();
__node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
__node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), _VSTD::forward<_Args>(__args)...);
__h.get_deleter().__value_constructed = true;
__h->__hash_ = hash_function()(__h->__value_);
__h->__next_ = nullptr;
return __h;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _First, class ..._Rest>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash(
size_t __hash, _First&& __f, _Rest&& ...__rest)
{
static_assert(!__is_hash_value_type<_First, _Rest...>::value,
"Construct cannot be called with a hash value type");
__node_allocator& __na = __node_alloc();
__node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
__node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_),
_VSTD::forward<_First>(__f),
_VSTD::forward<_Rest>(__rest)...);
__h.get_deleter().__value_constructed = true;
__h->__hash_ = __hash;
__h->__next_ = nullptr;
return __h;
}
#else // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node(const __container_value_type& __v)
{
__node_allocator& __na = __node_alloc();
__node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
__node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), __v);
__h.get_deleter().__value_constructed = true;
__h->__hash_ = hash_function()(__h->__value_);
__h->__next_ = nullptr;
return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash(size_t __hash,
const __container_value_type& __v)
{
__node_allocator& __na = __node_alloc();
__node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
__node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), __v);
__h.get_deleter().__value_constructed = true;
__h->__hash_ = __hash;
__h->__next_ = nullptr;
return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
}
#endif // _LIBCPP_CXX03_LANG
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __p)
{
__next_pointer __np = __p.__node_;
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
"unordered container erase(iterator) called with an iterator not"
" referring to this container");
_LIBCPP_ASSERT(__p != end(),
"unordered container erase(iterator) called with a non-dereferenceable iterator");
iterator __r(__np, this);
#else
iterator __r(__np);
#endif
++__r;
remove(__p);
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
__hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __first,
const_iterator __last)
{
#if _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
"unodered container::erase(iterator, iterator) called with an iterator not"
" referring to this unodered container");
_LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__last) == this,
"unodered container::erase(iterator, iterator) called with an iterator not"
" referring to this unodered container");
#endif
for (const_iterator __p = __first; __first != __last; __p = __first)
{
++__first;
erase(__p);
}
__next_pointer __np = __last.__node_;
#if _LIBCPP_DEBUG_LEVEL >= 2
return iterator (__np, this);
#else
return iterator (__np);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_unique(const _Key& __k)
{
iterator __i = find(__k);
if (__i == end())
return 0;
erase(__i);
return 1;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_multi(const _Key& __k)
{
size_type __r = 0;
iterator __i = find(__k);
if (__i != end())
{
iterator __e = end();
do
{
erase(__i++);
++__r;
} while (__i != __e && key_eq()(*__i, __k));
}
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
__hash_table<_Tp, _Hash, _Equal, _Alloc>::remove(const_iterator __p) _NOEXCEPT
{
// current node
__next_pointer __cn = __p.__node_;
size_type __bc = bucket_count();
size_t __chash = __constrain_hash(__cn->__hash(), __bc);
// find previous node
__next_pointer __pn = __bucket_list_[__chash];
for (; __pn->__next_ != __cn; __pn = __pn->__next_)
;
// Fix up __bucket_list_
// if __pn is not in same bucket (before begin is not in same bucket) &&
// if __cn->__next_ is not in same bucket (nullptr is not in same bucket)
if (__pn == __p1_.first().__ptr()
|| __constrain_hash(__pn->__hash(), __bc) != __chash)
{
if (__cn->__next_ == nullptr
|| __constrain_hash(__cn->__next_->__hash(), __bc) != __chash)
__bucket_list_[__chash] = nullptr;
}
// if __cn->__next_ is not in same bucket (nullptr is in same bucket)
if (__cn->__next_ != nullptr)
{
size_t __nhash = __constrain_hash(__cn->__next_->__hash(), __bc);
if (__nhash != __chash)
__bucket_list_[__nhash] = __pn;
}
// remove __cn
__pn->__next_ = __cn->__next_;
__cn->__next_ = nullptr;
--size();
#if _LIBCPP_DEBUG_LEVEL >= 2
__c_node* __c = __get_db()->__find_c_and_lock(this);
for (__i_node** __dp = __c->end_; __dp != __c->beg_; )
{
--__dp;
iterator* __i = static_cast<iterator*>((*__dp)->__i_);
if (__i->__node_ == __cn)
{
(*__dp)->__c_ = nullptr;
if (--__c->end_ != __dp)
memmove(__dp, __dp+1, (__c->end_ - __dp)*sizeof(__i_node*));
}
}
__get_db()->unlock();
#endif
return __node_holder(__cn->__upcast(), _Dp(__node_alloc(), true));
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
inline
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_unique(const _Key& __k) const
{
return static_cast<size_type>(find(__k) != end());
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_multi(const _Key& __k) const
{
size_type __r = 0;
const_iterator __i = find(__k);
if (__i != end())
{
const_iterator __e = end();
do
{
++__i;
++__r;
} while (__i != __e && key_eq()(*__i, __k));
}
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator,
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_unique(
const _Key& __k)
{
iterator __i = find(__k);
iterator __j = __i;
if (__i != end())
++__j;
return pair<iterator, iterator>(__i, __j);
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator,
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_unique(
const _Key& __k) const
{
const_iterator __i = find(__k);
const_iterator __j = __i;
if (__i != end())
++__j;
return pair<const_iterator, const_iterator>(__i, __j);
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator,
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_multi(
const _Key& __k)
{
iterator __i = find(__k);
iterator __j = __i;
if (__i != end())
{
iterator __e = end();
do
{
++__j;
} while (__j != __e && key_eq()(*__j, __k));
}
return pair<iterator, iterator>(__i, __j);
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
template <class _Key>
pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator,
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator>
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_multi(
const _Key& __k) const
{
const_iterator __i = find(__k);
const_iterator __j = __i;
if (__i != end())
{
const_iterator __e = end();
do
{
++__j;
} while (__j != __e && key_eq()(*__j, __k));
}
return pair<const_iterator, const_iterator>(__i, __j);
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
void
__hash_table<_Tp, _Hash, _Equal, _Alloc>::swap(__hash_table& __u)
#if _LIBCPP_STD_VER <= 11
_NOEXCEPT_DEBUG_(
__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value
&& (!allocator_traits<__pointer_allocator>::propagate_on_container_swap::value
|| __is_nothrow_swappable<__pointer_allocator>::value)
&& (!__node_traits::propagate_on_container_swap::value
|| __is_nothrow_swappable<__node_allocator>::value)
)
#else
_NOEXCEPT_DEBUG_(__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value)
#endif
{
_LIBCPP_ASSERT(__node_traits::propagate_on_container_swap::value ||
this->__node_alloc() == __u.__node_alloc(),
"list::swap: Either propagate_on_container_swap must be true"
" or the allocators must compare equal");
{
__node_pointer_pointer __npp = __bucket_list_.release();
__bucket_list_.reset(__u.__bucket_list_.release());
__u.__bucket_list_.reset(__npp);
}
_VSTD::swap(__bucket_list_.get_deleter().size(), __u.__bucket_list_.get_deleter().size());
__swap_allocator(__bucket_list_.get_deleter().__alloc(),
__u.__bucket_list_.get_deleter().__alloc());
__swap_allocator(__node_alloc(), __u.__node_alloc());
_VSTD::swap(__p1_.first().__next_, __u.__p1_.first().__next_);
__p2_.swap(__u.__p2_);
__p3_.swap(__u.__p3_);
if (size() > 0)
__bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] =
__p1_.first().__ptr();
if (__u.size() > 0)
__u.__bucket_list_[__constrain_hash(__u.__p1_.first().__next_->__hash(), __u.bucket_count())] =
__u.__p1_.first().__ptr();
#if _LIBCPP_DEBUG_LEVEL >= 2
__get_db()->swap(this, &__u);
#endif
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
__hash_table<_Tp, _Hash, _Equal, _Alloc>::bucket_size(size_type __n) const
{
_LIBCPP_ASSERT(__n < bucket_count(),
"unordered container::bucket_size(n) called with n >= bucket_count()");
__next_pointer __np = __bucket_list_[__n];
size_type __bc = bucket_count();
size_type __r = 0;
if (__np != nullptr)
{
for (__np = __np->__next_; __np != nullptr &&
__constrain_hash(__np->__hash(), __bc) == __n;
__np = __np->__next_, ++__r)
;
}
return __r;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
inline _LIBCPP_INLINE_VISIBILITY
void
swap(__hash_table<_Tp, _Hash, _Equal, _Alloc>& __x,
__hash_table<_Tp, _Hash, _Equal, _Alloc>& __y)
_NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
{
__x.swap(__y);
}
#if _LIBCPP_DEBUG_LEVEL >= 2
template <class _Tp, class _Hash, class _Equal, class _Alloc>
bool
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__dereferenceable(const const_iterator* __i) const
{
return __i->__node_ != nullptr;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
bool
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__decrementable(const const_iterator*) const
{
return false;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
bool
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__addable(const const_iterator*, ptrdiff_t) const
{
return false;
}
template <class _Tp, class _Hash, class _Equal, class _Alloc>
bool
__hash_table<_Tp, _Hash, _Equal, _Alloc>::__subscriptable(const const_iterator*, ptrdiff_t) const
{
return false;
}
#endif // _LIBCPP_DEBUG_LEVEL >= 2
_LIBCPP_END_NAMESPACE_STD
_LIBCPP_POP_MACROS
#endif // _LIBCPP__HASH_TABLE
| [
"1170762202@qq.ccom"
] | 1170762202@qq.ccom | |
c82a8668d39bbdfdb1d8174fd56f94d832600825 | d6c099b0a64b5e456099a13ae34023ef65253caf | /gact.h | 491a3f7f4526c847f582fe4f5a7c219dc50c0f06 | [] | no_license | ramcn/darwin-xl-arm-x86 | 209e4aa1a699e18f0c23a96cb057937c43cd7dcb | 38d7e9461ef5c2e6c23c747babd1a6a6502bba36 | refs/heads/master | 2022-11-26T07:51:49.107617 | 2020-07-27T18:31:15 | 2020-07-27T18:31:15 | 282,984,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,907 | h | /*
MIT License
Copyright (c) 2018 Yatish Turakhia, Gill Bejerano and William Dally
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 <iostream>
#include <fstream>
#include <string>
#include <stdio.h>
#include <cstdlib>
#include <queue>
#include "align.h"
struct Alignment {
std::string ref_name;
std::string query_name;
std::string aligned_ref_str;
std::string aligned_query_str;
uint32_t ref_start;
uint32_t query_start;
uint32_t aligned_ref_len;
uint32_t aligned_query_len;
uint32_t ref_len;
uint32_t query_len;
int score;
int flag;
char strand;
};
Alignment GACT (char* ref_str, char* query_str, std::string ref_name, std::string query_name, int* sub_mat, int gap_open, int gap_extend, int tile_size, int tile_overlap, int ref_pos, int query_pos, uint32_t ref_length, uint32_t query_length, char strand, int first_tile_score_threshold, int mode, int thread_id);
| [
"cn.ramachandra@gmail.com"
] | cn.ramachandra@gmail.com |
043f4ea1017e3ea13e302c16631bd035a571c8e0 | 4e9b41d29e6fb0fad6c652e72ee093c3514933d1 | /tests/libarduino/Arduino.h | f2e99946df74d7515b8d6399b4574e1bd5d3ea03 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | ADTL/EtherSia | fbdeb3c7a0e995036cde91e741336c22ea3068ea | fef3a22b6fe526594cb615a7d89cd45a17ecb9d0 | refs/heads/master | 2021-01-20T11:41:18.081416 | 2016-10-16T11:56:29 | 2016-10-16T11:56:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,145 | h | #ifndef Arduino_h
#define Arduino_h
#include <stdint.h>
#include <string.h>
#include <ctype.h>
#define HIGH 0x1
#define LOW 0x0
#define INPUT 0x0
#define OUTPUT 0x1
#define INPUT_PULLUP 0x2
extern "C" {
typedef uint16_t word;
typedef uint8_t byte ;
typedef bool boolean ;
void* malloc(size_t size);
}
/* sketch */
extern void setup( void ) ;
extern void loop( void ) ;
uint32_t millis( void );
uint32_t micros( void );
void delay(uint32_t msec);
void delayMicroseconds(uint32_t us);
void pinMode(uint8_t, uint8_t);
void digitalWrite(uint8_t, uint8_t);
int digitalRead(uint8_t);
long random();
long random(long);
long random(long, long);
void randomSeed(unsigned long);
inline boolean isWhitespace(int c)
{
return (isblank (c) == 0 ? false : true);
}
#define PROGMEM
#define F(x) x
#define pgm_read_byte_near(x) *(x)
#define memcpy_P(dst, src, n) memcpy(dst, src, n)
#define memcmp_P(p1, p2, n) memcmp(p1, p2, n)
#define strcmp_P(s1, s2) strcmp(s1, s2)
#define strlen_P(str) strlen(str)
#define pgm_read_byte(addr) *(addr);
class __FlashStringHelper;
#include "Print.h"
#include "Stream.h"
#endif // Arduino_h
| [
"njh@aelius.com"
] | njh@aelius.com |
43337e1049dc8698b2bd96247b6c4c0764ddd480 | 07b47d9179644e40d409062c5e46d1f7f32c9611 | /getAPI.cpp | 78af2e4f88e7cda160123ac553f37df170550aa2 | [] | no_license | ruknez/MailTest | e232138123d98108fb2434631d9ea0686831a0ac | 1b3bbe30d019441edb10c6ea131dc1fceb7d9026 | refs/heads/master | 2020-12-27T20:28:02.088513 | 2020-02-10T12:51:35 | 2020-02-10T12:51:35 | 238,041,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,549 | cpp | #include <stdio.h>
#include <memory.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
#include <string>
#include <iostream>
#include <vector>
#include <sstream>
#include <fstream>
#include <filesystem>
#include <exception>
#include "getAPI.h"
using std::ofstream;
using std::stringstream;
using std::string;
//----------------------------------------------------------------------
std::tuple<std::string, std::string, int> parsingURL(const std::string &url)
{
int offset = 0;
int port = 0;
size_t pos1 = 0, pos2 = 0, pos3 = 0, pos4 =0;
string protocol, domain, path, query;
if (url.compare(0, 8, "https://") == 0)
{
offset = 8;
//port = 443;
port = 80;
}
else if (url.compare(0, 7, "http://") == 0)
{
offset = 7;
port = 80;
}
else
{
throw std::invalid_argument("Not correct URL = \"" + url + "\" \n");
}
pos1 = url.find_first_of('/', offset + 1);
path = pos1 == string::npos ? "" : url.substr(pos1);
domain = string(url.begin() + offset, pos1 != string::npos ? url.begin() + pos1 : url.end());
path = (pos2 = path.find("#")) != string::npos ? path.substr(0, pos2) : path;
string url_port = (pos3 = domain.find(":")) != string::npos ? domain.substr(pos3 + 1) : "";
domain = domain.substr(0, pos3 != string::npos ? pos3 : domain.length());
protocol = offset > 0 ? url.substr(0, offset - 3) : "";
query = (pos4 = path.find("?")) != string::npos ? path.substr(pos4 + 1) : "";
path = pos4 != string::npos ? path.substr(0, pos4) : path;
if (query.length() > 0)
{
path.reserve(path.length() + 1 + query.length());
path.append("?").append(query);
}
if (domain.length() == 0)
{
throw std::invalid_argument("I cannot find domain in URL = \"" + url + "\" \n");
}
return std::make_tuple(path, domain, port);
}
//----------------------------------------------------------------------
std::vector<string> dns_lookup(const string &host_name, int ipv) //ipv: default=4
{
std::vector<string> output;
struct addrinfo hints, *res, *p;
int status = 0, ai_family = 0;
char ip_address[INET6_ADDRSTRLEN];
ai_family = ipv == 6 ? AF_INET6 : AF_INET; //v4 vs v6?
ai_family = ipv == 0 ? AF_UNSPEC : ai_family; // AF_UNSPEC (any), or chosen
memset(&hints, 0, sizeof hints);
hints.ai_family = ai_family;
hints.ai_socktype = SOCK_STREAM;
if ((status = getaddrinfo(host_name.c_str(), NULL, &hints, &res)) != 0)
{
return output;
}
for (p = res; p != NULL; p = p->ai_next)
{
void *addr;
if (p->ai_family == AF_INET)
{ // IPv4
struct sockaddr_in *ipv4 = (struct sockaddr_in *)p->ai_addr;
addr = &(ipv4->sin_addr);
}
else
{ // IPv6
struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)p->ai_addr;
addr = &(ipv6->sin6_addr);
}
// convert the IP to a string
inet_ntop(p->ai_family, addr, ip_address, sizeof ip_address);
output.push_back(ip_address);
}
freeaddrinfo(res); // free the linked list
return output;
}
//----------------------------------------------------------------------
bool is_ipv6_address(const string &str)
{
struct sockaddr_in6 sa;
// int inet_pton(int af, const char *src, void *dst);
//преобразует строку символов src в сетевой адрес (типа af), затем копирует полученную структуру с адресом в dst.
return inet_pton(AF_INET6, str.c_str(), &(sa.sin6_addr)) != 0;
}
//----------------------------------------------------------------------
bool is_ipv4_address(const string &str)
{
struct sockaddr_in sa;
return inet_pton(AF_INET, str.c_str(), &(sa.sin_addr)) != 0;
}
//----------------------------------------------------------------------
int socket_connect(const string &ip_address, int port)
{
int sd = 0;
const int MAXSLEEP = 128;
struct sockaddr_in sa;
memset(&sa, '\0', sizeof(sa));
sa.sin_family = AF_INET;
sa.sin_addr.s_addr = inet_addr(ip_address.c_str());
sa.sin_port = htons(port);
for (int numsec = 1; numsec <= MAXSLEEP; numsec <<= 1)
{
if ((sd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
throw std::runtime_error("Cannot creat socket for ip = " + ip_address + "\nerrno code = " + strerror(errno) + "\n");
if (connect(sd, (struct sockaddr *)&sa, sizeof(sa)) == 0)
return sd;
close(sd);
if (numsec <= MAXSLEEP / 2)
sleep(numsec);
}
throw std::invalid_argument("Cannot connect for ip = " + ip_address + "\nerrno code = " + strerror(errno) + "\n");
}
//----------------------------------------------------------------------
void download(const string &url)
{
int ipv = 0;
std::vector<string> ip_addresses;
auto [path, domain, port] = parsingURL(url);
std::string filename = creatFileName(path);
if (!is_ipv6_address(domain))
{
if (is_ipv4_address(domain))
{
ip_addresses.push_back(domain);
}
else //if (!is_ipv4_address(domain))
{
ip_addresses = dns_lookup(domain, ipv = 4);
}
}
if (ip_addresses.size() > 0)
{
stringstream request;
request << "GET " << path << " HTTP/1.1\r\n";
request << "Host: " << domain << "\r\n\r\n";
int64_t readData = 0;
for (int i = 0, ix = ip_addresses.size(); i < ix && readData == 0; i++)
{
try
{
readData = http_get(request.str(), ip_addresses[i], port, filename);
}
catch (const std::invalid_argument &ex)
{
std::cerr << ex.what() << std::endl;
}
}
std::filesystem::path filePath = std::filesystem::current_path() / filename;
if (std::filesystem::file_size(filePath) == static_cast<uintmax_t>(readData))
{
std::cout << "Done. OK\n";
}
else
{
std::cout << "Done. File size Not Ok\n";
}
}
else
{
throw std::runtime_error("Cannot find IP addr for domain = " + domain + "\n");
}
}
//----------------------------------------------------------------------
string header_value(const string &full_header, const string &header_name)
{
size_t pos = full_header.find(header_name);
string r;
if (pos != string::npos)
{
size_t begin = full_header.find_first_not_of(": ", pos + header_name.length());
size_t until = full_header.find_first_of("\r\n\t ", begin + 1);
if (begin != string::npos && until != string::npos)
r = full_header.substr(begin, until - begin);
}
else
{
throw std::runtime_error("cannot patsing heder" + full_header + "\n");
}
return r;
}
//----------------------------------------------------------------------
int64_t http_get(const string &request, const string &ip_address, int port, const string &fname)
{
stringstream header;
char delim[] = "\r\n\r\n";
//char buffer[16384];
char buffer[1024];
int64_t bytes_sofar = 0, bytes_expected = -1;
int sd = 0, bytes_received = -1, state = 0;
ofstream fd(fname.c_str());
if (!fd.is_open())
throw std::runtime_error("I cannit open file \"" + fname + "\"\n");
sd = socket_connect(ip_address, port);
send(sd, request.c_str(), request.length(), 0);
while (bytes_sofar != bytes_expected && (bytes_received = recv(sd, buffer, sizeof(buffer), 0)) > 0)
{
if (state < static_cast<int>(sizeof(delim) - 1)) //read header
{
int i = 0;
for (; i < bytes_received && state < static_cast<int>(sizeof(delim) - 1); i++)
{
header << buffer[i];
state = buffer[i] == delim[state] ? state + 1 : 0;
}
bytes_received = state == sizeof(delim) - 1 ? bytes_received - i : bytes_received;
if (!isAnswerOk(header.str()))
{
close(sd);
fd.close();
throw std::runtime_error("Not OK answer \n" + header.str() + "\n");
}
}
if (bytes_expected == -1 && state == sizeof(delim) - 1) //parse header
{
try
{
stringstream(header_value(header.str(), "Content-Length")) >> bytes_expected;
}
catch (const std::runtime_error &ex)
{
bytes_expected = -2;
std::cerr << ex.what() << std::endl;
}
}
if (state == sizeof(delim) - 1) //read body
{
bytes_sofar += bytes_received;
fd.write(buffer, bytes_received);
}
}
close(sd);
fd.close();
return bytes_sofar;
}
//----------------------------------------------------------------------
std::string creatFileName(const std::string &path)
{
auto n = path.rfind("/");
if (n == std::string::npos || (n + 1 == path.size()))
{
return "index.html";
}
return std::string(path.substr(n + 1));
}
//----------------------------------------------------------------------
bool isAnswerOk(const std::string &answer)
{
return (answer.find("HTTP/1.1 200 OK") == std::string::npos) ? false : true;
} | [
"ruknez94@mail.ru"
] | ruknez94@mail.ru |
0e4398d6d3fb03b39905b480d7181b3fe23029ac | 86414be525262d012cb6f48cbd3a6b3b022eb646 | /lib/giac/graphicsProvider.hpp | 1f134b9eb5f07049d96bd92fa638f8f7d4cd0049 | [] | no_license | mov-rax/TeensyTest | 4c84cf32a034bf002170fc93163960cdfbb041a1 | 4055c42a02a30d8a820d81b2ad5f271eea036b07 | refs/heads/master | 2023-08-22T21:03:55.222105 | 2021-09-25T18:40:58 | 2021-09-25T18:40:58 | 410,351,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,808 | hpp | #ifndef __GRAPHICSPROVIDER_H
#define __GRAPHICSPROVIDER_H
#include <fxcg/display.h>
#include <fxcg/file.h>
#include <fxcg/keyboard.h>
#include <fxcg/system.h>
#include <fxcg/misc.h>
#include <fxcg/app.h>
#include <fxcg/serial.h>
#include <fxcg/rtc.h>
#include <fxcg/heap.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define TNYIM_ORANGE 0xd222
int PrintMiniFix(int x, int y, const unsigned char*Msg, const int flags, const short color, const short bcolor, int overstatus);
void plot(int x0, int y0,unsigned short color);
unsigned short get_pixel(int x0,int y0);
void drawRectangle(int x, int y, int width, int height, unsigned short color);
void drawLine(int x1, int y1, int x2, int y2, int color);
//void VRAMReplaceColorInRect(int x, int y, int width, int height, color_t color_old, color_t color_new);
//void CopySprite(const void* datar, int x, int y, int width, int height);
void CopySpriteMasked(unsigned short* data, int x, int y, int width, int height, unsigned short maskcolor);
//void CopySpriteNbit(const unsigned char* data, int x, int y, int width, int height, const color_t* palette, unsigned int bitwidth);
int drawRGB24toRGB565(int r, int g, int b);
int alphaBlend(int newcc, int oldcc, float alpha);
void drawSegvaultLogo(int x, int y);
//int textColorToFullColor(int textcolor);
//void progressMessage(char* message, int cur, int total);
void printCentered(char* text, int y, int FGC, int BGC);
void clearLine(int x, int y, color_t color=COLOR_WHITE);
void mPrintXY(int x, int y, char*msg, int mode, int color);
void drawScreenTitle(char* title, char* subtitle = NULL);
void drawFkeyLabels(int f1=-1, int f2=-1, int f3=-1, int f4=-1, int f5=-1, int f6=-1);
int getNextColorInSequence(int curcolor);
int getPreviousColorInSequence(int curcolor);
#endif
| [
"csharper.work@gmail.com"
] | csharper.work@gmail.com |
2f294dbf17110cafe9040ca61b0c4fb7b207e89e | 483d5992960b195c255d2a3bed41bae11744e0ec | /洛谷/P1901.cpp | 7fc301b18ee91b71036db4b75819b88eff4f0ed9 | [] | no_license | zcy05331/code-backup | bd2627f461b69778f56b7ef74441802df2f84a58 | 9ef0dd11108a3fe11364266755a84467c64ba099 | refs/heads/master | 2022-04-30T16:30:28.877120 | 2022-04-15T12:27:25 | 2022-04-15T12:27:25 | 241,646,316 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 920 | cpp | #include <bits/stdc++.h>
const int MaxN = 1e6 + 10;
int l[MaxN], r[MaxN];
long long h[MaxN], v[MaxN];
std::stack<int> st;
long long x[MaxN];
long long ans;
int main()
{
int n;
scanf("%d", &n);
h[0] = 0x7fffffff;
h[n + 1] = h[0];
for (int i = 1; i <= n; i++)
{
scanf("%lld%lld", &h[i], &v[i]);
}
st.push(0);
for (int i = 1; i <= n; i++)
{
while (h[i] >= h[st.top()])
st.pop();
l[i] = st.top();
st.push(i);
}
while (st.size())
st.pop();
st.push(n + 1);
for (int i = n; i >= 1; i--)
{
while (h[i] >= h[st.top()])
st.pop();
r[i] = st.top();
st.push(i);
}
for (int i = 1; i <= n; i++)
{
x[l[i]] += v[i];
x[r[i]] += v[i];
}
for (int i = 1; i <= n; i++)
{
ans = std::max(ans, x[i]);
}
printf("%lld", ans);
return 0;
} | [
"little_sun0331@qq.com"
] | little_sun0331@qq.com |
062e902abc1d665b584d5abb7af74407f62b942e | b67044ae73272f81819304a9736d49c9727e868f | /OriginalPlan/.svn/pristine/b1/b1f1688da37656b05c0932df425a310895ccfc74.svn-base | 0fd46b434f1a5bd8c8cce43509ae1814b1e38079 | [] | no_license | bagua0301/red_slg | 5b16ab66354c552ab2066fc95effaca2a9a56535 | 50c48cbdfeb4ba373d2f9040c9b4c9e609e3b9cb | refs/heads/master | 2023-06-17T21:39:15.730529 | 2020-05-23T10:29:07 | 2020-05-23T10:29:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | #include "char_msg_handle.h"
#include "obj_character.h"
#include "role_base.h"
#include "map_scene_base.h"
#include "game_config.h"
#include "packet_cm_base.h"
void CCharMsgHandle::onResetPos(TObjUID_t objUID, TAxisPos_t x, TAxisPos_t y, EResetPosType type, bool broadFlag)
{
MCResetPos setPos;
setPos.objUID = objUID;
setPos.x = x;
setPos.y = y;
setPos.type = (uint8)type;
if (broadFlag)
{
_character->getScene()->broadCast(setPos, _character, true, g_GameConfig.broadcastRange);
}
else if (_character->isRole())
{
_character->toRoleBase()->sendPacket(setPos);
}
else
{
gxAssert(false);
}
}
void CCharMsgHandle::onActionBanChange(EActionBan ban)
{
// MCObjActionBan objState;
// objState.objUID = getObjUID();
// objState.state = getActionBan();
//
// if(actionBan == ACTION_BAN_LIVE)
// {
// getScene()->broadCast(objState, this, true);
// }
// else if(isRole())
// {
// CRole* pRole = getRoleOwner();
// if(NULL != pRole)
// {
// pRole->sendPacket(objState);
// }
// }
}
void CCharMsgHandle::onMoveUpdate(TPackMovePosList* posList, TObjUID_t objUID)
{
MCMoveBroad moveBroad;
moveBroad.posList = *posList;
moveBroad.objUID = objUID;
_character->getScene()->broadCast(moveBroad, _character, true, g_GameConfig.broadcastRange);
} | [
"zhangzhen0523@126.com"
] | zhangzhen0523@126.com | |
efbbdbef28d58b1b3839a993434a529713223d8c | 597fb3047835a8c9f53289fa71ecc74b067f24cd | /common/bfm/axi4_monitor/axi4_monitor_transaction.cpp | 775993208e719a47ea53643190a0d21121d84491 | [] | no_license | yeloer/socblox | 5ad7fb6e82ac29f2d57f7d758501f87f568b5562 | d2e83c343dfdac477e23b9b31b8d3a32a1238073 | refs/heads/master | 2020-05-31T23:30:36.277012 | 2016-03-01T00:49:40 | 2016-03-01T00:49:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 325 | cpp | /*
* axi4_monitor_transaction.cpp
*
* Created on: Oct 23, 2014
* Author: ballance
*/
#include "axi4_monitor_transaction.h"
axi4_monitor_transaction::axi4_monitor_transaction() {
data_idx = 0;
}
axi4_monitor_transaction::~axi4_monitor_transaction() {
// TODO Auto-generated destructor stub
}
| [
"ballance@ballance-VirtualBox"
] | ballance@ballance-VirtualBox |
bf26333f4adc359a9b9af1fc0a00c3c06cf43ee9 | a88f0ca4bc31b40ab414476f0a0df733418ff038 | /Include/3ds_Max/2018/iTargetedIO.h | 32e9260295d408c0702362052fdf9aff46cc3722 | [] | no_license | Goshido/GXEngine-Windows-OS-x64 | 8c9011442a5ef47a3c2864bdc7e6471e622763d5 | 10a1428d0284552856528d519283295388eea35b | refs/heads/master | 2020-06-28T16:59:26.904805 | 2019-11-24T06:07:03 | 2019-11-24T06:09:40 | 74,490,143 | 11 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,282 | h | /////////////////////////////////////////////////////////////////////////
//
//
// Targeted IO Utility
//
// Created 3-13-03: Tom Burke
//
#pragma once
// includes
#include "maxheap.h"
#include "sfx.h"
//==============================================================================
// ITargetedIO
/*!
\sa Class Renderer
\par Description:
The TargetedIO system is useful for renderers that wish to implement custom
Render Preset categories. The Mental Ray categories "Processing" and "Illumination"
are an example. TargetedIO is NOT important to developers who wish only to load and
save render presets, and are not implementing their own renderer.\n\n
Abstractly, ITargetedIO represents a subset of the current scene, a "targeted" set
of parameters, to be saved as a preset. Render Preset files are stored in the same
format as .max files, but contain only the target parts of the scene, namely the renderer's parameters.\n\n
In practice, an ITargetedIO instance is passed to the renderer when presets are saved and
loaded. The renderer filters what is saved and loaded by interacting with this IO object.
*/
//==============================================================================
class ITargetedIO: public MaxHeapOperators
{
public:
//! \brief This is used when a preset is saved.
/*! It is possible for the user to choose some categories
for the preset without selecting the renderer itself.
In this case the renderer is NOT part of the preset and its Load() method is
not called when the preset is loaded. Other categories defined by the renderer
might still be saved in the preset. For this reason, it is important that
each category be separate a ReferenceTarget with its own Load() and Save().
\param targetIndex - a category ID number as determined by the renderer.
\param rt - the object which embodies this category of parameters. */
virtual void AddSaveTarget( int targetIndex, ReferenceTarget * rt ) = 0;
//! \brief This is used when a preset is loaded.
/*! The renderer can
then copy this loaded set of parameters into its own active set. As described
above, the renderer might not have its Load() method called when the preset
is loaded, so so the renderer must take responsibility to call %GetSaveTarget()
and manually copy its parameters out of this object.
\param targetIndex - A category ID number as determined by the renderer.
\return the ReferenceTarget that was loaded under that category. */
virtual ReferenceTarget * GetSaveTarget( int targetIndex ) = 0;
//! This is used internally and should not be called by developers
virtual int SaveToFile( const MCHAR * fileName, FileIOType context ) = 0;
//! This is used internally and should not be called by developers
virtual int LoadFromFile( const MCHAR * fileName, FileIOType context ) = 0;
//! \brief Allows the renderer to preserve a ReferenceTarget object before a preset is loaded.
/*! these utility methods can be used by renderers to hang on to reference targets between
the RenderPresetsPreLoad and RenderPresetsPostLoad calls.
This is needed when the user has chosen to save the renderer in
the preset, but NOT all of its parameters. In this case the renderer's Load() will
be called which may result in loading parameters that the user did not want as part
of the preset. If the renderer sees that a certain category is not being loaded, it
can Store() that object before the load and Retrieve() it afterwards, restoring its
active set of parameters to their correct value.
\param targetIndex - A category ID number as determined by the renderer.
\param rt - the object which embodies this category of parameters. */
virtual void Store( int targetIndex, ReferenceTarget * rt ) = 0;
//! \brief returns a referenceTarget that was previously saved with Store().
/*! these utility methods can be used by renderers to hang on to reference targets between
the RenderPresetsPreLoad and RenderPresetsPostLoad calls.
\param targetIndex - A category ID number as determined by the renderer.
\return the object which embodies this category of parameters. */
virtual ReferenceTarget * Retrieve( int targetIndex ) = 0;
};
| [
"GoshidoMatazuki@mail.ru"
] | GoshidoMatazuki@mail.ru |
91d89ba81627a2118f6e526861d0e62b8b9bfb92 | adaf2349ba68d95e47cf198af9d39f84df38cf38 | /include/mredit/Editor.h | cb5e16ce932926cdb5868cf38cc65583888caac2 | [] | no_license | yang123vc/mredit | d72715288d32c35aaf1872c0b67922974b346e83 | f295ae79b4f316b89c3ae07eb88f763d812422bd | refs/heads/master | 2020-05-06T12:19:07.935463 | 2018-08-03T14:13:37 | 2018-08-03T14:13:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,614 | h | #pragma once
#include <QPlainTextEdit>
#include <mredit/Global.h>
#include <mredit/BookmarkGroup.h>
namespace mredit {
class CodeEditorPrivate;
class TextDocument;
namespace margin {
class MarginStacker;
class MarginStackerPrivate;
}
class Editor : public QPlainTextEdit
{
Q_OBJECT
Q_ENUMS(IndentationPolicy)
friend class CodeEditorPrivate;
friend class margin::MarginStacker;
friend class margin::MarginStackerPrivate;
public:
Editor( QWidget* parent = 0 );
virtual ~Editor();
enum IndentationPolicy {
UseTabs,
UseSpaces
};
TextDocument* textDocument() const;
void setTextDocument( TextDocument* document );
margin::MarginStacker* marginStacker() const;
void setMarginStacker(margin::MarginStacker* marginStacker );
QString text() const;
QString text(int line) const;
Editor::IndentationPolicy indentationPolicy();
int indentationWidth();
QPoint cursorPosition() const;
int lines() const;
int currentLine() const;
int currentColumn() const;
Global::Ruler rulerMode() const;
int rulerWidth() const;
void moveCursorToLine(int line, int col = -1);
void ensureLineVisible(int line, int col = -1);
void ensureLineCenter(int line, int col = -1);
QBrush paper() const;
QBrush pen() const;
QBrush selectionBackground() const;
QBrush selectionForeground() const;
QBrush caretLineBackground() const;
QBrush caretLineForeground() const;
BookmarkGroupList &bookmarkGroups();
bool hasBookmark(int bmgroup, const QTextBlock& block ) const;
bool hasBookmark(int bmgroup, int line ) const;
QRect blockRect( const QTextBlock& block ) const;
QRect lineRect( int line ) const;
bool isHighlightCaretLine() const;
void setHighlightCaretLine(bool value);
void setLabelLayout(bool value);
public slots:
void setText( const QString& text );
void setText( int line, const QString &text );
void setInitialText( const QString& text );
void openFile(const QString& filename);
void setCursorPosition( const QPoint& pos );
void setCurrentLine( int line );
void setCurrentColumn( int column );
void setRulerMode( Global::Ruler mode );
void setRulerWidth( int width );
void setPaper( const QBrush& brush );
void setPen( const QBrush& brush );
void setSelectionBackground( const QBrush& brush );
void setSelectionForeground( const QBrush& brush );
void setCaretLineBackground( const QBrush& brush );
void setCaretLineForeground( const QBrush& brush );
void setBookmark(int bmgroup, const QTextBlock& block, bool set );
void setBookmark(int bmgroup, int line, bool set );
void toggleBookmark(int bmgroup, const QTextBlock& block );
void toggleBookmark(int bmgroup, int line );
void clearBookmarks(int bmgroup);
void indent();
void unindent();
void indentSelection();
void unindentSelection();
void setTabWidth(int size);
void setIndentationPolicy(Editor::IndentationPolicy policy);
void setIndentationWidth(int width);
void insertTab();
void removeTab();
void insertLine(int after = -1);
void removeLine(int line = -1);
void duplicateLine(int line = -1);
void expandSelectionToLine();
void expandSelectionToWord();
void joinLines();
void swapLines(int first, int second);
void swapLineUp();
void swapLineDown();
protected:
bool event(QEvent* event) override;
void paintEvent(QPaintEvent* event) override;
void keyPressEvent(QKeyEvent *event) override;
private:
CodeEditorPrivate* d;
};
}
| [
"rangelspam@gmail.com"
] | rangelspam@gmail.com |
ff7649eb2b83818151076234a969f92da91ea8d1 | 5ec06dab1409d790496ce082dacb321392b32fe9 | /clients/cpp-qt5-qhttpengine-server/generated/server/src/models/OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo.h | a2a3617718c5d4704e27d09ddc5a52210b36e921 | [
"Apache-2.0",
"MIT"
] | permissive | shinesolutions/swagger-aem-osgi | e9d2385f44bee70e5bbdc0d577e99a9f2525266f | c2f6e076971d2592c1cbd3f70695c679e807396b | refs/heads/master | 2022-10-29T13:07:40.422092 | 2021-04-09T07:46:03 | 2021-04-09T07:46:03 | 190,217,155 | 3 | 3 | Apache-2.0 | 2022-10-05T03:26:20 | 2019-06-04T14:23:28 | null | UTF-8 | C++ | false | false | 2,197 | h | /**
* Adobe Experience Manager OSGI config (AEM) API
* Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API
*
* OpenAPI spec version: 1.0.0-pre.0
* Contact: opensource@shinesolutions.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/*
* OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo.h
*
*
*/
#ifndef OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_H
#define OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_H
#include <QJsonObject>
#include "OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties.h"
#include <QString>
#include "OAIObject.h"
namespace OpenAPI {
class OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo: public OAIObject {
public:
OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo();
OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo(QString json);
~OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo() override;
void init();
QString asJson () const override;
QJsonObject asJsonObject() const override;
void fromJsonObject(QJsonObject json) override;
void fromJson(QString jsonString) override;
QString getPid() const;
void setPid(const QString &pid);
QString getTitle() const;
void setTitle(const QString &title);
QString getDescription() const;
void setDescription(const QString &description);
OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties getProperties() const;
void setProperties(const OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties &properties);
virtual bool isSet() const override;
private:
QString pid;
bool m_pid_isSet;
QString title;
bool m_title_isSet;
QString description;
bool m_description_isSet;
OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties properties;
bool m_properties_isSet;
};
}
#endif // OAIComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_H
| [
"cliffano@gmail.com"
] | cliffano@gmail.com |
4cbb336f136ded632b873264356cc76626ddf0c5 | f4e1ae14a896c564cc4215c912e4db5d3e487232 | /src/main.cpp | 29305d0e7f56633e7061c8531f79869edace411d | [] | no_license | IgorKaan/new_ROS_msg | 3a0000601b4bbaec9b0b797ca72e7516ad0727c2 | b7959e81d4a83b4e429442beb6162144fc6a3f95 | refs/heads/master | 2020-06-26T00:07:15.788988 | 2019-07-30T11:03:02 | 2019-07-30T11:03:02 | 199,463,190 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,879 | cpp | #include <WiFi.h>
#include <ros.h>
#include "RobotMovement.h"
#include <Arduino.h>
#include <Wire.h>
#include "math.h"
#include <I2Cdev.h>
#include <MotorControl.h>
#include <stdio.h>
#include <HardwareSerial.h>
std::string receivedData;
std::string sign;
std::string angle;
std::string move;
std::string rotate;
std::string finish;
short speed = 100;
int correctValue = 0;
int distance = 0;
uint8_t finishValue = 0;
uint8_t splitindex;
bool rotateValue = 0;
bool moveForwardValue = 0;
uint8_t platformNumber = 201;
uint8_t sensorId;
bool moveSide = true;
const char* ssid = "213_Guest";
const char* password = "11081975";
IPAddress server(192, 168, 1, 44); // ip of your ROS server
IPAddress ip_address;
int status = WL_IDLE_STATUS;
WiFiClient client;
MotorControl GyroRobot;
class WiFiHardware {
public:
WiFiHardware() {};
void init() {
// do your initialization here. this probably includes TCP server/client setup
client.connect(server, 11411);
}
// read a byte from the serial port. -1 = failure
int read() {
// implement this method so that it reads a byte from the TCP connection and returns it
// you may return -1 is there is an error; for example if the TCP connection is not open
return client.read(); //will return -1 when it will works
}
// write data to the connection to ROS
void write(uint8_t* data, int length) {
// implement this so that it takes the arguments and writes or prints them to the TCP connection
for(int i=0; i<length; i++)
client.write(data[i]);
}
// returns milliseconds since start of program
unsigned long time() {
return millis(); // easy; did this one for you
}
};
void chatterCallback(const RobotMovement& msg) {
correctValue = msg.angle;
moveForwardValue = msg.movement;
rotateValue = msg.rotation;
distance = msg.distance;
// Serial.print(correctValue);
// Serial.print("\n");
// Serial.print(moveForwardValue);
// Serial.print("\n");
// Serial.print(rotateValue);
// Serial.print("\n");
// Serial.print("\n");
}
ros::Subscriber<RobotMovement> sub("robot_movement", &chatterCallback);
ros::NodeHandle_<WiFiHardware> nh;
void setupWiFi()
{
WiFi.begin(ssid, password);
Serial.print("\nConnecting to "); Serial.println(ssid);
uint8_t i = 0;
while (WiFi.status() != WL_CONNECTED && i++ < 2000) delay(500);
if(i == 2001){
Serial.print("Could not connect to"); Serial.println(ssid);
while(1) delay(500);
}
Serial.print("Ready! Use ");
Serial.print(WiFi.localIP());
Serial.println(" to access client");
}
void setup()
{
Serial.begin(115200);
GyroRobot = MotorControl();
setupWiFi();
// s.attach(2); // PWM pin
nh.initNode();
nh.subscribe(sub);
}
void loop()
{
nh.spinOnce();
if (correctValue <= 45 && correctValue >= -45 && moveForwardValue == 1 && rotateValue == 0 && finishValue == 0) {
GyroRobot.goForward(distance);
}
else if ((correctValue >= 135 || correctValue <= -135) && moveForwardValue == 1 && rotateValue == 0 && finishValue == 0) {
GyroRobot.goBackward(distance);
}
else if (correctValue > 45 && correctValue < 135 && moveForwardValue == 1 && rotateValue == 0 && finishValue == 0) {
GyroRobot.goRight(distance);
}
else if ((correctValue < -45 && correctValue > -135) && moveForwardValue == 1 && rotateValue == 0 && finishValue == 0) {
GyroRobot.goLeft(distance);
}
else if (moveForwardValue == 0 && rotateValue == 0)
{
GyroRobot.stopMovement();
}
else if (rotateValue == 1 && finishValue == 0) {
if (correctValue > 0) {
GyroRobot.turnRight(correctValue);
}
else if (correctValue < 0) {
GyroRobot.turnLeft(correctValue);
}
// if (correctValue <= 45 && correctValue >= 0) {
// GyroRobot.turnRight(speed);
// }
// else if (correctValue >= -45 && correctValue <= 0) {
// GyroRobot.turnLeft(speed);
// }
// else if (correctValue >= 135) {
// GyroRobot.turnLeft(speed);
// }
// else if (correctValue <= -135) {
// GyroRobot.turnRight(speed);
// }
// else if (correctValue > 45 && correctValue < 90) {
// GyroRobot.turnLeft(speed);
// }
// else if (correctValue >= 90 && correctValue < 135) {
// GyroRobot.turnRight(speed);
// }
// else if (correctValue < -45 && correctValue >= -90) {
// GyroRobot.turnRight(speed);
// }
// else if (correctValue < -90 && correctValue >= -135) {
// GyroRobot.turnLeft(speed);
// }
else if (moveForwardValue == 0 && rotateValue == 0)
{
GyroRobot.stopMovement();
}
}
delay(50);
}
| [
"igorkaan@yandex.ru"
] | igorkaan@yandex.ru |
c180bc7ffc964c23050141988555c3f5ca4379f1 | 56d91cae8ce2b1dfdc0ef00feab3fb61171182ff | /c++/createlib_a/Myfirstliba.cpp | 4d0281734c6b84489beb6a6353c3c40d6995701f | [] | no_license | wangjicong/C-CPP_DEMO | 91d22873773df5b1c4e9c6e94c05cc12419ce990 | 5cd043ac5625335adfc54bf4b32400a90000f3d8 | refs/heads/master | 2021-01-01T04:41:21.104161 | 2017-07-15T11:27:41 | 2017-07-15T11:27:41 | 97,223,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 132 | cpp | #include <iostream>
#include "Myfirstliba.h"
using namespace std;
void myfunction()
{
cout <<"this is from myfirstso "<<endl;
} | [
"wangjicong@sunvov.com"
] | wangjicong@sunvov.com |
8ddf634e835dee39f4be089aec71eba19a4abe12 | b8376621d63394958a7e9535fc7741ac8b5c3bdc | /lib/lib_XT12/Source/ReportControl/XTPReportNavigator.cpp | 521a1a459a0522c9dc6ffa69c61fd81a2de58367 | [] | no_license | 15831944/job_mobile | 4f1b9dad21cb7866a35a86d2d86e79b080fb8102 | ebdf33d006025a682e9f2dbb670b23d5e3acb285 | refs/heads/master | 2021-12-02T10:58:20.932641 | 2013-01-09T05:20:33 | 2013-01-09T05:20:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,402 | cpp | // XTPReportNavigator.cpp : implementation of the CXTPReportNavigator class.
//
// This file is a part of the XTREME REPORTCONTROL MFC class library.
// (c)1998-2008 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
// CONSENT OF CODEJOCK SOFTWARE.
//
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
// SINGLE COMPUTER.
//
// CONTACT INFORMATION:
// support@codejock.com
// http://www.codejock.com
//
/////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Resource.h"
#include "Common/XTPResourceManager.h"
#include "Common/XTPDrawHelpers.h"
#include "Common/XTPImageManager.h"
#include "Common/XTPVC80Helpers.h"
#include "XTPReportNavigator.h"
#include "XTPReportControl.h"
#include "XTPReportRecord.h"
#include "XTPReportRecordItem.h"
#include "XTPReportColumn.h"
#include "XTPReportColumns.h"
#include "XTPReportInplaceControls.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// CXTPReportNavigator
CXTPReportNavigator::CXTPReportNavigator(CXTPReportControl* pReportControl)
: m_pReportControl(pReportControl), m_bCurrentFocusInHeadersRows(FALSE), m_bCurrentFocusInFootersRows(FALSE)
{
}
CXTPReportNavigator::~CXTPReportNavigator()
{
}
void CXTPReportNavigator::MoveDown(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
CXTPReportRow* pNextRow = NULL;
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
if (m_bCurrentFocusInHeadersRows)
{
pNextRow = m_pReportControl->m_pHeaderRows->GetNext(pFocusedRow, m_pReportControl->m_bSkipGroupsFocus);
// from the last header row jump to the first visible body row
if (pFocusedRow == pNextRow)
{
MoveFirstVisibleRow(xtpRowTypeBody);
}
else
{
m_pReportControl->SetFocusedRow(pNextRow, bSelectBlock, bIgnoreSelection);
}
}
else if (m_bCurrentFocusInFootersRows)
{
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pFooterRows->GetNext(pFocusedRow, m_pReportControl->m_bSkipGroupsFocus),
bSelectBlock,
bIgnoreSelection);
}
else
{
// body rows
pNextRow = m_pReportControl->m_pRows->GetNext(pFocusedRow, m_pReportControl->m_bSkipGroupsFocus);
if (pNextRow)
{
// from the last body row jump to the first header row
if (m_pReportControl->m_nFocusedRow == pNextRow->GetIndex())
{
if (m_pReportControl->IsFooterRowsVisible() && m_pReportControl->IsFooterRowsAllowAccess())
MoveFirstVisibleRow(xtpRowTypeFooter);
}
else
{
m_pReportControl->SetFocusedRow(pNextRow, bSelectBlock, bIgnoreSelection);
}
}
}
}
void CXTPReportNavigator::MoveUp(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
CXTPReportRow* pPrevRow = NULL;
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
if (m_bCurrentFocusInHeadersRows)
{
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pHeaderRows->GetPrev(pFocusedRow, m_pReportControl->m_bSkipGroupsFocus),
bSelectBlock,
bIgnoreSelection);
}
else if (m_bCurrentFocusInFootersRows)
{
pPrevRow = m_pReportControl->m_pFooterRows->GetPrev(pFocusedRow, m_pReportControl->m_bSkipGroupsFocus);
// from the first footer row jump to the last visible body row
if (pFocusedRow == pPrevRow)
{
MoveLastVisibleRow(xtpRowTypeBody);
}
else
{
m_pReportControl->SetFocusedRow(pPrevRow, bSelectBlock, bIgnoreSelection);
}
}
else
{
// body rows
pPrevRow = m_pReportControl->m_pRows->GetPrev(pFocusedRow, m_pReportControl->m_bSkipGroupsFocus);
if (pPrevRow)
{
// from the first body row jump to the last header row
if (m_pReportControl->m_nFocusedRow == pPrevRow->GetIndex())
{
if (m_pReportControl->IsHeaderRowsVisible() && m_pReportControl->IsHeaderRowsAllowAccess())
MoveLastVisibleRow(xtpRowTypeHeader);
}
else
{
m_pReportControl->SetFocusedRow(pPrevRow, bSelectBlock, bIgnoreSelection);
}
}
}
}
void CXTPReportNavigator::MovePageDown(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
int nCurrentRowIndex = m_pReportControl->m_nFocusedRow != -1 ? m_pReportControl->m_nFocusedRow : 0;
nCurrentRowIndex = min(
m_pReportControl->m_pRows->GetCount() - 1,
nCurrentRowIndex + m_pReportControl->GetReportAreaRows(nCurrentRowIndex, true));
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pRows->GetAt(nCurrentRowIndex),
bSelectBlock,
bIgnoreSelection);
}
void CXTPReportNavigator::MovePageUp(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
int nCurrentRowIndex = m_pReportControl->m_nFocusedRow != -1 ? m_pReportControl->m_nFocusedRow : 0;
nCurrentRowIndex = max(0, nCurrentRowIndex - m_pReportControl->GetReportAreaRows(nCurrentRowIndex, false));
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pRows->GetAt(nCurrentRowIndex),
bSelectBlock,
bIgnoreSelection);
}
void CXTPReportNavigator::MoveFirstRow(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pRows->GetAt(0),
bSelectBlock,
bIgnoreSelection);
}
void CXTPReportNavigator::MoveLastRow(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pRows->GetAt(m_pReportControl->m_pRows->GetCount() - 1),
bSelectBlock,
bIgnoreSelection);
}
void CXTPReportNavigator::MoveToRow(int nRowIndex, BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
int nCurrentRowIndex = max(0, nRowIndex);
nCurrentRowIndex = min(nCurrentRowIndex, m_pReportControl->m_pRows->GetCount() - 1);
if (nCurrentRowIndex < 0)
{
return;
}
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pRows->GetAt(nCurrentRowIndex),
bSelectBlock,
bIgnoreSelection);
}
void CXTPReportNavigator::BeginEdit()
{
if (!m_pReportControl)
return;
m_pReportControl->AdjustScrollBars();
m_pReportControl->RedrawControl();
m_pReportControl->UpdateWindow();
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
if (m_pReportControl->m_pFocusedColumn &&
pFocusedRow && pFocusedRow->GetRecord())
{
XTP_REPORTRECORDITEM_ARGS itemArgs(m_pReportControl, pFocusedRow, m_pReportControl->m_pFocusedColumn);
if (itemArgs.pItem && itemArgs.pItem->IsAllowEdit(&itemArgs))
{
if (!m_pReportControl->IsVirtualMode())
{
m_pReportControl->EnsureVisible(pFocusedRow);
}
m_pReportControl->EditItem(&itemArgs);
if (m_pReportControl->GetInplaceEdit()->GetSafeHwnd() &&
m_pReportControl->GetInplaceEdit()->GetItem() == itemArgs.pItem)
{
CXTPReportRecordItemEditOptions* pEditOptions = itemArgs.pItem->GetEditOptions(itemArgs.pColumn);
if (pEditOptions && pEditOptions->m_bSelectTextOnEdit)
{
m_pReportControl->GetInplaceEdit()->SetSel(0, -1);
}
else
{
CString str;
m_pReportControl->GetInplaceEdit()->GetWindowText(str);
m_pReportControl->GetInplaceEdit()->SetSel(str.GetLength(), str.GetLength());
}
}
}
}
}
void CXTPReportNavigator::MoveLeftRight(BOOL bBack, BOOL bSelectBlock, BOOL bIgnoreSelection)
{
if (!m_pReportControl)
return;
CXTPReportControl::CUpdateContext updateContext(m_pReportControl);
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
CXTPReportColumn* pFocusedColumn = m_pReportControl->GetNextFocusableColumn(pFocusedRow,
m_pReportControl->m_pFocusedColumn ? m_pReportControl->m_pFocusedColumn->GetIndex() : -1,
bBack ? -1 : 1);
if (pFocusedColumn)
{
m_pReportControl->SetFocusedColumn(pFocusedColumn);
}
else
{
CXTPReportRows* pRows;
int nFocusedRow = m_pReportControl->GetFocusedRow() ? m_pReportControl->GetFocusedRow()->GetIndex() : -1;
switch(pFocusedRow->GetType())
{
case xtpRowTypeHeader : pRows = m_pReportControl->GetHeaderRows(); break;
case xtpRowTypeFooter : pRows = m_pReportControl->GetFooterRows(); break;
default : pRows = m_pReportControl->GetRows(); break;
}
CXTPReportRow* pRow = bBack ? pRows->GetPrev(pFocusedRow, FALSE) : pRows->GetNext(pFocusedRow, FALSE);
if (pRow && pRow->GetIndex() != nFocusedRow)
{
m_pReportControl->SetFocusedRow(pRow, bSelectBlock, bIgnoreSelection);
m_pReportControl->SetFocusedColumn(
m_pReportControl->GetNextFocusableColumn(
m_pReportControl->GetFocusedRow(),
bBack ? m_pReportControl->m_pColumns->GetCount() : -1,
bBack ? -1 : +1)
);
}
}
}
void CXTPReportNavigator::MoveLeft(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
MoveLeftRight(TRUE, bSelectBlock, bIgnoreSelection);
}
void CXTPReportNavigator::MoveRight(BOOL bSelectBlock, BOOL bIgnoreSelection)
{
MoveLeftRight(FALSE, bSelectBlock, bIgnoreSelection);
}
void CXTPReportNavigator::MoveFirstColumn()
{
if (!m_pReportControl)
return;
CXTPReportControl::CUpdateContext updateContext(m_pReportControl);
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
CXTPReportColumn* pFocusedColumn = m_pReportControl->GetNextFocusableColumn(pFocusedRow, -1, +1);
if (pFocusedColumn)
{
m_pReportControl->SetFocusedColumn(pFocusedColumn);
}
}
void CXTPReportNavigator::MoveLastColumn()
{
if (!m_pReportControl)
return;
CXTPReportControl::CUpdateContext updateContext(m_pReportControl);
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
CXTPReportColumn* pFocusedColumn = m_pReportControl->GetNextFocusableColumn(pFocusedRow, m_pReportControl->GetColumns()->GetCount(), -1);
if (pFocusedColumn)
{
m_pReportControl->SetFocusedColumn(pFocusedColumn);
}
}
void CXTPReportNavigator::MoveToColumn(int nColumnIndex, BOOL bClearIfNonFocusable)
{
if (!m_pReportControl)
{
return;
}
nColumnIndex = max(0, nColumnIndex);
nColumnIndex = min(nColumnIndex, m_pReportControl->GetColumns()->GetCount()-1);
if (nColumnIndex < 0)
{
return;
}
CXTPReportControl::CUpdateContext updateContext(m_pReportControl);
CXTPReportRow* pFocusedRow = m_pReportControl->GetFocusedRow();
CXTPReportColumn* pColumn = m_pReportControl->GetColumns()->GetAt(nColumnIndex);
if (!pColumn)
{
return;
}
CXTPReportRecordItem* pItem = pFocusedRow->GetRecord()->GetItem(pColumn);
if (!pItem || !pItem->IsFocusable())
{
if (bClearIfNonFocusable)
{
pColumn = NULL;
}
else
{
return;
}
}
m_pReportControl->SetFocusedColumn(pColumn);
}
void CXTPReportNavigator::SetCurrentFocusInHeadersRows(BOOL bCurrentFocusInHeadersRows)
{
if(m_pReportControl->m_bHeaderRecordsVisible && m_pReportControl->m_bHeaderRowsAllowAccess)
{
m_bCurrentFocusInHeadersRows = bCurrentFocusInHeadersRows;
}
else
{
m_bCurrentFocusInHeadersRows = FALSE;
}
if (m_bCurrentFocusInHeadersRows)
{
MoveFirstVisibleRow(xtpRowTypeHeader);
}
else if (!m_bCurrentFocusInFootersRows && m_pReportControl->m_bHeaderRowsAllowAccess)
{
MoveFirstVisibleRow(xtpRowTypeBody); // neither header nor footer is active
}
}
void CXTPReportNavigator::SetCurrentFocusInFootersRows(BOOL bCurrentFocusInFootersRows)
{
if(m_pReportControl->m_bFooterRecordsVisible && m_pReportControl->m_bFooterRowsAllowAccess)
{
m_bCurrentFocusInFootersRows = bCurrentFocusInFootersRows;
}
else
{
m_bCurrentFocusInFootersRows = FALSE;
}
if (m_bCurrentFocusInFootersRows)
{
MoveFirstVisibleRow(xtpRowTypeFooter);
}
else if (!m_bCurrentFocusInHeadersRows && m_pReportControl->m_bFooterRowsAllowAccess)
{
MoveFirstVisibleRow(xtpRowTypeBody); // neither header nor footer is active
}
}
BOOL CXTPReportNavigator::GetCurrentFocusInHeadersRows()
{
return m_bCurrentFocusInHeadersRows;
}
BOOL CXTPReportNavigator::GetCurrentFocusInFootersRows()
{
return m_bCurrentFocusInFootersRows;
}
void CXTPReportNavigator::SetMovePosition(XTPReportRowType RowType)
{
switch(RowType)
{
case xtpRowTypeBody: m_bCurrentFocusInHeadersRows = FALSE; m_bCurrentFocusInFootersRows = FALSE; break;
case xtpRowTypeHeader: m_bCurrentFocusInHeadersRows = TRUE; m_bCurrentFocusInFootersRows = FALSE; break;
case xtpRowTypeFooter: m_bCurrentFocusInHeadersRows = FALSE; m_bCurrentFocusInFootersRows = TRUE; break;
}
}
void CXTPReportNavigator::MoveFirstVisibleRow(XTPReportRowType TargetType)
{
switch(TargetType)
{
case xtpRowTypeBody: m_pReportControl->SetFocusedRow(m_pReportControl->m_pRows->GetAt(m_pReportControl->m_nTopRow));
break;
case xtpRowTypeHeader: if (m_pReportControl->m_pHeaderRows)
{
if (m_pReportControl->m_pHeaderRows->GetCount()>0)
m_pReportControl->SetFocusedRow(m_pReportControl->m_pHeaderRows->GetAt(0));
}
break;
case xtpRowTypeFooter: if (m_pReportControl->m_pFooterRows)
{
if (m_pReportControl->m_pFooterRows->GetCount()>0)
m_pReportControl->SetFocusedRow(m_pReportControl->m_pFooterRows->GetAt(0));
}
break;
}
}
void CXTPReportNavigator::MoveLastVisibleRow(XTPReportRowType TargetType)
{
switch(TargetType)
{
case xtpRowTypeBody: {
int nRows = m_pReportControl->GetReportAreaRows(m_pReportControl->m_nTopRow, TRUE);
if (nRows > -1 && m_pReportControl->m_pRows->GetCount()>0)
{
int nIdx = min(m_pReportControl->m_nTopRow + nRows, m_pReportControl->m_pRows->GetCount()-1);
m_pReportControl->SetFocusedRow(m_pReportControl->m_pRows->GetAt(nIdx));
}
}
break;
case xtpRowTypeHeader: if (m_pReportControl->m_pHeaderRows && m_pReportControl->m_pHeaderRows->GetCount()>0)
{
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pHeaderRows->GetAt(m_pReportControl->m_pHeaderRows->GetCount()-1));
}
break;
case xtpRowTypeFooter: if (m_pReportControl->m_pFooterRows && m_pReportControl->m_pFooterRows->GetCount()>0)
{
m_pReportControl->SetFocusedRow(
m_pReportControl->m_pFooterRows->GetAt(m_pReportControl->m_pFooterRows->GetCount()-1));
}
break;
}
}
//////////////////////////////////////////////////////////////////////////
| [
"whdnrfo@gmail.com"
] | whdnrfo@gmail.com |
4394fc6065fcc55e3ad6b8c8d2837703fc3670f1 | 032c2e67d5a3d4c706a57846f00c995a3f8a6e04 | /mediatek/platform/mt6571/hardware/mtkcam/v1/hal/adapter/MtkZsd/MtkZsdNcc/MtkZsdNccCamAdapter.CaptureCallback.cpp | 11a0e85b8437f4d51117538ea807f015ab7772f8 | [] | no_license | chen3135/OrangePi3G-iot_external | 825a082b09a93a8a7f085f8e4938c8a51ac7fae4 | 6bf3d18220a0a382a79e71525a4c184163a496b2 | refs/heads/master | 2021-10-26T11:01:50.168049 | 2019-04-12T08:31:45 | 2019-04-12T08:31:45 | 180,967,406 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,921 | cpp | /* Copyright Statement:
*
* This software/firmware and related documentation ("MediaTek Software") are
* protected under relevant copyright laws. The information contained herein is
* confidential and proprietary to MediaTek Inc. and/or its licensors. Without
* the prior written permission of MediaTek inc. and/or its licensors, any
* reproduction, modification, use or disclosure of MediaTek Software, and
* information contained herein, in whole or in part, shall be strictly
* prohibited.
*
* MediaTek Inc. (C) 2010. All rights reserved.
*
* BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER
* ON AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL
* WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
* NONINFRINGEMENT. NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH
* RESPECT TO THE SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY,
* INCORPORATED IN, OR SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES
* TO LOOK ONLY TO SUCH THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO.
* RECEIVER EXPRESSLY ACKNOWLEDGES THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO
* OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES CONTAINED IN MEDIATEK
* SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE
* RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
* STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S
* ENTIRE AND CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE
* RELEASED HEREUNDER WILL BE, AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE
* MEDIATEK SOFTWARE AT ISSUE, OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE
* CHARGE PAID BY RECEIVER TO MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
* The following software/firmware and/or related documentation ("MediaTek
* Software") have been modified by MediaTek Inc. All revisions are subject to
* any receiver's applicable license agreements with MediaTek Inc.
*/
#define LOG_TAG "MtkCam/CamAdapter"
//
#include <camera/MtkCamera.h>
//
#include <mtkcam/v1/config/PriorityDefs.h>
#include <inc/CamUtils.h>
using namespace android;
using namespace MtkCamUtils;
//
#include <inc/ImgBufProvidersManager.h>
#include <mtkcam/v1/IParamsManager.h>
//
#include <mtkcam/v1/ICamAdapter.h>
#include <inc/BaseCamAdapter.h>
#include "inc/MtkZsdNccCamAdapter.h"
using namespace NSMtkZsdNccCamAdapter;
//
#include <mtkcam/drv/hwutils.h>
//
#include <sys/prctl.h>
//
/******************************************************************************
*
*******************************************************************************/
#define MY_LOGV(fmt, arg...) CAM_LOGV("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
#define MY_LOGD(fmt, arg...) CAM_LOGD("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
#define MY_LOGI(fmt, arg...) CAM_LOGI("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
#define MY_LOGW(fmt, arg...) CAM_LOGW("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
#define MY_LOGE(fmt, arg...) CAM_LOGE("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
#define MY_LOGA(fmt, arg...) CAM_LOGA("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
#define MY_LOGF(fmt, arg...) CAM_LOGF("(%d)(%s)[%s] "fmt, ::gettid(), getName(), __FUNCTION__, ##arg)
//
#define MY_LOGV_IF(cond, ...) do { if ( (cond) ) { MY_LOGV(__VA_ARGS__); } }while(0)
#define MY_LOGD_IF(cond, ...) do { if ( (cond) ) { MY_LOGD(__VA_ARGS__); } }while(0)
#define MY_LOGI_IF(cond, ...) do { if ( (cond) ) { MY_LOGI(__VA_ARGS__); } }while(0)
#define MY_LOGW_IF(cond, ...) do { if ( (cond) ) { MY_LOGW(__VA_ARGS__); } }while(0)
#define MY_LOGE_IF(cond, ...) do { if ( (cond) ) { MY_LOGE(__VA_ARGS__); } }while(0)
#define MY_LOGA_IF(cond, ...) do { if ( (cond) ) { MY_LOGA(__VA_ARGS__); } }while(0)
#define MY_LOGF_IF(cond, ...) do { if ( (cond) ) { MY_LOGF(__VA_ARGS__); } }while(0)
/******************************************************************************
*
******************************************************************************/
//
// Callback of Error (CAMERA_MSG_ERROR)
//
// Arguments:
// ext1
// [I] extend argument 1.
//
// ext2
// [I] extend argument 2.
//
bool
CamAdapter::
onCB_Error(
int32_t ext1,
int32_t ext2
)
{
MY_LOGW("CAMERA_MSG_ERROR %d %d", ext1, ext2);
mpCamMsgCbInfo->mNotifyCb(CAMERA_MSG_ERROR, ext1, ext2, mpCamMsgCbInfo->mCbCookie);
return true;
}
/******************************************************************************
*
******************************************************************************/
namespace {
struct ShutterThread : public Thread
{
protected: //// Data Members.
sp<CamMsgCbInfo> mpCamMsgCbInfo;
int32_t mi4PlayShutterSound;
public:
ShutterThread(
sp<CamMsgCbInfo> pCamMsgCbInfo,
int32_t i4PlayShutterSound
)
: Thread()
, mpCamMsgCbInfo(pCamMsgCbInfo)
, mi4PlayShutterSound(i4PlayShutterSound)
{}
// Good place to do one-time initializations
status_t
readyToRun()
{
::prctl(PR_SET_NAME, (unsigned long)"ShutterThread", 0, 0, 0);
//
int const expect_policy = SCHED_RR;
int const expect_priority = PRIO_RT_CAMERA_SHUTTER_CB;
int policy = 0, priority = 0;
setThreadPriority(expect_policy, expect_priority);
getThreadPriority(policy, priority);
//
CAM_LOGD(
"[ShutterThread] policy:(expect, result)=(%d, %d), priority:(expect, result)=(0x%x, 0x%x)"
, expect_policy, policy, expect_priority, priority
);
return OK;
}
private:
bool
threadLoop()
{
CAM_LOGD("(%d)[ShutterThread] +", ::gettid());
#if 1 //defined(MTK_CAMERA_BSP_SUPPORT)
mpCamMsgCbInfo->mNotifyCb(MTK_CAMERA_MSG_EXT_NOTIFY, MTK_CAMERA_MSG_EXT_NOTIFY_SHUTTER, mi4PlayShutterSound, mpCamMsgCbInfo->mCbCookie);
#else
mpCamMsgCbInfo->mNotifyCb(CAMERA_MSG_SHUTTER, 0, 0, mpCamMsgCbInfo->mCbCookie);
#endif
CAM_LOGD("(%d)[ShutterThread] -", ::gettid());
return false; // returns false, the thread will exit upon return.
}
};
}; // namespace
/******************************************************************************
*
******************************************************************************/
//
// Callback of Shutter (CAMERA_MSG_SHUTTER)
//
// Invoking this callback may play a shutter sound.
//
// Arguments:
// bPlayShutterSound
// [I] Play a shutter sound if ture; otherwise play no sound.
//
// u4CallbackIndex
// [I] Callback index. 0 by default.
// If more than one shutter callback must be invoked during
// captures, for example burst shot & ev shot, this value is
// the callback index; and 0 indicates the first one callback.
//
bool
CamAdapter::
onCB_Shutter(
bool const bPlayShutterSound,
uint32_t const u4CallbackIndex
)
{
if ( msgTypeEnabled(CAMERA_MSG_SHUTTER) )
{
sp<Thread> pThread = new ShutterThread(mpCamMsgCbInfo, bPlayShutterSound);
if ( pThread == 0 || pThread->run() != OK )
{
MY_LOGW("Fail to run ShutterThread (%p)", pThread.get());
return false;
}
}
return true;
}
/******************************************************************************
*
******************************************************************************/
//
// Callback of Postview for Display
//
// Arguments:
// i8Timestamp
// [I] Postview timestamp
//
// u4PostviewSize
// [I] Postview buffer size in bytes.
//
// puPostviewBuf
// [I] Postview buffer with its size = u4PostviewSize
//
bool
CamAdapter::
onCB_PostviewDisplay(
int64_t const i8Timestamp,
uint32_t const u4PostviewSize,
uint8_t const* puPostviewBuf
)
{
MY_LOGD("timestamp(%lld), size/buf=%d/%p", i8Timestamp, u4PostviewSize, puPostviewBuf);
#if 1
//
if ( ! u4PostviewSize || ! puPostviewBuf )
{
MY_LOGW("Bad callback: size/buf=%d/%p", i8Timestamp, u4PostviewSize, puPostviewBuf);
return false;
}
//
sp<IImgBufProvider> pImgBufPvdr = mpImgBufProvidersMgr->getProvider(IImgBufProvider::eID_DISPLAY);
if ( pImgBufPvdr == 0 )
{
MY_LOGW("Bad IImgBufProvider");
return false;
}
//
ImgBufQueNode node;
if ( ! pImgBufPvdr->dequeProvider(node) )
{
MY_LOGW("dequeProvider fail");
return false;
}
//
sp<IImgBuf> pImgBuf = node.getImgBuf();
if ( u4PostviewSize != pImgBuf->getBufSize() )
{
MY_LOGW(
"callback size(%d) != display:[%d %s %dx%d]",
u4PostviewSize, pImgBuf->getBufSize(), pImgBuf->getImgFormat().string(),
pImgBuf->getImgWidth(), pImgBuf->getImgHeight()
);
node.setStatus(ImgBufQueNode::eSTATUS_CANCEL);
}
else
{
::memcpy(pImgBuf->getVirAddr(), puPostviewBuf, u4PostviewSize);
globalcacheFlushAll();
MY_LOGD_IF(1, "- globalcacheFlushAll()");
//
pImgBuf->setTimestamp(i8Timestamp);
node.setStatus(ImgBufQueNode::eSTATUS_DONE);
}
//
if ( ! pImgBufPvdr->enqueProvider(node) )
{
MY_LOGW("enqueProvider fail");
return false;
}
//
#endif
return true;
}
/******************************************************************************
*
******************************************************************************/
//
// Callback of Postview for Client (CAMERA_MSG_POSTVIEW_FRAME)
//
// Arguments:
// i8Timestamp
// [I] Postview timestamp
//
// u4PostviewSize
// [I] Postview buffer size in bytes.
//
// puPostviewBuf
// [I] Postview buffer with its size = u4PostviewSize
//
bool
CamAdapter::
onCB_PostviewClient(
int64_t const i8Timestamp,
uint32_t const u4PostviewSize,
uint8_t const* puPostviewBuf
)
{
MY_LOGD("timestamp(%lld), size/buf=%d/%p", i8Timestamp, u4PostviewSize, puPostviewBuf);
MY_LOGW("Not implement yet");
return true;
}
/******************************************************************************
*
******************************************************************************/
//
// Callback of Raw Image (CAMERA_MSG_RAW_IMAGE/CAMERA_MSG_RAW_IMAGE_NOTIFY)
//
// Arguments:
// i8Timestamp
// [I] Raw image timestamp
//
// u4RawImgSize
// [I] Raw image buffer size in bytes.
//
// puRawImgBuf
// [I] Raw image buffer with its size = u4RawImgSize
//
bool
CamAdapter::
onCB_RawImage(
int64_t const i8Timestamp,
uint32_t const u4RawImgSize,
uint8_t const* puRawImgBuf
)
{
MY_LOGD("timestamp(%lld), size/buf=%d/%p", i8Timestamp, u4RawImgSize, puRawImgBuf);
//
if ( msgTypeEnabled(CAMERA_MSG_RAW_IMAGE_NOTIFY) )
{
MY_LOGD("CAMERA_MSG_RAW_IMAGE_NOTIFY");
mpCamMsgCbInfo->mNotifyCb(CAMERA_MSG_RAW_IMAGE_NOTIFY, 0, 0, mpCamMsgCbInfo->mCbCookie);
return true;
}
//
if ( msgTypeEnabled(CAMERA_MSG_RAW_IMAGE) )
{
MY_LOGD("CAMERA_MSG_RAW_IMAGE");
if ( ! u4RawImgSize || ! puRawImgBuf )
{
MY_LOGD("dummy callback");
camera_memory* pmem = mpCamMsgCbInfo->mRequestMemory(-1, 1, 1, NULL);
if ( pmem )
{
mpCamMsgCbInfo->mDataCb(CAMERA_MSG_RAW_IMAGE, pmem, 0, NULL, mpCamMsgCbInfo->mCbCookie);
pmem->release(pmem);
}
}
else
{
camera_memory* pmem = mpCamMsgCbInfo->mRequestMemory(-1, u4RawImgSize, 1, NULL);
{
::memcpy(pmem->data, puRawImgBuf, u4RawImgSize);
mpCamMsgCbInfo->mDataCb(CAMERA_MSG_RAW_IMAGE, pmem, 0, NULL, mpCamMsgCbInfo->mCbCookie);
pmem->release(pmem);
}
}
}
//
return true;
}
/******************************************************************************
* ZIP (Compressed) Image Callback Thread
******************************************************************************/
namespace {
struct ZipImageCallbackThread : public Thread
{
protected: //// Data Members.
char const*const mpszThreadName;
sp<CamMsgCbInfo> mpCamMsgCbInfo;
camera_memory* mpImage;
uint32_t const mu4CallbackIndex;
bool mfgIsFinalImage;
uint32_t mu4ShotMode;
public:
ZipImageCallbackThread(
sp<CamMsgCbInfo> pCamMsgCbInfo,
camera_memory* image,
uint32_t const u4CallbackIndex,
bool const fgIsFinalImage,
uint32_t const u4ShotMode
)
: Thread()
, mpszThreadName("ZipImageCallbackThread")
, mpCamMsgCbInfo(pCamMsgCbInfo)
, mpImage(image)
, mu4CallbackIndex(u4CallbackIndex)
, mfgIsFinalImage(fgIsFinalImage)
, mu4ShotMode(u4ShotMode)
{}
// Good place to do one-time initializations
status_t
readyToRun()
{
::prctl(PR_SET_NAME, (unsigned long)mpszThreadName, 0, 0, 0);
//
int const expect_policy = SCHED_RR;
int const expect_priority = PRIO_RT_CAMERA_ZIP_IMAGE_CB;
int policy = 0, priority = 0;
setThreadPriority(expect_policy, expect_priority);
getThreadPriority(policy, priority);
//
CAM_LOGD(
"[%s] policy:(expect, result)=(%d, %d), priority:(expect, result)=(0x%x, 0x%x)"
, mpszThreadName, expect_policy, policy, expect_priority, priority
);
return OK;
}
private:
bool
threadLoop()
{
if ( mfgIsFinalImage )
{
CAM_LOGD("(%d)[%s] the final image: wait done before callback", ::gettid(), mpszThreadName);
IStateManager* pStateManager = IStateManager::inst();
IStateManager::StateObserver stateWaiter(pStateManager);
pStateManager->registerOneShotObserver(&stateWaiter);
if ( OK != stateWaiter.waitState(IState::eState_Idle) )
{
CAM_LOGW(
"(%d)[%s] do nothing due to fail to wait - Index:%d ShotMode:%d",
::gettid(), mpszThreadName, mu4CallbackIndex, mu4ShotMode
);
return false;
}
}
#if 1 //defined(MTK_CAMERA_BSP_SUPPORT)
CAM_LOGD("(%d)[%s] MTK_CAMERA_MSG_EXT_DATA_COMPRESSED_IMAGE - Index:%d ShotMode:%d", ::gettid(), mpszThreadName, mu4CallbackIndex, mu4ShotMode);
mpCamMsgCbInfo->mDataCb(MTK_CAMERA_MSG_EXT_DATA, mpImage, 0, NULL, mpCamMsgCbInfo->mCbCookie);
mpImage->release(mpImage);
#else
CAM_LOGD("(%d)[%s] CAMERA_MSG_COMPRESSED_IMAGE - Index:%d ShotMode:%d", ::gettid(), mpszThreadName, mu4CallbackIndex, mu4ShotMode);
mpCamMsgCbInfo->mDataCb(CAMERA_MSG_COMPRESSED_IMAGE, mpImage, 0, NULL, mpCamMsgCbInfo->mCbCookie);
mpImage->release(mpImage);
#endif
if ( mfgIsFinalImage )
{
mpCamMsgCbInfo->mNotifyCb(MTK_CAMERA_MSG_EXT_NOTIFY, MTK_CAMERA_MSG_EXT_NOTIFY_CAPTURE_DONE, 0, mpCamMsgCbInfo->mCbCookie);
}
// Fix me this, make only continuous shot mode CB end msg
if ( mfgIsFinalImage && eShotMode_ContinuousShot == mu4ShotMode )
{
#if 1 //defined(MTK_CAMERA_BSP_SUPPORT)
CAM_LOGD("Continuous shot end msg callback, total shot number is %d", mu4CallbackIndex);
mpCamMsgCbInfo->mNotifyCb(MTK_CAMERA_MSG_EXT_NOTIFY, MTK_CAMERA_MSG_EXT_NOTIFY_CONTINUOUS_END, mu4CallbackIndex, mpCamMsgCbInfo->mCbCookie);
#endif
}
CAM_LOGD("(%d)[%s] -", ::gettid(), mpszThreadName);
return false; // returns false, the thread will exit upon return.
}
};
}; // namespace
/******************************************************************************
*
******************************************************************************/
//
// Callback of Compressed Image (CAMERA_MSG_COMPRESSED_IMAGE)
//
// [Compressed Image] = [Header] + [Bitstream],
// where
// Header may be jpeg exif (including thumbnail)
//
// Arguments:
// i8Timestamp
// [I] Compressed image timestamp
//
// u4BitstreamSize
// [I] Bitstream buffer size in bytes.
//
// puBitstreamBuf
// [I] Bitstream buffer with its size = u4BitstreamSize
//
// u4HeaderSize
// [I] Header size in bytes; header may be jpeg exif.
//
// puHeaderBuf
// [I] Header buffer with its size = u4HeaderSize
//
// u4CallbackIndex
// [I] Callback index. 0 by default.
// If more than one compressed callback must be invoked during
// captures, for example burst shot & ev shot, this value is
// the callback index; and 0 indicates the first one callback.
//
// fgIsFinalImage
// [I] booliean value to indicate whether it is the final image.
// true if this is the final image callback; otherwise false.
// For single captures, this value must be true.
//
bool
CamAdapter::
onCB_CompressedImage(
int64_t const i8Timestamp,
uint32_t const u4BitstreamSize,
uint8_t const* puBitstreamBuf,
uint32_t const u4HeaderSize,
uint8_t const* puHeaderBuf,
uint32_t const u4CallbackIndex,
bool fgIsFinalImage,
uint32_t const msgType
)
{
MY_LOGD(
"timestamp(%lld), bitstream:size/buf=%d/%p, header:size/buf=%d/%p, index(%d), IsFinalImage(%d)",
i8Timestamp, u4BitstreamSize, puBitstreamBuf, u4HeaderSize, puHeaderBuf, u4CallbackIndex, fgIsFinalImage
);
//
if ( ! msgTypeEnabled(CAMERA_MSG_COMPRESSED_IMAGE) )
{
MY_LOGW("msgTypeEnabled=%#x", msgTypeEnabled(0xFFFFFFFF));
return false;
}
//
camera_memory* image = NULL;
uint8_t* pImage = NULL;
//
#if 1 //defined(MTK_CAMERA_BSP_SUPPORT)
uint32_t const u4DataSize = u4HeaderSize + u4BitstreamSize + sizeof(uint32_t)*(1+1);
image = mpCamMsgCbInfo->mRequestMemory(-1, u4DataSize, 1, NULL);
if ( image )
{
uint32_t*const pCBData = reinterpret_cast<uint32_t*>(image->data);
pCBData[0] = msgType;
pCBData[1] = u4CallbackIndex;
pImage = reinterpret_cast<uint8_t*>(&pCBData[2]);
}
#else
image = mpCamMsgCbInfo->mRequestMemory(-1, u4HeaderSize + u4BitstreamSize, 1, NULL);
if ( image )
{
pImage = reinterpret_cast<uint8_t*>(image->data);
}
#endif
if ( ! image )
{
MY_LOGW("mRequestMemory fail");
return false;
}
//
if ( image )
{
if ( 0 != u4HeaderSize && 0 != puHeaderBuf )
{
::memcpy(pImage, puHeaderBuf, u4HeaderSize);
pImage += u4HeaderSize;
}
if ( 0 != u4BitstreamSize && 0 != puBitstreamBuf )
{
::memcpy(pImage, puBitstreamBuf, u4BitstreamSize);
}
//
sp<Thread> pThread = new ZipImageCallbackThread(mpCamMsgCbInfo, image, u4CallbackIndex, fgIsFinalImage, getParamsManager()->getShotMode());
if ( pThread == 0 || pThread->run() != OK )
{
MY_LOGW("Fail to run ZipImageCallbackThread (%p)", pThread.get());
return false;
}
}
return true;
}
| [
"vcsy1994@sina.com"
] | vcsy1994@sina.com |
0154eec8d2378ad274ae8a7b288abe6b132f65c9 | ecf58d3880af1ae484644748579cc77ea54428bd | /network/server.cc | 103164ef42b8a8d93b568edbbf17d84b00aeb534 | [] | no_license | vuamitom/Code-Exercises | 0601d186f4f505024d3f46b5c95a1c165d195830 | 3cc56d2d25c7b0832bd6e01154112bfd88d0ec52 | refs/heads/master | 2022-12-11T01:49:20.400506 | 2020-04-15T08:25:40 | 2020-04-15T08:25:40 | 8,831,614 | 13 | 14 | null | 2022-12-08T18:17:26 | 2013-03-17T07:59:58 | Jupyter Notebook | UTF-8 | C++ | false | false | 888 | cc | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <signal.h>
#define PORT "5555"
int main(){
// 1. get addrinfo
int sockfd;
struct addrinfo hint, *res, *p;
memset(&hint, sizeof(hint), 0);
hint.ai_family = AF_UNSPEC;
hint.ai_flags = AI_PASSIVE;
hint.ai_socktype = SOCK_DGRAM;
if (getaddrinfo(NULL, PORT, &hint, &res) != 0) {
printf("ERROR\n");
}
// 2. create socket
for (p = res; p != NULL; p = p->ai_next) {
sockfd = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
if (sockfd == -1){
continue;
}
printf("Created socket");
break;
}
freeaddrinfo(res);
// 3. bind socket to a port and address
// handle
}
| [
"tamvm@vng.com.vn"
] | tamvm@vng.com.vn |
298b6ca686e5763ab44dfd4024f2dc15dcc57a01 | 7ab1446dd4fd9b2063e0dfe114431d0ddffbd19b | /src/Player.cpp | 439b2437bd867d618b7eff650b3efbe2eb21cdf6 | [] | no_license | Diogo-Queiroz/COMP397-Assignment2 | d39dae57086e92048dd15a8807377c09a3271bea | 09e690fe253271d626c8f9be035b8efe12857c6a | refs/heads/master | 2021-05-24T17:27:38.037591 | 2020-04-07T03:43:01 | 2020-04-07T03:43:01 | 253,674,570 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,943 | cpp | #include "Player.h"
#include "Game.h"
#include "TextureManager.h"
Player::Player(): m_currentFrame(0), m_currentAnimationState(PLAYER_RIGHT), m_speed(5), m_brakeSpeed(0.2f), m_shootRate(0.5f)
{
TheTextureManager::Instance()->loadSpriteSheet(
"../Assets/sprites/atlas.txt",
"../Assets/sprites/atlas.png",
"spritesheet", TheGame::Instance()->getRenderer());
m_pSpriteSheet = TheTextureManager::Instance()->getSpriteSheet("spritesheet");
// set frame width
setWidth(53);
// set frame height
setHeight(58);
setPosition(glm::vec2(400.0f, 300.0f));
setVelocity(glm::vec2(0.0f, 0.0f));
setAcceleration(glm::vec2(0.0f, 0.0f));
setIsColliding(false);
setType(PLAYER);
m_buildAnimations();
}
Player::~Player()
= default;
void Player::draw()
{
const int xComponent = getPosition().x;
const int yComponent = getPosition().y;
switch(m_currentAnimationState)
{
case PLAYER_RIGHT:
TheTextureManager::Instance()->playAnimation("spritesheet", m_pAnimations["player"],
getPosition().x, getPosition().y, m_currentFrame, 1.0f,
TheGame::Instance()->getRenderer(), 0, alphaValue, true);
break;
}
}
void Player::update()
{
glm::vec2 mouseVector = TheGame::Instance()->getMousePosition();
setPosition(getPosition()+getVelocity());
//std::cout << "Y mouse position:" << std::to_string(mouseVector.y) << std::endl;
//std::cout << "X mouse position:" << std::to_string(mouseVector.x) << std::endl;
/*if (m_shootTime > 0)
{
m_shootTime -= 0.016f;
}*/
m_checkBounds();
brake(xBrakeDirection,yBrakeDirection);
/*if (invincible)
{
if ( hitFrame + 100 < TheGame::Instance()->getFrames() )
{
invincible = false;
}
alphaValue = 255 * (sin(TheGame::Instance()->getFrames() * 0.5 ) + 1) * 0.5f;
}
else
{
alphaValue = 255;
}*/
}
void Player::clean()
{
}
void Player::move(Move newMove)
{
auto currentVelocity = getVelocity();
switch (newMove)
{
case UP:
if(getVelocity().y > -m_speed)
{
setVelocity(glm::vec2(getVelocity().x, -1.0f * m_speed));
}
break;
case DOWN:
if (getVelocity().y < m_speed)
{
setVelocity(glm::vec2(getVelocity().x, 1.0f * m_speed));
}
break;
case LEFT:
if (getVelocity().x > -m_speed)
{
setVelocity(glm::vec2(-1.0f * m_speed, getVelocity().y));
}
break;
case RIGHT:
if (getVelocity().x < m_speed)
{
setVelocity(glm::vec2(1.0f * m_speed, getVelocity().y));
}
break;
}
}
void Player::brake(Move xDirection, Move yDirection)
{
auto currentVelocity = getVelocity();
switch (yDirection)
{
case UP:
if (getVelocity().y < 0)
{
setVelocity(glm::vec2(getVelocity().x, getVelocity().y + m_brakeSpeed));
}
else
{
setVelocity(glm::vec2(getVelocity().x, 0));
yBrakeDirection = EMPTY;
}
break;
case DOWN:
if (getVelocity().y > 0)
{
setVelocity(glm::vec2(getVelocity().x, getVelocity().y - m_brakeSpeed));
}
else
{
setVelocity(glm::vec2(getVelocity().x, 0));
yBrakeDirection = EMPTY;
}
break;
}
switch (xDirection)
{
case LEFT:
if (getVelocity().x < 0)
{
setVelocity(glm::vec2(getVelocity().x + m_brakeSpeed, getVelocity().y));
}
else
{
setVelocity(glm::vec2(0, getVelocity().y));
xBrakeDirection = EMPTY;
}
break;
case RIGHT:
if (getVelocity().x > 0)
{
setVelocity(glm::vec2(getVelocity().x - m_brakeSpeed, getVelocity().y));
}
else
{
setVelocity(glm::vec2(0, getVelocity().y));
xBrakeDirection = EMPTY;
}
break;
}
}
void Player::setAnimationState(const PlayerAnimationState new_state)
{
m_currentAnimationState = new_state;
}
void Player::setAnimation(const Animation& animation)
{
m_pAnimations[animation.name] = animation;
}
float Player::getShootTime()
{
return m_shootTime;
}
float Player::getShootRate()
{
return m_shootRate;
}
void Player::setShootTime(float shootTime)
{
m_shootTime = shootTime;
}
void Player::setShootRate(float shootRate)
{
m_shootRate = shootRate;
}
float Player::getSpeed()
{
return m_speed;
}
void Player::setSpeed(float speed)
{
m_speed = speed;
}
void Player::m_buildAnimations()
{
Animation playerAnimation = Animation();
playerAnimation.name = "player";
for (int i = 1; i < 8; ++i)
{
playerAnimation.frames.push_back(m_pSpriteSheet->getFrame("Superman-" + std::to_string(i)));
}
m_pAnimations["player"] = playerAnimation;
}
void Player::m_checkBounds()
{
if (getPosition().x >= (Config::SCREEN_WIDTH * 0.8f)- getWidth() * 0.5f)
{
setPosition(glm::vec2((Config::SCREEN_WIDTH * 0.8f) - getWidth() * 0.5f, getPosition().y));
}
// check left bounds
if (getPosition().x <= getWidth() * 0.5f)
{
setPosition(glm::vec2(getWidth() * 0.5f, getPosition().y));
}
if (getPosition().y >= Config::SCREEN_HEIGHT - getHeight() * 0.5f)
{
setPosition(glm::vec2(getPosition().x, Config::SCREEN_HEIGHT - getHeight() * 0.5f));
}
if (getPosition().y <= getHeight() * 0.5f)
{
setPosition(glm::vec2( getPosition().x, getHeight() * 0.5f));
}
}
| [
"diogoqueirtooz1212@gmail.com"
] | diogoqueirtooz1212@gmail.com |
3dbd7370e3a5f582652a7b9fcd11f14c9888b981 | f84da9a7da712409ebb0e8caf89b41b68a1ffb7c | /Codeforces/contest_id_626/Group Projects.cpp | 2129047533a3aa1aa11853d0dc83b0831b3327b7 | [] | no_license | mahbubcseju/Programming-Problem-Solutions | 7fe674d68ab340b54be64adfa2e2fb33cc64705c | e9de8553f7d0c2c439f62b67e1bf9d6e07d47400 | refs/heads/master | 2021-08-03T14:37:54.041903 | 2021-07-18T16:01:12 | 2021-07-18T16:01:12 | 199,957,649 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,430 | cpp | /********************************
*MAHBUBCSEJU *
*CSE 22 *
*JAHANGIRNAGAR UNIVERSITY *
*TIMUS:164273FU *
*UVA>>LIGHTOJ>>HUST:mahbubcseju *
********************************/
#include<cfloat>
#include<climits>
#include<fstream>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<sstream>
#include<iostream>
#include<algorithm>
#include<map>
#include<cstring>
#include<string>
#include<vector>
#include<queue>
#include<stack>
#include<set>
#include<string.h>
#include<bits/stdc++.h>
#define ll long long int
#define ull unsigned long long int
#define I(a) scanf("%d",&a)
#define I2(a,b) scanf("%d%d",&a,&b)
#define I3(a,b,c) scanf("%d%d%d",&a,&b,&c)
#define L(a) scanf("%lld",&a)
#define L2(a,b) scanf("%lld%lld",&a,&b)
#define L3(a,b,c) scanf("%lld%lld%lld",&a,&b,&c)
#define PI(a) printf("%d\n",a)
#define PL(a) printf("%lld\n",a)
#define PT(t) printf("Case %d: ",t)
#define PB push_back
#define x first
#define y second
#define xx first.first
#define xy first.second
#define yx second.first
#define yy second.second
#define SC scanf
#define PC printf
#define NL printf("\n")
#define SET(a) memset(a,0,sizeof a)
#define SETR(a) memset(a,-1,sizeof a)
#define SZ(a) ((int)a.size())
//#define pi 2.0*acos(0.0)
#define R(a) freopen(a, "r", stdin);
#define W(a) freopen(a, "w", stdout);
#define CB(x) __builtin_popcount(x)
#define STN(a) stringtonumber<ll>(a)
#define lol printf("BUG\n")
#define mk make_pair
using namespace std;
template <class T> inline T BM(T p, T e, T M) {
ll ret = 1;
for(; e > 0; e >>= 1) {
if(e & 1) ret = (ret * p) % M;
p = (p * p) % M;
}
return (T)ret;
}
template <class T> inline T gcd(T a, T b) {
if(b == 0)return a;
return gcd(b, a % b);
}
template <class T> inline T mdINV(T a, T M) {
return BM(a, M - 2, M);
}
template <class T> inline T PW(T p, T e) {
ll ret = 1;
for(; e > 0; e >>= 1) {
if(e & 1) ret = (ret * p);
p = (p * p);
}
return (T)ret;
}
template <class T>string NTS ( T Number ) {
stringstream ss;
ss << Number;
return ss.str();
}
template <class T>T stringtonumber ( const string &Text ) {
istringstream ss(Text);
T result;
return ss >> result ? result : 0;
}
template <class T>bool ISLEFT ( T a,T b,T c) {
if(((a.xx-b.xx)*(b.yy-c.yy)-(b.xx-c.xx)*(a.yy-b.yy))<0.0)return 1;//Uporer dike //A,b,c, x okkher ordera sorted
else return 0;
}
#define mx 200
#define md 1000000007ll
#define maxp 2050180000
typedef pair<ll,ll> P;
////////define value/////
int dp[202][202][1002];
int n,k;
int a[mx+2];
int go(int po,int op,int ko) {
if(po==n+1) {
if(op==0&&ko>=0)return 1;
else return 0;
}
if(ko<0)return 0;
int &ret=dp[po][op][ko];
if(ret!=-1)return ret;
ret=0;
int ho=ko-op*(a[po]-a[po-1]);
// cout<<ho<<endl;
ret+=go(po+1,op+1,ho);
if(ret>=md)ret-=md;
if(op>0)
{ll ko1=go(po+1,op-1,ho);
// ll ko1=(ll)go(po+1,op,ho);
ko1=(ko1*(ll)op)%md;
ret+=ko1;
if(ret>=md)ret-=md;
}
if(ret>=md)ret-=md;
ret+=go(po+1,op,ho);
if(ret>=md)ret-=md;
ll ko1=(ll)go(po+1,op,ho);
ko1=(ko1*(ll)op)%md;
ret=(ret+(int)ko1)%md;;
return ret;
}
int main() {
I2(n,k);
for(int i=1; i<=n; i++)I(a[i]);
sort(a+1,a+n+1);
a[0]=a[1];
SETR(dp);
int ans=go(1,0,k);
PI(ans);
return 0;
}
| [
"mahbubur.rahman@bjitgroup.com"
] | mahbubur.rahman@bjitgroup.com |
1b4237db1352eba08c1e8bd0f03d704f657fa1c1 | 4875387ec6e8cbc46010606c28da313641efa6b8 | /test/shared_libs/lib.cpp | a415bc76ab38ca2c1f9719ea3d6f5edb108925cb | [] | no_license | ochameau/jscpptypes | e8137f26721e6b11363de34e4003c68e80cdd277 | 6a2f6bff64f081380428cf9af4e6892b769a688c | refs/heads/master | 2020-04-12T22:38:59.353945 | 2013-03-07T17:27:20 | 2013-03-07T17:27:20 | 8,061,330 | 8 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,047 | cpp | #if defined(WINNT)
#define MYLIB_API __declspec(dllexport)
#else
#define MYLIB_API
#endif
long MYLIB_API MyFunction(int *foo, int bar)
{
return *foo + bar;
}
class MYLIB_API MyClass {
public:
long attr;
};
MyClass MYLIB_API *GetObject(int attr)
{
MyClass *obj = new MyClass();
obj->attr = attr;
return obj;
}
void MYLIB_API GetObjectByRef(MyClass **obj, int attr)
{
*obj = new MyClass();
(*obj)->attr = attr;
}
long MYLIB_API GetObjectAttr(MyClass *obj)
{
return obj->attr;
}
int MYLIB_API Substitution1(MyClass *a, MyClass* b, MyClass c)
{
return 1;
}
int MYLIB_API Substitution2(MyClass a, MyClass* b, MyClass c)
{
return 2;
}
namespace MyNS {
namespace MySubNS {
long MYLIB_API MyNSFunction(long foo)
{
return foo + 1;
}
}
int MYLIB_API Substitution3(MyClass a, MyClass b)
{
return 3;
}
class MYLIB_API MyClass2 {};
int MYLIB_API Substitution4(MyClass2 a)
{
return 4;
}
}
int MYLIB_API Substitution5(const char* a, char b, char* c, const char* d)
{
return 5;
}
| [
"poirot.alex@gmail.com"
] | poirot.alex@gmail.com |
f7fe012fe6b7b5b5bf6ebed993f3f0cab5fcd7f9 | ef060ebef214f7cd5774f37236b407e92cfd5790 | /SRC/CJulianDate.cpp | 4f0ba1bd630128ea07d0829b7f71a5fb5ab36203 | [
"BSD-2-Clause"
] | permissive | SammyB428/WFC | 4a8af293fc5012db73855e34598a8df163d92a4f | 1709964506b085bde5aa7751d1914d7a68cbea53 | refs/heads/master | 2022-07-26T13:55:46.988837 | 2022-07-08T15:47:28 | 2022-07-08T15:47:28 | 169,485,007 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,429 | cpp | /*
** Author: Samuel R. Blackburn
** Internet: wfc@pobox.com
**
** Copyright, 1995-2022, Samuel R. Blackburn
**
** "You can get credit for something or get it done, but not both."
** Dr. Richard Garwin
**
** BSD License follows.
**
** 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 WFC 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.
**
** $Workfile: CJulianDate.cpp $
** $Revision: 8 $
** $Modtime: 6/26/01 10:47a $
** $Reuse Tracing Code: 1 $
*/
/* SPDX-License-Identifier: BSD-2-Clause */
#include <wfc.h>
#pragma hdrstop
#if defined( _DEBUG ) && defined( _INC_CRTDBG )
#undef THIS_FILE
static auto const THIS_FILE{ __FILE__ };
#define new DEBUG_NEW
#endif // _DEBUG
#if defined( _DEBUG ) && ! defined( WFC_NO_DUMPING )
void CJulianDate::Dump( CDumpContext& dump_context ) const
{
dump_context << TEXT( " a CJulianDate at " ) << (VOID *) this << TEXT( "\n{\n" );
dump_context << TEXT( " m_JulianDays is " ) << m_JulianDays << TEXT( "\n" );
dump_context << TEXT( "}\n" );
}
#endif // _DEBUG
_Check_return_ bool Win32FoundationClasses::CJulianDate::Set( _In_ int const year, _In_ int const month, _In_ int const day_parameter, _In_ int const hours, _In_ int const minutes, _In_ int const seconds ) noexcept
{
WFC_VALIDATE_POINTER( this );
double x{ 0.0 };
auto day{ day_parameter };
if ( year == 1582 )
{
if ( month == 10 )
{
if ( day > 4 and day < 15 )
{
day = 15;
}
}
}
x = (double) ( ( 12 * ( year + 4800 ) ) + month - 3 );
m_JulianDays = ( 2 * ( x - ( ::floor( x / 12.0 ) * 12 ) ) + 7 + ( 365 * x ) ) / 12;
m_JulianDays = ::floor( m_JulianDays ) + day + ::floor( x / 48.0 ) - 32083;
if ( m_JulianDays > 2299170L )
{
m_JulianDays = m_JulianDays + ::floor( x / 4800.0 ) - ::floor( x / 1200.0 ) + 38;
}
auto double_hours{ static_cast<double>(hours) };
auto double_minutes{ static_cast<double>(minutes) };
auto double_seconds{ static_cast<double>(seconds) };
double_hours /= (double) 24.0;
double_minutes /= (double) 1440.0;
double_seconds /= (double) 86400.0;
m_JulianDays += ( ( double_hours + double_minutes + double_seconds ) - 0.5 );
return( true );
}
// End of source
/*
<HTML>
<HEAD>
<TITLE>WFC - CJulianDate</TITLE>
<META name="keywords" content="WFC, MFC extension library, freeware class library, Win32">
<META name="description" content="The C++ class that handles dates and times.">
</HEAD>
<BODY>
<H1>CJulianDate</H1>
$Revision: 8 $<BR>
<HR>
<H2>Description</H2>
This class allows you to play with dates.
<STRONG>It is still under development so don't use it.</STRONG>
<H2>Data Members</H2>
None.
<H2>Methods</H2>
<DL COMPACT>
<DT><PRE>BOOL <B><A NAME="Set">Set</A></B>( int year, int month, int day, int hours, int minutes, int seconds )</PRE><DD>
Sets the date and time of the object.
</DL>
<H2>Example</H2>
<PRE><CODE>Sorry.</CODE></PRE>
<HR><I>Copyright, 2000, Samuel R. Blackburn</I><BR>
$Workfile: CJulianDate.cpp $<BR>
$Modtime: 6/26/01 10:47a $
</BODY>
</HTML>
*/
| [
"sam_blackburn@pobox.com"
] | sam_blackburn@pobox.com |
7dbc382e3397d9acc1d61605b9216b62ba7e67a4 | ab80d88b354db83585acc72e36fe9f3f4a1c7e54 | /support/inc/MonteCarloPredictor.h | 9ca2e767e7d0491eb865bf785fa127d0a2204df3 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | zhengbenchang/GSAP | a1ecedaf502e184827148cee4bd27b44315c6a2f | 68a33f4df375d8144ffe10f6c90ad2d57204a6c9 | refs/heads/master | 2020-04-13T08:35:24.905767 | 2018-11-30T22:21:20 | 2018-12-04T22:37:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,814 | h | /** MonteCarloPredictor - Header
* @file MonteCarloPredictor Class
* @ingroup GPIC++
* @ingroup Predictors
*
* @brief MonteCarloPredictor Class - Class defining the MonteCarloPredictor
*
* @author Matthew Daigle
* @version 1.1.0
*
* @pre N/A
*
* Contact: Matthew Daigle (matthew.j.daigle@nasa.gov)
* Created: March 22, 2016
*
* @copyright Copyright (c) 2018 United States Government as represented by
* the Administrator of the National Aeronautics and Space Administration.
* All Rights Reserved.
*/
#ifndef PCOE_MONTECARLOPREDICTOR_H
#define PCOE_MONTECARLOPREDICTOR_H
#include <vector>
#include <string>
#include "Model.h"
#include "Predictor.h"
#include "GSAPConfigMap.h"
namespace PCOE {
class MonteCarloPredictor final : public Predictor {
private:
unsigned int numSamples; // number of samples used in prediction
std::vector<double> processNoise; // variance vector (zero-mean assumed)
public:
/** @brief Constructor for a MonteCarloPredictor based on a configMap
* @param configMap Configuration map specifying predictor parameters
**/
explicit MonteCarloPredictor(GSAPConfigMap & configMap);
/** @brief Set model pointer
* @param model given model pointer
**/
void setModel(PrognosticsModel * model);
/** @brief Predict function for a Predictor
* @param tP Time of prediction
* @param state state of system at time of prediction
* @param data ProgData object, in which prediction results \re stored
**/
void predict(const double tP, const std::vector<UData> & state, ProgData & data);
};
}
#endif // PCOE_MONTECARLOPREDICTOR_H
| [
"christopher.a.teubert@nasa.gov"
] | christopher.a.teubert@nasa.gov |
e03adb5873858de7d76a5f98f8e73d9b7883f861 | 69457169b51d6cd52462ceb14b3953fa98c9434d | /Exams/Finals/Solutions/Exam-2016/Q4/main.cpp | dffa7f08066e0ba4aec0bbc21db3838102d57401 | [] | no_license | KhaledAbdelgalil/Data-Structure-CSE | b8eaac4ee5028d4c3318bd2bf80c1f5a7fd12972 | 95629ac25a09a77718fedb49fcbb0993612e60ec | refs/heads/master | 2022-01-20T13:36:00.066926 | 2019-05-27T11:00:54 | 2019-05-27T11:00:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,443 | cpp | #include <iostream>
#include<list>
#include<queue>
using namespace std;
class node
{
public:
string id;
list<node*>children;
node(){}
};
void give_id_helper(node* root)
{
if(root==NULL) return;
int i=1;
for(list<node*>::iterator it=root->children.begin();it!=root->children.end();it++)
{
(*it)->id=root->id+"."+char(i+48);
i++;
give_id_helper(*it);
}
}
void print(node* root)
{
if(root==NULL) return;
queue<node*>q;
q.push(root);
while(!q.empty())
{
node* f=q.front();
cout<<f->id<<" ";
q.pop();
for(list<node*>::iterator it=f->children.begin();it!=f->children.end();it++)
{
q.push(*it);
}
}
}
class Tree
{
public:
node* root;
Tree()
{
root=NULL;
}
void giving_id()
{
if(root==NULL) return;
root->id="1";
give_id_helper(root);
}
};
int main()
{
Tree h;
h.root=new node();
node* n1=new node();
node* n2=new node();
node* n3=new node();
node* n4=new node();
node* n5=new node();
node* n6=new node();
node* n7=new node();
n1->children.push_back(n4);
n4->children.push_back(n6);
n1->children.push_back(n5);
n2->children.push_back(n7);
h.root->children.push_back(n1);
h.root->children.push_back(n2);
h.root->children.push_back(n3);
h.giving_id();
print(h.root);
return 0;
}
| [
"khaled.abdelgalil96@gmail.com"
] | khaled.abdelgalil96@gmail.com |
7ac0b9d7a0339cceb54815929a4270aa843ec738 | 7d5f853706ad7dbf9c9e9d3753793bb9aef1f966 | /7/7.28 7.29/notepad.h | c80d0035f2adb7965c58387f37d2544442665360 | [] | no_license | Clins28/CPlusPlusPrimer | 2e98d598f7a7baaee293aececf625514f5c3cae2 | db05a74af54d1f4662124678fa97ac3d9b0c45ce | refs/heads/master | 2020-04-14T07:47:20.083530 | 2018-07-17T12:16:05 | 2018-07-17T12:16:05 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,553 | h | #pragma once
#ifndef NOTEPAD_H
#define NOTEPAD_H
#include <string>
#include <vector>
class Screen
{
public:
typedef std::string::size_type pos;
//也可以使用类型别名等价地声明一个类型名字
//using pos=std::string::size_type;
Screen() = default;
Screen(pos ht, pos wd) :height(ht), width(wd), contents(ht * wd, ' ') {}
Screen(pos ht, pos wd, char c) :height(ht), width(wd), contents(ht * wd, c) {}
char get() const { return contents[cursor]; } //隐式内联
char get(pos, pos) const;
Screen move(pos, pos);
Screen set(char);
Screen set(pos, pos, char);
Screen display(std::ostream &os) { do_display(os);return *this; }
const Screen display(std::ostream &os) const { do_display(os);return *this; }
private:
pos cursor = 0;//光标位置
pos height = 0, width = 0;//屏幕高宽
std::string contents;
void do_display(std::ostream &os) const { os << contents; }
};
inline char Screen::get(pos r, pos c) const {
pos row = r * width;
return contents[row + c];
}
//返回值是*this 是对象(左值引用)故类型为Screen&
inline Screen Screen::move(pos r, pos c) {
pos row = r * width;
cursor = row + c;
return *this;
}
inline Screen Screen::set(char c) {
contents[cursor] = c;
return *this;
}
inline Screen Screen::set(pos r, pos c, char ch) {
contents[r*width + c] = ch;
return *this;
}
class Window_mgr
{
public:
private:
//这个Window_mgr追踪的Screen
//默认情况下,一个Window_mgr包含一个标准尺寸的空白Screen
std::vector<Screen> screens{ Screen(24, 80, ' ') };
};
#endif | [
"cbg0202@qq.com"
] | cbg0202@qq.com |
eedda69d7320a80669e331edcfdce31315a4e997 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /content/test/test_blink_web_unit_test_support.h | 3e9fdf28d72f73c3c40659d9d3d355a080602624 | [
"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 | 3,543 | h | // Copyright 2013 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 CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
#define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
#include <memory>
#include "base/compiler_specific.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "build/build_config.h"
#include "content/child/blink_platform_impl.h"
#include "content/test/mock_webblob_registry_impl.h"
#include "third_party/blink/public/platform/web_scrollbar_behavior.h"
#include "third_party/blink/public/platform/web_url_loader_mock_factory.h"
namespace blink {
namespace scheduler {
class WebMainThreadScheduler;
}
}
namespace content {
class BlinkInterfaceProviderImpl;
class MockClipboardHost;
// An implementation of BlinkPlatformImpl for tests.
class TestBlinkWebUnitTestSupport : public BlinkPlatformImpl {
public:
TestBlinkWebUnitTestSupport();
~TestBlinkWebUnitTestSupport() override;
blink::WebBlobRegistry* GetBlobRegistry() override;
blink::WebIDBFactory* IdbFactory() override;
std::unique_ptr<blink::WebURLLoaderFactory> CreateDefaultURLLoaderFactory()
override;
std::unique_ptr<blink::WebDataConsumerHandle> CreateDataConsumerHandle(
mojo::ScopedDataPipeConsumerHandle handle) override;
blink::WebString UserAgent() override;
blink::WebString QueryLocalizedString(
blink::WebLocalizedString::Name name) override;
blink::WebString QueryLocalizedString(blink::WebLocalizedString::Name name,
const blink::WebString& value) override;
blink::WebString QueryLocalizedString(
blink::WebLocalizedString::Name name,
const blink::WebString& value1,
const blink::WebString& value2) override;
blink::WebString DefaultLocale() override;
std::unique_ptr<blink::WebGestureCurve> CreateFlingAnimationCurve(
blink::WebGestureDevice device_source,
const blink::WebFloatPoint& velocity,
const blink::WebSize& cumulative_scroll) override;
blink::WebURLLoaderMockFactory* GetURLLoaderMockFactory() override;
blink::WebThread* CurrentThread() override;
void GetPluginList(bool refresh,
const blink::WebSecurityOrigin& mainFrameOrigin,
blink::WebPluginListBuilder* builder) override;
std::unique_ptr<blink::WebRTCCertificateGenerator>
CreateRTCCertificateGenerator() override;
service_manager::Connector* GetConnector() override;
blink::InterfaceProvider* GetInterfaceProvider() override;
blink::WebScrollbarBehavior* ScrollbarBehavior() override;
private:
void BindClipboardHost(mojo::ScopedMessagePipeHandle handle);
std::unique_ptr<service_manager::Connector> connector_;
std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;
MockWebBlobRegistryImpl blob_registry_;
std::unique_ptr<MockClipboardHost> mock_clipboard_host_;
base::ScopedTempDir file_system_root_;
std::unique_ptr<blink::WebURLLoaderMockFactory> url_loader_factory_;
std::unique_ptr<blink::scheduler::WebMainThreadScheduler>
main_thread_scheduler_;
std::unique_ptr<blink::WebThread> web_thread_;
std::unique_ptr<blink::WebScrollbarBehavior> web_scrollbar_behavior_;
base::WeakPtrFactory<TestBlinkWebUnitTestSupport> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport);
};
} // namespace content
#endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
500317b29f56bc289545d9a45aa1d94f922b0daf | 4bba9753541cd92b7aef5b577b1216fddc59ccb8 | /app/src/main/cpp/RendererES2.cpp | 6fd5dff4b5f523146d6411ecb4e42a7ec572bfac | [
"Apache-2.0"
] | permissive | wantows/ImGUIAndroid | 87c67648af3162ca91075901672f6fa936fe7534 | 8caf714fd1712f69f8c0aec6031461501b1f0081 | refs/heads/master | 2023-07-24T17:07:45.108240 | 2018-05-02T02:16:16 | 2018-05-02T02:16:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,922 | cpp | /*
* Copyright 2013 The Android Open Source Project
*
* 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.
*/
#include "gles3jni.h"
#include <EGL/egl.h>
#include "imgui.h"
#include "imgui_impl_android_gl2.h"
#include "imGui/imgui.h"
#include "imGui/imgui_impl_android_gl2.h"
static const char VERTEX_SHADER[] =
"#version 100\n"
"uniform mat2 scaleRot;\n"
"uniform vec2 offset;\n"
"attribute vec2 pos;\n"
"attribute vec4 color;\n"
"varying vec4 vColor;\n"
"void main() {\n"
" gl_Position = vec4(scaleRot*pos + offset, 0.0, 1.0);\n"
" vColor = color;\n"
"}\n";
static const char FRAGMENT_SHADER[] =
"#version 100\n"
"precision mediump float;\n"
"varying vec4 vColor;\n"
"void main() {\n"
" gl_FragColor = vColor;\n"
"}\n";
class RendererES2: public Renderer {
public:
RendererES2();
virtual ~RendererES2();
bool init();
private:
virtual float* mapOffsetBuf();
virtual void unmapOffsetBuf();
virtual float* mapTransformBuf();
virtual void unmapTransformBuf();
virtual void draw(unsigned int numInstances);
const EGLContext mEglContext;
GLuint mProgram;
GLuint mVB;
GLint mPosAttrib;
GLint mColorAttrib;
GLint mScaleRotUniform;
GLint mOffsetUniform;
float mOffsets[2*MAX_INSTANCES];
float mScaleRot[4*MAX_INSTANCES]; // array of 2x2 column-major matrices
};
Renderer* createES2Renderer() {
RendererES2* renderer = new RendererES2;
if (!renderer->init()) {
delete renderer;
return NULL;
}
return renderer;
}
RendererES2::RendererES2()
: mEglContext(eglGetCurrentContext()),
mProgram(0),
mVB(0),
mPosAttrib(-1),
mColorAttrib(-1),
mScaleRotUniform(-1),
mOffsetUniform(-1)
{}
bool RendererES2::init() {
mProgram = createProgram(VERTEX_SHADER, FRAGMENT_SHADER);
if (!mProgram)
return false;
mPosAttrib = glGetAttribLocation(mProgram, "pos");
mColorAttrib = glGetAttribLocation(mProgram, "color");
mScaleRotUniform = glGetUniformLocation(mProgram, "scaleRot");
mOffsetUniform = glGetUniformLocation(mProgram, "offset");
glGenBuffers(1, &mVB);
glBindBuffer(GL_ARRAY_BUFFER, mVB);
glBufferData(GL_ARRAY_BUFFER, sizeof(QUAD), &QUAD[0], GL_STATIC_DRAW);
ALOGV("Using OpenGL ES 2.0 renderer");
ImGui_ImplAndroidGL3_Init();
return true;
}
RendererES2::~RendererES2() {
/* The destructor may be called after the context has already been
* destroyed, in which case our objects have already been destroyed.
*
* If the context exists, it must be current. This only happens when we're
* cleaning up after a failed init().
*/
ImGui_ImplAndroidGL3_Shutdown();
if (eglGetCurrentContext() != mEglContext)
return;
glDeleteBuffers(1, &mVB);
glDeleteProgram(mProgram);
}
float* RendererES2::mapOffsetBuf() {
return mOffsets;
}
void RendererES2::unmapOffsetBuf() {
}
float* RendererES2::mapTransformBuf() {
return mScaleRot;
}
void RendererES2::unmapTransformBuf() {
}
//float t[3] = { 0,0,0 };
//bool b1 = false, b2 = false, b3 = false;
//int i = 0;
void RendererES2::draw(unsigned int numInstances) {
glUseProgram(mProgram);
glBindBuffer(GL_ARRAY_BUFFER, mVB);
glVertexAttribPointer(mPosAttrib, 2, GL_FLOAT, GL_FALSE, sizeof(Vertex), (const GLvoid*)offsetof(Vertex, pos));
glVertexAttribPointer(mColorAttrib, 4, GL_UNSIGNED_BYTE, GL_TRUE, sizeof(Vertex), (const GLvoid*)offsetof(Vertex, rgba));
glEnableVertexAttribArray(mPosAttrib);
glEnableVertexAttribArray(mColorAttrib);
for (unsigned int i = 0; i < numInstances; i++) {
glUniformMatrix2fv(mScaleRotUniform, 1, GL_FALSE, mScaleRot + 4*i);
glUniform2fv(mOffsetUniform, 1, mOffsets + 2*i);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
}
ImGui::Begin("Test");
ImGui::SetWindowFontScale(3.0f);
ImGui::Button("button", ImVec2(300, 75));
ImGui::Button("button2", ImVec2(300, 75));
ImGui::DragFloat3("LightDir", &t[0], 0.05);
ImGui::Checkbox("Show ShadowMap", &b1);
ImGui::Checkbox("Linear Depth", &b2);
ImGui::Checkbox("UseAutoCamera", &b3);
const char* SamplePatterns[] = { "POISSON_25_25", "POISSON_32_64", "POISSON_100_100", "POISSON_64_128", "REGULAR_49_225" };
ImGui::ListBox("SamplePattern", &i, SamplePatterns, 5);
ImGui::End();
ImGui::Render();
}
| [
"nghiahoang@Phongs-MacBook-Pro.local"
] | nghiahoang@Phongs-MacBook-Pro.local |
ceaaf9348ff9558856b678b6aea89cfcb86c70c5 | 2ca77eb5754b9b841e9f5d1cf9834952b46f372c | /Source/Misted_Hope/BridgePiece.cpp | a61fb46b3dca35aae2bd29f27c5e70f4829c9047 | [] | no_license | MistyHope/Hope | aafb84469456c7900a8993c1faecd98d3c59c4da | 7905036538012d9da63d9c43e4903d8ce87f97e4 | refs/heads/coding | 2021-09-07T02:41:42.685207 | 2018-01-25T16:41:32 | 2018-01-25T16:41:32 | 110,720,107 | 0 | 0 | null | 2017-12-15T16:39:50 | 2017-11-14T17:06:29 | C++ | UTF-8 | C++ | false | false | 374 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BridgePiece.h"
#include "Components/BoxComponent.h"
UBridgePiece::UBridgePiece()
{
m_RootBox = CreateDefaultSubobject<UBoxComponent>(TEXT("RootBox"));
m_BridgePiece = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("Mesh"));
m_BridgePiece->SetupAttachment(m_RootBox);
}
| [
"K.schaefer92@gmx.de"
] | K.schaefer92@gmx.de |
a04e8e13b0e2cad316c9a5f63987f491f6225e73 | 6cbdcfcab39c0ab38f462a45331c4dd600d3c031 | /tile/codegen/emitc.cc | 0c3ccd2aa4c09b6c98a6ec87991ae2060e8a01f6 | [
"Apache-2.0"
] | permissive | donaldlee2010/plaidml | 01ae79cc6f91d682efd1562eae660fa5e4eb88f0 | ec748d1cb488e5863b8134ec843cf85442df644d | refs/heads/master | 2020-04-28T08:04:14.935971 | 2019-02-05T01:11:16 | 2019-02-05T01:11:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,305 | cc | // Copyright 2018, Intel Corporation
#include "tile/codegen/emitc.h"
namespace vertexai {
namespace tile {
namespace codegen {
using boost::format;
using namespace std::placeholders; // NOLINT
using namespace stripe; // NOLINT
namespace {
class CodeGenerator {
public:
CodeGenerator() {}
std::string EmitProgram(const Block& program) {
EmitLine("#include <stdint.h>");
EmitLine("#include <stdlib.h>");
EmitLine(R"(
int min(int x, int y) {
return (x < y) ? x : y;
}
int max(int x, int y) {
return (x < y) ? y : x;
}
float softmax(float x) {
return x;
}
)");
EmitLine("int main(int argc, char** argv) {");
PushTab();
EmitBlock(program);
EmitLine("return 0;");
PopTab();
EmitLine("}");
return oss_.str();
}
private:
void EmitLoad(const Block& block, const Load& load) {
auto ref = block.ref_by_into(load.from);
EmitLine(format("%1% %2% = %3%[%4%];") //
% IntoC(ref->interior_shape.type) //
% ScalarName(load.into) //
% UniqueName(load.from) //
% UniqueResolve(ref->FlatAccess()));
}
void EmitStore(const Block& block, const Store& store) {
auto ref = block.ref_by_into(store.into);
auto into = UniqueName(ref->into);
auto access = UniqueResolve(ref->FlatAccess());
if (ref->agg_op == Intrinsic::SUM) {
EmitLine(format("%1%[%2%] += %3%;") % into % access % ScalarName(store.from));
} else if (ref->agg_op == Intrinsic::PROD) {
EmitLine(format("%1%[%2%] *= %3%;") % into % access % ScalarName(store.from));
} else if (ref->agg_op == Intrinsic::MIN) {
EmitLine(format("%1%[%2%] = min(%1%[%2%], %3%);") % into % access % ScalarName(store.from));
} else if (ref->agg_op == Intrinsic::MAX) {
EmitLine(format("%1%[%2%] = max(%1%[%2%], %3%);") % into % access % ScalarName(store.from));
} else {
EmitLine(format("%1%[%2%] = %3%;") % into % access % ScalarName(store.from));
}
}
void EmitIntrinsic(const Block& block, const Intrinsic& intrinsic) {
if (intrinsic.outputs.size() > 1) {
throw std::runtime_error("Only a single output is supported for intrinsics");
}
auto output = ScalarName(intrinsic.outputs[0]);
if (intrinsic.name == Intrinsic::MUL) {
EmitLine(format("%1% %2% = %3% * %4%;") //
% IntoC(intrinsic.type) //
% output //
% ScalarName(intrinsic.inputs[0]) //
% ScalarName(intrinsic.inputs[1]));
} else if (intrinsic.name == Intrinsic::ADD) {
EmitLine(format("%1% %2% = %3% + %4%;") //
% IntoC(intrinsic.type) //
% output //
% ScalarName(intrinsic.inputs[0]) //
% ScalarName(intrinsic.inputs[1]));
} else if (intrinsic.name == "bit_right") {
EmitLine(format("%1% %2% = %3% >> %4%;") //
% IntoC(intrinsic.type) //
% output //
% ScalarName(intrinsic.inputs[0]) //
% ScalarName(intrinsic.inputs[1]));
} else if (intrinsic.name == Intrinsic::ASSIGN) {
EmitLine(format("%1% %2% = %3%;") //
% IntoC(intrinsic.type) //
% output //
% ScalarName(intrinsic.inputs[0]));
} else if (intrinsic.name == "zelu") {
EmitLine(format("%1% %2% = %3% < 0 ? 0 : %3%;") //
% IntoC(intrinsic.type) //
% output //
% ScalarName(intrinsic.inputs[0]));
} else {
std::stringstream inputs;
for (size_t i = 0; i < intrinsic.inputs.size(); i++) {
if (i) {
inputs << ", ";
}
inputs << ScalarName(intrinsic.inputs[i]);
}
EmitLine(format("%1% %2% = %3%(%4%);") //
% IntoC(intrinsic.type) //
% output //
% intrinsic.name //
% inputs.str());
}
}
void EmitConstant(const Constant& constant) {
switch (constant.type) {
case ConstType::Integer:
EmitLine(format("int %1% = %2%;") % ScalarName(constant.name) % constant.iconst);
break;
case ConstType::Float:
EmitLine(format("double %1% = %2%;") % ScalarName(constant.name) % constant.fconst);
break;
}
}
void EmitSpecial(const Special& special) { //
EmitLine(format("// TODO: %1%") % special);
}
void EmitBlock(const Block& block) {
Push();
EmitLine(format("{ // block: %1%") % block.name);
std::stringstream ss(block.comments);
std::string line;
for (std::string line; std::getline(ss, line, '\n');) {
EmitLine(format("// %1%") % line);
}
PushTab();
for (const auto& idx : block.idxs) {
auto idx_name = UniqueName(idx.name);
if (idx.range == 1) {
EmitLine(format("int %1% = %2%;") % idx_name % ParentResolve(idx.affine));
} else {
EmitLine(format("for (int %1% = 0; %1% < %2%; %1%++) {") % idx_name % idx.range);
PushTab();
}
}
for (const auto& constraint : block.constraints) {
EmitLine(format("if ((%1%) < 0) {") % UniqueResolve(constraint));
PushTab();
EmitLine("continue;");
PopTab();
EmitLine("}");
}
for (const auto& ref : block.refs) {
auto type = IntoC(ref.interior_shape.type);
auto into = UniqueName(ref.into);
if (ref.from.empty()) {
EmitLine(format("%1%* %2% = malloc(%3% * sizeof(%1%));") % type % into % ref.interior_shape.elem_size());
} else {
EmitLine(format("%1%* %2% = %3% + %4%;") % type % into % ParentName(ref.from) %
UniqueResolve(ref.FlatAccess()));
}
}
for (const auto& stmt : block.stmts) {
switch (stmt->kind()) {
case StmtKind::Load:
EmitLoad(block, *Load::Downcast(stmt));
break;
case StmtKind::Store:
EmitStore(block, *Store::Downcast(stmt));
break;
case StmtKind::Intrinsic:
EmitIntrinsic(block, *Intrinsic::Downcast(stmt));
break;
case StmtKind::Constant:
EmitConstant(*Constant::Downcast(stmt));
break;
case StmtKind::Special:
EmitSpecial(*Special::Downcast(stmt));
break;
case StmtKind::Block:
EmitBlock(*Block::Downcast(stmt));
break;
}
}
for (const auto& ref : block.refs) {
if (ref.from.empty()) {
EmitLine(format("free(%1%);") % UniqueName(ref.into));
}
}
for (const auto& idx : block.idxs) {
if (idx.range != 1) {
PopTab();
EmitLine("}");
}
}
PopTab();
EmitLine("}");
Pop();
}
std::string IntoC(const DataType& type) {
switch (type) {
case DataType::BOOLEAN:
return "bool";
case DataType::INT8:
return "int8_t";
case DataType::INT16:
return "int16_t";
case DataType::INT32:
return "int32_t";
case DataType::INT64:
return "int64_t";
case DataType::UINT8:
return "uint8_t";
case DataType::UINT16:
return "uint16_t";
case DataType::UINT32:
return "uint32_t";
case DataType::UINT64:
return "uint64_t";
case DataType::FLOAT16:
return "half";
case DataType::FLOAT32:
return "float";
case DataType::FLOAT64:
return "double";
default:
throw std::runtime_error("Invalid tile type");
}
}
void EmitTab() { oss_ << std::string(indent_ << 1, ' '); }
void EmitLine(const std::string& str) {
EmitTab();
oss_ << str << '\n';
}
void EmitLine(const format& fmt) {
EmitTab();
oss_ << fmt << '\n';
}
void Push() { depth_++; }
void Pop() { depth_--; }
void PushTab() { indent_++; }
void PopTab() { indent_--; }
std::string ScalarName(std::string str) {
std::replace(str.begin(), str.end(), '$', '_');
return UniqueName(str);
}
Affine Resolve(Affine affine, const std::function<std::string(const std::string&)>& resolver) {
std::vector<std::string> names;
for (const auto& kvp : affine.getMap()) {
if (!kvp.first.empty()) {
names.push_back(kvp.first);
}
}
for (const auto& name : names) {
affine.substitute(name, Affine{resolver(name)});
}
return affine;
}
std::string ParentName(const std::string& name) { return str(format("d%1%_%2%") % (depth_ - 1) % name); }
std::string UniqueName(const std::string& name) { return str(format("d%1%_%2%") % depth_ % name); }
Affine ParentResolve(const Affine& affine) {
return Resolve(affine, std::bind(&CodeGenerator::ParentName, this, _1));
}
Affine UniqueResolve(const Affine& affine) {
return Resolve(affine, std::bind(&CodeGenerator::UniqueName, this, _1));
}
std::ostringstream oss_;
size_t indent_ = 0;
size_t depth_ = 0;
};
} // namespace
std::string EmitC(const Block& program) {
CodeGenerator gen;
return gen.EmitProgram(program);
}
} // namespace codegen
} // namespace tile
} // namespace vertexai
| [
"frank.laub@intel.com"
] | frank.laub@intel.com |
49e74af0126f1f06288954a82cdf3d3348aef8ed | 96742c5e67717a4645eeede23b9bf699687e5074 | /proj/SRFSimpleFoam/660/p | ef6d5cb9ad444f67e3e0c15305e3ff1278f7b2b7 | [] | no_license | harrisbk/openFoam | 339c3391fe502af351b4eda328457719799badba | 08041d2e2ebbd2dd1f0e5bfd44bd4181504846cd | refs/heads/master | 2021-01-10T11:38:02.272499 | 2015-12-15T17:45:43 | 2015-12-15T17:45:43 | 47,746,599 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,853,308 | /*--------------------------------*- 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 volScalarField;
location "660";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
283312
(
-0.00626977
-0.006328
-0.00656754
-0.00690841
-0.00726264
-0.00756106
-0.00779548
-0.0079604
-0.00808795
-0.0082014
-0.0083208
-0.00843267
-0.00850497
-0.00848195
-0.00833051
-0.00805779
-0.00767459
-0.00721791
-0.00676914
-0.00642665
0.00215305
0.00164905
0.00122071
0.000949316
0.000848025
0.000911859
0.00105348
0.00119347
0.00130362
0.00139134
0.00145892
0.00153809
0.00166687
0.00186793
0.0021545
0.00252559
0.00284278
0.00299605
0.00292137
0.00261717
-0.00230083
-0.00215175
-0.00193004
-0.00169108
-0.00149979
-0.00140381
-0.00138655
-0.00139422
-0.00144485
-0.00148829
-0.00152025
-0.00149984
-0.00142784
-0.00132603
-0.00127674
-0.00137921
-0.00161514
-0.0019058
-0.00216622
-0.00230979
0.00148386
0.0016553
0.00179834
0.00191274
0.00199556
0.00206396
0.0020705
0.00207639
0.00204249
0.00205233
0.0020687
0.00211616
0.00214704
0.00210893
0.00198649
0.00174993
0.00150253
0.00131966
0.00126415
0.00133653
-0.00074407
-0.000546437
-0.000430233
-0.000352507
-0.000349737
-0.000337608
-0.000349758
-0.000336803
-0.000367561
-0.000345705
-0.000356148
-0.000412027
-0.000585791
-0.000895932
-0.00131412
-0.00165025
-0.0017422
-0.00160444
-0.0013228
-0.00100902
0.00120489
0.00131407
0.00137169
0.00141709
0.00143069
0.00143788
0.00140325
0.00138991
0.00132512
0.00133392
0.00127648
0.00115177
0.000879299
0.000526127
0.000265073
0.000194638
0.000321341
0.00056212
0.000825889
0.00104856
-0.000150008
-0.000110698
-0.000103955
-9.83338e-05
-0.000109735
-8.47653e-05
-8.52799e-05
-5.68164e-05
-8.85956e-05
-6.48346e-05
-0.000182346
-0.000455258
-0.000865876
-0.00126904
-0.00140013
-0.00124846
-0.000936767
-0.000624533
-0.000382342
-0.000229351
0.00076404
0.00081292
0.000836305
0.000861087
0.000849294
0.000845611
0.000807979
0.000787502
0.000718443
0.000707504
0.000546891
0.000231521
-0.000173219
-0.000362322
-0.000309438
-7.789e-05
0.000206564
0.000433313
0.000595531
0.000699037
1.35746e-07
1.74492e-06
-9.23965e-06
-1.09293e-05
-1.23726e-05
9.55799e-06
1.14046e-05
3.13312e-05
3.49711e-06
6.60549e-06
-0.000188948
-0.000597238
-0.00100267
-0.00108575
-0.000870724
-0.00057957
-0.000314747
-0.000150329
-5.41804e-05
-1.2039e-05
0.000441916
0.000466406
0.00047713
0.00048756
0.000474692
0.000466276
0.000435827
0.000413484
0.000360098
0.000342698
0.00016146
-0.000210367
-0.000462733
-0.000448537
-0.00021578
9.74808e-06
0.000194599
0.000300045
0.000370887
0.000412527
4.42295e-05
4.21418e-05
3.32198e-05
3.50462e-05
3.42909e-05
4.93477e-05
4.97051e-05
6.6011e-05
4.88446e-05
7.34415e-05
-0.000104185
-0.000535
-0.000716966
-0.000634396
-0.0003906
-0.000205292
-6.71567e-05
-4.11755e-06
3.28163e-05
4.34452e-05
0.000251186
0.000262904
0.000266685
0.000269806
0.000258623
0.000249851
0.000226247
0.000208642
0.000173237
0.000192176
5.50965e-05
-0.000227747
-0.000332364
-0.000226201
-4.54261e-05
6.89697e-05
0.000154733
0.000191215
0.000221411
0.000237341
5.52035e-05
5.51356e-05
5.0622e-05
5.40522e-05
5.28559e-05
6.41195e-05
6.37578e-05
8.73125e-05
8.39353e-05
0.00019027
7.55062e-05
-0.000272261
-0.000356339
-0.000290635
-0.000145009
-6.3233e-05
4.77743e-06
2.88364e-05
4.88249e-05
5.33988e-05
0.000145655
0.000150814
0.000151001
0.000151285
0.0001415
0.000133707
0.000114548
0.000102378
8.17187e-05
0.000139065
9.81033e-05
-5.16299e-05
-0.000108762
-5.34805e-05
3.36752e-05
7.06529e-05
0.000108289
0.000118099
0.000133057
0.000138848
5.2958e-05
5.46568e-05
5.31643e-05
5.67079e-05
5.5498e-05
6.44777e-05
6.47679e-05
9.32976e-05
0.000105264
0.000280156
0.000267025
-5.06558e-05
-0.000137032
-0.000139589
-7.50603e-05
-3.47137e-05
1.12365e-05
2.69895e-05
4.41462e-05
4.90268e-05
8.91164e-05
9.13103e-05
9.00928e-05
8.93013e-05
8.09545e-05
7.4074e-05
5.76989e-05
4.70766e-05
2.90054e-05
8.6076e-05
0.000195902
3.70546e-05
-1.94093e-05
-1.94049e-05
2.15371e-05
3.49303e-05
6.34526e-05
7.02497e-05
8.19804e-05
8.50408e-05
4.63843e-05
4.85733e-05
4.84692e-05
5.12987e-05
5.01926e-05
5.61817e-05
5.59804e-05
7.2354e-05
6.84965e-05
0.000106985
6.64696e-05
-3.07768e-05
-4.01417e-05
-5.48684e-05
-2.08971e-05
-1.19109e-05
1.47784e-05
2.35171e-05
3.72807e-05
4.18362e-05
5.95432e-05
6.02868e-05
5.87816e-05
5.76854e-05
5.09596e-05
4.5085e-05
3.2285e-05
2.18694e-05
9.77316e-06
9.09339e-06
4.07783e-05
9.83154e-06
1.88961e-05
1.65497e-05
3.6368e-05
3.51591e-05
4.91113e-05
4.92255e-05
5.62368e-05
5.71454e-05
3.95866e-05
4.14066e-05
4.16897e-05
4.35381e-05
4.24345e-05
4.5867e-05
4.58147e-05
5.38747e-05
5.14654e-05
5.81535e-05
3.35681e-05
-1.54746e-05
-1.68323e-05
-3.05277e-05
-8.36406e-06
-4.55658e-06
1.45914e-05
2.06582e-05
3.16238e-05
3.53765e-05
4.37974e-05
4.38947e-05
4.26018e-05
4.15071e-05
3.6362e-05
3.16346e-05
2.21418e-05
1.32283e-05
4.42231e-06
-2.43806e-06
1.15556e-05
6.41718e-06
2.27484e-05
2.05361e-05
3.41706e-05
3.028e-05
3.89028e-05
3.74299e-05
4.21048e-05
4.21982e-05
3.41212e-05
3.52209e-05
3.54738e-05
3.64244e-05
3.51145e-05
3.67188e-05
3.6495e-05
3.97678e-05
3.90726e-05
3.78456e-05
2.53903e-05
-5.23289e-06
-6.21041e-06
-1.7148e-05
-1.94396e-06
4.367e-07
1.47178e-05
1.92829e-05
2.78209e-05
3.05383e-05
3.50636e-05
3.48388e-05
3.39454e-05
3.29667e-05
2.91551e-05
2.55996e-05
1.88309e-05
1.17236e-05
5.84305e-06
-9.16803e-07
6.80741e-06
6.97678e-06
2.18229e-05
1.97562e-05
2.98186e-05
2.60932e-05
3.20272e-05
3.05797e-05
3.39897e-05
3.38451e-05
3.02551e-05
3.05457e-05
3.07472e-05
3.0961e-05
2.94887e-05
2.98324e-05
2.91992e-05
2.96647e-05
3.00583e-05
2.61779e-05
2.10645e-05
7.85571e-07
1.06864e-06
-6.94489e-06
3.90322e-06
5.45036e-06
1.58485e-05
1.92375e-05
2.56045e-05
2.73446e-05
3.01485e-05
2.95195e-05
2.90787e-05
2.81552e-05
2.52095e-05
2.26132e-05
1.84067e-05
1.2499e-05
9.31043e-06
3.23391e-06
8.50186e-06
8.23283e-06
2.00091e-05
1.76117e-05
2.55634e-05
2.2896e-05
2.72464e-05
2.64453e-05
2.91236e-05
2.88114e-05
2.77347e-05
2.72063e-05
2.75202e-05
2.72578e-05
2.55555e-05
2.52109e-05
2.42465e-05
2.28779e-05
2.39371e-05
1.92595e-05
1.82227e-05
4.72368e-06
6.75287e-06
9.89873e-07
9.01646e-06
1.00771e-05
1.72712e-05
1.9844e-05
2.44601e-05
2.52724e-05
2.72918e-05
2.61706e-05
2.61936e-05
2.51851e-05
2.2805e-05
2.12052e-05
1.83584e-05
1.35192e-05
1.2852e-05
6.62521e-06
1.15809e-05
9.01767e-06
1.84067e-05
1.58811e-05
2.20741e-05
2.06811e-05
2.39775e-05
2.39814e-05
2.60767e-05
2.56204e-05
2.59872e-05
2.49976e-05
2.55824e-05
2.47121e-05
2.31238e-05
2.24065e-05
2.15319e-05
1.8681e-05
2.02997e-05
1.52307e-05
1.69629e-05
7.57582e-06
1.11372e-05
6.40958e-06
1.29338e-05
1.36542e-05
1.85881e-05
2.0696e-05
2.37138e-05
2.40463e-05
2.56858e-05
2.36324e-05
2.44621e-05
2.33676e-05
2.10906e-05
2.01359e-05
1.83249e-05
1.39513e-05
1.51971e-05
8.86365e-06
1.39799e-05
9.66655e-06
1.75658e-05
1.46412e-05
1.99073e-05
1.95018e-05
2.15967e-05
2.26076e-05
2.4278e-05
2.3473e-05
2.53574e-05
2.33728e-05
2.4519e-05
2.3061e-05
2.12422e-05
2.12586e-05
1.98686e-05
1.62315e-05
1.92494e-05
1.27243e-05
1.72017e-05
8.92781e-06
1.4294e-05
1.01884e-05
1.53473e-05
1.6482e-05
1.93826e-05
2.15418e-05
2.32071e-05
2.28781e-05
2.43535e-05
2.18374e-05
2.35264e-05
2.18111e-05
1.99122e-05
1.95135e-05
1.84015e-05
1.33819e-05
1.67229e-05
9.64472e-06
1.57959e-05
9.84242e-06
1.7583e-05
1.35192e-05
1.85187e-05
1.87835e-05
2.0123e-05
2.20018e-05
2.27507e-05
2.20933e-05
2.52464e-05
2.14809e-05
2.4091e-05
2.24895e-05
1.9762e-05
2.03841e-05
1.91917e-05
1.46756e-05
1.91729e-05
1.13477e-05
1.79593e-05
9.72172e-06
1.65636e-05
1.21727e-05
1.71582e-05
1.85362e-05
1.91128e-05
2.23195e-05
2.33084e-05
2.18299e-05
2.38647e-05
1.99624e-05
2.29893e-05
2.07939e-05
1.83055e-05
1.95057e-05
1.8195e-05
1.23463e-05
1.82124e-05
8.83797e-06
1.75627e-05
8.97711e-06
1.77309e-05
1.2621e-05
1.73314e-05
1.87804e-05
1.86728e-05
2.17813e-05
2.16489e-05
2.03578e-05
2.50884e-05
2.02225e-05
2.41769e-05
2.15144e-05
1.85513e-05
2.04119e-05
1.88145e-05
1.29415e-05
1.98371e-05
9.99958e-06
1.92116e-05
9.61829e-06
1.85486e-05
1.27531e-05
1.78826e-05
1.97565e-05
1.89123e-05
2.31184e-05
2.27039e-05
2.08915e-05
2.40709e-05
1.72674e-05
2.29562e-05
2.03821e-05
1.56971e-05
1.9966e-05
1.79255e-05
1.03424e-05
1.93956e-05
7.09803e-06
1.8972e-05
7.42086e-06
1.82882e-05
1.11238e-05
1.61227e-05
1.93845e-05
1.64096e-05
2.18544e-05
2.10101e-05
1.78056e-05
2.51532e-05
1.83461e-05
2.46813e-05
2.07506e-05
1.68885e-05
2.10921e-05
1.83925e-05
1.06946e-05
2.13678e-05
7.71497e-06
2.10966e-05
8.0478e-06
2.02284e-05
1.19523e-05
1.79762e-05
2.06224e-05
1.77105e-05
2.40067e-05
2.19812e-05
1.94772e-05
2.41563e-05
1.40268e-05
2.37936e-05
1.92363e-05
1.2353e-05
2.1139e-05
1.74371e-05
6.62535e-06
2.11072e-05
3.59162e-06
2.0815e-05
4.23945e-06
1.92915e-05
8.31631e-06
1.4617e-05
1.9685e-05
1.35663e-05
2.2546e-05
1.94878e-05
1.472e-05
2.58204e-05
1.54955e-05
2.56576e-05
1.97801e-05
1.36875e-05
2.23956e-05
1.76894e-05
7.65567e-06
2.29515e-05
4.5755e-06
2.28189e-05
5.3311e-06
2.14781e-05
9.46297e-06
1.73873e-05
2.16347e-05
1.52231e-05
2.49635e-05
2.08109e-05
1.66268e-05
2.50891e-05
7.58496e-06
2.63961e-05
1.82536e-05
5.38951e-06
2.4356e-05
1.68448e-05
-1.2515e-06
2.46738e-05
-3.7288e-06
2.43282e-05
-2.66742e-06
2.17187e-05
1.89408e-06
1.20257e-05
2.10873e-05
7.47133e-06
2.46146e-05
1.78272e-05
8.76324e-06
2.62149e-05
1.03384e-05
2.75049e-05
1.76164e-05
8.19887e-06
2.50092e-05
1.59319e-05
1.69216e-06
2.51565e-05
-1.26897e-06
2.48629e-05
-2.0079e-07
2.26543e-05
4.18478e-06
1.55157e-05
2.18276e-05
1.01639e-05
2.62349e-05
1.79925e-05
1.17833e-05
2.82834e-05
-6.76424e-06
3.40721e-05
1.4418e-05
-1.1975e-05
3.40253e-05
1.38327e-05
-1.99368e-05
3.23842e-05
-2.0682e-05
3.13142e-05
-1.89725e-05
2.70518e-05
-1.40783e-05
6.78626e-06
2.45746e-05
-6.66873e-06
3.08994e-05
1.29158e-05
-5.60503e-06
-0.0109869
-0.0105945
-0.0102887
-0.0100774
-0.00996106
-0.00994874
-0.0100698
-0.0103048
-0.0106477
-0.0110744
-0.0115626
-0.012061
-0.0125067
-0.0128216
-0.0129549
-0.0129172
-0.0127164
-0.0123684
-0.0119231
-0.0114435
0.0023262
0.0022803
0.00214921
0.00198782
0.00183382
0.001744
0.00167496
0.00158984
0.00146776
0.00131343
0.00111143
0.000888393
0.000699383
0.000605158
0.000667448
0.000935762
0.00131239
0.00170486
0.0020361
0.00225042
-0.00233643
-0.00210111
-0.00191571
-0.00178006
-0.00173074
-0.00178676
-0.00191446
-0.00206437
-0.0022824
-0.00253853
-0.00286998
-0.00322098
-0.00352359
-0.00369323
-0.00372969
-0.00365453
-0.00346613
-0.00318808
-0.00288643
-0.00259713
0.0029103
0.00297367
0.00299788
0.00301531
0.00302027
0.00302019
0.00295354
0.00287542
0.00270879
0.00251592
0.00218814
0.00181917
0.00151274
0.00138238
0.00150996
0.00176956
0.00210803
0.00241338
0.00264773
0.00281065
-0.00045859
-0.000310905
-0.000238005
-0.00019104
-0.000228557
-0.000244334
-0.000305704
-0.000352609
-0.000508087
-0.000704304
-0.001125
-0.00163086
-0.00205873
-0.00228685
-0.00231016
-0.0021276
-0.00177022
-0.0013623
-0.000981275
-0.000674101
0.00202443
0.00212605
0.00217664
0.0022224
0.00221867
0.00220854
0.00212569
0.00205412
0.00185855
0.00163445
0.00112053
0.000583583
0.000208283
0.000148383
0.000363938
0.000721971
0.00110021
0.00142776
0.00169153
0.00188962
6.06522e-05
0.000104663
0.00010877
0.000112964
9.06046e-05
0.000112615
8.22521e-05
7.50056e-05
-7.18706e-05
-0.000282447
-0.000891029
-0.00153957
-0.00194215
-0.00199609
-0.00169888
-0.00124499
-0.00078664
-0.00042966
-0.000177202
-2.09285e-05
0.00125596
0.00132611
0.00135884
0.00139284
0.00136833
0.00135444
0.00127739
0.00121144
0.00102325
0.000771399
0.000115622
-0.000489578
-0.000756659
-0.000571891
-0.000172674
0.000240293
0.000601661
0.000855769
0.00104166
0.00116894
0.000173772
0.000183599
0.000171166
0.000172266
0.000164775
0.000189049
0.000169171
0.000164379
4.11028e-05
-0.00018116
-0.000863761
-0.00150396
-0.00171873
-0.00145619
-0.000968712
-0.000552349
-0.000224433
-3.10368e-05
9.07522e-05
0.000150615
0.00074346
0.000783617
0.000799918
0.000815485
0.000792686
0.000777401
0.000717494
0.000662396
0.000518167
0.000290328
-0.000337118
-0.000847116
-0.000856244
-0.000556921
-0.000132869
0.000166549
0.000398586
0.000530509
0.000630959
0.000695523
0.000179023
0.000182786
0.000172529
0.000178235
0.000172872
0.000191192
0.00017655
0.000180541
9.87233e-05
-4.70229e-05
-0.000623436
-0.00115688
-0.00109763
-0.000794612
-0.000407469
-0.000171901
6.53459e-06
8.88886e-05
0.00014737
0.000170259
0.000436525
0.000457481
0.000463517
0.000469664
0.000450514
0.000437506
0.00039363
0.000357594
0.000265868
0.000139354
-0.000326245
-0.000619871
-0.000506732
-0.000239629
3.32957e-05
0.000170646
0.000283869
0.000332825
0.000382689
0.000411442
0.000155863
0.0001605
0.000155581
0.000162902
0.000158194
0.00017365
0.000164412
0.000190832
0.000156145
0.000180895
-0.000199743
-0.000575264
-0.000489161
-0.000328004
-0.000117499
-2.51217e-05
6.68801e-05
9.95022e-05
0.000135268
0.000147627
0.000262262
0.000272912
0.000273752
0.000276108
0.000259873
0.000249764
0.000216739
0.00019804
0.000150915
0.000142317
-8.04715e-05
-0.000198061
-0.000125542
-1.03214e-05
0.000111802
0.0001434
0.000195162
0.000207828
0.000235751
0.000248343
0.000127523
0.000133296
0.00013214
0.000139194
0.000135299
0.000148784
0.000144394
0.000185349
0.000191668
0.000365578
0.000228874
-0.000146372
-0.000154565
-0.000139836
-4.82535e-05
-1.03891e-05
5.4706e-05
7.59279e-05
0.000106758
0.000117689
0.000166166
0.00017188
0.000170708
0.000171403
0.000157761
0.000149359
0.000122331
0.000109805
7.80673e-05
0.000145087
0.000251639
8.32902e-06
-2.29417e-05
-1.5077e-05
5.42504e-05
6.77603e-05
0.000114968
0.000125815
0.000149142
0.00015685
0.000102667
0.000108158
0.000108638
0.000114262
0.000110955
0.000120337
0.000116542
0.000141314
0.000130458
0.000185718
0.000108642
-6.10591e-05
-5.50112e-05
-7.62967e-05
-1.48437e-05
-4.36299e-06
4.27452e-05
5.73117e-05
8.34154e-05
9.29066e-05
0.000114307
0.00011728
0.000115617
0.000115551
0.000104558
9.7362e-05
7.62719e-05
6.32573e-05
4.14084e-05
4.32994e-05
7.53013e-05
4.57415e-06
2.91009e-05
2.15202e-05
6.15657e-05
5.82075e-05
8.67194e-05
8.86105e-05
0.000104392
0.000108087
8.38022e-05
8.79599e-05
8.8753e-05
9.25732e-05
8.95632e-05
9.50953e-05
9.22675e-05
0.000104266
9.67816e-05
0.000106188
6.34072e-05
-2.57681e-05
-1.74721e-05
-4.13627e-05
2.94089e-07
3.54507e-06
3.81852e-05
4.77838e-05
6.82673e-05
7.54142e-05
8.58901e-05
8.73033e-05
8.58323e-05
8.53885e-05
7.68859e-05
7.09905e-05
5.52825e-05
4.32353e-05
2.73667e-05
1.71082e-05
3.10765e-05
8.91437e-06
3.95653e-05
3.09387e-05
5.91651e-05
5.14827e-05
7.03305e-05
6.89216e-05
7.9893e-05
8.14751e-05
7.06259e-05
7.31121e-05
7.37292e-05
7.59012e-05
7.28205e-05
7.55282e-05
7.30744e-05
7.75052e-05
7.37398e-05
7.00463e-05
4.88338e-05
-5.59399e-06
5.00532e-07
-1.95291e-05
9.78743e-06
1.08985e-05
3.66765e-05
4.33149e-05
5.89596e-05
6.37788e-05
6.98129e-05
7.01867e-05
6.92156e-05
6.85677e-05
6.21269e-05
5.76335e-05
4.63692e-05
3.61413e-05
2.57612e-05
1.41798e-05
2.27219e-05
1.40113e-05
4.07093e-05
3.28656e-05
5.37886e-05
4.6415e-05
5.97407e-05
5.78592e-05
6.58683e-05
6.64292e-05
6.19986e-05
6.27772e-05
6.32989e-05
6.40939e-05
6.09359e-05
6.17127e-05
5.92169e-05
5.91799e-05
5.81683e-05
5.01598e-05
4.18023e-05
6.18032e-06
1.24203e-05
-2.85809e-06
1.84781e-05
1.86756e-05
3.74415e-05
4.21091e-05
5.36508e-05
5.65022e-05
6.06715e-05
5.992e-05
5.96164e-05
5.87016e-05
5.35862e-05
5.03078e-05
4.31165e-05
3.41114e-05
2.87469e-05
1.76152e-05
2.47569e-05
1.81926e-05
3.95129e-05
3.20105e-05
4.8401e-05
4.28955e-05
5.26342e-05
5.15322e-05
5.75963e-05
5.74203e-05
5.66532e-05
5.57395e-05
5.65229e-05
5.63214e-05
5.29322e-05
5.27087e-05
5.01702e-05
4.71847e-05
4.82479e-05
3.88368e-05
3.79234e-05
1.37756e-05
2.15609e-05
1.00101e-05
2.60584e-05
2.59956e-05
3.90379e-05
4.25705e-05
5.0842e-05
5.19674e-05
5.54029e-05
5.34073e-05
5.39221e-05
5.25363e-05
4.8264e-05
4.6371e-05
4.14312e-05
3.35293e-05
3.28063e-05
2.11321e-05
2.93032e-05
2.07494e-05
3.82477e-05
3.1142e-05
4.40367e-05
4.07907e-05
4.79348e-05
4.80725e-05
5.25577e-05
5.18012e-05
5.32438e-05
5.10945e-05
5.25334e-05
5.11331e-05
4.7924e-05
4.72914e-05
4.51558e-05
3.97411e-05
4.27106e-05
3.23518e-05
3.6722e-05
1.90314e-05
2.86291e-05
1.88241e-05
3.18823e-05
3.18184e-05
4.06569e-05
4.37875e-05
4.91397e-05
4.92596e-05
5.25243e-05
4.85856e-05
5.06009e-05
4.86907e-05
4.45306e-05
4.37276e-05
4.04081e-05
3.27223e-05
3.58198e-05
2.34291e-05
3.31927e-05
2.24628e-05
3.79324e-05
3.04861e-05
4.14527e-05
4.00893e-05
4.45544e-05
4.64269e-05
4.96187e-05
4.80543e-05
5.19187e-05
4.76674e-05
5.04115e-05
4.7773e-05
4.41634e-05
4.48623e-05
4.2138e-05
3.51557e-05
4.1321e-05
2.82042e-05
3.78217e-05
2.1543e-05
3.38696e-05
2.48315e-05
3.55079e-05
3.65191e-05
4.15459e-05
4.52286e-05
4.80385e-05
4.6938e-05
5.04454e-05
4.50142e-05
4.89048e-05
4.56735e-05
4.18388e-05
4.22658e-05
3.99258e-05
3.07597e-05
3.81284e-05
2.37107e-05
3.64516e-05
2.2952e-05
3.87662e-05
2.95108e-05
3.98447e-05
3.99351e-05
4.23139e-05
4.59965e-05
4.72276e-05
4.55083e-05
5.16565e-05
4.39703e-05
4.96212e-05
4.62622e-05
4.11004e-05
4.331e-05
4.07731e-05
3.18814e-05
4.16521e-05
2.54759e-05
3.9787e-05
2.26545e-05
3.78058e-05
2.78224e-05
3.81522e-05
4.00544e-05
4.07935e-05
4.67128e-05
4.78789e-05
4.48059e-05
4.9807e-05
4.13115e-05
4.81452e-05
4.36413e-05
3.85584e-05
4.21181e-05
3.9239e-05
2.80943e-05
4.07109e-05
2.15395e-05
3.98041e-05
2.14088e-05
3.97725e-05
2.82913e-05
3.83189e-05
4.0659e-05
3.98458e-05
4.61836e-05
4.54173e-05
4.2366e-05
5.15877e-05
4.10061e-05
4.98929e-05
4.43433e-05
3.82421e-05
4.34703e-05
3.98927e-05
2.81271e-05
4.33049e-05
2.23724e-05
4.25779e-05
2.18403e-05
4.13478e-05
2.82665e-05
3.90666e-05
4.23813e-05
3.98057e-05
4.8321e-05
4.66823e-05
4.25979e-05
5.03257e-05
3.62037e-05
4.84442e-05
4.24913e-05
3.35964e-05
4.31094e-05
3.84726e-05
2.37112e-05
4.32061e-05
1.75589e-05
4.28662e-05
1.81862e-05
4.13946e-05
2.55374e-05
3.64917e-05
4.21224e-05
3.58036e-05
4.6877e-05
4.40747e-05
3.77617e-05
5.20022e-05
3.6758e-05
5.11425e-05
4.26675e-05
3.42845e-05
4.50343e-05
3.88734e-05
2.30849e-05
4.64929e-05
1.72727e-05
4.64537e-05
1.81386e-05
4.45547e-05
2.59869e-05
3.88437e-05
4.41573e-05
3.68727e-05
5.0217e-05
4.50802e-05
3.92782e-05
5.08568e-05
2.97505e-05
5.03991e-05
4.01956e-05
2.69548e-05
4.56677e-05
3.72709e-05
1.62197e-05
4.68465e-05
1.03023e-05
4.68152e-05
1.17526e-05
4.37498e-05
1.99926e-05
3.3931e-05
4.31214e-05
3.02344e-05
4.86229e-05
4.1176e-05
3.18143e-05
5.34648e-05
3.03224e-05
5.36186e-05
4.04747e-05
2.72399e-05
4.8196e-05
3.72457e-05
1.58833e-05
5.02562e-05
9.89182e-06
5.0468e-05
1.16639e-05
4.73858e-05
2.01694e-05
3.73171e-05
4.61816e-05
3.12125e-05
5.25317e-05
4.24414e-05
3.31481e-05
5.28022e-05
1.78506e-05
5.55118e-05
3.7787e-05
1.41228e-05
5.20018e-05
3.56043e-05
1.70904e-06
5.36726e-05
-3.47151e-06
5.35346e-05
-1.14877e-06
4.83597e-05
8.0668e-06
2.94477e-05
4.57278e-05
1.90405e-05
5.27087e-05
3.75491e-05
2.09079e-05
5.48609e-05
1.95029e-05
5.81965e-05
3.62217e-05
1.55912e-05
5.43571e-05
3.37689e-05
3.0981e-06
5.56377e-05
-2.68428e-06
5.5507e-05
-2.00582e-07
5.05512e-05
8.93375e-06
3.35714e-05
4.72912e-05
2.07091e-05
5.58985e-05
3.69273e-05
2.30822e-05
5.81347e-05
-5.05512e-06
6.85122e-05
3.11239e-05
-1.32667e-05
6.84308e-05
3.0329e-05
-2.79151e-05
6.69534e-05
-3.07362e-05
6.56384e-05
-2.72756e-05
5.74359e-05
-1.74173e-05
2.13848e-05
5.15618e-05
-3.39005e-06
6.32258e-05
2.89529e-05
-1.63838e-06
-0.0135297
-0.0129808
-0.0125316
-0.012204
-0.0120121
-0.0119858
-0.0121412
-0.0124566
-0.0129213
-0.0134994
-0.0141546
-0.0148184
-0.0154096
-0.0158337
-0.0160271
-0.0159974
-0.0157563
-0.0153253
-0.0147627
-0.0141415
0.00193438
0.00199127
0.00192506
0.00179069
0.00163344
0.00151835
0.0013822
0.00120738
0.000972646
0.000687752
0.000341654
-2.52765e-05
-0.000337019
-0.000510496
-0.000465354
-0.000152146
0.000325967
0.000859905
0.00135105
0.00172256
-0.00274641
-0.00243865
-0.00222237
-0.00208737
-0.00207333
-0.00218083
-0.00237769
-0.00261757
-0.00295221
-0.00334969
-0.00384936
-0.00437149
-0.00481346
-0.00505164
-0.00507942
-0.00489741
-0.00453536
-0.00405836
-0.00356794
-0.00312198
0.00338186
0.00345932
0.00347788
0.00348061
0.00345801
0.00341394
0.00328829
0.00313283
0.00285455
0.00251837
0.00200374
0.0014508
0.0010238
0.000887818
0.00113747
0.00158354
0.00213139
0.00262095
0.00299161
0.00323989
-0.00028518
-0.000126164
-5.51037e-05
-1.88165e-05
-7.96749e-05
-0.000120808
-0.00023061
-0.000344164
-0.000611092
-0.000961837
-0.00160209
-0.00231549
-0.00284474
-0.00304784
-0.00291548
-0.00251675
-0.00195099
-0.00138187
-0.000895906
-0.000529294
0.00247796
0.00259717
0.00265322
0.00269987
0.00267697
0.00264353
0.00251211
0.00237512
0.00206421
0.00167624
0.000918569
0.000183561
-0.000249148
-0.000194013
0.000213616
0.000771159
0.00130834
0.00174358
0.00207579
0.0023168
0.000290883
0.000348657
0.000355661
0.000357962
0.00032611
0.000334317
0.000266354
0.000205514
-5.0733e-05
-0.000428876
-0.00130561
-0.00214892
-0.00257549
-0.00248177
-0.00197891
-0.00134313
-0.000752254
-0.000310961
-3.78976e-06
0.000187811
0.00158487
0.00167348
0.00171333
0.00174988
0.00171287
0.00168294
0.00156688
0.00144679
0.00115077
0.000728905
-0.000200173
-0.000970985
-0.00120054
-0.00085782
-0.000266442
0.000288727
0.000752433
0.00107366
0.00130922
0.00147253
0.000370697
0.000392112
0.000381875
0.000385355
0.000369838
0.000385563
0.000336364
0.000289361
7.14559e-05
-0.0003127
-0.00126944
-0.00205863
-0.00219997
-0.00176821
-0.00110771
-0.000574986
-0.000163402
8.29807e-05
0.000244239
0.000330626
0.000967419
0.00102023
0.00104049
0.00105744
0.00102545
0.000999545
0.000910653
0.000815477
0.000585664
0.000209202
-0.000674617
-0.00129121
-0.00120098
-0.000747695
-0.000183047
0.000203775
0.000502625
0.000677393
0.00081294
0.00090209
0.00032951
0.000341334
0.000332268
0.000340402
0.000328763
0.000342062
0.000306598
0.000283513
0.000133291
-0.000135303
-0.000946336
-0.00156715
-0.00139598
-0.000962989
-0.000461253
-0.000160891
7.0274e-05
0.000184068
0.00026929
0.000309256
0.00058665
0.000615419
0.000623109
0.000630377
0.000604112
0.000584628
0.000521069
0.000460995
0.000313397
8.69988e-05
-0.000576049
-0.000910428
-0.000694936
-0.000325337
3.16321e-05
0.000211621
0.000364263
0.000435794
0.000507738
0.000550836
0.000266202
0.00027653
0.000272394
0.000281864
0.000272396
0.000285917
0.000263679
0.000279675
0.00020666
0.000171447
-0.000374018
-0.000792595
-0.000621605
-0.000393159
-0.000119439
5.52429e-07
0.000124087
0.00017317
0.000226895
0.000249913
0.000364332
0.000379953
0.000381378
0.000384776
0.000362992
0.000349323
0.000303455
0.000274248
0.000198539
0.000146876
-0.000189879
-0.000322427
-0.000185646
-2.69228e-05
0.000136441
0.000181886
0.000256547
0.000279915
0.00032238
0.000343395
0.000208012
0.000218004
0.000217463
0.000226385
0.000218862
0.000232299
0.000220326
0.000262057
0.000254078
0.000423663
0.000205029
-0.00022792
-0.000194072
-0.000162123
-3.66739e-05
1.11421e-05
9.83535e-05
0.000129296
0.000173776
0.000192007
0.000238196
0.00024729
0.000246285
0.000247876
0.000229773
0.000219289
0.000183119
0.000166708
0.000120671
0.00018805
0.000272718
-3.08661e-05
-4.12268e-05
-2.51334e-05
7.11398e-05
9.17605e-05
0.000157834
0.000175716
0.000210415
0.000223747
0.000162742
0.000171328
0.000172242
0.000179322
0.00017308
0.000182716
0.000173586
0.000199917
0.000179854
0.000239169
0.000132107
-8.80826e-05
-6.91183e-05
-9.18567e-05
-6.22576e-06
9.34732e-06
7.47334e-05
9.62115e-05
0.000133365
0.000148121
0.000168003
0.000173267
0.000171592
0.000172192
0.000157572
0.000148859
0.000120845
0.000104902
7.37271e-05
7.41042e-05
9.73964e-05
-5.63553e-06
3.07114e-05
2.0387e-05
7.89568e-05
7.74265e-05
0.000120078
0.000126054
0.000150518
0.000157937
0.000130642
0.000136903
0.000137927
0.000142726
0.000137223
0.000142755
0.000135894
0.000148009
0.000134463
0.000142455
8.56131e-05
-3.37912e-05
-1.73127e-05
-4.70606e-05
1.1558e-05
1.66531e-05
6.50202e-05
7.89092e-05
0.000107827
0.000118536
0.000128446
0.000131305
0.000129742
0.000129698
0.000118243
0.000111104
9.0169e-05
7.52105e-05
5.28924e-05
3.85516e-05
4.83443e-05
9.58364e-06
5.01878e-05
3.66971e-05
7.82289e-05
6.99285e-05
9.90503e-05
9.97676e-05
0.000117197
0.000121135
0.000109142
0.000112862
0.000113558
0.000116255
0.000110967
0.000113389
0.000107757
0.00011116
0.00010351
9.60468e-05
6.81766e-05
-4.55244e-06
8.11743e-06
-1.77932e-05
2.3938e-05
2.53226e-05
6.12535e-05
7.04822e-05
9.2405e-05
9.94712e-05
0.000105599
0.000106699
0.000105645
0.000105126
9.62497e-05
9.07349e-05
7.55911e-05
6.25328e-05
4.8061e-05
3.17212e-05
3.88046e-05
2.03355e-05
5.54227e-05
4.28251e-05
7.36751e-05
6.50037e-05
8.5905e-05
8.52007e-05
9.80145e-05
9.99814e-05
9.54102e-05
9.66379e-05
9.72117e-05
9.81247e-05
9.29595e-05
9.32783e-05
8.82343e-05
8.64546e-05
8.32531e-05
7.08312e-05
6.00117e-05
1.25777e-05
2.46482e-05
4.38159e-06
3.50846e-05
3.49578e-05
6.11478e-05
6.74518e-05
8.35859e-05
8.77049e-05
9.24081e-05
9.16842e-05
9.14195e-05
9.03479e-05
8.31271e-05
7.90496e-05
6.90776e-05
5.72855e-05
4.98364e-05
3.39197e-05
4.14959e-05
2.7972e-05
5.63844e-05
4.46311e-05
6.87487e-05
6.20681e-05
7.74021e-05
7.71477e-05
8.6764e-05
8.72778e-05
8.7025e-05
8.58047e-05
8.67875e-05
8.63365e-05
8.10516e-05
8.03769e-05
7.57854e-05
7.05502e-05
7.08852e-05
5.68537e-05
5.61649e-05
2.368e-05
3.70503e-05
2.13124e-05
4.46433e-05
4.41779e-05
6.251e-05
6.72618e-05
7.881e-05
8.04474e-05
8.47726e-05
8.20852e-05
8.29193e-05
8.10403e-05
7.48503e-05
7.24682e-05
6.54578e-05
5.47255e-05
5.37009e-05
3.70846e-05
4.73104e-05
3.27341e-05
5.65994e-05
4.5666e-05
6.47897e-05
6.08074e-05
7.19839e-05
7.30152e-05
8.0021e-05
7.939e-05
8.18558e-05
7.86472e-05
8.0659e-05
7.85855e-05
7.35497e-05
7.2661e-05
6.88702e-05
6.0707e-05
6.43664e-05
4.90237e-05
5.57145e-05
3.12668e-05
4.65735e-05
3.29346e-05
5.19499e-05
5.16772e-05
6.41139e-05
6.84655e-05
7.5985e-05
7.60532e-05
8.06029e-05
7.50876e-05
7.7985e-05
7.51828e-05
6.91027e-05
6.82407e-05
6.32927e-05
5.2493e-05
5.69793e-05
3.91422e-05
5.25547e-05
3.58236e-05
5.75844e-05
4.63637e-05
6.26561e-05
6.10924e-05
6.81655e-05
7.1308e-05
7.61121e-05
7.41515e-05
7.96656e-05
7.33828e-05
7.73921e-05
7.35793e-05
6.80205e-05
6.90367e-05
6.47913e-05
5.44853e-05
6.3033e-05
4.39851e-05
5.80004e-05
3.50527e-05
5.37202e-05
4.07475e-05
5.65578e-05
5.78182e-05
6.49143e-05
7.02293e-05
7.42039e-05
7.25045e-05
7.78425e-05
6.9797e-05
7.54859e-05
7.0805e-05
6.48842e-05
6.59548e-05
6.21631e-05
4.91934e-05
5.98734e-05
3.88761e-05
5.71915e-05
3.69055e-05
5.96753e-05
4.61396e-05
6.14058e-05
6.18845e-05
6.55064e-05
7.11624e-05
7.3055e-05
7.0462e-05
7.90792e-05
6.80011e-05
7.61348e-05
7.1051e-05
6.3471e-05
6.69327e-05
6.28616e-05
4.97764e-05
6.39713e-05
4.03212e-05
6.13392e-05
3.65625e-05
5.92005e-05
4.45553e-05
5.98099e-05
6.25471e-05
6.37211e-05
7.2213e-05
7.362e-05
6.92592e-05
7.70035e-05
6.44015e-05
7.44773e-05
6.78152e-05
6.00592e-05
6.56177e-05
6.10231e-05
4.50207e-05
6.33697e-05
3.55637e-05
6.20167e-05
3.50588e-05
6.18358e-05
4.49974e-05
5.99626e-05
6.35063e-05
6.23178e-05
7.18085e-05
7.06707e-05
6.60512e-05
7.89981e-05
6.33289e-05
7.64673e-05
6.82668e-05
5.90047e-05
6.71994e-05
6.1565e-05
4.42647e-05
6.66337e-05
3.57659e-05
6.56641e-05
3.51636e-05
6.41216e-05
4.48379e-05
6.08269e-05
6.58334e-05
6.19116e-05
7.44519e-05
7.18543e-05
6.57319e-05
7.76568e-05
5.72175e-05
7.50313e-05
6.58926e-05
5.31022e-05
6.70218e-05
5.98233e-05
3.85401e-05
6.70548e-05
2.96727e-05
6.66456e-05
3.05545e-05
6.4617e-05
4.13705e-05
5.78224e-05
6.58032e-05
5.69172e-05
7.31054e-05
6.86529e-05
5.97129e-05
7.9635e-05
5.68479e-05
7.82901e-05
6.57443e-05
5.28683e-05
6.95062e-05
6.00516e-05
3.67273e-05
7.12661e-05
2.82705e-05
7.13061e-05
2.96598e-05
6.86367e-05
4.12294e-05
6.02243e-05
6.84098e-05
5.73788e-05
7.71503e-05
6.94214e-05
6.05401e-05
7.84891e-05
4.80202e-05
7.78604e-05
6.26231e-05
4.367e-05
7.07078e-05
5.80334e-05
2.78988e-05
7.23312e-05
1.93403e-05
7.24332e-05
2.15312e-05
6.82049e-05
3.36626e-05
5.44572e-05
6.74873e-05
4.91193e-05
7.57256e-05
6.46103e-05
5.13217e-05
8.15928e-05
4.72594e-05
8.19811e-05
6.24798e-05
4.24917e-05
7.42146e-05
5.7677e-05
2.58531e-05
7.69013e-05
1.72603e-05
7.73193e-05
1.99859e-05
7.28067e-05
3.258e-05
5.77531e-05
7.12362e-05
4.8991e-05
8.05539e-05
6.54714e-05
5.15284e-05
8.10256e-05
3.20707e-05
8.47381e-05
5.90097e-05
2.65031e-05
7.93e-05
5.5507e-05
8.52174e-06
8.15223e-05
8.49889e-07
8.15237e-05
4.30338e-06
7.43648e-05
1.77646e-05
4.84984e-05
7.09318e-05
3.42297e-05
8.12031e-05
5.93394e-05
3.67079e-05
8.36225e-05
3.21639e-05
8.85886e-05
5.67052e-05
2.61652e-05
8.30302e-05
5.30228e-05
7.8841e-06
8.47135e-05
-3.54236e-07
8.4695e-05
3.40731e-06
7.74751e-05
1.69029e-05
5.24266e-05
7.30995e-05
3.44448e-05
8.54483e-05
5.79358e-05
3.74699e-05
8.7222e-05
4.29978e-06
0.000100642
5.06137e-05
-6.50074e-06
9.95074e-05
4.89366e-05
-2.72366e-05
9.79376e-05
-3.22007e-05
9.6542e-05
-2.73104e-05
8.53727e-05
-1.30469e-05
3.8474e-05
7.79156e-05
7.14422e-06
9.38475e-05
4.83576e-05
9.55513e-06
-0.0149497
-0.0143247
-0.0138109
-0.0134357
-0.0132219
-0.0132058
-0.0133949
-0.0137672
-0.0143087
-0.0149764
-0.0157258
-0.0164775
-0.0171394
-0.0176077
-0.017814
-0.017767
-0.0174815
-0.0169859
-0.0163464
-0.015643
0.00141565
0.0015245
0.00149529
0.00138194
0.00123488
0.00111138
0.000935035
0.000702877
0.000392776
2.0701e-05
-0.000418869
-0.000873669
-0.00125306
-0.00146171
-0.0014089
-0.00105284
-0.00050697
0.000109738
0.000686388
0.00113708
-0.00310465
-0.00274853
-0.00250903
-0.00237058
-0.00238095
-0.00252207
-0.00276671
-0.00307148
-0.00349009
-0.00398456
-0.00459264
-0.0052154
-0.0057295
-0.00598998
-0.00599872
-0.00574247
-0.00527314
-0.00468252
-0.00408672
-0.00355068
0.00348731
0.00358784
0.00361331
0.00361249
0.00357136
0.00349277
0.00331708
0.0030976
0.00273099
0.00229068
0.00165188
0.000989347
0.00050106
0.000377038
0.000712473
0.00127015
0.00193889
0.00253654
0.00299364
0.00330487
-0.000189116
-1.71147e-05
5.55153e-05
8.34251e-05
4.85407e-06
-6.02336e-05
-0.000214617
-0.000388123
-0.000747223
-0.00121259
-0.00199877
-0.0028349
-0.0034084
-0.0035861
-0.00334799
-0.00280782
-0.00210766
-0.00143194
-0.00087241
-0.000459442
0.00270964
0.00284497
0.00290546
0.00295091
0.00290784
0.0028502
0.00267331
0.00247657
0.00207026
0.00156037
0.000641507
-0.000209569
-0.000665641
-0.000525279
5.02703e-06
0.000691238
0.00133726
0.00185363
0.00224317
0.00252332
0.000470385
0.000541093
0.000551111
0.000551238
0.000509215
0.000499707
0.000392467
0.000277235
-7.36321e-05
-0.000579241
-0.00163402
-0.00258879
-0.00301744
-0.00281633
-0.00217446
-0.00141613
-0.000731354
-0.000226144
0.000125534
0.000347695
0.00179221
0.00189492
0.00193897
0.00197419
0.0019243
0.00187632
0.00172281
0.0015507
0.00116359
0.000613186
-0.00049559
-0.00136171
-0.00155402
-0.00110719
-0.00038451
0.000271022
0.00081275
0.0011886
0.00146564
0.00165914
0.000537633
0.000570517
0.00056316
0.000568284
0.000543237
0.00054565
0.000464555
0.000372201
7.03688e-05
-0.000438898
-0.00157652
-0.00245179
-0.00252832
-0.0019827
-0.00120446
-0.000589537
-0.000114347
0.000175453
0.000370629
0.000481227
0.00112627
0.00118922
0.00121189
0.00122813
0.00118671
0.00114836
0.00103126
0.000896033
0.000591893
0.00010111
-0.000953161
-0.00163076
-0.00146718
-0.00090919
-0.000246382
0.000206012
0.000558487
0.000769913
0.000935603
0.00104617
0.000462488
0.000482666
0.000475509
0.000485042
0.000466012
0.000470371
0.000411812
0.00035739
0.000144045
-0.000221668
-0.00119115
-0.00186066
-0.0016069
-0.00108572
-0.000503222
-0.000153157
0.000121388
0.000263672
0.000373494
0.000430406
0.000702782
0.000738263
0.000747048
0.000754282
0.000720991
0.00069361
0.000610771
0.000525066
0.000326882
2.11696e-05
-0.000777206
-0.00113337
-0.00084692
-0.000406999
1.18193e-05
0.000227548
0.000414822
0.000508205
0.000600488
0.000657235
0.000366227
0.000382371
0.00037939
0.000389968
0.000375021
0.000383539
0.000346499
0.000346528
0.000235169
0.00014792
-0.000514736
-0.000956848
-0.000724947
-0.000448719
-0.000126167
1.87507e-05
0.000170716
0.000236673
0.000307541
0.000341675
0.00044894
0.00046908
0.000470959
0.000474702
0.000447669
0.00042942
0.000371112
0.0003289
0.00022532
0.000135284
-0.000284506
-0.000427839
-0.000245796
-5.56168e-05
0.000141925
0.000202901
0.00029978
0.000335333
0.000391751
0.000421391
0.000282299
0.000296377
0.0002965
0.000306357
0.000294772
0.000305818
0.000284955
0.000321597
0.000295963
0.000452872
0.00016861
-0.000302348
-0.000232445
-0.000185758
-2.97622e-05
2.92148e-05
0.000136502
0.00017763
0.000234666
0.000260341
0.000301216
0.000313471
0.000312635
0.000314674
0.0002925
0.000279333
0.000234681
0.000212425
0.000151624
0.000211822
0.000269363
-7.555e-05
-6.35735e-05
-3.92004e-05
8.05304e-05
0.000109482
0.00019239
0.000217789
0.00026288
0.000281971
0.000218949
0.000230391
0.000231621
0.00023941
0.000229982
0.00023828
0.000223176
0.000247411
0.000217038
0.000273366
0.000139249
-0.000115482
-8.26945e-05
-0.000104624
1.95115e-06
2.35221e-05
0.000104771
0.000133131
0.000180004
0.000199917
0.000216809
0.000224279
0.000222613
0.000223585
0.000205701
0.000195193
0.000160989
0.000141374
0.000101096
9.69378e-05
0.000108333
-1.89745e-05
2.82953e-05
1.67338e-05
9.15585e-05
9.32494e-05
0.00014862
0.000159349
0.000191786
0.000203152
0.000174937
0.000183095
0.000184178
0.000189412
0.000181262
0.000185782
0.000174539
0.000184836
0.000164896
0.000169123
9.98482e-05
-4.21306e-05
-1.75529e-05
-5.06459e-05
2.27099e-05
3.05829e-05
9.08702e-05
0.000109137
0.000145401
0.000159579
0.000168126
0.000172417
0.000170757
0.000170916
0.000156784
0.0001483
0.000122744
0.000104792
7.64547e-05
5.74825e-05
6.15825e-05
8.89053e-06
5.74384e-05
4.03057e-05
9.35014e-05
8.59758e-05
0.000124521
0.000128123
0.000151558
0.000158122
0.000145888
0.000150717
0.000151318
0.000154172
0.000146585
0.000148103
0.000139066
0.000140488
0.000128738
0.000117008
8.33003e-05
-3.68536e-06
1.52195e-05
-1.45505e-05
3.80438e-05
4.04765e-05
8.5233e-05
9.71742e-05
0.000124538
0.000133816
0.000139536
0.000141395
0.000140203
0.00013968
0.000128546
0.000121975
0.000103372
8.76665e-05
6.94006e-05
4.853e-05
5.32462e-05
2.59792e-05
6.75551e-05
5.11384e-05
9.07076e-05
8.1884e-05
0.000109816
0.000110939
0.000128245
0.000131871
0.000127511
0.000129161
0.00012961
0.000130412
0.000123191
0.000122695
0.000114942
0.000111027
0.000105357
8.87133e-05
7.56407e-05
1.88855e-05
3.63853e-05
1.26553e-05
5.16006e-05
5.17425e-05
8.44081e-05
9.24543e-05
0.000112561
0.000117971
0.000122839
0.000122233
0.000121893
0.000120582
0.00011137
0.000106479
9.39229e-05
7.96622e-05
7.01821e-05
4.99791e-05
5.72693e-05
3.73614e-05
7.13392e-05
5.61377e-05
8.70586e-05
8.00562e-05
0.000100627
0.000101688
0.000114618
0.000116052
0.000116358
0.000114911
0.000115892
0.000115064
0.000107875
0.000106548
9.97807e-05
9.22604e-05
9.14943e-05
7.33252e-05
7.26747e-05
3.35653e-05
5.20203e-05
3.32497e-05
6.30229e-05
6.25921e-05
8.55885e-05
9.16255e-05
0.000106009
0.000108241
0.000113146
0.000109924
0.000110898
0.000108501
0.000100462
9.7549e-05
8.85401e-05
7.53485e-05
7.3805e-05
5.29441e-05
6.44718e-05
4.45452e-05
7.35384e-05
5.95067e-05
8.41607e-05
8.00279e-05
9.50058e-05
9.72083e-05
0.00010656
0.00010626
0.00010961
0.000105501
0.000107833
0.000105069
9.82011e-05
9.69422e-05
9.13767e-05
8.0692e-05
8.45719e-05
6.49092e-05
7.34233e-05
4.35439e-05
6.3928e-05
4.7417e-05
7.1705e-05
7.15487e-05
8.72018e-05
9.27802e-05
0.000102197
0.000102317
0.000107855
0.000101046
0.000104535
0.000100875
9.2942e-05
9.19482e-05
8.53568e-05
7.18726e-05
7.72925e-05
5.48602e-05
7.10725e-05
4.91945e-05
7.61559e-05
6.1899e-05
8.29358e-05
8.155e-05
9.11473e-05
9.56348e-05
0.000101936
9.9785e-05
0.000106621
9.86102e-05
0.000103535
9.86414e-05
9.11632e-05
9.23333e-05
8.65121e-05
7.32814e-05
8.35423e-05
5.95007e-05
7.70774e-05
4.87374e-05
7.29042e-05
5.68771e-05
7.72566e-05
7.89505e-05
8.7969e-05
9.48169e-05
9.98463e-05
9.76929e-05
0.000104544
9.4279e-05
0.00010133
9.5343e-05
8.73909e-05
8.89767e-05
8.36678e-05
6.74719e-05
8.07246e-05
5.42154e-05
7.70505e-05
5.10762e-05
7.96766e-05
6.27292e-05
8.23644e-05
8.34597e-05
8.83661e-05
9.58723e-05
9.84256e-05
9.51388e-05
0.000105716
9.18042e-05
0.000101854
9.52031e-05
8.53576e-05
8.98302e-05
8.41759e-05
6.74707e-05
8.5179e-05
5.52774e-05
8.18332e-05
5.08034e-05
7.98515e-05
6.14853e-05
8.10847e-05
8.47401e-05
8.64932e-05
9.72427e-05
9.8883e-05
9.34892e-05
0.000103538
8.74657e-05
0.00010012
9.15438e-05
8.12789e-05
8.84955e-05
8.21778e-05
6.20655e-05
8.50383e-05
5.00671e-05
8.32481e-05
4.92277e-05
8.3084e-05
6.19371e-05
8.12611e-05
8.60442e-05
8.47459e-05
9.70143e-05
9.5633e-05
8.97013e-05
0.000105607
8.56611e-05
0.000102222
9.16995e-05
7.95325e-05
9.0214e-05
8.2588e-05
6.05643e-05
8.88099e-05
4.96496e-05
8.76103e-05
4.90668e-05
8.6026e-05
6.17333e-05
8.22556e-05
8.88976e-05
8.40339e-05
0.000100029
9.66642e-05
8.88316e-05
0.00010427
7.86134e-05
0.000100896
8.89504e-05
7.27419e-05
9.02518e-05
8.06598e-05
5.39065e-05
8.97808e-05
4.2706e-05
8.93011e-05
4.38558e-05
8.69982e-05
5.77977e-05
7.9045e-05
8.91408e-05
7.83865e-05
9.88859e-05
9.30739e-05
8.20023e-05
0.0001064
7.73353e-05
0.000104497
8.84797e-05
7.16056e-05
9.31343e-05
8.07206e-05
5.10359e-05
9.46753e-05
4.03127e-05
9.47834e-05
4.22323e-05
9.16703e-05
5.71358e-05
8.13764e-05
9.21873e-05
7.82465e-05
0.000103387
9.35593e-05
8.20862e-05
0.000105317
6.72791e-05
0.000104403
8.4923e-05
6.11687e-05
9.4832e-05
7.84468e-05
4.08622e-05
9.64064e-05
3.00652e-05
9.66375e-05
3.29637e-05
9.166e-05
4.85573e-05
7.5147e-05
9.14555e-05
6.89465e-05
0.000102217
8.81575e-05
7.1733e-05
0.000108668
6.53173e-05
0.000109106
8.43806e-05
5.87051e-05
9.9033e-05
7.78132e-05
3.73532e-05
0.000101809
2.65759e-05
0.000102427
3.01987e-05
9.69195e-05
4.64148e-05
7.81706e-05
9.56465e-05
6.78314e-05
0.000107617
8.85851e-05
7.08811e-05
0.000108198
4.8558e-05
0.000112485
8.04157e-05
4.10786e-05
0.000104999
7.53279e-05
1.8205e-05
0.000107296
8.39288e-06
0.000107462
1.28752e-05
9.89249e-05
3.00541e-05
6.8179e-05
9.54865e-05
5.16109e-05
0.000108625
8.16624e-05
5.46055e-05
0.000111058
4.73982e-05
0.000117069
7.75977e-05
3.93195e-05
0.000109637
7.2433e-05
1.59812e-05
0.000111327
5.66178e-06
0.000111475
1.05721e-05
0.000102628
2.7881e-05
7.17409e-05
9.80447e-05
5.0683e-05
0.000113503
7.96729e-05
5.42093e-05
0.000114704
1.82595e-05
0.000129931
7.10308e-05
5.24397e-06
0.000127265
6.8079e-05
-2.066e-05
0.000125488
-2.76341e-05
0.000124154
-2.15201e-05
0.000110932
-3.44863e-06
5.69849e-05
0.000103003
2.21779e-05
0.000122272
6.92404e-05
2.51624e-05
-0.0158343
-0.0151726
-0.0146338
-0.0142469
-0.0140397
-0.0140468
-0.0142718
-0.0146906
-0.0152868
-0.0160124
-0.0168179
-0.0176169
-0.0183105
-0.0187889
-0.0189838
-0.0189067
-0.0185753
-0.0180252
-0.0173295
-0.0165734
0.000959625
0.00108743
0.00107249
0.000969339
0.000832498
0.000703054
0.000500187
0.000230963
-0.000128698
-0.000557052
-0.00105538
-0.00156189
-0.00197549
-0.00219381
-0.00211966
-0.00172109
-0.00112486
-0.00045584
0.0001672
0.000654591
-0.00342797
-0.00304232
-0.00278866
-0.0026479
-0.00267928
-0.00284383
-0.00312144
-0.00347155
-0.00394923
-0.00450878
-0.00518698
-0.00586933
-0.00641903
-0.0066786
-0.00666479
-0.00635373
-0.00581353
-0.005156
-0.00450163
-0.00391516
0.00343686
0.00355855
0.00359332
0.00359344
0.00353983
0.00343638
0.00322055
0.00295196
0.00251855
0.00200518
0.00128262
0.000553479
3.56499e-05
-6.76596e-05
0.000334068
0.000963276
0.00170341
0.00236299
0.00287142
0.00322395
-0.000170392
1.38443e-05
8.93463e-05
0.000110806
1.93452e-05
-6.61257e-05
-0.000258761
-0.000480958
-0.000912863
-0.00146094
-0.00234802
-0.0032596
-0.00384819
-0.0040019
-0.00368741
-0.00305046
-0.00226239
-0.00151746
-0.000908646
-0.000461985
0.00281633
0.0029663
0.00303073
0.00307502
0.0030127
0.00293298
0.00271573
0.00246898
0.00198624
0.00138735
0.00035649
-0.000564839
-0.00102521
-0.000815988
-0.000203038
0.000567113
0.00128629
0.00186065
0.00229477
0.00260777
0.000588404
0.000670803
0.000683173
0.000681579
0.000628852
0.000601753
0.000457516
0.000294217
-0.00013483
-0.000735605
-0.0019158
-0.00293545
-0.00335391
-0.00307085
-0.00233051
-0.00148913
-0.000738498
-0.000186145
0.000200795
0.000448642
0.00192229
0.00203647
0.00208284
0.00211493
0.00205226
0.00198652
0.0017982
0.0015802
0.0011181
0.000471146
-0.000763189
-0.001685
-0.0018388
-0.0013176
-0.00050287
0.000222521
0.000822582
0.00124159
0.00155296
0.00177192
0.000665128
0.000708417
0.000703348
0.000709389
0.000674039
0.000661966
0.000549574
0.000415098
4.2227e-05
-0.000562902
-0.00182773
-0.0027532
-0.00276975
-0.00214322
-0.00128256
-0.00060997
-8.63809e-05
0.000238378
0.00046229
0.000594124
0.00124018
0.0013116
0.00133551
0.00134997
0.00129873
0.00124743
0.00110335
0.000931172
0.000564318
-1.43077e-05
-0.00118905
-0.00189965
-0.00167549
-0.00104358
-0.000311257
0.000189225
0.000584557
0.000826634
0.00101823
0.00114743
0.000571515
0.000599521
0.000594
0.000604158
0.000577011
0.00057099
0.000489154
0.00040412
0.000135623
-0.000305731
-0.00138921
-0.00208448
-0.00176414
-0.00118161
-0.000541057
-0.000153615
0.000156768
0.000323882
0.000455771
0.000528377
0.000793581
0.000834962
0.000844268
0.000850766
0.000810162
0.000774096
0.000672374
0.000561563
0.000319142
-4.92534e-05
-0.000945808
-0.00130926
-0.00096904
-0.000480271
-1.55701e-05
0.000228613
0.000445911
0.000559153
0.000669925
0.000739268
0.000452007
0.000473661
0.000471657
0.000482639
0.000461683
0.000463793
0.000411398
0.000394042
0.000247311
0.000118039
-0.000633128
-0.00108679
-0.000808008
-0.000498564
-0.000137723
2.82824e-05
0.000205824
0.000287809
0.000374705
0.000419582
0.00051949
0.00054374
0.000545792
0.000549358
0.000516936
0.00049331
0.00042258
0.000366176
0.000236654
0.000113734
-0.000369066
-0.000516606
-0.000300321
-8.80742e-05
0.000137533
0.000212947
0.000330622
0.000378286
0.000447836
0.000485817
0.000348144
0.000366034
0.000366631
0.000376816
0.000360827
0.000368274
0.000337946
0.000367012
0.000323364
0.000467071
0.000128545
-0.000370294
-0.000268477
-0.000211176
-2.78561e-05
4.19529e-05
0.000167848
0.000218996
0.000287709
0.000320615
0.000356393
0.000371555
0.000370716
0.000372804
0.000346531
0.000330062
0.000276973
0.000247406
0.000171762
0.000222425
0.000254953
-0.000120906
-8.6879e-05
-5.54691e-05
8.51369e-05
0.000122293
0.000220573
0.000253379
0.000308049
0.000332738
0.000270072
0.000284122
0.000285465
0.000293478
0.000280663
0.000286752
0.000265379
0.000285667
0.000244634
0.000295191
0.000136468
-0.000143732
-9.65261e-05
-0.000117354
8.05543e-06
3.58264e-05
0.000131458
0.000166496
0.000222186
0.000247043
0.000261077
0.000270589
0.0002688
0.000269843
0.000248725
0.000236029
0.000195797
0.000171672
0.000122311
0.000111975
0.000111419
-3.41451e-05
2.39697e-05
1.17485e-05
0.000101256
0.000106575
0.000173559
0.00018913
0.000228889
0.000244148
0.000216061
0.000225924
0.000226877
0.000232184
0.000221266
0.000224206
0.000208455
0.000215904
0.000189506
0.000188784
0.000108051
-5.16788e-05
-1.88535e-05
-5.41235e-05
3.26397e-05
4.37244e-05
0.00011482
0.000137436
0.000180316
0.000197829
0.00020503
0.000210657
0.000208776
0.00020892
0.000192147
0.00018209
0.000152098
0.000130827
9.66319e-05
7.26021e-05
7.0877e-05
7.01745e-06
6.28129e-05
4.28328e-05
0.000106581
0.000100441
0.000147677
0.000154408
0.000183383
0.0001926
0.000180565
0.000186386
0.000186714
0.000189469
0.000179509
0.000179772
0.000167265
0.000166224
0.000150359
0.000134149
9.50284e-05
-3.64163e-06
2.12792e-05
-1.12218e-05
5.12895e-05
5.52509e-05
0.000108022
0.000122744
0.000154989
0.000166425
0.000171672
0.00017425
0.000172785
0.000172105
0.000158734
0.00015098
0.000129057
0.000110668
8.872e-05
6.34429e-05
6.56158e-05
3.09106e-05
7.81349e-05
5.86245e-05
0.000106088
9.77087e-05
0.000132174
0.00013539
0.000156847
0.000162198
0.000158192
0.000160227
0.000160373
0.000160898
0.000151571
0.000150053
0.000139535
0.000133338
0.000125102
0.000104458
8.91953e-05
2.46999e-05
4.72653e-05
2.10175e-05
6.74798e-05
6.8316e-05
0.000106875
0.000116751
0.000140411
0.000147117
0.000152029
0.000151565
0.000150989
0.00014934
0.000138146
0.000132366
0.000117281
0.000100691
8.91472e-05
6.50349e-05
7.1754e-05
4.6325e-05
8.50781e-05
6.70927e-05
0.000104173
9.73441e-05
0.000122813
0.000125399
0.000141386
0.00014383
0.000144665
0.000143036
0.000143818
0.000142519
0.000133399
0.000131292
0.000122289
0.000112556
0.000110471
8.86018e-05
8.77894e-05
4.32034e-05
6.62845e-05
4.52693e-05
8.09065e-05
8.0851e-05
0.000108121
0.000115506
0.000132421
0.000135302
0.000140616
0.000136957
0.000137867
0.000134911
0.000125026
0.000121516
0.000110505
9.51037e-05
9.28269e-05
6.82772e-05
8.06642e-05
5.61616e-05
8.9538e-05
7.30363e-05
0.000102708
9.8796e-05
0.00011736
0.000120853
0.000132365
0.0001325
0.000136588
0.000131708
0.000134114
0.000130642
0.000121926
0.000120205
0.000112791
9.98251e-05
0.000103572
8.01909e-05
9.00922e-05
5.57705e-05
8.06659e-05
6.19948e-05
9.10646e-05
9.12825e-05
0.000109923
0.000116731
0.000127852
0.000128107
0.000134411
0.000126512
0.000130306
0.000125812
0.000116042
0.000114829
0.000106554
9.07323e-05
9.66784e-05
7.03723e-05
8.87602e-05
6.2581e-05
9.39812e-05
7.73369e-05
0.00010267
0.000101716
0.000113751
0.000119582
0.000127267
0.000125053
0.000132941
0.000123457
0.000128958
0.00012305
0.00011367
0.00011486
0.00010741
9.16324e-05
0.000103059
7.48416e-05
9.52771e-05
6.25716e-05
9.15148e-05
7.31529e-05
9.76561e-05
9.9943e-05
0.000110821
0.000119103
0.000125105
0.00012262
0.000130682
0.000118535
0.000126534
0.00011935
0.000109413
0.000111359
0.000104484
8.55437e-05
0.00010072
6.96417e-05
9.61271e-05
6.54899e-05
9.90413e-05
7.94335e-05
0.00010299
0.000104847
0.000111092
0.000120294
0.000123493
0.000119665
0.000131791
0.000115499
0.000126947
0.000118875
0.00010687
0.000112117
0.000104851
8.50598e-05
0.000105481
7.0419e-05
0.000101497
6.54191e-05
9.9936e-05
7.86755e-05
0.000102147
0.000106783
0.000109263
0.000121993
0.000123888
0.000117661
0.000129569
0.000110586
0.00012519
0.000114913
0.00010229
0.000110825
0.000102796
7.92265e-05
0.000105844
6.49991e-05
0.000103666
6.39276e-05
0.000103743
7.92253e-05
0.000102409
0.000108439
0.000107293
0.000121966
0.000120451
0.000113439
0.000131675
0.00010817
0.000127369
0.000114817
9.99797e-05
0.000112662
0.000103125
7.71294e-05
0.000110061
6.4108e-05
0.000108672
6.36432e-05
0.000107319
7.91003e-05
0.00010359
0.000111793
0.000106388
0.000125305
0.000121361
0.000112115
0.000130372
0.000100431
0.000126176
0.0001118
9.25485e-05
0.000112916
0.000101108
6.98106e-05
0.00011156
5.6611e-05
0.000111039
5.8084e-05
0.000108758
7.49011e-05
0.000100302
0.000112324
0.000100312
0.000124387
0.000117509
0.000104708
0.000132596
9.84031e-05
0.000130021
0.000111073
9.06791e-05
0.000116111
0.000101064
6.61119e-05
0.000117013
5.34626e-05
0.000117209
5.59483e-05
0.000113986
7.38909e-05
0.000102587
0.000115755
9.97131e-05
0.000129235
0.000117767
0.000104172
0.00013158
8.74928e-05
0.000130216
0.000107223
7.94036e-05
0.000118218
9.86506e-05
5.5017e-05
0.000119321
4.23349e-05
0.0001197
4.59488e-05
0.000114366
6.46743e-05
9.60958e-05
0.000115222
8.97351e-05
0.0001283
0.000111961
9.30551e-05
0.000135065
8.46057e-05
0.000135315
0.000106374
7.59678e-05
0.000122917
9.78344e-05
5.04124e-05
0.000125349
3.78091e-05
0.000126186
4.23134e-05
0.000120121
6.17844e-05
9.8876e-05
0.000119742
8.78954e-05
0.000134092
0.000112049
9.13875e-05
0.000134659
6.69081e-05
0.000139127
0.00010211
5.73939e-05
0.000129491
9.51923e-05
3.02053e-05
0.000131467
1.85839e-05
0.00013183
2.40511e-05
0.00012245
4.45452e-05
8.84575e-05
0.000119685
7.08365e-05
0.000135329
0.000104605
7.42726e-05
0.000137642
6.48855e-05
0.000144161
9.89554e-05
5.46685e-05
0.000134704
9.20536e-05
2.69049e-05
0.000136061
1.4831e-05
0.000136427
2.08231e-05
0.000126543
4.15193e-05
9.17051e-05
0.000122508
6.91522e-05
0.000140588
0.000102226
7.30828e-05
0.000141227
3.52921e-05
0.000157411
9.21886e-05
2.01451e-05
0.000152917
8.76418e-05
-1.02169e-05
0.000150725
-1.89601e-05
0.000149536
-1.17177e-05
0.000134987
9.72482e-06
7.65229e-05
0.000127432
4.02507e-05
0.000149406
9.13189e-05
4.37304e-05
-0.0164278
-0.015748
-0.0152011
-0.0148165
-0.0146249
-0.0146586
-0.0149174
-0.0153749
-0.0160125
-0.0167785
-0.0176202
-0.0184463
-0.019153
-0.0196263
-0.0198003
-0.0196908
-0.0193174
-0.0187225
-0.0179851
-0.0171938
0.000593266
0.000724543
0.000713228
0.000614932
0.000486126
0.000353003
0.000131313
-0.000163619
-0.000557904
-0.00102441
-0.00156168
-0.0021002
-0.00253101
-0.0027472
-0.00264688
-0.00220847
-0.00157338
-0.000869631
-0.000221116
0.000281398
-0.00370751
-0.00330455
-0.00304425
-0.00290498
-0.00295594
-0.00313862
-0.00344085
-0.00382343
-0.00434377
-0.00494816
-0.00567415
-0.00639411
-0.00696115
-0.0072097
-0.0071728
-0.00681854
-0.00622655
-0.00552571
-0.00483617
-0.00421955
0.00332797
0.00346545
0.00350745
0.00350972
0.00344602
0.00332354
0.00307552
0.00276994
0.00228575
0.00172047
0.000938084
0.000165697
-0.000365549
-0.00044365
1.38522e-05
0.000694369
0.0014803
0.00217699
0.00271596
0.00309447
-0.000200463
-7.37349e-06
6.98007e-05
8.52785e-05
-1.67514e-05
-0.000118456
-0.000343087
-0.000603359
-0.00109275
-0.00170139
-0.0026633
-0.00362442
-0.0042131
-0.00434268
-0.00396627
-0.00325604
-0.00240646
-0.00161587
-0.000975386
-0.000506523
0.00284982
0.00301158
0.00307856
0.0031213
0.00304147
0.00294269
0.00269056
0.00240357
0.00185962
0.00119476
8.04512e-05
-0.000885408
-0.00133809
-0.00106762
-0.000392886
0.000435409
0.00120477
0.00181938
0.00228589
0.00262391
0.000655861
0.000747913
0.000761372
0.000758467
0.000694904
0.000652015
0.000474465
0.000270969
-0.000222217
-0.000895237
-0.00217035
-0.00322722
-0.00362648
-0.00327585
-0.00245895
-0.00155934
-0.000762925
-0.000177705
0.000235125
0.000502736
0.00199846
0.00212177
0.00216884
0.00219711
0.00212186
0.00203992
0.00182011
0.00156334
0.00103968
0.000318746
-0.00100995
-0.0019645
-0.00207553
-0.00149388
-0.000611073
0.000162869
0.000805392
0.00125664
0.00159492
0.0018343
0.000756169
0.000808377
0.000804579
0.000811062
0.0007651
0.000739077
0.000597418
0.000426125
-6.21593e-06
-0.000686194
-0.00204722
-0.00300083
-0.00295744
-0.00226755
-0.00134655
-0.000634322
-7.49979e-05
0.00027637
0.000523487
0.00067295
0.00131918
0.0013976
0.00142165
0.00143382
0.00137253
0.00130876
0.00113954
0.000934808
0.000515487
-0.000131988
-0.00139807
-0.00212277
-0.00184214
-0.00115423
-0.000371477
0.000162992
0.000591577
0.000857993
0.00107111
0.00121594
0.000656731
0.000691693
0.000687166
0.000697416
0.000661727
0.000645196
0.000540991
0.000428137
0.000112337
-0.000388573
-0.00156008
-0.00226499
-0.00188504
-0.00125758
-0.000574602
-0.000160358
0.000178892
0.000366487
0.00051746
0.000603857
0.000862965
0.000909438
0.000918618
0.000923963
0.000875775
0.000830916
0.0007111
0.000577014
0.000296565
-0.000122062
-0.00109454
-0.00145327
-0.00106722
-0.000543553
-4.46288e-05
0.000220742
0.0004633
0.000593478
0.000720544
0.000801029
0.000522828
0.000549473
0.000548025
0.000558929
0.000531582
0.00052681
0.000459256
0.00042509
0.000246859
8.43165e-05
-0.000738071
-0.00119388
-0.000875061
-0.000542676
-0.000151591
3.09127e-05
0.000230904
0.000327114
0.000428555
0.000483271
0.000577201
0.0006051
0.000606932
0.00060996
0.000571922
0.000542536
0.000459572
0.000388944
0.000236062
8.52763e-05
-0.00044761
-0.000592465
-0.000347375
-0.000120119
0.000128384
0.000215647
0.000352128
0.000410819
0.000492393
0.000538045
0.000404724
0.000426062
0.000426809
0.000436903
0.000416228
0.000419506
0.000379602
0.000400352
0.000339733
0.000472116
8.7087e-05
-0.000433055
-0.000300943
-0.000237089
-2.93767e-05
4.97494e-05
0.000192707
0.000253084
0.000332528
0.000372153
0.00040387
0.000421632
0.000420519
0.000422342
0.000391819
0.00037165
0.000310127
0.000272546
0.000182585
0.000223751
0.000234827
-0.000165467
-0.000109382
-7.26454e-05
8.6735e-05
0.000131026
0.000243326
0.000282941
0.000346373
0.000376266
0.000315428
0.000331804
0.000332994
0.000340887
0.000324498
0.000327905
0.000300176
0.00031567
0.000264232
0.000308352
0.000127428
-0.000172703
-0.00011031
-0.000130626
1.20413e-05
4.5585e-05
0.000154445
0.000195675
0.0002594
0.000288846
0.000300614
0.000311952
0.000309827
0.000310687
0.000286245
0.000271067
0.000224843
0.000195673
0.000137414
0.000120358
0.000108926
-5.05282e-05
1.88086e-05
5.85613e-06
0.000108886
0.000117607
0.000195268
0.000215407
0.000261864
0.00028078
0.000253513
0.000264875
0.000265472
0.000270585
0.000256778
0.000257808
0.000237521
0.000241595
0.00020891
0.000202811
0.000111622
-6.26239e-05
-2.1119e-05
-5.81322e-05
4.11745e-05
5.54583e-05
0.000136535
0.000163272
0.000212158
0.00023278
0.000238914
0.000245732
0.000243445
0.000243378
0.000223911
0.000212096
0.000177734
0.000152899
0.000113014
8.37926e-05
7.66959e-05
4.01586e-06
6.70001e-05
4.4558e-05
0.00011809
0.000113461
0.000168759
0.000178563
0.000212617
0.000224365
0.000212828
0.000219504
0.000219363
0.000221824
0.000209406
0.000208206
0.000192222
0.000188488
0.000168617
0.000147936
0.000103848
-4.67247e-06
2.63112e-05
-8.29676e-06
6.35236e-05
6.91888e-05
0.00012938
0.000146806
0.00018347
0.000196936
0.000201802
0.000205014
0.000203103
0.000202122
0.000186474
0.000177428
0.00015224
0.00013114
0.000105613
7.60962e-05
7.58904e-05
3.50382e-05
8.76075e-05
6.54777e-05
0.000120268
0.000112585
0.000153151
0.000158499
0.00018376
0.000190789
0.000187229
0.000189582
0.000189238
0.000189354
0.000177859
0.000175197
0.000161895
0.000153396
0.000142597
0.000118213
0.00010088
2.98175e-05
5.72829e-05
2.91288e-05
8.26178e-05
8.43707e-05
0.000128395
0.00014009
0.000166954
0.000174901
0.000179833
0.00017949
0.000178496
0.000176416
0.000163207
0.000156474
0.000138874
0.000120075
0.00010645
7.87798e-05
8.48684e-05
5.47709e-05
9.78956e-05
7.76195e-05
0.000120407
0.000114015
0.000144084
0.000148248
0.000167028
0.000170482
0.00017181
0.000170008
0.000170389
0.000168543
0.00015745
0.000154488
0.000143212
0.000131395
0.000127865
0.000102713
0.000101621
5.24647e-05
7.98577e-05
5.71543e-05
9.82473e-05
9.87756e-05
0.000130027
0.000138756
0.000157946
0.000161475
0.000167096
0.000163052
0.000163683
0.000160127
0.00014837
0.000144211
0.000131178
0.000113793
0.000110614
8.28737e-05
9.58538e-05
6.75151e-05
0.000104801
8.6334e-05
0.000120644
0.000117177
0.000139135
0.000143936
0.000157416
0.000158023
0.000162717
0.000157157
0.000159393
0.000155198
0.000144611
0.00014236
0.000133049
0.000118052
0.000121395
9.48545e-05
0.000105806
6.7868e-05
9.6835e-05
7.65573e-05
0.000110037
0.000110798
0.000132257
0.000140255
0.000152909
0.000153341
0.000160231
0.000151391
0.000155212
0.000149898
0.000138289
0.000136781
0.000126784
0.000108947
0.000115076
8.55479e-05
0.000105636
7.59363e-05
0.000111215
9.27366e-05
0.000122011
0.000121649
0.000136042
0.000143157
0.000152106
0.000149902
0.000158612
0.00014786
0.00015361
0.000146741
0.00013547
0.000136568
0.000127448
0.000109491
0.000121627
8.99771e-05
0.000112692
7.65138e-05
0.000109634
8.95372e-05
0.000117804
0.000120791
0.000133493
0.000143086
0.000149979
0.00014725
0.00015625
0.000142501
0.000151054
0.000142766
0.000130883
0.000133041
0.000124569
0.000103326
0.000119863
8.50727e-05
0.000114481
8.01165e-05
0.000117908
9.62955e-05
0.000123399
0.000126103
0.000133737
0.000144455
0.000148271
0.000144018
0.000157336
0.000139043
0.00015141
0.000142047
0.00012797
0.000133772
0.000124884
0.000102513
0.000124946
8.57173e-05
0.000120441
8.03912e-05
0.000119567
9.61407e-05
0.000123083
0.000128728
0.000132068
0.00014651
0.000148677
0.000141773
0.000155123
0.000133713
0.000149682
0.000137894
0.000123047
0.000132584
0.000122871
9.64452e-05
0.000125843
8.02912e-05
0.000123372
7.91309e-05
0.000123948
9.68941e-05
0.000123502
0.000130756
0.000130002
0.000146714
0.000145152
0.000137258
0.000157277
0.000130834
0.000151946
0.000137627
0.000120328
0.000134559
0.000123198
9.39336e-05
0.000130489
7.91104e-05
0.000128992
7.88867e-05
0.000128152
9.69788e-05
0.000124938
0.000134611
0.00012903
0.000150366
0.000146008
0.000135605
0.000156033
0.000122606
0.000150899
0.000134441
0.000112462
0.000135035
0.000121184
8.61864e-05
0.000132496
7.13046e-05
0.000131999
7.31909e-05
0.000130045
9.26927e-05
0.000121673
0.000135442
0.000122706
0.00014968
0.000142001
0.000127806
0.000158337
0.000120016
0.000154946
0.000133545
0.00011006
0.0001385
0.000121119
8.19016e-05
0.000138438
6.76494e-05
0.000138778
7.0769e-05
0.00013578
9.15218e-05
0.000123979
0.000139236
0.000121815
0.000154824
0.000142116
0.000126816
0.000157388
0.000108529
0.000155386
0.000129518
9.8243e-05
0.00014095
0.000118666
7.02132e-05
0.000141247
5.5976e-05
0.000141823
6.03502e-05
0.000136513
8.19488e-05
0.000117358
0.000138898
0.000111423
0.000154093
0.000136045
0.000115204
0.000160959
0.000104985
0.000160769
0.000128469
9.41313e-05
0.000146019
0.000117767
6.48523e-05
0.00014777
5.07548e-05
0.000148873
5.61645e-05
0.00014267
7.86009e-05
0.000119976
0.000143695
0.000109111
0.000160172
0.000135912
0.000112969
0.000160593
8.67433e-05
0.000164886
0.000124052
7.50433e-05
0.000153028
0.000115091
4.40655e-05
0.000154363
3.09534e-05
0.000154973
3.74101e-05
0.000145235
6.09063e-05
0.000109309
0.000143704
9.15992e-05
0.000161542
0.000128129
9.53975e-05
0.000163633
8.41645e-05
0.000170198
0.000120691
7.17012e-05
0.000158604
0.000111828
4.00793e-05
0.000159346
2.65623e-05
0.000159989
3.36243e-05
0.0001496
5.73764e-05
0.000112331
0.000146722
8.94585e-05
0.000167039
0.000125517
9.37068e-05
0.00016712
5.44873e-05
0.000183637
0.000113888
3.7162e-05
0.000177133
0.000107487
2.9434e-06
0.000174303
-7.29011e-06
0.000173327
1.0585e-06
0.000158058
2.55411e-05
9.68911e-05
0.00015153
6.05275e-05
0.000175749
0.00011435
6.442e-05
-0.01685
-0.0161613
-0.0156146
-0.0152389
-0.0150666
-0.0151277
-0.0154182
-0.0159091
-0.0165801
-0.0173767
-0.018244
-0.0190867
-0.0197974
-0.0202584
-0.0204076
-0.0202655
-0.0198536
-0.0192204
-0.0184498
-0.0176331
0.000305794
0.000432633
0.000419806
0.000324282
0.000202401
6.65536e-05
-0.00016945
-0.000483602
-0.000903913
-0.00139805
-0.00196307
-0.00252278
-0.00296181
-0.00316981
-0.0030414
-0.00256528
-0.00189812
-0.00116986
-0.000507789
-2.2394e-06
-0.00394291
-0.00353066
-0.00326916
-0.00313488
-0.00320446
-0.00340191
-0.00372368
-0.00413026
-0.00468286
-0.00531965
-0.00608066
-0.00682635
-0.00740098
-0.00763367
-0.00757249
-0.00718176
-0.00654879
-0.00581764
-0.00510566
-0.00447012
0.00320231
0.0033507
0.00339732
0.00340195
0.00332857
0.00319121
0.0029168
0.00258321
0.0020593
0.00145595
0.000627909
-0.00017449
-0.000710003
-0.000759445
-0.000252624
0.000468486
0.00128562
0.00200497
0.00256165
0.00295582
-0.000255954
-5.76253e-05
1.93215e-05
2.84448e-05
-8.26438e-05
-0.000196856
-0.000448301
-0.000738091
-0.00127394
-0.00192838
-0.00294999
-0.00394565
-0.00452624
-0.00462989
-0.00419847
-0.00342806
-0.00253298
-0.00171212
-0.00105241
-0.000570332
0.00284007
0.00301058
0.00307834
0.00311892
0.00302348
0.00290872
0.00262659
0.00230769
0.00171385
0.000998618
-0.000182173
-0.00117719
-0.00161411
-0.00128639
-0.00056097
0.000309836
0.0011145
0.00175657
0.00224568
0.00260167
0.000687139
0.000786633
0.000799755
0.000796085
0.000721654
0.000665226
0.00045812
0.000221709
-0.000324809
-0.00105444
-0.00240614
-0.00348252
-0.00385792
-0.00344684
-0.00256498
-0.00162308
-0.000795026
-0.000188073
0.000242624
0.000524439
0.00203621
0.00216651
0.00221282
0.00223705
0.00214958
0.00205349
0.00180559
0.00151674
0.000941939
0.000162532
-0.00124212
-0.00221536
-0.00227602
-0.00164199
-0.000707035
0.000100612
0.000773646
0.00124803
0.00160661
0.00186167
0.000817546
0.000877098
0.000873463
0.000880116
0.000823512
0.000784836
0.000616376
0.000413757
-6.87517e-05
-0.000808911
-0.00224769
-0.00321508
-0.00310937
-0.00236568
-0.0013987
-0.000659898
-7.47598e-05
0.000295942
0.000561132
0.000724627
0.00137049
0.0014545
0.00147764
0.00148731
0.00141593
0.00134077
0.00114852
0.000915809
0.000452366
-0.000250611
-0.00159058
-0.00231594
-0.00197922
-0.0012461
-0.000425646
0.000132039
0.000585995
0.000870956
0.00110145
0.00125894
0.000720894
0.000761811
0.000757518
0.00076751
0.000723061
0.00069658
0.000571404
0.00043415
7.77919e-05
-0.000470948
-0.00171489
-0.00241726
-0.00198046
-0.00131843
-0.000603778
-0.000171232
0.000190935
0.000394722
0.00056176
0.000659819
0.000913948
0.000964675
0.000973036
0.000977005
0.000921062
0.000867791
0.000730971
0.000576002
0.000263029
-0.000196664
-0.0012313
-0.00157542
-0.00114702
-0.000597829
-7.29722e-05
0.000207214
0.000470685
0.000614628
0.000755688
0.000845655
0.000579556
0.000610564
0.000609142
0.000619637
0.000585637
0.000574049
0.000491962
0.00044246
0.000236595
4.7872e-05
-0.000835002
-0.0012854
-0.000929531
-0.000581521
-0.000166116
2.84424e-05
0.000247869
0.000356095
0.000470424
0.000533798
0.000623112
0.000654148
0.000655299
0.000657545
0.000613695
0.000578522
0.000483741
0.000399586
0.000226138
5.18124e-05
-0.000522495
-0.000658685
-0.00038724
-0.000150321
0.000117029
0.000213137
0.000366322
0.000434477
0.000526813
0.000579235
0.000452111
0.00047647
0.000476969
0.00048667
0.000461079
0.00046001
0.000410727
0.000423346
0.000347432
0.000471083
4.50327e-05
-0.000491889
-0.00032952
-0.000262722
-3.30282e-05
5.34099e-05
0.000211885
0.000280337
0.000369493
0.000415133
0.00044384
0.000463857
0.000462134
0.000463456
0.000428511
0.000404471
0.000334628
0.000288932
0.000185625
0.000218427
0.000211462
-0.000208866
-0.000130223
-9.00641e-05
8.63736e-05
0.000136321
0.000261371
0.000306911
0.000378266
0.000412817
0.000354821
0.000373209
0.00037393
0.000381442
0.000361305
0.000361804
0.000327787
0.000338242
0.000277083
0.000315143
0.000114326
-0.000202228
-0.000123739
-0.000144493
1.43182e-05
5.27726e-05
0.00017386
0.000220593
0.000291605
0.000325172
0.000335315
0.000348231
0.000345504
0.000345975
0.000318081
0.000300258
0.000248092
0.000213671
0.000146918
0.000123302
0.00010242
-6.77715e-05
1.33956e-05
-7.32171e-07
0.000114957
0.000126474
0.000213998
0.000238218
0.000290762
0.000312987
0.000287053
0.000299686
0.000299667
0.000304376
0.000287549
0.000286491
0.000261704
0.000262196
0.000223589
0.00021216
0.000111623
-7.492e-05
-2.41017e-05
-6.28429e-05
4.84397e-05
6.56048e-05
0.000155982
0.000186456
0.000240787
0.000264209
0.000269611
0.00027744
0.000274525
0.00027408
0.000251823
0.000238139
0.000199453
0.000170959
0.000125635
9.13385e-05
7.95867e-05
-5.27649e-08
7.0387e-05
4.55603e-05
0.000128356
0.000125065
0.000187887
0.000200529
0.000239213
0.000253275
0.000242475
0.000249849
0.000249015
0.000251023
0.000236046
0.000233268
0.000213822
0.000207326
0.000183656
0.000158674
0.00011016
-6.84366e-06
3.04727e-05
-5.93029e-06
7.48129e-05
8.21297e-05
0.000149259
0.000169192
0.000209849
0.000225154
0.000229777
0.000233507
0.000230946
0.000229538
0.000211539
0.000201137
0.000172717
0.000148938
0.000119979
8.64529e-05
8.42154e-05
3.83123e-05
9.62249e-05
7.17418e-05
0.000133482
0.000126529
0.000172827
0.000180207
0.000208934
0.000217512
0.000214475
0.000217056
0.000216017
0.000215609
0.000201869
0.000197994
0.000181904
0.000171159
0.000157867
0.000130042
0.000110851
3.41551e-05
6.65452e-05
3.68795e-05
9.70672e-05
9.97982e-05
0.000148941
0.000162354
0.0001921
0.000201179
0.000206148
0.000205871
0.000204257
0.00020166
0.000186376
0.000178654
0.000158545
0.000137676
0.000121992
9.11134e-05
9.66496e-05
6.26447e-05
0.000109966
8.77413e-05
0.000135932
0.000130091
0.000164504
0.000170198
0.000191514
0.000195912
0.000197706
0.000195706
0.000195477
0.000193015
0.000179891
0.00017603
0.000162457
0.000148717
0.000143677
0.000115648
0.000114252
6.12912e-05
9.28286e-05
6.88378e-05
0.000115102
0.000116313
0.000151307
0.000161315
0.000182539
0.000186669
0.000192528
0.000188111
0.000188244
0.000184044
0.000170372
0.000165529
0.000150455
0.000131312
0.000127109
9.66448e-05
0.000110071
7.85628e-05
0.000119464
9.94284e-05
0.000138103
0.000135204
0.000160391
0.000166449
0.000181707
0.000182768
0.000187957
0.000181773
0.000183596
0.000178658
0.000166163
0.000163336
0.00015209
0.000135317
0.000138048
0.000108871
0.000120635
7.98011e-05
0.000112526
9.10825e-05
0.000128691
0.00013009
0.000154228
0.000163337
0.000177359
0.00017797
0.000185297
0.000175621
0.000179195
0.00017307
0.000159602
0.000157739
0.000145988
0.000126446
0.000132474
0.000100324
0.000121752
8.92377e-05
0.00012798
0.000108132
0.000141072
0.000141398
0.000158076
0.000166379
0.000176471
0.000174304
0.000183634
0.000171775
0.000177459
0.000169669
0.000156507
0.000157422
0.0001466
0.000126815
0.00013928
0.000104878
0.000129405
9.05439e-05
0.000127366
0.000106044
0.000137782
0.00014153
0.000156029
0.000166793
0.00017449
0.000171569
0.000181264
0.000166141
0.000174877
0.000165554
0.000151754
0.000153992
0.000143902
0.000120768
0.000138183
0.000100464
0.000132192
9.49451e-05
0.0001364
0.000113354
0.000143698
0.00014729
0.000156358
0.000168404
0.000172793
0.000168196
0.000182392
0.000162408
0.000175249
0.000164708
0.000148625
0.000154788
0.000144276
0.000119799
0.000143637
0.000101145
0.00013877
9.57091e-05
0.000138866
0.000113916
0.000143989
0.000150642
0.000154962
0.000170855
0.000173297
0.000165835
0.000180249
0.000156818
0.000173614
0.000160475
0.00014352
0.000153776
0.000142412
0.000113682
0.000145107
9.59002e-05
0.000142476
9.48247e-05
0.00014383
0.00011498
0.00014464
0.000153076
0.000152924
0.000171328
0.000169782
0.000161164
0.000182487
0.000153629
0.000175998
0.000160136
0.000140554
0.000155932
0.000142833
0.000110942
0.000150194
9.46174e-05
0.000148706
9.47848e-05
0.00014867
0.000115402
0.000146402
0.000157448
0.000152007
0.000175305
0.000170666
0.000159317
0.000181334
0.00014509
0.000175119
0.000156881
0.000132437
0.000156651
0.000140914
0.000102975
0.000152702
8.67169e-05
0.000152329
8.91378e-05
0.000151012
0.000111187
0.000143247
0.000158597
0.00014559
0.000174861
0.000166602
0.000151291
0.00018373
0.000142119
0.000179357
0.000155914
0.000129695
0.000160376
0.000140919
9.83285e-05
0.000159103
8.27839e-05
0.000159672
8.66359e-05
0.000157232
0.000110029
0.000145647
0.000162753
0.000144566
0.000180281
0.000166667
0.000150009
0.000182858
0.000130278
0.000180016
0.000151814
0.000117572
0.00016313
0.000138519
8.63096e-05
0.000162359
7.08314e-05
0.000163209
7.60446e-05
0.000158289
0.000100322
0.000139
0.00016261
0.000133965
0.000179729
0.000160446
0.000138113
0.000186503
0.000126298
0.000185622
0.000150665
0.000113028
0.000168495
0.000137632
8.04698e-05
0.000169299
6.51929e-05
0.000170739
7.15687e-05
0.000164798
9.67502e-05
0.00014154
0.00016766
0.000131388
0.00018604
0.000160201
0.000135518
0.000186166
0.000107778
0.000189965
0.000146207
9.3717e-05
0.00017583
0.000135018
5.94267e-05
0.000176266
4.51318e-05
0.000177192
5.26242e-05
0.000167539
7.8885e-05
0.000130743
0.000167713
0.000113678
0.000187477
0.000152214
0.000117747
0.000189237
0.000104856
0.000195461
0.000142739
8.9997e-05
0.000181648
0.000131719
5.50219e-05
0.000181536
4.03657e-05
0.000182528
4.85324e-05
0.000172112
7.50895e-05
0.000133613
0.000170891
0.000111287
0.000193133
0.000149484
0.00011576
0.000192617
7.52836e-05
0.000208988
0.00013601
5.56593e-05
0.000200353
0.000127537
1.81049e-05
0.000196676
6.67245e-06
0.000195984
1.61582e-05
0.000180517
4.3433e-05
0.000118
0.00017554
8.25126e-05
0.000201652
0.000138192
8.67235e-05
-0.0171652
-0.0164724
-0.01593
-0.0155664
-0.0154152
-0.0155032
-0.0158236
-0.0163442
-0.0170439
-0.0178654
-0.0187526
-0.0196065
-0.0203167
-0.0207618
-0.0208851
-0.0207107
-0.0202627
-0.0195954
-0.0187969
-0.0179602
8.20248e-05
0.000200812
0.000184625
9.20424e-05
-2.35126e-05
-0.000162536
-0.000410226
-0.000739932
-0.00118144
-0.00169713
-0.00228358
-0.00285844
-0.00330073
-0.00349711
-0.00334029
-0.00282848
-0.00213305
-0.00138641
-0.000717936
-0.000216407
-0.00413895
-0.00372277
-0.00346392
-0.00333768
-0.00342473
-0.0036343
-0.00397276
-0.00439795
-0.00497647
-0.0056382
-0.00642718
-0.00719244
-0.00776939
-0.00798407
-0.0078958
-0.00747243
-0.00680526
-0.0060512
-0.0053237
-0.00467549
0.00307923
0.00323468
0.00328376
0.00329063
0.00320681
0.00305769
0.00276093
0.00240572
0.00184934
0.00121686
0.000351374
-0.000473437
-0.0010073
-0.00102473
-0.000473667
0.000282792
0.00112254
0.00185589
0.00242228
0.0028252
-0.000322397
-0.00012194
-4.72374e-05
-4.52338e-05
-0.000164277
-0.000287806
-0.000562149
-0.000874977
-0.0014498
-0.00214039
-0.00321327
-0.00423452
-0.00480256
-0.00487693
-0.00439302
-0.00357
-0.00263952
-0.00179878
-0.00112862
-0.000640078
0.00280584
0.0029823
0.00304899
0.00308667
0.00297745
0.00284949
0.00254128
0.00219708
0.00156131
0.000806112
-0.00043124
-0.00144594
-0.00186051
-0.00147814
-0.000707463
0.000196171
0.00102644
0.00168686
0.00219103
0.00255921
0.000693847
0.000798686
0.000810075
0.000806322
0.000720931
0.000653165
0.000419728
0.000156512
-0.000435515
-0.00121129
-0.00262872
-0.00371449
-0.00406165
-0.00359098
-0.00265148
-0.00167814
-0.000828505
-0.000208295
0.000233783
0.000525025
0.00204693
0.00218229
0.00222654
0.00224678
0.00214741
0.00203932
0.00176631
0.00145111
0.000832841
5.54374e-06
-0.00146412
-0.00244538
-0.00244896
-0.00176847
-0.000790868
4.02537e-05
0.000734977
0.00122522
0.00159852
0.00186509
0.000855835
0.000921211
0.000916648
0.000923343
0.000856183
0.000806457
0.00061355
0.000384589
-0.000141033
-0.000931205
-0.00243671
-0.00340752
-0.00323551
-0.00244407
-0.00144061
-0.000684724
-8.13617e-05
0.000302627
0.000581416
0.000755629
0.00139999
0.0014883
0.00150952
0.0015167
0.00143527
0.00135009
0.00113683
0.000880359
0.000379265
-0.000369907
-0.00177322
-0.00248889
-0.00209472
-0.00132316
-0.00047357
9.91841e-05
0.000572258
0.00087072
0.00111486
0.00128221
0.000767203
0.000813051
0.000808201
0.000817733
0.000764416
0.000728916
0.000584278
0.000426042
3.45648e-05
-0.000553492
-0.00186048
-0.00255032
-0.00205747
-0.00136768
-0.000628742
-0.000184606
0.000195611
0.000411664
0.000591927
0.000699512
0.000949263
0.0010034
0.00101024
0.00101276
0.000948959
0.000887952
0.000735317
0.000561948
0.000221058
-0.000273051
-0.0013612
-0.00168226
-0.0012126
-0.000644484
-9.95181e-05
0.000190119
0.000470764
0.000625379
0.000778188
0.000875922
0.000623532
0.000658229
0.000656256
0.000666127
0.000625295
0.000607294
0.000511508
0.00044851
0.000218495
9.22221e-06
-0.000927464
-0.00136631
-0.000974102
-0.000615864
-0.000180365
2.22479e-05
0.000258414
0.000376349
0.000501875
0.0005726
0.000658316
0.000691943
0.000691916
0.000693233
0.00064341
0.000602678
0.000496649
0.000400026
0.000208707
1.43563e-05
-0.000595378
-0.000717778
-0.000420746
-0.000178278
0.000104897
0.000206858
0.000374755
0.00045061
0.00055239
0.000610555
0.000490738
0.000517652
0.000517458
0.000526551
0.000495863
0.000490535
0.000432271
0.000437465
0.000348146
0.000465749
2.54171e-06
-0.000548043
-0.000354367
-0.000287782
-3.79142e-05
5.36837e-05
0.000226223
0.000301409
0.000399224
0.000450057
0.000476623
0.000498519
0.000495808
0.000496453
0.000456923
0.000429029
0.000351086
0.000297561
0.000182105
0.000208043
0.000186019
-0.000251195
-0.000149062
-0.000107348
8.48289e-05
0.000138747
0.000275368
0.000325779
0.000404204
0.000442763
0.000388289
0.000408351
0.000408248
0.000415179
0.000391135
0.000388687
0.000348569
0.000354134
0.000284214
0.000317063
9.84183e-05
-0.000232303
-0.000136597
-0.000158919
1.52858e-05
5.7561e-05
0.000189987
0.000241398
0.00031896
0.000356097
0.000365188
0.000379405
0.000375772
0.000375682
0.000344198
0.000323687
0.000265677
0.000226047
0.000151381
0.000121748
9.29322e-05
-8.56703e-05
8.10977e-06
-7.87108e-06
0.000119868
0.000133341
0.000230003
0.000257678
0.000315705
0.000340808
0.000316585
0.000330237
0.000329315
0.000333447
0.000313467
0.00031026
0.000281067
0.000278002
0.000233999
0.000217574
0.000108835
-8.85071e-05
-2.75807e-05
-6.83003e-05
5.46203e-05
7.41472e-05
0.000173244
0.000206959
0.000266192
0.000292042
0.000297027
0.000305664
0.000301864
0.000300894
0.000275736
0.000260142
0.00021719
0.000185075
0.000134657
9.55716e-05
8.00295e-05
-5.11081e-06
7.32571e-05
4.58986e-05
0.000137624
0.000135301
0.000205177
0.000220303
0.000263171
0.000279262
0.000269385
0.000277276
0.000275506
0.000276923
0.000259277
0.000254874
0.000232009
0.000222809
0.000195636
0.000166638
0.000114315
-1.01635e-05
3.39253e-05
-4.1757e-06
8.52707e-05
9.40242e-05
0.000167685
0.000189834
0.000234076
0.000250972
0.000255497
0.000259599
0.000256163
0.000254212
0.000233769
0.000221989
0.00019037
0.000164015
0.000131821
9.45731e-05
9.07767e-05
4.07283e-05
0.000104182
7.7447e-05
0.000145902
0.000139562
0.00019127
0.000200486
0.000232342
0.000242283
0.000239834
0.000242524
0.00024057
0.000239536
0.00022346
0.000218348
0.000199476
0.000186606
0.000170951
0.000140018
0.000119262
3.76896e-05
7.51731e-05
4.4222e-05
0.000110915
0.000114563
0.00016853
0.000183489
0.000215806
0.00022586
0.000230897
0.000230601
0.000228153
0.000224954
0.00020752
0.000198798
0.000176186
0.000153419
0.00013574
0.00010201
0.000107176
6.99211e-05
0.000121431
9.7481e-05
0.000150882
0.000145596
0.000184128
0.000191234
0.000214825
0.000220053
0.000222288
0.000220036
0.00021898
0.000215836
0.000200611
0.000195836
0.000179948
0.000164475
0.000157912
0.000127407
0.000125765
6.96528e-05
0.000105296
8.03068e-05
0.000131549
0.000133457
0.000171988
0.000183156
0.000206182
0.000210822
0.000216867
0.000212059
0.000211467
0.000206576
0.000190931
0.000185391
0.000168258
0.000147591
0.000142292
0.000109549
0.000123371
8.92849e-05
0.000133643
0.000112347
0.000155196
0.000152913
0.000181182
0.000188398
0.00020524
0.000206695
0.000212281
0.000205491
0.000206661
0.000200954
0.000186504
0.000183074
0.000169865
0.000151576
0.000153542
0.000122223
0.000134649
9.15549e-05
0.000127836
0.000105578
0.000147106
0.000149181
0.000175878
0.000185985
0.000201209
0.000201963
0.000209601
0.00019915
0.000202212
0.000195274
0.000179915
0.000177654
0.000164122
0.000143175
0.000148879
0.000114665
0.000137169
0.000102476
0.000144385
0.000123559
0.000159954
0.000161014
0.00017991
0.000189277
0.00020038
0.00019824
0.000208017
0.000195162
0.000200482
0.000191796
0.000176729
0.000177391
0.000164842
0.000143568
0.00015605
0.000119523
0.000145493
0.000104656
0.000144813
0.000122701
0.000157674
0.000162209
0.000178479
0.00019026
0.000198665
0.000195569
0.000205744
0.000189421
0.000197991
0.000187688
0.000171984
0.000174193
0.000162468
0.000137832
0.000155718
0.000115786
0.000149342
0.000109973
0.000154632
0.000130648
0.000163981
0.000168475
0.00017901
0.000192189
0.000197094
0.0001922
0.000206998
0.000185568
0.000198474
0.000186844
0.000168804
0.000175162
0.000163029
0.000136887
0.000161615
0.000116676
0.000156582
0.000111367
0.00015795
0.000132039
0.000164954
0.000172599
0.000177993
0.000195089
0.000197793
0.000189854
0.000204997
0.000179872
0.000197007
0.000182652
0.000163677
0.00017441
0.000161426
0.000130898
0.000163708
0.000111789
0.000161088
0.000110999
0.000163516
0.000133518
0.000165913
0.000175482
0.000176103
0.000195879
0.000194387
0.000185165
0.000207372
0.000176526
0.000199565
0.000182349
0.000160625
0.000176809
0.000162047
0.000128112
0.00016927
0.000110586
0.00016794
0.000111319
0.00016901
0.000134398
0.000168071
0.000180394
0.00017536
0.000200207
0.000195387
0.000183257
0.000206354
0.000167837
0.00019889
0.000179127
0.000152426
0.000177808
0.000160318
0.000120114
0.000172289
0.00010278
0.000172172
0.000105885
0.000171806
0.000130394
0.000165106
0.000181889
0.000168987
0.000200027
0.000191361
0.00017515
0.000208872
0.000164651
0.000203333
0.000178188
0.00014952
0.000181808
0.000160489
0.000115308
0.000179142
9.87729e-05
0.000180059
0.000103485
0.000178506
0.000129401
0.000167674
0.000186416
0.000167969
0.000205721
0.000191467
0.00017373
0.000208095
0.000152635
0.000204206
0.000174109
0.000137282
0.000184852
0.000158228
0.000103172
0.000182817
8.67556e-05
0.000184047
9.2918e-05
0.000179871
0.000119736
0.000161085
0.000186476
0.000157321
0.000205339
0.000185194
0.000161717
0.000211824
0.000148402
0.00021001
0.000172955
0.000132503
0.000190479
0.00015744
9.70765e-05
0.000190134
8.09227e-05
0.000192008
8.83584e-05
0.000186705
0.000116126
0.000163623
0.000191775
0.000154643
0.000211855
0.000184934
0.000158934
0.00021152
0.000129788
0.000214536
0.000168549
0.000113172
0.000198079
0.00015497
7.60012e-05
0.000197415
6.0822e-05
0.000198746
6.94331e-05
0.000189588
9.82865e-05
0.000152777
0.000191858
0.000136908
0.00021332
0.000176845
0.000141141
0.000214618
0.000126674
0.000220164
0.00016505
0.000109241
0.000204072
0.000151705
7.13651e-05
0.000202915
5.5866e-05
0.000204344
6.52114e-05
0.000194335
9.43916e-05
0.000155557
0.000195182
0.000134411
0.000219093
0.000174087
0.000139
0.000217895
9.73083e-05
0.000233734
0.000158471
7.52228e-05
0.000222887
0.000147747
3.47916e-05
0.00021818
2.24513e-05
0.000217855
3.31471e-05
0.000202649
6.30356e-05
0.000139814
0.000199651
0.000105895
0.000227379
0.000162755
0.000110313
-0.0174085
-0.016715
-0.0161802
-0.0158311
-0.0157026
-0.0158172
-0.0161657
-0.0167133
-0.0174381
-0.0182809
-0.0191844
-0.0200463
-0.020753
-0.0211801
-0.0212769
-0.02107
-0.0205869
-0.0198881
-0.019065
-0.0182118
-9.41255e-05
1.49933e-05
-4.53978e-06
-9.25126e-05
-0.000202818
-0.000346404
-0.000603728
-0.000946546
-0.00140634
-0.00193983
-0.00254377
-0.00312979
-0.00357153
-0.00375256
-0.00356632
-0.00302251
-0.00230141
-0.00154083
-0.000871429
-0.000379181
-0.00430227
-0.00388573
-0.00363219
-0.00351643
-0.00361836
-0.00383787
-0.00419195
-0.00463242
-0.00523303
-0.00591502
-0.0067279
-0.00750919
-0.00808525
-0.00828173
-0.00816292
-0.00770798
-0.00701201
-0.00624028
-0.00550156
-0.00484442
0.00296527
0.00312524
0.00317528
0.00318385
0.00308884
0.00293065
0.00261429
0.00224191
0.0016577
0.00100204
0.000104202
-0.000737797
-0.00126458
-0.00124682
-0.000658358
0.000130834
0.000987414
0.00172898
0.00229994
0.00270722
-0.000391282
-0.000191018
-0.000120498
-0.000125205
-0.000251776
-0.000382409
-0.000676946
-0.00100806
-0.00161697
-0.00233719
-0.00345645
-0.00449732
-0.00505064
-0.00509081
-0.00455519
-0.00368545
-0.00272678
-0.00187346
-0.00119891
-0.000708596
0.00275814
0.00293832
0.00300254
0.00303677
0.00291477
0.00277604
0.00244467
0.00208026
0.00140799
0.000619979
-0.000667805
-0.00169565
-0.0020823
-0.00164896
-0.000835101
9.49266e-05
0.000944383
0.00161682
0.00213064
0.00250666
0.000684827
0.000793218
0.000801588
0.000797965
0.000701868
0.000624813
0.000367543
8.24016e-05
-0.000549665
-0.00136442
-0.00284066
-0.00392939
-0.00424305
-0.00371321
-0.0027212
-0.00172409
-0.000859971
-0.000232671
0.000215884
0.000512763
0.00203865
0.00217743
0.00221843
0.00223483
0.00212385
0.00200581
0.00171008
0.00137323
0.000716978
-0.00015085
-0.00167869
-0.00265984
-0.0026022
-0.00187847
-0.00086429
-1.66975e-05
0.000693435
0.00119401
0.00157759
0.00185219
0.000876817
0.000946647
0.000940139
0.000946836
0.000869209
0.000810071
0.000594702
0.000343632
-0.000219932
-0.00105289
-0.00261821
-0.0035845
-0.00334236
-0.00250735
-0.00147395
-0.000707788
-9.17699e-05
0.000300728
0.00058943
0.000771491
0.00141241
0.00150381
0.00152218
0.00152699
0.00143559
0.00134181
0.00110932
0.000832754
0.000298907
-0.000489826
-0.00194974
-0.00264744
-0.0021943
-0.00138895
-0.000516013
6.57923e-05
0.000553241
0.000861022
0.00111563
0.00129032
0.000798829
0.000848621
0.000842452
0.000851429
0.000789169
0.000745725
0.00058303
0.000406924
-1.54323e-05
-0.000636479
-0.00200056
-0.00266938
-0.00212094
-0.00140822
-0.000650003
-0.000199412
0.000195066
0.000419988
0.000610945
0.000726053
0.000971346
0.00102807
0.0010327
0.00103379
0.000962071
0.000894157
0.00072686
0.000537424
0.00017238
-0.000351242
-0.00148724
-0.00177866
-0.00126728
-0.000685192
-0.000124076
0.000170681
0.000465464
0.000627931
0.000790416
0.000894251
0.000656293
0.000693986
0.000690882
0.000700005
0.000652199
0.000628366
0.000519775
0.000445167
0.000194006
-3.12886e-05
-0.0010175
-0.00144008
-0.00101101
-0.000646693
-0.000193955
1.33176e-05
0.000263959
0.000389392
0.000524494
0.000601242
0.000683929
0.000719588
0.000717867
0.000718182
0.000662253
0.000616352
0.000499716
0.000391816
0.00018512
-2.64081e-05
-0.000667107
-0.000771162
-0.000448973
-0.000204249
9.26593e-05
0.000197748
0.000378613
0.000460391
0.000570317
0.000633153
0.000521246
0.000550232
0.000548873
0.0005572
0.000521268
0.000511934
0.000445199
0.000443906
0.000343083
0.000457209
-4.02666e-05
-0.00060243
-0.000375935
-0.000312322
-4.34864e-05
5.1201e-05
0.000236513
0.000317038
0.000422462
0.000477607
0.000502645
0.000526029
0.00052192
0.000521752
0.000477495
0.000445897
0.00036016
0.000299318
0.000172993
0.000193622
0.000159084
-0.000292675
-0.000165887
-0.000124392
8.25976e-05
0.000138769
0.000285899
0.00034006
0.000424704
0.000466566
0.000416035
0.000437418
0.000436105
0.000442288
0.000414198
0.000408887
0.000362946
0.000363995
0.000286447
0.000315051
8.04299e-05
-0.000262991
-0.00014878
-0.00017386
1.52921e-05
6.02114e-05
0.000203183
0.000258375
0.000341752
0.000381855
0.000390337
0.000405563
0.000400688
0.00039989
0.000364683
0.000341536
0.000277832
0.000233218
0.000151355
0.000116415
8.1126e-05
-0.000104119
3.16493e-06
-1.54786e-05
0.000123912
0.000138391
0.000243543
0.000273972
0.00033688
0.000364376
0.000342124
0.000356529
0.000354385
0.000357788
0.000334525
0.000329193
0.000295736
0.000289295
0.000240542
0.000219598
0.00010381
-0.000103326
-3.13795e-05
-7.44789e-05
5.99189e-05
8.11737e-05
0.000188474
0.000224862
0.000288458
0.000316314
0.000321145
0.000330363
0.000325396
0.000323768
0.00029559
0.00027811
0.000230976
0.00019539
0.000140305
9.68157e-05
7.84169e-05
-1.10864e-05
7.58033e-05
4.56158e-05
0.000146077
0.000144239
0.000220751
0.000237935
0.000284544
0.000302328
0.000293512
0.000301718
0.000298747
0.000299444
0.000279012
0.000272996
0.000246774
0.000235019
0.000204714
0.000172061
0.000116599
-1.46062e-05
3.682e-05
-3.01575e-06
9.50327e-05
0.000104903
0.000184734
0.000208743
0.000256164
0.00027436
0.00027891
0.000283216
0.000278659
0.000276054
0.000253064
0.000239925
0.000205152
0.000176385
0.000141208
0.000100567
9.57654e-05
4.23049e-05
0.000111623
8.26208e-05
0.000157661
0.000151721
0.000208555
0.000219348
0.000253995
0.000265067
0.000263252
0.000265909
0.000262804
0.000261045
0.000242532
0.000236194
0.000214557
0.000199735
0.000181896
0.000148212
0.000126252
4.04364e-05
8.32883e-05
5.1161e-05
0.000124263
0.000128688
0.000187216
0.000203495
0.000238072
0.000248903
0.000254037
0.000253608
0.000250097
0.000246215
0.000226542
0.000216838
0.000191732
0.000167272
0.000147707
0.00011149
0.000116544
7.66006e-05
0.000132404
0.000106864
0.000165365
0.000160565
0.000203016
0.000211365
0.000236969
0.00024287
0.000245522
0.000242937
0.000240827
0.000236933
0.000219524
0.000213844
0.000195631
0.000178638
0.000170582
0.000138
0.000136241
7.75507e-05
0.000117362
9.15825e-05
0.000147679
0.000150237
0.000192119
0.000204292
0.000228881
0.000233906
0.000240093
0.000234841
0.000233294
0.000227661
0.000209973
0.000203739
0.000184534
0.000162592
0.000156167
0.00012158
0.000135819
9.9681e-05
0.000147437
0.000125122
0.00017202
0.00017035
0.000201564
0.000209807
0.000228031
0.000229783
0.000235679
0.000228268
0.000228544
0.000222035
0.000205572
0.00020153
0.000186335
0.000166794
0.000167891
0.000134902
0.000147913
0.000103134
0.000142859
0.000120074
0.000165369
0.000168115
0.000197258
0.000208226
0.000224481
0.00022531
0.000233146
0.000221943
0.000224233
0.000216469
0.000199177
0.000196491
0.000181155
0.000159103
0.000164309
0.000128558
0.000151954
0.000115658
0.00016053
0.000139055
0.000178748
0.000180555
0.0002016
0.000211891
0.000223865
0.00022171
0.000231775
0.000217996
0.000222664
0.000213093
0.000196098
0.000196453
0.000182156
0.000159723
0.000171968
0.000133899
0.000161034
0.000118856
0.000162073
0.000139546
0.000177568
0.000182889
0.000200899
0.000213535
0.000222541
0.000219255
0.00022972
0.000212321
0.000220397
0.000209146
0.000191541
0.000193633
0.000180261
0.00015449
0.000172511
0.000131021
0.00016601
0.000125206
0.00017271
0.000148219
0.000184338
0.000189728
0.00020175
0.00021587
0.000221217
0.000216038
0.000231194
0.000208503
0.000221099
0.000208447
0.000188478
0.000194896
0.000181146
0.00015375
0.000178936
0.000132293
0.000173972
0.000127371
0.000176926
0.000150546
0.000186067
0.000194674
0.000201216
0.000219278
0.000222213
0.000213842
0.000229418
0.000202855
0.000219889
0.000204421
0.00018349
0.000194501
0.000179924
0.000148064
0.000181714
0.000127929
0.00017931
0.00012765
0.000183122
0.000152544
0.000187408
0.000198056
0.00019959
0.000220444
0.000219017
0.000209269
0.000231995
0.000199499
0.000222689
0.00020427
0.000180511
0.00019722
0.000180858
0.000145407
0.000187802
0.000126978
0.000186811
0.000128472
0.000189295
0.000153998
0.000190031
0.000203542
0.000199127
0.000225158
0.000220223
0.000207432
0.000231167
0.00019081
0.000222267
0.000201185
0.000172386
0.000198549
0.000179418
0.000137548
0.000191356
0.000119436
0.000191656
0.0001234
0.000192558
0.000150325
0.000187331
0.000205414
0.00019292
0.000225272
0.000216325
0.000199379
0.000233847
0.000187559
0.000226948
0.000200374
0.000169477
0.000202859
0.00017985
0.000132762
0.000198679
0.000115533
0.000200086
0.00012126
0.000199745
0.000149626
0.000190133
0.000210331
0.000192029
0.000231253
0.00021656
0.000197955
0.000233197
0.000175517
0.000228047
0.000196406
0.000157284
0.000206201
0.000177811
0.000120687
0.000202764
0.000103627
0.000204503
0.000110877
0.000201414
0.000140146
0.000183675
0.000210608
0.000181464
0.000231044
0.00021032
0.000185966
0.000237031
0.000171179
0.000234048
0.000195334
0.00015243
0.000212083
0.000177206
0.000114513
0.000210443
9.7777e-05
0.000212871
0.000106396
0.000208566
0.000136645
0.000186276
0.00021616
0.000178815
0.000237756
0.000210133
0.000183132
0.000236773
0.000152606
0.000238741
0.000191056
0.000133226
0.000219922
0.000174949
9.35697e-05
0.000218005
7.77976e-05
0.000219853
8.7641e-05
0.000211568
0.00011897
0.000175442
0.000216271
0.00016118
0.000239229
0.000202021
0.000165445
0.000239906
0.000149409
0.000244479
0.00018759
0.000129205
0.000226059
0.000171775
8.8835e-05
0.000223707
7.27832e-05
0.00022568
8.34139e-05
0.000216472
0.000115093
0.000178179
0.000219737
0.000158677
0.000245101
0.000199302
0.000163254
0.000243089
0.000120313
0.000258073
0.000181222
9.55786e-05
0.000244953
0.000168092
5.26805e-05
0.000239065
3.972e-05
0.000239206
5.1732e-05
0.000224674
8.41123e-05
0.00016233
0.000224012
0.00013048
0.000253129
0.000187991
0.000134975
-0.0176003
-0.0169086
-0.0163837
-0.0160511
-0.0159466
-0.0160874
-0.0164627
-0.0170353
-0.017783
-0.0186446
-0.0195621
-0.0204299
-0.0211313
-0.0215386
-0.0216081
-0.0213685
-0.0208512
-0.0201224
-0.0192769
-0.0184096
-0.000236279
-0.000137058
-0.000159139
-0.000241402
-0.000347212
-0.000495324
-0.000761633
-0.00111643
-0.00159306
-0.00214213
-0.00276133
-0.00335608
-0.00379487
-0.00395812
-0.00374039
-0.00316651
-0.0024222
-0.00165118
-0.000985031
-0.000505813
-0.00443697
-0.00402272
-0.00377644
-0.00367269
-0.00378785
-0.00401634
-0.00438507
-0.00483853
-0.00545893
-0.00615831
-0.00699289
-0.00778827
-0.00836156
-0.00854115
-0.00838908
-0.00790196
-0.0071799
-0.00639353
-0.00564597
-0.00498213
0.00286168
0.00302454
0.00307478
0.00308464
0.00297757
0.00281201
0.00247776
0.00209122
0.00148198
0.000806993
-0.000120366
-0.000975689
-0.0014895
-0.00143399
-0.000815778
5.05723e-06
0.000874924
0.00162092
0.0021931
0.00260191
-0.000457188
-0.000258843
-0.00019418
-0.000204638
-0.000338609
-0.000474946
-0.000787993
-0.001134
-0.00177398
-0.00251958
-0.00368276
-0.00473922
-0.00527679
-0.00527455
-0.00468716
-0.0037765
-0.0027953
-0.00193476
-0.00126015
-0.000771423
0.00270311
0.00288527
0.0029458
0.00297601
0.00284205
0.00269456
0.00234205
0.00196128
0.00125605
0.000440001
-0.000894677
-0.00193063
-0.00228413
-0.00180451
-0.000946684
5.37487e-06
0.000869465
0.00154938
0.00206885
0.00244942
0.000666603
0.000777087
0.000781301
0.000777953
0.000671336
0.000586763
0.000307416
4.12157e-06
-0.00066437
-0.00151339
-0.00304415
-0.00413168
-0.00440601
-0.00381665
-0.00277573
-0.00176048
-0.000887074
-0.000257266
0.00019406
0.00049362
0.00201688
0.00215767
0.00219437
0.00220712
0.0020847
0.00195858
0.00164192
0.00128719
0.000596714
-0.000306708
-0.00188865
-0.00286318
-0.00274128
-0.00197561
-0.000928888
-6.97265e-05
0.000651261
0.00115793
0.00154829
0.00182806
0.000885246
0.00095834
0.000948975
0.000955699
0.000867613
0.000800599
0.000564278
0.00029457
-0.000303316
-0.00117406
-0.00279503
-0.00375006
-0.00343399
-0.00255829
-0.00149973
-0.000728293
-0.000103732
0.000293529
0.00058917
0.00077667
0.00141139
0.0015048
0.00151945
0.00152212
0.00142077
0.00131982
0.00106953
0.000775936
0.000212937
-0.000610769
-0.00212301
-0.00279548
-0.00228184
-0.00144598
-0.000553714
3.2606e-05
0.000530841
0.00084451
0.00110689
0.00128673
0.000818622
0.000871434
0.000863247
0.000871666
0.000800351
0.000750052
0.000570486
0.000379206
-7.08367e-05
-0.000720287
-0.0021377
-0.00277775
-0.00217405
-0.001442
-0.000667907
-0.000214841
0.000190981
0.000421894
0.000621358
0.000742183
0.000982293
0.00104082
0.00104258
0.00104235
0.000962639
0.000888703
0.000707779
0.000504351
0.000118177
-0.000431495
-0.00161169
-0.00186828
-0.00131341
-0.000721276
-0.000146699
0.000149669
0.000456171
0.000624
0.000794305
0.000902684
0.000679356
0.000719377
0.000714565
0.000722869
0.000667961
0.000638955
0.000518415
0.000433956
0.000164182
-7.36603e-05
-0.00110659
-0.00150881
-0.00104189
-0.000674756
-0.000206658
2.40566e-06
0.000265666
0.000396563
0.000539739
0.000621229
0.000701024
0.000738163
0.000734227
0.000733506
0.000671365
0.000620783
0.000494193
0.000376207
0.000156391
-7.01763e-05
-0.00073848
-0.000819888
-0.000472718
-0.00022861
8.06552e-05
0.000186448
0.000378804
0.000464818
0.000581659
0.000648105
0.000544359
0.000574932
0.000571916
0.000579353
0.000538053
0.000525062
0.000450411
0.000443625
0.0003331
0.000445964
-8.35346e-05
-0.000655642
-0.000394575
-0.000336424
-4.9351e-05
4.64967e-05
0.000243457
0.00032795
0.000439961
0.000498524
0.000522387
0.000546861
0.000540925
0.000539835
0.000490727
0.000455676
0.000362507
0.000294972
0.000159074
0.000175782
0.000130855
-0.000333559
-0.00018079
-0.000141206
8.00041e-05
0.000136758
0.000293464
0.000350253
0.000440284
0.000484723
0.000438355
0.000460693
0.000457761
0.000463053
0.000430789
0.000422783
0.000371348
0.000368367
0.000284425
0.000309678
6.07751e-05
-0.000294398
-0.000160248
-0.00018927
1.46304e-05
6.10072e-05
0.000213815
0.000271865
0.000360331
0.000402764
0.000410939
0.000426865
0.00042039
0.000418755
0.000379699
0.000354046
0.000284847
0.000235595
0.000147349
0.000107859
6.7418e-05
-0.000123085
-1.32845e-06
-2.35199e-05
0.000127303
0.000141801
0.000254868
0.000287322
0.000354512
0.000383887
0.000363762
0.000378635
0.00037493
0.000377465
0.00035079
0.000343417
0.000305873
0.000296332
0.000243563
0.000218625
9.69297e-05
-0.000119329
-3.53523e-05
-8.13134e-05
6.4537e-05
8.68278e-05
0.000201862
0.000240314
0.000307731
0.000337139
0.000342003
0.000351559
0.000345121
0.000342711
0.000311394
0.000292105
0.000240902
0.000202086
0.000142833
9.5366e-05
7.50626e-05
-1.79233e-05
7.81563e-05
4.4746e-05
0.00015386
0.000151968
0.000234742
0.000253521
0.000303423
0.000322531
0.000314864
0.000323165
0.000318705
0.000318562
0.00029522
0.000287645
0.000258145
0.000244051
0.00021104
0.000175131
0.00011724
-2.01272e-05
3.93007e-05
-2.38443e-06
0.000104246
0.000114849
0.000200513
0.000225986
0.000276173
0.000295343
0.000300009
0.000304328
0.000298385
0.00029502
0.000269373
0.000254931
0.000217062
0.000186108
0.00014825
0.000104572
9.93632e-05
4.30777e-05
0.000118661
8.72922e-05
0.00016887
0.000163065
0.000224766
0.000236841
0.000273932
0.000285871
0.000284716
0.000287175
0.000282668
0.000280085
0.000259026
0.000251503
0.000227122
0.000210564
0.000190758
0.000154701
0.000131948
4.24408e-05
9.10141e-05
5.77416e-05
0.000137229
0.000142232
0.000205072
0.000222411
0.000258928
0.000270308
0.000275554
0.000274856
0.000270041
0.000265389
0.00024338
0.000232735
0.000205156
0.000179241
0.000157936
0.000119611
0.000124859
8.2707e-05
0.000142981
0.000115923
0.000179478
0.000175054
0.000221235
0.000230629
0.000257974
0.000264361
0.0002674
0.000264373
0.000260974
0.000256256
0.000236572
0.000230016
0.000209471
0.000191197
0.000181712
0.000147456
0.000145764
8.50145e-05
0.000129131
0.000102716
0.000163591
0.000166711
0.000211766
0.000224758
0.000250666
0.000255919
0.000262203
0.000256429
0.000253689
0.000247256
0.000227446
0.000220541
0.000199256
0.000176304
0.000168758
0.000132757
0.00014749
0.000109771
0.00016094
0.0001378
0.000188666
0.000187576
0.000221603
0.000230716
0.000250113
0.000252037
0.000258159
0.000250081
0.00024922
0.000241868
0.000223325
0.000218678
0.000201478
0.000180959
0.000181119
0.00014692
0.000160502
0.000114566
0.000157694
0.000134624
0.000183572
0.000186958
0.000218434
0.000230109
0.000247212
0.000248017
0.000255948
0.000243984
0.000245246
0.000236631
0.000217352
0.000214231
0.000197072
0.000174216
0.000178794
0.00014201
0.000166178
0.000128804
0.000176508
0.000154675
0.000197546
0.000200091
0.000223215
0.000234275
0.000246967
0.000244724
0.000254935
0.000240266
0.000244005
0.000233541
0.000214584
0.000214599
0.000198538
0.000175266
0.000187072
0.000148013
0.000176102
0.00013317
0.000179248
0.000156632
0.000197553
0.000203644
0.000223354
0.000236678
0.000246163
0.000242644
0.000253226
0.000234831
0.000242105
0.000229923
0.000210403
0.000212311
0.000197282
0.000170728
0.000188606
0.00014617
0.00018228
0.000140667
0.000190734
0.00016612
0.000204862
0.000211129
0.00022464
0.000239512
0.000245212
0.000239732
0.000255026
0.000231207
0.000243146
0.000229516
0.00020763
0.000214001
0.000198637
0.000170374
0.000195657
0.000147991
0.000191028
0.00014374
0.000195902
0.000169486
0.000207417
0.00021695
0.000224691
0.000243498
0.000246608
0.00023782
0.000253567
0.000225757
0.000242292
0.000225789
0.000202943
0.00021407
0.000197923
0.000165158
0.000199196
0.00014431
0.000197241
0.000144787
0.00020276
0.000172104
0.000209215
0.000220888
0.000223438
0.000245102
0.000243727
0.000233497
0.000256419
0.000222535
0.000245415
0.000225908
0.000200191
0.000217197
0.000199287
0.000162797
0.00020587
0.000143771
0.00020543
0.000146243
0.000209643
0.000174236
0.000212366
0.000226984
0.000223356
0.000250246
0.000245228
0.000231855
0.000255842
0.000213985
0.000245307
0.000223066
0.000192289
0.000218922
0.000198237
0.000155237
0.000209999
0.000136645
0.000210906
0.000141666
0.000213394
0.000171002
0.000210001
0.000229271
0.000217423
0.000250691
0.000241547
0.000223982
0.000258736
0.000210802
0.000250272
0.000222483
0.000189522
0.000223591
0.000199028
0.000150631
0.000217821
0.000133003
0.000219889
0.000139924
0.000221083
0.000170708
0.000213099
0.0002346
0.000216763
0.000256981
0.000241991
0.000222674
0.000258249
0.000198864
0.000251623
0.000218711
0.000177513
0.000227255
0.000197291
0.000138767
0.000222325
0.000121356
0.000224729
0.000129857
0.00022306
0.000161531
0.000206836
0.000235113
0.000206389
0.000256958
0.000235864
0.000210828
0.00026222
0.00019454
0.000257839
0.000217804
0.000172714
0.000233406
0.000196947
0.00013266
0.000230371
0.000115632
0.000233495
0.000125582
0.00023053
0.000158251
0.000209553
0.000240931
0.000203868
0.00026387
0.000235821
0.000208053
0.000262026
0.000176116
0.000262698
0.000213723
0.000153755
0.000241477
0.000194963
0.000111976
0.000238198
9.58988e-05
0.000240695
0.000107114
0.000233643
0.000140848
0.000198781
0.00024107
0.000186429
0.000265342
0.000227751
0.000190575
0.000265208
0.000172914
0.000268544
0.000210343
0.000149728
0.00024775
0.000191932
0.000107236
0.000244093
9.09188e-05
0.000246736
0.000102969
0.000238698
0.000137068
0.000201509
0.00024468
0.000183991
0.000271309
0.000225125
0.000188403
0.000268308
0.000144136
0.000282156
0.000204236
0.00011655
0.000266709
0.000188567
7.15578e-05
0.000259525
5.82623e-05
0.00026025
7.17238e-05
0.00024677
0.00010652
0.000185575
0.000248752
0.00015616
0.000279064
0.000213883
0.000160576
-0.0177556
-0.0170674
-0.016554
-0.0162394
-0.0161594
-0.0163263
-0.0167276
-0.0173236
-0.0180926
-0.0189716
-0.0199019
-0.0207744
-0.0214692
-0.0218554
-0.0218969
-0.0216244
-0.0210735
-0.0203158
-0.0194493
-0.0185694
-0.000351918
-0.000261754
-0.000285085
-0.000360679
-0.000462319
-0.000615113
-0.000890799
-0.00125733
-0.00175025
-0.00231368
-0.00294692
-0.003549
-0.00398334
-0.00412692
-0.00387625
-0.00327301
-0.00250723
-0.0017285
-0.0010688
-0.000605131
-0.00454826
-0.00413844
-0.00390098
-0.00381053
-0.0039384
-0.00417499
-0.00455756
-0.00502237
-0.00566132
-0.00637635
-0.00723167
-0.0080402
-0.00860931
-0.00877177
-0.00858445
-0.00806496
-0.00731851
-0.00651913
-0.00576378
-0.00509451
0.00276925
0.00293393
0.00298388
0.00299458
0.0028746
0.0027027
0.00235153
0.00195293
0.00132009
0.000628195
-0.000327589
-0.00119393
-0.00169153
-0.00159611
-0.000950022
-9.88383e-05
0.000781903
0.00152979
0.00210098
0.00250937
-0.000518259
-0.000323117
-0.00026569
-0.000280761
-0.000422319
-0.000563404
-0.000894066
-0.00125247
-0.00192188
-0.00269003
-0.00389635
-0.00496535
-0.00548559
-0.00543463
-0.00479546
-0.00384705
-0.00284736
-0.00198356
-0.00131204
-0.000827367
0.00264497
0.00282775
0.00288352
0.00290932
0.00276391
0.00260934
0.0022369
0.00184269
0.00110661
0.000265718
-0.00111404
-0.00215322
-0.00246758
-0.00194591
-0.00104383
-7.28531e-05
0.000802492
0.00148646
0.00200854
0.00239115
0.000643006
0.000754423
0.00075346
0.000750545
0.000633415
0.000542883
0.000242533
-7.59362e-05
-0.00077866
-0.00165879
-0.00324172
-0.00432542
-0.00455344
-0.00390331
-0.00281671
-0.00178778
-0.000909065
-0.000280246
0.000171029
0.000470969
0.00198579
0.00212744
0.00215886
0.00216826
0.00203439
0.00190188
0.00156545
0.00119586
0.000473554
-0.00046217
-0.00209611
-0.00305865
-0.00287021
-0.00206201
-0.000985484
-0.00011839
0.000610049
0.00111949
0.00151386
0.00179649
0.000884432
0.000959765
0.000946718
0.000953578
0.000854892
0.000781432
0.000525178
0.000239709
-0.00039011
-0.00129514
-0.00296959
-0.0039072
-0.00351355
-0.0025991
-0.00151894
-0.000746057
-0.000115995
0.000283068
0.000583272
0.00077421
0.00139993
0.0014944
0.00150455
0.00150542
0.00139399
0.0012872
0.00102016
0.000712104
0.000122488
-0.000733019
-0.002295
-0.00293558
-0.00235979
-0.00149586
-0.000587092
1.62364e-07
0.000506472
0.000823211
0.00109114
0.00127424
0.000828804
0.000883794
0.000872934
0.000880859
0.000800305
0.000744228
0.000548703
0.000344586
-0.000130821
-0.000805283
-0.00227395
-0.00287901
-0.00221915
-0.00147054
-0.000682848
-0.00023049
0.000184475
0.00041895
0.000625066
0.000750006
0.000983962
0.00104357
0.00104179
0.00104041
0.000952609
0.00087354
0.000679836
0.000464209
5.92803e-05
-0.000514062
-0.00173609
-0.00195205
-0.00135239
-0.000753671
-0.000167424
0.000127632
0.000443976
0.000614986
0.000791488
0.000902996
0.00069403
0.000735783
0.000728647
0.000736055
0.000673941
0.000640473
0.000508746
0.000416057
0.000129772
-0.000117901
-0.00119585
-0.0015739
-0.00106784
-0.000700755
-0.000218428
-1.00357e-05
0.000264384
0.000398904
0.000548803
0.000633827
0.000710623
0.000748739
0.000742035
0.000740245
0.000671797
0.000617075
0.000481128
0.000354161
0.000123222
-0.000116916
-0.000810186
-0.000865058
-0.000492554
-0.000251681
6.91335e-05
0.000173443
0.000376089
0.000464759
0.000587379
0.000656412
0.000560762
0.000592445
0.00058726
0.000593714
0.000546926
0.000530698
0.000448687
0.000437415
0.000318855
0.000432351
-0.000127406
-0.000708352
-0.000410609
-0.000360295
-5.52803e-05
3.9934e-05
0.000247618
0.000334761
0.000452397
0.000513491
0.00053635
0.000561505
0.000553305
0.000551213
0.000497118
0.000458929
0.000358696
0.000285121
0.000140948
0.000154845
0.000101348
-0.000374116
-0.00019384
-0.00015783
7.7314e-05
0.000133033
0.000298522
0.000356841
0.000451461
0.000497744
0.000455571
0.000478475
0.000473509
0.000477803
0.000441224
0.000430757
0.000374191
0.000367735
0.000278641
0.000301383
3.97437e-05
-0.000326709
-0.000171009
-0.000205189
1.35122e-05
6.0172e-05
0.000222209
0.000282198
0.000375043
0.000419157
0.000427209
0.000443502
0.000435061
0.000432487
0.000389439
0.000361466
0.000286987
0.000233508
0.000139737
9.63944e-05
5.20892e-05
-0.000142564
-5.26567e-06
-3.19607e-05
0.000130247
0.000143758
0.000264236
0.000297974
0.000368856
0.000399575
0.000381627
0.000396657
0.000391045
0.000392598
0.000362366
0.000353092
0.000311661
0.000299373
0.00024338
0.000214974
8.84799e-05
-0.000136529
-3.9404e-05
-8.87829e-05
6.86371e-05
9.12411e-05
0.000213593
0.000253481
0.000324182
0.000354663
0.00035968
0.000369305
0.000361079
0.000357775
0.000323187
0.000302211
0.000247063
0.000205317
0.000142438
9.14211e-05
7.0205e-05
-2.55735e-05
8.045e-05
4.33445e-05
0.00016113
0.000158605
0.000247304
0.000267188
0.000319932
0.00033997
0.000333483
0.000341638
0.000335386
0.000334287
0.000307904
0.000298862
0.000266175
0.000250022
0.000214776
0.00017603
0.000116433
-2.66984e-05
4.14824e-05
-2.23841e-06
0.000113039
0.000123949
0.000215139
0.000241652
0.000294187
0.00031398
0.000318815
0.000322936
0.000315326
0.000311093
0.00028267
0.000267013
0.000226113
0.000193244
0.000153042
0.000106693
0.000101726
4.31065e-05
0.000125414
9.14996e-05
0.000179654
0.000173679
0.000240008
0.000253041
0.000292223
0.000304734
0.000304237
0.000306313
0.000300137
0.000296629
0.000272906
0.000264266
0.000237171
0.000219133
0.000197611
0.000159574
0.000136474
4.37345e-05
9.84561e-05
6.40175e-05
0.000149919
0.000155266
0.000222186
0.000240296
0.000278428
0.000290098
0.000295456
0.000294327
0.000287955
0.000282443
0.000257992
0.000246472
0.000216439
0.000189343
0.000166473
0.000126427
0.000132222
8.82766e-05
0.000153266
0.000124716
0.000193329
0.000189139
0.000238872
0.000249085
0.000277891
0.000284546
0.000287931
0.000284328
0.000279395
0.000273775
0.000251717
0.000244333
0.000221454
0.000202162
0.000191342
0.00015582
0.00015442
9.20802e-05
0.000140701
0.000113761
0.000179382
0.000182948
0.000231003
0.000244611
0.000271583
0.000276878
0.000283211
0.000276808
0.000272633
0.000265333
0.000243312
0.000235778
0.000212405
0.000188726
0.000180096
0.000143113
0.000158461
0.00011959
0.000174248
0.000150441
0.000205236
0.000204667
0.000241378
0.000251186
0.000271534
0.000273475
0.000279739
0.000270921
0.00026868
0.000260433
0.000239731
0.000234505
0.000215281
0.000194071
0.00019326
0.000158303
0.00017249
0.000125885
0.000172437
0.000149283
0.000201808
0.000205782
0.000239477
0.000251692
0.00026945
0.000270107
0.000278035
0.000265268
0.000265249
0.000255743
0.000234416
0.000230866
0.000211867
0.00018851
0.000192369
0.00015504
0.000179915
0.000141949
0.000192419
0.000170479
0.000216445
0.000219702
0.000244825
0.000256494
0.000269738
0.00026731
0.000277533
0.00026197
0.000264511
0.000253133
0.00023217
0.00023183
0.000213988
0.000190196
0.000201406
0.00016188
0.000190778
0.000147632
0.000196435
0.000174018
0.000217722
0.000224554
0.000245913
0.000259757
0.000269586
0.000265763
0.000276305
0.00025695
0.000263132
0.000250019
0.000228556
0.000230235
0.000213538
0.000186543
0.000204054
0.000161245
0.000198233
0.000156385
0.000208809
0.000184411
0.000225644
0.000232764
0.000247751
0.00026319
0.000269136
0.000263308
0.000278543
0.000253677
0.000264641
0.000250058
0.000226249
0.000232493
0.000215516
0.000186754
0.000211839
0.000163777
0.000207841
0.000160498
0.000214983
0.000188914
0.000229093
0.000239516
0.000248481
0.000267825
0.000271038
0.000261815
0.0002775
0.000248576
0.000264253
0.000246765
0.000222024
0.000233142
0.000215442
0.000182172
0.00021622
0.000160928
0.000214979
0.000162428
0.00022254
0.000192249
0.000231422
0.00024407
0.000247706
0.000269938
0.000268574
0.000257874
0.000280709
0.000245626
0.000267789
0.000247278
0.000219653
0.000236777
0.000217359
0.000180266
0.000223556
0.000160951
0.000223903
0.000164641
0.000230169
0.000195153
0.000235162
0.000250815
0.000248097
0.000275561
0.000270459
0.000256546
0.000280452
0.000237345
0.000268067
0.000244786
0.000212114
0.000238973
0.000216801
0.000173151
0.00022831
0.00015438
0.000230036
0.000160677
0.000234434
0.000192455
0.000233198
0.000253556
0.000242536
0.00027638
0.00026708
0.000248968
0.000283615
0.000234354
0.000273373
0.000244531
0.000209623
0.000244061
0.00021805
0.000168867
0.000236674
0.000151138
0.000239597
0.000159451
0.000242645
0.000192661
0.000236647
0.000259325
0.000242196
0.000283008
0.000267811
0.000247887
0.000283334
0.000222632
0.000275014
0.000241038
0.000197919
0.000248086
0.000216692
0.000157345
0.000241616
0.000139876
0.000244862
0.000149813
0.000244942
0.000183882
0.000230634
0.000260095
0.000232104
0.00028319
0.000261866
0.000236284
0.000287478
0.000218426
0.000281472
0.000240372
0.000193288
0.000254536
0.000216686
0.000151427
0.000250048
0.000134396
0.000254032
0.000145849
0.000252738
0.000180915
0.000233516
0.000266193
0.000229795
0.000290313
0.000262034
0.000233663
0.000287369
0.000200235
0.000286512
0.000236548
0.000174669
0.000262848
0.000215031
0.000131103
0.000258138
0.000115006
0.000261437
0.000127758
0.000255956
0.000163865
0.000222844
0.000266366
0.000212623
0.000291785
0.000254059
0.000216471
0.000290621
0.000197092
0.000292473
0.000233304
0.000170705
0.000269262
0.000212189
0.000126433
0.000264228
0.000110135
0.000267687
0.000123762
0.000261165
0.000160245
0.000225593
0.000270127
0.000210304
0.000297849
0.000251571
0.000214376
0.00029365
0.000168668
0.000306109
0.0002275
0.000138019
0.000288285
0.000209181
9.12736e-05
0.000279724
7.79248e-05
0.000281169
9.29925e-05
0.000269095
0.000130168
0.000209585
0.000273988
0.00018287
0.000305325
0.000240431
0.000187031
-0.0178835
-0.0172003
-0.0167003
-0.016405
-0.0163502
-0.016543
-0.0169693
-0.0175876
-0.0183768
-0.0192721
-0.0202143
-0.0210908
-0.0217778
-0.0221415
-0.0221542
-0.0218485
-0.0212641
-0.0204784
-0.0195919
-0.0187004
-0.000448031
-0.000365485
-0.000388516
-0.000456453
-0.000554363
-0.00071235
-0.000998216
-0.00137659
-0.00188569
-0.00246267
-0.00310923
-0.00371765
-0.00414632
-0.00426835
-0.00398329
-0.00335104
-0.0025653
-0.00178136
-0.00113102
-0.000684876
-0.00464034
-0.00423671
-0.00400923
-0.00393294
-0.00407355
-0.00431743
-0.00471332
-0.00518826
-0.00584517
-0.00657467
-0.00745043
-0.00827159
-0.00883507
-0.0089797
-0.00875524
-0.0082032
-0.00743381
-0.00662243
-0.0058598
-0.00518604
0.00268651
0.00285229
0.00290129
0.00291236
0.00277949
0.0026017
0.00223403
0.00182486
0.00116902
0.000461789
-0.000522309
-0.00139818
-0.00187728
-0.00173893
-0.00106552
-0.000185414
0.000704286
0.00145217
0.00202084
0.00242757
-0.000573675
-0.000382593
-0.000333344
-0.000352363
-0.000501985
-0.000646803
-0.000994678
-0.00136357
-0.00206166
-0.0028504
-0.00409989
-0.00517885
-0.00568109
-0.00557589
-0.00488414
-0.00390023
-0.00288525
-0.00202123
-0.00135506
-0.000876176
0.00258567
0.00276808
0.00281819
0.00283958
0.00268267
0.00252241
0.00213063
0.00172528
0.000959434
9.58927e-05
-0.00132793
-0.00236508
-0.00263552
-0.0020761
-0.00112919
-0.000141461
0.000742584
0.00142805
0.00195052
0.0023333
0.000616678
0.000728137
0.000721114
0.00071886
0.000590987
0.000495851
0.00017499
-0.000156266
-0.00089205
-0.00180107
-0.00343489
-0.00451282
-0.00468458
-0.00397379
-0.00284563
-0.0018069
-0.00092592
-0.000300696
0.000148451
0.000447039
0.00194801
0.0020896
0.00211489
0.0021213
0.00197576
0.00183839
0.00148283
0.00110086
0.000348111
-0.000617634
-0.00230257
-0.00324867
-0.002992
-0.00213941
-0.00103521
-0.000163059
0.000570291
0.00107995
0.00147617
0.00175982
0.000876895
0.000953582
0.00093612
0.000943315
0.000833715
0.000755112
0.000479488
0.000180667
-0.000479619
-0.00141636
-0.00314321
-0.00405735
-0.00358332
-0.0026316
-0.00153259
-0.000761212
-0.000127834
0.000270733
0.00057364
0.000766386
0.00138023
0.00147492
0.00147981
0.00147928
0.00135756
0.00124618
0.000963072
0.000642703
2.82021e-05
-0.000856848
-0.00246687
-0.00306876
-0.00242989
-0.00154007
-0.000616808
-3.14654e-05
0.00048093
0.000798444
0.00107011
0.00125486
0.000831208
0.000887709
0.000873501
0.000880904
0.000790916
0.0007301
0.000519253
0.000304312
-0.000194805
-0.000891687
-0.00241101
-0.00297578
-0.00225759
-0.00149508
-0.00069526
-0.000246172
0.000176332
0.000412344
0.000623565
0.000751223
0.000977855
0.00103796
0.00103193
0.00102949
0.000933512
0.000850192
0.000644351
0.00041806
-3.74427e-06
-0.000599117
-0.00186112
-0.00203093
-0.00138568
-0.000783341
-0.000186478
0.000104838
0.000429618
0.000601925
0.000783229
0.000896591
0.000701461
0.000744377
0.000734289
0.000740774
0.000671304
0.000634095
0.000491822
0.000392348
9.13204e-05
-0.000164032
-0.00128586
-0.00163622
-0.0010898
-0.000725355
-0.000229324
-2.37093e-05
0.000260768
0.000397271
0.000552693
0.000640131
0.000713619
0.000752213
0.000742204
0.000739341
0.000664448
0.000606151
0.000461364
0.000326417
8.61385e-05
-0.000166602
-0.000882553
-0.000907466
-0.00050904
-0.00027389
5.81593e-05
0.000159035
0.000371036
0.000460916
0.000588284
0.000658936
0.000571105
0.000603417
0.00059554
0.00060095
0.000548531
0.000529517
0.000440676
0.000425872
0.000300808
0.000416558
-0.000171904
-0.000761141
-0.000424364
-0.000384186
-6.11444e-05
3.17942e-05
0.000249466
0.000338023
0.000460383
0.000523149
0.000545012
0.000570432
0.000559521
0.000556365
0.000497132
0.000456158
0.000349218
0.000270256
0.000119138
0.000131067
7.05094e-05
-0.000414594
-0.000205154
-0.000174383
7.46841e-05
0.00012783
0.00030145
0.000360251
0.000458704
0.000506109
0.000468015
0.000491087
0.000483655
0.00048686
0.000445815
0.00043316
0.000371832
0.000362465
0.000269443
0.000290399
1.755e-05
-0.000360106
-0.000181096
-0.000221658
1.21111e-05
5.79181e-05
0.000228673
0.000289702
0.000386238
0.000431379
0.000439381
0.00045569
0.000444901
0.000441297
0.000394104
0.000364038
0.000284502
0.000227243
0.000128821
8.22219e-05
3.53352e-05
-0.000162583
-8.5939e-06
-4.0804e-05
0.000132896
0.00014443
0.000271887
0.000306178
0.000380173
0.000411688
0.000395878
0.000410735
0.000402852
0.000403317
0.000369372
0.000358372
0.000313265
0.000298625
0.000240244
0.000208849
7.86597e-05
-0.000154947
-4.3455e-05
-9.6851e-05
7.23747e-05
9.45643e-05
0.000223862
0.000264555
0.000338001
0.00036906
0.000374282
0.000383681
0.000373337
0.000369037
0.00033103
0.000308523
0.000249565
0.000205235
0.000139302
8.51396e-05
6.40329e-05
-3.40047e-05
8.2778e-05
4.14483e-05
0.000168015
0.000164269
0.000258593
0.000279085
0.000334218
0.000354767
0.000349441
0.000357177
0.000348823
0.000346663
0.000317088
0.000306701
0.000270923
0.000253032
0.000216056
0.00017489
0.000114333
-3.42679e-05
4.34763e-05
-2.53186e-06
0.000121543
0.000132315
0.000228744
0.000255861
0.000310319
0.00033036
0.000335378
0.000339059
0.000329492
0.000324289
0.000292953
0.000276198
0.000232335
0.000197866
0.000155683
0.000107037
0.000102993
4.24268e-05
0.000131975
9.53019e-05
0.000190125
0.000183663
0.000254395
0.000268048
0.000308958
0.000321724
0.000321851
0.000323329
0.000315209
0.000310678
0.000284156
0.000274491
0.00024471
0.000225488
0.000202521
0.00016291
0.000139939
4.43645e-05
0.000105719
7.00609e-05
0.000162445
0.000167885
0.000238658
0.000257238
0.000296647
0.000308326
0.000313774
0.000312026
0.000303833
0.000297368
0.000270356
0.000258044
0.00022558
0.000197609
0.000173369
0.000132004
0.000138729
9.33514e-05
0.000163352
0.000133307
0.000207022
0.000202909
0.000256021
0.000266813
0.000296786
0.000303469
0.000307144
0.000302807
0.000296085
0.000289478
0.000264934
0.00025679
0.000231572
0.000211553
0.000199511
0.000163139
0.000162293
9.87981e-05
0.00015217
0.000124788
0.000195153
0.000199036
0.000249918
0.000263924
0.000291695
0.000296825
0.000303148
0.000295983
0.000290125
0.00028188
0.000257551
0.000249441
0.000223976
0.000199872
0.000190216
0.000152687
0.000168807
0.000129181
0.000187453
0.000163114
0.000221829
0.00022171
0.000260973
0.000271291
0.000292356
0.000294136
0.000300455
0.000290795
0.000286927
0.000277718
0.000254774
0.000249007
0.000227743
0.00020614
0.00020435
0.000169087
0.000183953
0.000137141
0.000187181
0.000164124
0.000220173
0.000224675
0.00026047
0.00027305
0.000291258
0.000291618
0.000299445
0.000285804
0.00028425
0.000273801
0.000250355
0.000246399
0.000225542
0.000201993
0.000205071
0.000167678
0.000193239
0.000155138
0.000208356
0.000186539
0.00023554
0.000239477
0.000266514
0.000278623
0.000292241
0.000289503
0.000299611
0.000283118
0.000284201
0.000271873
0.000248849
0.000248154
0.000228514
0.00020452
0.000215014
0.000175528
0.00020514
0.000162283
0.000213729
0.000191772
0.000238167
0.000245708
0.000268655
0.000282849
0.000292873
0.000288652
0.000299006
0.000278688
0.000283504
0.000269441
0.000245996
0.000247421
0.000229045
0.000201939
0.000218906
0.000176266
0.000213951
0.000172401
0.000227033
0.000203158
0.000246778
0.000254724
0.000271157
0.000286983
0.000293052
0.000286805
0.000301801
0.000275926
0.000285617
0.000270084
0.000244334
0.000250394
0.000231804
0.000202893
0.00022754
0.000179668
0.0002245
0.000177682
0.000234269
0.00020889
0.000251186
0.000262465
0.000272659
0.000292344
0.000295567
0.000285865
0.000301277
0.00027132
0.000285813
0.000267367
0.000240734
0.000251749
0.000232506
0.000199102
0.000232856
0.000177792
0.000232618
0.000180603
0.000242568
0.000213033
0.000254117
0.000267694
0.000272461
0.000295038
0.000293622
0.000282432
0.000304929
0.000268775
0.000289861
0.0002684
0.000238891
0.000255998
0.000235101
0.000197805
0.000240935
0.00017852
0.000242331
0.000183686
0.00025098
0.000216795
0.000258504
0.000275129
0.000273409
0.000301192
0.000295978
0.000281533
0.000305064
0.000260888
0.000290603
0.000266365
0.000231851
0.000258747
0.000235141
0.000191272
0.000246373
0.00017263
0.000249157
0.000180441
0.00025579
0.000214722
0.000257003
0.000278368
0.000268308
0.000302432
0.000292983
0.000274359
0.000308558
0.000258203
0.000296316
0.000266537
0.000229764
0.000264326
0.000236947
0.000187444
0.000255331
0.000169912
0.000259325
0.000179834
0.000264548
0.000215512
0.000260854
0.000284604
0.000268367
0.000309431
0.000294073
0.000273602
0.000308529
0.000246798
0.000298292
0.000263402
0.000218474
0.000268758
0.000236045
0.000176378
0.000260741
0.000159143
0.000265029
0.000170722
0.000267179
0.000207208
0.000255141
0.000285654
0.000258633
0.000309842
0.000288372
0.000262334
0.000312885
0.0002428
0.000305032
0.000263055
0.000214112
0.000275547
0.000236451
0.000170755
0.000269587
0.000154009
0.000274617
0.000167157
0.000275315
0.000204631
0.000258228
0.000292051
0.000256603
0.000317195
0.00028881
0.000259947
0.000312887
0.000224914
0.000310272
0.000259544
0.000195912
0.000284119
0.000235177
0.000150875
0.000277947
0.000135042
0.00028222
0.000149513
0.000278639
0.000187997
0.00024769
0.000292262
0.000239756
0.000318672
0.000280975
0.000243105
0.000316229
0.000221883
0.000316364
0.00025648
0.00019207
0.00029069
0.00023257
0.000146337
0.000284242
0.00013034
0.000288681
0.000145722
0.000284006
0.000184585
0.000250484
0.000296182
0.000237598
0.00032484
0.000278665
0.000241133
0.000319199
0.000193843
0.000330034
0.000251018
0.000159912
0.000309783
0.000229951
0.000111731
0.000299798
9.86089e-05
0.000302118
0.000115459
0.000291784
0.000155011
0.000234411
0.000299827
0.000210589
0.000332032
0.000267652
0.000214295
-0.0179911
-0.017315
-0.0168304
-0.0165558
-0.0165265
-0.0167448
-0.0171952
-0.0178346
-0.0186431
-0.0195537
-0.0205071
-0.0213865
-0.0220644
-0.0224041
-0.0223868
-0.0220473
-0.0214294
-0.0206165
-0.0197112
-0.0188095
-0.000529901
-0.000453067
-0.000474055
-0.000533342
-0.000628246
-0.000792106
-0.00108913
-0.00147956
-0.00200486
-0.00259467
-0.00325391
-0.00386766
-0.00428931
-0.00438758
-0.00406655
-0.00340577
-0.00260187
-0.00181567
-0.00117784
-0.000750926
-0.00471748
-0.00432143
-0.00410465
-0.0040434
-0.00419684
-0.00444712
-0.00485602
-0.00534015
-0.0060148
-0.00675784
-0.00765389
-0.00848715
-0.00904316
-0.0091693
-0.00890624
-0.00832168
-0.00753099
-0.0067084
-0.00593876
-0.00526122
0.00261183
0.00277828
0.00282568
0.00283668
0.00269121
0.00250775
0.00212357
0.00170498
0.00102617
0.000304797
-0.00070794
-0.00159216
-0.00205071
-0.00186626
-0.00116576
-0.000258589
0.000638376
0.00138481
0.00195
0.00235439
-0.000623673
-0.000437191
-0.000396889
-0.000419125
-0.000577488
-0.000725177
-0.0010903
-0.00146818
-0.00219482
-0.00300253
-0.00429551
-0.00538189
-0.00586488
-0.00570148
-0.00495657
-0.00393932
-0.00291169
-0.00204975
-0.00139047
-0.000918526
0.0025262
0.00270752
0.00275118
0.00276828
0.00259954
0.00243483
0.00202379
0.00160918
0.000813905
-7.06917e-05
-0.00153812
-0.00256939
-0.00279357
-0.00219683
-0.00120504
-0.000202272
0.000688531
0.00137361
0.00189488
0.00227649
0.00058911
0.000699928
0.000686056
0.000684756
0.000545699
0.000447169
0.000105782
-0.000236258
-0.00100469
-0.00194083
-0.00362484
-0.00469426
-0.00479978
-0.00403065
-0.00286458
-0.00181923
-0.000938218
-0.000318474
0.00012706
0.000422998
0.00190533
0.0020461
0.00206449
0.00206834
0.0019107
0.00176988
0.00139534
0.00100312
0.000220573
-0.000773419
-0.00250895
-0.00343441
-0.00310676
-0.0022091
-0.00107915
-0.000204327
0.000532063
0.00103996
0.00143638
0.00171955
0.000864355
0.000941649
0.000919111
0.000926857
0.000805869
0.000723335
0.00042848
0.0001184
-0.000571597
-0.00153793
-0.00331668
-0.00420132
-0.00364506
-0.00265751
-0.00154173
-0.000774148
-0.000138962
0.00025732
0.000561487
0.000754714
0.00135395
0.00144823
0.00144694
0.00144538
0.00131315
0.00119837
0.000899521
0.000568688
-6.95967e-05
-0.000982453
-0.00263923
-0.00319598
-0.00249348
-0.00157994
-0.000643505
-6.23755e-05
0.00045469
0.000771104
0.00104505
0.00123008
0.000827205
0.000884634
0.000866409
0.000873277
0.00077356
0.000709014
0.000483209
0.000259211
-0.000262472
-0.00097965
-0.00254985
-0.00306818
-0.0022902
-0.00151666
-0.000705603
-0.000261881
0.000167045
0.000402894
0.000617934
0.000747087
0.000965174
0.00102522
0.00101428
0.00101091
0.000906547
0.000819831
0.000602289
0.000366643
-7.05401e-05
-0.000686808
-0.00198736
-0.00210668
-0.00141437
-0.000811099
-0.0002041
8.14143e-05
0.000413625
0.000585594
0.00077051
0.000884582
0.000702575
0.000746107
0.000732428
0.000738003
0.000660964
0.000620732
0.00046842
0.000363448
4.919e-05
-0.000212064
-0.00137698
-0.00169658
-0.00110855
-0.000749196
-0.000239466
-3.84566e-05
0.00025529
0.000392316
0.000552202
0.000641019
0.000710772
0.000749353
0.000735507
0.000731583
0.000650052
0.000588752
0.000435542
0.000293497
4.54708e-05
-0.000219278
-0.000955724
-0.000947676
-0.000522628
-0.000295652
4.77454e-05
0.000143426
0.000364089
0.000453863
0.000585049
0.000656407
0.000575952
0.000608412
0.000597309
0.00060163
0.000543402
0.000522071
0.000426883
0.000409428
0.000279255
0.000398769
-0.000216922
-0.000814565
-0.000436152
-0.000408383
-6.68792e-05
2.22739e-05
0.000249378
0.000338198
0.000464444
0.000528052
0.00054881
0.00057407
0.000559988
0.000555717
0.000491163
0.000447786
0.000334457
0.000250736
9.40333e-05
0.000104571
3.82816e-05
-0.000455201
-0.000214831
-0.000191
7.22286e-05
0.00012134
0.000302574
0.000360867
0.000462436
0.000510255
0.000476007
0.000498833
0.000488489
0.000490517
0.000444833
0.000430293
0.000364564
0.000352846
0.000257137
0.000276823
-5.70994e-06
-0.000394805
-0.000190548
-0.000238745
1.05643e-05
5.44253e-05
0.000233476
0.000294681
0.000394239
0.000439757
0.00044769
0.000463647
0.00045011
0.000445386
0.000393875
0.000361973
0.000277593
0.000217018
0.000114819
6.54445e-05
1.72894e-05
-0.000183183
-1.12675e-05
-5.00593e-05
0.000135384
0.000143974
0.000278046
0.000312179
0.000388717
0.000420475
0.000406685
0.000421018
0.000410483
0.000409753
0.000371923
0.000359402
0.000310825
0.00029426
0.000234358
0.000200393
6.76135e-05
-0.000174628
-4.74441e-05
-0.000105489
7.58888e-05
9.69451e-05
0.00023286
0.000273735
0.000349388
0.000380516
0.000385933
0.000394789
0.000381978
0.000376577
0.000334987
0.000311131
0.000248495
0.000201963
0.000133568
7.66257e-05
5.66931e-05
-4.3196e-05
8.52272e-05
3.91e-05
0.000174642
0.000169092
0.000268769
0.000289376
0.000346437
0.000367066
0.000362829
0.000369853
0.000359068
0.000355736
0.000322802
0.000311219
0.000272441
0.000253172
0.000214991
0.000171819
0.000111061
-4.27957e-05
4.53805e-05
-3.21443e-06
0.000129881
0.00014007
0.000241469
0.000268749
0.000324697
0.000344592
0.000349768
0.000352743
0.000340912
0.000334632
0.000300232
0.000282514
0.000235757
0.000200038
0.000156257
0.000105688
0.00010328
4.10802e-05
0.000138437
9.87633e-05
0.000200398
0.000193129
0.000268052
0.000281982
0.000324245
0.000336927
0.000337617
0.000338257
0.000327904
0.000322243
0.000292776
0.000282195
0.000249754
0.000229676
0.00020555
0.00016478
0.000142437
4.43829e-05
0.000112901
7.59499e-05
0.00017492
0.000180197
0.000254602
0.000273342
0.00031368
0.000325066
0.000330557
0.000327977
0.000317687
0.000310169
0.000280462
0.00026746
0.000232585
0.000204073
0.000178677
0.000136406
0.00014447
9.79817e-05
0.00017333
0.000141772
0.000220664
0.000216472
0.000272789
0.000283914
0.000314748
0.000321195
0.000325087
0.00031983
0.000311057
0.000303368
0.000276216
0.000267393
0.00023983
0.000219398
0.000206262
0.000169469
0.000169463
0.000105227
0.000163634
0.00013588
0.00021101
0.000215077
0.000268613
0.000282792
0.000311082
0.000315817
0.000322061
0.000313975
0.000306176
0.000296902
0.000270153
0.000261538
0.00023397
0.000209764
0.000199157
0.000161531
0.000178606
0.000138599
0.000200648
0.000175902
0.000238549
0.00023881
0.000280487
0.000291123
0.000312658
0.000314077
0.000320356
0.000309724
0.000303977
0.000293732
0.00026845
0.000262193
0.000238872
0.000217188
0.000214431
0.000179317
0.000194967
0.000148391
0.000202022
0.000179226
0.000238769
0.000243736
0.000281506
0.000294273
0.000312711
0.000312605
0.00032023
0.000305613
0.000302274
0.000290818
0.00026517
0.00026084
0.000238107
0.000214684
0.000216944
0.000179965
0.000206226
0.000168425
0.000224415
0.000202936
0.000254934
0.000259518
0.000288373
0.000300753
0.000314553
0.00031136
0.000321227
0.000303732
0.000303103
0.000289777
0.000264624
0.000263588
0.000242135
0.000218258
0.000227947
0.000188994
0.000219267
0.00017718
0.000231228
0.000209972
0.000258988
0.000267206
0.000291669
0.000306047
0.000316099
0.000311362
0.000321389
0.00030007
0.000303255
0.000288209
0.000262732
0.000263892
0.000243824
0.000216934
0.000233216
0.000191267
0.000229516
0.000188765
0.000245506
0.000222439
0.000268363
0.000277109
0.000294944
0.000310984
0.000317036
0.000310276
0.000324862
0.000297977
0.000306118
0.00028962
0.000261895
0.000267737
0.000247528
0.000218805
0.000242822
0.000195691
0.000241093
0.000195337
0.000253861
0.000229486
0.000273793
0.000285895
0.000297304
0.000317146
0.000320268
0.000310019
0.000324965
0.000294011
0.000307021
0.000287621
0.000259081
0.000269926
0.000249148
0.000215962
0.000249171
0.000194926
0.00025025
0.000199351
0.000262948
0.000234525
0.000277395
0.000291862
0.000297777
0.000320495
0.000318942
0.000307218
0.000329151
0.000292003
0.000311685
0.000289301
0.000257916
0.000274903
0.000252549
0.00021542
0.000258083
0.000196491
0.000260814
0.000203411
0.000272185
0.000239221
0.000282482
0.000300029
0.000299359
0.000327235
0.000321855
0.000306857
0.000329754
0.000284626
0.000312977
0.000287833
0.000251506
0.000278297
0.000253295
0.000209599
0.000264272
0.0001914
0.000268373
0.00020098
0.000277573
0.000237853
0.000281503
0.000303807
0.000294798
0.000328944
0.000319321
0.000300188
0.000333642
0.000282354
0.00031917
0.000288531
0.000249943
0.000284445
0.000255757
0.000206351
0.000273885
0.00018932
0.000279186
0.000201084
0.000286905
0.0002393
0.000285803
0.000310539
0.000295327
0.000336351
0.000320839
0.000299848
0.000333913
0.000271358
0.000321533
0.000285834
0.000239171
0.000289338
0.000255389
0.000195844
0.000279799
0.00017914
0.000285348
0.000192585
0.000289889
0.000231537
0.000280435
0.000311893
0.000286016
0.000337018
0.000315442
0.000288993
0.000338524
0.00026765
0.000328599
0.000285879
0.000235169
0.000296512
0.00025628
0.000190611
0.000289094
0.000174441
0.000295373
0.000189492
0.00029838
0.000229413
0.000283763
0.000318606
0.000284323
0.000344621
0.000316202
0.000286911
0.000338661
0.000250131
0.000334066
0.000282732
0.000217458
0.000305369
0.000255437
0.000171247
0.000297736
0.000155964
0.000303175
0.000172353
0.000301813
0.000213246
0.000273387
0.000318861
0.000267848
0.000346111
0.000308545
0.000270472
0.000342117
0.000247259
0.00034031
0.000279892
0.00021379
0.000312119
0.000253106
0.000166895
0.000304252
0.000151482
0.000309855
0.000168814
0.000307346
0.000210083
0.000276248
0.00032295
0.000265887
0.000352393
0.000306445
0.000268665
0.000345038
0.000219628
0.000354026
0.000274806
0.000182193
0.000331292
0.000250908
0.000132874
0.000319868
0.000120258
0.000323235
0.000139083
0.000314961
0.000181037
0.000260117
0.000326369
0.000239323
0.000359298
0.000295581
0.000242353
-0.0180821
-0.0174151
-0.0169478
-0.0166949
-0.0166917
-0.016935
-0.0174087
-0.0180682
-0.0188951
-0.0198206
-0.0207847
-0.0216664
-0.0223339
-0.0226479
-0.0225995
-0.0222254
-0.0215741
-0.0207344
-0.019811
-0.0189003
-0.000602265
-0.000528852
-0.00054603
-0.000595906
-0.000689186
-0.000859938
-0.0011693
-0.00157212
-0.00211382
-0.00271593
-0.00338753
-0.00400595
-0.00441947
-0.00449169
-0.00413308
-0.00344412
-0.00262378
-0.00183813
-0.00121555
-0.000808804
-0.00478122
-0.00439399
-0.00418853
-0.00414371
-0.00431013
-0.00456575
-0.00498745
-0.00548001
-0.00617255
-0.00692848
-0.00784514
-0.00869016
-0.00923651
-0.00934351
-0.00904064
-0.00842295
-0.00761215
-0.00677864
-0.00600201
-0.00532149
0.00254289
0.00270963
0.00275452
0.00276502
0.00260755
0.00241843
0.00201745
0.00159032
0.000888131
0.000153333
-0.000889034
-0.00178087
-0.00221693
-0.0019828
-0.00125436
-0.0003221
0.000580775
0.00132463
0.00188568
0.00228732
-0.000668042
-0.000486573
-0.000455876
-0.000480328
-0.000648349
-0.000798276
-0.00118105
-0.00156673
-0.00232232
-0.00314787
-0.00448515
-0.00557624
-0.00603706
-0.0058126
-0.00501396
-0.00396555
-0.0029276
-0.00206966
-0.0014185
-0.000954418
0.0024664
0.00264607
0.00268258
0.00269553
0.00251444
0.00234639
0.00191577
0.00149352
0.000668532
-0.000236162
-0.00174744
-0.00277058
-0.00294571
-0.00230909
-0.00127318
-0.000256924
0.000638955
0.00132212
0.00184093
0.00222031
0.000561463
0.000671088
0.000649651
0.000649651
0.000498802
0.000397964
3.56067e-05
-0.000315503
-0.00111683
-0.00207885
-0.00381295
-0.0048703
-0.00490186
-0.00407627
-0.00287481
-0.00182543
-0.000946133
-0.00033332
0.000107486
0.00039977
0.00185858
0.00199787
0.0020086
0.00201043
0.00184009
0.00169716
0.00130342
0.000902843
9.05182e-05
-0.000930467
-0.00271678
-0.003617
-0.00321445
-0.00227214
-0.0011183
-0.000242892
0.000495057
0.000999574
0.00139486
0.00167634
0.000848118
0.000925483
0.000897264
0.000905586
0.000772653
0.000687337
0.000373021
5.35449e-05
-0.000666009
-0.00166028
-0.00349092
-0.00433954
-0.00369979
-0.00267777
-0.00154693
-0.00078505
-0.000149142
0.000243419
0.000547705
0.000740318
0.00132213
0.00141545
0.00140708
0.00140487
0.00126179
0.00114478
0.000830198
0.000490538
-0.000170953
-0.00111042
-0.00281343
-0.00332006
-0.00255151
-0.00161643
-0.000667716
-9.27784e-05
0.000427923
0.000741666
0.00101667
0.0012008
0.000817853
0.000875669
0.000852717
0.000859123
0.000749267
0.000681965
0.000441313
0.000209826
-0.000333692
-0.00106956
-0.00269118
-0.00315532
-0.00231749
-0.00153596
-0.000714155
-0.000277599
0.000156968
0.000391207
0.000608984
0.00073856
0.000946783
0.00100624
0.000989765
0.000985589
0.000872548
0.000783273
0.00055428
0.00031042
-0.000140934
-0.000777491
-0.00211543
-0.00217982
-0.00143902
-0.000837527
-0.00022051
5.73838e-05
0.00039631
0.000566516
0.000754011
0.000867763
0.00069812
0.000741737
0.000723819
0.00072851
0.000643621
0.000601067
0.000439086
0.000329747
3.58877e-06
-0.000262301
-0.00146963
-0.0017555
-0.00112452
-0.000772675
-0.0002489
-5.41427e-05
0.00024831
0.000384551
0.000547957
0.000637193
0.000702675
0.000740761
0.000722536
0.000717571
0.000629159
0.000565431
0.000404123
0.000255762
1.42059e-06
-0.000275153
-0.00102984
-0.000986134
-0.000533595
-0.000317318
3.78656e-05
0.000126732
0.000355553
0.00044403
0.000578188
0.000649396
0.000575779
0.000607902
0.000593027
0.000596212
0.000531957
0.000508777
0.000407668
0.000388334
0.000254316
0.000378837
-0.000262443
-0.00086909
-0.000446153
-0.000433052
-7.24025e-05
1.15522e-05
0.000247664
0.000335677
0.00046502
0.000528668
0.000548111
0.000572775
0.000555046
0.000549608
0.000479524
0.00043414
0.000314707
0.00022684
6.59946e-05
7.55036e-05
4.52711e-06
-0.000496109
-0.000222944
-0.000207818
7.0012e-05
0.000113699
0.000302141
0.000359006
0.000463009
0.000510553
0.00047983
0.000501981
0.000488259
0.000489019
0.000438497
0.000422385
0.000352591
0.00033906
0.000241965
0.000260633
-3.00026e-05
-0.000430985
-0.000199377
-0.000256475
9.00488e-06
4.98711e-05
0.000236863
0.000297416
0.000399341
0.000444587
0.000452351
0.000467565
0.000450863
0.000444924
0.000388904
0.000355445
0.000266424
0.000203011
9.79202e-05
4.61293e-05
-1.95462e-06
-0.000204425
-1.32689e-05
-5.97562e-05
0.000137804
0.000142526
0.000282903
0.000316205
0.000394721
0.000426166
0.000414214
0.000427649
0.000414061
0.000412023
0.000370111
0.000356293
0.000304437
0.000286387
0.000225855
0.000189674
5.54388e-05
-0.000195611
-5.12967e-05
-0.00011463
7.93234e-05
9.85457e-05
0.000240774
0.000281222
0.000358538
0.000389218
0.000394757
0.000402729
0.000387084
0.000380467
0.000335116
0.000310119
0.000243932
0.000195616
0.000125364
6.59737e-05
4.83095e-05
-5.31406e-05
8.78575e-05
3.63287e-05
0.000181111
0.000173199
0.000277983
0.000298228
0.000356749
0.000377013
0.000373748
0.000379742
0.000366178
0.000361553
0.000325078
0.000312463
0.000270764
0.000250508
0.000211654
0.000166883
0.000106711
-5.22276e-05
4.73032e-05
-4.20673e-06
0.00013819
0.000147358
0.00025346
0.000280468
0.000337458
0.000356798
0.000362066
0.000364044
0.000349625
0.000342149
0.000304521
0.000285997
0.000236408
0.000199832
0.000154847
0.000102735
0.000102697
3.91098e-05
0.000144872
0.000101942
0.000210576
0.000202199
0.000281107
0.000294977
0.000338202
0.000350444
0.000351606
0.000351143
0.000338251
0.000331344
0.000298769
0.000287399
0.000252313
0.000231737
0.000206742
0.000165245
0.00014405
4.38593e-05
0.000120109
8.17858e-05
0.000187469
0.000192331
0.000270143
0.000288733
0.000329634
0.000340406
0.00034587
0.000342217
0.000329543
0.00032086
0.000288312
0.000274736
0.000237463
0.000208782
0.000182449
0.000139709
0.000149531
0.000102224
0.000183281
0.000150193
0.000234364
0.000229945
0.000289292
0.000300502
0.000331874
0.000337804
0.00034182
0.000335431
0.000324335
0.00031546
0.000285562
0.000276153
0.000246233
0.00022573
0.000211632
0.000174867
0.000176007
0.000111443
0.000175196
0.000147137
0.000227067
0.000231189
0.000287198
0.000301323
0.000329839
0.00033393
0.00034001
0.000330816
0.000320815
0.000310412
0.000281124
0.000272082
0.000242398
0.000218438
0.000206964
0.000169707
0.000187932
0.000147909
0.000213922
0.000188896
0.000255505
0.000256081
0.000300029
0.000310788
0.00033253
0.000333368
0.000339503
0.000327742
0.000319863
0.000308494
0.000280766
0.000274081
0.000248682
0.000227247
0.000223546
0.000189048
0.000205609
0.000159709
0.000217058
0.000194687
0.000257703
0.000263079
0.000302691
0.000315463
0.000333899
0.000333137
0.000340454
0.00032473
0.000319356
0.000306816
0.000278874
0.000274214
0.000249584
0.000226616
0.000228036
0.000191956
0.000218951
0.000181879
0.000240693
0.000219765
0.000274735
0.000279938
0.000310504
0.000322985
0.000336759
0.000332946
0.000342445
0.000323849
0.000321259
0.000306871
0.000279513
0.000278161
0.000254876
0.00023144
0.000240256
0.00020233
0.00023324
0.000192391
0.000249033
0.00022871
0.00028029
0.00028916
0.000315053
0.000329449
0.000339352
0.00033396
0.000343523
0.000321132
0.000322433
0.000306355
0.000278783
0.000279682
0.000257907
0.000231559
0.000247042
0.000206295
0.000245011
0.000205544
0.00026433
0.000242343
0.000290504
0.00030003
0.000319206
0.000335293
0.000341172
0.000333783
0.000347798
0.000319866
0.000326194
0.000308698
0.000278954
0.000284558
0.000262725
0.00023452
0.000257751
0.000211892
0.000257707
0.000213525
0.000273863
0.000250787
0.000297015
0.000309916
0.000322508
0.000342333
0.000345226
0.000334338
0.000348639
0.000316685
0.000327933
0.000307564
0.000277091
0.000287719
0.000265407
0.000232777
0.000265238
0.000212367
0.000267969
0.000218729
0.000283787
0.000256802
0.000301356
0.000316682
0.00032374
0.000346411
0.000344617
0.000332289
0.000353448
0.000315339
0.000333323
0.000310019
0.000276751
0.000293542
0.000269747
0.000233135
0.000275079
0.000214897
0.000279448
0.000223865
0.000293889
0.000262503
0.000307193
0.00032562
0.000326028
0.000353792
0.000348167
0.000332571
0.000354598
0.00030859
0.000335256
0.000309229
0.000271101
0.000297677
0.000271309
0.000228151
0.000282091
0.000210715
0.000287789
0.000222336
0.000299889
0.000261914
0.000306793
0.000329978
0.000322081
0.00035602
0.00034617
0.000326504
0.000358944
0.000306831
0.000342004
0.000310552
0.000270179
0.000304477
0.000274528
0.000225597
0.000292423
0.000209378
0.000299287
0.000223233
0.000309825
0.00026408
0.000311582
0.000337233
0.00032314
0.000363869
0.000348179
0.000326664
0.000359565
0.000296331
0.00034481
0.00030837
0.000260022
0.000309891
0.000274769
0.000215747
0.000298886
0.000199875
0.000305932
0.000215422
0.000313182
0.000256918
0.000306602
0.000338914
0.000314311
0.00036482
0.000343139
0.000316297
0.000364474
0.000292986
0.000352252
0.000308879
0.000256465
0.000317505
0.00027622
0.00021099
0.00030867
0.000195689
0.00031642
0.000212867
0.000322046
0.000255297
0.000310202
0.00034596
0.000313003
0.000372696
0.00034427
0.000314581
0.000364772
0.000275891
0.000357974
0.000306147
0.000239309
0.000326675
0.000275853
0.000192208
0.00031761
0.000177764
0.000324422
0.000196287
0.000325591
0.000239643
0.000300013
0.000346266
0.000296943
0.000374209
0.000336825
0.000298594
0.000368365
0.000273217
0.000364397
0.000303573
0.000235859
0.00033363
0.000273842
0.000188086
0.000324367
0.000173544
0.000331331
0.000193034
0.000331299
0.000236758
0.000302959
0.000350533
0.000295204
0.000380615
0.000334963
0.000296984
0.000371245
0.000246022
0.00037817
0.000298894
0.000204858
0.00035289
0.000272092
0.000154684
0.000340038
0.000142856
0.000344643
0.000163863
0.00033874
0.000208266
0.000286778
0.000353716
0.000269108
0.000387228
0.000324264
0.000271218
-0.0181611
-0.0175047
-0.0170561
-0.0168259
-0.0168488
-0.0171167
-0.0176131
-0.018292
-0.0191371
-0.0200772
-0.0210518
-0.0219354
-0.0225915
-0.0228786
-0.0227984
-0.0223891
-0.0217044
-0.0208382
-0.0198972
-0.018978
-0.000665431
-0.000592947
-0.000604793
-0.000645131
-0.000738708
-0.000917634
-0.00124066
-0.00165618
-0.00221453
-0.00282848
-0.00351236
-0.00413513
-0.00453967
-0.0045837
-0.00418629
-0.00346952
-0.00263426
-0.00185164
-0.00124632
-0.000859644
-0.00483443
-0.00445721
-0.00426394
-0.00423682
-0.00441639
-0.00467639
-0.00511083
-0.00561124
-0.00632215
-0.00709049
-0.00802853
-0.00888507
-0.0094191
-0.00950714
-0.00916425
-0.00851171
-0.007681
-0.00683608
-0.00605223
-0.0053696
0.00247929
0.00264587
0.00268734
0.00269684
0.00252766
0.00233294
0.00191456
0.00147975
0.000753393
5.63202e-06
-0.00106809
-0.00196747
-0.00237973
-0.00209171
-0.00133235
-0.000377049
0.00053068
0.00127108
0.00182742
0.00222595
-0.00070797
-0.000531882
-0.000511431
-0.000537135
-0.000715715
-0.000867291
-0.00126846
-0.00166084
-0.00244623
-0.00328879
-0.00467179
-0.00576457
-0.00619934
-0.00591152
-0.0050582
-0.00398077
-0.00293465
-0.00208244
-0.0014405
-0.000985107
0.00240652
0.0025841
0.00261281
0.00262182
0.00242763
0.00225732
0.0018064
0.00137806
0.000522494
-0.00040168
-0.00195778
-0.00297132
-0.00309337
-0.00241314
-0.00133403
-0.00030578
0.000593559
0.00127337
0.00178862
0.00216489
0.0005338
0.000641753
0.000612065
0.000613745
0.000450318
0.000348271
-3.59114e-05
-0.000394421
-0.00122947
-0.00221647
-0.00400135
-0.00504301
-0.00499408
-0.00411262
-0.00287769
-0.00182648
-0.000950373
-0.000345716
8.94705e-05
0.000377275
0.00180848
0.00194579
0.00194792
0.00194838
0.00176463
0.00162094
0.00120735
0.000800275
-4.23616e-05
-0.00108934
-0.00292718
-0.003797
-0.00331557
-0.00232907
-0.00115308
-0.000279056
0.000459219
0.000958969
0.00135204
0.00163078
0.000828739
0.000905738
0.000871257
0.000880145
0.00073454
0.000647624
0.000313253
-1.37927e-05
-0.000763287
-0.00178407
-0.00366706
-0.00447182
-0.00374848
-0.00269333
-0.00154878
-0.00079435
-0.000158518
0.0002291
0.00053258
0.000723642
0.00128561
0.00137746
0.00136123
0.00135872
0.00120426
0.00108618
0.000755546
0.000408596
-0.000275968
-0.00124121
-0.00299142
-0.00344277
-0.00260382
-0.00164997
-0.00068967
-0.000122786
0.0004008
0.000710502
0.000985548
0.00116776
0.000803762
0.000861451
0.000833017
0.000839095
0.000718563
0.000649502
0.000393866
0.000156388
-0.000408582
-0.00116184
-0.00283566
-0.00323857
-0.00234051
-0.00155366
-0.000721205
-0.000293481
0.000146219
0.000377564
0.000597158
0.000726184
0.000923356
0.000981728
0.000959085
0.00095424
0.000832107
0.000741112
0.000500711
0.000249661
-0.000214888
-0.000871553
-0.00224584
-0.00225009
-0.00145992
-0.000863011
-0.00023578
3.27669e-05
0.000377937
0.000545093
0.00073427
0.000846757
0.000688592
0.00073177
0.000708944
0.000712794
0.000619689
0.000575527
0.00040412
0.000291473
-4.53867e-05
-0.000314961
-0.00156422
-0.00181339
-0.001138
-0.000796204
-0.000257698
-7.07665e-05
0.000240044
0.000374296
0.000540372
0.000629124
0.0006898
0.000726908
0.000703739
0.000697753
0.000602148
0.000536571
0.000367376
0.000213385
-4.59677e-05
-0.000334586
-0.00110517
-0.00102325
-0.000541982
-0.000339113
2.85835e-05
0.000109053
0.0003457
0.000431765
0.000568121
0.000638359
0.000570938
0.000602227
0.00058301
0.000585015
0.000514463
0.000489917
0.000383262
0.000362776
0.000226218
0.000356568
-0.000308551
-0.000925348
-0.000454506
-0.000458421
-7.7661e-05
-2.8575e-07
0.00024455
0.000330744
0.000462441
0.00052535
0.000543217
0.000566833
0.000544953
0.000538289
0.000462418
0.000415438
0.000290119
0.000198687
3.50673e-05
4.38388e-05
-3.06965e-05
-0.000537421
-0.000229472
-0.000224943
6.81442e-05
0.000105033
0.000300384
0.000354944
0.000460726
0.000507313
0.000479715
0.000500739
0.000483148
0.000482543
0.000426946
0.0004096
0.00033605
0.000321251
0.000224127
0.00024191
-5.52799e-05
-0.00046887
-0.000207573
-0.000274934
7.5389e-06
4.43753e-05
0.000239032
0.000298139
0.000401788
0.000446114
0.00045355
0.000467606
0.000447292
0.000440034
0.000379278
0.000344562
0.000251066
0.000185302
7.81883e-05
2.42335e-05
-2.23074e-05
-0.000226363
-1.45126e-05
-6.98955e-05
0.000140288
0.000140224
0.000286655
0.000318469
0.0003984
0.000428969
0.00041861
0.000430749
0.000413681
0.000410211
0.000363995
0.000349125
0.000294163
0.000275101
0.000214853
0.000176767
4.22338e-05
-0.000217989
-5.49485e-05
-0.000124255
8.28011e-05
9.94973e-05
0.000247772
0.0002872
0.00036563
0.000395333
0.000400875
0.000407594
0.000388721
0.000380763
0.000331444
0.000305531
0.0002359
0.000186248
0.000114747
5.32049e-05
3.89839e-05
-6.38126e-05
9.07704e-05
3.31729e-05
0.000187553
0.000176733
0.000286401
0.000305813
0.000365315
0.000384749
0.000382299
0.000386915
0.000370202
0.000364152
0.00032393
0.00031047
0.000265911
0.0002451
0.000206113
0.000160154
0.00010137
-6.25493e-05
4.93351e-05
-5.44947e-06
0.00014659
0.00015431
0.000264864
0.00029117
0.000348741
0.000367101
0.000372359
0.000373019
0.000355667
0.000346866
0.000305823
0.000286666
0.000234291
0.000197289
0.000151495
9.82304e-05
0.000101334
3.65629e-05
0.000151382
0.000104919
0.000220788
0.000211013
0.000293707
0.000307176
0.000350961
0.000362385
0.000363895
0.000362036
0.000346284
0.000338001
0.000302138
0.00029012
0.000252391
0.000231719
0.000206142
0.000164372
0.000144859
4.28501e-05
0.000127441
8.76577e-05
0.00020021
0.000204416
0.000285411
0.000303541
0.000344627
0.000354444
0.000359786
0.000354792
0.000339429
0.000329457
0.000293906
0.000279886
0.000240216
0.000211772
0.000184721
0.000141974
0.00015399
0.000106141
0.000193307
0.000158671
0.000248245
0.000243463
0.000305663
0.000316706
0.000348279
0.000353387
0.000357416
0.000349656
0.000335951
0.000325771
0.000292979
0.00028309
0.00025079
0.00023059
0.000215663
0.000179399
0.000182002
0.00011752
0.000186955
0.000158658
0.000243438
0.000247498
0.000305797
0.000319639
0.000348073
0.000351249
0.000357066
0.000346551
0.000334075
0.000322433
0.000290472
0.000281092
0.000249271
0.000225928
0.000213675
0.000177279
0.000196859
0.000157185
0.000227379
0.000202204
0.000272819
0.000273654
0.00031972
0.000330404
0.000352077
0.000352092
0.000357968
0.000344894
0.000334623
0.00032203
0.000291738
0.000284697
0.000257191
0.000236356
0.000231742
0.000198345
0.000215958
0.000171175
0.000232392
0.000210608
0.00027709
0.000282827
0.00032414
0.000336736
0.000354922
0.000353294
0.00036019
0.000343202
0.00033554
0.000321826
0.000291486
0.000286549
0.000259995
0.000237825
0.000238397
0.000203711
0.000231494
0.000195577
0.000257295
0.000237129
0.000295059
0.000300859
0.00033302
0.000345434
0.00035896
0.000354341
0.000363341
0.000343517
0.000338717
0.00032319
0.00029354
0.000291908
0.000266769
0.000244107
0.000252001
0.000215598
0.000247143
0.000207991
0.000267246
0.000248084
0.000302185
0.000311687
0.000338914
0.000353168
0.000362728
0.000356523
0.000365483
0.000341923
0.000341091
0.000323916
0.000294178
0.000294831
0.000271331
0.000245851
0.000260448
0.000221407
0.000260525
0.000222811
0.000283613
0.000262965
0.000313312
0.000323604
0.000344049
0.000360019
0.000365554
0.000357401
0.000370688
0.00034164
0.000345903
0.000327361
0.000295544
0.000300904
0.000277437
0.000250076
0.000272396
0.000228325
0.000274437
0.000232316
0.000294381
0.000272882
0.00032096
0.000334643
0.00034837
0.000368013
0.00037053
0.000358894
0.000372377
0.000339386
0.000348613
0.00032724
0.000294796
0.000305179
0.000281331
0.000249583
0.000281131
0.000230166
0.000285871
0.000238802
0.000305193
0.000279953
0.000326105
0.000342267
0.000350445
0.000372893
0.000370736
0.000357714
0.000377904
0.000338829
0.000354841
0.000330601
0.000295428
0.000311971
0.000286746
0.000250981
0.000292003
0.000233783
0.000298336
0.000245106
0.000316202
0.000286722
0.00033274
0.000352013
0.000353505
0.000380967
0.000375
0.000358739
0.000379678
0.000332816
0.000357509
0.0003306
0.000290668
0.000316949
0.000289235
0.000246955
0.000299918
0.000230613
0.000307512
0.000244561
0.000322851
0.000286977
0.000332969
0.000356992
0.000350238
0.000383764
0.000373612
0.000353364
0.000384548
0.000331667
0.000364894
0.000332648
0.0002905
0.000324489
0.000293314
0.000245207
0.000311041
0.000230116
0.000319739
0.000246328
0.000333423
0.000289917
0.000338286
0.000364795
0.000351882
0.000392093
0.000376172
0.000354104
0.000385569
0.000321744
0.000368202
0.000331057
0.000281051
0.000330486
0.000294241
0.000236105
0.000318097
0.00022137
0.000326894
0.000239268
0.000337174
0.000283409
0.000333732
0.000366825
0.000343585
0.000393355
0.000371538
0.000344289
0.00039082
0.000318832
0.000376073
0.000332102
0.000278023
0.000338597
0.000296324
0.000231904
0.000328417
0.000217769
0.000337874
0.000237313
0.000346428
0.000282334
0.000337632
0.000374221
0.000342706
0.000401525
0.000373083
0.000342998
0.000391302
0.000302213
0.000382082
0.00032983
0.000261483
0.000348112
0.000296479
0.000213764
0.000337672
0.000200449
0.000346081
0.000221334
0.000350089
0.000267229
0.000327653
0.00037458
0.000327093
0.000403071
0.000365877
0.000327504
0.000395057
0.000299775
0.00038871
0.000327563
0.000258295
0.000355302
0.000294831
0.000209917
0.000344693
0.000196532
0.000353233
0.000218402
0.000355983
0.000264652
0.000330702
0.000379033
0.000325602
0.000409612
0.000364282
0.000326123
0.000397903
0.00027304
0.000402554
0.000323319
0.00022792
0.000374659
0.000293553
0.000177162
0.000360418
0.000166406
0.000366465
0.000189813
0.000363238
0.000236734
0.000314476
0.00038197
0.00029999
0.00041593
0.000353757
0.000300919
-0.0182321
-0.0175886
-0.0171605
-0.0169536
-0.0170024
-0.0172942
-0.0178123
-0.0185097
-0.0193724
-0.0203267
-0.0213115
-0.0221962
-0.0228392
-0.0230976
-0.0229841
-0.0225392
-0.021821
-0.0209291
-0.0199714
-0.0190455
-0.000722546
-0.000648503
-0.0006537
-0.000684899
-0.000780453
-0.000968524
-0.00130629
-0.00173451
-0.00230952
-0.00293448
-0.00363017
-0.00425633
-0.00465025
-0.00466342
-0.00422683
-0.00348327
-0.00263553
-0.0018594
-0.00127379
-0.000906897
-0.00488022
-0.00451389
-0.00433387
-0.00432427
-0.00451687
-0.0047808
-0.00522817
-0.00573585
-0.00646572
-0.00724578
-0.00820569
-0.0090723
-0.00958995
-0.00966079
-0.00928007
-0.00859068
-0.00774021
-0.00688361
-0.00609254
-0.00540877
0.00241935
0.00258562
0.00262328
0.00263111
0.00244967
0.00224966
0.00181322
0.00137164
0.000620252
-0.00013972
-0.0012462
-0.00215291
-0.00254099
-0.00219511
-0.00140071
-0.000425915
0.000485071
0.00122131
0.00177278
0.00216825
-0.000744384
-0.000573925
-0.000564337
-0.000590739
-0.000780515
-0.000933047
-0.00135361
-0.00175155
-0.00256782
-0.00342639
-0.0048561
-0.00594632
-0.00635116
-0.006
-0.00509124
-0.00398739
-0.00293509
-0.0020899
-0.00145789
-0.00101174
0.00234608
0.00252124
0.00254155
0.00254675
0.00233857
0.00216718
0.00169493
0.00126209
0.00037472
-0.000568081
-0.0021699
-0.00317325
-0.0032381
-0.00250961
-0.00138925
-0.000350644
0.000550798
0.00122618
0.00173711
0.00210959
0.000506124
0.00061197
0.000573377
0.000577114
0.000400165
0.000298049
-0.000109171
-0.000473361
-0.0013434
-0.00235426
-0.00419068
-0.0052133
-0.00507838
-0.00414153
-0.00287501
-0.00182374
-0.000951847
-0.000356229
7.27093e-05
0.000355382
0.00175526
0.00189013
0.00188253
0.00188237
0.00168441
0.00154139
0.00110696
0.000695276
-0.000178612
-0.00125033
-0.00314032
-0.00397453
-0.00341121
-0.00238129
-0.00118474
-0.000313754
0.000424002
0.00091787
0.00130787
0.00158297
0.000806538
0.000882763
0.000841431
0.000850934
0.000691736
0.000604454
0.000249109
-8.36473e-05
-0.000863883
-0.00190947
-0.00384512
-0.00459858
-0.00379238
-0.0027055
-0.00154814
-0.000802632
-0.00016734
0.000214322
0.000516244
0.000704934
0.00124482
0.00133472
0.0013099
0.0013074
0.00114087
0.0010229
0.000675631
0.000322913
-0.000384881
-0.00137507
-0.00317369
-0.00356238
-0.00265049
-0.00168143
-0.000709958
-0.000152757
0.000373257
0.000677729
0.000951963
0.00113131
0.000785327
0.000842387
0.000807686
0.000813592
0.00068172
0.000611923
0.000340941
9.89444e-05
-0.000487322
-0.00125668
-0.00298375
-0.00331989
-0.00236008
-0.00157057
-0.000727151
-0.000309747
0.000134826
0.000362135
0.00058274
0.000710317
0.00089532
0.000952106
0.000922644
0.000917271
0.000785524
0.000693661
0.000441716
0.000184435
-0.00029246
-0.00096921
-0.00237859
-0.00231786
-0.00147764
-0.000888174
-0.000250137
7.46859e-06
0.000358633
0.000521567
0.000711626
0.000821959
0.00067434
0.000716545
0.000688116
0.000691159
0.000589389
0.000544345
0.000363625
0.000248673
-9.77227e-05
-0.000370158
-0.00166074
-0.00187066
-0.00114937
-0.000820287
-0.000265985
-8.83579e-05
0.000230642
0.000361789
0.000529753
0.00061715
0.000672477
0.000708105
0.000679398
0.000672402
0.000569214
0.00050238
0.000325406
0.000166416
-9.66562e-05
-0.000397726
-0.00118169
-0.00105966
-0.000548008
-0.000361402
1.98661e-05
9.04211e-05
0.000334713
0.000417327
0.000555154
0.000623627
0.000561693
0.00059163
0.000567467
0.000568233
0.000491054
0.000465636
0.00035375
0.000332798
0.000195239
0.000331827
-0.000355262
-0.000983825
-0.00046142
-0.000484752
-8.26276e-05
-1.31632e-05
0.000240226
0.000323643
0.000456975
0.000518374
0.000534358
0.000556443
0.000529876
0.000521909
0.000439942
0.000391791
0.000260741
0.000166306
1.10812e-06
9.37762e-06
-6.71437e-05
-0.000579181
-0.000234441
-0.00024253
6.66901e-05
9.54382e-05
0.000297493
0.000348915
0.000455836
0.000500784
0.000475848
0.000495266
0.00047328
0.000471194
0.000410241
0.000392011
0.000314976
0.000299454
0.000203694
0.000220682
-8.14313e-05
-0.000508631
-0.000215107
-0.000294182
6.27735e-06
3.80713e-05
0.000240173
0.00029707
0.000401797
0.000444547
0.000451443
0.000463895
0.000439489
0.000430787
0.000365033
0.000329372
0.000231534
0.000163919
5.56475e-05
-3.04014e-07
-4.36862e-05
-0.000249062
-1.49284e-05
-8.04893e-05
0.000142943
0.000137204
0.000289477
0.000319175
0.000399952
0.000429067
0.000420009
0.000430418
0.000409414
0.000404367
0.00035359
0.000337931
0.000280003
0.00026043
0.000201399
0.000161682
2.80743e-05
-0.000241831
-5.83176e-05
-0.000134331
8.64535e-05
9.99514e-05
0.000254029
0.00029186
0.000370841
0.000399022
0.000404402
0.000409463
0.00038694
0.000377494
0.000323975
0.000297387
0.000224395
0.000173888
0.000101747
3.83261e-05
2.8808e-05
-7.51932e-05
9.40422e-05
2.96614e-05
0.000194088
0.000179841
0.000294186
0.000312308
0.000372295
0.000390419
0.000388584
0.000391444
0.000371184
0.000363557
0.000319355
0.000305251
0.000257868
0.000236976
0.000198393
0.000151666
9.51048e-05
-7.37477e-05
5.15712e-05
-6.84566e-06
0.000155215
0.000161082
0.000275838
0.00030102
0.000358694
0.000375627
0.00038074
0.000379731
0.000359076
0.000348799
0.000304133
0.000284529
0.000229398
0.000192441
0.000146231
9.22224e-05
9.92724e-05
3.34778e-05
0.000158053
0.000107783
0.000231158
0.000219721
0.000306
0.000318738
0.000362658
0.000372869
0.000374573
0.000370996
0.000352038
0.000342233
0.000302881
0.000290369
0.000249981
0.000229649
0.000203771
0.000162212
0.000144929
4.14222e-05
0.000134999
9.36766e-05
0.00021327
0.000216602
0.00030055
0.000317915
0.00035879
0.000367291
0.000372391
0.000365759
0.000347385
0.00033598
0.000297245
0.000282921
0.000240841
0.000213077
0.000185522
0.000143266
0.000157917
0.000109799
0.000203498
0.000167314
0.000262433
0.000257175
0.000322041
0.000332669
0.000364088
0.000368049
0.000371959
0.000362561
0.000345946
0.000334328
0.000298476
0.000288221
0.000253507
0.000234014
0.000218386
0.000183127
0.00018752
0.000123541
0.000199013
0.000170557
0.000260249
0.000264146
0.000324542
0.000337875
0.000365904
0.000367877
0.000373315
0.000361237
0.000346001
0.000332995
0.000298211
0.000288591
0.000254602
0.000232275
0.000219327
0.000184313
0.000205459
0.000166509
0.000241117
0.000215941
0.000290615
0.000291668
0.000339694
0.000350105
0.000371416
0.000370348
0.000375837
0.000361238
0.000348308
0.000334375
0.000301389
0.000294069
0.000264423
0.00024456
0.000239063
0.000207277
0.00022609
0.000182873
0.000248125
0.000227101
0.000297051
0.000303113
0.000345979
0.000358219
0.000375895
0.000373173
0.000379523
0.000361087
0.00035088
0.000335886
0.000303035
0.000297879
0.000269371
0.000248357
0.000248075
0.000215299
0.000243932
0.000209606
0.000274325
0.000255143
0.000316027
0.000322416
0.000356046
0.000368223
0.000381265
0.000375637
0.000384001
0.000362795
0.000355538
0.000338778
0.000306741
0.00030487
0.000277851
0.000256306
0.000263239
0.000228865
0.00026106
0.000224067
0.000285975
0.000268202
0.00032479
0.000334916
0.000363372
0.000377324
0.000386334
0.00037914
0.000387358
0.000362502
0.000359292
0.000340941
0.000308957
0.000309387
0.000284141
0.000259859
0.000273497
0.000236669
0.000276143
0.000240648
0.000303461
0.000284414
0.000336903
0.000347958
0.000369586
0.000385281
0.000390288
0.000381217
0.000393619
0.00036336
0.000365314
0.000345659
0.000311706
0.000316827
0.000291715
0.000265521
0.000286828
0.000245052
0.000291374
0.000251787
0.000315522
0.000295873
0.00034574
0.000360198
0.000374998
0.000394301
0.000396285
0.00038377
0.000396269
0.000362172
0.00036913
0.000346703
0.000312241
0.000322363
0.000296976
0.000266427
0.000296928
0.000248381
0.000304054
0.000259645
0.000327275
0.000304071
0.000351752
0.000368735
0.000377993
0.000400053
0.000397394
0.000383571
0.000402606
0.000362526
0.000376315
0.000351103
0.000313994
0.000330252
0.000303603
0.000269003
0.000308939
0.000253203
0.000317581
0.000267203
0.000339232
0.000311965
0.000359228
0.000379325
0.000381885
0.000408874
0.000402449
0.000385435
0.000405083
0.000357359
0.000379814
0.000352001
0.00031025
0.000336178
0.000307135
0.000266053
0.00031784
0.000251143
0.000327643
0.000267718
0.00034657
0.000313125
0.000360137
0.00038496
0.000379359
0.000412285
0.000401736
0.000380838
0.000410543
0.000356913
0.000387919
0.000354874
0.00031095
0.000344548
0.000312177
0.000265219
0.000329828
0.00025158
0.000340649
0.000270424
0.000357808
0.000316888
0.000366017
0.000393336
0.000381638
0.000421129
0.000404903
0.000382231
0.000412012
0.000347643
0.000391791
0.00035395
0.000302301
0.000351196
0.000313867
0.00025695
0.000337529
0.000243664
0.000348345
0.000264172
0.000361973
0.000311081
0.000361923
0.000395734
0.000373916
0.000422729
0.000400719
0.00037303
0.000417648
0.000345232
0.000400147
0.000355601
0.00029988
0.000359864
0.000316657
0.000253384
0.000348432
0.000240717
0.000359847
0.000262874
0.000371638
0.000310589
0.000366148
0.000403493
0.000373506
0.000431216
0.000402719
0.000372215
0.000418337
0.000329133
0.000406474
0.000353835
0.000284013
0.000369756
0.000317377
0.000235941
0.000358023
0.000224049
0.000368266
0.000247535
0.000375419
0.000296062
0.000356398
0.000403909
0.000358367
0.000432802
0.000395775
0.000357251
0.000422278
0.00032697
0.000413336
0.000351916
0.000281133
0.000377213
0.000316133
0.000232411
0.000365332
0.000220473
0.000375675
0.000244955
0.000381509
0.000293819
0.000359565
0.000408556
0.000357147
0.000439489
0.000394469
0.000356129
0.000425093
0.000300716
0.000427264
0.00034813
0.000251413
0.000396676
0.00031535
0.00020033
0.000381111
0.000190931
0.000388817
0.000216968
0.000388566
0.000266492
0.000343298
0.000411231
0.000332033
0.000445506
0.000384124
0.000331501
-0.0182962
-0.0176681
-0.017262
-0.0170789
-0.0171533
-0.0174681
-0.0180071
-0.0187223
-0.0196024
-0.0205705
-0.0215652
-0.0224505
-0.0230787
-0.0233068
-0.0231585
-0.022677
-0.0219256
-0.0210084
-0.020035
-0.0191039
-0.000776169
-0.00069823
-0.000695838
-0.000718907
-0.000818562
-0.00101668
-0.00137018
-0.001811
-0.0024027
-0.00303789
-0.00374513
-0.00437399
-0.0047559
-0.00473596
-0.00425926
-0.00348993
-0.00263221
-0.00186595
-0.00130186
-0.000953594
-0.00491907
-0.00456454
-0.00439902
-0.00440631
-0.0046117
-0.00487931
-0.00533998
-0.00585449
-0.00660417
-0.0073954
-0.00837809
-0.00925353
-0.00975255
-0.00980409
-0.0093861
-0.00865942
-0.0077894
-0.00692083
-0.00612288
-0.00543933
0.00236098
0.0025268
0.00256028
0.00256553
0.00237114
0.00216619
0.00171095
0.00126359
0.000486157
-0.000285262
-0.00142595
-0.00233933
-0.00270104
-0.00229503
-0.00146372
-0.000471647
0.000441387
0.00117295
0.00171954
0.0021121
-0.000777433
-0.000612846
-0.000614784
-0.000641368
-0.000843007
-0.000995785
-0.00143698
-0.00183936
-0.00268788
-0.0035617
-0.00503893
-0.00612136
-0.00649443
-0.00608096
-0.00511433
-0.00398593
-0.00292932
-0.00209234
-0.00147088
-0.00103452
0.00228405
0.00245647
0.00246764
0.00246922
0.00224607
0.00207484
0.00157996
0.00114434
0.000223572
-0.000736996
-0.00238596
-0.00337905
-0.00337943
-0.00259826
-0.00143995
-0.000392931
0.000509303
0.00117928
0.00168524
0.00205332
0.000478535
0.000581877
0.000533954
0.000539887
0.000348298
0.000247302
-0.000184499
-0.000552549
-0.00145927
-0.00249297
-0.00438219
-0.00538232
-0.00515564
-0.00416323
-0.00286716
-0.00181757
-0.000950829
-0.000365028
5.71372e-05
0.000334105
0.00169863
0.00183061
0.00181219
0.0018121
0.00159901
0.00145817
0.00100157
0.000587317
-0.000319175
-0.00141438
-0.00335737
-0.00415002
-0.0035024
-0.00242977
-0.00121413
-0.000347749
0.000388801
0.000875788
0.00126194
0.00153257
0.000781694
0.000856728
0.000807807
0.000818109
0.00064426
0.000557909
0.000180371
-0.000156152
-0.000968361
-0.00203707
-0.00402667
-0.00472236
-0.00383176
-0.00271479
-0.00154534
-0.000810166
-0.000175741
0.00019906
0.000498769
0.000684326
0.00119986
0.00128732
0.00125317
0.00125098
0.00107155
0.000954956
0.000590186
0.000233283
-0.000498171
-0.00151266
-0.00336062
-0.00367742
-0.00269198
-0.00171147
-0.000729016
-0.000183027
0.000345115
0.000643273
0.000915916
0.00109152
0.000762763
0.000818676
0.000776888
0.000782771
0.000638782
0.000569308
0.000282405
3.7382e-05
-0.000570214
-0.00135457
-0.00313606
-0.00339927
-0.0023764
-0.00158706
-0.000732175
-0.000326526
0.000122797
0.000345013
0.000565887
0.000691155
0.000862866
0.000917544
0.000880582
0.000874807
0.000732826
0.00064098
0.000377201
0.000114643
-0.00037383
-0.00107097
-0.00251397
-0.00238353
-0.00149252
-0.000913446
-0.000263743
-1.86229e-05
0.000338419
0.000496045
0.000686235
0.000793557
0.000655564
0.000696233
0.000661469
0.000663717
0.00055275
0.000507558
0.000317527
0.000201228
-0.000153522
-0.000428347
-0.0017594
-0.00192789
-0.00115882
-0.000845205
-0.000273781
-0.00010691
0.000220211
0.000347201
0.000516292
0.000601482
0.000650888
0.0006845
0.000649623
0.0006416
0.000530379
0.000462896
0.000278168
0.000114798
-0.000150665
-0.000464891
-0.00125925
-0.00109554
-0.000551891
-0.000384469
1.16929e-05
7.08461e-05
0.000322699
0.000400888
0.000539476
0.000605399
0.000548213
0.000576238
0.00054649
0.000545925
0.00046173
0.000435933
0.000319071
0.000298292
0.000161413
0.000304299
-0.000402742
-0.00104457
-0.000466746
-0.000512145
-8.72189e-05
-2.69784e-05
0.000234849
0.000314575
0.000448819
0.000507934
0.00052168
0.00054171
0.000509881
0.000500505
0.000412087
0.000363205
0.000226531
0.000129661
-3.59274e-05
-2.81505e-05
-0.000104805
-0.000621722
-0.000237807
-0.000260712
6.56985e-05
8.49975e-05
0.000293607
0.000341109
0.00044852
0.000491143
0.000468365
0.00048565
0.000458709
0.000454992
0.000388357
0.000369595
0.000289303
0.000273596
0.000180647
0.000196806
-0.000108371
-0.000550474
-0.000221905
-0.00031422
5.34839e-06
3.11106e-05
0.000240459
0.000294409
0.000399552
0.000440056
0.000446149
0.000456504
0.000427492
0.00041719
0.000346138
0.000309864
0.000207785
0.000138855
3.03064e-05
-2.75554e-05
-6.60275e-05
-0.000272606
-1.44604e-05
-9.15613e-05
0.000145855
0.000133594
0.000291522
0.000318509
0.000399542
0.000426612
0.00041852
0.000426725
0.000401292
0.000394495
0.000338861
0.000322684
0.000261891
0.000242337
0.000185474
0.000144365
1.30065e-05
-0.000267156
-6.12907e-05
-0.000144808
9.04253e-05
0.000100082
0.000259713
0.000295391
0.000374334
0.000400429
0.000405438
0.000408398
0.000381768
0.000370661
0.000312677
0.000285672
0.000209378
0.000158549
8.63815e-05
2.13472e-05
1.78646e-05
-8.73111e-05
9.77361e-05
2.58595e-05
0.000200821
0.000182676
0.000301492
0.000317891
0.000377842
0.000394156
0.000392701
0.000393388
0.000369154
0.000359771
0.000311328
0.000296789
0.000246585
0.000226128
0.000188474
0.000141424
8.79561e-05
-8.57836e-05
5.41235e-05
-8.26544e-06
0.00016421
0.000167849
0.000286544
0.000310193
0.000367468
0.000382508
0.000387305
0.000384237
0.000359882
0.000347955
0.000299433
0.000279582
0.0002217
0.000185318
0.000139075
8.47687e-05
9.65843e-05
2.98918e-05
0.000164959
0.00011063
0.000241804
0.000228486
0.000318143
0.000329831
0.000373439
0.000382017
0.000383736
0.000378083
0.000355551
0.000344052
0.00030099
0.000288145
0.000245057
0.000225549
0.000199627
0.000158805
0.000144315
3.96631e-05
0.000142897
9.99816e-05
0.000226791
0.000229057
0.000315716
0.000332018
0.000372263
0.000379067
0.000383779
0.00037518
0.000353452
0.00034045
0.000298334
0.000283851
0.000239332
0.000212738
0.000184877
0.000143663
0.00016138
0.000113271
0.000213941
0.000176243
0.000277058
0.000271243
0.000338579
0.000348548
0.000379437
0.000381906
0.000385545
0.000374211
0.00035437
0.000341157
0.000302065
0.000291565
0.000254387
0.000236041
0.000219824
0.000186119
0.000192628
0.000129609
0.00021148
0.000182973
0.000277634
0.000281293
0.000343583
0.000356185
0.000383467
0.000383928
0.000388851
0.000374942
0.00035665
0.000342132
0.000304366
0.000294607
0.000258406
0.000237526
0.000223956
0.000190892
0.0002138
0.000175972
0.000255237
0.000230238
0.000309025
0.000310281
0.000360094
0.000370038
0.000390678
0.000388247
0.000393206
0.000376845
0.000360979
0.000345571
0.000309751
0.000302235
0.000270405
0.000251909
0.000245557
0.000215925
0.000236084
0.00019491
0.000264366
0.000244298
0.000317715
0.00032409
0.000368349
0.000380056
0.000396946
0.000392882
0.000398552
0.000378459
0.000365443
0.000349046
0.000313562
0.00030825
0.000277749
0.000258266
0.000257126
0.0002268
0.000256346
0.000224064
0.000291893
0.000273936
0.000337771
0.000344755
0.000379717
0.000391491
0.0004038
0.000396941
0.000404524
0.000381756
0.00037179
0.00035369
0.000319162
0.000317099
0.00028817
0.000268097
0.000274034
0.000242215
0.000275078
0.000240718
0.000305329
0.000289188
0.000348231
0.000358989
0.000388558
0.000402052
0.000410292
0.000401916
0.000409245
0.000382943
0.000377112
0.000357488
0.000323173
0.000323406
0.000296392
0.000273643
0.000286262
0.000252161
0.000291961
0.000259154
0.000323985
0.000306809
0.000361403
0.000373228
0.000395943
0.000411209
0.000415491
0.000405332
0.00041669
0.000385098
0.000384504
0.000363655
0.000327498
0.00033239
0.000305619
0.000280916
0.000301127
0.000262154
0.000308614
0.000272034
0.000337401
0.000319873
0.000371478
0.000386713
0.000402514
0.000421323
0.000422601
0.000409063
0.000420411
0.000385117
0.000389568
0.000366018
0.000329486
0.000339338
0.000312407
0.000283372
0.000312715
0.000267089
0.000322623
0.000281348
0.000350143
0.000329267
0.000378417
0.000396216
0.000406502
0.000428015
0.000424703
0.000409953
0.00042765
0.000386502
0.000397827
0.00037159
0.000332509
0.000348457
0.000320388
0.000287263
0.000325975
0.00027323
0.000337286
0.000290243
0.00036309
0.000338337
0.000386775
0.00040768
0.00041128
0.00043763
0.000430618
0.000412747
0.000430909
0.000382286
0.000402258
0.000373502
0.000329911
0.000355438
0.000325082
0.000285506
0.000335951
0.000272377
0.000348287
0.000291889
0.000371164
0.000340457
0.000388408
0.000414006
0.000409549
0.000441702
0.000430642
0.00040901
0.000437021
0.000382633
0.000411166
0.000377298
0.00033159
0.000364734
0.000331191
0.000285689
0.000348881
0.000273834
0.000362128
0.000295597
0.000383092
0.000345084
0.000394882
0.000422973
0.000412505
0.000451091
0.000434466
0.000411123
0.000438988
0.000374092
0.000415664
0.000377116
0.000323831
0.0003721
0.000333722
0.000278339
0.000357281
0.000266821
0.000370398
0.000290208
0.000387694
0.00034002
0.000391281
0.000425755
0.000405399
0.000453055
0.000430773
0.000402595
0.00044505
0.000372243
0.000424561
0.000379444
0.000322095
0.000381388
0.000337292
0.00027548
0.000368818
0.000264589
0.000382451
0.000289615
0.000397789
0.000340141
0.000395852
0.000433889
0.000405487
0.000461877
0.000433263
0.000402303
0.000445967
0.000356711
0.000431238
0.000378225
0.000306958
0.000391689
0.000338618
0.000258789
0.000378764
0.00024862
0.00039109
0.000274956
0.000401694
0.000326219
0.00038635
0.000434361
0.000390849
0.00046351
0.000426602
0.000387905
0.000450117
0.000354853
0.000438364
0.000376695
0.000304424
0.000399446
0.000337823
0.000255614
0.00038639
0.000245417
0.000398771
0.000272752
0.000407991
0.000324329
0.000389645
0.000439207
0.000389919
0.000470354
0.000425604
0.000387064
0.000452901
0.000329104
0.000452387
0.000373388
0.000275391
0.000419021
0.000337552
0.000224239
0.000402215
0.000216487
0.000411808
0.000245388
0.000414833
0.000297614
0.000373345
0.000441605
0.000365317
0.000476062
0.000415444
0.000363027
-0.0183561
-0.0177454
-0.0173623
-0.0172034
-0.0173029
-0.01764
-0.0181994
-0.0189318
-0.0198295
-0.0208116
-0.0218162
-0.0227017
-0.0233135
-0.0235103
-0.0233257
-0.0228066
-0.0220218
-0.0210795
-0.020091
-0.0191562
-0.000825001
-0.000741064
-0.000730556
-0.000747415
-0.000854067
-0.00106298
-0.00143309
-0.0018863
-0.00249478
-0.00313949
-0.00385835
-0.00448961
-0.00485842
-0.00480315
-0.00428526
-0.00349114
-0.00262599
-0.00187256
-0.00133075
-0.000998861
-0.00495297
-0.00461127
-0.00446182
-0.00448473
-0.00470246
-0.0049739
-0.00544857
-0.00596952
-0.0067402
-0.00754225
-0.00854927
-0.00943269
-0.00991175
-0.00993996
-0.00948401
-0.00871993
-0.00783004
-0.00694902
-0.00614477
-0.00546309
0.00230391
0.00246898
0.00249764
0.00249915
0.00229124
0.00208185
0.00160689
0.00115491
0.000350116
-0.000431949
-0.0016086
-0.00252803
-0.00286008
-0.00239185
-0.00152273
-0.000514836
0.000399495
0.00112603
0.0016677
0.0020574
-0.000808371
-0.000649962
-0.000664243
-0.000690442
-0.000904683
-0.00105687
-0.00152025
-0.00192575
-0.00280833
-0.00369682
-0.0052228
-0.00629398
-0.00663427
-0.00615577
-0.00512881
-0.00397746
-0.00291837
-0.00209081
-0.00148063
-0.00105468
0.00222002
0.00238939
0.00239055
0.0023888
0.00214952
0.0019799
0.00146074
0.00102432
6.80735e-05
-0.000909205
-0.00260729
-0.0035883
-0.00351469
-0.0026796
-0.00148644
-0.000432971
0.000468759
0.00113235
0.00163268
0.00199572
0.000450381
0.000550844
0.000493289
0.000501419
0.000293828
0.000195325
-0.000262972
-0.000632736
-0.00157831
-0.00263362
-0.0045775
-0.00555076
-0.00522616
-0.00417805
-0.00285464
-0.00180863
-0.000947977
-0.000372792
4.2091e-05
0.000312783
0.00163848
0.00176706
0.00173675
0.00173746
0.00150811
0.00137112
0.000890632
0.000476126
-0.00046483
-0.0015821
-0.00357919
-0.00432226
-0.00358933
-0.0024749
-0.00124148
-0.000381333
0.000353384
0.000832509
0.0012141
0.00147944
0.000753907
0.000827299
0.000769903
0.000781296
0.000591573
0.000507619
0.00010633
-0.00023175
-0.00107761
-0.00216765
-0.00421447
-0.0048447
-0.00386597
-0.00272155
-0.0015407
-0.000817373
-0.000184068
0.000182981
0.000479857
0.000661528
0.00115074
0.00123524
0.00119099
0.00118943
0.000996108
0.000882246
0.000498825
0.000139483
-0.000616374
-0.00165458
-0.00355252
-0.00378939
-0.00272938
-0.00174056
-0.000746986
-0.000213776
0.000316305
0.000607092
0.000877413
0.0010484
0.00073598
0.000790188
0.00074043
0.000746445
0.000589425
0.000521438
0.000217815
-2.85952e-05
-0.000657742
-0.00145604
-0.00329321
-0.00347638
-0.00238969
-0.00160357
-0.000736447
-0.000344049
0.000110019
0.000326106
0.000546533
0.000668626
0.000826065
0.000878074
0.000832875
0.000826809
0.000673852
0.000582975
0.000306886
4.00568e-05
-0.000459297
-0.00117742
-0.00265237
-0.00244729
-0.0015046
-0.000939089
-0.000276583
-4.55738e-05
0.000317345
0.0004686
0.000658192
0.000761642
0.000632276
0.000670798
0.000628913
0.000630356
0.000509561
0.00046501
0.000265552
0.00014892
-0.00021297
-0.0004899
-0.0018604
-0.00198562
-0.00116639
-0.000871281
-0.000281087
-0.000126491
0.000208791
0.000330585
0.00050005
0.000582162
0.00062511
0.000656121
0.000614385
0.000605288
0.000485492
0.000418003
0.000225437
5.83156e-05
-0.000208184
-0.000536619
-0.00133792
-0.0011309
-0.000553514
-0.000408485
4.16864e-06
5.03604e-05
0.000309777
0.000382583
0.00052122
0.000583788
0.000530551
0.000556051
0.000520027
0.000518008
0.000426334
0.000400683
0.000279047
0.000259107
0.000124728
0.000273737
-0.000450999
-0.0011081
-0.000470341
-0.000540767
-9.13442e-05
-4.16846e-05
0.000228537
0.000303673
0.000438093
0.000494124
0.000505258
0.000522656
0.000484933
0.000474005
0.000378714
0.000329562
0.000187299
8.85808e-05
-7.62201e-05
-6.91261e-05
-0.00014365
-0.000665275
-0.000239392
-0.000279575
6.52949e-05
7.38085e-05
0.000288877
0.000331692
0.000438925
0.000478509
0.000457335
0.000471912
0.000439402
0.000433872
0.000361168
0.000342255
0.000258889
0.000243579
0.000154961
0.000170168
-0.000136008
-0.00059472
-0.000227866
-0.000335097
4.87836e-06
2.36106e-05
0.00024004
0.000290323
0.000395194
0.000432755
0.000437745
0.00044546
0.000411275
0.000399183
0.000322481
0.00028594
0.000179671
0.00011
2.06979e-06
-5.76973e-05
-8.92683e-05
-0.000297072
-1.29614e-05
-0.000103091
0.000149166
0.000129542
0.000292957
0.000316653
0.000397323
0.000421726
0.000414224
0.000419701
0.000389302
0.000380547
0.000319716
0.000303312
0.000239714
0.000220773
0.000167059
0.000124786
-2.91791e-06
-0.000294058
-6.37587e-05
-0.000155664
9.48553e-05
0.000100046
0.00026499
0.000297971
0.00037626
0.000399676
0.000404068
0.000404434
0.000373201
0.000360225
0.000297472
0.000270321
0.000190744
0.000140184
6.85945e-05
2.21332e-06
6.22651e-06
-0.000100168
0.000101973
2.18514e-05
0.0002079
0.000185413
0.000308495
0.000322746
0.000382112
0.000396083
0.000394739
0.000392791
0.000364121
0.000352772
0.000299791
0.000285043
0.000231983
0.000212544
0.000176329
0.000129447
7.99714e-05
-9.86422e-05
5.70986e-05
-9.60409e-06
0.00017372
0.000174786
0.00029715
0.000318868
0.000375214
0.000387866
0.000392145
0.000386589
0.000358106
0.000344324
0.000291681
0.000271795
0.000211137
0.000175917
0.000130005
7.58972e-05
9.33331e-05
2.58544e-05
0.000172208
0.000113581
0.000252877
0.000237491
0.000330308
0.000340634
0.000383456
0.000389955
0.00039148
0.000383355
0.000356855
0.000343465
0.000296444
0.000283439
0.000237581
0.000219436
0.000193704
0.000154207
0.000143074
3.76507e-05
0.000151246
0.000106704
0.000240917
0.000241957
0.000331073
0.000346022
0.000385195
0.000389896
0.00039405
0.000383119
0.000357672
0.000342884
0.000297165
0.000282679
0.000235666
0.00021078
0.000182789
0.00014323
0.00016444
0.000116642
0.000224746
0.000185601
0.00029227
0.000285846
0.000355444
0.000364515
0.000394476
0.000395085
0.000398276
0.000384678
0.000361274
0.00034629
0.000303758
0.000293139
0.000253431
0.000236716
0.00022
0.000188454
0.000197395
0.000135826
0.000224467
0.000196044
0.000295734
0.00029911
0.000363079
0.000374732
0.000400906
0.000399525
0.000403781
0.000387741
0.000366081
0.000349884
0.00030896
0.000299168
0.000260697
0.00024173
0.000227595
0.000197097
0.000221953
0.000185679
0.000269857
0.00024524
0.000328199
0.000329664
0.000381079
0.000390364
0.000410005
0.000405913
0.000410183
0.000391795
0.000372703
0.000355669
0.000316862
0.000309234
0.000275168
0.000258464
0.00025127
0.000224379
0.00024602
0.000207393
0.000281232
0.000262337
0.000339224
0.000345919
0.000391401
0.0004024
0.000418213
0.000412543
0.000417384
0.000395399
0.000379303
0.000361364
0.000323114
0.000317711
0.000285172
0.000267615
0.000265607
0.000238304
0.000268821
0.000239061
0.000310117
0.000293646
0.000360432
0.000368034
0.000404181
0.000415389
0.0004267
0.000418371
0.000425019
0.000400486
0.000387556
0.00036799
0.00033086
0.000328652
0.00029778
0.000279546
0.000284456
0.00025574
0.000289298
0.000258053
0.000325419
0.000311173
0.000372647
0.000384057
0.000414614
0.000427497
0.000434733
0.000424966
0.000431254
0.000403331
0.000394635
0.000373628
0.000336888
0.000336954
0.000308145
0.000287273
0.00029882
0.000267974
0.000308081
0.000278435
0.000345301
0.000330278
0.000386947
0.000399562
0.000423257
0.000437942
0.000441288
0.000429856
0.000440008
0.000406938
0.000403561
0.000381421
0.000342987
0.000347665
0.000319221
0.000296334
0.000315377
0.00027972
0.000326263
0.000293158
0.000360133
0.000345004
0.000398305
0.000414329
0.000431048
0.000449215
0.000449602
0.00043488
0.000444911
0.000408303
0.000410016
0.00038526
0.000346602
0.000356181
0.000327701
0.000300489
0.000328581
0.000286378
0.000341683
0.000304012
0.00037392
0.000355658
0.000406227
0.000424845
0.000436093
0.000456909
0.00045278
0.000436963
0.000453141
0.000410838
0.000419469
0.000392139
0.000351044
0.000366664
0.000337181
0.000305831
0.000343209
0.000293949
0.000357561
0.000314318
0.0003879
0.000365947
0.000415502
0.000437209
0.000441805
0.000467363
0.000459619
0.000440773
0.000457259
0.000407676
0.000424932
0.000395178
0.000349721
0.000374813
0.000343156
0.000305382
0.000354352
0.000294393
0.000369561
0.000317164
0.00039675
0.000369075
0.000417901
0.000444253
0.000440918
0.000472135
0.000460439
0.000437973
0.000464086
0.000408902
0.000434729
0.000399996
0.00035249
0.00038513
0.00035044
0.000306686
0.000368306
0.000296955
0.000384289
0.000321932
0.000409398
0.000374603
0.000424998
0.000453827
0.000444588
0.000482099
0.000464966
0.00044087
0.000466595
0.000401161
0.000439916
0.00040063
0.000345711
0.000393285
0.000353888
0.000300335
0.00037746
0.00029091
0.000393167
0.000317455
0.000414458
0.000370318
0.000421917
0.000457007
0.000438131
0.000484447
0.000461799
0.000433065
0.000473123
0.000399934
0.000449411
0.000403705
0.000344736
0.000403256
0.000358314
0.000298257
0.000389683
0.000289454
0.000405803
0.000317611
0.000425004
0.000371082
0.000426854
0.000465525
0.000438748
0.000493623
0.00046481
0.00043334
0.000474287
0.00038501
0.000456469
0.000403072
0.000330383
0.000413999
0.000360285
0.000282368
0.000400006
0.000274227
0.000414671
0.000303665
0.00042903
0.000357783
0.000417617
0.000466049
0.000424627
0.000495307
0.000458448
0.000419538
0.000478669
0.000383492
0.000463891
0.000401971
0.000328238
0.00042209
0.000359981
0.000279588
0.000407974
0.000271431
0.00042264
0.000301864
0.000435545
0.000356268
0.00042105
0.000471099
0.000424009
0.000502316
0.000457774
0.000419005
0.00048142
0.000358269
0.000478018
0.000399163
0.000299921
0.000441781
0.000360239
0.000248947
0.00042384
0.000243134
0.000435559
0.00027514
0.000442155
0.000330178
0.000404721
0.000473199
0.00039993
0.000507707
0.000447796
0.000395569
-0.0184138
-0.0178226
-0.0174633
-0.0173293
-0.0174535
-0.0178117
-0.0183908
-0.0191401
-0.0200553
-0.0210513
-0.0220658
-0.0229509
-0.0235443
-0.023709
-0.0234869
-0.0229291
-0.0221107
-0.0211434
-0.0201406
-0.0192038
-0.000870021
-0.000778199
-0.000759192
-0.00077262
-0.00088993
-0.0011099
-0.00149705
-0.0019621
-0.00258738
-0.00324077
-0.00397146
-0.00460505
-0.00495986
-0.00486726
-0.00430662
-0.00348866
-0.0026191
-0.00188152
-0.00136213
-0.00104375
-0.00498335
-0.00465562
-0.00452394
-0.00455992
-0.00478934
-0.00506535
-0.00555506
-0.00608205
-0.00687507
-0.00768755
-0.00872071
-0.0096112
-0.0100691
-0.0100682
-0.00957348
-0.00877253
-0.0078625
-0.00696886
-0.00615937
-0.00548148
0.00224673
0.00241067
0.00243372
0.00243026
0.00220847
0.00199528
0.00149951
0.00104424
0.000210627
-0.000581055
-0.00179554
-0.00272016
-0.00301796
-0.00248643
-0.00157904
-0.000557077
0.000357811
0.00107904
0.00161586
0.00200275
-0.000837969
-0.000686051
-0.000713408
-0.000738846
-0.000966508
-0.00111709
-0.00160445
-0.00201148
-0.00293032
-0.00383284
-0.00540895
-0.00646767
-0.00677111
-0.0062226
-0.0051349
-0.00396276
-0.00290313
-0.00208619
-0.00148796
-0.00107304
0.00215305
0.00231886
0.00230882
0.00230452
0.00204781
0.00188144
0.00133602
0.000901138
-9.30573e-05
-0.0010856
-0.00283494
-0.00379994
-0.00364492
-0.00275631
-0.00153037
-0.000472067
0.000428042
0.00108439
0.00157849
0.00193584
0.000421136
0.000518336
0.000450748
0.000461077
0.000235968
0.000141536
-0.000345527
-0.000714437
-0.00170147
-0.00277664
-0.00477696
-0.00571802
-0.0052899
-0.0041866
-0.00283825
-0.00179766
-0.000943918
-0.000380081
2.70505e-05
0.000290891
0.00157433
0.00169898
0.00165586
0.00165791
0.00141098
0.00127968
0.000773216
0.000361174
-0.000616578
-0.001754
-0.00380572
-0.00448968
-0.00367272
-0.00251768
-0.00126751
-0.000415159
0.000317228
0.00078755
0.0011639
0.0014231
0.000722822
0.000794062
0.00072724
0.000740014
0.00053303
0.000453115
2.61917e-05
-0.000310887
-0.00119241
-0.00230166
-0.00440986
-0.00496413
-0.00389442
-0.00272623
-0.00153464
-0.000824693
-0.000192654
0.000165775
0.000459209
0.000636215
0.00109724
0.00117821
0.00112302
0.00112238
0.000914015
0.000804396
0.000400887
4.11073e-05
-0.000740136
-0.00180136
-0.00375024
-0.00390078
-0.00276339
-0.00176928
-0.000764159
-0.0002453
0.000286633
0.000569008
0.000836274
0.00100174
0.000704768
0.000756642
0.000697967
0.000704243
0.000533145
0.000467921
0.00014656
-9.93982e-05
-0.000750438
-0.00156156
-0.00345559
-0.00355166
-0.00240034
-0.00162061
-0.000740159
-0.000362527
9.63754e-05
0.000305303
0.000524551
0.000642569
0.000784809
0.000833517
0.000779275
0.000772994
0.000608202
0.000519326
0.000230289
-3.96912e-05
-0.000549224
-0.0012891
-0.00279386
-0.00250938
-0.00151403
-0.000965495
-0.00028872
-7.34945e-05
0.000295393
0.000439224
0.00062747
0.000726157
0.000604378
0.000640063
0.000590204
0.000590789
0.000459434
0.000416368
0.000207257
9.1382e-05
-0.000276329
-0.000555228
-0.00196372
-0.00204433
-0.00117217
-0.000898853
-0.000287888
-0.00014714
0.000196411
0.000311975
0.000481027
0.000559152
0.000595104
0.000622849
0.000573497
0.00056323
0.00043423
0.000367421
0.000166843
-3.34722e-06
-0.000269447
-0.000613382
-0.00141752
-0.00116601
-0.000552801
-0.000433708
-2.64363e-06
2.89812e-05
0.000296025
0.000362502
0.000500442
0.000558816
0.000508684
0.000530973
0.000487912
0.000484264
0.000384573
0.000359616
0.00023335
0.000214944
8.50709e-05
0.000239802
-0.000499878
-0.00117491
-0.000472103
-0.000570759
-9.48938e-05
-5.71991e-05
0.000221406
0.000291059
0.000424875
0.000476986
0.000485099
0.000499211
0.000454901
0.000442223
0.000339569
0.000290633
0.000142751
4.28281e-05
-0.000119976
-0.000113891
-0.000183596
-0.000710052
-0.000239042
-0.000299226
6.55875e-05
6.1974e-05
0.000283435
0.000320815
0.000427158
0.00046295
0.000442788
0.000454007
0.000415257
0.000407679
0.000328458
0.000309787
0.000223482
0.0002092
0.000126516
0.00014058
-0.000164223
-0.000641679
-0.000232867
-0.000356801
5.02273e-06
1.57272e-05
0.000239076
0.000284985
0.000388848
0.000422731
0.000426274
0.000430736
0.000390759
0.000376634
0.000293876
0.000257434
0.000146976
7.72084e-05
-2.91785e-05
-9.09112e-05
-0.000113343
-0.000322557
-1.02918e-05
-0.000115054
0.00015301
0.000125211
0.000293947
0.000313788
0.000393434
0.000414509
0.000407182
0.000409346
0.000373393
0.000362426
0.000296005
0.00027968
0.000213284
0.000195623
0.000146072
0.00010286
-1.96701e-05
-0.000322602
-6.55824e-05
-0.000166834
9.9906e-05
0.000100035
0.000270038
0.00029979
0.000376767
0.000396876
0.000400364
0.000397587
0.000361208
0.000346112
0.000278241
0.000251231
0.00016835
0.000118723
4.83103e-05
-1.91272e-05
-6.03336e-06
-0.000113765
0.000106854
1.77175e-05
0.00021547
0.000188243
0.000315373
0.000327067
0.00038526
0.000396323
0.000394785
0.000389689
0.000356077
0.000342513
0.000284658
0.000269938
0.000213942
0.000196176
0.000161883
0.000115725
7.11809e-05
-0.000112283
6.06195e-05
-1.07202e-05
0.000183908
0.000182095
0.000307839
0.000327238
0.000382091
0.00039183
0.000395357
0.000386835
0.000353757
0.000337879
0.00028082
0.000261118
0.000197624
0.000164226
0.000118986
6.56453e-05
8.95759e-05
2.14154e-05
0.000179895
0.000116768
0.000264528
0.000246939
0.000342682
0.000351342
0.000392873
0.000396816
0.00039791
0.000386876
0.000355981
0.000340468
0.000289213
0.000276226
0.000227497
0.000211315
0.00018597
0.00014846
0.000141252
3.54829e-05
0.000160165
0.000114004
0.000255804
0.000255501
0.000346802
0.000360116
0.000397751
0.000399916
0.000403314
0.000389648
0.00036009
0.000343297
0.000293731
0.0002794
0.000229813
0.000207232
0.000179256
0.000142046
0.000167154
0.000120001
0.000236015
0.00019554
0.000308227
0.000301184
0.000372819
0.000380757
0.000409367
0.000407722
0.000410269
0.000394043
0.000366718
0.000349758
0.00030357
0.000292961
0.000250633
0.000236079
0.000218926
0.000190211
0.000201886
0.000142309
0.000238093
0.000209928
0.000314705
0.000317783
0.000383205
0.000393696
0.000418382
0.000414806
0.000418222
0.000399723
0.000374365
0.000356299
0.000312025
0.000302306
0.00026149
0.000244938
0.000230272
0.000203022
0.000229983
0.000195744
0.000285093
0.000261107
0.000348291
0.00035
0.000402823
0.000411258
0.000429556
0.000423481
0.000426888
0.000406181
0.000383561
0.000364726
0.000322767
0.000315114
0.000278747
0.000264288
0.000256251
0.000232737
0.000255983
0.000220444
0.000298838
0.000281369
0.000361727
0.000368774
0.000415301
0.000425421
0.000439851
0.000432289
0.00043614
0.000412003
0.000392547
0.000372907
0.000331749
0.000326319
0.000291689
0.000276475
0.000273577
0.000249912
0.000281447
0.000254718
0.000329114
0.000314425
0.000384159
0.000392425
0.000429599
0.000440077
0.000450113
0.000440058
0.000445605
0.000419081
0.000402927
0.000381752
0.000341902
0.000339598
0.000306743
0.000290732
0.000294578
0.000269543
0.00030382
0.00027619
0.000346361
0.000334299
0.000398179
0.000410283
0.000441693
0.000453814
0.0004598
0.000448418
0.000453502
0.000423763
0.000411957
0.000389438
0.000350177
0.000350106
0.000319474
0.000300829
0.000311252
0.000284209
0.000324603
0.000298609
0.000367535
0.000354961
0.000413676
0.000427113
0.000451674
0.000465629
0.000467819
0.000454913
0.000463689
0.000428978
0.000422584
0.000399042
0.000358251
0.000362731
0.000332598
0.000311857
0.00032967
0.00029785
0.000344426
0.000315272
0.000383841
0.000371397
0.000426356
0.000443195
0.000460738
0.00047812
0.00047742
0.000461339
0.000469882
0.000431826
0.000430574
0.000404516
0.000363669
0.000372977
0.000342941
0.000317861
0.000344626
0.000306344
0.000361345
0.000327744
0.000398729
0.000383368
0.000435314
0.000454763
0.0004669
0.000486871
0.000481749
0.000464714
0.000479193
0.000435625
0.000441341
0.000412837
0.000369684
0.000384962
0.00035407
0.000324792
0.000360743
0.000315454
0.000378518
0.000339533
0.000413784
0.000394914
0.000445538
0.000468047
0.000473587
0.000498204
0.000489572
0.000469622
0.000484242
0.000433618
0.000447937
0.000417117
0.000369766
0.000394394
0.000361449
0.000325766
0.000373149
0.000317283
0.000391579
0.000343641
0.000423452
0.000399094
0.000448741
0.000475833
0.000473586
0.000503711
0.000491241
0.000467828
0.000491843
0.000435807
0.000458709
0.000423056
0.000373735
0.000405828
0.000370015
0.000328291
0.00038821
0.000321031
0.000407248
0.000349522
0.000436846
0.000405553
0.000456484
0.000486025
0.000478001
0.000514274
0.000496512
0.000471569
0.000494938
0.000428934
0.000464646
0.000424577
0.000368023
0.000414842
0.000374459
0.00032302
0.000398175
0.000316017
0.000416771
0.000346003
0.000442385
0.000402076
0.000453949
0.000489611
0.000472221
0.000517025
0.000493901
0.000464533
0.000501971
0.000428387
0.000474798
0.000428469
0.000367887
0.000425561
0.000379814
0.000321793
0.000411138
0.000315392
0.000430021
0.000346948
0.0004534
0.000403506
0.000459266
0.000498516
0.000473388
0.000526568
0.00049746
0.000465416
0.000503396
0.00041411
0.000482266
0.000428459
0.000354369
0.000436778
0.000382469
0.000306755
0.000421857
0.000300947
0.000439127
0.000333744
0.000457547
0.000390849
0.000450308
0.000499087
0.0004598
0.000528306
0.000491405
0.000452236
0.00050803
0.000412964
0.000490014
0.000427826
0.000352653
0.000445238
0.000382699
0.000304409
0.000430197
0.00029859
0.000447403
0.000332372
0.000464288
0.000389723
0.000453886
0.000504342
0.000459512
0.000535488
0.000491071
0.000452034
0.000510743
0.000388285
0.000504254
0.000425531
0.00032508
0.000465048
0.000383496
0.000274527
0.000446095
0.00027095
0.000460186
0.000306305
0.000470646
0.000364273
0.000437533
0.000506123
0.000435963
0.000540548
0.000481268
0.000429208
-0.0184726
-0.017903
-0.0175681
-0.0174595
-0.0176077
-0.0179854
-0.0185832
-0.0193487
-0.0202814
-0.021291
-0.0223151
-0.0231986
-0.0237709
-0.0239017
-0.0236412
-0.0230442
-0.0221924
-0.021201
-0.0201856
-0.0192497
-0.000912336
-0.000811341
-0.000784631
-0.000796695
-0.000926774
-0.00115851
-0.00156312
-0.00203925
-0.00268117
-0.00334202
-0.00408438
-0.00471973
-0.00505902
-0.0049282
-0.00432414
-0.00348336
-0.0026134
-0.00189501
-0.00139756
-0.00108927
-0.00501209
-0.00469921
-0.00458614
-0.0046334
-0.00487463
-0.00515525
-0.00566097
-0.00619334
-0.0070101
-0.00783228
-0.00889337
-0.00978968
-0.0102255
-0.0101885
-0.00965426
-0.00881821
-0.00788812
-0.00698204
-0.00616871
-0.00549659
0.00218832
0.00235081
0.00236751
0.00235805
0.00212158
0.00190537
0.00138752
0.000930605
6.6587e-05
-0.00073311
-0.00198699
-0.00291507
-0.00317287
-0.00257969
-0.00163395
-0.000600027
0.000314707
0.00103057
0.00156278
0.00194703
-0.000867182
-0.000722119
-0.000763379
-0.000787694
-0.00102971
-0.00117745
-0.00169088
-0.00209747
-0.00305504
-0.00397045
-0.00559784
-0.00664356
-0.00690387
-0.00628112
-0.00513359
-0.00394314
-0.00288488
-0.00207961
-0.00149393
-0.00109064
0.00208222
0.00224378
0.00222122
0.0022154
0.00193978
0.00177856
0.00120454
0.000774045
-0.000261015
-0.0012667
-0.00306966
-0.00401431
-0.00377281
-0.00283024
-0.00157334
-0.000511472
0.000386164
0.00103452
0.00152187
0.00187284
0.000390032
0.000483519
0.000405462
0.000417992
0.000173634
8.51076e-05
-0.000433383
-0.00079831
-0.00182984
-0.00292218
-0.00498072
-0.00588433
-0.00534802
-0.00418996
-0.00281907
-0.00178558
-0.000939374
-0.000387564
1.13535e-05
0.000267717
0.00150559
0.00162569
0.00156886
0.00157273
0.00130669
0.0011832
0.00064824
0.000241888
-0.00077554
-0.0019304
-0.0040372
-0.00465541
-0.00375408
-0.00255926
-0.00129289
-0.000449796
0.000279877
0.000740462
0.00111085
0.00136302
0.000687868
0.000756349
0.00067906
0.000693492
0.000467686
0.000393681
-6.11157e-05
-0.000394161
-0.0013137
-0.0024395
-0.00461332
-0.00507624
-0.00391641
-0.00272955
-0.00152774
-0.00083261
-0.000201875
0.000147051
0.000436394
0.000607884
0.00103895
0.00111572
0.0010487
0.00104926
0.000824522
0.00072084
0.000295502
-6.23566e-05
-0.000870174
-0.0019534
-0.00395433
-0.00401187
-0.00279414
-0.00179805
-0.000780757
-0.000277854
0.000255919
0.000528819
0.000792255
0.000951247
0.000668736
0.000717542
0.000648917
0.000655536
0.000469172
0.000408134
6.77876e-05
-0.000175588
-0.000848948
-0.00167152
-0.00362344
-0.00362568
-0.00240879
-0.00163876
-0.000743469
-0.00038217
8.17264e-05
0.000282432
0.000499707
0.000612676
0.000738852
0.00078352
0.000719343
0.000712865
0.000535253
0.000449517
0.000146721
-0.000125112
-0.000644073
-0.00140654
-0.00293831
-0.00257001
-0.0015209
-0.000993065
-0.000300156
-0.000102469
0.000272543
0.000407878
0.000593974
0.000686936
0.000571636
0.000603688
0.000544918
0.000544526
0.000401774
0.000361109
0.000142008
2.81081e-05
-0.000343938
-0.000624719
-0.00206917
-0.00210459
-0.0011762
-0.00092828
-0.000294132
-0.000168883
0.000183089
0.000291368
0.000459148
0.000532306
0.000560721
0.000584435
0.000526621
0.000515017
0.00037609
0.000310699
0.000101838
-7.06443e-05
-0.000334789
-0.000695717
-0.00149777
-0.0012012
-0.000549615
-0.000460381
-8.63365e-06
6.75325e-06
0.000281521
0.000340719
0.000477149
0.000530421
0.000482504
0.00050079
0.000449854
0.00044433
0.000335997
0.000312317
0.00018151
0.000165401
4.22715e-05
0.000202158
-0.000549114
-0.00124562
-0.000471907
-0.000602265
-9.77312e-05
-7.34214e-05
0.00021357
0.000276844
0.000409205
0.000456491
0.000461141
0.000471217
0.000419547
0.000404852
0.000294269
0.000246062
9.24622e-05
-7.94144e-06
-0.00016749
-0.000162846
-0.000224516
-0.000756266
-0.000236554
-0.000319746
6.67206e-05
4.96265e-05
0.000277423
0.000308624
0.000413301
0.000444486
0.0004247
0.000431823
0.000386089
0.000376159
0.000289902
0.000271891
0.000182725
0.000170184
9.51709e-05
0.000107823
-0.000192905
-0.000691714
-0.000236756
-0.000379296
5.96001e-06
7.6381e-06
0.000237733
0.000278564
0.000380623
0.000410035
0.000411747
0.000412261
0.000365799
0.000349337
0.000260054
0.000224094
0.000109391
4.02588e-05
-6.36565e-05
-0.000127448
-0.00013815
-0.000349129
-6.28045e-06
-0.000127417
0.000157547
0.000120793
0.000294671
0.000310104
0.000388007
0.000405041
0.000397436
0.000395624
0.000353468
0.000339976
0.000267515
0.00025159
0.000182341
0.000166729
0.000122388
7.84894e-05
-3.72251e-05
-0.000352868
-6.66154e-05
-0.000178231
0.000105753
0.000100268
0.000275048
0.00030105
0.000376004
0.000392131
0.000394391
0.000387852
0.000345727
0.000328205
0.000254819
0.000228247
0.000141992
9.40579e-05
2.5406e-05
-4.27463e-05
-1.88467e-05
-0.000128095
0.000112503
1.3565e-05
0.000223693
0.000191388
0.000322327
0.000331065
0.000387449
0.000394995
0.000392924
0.000384105
0.000345
0.00032892
0.000265812
0.000251364
0.0001923
0.000176953
0.000145027
0.00010025
6.16082e-05
-0.000126659
6.48145e-05
-1.1452e-05
0.000194949
0.000190005
0.000318811
0.000335515
0.000388271
0.000394535
0.00039704
0.000385019
0.00034684
0.000328581
0.00026677
0.000247479
0.000181048
0.000150218
0.000105952
5.40481e-05
8.53616e-05
1.66342e-05
0.000188126
0.000120349
0.000276929
0.000257057
0.000355469
0.000362168
0.000401868
0.000402744
0.000403139
0.000388709
0.000352958
0.000335051
0.000279256
0.000266469
0.00021473
0.000201183
0.000176376
0.000141615
0.000138889
3.32687e-05
0.00016978
0.00012206
0.000271626
0.00026991
0.000363106
0.000374509
0.000410109
0.000409275
0.000411694
0.000394848
0.000360756
0.000341703
0.000288021
0.000274005
0.000221732
0.000202115
0.00017426
0.000140193
0.000169573
0.000123454
0.00024786
0.00020624
0.000325102
0.000317476
0.000390905
0.000397481
0.000424293
0.000419971
0.000421652
0.000402397
0.000370771
0.000351598
0.000301517
0.000291046
0.000245986
0.000234175
0.000216611
0.000191482
0.000206167
0.000149188
0.00025248
0.000224801
0.000334712
0.000337522
0.000404156
0.000413278
0.000436075
0.000429927
0.000432307
0.000410986
0.000381583
0.000361429
0.000313599
0.000304056
0.000260802
0.000247208
0.000232016
0.000208769
0.000237961
0.000206293
0.000301069
0.000278015
0.000369472
0.000371496
0.000425516
0.000432914
0.000449506
0.000441105
0.000443457
0.000420108
0.000393644
0.00037281
0.000327523
0.000319927
0.000281183
0.000269455
0.000260552
0.00024111
0.000266068
0.000234197
0.000317298
0.000301562
0.000385386
0.000392849
0.000440232
0.000449305
0.00046203
0.000452273
0.000454955
0.000428381
0.000405275
0.000383753
0.000339538
0.00033414
0.000297357
0.000284924
0.000281101
0.000261733
0.000294317
0.000271168
0.000349013
0.000336438
0.000409117
0.000418112
0.000456146
0.000465734
0.000474205
0.000462151
0.000466418
0.000437653
0.000418008
0.000395064
0.000352369
0.000350014
0.000315133
0.000301741
0.000304483
0.000283739
0.000318744
0.000295258
0.000368286
0.000358723
0.000424986
0.00043784
0.000469963
0.000481173
0.000485654
0.000472414
0.000476123
0.000444352
0.000429186
0.000405013
0.000363127
0.000362947
0.000330462
0.000314405
0.000323651
0.00030098
0.000341633
0.000319803
0.000390818
0.000381009
0.000441743
0.00045605
0.000481354
0.000494433
0.000495235
0.00048064
0.000487866
0.000451329
0.000441683
0.000416613
0.000373386
0.000377681
0.000345844
0.00032758
0.000344107
0.000316657
0.000363219
0.0003385
0.000408657
0.000399196
0.00045578
0.00047347
0.000491738
0.000508193
0.000506201
0.000488574
0.000495453
0.000455793
0.000451353
0.000423883
0.000380786
0.000389822
0.000358227
0.000335587
0.000360956
0.0003271
0.000381726
0.000352665
0.000424703
0.000412534
0.00046582
0.000486122
0.000499066
0.00051805
0.000511751
0.000493332
0.000505928
0.000460971
0.000463557
0.000433784
0.000388526
0.000403451
0.000371158
0.000344241
0.000378689
0.000337853
0.000400278
0.000366002
0.000440873
0.000425368
0.000477021
0.000500339
0.000506763
0.000530293
0.00052061
0.000499413
0.00051198
0.000460215
0.000471386
0.000439418
0.000390143
0.000414281
0.000380067
0.000346752
0.000392459
0.000341153
0.000414465
0.000371431
0.000451398
0.000430635
0.000481059
0.000508884
0.000507681
0.000536566
0.000523173
0.000498692
0.000520409
0.000463449
0.000483217
0.000446576
0.000395424
0.000426932
0.000390021
0.000350599
0.000408712
0.000346162
0.00043113
0.000378475
0.000465565
0.000438051
0.000489469
0.000519698
0.000512865
0.000547747
0.000529221
0.000503328
0.00052413
0.000457508
0.000489963
0.000449056
0.000390864
0.000436877
0.000395539
0.000346485
0.000419547
0.000342239
0.000441333
0.000375953
0.000471601
0.000435404
0.000487499
0.000523694
0.000507784
0.000550913
0.000527191
0.000497104
0.000531702
0.000457695
0.00050083
0.000453831
0.000391642
0.000448407
0.000401897
0.000346179
0.000433303
0.000342501
0.00045523
0.000377727
0.000483103
0.000437522
0.00049321
0.000532987
0.00050952
0.000560835
0.000531322
0.000498632
0.000533402
0.000444103
0.000508735
0.000454478
0.000379011
0.000460128
0.00040527
0.000332039
0.000444439
0.000328873
0.000464582
0.000365287
0.000487366
0.00042552
0.000484541
0.000533594
0.000496476
0.000562625
0.000525578
0.000486093
0.000538307
0.000443358
0.000516841
0.000454353
0.000377766
0.000468992
0.000406077
0.000330166
0.000453178
0.000326988
0.000473182
0.00036437
0.000494342
0.000424798
0.000488272
0.000539055
0.000496533
0.000569983
0.000525597
0.000486246
0.000540973
0.000419241
0.0005312
0.000452581
0.000350961
0.000488918
0.000407422
0.000301069
0.000469098
0.000300023
0.000485809
0.000338972
0.000500428
0.000399997
0.000471897
0.00054049
0.00047352
0.000574699
0.000515956
0.000464035
-0.0185325
-0.0179867
-0.0176766
-0.0175933
-0.0177645
-0.0181603
-0.0187763
-0.0195574
-0.0205079
-0.021531
-0.0225645
-0.0234453
-0.0239944
-0.0240898
-0.0237891
-0.0231521
-0.0222669
-0.0212519
-0.0202259
-0.0192938
-0.000953613
-0.000842951
-0.000809986
-0.000822698
-0.000967397
-0.00121169
-0.00163417
-0.00212049
-0.00277897
-0.00344603
-0.00419995
-0.00483595
-0.00515648
-0.00498656
-0.00434187
-0.00347899
-0.00261246
-0.0019159
-0.0014388
-0.0011367
-0.00503904
-0.00474191
-0.00464809
-0.0047058
-0.00495901
-0.00524372
-0.00576636
-0.00630328
-0.00714529
-0.00797649
-0.00906772
-0.00996888
-0.0103826
-0.0103006
-0.0097242
-0.00885538
-0.0079054
-0.0069875
-0.00617225
-0.00550817
0.00212676
0.00228735
0.0022968
0.00228034
0.0020282
0.00180992
0.00126859
0.000811952
-8.42678e-05
-0.000890217
-0.00218518
-0.00311355
-0.0033241
-0.00267435
-0.0016892
-0.000645146
0.000268674
0.000979088
0.00150688
0.00188848
-0.00089622
-0.000758612
-0.000814303
-0.000837238
-0.00109479
-0.0012383
-0.00178018
-0.00218395
-0.00318318
-0.00411012
-0.00579019
-0.00682322
-0.0070318
-0.00632954
-0.00512406
-0.00391812
-0.00286337
-0.00207101
-0.0014986
-0.00110766
0.0020061
0.00216254
0.00212608
0.0021197
0.00182366
0.00166974
0.00106444
0.000641752
-0.000437631
-0.00145403
-0.00331349
-0.00423249
-0.0039009
-0.0029026
-0.00161643
-0.000552163
0.000342129
0.000981685
0.00146163
0.00180538
0.000356491
0.000445683
0.000356558
0.000371359
0.000105876
2.53256e-05
-0.000527628
-0.00088484
-0.00196447
-0.00307072
-0.00518947
-0.00604686
-0.00540038
-0.00418814
-0.00279724
-0.00177259
-0.00093457
-0.000395534
-5.37655e-06
0.000242771
0.00143134
0.00154612
0.00147465
0.00148073
0.00119393
0.00108059
0.000514235
0.000117398
-0.000943218
-0.00211249
-0.00427792
-0.00482417
-0.00383219
-0.00259983
-0.00131793
-0.000485702
0.000240816
0.00069064
0.00105424
0.00129836
0.000648431
0.000713397
0.000624512
0.000640813
0.000394483
0.00032848
-0.000156776
-0.000482217
-0.00144255
-0.00258184
-0.00482436
-0.00518161
-0.00393389
-0.00273214
-0.00152019
-0.000841339
-0.000211956
0.000126517
0.000411016
0.000576022
0.000975279
0.00104702
0.000967169
0.000969111
0.000726559
0.000630703
0.000181514
-0.000171615
-0.00100742
-0.00211149
-0.00416513
-0.00412034
-0.00282154
-0.00182715
-0.000796897
-0.000311654
0.000223934
0.000486241
0.00074496
0.000896396
0.000627382
0.00067223
0.000592528
0.000599483
0.00039654
0.000341253
-1.95455e-05
-0.000257864
-0.000954049
-0.00178669
-0.00379711
-0.00369849
-0.00241507
-0.00165824
-0.00074634
-0.000403052
6.59714e-05
0.000257336
0.000471728
0.000578559
0.000687776
0.000727514
0.000652413
0.000645662
0.000454137
0.000372795
5.52757e-05
-0.000216852
-0.000744415
-0.00153058
-0.00308571
-0.00262939
-0.0015251
-0.00102207
-0.000310839
-0.000132546
0.000248741
0.00037448
0.000557507
0.000643682
0.000533711
0.000561187
0.00049247
0.000490878
0.00033579
0.000298502
6.89713e-05
-4.15804e-05
-0.000416261
-0.000699158
-0.00217668
-0.00216684
-0.00117823
-0.00095971
-0.000299649
-0.000191651
0.000168856
0.000268763
0.000434293
0.000501403
0.000521705
0.000540476
0.00047326
0.000460049
0.000310387
0.000247208
2.9716e-05
-0.000144118
-0.000404589
-0.000784302
-0.0015784
-0.00123685
-0.000543656
-0.00048868
-1.36735e-05
-1.62478e-05
0.00026632
0.000317285
0.000451284
0.000498459
0.00045182
0.000465182
0.000405436
0.000397688
0.000280002
0.000258202
0.000122885
0.000109912
-3.95522e-06
0.000160139
-0.000598544
-0.00132072
-0.00046947
-0.000635251
-9.96479e-05
-9.01721e-05
0.000205152
0.000261143
0.000391089
0.000432563
0.000433258
0.000438425
0.000378529
0.000361455
0.000242303
0.000195367
3.58971e-05
-6.41262e-05
-0.000219057
-0.000216399
-0.000266324
-0.000804122
-0.00023169
-0.000341194
6.88357e-05
3.69282e-05
0.000270967
0.000295264
0.000397402
0.000423092
0.000403003
0.000405181
0.000351631
0.000338958
0.000245069
0.000228144
0.000136134
0.000126146
6.07248e-05
7.15594e-05
-0.00022198
-0.000745124
-0.000239299
-0.000402471
7.90685e-06
-4.17367e-07
0.000236188
0.00027125
0.000370615
0.000394694
0.00039414
0.000389908
0.000336195
0.000317006
0.000220669
0.000185589
6.65366e-05
-1.10269e-06
-0.000101654
-0.000167558
-0.000163525
-0.000376816
-7.98959e-07
-0.000140187
0.000162924
0.00011651
0.000295306
0.000305803
0.000381165
0.000393383
0.000385007
0.000378466
0.000329389
0.000312981
0.000233967
0.00021877
0.000146544
0.000133866
9.57903e-05
5.15368e-05
-5.5579e-05
-0.000384924
-6.6689e-05
-0.000189651
0.000112605
0.000101014
0.000280228
0.000301976
0.000374125
0.000385539
0.000386203
0.000375201
0.000326669
0.000306348
0.000226997
0.000201173
0.000111425
6.60674e-05
-2.51585e-07
-6.86822e-05
-3.21514e-05
-0.000143168
0.000119031
9.53022e-06
0.000232728
0.000195098
0.000329564
0.000334968
0.000388849
0.000392218
0.00038924
0.000376052
0.000330846
0.000311891
0.000243103
0.000229173
0.00016685
0.000154771
0.000125596
8.29938e-05
5.12562e-05
-0.000141681
6.98394e-05
-1.15761e-05
0.000207043
0.000198784
0.000330289
0.000343934
0.000393938
0.000396119
0.0003973
0.000381184
0.000337351
0.000316372
0.000249437
0.000230785
0.000161273
0.000133863
9.08259e-05
4.11685e-05
8.07312e-05
1.15754e-05
0.00019699
0.000124503
0.00029025
0.000268101
0.000368892
0.000373349
0.000410633
0.000407892
0.000407289
0.000388924
0.000347817
0.000327198
0.000266524
0.000254115
0.000199188
0.000189027
0.000164846
0.000133722
0.000136019
3.11508e-05
0.00018023
0.00013109
0.000288571
0.000285436
0.000380204
0.000389434
0.000422467
0.000418136
0.000419324
0.000398805
0.000359727
0.000338118
0.000280024
0.000266477
0.000211379
0.000195459
0.000167776
0.000137776
0.000171741
0.000127118
0.000260392
0.000217899
0.000343078
0.000334967
0.000409921
0.000414914
0.00043945
0.000432
0.000432569
0.000409844
0.000373509
0.000351853
0.000297621
0.00028741
0.000239483
0.000231052
0.000213055
0.00019237
0.000210298
0.000156616
0.000267761
0.000240867
0.000355938
0.000358558
0.000426143
0.000433696
0.00045418
0.000445057
0.000446185
0.000421645
0.000387828
0.000365337
0.000313731
0.000304459
0.000258657
0.000248608
0.000232856
0.000214458
0.000245967
0.000217473
0.000317902
0.000296162
0.000391924
0.000394374
0.000449366
0.000455544
0.000470047
0.000458955
0.00046004
0.000433698
0.00040306
0.000380001
0.0003312
0.000323736
0.000282527
0.000274047
0.000264228
0.000249625
0.000276365
0.000248804
0.000336746
0.000323103
0.000410378
0.000418354
0.000466393
0.000474254
0.000484937
0.000472663
0.000473981
0.000444658
0.000417601
0.000393994
0.000346565
0.000341253
0.000302249
0.000293057
0.000288254
0.000273897
0.000307531
0.000288561
0.00036995
0.000359868
0.000435479
0.000445296
0.000484014
0.000492554
0.000499156
0.000484812
0.000487607
0.00045633
0.000432919
0.000408025
0.000362358
0.000359989
0.000323037
0.000312677
0.000314259
0.000298462
0.000334178
0.000315405
0.000391332
0.000384617
0.000453235
0.000466921
0.000499606
0.00050976
0.000512467
0.000497114
0.000499264
0.000465225
0.000446447
0.000420459
0.000375845
0.000375578
0.00034121
0.000328106
0.000336119
0.000318416
0.000359289
0.000342162
0.00041529
0.000408586
0.000471312
0.000486554
0.000512469
0.000524528
0.000523702
0.00050719
0.000512679
0.000474116
0.000460983
0.000434246
0.0003885
0.000392621
0.000359066
0.000343614
0.000358799
0.000336271
0.000382762
0.00036298
0.000434718
0.000428556
0.000486734
0.000505324
0.000524211
0.000539599
0.000536101
0.000516729
0.000521762
0.00048033
0.000472479
0.000443476
0.000398067
0.000406827
0.000373673
0.000353778
0.000377691
0.000348771
0.000402952
0.00037891
0.000451981
0.000443305
0.000497898
0.000519084
0.000532746
0.000550603
0.000542934
0.000522957
0.00053348
0.000486995
0.000486238
0.000455091
0.000407687
0.000422243
0.000388561
0.000364292
0.00039717
0.000361269
0.000422968
0.000393854
0.000469303
0.000457449
0.000510097
0.000534239
0.000541477
0.000563781
0.000552874
0.000530278
0.000540601
0.000487586
0.0004954
0.000462195
0.00041097
0.000434589
0.000399127
0.000368454
0.000412409
0.000366122
0.000438349
0.00040066
0.000480725
0.000463833
0.000514998
0.000543551
0.000543343
0.000570842
0.000556369
0.00053069
0.000549908
0.000491939
0.000508372
0.000470666
0.000417671
0.000448556
0.000410578
0.00037372
0.000429938
0.000372466
0.000456065
0.000408909
0.000495688
0.000472222
0.000524087
0.000554985
0.000549312
0.000582653
0.000563222
0.000536268
0.000554292
0.000486995
0.000515987
0.000474174
0.00041435
0.000459501
0.000417246
0.000370842
0.000441703
0.000369693
0.000466985
0.000407424
0.00050224
0.000470426
0.000522699
0.000559389
0.000544947
0.000586243
0.000561791
0.000530893
0.000562434
0.000487965
0.000527624
0.000479899
0.000416113
0.000471907
0.000424679
0.000371524
0.000456306
0.000370891
0.00048156
0.000410056
0.000514241
0.000473245
0.000528813
0.000569064
0.000547263
0.000596547
0.00056651
0.000533097
0.000564416
0.000475094
0.000535991
0.000481234
0.000404418
0.000484159
0.000428804
0.000358329
0.000467875
0.000358118
0.000491164
0.000398405
0.000518615
0.000461912
0.000520444
0.000569693
0.000534772
0.000598384
0.000561077
0.000521219
0.000569609
0.000474776
0.000544486
0.000481653
0.000403683
0.000493462
0.00043023
0.000356964
0.000477043
0.000356731
0.000500103
0.000397965
0.000525833
0.0004616
0.000524329
0.000575355
0.000535182
0.000605922
0.00056146
0.000521743
0.000572213
0.000451241
0.000558967
0.000480411
0.000377675
0.000513497
0.000432125
0.00032868
0.000492966
0.000330465
0.00051255
0.000373251
0.00053162
0.000437462
0.000507937
0.000576415
0.000512712
0.000610276
0.000551965
0.000500154
-0.0185949
-0.0180743
-0.0177892
-0.0177307
-0.0179241
-0.0183373
-0.018971
-0.0197678
-0.0207365
-0.0217731
-0.0228161
-0.0236937
-0.0242177
-0.0242769
-0.0239344
-0.0232566
-0.0223373
-0.0212989
-0.0202638
-0.019338
-0.000991845
-0.000872054
-0.00083505
-0.000850946
-0.00101191
-0.00126935
-0.00170996
-0.00220544
-0.00288052
-0.00355259
-0.00431847
-0.00495412
-0.00525258
-0.00504133
-0.00435972
-0.00347617
-0.00261667
-0.00194321
-0.00148351
-0.00118335
-0.00506594
-0.00478558
-0.00471188
-0.00477942
-0.00504468
-0.00533279
-0.00587328
-0.00641361
-0.00728259
-0.008122
-0.00924614
-0.0101518
-0.0105448
-0.010409
-0.00978584
-0.00888527
-0.00791501
-0.00698609
-0.00617125
-0.00551779
0.00206167
0.00221977
0.00222058
0.00219611
0.00192728
0.00170824
0.00114183
0.000687869
-0.000242769
-0.00105297
-0.0023909
-0.00331443
-0.00347046
-0.0027718
-0.00174509
-0.000691706
0.000220518
0.00092522
0.00144846
0.00182703
-0.000926557
-0.000797324
-0.000867295
-0.000888708
-0.0011635
-0.00130116
-0.00187425
-0.0022721
-0.00331654
-0.00425304
-0.00598813
-0.00700954
-0.00715302
-0.00636573
-0.00510605
-0.00388802
-0.00283924
-0.00206129
-0.00150311
-0.00112544
0.00192392
0.00207427
0.00202247
0.00201631
0.00169825
0.00155414
0.000914406
0.000503799
-0.000624139
-0.00164806
-0.00356767
-0.00445513
-0.00403112
-0.0029731
-0.00165915
-0.000593889
0.000295952
0.000925617
0.00139733
0.0017328
0.00031925
0.000403378
0.000302211
0.000319543
3.09069e-05
-3.91836e-05
-0.000630144
-0.00097496
-0.0021071
-0.00322299
-0.00540409
-0.00620377
-0.00544776
-0.00418164
-0.00277308
-0.00175918
-0.000930087
-0.000404749
-2.40587e-05
0.000214952
0.00135077
0.00145929
0.00137213
0.00138081
0.00107137
0.000970921
0.000369731
-1.28788e-05
-0.00112093
-0.00230088
-0.0045303
-0.00499425
-0.00390554
-0.00263888
-0.00134235
-0.000522912
0.000199886
0.000637757
0.00099361
0.00122846
0.000603493
0.000663991
0.000562231
0.000580565
0.000311813
0.000256261
-0.000262493
-0.000575938
-0.00158043
-0.00272955
-0.00504477
-0.00528425
-0.00394774
-0.00273443
-0.00151209
-0.000851173
-0.000223246
0.000103667
0.000382407
0.000539778
0.000905537
0.00097123
0.000877441
0.000880881
0.000618859
0.000533002
5.75553e-05
-0.000287392
-0.0011529
-0.00227637
-0.00438334
-0.00422594
-0.00284535
-0.00185666
-0.000812397
-0.000346752
0.000190602
0.00044107
0.000694038
0.000836678
0.000579955
0.000619757
0.000527715
0.000534908
0.000313904
0.000266163
-0.000116836
-0.000347073
-0.00106671
-0.00190779
-0.00397723
-0.00377043
-0.00241898
-0.00167933
-0.000748642
-0.000425286
4.89818e-05
0.000229766
0.000440202
0.00053964
0.000631061
0.000664791
0.000577633
0.000570426
0.000363737
0.000288204
-4.52083e-05
-0.000315715
-0.000850978
-0.00166217
-0.00323618
-0.00268775
-0.00152616
-0.00105266
-0.000320494
-0.000163687
0.000224018
0.000338967
0.000517861
0.000596036
0.00049011
0.000511881
0.000432045
0.000428921
0.000260424
0.000227607
-1.29193e-05
-0.000118455
-0.000493832
-0.000779215
-0.00228614
-0.00223172
-0.0011778
-0.00099336
-0.000304195
-0.000215394
0.000153751
0.000244119
0.000406274
0.000466111
0.000477702
0.000490449
0.000412751
0.000397547
0.000236218
0.00017612
-5.04629e-05
-0.000224508
-0.000479425
-0.000880086
-0.00165921
-0.00127334
-0.000534305
-0.000518642
-1.74556e-05
-3.98753e-05
0.000250546
0.000292266
0.000422777
0.000462731
0.000416355
0.000423709
0.000354092
0.000343659
0.000215801
0.000196539
5.66852e-05
4.78668e-05
-5.38931e-05
0.000113221
-0.000647882
-0.00140103
-0.000464378
-0.000669723
-0.000100377
-0.00010728
0.000196295
0.000244061
0.000370505
0.000405061
0.000401261
0.000400496
0.000331389
0.000311461
0.000182999
0.000137911
-2.76707e-05
-0.000126288
-0.000275171
-0.000275168
-0.000308845
-0.00085379
-0.000224066
-0.000363619
7.21913e-05
2.41023e-05
0.000264254
0.000280899
0.000379511
0.000398709
0.000377583
0.000373832
0.00031153
0.000295618
0.000193409
0.000178028
8.31232e-05
7.66767e-05
2.29356e-05
3.15235e-05
-0.000251286
-0.000802254
-0.000240192
-0.000426376
1.10992e-05
-8.19747e-06
0.000234643
0.000263233
0.000358915
0.000376708
0.000373402
0.000363505
0.000301674
0.000279275
0.000175267
0.000141484
1.78998e-05
-4.72385e-05
-0.000143561
-0.000211591
-0.000189314
-0.000405727
6.43183e-06
-0.000153208
0.00016938
0.000112638
0.000296082
0.000301111
0.000373044
0.000379589
0.0003699
0.000357772
0.000300968
0.000281171
0.000195016
0.000180889
0.000105484
9.67988e-05
6.60457e-05
2.19024e-05
-7.47005e-05
-0.000418895
-6.56273e-05
-0.000200935
0.000120682
0.000102555
0.000285812
0.000302803
0.000371293
0.000377193
0.000375848
0.000359589
0.000303914
0.000280343
0.000194513
0.000169751
7.63247e-05
3.4572e-05
-2.88786e-05
-9.7028e-05
-4.58894e-05
-0.000158974
0.000126616
5.80473e-06
0.000242796
0.000199669
0.000337337
0.000339033
0.000389651
0.00038812
0.000383819
0.000365534
0.000313558
0.0002913
0.00021635
0.00020319
0.000137349
0.000129525
0.000103412
6.39641e-05
4.01372e-05
-0.000157286
7.58477e-05
-1.08771e-05
0.000220402
0.000208716
0.000342519
0.00035275
0.000399296
0.000396732
0.00039625
0.000375374
0.000325279
0.00030118
0.000228703
0.000210918
0.000138125
0.000115105
7.34805e-05
2.7055e-05
7.572e-05
6.32715e-06
0.000206621
0.000129452
0.000304713
0.000280361
0.000383206
0.000385144
0.000419385
0.000412427
0.000410497
0.000387595
0.000340588
0.000316887
0.00025096
0.000239106
0.000180764
0.000174841
0.0001513
0.000124857
0.000132673
2.92672e-05
0.000191655
0.000141317
0.000306844
0.00030235
0.000398342
0.000405143
0.000435044
0.00042668
0.000426354
0.000401619
0.000357066
0.000332559
0.000269729
0.0002568
0.000198696
0.000187285
0.000159764
0.000134903
0.000173698
0.000131132
0.000273748
0.000230746
0.000362371
0.000353927
0.000430115
0.000433306
0.00045506
0.000443995
0.00044318
0.000416501
0.000375021
0.000350571
0.000291911
0.000282075
0.00023112
0.000226769
0.000208263
0.000192999
0.00021435
0.000164753
0.000284072
0.000258339
0.000378583
0.000381142
0.000449404
0.000455191
0.000472915
0.000460386
0.000460021
0.000431829
0.000393209
0.000368099
0.000312477
0.000303563
0.000255084
0.000249212
0.000232823
0.00022022
0.000254085
0.000229444
0.000335729
0.000315763
0.000415853
0.000418879
0.000474603
0.000479379
0.000491392
0.00047722
0.000476805
0.000447088
0.000411928
0.000386393
0.00033388
0.000326613
0.00028284
0.000278161
0.000267343
0.000258427
0.000286972
0.000264427
0.000357323
0.000346191
0.000436896
0.000445517
0.000494003
0.000500489
0.000508779
0.000493644
0.000493385
0.000460976
0.000429656
0.000403738
0.00035293
0.000347748
0.000306447
0.000300979
0.000295117
0.000286545
0.000321193
0.00030706
0.000392074
0.000384911
0.000463437
0.000474195
0.000513411
0.000520746
0.000525163
0.000508222
0.000509337
0.000475255
0.000447797
0.000420754
0.00037198
0.000369627
0.000330556
0.000323656
0.000324011
0.000313857
0.000350242
0.000336788
0.000415648
0.000412163
0.000483109
0.000497728
0.00053082
0.000539772
0.000540427
0.000522691
0.000523084
0.000486524
0.000463877
0.0004359
0.00038845
0.00038811
0.00035183
0.000342054
0.000348773
0.000336663
0.000377695
0.00036584
0.000441106
0.000437869
0.000502559
0.000518814
0.000545205
0.000556102
0.000553398
0.00053473
0.000538286
0.00049748
0.000480623
0.000452065
0.00040372
0.000407669
0.000372388
0.000360083
0.000373872
0.000356834
0.000403187
0.00038886
0.000462177
0.000459643
0.000519387
0.000538938
0.000558332
0.000572515
0.00056729
0.000545963
0.000548959
0.000505572
0.00049409
0.00046342
0.000415639
0.000424116
0.000389408
0.000372562
0.000394964
0.000371498
0.00042516
0.000406622
0.000480714
0.000475838
0.000531709
0.000553817
0.000568105
0.000584696
0.000575458
0.000553739
0.000561994
0.000513831
0.000509521
0.000476886
0.000427295
0.000441464
0.00040641
0.00038507
0.000416323
0.000385838
0.000446729
0.000423226
0.000499224
0.000491307
0.00054492
0.000569905
0.000577886
0.000598824
0.000586514
0.000562362
0.000570244
0.000515858
0.000520113
0.000485571
0.000432373
0.000455445
0.000418763
0.000390998
0.000433137
0.000392324
0.000463372
0.000431459
0.000511577
0.000498829
0.000550703
0.000579986
0.000580716
0.000606687
0.000590973
0.000563957
0.000580474
0.000521402
0.000534304
0.00049545
0.000440601
0.000470825
0.000431818
0.000397779
0.00045203
0.000400072
0.000482192
0.000440951
0.000527357
0.000508203
0.000560482
0.00059203
0.000587479
0.000619132
0.000598648
0.000570517
0.000585552
0.000517511
0.000542843
0.000500052
0.000438603
0.00048284
0.000439712
0.000396212
0.000464784
0.000398502
0.000493866
0.000440534
0.000534439
0.000507269
0.000559687
0.000596834
0.00058384
0.000623147
0.000597829
0.000566022
0.000594289
0.000519311
0.000555305
0.000506789
0.000441423
0.000496185
0.000448291
0.000397947
0.000480287
0.000400684
0.00050915
0.000444056
0.00054695
0.000510799
0.000566208
0.00060688
0.000586743
0.000633835
0.000603146
0.000568929
0.000596559
0.000507194
0.000564156
0.000508838
0.000430711
0.000508994
0.000453195
0.00038574
0.000492303
0.000388797
0.000519009
0.000433209
0.000551428
0.000500143
0.000558144
0.000607512
0.000574807
0.000635709
0.000598017
0.000557723
0.000602053
0.000507329
0.000573069
0.00050984
0.000430524
0.000518768
0.000455283
0.000384921
0.000501927
0.000387936
0.000528305
0.00043327
0.000558892
0.000500247
0.000562184
0.000613369
0.000575578
0.000643426
0.000598771
0.000558638
0.000604578
0.00048439
0.000587675
0.00050913
0.000405336
0.000538902
0.000457725
0.000357474
0.000517835
0.000362388
0.000540545
0.000409251
0.000564353
0.00047678
0.000545779
0.000614021
0.000553653
0.000647399
0.0005894
0.000537671
-0.0186637
-0.0181696
-0.017909
-0.0178738
-0.0180882
-0.0185176
-0.0191688
-0.0199809
-0.020968
-0.0220177
-0.0230697
-0.0239426
-0.0244389
-0.0244598
-0.0240742
-0.0233551
-0.0224021
-0.0213419
-0.0203012
-0.0193855
-0.00102906
-0.000901208
-0.000862466
-0.000883942
-0.00106234
-0.00133302
-0.0017917
-0.00229492
-0.00298652
-0.00366202
-0.00444007
-0.00507424
-0.00534828
-0.00509262
-0.00437528
-0.00347514
-0.00262799
-0.00197885
-0.00153304
-0.00123067
-0.00509454
-0.00483177
-0.00477907
-0.00485572
-0.00513293
-0.00542349
-0.0059828
-0.00652495
-0.0074225
-0.00826843
-0.00942744
-0.0103365
-0.0107095
-0.0105134
-0.00984137
-0.00890946
-0.0079187
-0.00698001
-0.00616804
-0.00552755
0.00199146
0.00214637
0.00213698
0.00210343
0.00181692
0.0015988
0.00100554
0.000557248
-0.000410325
-0.00122201
-0.00260412
-0.00351757
-0.00361494
-0.00287232
-0.00180368
-0.000741729
0.000168338
0.000867292
0.00138601
0.00176111
-0.000959325
-0.000839551
-0.000923378
-0.000943236
-0.00123726
-0.00136719
-0.00197463
-0.00236257
-0.00345618
-0.00439882
-0.00619105
-0.00720058
-0.00726208
-0.00638876
-0.00508076
-0.0038544
-0.00281378
-0.00205156
-0.00150848
-0.00114503
0.00183433
0.00197737
0.00190878
0.00190357
0.00156177
0.00143038
0.000752543
0.00035937
-0.000822003
-0.00184855
-0.00383165
-0.00468145
-0.00416342
-0.00304225
-0.00170233
-0.000637616
0.000246762
0.000865434
0.00132797
0.00165391
0.000277117
0.000355165
0.000240795
0.000260863
-5.30803e-05
-0.000109825
-0.000742836
-0.00106949
-0.00225934
-0.00337874
-0.00562383
-0.0063556
-0.00549169
-0.00417189
-0.00274748
-0.00174605
-0.000926496
-0.000415853
-4.54882e-05
0.000183251
0.00126278
0.00136384
0.00125984
0.00127139
0.000937255
0.000852832
0.000212836
-0.000149758
-0.00131015
-0.00249562
-0.00479487
-0.00516138
-0.00397279
-0.00267678
-0.00136656
-0.000561814
0.000156723
0.000581318
0.000928256
0.00115241
0.000551945
0.000606759
0.000490696
0.000511092
0.00021785
0.000175553
-0.000380189
-0.000676279
-0.00172879
-0.00288289
-0.00527528
-0.00538504
-0.00395839
-0.002737
-0.00150366
-0.000862366
-0.000236025
7.80671e-05
0.000349916
0.000498264
0.000828828
0.000887198
0.000778198
0.000783104
0.000499792
0.000426396
-7.80903e-05
-0.000410619
-0.00130778
-0.0024485
-0.00460883
-0.00432865
-0.00286582
-0.00188707
-0.000827244
-0.000383226
0.000155818
0.000393064
0.000639031
0.00077141
0.000525582
0.000558991
0.00045318
0.000460355
0.000219651
0.000181472
-0.000225754
-0.000444242
-0.00118799
-0.00203532
-0.00416355
-0.00384181
-0.00242053
-0.00170242
-0.000750238
-0.000448886
3.06854e-05
0.000199517
0.0004047
0.00049527
0.000568029
0.000594424
0.000493907
0.000485894
0.000262646
0.000194499
-0.000156173
-0.000422679
-0.000964583
-0.00180208
-0.00338911
-0.00274559
-0.00152386
-0.00108517
-0.000328877
-0.000195802
0.000198418
0.000301285
0.000474771
0.000543538
0.000440242
0.000454943
0.00036265
0.000357493
0.000174381
0.000147228
-0.000104983
-0.000203496
-0.000577299
-0.000865508
-0.00239695
-0.00230006
-0.00117457
-0.00102947
-0.000307469
-0.000239948
0.000137861
0.000217441
0.000374891
0.000426044
0.000428268
0.000433686
0.000344264
0.000326515
0.000152465
9.63843e-05
-0.000139849
-0.000312687
-0.000559946
-0.000983855
-0.00173955
-0.0013113
-0.000521074
-0.000550348
-1.96724e-05
-6.3917e-05
0.000234342
0.000265755
0.000391539
0.000422981
0.000375771
0.000375831
0.000295131
0.000281394
0.000142428
0.000126397
-1.80856e-05
-2.15254e-05
-0.000107939
6.08604e-05
-0.00069657
-0.00148752
-0.000456361
-0.000705611
-9.95984e-05
-0.00012447
0.00018719
0.00022575
0.000347437
0.000373822
0.000364917
0.000357012
0.000277568
0.000254164
0.000115544
7.29076e-05
-9.91115e-05
-0.000195077
-0.000336389
-0.00033974
-0.000351784
-0.000905462
-0.000213289
-0.000387095
7.70502e-05
1.1445e-05
0.000257501
0.000265733
0.000359682
0.000371262
0.000348303
0.000337476
0.000265357
0.000245576
0.000134255
0.000120892
2.29597e-05
2.12499e-05
-1.85441e-05
-1.26447e-05
-0.000280618
-0.000863403
-0.000239078
-0.000450994
1.58143e-05
-1.53654e-05
0.000233345
0.000254755
0.000345636
0.000356076
0.000349472
0.000332844
0.000261916
0.000235701
0.000123318
9.12551e-05
-3.71202e-05
-9.85544e-05
-0.000189739
-0.000259861
-0.00021541
-0.000435968
1.5697e-05
-0.000166293
0.000177163
0.000109516
0.000297262
0.000296294
0.000363803
0.000363715
0.000352122
0.000333423
0.000267989
0.000244218
0.000150251
0.000137544
5.86614e-05
5.52257e-05
3.27685e-05
-1.05218e-05
-9.45129e-05
-0.000454854
-6.32239e-05
-0.000211835
0.000130245
0.000105244
0.000292077
0.000303815
0.000367701
0.0003672
0.000363385
0.000340965
0.000277327
0.000249958
0.000157064
0.000133681
3.63167e-05
-6.26269e-07
-6.07361e-05
-0.00012787
-5.99902e-05
-0.000175495
0.00013541
2.6122e-06
0.000254128
0.000205445
0.000345931
0.000343554
0.000390073
0.000382845
0.000376763
0.000352561
0.000293075
0.000267001
0.000185349
0.000173204
0.000103513
0.00010108
7.82366e-05
4.31558e-05
2.82449e-05
-0.000173363
8.30063e-05
-9.07687e-06
0.000235269
0.00022014
0.000355785
0.000362257
0.000404579
0.000396551
0.000394024
0.000367644
0.000310621
0.000282928
0.000204442
0.000187745
0.000111412
9.38865e-05
5.37689e-05
1.17865e-05
7.03524e-05
9.8818e-07
0.000217135
0.000135448
0.000320547
0.000294168
0.000398701
0.00039785
0.000428368
0.000416544
0.000412919
0.000384816
0.000331316
0.0003041
0.000232507
0.000221373
0.000159344
0.000158612
0.000135633
0.000115105
0.000128873
2.7789e-05
0.000204206
0.000153004
0.000326673
0.000320961
0.0004178
0.000421923
0.000448089
0.000435112
0.000432957
0.000403409
0.000352853
0.000325053
0.000257133
0.000244956
0.00018363
0.000177626
0.000150175
0.000131706
0.000175478
0.000135652
0.000288064
0.000245037
0.000383209
0.000374656
0.000451762
0.000452936
0.000471371
0.000456168
0.000453667
0.000422505
0.000375416
0.000347818
0.000284429
0.000275069
0.000220899
0.000221391
0.000202236
0.00019351
0.000218398
0.000173783
0.000301544
0.000277455
0.000402864
0.000405551
0.000474199
0.000478029
0.000492524
0.000476128
0.000474003
0.000441689
0.000397852
0.000369805
0.000309913
0.00030143
0.000250124
0.000249107
0.000231951
0.000226207
0.000262392
0.000242383
0.000354696
0.000337055
0.000441478
0.000445275
0.000501477
0.000504673
0.000513776
0.000496111
0.00049394
0.000460436
0.00042039
0.000392096
0.000335662
0.000328646
0.0002822
0.000281906
0.000269968
0.000267676
0.000297991
0.000281242
0.000379177
0.000371043
0.000465148
0.000474583
0.000523298
0.00052825
0.000533781
0.000515422
0.000513352
0.000477495
0.000441588
0.00041311
0.000358751
0.000353731
0.000310052
0.000308809
0.000301787
0.000299834
0.000335416
0.000326841
0.000415545
0.000411778
0.000493193
0.000505038
0.000544561
0.000550536
0.000552442
0.000532579
0.00053179
0.000494588
0.000462794
0.000433383
0.000381367
0.00037905
0.000337809
0.000334806
0.000333854
0.000330085
0.00036706
0.000359576
0.000441389
0.000441557
0.000514802
0.000530476
0.000563815
0.000571421
0.000569739
0.000549335
0.00054776
0.000508408
0.000481632
0.000451473
0.000401083
0.000400674
0.000362456
0.000356385
0.000361741
0.000355876
0.000396988
0.000391003
0.000468422
0.000469043
0.000535669
0.000553032
0.00057976
0.000589352
0.000584515
0.000563439
0.000564855
0.000521575
0.000500757
0.000470213
0.000419189
0.000422961
0.000385949
0.000377126
0.000389466
0.000378498
0.000424636
0.000416299
0.000491187
0.000492631
0.000553915
0.000574499
0.000594285
0.000607126
0.000599948
0.000576448
0.000577206
0.000531669
0.000516337
0.000483857
0.000433648
0.000441826
0.000405575
0.000392076
0.00041292
0.000395432
0.000448496
0.00043595
0.000511055
0.000510296
0.000567421
0.000590497
0.000605313
0.000620502
0.000609492
0.000585838
0.000591624
0.000541622
0.000533553
0.000499308
0.000447493
0.000461253
0.000424851
0.000406714
0.000436297
0.000411708
0.000471705
0.000454262
0.000530785
0.000527095
0.000581651
0.000607503
0.00061615
0.000635584
0.000621688
0.000595814
0.000601056
0.000545169
0.000545667
0.000509684
0.000454496
0.000476988
0.000439121
0.000414519
0.000454795
0.000419899
0.000489681
0.000463967
0.000544103
0.000535767
0.000588329
0.000618342
0.00061995
0.000644253
0.000627132
0.000598637
0.000612247
0.000551971
0.000561153
0.000521059
0.000464354
0.000493876
0.000453884
0.000422909
0.000475136
0.000429115
0.00050966
0.000474732
0.000560717
0.000546129
0.000598798
0.000630978
0.000627508
0.000657328
0.000635639
0.00060621
0.000618044
0.000549185
0.000570665
0.000526819
0.000463759
0.000507029
0.000463077
0.000422725
0.000488937
0.000428798
0.000522122
0.000475413
0.00056834
0.000546063
0.000598602
0.000636166
0.000624594
0.000661763
0.000635436
0.000602618
0.000627396
0.000551857
0.000584004
0.000534628
0.000467706
0.000521371
0.00047287
0.000425577
0.000505391
0.000432007
0.000538144
0.000479849
0.000581369
0.000550311
0.000605529
0.000646566
0.000628085
0.00067283
0.000641355
0.000606249
0.000629953
0.000540521
0.000593356
0.000537414
0.000458018
0.000534759
0.000478579
0.000414399
0.000517868
0.000421034
0.00054826
0.00046982
0.00058594
0.000540331
0.000597772
0.000647177
0.000616702
0.000674725
0.000636518
0.000595722
0.00063576
0.000541134
0.000602718
0.000539034
0.00045842
0.000545036
0.000481367
0.000414164
0.000527973
0.000420729
0.000557925
0.000470402
0.000593654
0.000540858
0.000601967
0.000653218
0.00061784
0.000682617
0.000637647
0.000597043
0.000638183
0.000518803
0.00061745
0.000538853
0.000434072
0.000565256
0.000484348
0.000387574
0.000543842
0.000395914
0.00056993
0.000447087
0.000598755
0.000518065
0.000585551
0.000653425
0.000596454
0.000686188
0.000628372
0.000576696
-0.0187381
-0.0182716
-0.0180347
-0.0180216
-0.0182559
-0.0187007
-0.019369
-0.020196
-0.0212019
-0.0222644
-0.023325
-0.0241913
-0.0246567
-0.0246371
-0.0242077
-0.023447
-0.0224602
-0.0213801
-0.0203374
-0.0194359
-0.00106731
-0.000933386
-0.000895574
-0.000925257
-0.001122
-0.00140577
-0.00188225
-0.00239164
-0.0030998
-0.00377728
-0.00456829
-0.00520027
-0.00544765
-0.00514445
-0.00439161
-0.00347927
-0.00264933
-0.0020242
-0.00158791
-0.00127958
-0.0051246
-0.00488024
-0.00484923
-0.00493466
-0.00522371
-0.00551569
-0.00609483
-0.0066369
-0.00756477
-0.00841525
-0.00961123
-0.0105219
-0.0108723
-0.0106112
-0.00988866
-0.00892555
-0.00791441
-0.00696802
-0.00616193
-0.0055371
0.0019135
0.00206362
0.00204234
0.00199985
0.00169437
0.00147908
0.000857011
0.000417961
-0.000589673
-0.00140001
-0.00282862
-0.00372992
-0.00376382
-0.00297449
-0.00186544
-0.000795975
0.00011112
0.000803987
0.00131785
0.00168857
-0.000995077
-0.000885796
-0.000983571
-0.0010023
-0.0013173
-0.00143725
-0.00208249
-0.00245561
-0.00360301
-0.00454745
-0.00639951
-0.00739374
-0.00735852
-0.00640008
-0.00504815
-0.00381686
-0.00278671
-0.00204175
-0.00151489
-0.00116684
0.00173542
0.00186963
0.00178308
0.00177905
0.00141174
0.00129635
0.000576303
0.000207097
-0.00103346
-0.00205642
-0.004107
-0.00491021
-0.00429517
-0.0031096
-0.00174607
-0.00068381
0.000193825
0.000800107
0.00125222
0.00156705
0.000228933
0.000299565
0.00017073
0.000193494
-0.000147986
-0.000188144
-0.000867712
-0.00116926
-0.00242298
-0.00353848
-0.00585195
-0.00650575
-0.00553081
-0.00415842
-0.00272007
-0.00173304
-0.000923851
-0.000429164
-7.02716e-05
0.000146756
0.00116586
0.0012579
0.00113583
0.00115029
0.000789308
0.000724406
4.11456e-05
-0.0002944
-0.00151282
-0.0026975
-0.00507155
-0.00532201
-0.00403404
-0.00271364
-0.00139058
-0.000602576
0.000110983
0.000520739
0.000857287
0.00106899
0.000492536
0.000540091
0.000408146
0.000430393
0.000110468
8.45533e-05
-0.000512099
-0.000784346
-0.00188933
-0.00304256
-0.0055167
-0.00548228
-0.00396515
-0.00273959
-0.00149457
-0.000874841
-0.000250411
4.93742e-05
0.000312883
0.000450509
0.000743987
0.0007934
0.00066775
0.000673849
0.000367291
0.000309098
-0.000227564
-0.000542471
-0.00147355
-0.00262888
-0.00484195
-0.00442831
-0.00288262
-0.00191842
-0.000841152
-0.000420993
0.000119496
0.00034196
0.000579361
0.000699719
0.000463229
0.000488553
0.000367361
0.000374013
0.000111833
8.54303e-05
-0.00034832
-0.000550621
-0.00131919
-0.00217032
-0.00435614
-0.00391279
-0.00241911
-0.00172753
-0.000750725
-0.000473666
1.10861e-05
0.000166435
0.000364754
0.000444702
0.000497826
0.000515229
0.000399855
0.000390444
0.00014911
9.00774e-05
-0.000279398
-0.000538915
-0.00108624
-0.0019515
-0.00354404
-0.00280333
-0.00151752
-0.0011197
-0.000335611
-0.000228677
0.000172001
0.000261392
0.000427907
0.000485604
0.000383396
0.000389354
0.000283075
0.000275145
7.60784e-05
5.58531e-05
-0.000208847
-0.000297927
-0.000667492
-0.000959189
-0.00250861
-0.00237255
-0.00116775
-0.00106802
-0.000309009
-0.000264989
0.000121331
0.000188782
0.000339921
0.00038075
0.000372847
0.00036935
0.000266773
0.000245701
5.77592e-05
6.68783e-06
-0.000239836
-0.000409665
-0.000646897
-0.00109662
-0.00181874
-0.00135144
-0.000503289
-0.000583781
-1.99545e-05
-8.8063e-05
0.000217873
0.000237878
0.000357453
0.000378891
0.00032966
0.000320886
0.000227713
0.000209843
5.87075e-05
4.66105e-05
-0.000102661
-9.92615e-05
-0.000166641
2.09974e-06
-0.000744152
-0.00158088
-0.000444923
-0.000742798
-9.68992e-05
-0.000141335
0.000178075
0.000206416
0.000321871
0.00033865
0.000323941
0.000307463
0.00021639
0.000188697
3.89635e-05
-6.0534e-07
-0.000179457
-0.000271223
-0.000403328
-0.000410747
-0.00039486
-0.000959489
-0.000198753
-0.00041143
8.37057e-05
-6.62206e-07
0.000250951
0.000250007
0.000337975
0.000340654
0.000314996
0.000295748
0.0002126
0.000188147
6.68128e-05
5.59347e-05
-4.52557e-05
-4.07876e-05
-6.42008e-05
-6.13828e-05
-0.000309752
-0.000928853
-0.00023554
-0.000476135
2.23809e-05
-2.1478e-05
0.000232586
0.000246107
0.00033091
0.000332794
0.000322272
0.000297679
0.000216542
0.000185752
6.41973e-05
3.42777e-05
-9.92218e-05
-0.000155495
-0.000240631
-0.000312671
-0.000241654
-0.000467641
2.72533e-05
-0.000179219
0.00018652
0.000107545
0.000299139
0.000291664
0.000353621
0.000345826
0.000331681
0.000305279
0.000230199
0.000201737
9.91984e-05
8.82442e-05
5.48007e-06
8.77802e-06
-4.50806e-06
-4.58751e-05
-0.000115004
-0.000492807
-5.92373e-05
-0.000221993
0.000141593
0.000109517
0.000299343
0.000305344
0.000363571
0.000355686
0.000348882
0.000319273
0.000246756
0.000214926
0.000114312
9.26131e-05
-9.02162e-06
-3.97337e-05
-9.61135e-05
-0.000161226
-7.43944e-05
-0.000192716
0.00014553
2.17035e-07
0.000266961
0.000212825
0.000355665
0.000348868
0.000390365
0.00037656
0.000368191
0.000337149
0.000269333
0.000238829
0.000149874
0.000138968
6.50131e-05
6.92764e-05
4.9772e-05
2.05659e-05
1.55432e-05
-0.000189738
9.15012e-05
-5.82257e-06
0.000251915
0.000233451
0.000370411
0.000372791
0.000410055
0.000395773
0.000390777
0.000358061
0.00029338
0.000261536
0.000176524
0.000161115
8.09266e-05
7.0157e-05
3.1527e-05
-4.50851e-06
6.46337e-05
-4.32601e-06
0.000228631
0.000142782
0.000337999
0.000309892
0.000415697
0.000411798
0.000437861
0.000420463
0.000414737
0.000380695
0.00032006
0.000288826
0.000211116
0.000200844
0.000134805
0.00014033
0.000117716
0.00010457
0.000124628
2.69327e-05
0.000218043
0.000166462
0.000348309
0.00034162
0.000438887
0.000440096
0.000461882
0.000443667
0.000439333
0.000404313
0.000347187
0.00031564
0.000242248
0.000230935
0.000166134
0.000166524
0.00013896
0.000128352
0.000177114
0.00014086
0.000303461
0.000261057
0.000405841
0.000397487
0.000475165
0.000474115
0.000488661
0.000468759
0.000464241
0.000428018
0.000374823
0.000343674
0.000275237
0.000266432
0.000208835
0.000214998
0.000194978
0.000194069
0.000222518
0.000183918
0.000320322
0.000298488
0.00042902
0.000432094
0.000500817
0.000502505
0.000513277
0.000492522
0.000488342
0.000451397
0.00040191
0.000370566
0.000306138
0.000298135
0.000243839
0.000248398
0.000230287
0.000232595
0.000270964
0.000256492
0.000374963
0.000360299
0.000469036
0.000473853
0.000530265
0.000531706
0.000537461
0.000515863
0.000511658
0.000473924
0.000428612
0.000397244
0.000336675
0.000329941
0.000280705
0.000285409
0.000272193
0.000277555
0.00030953
0.000299452
0.000402469
0.000397901
0.000495359
0.000505821
0.000554539
0.0005578
0.000560194
0.000538225
0.00053409
0.0004944
0.000453572
0.000422257
0.000364175
0.000359327
0.00031319
0.000316688
0.000308375
0.000313945
0.000350322
0.000348103
0.00044053
0.000440699
0.000524968
0.000538077
0.000577708
0.000582169
0.000581228
0.000558102
0.000555166
0.000514513
0.000478089
0.000446069
0.000390677
0.000388395
0.000344942
0.00034628
0.000343923
0.000347328
0.000384771
0.000383956
0.000468725
0.000473013
0.000548522
0.000565397
0.000598819
0.000604937
0.000600625
0.000577256
0.000573486
0.000531055
0.000499888
0.000467339
0.000413907
0.000413419
0.000373243
0.000371254
0.000375172
0.000376235
0.000417314
0.000417835
0.00049741
0.000502309
0.000570843
0.000589423
0.000616346
0.000624491
0.00061726
0.000593516
0.000592571
0.000546575
0.000521558
0.000488849
0.000435074
0.000438651
0.000399911
0.000394902
0.00040574
0.000401439
0.00044726
0.00044547
0.000521919
0.000527708
0.000590509
0.000612207
0.000632269
0.000643631
0.000634269
0.000608369
0.000606679
0.00055879
0.000539389
0.000504946
0.00045226
0.000460114
0.000422341
0.00041248
0.000431724
0.000420743
0.000473118
0.000467064
0.000543171
0.000546857
0.000605213
0.000629311
0.000644556
0.000658205
0.000645217
0.000619431
0.000622536
0.000570529
0.000558495
0.000522511
0.000468446
0.000481764
0.000444051
0.000429382
0.000457257
0.000439042
0.000498056
0.00048712
0.000564149
0.000564979
0.000620458
0.000647205
0.000656439
0.000674232
0.000658566
0.000630799
0.000633195
0.000575673
0.00057222
0.000534686
0.000477499
0.000499371
0.000460365
0.000439173
0.000477549
0.000449008
0.000517435
0.000498336
0.000578462
0.000574806
0.000628035
0.000658783
0.000661207
0.000683702
0.000665004
0.000634883
0.000645375
0.000583791
0.000589066
0.000547641
0.000489087
0.00051786
0.000476937
0.000449262
0.000499421
0.000459751
0.000538622
0.000510399
0.000595921
0.00058615
0.000639189
0.000671981
0.000669547
0.000697391
0.000674342
0.00064349
0.00065191
0.000582159
0.000599598
0.000554617
0.000489972
0.000532216
0.0004875
0.000450532
0.000514326
0.000460732
0.000551907
0.0005122
0.000604093
0.00058695
0.00063959
0.00067753
0.000667353
0.000702232
0.000674752
0.00064082
0.00066189
0.000585739
0.000613862
0.000563554
0.00049511
0.000547611
0.00049857
0.000454562
0.000531778
0.000465006
0.000568691
0.000517571
0.000617642
0.000591913
0.000646918
0.000688258
0.000671422
0.000713663
0.000681268
0.000645187
0.000664728
0.00057521
0.000623725
0.000567095
0.000486487
0.000561595
0.000505104
0.000444451
0.000544723
0.000454975
0.000579062
0.000508373
0.000622291
0.000582607
0.000639465
0.000688821
0.000660586
0.00071556
0.000676705
0.000635345
0.000670854
0.000576318
0.000633565
0.000569364
0.000487511
0.000572406
0.000508629
0.000444831
0.000555334
0.000455246
0.00058911
0.000509489
0.000630254
0.000583559
0.000643809
0.00069503
0.00066209
0.00072362
0.000678207
0.000637082
0.000673149
0.000554608
0.000648423
0.000569704
0.000464025
0.000592687
0.000512134
0.000419122
0.00057113
0.000431182
0.000600844
0.000486889
0.000634961
0.000561442
0.000627386
0.00069475
0.00064124
0.000726765
0.000668997
0.00061735
-0.0188196
-0.0183813
-0.0181672
-0.0181748
-0.0184283
-0.018888
-0.0195735
-0.0204155
-0.0214405
-0.022515
-0.0235838
-0.0244417
-0.0248732
-0.0248113
-0.0243373
-0.0235342
-0.0225135
-0.0214156
-0.0203748
-0.0194909
-0.00110549
-0.000968334
-0.000934457
-0.000975302
-0.0011911
-0.00148747
-0.00198129
-0.00249497
-0.00321972
-0.00389754
-0.00470273
-0.00533198
-0.00555056
-0.00519638
-0.00440837
-0.00348895
-0.00268017
-0.00207689
-0.00164503
-0.00132774
-0.00515798
-0.00493291
-0.00492475
-0.00501885
-0.00531945
-0.00561152
-0.00621163
-0.00675112
-0.00771126
-0.00856371
-0.00979889
-0.0107086
-0.0110326
-0.0107029
-0.00992833
-0.0089337
-0.0079026
-0.00695122
-0.00615445
-0.00554825
0.00182662
0.00196956
0.00193473
0.00188401
0.00155817
0.00134799
0.000694876
0.000269615
-0.000782029
-0.00158739
-0.00306564
-0.00395351
-0.00391653
-0.00307639
-0.00192918
-0.00085318
4.99092e-05
0.000735905
0.00124401
0.00160881
-0.00103585
-0.000938364
-0.00105025
-0.00106847
-0.00140631
-0.00151354
-0.00220054
-0.00255247
-0.00375929
-0.0046996
-0.00661504
-0.00758893
-0.00744426
-0.00640048
-0.00500884
-0.00377586
-0.00275862
-0.00203281
-0.00152366
-0.00119257
0.00162571
0.00174925
0.00164353
0.00164067
0.00124595
0.00115037
0.000383331
4.6351e-05
-0.00126044
-0.0022715
-0.0043942
-0.0051377
-0.00442479
-0.003174
-0.00178945
-0.000731989
0.000137281
0.000729342
0.00116938
0.00147107
0.000172709
0.000234189
8.94077e-05
0.000114616
-0.000256789
-0.000276546
-0.00100783
-0.00127555
-0.0026006
-0.0037028
-0.00609271
-0.00665437
-0.00556309
-0.00414055
-0.00269049
-0.00172022
-0.00092252
-0.000445456
-9.95907e-05
0.000103856
0.00105852
0.00113958
0.000997976
0.00101515
0.000624979
0.000583625
-0.000148062
-0.000447799
-0.00173112
-0.00290684
-0.00536069
-0.00547786
-0.00409031
-0.00274927
-0.00141385
-0.00064492
6.27224e-05
0.000455714
0.000779995
0.000977067
0.000423522
0.000461808
0.000312142
0.000335771
-1.32294e-05
-1.91516e-05
-0.00066123
-0.000901545
-0.00206427
-0.0032092
-0.00576997
-0.00557457
-0.00396743
-0.00274209
-0.00148442
-0.000888552
-0.000266571
1.70816e-05
0.000270391
0.000395174
0.000649704
0.0006881
0.000544091
0.000550836
0.000218857
0.000178988
-0.00039348
-0.000684258
-0.00165194
-0.0028184
-0.005083
-0.00452461
-0.00289493
-0.0019505
-0.000853445
-0.000459739
8.17646e-05
0.000287602
0.000514488
0.000620682
0.000391577
0.000406703
0.000268244
0.000273588
-1.20496e-05
-2.41749e-05
-0.00048711
-0.000667688
-0.00146193
-0.00231367
-0.00455509
-0.00398377
-0.00241385
-0.00175467
-0.000749514
-0.000499385
-9.758e-06
0.000130333
0.0003198
0.000387
0.000419449
0.000425812
0.000293799
0.000282109
2.09622e-05
-2.70322e-05
-0.00041711
-0.000665863
-0.00121721
-0.00211176
-0.00370044
-0.00286147
-0.001506
-0.00115623
-0.000340024
-0.000261939
0.000144978
0.000219313
0.000376952
0.000421589
0.000318704
0.00031388
0.000191816
0.000180096
-3.64476e-05
-4.83639e-05
-0.000326512
-0.000403134
-0.000765379
-0.00106125
-0.00262042
-0.00245021
-0.00115627
-0.00110903
-0.000308207
-0.000290131
0.000104381
0.000158217
0.000301122
0.000329687
0.000310795
0.000296459
0.000179037
0.000153599
-4.95776e-05
-9.45919e-05
-0.000352173
-0.00051674
-0.000741309
-0.00121975
-0.00189603
-0.00139431
-0.000479954
-0.000618892
-1.771e-05
-0.000111868
0.000201432
0.000208824
0.000320432
0.00033011
0.000277543
0.000258095
0.000150825
0.000127749
-3.67775e-05
-4.421e-05
-0.000198506
-0.000186426
-0.000230568
-6.3846e-05
-0.00078989
-0.0016819
-0.000429147
-0.000781513
-9.17846e-05
-0.000157413
0.000169262
0.000186303
0.000293809
0.000299324
0.00027801
0.000251259
0.000147053
0.000114035
-4.792e-05
-8.37999e-05
-0.000270001
-0.00035567
-0.000476885
-0.000489056
-0.000437647
-0.00101652
-0.000179598
-0.000436035
9.26303e-05
-1.17263e-05
0.000244956
0.000234031
0.000314491
0.000306788
0.000277476
0.000248234
0.000152663
0.000122535
-9.85398e-06
-1.77763e-05
-0.000122564
-0.000110123
-0.000114543
-0.000115029
-0.000338385
-0.000999164
-0.000229159
-0.000501581
3.11886e-05
-2.60429e-05
0.000232727
0.00023763
0.000314906
0.000306869
0.000291729
0.000257736
0.000165122
0.00012882
-2.82645e-06
-3.01931e-05
-0.000169265
-0.00021863
-0.000296873
-0.000370447
-0.000267822
-0.000500799
4.14693e-05
-0.000191686
0.00019781
0.000107221
0.000302095
0.000287593
0.000342729
0.000326013
0.000308595
0.000273194
0.000187319
0.000153296
4.13194e-05
3.24401e-05
-5.47323e-05
-4.29165e-05
-4.62832e-05
-8.4213e-05
-0.00013614
-0.000532848
-5.34353e-05
-0.000231055
0.00015506
0.000115846
0.000307988
0.000307767
0.000359171
0.000342805
0.000332429
0.000294466
0.00021204
0.000174954
6.58734e-05
4.6145e-05
-6.01939e-05
-8.3008e-05
-0.000135401
-0.000197143
-8.90495e-05
-0.000210581
0.000157166
-1.03903e-06
0.00028161
0.000222276
0.00036693
0.000355365
0.000390826
0.000369469
0.000358251
0.000319329
0.000242274
0.000206617
0.000109685
0.000100222
2.14953e-05
3.39662e-05
1.77059e-05
-3.746e-06
1.98944e-06
-0.000206256
0.000101509
-7.57116e-07
0.000270638
0.00024908
0.00038677
0.000384733
0.000416039
0.000394635
0.000386696
0.000346719
0.000273577
0.00023693
0.000144818
0.000130872
4.64367e-05
4.38545e-05
6.54238e-06
-2.16903e-05
5.85527e-05
-9.46312e-06
0.000241252
0.0001518
0.00035737
0.000327956
0.000434568
0.000427366
0.000448186
0.000424442
0.000416167
0.000375371
0.000306902
0.000271067
0.000186748
0.000177455
0.000107028
0.000120005
9.74251e-05
9.34034e-05
0.000119948
2.69174e-05
0.00023332
0.000182015
0.000372031
0.000364708
0.000461957
0.000460019
0.000476743
0.000452613
0.000445711
0.000404501
0.000340196
0.000304384
0.000225104
0.000214738
0.000146168
0.000154035
0.000126061
0.00012503
0.000178646
0.000146966
0.000320083
0.000279129
0.000430555
0.000422788
0.000500668
0.000497188
0.000507244
0.000482041
0.00047514
0.00043323
0.000373403
0.000338247
0.000264421
0.000256223
0.000194964
0.000207695
0.000186505
0.000194879
0.000226777
0.00019538
0.000340564
0.000321724
0.000457316
0.000461102
0.000529579
0.000528944
0.000535479
0.000509841
0.000503281
0.000461158
0.000405563
0.000370522
0.000301278
0.000293779
0.000236313
0.00024721
0.000227891
0.000239583
0.000279887
0.000271996
0.00039671
0.000385779
0.000498794
0.000504926
0.000561272
0.000560782
0.000562736
0.00053674
0.000530197
0.000487759
0.000436786
0.000401997
0.000337071
0.000330628
0.000278482
0.000288823
0.000274124
0.000288278
0.000321711
0.000319272
0.000427374
0.000427019
0.000527779
0.000539519
0.00058801
0.000589423
0.00058829
0.000562309
0.000555831
0.000511898
0.000465806
0.000431352
0.000369372
0.000364689
0.000316013
0.000324781
0.000315016
0.000329081
0.000366048
0.000371059
0.000467218
0.000471919
0.000559002
0.000573579
0.000613116
0.000615909
0.000611777
0.000585034
0.000579689
0.000535233
0.000493879
0.000458992
0.000400092
0.00039783
0.000352125
0.00035825
0.000354376
0.000365792
0.000403528
0.00041013
0.000497838
0.000506757
0.000584495
0.000602739
0.000636078
0.000640564
0.000633323
0.000606681
0.000600472
0.000554665
0.000518841
0.000483682
0.000427109
0.000426518
0.000384374
0.00038684
0.00038924
0.000397939
0.000438837
0.000446526
0.000528256
0.00053788
0.000608293
0.000628215
0.000655187
0.000661745
0.000651856
0.000625174
0.000621633
0.00057267
0.000543217
0.000508156
0.000451562
0.000454916
0.000414463
0.000413587
0.000422873
0.000425854
0.000471231
0.000476551
0.000554554
0.000565072
0.00062937
0.000652274
0.000672492
0.000682238
0.00067046
0.000641925
0.000637565
0.000587114
0.000563429
0.000526865
0.000471661
0.000479157
0.000439895
0.000433952
0.00045156
0.000447611
0.000499198
0.000500141
0.00057724
0.000585704
0.000645274
0.000670451
0.000686024
0.000697996
0.000682823
0.000654702
0.000654907
0.000600723
0.000584523
0.00054667
0.000490335
0.000503174
0.000464196
0.000453246
0.000479389
0.000468014
0.000525954
0.000521969
0.000599489
0.000605133
0.000661522
0.000689192
0.000698931
0.000714946
0.000697322
0.000667489
0.000666828
0.000607533
0.000599938
0.000560744
0.000501558
0.000522766
0.000482678
0.000465131
0.000501582
0.000479819
0.000546804
0.000534725
0.000614821
0.000616106
0.00066999
0.000701475
0.000704648
0.000725196
0.000704753
0.000672856
0.000680016
0.000617018
0.000618204
0.000575356
0.00051497
0.000542944
0.000501155
0.000477004
0.000525064
0.000492141
0.00056925
0.000548102
0.000633131
0.000628416
0.000681813
0.000715196
0.000713748
0.000739473
0.00071491
0.000682509
0.000687299
0.000616579
0.000629792
0.000583601
0.000517406
0.000558562
0.000513153
0.000479793
0.000541125
0.000494461
0.000583387
0.00055104
0.000641853
0.000630073
0.000682802
0.000721072
0.000712257
0.000744697
0.000715919
0.000680768
0.000697912
0.000621098
0.000645025
0.000593716
0.000523793
0.000575062
0.000525558
0.000485056
0.000559621
0.000499833
0.000600954
0.000557361
0.000655919
0.000635743
0.000690518
0.000732095
0.000716889
0.000756472
0.000723019
0.000685878
0.000701019
0.000611395
0.000655405
0.000598022
0.000516271
0.000589654
0.000532929
0.000476048
0.000573035
0.000490762
0.000611576
0.000549002
0.000660629
0.000627101
0.000683362
0.000732574
0.000706586
0.000758344
0.000718705
0.000676717
0.000707466
0.000613016
0.000665752
0.000600972
0.000517952
0.000601025
0.000537226
0.000477076
0.000584173
0.000491634
0.000622015
0.000550664
0.000668839
0.00062848
0.00068785
0.000738933
0.000708451
0.00076656
0.000720575
0.000678879
0.0007096
0.000591934
0.000680734
0.000601818
0.000495342
0.000621341
0.000541231
0.000452266
0.00059986
0.000468334
0.00063344
0.000528786
0.000673111
0.000607037
0.000671419
0.000738122
0.000688128
0.000769253
0.000711393
0.000659752
-0.0189102
-0.0185
-0.0183073
-0.0183341
-0.0186057
-0.0190797
-0.0197823
-0.0206386
-0.0216829
-0.0227685
-0.0238448
-0.0246918
-0.0250858
-0.0249796
-0.0244603
-0.023614
-0.0225603
-0.0214485
-0.0204148
-0.0195527
-0.00114656
-0.00100939
-0.000982429
-0.00103737
-0.00127235
-0.00158021
-0.00209045
-0.00260597
-0.0033471
-0.0040231
-0.00484337
-0.00546861
-0.00565591
-0.0052473
-0.00442576
-0.00350624
-0.0027223
-0.00213769
-0.00170524
-0.00137706
-0.00519571
-0.00499099
-0.00500677
-0.00510948
-0.00542121
-0.0057117
-0.00633391
-0.00686757
-0.00786194
-0.00871272
-0.00998835
-0.0108922
-0.0111852
-0.0107872
-0.00995928
-0.00893301
-0.00788334
-0.00693047
-0.00614675
-0.0055622
0.00172803
0.00186088
0.0018108
0.00175273
0.00140532
0.00120292
0.000516388
0.000110687
-0.000989547
-0.00178484
-0.00331632
-0.00419068
-0.0040743
-0.00317692
-0.00199533
-0.000914309
-1.65096e-05
0.000661579
0.00116266
0.00151954
-0.00108329
-0.000999313
-0.00112557
-0.00114406
-0.00150664
-0.00159801
-0.0023311
-0.00265378
-0.00392658
-0.00485441
-0.00683686
-0.00778383
-0.00751838
-0.00638947
-0.00496306
-0.00373163
-0.00272978
-0.00202526
-0.00153564
-0.00122347
0.00150285
0.00161338
0.0014872
0.00148515
0.00106111
0.000989646
0.000170301
-0.000124215
-0.00150559
-0.00249341
-0.00469207
-0.00535885
-0.00455156
-0.00323564
-0.00183272
-0.000782551
7.65709e-05
0.00065221
0.00107803
0.00136407
0.0001064
0.00015645
-6.00009e-06
2.10172e-05
-0.000382727
-0.000377799
-0.00116649
-0.00138966
-0.00279458
-0.00387136
-0.00634753
-0.00679719
-0.00558611
-0.00411747
-0.00265833
-0.00170745
-0.000922614
-0.000465256
-0.000134472
5.29926e-05
0.000938705
0.00100624
0.000843431
0.000862713
0.000440923
0.000427597
-0.000358267
-0.000611411
-0.00196768
-0.00312383
-0.00566351
-0.00563155
-0.00414196
-0.00278357
-0.00143594
-0.000688615
1.18951e-05
0.000385781
0.000695388
0.000875111
0.000342951
0.000369377
0.000199867
0.000223971
-0.000156623
-0.000138545
-0.00083109
-0.00102953
-0.00225609
-0.0033832
-0.00603529
-0.00566138
-0.00396484
-0.00274442
-0.00147266
-0.000903194
-0.000284495
-1.91779e-05
0.000221538
0.000330825
0.000544317
0.000569079
0.000404691
0.000411094
5.13561e-05
3.32526e-05
-0.000579093
-0.000837654
-0.00184506
-0.00301783
-0.00533153
-0.00461729
-0.00290191
-0.00198314
-0.000863404
-0.000499007
4.27884e-05
0.000229847
0.000443754
0.000533144
0.000309117
0.000311396
0.000153459
0.000156282
-0.000154977
-0.00015011
-0.000645225
-0.000797254
-0.00161813
-0.00246631
-0.00475969
-0.00405526
-0.00240372
-0.00178373
-0.000745844
-0.000525534
-3.16526e-05
9.11428e-05
0.000269274
0.00032114
0.000331698
0.000324468
0.000173699
0.000158435
-0.000124437
-0.000159323
-0.000572024
-0.000805241
-0.00135902
-0.00228416
-0.00385699
-0.00292078
-0.00148812
-0.00119471
-0.000341385
-0.000295028
0.000117632
0.000175146
0.000321559
0.000350736
0.000245195
0.000227084
8.71079e-05
7.01939e-05
-0.000165536
-0.000167714
-0.000460413
-0.00052085
-0.00087216
-0.00117288
-0.00273113
-0.00253421
-0.00113894
-0.00115237
-0.000304314
-0.000314742
8.73464e-05
0.000125937
0.000258282
0.000272282
0.000241381
0.000213863
7.9595e-05
4.83922e-05
-0.000171535
-0.000209433
-0.000478938
-0.000635401
-0.000844341
-0.00135446
-0.0019701
-0.0014408
-0.000449978
-0.000655601
-1.2324e-05
-0.000134724
0.000185384
0.000178876
0.000280411
0.00027626
0.000218905
0.000186575
6.33036e-05
3.36285e-05
-0.000145689
-0.000147756
-0.000307399
-0.000284377
-0.000300484
-0.00013795
-0.000832832
-0.00179168
-0.000408056
-0.000821541
-8.36568e-05
-0.000172038
0.000161168
0.000165768
0.000263312
0.000255632
0.000226788
0.000187745
6.8654e-05
2.89855e-05
-0.000146458
-0.000178059
-0.000372234
-0.000449467
-0.000558049
-0.000575472
-0.000479533
-0.00107697
-0.000155147
-0.000460521
0.000104288
-2.11236e-05
0.000239936
0.000218205
0.000289385
0.000269592
0.000235569
0.000194492
8.48883e-05
4.78317e-05
-9.68106e-05
-0.000101345
-0.000210205
-0.000187597
-0.000170273
-0.000174
-0.000366144
-0.00107487
-0.000219433
-0.000526896
4.26974e-05
-2.84096e-05
0.000234216
0.00022976
0.000297862
0.000278348
0.000257792
0.000212738
0.000107194
6.4226e-05
-7.85619e-05
-0.000103005
-0.000248208
-0.000288561
-0.000359171
-0.000433547
-0.000293644
-0.0005355
5.86766e-05
-0.000203333
0.000211393
0.00010914
0.00030658
0.000284534
0.000331419
0.000304409
0.000282922
0.000237038
0.000139066
9.84257e-05
-2.39712e-05
-3.04983e-05
-0.000122748
-0.000100301
-9.32095e-05
-0.0001256
-0.000157926
-0.000574962
-4.55653e-05
-0.000238523
0.000171029
0.000124819
0.000318463
0.000311545
0.000354836
0.000328763
0.000314162
0.00026652
0.000173035
0.000129742
1.13537e-05
-6.15947e-06
-0.000117739
-0.000130701
-0.000179023
-0.000235574
-0.000103918
-0.000229039
0.000170444
-7.59349e-07
0.000298401
0.000234339
0.000380173
0.000363502
0.000391817
0.000361825
0.000347136
0.00029917
0.000211868
0.000170205
6.45451e-05
5.66809e-05
-2.74221e-05
-5.01456e-06
-1.83378e-05
-2.97073e-05
-1.25055e-05
-0.000222678
0.000113216
6.56848e-06
0.000291775
0.000267533
0.000405295
0.000398527
0.0004229
0.000393426
0.000382014
0.000333749
0.000251266
0.000209057
0.000109213
9.68616e-05
7.71589e-06
1.49371e-05
-2.14053e-05
-3.95453e-05
5.2065e-05
-1.42523e-05
0.000255105
0.000162892
0.000378981
0.000348834
0.000455739
0.000444983
0.000459718
0.000428788
0.000417468
0.000369024
0.000291963
0.00025086
0.000159396
0.000151155
7.59114e-05
9.76596e-05
7.46162e-05
8.17898e-05
0.000114836
2.8016e-05
0.000250188
0.00020004
0.000398146
0.000390655
0.000487409
0.0004821
0.00049304
0.000462267
0.000452365
0.000404184
0.000332047
0.000291381
0.000205771
0.000196392
0.00012372
0.000140238
0.000111428
0.000121971
0.000180087
0.000154207
0.000338075
0.000299608
0.000457658
0.000450962
0.000528651
0.000522537
0.000527476
0.000496329
0.000486642
0.00043837
0.000371353
0.000331681
0.000252107
0.000244532
0.000179355
0.000199609
0.000176851
0.000196175
0.000231249
0.000208426
0.000362437
0.000347483
0.00048804
0.000492942
0.000560841
0.000557704
0.000559468
0.000528391
0.000519093
0.000471207
0.000409027
0.000369847
0.000295498
0.000288491
0.000227667
0.000245696
0.000224845
0.000247405
0.000289253
0.000289139
0.000420123
0.000413802
0.000531035
0.000538834
0.000594827
0.000592233
0.000589921
0.000559039
0.000549824
0.00050218
0.000445141
0.000406551
0.000337042
0.000330869
0.000275692
0.000292325
0.000275894
0.000300087
0.000334663
0.00034093
0.000454077
0.000458675
0.000562672
0.000575985
0.000624017
0.000623427
0.000618369
0.000587954
0.000578831
0.000530225
0.000478519
0.000440602
0.000374551
0.000369997
0.000318709
0.000333275
0.000321873
0.000345484
0.000382744
0.000395923
0.000495803
0.000505698
0.000595549
0.000611825
0.000651066
0.000652038
0.000644366
0.000613638
0.000605602
0.000556976
0.000510393
0.000472363
0.000409827
0.000407547
0.00035956
0.000370913
0.000365398
0.000385704
0.000423499
0.000438306
0.000528923
0.000543027
0.000622961
0.000642759
0.000675849
0.000678561
0.00066809
0.000637857
0.000628947
0.000579454
0.000538711
0.000500708
0.000440907
0.000440169
0.000396059
0.000403342
0.00040414
0.000421203
0.000461737
0.000477284
0.000561154
0.000575977
0.000648242
0.000669641
0.00069652
0.00070135
0.000688538
0.000658641
0.000652257
0.000600067
0.000565944
0.000528336
0.000468868
0.000471953
0.000429816
0.000433381
0.00044107
0.000451947
0.000496729
0.000509738
0.000589282
0.000604929
0.000670706
0.000694913
0.000715169
0.000723163
0.000708735
0.000677329
0.000670066
0.000616837
0.000588657
0.00054981
0.000492058
0.00049915
0.000458447
0.000456686
0.000472632
0.000476237
0.000526924
0.000535366
0.000613448
0.000627028
0.000687798
0.000714114
0.000729914
0.000740074
0.000722508
0.000691846
0.000688924
0.000632389
0.000611826
0.00057197
0.000513361
0.000525671
0.00048549
0.000478496
0.000502893
0.00049881
0.000555583
0.000558988
0.000636984
0.000647731
0.000705021
0.000733644
0.000743804
0.000757904
0.000738139
0.000706065
0.000702128
0.000640922
0.000629
0.000588036
0.000526866
0.000547356
0.000506259
0.000492576
0.000527095
0.000512513
0.000577969
0.0005733
0.000653351
0.00065983
0.000714361
0.000746583
0.000750438
0.000768901
0.000746545
0.000712723
0.00071633
0.000651815
0.000648731
0.000604374
0.000542186
0.000569304
0.000526729
0.000506311
0.000552258
0.000526452
0.000601717
0.000588004
0.00067251
0.000673081
0.000726828
0.000760775
0.000760263
0.000783726
0.000757495
0.000723421
0.000724363
0.0006526
0.000661405
0.000613934
0.000546237
0.000586238
0.000540218
0.000510679
0.000569524
0.000530149
0.000616732
0.000592081
0.000681779
0.000675575
0.000728386
0.000766936
0.000759446
0.000789299
0.00075908
0.000722607
0.000735605
0.000658081
0.000677645
0.00062527
0.000553926
0.000603886
0.000554008
0.000517226
0.000589098
0.000536645
0.000635098
0.000599362
0.000696353
0.000681936
0.000736471
0.000778212
0.000764617
0.000801389
0.000766742
0.000728457
0.000738961
0.000649216
0.000688536
0.000630344
0.000547532
0.000619094
0.000562223
0.000509349
0.00060298
0.000528551
0.00064596
0.000591844
0.000701099
0.000673942
0.0007296
0.000778565
0.000754826
0.000803201
0.000762644
0.000719965
0.000745728
0.000651361
0.000699419
0.000634002
0.0005499
0.000631047
0.000567321
0.000511057
0.000614661
0.000530042
0.000656797
0.000594061
0.000709549
0.000675746
0.00073422
0.000785049
0.000757041
0.000811559
0.000764872
0.000722558
0.000747663
0.000630912
0.000714528
0.000635334
0.00052818
0.000651364
0.000571796
0.000487159
0.000630193
0.000507515
0.00066787
0.00057291
0.000713341
0.00065497
0.000717778
0.00078366
0.000737237
0.000813769
0.000755674
0.000704024
-0.0190108
-0.0186283
-0.0184555
-0.0184998
-0.0187884
-0.0192759
-0.019995
-0.0208647
-0.021929
-0.0230249
-0.0241076
-0.0249407
-0.0252937
-0.0251413
-0.024576
-0.0236856
-0.0226004
-0.0214797
-0.0204584
-0.0196223
-0.00119276
-0.00105941
-0.00104299
-0.00111462
-0.00136812
-0.0016857
-0.00221091
-0.00272531
-0.00348244
-0.00415402
-0.00499003
-0.00560951
-0.00576324
-0.00529723
-0.00444496
-0.00353302
-0.00277596
-0.00220542
-0.00176778
-0.00142835
-0.00523937
-0.00505707
-0.00509603
-0.00520694
-0.0055303
-0.00581758
-0.00646315
-0.00698688
-0.00801769
-0.00886207
-0.0101785
-0.0110699
-0.01133
-0.0108653
-0.00998106
-0.00892203
-0.00785597
-0.00690599
-0.00613959
-0.00558017
0.00161506
0.00173492
0.0016674
0.00160186
0.00123235
0.00104098
0.0003185
-6.0209e-05
-0.00121443
-0.00199261
-0.00358248
-0.00444407
-0.00423506
-0.00327259
-0.0020626
-0.000978913
-8.81999e-05
0.000580307
0.00107238
0.00141859
-0.00113967
-0.00107146
-0.00121311
-0.00123267
-0.00162167
-0.0016935
-0.00247737
-0.00276051
-0.00410711
-0.00501115
-0.00706557
-0.00797813
-0.00758057
-0.00636542
-0.00490975
-0.00368354
-0.00270001
-0.00201953
-0.00155186
-0.00126122
0.00136405
0.00145858
0.00131039
0.00130841
0.000853256
0.000810741
-6.68022e-05
-0.000306145
-0.00177226
-0.00272191
-0.00500143
-0.00557655
-0.00467588
-0.00329395
-0.00187505
-0.00083508
1.16441e-05
0.000568001
0.000976769
0.00124388
2.73374e-05
6.29588e-05
-0.000119234
-9.15635e-05
-0.000530038
-0.000495627
-0.00134793
-0.00151327
-0.003008
-0.00404397
-0.00661716
-0.006924
-0.00559592
-0.00408775
-0.00262265
-0.00169424
-0.000924087
-0.000489141
-0.000176194
-7.83385e-06
0.000803946
0.000854683
0.000668643
0.000688863
0.000232964
0.000252611
-0.000593793
-0.000787017
-0.0022257
-0.00334864
-0.00598138
-0.0057821
-0.00418739
-0.00281525
-0.00145564
-0.000732971
-4.12742e-05
0.000310581
0.000602394
0.000761333
0.000248381
0.000259629
6.77608e-05
9.08366e-05
-0.000323997
-0.000277506
-0.00102611
-0.00117038
-0.00246794
-0.00356514
-0.00631319
-0.00574222
-0.00395635
-0.00274597
-0.00145825
-0.000918155
-0.000304017
-5.97519e-05
0.000165276
0.000255715
0.000425817
0.000433624
0.000246422
0.000250899
-0.000139129
-0.000131713
-0.000788481
-0.00100473
-0.00205554
-0.00322821
-0.00558705
-0.00470582
-0.00290197
-0.00201576
-0.000869866
-0.000538012
2.92526e-06
0.000168645
0.000366454
0.000435763
0.000214041
0.000200151
2.0096e-05
1.8606e-05
-0.000320649
-0.00029588
-0.000826534
-0.000941541
-0.00179015
-0.00262935
-0.00496911
-0.00412774
-0.00238702
-0.00181426
-0.000738613
-0.000551333
-5.42513e-05
4.88775e-05
0.000212575
0.000245933
0.000233169
0.000209167
3.70787e-05
1.64137e-05
-0.000290315
-0.000309924
-0.000747514
-0.000959157
-0.00151354
-0.00247029
-0.00401213
-0.00298214
-0.00146208
-0.00123485
-0.000338677
-0.000327119
9.04016e-05
0.000129096
0.000261389
0.000272194
0.000161751
0.000127276
-3.31599e-05
-5.71646e-05
-0.000314014
-0.000305025
-0.000613535
-0.000653158
-0.000989321
-0.0012955
-0.00283918
-0.00262585
-0.00111404
-0.00119768
-0.000296367
-0.000337962
7.07059e-05
9.22428e-05
0.000211217
0.000207905
0.000163791
0.000120235
-3.32801e-05
-7.20897e-05
-0.000310496
-0.000340258
-0.000622662
-0.000767459
-0.000957434
-0.00150229
-0.00203936
-0.00149195
-0.000411835
-0.000693632
-3.00569e-06
-0.000155809
0.000170228
0.000148429
0.000237377
0.000216951
0.000153195
0.000105328
-3.62051e-05
-7.42651e-05
-0.000269988
-0.000266061
-0.000431469
-0.000394715
-0.000377306
-0.000221288
-0.000871779
-0.00191158
-0.000380424
-0.000862504
-7.17949e-05
-0.000184365
0.000154328
0.000145277
0.000230503
0.000207381
0.000169931
0.000116199
-1.98323e-05
-6.78254e-05
-0.000258222
-0.000285025
-0.00048793
-0.000553854
-0.000648062
-0.000670979
-0.000519816
-0.00114102
-0.000124594
-0.00048458
0.000119228
-2.80703e-05
0.00023643
0.000203041
0.000262887
0.000229027
0.000189118
0.00013405
8.55685e-06
-3.69906e-05
-0.000195269
-0.000196056
-0.000309627
-0.000274162
-0.000232238
-0.00023869
-0.000392602
-0.00115671
-0.000205896
-0.000551395
5.74405e-05
-2.77993e-05
0.000237603
0.000223035
0.000280093
0.000247329
0.000220446
0.000162412
4.22723e-05
-8.77595e-06
-0.000163909
-0.00018513
-0.000337157
-0.000365979
-0.000428377
-0.000502326
-0.000318819
-0.000571817
7.9295e-05
-0.00021366
0.000227689
0.000114018
0.000313139
0.000283037
0.000320067
0.000281208
0.000254765
0.000196702
8.51576e-05
3.66306e-05
-9.73028e-05
-0.000101271
-0.00019943
-0.000163853
-0.000146026
-0.000170033
-0.000180436
-0.000619111
-3.53641e-05
-0.000243808
0.000189925
0.000137111
0.000331304
0.000317218
0.000350978
0.00031383
0.000294266
0.000235454
0.000129621
7.89918e-05
-4.96538e-05
-6.47728e-05
-0.000182248
-0.000183079
-0.000227524
-0.000276413
-0.000118956
-0.000248014
0.000185475
1.53335e-06
0.000317706
0.00024964
0.000395921
0.000373814
0.000393771
0.000353947
0.000335094
0.000276785
0.000178123
0.000129453
1.42349e-05
8.0575e-06
-8.21347e-05
-4.78224e-05
-5.87904e-05
-5.71832e-05
-2.80625e-05
-0.000238721
0.0001268
1.66604e-05
0.000315696
0.00028938
0.000426487
0.000414682
0.000431079
0.000392494
0.000377018
0.000319333
0.000226548
0.0001779
6.9631e-05
5.89405e-05
-3.54555e-05
-1.66205e-05
-5.25626e-05
-5.77962e-05
4.50867e-05
-1.84835e-05
0.000270294
0.000176503
0.000403194
0.000373059
0.000479692
0.000465137
0.000472892
0.000433866
0.00041895
0.000361882
0.000275413
0.000228279
0.000129095
0.000121921
4.13785e-05
7.33462e-05
4.91474e-05
6.99704e-05
0.000109294
3.05357e-05
0.000268777
0.000220948
0.000426993
0.000419938
0.000515692
0.000506796
0.000511195
0.000472996
0.000459615
0.00040362
0.000322956
0.000276773
0.000184363
0.000175955
9.88177e-05
0.000125242
9.50232e-05
0.000119459
0.000181433
0.000162854
0.000357605
0.000322887
0.000487495
0.000482455
0.000559541
0.000550593
0.000549759
0.000511984
0.000499068
0.000443713
0.000368919
0.000324164
0.000238469
0.000231483
0.000162121
0.000190904
0.000166072
0.000198249
0.00023601
0.000223324
0.000386112
0.000376111
0.000521511
0.000528014
0.000594996
0.000589182
0.000585624
0.000548522
0.000536093
0.000481825
0.000412565
0.00036876
0.000289011
0.000282442
0.000218068
0.000244044
0.000221263
0.000256343
0.000299165
0.000308185
0.000445402
0.0004447
0.000566072
0.000575943
0.000631295
0.000626425
0.000619368
0.00058309
0.00057084
0.000517464
0.000453942
0.000411139
0.000336824
0.000330864
0.000272544
0.000296129
0.000277672
0.000313269
0.000348533
0.000364674
0.00048278
0.000493165
0.000600331
0.000615552
0.000662893
0.000660145
0.000650758
0.000615473
0.000603375
0.000549648
0.000491977
0.000450248
0.000379959
0.00037547
0.000321508
0.000342393
0.000329144
0.000363412
0.00040058
0.000422947
0.000526503
0.000542316
0.000634884
0.000653118
0.000691863
0.000690859
0.000679297
0.000644204
0.000633172
0.000579999
0.000527887
0.000486423
0.000420133
0.000417772
0.000367492
0.000384497
0.000377206
0.000407317
0.000444872
0.000468719
0.000562194
0.00058208
0.000664177
0.000685731
0.00071841
0.000719204
0.000705202
0.000671053
0.000659163
0.000605664
0.000559745
0.000518656
0.000455548
0.000454602
0.000408546
0.000420987
0.000420104
0.000446269
0.000486213
0.000510331
0.000596318
0.000616835
0.00069093
0.000713951
0.000740596
0.000743555
0.000727556
0.000694164
0.000684674
0.000628993
0.000589974
0.000549618
0.000487232
0.00048999
0.000446215
0.000454507
0.000460563
0.000479944
0.000523958
0.000545243
0.00062631
0.000647494
0.000714739
0.00074035
0.000760527
0.000766631
0.000749324
0.000714806
0.000704394
0.000648174
0.000615293
0.000573999
0.000513685
0.000520314
0.000478237
0.000480901
0.000495172
0.000506836
0.000556497
0.000572937
0.000651994
0.000671027
0.000732989
0.000760505
0.000776431
0.000784642
0.000764479
0.00073107
0.000724784
0.000665727
0.000640607
0.000598617
0.000537744
0.00054947
0.000508163
0.000505342
0.000527999
0.000531635
0.000587141
0.000598361
0.000676824
0.000692959
0.000751145
0.000780748
0.000791246
0.000803294
0.000781206
0.000746715
0.000739279
0.000676028
0.000659595
0.000616758
0.000553633
0.000573347
0.000531328
0.000521709
0.000554306
0.000547282
0.000611126
0.000614238
0.000694233
0.000706149
0.000761323
0.000794281
0.000798747
0.000814986
0.000790553
0.000754657
0.000754488
0.000688356
0.000680824
0.000634878
0.000570934
0.000597136
0.000553867
0.000537377
0.000581215
0.000562868
0.000636211
0.000630269
0.000714233
0.000720303
0.000774397
0.000808875
0.000809246
0.000830303
0.000802255
0.000766385
0.000763259
0.000690385
0.0006946
0.00064579
0.000576654
0.00061543
0.000568896
0.000543376
0.000599725
0.000567967
0.000652122
0.000635487
0.000724036
0.000723605
0.000776496
0.000815269
0.000809065
0.000836181
0.000804382
0.000766484
0.000775116
0.000696842
0.000711878
0.000658382
0.000585688
0.000634263
0.000584112
0.000551251
0.000620401
0.00057561
0.0006713
0.000643725
0.000739101
0.000730632
0.000784922
0.000826745
0.000814739
0.000848547
0.000812573
0.000773061
0.000778695
0.000688822
0.000723267
0.00066422
0.000580445
0.000650084
0.000593168
0.000544529
0.000634743
0.000568503
0.000682386
0.000637042
0.000743854
0.000723264
0.000778317
0.000826925
0.000805431
0.000850258
0.00080865
0.000765223
0.000785772
0.000691499
0.000734719
0.00066861
0.000583526
0.000662638
0.00059909
0.000546942
0.000646979
0.000570628
0.000693623
0.000639818
0.000752532
0.000725486
0.000783056
0.000833504
0.000807981
0.000858739
0.000811222
0.000768244
0.000787465
0.000671682
0.000749961
0.0006704
0.000562703
0.000682913
0.000603995
0.00052397
0.000662302
0.000548881
0.000704294
0.000619398
0.000755794
0.000705365
0.000766597
0.000831483
0.000788682
0.000860434
0.000801959
0.000750288
-0.0191227
-0.0187671
-0.0186133
-0.0186738
-0.0189781
-0.019479
-0.0202143
-0.0210965
-0.0221803
-0.0232849
-0.0243728
-0.025188
-0.0254956
-0.025295
-0.0246826
-0.0237472
-0.0226335
-0.0215099
-0.0205071
-0.0197013
-0.001247
-0.00112172
-0.00111997
-0.00121121
-0.00148187
-0.0018067
-0.00234506
-0.0028547
-0.00362688
-0.0042906
-0.00514261
-0.00575454
-0.00587255
-0.00534535
-0.00446671
-0.00357051
-0.00284054
-0.0022786
-0.0018324
-0.00148328
-0.00529102
-0.00513387
-0.00519424
-0.00531285
-0.0056489
-0.00593137
-0.00660154
-0.00711001
-0.00817979
-0.00901172
-0.0103693
-0.0112446
-0.011466
-0.0109319
-0.00999041
-0.00889838
-0.00781962
-0.00687804
-0.00613393
-0.00560359
0.00148414
0.00158748
0.00150022
0.00142695
0.00103514
0.000858521
9.75438e-05
-0.000244564
-0.001459
-0.00220993
-0.00386373
-0.00470797
-0.00439309
-0.00336316
-0.00213035
-0.00104649
-0.000165158
0.000491298
0.000971436
0.00130332
-0.001208
-0.00115862
-0.00131716
-0.00133894
-0.00175575
-0.00180383
-0.00264343
-0.00287388
-0.00430361
-0.0051684
-0.00730054
-0.00816424
-0.00762853
-0.00632623
-0.00484737
-0.00363065
-0.00266896
-0.00201609
-0.00157366
-0.001308
0.00120581
0.00128047
0.00110838
0.00110517
0.000617318
0.000609118
-0.000332996
-0.000501337
-0.00206452
-0.00295688
-0.00532844
-0.00579658
-0.00479401
-0.00334685
-0.00191491
-0.000888726
-5.7294e-05
0.000476029
0.000863942
0.00110789
-6.78792e-05
-5.06139e-05
-0.000255102
-0.000228664
-0.000704163
-0.000635001
-0.0015576
-0.00164862
-0.00324473
-0.00422013
-0.00689991
-0.00703117
-0.00559338
-0.00405061
-0.00258228
-0.00167982
-0.000926708
-0.000517697
-0.000226283
-8.11058e-05
0.000651165
0.00068089
0.000469119
0.000488309
-4.20877e-06
5.37666e-05
-0.000860105
-0.000976907
-0.00250908
-0.00358095
-0.00631405
-0.00592325
-0.00422409
-0.00284266
-0.00147127
-0.000776905
-9.63086e-05
0.000229835
0.000499804
0.000633589
0.000136832
0.00012865
-8.86356e-05
-6.89041e-05
-0.000520743
-0.000441085
-0.00125189
-0.00132675
-0.00270371
-0.00375538
-0.00660352
-0.00581576
-0.00394018
-0.00274571
-0.00143967
-0.000932441
-0.000324751
-0.00010491
0.000100438
0.000167778
0.000291797
0.000278428
6.53819e-05
6.55476e-05
-0.000357502
-0.000320574
-0.00102678
-0.00118809
-0.00228669
-0.00345051
-0.00584841
-0.00478955
-0.00289287
-0.00204739
-0.000871258
-0.000575589
-3.72352e-05
0.00010407
0.00028184
0.000326976
0.00010425
7.00071e-05
-0.000135416
-0.000143792
-0.000513647
-0.000465938
-0.00103586
-0.0011033
-0.001981
-0.00280391
-0.00518187
-0.00420175
-0.0023614
-0.0018455
-0.000726366
-0.000575642
-7.69951e-05
3.68913e-06
0.0001491
0.000160045
0.000122246
7.75126e-05
-0.00011905
-0.000147604
-0.000480586
-0.000482761
-0.000947765
-0.0011302
-0.00168319
-0.00267186
-0.00416354
-0.0030466
-0.00142556
-0.00127605
-0.000330605
-0.000357056
6.39293e-05
8.15202e-05
0.000196137
0.000185029
6.71059e-05
1.25165e-05
-0.000171456
-0.000205086
-0.000485285
-0.000463782
-0.000789532
-0.00080259
-0.00111875
-0.00143073
-0.0029423
-0.00272672
-0.00107944
-0.00124435
-0.000283174
-0.000358632
5.51248e-05
5.75916e-05
0.000159814
0.000135901
7.7126e-05
1.40751e-05
-0.00016157
-0.000210405
-0.00046929
-0.000490014
-0.0007864
-0.000915099
-0.00108237
-0.00166494
-0.00210166
-0.001549
-0.000363658
-0.000732512
1.12027e-05
-0.000174046
0.000156639
0.000118037
0.000191408
0.000151804
7.98361e-05
1.32579e-05
-0.00014922
-0.000197948
-0.000411955
-0.000401547
-0.000573253
-0.000519338
-0.000462153
-0.000315121
-0.000905151
-0.00204328
-0.000344875
-0.000903828
-5.53503e-05
-0.000193327
0.000149434
0.000125448
0.000195611
0.000154424
0.000107118
3.58596e-05
-0.000119536
-0.000177954
-0.000385003
-0.000406625
-0.000619173
-0.000670282
-0.000748442
-0.000776589
-0.000557658
-0.00120897
-8.69569e-05
-0.000507652
0.00013809
-3.15915e-05
0.000235121
0.000189186
0.000235341
0.000185126
0.000138013
6.64446e-05
-7.71042e-05
-0.000133062
-0.000306577
-0.000303382
-0.0004225
-0.000370892
-0.00030148
-0.000309432
-0.00041725
-0.00124541
-0.000188026
-0.000574347
7.60153e-05
-2.32757e-05
0.000243567
0.000218119
0.000262026
0.000213988
0.000179739
0.000106516
-3.0124e-05
-9.0964e-05
-0.000259836
-0.000277654
-0.000437359
-0.000451646
-0.000505493
-0.000577097
-0.000343007
-0.00060982
0.000103683
-0.000222061
0.000247177
0.0001227
0.000322436
0.000283766
0.000309155
0.000256692
0.0002243
0.000152133
2.53479e-05
-3.25806e-05
-0.000179324
-0.00018064
-0.000285725
-0.000234082
-0.000205598
-0.000217422
-0.000203814
-0.000665199
-2.25938e-05
-0.000246221
0.000212224
0.000153508
0.000347151
0.000325433
0.00034811
0.00029836
0.000273004
0.000201348
8.17265e-05
2.24317e-05
-0.000117541
-0.000130185
-0.000254343
-0.000240409
-0.000281522
-0.000319439
-0.00013417
-0.000267405
0.000202327
6.39687e-06
0.000339946
0.000268896
0.000414793
0.000386928
0.000397216
0.000346238
0.000322451
0.000252358
0.000141109
8.4267e-05
-4.14268e-05
-4.59252e-05
-0.000143032
-9.45986e-05
-0.00010417
-8.59625e-05
-4.48187e-05
-0.000254036
0.000142421
3.00886e-05
0.000342813
0.000315263
0.000450924
0.000433788
0.000441098
0.000392268
0.000372067
0.000303722
0.000199591
0.000143496
2.6046e-05
1.69975e-05
-8.32676e-05
-5.08141e-05
-8.72e-05
-7.60827e-05
3.74898e-05
-2.1905e-05
0.000286906
0.000193137
0.000430414
0.000401226
0.000506981
0.000488386
0.000488216
0.000440111
0.00042099
0.000354242
0.000257488
0.00020346
9.59405e-05
8.97709e-05
3.40248e-06
4.71573e-05
2.08877e-05
5.8261e-05
0.000103294
3.48136e-05
0.00028922
0.000245194
0.000458952
0.000453083
0.000547317
0.000534623
0.000531693
0.000485232
0.00046784
0.000403127
0.000313202
0.000260764
0.000161058
0.000153538
7.15415e-05
0.000109197
7.68315e-05
0.000117844
0.000182678
0.000173205
0.000378839
0.000349398
0.000520447
0.000517752
0.000593812
0.00058183
0.00057455
0.000529422
0.000512789
0.000449587
0.000366405
0.000315943
0.000223744
0.000217255
0.000143435
0.000181788
0.000154267
0.000201464
0.000241139
0.000240359
0.000411773
0.000407984
0.000558079
0.000566749
0.000632477
0.000623813
0.000614372
0.000570632
0.000554636
0.000493339
0.000416491
0.000367534
0.000282087
0.000275852
0.000207743
0.000242484
0.000217303
0.000266713
0.00030974
0.000329427
0.000472765
0.000478832
0.000604246
0.000616646
0.000671073
0.000663752
0.000651469
0.000609266
0.000593584
0.00053393
0.000463504
0.000416047
0.000336708
0.000330862
0.0002693
0.000300486
0.000279672
0.000328135
0.000363486
0.000390781
0.000513703
0.00053081
0.000641072
0.000658573
0.000704999
0.000699938
0.000685816
0.000645209
0.00062978
0.00057047
0.000506485
0.000460579
0.000385894
0.000381371
0.000324693
0.000352396
0.000337074
0.000383158
0.000419747
0.000452401
0.000559551
0.000582068
0.000677305
0.000697775
0.00073583
0.000732697
0.000716893
0.00067705
0.000662694
0.000604587
0.000546655
0.000501455
0.000431304
0.000428772
0.000376209
0.000399265
0.000390064
0.000430912
0.000467856
0.000501619
0.000597882
0.000624183
0.000708416
0.000731943
0.000764053
0.000762786
0.000744952
0.000706559
0.000691388
0.000633565
0.000582219
0.000537796
0.00047132
0.00047008
0.000422124
0.000440036
0.000437401
0.000473401
0.000512485
0.000545907
0.000633975
0.000660701
0.000736609
0.000761403
0.000787675
0.000788622
0.000769176
0.000732006
0.000719133
0.000659699
0.000615564
0.000572257
0.000506929
0.000509282
0.000463941
0.000477217
0.000481621
0.000510095
0.000553138
0.000583289
0.000665858
0.000692993
0.000761701
0.00078882
0.000808801
0.000812877
0.000792465
0.000754595
0.000740779
0.000681352
0.000643575
0.000599671
0.0005368
0.000542897
0.000499533
0.000506839
0.000519448
0.000539643
0.000588135
0.000613063
0.000693088
0.000717909
0.000781059
0.000809833
0.000825785
0.000831909
0.000808951
0.000772592
0.000762696
0.000700947
0.000671084
0.000626835
0.000563729
0.000574804
0.000532472
0.000534015
0.000554959
0.00056671
0.00062084
0.000640283
0.000719209
0.000741005
0.000800089
0.000830692
0.000841445
0.000851302
0.000826714
0.000789636
0.000778472
0.000713044
0.000691925
0.000647119
0.000582087
0.000600961
0.000558129
0.000552751
0.000583452
0.000584331
0.000646487
0.000657724
0.00073766
0.000755237
0.000811056
0.000844738
0.000849744
0.00086362
0.000836953
0.000798836
0.000794664
0.000726821
0.00071466
0.000667062
0.000601428
0.000626648
0.000582798
0.00057041
0.000612162
0.000601582
0.000672931
0.00067507
0.000758476
0.000770242
0.000824684
0.000859654
0.000860851
0.000879357
0.000849349
0.000811563
0.000804151
0.000730101
0.000729544
0.000679353
0.00060886
0.000646338
0.000599403
0.000578083
0.000631944
0.000608095
0.000689753
0.000681421
0.000768793
0.000774311
0.000827284
0.000866214
0.000861252
0.000885481
0.00085197
0.00081255
0.000816595
0.00073754
0.000747878
0.000693226
0.000619271
0.00066638
0.000616071
0.00058732
0.000653735
0.000616901
0.000709747
0.000690604
0.000784323
0.00078197
0.000836013
0.000877828
0.000867383
0.000898073
0.000860646
0.000819829
0.000820362
0.000730362
0.000759741
0.000699816
0.000615191
0.000682804
0.000625956
0.000581769
0.00066852
0.000610788
0.000721029
0.000684742
0.000789047
0.000775198
0.000829648
0.000877779
0.000858523
0.000899634
0.000856851
0.000812621
0.000827734
0.000733575
0.000771809
0.000704958
0.000619006
0.000695969
0.000632719
0.000584909
0.000681313
0.000613557
0.000732665
0.000688077
0.000797935
0.000777828
0.000834488
0.000884418
0.000861386
0.00090822
0.000859745
0.000816061
0.000829135
0.000714387
0.000787202
0.000707174
0.000599083
0.000716154
0.000638002
0.00056287
0.000696368
0.000592592
0.000742878
0.000668389
0.000800613
0.000758346
0.000818004
0.000881708
0.000842575
0.000909368
0.000850364
0.000798665
-0.0192469
-0.0189175
-0.0187837
-0.0188618
-0.0191819
-0.0196982
-0.0204542
-0.0213491
-0.0224431
-0.0235496
-0.0246394
-0.0254311
-0.025689
-0.025438
-0.0247767
-0.0237959
-0.0226586
-0.0215397
-0.020562
-0.0197908
-0.0013136
-0.00120174
-0.00121862
-0.00133141
-0.00161788
-0.00194746
-0.00249674
-0.00299691
-0.00378176
-0.00443252
-0.00529982
-0.00590193
-0.00598116
-0.00538961
-0.00449125
-0.00361891
-0.00291435
-0.00235556
-0.00189944
-0.00154458
-0.00535315
-0.00522422
-0.00530419
-0.00543047
-0.00578011
-0.00605586
-0.00675135
-0.00723745
-0.00834913
-0.00916044
-0.0105595
-0.0114165
-0.0115888
-0.0109806
-0.009983
-0.00885909
-0.00777309
-0.00684673
-0.00613079
-0.00563428
0.00133092
0.00141338
0.00130405
0.00122233
0.000808536
0.000650904
-0.000150939
-0.000444022
-0.00172592
-0.0024351
-0.00415836
-0.00497577
-0.00454475
-0.00344726
-0.00219744
-0.00111613
-0.00024712
0.00039376
0.000857658
0.00117026
-0.00129216
-0.00126565
-0.00144312
-0.00146904
-0.00191467
-0.00193424
-0.00283452
-0.00299549
-0.0045195
-0.00532366
-0.00753909
-0.008332
-0.00765877
-0.00626901
-0.0047737
-0.00357149
-0.00263599
-0.00201544
-0.00160281
-0.00136668
0.00102369
0.00107357
0.000875235
0.000868573
0.000346715
0.000378645
-0.000634677
-0.000712223
-0.00238713
-0.0031971
-0.00567634
-0.00601394
-0.0049011
-0.00339103
-0.0019499
-0.000942056
-0.000129707
0.000375615
0.000737573
0.000952856
-0.000183588
-0.000189808
-0.000419795
-0.000397518
-0.000912164
-0.000802621
-0.00180246
-0.00179875
-0.0035098
-0.0043993
-0.00719671
-0.00712095
-0.00557808
-0.00400441
-0.00253518
-0.00166283
-0.000929927
-0.000551482
-0.000286544
-0.000169897
0.000476537
0.000479793
0.000239081
0.000254187
-0.000277441
-0.000175516
-0.00116422
-0.00118414
-0.00282277
-0.00382035
-0.00666108
-0.00605092
-0.00424909
-0.00286365
-0.00148044
-0.000818779
-0.000152387
0.000143384
0.000386249
0.000489286
4.7465e-06
-2.83711e-05
-0.00027499
-0.000261968
-0.000753685
-0.000635934
-0.00151555
-0.00150208
-0.00296833
-0.00395412
-0.00690564
-0.00588054
-0.00391357
-0.002742
-0.00141477
-0.000944529
-0.000345999
-0.00015479
2.57389e-05
6.45819e-05
0.000139459
9.94566e-05
-0.00014337
-0.000150879
-0.00060988
-0.000539395
-0.0013005
-0.00139109
-0.00254278
-0.00368573
-0.00611374
-0.00486795
-0.00287151
-0.00207657
-0.000865468
-0.000610056
-7.67876e-05
3.63765e-05
0.000189133
0.000204988
-2.26748e-05
-8.25628e-05
-0.000317418
-0.000336181
-0.00073955
-0.000665952
-0.00127922
-0.001286
-0.00219454
-0.00299115
-0.00539563
-0.00427797
-0.00232374
-0.0018762
-0.000707213
-0.000596847
-9.90254e-05
-4.4071e-05
7.82767e-05
6.20017e-05
-2.92779e-06
-7.33048e-05
-0.000298246
-0.000338119
-0.000700162
-0.000682788
-0.00117798
-0.00132158
-0.00187103
-0.0028907
-0.00430791
-0.00311547
-0.00137559
-0.0013174
-0.000315553
-0.000383279
3.91096e-05
3.29775e-05
0.000125576
8.82362e-05
-4.01293e-05
-0.00011942
-0.000330658
-0.000377267
-0.000683464
-0.000648285
-0.000992886
-0.000972263
-0.00126285
-0.00158034
-0.00303749
-0.00283869
-0.00103246
-0.00129145
-0.000263286
-0.000375226
4.15043e-05
2.26481e-05
0.000104069
5.56185e-05
-1.96026e-05
-0.000106277
-0.00030748
-0.000369525
-0.000651249
-0.000662276
-0.000973841
-0.001081
-0.00122134
-0.00184434
-0.00215429
-0.00161353
-0.000303165
-0.000771524
3.14358e-05
-0.000188045
0.000145508
8.84556e-05
0.000142716
8.04885e-05
-1.77908e-06
-9.0796e-05
-0.000277363
-0.000339708
-0.000574219
-0.000557094
-0.000735765
-0.000660507
-0.000556369
-0.000420875
-0.000930822
-0.00218871
-0.00029972
-0.000944678
-3.33426e-05
-0.000197591
0.000147377
0.000107085
0.000159012
9.66986e-05
3.80733e-05
-5.40386e-05
-0.000231657
-0.000303115
-0.000528813
-0.000545093
-0.000768386
-0.000800435
-0.000861022
-0.000893343
-0.000591894
-0.00128126
-4.11594e-05
-0.000528962
0.000161602
-3.04919e-05
0.000236867
0.000177466
0.000207234
0.000138024
8.223e-05
-8.74928e-06
-0.000172913
-0.0002416
-0.000432207
-0.000424991
-0.000550735
-0.000478995
-0.000379264
-0.000386443
-0.000439469
-0.00134177
-0.000165305
-0.000594864
9.90845e-05
-1.3722e-05
0.000252942
0.000215831
0.000244233
0.000178622
0.000135818
4.48836e-05
-0.000110428
-0.000183102
-0.000367359
-0.000381773
-0.000550193
-0.000546393
-0.000591706
-0.000658094
-0.000365815
-0.000649591
0.000132126
-0.000227814
0.000270383
0.000136184
0.000335274
0.000287526
0.000299301
0.000231259
0.000191805
0.000103363
-4.05387e-05
-0.000109672
-0.000270676
-0.000269406
-0.000382645
-0.000311521
-0.000272972
-0.000267555
-0.000228283
-0.000713053
-7.06982e-06
-0.000244954
0.000238447
0.000174912
0.000366761
0.000336958
0.000346868
0.000282824
0.000250742
0.000164377
2.9366e-05
-4.01548e-05
-0.000192652
-0.000202882
-0.000334654
-0.000302937
-0.00034168
-0.000364282
-0.000149688
-0.00028709
0.000220989
1.44745e-05
0.000365589
0.000292921
0.000437515
0.000403572
0.000402787
0.000339205
0.000309625
0.000226164
0.000100984
3.46276e-05
-0.000102551
-0.000105508
-0.000210468
-0.000145456
-0.000155075
-0.000115734
-6.29524e-05
-0.000268205
0.000160195
4.74892e-05
0.000373584
0.000345901
0.000479275
0.000456523
0.000453575
0.000393271
0.000367608
0.000287257
0.00017065
0.000105963
-2.14848e-05
-2.90247e-05
-0.000135854
-8.75957e-05
-0.000125605
-9.39193e-05
2.91212e-05
-2.42333e-05
0.000304977
0.000213352
0.000461093
0.000433993
0.000538236
0.00051536
0.00050628
0.000448044
0.000424043
0.00034648
0.00023851
0.000176622
6.0114e-05
5.47912e-05
-3.79696e-05
1.92402e-05
-1.0266e-05
4.70854e-05
9.67643e-05
4.12046e-05
0.00031165
0.000273269
0.000494439
0.000490667
0.000582854
0.000566157
0.000555087
0.000499479
0.000477489
0.0004031
0.000303145
0.000243635
0.000136122
0.000129316
4.20515e-05
9.23084e-05
5.68823e-05
0.000117548
0.000183797
0.000185591
0.00040195
0.000379609
0.000556935
0.000557381
0.000631992
0.000616775
0.000602361
0.000549124
0.000528238
0.000456388
0.000364186
0.000307338
0.000208249
0.000202094
0.000123548
0.000172524
0.000141591
0.000206216
0.00024672
0.000259864
0.000439616
0.000443506
0.000598133
0.000609614
0.000673762
0.000662074
0.000646182
0.000595167
0.000575131
0.000506133
0.000421181
0.000366508
0.000275072
0.000269007
0.000196994
0.0002413
0.000213183
0.000278877
0.00032111
0.000353194
0.000502454
0.000516578
0.000645931
0.000661364
0.00071459
0.000704645
0.000686652
0.00063798
0.000618435
0.000551941
0.000474194
0.00042162
0.000337049
0.00033117
0.000266295
0.000305698
0.000282169
0.000345044
0.000379709
0.000419551
0.000547089
0.000571947
0.00068524
0.000705423
0.00075072
0.000743189
0.000723929
0.000677544
0.000658394
0.000593035
0.000522395
0.00047193
0.000392708
0.000388014
0.000328609
0.00036359
0.000345965
0.000405048
0.000440463
0.000484575
0.000595203
0.000625265
0.000723128
0.000746133
0.000783311
0.000777894
0.000757503
0.000712519
0.000694487
0.000631062
0.000567027
0.000517777
0.000443684
0.000440861
0.000386055
0.000415518
0.000404293
0.000456799
0.00049268
0.000537273
0.00063624
0.000669619
0.000755972
0.000781694
0.000813084
0.00080961
0.000787652
0.000744685
0.000725914
0.000663453
0.000606441
0.000558427
0.000488547
0.000486908
0.000437126
0.000460783
0.000456352
0.000502891
0.000540794
0.000584265
0.000674375
0.000707831
0.000785542
0.000812261
0.000838028
0.000836821
0.000813673
0.000772449
0.000755897
0.000692454
0.000642998
0.000596536
0.000528266
0.000530121
0.000483312
0.000501791
0.000504545
0.000542668
0.00058452
0.000624111
0.000708165
0.000741662
0.000811833
0.000840558
0.000860232
0.000862142
0.000838403
0.000796948
0.000779458
0.000716617
0.000673762
0.000627092
0.000561688
0.000567172
0.000522636
0.000534767
0.000545749
0.000574911
0.000622084
0.000655963
0.000736957
0.000767884
0.000832225
0.00086231
0.000878188
0.00088209
0.000856144
0.000816634
0.000802875
0.00073827
0.000703492
0.000656872
0.000591581
0.00060193
0.000558696
0.000564767
0.000584047
0.000604268
0.000656919
0.000684959
0.000764352
0.000792061
0.000852049
0.000883667
0.000894589
0.000902118
0.00087486
0.000835029
0.000819902
0.000752174
0.000726198
0.000679344
0.000612475
0.000630438
0.000586921
0.000585938
0.000614793
0.000623879
0.000684274
0.000703946
0.000783826
0.000807269
0.000863736
0.000898125
0.000903596
0.00091497
0.000885918
0.000845442
0.000837037
0.000767395
0.000750426
0.000701132
0.000633896
0.000658066
0.000613764
0.000605632
0.00064534
0.000642798
0.000712092
0.000722582
0.000805426
0.000823057
0.000877851
0.000913264
0.000915227
0.000931036
0.000898933
0.000859118
0.000847201
0.000771921
0.000766399
0.000714814
0.000643067
0.00067917
0.000631964
0.000615009
0.000666407
0.000650726
0.000729827
0.000730047
0.000816224
0.000827841
0.0008809
0.000919912
0.000916143
0.000937333
0.000901987
0.000860953
0.000860192
0.000780331
0.000785788
0.00072998
0.000654873
0.000700434
0.000650099
0.000625631
0.000689314
0.000660699
0.000750628
0.000740153
0.000832181
0.000836087
0.000889884
0.000931588
0.000922672
0.000950087
0.000911091
0.000868898
0.000864103
0.000773984
0.000798077
0.000737298
0.000651958
0.000717441
0.000660786
0.00062126
0.000704514
0.000655572
0.000762074
0.000735094
0.000836831
0.000829874
0.000883727
0.000931248
0.000914213
0.000951436
0.00090737
0.000862286
0.000871746
0.000777732
0.000810815
0.000743209
0.00065652
0.000731221
0.000668398
0.000625143
0.000717859
0.000658995
0.0007741
0.000738982
0.000845909
0.000832892
0.000888642
0.000937904
0.000917362
0.000960106
0.000910559
0.000866129
0.000872797
0.000759163
0.000826395
0.000745814
0.000637494
0.000751256
0.000673999
0.000604038
0.000732576
0.000638808
0.000783791
0.000720019
0.00084794
0.000814031
0.000872125
0.000934447
0.000899019
0.000960678
0.000901003
0.000849272
-0.0193839
-0.0190791
-0.0189654
-0.0190607
-0.0193924
-0.0199182
-0.0206846
-0.0215918
-0.0227039
-0.023812
-0.024902
-0.0256646
-0.0258696
-0.025566
-0.0248535
-0.0238285
-0.022675
-0.0215696
-0.0206242
-0.0198918
-0.00139824
-0.00130667
-0.00134419
-0.0014773
-0.00177756
-0.0021081
-0.0026642
-0.00314911
-0.0039446
-0.00457675
-0.00545743
-0.00604628
-0.00608214
-0.00542682
-0.0045184
-0.00367716
-0.00299462
-0.00243453
-0.00196999
-0.00161605
-0.00542902
-0.00533119
-0.00543046
-0.0055656
-0.00592834
-0.00619458
-0.00691532
-0.00736935
-0.00852604
-0.00930544
-0.0107466
-0.0115838
-0.0116929
-0.0110037
-0.00995304
-0.00880036
-0.00771475
-0.00681211
-0.00613154
-0.00567463
0.00114966
0.00120598
0.0010722
0.000980344
0.000545495
0.000411658
-0.000432889
-0.000660803
-0.00201853
-0.00266545
-0.00446438
-0.00524139
-0.00468787
-0.00352184
-0.00226154
-0.00118609
-0.000333404
0.000286628
0.000728236
0.00101493
-0.00139729
-0.00139912
-0.00159837
-0.00163143
-0.00210626
-0.00209208
-0.00305763
-0.00312773
-0.00475929
-0.00547338
-0.00777825
-0.00847513
-0.00766867
-0.00619023
-0.00468549
-0.00350385
-0.0026
-0.00201805
-0.0016412
-0.00144079
0.000812114
0.000830713
0.000602935
0.000589361
3.26645e-05
0.000110858
-0.000980196
-0.000942164
-0.00274592
-0.00344028
-0.00604638
-0.00621771
-0.00498986
-0.00342169
-0.00197649
-0.000992869
-0.000204594
0.000266154
0.000595408
0.00077481
-0.000325327
-0.000361751
-0.000621459
-0.00060769
-0.00116335
-0.00100763
-0.00209158
-0.0019678
-0.00380958
-0.00458039
-0.00750838
-0.00719111
-0.00554669
-0.00394577
-0.00247809
-0.00164112
-0.000932757
-0.000590988
-0.000359116
-0.000278012
0.000275357
0.000244962
-2.90002e-05
-2.24493e-05
-0.000595647
-0.000444151
-0.0015152
-0.00141289
-0.00317322
-0.00406604
-0.00702134
-0.00616104
-0.00425822
-0.00287511
-0.00147979
-0.000856175
-0.000208211
5.12403e-05
0.000260164
0.000325255
-0.000152209
-0.000217387
-0.000498451
-0.000496923
-0.00103156
-0.000870914
-0.00182623
-0.00170097
-0.00326824
-0.00416131
-0.00721787
-0.00593456
-0.00387239
-0.00273233
-0.00138056
-0.000952187
-0.000366639
-0.00020934
-6.02224e-05
-5.67431e-05
-3.46589e-05
-0.000108172
-0.000385847
-0.000405839
-0.000904107
-0.000796076
-0.00161791
-0.00161814
-0.00282937
-0.00393469
-0.00638002
-0.00494032
-0.00283367
-0.00210107
-0.000849712
-0.000639059
-0.000114416
-3.39396e-05
8.75543e-05
6.77299e-05
-0.000169579
-0.00026174
-0.00053112
-0.000565072
-0.00100532
-0.000903141
-0.0015642
-0.00149405
-0.00243575
-0.00319202
-0.00560665
-0.00435715
-0.00226991
-0.00190448
-0.000678744
-0.000612712
-0.000119067
-9.37853e-05
-3.86695e-07
-4.98188e-05
-0.000144434
-0.00024655
-0.00050474
-0.00056063
-0.000954943
-0.000916234
-0.00144465
-0.00153735
-0.00208106
-0.00312866
-0.00444061
-0.00319039
-0.00130845
-0.00135746
-0.00029153
-0.000403751
1.71606e-05
-1.57041e-05
4.9612e-05
-1.92253e-05
-0.00016143
-0.000271055
-0.000514101
-0.000578069
-0.000913326
-0.000863819
-0.0012291
-0.00116606
-0.00142471
-0.00174643
-0.00312157
-0.00296411
-0.000969804
-0.00133763
-0.000234973
-0.000385776
3.10551e-05
-1.16519e-05
4.41693e-05
-3.35395e-05
-0.000127341
-0.000242599
-0.000473497
-0.00055286
-0.000860235
-0.000861361
-0.00118943
-0.00126845
-0.00137708
-0.00204262
-0.00219354
-0.00168761
-0.000227702
-0.000809655
5.90118e-05
-0.000196039
0.000137995
6.06812e-05
9.17014e-05
2.77907e-06
-9.2154e-05
-0.000208015
-0.000422428
-0.000502095
-0.000759768
-0.000736105
-0.000922578
-0.000820902
-0.000661562
-0.000540131
-0.000945486
-0.00235034
-0.000243204
-0.000983995
-4.66543e-06
-0.000195515
0.000149283
9.12264e-05
0.000121279
3.42802e-05
-3.74062e-05
-0.000154216
-0.000357381
-0.000445124
-0.000691879
-0.000703015
-0.000938376
-0.000946261
-0.000988035
-0.00102228
-0.000620852
-0.00135846
1.39191e-05
-0.000547545
0.000190571
-2.33262e-05
0.000242742
0.000168915
0.000179253
8.80111e-05
2.18676e-05
-9.18541e-05
-0.000279561
-0.000363814
-0.000573737
-0.000562744
-0.000696478
-0.000599816
-0.000467142
-0.000469768
-0.000458483
-0.00144671
-0.000137214
-0.000611868
0.000127369
2.17672e-06
0.000266744
0.000217177
0.000227469
0.000141685
8.89666e-05
-2.25387e-05
-0.00019901
-0.000286018
-0.000487507
-0.000498769
-0.000677151
-0.000651112
-0.00068842
-0.000745413
-0.000386802
-0.000691203
0.0001648
-0.00023006
0.000297882
0.000155625
0.00035262
0.000295285
0.000291294
0.000205463
0.000157698
5.05532e-05
-0.000112571
-0.000195076
-0.000371948
-0.000368388
-0.000491244
-0.000396718
-0.000349397
-0.000320016
-0.000254195
-0.000762397
1.12951e-05
-0.000239079
0.000269163
0.00020235
0.000391034
0.000352698
0.000348041
0.000267836
0.000227976
0.000124844
-2.73268e-05
-0.000108893
-0.000275247
-0.000283312
-0.000423788
-0.000370874
-0.000408764
-0.000410363
-0.000165759
-0.000306922
0.000241347
2.64981e-05
0.000395153
0.000322633
0.000464931
0.000424598
0.000411254
0.000333487
0.000297157
0.000198602
5.80301e-05
-1.93752e-05
-0.000169139
-0.000170863
-0.000284729
-0.000200456
-0.000212104
-0.000146068
-8.28104e-05
-0.000280754
0.000180177
6.95614e-05
0.000408511
0.000382092
0.000512308
0.000483667
0.000469241
0.000396143
0.000364196
0.000270391
0.0001401
6.55335e-05
-7.27879e-05
-7.90974e-05
-0.000193254
-0.000126857
-0.000168052
-0.000110639
1.97623e-05
-2.516e-05
0.000324505
0.000237758
0.000495737
0.000472086
0.000574171
0.000546776
0.000527769
0.000458283
0.000428657
0.000339076
0.000218908
0.000148091
2.19136e-05
1.71612e-05
-8.25839e-05
-1.01856e-05
-4.43739e-05
3.6948e-05
8.96207e-05
5.01217e-05
0.000336179
0.000305698
0.000533922
0.00053332
0.000622947
0.000602044
0.000582011
0.000516327
0.000489085
0.000404019
0.000293241
0.000225769
0.000109925
0.000103561
1.06135e-05
7.4848e-05
3.52674e-05
0.000119047
0.000184747
0.000200397
0.000427128
0.000414022
0.000597425
0.000601913
0.000674662
0.000656011
0.00063377
0.000571637
0.000545908
0.000464583
0.000362722
0.000298761
0.000192398
0.000186334
0.000102815
0.000163445
0.000128272
0.000212977
0.000252843
0.000282197
0.000469855
0.000483107
0.0006421
0.000657112
0.000719372
0.000704486
0.000681578
0.000622634
0.000598036
0.000520651
0.000427083
0.000366102
0.000268397
0.000262274
0.000186222
0.000240841
0.00020921
0.00029325
0.00033342
0.000379837
0.000534737
0.000558345
0.00069153
0.00071054
0.000762308
0.000749563
0.000725384
0.000669692
0.000645814
0.000571915
0.000486441
0.000428268
0.000338277
0.000332168
0.000263946
0.000312129
0.000285521
0.000364396
0.000397408
0.000451306
0.000583205
0.000616934
0.000733205
0.000756498
0.000800467
0.000790309
0.000765514
0.000712891
0.000689602
0.000617732
0.000540107
0.000484691
0.000400819
0.000395779
0.000333674
0.000376331
0.000356184
0.000429452
0.000462984
0.000519781
0.000633741
0.000672235
0.000772694
0.000798539
0.000834667
0.00082681
0.000801495
0.000750984
0.000728898
0.000659781
0.000589374
0.000535754
0.000457666
0.000454404
0.000397432
0.000433606
0.00042026
0.00048532
0.00051962
0.000575969
0.000677548
0.000718687
0.000807154
0.000835295
0.000865823
0.000859995
0.000833628
0.000785763
0.000763053
0.000695648
0.000632749
0.000580891
0.0005076
0.000505435
0.000453936
0.000483562
0.000477314
0.000535057
0.000571428
0.000625673
0.000717787
0.000758493
0.000838009
0.000866799
0.000891935
0.000888431
0.000861336
0.000815784
0.000795246
0.000727545
0.000672583
0.00062277
0.000551582
0.000552834
0.000504687
0.000528545
0.000529682
0.000577959
0.00061838
0.000667958
0.000753485
0.000793739
0.000865384
0.000895807
0.000915063
0.000914669
0.000887393
0.000842124
0.000820682
0.000754228
0.000706131
0.000656547
0.000588665
0.000593444
0.000547879
0.00056498
0.000574397
0.000612911
0.000658612
0.000701867
0.000783838
0.000821168
0.00088671
0.000918147
0.000933854
0.000935395
0.000906278
0.000863427
0.000845546
0.000777928
0.00073808
0.000688987
0.000621587
0.000631131
0.000587144
0.000597871
0.000615563
0.000644558
0.000695632
0.000732599
0.000812473
0.000846324
0.000907224
0.00093986
0.000950864
0.000955927
0.000925839
0.000883097
0.00086377
0.000793623
0.000762639
0.000713676
0.00064506
0.000662039
0.000617989
0.000621524
0.000648609
0.000666157
0.000724728
0.0007531
0.000832937
0.000862419
0.000919542
0.000954608
0.000960469
0.0009692
0.000937622
0.000894655
0.000881787
0.000810266
0.000788314
0.000737305
0.000668578
0.000691629
0.000647024
0.000643278
0.000681008
0.000686728
0.000753918
0.000772985
0.000855268
0.000878907
0.000934058
0.000969853
0.000972518
0.000985481
0.00095116
0.000909213
0.000892575
0.000816017
0.000805335
0.000752371
0.000679497
0.00071415
0.000666821
0.000654374
0.000703355
0.000696058
0.000772556
0.00078153
0.000866503
0.00088434
0.000937489
0.000976497
0.000973866
0.000991864
0.000954572
0.000911839
0.000906056
0.000825373
0.000825745
0.000768822
0.0006927
0.000736631
0.000686417
0.000666389
0.000727361
0.000707186
0.000794141
0.00079253
0.000882837
0.000893115
0.000946668
0.000988147
0.000980721
0.0010047
0.000964034
0.000920399
0.000910057
0.000819832
0.000838359
0.00077683
0.000690939
0.000754188
0.000697867
0.000663195
0.000742935
0.000703028
0.00080571
0.000788247
0.000887362
0.000887414
0.000940677
0.000987447
0.000972608
0.00100576
0.00096032
0.000914342
0.000917939
0.000824102
0.000851791
0.000783518
0.000696255
0.000768578
0.000706326
0.00066783
0.000756819
0.000707109
0.000818106
0.000792673
0.000896597
0.000890796
0.000945638
0.00099407
0.000976006
0.00101448
0.00096377
0.000918564
0.000918578
0.000806134
0.000867571
0.000786461
0.000678115
0.000788394
0.000712171
0.000647656
0.000771117
0.000687694
0.000827205
0.000774423
0.000897917
0.000872533
0.000929075
0.000989801
0.000958102
0.00101443
0.00095398
0.000902219
-0.0195341
-0.0192522
-0.0191542
-0.0192646
-0.0196128
-0.0201509
-0.0209292
-0.0218427
-0.0229674
-0.0240716
-0.0251573
-0.025883
-0.0260338
-0.0256743
-0.0249064
-0.023841
-0.0226817
-0.0216
-0.0206944
-0.020005
-0.00150679
-0.00144187
-0.00150251
-0.00165571
-0.00196714
-0.00229489
-0.00285331
-0.00331492
-0.00411675
-0.00472133
-0.00561007
-0.00617929
-0.00616523
-0.00545345
-0.00454745
-0.00374226
-0.00307729
-0.0025139
-0.00204599
-0.00170228
-0.00552325
-0.00546055
-0.00558066
-0.00572629
-0.00610064
-0.00635386
-0.00709844
-0.00750717
-0.00871162
-0.00944245
-0.0109265
-0.011742
-0.0117688
-0.0109892
-0.00989199
-0.00871697
-0.00764216
-0.00677393
-0.00613771
-0.00572785
0.000932723
0.000956132
0.000794684
0.000690039
0.000235979
0.000131187
-0.000756763
-0.000898431
-0.0023416
-0.00289736
-0.00477937
-0.00549627
-0.0048193
-0.00358139
-0.002318
-0.0012531
-0.000422564
0.000168844
0.00057977
0.00083169
-0.00153053
-0.00156807
-0.00179323
-0.00183783
-0.00234147
-0.00228795
-0.00332232
-0.00327442
-0.00502937
-0.00561348
-0.00801967
-0.00859372
-0.007653
-0.00608379
-0.00457747
-0.00342415
-0.00255911
-0.00202424
-0.00169154
-0.00153533
0.000563648
0.000542343
0.000280666
0.000255042
-0.00033674
-0.000206142
-0.00138076
-0.00119609
-0.0031485
-0.00368289
-0.00643541
-0.00639031
-0.00505282
-0.00343296
-0.00198973
-0.00103788
-0.000280278
0.000147162
0.000434545
0.000568597
-0.000500132
-0.00057556
-0.000870902
-0.000871929
-0.00147013
-0.00126264
-0.00243689
-0.00216167
-0.00415228
-0.00476133
-0.00783355
-0.00723369
-0.00549278
-0.00386945
-0.00240618
-0.00161148
-0.000933615
-0.000636596
-0.000446602
-0.0004103
4.1639e-05
-3.16577e-05
-0.000344783
-0.00035326
-0.000970526
-0.000764255
-0.00192488
-0.00166908
-0.00356891
-0.0043166
-0.00739229
-0.00624843
-0.00424538
-0.00287251
-0.0014646
-0.000885631
-0.000261861
-4.63445e-05
0.000119786
0.00013769
-0.000339408
-0.000445825
-0.000767942
-0.000784695
-0.00136554
-0.00115769
-0.00219564
-0.00192963
-0.0036119
-0.00437634
-0.00753712
-0.00597523
-0.00381073
-0.002713
-0.00133299
-0.000952251
-0.000384989
-0.000268234
-0.000158934
-0.000199546
-0.000234655
-0.000350388
-0.000669525
-0.000708707
-0.00125001
-0.0011011
-0.00198977
-0.00187511
-0.00315393
-0.0041979
-0.00664251
-0.00500574
-0.00277365
-0.00211769
-0.000820389
-0.00065941
-0.000148319
-0.000106055
-2.36294e-05
-8.7142e-05
-0.000339666
-0.00047239
-0.000782773
-0.000838464
-0.00131953
-0.00118682
-0.00190045
-0.00173322
-0.00271126
-0.00340706
-0.00580926
-0.00444012
-0.00219462
-0.00192761
-0.000637931
-0.000620292
-0.000135469
-0.000144494
-8.72447e-05
-0.000177173
-0.000304564
-0.000445923
-0.00074344
-0.000821582
-0.00125204
-0.00119095
-0.00175586
-0.00178268
-0.00231855
-0.00338756
-0.00455583
-0.00327354
-0.00121956
-0.00139414
-0.000256113
-0.000415691
-1.80177e-07
-6.33397e-05
-3.16289e-05
-0.000138371
-0.0002983
-0.000445048
-0.000725543
-0.000812671
-0.00118076
-0.00111689
-0.00150489
-0.0013888
-0.00160819
-0.00193134
-0.00319059
-0.00310593
-0.000887457
-0.00138097
-0.000196206
-0.000387763
2.54187e-05
-4.4011e-05
-1.94078e-05
-0.000132042
-0.000246966
-0.000396765
-0.000662459
-0.000764286
-0.00110076
-0.00109245
-0.00143846
-0.00148135
-0.00155284
-0.00226214
-0.00221364
-0.00177386
-0.000134112
-0.000845512
9.54285e-05
-0.000195824
0.000135604
3.59966e-05
3.90281e-05
-8.13839e-05
-0.00019165
-0.000339544
-0.000586333
-0.000687895
-0.00097196
-0.000942566
-0.00113788
-0.00100373
-0.000779848
-0.000674608
-0.000944572
-0.00253109
-0.000173248
-0.00102035
3.19056e-05
-0.000185103
0.000156571
7.91901e-05
8.3259e-05
-3.25507e-05
-0.000119322
-0.000265282
-0.000497898
-0.000605958
-0.000876607
-0.000883361
-0.00113236
-0.00111004
-0.00113235
-0.00116422
-0.000642415
-0.00144105
7.94071e-05
-0.000562161
0.000225869
-8.3704e-06
0.00025407
0.000164825
0.00015234
3.55921e-05
-4.27947e-05
-0.000183066
-0.00039764
-0.000500932
-0.000732762
-0.000718651
-0.00086209
-0.000734855
-0.000567157
-0.000559048
-0.00047344
-0.00156112
-0.00010343
-0.000624053
0.000161638
2.59495e-05
0.000286209
0.000223383
0.000212723
0.000103844
3.96635e-05
-9.56308e-05
-0.000296098
-0.000400382
-0.00062125
-0.000629961
-0.000819815
-0.000766748
-0.000797309
-0.000838919
-0.000405527
-0.000734727
0.000201662
-0.000227802
0.000330288
0.000182348
0.000375631
0.000308201
0.000286127
0.000180057
0.000122577
-5.9581e-06
-0.000190655
-0.000289011
-0.000483616
-0.000478377
-0.000612579
-0.000490218
-0.000436349
-0.000374132
-0.000282122
-0.000812848
3.2425e-05
-0.00022755
0.000304986
0.000236975
0.000421026
0.000373722
0.000352594
0.000254191
0.000205368
8.32266e-05
-8.80473e-05
-0.000183737
-0.000365438
-0.000371845
-0.000522281
-0.000444369
-0.0004836
-0.000456765
-0.000182827
-0.000326756
0.000263117
4.32822e-05
0.000429205
0.000359055
0.000498021
0.000450988
0.000423536
0.000329882
0.000285734
0.000170233
1.2692e-05
-7.74898e-05
-0.000241033
-0.000242052
-0.000365978
-0.000259581
-0.000275814
-0.000176284
-0.000104848
-0.000291147
0.000202315
9.70554e-05
0.000448139
0.000424713
0.000550903
0.000516106
0.000488953
0.000401657
0.000362509
0.000253721
0.000108466
2.25933e-05
-0.00012753
-0.000133067
-0.000255373
-0.000168404
-0.000214779
-0.000125536
9.00725e-06
-2.43043e-05
0.000345462
0.000267033
0.000534918
0.000516295
0.000615587
0.000583434
0.000553471
0.000471562
0.000435485
0.000332631
0.000199245
0.000118337
-1.8213e-05
-2.28111e-05
-0.00013014
-4.08059e-05
-8.14059e-05
2.84303e-05
8.17154e-05
6.20067e-05
0.000362891
0.000343046
0.000577924
0.000581727
0.000668308
0.000643001
0.000613179
0.000536456
0.000503244
0.000406469
0.00028406
0.000207675
8.29787e-05
7.66605e-05
-2.23663e-05
5.71768e-05
1.21641e-05
0.000122896
0.000185473
0.000218044
0.000454575
0.000453171
0.000642435
0.000651962
0.000722462
0.000700173
0.000669417
0.000597584
0.000566368
0.000474728
0.000362568
0.000290731
0.000176728
0.000170415
8.1722e-05
0.000154969
0.000114639
0.000222296
0.000259615
0.000307741
0.000502727
0.000527239
0.00069045
0.000709779
0.000769876
0.00075161
0.00072113
0.000653597
0.000623868
0.000537409
0.000434726
0.000366826
0.000262597
0.000256116
0.000175943
0.000241536
0.000205771
0.000310308
0.00034687
0.000409741
0.000569908
0.000604549
0.000741486
0.000764643
0.000814726
0.000799
0.000768171
0.000704909
0.000676188
0.000594328
0.000500738
0.000436475
0.00034091
0.00033432
0.000262776
0.000320209
0.000290157
0.000386647
0.000416852
0.000486394
0.000622363
0.000666157
0.00078537
0.00081221
0.000854675
0.000841728
0.000811017
0.000751701
0.000723822
0.000644998
0.000560077
0.000499309
0.000410715
0.000405115
0.000340385
0.000391039
0.000368175
0.000456783
0.000487613
0.000558348
0.000675483
0.000723327
0.000826366
0.000855356
0.000890278
0.000879821
0.000849258
0.000792841
0.000766299
0.000691131
0.00061411
0.000555805
0.000473705
0.000469829
0.000410812
0.000453928
0.000438399
0.000516856
0.000548995
0.000618011
0.000722113
0.000771697
0.000862288
0.000893062
0.000922596
0.000914268
0.000883218
0.000830143
0.000803135
0.000730495
0.000661517
0.000605571
0.000528895
0.000526058
0.000472996
0.000508752
0.000500704
0.00057025
0.000604708
0.000670418
0.000764505
0.000812962
0.000894298
0.000925293
0.000949678
0.000943733
0.000912459
0.000862319
0.000837472
0.000765281
0.000704654
0.000651304
0.000577258
0.000577786
0.000528472
0.000557829
0.000557419
0.000616285
0.000655028
0.000715093
0.000802094
0.000849474
0.000922611
0.000954807
0.000973539
0.000970703
0.000939689
0.000890391
0.000864708
0.000794457
0.000740979
0.000688348
0.000618072
0.000622047
0.000575632
0.000597801
0.000605752
0.000653934
0.000698017
0.000751017
0.000833983
0.000877982
0.000944738
0.000977555
0.000992992
0.000992037
0.000959575
0.000913206
0.000890937
0.000820163
0.00077511
0.00072346
0.000654058
0.000662709
0.000618148
0.000633624
0.000649837
0.000687847
0.000737255
0.000783424
0.000863804
0.000903987
0.000965813
0.000999454
0.00101045
0.00101291
0.000979843
0.000934045
0.00091028
0.000837607
0.000801478
0.000750362
0.00068012
0.000696039
0.000651636
0.000659779
0.000685201
0.000711406
0.000768106
0.000805386
0.000885203
0.000920863
0.00097865
0.00101435
0.00102052
0.00102647
0.000992233
0.000946653
0.000929094
0.000855623
0.000828526
0.000775809
0.000705726
0.000727587
0.000682854
0.000683598
0.000719438
0.00073359
0.000798646
0.000826461
0.000908196
0.000937947
0.000993462
0.00102956
0.00103286
0.00104283
0.00100618
0.000962003
0.000940434
0.000862564
0.000846552
0.000792235
0.00071838
0.000751509
0.000704224
0.000696407
0.00074304
0.000744292
0.000818159
0.000836038
0.000919805
0.000943945
0.00099719
0.0010361
0.00103454
0.0010492
0.00100986
0.000965348
0.000954335
0.000872832
0.000867936
0.000809946
0.000732961
0.000775183
0.000725254
0.000709808
0.000768109
0.000756548
0.000840489
0.000847887
0.000936453
0.000953179
0.00100649
0.00104762
0.00104164
0.00106202
0.00101959
0.000974459
0.000958361
0.000868055
0.000880727
0.000818584
0.000732331
0.000793245
0.000737413
0.000707774
0.000783999
0.000753332
0.000852126
0.000844344
0.000940788
0.000947934
0.00100062
0.00104648
0.0010338
0.00106269
0.00101581
0.000968904
0.000966443
0.000872822
0.000894823
0.000826039
0.000738399
0.000808229
0.000746703
0.000713163
0.000798397
0.000758065
0.000864866
0.000849288
0.000950143
0.000951649
0.00100559
0.00105301
0.00103741
0.00107141
0.00101948
0.000973476
0.000966601
0.000855423
0.000910768
0.000829257
0.000721129
0.000827748
0.000752707
0.00069391
0.000812186
0.000739409
0.000873291
0.000831733
0.000950679
0.000933957
0.000988964
0.00104787
0.00101991
0.0010707
0.00100939
0.000957611
-0.0196936
-0.0194371
-0.0193682
-0.0194961
-0.0198537
-0.0204001
-0.0211858
-0.0220998
-0.0232292
-0.0243217
-0.0253961
-0.0260751
-0.0261722
-0.0257533
-0.024925
-0.023826
-0.0226739
-0.0216289
-0.0207723
-0.0201294
-0.00164733
-0.00161699
-0.0017048
-0.00187798
-0.00219609
-0.00251537
-0.00306882
-0.00349583
-0.0042975
-0.00486215
-0.00575059
-0.00629507
-0.00622175
-0.00546134
-0.0045739
-0.00380764
-0.00315629
-0.0025919
-0.00213058
-0.00180972
-0.00564313
-0.00562181
-0.00576561
-0.00592407
-0.00630745
-0.00654308
-0.00730734
-0.00765231
-0.00890623
-0.00956343
-0.0110899
-0.0118767
-0.0118011
-0.0109243
-0.00979002
-0.00860284
-0.00755225
-0.00673187
-0.00615172
-0.00579889
0.000669496
0.00065105
0.000457258
0.00033604
-0.00013415
-0.000204125
-0.0011337
-0.00116135
-0.00270074
-0.00312409
-0.00509687
-0.00572165
-0.00492919
-0.0036163
-0.0023593
-0.00131218
-0.000512378
3.9204e-05
0.000407532
0.000612686
-0.00170184
-0.00178514
-0.00204228
-0.00210473
-0.00263587
-0.00253747
-0.00364208
-0.00344115
-0.00533767
-0.00573761
-0.00826645
-0.00867801
-0.00759879
-0.00593919
-0.0044416
-0.00332728
-0.00251078
-0.00203462
-0.0017576
-0.00165713
0.000268287
0.000195646
-0.000106146
-0.000151247
-0.000777815
-0.000589289
-0.00185181
-0.00148142
-0.0036052
-0.00391962
-0.00683788
-0.00652179
-0.00508472
-0.00341773
-0.00198259
-0.00107224
-0.000354152
1.82726e-05
0.000251438
0.000327522
-0.000717134
-0.000843258
-0.00118247
-0.00120713
-0.00184924
-0.00158518
-0.00285477
-0.00238932
-0.00454892
-0.00493874
-0.00816797
-0.00723743
-0.00540752
-0.00376844
-0.00231286
-0.00156942
-0.000930108
-0.000688476
-0.000552141
-0.000572872
-0.000232034
-0.000360213
-0.000720863
-0.000753637
-0.0014176
-0.00115247
-0.00240918
-0.00196132
-0.00402116
-0.00456939
-0.00776899
-0.0063064
-0.00420184
-0.00284946
-0.00142844
-0.000902339
-0.000310602
-0.00014877
-3.68618e-05
-7.80188e-05
-0.000563201
-0.000722755
-0.00109473
-0.00113926
-0.00177011
-0.00151194
-0.00263916
-0.00219669
-0.00401057
-0.00459756
-0.00785778
-0.00599928
-0.00372048
-0.0026787
-0.00126663
-0.00094037
-0.000398583
-0.000330699
-0.000271898
-0.000367694
-0.000465263
-0.000634318
-0.00100362
-0.00107122
-0.00166015
-0.0014683
-0.00242979
-0.00216996
-0.0035264
-0.00447492
-0.00689368
-0.00506303
-0.00268399
-0.00212194
-0.000772933
-0.000666865
-0.000175865
-0.000178647
-0.000145012
-0.000262216
-0.000536541
-0.00072014
-0.00107988
-0.00116608
-0.00169289
-0.001529
-0.00230009
-0.00201119
-0.00302986
-0.00363598
-0.00599599
-0.00452804
-0.00209128
-0.0019418
-0.000581036
-0.000615734
-0.000145839
-0.000194696
-0.000182406
-0.000321784
-0.000485802
-0.000675555
-0.00102011
-0.00112862
-0.00160011
-0.00151675
-0.00212172
-0.00206416
-0.00259034
-0.00366916
-0.00464806
-0.00336773
-0.00110329
-0.00142455
-0.000206436
-0.000415572
-1.06301e-05
-0.000108226
-0.000117709
-0.000270058
-0.000452218
-0.000644216
-0.000969207
-0.00108691
-0.00149252
-0.00141546
-0.00182853
-0.00164635
-0.00181842
-0.00213727
-0.00323547
-0.00326772
-0.000780671
-0.00141893
-0.000144673
-0.000378115
2.66215e-05
-7.27005e-05
-8.59149e-05
-0.000240145
-0.000379169
-0.000570622
-0.000877367
-0.0010082
-0.00137801
-0.00136172
-0.00172729
-0.00172455
-0.00175299
-0.00250554
-0.00220654
-0.00187561
-1.88422e-05
-0.000877271
0.000142338
-0.000184733
0.000140255
1.61716e-05
-1.42389e-05
-0.000171829
-0.000300397
-0.000486382
-0.000770899
-0.000900031
-0.00121449
-0.00118104
-0.00138647
-0.00121287
-0.000913822
-0.000825969
-0.000922036
-0.00273487
-8.77794e-05
-0.00105198
7.76767e-05
-0.000163981
0.000171025
7.26723e-05
4.61827e-05
-0.000103221
-0.000207398
-0.000387629
-0.000654267
-0.000787532
-0.0010855
-0.00108933
-0.00135392
-0.00129441
-0.00129746
-0.00131999
-0.000653994
-0.00152956
0.000156147
-0.000571313
0.000268411
1.64044e-05
0.000272482
0.000166809
0.000127768
-1.84287e-05
-0.000111203
-0.000282311
-0.000527581
-0.000654051
-0.000910838
-0.000894876
-0.00105025
-0.000885754
-0.000681732
-0.000653319
-0.000483628
-0.00168617
-6.39745e-05
-0.000629891
0.00020268
5.9355e-05
0.000312825
0.000235951
0.00020127
6.60389e-05
-1.13558e-05
-0.000174014
-0.000401659
-0.000526673
-0.000769415
-0.000776672
-0.000979856
-0.000894284
-0.000920335
-0.000938041
-0.000421656
-0.000780336
0.000242328
-0.000219912
0.000368244
0.00021785
0.000405669
0.000327652
0.000285043
0.000156045
8.72765e-05
-6.55881e-05
-0.000274459
-0.000391531
-0.000605959
-0.000600061
-0.000747624
-0.000592537
-0.000535575
-0.000428904
-0.000312973
-0.000863915
5.60047e-05
-0.000209201
0.00034658
0.000280071
0.00045797
0.000401274
0.000361704
0.000242901
0.000183786
4.02223e-05
-0.000152261
-0.000264425
-0.00046312
-0.000468702
-0.00063052
-0.000523468
-0.000567042
-0.000502289
-0.000201642
-0.000346443
0.000285789
6.57089e-05
0.00046838
0.000403317
0.00053791
0.000483875
0.000440726
0.000329375
0.000276219
0.000141811
-3.43749e-05
-0.000139251
-0.000317854
-0.000318966
-0.000454193
-0.00032271
-0.000346724
-0.000205606
-0.000129694
-0.000298774
0.000226413
0.00013074
0.000493046
0.000474722
0.000596058
0.000554848
0.000513709
0.000410744
0.000363374
0.000238013
7.64593e-05
-2.22763e-05
-0.000185169
-0.000190612
-0.00032192
-0.000211935
-0.000265976
-0.000137659
-3.71904e-06
-2.12552e-05
0.000367787
0.000301932
0.000579288
0.000567482
0.000663382
0.000626233
0.000584287
0.000488741
0.000445301
0.000327887
0.000180248
8.80014e-05
-5.96276e-05
-6.46603e-05
-0.000180149
-7.21828e-05
-0.000121215
2.23511e-05
7.28344e-05
7.73096e-05
0.000391849
0.000385915
0.000627023
0.000636622
0.000719721
0.000689816
0.000649394
0.000560651
0.000520676
0.00041115
0.000276316
0.000190015
5.59601e-05
4.91623e-05
-5.62923e-05
3.97701e-05
-1.21141e-05
0.000129764
0.000185917
0.000238994
0.000484513
0.00049763
0.000692536
0.00070818
0.000776077
0.000749953
0.000710013
0.000627672
0.000590261
0.000487469
0.000364394
0.000283896
0.000161918
0.00015492
6.09201e-05
0.000147622
0.000101157
0.000234815
0.00026717
0.000336904
0.000538488
0.000576382
0.000743704
0.00076818
0.000825871
0.000804052
0.000765462
0.000688684
0.000653204
0.000556999
0.00044473
0.000369298
0.000258329
0.000251117
0.000166812
0.000243906
0.000203384
0.000330595
0.000361705
0.000443318
0.000608272
0.000655604
0.00079628
0.000824172
0.000872372
0.000853478
0.000815555
0.000744182
0.000710069
0.000619724
0.000517654
0.000446806
0.000345561
0.000338189
0.00026341
0.000330441
0.000296621
0.000412307
0.000438359
0.00052519
0.000664954
0.00072004
0.000842171
0.000872991
0.000913804
0.000897899
0.000860908
0.000794458
0.000761504
0.000675308
0.000582818
0.000516309
0.000422961
0.000416553
0.000349343
0.000408212
0.00038248
0.000487504
0.000514711
0.00060063
0.000720796
0.000778899
0.000884531
0.000916958
0.000950533
0.000937314
0.000901197
0.000838514
0.000807085
0.000725534
0.000641693
0.000578404
0.000492316
0.000487625
0.000426745
0.000476953
0.000459227
0.000551828
0.000581173
0.000663725
0.000770282
0.000828967
0.000921717
0.000955321
0.000983739
0.000972759
0.000936772
0.00087819
0.000846504
0.000768367
0.000693151
0.000632891
0.000552897
0.000549226
0.000494806
0.000536782
0.000527006
0.000608855
0.000641
0.000718803
0.000814852
0.000871522
0.000954707
0.00098802
0.00101154
0.00100301
0.000967339
0.000912368
0.000882877
0.000805985
0.00073957
0.000682514
0.000605708
0.000605384
0.000555119
0.000590031
0.000588196
0.000657992
0.00069481
0.000765794
0.000854288
0.000909117
0.000983775
0.0010178
0.0010359
0.00103048
0.000995546
0.000942022
0.000911801
0.000837586
0.000778619
0.000722826
0.00065028
0.000653349
0.000606298
0.000633583
0.00064021
0.000698292
0.000740621
0.000803664
0.000887661
0.000938545
0.00100654
0.00104074
0.00105581
0.00105222
0.00101625
0.000966203
0.000939278
0.000865221
0.000814849
0.000760583
0.000689322
0.000696993
0.000652069
0.000672343
0.000687226
0.000734411
0.000782087
0.000837661
0.000918583
0.000965246
0.00102801
0.00106263
0.00107352
0.00107324
0.00103706
0.000988073
0.000959633
0.000884339
0.000842935
0.000789662
0.000717948
0.000732734
0.000688184
0.000700992
0.000724891
0.000759876
0.000814678
0.000861008
0.000940839
0.000982769
0.00104123
0.0010775
0.00108389
0.00108692
0.00104991
0.00100161
0.000979136
0.000903656
0.000871242
0.000816872
0.0007456
0.000766206
0.000721538
0.000726849
0.000760918
0.000783609
0.000846521
0.000883192
0.000964399
0.00100033
0.00105621
0.00109253
0.00109638
0.0011032
0.00106412
0.00101764
0.000990936
0.000911732
0.000890219
0.000834621
0.000759951
0.000791484
0.000744433
0.000741346
0.000785724
0.00079563
0.000866861
0.000893735
0.000976304
0.00100679
0.00106013
0.00109882
0.00109828
0.00110944
0.00106796
0.00102161
0.00100516
0.000922869
0.000912544
0.000853551
0.000775867
0.000816307
0.000766847
0.000756102
0.000811792
0.000808971
0.000889876
0.000906376
0.000993184
0.0010164
0.00106947
0.00111011
0.00110552
0.00112215
0.00107787
0.00103119
0.00100914
0.00091882
0.000925458
0.000862759
0.000776326
0.000834812
0.00077964
0.0007552
0.000827927
0.000806655
0.000901516
0.000903522
0.000997257
0.00101154
0.00106365
0.00110844
0.00109789
0.00112236
0.00107394
0.00102607
0.00101737
0.000924067
0.000940497
0.000870989
0.000783131
0.00085036
0.000789731
0.000761331
0.000842799
0.000812025
0.000914559
0.000908959
0.00100668
0.00101555
0.00106858
0.00111482
0.00110165
0.00113109
0.00107778
0.00103096
0.00101697
0.000907214
0.000956882
0.000874429
0.000766707
0.000869494
0.000795796
0.00074298
0.000855977
0.000794112
0.000922222
0.000892072
0.00100636
0.000998394
0.00105188
0.00110873
0.00108451
0.00112976
0.00106733
0.00101554
-0.0198829
-0.0196463
-0.0195949
-0.0197451
-0.0201128
-0.0206653
-0.021452
-0.022358
-0.0234815
-0.0245519
-0.0256029
-0.0262221
-0.026266
-0.025786
-0.0248947
-0.0237736
-0.0226423
-0.0216473
-0.0208575
-0.020274
-0.00183476
-0.00184692
-0.00196427
-0.00215751
-0.00247687
-0.0027805
-0.0033181
-0.00369485
-0.00448621
-0.00499348
-0.00587034
-0.00638974
-0.00624314
-0.00543894
-0.00458929
-0.0038636
-0.00322422
-0.0026671
-0.00222944
-0.00194981
-0.00580026
-0.00582943
-0.00600139
-0.00617607
-0.00656483
-0.00677722
-0.00755297
-0.0078086
-0.00911117
-0.00965671
-0.0112228
-0.0119652
-0.0117723
-0.0107944
-0.00963517
-0.00845029
-0.00744122
-0.00668617
-0.00617791
-0.00589602
0.000345358
0.00027243
3.93039e-05
-0.000103679
-0.000585473
-0.000614443
-0.00157992
-0.00145785
-0.00310471
-0.00333566
-0.00540471
-0.00588959
-0.0050035
-0.00361381
-0.0023753
-0.00135661
-0.000599857
-0.00010402
0.00020511
0.000347116
-0.00192522
-0.00206779
-0.00236599
-0.00245547
-0.00301171
-0.00286339
-0.00403541
-0.00363703
-0.00569497
-0.00583539
-0.00851402
-0.00870218
-0.00748716
-0.00574115
-0.00426634
-0.00320602
-0.00245134
-0.0020499
-0.00184462
-0.00181578
-8.69053e-05
-0.000226226
-0.000577498
-0.000652842
-0.00131338
-0.0010627
-0.00241393
-0.00180893
-0.00413025
-0.00414324
-0.00724969
-0.00660435
-0.00507442
-0.00336466
-0.00194458
-0.0010889
-0.000422436
-0.00012077
4.16698e-05
4.29743e-05
-0.000988072
-0.00118065
-0.00157522
-0.00163594
-0.00232349
-0.002
-0.00336728
-0.00266318
-0.00501459
-0.00510776
-0.00850463
-0.00719057
-0.0052788
-0.00363309
-0.00218906
-0.00150861
-0.000918862
-0.000746675
-0.000679501
-0.000773371
-0.000554867
-0.000753541
-0.00117362
-0.00124367
-0.00195763
-0.0016319
-0.00298937
-0.00230195
-0.0045455
-0.00482009
-0.0081428
-0.00632628
-0.00411526
-0.0027971
-0.00136285
-0.000899758
-0.000350524
-0.000254824
-0.000211919
-0.000327446
-0.000831245
-0.00105919
-0.00149293
-0.00157823
-0.00226405
-0.0019548
-0.00317696
-0.0025145
-0.00447961
-0.00482152
-0.00817013
-0.00600242
-0.00359072
-0.00262218
-0.00117463
-0.000910696
-0.000403947
-0.000395323
-0.000400483
-0.000565554
-0.00073195
-0.000968355
-0.00139929
-0.00150791
-0.00215044
-0.00191588
-0.00295598
-0.00251404
-0.00396034
-0.00476385
-0.00712238
-0.00511082
-0.00255525
-0.00210758
-0.000701529
-0.000655883
-0.000193599
-0.000249816
-0.000276893
-0.000460192
-0.000763998
-0.00101128
-0.00143125
-0.00155965
-0.00213856
-0.00194502
-0.0027786
-0.00233814
-0.00340328
-0.00387794
-0.00615898
-0.00462238
-0.00195176
-0.00194179
-0.000503484
-0.000594054
-0.000147035
-0.000242271
-0.000285436
-0.000485184
-0.000690441
-0.000939802
-0.00134127
-0.0014907
-0.00200965
-0.00190608
-0.00255501
-0.00239042
-0.00290596
-0.00397521
-0.0047054
-0.00347577
-0.000953032
-0.00144475
-0.000139198
-0.000399041
-1.13345e-05
-0.000148166
-0.000207671
-0.000414955
-0.000624385
-0.000871386
-0.00124965
-0.00140727
-0.00185654
-0.00176927
-0.0022102
-0.00194639
-0.00206246
-0.00236575
-0.003244
-0.00345447
-0.000644135
-0.00144813
-7.78315e-05
-0.000352924
3.74509e-05
-9.54601e-05
-0.000154014
-0.000357732
-0.000524383
-0.000765812
-0.00112115
-0.00128919
-0.00169775
-0.00167644
-0.00206342
-0.00200428
-0.00198296
-0.00277525
-0.00216118
-0.00199745
0.000121841
-0.000902628
0.000201454
-0.000159578
0.000154384
3.46967e-06
-6.65601e-05
-0.000267857
-0.000418171
-0.000649237
-0.000977879
-0.00114164
-0.00149134
-0.00145671
-0.00167401
-0.001453
-0.00106658
-0.000995744
-0.000869559
-0.0029668
1.51389e-05
-0.00107672
0.000133957
-0.0001294
0.000194824
7.37875e-05
1.16602e-05
-0.000176713
-0.000300982
-0.000521299
-0.000827293
-0.000991682
-0.00132112
-0.00132443
-0.00160706
-0.00150244
-0.00148776
-0.00148998
-0.00065238
-0.00162465
0.000244621
-0.000573198
0.000319076
5.33064e-05
0.000299977
0.000176839
0.000107197
-7.28488e-05
-0.000182405
-0.000389158
-0.0006695
-0.000824011
-0.00110936
-0.0010936
-0.00126374
-0.00105429
-0.000813966
-0.000750951
-0.000488386
-0.00182311
-1.95282e-05
-0.000627597
0.000251262
0.000104364
0.000348397
0.000256716
0.000194733
2.9534e-05
-6.30255e-05
-0.000256964
-0.000515344
-0.000665064
-0.000932581
-0.000940122
-0.00115881
-0.00103467
-0.00105976
-0.00104169
-0.00043508
-0.000828308
0.000285803
-0.00020514
0.000412425
0.000263811
0.000444312
0.000355258
0.000289572
0.000134731
5.29171e-05
-0.000127437
-0.000363319
-0.000502342
-0.000738947
-0.000733884
-0.000897128
-0.000704123
-0.000649028
-0.000482859
-0.00034817
-0.000914897
8.13587e-05
-0.000182795
0.00039466
0.000333051
0.000503288
0.000436808
0.000376785
0.000235244
0.000164341
-3.18951e-06
-0.000219131
-0.00035038
-0.000567871
-0.000573846
-0.000748637
-0.000608098
-0.000660055
-0.000545341
-0.000223409
-0.000365815
0.000308598
9.47161e-05
0.000513429
0.000456651
0.000585891
0.000524551
0.000464111
0.000333169
0.000269679
0.000114326
-8.22509e-05
-0.000203909
-0.000398924
-0.000401249
-0.000549064
-0.000389571
-0.000425345
-0.000233056
-0.000158244
-0.00030299
0.00025214
0.000171436
0.000543977
0.00053316
0.000648902
0.000601029
0.000544661
0.000424514
0.000367788
0.000224222
4.50139e-05
-6.82459e-05
-0.000244891
-0.000251184
-0.000392327
-0.000256991
-0.00032165
-0.000145882
-1.91814e-05
-1.55599e-05
0.000391348
0.000343178
0.000629521
0.000626572
0.000718559
0.000676166
0.000621233
0.00051082
0.000459013
0.00032575
0.000162839
5.79411e-05
-0.000101454
-0.000107738
-0.000231884
-0.000103707
-0.000163461
1.96203e-05
6.26607e-05
9.64622e-05
0.000423093
0.000434924
0.000681836
0.00069879
0.000778054
0.000743353
0.000691551
0.000589806
0.000542195
0.000418892
0.000270871
0.000173631
2.97504e-05
2.18292e-05
-9.03293e-05
2.32559e-05
-3.70661e-05
0.000140407
0.000186053
0.000263757
0.000517203
0.00054801
0.000748358
0.000771247
0.00083625
0.000806094
0.000756332
0.000662686
0.000618312
0.000503561
0.000368994
0.000279068
0.000148815
0.000140603
4.12426e-05
0.000142062
8.84641e-05
0.000251265
0.00027569
0.000370112
0.000577452
0.000631092
0.00080244
0.000832891
0.000887968
0.000862453
0.000815243
0.000728584
0.000686679
0.000580107
0.000457812
0.000374255
0.000256381
0.000247997
0.000159627
0.000248585
0.000202721
0.000354729
0.000378233
0.000480998
0.000650247
0.00071205
0.000856439
0.000889682
0.000935813
0.000913542
0.000868109
0.00078811
0.000748013
0.000648697
0.000537831
0.000459929
0.00035295
0.000344452
0.000266571
0.000343415
0.000305604
0.000441945
0.000462315
0.000568086
0.00071135
0.000778956
0.000904081
0.000939299
0.000978321
0.000959283
0.000915676
0.000841678
0.00080313
0.000709183
0.0006089
0.000536286
0.00043821
0.000430718
0.00036128
0.000428456
0.000399764
0.000522131
0.000544706
0.000647015
0.000770093
0.000839285
0.000947597
0.000983725
0.00101583
0.000999681
0.000957727
0.000888441
0.000851674
0.000763442
0.000672626
0.000604078
0.000514082
0.00050836
0.000445873
0.000503207
0.000483358
0.000590695
0.000616584
0.000713464
0.000822441
0.000890823
0.000985798
0.00102239
0.00104958
0.0010358
0.00099464
0.000930281
0.000893521
0.000809653
0.000728091
0.000663316
0.000580121
0.000575445
0.000519928
0.000568127
0.000556776
0.00065129
0.00068072
0.000771154
0.000869181
0.000934465
0.00101954
0.00105525
0.0010778
0.00106654
0.00102627
0.000966252
0.000931769
0.000849995
0.000777716
0.000716808
0.000637384
0.000636078
0.000585123
0.000625579
0.000622503
0.000703449
0.000738114
0.000820356
0.000910383
0.000972925
0.00104914
0.00108501
0.00110238
0.00109425
0.00105521
0.000997286
0.000962226
0.000883904
0.000819385
0.000760335
0.000685682
0.000687744
0.000640313
0.000672708
0.000678205
0.000746313
0.00078678
0.000860069
0.00094515
0.00100308
0.00107232
0.00110789
0.00112249
0.00111614
0.00107652
0.00102265
0.0009908
0.000913347
0.00085758
0.00080066
0.000727725
0.000734333
0.00068929
0.00071437
0.000728114
0.000784543
0.000830444
0.000895542
0.000977059
0.00103029
0.00109401
0.00112954
0.00114024
0.00113709
0.00109766
0.00104538
0.00101203
0.000934029
0.000887227
0.00083183
0.000758848
0.000772432
0.000727968
0.000745466
0.000768016
0.000811822
0.000864728
0.000920171
0.00100006
0.0010483
0.00110743
0.00114419
0.0011507
0.00115067
0.00111079
0.00105969
0.00103209
0.000954538
0.000916592
0.000860707
0.000788467
0.000807756
0.000763374
0.000773298
0.000805748
0.000837015
0.000897798
0.00094336
0.00102407
0.00106618
0.00112243
0.00115886
0.00116317
0.00116669
0.00112511
0.00107626
0.00104423
0.000963663
0.000936346
0.000879718
0.000804445
0.000834317
0.000787711
0.000789429
0.000831671
0.000850278
0.00091889
0.000954783
0.00103617
0.00107299
0.00112643
0.00116478
0.00116515
0.00117264
0.00112899
0.00108075
0.00105867
0.000975607
0.000959395
0.000899801
0.000821627
0.000860217
0.00081143
0.00080549
0.00085865
0.000864637
0.000942507
0.00096814
0.00105318
0.00108287
0.0011357
0.00117569
0.00117242
0.00118509
0.00113897
0.0010907
0.0010625
0.000972259
0.000972488
0.000909541
0.00082311
0.000879086
0.000824764
0.00080567
0.000874938
0.000863167
0.000954067
0.000965912
0.0010569
0.00107833
0.00112986
0.00117341
0.00116492
0.00118478
0.0011348
0.00108594
0.0010708
0.000978024
0.000989798
0.000918656
0.000830611
0.000895155
0.00083561
0.000812523
0.000890229
0.000869144
0.00096736
0.000971809
0.00106634
0.00108258
0.00113471
0.00117955
0.0011688
0.00119382
0.00113879
0.00109108
0.00106974
0.000961754
0.00100831
0.000922358
0.000814976
0.000913802
0.000841624
0.000795045
0.000902684
0.000851951
0.000974164
0.000955554
0.00106507
0.00106592
0.00111792
0.00117244
0.001152
0.00119225
0.00112795
0.00107606
-0.0201026
-0.0199054
-0.0198775
-0.0200455
-0.0204179
-0.020969
-0.021744
-0.0226278
-0.023726
-0.0247571
-0.0257628
-0.0263062
-0.0262951
-0.0257493
-0.0247998
-0.0236797
-0.0225964
-0.0216697
-0.0209514
-0.0204353
-0.00208882
-0.00215579
-0.00230891
-0.00252213
-0.00283423
-0.00311182
-0.0036168
-0.00391997
-0.00468437
-0.00510697
-0.00595439
-0.00644736
-0.00620797
-0.005373
-0.00458074
-0.00389778
-0.00327577
-0.00274348
-0.0023531
-0.0021379
-0.00601143
-0.00610486
-0.00631386
-0.0065101
-0.00689826
-0.00707974
-0.00785199
-0.00798316
-0.00932942
-0.00970607
-0.0113066
-0.0119802
-0.0116625
-0.010577
-0.00940988
-0.00824806
-0.00730353
-0.00663766
-0.00622285
-0.00603079
-6.0348e-05
-0.000204864
-0.000488
-0.000661165
-0.00114875
-0.00113065
-0.00211953
-0.00180105
-0.00356656
-0.00351873
-0.00569226
-0.00598383
-0.00502994
-0.0035564
-0.00235067
-0.00137627
-0.000680441
-0.000263168
-3.63963e-05
2.02744e-05
-0.00221992
-0.00243984
-0.00279291
-0.00292304
-0.0035015
-0.00329957
-0.00452976
-0.00387707
-0.00611676
-0.00589172
-0.00874927
-0.00861803
-0.00729012
-0.00546912
-0.00403599
-0.00305052
-0.00237587
-0.00207103
-0.00195942
-0.00202404
-0.000518754
-0.000745335
-0.00116063
-0.00128177
-0.00197596
-0.00166137
-0.00309674
-0.00219647
-0.00474374
-0.00434253
-0.00766101
-0.00661639
-0.00500119
-0.00325626
-0.00186043
-0.00107779
-0.000479719
-0.000269729
-0.000200168
-0.000296072
-0.00132778
-0.00160807
-0.00207428
-0.00218856
-0.00292432
-0.0025422
-0.00400495
-0.00300329
-0.00557088
-0.00526128
-0.00883192
-0.00707781
-0.00508917
-0.0034499
-0.00202234
-0.00142027
-0.000894993
-0.000810519
-0.00083291
-0.00102117
-0.000938235
-0.00122796
-0.00172404
-0.00184945
-0.00261847
-0.0022345
-0.00369424
-0.00271004
-0.00516391
-0.00506191
-0.00849953
-0.00629663
-0.00396849
-0.00270313
-0.00125641
-0.000869
-0.000376134
-0.000362558
-0.000407592
-0.000617118
-0.00115236
-0.00146825
-0.0019801
-0.00212409
-0.00287176
-0.00251503
-0.00383621
-0.00290099
-0.00504082
-0.00504208
-0.00845851
-0.00597903
-0.00340689
-0.00253331
-0.00104791
-0.000855339
-0.000396247
-0.000459978
-0.000545866
-0.000797857
-0.00104076
-0.00136213
-0.00187012
-0.00203659
-0.00274098
-0.00246808
-0.00359211
-0.00292318
-0.00447538
-0.00506121
-0.00731311
-0.00514736
-0.00237552
-0.002066
-0.000599047
-0.00061924
-0.000196798
-0.000316668
-0.000419024
-0.000683815
-0.00102601
-0.00135264
-0.00184694
-0.00203295
-0.00267265
-0.00245461
-0.00335578
-0.00272817
-0.00384854
-0.00413169
-0.00628702
-0.00472389
-0.00176605
-0.00192052
-0.000399989
-0.00054898
-0.000134726
-0.000284151
-0.000395255
-0.00066865
-0.000920597
-0.00124318
-0.00171412
-0.00191819
-0.00249302
-0.0023745
-0.00307154
-0.00277312
-0.00327846
-0.00430513
-0.00470871
-0.00360227
-0.000761405
-0.00144957
-5.07176e-05
-0.000360705
1.485e-06
-0.000180052
-0.000299918
-0.000573165
-0.000815654
-0.00112926
-0.0015715
-0.00178099
-0.00228185
-0.00218993
-0.00266205
-0.00229897
-0.00234955
-0.00261788
-0.00320053
-0.00367263
-0.000472188
-0.00146427
7.02095e-06
-0.000307544
6.12619e-05
-0.000109245
-0.000221627
-0.000483993
-0.000682462
-0.000983577
-0.0013966
-0.00161194
-0.00206619
-0.00204513
-0.00245576
-0.00232833
-0.00224949
-0.00307364
-0.0020623
-0.00214581
0.000291553
-0.000918752
0.00027448
-0.0001165
0.000181081
7.44914e-07
-0.000115764
-0.000368203
-0.000544105
-0.00082828
-0.00120865
-0.00141551
-0.00180655
-0.00177558
-0.00200696
-0.00172992
-0.00124197
-0.00118528
-0.000775804
-0.00323393
0.000136842
-0.00109199
0.000201989
-7.82082e-05
0.000230652
8.51418e-05
-1.80785e-05
-0.000251446
-0.000398857
-0.000665804
-0.00101727
-0.00121973
-0.00158584
-0.0015924
-0.00189607
-0.0017377
-0.00170872
-0.00167385
-0.000633724
-0.0017273
0.000344412
-0.000565836
0.000378706
0.000104949
0.00033895
0.000197273
9.27841e-05
-0.00012595
-0.000255041
-0.000502681
-0.000822991
-0.00101124
-0.00132954
-0.00131692
-0.00150534
-0.00124233
-0.000967744
-0.00084921
-0.00048779
-0.00197332
2.83756e-05
-0.000615209
0.000308206
0.00016319
0.000395039
0.000287766
0.00019515
-3.89176e-06
-0.000113892
-0.000343306
-0.00063635
-0.000815261
-0.00111094
-0.0011212
-0.001358
-0.00118882
-0.00121819
-0.00114814
-0.000446284
-0.000879273
0.000330287
-0.000182142
0.000463527
0.000322075
0.000493489
0.000392957
0.000301571
0.000117804
2.09688e-05
-0.0001902
-0.000456112
-0.000620675
-0.00088208
-0.00087996
-0.00106162
-0.000825373
-0.000778883
-0.000534045
-0.000389935
-0.000964969
0.000107344
-0.000147055
0.000449967
0.000397437
0.00055864
0.000482024
0.000399516
0.000232803
0.000148448
-4.56951e-05
-0.000287428
-0.00044061
-0.000678816
-0.000686892
-0.000876424
-0.000697997
-0.000763591
-0.0005837
-0.000250049
-0.000384773
0.000330412
0.000131248
0.000565105
0.00052038
0.000643433
0.000574487
0.000495185
0.000342708
0.000267423
8.90434e-05
-0.000129683
-0.000270357
-0.000483152
-0.000488161
-0.000649867
-0.000459686
-0.000511999
-0.000257277
-0.000191739
-0.000303129
0.000278993
0.000219975
0.000601695
0.000601127
0.000710698
0.000655912
0.000583119
0.000444263
0.000376929
0.0002135
1.53405e-05
-0.000114169
-0.000305534
-0.000313882
-0.000465599
-0.000302915
-0.000381585
-0.000148859
-3.83547e-05
-6.68862e-06
0.000415992
0.000391523
0.000686457
0.000694532
0.000782217
0.000734322
0.000665448
0.000538947
0.000477673
0.000327316
0.000148174
2.92699e-05
-0.000142523
-0.000151034
-0.000284218
-0.000134558
-0.000207535
2.13325e-05
5.08619e-05
0.000119987
0.000456672
0.000490719
0.00074316
0.00076906
0.000844258
0.000804547
0.000740628
0.000624924
0.000568725
0.000430673
0.000268722
0.000159553
5.46426e-06
-4.37696e-06
-0.000123464
8.44848e-06
-6.19293e-05
0.000155685
0.000185816
0.000292796
0.000552975
0.000604946
0.000810616
0.000841883
0.000903832
0.000869392
0.000809209
0.000703496
0.000651323
0.000523872
0.000377316
0.000277231
0.000138454
0.000128409
2.37096e-05
0.000139101
7.74396e-05
0.000272473
0.000285414
0.000407776
0.000620022
0.000691831
0.000867291
0.000904547
0.000956904
0.000927477
0.000871181
0.000774042
0.000724988
0.000607493
0.000474799
0.000382551
0.000257689
0.00024764
0.00015539
0.000256343
0.000204638
0.000383406
0.000396854
0.000523231
0.000696389
0.00077439
0.000922522
0.000961671
0.00100558
0.000979758
0.00092643
0.000837327
0.000790613
0.000681905
0.000561992
0.000476609
0.000363927
0.000353918
0.000273203
0.000359936
0.000317984
0.000476198
0.000489197
0.000615487
0.000761983
0.000843368
0.000971592
0.00101158
0.00104867
0.00102635
0.000975822
0.000893898
0.000849207
0.000747188
0.000638953
0.000559911
0.000457207
0.000448334
0.000376996
0.000452382
0.000420815
0.000561234
0.000578112
0.000697956
0.000823858
0.000904933
0.00101599
0.00105604
0.00108654
0.00106731
0.00101927
0.000943078
0.000900494
0.000805339
0.000707452
0.000633412
0.000539651
0.000532671
0.000468914
0.000533241
0.000511494
0.000633958
0.000655728
0.00076762
0.000879019
0.000957619
0.0010549
0.0010946
0.00112045
0.00110372
0.00105717
0.000986795
0.00094455
0.000854765
0.000766806
0.000697352
0.000611129
0.000605277
0.000548986
0.000603312
0.000590635
0.000697994
0.000724343
0.000827818
0.00092787
0.00100209
0.00108911
0.00112726
0.00114872
0.0011346
0.00108955
0.00102429
0.000984459
0.000897659
0.000819503
0.000754619
0.000672767
0.000670356
0.000619026
0.00066495
0.00066089
0.000753052
0.00078537
0.000879087
0.000970715
0.00104116
0.00111896
0.00115667
0.00117319
0.00116221
0.00111893
0.00105645
0.00101625
0.000933706
0.00086364
0.000801244
0.000724694
0.000725658
0.000678147
0.000715592
0.00072021
0.000798346
0.000836877
0.000920507
0.00100674
0.00107181
0.00114232
0.0011792
0.00119321
0.00118397
0.00114057
0.00108276
0.00104573
0.000964788
0.000903625
0.000844006
0.000769621
0.000775095
0.000730214
0.000760063
0.000772909
0.000838545
0.000882667
0.000957307
0.00103948
0.00109931
0.00116397
0.00120035
0.00121074
0.00120459
0.0011618
0.00110614
0.00106766
0.000986879
0.000934617
0.000877126
0.00080313
0.000815452
0.000771339
0.000793515
0.00081493
0.000867506
0.000918555
0.000983083
0.00106309
0.00111762
0.00117741
0.00121456
0.00122109
0.00121786
0.00117502
0.00112105
0.00108812
0.00100843
0.000964749
0.000907522
0.000834603
0.000852518
0.000808664
0.000823216
0.000854231
0.000894037
0.000952735
0.00100714
0.00108739
0.00113565
0.00119225
0.00122867
0.00123333
0.00123337
0.00118925
0.001138
0.00110048
0.00101847
0.00098486
0.000927666
0.000852107
0.000880253
0.000834326
0.00084089
0.000881149
0.00090844
0.000974475
0.00101934
0.00109956
0.00114267
0.00119619
0.00123405
0.00123524
0.00123882
0.00119302
0.00114287
0.001115
0.0010311
0.0010078
0.000948757
0.000870458
0.00090713
0.000859236
0.000858182
0.000908918
0.000923723
0.000998585
0.00103331
0.00111658
0.0011527
0.00120526
0.00124445
0.0012424
0.00125068
0.00120291
0.00115307
0.00111857
0.00102838
0.00102042
0.000958957
0.000872878
0.000926261
0.000872995
0.000859374
0.000925245
0.000923027
0.00100996
0.00103163
0.00111986
0.00114837
0.00119933
0.00124144
0.00123492
0.0012496
0.00119843
0.00114858
0.00112682
0.00103468
0.0010411
0.000969131
0.000880994
0.000942785
0.000884533
0.000866916
0.000940882
0.000929568
0.00102344
0.00103795
0.00112924
0.00115281
0.00120404
0.00124726
0.00123886
0.00125917
0.00120258
0.00115392
0.00112496
0.00101901
0.00106355
0.000973186
0.000866047
0.000960833
0.000890373
0.000850273
0.000952492
0.000913068
0.00102928
0.00102228
0.00112693
0.00113661
0.00118712
0.00123903
0.00122234
0.00125778
0.00119133
0.00113924
-0.0203695
-0.020221
-0.0202351
-0.0204357
-0.0208142
-0.021354
-0.0220939
-0.0229306
-0.0239795
-0.0249401
-0.0258507
-0.026294
-0.026221
-0.0255999
-0.0246045
-0.0235154
-0.0225093
-0.0216834
-0.0210694
-0.0206389
-0.00243635
-0.00257405
-0.00277302
-0.00300793
-0.00330317
-0.00354134
-0.00398735
-0.00418143
-0.00489127
-0.00518436
-0.00597157
-0.00643192
-0.00607542
-0.00523585
-0.00452093
-0.00388671
-0.00329911
-0.00282322
-0.00251566
-0.00239575
-0.00630185
-0.00647969
-0.0067397
-0.00696562
-0.00734555
-0.00748706
-0.0082298
-0.00818725
-0.00956359
-0.00968333
-0.0113066
-0.0118621
-0.011434
-0.010235
-0.00908616
-0.00797814
-0.00712981
-0.00658589
-0.00629503
-0.00622011
-0.000577341
-0.000817093
-0.0011653
-0.00138179
-0.00186895
-0.0017989
-0.00278753
-0.00221211
-0.00410429
-0.00365269
-0.00595288
-0.0059778
-0.00497619
-0.00341251
-0.00226067
-0.00135571
-0.000747155
-0.000440378
-0.000328421
-0.000388203
-0.00261169
-0.00293501
-0.00336425
-0.00355392
-0.00415237
-0.00389696
-0.00516596
-0.00418713
-0.00662695
-0.00588354
-0.00894413
-0.00837882
-0.00698304
-0.00509854
-0.003729
-0.0028469
-0.0022771
-0.00209833
-0.00211095
-0.00229955
-0.00104919
-0.00139095
-0.00189289
-0.00208201
-0.00281097
-0.00243646
-0.00394384
-0.00267367
-0.00547594
-0.00450009
-0.00804882
-0.00651807
-0.00483347
-0.00306873
-0.00170951
-0.0010251
-0.000518262
-0.00042768
-0.000480645
-0.000703694
-0.00175469
-0.00215097
-0.00271281
-0.00290531
-0.00369455
-0.00326104
-0.00481148
-0.00344157
-0.00625065
-0.0053889
-0.00912874
-0.00687702
-0.00481298
-0.00319965
-0.00179555
-0.00129212
-0.000851414
-0.000878613
-0.00101727
-0.00132769
-0.00139561
-0.00180323
-0.00239876
-0.00260465
-0.0034373
-0.00300451
-0.00456417
-0.00321557
-0.0059096
-0.00528459
-0.00881594
-0.00620239
-0.00373812
-0.00255045
-0.00109423
-0.000798228
-0.000379994
-0.000468796
-0.000625619
-0.000954419
-0.00153642
-0.00196514
-0.00257745
-0.0028045
-0.00362485
-0.00323117
-0.00465324
-0.00338387
-0.00572627
-0.00524958
-0.0087005
-0.00592221
-0.00315003
-0.00239804
-0.000874873
-0.000764005
-0.000368689
-0.000521001
-0.000708355
-0.00106939
-0.00139789
-0.00182654
-0.00243199
-0.00267897
-0.00345721
-0.00315641
-0.00436887
-0.00342118
-0.00509943
-0.00536167
-0.00744958
-0.00517049
-0.00212991
-0.00198564
-0.000456639
-0.000547839
-0.000179232
-0.000375059
-0.000570078
-0.000935201
-0.0013261
-0.0017515
-0.00233808
-0.00260203
-0.00331472
-0.00308287
-0.00405698
-0.00320146
-0.004389
-0.00439251
-0.00635444
-0.00483298
-0.00152256
-0.00186868
-0.000264221
-0.000472599
-0.000103318
-0.00031628
-0.000509874
-0.000872553
-0.00117785
-0.00159014
-0.00214615
-0.00242243
-0.00306462
-0.00294091
-0.00369105
-0.00322792
-0.00372568
-0.00465563
-0.00463394
-0.00375373
-0.000520707
-0.00143199
6.32216e-05
-0.000293953
3.28933e-05
-0.000199679
-0.000391802
-0.0007438
-0.00102602
-0.00141983
-0.00193924
-0.00221555
-0.00277845
-0.00269129
-0.00319906
-0.00271682
-0.0026921
-0.00289297
-0.00308144
-0.00393092
-0.000259414
-0.00146169
0.000112748
-0.000236549
0.000102302
-0.000110157
-0.000285891
-0.000617397
-0.000852493
-0.00122439
-0.00170597
-0.00198095
-0.00248993
-0.00247729
-0.00291451
-0.0027062
-0.00256089
-0.0034023
-0.00188817
-0.00233
0.000493172
-0.00092213
0.000362945
-5.10861e-05
0.00022401
1.15407e-05
-0.000158838
-0.000470816
-0.000676654
-0.00102288
-0.00146379
-0.00172384
-0.00216405
-0.00214355
-0.00239221
-0.00205031
-0.00144433
-0.00139514
-0.00062512
-0.00354618
0.00027752
-0.00109482
0.000282905
-6.73374e-06
0.000281851
0.000109991
-4.01193e-05
-0.00032509
-0.000499144
-0.000819923
-0.00122383
-0.00147248
-0.00188145
-0.00189682
-0.00222547
-0.00200428
-0.00196687
-0.00186989
-0.000593562
-0.00183922
0.000453711
-0.000547074
0.000448061
0.000174195
0.000392309
0.000231061
8.72807e-05
-0.000175378
-0.000327055
-0.000621218
-0.000986882
-0.00121537
-0.0015717
-0.00156665
-0.00177772
-0.00145187
-0.00114781
-0.000943523
-0.000483212
-0.00213851
7.68787e-05
-0.000590571
0.000374252
0.00023816
0.000455236
0.00033162
0.000205017
-3.19373e-05
-0.000161916
-0.000431268
-0.000763136
-0.000976316
-0.00130401
-0.0013204
-0.00157838
-0.00135755
-0.00139852
-0.00125457
-0.000456674
-0.000934151
0.00037292
-0.000149609
0.000522258
0.000394588
0.000555416
0.000442934
0.000323297
0.000107401
-6.65863e-06
-0.000252068
-0.000551145
-0.000745255
-0.00103434
-0.00103814
-0.0012411
-0.000956468
-0.000927537
-0.000579851
-0.000441699
-0.00101334
0.000132061
-0.000100738
0.000513399
0.000474866
0.000625917
0.000538775
0.00043187
0.00023751
0.000137879
-8.55983e-05
-0.000355458
-0.000533603
-0.00079453
-0.000807061
-0.00101311
-0.00079264
-0.000878471
-0.000614518
-0.000284469
-0.000403327
0.00034964
0.000176358
0.000624413
0.000595928
0.000712184
0.000635308
0.000535658
0.000359674
0.000271016
6.75811e-05
-0.00017501
-0.000337032
-0.000568924
-0.000578436
-0.00075531
-0.000532323
-0.000606685
-0.000276666
-0.000231865
-0.000298563
0.000306314
0.000277142
0.000667089
0.000679798
0.000782843
0.000720883
0.000630554
0.000471489
0.000392177
0.000207336
-1.09858e-05
-0.000158496
-0.0003655
-0.00037737
-0.000540359
-0.00034883
-0.000445241
-0.000145082
-6.24671e-05
5.80049e-06
0.000441618
0.000447771
0.000751048
0.0007724
0.000855552
0.000801876
0.00071818
0.000574423
0.000502487
0.000333863
0.000137576
3.42396e-06
-0.000181348
-0.00019318
-0.000335633
-0.000163746
-0.000252478
2.87672e-05
3.70405e-05
0.000148303
0.000492791
0.000553936
0.00081184
0.000848316
0.000919345
0.000874386
0.000797682
0.000667119
0.0006013
0.000447629
0.000271076
0.000149047
-1.55221e-05
-2.82108e-05
-0.000154181
-3.64403e-06
-8.55984e-05
0.000176563
0.000185184
0.000326682
0.000592334
0.000669048
0.000880102
0.000920852
0.000979659
0.000940678
0.000869529
0.000751046
0.000690173
0.000549393
0.000390452
0.000279451
0.000132082
0.00011951
9.74582e-06
0.000139733
6.93095e-05
0.00029937
0.000296676
0.00045045
0.00066683
0.000759221
0.000938966
0.000983814
0.00103336
0.000999776
0.000934016
0.000825855
0.000768873
0.000639991
0.000496633
0.000395104
0.000263339
0.000251103
0.000155351
0.000268089
0.000210337
0.000417414
0.000418091
0.00057053
0.000747311
0.000843071
0.000995165
0.00104066
0.00108226
0.00105267
0.000991129
0.0008925
0.000838495
0.000720053
0.000590932
0.000497719
0.000379481
0.000367522
0.000284429
0.000380814
0.00033475
0.000515771
0.000519605
0.000667891
0.000817506
0.000913705
0.00104524
0.00109029
0.00112537
0.00109957
0.00104185
0.000951672
0.000900259
0.000789921
0.000673657
0.000587932
0.00048078
0.000470225
0.000397405
0.000480782
0.00044652
0.000605445
0.000615554
0.000753883
0.000882563
0.000976237
0.00109017
0.00113427
0.00116308
0.00114059
0.00108623
0.00100288
0.000953985
0.000851726
0.00074675
0.000667042
0.000569726
0.000561275
0.000496664
0.000567796
0.000544426
0.000682157
0.000699198
0.00082661
0.000940447
0.00102972
0.00112939
0.00117226
0.00119667
0.00117682
0.0011247
0.00104811
0.000999955
0.000904125
0.000809802
0.000735541
0.000646511
0.000639335
0.000582663
0.000642951
0.000629244
0.000749415
0.000772411
0.000889165
0.000991327
0.00107471
0.00116373
0.0012043
0.00122456
0.00120742
0.00115744
0.00108679
0.00104125
0.000949331
0.000865366
0.000796407
0.000712358
0.000708745
0.000657412
0.00070867
0.000703988
0.000807244
0.00083706
0.000942317
0.00103564
0.00111407
0.00119349
0.00123297
0.00124854
0.00123459
0.00118691
0.00111977
0.00107412
0.000987288
0.000911763
0.000845944
0.000767747
0.000767539
0.000720295
0.000762676
0.000766741
0.000854756
0.000891333
0.000985259
0.00107274
0.00114494
0.00121672
0.00125483
0.00126814
0.0012559
0.00120858
0.00114675
0.00110427
0.00101979
0.000953338
0.000890949
0.000815375
0.000819659
0.000775266
0.000809798
0.000822033
0.000896727
0.000939116
0.0010232
0.00110611
0.00117247
0.00123808
0.00127518
0.00128514
0.00127589
0.00122963
0.00117053
0.00112672
0.0010431
0.000985463
0.000925827
0.000851111
0.000862122
0.000818648
0.000845456
0.000865997
0.000927195
0.000976465
0.00104995
0.00113013
0.00119085
0.0012513
0.00128871
0.00129512
0.00128861
0.00124269
0.00118583
0.00114739
0.0010655
0.00101611
0.000957541
0.000884288
0.000900769
0.000857709
0.000876872
0.000906673
0.000954901
0.00101159
0.00107472
0.00115454
0.00120884
0.00126577
0.00130203
0.00130693
0.00130338
0.00125661
0.00120296
0.00115981
0.0010763
0.00103614
0.000978616
0.000903182
0.000929538
0.000884535
0.000895965
0.000934423
0.000970311
0.00103384
0.00108754
0.00116663
0.0012159
0.00126948
0.00130671
0.00130858
0.00130809
0.00126009
0.00120806
0.00117429
0.00108942
0.00105785
0.00100046
0.000922589
0.000957258
0.000910485
0.000914379
0.00096283
0.000986401
0.0010583
0.00110202
0.00118352
0.00122595
0.00127823
0.00131644
0.00131546
0.00131896
0.00126972
0.00121839
0.0011775
0.00108714
0.00106801
0.0010109
0.000925853
0.00097653
0.000924536
0.000916489
0.000979056
0.000986388
0.00106938
0.00110079
0.00118623
0.00122173
0.00127211
0.00131259
0.00130786
0.00131653
0.00126479
0.00121408
0.00118558
0.0010937
0.00108685
0.00102198
0.000934502
0.000993426
0.000936683
0.000924676
0.000994948
0.000993434
0.00108295
0.00110747
0.00119547
0.0012263
0.0012766
0.00131799
0.00131171
0.00132519
0.00126903
0.00121954
0.00118283
0.0010783
0.00110159
0.00102601
0.000920168
0.00101075
0.00094221
0.000908822
0.00100558
0.000977587
0.00108771
0.00109234
0.00119203
0.00121049
0.00125953
0.00130858
0.00129531
0.0013209
0.00125727
0.00120513
-0.0207003
-0.020621
-0.0206757
-0.0208889
-0.0212599
-0.0217734
-0.0224597
-0.0232142
-0.0241547
-0.0250159
-0.0257845
-0.0261156
-0.0259714
-0.0252726
-0.0242618
-0.0232459
-0.0223567
-0.021666
-0.0211857
-0.0208774
-0.00291644
-0.00314815
-0.00340517
-0.00366256
-0.00392577
-0.00410455
-0.00445024
-0.00448147
-0.00508833
-0.00517763
-0.00585596
-0.00627177
-0.00577857
-0.00497783
-0.00436472
-0.00379903
-0.00327982
-0.00290771
-0.00273239
-0.00275161
-0.00671107
-0.00700156
-0.00733406
-0.0076035
-0.00796696
-0.00805716
-0.00872723
-0.00844261
-0.00981714
-0.00954008
-0.0111586
-0.0115147
-0.0110283
-0.00971338
-0.00862401
-0.00761658
-0.00690756
-0.00653143
-0.00640852
-0.00649105
-0.0012448
-0.00161453
-0.00205327
-0.00233242
-0.00281433
-0.00268976
-0.00363868
-0.00272895
-0.00474381
-0.00369946
-0.00615181
-0.00579366
-0.00478996
-0.00313459
-0.002069
-0.00127294
-0.000789763
-0.000638403
-0.000686596
-0.000906067
-0.00313581
-0.00360026
-0.00413774
-0.00441464
-0.00503403
-0.00473097
-0.00600447
-0.00461144
-0.00726248
-0.00577507
-0.00905923
-0.00792834
-0.00652171
-0.00459188
-0.0033133
-0.00257467
-0.00214454
-0.00213244
-0.00231144
-0.00266582
-0.00170664
-0.0022021
-0.00282427
-0.00311316
-0.00388321
-0.00346165
-0.00501688
-0.0032875
-0.00637178
-0.00458767
-0.00837177
-0.0062582
-0.00452477
-0.00276773
-0.00146224
-0.000910663
-0.000526823
-0.000592509
-0.00080739
-0.00119778
-0.00229152
-0.00284176
-0.00353347
-0.00383848
-0.00469268
-0.0042253
-0.00584712
-0.00402682
-0.00710139
-0.00547212
-0.00935618
-0.00655539
-0.00441238
-0.00285437
-0.00148515
-0.00110714
-0.000778216
-0.000948134
-0.00123759
-0.00170645
-0.00194259
-0.00250339
-0.00323127
-0.00355218
-0.00446324
-0.00400189
-0.00565304
-0.00386385
-0.00682996
-0.0054698
-0.0090522
-0.00602192
-0.00339224
-0.00231549
-0.000857329
-0.00067201
-0.000352133
-0.000568868
-0.00086738
-0.00134739
-0.00199389
-0.00256745
-0.00331045
-0.00365344
-0.00456339
-0.00415384
-0.00567542
-0.00400355
-0.00658126
-0.00542767
-0.0088638
-0.00582115
-0.00279529
-0.002197
-0.000640913
-0.000623507
-0.000312201
-0.000573367
-0.000887413
-0.00138486
-0.00180931
-0.00237294
-0.00310277
-0.00346028
-0.00433013
-0.00402137
-0.00532579
-0.0040417
-0.00587199
-0.00565533
-0.00749572
-0.00517289
-0.00179997
-0.00185112
-0.000263812
-0.000430489
-0.000132373
-0.000419256
-0.000727592
-0.00121588
-0.00166693
-0.00221461
-0.00291673
-0.00328493
-0.00408784
-0.00386111
-0.00491381
-0.00378559
-0.00505683
-0.00464645
-0.00632435
-0.00495204
-0.00120872
-0.00177398
-8.89882e-05
-0.000355838
-4.55197e-05
-0.000332917
-0.000625618
-0.00109632
-0.00146248
-0.00198389
-0.00264452
-0.00301538
-0.00374084
-0.00362831
-0.00443758
-0.00377593
-0.00427197
-0.00501699
-0.00444413
-0.00393812
-0.000223849
-0.00138293
0.00020706
-0.000191335
8.91731e-05
-0.000201696
-0.000479076
-0.000924854
-0.00125412
-0.00174391
-0.00235652
-0.00271808
-0.00335729
-0.00328948
-0.00383872
-0.00321669
-0.00310662
-0.0031862
-0.00285188
-0.00424095
-1.87489e-06
-0.00143358
0.000241942
-0.00013381
0.000166011
-9.32006e-05
-0.000342562
-0.000754904
-0.00103232
-0.00148762
-0.0020505
-0.00240013
-0.00297567
-0.00298349
-0.00345137
-0.00315029
-0.00292744
-0.00376079
-0.00160676
-0.0025636
0.000727529
-0.000908617
0.000468286
4.16325e-05
0.000287685
4.03666e-05
-0.00019165
-0.000572275
-0.000813209
-0.00123145
-0.00174278
-0.00206797
-0.00256711
-0.00256693
-0.00283738
-0.00242254
-0.00167899
-0.00162482
-0.000394969
-0.00391742
0.000435006
-0.00108184
0.000377581
8.90275e-05
0.00035231
0.00015228
-5.06616e-05
-0.000394284
-0.000599012
-0.000981327
-0.00144539
-0.00174961
-0.00220901
-0.00224092
-0.0025995
-0.00230691
-0.00227084
-0.00207517
-0.000526462
-0.00196244
0.000568386
-0.000514613
0.00052774
0.000264238
0.000463424
0.00028154
9.41483e-05
-0.000217975
-0.000395632
-0.000742222
-0.00115915
-0.00143509
-0.00183525
-0.00184386
-0.00208307
-0.00168474
-0.00136027
-0.00102697
-0.000478152
-0.00232062
0.000120854
-0.000551526
0.000450219
0.000331771
0.000531914
0.000391176
0.000227373
-5.1691e-05
-0.000204454
-0.00051828
-0.000893304
-0.00114632
-0.00151015
-0.00153727
-0.00182018
-0.00154122
-0.00160402
-0.00135681
-0.000469172
-0.000994251
0.000409217
-0.00010629
0.000589468
0.000483427
0.000632605
0.000507703
0.000357409
0.000106152
-2.75503e-05
-0.000310636
-0.000646102
-0.000873887
-0.00119369
-0.00120717
-0.00143457
-0.00109725
-0.00109754
-0.00061708
-0.000508387
-0.00105884
0.000153077
-4.25441e-05
0.000585914
0.000567052
0.000707247
0.000609193
0.000476123
0.000251684
0.000134697
-0.000120661
-0.000420917
-0.000627092
-0.000912953
-0.000932746
-0.00115708
-0.000891179
-0.00100506
-0.00063416
-0.000330778
-0.000421474
0.000364268
0.000231061
0.000692507
0.000684817
0.000793956
0.000708808
0.000587468
0.000386102
0.000282277
5.19146e-05
-0.000216201
-0.000401751
-0.000654092
-0.000670443
-0.000863483
-0.000606327
-0.000708936
-0.00028939
-0.000281026
-0.000288856
0.000333276
0.000343655
0.000741267
0.000770425
0.000866843
0.000797451
0.000688589
0.000507904
0.0004151
0.000207474
-3.21611e-05
-0.000199287
-0.000422699
-0.000439904
-0.000614627
-0.00039362
-0.000511718
-0.000132943
-9.31036e-05
2.238e-05
0.000468259
0.000512698
0.000824413
0.000861298
0.000939819
0.000880073
0.000780777
0.00061869
0.000534777
0.000346862
0.000132701
-1.78881e-05
-0.000216053
-0.000232452
-0.000384048
-0.000190191
-0.00029679
4.3405e-05
2.06789e-05
0.000181805
0.000532031
0.00062515
0.000888871
0.00093752
0.00100435
0.000953872
0.000863827
0.000717602
0.000641041
0.000471035
0.000279413
0.000143667
-3.15023e-05
-4.80441e-05
-0.000180323
-1.18415e-05
-0.000106537
0.00020409
0.000184291
0.000365951
0.000635955
0.00074065
0.00095774
0.00100896
0.00106457
0.00102076
0.000938208
0.000806341
0.000735803
0.000581187
0.000409578
0.000287039
0.000131215
0.000115337
1.05572e-06
0.000145146
6.55586e-05
0.000332981
0.000309971
0.00049863
0.000718552
0.000833733
0.00101826
0.00107134
0.00111803
0.0010801
0.00100451
0.000884854
0.000819114
0.000678501
0.000524342
0.0004131
0.000274644
0.000259645
0.000160967
0.000285024
0.000221251
0.000457636
0.00044266
0.000623471
0.000803637
0.00091863
0.00107502
0.0011272
0.00116643
0.00113289
0.00106282
0.000954309
0.000892305
0.000763896
0.000625512
0.000524216
0.000400637
0.000386352
0.000301476
0.000407026
0.000357173
0.000561431
0.000554307
0.000725874
0.000878576
0.000990531
0.0011256
0.00117588
0.00120888
0.0011794
0.00111426
0.00101556
0.000956817
0.000838005
0.00071373
0.000621166
0.000509794
0.000497323
0.000423575
0.000514559
0.000478023
0.000655447
0.000657794
0.000815269
0.000946841
0.00105364
0.00117059
0.00121879
0.00124579
0.00121987
0.00115902
0.0010683
0.00101258
0.000903121
0.00079113
0.000705645
0.000605051
0.00059496
0.000530019
0.000607641
0.000583081
0.000735933
0.000747691
0.000890881
0.00100732
0.00110749
0.00120966
0.00125566
0.00127851
0.00125539
0.00119755
0.00111459
0.00106009
0.000958158
0.000857596
0.00077845
0.000686886
0.000678284
0.000621714
0.000687701
0.000673391
0.000806138
0.000825544
0.000955596
0.00106002
0.00115262
0.00124369
0.0012866
0.00130554
0.00128525
0.0012302
0.00115404
0.00110243
0.00100536
0.000915737
0.000842645
0.000756682
0.000751799
0.000700912
0.000757286
0.000752409
0.000866412
0.000893716
0.00101039
0.00110555
0.00119193
0.00127297
0.00131411
0.00132859
0.00131154
0.00125936
0.00118747
0.00113607
0.00104494
0.000964134
0.00089483
0.000815273
0.000813848
0.000767272
0.000814421
0.000818332
0.000915871
0.000950594
0.00105462
0.00114347
0.00122268
0.00129572
0.00133491
0.00134739
0.00133205
0.00128071
0.0012148
0.00116663
0.0010786
0.00100707
0.000941826
0.000865354
0.000868414
0.000824866
0.000863956
0.00087593
0.000959393
0.00100017
0.00109346
0.0011772
0.00124994
0.00131647
0.00135414
0.00136354
0.00135112
0.00130126
0.00123869
0.00118936
0.00110288
0.00104015
0.000978221
0.000903097
0.000912763
0.000870246
0.000901604
0.000921582
0.000991152
0.00103877
0.00112097
0.00120139
0.00126814
0.00132919
0.00136671
0.00137288
0.00136302
0.0013139
0.00125413
0.00121004
0.00112594
0.0010712
0.00101102
0.000937783
0.00095278
0.000910798
0.000934532
0.000963378
0.00101983
0.00107463
0.00114624
0.00122569
0.00128585
0.00134306
0.00137901
0.00138401
0.00137686
0.00132728
0.00127124
0.00122238
0.0011373
0.00109113
0.0010328
0.000957902
0.000982407
0.000938582
0.000954875
0.000991751
0.00103607
0.00109721
0.00115953
0.00123751
0.00129277
0.00134636
0.0013828
0.00138521
0.00138068
0.00133027
0.0012764
0.00123668
0.00115075
0.00111174
0.00105512
0.000978232
0.00101081
0.000965386
0.000974269
0.0010206
0.00105282
0.00112185
0.00117436
0.00125409
0.00130267
0.00135464
0.00139169
0.00139167
0.00139049
0.00133943
0.00128672
0.00123944
0.00114873
0.00111925
0.00106553
0.000982251
0.00103008
0.00097957
0.000977182
0.00103656
0.00105338
0.00113248
0.00117348
0.00125611
0.00129845
0.00134822
0.00138691
0.00138382
0.0013866
0.00133388
0.00128248
0.00124733
0.0011552
0.00112636
0.00107682
0.000991405
0.00104726
0.000992225
0.000985947
0.0010526
0.00106086
0.00114605
0.00118045
0.00126511
0.00130306
0.00135243
0.0013918
0.00138742
0.0013918
0.00133796
0.001288
0.00124376
0.00113953
0.001096
0.00107963
0.000977738
0.00106373
0.00099729
0.000970828
0.00106211
0.00104561
0.00114959
0.0011658
0.00126044
0.00128759
0.00133518
0.00138119
0.00137097
0.00137484
0.00132529
0.00127385
-0.0211451
-0.0211725
-0.0213127
-0.0215635
-0.0219105
-0.0223591
-0.0229146
-0.0235117
-0.0242685
-0.0249525
-0.0254688
-0.0256715
-0.0254264
-0.0246692
-0.0237011
-0.0228258
-0.0221218
-0.0216334
-0.0213397
-0.0211927
-0.00359383
-0.00395726
-0.00429788
-0.00458644
-0.00480119
-0.00489171
-0.00506865
-0.00485269
-0.00527194
-0.00502606
-0.00550849
-0.00585137
-0.0052219
-0.00452253
-0.00404759
-0.00359338
-0.00320424
-0.00300997
-0.00303765
-0.00325583
-0.00730011
-0.00774694
-0.00818669
-0.00852176
-0.00886245
-0.00888777
-0.009417
-0.00879631
-0.0101056
-0.0092103
-0.0107762
-0.0108213
-0.0103695
-0.00893531
-0.00796504
-0.0071273
-0.00662123
-0.0064791
-0.00658771
-0.0068869
-0.00211926
-0.00266959
-0.00324027
-0.00361129
-0.0040883
-0.00391101
-0.00475638
-0.00341388
-0.00552383
-0.00360125
-0.00622846
-0.00529922
-0.00438606
-0.00265162
-0.00172187
-0.00109713
-0.000795879
-0.000862344
-0.0011335
-0.00157318
-0.00384053
-0.00450026
-0.00519451
-0.00559823
-0.00624713
-0.00591205
-0.00713361
-0.00521978
-0.00807613
-0.00551022
-0.00903207
-0.00717455
-0.0058322
-0.00389201
-0.00274373
-0.00220747
-0.00196649
-0.00217565
-0.00257795
-0.00315533
-0.00252791
-0.00323034
-0.00402289
-0.00445715
-0.00528411
-0.00484166
-0.00640293
-0.00411016
-0.00749381
-0.00455695
-0.0085616
-0.00576783
-0.00400819
-0.00230543
-0.00108067
-0.000710397
-0.000492578
-0.00076244
-0.00119071
-0.00180118
-0.00296568
-0.00372075
-0.00459162
-0.00505748
-0.00599913
-0.00553048
-0.00719458
-0.00483089
-0.00818707
-0.00547231
-0.00944445
-0.00606637
-0.00383565
-0.00237694
-0.00106232
-0.000845312
-0.000663594
-0.00101521
-0.00149918
-0.00217286
-0.00259645
-0.00335654
-0.00426275
-0.00474643
-0.00576216
-0.00530835
-0.00703387
-0.00472044
-0.00798747
-0.00557701
-0.00913647
-0.00572298
-0.00288973
-0.00196769
-0.000522599
-0.000471968
-0.000280269
-0.000656053
-0.00113288
-0.00180392
-0.00253511
-0.00329404
-0.00420874
-0.00471222
-0.00573948
-0.00535045
-0.00696544
-0.00481749
-0.00766467
-0.00554096
-0.00889088
-0.00565576
-0.00231149
-0.00190551
-0.000328891
-0.0004182
-0.000215539
-0.000609396
-0.00108003
-0.00174718
-0.00227959
-0.00301249
-0.00390201
-0.00440983
-0.00539867
-0.00511552
-0.00651394
-0.00483223
-0.00684417
-0.00591018
-0.00738189
-0.00514482
-0.0013653
-0.00164337
-8.55799e-06
-0.000253949
-4.60454e-05
-0.000441363
-0.000886718
-0.00152505
-0.00204903
-0.00274747
-0.0035947
-0.00410103
-0.00501959
-0.00482851
-0.00596611
-0.00451934
-0.00589424
-0.00486391
-0.00613987
-0.00508146
-0.000812813
-0.00162188
0.000133369
-0.000187842
4.76521e-05
-0.000326399
-0.00073678
-0.00133703
-0.00177275
-0.00242612
-0.00321533
-0.00370891
-0.00454015
-0.00446445
-0.00534092
-0.00444651
-0.0049502
-0.00536737
-0.00408192
-0.00416494
0.000133065
-0.00129225
0.000384874
-4.42241e-05
0.000178157
-0.000179088
-0.000555883
-0.00111228
-0.00149671
-0.00210049
-0.00282538
-0.00329477
-0.00402943
-0.00400243
-0.00460211
-0.00382131
-0.0036166
-0.00348667
-0.00245739
-0.00461786
0.000300244
-0.00137226
0.0003967
7.3552e-06
0.000259102
-5.21289e-05
-0.000385735
-0.000891945
-0.00121794
-0.00177052
-0.0024296
-0.00287165
-0.00352902
-0.00357445
-0.00407959
-0.00367668
-0.00336366
-0.00414682
-0.00116749
-0.00286536
0.000990532
-0.000874035
0.000591079
0.000166708
0.000377869
9.27282e-05
-0.000208893
-0.000668074
-0.000949615
-0.0014504
-0.00204344
-0.00244751
-0.0030176
-0.00305138
-0.00335039
-0.00285705
-0.00195332
-0.00187297
-5.06412e-05
-0.00436686
0.000602419
-0.00104978
0.000486347
0.000213005
0.000446652
0.000216779
-4.47924e-05
-0.000454486
-0.000694514
-0.00114635
-0.00167884
-0.00204906
-0.00256803
-0.00262679
-0.00302197
-0.00265137
-0.00263245
-0.00228449
-0.000425383
-0.00209933
0.00068038
-0.000466505
0.000618168
0.000378438
0.000556237
0.000352794
0.000117581
-0.000249508
-0.000457142
-0.000862156
-0.00133641
-0.00166758
-0.00211836
-0.00214832
-0.00242265
-0.0019432
-0.00161376
-0.00108938
-0.000480199
-0.00252059
0.000152388
-0.000496102
0.000536784
0.000446738
0.000628426
0.000469906
0.000265833
-5.94637e-05
-0.000238237
-0.000600903
-0.00102342
-0.00132204
-0.00172673
-0.0017705
-0.00208241
-0.00174016
-0.0018384
-0.00144895
-0.000489874
-0.00106128
0.000432625
-5.13655e-05
0.000666143
0.000590888
0.000727922
0.000590136
0.000407027
0.00011724
-3.88451e-05
-0.000362833
-0.00073771
-0.00100334
-0.00135698
-0.00138485
-0.00164001
-0.00124733
-0.001291
-0.000641994
-0.000597109
-0.00110029
0.000167006
2.82537e-05
0.000668795
0.000675887
0.000804961
0.000695595
0.000534846
0.00027802
0.000141416
-0.000148094
-0.000480823
-0.000718139
-0.00103086
-0.00106134
-0.00130582
-0.000992081
-0.00114289
-0.000638459
-0.000395155
-0.000439874
0.000372078
0.000296047
0.000770731
0.000788701
0.000890685
0.000796935
0.000652736
0.000424282
0.000303332
4.43782e-05
-0.000250598
-0.00046181
-0.000735754
-0.000761606
-0.000971508
-0.00067997
-0.000817247
-0.000293298
-0.000342586
-0.000273961
0.000358996
0.000420162
0.000825411
0.000874423
0.000964294
0.00088721
0.000758958
0.000555409
0.000447465
0.000215899
-4.59134e-05
-0.000234054
-0.000474559
-0.000499144
-0.000685512
-0.000435391
-0.000578886
-0.00011056
-0.000132241
4.35647e-05
0.000496067
0.000587028
0.000907748
0.000962467
0.00103632
0.000970222
0.000854648
0.000673316
0.000576012
0.000368024
0.000135483
-3.24868e-05
-0.000244275
-0.000266769
-0.000427063
-0.000211715
-0.000338029
6.68261e-05
1.29083e-06
0.000220893
0.00057472
0.00070502
0.000975398
0.00103771
0.00110033
0.00104411
0.000940214
0.000777656
0.000689159
0.000502315
0.000295352
0.000145258
-4.047e-05
-6.19164e-05
-0.000199826
-1.4591e-05
-0.000122641
0.000239336
0.000183468
0.000411078
0.000684556
0.000820985
0.00104468
0.00110702
0.00115936
0.00111051
0.00101617
0.000870424
0.0007892
0.000620435
0.000436009
0.000301555
0.000137508
0.00011757
-4.48333e-07
0.000156757
6.81432e-05
0.000374415
0.000326026
0.000552844
0.000775983
0.000916358
0.00110606
0.00116781
0.00121165
0.0011691
0.00108338
0.000951882
0.000876514
0.00072398
0.00055901
0.000437872
0.00029302
0.000274765
0.000173935
0.000308472
0.000239012
0.000505013
0.000471566
0.000682714
0.000866281
0.00100182
0.00116281
0.00122184
0.00125863
0.0012209
0.00114209
0.00102343
0.000952691
0.000814213
0.00066664
0.000557141
0.000428586
0.000411653
0.000325736
0.000439784
0.000386695
0.000614007
0.000594296
0.000790035
0.00094601
0.00107441
0.00121324
0.0012688
0.00129962
0.00126624
0.00119351
0.0010861
0.0010194
0.000892077
0.000759929
0.000660476
0.00054526
0.00053066
0.000456649
0.000554692
0.00051654
0.000711998
0.000705761
0.0008827
0.00101741
0.00113762
0.00125772
0.00130994
0.00133503
0.00130548
0.00123798
0.00113977
0.0010767
0.000960039
0.000841216
0.000749931
0.00064642
0.000634581
0.000569981
0.000653648
0.000628483
0.000795883
0.000802022
0.000960938
0.00108023
0.00119134
0.00129608
0.00134508
0.00136624
0.00133968
0.001276
0.00118658
0.0011253
0.00101728
0.00091069
0.000826662
0.00073291
0.000722823
0.000666935
0.000738264
0.000723949
0.000868701
0.00088444
0.00102755
0.00113443
0.00123616
0.00132928
0.00137436
0.00139184
0.00136825
0.00130804
0.00122631
0.00116827
0.00106608
0.000971032
0.000893814
0.000806268
0.000800091
0.000750156
0.000811367
0.000806804
0.00093105
0.000955922
0.00108368
0.00118084
0.00127498
0.00135762
0.00140023
0.00141348
0.00139322
0.00133644
0.00125975
0.00120233
0.00110693
0.0010211
0.000948306
0.000867706
0.000865049
0.000819593
0.000871293
0.000875526
0.000982138
0.00101514
0.00112889
0.00121923
0.00130523
0.00137947
0.00141956
0.00143106
0.00141252
0.00135707
0.00128705
0.00123297
0.00114143
0.00106514
0.000996962
0.000919909
0.000921746
0.000879427
0.000922917
0.000935044
0.00102687
0.0010662
0.00116833
0.00125299
0.00133187
0.00139924
0.0014373
0.001446
0.00143033
0.00137679
0.00131073
0.00125571
0.00116643
0.00109899
0.0010346
0.000959378
0.000967689
0.000926468
0.000962266
0.00098204
0.00105964
0.00110578
0.00119633
0.00127707
0.00134959
0.00141117
0.00144861
0.0014544
0.00144115
0.00138871
0.00132604
0.00127618
0.0011899
0.00113038
0.00106822
0.000995325
0.00100881
0.000968201
0.000996447
0.00102464
0.00108902
0.00114211
0.00122186
0.00130098
0.00136674
0.00142418
0.00145962
0.00146459
0.00145386
0.00140129
0.00134288
0.00128825
0.00120165
0.00115039
0.00109046
0.00101647
0.00103908
0.000996692
0.00101783
0.00105337
0.00110589
0.00116478
0.00123541
0.00131231
0.00137331
0.00142686
0.00146233
0.00146515
0.0014567
0.00140359
0.00134792
0.00130223
0.00121531
0.00117085
0.00111309
0.00103756
0.00106797
0.00102413
0.00103802
0.00108243
0.00112312
0.00118938
0.00125043
0.00132839
0.0013829
0.00143449
0.00147022
0.00147102
0.00146557
0.0014121
0.00135808
0.00130447
0.00121352
0.00117856
0.0011233
0.00104222
0.00108709
0.00103826
0.00104159
0.00109794
0.00112412
0.0011994
0.00124976
0.00132958
0.00137853
0.00142766
0.00146438
0.00146285
0.00146089
0.00140578
0.00135379
0.00131213
0.00122014
0.00118659
0.00113435
0.00105182
0.00110443
0.0010513
0.00105085
0.00111399
0.00113195
0.00121284
0.00125693
0.00133822
0.0013831
0.00143151
0.00146869
0.00146631
0.00146589
0.00140937
0.00135931
0.00130774
0.00120502
0.00117977
0.00113565
0.00103879
0.00111993
0.00105574
0.00103641
0.00112223
0.00111723
0.00121504
0.00124269
0.00133223
0.0013679
0.00141405
0.00145683
0.00145011
0.0014544
0.00139535
0.00134535
-0.0217844
-0.0219612
-0.0222026
-0.0225022
-0.0228269
-0.0231807
-0.0235452
-0.0238939
-0.0243339
-0.0247033
-0.0247822
-0.0248444
-0.0244275
-0.0236796
-0.0228452
-0.022211
-0.02179
-0.0215878
-0.0215611
-0.0216441
-0.00456879
-0.00511914
-0.00558187
-0.00591749
-0.00607048
-0.0060375
-0.00594686
-0.00536334
-0.00546225
-0.0046678
-0.0048116
-0.0050152
-0.00429583
-0.00377314
-0.003491
-0.0032302
-0.00307107
-0.0031584
-0.00348563
-0.00398694
-0.00816302
-0.00883536
-0.00943946
-0.00987499
-0.0101925
-0.0101361
-0.0104179
-0.00933371
-0.0104675
-0.00862335
-0.0100812
-0.00963009
-0.00935332
-0.00780137
-0.00703643
-0.00647469
-0.00626277
-0.00644589
-0.00687552
-0.00747668
-0.00328244
-0.00408811
-0.00485785
-0.00536924
-0.0058556
-0.00563366
-0.00627226
-0.0043727
-0.00650853
-0.00328569
-0.00610956
-0.00435003
-0.00368319
-0.00188971
-0.00116075
-0.000800152
-0.000759307
-0.0011266
-0.00170523
-0.00244804
-0.00479009
-0.0057232
-0.00664923
-0.00724193
-0.00794857
-0.00761281
-0.00869104
-0.00612746
-0.00914857
-0.00501212
-0.00878799
-0.00601601
-0.00483461
-0.00294183
-0.0019729
-0.00171957
-0.00173412
-0.00223427
-0.00293416
-0.00381094
-0.00355771
-0.00454204
-0.00558026
-0.00622911
-0.00715144
-0.00673701
-0.00823679
-0.00525882
-0.00893411
-0.00433617
-0.00852962
-0.00498065
-0.00321435
-0.00163363
-0.00052484
-0.000398269
-0.00040184
-0.000934823
-0.00164129
-0.00254022
-0.00380693
-0.0048359
-0.00595746
-0.00665496
-0.00773004
-0.00731877
-0.00898063
-0.00597005
-0.00959861
-0.00532275
-0.00929141
-0.00536458
-0.00303172
-0.00173012
-0.000497351
-0.000483926
-0.00049279
-0.00107303
-0.0018053
-0.00274227
-0.00337377
-0.00439337
-0.00554217
-0.00625637
-0.00742522
-0.00704191
-0.00881627
-0.00589244
-0.00946887
-0.00553308
-0.00896636
-0.0052718
-0.00219058
-0.00147618
-6.6822e-05
-0.000177121
-0.000148247
-0.00071992
-0.00141877
-0.00232943
-0.00316788
-0.00416313
-0.00530472
-0.00602976
-0.00722131
-0.00691474
-0.00861479
-0.00591889
-0.00905857
-0.00552129
-0.00867415
-0.00540015
-0.00166808
-0.00149797
7.82859e-05
-0.00013025
-6.35362e-05
-0.000617809
-0.0012796
-0.00215604
-0.00281021
-0.00375406
-0.00484918
-0.00555997
-0.00671092
-0.0065092
-0.00800612
-0.00586928
-0.00808903
-0.00606892
-0.00701361
-0.00507642
-0.000808955
-0.00134253
0.000320797
-3.54704e-06
9.34432e-05
-0.000430109
-0.00103907
-0.00185858
-0.00247003
-0.00335241
-0.00438155
-0.0050696
-0.00614161
-0.0060346
-0.00726817
-0.00546371
-0.00696326
-0.0049957
-0.00571496
-0.00522317
-0.000329819
-0.00139786
0.000409531
4.31751e-05
0.000188138
-0.000286231
-0.00083433
-0.00158833
-0.00210394
-0.00291528
-0.00386192
-0.00451301
-0.00548171
-0.00548206
-0.00643943
-0.00528471
-0.00581111
-0.0056725
-0.00346503
-0.00444755
0.000544607
-0.00115029
0.000599549
0.000156697
0.00030975
-0.000122554
-0.000613585
-0.00129895
-0.00174793
-0.00248565
-0.00334474
-0.00394909
-0.0048049
-0.00484998
-0.00551485
-0.00456362
-0.00425926
-0.00377952
-0.00181777
-0.00508109
0.000636835
-0.00127133
0.000577783
0.00019425
0.000389582
2.10973e-05
-0.000407488
-0.00102132
-0.00140312
-0.00206805
-0.00283976
-0.00339475
-0.00415381
-0.00426065
-0.00481371
-0.00430726
-0.00389183
-0.00455977
-0.000494581
-0.00326077
0.00126865
-0.000815983
0.000730688
0.000329892
0.000501226
0.000175195
-0.000203655
-0.000751589
-0.00107985
-0.00167417
-0.00236095
-0.00285918
-0.00351524
-0.00360106
-0.00393882
-0.00336716
-0.00227817
-0.0021396
0.000458828
-0.00492053
0.000764804
-0.000996814
0.000608778
0.000369587
0.000570599
0.000309066
-1.64593e-05
-0.00049988
-0.000780218
-0.00130942
-0.00191897
-0.00236653
-0.00295568
-0.00305468
-0.00349532
-0.0030445
-0.00306724
-0.00249042
-0.000283104
-0.00225228
0.000776148
-0.000402032
0.000719433
0.000520049
0.000675425
0.000449558
0.000162676
-0.000264857
-0.000506793
-0.000975892
-0.00151346
-0.00190798
-0.00241679
-0.00247797
-0.00279617
-0.0022291
-0.00191856
-0.00111502
-0.000506904
-0.00273934
0.000159846
-0.000422967
0.000634853
0.000585866
0.000748546
0.000571699
0.000324626
-5.07132e-05
-0.000259182
-0.000674726
-0.00114879
-0.00149871
-0.00194913
-0.00201655
-0.00236249
-0.00195366
-0.00210439
-0.0015218
-0.000532886
-0.00113898
0.00043421
1.57248e-05
0.000753503
0.000719267
0.000844386
0.000693395
0.000475485
0.000144439
-3.70711e-05
-0.000404759
-0.000821722
-0.00112926
-0.00151959
-0.00156725
-0.00185355
-0.00140574
-0.00150915
-0.000649871
-0.000720624
-0.00113748
0.000169567
0.000112493
0.000763586
0.000803208
0.000921515
0.000800589
0.000610864
0.000319575
0.000160934
-0.000164654
-0.000531663
-0.000802749
-0.00114392
-0.00118912
-0.00145509
-0.00109337
-0.00129099
-0.000622618
-0.000487385
-0.00045934
0.000370804
0.000372245
0.000860854
0.000909259
0.00100449
0.000901834
0.000733827
0.000476725
0.000336554
4.77347e-05
-0.000275116
-0.000513723
-0.000810012
-0.000848252
-0.00107527
-0.000750779
-0.000929032
-0.000286198
-0.000421068
-0.00025413
0.000382805
0.000507383
0.000921236
0.000993195
0.00107693
0.000991779
0.000843465
0.000616058
0.000491203
0.00023491
-4.96361e-05
-0.000259948
-0.000517812
-0.000552033
-0.000749448
-0.000471949
-0.000643931
-7.65083e-05
-0.000181886
6.96874e-05
0.000525592
0.000671913
0.0010027
0.00107708
0.00114647
0.00107364
0.00094126
0.000739958
0.000627758
0.000399254
0.000148096
-3.78978e-05
-0.000262913
-0.000293182
-0.000461231
-0.000226042
-0.000373396
0.000100689
-2.13908e-05
0.000265861
0.000621553
0.00079468
0.00107279
0.00114977
0.00120839
0.00114614
0.001028
0.00084861
0.000746913
0.000542985
0.000320654
0.000155846
-4.00365e-05
-6.74582e-05
-0.000210048
-9.53433e-06
-0.000131084
0.000283619
0.000183495
0.000462958
0.000739553
0.000910879
0.00114186
0.00121576
0.00126495
0.00121075
0.00110432
0.00094435
0.000851374
0.000668362
0.00047121
0.000324676
0.000152894
0.000128241
7.55902e-06
0.000176679
7.95904e-05
0.000424786
0.000346057
0.00061392
0.000840403
0.00100775
0.00120327
0.00127391
0.00131491
0.00126742
0.00117134
0.00102777
0.00094187
0.000777416
0.000601817
0.000470763
0.00032002
0.000298114
0.000196119
0.000340047
0.000265781
0.000560562
0.000506114
0.000748972
0.000936392
0.00109332
0.00125926
0.00132514
0.0013594
0.00131719
0.00122948
0.00110053
0.00102028
0.000871794
0.000715275
0.000597617
0.00046458
0.000444798
0.000358754
0.00048046
0.000425134
0.000674468
0.000640834
0.000861057
0.0010208
0.00116594
0.00130875
0.00136946
0.00139798
0.00136047
0.00128002
0.00116379
0.00108852
0.000952764
0.000813023
0.00070676
0.000588185
0.000571359
0.000497926
0.000602349
0.000563488
0.000775939
0.000760585
0.000956832
0.00109507
0.00122865
0.00135197
0.00140805
0.00143107
0.00139768
0.00132344
0.00121768
0.00114673
0.00102298
0.000897614
0.000800625
0.000694662
0.000681036
0.000617548
0.000706671
0.000681766
0.000862738
0.000863147
0.00103735
0.00115982
0.00128171
0.00138901
0.00144074
0.00146004
0.00142988
0.00136027
0.00126436
0.00119586
0.00108188
0.000969566
0.000880764
0.000785244
0.000773672
0.000719127
0.000795328
0.000781802
0.000937701
0.000949887
0.00110549
0.00121509
0.00132564
0.00142077
0.00146775
0.0014836
0.00145657
0.00139112
0.00130381
0.00123899
0.00113181
0.00103164
0.000950392
0.000861642
0.000854195
0.000805774
0.00087149
0.000867898
0.00100165
0.00102431
0.00116256
0.0012619
0.00136347
0.00144762
0.00149145
0.0015033
0.0014797
0.00141827
0.00133679
0.00127305
0.00117349
0.00108298
0.00100675
0.000925461
0.000921614
0.000877755
0.000933753
0.000938878
0.00105394
0.00108547
0.00120838
0.00130032
0.00139276
0.0014681
0.00150884
0.0015192
0.00149737
0.00143775
0.00136364
0.00130342
0.00120848
0.00112777
0.00105667
0.000979378
0.000980024
0.000939337
0.000987051
0.000999807
0.00109947
0.00113762
0.00124805
0.00133372
0.00141838
0.00148649
0.00152469
0.00153254
0.00151356
0.00145625
0.00138673
0.00132587
0.00123388
0.00116215
0.0010952
0.00102021
0.0010272
0.000987627
0.00102773
0.00104771
0.00113289
0.0011778
0.00127622
0.00135732
0.00143526
0.00149727
0.00153442
0.00153966
0.00152302
0.00146716
0.0014016
0.00134587
0.0012575
0.00119377
0.00112935
0.00105711
0.0010691
0.00103017
0.00106285
0.00109072
0.00116266
0.00121424
0.00130171
0.00138053
0.00145157
0.00150914
0.00154386
0.00154864
0.00153436
0.00147867
0.00141793
0.00135748
0.00126944
0.0012139
0.00115182
0.00107903
0.00109975
0.00105906
0.001085
0.00111949
0.00117991
0.00123672
0.00131529
0.00139112
0.00145754
0.00151097
0.00154527
0.00154834
0.00153608
0.00148006
0.00142264
0.00137098
0.00128316
0.00123452
0.00117455
0.00110069
0.0011289
0.00108687
0.00110577
0.00114849
0.00119741
0.00126103
0.00133028
0.00140647
0.00146661
0.00151777
0.00155196
0.00155346
0.00154397
0.00148774
0.00143246
0.00137257
0.00128151
0.00124275
0.00118439
0.00110584
0.00114768
0.00110074
0.00110985
0.00116334
0.00119868
0.00127026
0.00132966
0.00140666
0.00146196
0.0015104
0.00154496
0.00154485
0.00153848
0.00148052
0.00142801
0.00137994
0.00128825
0.0012522
0.00119519
0.00111579
0.00116508
0.00111403
0.00111949
0.00117923
0.00120676
0.00128342
0.00133694
0.00141483
0.00146638
0.00151379
0.00154859
0.00154806
0.00154322
0.00148357
0.00143343
0.00137464
0.00127354
0.001252
0.00119537
0.00110332
0.00117946
0.00111768
0.00110564
0.00118605
0.00119248
0.00128415
0.00132304
0.0014074
0.00145138
0.00149608
0.00153541
0.00153196
0.00153239
0.00146841
0.0014196
-0.0227848
-0.0232097
-0.0236171
-0.0239776
-0.0242599
-0.0244564
-0.0244901
-0.0244182
-0.0243508
-0.0242048
-0.0235586
-0.0234888
-0.0227545
-0.0221634
-0.021558
-0.0212794
-0.0212954
-0.0215242
-0.0218931
-0.0223406
-0.00600417
-0.00683568
-0.00749387
-0.00791334
-0.00799863
-0.00779146
-0.00727398
-0.00614111
-0.00570634
-0.00401963
-0.00359909
-0.00354566
-0.0028914
-0.00262133
-0.00260511
-0.00266767
-0.00288584
-0.00339996
-0.0041611
-0.0050688
-0.00943839
-0.0104482
-0.0113158
-0.0119206
-0.0122401
-0.0120873
-0.0119598
-0.0102415
-0.010993
-0.00767291
-0.00893001
-0.00770324
-0.00787826
-0.00622196
-0.0057684
-0.00563066
-0.00583668
-0.00646518
-0.00733701
-0.00836025
-0.00484248
-0.00601894
-0.00709972
-0.00784095
-0.00839266
-0.00815741
-0.00844344
-0.00584436
-0.0078475
-0.0026505
-0.00566728
-0.00276374
-0.0025978
-0.000791277
-0.000330649
-0.000354865
-0.000676723
-0.00144847
-0.00244435
-0.00360346
-0.0060618
-0.00738278
-0.00865874
-0.00954529
-0.0103875
-0.0101231
-0.0109374
-0.00759346
-0.010668
-0.00417819
-0.00817553
-0.00431188
-0.00344597
-0.00169635
-0.00095426
-0.00108104
-0.00143409
-0.00230995
-0.00340179
-0.00467953
-0.00484452
-0.0062155
-0.00761253
-0.00858548
-0.00969192
-0.00940537
-0.0107628
-0.00698854
-0.0109008
-0.00384528
-0.00812383
-0.00381119
-0.0020714
-0.000706987
0.000248584
5.99832e-05
-0.00023211
-0.00109867
-0.00216387
-0.00343936
-0.00484367
-0.00623861
-0.00771278
-0.00874729
-0.0100482
-0.009807
-0.011426
-0.00768779
-0.0115412
-0.00497074
-0.00876631
-0.00440841
-0.00195254
-0.00087452
0.000244398
7.77172e-06
-0.000241974
-0.00110638
-0.00215202
-0.00342521
-0.00428642
-0.00564265
-0.00712169
-0.00816209
-0.00957236
-0.00937344
-0.0111846
-0.00759811
-0.0114659
-0.00528687
-0.00843573
-0.00464646
-0.00125955
-0.000806354
0.00053723
0.000240104
6.81286e-05
-0.000742183
-0.00171444
-0.00292319
-0.003894
-0.0051883
-0.00662889
-0.00765786
-0.00909268
-0.00897501
-0.0107685
-0.00748937
-0.0109341
-0.00531008
-0.00809731
-0.00505087
-0.000844729
-0.00094635
0.000600184
0.000263561
0.000165657
-0.000580685
-0.00147331
-0.00260492
-0.00339663
-0.00460087
-0.00595903
-0.00694097
-0.00832129
-0.00829259
-0.00990975
-0.00729362
-0.00974931
-0.00608597
-0.00629017
-0.00497573
-0.000128194
-0.000928535
0.00073656
0.000339025
0.000304913
-0.000369147
-0.00117105
-0.00220678
-0.00292176
-0.00402608
-0.00528142
-0.00620547
-0.00748624
-0.00753883
-0.00889526
-0.0067237
-0.00837474
-0.0049958
-0.00495933
-0.00539684
0.00022946
-0.00108833
0.000745918
0.0003509
0.000391395
-0.000198196
-0.000905286
-0.00183928
-0.00244663
-0.00344438
-0.0045819
-0.00543245
-0.00658233
-0.00671716
-0.00778231
-0.00636204
-0.0069363
-0.00589569
-0.00250262
-0.00481425
0.000989862
-0.000948745
0.00085331
0.000421985
0.000496502
-2.01783e-05
-0.000640519
-0.00147406
-0.00199826
-0.00289073
-0.00390854
-0.00467916
-0.0056897
-0.00585094
-0.00660651
-0.00549015
-0.00508718
-0.00404568
-0.000841099
-0.00566263
0.000984572
-0.00112548
0.000784827
0.000434743
0.000567802
0.000136461
-0.000397623
-0.00113298
-0.00157914
-0.0023713
-0.00327313
-0.00396395
-0.00484962
-0.00504938
-0.00566844
-0.00506908
-0.00453593
-0.00499471
0.000499585
-0.00379097
0.00153634
-0.000733084
0.00088565
0.000537223
0.000665982
0.000296133
-0.000167139
-0.000813775
-0.00119596
-0.00189445
-0.00268717
-0.00329585
-0.00405565
-0.00421626
-0.00460832
-0.00396655
-0.00266014
-0.00242012
0.00118648
-0.00562066
0.000896996
-0.000921821
0.000744039
0.00056356
0.000730611
0.000435752
4.13975e-05
-0.000522756
-0.000849126
-0.00146316
-0.00215801
-0.00269425
-0.0033654
-0.00352119
-0.00401908
-0.00349232
-0.00358848
-0.00267827
-0.000109385
-0.00243053
0.000834789
-0.000321339
0.000831876
0.000692839
0.000826303
0.000577089
0.000235309
-0.00025775
-0.000538521
-0.00107681
-0.00168312
-0.00214885
-0.00272344
-0.00282763
-0.00320033
-0.00254281
-0.00228332
-0.00107958
-0.000598216
-0.00298209
0.000126666
-0.00033113
0.000745832
0.000751916
0.000896594
0.000700752
0.000408585
-2.04014e-05
-0.000262325
-0.000734038
-0.0012631
-0.00166965
-0.00217045
-0.00226954
-0.00265495
-0.00217926
-0.00240213
-0.00156316
-0.000625588
-0.00123655
0.0004018
9.54256e-05
0.000853604
0.000871042
0.000985674
0.000820881
0.000566626
0.000191979
-1.82604e-05
-0.000431738
-0.000892804
-0.0012456
-0.00167515
-0.00174878
-0.00206919
-0.00156964
-0.00175112
-0.000637283
-0.000897942
-0.00117202
0.00015557
0.000210564
0.000872511
0.000951056
0.00105996
0.000927002
0.000707089
0.000379852
0.000196368
-0.000166657
-0.000568854
-0.000875801
-0.00124663
-0.00131066
-0.00159916
-0.00119182
-0.00144623
-0.000581924
-0.000620702
-0.000481657
0.000358083
0.000460559
0.000965416
0.00104828
0.0011377
0.00102559
0.000832957
0.00054617
0.000384495
6.50912e-05
-0.000286045
-0.000553316
-0.000872135
-0.000925394
-0.00116927
-0.000815199
-0.00103983
-0.000266188
-0.000521606
-0.000230204
0.000404547
0.000606131
0.00103101
0.00112821
0.00120652
0.00111285
0.00094404
0.000692007
0.000548369
0.000267045
-4.03602e-05
-0.000273632
-0.000548402
-0.000594031
-0.000801477
-0.000500168
-0.000702544
-2.97864e-05
-0.000243318
0.000101018
0.000558406
0.000768492
0.00111153
0.00120635
0.00127165
0.0011916
0.00104214
0.000820308
0.000691633
0.000442548
0.000172879
-3.1415e-05
-0.000268875
-0.000308447
-0.000482542
-0.000230228
-0.000398386
0.00014659
-4.68077e-05
0.000316993
0.000674361
0.000895242
0.00118254
0.00127446
0.00132965
0.00126088
0.0011283
0.00093178
0.000815575
0.00059462
0.000357223
0.000177645
-2.76071e-05
-6.20883e-05
-0.00020763
5.94491e-06
-0.000128085
0.000338254
0.000185867
0.000522457
0.000802716
0.00101139
0.00125054
0.00133604
0.00138215
0.00132221
0.00120351
0.00102914
0.000923314
0.00072621
0.000516709
0.000358212
0.000179519
0.000149669
2.77955e-05
0.000207073
0.000102898
0.000485536
0.00037195
0.000682884
0.000913491
0.00110892
0.00131088
0.00139029
0.00142835
0.00137561
0.00126903
0.00111331
0.00101595
0.0008398
0.000653987
0.000513215
0.000357326
0.000331541
0.000229712
0.000381603
0.00030403
0.000625673
0.000548099
0.000823225
0.0010154
0.00119393
0.00136517
0.0014376
0.00146912
0.00142217
0.00132547
0.00118619
0.00109568
0.000937412
0.000772382
0.000646761
0.000509918
0.000487276
0.000402289
0.000530493
0.000474419
0.000743839
0.00069553
0.000939881
0.00110414
0.00126579
0.00141277
0.00147824
0.00150426
0.00146237
0.00137414
0.00124909
0.00116461
0.00102067
0.000873756
0.000760955
0.000639642
0.000620588
0.000548774
0.000658719
0.000620381
0.000848125
0.000823628
0.00103845
0.00118075
0.00132727
0.00145384
0.00151338
0.00153411
0.00149667
0.00141565
0.00130235
0.00122302
0.00109239
0.0009609
0.000858466
0.0007506
0.000735237
0.000673708
0.000767685
0.000744168
0.000937291
0.000932163
0.00112077
0.00124681
0.00137899
0.00148873
0.00154283
0.00156007
0.00152611
0.00145055
0.00134819
0.00127205
0.00115232
0.00103467
0.000941323
0.000844531
0.000831564
0.000779075
0.000859702
0.000847881
0.00101376
0.00102275
0.00118994
0.00130252
0.00142137
0.00151833
0.00156689
0.0015809
0.00155028
0.00147957
0.00138672
0.00131478
0.0012028
0.00109788
0.00101281
0.000923313
0.000914682
0.000868363
0.000938258
0.000936402
0.0010787
0.00109954
0.00124746
0.00134914
0.0014576
0.00154309
0.00158782
0.00159807
0.00157102
0.0015049
0.00141869
0.00134836
0.00124484
0.00115
0.0010705
0.000988922
0.000983977
0.000942223
0.00100227
0.00100892
0.00113164
0.00116209
0.00129338
0.00138705
0.00148541
0.00156168
0.00160276
0.0016118
0.00158659
0.00152276
0.00144462
0.00137806
0.00127988
0.00119515
0.0011212
0.00104405
0.00104358
0.00100496
0.00105671
0.00107062
0.00117748
0.00121478
0.00133284
0.00141958
0.00150954
0.00157823
0.00161631
0.00162311
0.00160076
0.00153965
0.00146674
0.00139989
0.00130533
0.00122975
0.00116025
0.00108581
0.00109155
0.001054
0.00109827
0.0011189
0.00121112
0.0012551
0.00136078
0.00144229
0.0015252
0.0015875
0.00162409
0.00162862
0.00160855
0.00154922
0.00148083
0.00141913
0.00132882
0.00126136
0.00119458
0.00112331
0.00113385
0.00109691
0.00113393
0.00116184
0.00124092
0.00129123
0.00138588
0.00146441
0.00154032
0.0015979
0.00163167
0.0016361
0.00161827
0.00155938
0.00149636
0.00143006
0.00134073
0.00128149
0.00121702
0.00114572
0.00116458
0.00112586
0.00115654
0.00119029
0.00125823
0.0013132
0.0013992
0.00147398
0.00154544
0.00159863
0.00163155
0.00163471
0.00161871
0.00155966
0.00150051
0.0014429
0.00135434
0.00130226
0.00123965
0.00116772
0.00119372
0.00115373
0.00117764
0.0012189
0.00127575
0.00133692
0.00141394
0.00148835
0.00155376
0.00160441
0.00163686
0.00163888
0.00162546
0.00156632
0.00150981
0.00144372
0.00135271
0.00131084
0.00124898
0.00117317
0.00121196
0.00116711
0.00118202
0.00123285
0.0012771
0.00134513
0.0014132
0.00148737
0.00154866
0.00159636
0.00162856
0.0016297
0.00161904
0.00155809
0.00150506
0.0014507
0.00135949
0.00132151
0.00125959
0.00118337
0.00122927
0.00118048
0.00119192
0.00124842
0.00128531
0.00135786
0.00142047
0.00149492
0.00155284
0.0015992
0.00163141
0.00163255
0.00162342
0.00156055
0.0015103
0.00144439
0.0013451
0.00132402
0.0012589
0.00117137
0.0012424
0.00118317
0.00117857
0.00125366
0.0012714
0.00135697
0.00140682
0.00148596
0.00153795
0.00158121
0.00161685
0.00161647
0.00161228
0.00154433
0.00149653
-0.0243804
-0.0252111
-0.0259181
-0.026402
-0.0266151
-0.0265266
-0.0259811
-0.0251726
-0.0241772
-0.0229762
-0.0209982
-0.0208187
-0.0196292
-0.0196396
-0.0195553
-0.0198951
-0.0205901
-0.0214854
-0.0224695
-0.0234621
-0.00812111
-0.00939755
-0.0103949
-0.0109962
-0.0110514
-0.0106205
-0.00944518
-0.0074768
-0.00604229
-0.00266826
-0.00113806
-0.000687242
-0.000616189
-0.000804502
-0.00121301
-0.00181675
-0.00263298
-0.00377814
-0.00516371
-0.00665837
-0.0113036
-0.0128327
-0.0141383
-0.0150551
-0.0154762
-0.015254
-0.0145358
-0.0119947
-0.0119049
-0.00602088
-0.00670017
-0.00434936
-0.00568252
-0.00406191
-0.00404071
-0.00451836
-0.00531118
-0.00654708
-0.0080307
-0.00965245
-0.00692527
-0.00864926
-0.0102233
-0.0113589
-0.0121231
-0.0119756
-0.0117825
-0.00841553
-0.00993347
-0.00144997
-0.00436191
9.12069e-06
-0.000904547
0.000735337
0.000869951
0.000319167
-0.000502412
-0.00181645
-0.0033789
-0.00511317
-0.00773673
-0.00960918
-0.0114128
-0.012766
-0.0139155
-0.0138812
-0.0143487
-0.0102195
-0.0131145
-0.00279628
-0.00661521
-0.00159216
-0.00144502
-7.0303e-05
0.000401751
-0.000213607
-0.00101601
-0.00237976
-0.00398825
-0.00580265
-0.00643244
-0.00833202
-0.0102482
-0.0117109
-0.0131745
-0.0132061
-0.0143879
-0.00984992
-0.0139041
-0.00296414
-0.00683578
-0.00192382
-0.000396419
0.00056753
0.00132305
0.000735875
6.74651e-05
-0.00122319
-0.00274948
-0.0045139
-0.00609591
-0.00797495
-0.0099387
-0.0114592
-0.0131484
-0.0132734
-0.0148638
-0.0104618
-0.0145041
-0.00444007
-0.00760339
-0.00304166
-0.000484217
0.00027462
0.00122987
0.000685655
0.000132085
-0.00108513
-0.00252383
-0.0042219
-0.00533621
-0.00712401
-0.00904579
-0.0105404
-0.0123354
-0.0125057
-0.0143937
-0.0102341
-0.0144175
-0.00490695
-0.00738204
-0.00379255
-3.23037e-05
0.000110482
0.00133911
0.000822642
0.00040551
-0.00069395
-0.00199966
-0.00357457
-0.00470522
-0.00637257
-0.00820117
-0.00963942
-0.0114374
-0.0116722
-0.0136114
-0.00983972
-0.0136594
-0.00495233
-0.00704482
-0.00461554
0.000183351
-0.000200215
0.00127104
0.000795411
0.000502076
-0.000472598
-0.00164018
-0.00307815
-0.00402529
-0.00554582
-0.00723531
-0.00857227
-0.0102786
-0.0105579
-0.012352
-0.00933117
-0.0121065
-0.00597651
-0.00509158
-0.00486943
0.000670111
-0.000367586
0.00126073
0.000797594
0.000612612
-0.000236609
-0.00126279
-0.00255222
-0.00338864
-0.00475612
-0.0062884
-0.00751277
-0.00907771
-0.00939671
-0.0109289
-0.0084544
-0.0103219
-0.00483054
-0.00375933
-0.00564648
0.000837549
-0.000670631
0.00115462
0.000752364
0.000677153
-4.37378e-05
-0.000931694
-0.00207264
-0.00278534
-0.00399925
-0.00536417
-0.00646207
-0.00785014
-0.00819954
-0.00941833
-0.00777457
-0.00844222
-0.00597219
-0.00108813
-0.00532574
0.00143026
-0.000671053
0.00115157
0.000763467
0.000754056
0.000143036
-0.000621299
-0.001622
-0.00223329
-0.00330137
-0.00450351
-0.00547485
-0.00668196
-0.00701699
-0.00790408
-0.00665726
-0.00615471
-0.00421671
0.00056584
-0.00643305
0.00130624
-0.000921541
0.00101903
0.000737288
0.000805953
0.000305937
-0.000343223
-0.00121328
-0.0017334
-0.00266701
-0.00371627
-0.00456699
-0.0056088
-0.00594068
-0.00665524
-0.00599135
-0.005303
-0.00539549
0.0018913
-0.00453938
0.0017581
-0.000617372
0.0010552
0.000795026
0.000881778
0.000465028
-8.89183e-05
-0.000843338
-0.00128748
-0.00209947
-0.00300937
-0.00374494
-0.00462837
-0.00489081
-0.00536096
-0.00466805
-0.00308776
-0.00267578
0.00216412
-0.00654414
0.000966206
-0.000819014
0.000892353
0.000799506
0.000934218
0.000604382
0.000137159
-0.000513674
-0.000892598
-0.00159744
-0.00238471
-0.00302047
-0.00378611
-0.00401789
-0.00458829
-0.0039979
-0.00420163
-0.00281694
5.66243e-05
-0.00266176
0.000827272
-0.000222657
0.000957457
0.000900488
0.001015
0.000741434
0.000342015
-0.000220543
-0.000545522
-0.0011567
-0.00183585
-0.0023797
-0.00302733
-0.00318814
-0.00362757
-0.00288127
-0.00271568
-0.000953304
-0.000819384
-0.00326154
2.91481e-05
-0.000218933
0.000873321
0.000948025
0.00107734
0.000861669
0.000522793
3.75077e-05
-0.000242095
-0.00077226
-0.00135848
-0.00182583
-0.00238071
-0.00252029
-0.00295064
-0.00241154
-0.00273061
-0.00156288
-0.000803744
-0.00136678
0.000319419
0.000188119
0.000970116
0.00104898
0.00115554
0.000976174
0.000684539
0.000264465
2.2014e-05
-0.000438379
-0.000944437
-0.00134488
-0.00181518
-0.00192078
-0.00227737
-0.00173501
-0.0020149
-0.0006049
-0.0011483
-0.00120471
0.000120147
0.000322874
0.000998954
0.00112173
0.00122313
0.00107752
0.000826784
0.000462518
0.000251211
-0.000149634
-0.000587126
-0.000931205
-0.0013319
-0.00141871
-0.00172959
-0.00128292
-0.00160369
-0.00051281
-0.000808942
-0.00050675
0.000334069
0.00056224
0.00108765
0.00120773
0.00129246
0.00117022
0.000952473
0.000635432
0.000449837
9.98577e-05
-0.000279282
-0.000575649
-0.000916391
-0.000987115
-0.00124631
-0.000868436
-0.00114283
-0.000230828
-0.000648913
-0.000202166
0.00042567
0.000717603
0.0011573
0.00128094
0.0013548
0.00125211
0.00106238
0.000785422
0.000621052
0.000314953
-1.47664e-05
-0.000270919
-0.000561524
-0.000620274
-0.000836173
-0.000515837
-0.000748332
3.11008e-05
-0.000316825
0.000139023
0.000597573
0.000878582
0.00123621
0.00135152
0.00141312
0.00132525
0.00115848
0.000915994
0.000769242
0.000499916
0.000212381
-9.95686e-06
-0.000258748
-0.000307967
-0.000486385
-0.000220637
-0.000407592
0.00020659
-7.32794e-05
0.000375774
0.000736231
0.00100801
0.001306
0.00141343
0.00146514
0.00138924
0.00124209
0.00102839
0.00089636
0.000658825
0.000407101
0.000213222
-2.90936e-07
-4.20259e-05
-0.000188766
3.50113e-05
-0.000109118
0.000404803
0.000193177
0.00059106
0.000876643
0.00112374
0.00137187
0.001469
0.00151169
0.00144551
0.00131448
0.00112572
0.00100593
0.000795171
0.000574046
0.000404089
0.000219546
0.000184446
6.3225e-05
0.000250566
0.000141643
0.000558131
0.000406278
0.000761056
0.000997387
0.00122105
0.00142995
0.00151763
0.00155248
0.00149411
0.00137701
0.0012092
0.0010995
0.000912081
0.00071674
0.000566734
0.000406719
0.000377081
0.000276968
0.000435286
0.000356595
0.000701792
0.000599937
0.000906716
0.00110499
0.00130459
0.00148129
0.00155966
0.00158818
0.00153614
0.00143039
0.00128087
0.0011794
0.00101178
0.000838878
0.000705751
0.000566002
0.000540616
0.000458067
0.000591609
0.000536672
0.000823401
0.000760402
0.00102758
0.00119728
0.00137469
0.00152582
0.00159546
0.00161868
0.00157213
0.00147611
0.00134235
0.00124806
0.00109631
0.000942827
0.000823948
0.000700615
0.000679518
0.000610476
0.000725113
0.000688877
0.000929694
0.00089651
0.00112844
0.00127537
0.00143405
0.00156372
0.00162612
0.00164429
0.00160256
0.00151475
0.00139404
0.00130583
0.00116869
0.0010316
0.000924133
0.000814988
0.000798106
0.000739425
0.000837664
0.000816889
0.00102031
0.00101031
0.00121196
0.00134194
0.00148353
0.00159552
0.00165146
0.00166636
0.00162842
0.0015469
0.00143822
0.00135404
0.00122887
0.00110637
0.00100885
0.000911353
0.000897188
0.000847564
0.000932178
0.000923095
0.00109747
0.00110396
0.00128148
0.00139727
0.00152361
0.00162216
0.00167181
0.00168374
0.00164937
0.0015734
0.00147514
0.00139577
0.00127926
0.00117006
0.00108146
0.000991716
0.000982071
0.000938503
0.00101225
0.00101298
0.00116268
0.00118231
0.00133877
0.00144293
0.00155755
0.00164414
0.00168933
0.00169776
0.00166713
0.00159633
0.0015055
0.00142835
0.0013211
0.00122237
0.00113984
0.00105842
0.00105253
0.00101342
0.00107725
0.00108614
0.00121561
0.00124549
0.0013842
0.00147964
0.00158327
0.00166025
0.0017013
0.00170879
0.00168011
0.00161208
0.00153
0.00145693
0.00135573
0.0012674
0.00119079
0.00111415
0.00111272
0.0010766
0.0011322
0.00114784
0.00126115
0.00129805
0.0014229
0.00151072
0.00160539
0.00167446
0.00171208
0.00171764
0.00169186
0.00162695
0.00155071
0.00147778
0.00138085
0.00130183
0.0012299
0.00115635
0.00116096
0.00112581
0.0011741
0.00119584
0.00129451
0.00133792
0.00145013
0.00153205
0.0016194
0.0016818
0.00171754
0.00172116
0.00169764
0.00163482
0.00156368
0.00149595
0.00140387
0.00133312
0.00126403
0.00119402
0.00120321
0.00116859
0.00120985
0.00123818
0.00132389
0.00137324
0.00147444
0.00155267
0.00163297
0.00169038
0.00172295
0.00172683
0.00170547
0.00164334
0.00157811
0.00150597
0.0014155
0.001353
0.00128613
0.00121659
0.00123367
0.00119721
0.00123254
0.00126588
0.00134092
0.00139429
0.00148718
0.0015609
0.00163693
0.00168976
0.00172107
0.00172413
0.0017044
0.0016423
0.00158148
0.00151794
0.00142879
0.00137368
0.00130845
0.00123866
0.00126252
0.00122479
0.00125368
0.00129374
0.00135817
0.00141708
0.00150139
0.001574
0.00164428
0.00169429
0.00172478
0.00172716
0.00170984
0.00164776
0.00159006
0.00151784
0.00142704
0.00138226
0.0013171
0.00124423
0.00127999
0.00123744
0.00125814
0.00130654
0.0013594
0.00142405
0.00150033
0.00157167
0.00163855
0.00168542
0.00171507
0.00171726
0.00170232
0.0016384
0.00158487
0.00152432
0.00143377
0.00139361
0.00132749
0.00125453
0.00129706
0.0012507
0.00126816
0.00132159
0.0013676
0.00143616
0.00150745
0.00157845
0.00164236
0.00168762
0.00171701
0.00171965
0.00170615
0.00164022
0.00158983
0.00151691
0.00141958
0.00139681
0.00132588
0.0012429
0.00130879
0.00125226
0.00125522
0.00132509
0.00135395
0.00143351
0.00149396
0.00156786
0.0016275
0.0016693
0.00170102
0.00170349
0.00169416
0.00162289
0.00157603
-0.0269201
-0.0284267
-0.0296447
-0.0304203
-0.0306543
-0.0301865
-0.0287447
-0.0266946
-0.0237835
-0.0198035
-0.0147359
-0.0144187
-0.0131031
-0.0150182
-0.0162575
-0.0177446
-0.0195298
-0.0214301
-0.0233495
-0.0252109
-0.0112021
-0.0132002
-0.0147982
-0.0157975
-0.0159753
-0.0153405
-0.0132812
-0.0101177
-0.0066345
0.00048758
0.00473856
0.00588855
0.0038643
0.00239779
0.00111828
-0.000406271
-0.00216893
-0.00425872
-0.00656139
-0.00892946
-0.0139751
-0.0163024
-0.0183282
-0.0198149
-0.0205607
-0.0203873
-0.0189667
-0.0154792
-0.0135717
-0.00289701
-0.00193683
0.00221405
-0.00181816
-0.000834595
-0.00148877
-0.00288134
-0.0045449
-0.00664945
-0.009002
-0.0114828
-0.00967678
-0.0121994
-0.014536
-0.0163294
-0.0175742
-0.017708
-0.0170095
-0.0130026
-0.0132669
0.000893907
-0.00128308
0.00524207
0.00224426
0.00311936
0.0027437
0.00143092
-0.000121905
-0.00219121
-0.00453246
-0.0070598
-0.00989909
-0.0125412
-0.0151174
-0.0171902
-0.0189301
-0.0193748
-0.0195136
-0.0148805
-0.0170642
-0.000210633
-0.0030876
0.00318188
0.00189977
0.00229381
0.00231832
0.00103278
-0.000397757
-0.00241013
-0.00469848
-0.0072221
-0.00835691
-0.0109665
-0.0136131
-0.0157939
-0.0178809
-0.0184988
-0.0195498
-0.0145945
-0.0185958
-0.00116198
-0.00353797
0.00147548
0.00232206
0.00246246
0.00286201
0.00173579
0.0005597
-0.00127291
-0.00338414
-0.00577165
-0.0075697
-0.0100781
-0.0127053
-0.014908
-0.0172221
-0.0179724
-0.0196034
-0.0148758
-0.0191014
-0.00348772
-0.00494622
-0.000786063
0.00164147
0.00190107
0.00257243
0.00161948
0.000676043
-0.000975326
-0.00289752
-0.00512125
-0.00650938
-0.00884125
-0.0113439
-0.0134554
-0.0158361
-0.0166088
-0.0186479
-0.0142405
-0.0188449
-0.00424516
-0.00513891
-0.0024619
0.00161676
0.00140026
0.00241624
0.00161797
0.000901923
-0.000541625
-0.00224504
-0.00425993
-0.0055784
-0.00770307
-0.0100251
-0.0120021
-0.0143266
-0.0151149
-0.017273
-0.0132947
-0.0176511
-0.00428846
-0.00497545
-0.0039755
0.00147103
0.000834201
0.00214502
0.00149924
0.000977562
-0.000262549
-0.00175018
-0.00354766
-0.00466992
-0.00656775
-0.00866616
-0.010458
-0.0126179
-0.0133694
-0.0154116
-0.0122105
-0.0154693
-0.00555567
-0.00293978
-0.00470708
0.00158742
0.000406594
0.00193016
0.00139614
0.00104278
-5.71333e-06
-0.00128697
-0.00286709
-0.0038449
-0.00551811
-0.00738253
-0.00898119
-0.0109268
-0.0116411
-0.013415
-0.0108149
-0.0130124
-0.00426935
-0.00171822
-0.00599085
0.00145464
-9.75774e-05
0.0016587
0.00126379
0.00106673
0.000199493
-0.000889695
-0.0022631
-0.00309704
-0.00455582
-0.00618592
-0.0075841
-0.00928101
-0.00994137
-0.011373
-0.00962631
-0.0104576
-0.0056488
0.00110128
-0.00606918
0.00179834
-0.000280453
0.00150751
0.0011914
0.00109924
0.000384904
-0.000536392
-0.0017215
-0.00243352
-0.00369588
-0.00510689
-0.00631517
-0.00776844
-0.00834557
-0.00942035
-0.00812853
-0.00753022
-0.00409588
0.0026774
-0.0075261
0.00152744
-0.000629757
0.00128658
0.00110812
0.00111721
0.00054357
-0.000228815
-0.00124488
-0.00184977
-0.00293655
-0.00414846
-0.00518287
-0.00641391
-0.00692274
-0.00777619
-0.00710684
-0.006208
-0.00564256
0.00391314
-0.00567372
0.00186041
-0.000448134
0.00124155
0.00110764
0.00115886
0.000692662
4.31841e-05
-0.000826289
-0.0013412
-0.00227373
-0.00330965
-0.00418701
-0.00521501
-0.00560921
-0.00619145
-0.00548538
-0.00355776
-0.00284705
0.00352746
-0.00783382
0.000910553
-0.000674685
0.00105624
0.00108087
0.00118951
0.0008232
0.000280205
-0.000461757
-0.000900244
-0.00169979
-0.00258418
-0.00332848
-0.00420029
-0.00452867
-0.00519047
-0.00456591
-0.00493575
-0.00288097
0.000205034
-0.00297692
0.000711078
-0.000102699
0.00110091
0.0011465
0.00124782
0.000948823
0.000489977
-0.00014472
-0.000519742
-0.00120555
-0.00195943
-0.00258649
-0.00331308
-0.00354464
-0.00406345
-0.00324119
-0.00324404
-0.000718203
-0.00124533
-0.00356695
-0.000160922
-8.56473e-05
0.00102353
0.00117737
0.00129557
0.00105926
0.000672635
0.000129515
-0.000192341
-0.000781493
-0.00142519
-0.0019557
-0.00256694
-0.00275549
-0.00323503
-0.00264285
-0.00309414
-0.00151496
-0.00110399
-0.00152652
0.00016965
0.00029297
0.00110889
0.0012562
0.00135767
0.00116288
0.000833132
0.000366708
8.85462e-05
-0.000418725
-0.000969107
-0.0014178
-0.00192893
-0.00207183
-0.00246457
-0.00189591
-0.0022959
-0.000552348
-0.00148658
-0.00122616
6.12089e-05
0.000448972
0.00114759
0.00131809
0.00141367
0.00125463
0.000972785
0.000571094
0.00032911
-0.000108888
-0.000580714
-0.000961698
-0.00139108
-0.00150393
-0.0018353
-0.00136098
-0.00175389
-0.000407982
-0.00106645
-0.000529968
0.000302975
0.000678628
0.00123165
0.00139019
0.00147095
0.00133771
0.00109457
0.000747233
0.000535267
0.00015567
-0.000250286
-0.000575075
-0.000935927
-0.00102574
-0.00129713
-0.00090401
-0.00122656
-0.000175687
-0.000808477
-0.000169664
0.00045076
0.000843244
0.00130298
0.00145371
0.00152334
0.00141091
0.00120012
0.000898328
0.000711294
0.000381261
3.05574e-05
-0.000247534
-0.000552226
-0.000624865
-0.000845948
-0.000513278
-0.000772037
0.000107648
-0.000401541
0.000185134
0.00064792
0.00100381
0.00137869
0.0015143
0.00157195
0.00147562
0.00129145
0.00102848
0.000862099
0.00057342
0.000269359
2.99336e-05
-0.000228482
-0.000287378
-0.00046731
-0.000192335
-0.000393457
0.000283135
-9.76358e-05
0.000443475
0.000811107
0.0011349
0.00144576
0.00156777
0.00161545
0.00153196
0.00137018
0.00113952
0.000990384
0.000737193
0.000472266
0.000264984
4.48707e-05
-3.74855e-06
-0.000149337
8.15589e-05
-6.8538e-05
0.000485331
0.000209336
0.000670131
0.000964631
0.00124954
0.00150768
0.0016152
0.00165404
0.00158111
0.00143772
0.00123483
0.00110004
0.00087647
0.000644724
0.000464233
0.000275234
0.000235271
0.00011692
0.000310217
0.000200037
0.000644315
0.000452731
0.000850163
0.00109478
0.00134545
0.00156153
0.00165646
0.00168763
0.00162319
0.00149561
0.00131595
0.00119308
0.000995084
0.000791185
0.00063273
0.000469837
0.000436751
0.000340274
0.000503545
0.000426458
0.000790565
0.00066481
0.00100127
0.00120707
0.00142632
0.00160829
0.00169169
0.00171676
0.00165923
0.00154447
0.00138501
0.00127186
0.00109549
0.000915593
0.000775692
0.000634116
0.000606336
0.000527779
0.000665818
0.000614146
0.000914472
0.000837908
0.00112553
0.00130153
0.00149348
0.00164841
0.00172131
0.00174132
0.00168979
0.00158603
0.00144385
0.00133915
0.00118014
0.00102083
0.000896514
0.000772088
0.000749313
0.000684295
0.000802963
0.000770658
0.00102171
0.0009811
0.00122788
0.00138001
0.00154957
0.00168192
0.00174638
0.0017616
0.00171534
0.0016208
0.0014929
0.00139534
0.00125217
0.00111014
0.000998211
0.000888574
0.000870494
0.00081567
0.00091767
0.000901081
0.00111267
0.00109895
0.0013117
0.00144589
0.00159575
0.00170955
0.00176665
0.00177887
0.00173675
0.00164934
0.00153453
0.00144194
0.00131176
0.001185
0.00108377
0.000986232
0.000971174
0.000925255
0.00101341
0.00100828
0.00118953
0.00119448
0.00138067
0.00149977
0.0016326
0.00173234
0.00178247
0.00179201
0.00175375
0.00167258
0.00156909
0.00148199
0.00136133
0.00124835
0.00115665
0.00106722
0.00105681
0.00101668
0.00109393
0.00109823
0.00125407
0.00127328
0.0014369
0.00154356
0.00166344
0.00175075
0.0017959
0.00180224
0.00176792
0.0016925
0.0015972
0.00151301
0.00140235
0.00130021
0.00121499
0.00113419
0.00112758
0.00109168
0.00115906
0.00117095
0.00130617
0.00133611
0.00148109
0.0015783
0.0016864
0.00176373
0.00180432
0.00181002
0.0017778
0.00170562
0.00161973
0.00154001
0.00143606
0.00134455
0.00126557
0.00118986
0.00118765
0.00115451
0.00121376
0.00123174
0.00135071
0.0013877
0.00151837
0.00160724
0.00170593
0.00177507
0.00181186
0.00181596
0.00178671
0.00171803
0.00163859
0.00155948
0.00146042
0.00137836
0.00130423
0.00123193
0.00123558
0.00120321
0.00125538
0.00127873
0.00138319
0.00142644
0.00154436
0.00162663
0.0017178
0.00178004
0.00181463
0.00181714
0.00179013
0.00172386
0.00165006
0.00157626
0.00148263
0.00140895
0.00133775
0.00126931
0.00127728
0.0012453
0.00129069
0.00131984
0.00141164
0.00146036
0.0015674
0.00164529
0.00172941
0.00178646
0.00181753
0.00182069
0.00179578
0.00173044
0.00166307
0.00158512
0.0014937
0.00142827
0.0013592
0.00129167
0.00130709
0.00127315
0.00131306
0.00134633
0.00142799
0.00148006
0.00157918
0.00165182
0.00173191
0.0017842
0.00181365
0.00181643
0.00179299
0.00172784
0.00166541
0.001596
0.00150645
0.00144856
0.00138092
0.00131352
0.00133531
0.00130009
0.00133389
0.00137305
0.00144465
0.00150154
0.00159256
0.00166335
0.00173802
0.00178727
0.00181557
0.00181812
0.00179691
0.00173191
0.00167308
0.00159485
0.00150441
0.00145675
0.00138873
0.00131898
0.00135179
0.00131172
0.00133821
0.00138442
0.00144552
0.00150701
0.00159097
0.00165947
0.00173148
0.00177743
0.00180431
0.00180735
0.00178813
0.00172132
0.0016673
0.0016007
0.00151096
0.00146831
0.0013988
0.00132925
0.00136843
0.00132468
0.00134818
0.00139875
0.00145355
0.00151829
0.0015978
0.00166533
0.00173479
0.00177887
0.00180525
0.00180917
0.00179122
0.00172239
0.00167187
0.00159212
0.00149688
0.0014712
0.00139614
0.00131787
0.00137863
0.00132493
0.00133552
0.00140035
0.00144006
0.00151375
0.00158435
0.00165301
0.00171987
0.00176018
0.00178779
0.00179285
0.00177811
0.00170393
0.00165797
-0.0310137
-0.0336577
-0.0358059
-0.0372124
-0.0376745
-0.0367835
-0.0341358
-0.0302293
-0.0237172
-0.0140714
-0.00391149
-0.00372675
-0.00217685
-0.00740455
-0.0111325
-0.0145556
-0.0180202
-0.0214716
-0.0248431
-0.0280539
-0.0157141
-0.0188426
-0.0214563
-0.0232341
-0.0238472
-0.0231236
-0.0199848
-0.0151734
-0.00788714
0.00584896
0.0144898
0.0183267
0.0123247
0.0080509
0.0049402
0.00180576
-0.00146303
-0.00496721
-0.00860267
-0.0122379
-0.0177873
-0.0212939
-0.0244534
-0.0269193
-0.0283662
-0.0284397
-0.0262025
-0.0214082
-0.0157135
0.00232096
0.0048133
0.0140994
0.00569494
0.00445066
0.00232199
-0.000579889
-0.00357579
-0.00690967
-0.0104515
-0.0141108
-0.0133037
-0.0169589
-0.0204369
-0.0232848
-0.0254193
-0.0260787
-0.0248404
-0.0200927
-0.0170731
0.00558172
0.0023158
0.0140192
0.00851338
0.00717189
0.00553871
0.00300085
0.000390833
-0.0026808
-0.00603133
-0.00959841
-0.012648
-0.0163428
-0.0200272
-0.0231889
-0.0259351
-0.0271449
-0.0269781
-0.0220644
-0.0217591
0.00532328
0.00135523
0.0103893
0.0077104
0.00592738
0.00488543
0.00261555
0.000353848
-0.00245941
-0.00558474
-0.00900148
-0.0106398
-0.0141899
-0.0178516
-0.0210788
-0.0241779
-0.0256774
-0.0266215
-0.0216584
-0.0244838
0.00337339
0.00167183
0.00659922
0.00666917
0.00526273
0.00489796
0.00302445
0.00121467
-0.0012548
-0.00406169
-0.00721016
-0.00924579
-0.0125621
-0.0160803
-0.0192422
-0.0225265
-0.0241884
-0.0258941
-0.0212495
-0.0249338
-0.000218308
0.00080166
0.00279912
0.00456815
0.00409783
0.00429152
0.00279526
0.001388
-0.000755511
-0.00323931
-0.00608957
-0.00776483
-0.0107727
-0.0140299
-0.0169817
-0.0202404
-0.0218769
-0.0241106
-0.019865
-0.0243964
-0.0014126
0.000226816
-0.000223588
0.00366685
0.00308938
0.00378526
0.00262635
0.00157267
-0.00025028
-0.00240558
-0.00493178
-0.0064659
-0.00914091
-0.0120823
-0.0147696
-0.0178549
-0.0194276
-0.0218599
-0.0180655
-0.0226542
-0.00164789
-0.000162628
-0.00274971
0.00300535
0.00219407
0.00324023
0.00238052
0.00161389
8.61397e-05
-0.0017588
-0.00396514
-0.0052851
-0.00762292
-0.0102172
-0.0125899
-0.0153821
-0.0167985
-0.019158
-0.016111
-0.0197078
-0.00355442
0.00156569
-0.00422202
0.00257849
0.00142818
0.00276243
0.00214136
0.00161738
0.000356043
-0.00120489
-0.00310867
-0.00425047
-0.00626996
-0.00852348
-0.0105843
-0.0130409
-0.014303
-0.0163972
-0.0139718
-0.016434
-0.00237527
0.00222583
-0.00632642
0.00196241
0.000648574
0.00227185
0.00189026
0.00157941
0.00055827
-0.000747978
-0.00237512
-0.00334875
-0.00507709
-0.00700773
-0.00876483
-0.0108611
-0.011946
-0.0136692
-0.0120675
-0.0131207
-0.00432765
0.00499585
-0.00706735
0.00190359
0.000228851
0.00193127
0.00170904
0.00154823
0.000726541
-0.000361562
-0.00174413
-0.00257257
-0.00404319
-0.00568337
-0.0071654
-0.00892373
-0.00982131
-0.0111608
-0.0100065
-0.0094218
-0.00355752
0.00649534
-0.0090548
0.00141113
-0.000250038
0.00159414
0.00154874
0.00151458
0.000865341
-3.60053e-05
-0.00120578
-0.00190792
-0.00315482
-0.00454004
-0.00577981
-0.00723605
-0.00797038
-0.0090232
-0.00845864
-0.00741145
-0.0059258
0.00762863
-0.00740717
0.00159101
-0.000230243
0.00144969
0.00147686
0.00150787
0.000991142
0.000242747
-0.000746205
-0.00134166
-0.0023976
-0.00356398
-0.00459473
-0.00578724
-0.00634369
-0.00708391
-0.00643165
-0.00415492
-0.00310151
0.00602818
-0.00970671
0.000533891
-0.000493812
0.00124164
0.00141041
0.00150471
0.00110109
0.000480578
-0.000354897
-0.000860425
-0.00175526
-0.00273753
-0.00359548
-0.00458255
-0.00502744
-0.00580101
-0.00521469
-0.00592807
-0.00292661
0.000520203
-0.00331073
0.000408436
2.57055e-05
0.00126895
0.00143466
0.00153104
0.00120572
0.000686436
-2.14354e-05
-0.000452411
-0.00121202
-0.00203937
-0.00275122
-0.00355943
-0.00387514
-0.00448421
-0.00363084
-0.00394438
-0.000324164
-0.00203158
-0.00378945
-0.00046047
5.90113e-05
0.0012044
0.00144413
0.00155618
0.00129825
0.000863231
0.000262133
-0.000106783
-0.00075327
-0.0014521
-0.00204528
-0.00271225
-0.00295663
-0.00348724
-0.00286652
-0.00348957
-0.00137234
-0.0016491
-0.00168737
-5.48879e-05
0.000404192
0.00127738
0.00149681
0.00159579
0.00138436
0.00101616
0.000503727
0.000185865
-0.000366323
-0.000958333
-0.00145377
-0.00200321
-0.00218665
-0.00261298
-0.00204402
-0.00257146
-0.000465753
-0.00195826
-0.00123081
-1.71777e-05
0.000586291
0.00132403
0.00154328
0.00163434
0.00146089
0.00114773
0.000709063
0.000433508
-3.96992e-05
-0.000543335
-0.000959281
-0.00141411
-0.00155451
-0.00190251
-0.00141791
-0.0018761
-0.000258075
-0.00141928
-0.000552559
0.000274882
0.000811439
0.00140222
0.00159837
0.0016752
0.00152977
0.00126109
0.000884018
0.000643403
0.000235985
-0.00019442
-0.000545479
-0.000923298
-0.0010323
-0.00131148
-0.000913602
-0.00127345
-9.73681e-05
-0.00101086
-0.000136998
0.000488571
0.000986093
0.00147207
0.00164851
0.00171341
0.00159025
0.00135839
0.00103242
0.000820807
0.000468596
9.90653e-05
-0.000199005
-0.000514764
-0.000600349
-0.000822444
-0.00048545
-0.000761004
0.000198476
-0.000495718
0.000238571
0.000716806
0.00114675
0.0015419
0.00169612
0.00174906
0.00164341
0.00144183
0.001159
0.000971477
0.000665019
0.000346256
9.14613e-05
-0.000173933
-0.000241658
-0.000419112
-0.00013956
-0.000346864
0.000377041
-0.000114036
0.000521405
0.000904953
0.0012788
0.00160368
0.00173831
0.00178123
0.00168947
0.00151307
0.00126602
0.00109854
0.000831046
0.000554582
0.000335345
0.000110916
5.63264e-05
-8.46625e-05
0.000150183
3.25697e-07
0.000581543
0.000240543
0.00076195
0.00107103
0.00139102
0.00165923
0.00177532
0.00180951
0.00172916
0.00157352
0.00135708
0.00120628
0.000971071
0.000730146
0.000540458
0.000348845
0.000304862
0.000192102
0.000389326
0.000283023
0.000745836
0.000516822
0.000952442
0.00120871
0.00148379
0.00170668
0.00180718
0.00183394
0.0017629
0.00162493
0.00143393
0.00129705
0.00108951
0.000878251
0.000712569
0.000548245
0.000512511
0.000421886
0.000588867
0.000517232
0.000893692
0.000746956
0.00110861
0.00132378
0.00156035
0.00174693
0.0018339
0.00185486
0.00179143
0.0016678
0.0014988
0.00137333
0.00118906
0.00100321
0.000857562
0.000715432
0.000685901
0.000612923
0.000754696
0.000709209
0.00101866
0.000930921
0.00123515
0.00141869
0.00162308
0.00178091
0.00185589
0.00187211
0.00181526
0.00170389
0.00155366
0.00143803
0.00127249
0.00110825
0.000979346
0.000854887
0.00083103
0.0007714
0.000893449
0.000867243
0.00112539
0.00107952
0.00133797
0.00149586
0.00167436
0.00180858
0.00187412
0.00188591
0.00183486
0.0017337
0.00159896
0.00149164
0.00134304
0.00119685
0.00108118
0.000971934
0.000953138
0.000903284
0.00100858
0.000997822
0.00121525
0.00119953
0.00142082
0.00155941
0.00171595
0.00183087
0.00188829
0.00189743
0.00185094
0.00175772
0.0016371
0.00153577
0.00140111
0.00127074
0.0011664
0.00106957
0.00105402
0.00101265
0.00110404
0.00110415
0.00129055
0.00129527
0.00148808
0.00161051
0.00174849
0.00184882
0.00189874
0.00190554
0.00186322
0.00177695
0.00166849
0.00157343
0.00144906
0.0013329
0.00123859
0.00115008
0.00113925
0.00110327
0.00118378
0.00119262
0.00135327
0.00137305
0.0015422
0.00165129
0.00177532
0.00186284
0.00190737
0.0019113
0.00187319
0.00179323
0.00169369
0.00160229
0.00148861
0.00138356
0.00129607
0.00121642
0.00120937
0.00117725
0.00124798
0.00126362
0.00140357
0.00143433
0.00158426
0.00168311
0.00179474
0.00187201
0.00191165
0.0019153
0.00187945
0.0018032
0.0017137
0.0016272
0.00152083
0.00142661
0.00134561
0.00127126
0.00126851
0.00123881
0.00130155
0.00132247
0.00144627
0.00148395
0.00161936
0.00170916
0.00181105
0.00187991
0.00191547
0.00191786
0.00188509
0.00181271
0.00173023
0.0016449
0.00154398
0.00145929
0.00138328
0.00131259
0.00131548
0.00128627
0.00134218
0.00136763
0.00147719
0.00152075
0.00164346
0.00172599
0.00182026
0.00188206
0.00191515
0.00191631
0.00188582
0.00181615
0.00173982
0.00165995
0.001565
0.00148875
0.00141572
0.00134916
0.0013561
0.00132706
0.00137647
0.00140686
0.00150416
0.00155261
0.00166472
0.00174218
0.0018295
0.00188593
0.00191523
0.00191744
0.00188898
0.00182049
0.0017511
0.00166738
0.00157522
0.00150716
0.00143617
0.00137091
0.00138483
0.00135367
0.00139808
0.00143162
0.00151939
0.00157046
0.00167513
0.00174662
0.00183021
0.00188175
0.00190911
0.00191138
0.00188426
0.00181613
0.00175216
0.00167696
0.00158719
0.00152669
0.00145702
0.00139222
0.00141207
0.00137957
0.00141824
0.00145677
0.0015351
0.00159023
0.00168734
0.00175627
0.0018348
0.00188313
0.00190902
0.00191152
0.00188645
0.0018186
0.00175871
0.0016746
0.00158468
0.00153415
0.00146378
0.00139734
0.00142731
0.00138992
0.00142213
0.00146643
0.00153536
0.00159393
0.00168497
0.00175064
0.00182726
0.00187217
0.0018961
0.00189975
0.00187627
0.00180667
0.00175219
0.00167971
0.00159094
0.00154554
0.00147339
0.00140743
0.00144335
0.00140236
0.00143189
0.00147981
0.00154305
0.00160417
0.00169135
0.00175541
0.00182994
0.00187275
0.00189592
0.00190089
0.00187845
0.0018069
0.00175626
0.00166988
0.00157686
0.00154759
0.00146954
0.00139618
0.00145188
0.00140113
0.00141939
0.00147937
0.0015296
0.0015976
0.00167783
0.00174128
0.00181485
0.00185366
0.00187696
0.00188433
0.00186409
0.00178725
0.00174219
-0.0380229
-0.0423786
-0.0460961
-0.0488265
-0.0501127
-0.0489823
-0.0448232
-0.0378397
-0.0248744
-0.0085296
0.00146557
0.000575107
0.00808146
0.00173508
-0.00512167
-0.0116284
-0.0175477
-0.0230658
-0.028317
-0.0333167
-0.0225775
-0.027394
-0.0316853
-0.0349691
-0.0367437
-0.0363833
-0.0320447
-0.0245232
-0.010551
0.0101541
0.0178682
0.0306766
0.0231009
0.0151116
0.00880764
0.00325542
-0.00191134
-0.00705938
-0.0122573
-0.0174683
-0.023269
-0.028499
-0.0334748
-0.0377005
-0.0406769
-0.0415989
-0.038567
-0.0312616
-0.0178983
0.00864743
0.0082953
0.0290618
0.0161376
0.0104836
0.00577357
0.000964122
-0.00347386
-0.00808309
-0.0129335
-0.0180172
-0.0180548
-0.0233319
-0.0285824
-0.0332418
-0.0371229
-0.0389489
-0.0373699
-0.0310276
-0.0203363
0.0130246
0.00451291
0.023825
0.0164283
0.0114287
0.0078434
0.00396867
0.000361462
-0.00367403
-0.00810777
-0.0129192
-0.0160403
-0.0211913
-0.026523
-0.0314598
-0.0360484
-0.0386897
-0.0385744
-0.0331208
-0.0260216
0.0143531
0.00356727
0.0170048
0.0141396
0.00950741
0.00705182
0.00385408
0.000886473
-0.00266514
-0.0066789
-0.0111504
-0.0132279
-0.0180286
-0.0231357
-0.0279931
-0.032864
-0.035898
-0.0371396
-0.0323191
-0.0300675
0.0125195
0.00460686
0.0112927
0.0112358
0.00798809
0.00676599
0.00423924
0.00189745
-0.00116416
-0.00471263
-0.00874698
-0.0110314
-0.0153765
-0.0201039
-0.024688
-0.0295896
-0.0327733
-0.0350095
-0.0308721
-0.0306998
0.00900652
0.00921438
0.00704067
0.00742786
0.00617658
0.0060128
0.00405383
0.00224492
-0.000366438
-0.00345306
-0.00702161
-0.00900227
-0.0128336
-0.0170665
-0.021205
-0.0258608
-0.028892
-0.0317878
-0.0283275
-0.0300194
0.007627
0.00972
0.00282927
0.00544774
0.00467618
0.00523937
0.00379006
0.00244116
0.000251001
-0.00238932
-0.00548973
-0.00727689
-0.010595
-0.0143004
-0.0179416
-0.0221786
-0.0249733
-0.0281125
-0.0252044
-0.0279371
0.00637626
0.00857494
-0.000643507
0.00429553
0.00352504
0.00443488
0.00341994
0.00244571
0.00063683
-0.00159011
-0.00424643
-0.00579638
-0.00862858
-0.0118072
-0.0149233
-0.0186242
-0.0210468
-0.0240974
-0.0218547
-0.0244122
0.00226981
0.0093236
-0.00308696
0.00320464
0.00242686
0.00368734
0.00303008
0.00236908
0.000898393
-0.000959239
-0.00321171
-0.00454721
-0.00694198
-0.0096344
-0.0122591
-0.0154116
-0.0174696
-0.0201964
-0.0185599
-0.0204435
0.00218996
0.00876116
-0.00641045
0.00187326
0.00133565
0.00295688
0.00263577
0.00224264
0.00106973
-0.000464702
-0.00235985
-0.00349667
-0.00550784
-0.0077641
-0.0099397
-0.0125514
-0.0142278
-0.0164791
-0.0155568
-0.0166425
-0.001738
0.0115889
-0.00803172
0.00119519
0.000650982
0.00240794
0.00232306
0.00212266
0.00119485
-6.70362e-05
-0.00165482
-0.00261797
-0.00430099
-0.00618017
-0.00796742
-0.0100976
-0.0114192
-0.0131948
-0.0125477
-0.0121682
-0.00313031
0.0135043
-0.0107163
0.00036504
4.44906e-05
0.00194154
0.00206652
0.00201446
0.00129021
0.000256091
-0.00107085
-0.00188398
-0.00329049
-0.00485023
-0.00630955
-0.0080254
-0.00904307
-0.0104065
-0.0101214
-0.0091544
-0.00718941
0.0148424
-0.00962561
0.000360033
-9.31168e-05
0.00169023
0.00191121
0.00194186
0.00137383
0.000524125
-0.000585175
-0.00127181
-0.00244799
-0.00374154
-0.00492986
-0.0063011
-0.00705066
-0.00802124
-0.0075088
-0.00495019
-0.00405114
0.010917
-0.0122573
-0.000595279
-0.000355953
0.00146303
0.00179637
0.00188952
0.00144731
0.00074814
-0.00018042
-0.000761158
-0.00174687
-0.0028217
-0.00379203
-0.00489725
-0.00547316
-0.00638303
-0.0059702
-0.00731187
-0.00303055
0.00111015
-0.00346553
-0.000218691
0.000106179
0.00147175
0.00177294
0.00187187
0.00151841
0.000938079
0.000158075
-0.000335055
-0.00116379
-0.00205893
-0.00285164
-0.00373826
-0.00414626
-0.00485532
-0.00407411
-0.00484755
0.000534578
-0.00376655
-0.00379495
-0.000855309
0.000188463
0.00142536
0.00175538
0.00186427
0.00158276
0.00109905
0.00044146
2.07612e-05
-0.000678729
-0.00142723
-0.0020784
-0.00279547
-0.00309815
-0.00368082
-0.00307563
-0.00385184
-0.000989322
-0.00289623
-0.00189297
-0.000336364
0.00051515
0.00148541
0.00177707
0.00187357
0.0016434
0.0012365
0.000679532
0.000318362
-0.00027462
-0.00090346
-0.00144105
-0.00202251
-0.00224572
-0.00270126
-0.00216276
-0.0027798
-0.000362768
-0.00272095
-0.00127885
-0.00010247
0.000735426
0.00153541
0.001802
0.00188771
0.00169796
0.0013535
0.000879335
0.000567322
6.24155e-05
-0.000468763
-0.000915449
-0.00138994
-0.00155619
-0.00191459
-0.00143938
-0.00193498
-9.14882e-05
-0.00190683
-0.00060237
0.000266237
0.000966489
0.0016052
0.00183552
0.00190659
0.00174726
0.00145324
0.00104769
0.000776188
0.000343936
-0.000107239
-0.000480978
-0.00087069
-0.000996649
-0.00127665
-0.000883094
-0.00126101
-8.09059e-06
-0.00126134
-0.000115829
0.000551541
0.001152
0.00166885
0.00186758
0.00192594
0.00179072
0.00153803
0.00118904
0.000951058
0.000579217
0.00019399
-0.000120996
-0.000443625
-0.000539819
-0.000757153
-0.000421805
-0.000700276
0.000297168
-0.00059002
0.000298515
0.00081389
0.00131288
0.00172953
0.00189863
0.00194506
0.00182881
0.00160999
0.0013084
0.00109834
0.000776163
0.00044533
0.000177843
-9.10621e-05
-0.000165641
-0.000335641
-5.4859e-05
-0.000257835
0.000488566
-0.000109979
0.00061309
0.00102497
0.00144368
0.00178214
0.00192606
0.0019627
0.00186168
0.00167086
0.00140838
0.00122145
0.000941388
0.000655602
0.000426702
0.000200711
0.00014179
9.43099e-06
0.000246338
0.000104328
0.000696584
0.000297416
0.000870869
0.00120121
0.00155112
0.00182798
0.00194984
0.00197807
0.00188959
0.0017219
0.00149272
0.00132504
0.00107965
0.000831334
0.000634332
0.000442428
0.000395909
0.000291792
0.000491639
0.000395035
0.00086572
0.000606144
0.00107163
0.00134304
0.00163803
0.00186619
0.00197001
0.00199126
0.00191307
0.00176493
0.00156326
0.00141167
0.00119584
0.000978719
0.000807331
0.000643392
0.000606217
0.000523935
0.000693604
0.00063197
0.00101365
0.000851673
0.0012317
0.00145793
0.00170794
0.00189764
0.00198629
0.00200225
0.00193249
0.00180019
0.00162225
0.00148388
0.00129276
0.00110218
0.000952084
0.000810875
0.000780483
0.000715137
0.000859875
0.00082391
0.00113766
0.00104312
0.0013588
0.00155032
0.00176403
0.00192352
0.00199905
0.00201076
0.00194831
0.00182949
0.0016717
0.00154472
0.00137355
0.00120542
0.0010729
0.000949629
0.000925434
0.00087268
0.00099769
0.000980089
0.00124199
0.00119399
0.00146005
0.00162378
0.00180879
0.00194379
0.00200915
0.00201693
0.00196082
0.00185319
0.00171208
0.00159467
0.0014414
0.00129191
0.00117337
0.0010655
0.00104656
0.0010028
0.00111112
0.00110798
0.00132892
0.00131343
0.00154017
0.00168302
0.0018443
0.00195942
0.00201615
0.00202172
0.00197067
0.00187181
0.00174575
0.00163544
0.00149691
0.00136368
0.00125696
0.00116162
0.00114603
0.00111011
0.00120454
0.00121122
0.00140104
0.00140714
0.00160423
0.00172975
0.0018713
0.00197145
0.00202034
0.00202401
0.00197751
0.00188628
0.00177317
0.00166996
0.0015424
0.00142369
0.00132737
0.00124044
0.00122963
0.00119851
0.00128205
0.00129642
0.00146059
0.00148211
0.00165497
0.00176621
0.00189311
0.00198021
0.00202345
0.00202465
0.00198265
0.0018983
0.00179477
0.00169605
0.00157977
0.00147236
0.00138313
0.00130515
0.00129801
0.00127023
0.00134413
0.0013643
0.00150795
0.00154038
0.00169382
0.00179407
0.00190817
0.00198485
0.00202301
0.00202431
0.00198479
0.00190459
0.0018117
0.00171836
0.00160993
0.00151347
0.0014309
0.00135834
0.00135535
0.00132953
0.00139563
0.00142008
0.00154789
0.00158687
0.00172586
0.00181637
0.00192058
0.00198873
0.00202262
0.00202305
0.00198673
0.00191077
0.00182544
0.00173386
0.0016314
0.0015445
0.00146699
0.00139827
0.00140066
0.00137496
0.00143448
0.00146251
0.00157649
0.00162083
0.00174736
0.00182998
0.0019266
0.00198758
0.00201882
0.00201841
0.00198442
0.00191146
0.00183276
0.00174683
0.00165084
0.00157236
0.00149786
0.0014335
0.0014396
0.0014138
0.00146712
0.00149913
0.00160135
0.00164993
0.00176625
0.00184317
0.00193301
0.00198854
0.00201577
0.00201681
0.00198483
0.00191327
0.00184198
0.00175259
0.0016599
0.00158948
0.00151695
0.00145422
0.00146682
0.0014387
0.00148748
0.00152163
0.00161499
0.00166538
0.00177486
0.00184513
0.00193158
0.00198216
0.00200718
0.00200871
0.00197794
0.00190693
0.00184151
0.00176063
0.00167084
0.00160792
0.00153661
0.00147465
0.00149272
0.00146314
0.00150659
0.00154478
0.00162938
0.00168301
0.00178555
0.00185257
0.00193439
0.00198162
0.00200488
0.00200712
0.00197822
0.00190763
0.00184673
0.00175694
0.00166769
0.00161435
0.00154212
0.00147919
0.00150647
0.00147192
0.00150979
0.00155246
0.00162875
0.00168466
0.00178215
0.00184499
0.00192565
0.0019694
0.0019902
0.0019942
0.00196649
0.00189424
0.00183932
0.00176117
0.00167351
0.00162525
0.00155111
0.00148893
0.00152171
0.00148363
0.00151915
0.00156466
0.00163592
0.00169364
0.00178789
0.00184849
0.00192756
0.00196901
0.00198879
0.00199456
0.00196764
0.00189353
0.0018428
0.00175004
0.00165935
0.00162614
0.00154595
0.00147769
0.00152844
0.00148076
0.00150667
0.00156205
0.00162238
0.00168494
0.0017742
0.00183249
0.00191221
0.00194947
0.00196831
0.00197769
0.00195196
0.00187265
0.00182847
-0.050097
-0.0572203
-0.0640087
-0.069997
-0.0743074
-0.0752351
-0.0719726
-0.0626308
-0.0396735
-0.011792
0.00780809
0.0111234
0.0144439
0.001039
-0.00826972
-0.0164534
-0.0233764
-0.0297982
-0.0363051
-0.0430786
-0.0329196
-0.0404999
-0.0479636
-0.0546524
-0.0598735
-0.062332
-0.0592761
-0.0507925
-0.0288249
0.00367942
0.0355187
0.0236744
0.0216701
0.0112704
0.00417877
-0.00151443
-0.00676938
-0.0124018
-0.0186722
-0.0255604
-0.0307276
-0.0386954
-0.0469197
-0.054799
-0.0616888
-0.0661335
-0.0651637
-0.0577558
-0.0365339
0.003697
0.0376932
0.0291226
0.0136745
0.00726186
0.00301191
-0.00139959
-0.00572477
-0.0107308
-0.0165976
-0.0232934
-0.02384
-0.0315618
-0.0397825
-0.047941
-0.0558238
-0.0614315
-0.0626338
-0.0575703
-0.039333
0.00603972
0.0268283
0.0211464
0.0118284
0.00837601
0.00615614
0.00287593
-0.000627462
-0.00508784
-0.0104955
-0.0167685
-0.0198235
-0.0270161
-0.034884
-0.0429482
-0.051334
-0.0578268
-0.0609998
-0.0580965
-0.0431049
0.00864715
0.00356317
0.0153404
0.0102967
0.00786878
0.0068972
0.0042222
0.00126229
-0.00272858
-0.00761722
-0.0133279
-0.015827
-0.0222597
-0.0294208
-0.0369128
-0.0451278
-0.0518108
-0.0564949
-0.0549951
-0.0443561
0.0156017
-0.0180073
0.0133988
0.00934193
0.00744038
0.00747588
0.00529036
0.00282809
-0.000684122
-0.00500276
-0.010059
-0.0126678
-0.0182696
-0.0245893
-0.0312894
-0.038987
-0.0454247
-0.0511069
-0.0509104
-0.0438433
0.0183492
0.0142791
0.0112598
0.00774924
0.0064351
0.00724362
0.00546864
0.00347086
0.000444794
-0.00328515
-0.0076636
-0.0100169
-0.0147955
-0.0202269
-0.0260035
-0.0328881
-0.038646
-0.044754
-0.0454135
-0.0414217
0.0182709
0.0160465
0.0063029
0.00552679
0.00510266
0.00654838
0.00522863
0.00368775
0.00114268
-0.00201893
-0.00574891
-0.00785842
-0.0118792
-0.0164661
-0.0213359
-0.0272774
-0.0322613
-0.0381506
-0.0390612
-0.0376781
0.0160319
0.0153917
0.00168771
0.00378186
0.00395203
0.0056102
0.00472865
0.00360366
0.00151166
-0.00112493
-0.00426212
-0.00609419
-0.00944268
-0.013259
-0.0172732
-0.022227
-0.0263201
-0.0315902
-0.0324843
-0.0323515
0.00934725
0.0155832
-0.00161941
0.00206889
0.00268493
0.00464498
0.0041522
0.00338722
0.00170091
-0.000472343
-0.00308861
-0.00465789
-0.00742971
-0.0105775
-0.0138444
-0.0178906
-0.0211693
-0.0256229
-0.0265664
-0.0266168
0.00774391
0.0147027
-0.00616148
3.24379e-05
0.00139541
0.00369783
0.00357325
0.00311719
0.00178509
1.0399e-05
-0.0021585
-0.00348753
-0.00577354
-0.00835244
-0.0109795
-0.0142098
-0.0167279
-0.0202292
-0.0212028
-0.0213909
0.000528202
0.0185071
-0.00838271
-0.00123792
0.000536269
0.00295071
0.00309179
0.00286368
0.00182233
0.000379036
-0.00141439
-0.00253305
-0.00441677
-0.00652335
-0.00862318
-0.0111692
-0.0130487
-0.0157067
-0.0163135
-0.0156277
-0.00235725
0.0210608
-0.011401
-0.00227977
-9.01357e-05
0.00235935
0.00270709
0.00264491
0.00183904
0.000667669
-0.000814246
-0.00175329
-0.00330685
-0.00502637
-0.00670008
-0.00868695
-0.0100517
-0.0119809
-0.0123063
-0.0110495
-0.00777583
0.0222733
-0.0111629
-0.00231703
-0.000265994
0.00200623
0.00244665
0.00247975
0.00185382
0.000900186
-0.000326267
-0.00111491
-0.00239953
-0.00380563
-0.00514062
-0.00668513
-0.00765244
-0.0089917
-0.00877053
-0.00576998
-0.00483386
0.0155386
-0.0143179
-0.00272384
-0.000386279
0.00176062
0.00226509
0.00235667
0.0018701
0.00109078
7.27061e-05
-0.000591005
-0.00165723
-0.00281139
-0.00388187
-0.00509288
-0.00580142
-0.00689199
-0.00678758
-0.00837469
-0.00262762
0.000294124
-0.00391084
-0.00131955
8.13309e-05
0.00173669
0.00218038
0.00227897
0.00189206
0.00124985
0.000401087
-0.00016005
-0.00104905
-0.00200058
-0.00286255
-0.00381342
-0.00430898
-0.00512738
-0.00455354
-0.00565326
0.00221497
-0.00749097
-0.00399561
-0.00132118
0.00029434
0.00170468
0.00212387
0.00222527
0.00191568
0.00138313
0.000672204
0.000195354
-0.000549567
-0.0013385
-0.00203768
-0.00279165
-0.0031463
-0.00377814
-0.00323766
-0.00405558
-0.000429093
-0.0055309
-0.00241297
-0.000621191
0.000643836
0.00174897
0.00210585
0.00219438
0.00194142
0.00149585
0.000897019
0.00048935
-0.000138172
-0.000796368
-0.00136775
-0.00196975
-0.00222528
-0.00270013
-0.00221123
-0.00284965
-0.000447462
-0.00397087
-0.00150367
-0.000161909
0.000914649
0.00179359
0.00210011
0.00217564
0.00196649
0.00159091
0.0010837
0.000732784
0.000201182
-0.000351398
-0.000821956
-0.00130703
-0.00149268
-0.00185085
-0.00139666
-0.00189429
-1.6118e-05
-0.00251006
-0.000708332
0.000305295
0.00115956
0.00184891
0.00210521
0.00216608
0.00199044
0.00167127
0.00123932
0.000935099
0.000482033
1.5105e-05
-0.000375836
-0.000770241
-0.0009075
-0.00117858
-0.000792478
-0.00116576
7.12546e-05
-0.0015143
-0.000102702
0.000660955
0.00135297
0.00189898
0.00211315
0.00216146
0.00201218
0.001739
0.00136868
0.00110289
0.000714771
0.000317853
-9.66332e-06
-0.000333516
-0.000436202
-0.00064058
-0.000307964
-0.000574106
0.000404878
-0.000647455
0.000376981
0.000954214
0.00151047
0.00194468
0.00212281
0.0021598
0.00203147
0.00179578
0.00147688
0.00124314
0.000908036
0.000568419
0.000291741
2.34986e-05
-5.45236e-05
-0.000210546
7.0859e-05
-0.000115998
0.000624372
-5.91185e-05
0.000730424
0.00118119
0.00163481
0.00198293
0.00213148
0.00215954
0.00204808
0.00184325
0.00156662
0.00135934
0.00106892
0.00077649
0.000540836
0.00031649
0.000255901
0.000136969
0.000375621
0.000250409
0.000837558
0.00039706
0.00100557
0.00136128
0.00173302
0.002015
0.00213885
0.00215934
0.00206189
0.00188249
0.00164165
0.00145642
0.00120265
0.000949131
0.000747089
0.000557408
0.00051032
0.000418487
0.000620746
0.000540429
0.00100919
0.000730975
0.00121374
0.00150145
0.00181009
0.00204059
0.00214475
0.00215911
0.00207314
0.00191514
0.00170373
0.0015369
0.00131429
0.00109303
0.000917754
0.000756284
0.000719175
0.000647896
0.000820193
0.000773264
0.00115412
0.000985107
0.00137435
0.00161154
0.00187015
0.00206055
0.00214854
0.00215842
0.00208189
0.00194119
0.00175509
0.00160342
0.00140669
0.00121277
0.0010597
0.00092105
0.000891002
0.000835319
0.00098286
0.000959784
0.00127379
0.0011781
0.00149869
0.00169766
0.00191692
0.00207617
0.00215042
0.00215679
0.00208841
0.00196239
0.0017977
0.00165904
0.00148329
0.00131239
0.00117748
0.0010567
0.00103307
0.000988734
0.00111656
0.00111005
0.00137283
0.00132655
0.00159552
0.00176442
0.00195307
0.00208731
0.00215106
0.00215415
0.00209274
0.00197894
0.00183199
0.00170423
0.00154714
0.0013953
0.0012749
0.00116939
0.00115107
0.00111462
0.00122577
0.00123203
0.00145439
0.00144179
0.00167057
0.00181702
0.0019808
0.00209489
0.00214982
0.0021513
0.00209552
0.00199127
0.0018602
0.00174073
0.00159903
0.00146375
0.00135546
0.00126239
0.00124738
0.00121782
0.00131514
0.00132969
0.00152139
0.00153066
0.00172951
0.00185753
0.0020009
0.0020999
0.00214687
0.00214698
0.00209619
0.00200021
0.00188283
0.00177136
0.0016412
0.00152061
0.00142297
0.00133826
0.00132797
0.00130233
0.00138883
0.00140967
0.00157616
0.00160067
0.00177534
0.00188824
0.0020166
0.00210249
0.00214376
0.00214188
0.00209591
0.00200735
0.00190017
0.00179405
0.00167567
0.00156649
0.00147607
0.00140029
0.00139346
0.0013705
0.0014475
0.00147291
0.00161931
0.00165428
0.00180975
0.001911
0.00202643
0.00210189
0.00213801
0.00213668
0.00209344
0.00200945
0.00191344
0.00181325
0.00170317
0.00160498
0.00152131
0.00145099
0.00144808
0.00142654
0.00149589
0.00152443
0.00165546
0.00169638
0.00183775
0.00192867
0.00203423
0.00210118
0.00213295
0.00213116
0.00209129
0.00201189
0.00192393
0.00182615
0.00172248
0.00163379
0.00155522
0.00148882
0.00149099
0.00146914
0.00153216
0.00156321
0.00168093
0.00172653
0.00185589
0.00193836
0.00203649
0.00209629
0.00212532
0.00212309
0.00208562
0.0020095
0.0019286
0.0018367
0.00173993
0.0016596
0.00158402
0.00152215
0.00152767
0.00150537
0.00156249
0.00159649
0.00170303
0.0017521
0.0018718
0.00194799
0.00203963
0.00209397
0.00211882
0.00211847
0.002083
0.00200851
0.00193545
0.00184052
0.00174753
0.00167505
0.00160137
0.00154141
0.00155291
0.00152804
0.00158108
0.00161618
0.00171458
0.00176462
0.00187812
0.00194707
0.00203572
0.0020851
0.00210755
0.00210812
0.00207375
0.00199997
0.00193322
0.00184682
0.00175719
0.00169206
0.00161952
0.00156062
0.0015771
0.00155062
0.00159874
0.00163689
0.00172724
0.00177967
0.00188693
0.00195198
0.00203647
0.00208244
0.00210287
0.0021046
0.00207193
0.00199872
0.0019369
0.00184164
0.00175321
0.00169717
0.00162356
0.00156432
0.0015891
0.00155757
0.00160096
0.00164229
0.00172545
0.001779
0.00188223
0.00194226
0.00202634
0.0020688
0.00208632
0.00209041
0.00205857
0.00198378
0.00192846
0.00184489
0.00175847
0.00170735
0.00163177
0.00157355
0.00160334
0.00156831
0.00160972
0.00165309
0.0017319
0.0017865
0.00188717
0.00194432
0.00202735
0.00206735
0.00208358
0.00208989
0.00205857
0.00198203
0.00193124
0.0018324
0.00174413
0.00170688
0.00162518
0.00156221
0.00160816
0.00156366
0.00159715
0.00164821
0.00171816
0.00177556
0.00187317
0.00192639
0.00201164
0.00204732
0.00206159
0.00207263
0.00204153
0.00195989
0.00191657
-0.0671509
-0.0800145
-0.0940184
-0.10863
-0.122464
-0.133823
-0.143672
-0.148106
-0.135174
-0.0731397
-0.0341982
0.00458384
-0.0142943
-0.0404965
-0.0358961
-0.0346125
-0.0361359
-0.0402538
-0.0469578
-0.0560244
-0.0460113
-0.0587843
-0.0728851
-0.0877126
-0.102564
-0.115614
-0.124476
-0.130932
-0.123255
-0.0550975
-0.00538509
0.0194892
-0.0329428
-0.0219503
-0.0147949
-0.0126339
-0.0140499
-0.0185057
-0.0255808
-0.0348549
-0.0388943
-0.0513264
-0.0653964
-0.0808003
-0.0971633
-0.112705
-0.124735
-0.134098
-0.129117
-0.0522349
0.00644428
0.00231311
-0.0195905
-0.0123111
-0.00639244
-0.00541155
-0.00749469
-0.0122204
-0.0192183
-0.0281615
-0.0294344
-0.0406761
-0.0535815
-0.0680547
-0.0843766
-0.100462
-0.115301
-0.128203
-0.125285
-0.0438848
0.0249325
0.0111687
-0.0102563
-0.00347675
0.00216796
0.00240911
-8.32635e-05
-0.00487117
-0.0115138
-0.0197242
-0.0230437
-0.0328547
-0.0442445
-0.0572492
-0.0726042
-0.0883366
-0.104752
-0.12002
-0.118337
-0.0380561
0.0283803
0.00943141
-0.00355065
0.00161241
0.00642831
0.00594612
0.00327677
-0.0012864
-0.00730422
-0.0145592
-0.0177406
-0.0260723
-0.0357915
-0.0469839
-0.0606307
-0.0750021
-0.0916051
-0.107216
-0.107626
-0.02961
0.0353068
0.00944179
0.000879539
0.00451533
0.0086713
0.00776444
0.00518068
0.00103035
-0.00425282
-0.0105048
-0.0136789
-0.0206308
-0.028758
-0.0381414
-0.0498983
-0.0624386
-0.0784553
-0.0937146
-0.0952629
-0.023927
-0.00512862
0.0171026
0.00331402
0.00546912
0.00913081
0.00807821
0.00578602
0.00217318
-0.00233418
-0.00761269
-0.010495
-0.0162266
-0.0229148
-0.0305937
-0.0404021
-0.0507893
-0.0655456
-0.0796271
-0.0814057
-0.0199971
-0.0117888
0.0142183
0.00280076
0.00492892
0.0085065
0.00761031
0.00574114
0.00270501
-0.00106351
-0.00546272
-0.00800621
-0.0126969
-0.0181481
-0.0243404
-0.0323291
-0.0406945
-0.0533179
-0.0652216
-0.0681549
-0.0160268
-0.0112417
-0.000619038
-8.36599e-06
0.00370602
0.00733228
0.00675133
0.00534399
0.00286803
-0.000231017
-0.00386163
-0.00604784
-0.00986725
-0.0142736
-0.0191923
-0.0255339
-0.0319933
-0.0422192
-0.0515031
-0.0543962
-0.013115
-0.0053029
-0.00373632
-0.00182078
0.00234634
0.00603705
0.00580385
0.00482466
0.00285101
0.000330548
-0.00264839
-0.00449912
-0.00760274
-0.0111506
-0.0150259
-0.0199862
-0.0248518
-0.0328265
-0.0399219
-0.0417812
-0.00880255
0.00684352
-0.00826081
-0.00382342
0.000990063
0.00478907
0.00490363
0.00429525
0.00275304
0.0007195
-0.00171606
-0.00326796
-0.00578899
-0.00863843
-0.0116702
-0.0154867
-0.0190181
-0.0248898
-0.0297942
-0.0291873
-0.0127868
0.0118022
-0.0102261
-0.00502806
5.87994e-05
0.00377933
0.00415478
0.00382765
0.00263599
0.00100056
-0.000989327
-0.00228415
-0.00433519
-0.00662437
-0.00899011
-0.0118993
-0.0143949
-0.0185784
-0.0216306
-0.0202536
-0.00554542
0.0255735
-0.011803
-0.00567479
-0.000502022
0.00300962
0.00356785
0.00344101
0.00252683
0.00121203
-0.00041558
-0.00149434
-0.00316801
-0.00501087
-0.0068579
-0.00906192
-0.0107788
-0.0136167
-0.0151628
-0.0128273
-0.00547846
0.0178224
-0.011657
-0.005353
-0.000600754
0.002522
0.0031509
0.00314329
0.00243916
0.00137804
4.26933e-05
-0.000857394
-0.00222899
-0.00371872
-0.00516659
-0.00683655
-0.00800143
-0.00986014
-0.0102793
-0.00744214
0.00183062
0.023044
-0.0127808
-0.0047865
-0.00047437
0.00222167
0.00286109
0.00291915
0.00237328
0.00151209
0.000411808
-0.000341496
-0.00147128
-0.00268231
-0.00382615
-0.00510411
-0.00591646
-0.00723213
-0.00739531
-0.0070509
-0.00479293
-0.00566687
-0.00746189
-0.00274548
7.68167e-05
0.00213012
0.00268569
0.00275978
0.00232801
0.00162315
0.000711737
7.79352e-05
-0.000857884
-0.00184863
-0.00275902
-0.00374364
-0.00429923
-0.0052125
-0.00487252
-0.00580841
0.00248672
-0.0126967
-0.00559164
-0.00179796
0.000469685
0.00208295
0.00256646
0.00264298
0.00229725
0.00171576
0.000956505
0.000420311
-0.00035955
-0.00117574
-0.00190693
-0.00267516
-0.00306068
-0.0037165
-0.0032405
-0.00405041
-0.000600146
-0.00901353
-0.00343894
-0.000789755
0.000864315
0.00209455
0.00249297
0.00255972
0.00227786
0.00179384
0.00115731
0.000700705
4.68001e-05
-0.000630497
-0.0012234
-0.00182919
-0.00210052
-0.00256931
-0.00210998
-0.00274234
-0.00095413
-0.00545607
-0.00188122
-0.00011086
0.0011716
0.00211512
0.00244322
0.00249858
0.00226554
0.00185934
0.00132249
0.000930885
0.000379113
-0.000186872
-0.000672137
-0.00115553
-0.00134861
-0.00168648
-0.0012426
-0.00171646
-6.99576e-05
-0.0030176
-0.000800865
0.000445697
0.00141911
0.00214282
0.00241024
0.00245343
0.00225807
0.00191433
0.00145881
0.00112053
0.000651845
0.000175403
-0.000225648
-0.000615678
-0.000755523
-0.00100233
-0.000615891
-0.000960094
0.000179274
-0.00162824
-4.05758e-05
0.000850034
0.00160584
0.00216785
0.00238631
0.0024191
0.00225338
0.00196029
0.00157102
0.00127647
0.000876173
0.000472337
0.000137874
-0.000180518
-0.000283414
-0.000464225
-0.000129457
-0.000364153
0.000557255
-0.000591632
0.000509785
0.00115717
0.00174923
0.00219009
0.00236867
0.0023923
0.0022503
0.00199821
0.00166404
0.00140581
0.00106111
0.000716424
0.000434845
0.000172271
9.5348e-05
-3.90393e-05
0.000245827
8.91892e-05
0.000804984
7.91764e-05
0.000895283
0.0013847
0.00185771
0.00220738
0.00235426
0.00237071
0.00224771
0.00202941
0.00174028
0.00151204
0.00121393
0.000917703
0.00067859
0.000459778
0.00040085
0.000300769
0.000542895
0.000444583
0.00101679
0.000561203
0.00117861
0.00155726
0.00193964
0.00222067
0.00234179
0.00235242
0.00224517
0.00205454
0.00180335
0.00160012
0.00134008
0.00108373
0.000879112
0.000694557
0.000649341
0.000573724
0.000779474
0.000722515
0.00118301
0.000902611
0.00138584
0.00168726
0.00200147
0.00222979
0.00233072
0.00233657
0.00224225
0.00207483
0.00185478
0.00167242
0.00144468
0.00122122
0.00104411
0.000887337
0.000852086
0.000794548
0.0009701
0.000942805
0.00131864
0.00115306
0.00154042
0.00178622
0.00204757
0.00223532
0.00231998
0.00232257
0.00223883
0.00209017
0.00189682
0.0017316
0.00153065
0.00133495
0.00118051
0.00104609
0.00101784
0.00097379
0.00112442
0.00111768
0.00142889
0.00133876
0.00165693
0.00186137
0.00208189
0.00223839
0.00230933
0.00230944
0.00223483
0.00210199
0.00193118
0.00178066
0.00160143
0.00142903
0.00129307
0.00117607
0.00115409
0.00111963
0.0012504
0.00125737
0.0015188
0.00147857
0.00174544
0.00191797
0.00210704
0.00223862
0.00229922
0.00229693
0.00223003
0.00211036
0.00195822
0.00181999
0.00166
0.00150685
0.00138563
0.00128352
0.00126666
0.00123857
0.00135262
0.00136994
0.00159205
0.00158515
0.00181247
0.00196132
0.00212514
0.00223676
0.00228869
0.00228554
0.00222489
0.00211555
0.00198003
0.0018513
0.0017072
0.00157073
0.00146175
0.00137177
0.00135799
0.00133557
0.00143577
0.00145937
0.00165163
0.00166596
0.00186402
0.00199362
0.00213691
0.00223365
0.00227778
0.0022739
0.00221874
0.00211827
0.00199707
0.0018773
0.00174516
0.00162343
0.00152518
0.00144335
0.00143407
0.00141454
0.00150394
0.00153211
0.00169987
0.00172863
0.00190319
0.00201705
0.00214538
0.00222921
0.00226777
0.00226246
0.0022125
0.00211995
0.00200949
0.00189598
0.00177601
0.00166568
0.00157468
0.00150162
0.00149553
0.00147787
0.00155787
0.00158914
0.00173744
0.00177582
0.00193184
0.00203353
0.00214909
0.00222267
0.00225619
0.00225192
0.00220497
0.0021174
0.00201858
0.00191157
0.00180028
0.00170087
0.00161662
0.00154896
0.00154648
0.00152958
0.00160208
0.00163518
0.00176871
0.00181219
0.00195476
0.00204566
0.0021516
0.00221682
0.00224603
0.00224177
0.00219836
0.00211571
0.00202536
0.00192146
0.00181693
0.00172692
0.00164773
0.00158401
0.00158624
0.00156853
0.00163493
0.00166939
0.00179021
0.00183753
0.00196873
0.00205075
0.00214956
0.00220775
0.00223422
0.00222994
0.00218903
0.00210992
0.00202703
0.00192927
0.00183202
0.00175021
0.00167397
0.00161487
0.00162005
0.00160149
0.00166228
0.0016986
0.00180889
0.00185882
0.00198102
0.00205629
0.002149
0.00220181
0.00222402
0.00222204
0.00218314
0.00210587
0.00203121
0.00193091
0.00183784
0.00176363
0.00168919
0.00163224
0.00164288
0.00162145
0.00167861
0.00171496
0.00181784
0.00186786
0.0019846
0.00205211
0.00214228
0.0021902
0.00220986
0.00220924
0.00217136
0.00209496
0.00202697
0.00193524
0.00184597
0.00177887
0.00170552
0.00164988
0.00166498
0.00164176
0.00169442
0.0017328
0.00182838
0.00187989
0.00199114
0.00205416
0.00214071
0.00218521
0.00220263
0.00220363
0.00216729
0.00209158
0.00202892
0.00192847
0.00184099
0.00178244
0.00170789
0.0016525
0.00167499
0.0016466
0.00169537
0.00173567
0.00182515
0.00187664
0.0019849
0.00204212
0.002129
0.00217002
0.00218414
0.00218804
0.00215219
0.002075
0.00201933
0.00193063
0.00184555
0.00179168
0.00171514
0.00166105
0.00168804
0.00165616
0.00170335
0.00174485
0.00183069
0.00188244
0.00198884
0.0020426
0.00212897
0.00216741
0.00217999
0.00218655
0.00215095
0.00207212
0.00202129
0.00191676
0.00183096
0.00178971
0.00170701
0.00164949
0.00169084
0.0016496
0.00169054
0.00173761
0.00181661
0.0018692
0.00197442
0.00202271
0.0021128
0.00214687
0.0021565
0.00216884
0.00213255
0.0020487
0.00200623
-0.0814151
-0.105038
-0.133486
-0.167091
-0.204608
-0.245489
-0.291069
-0.327795
-0.347097
-0.289416
-0.251875
-0.13945
-0.0706281
-0.0468524
-0.0359105
-0.0337724
-0.0381702
-0.0479419
-0.0624337
-0.0562646
-0.0771787
-0.102401
-0.132585
-0.168391
-0.208792
-0.252658
-0.299455
-0.325855
-0.264374
-0.213688
-0.171943
-0.0739997
-0.0367103
-0.0156265
-0.00799163
-0.00872274
-0.0149217
-0.0252458
-0.0390567
-0.0437661
-0.0619231
-0.0839539
-0.110882
-0.144116
-0.183798
-0.23051
-0.284343
-0.317016
-0.259206
-0.171511
-0.131502
-0.0427407
-0.0154238
-0.000250126
0.0033433
0.000474526
-0.00640546
-0.0162676
-0.0286958
-0.0321753
-0.0472982
-0.0656186
-0.0882144
-0.117036
-0.1525
-0.198974
-0.255066
-0.290529
-0.244659
-0.165293
-0.097203
-0.0207037
-0.000209006
0.0105698
0.0113323
0.00725622
0.000326356
-0.00866467
-0.0194499
-0.0240907
-0.0364578
-0.0513925
-0.0698581
-0.0939525
-0.12422
-0.167153
-0.221603
-0.259499
-0.226806
-0.138485
-0.0712324
-0.00717696
0.00750355
0.015028
0.0141125
0.00973541
0.00334412
-0.00447562
-0.013566
-0.0180115
-0.0280292
-0.04005
-0.0548471
-0.0743964
-0.0992183
-0.136624
-0.185711
-0.226672
-0.205485
-0.110526
-0.0529183
0.000387577
0.0107371
0.0162115
0.0145317
0.0103987
0.00479108
-0.0018379
-0.00939061
-0.0135034
-0.0215694
-0.0311797
-0.0429117
-0.0585423
-0.0783857
-0.110297
-0.152742
-0.192479
-0.181627
-0.0525349
-0.0381766
0.00368237
0.0109504
0.015288
0.0134796
0.00991545
0.00519563
-0.000297733
-0.00649429
-0.0101112
-0.0165853
-0.0242277
-0.0334251
-0.0456973
-0.0610361
-0.0876851
-0.122834
-0.158208
-0.151397
0.0122161
-0.029532
0.00364702
0.00940508
0.0133433
0.0118194
0.0089573
0.00510249
0.000617198
-0.00443172
-0.0075301
-0.0127197
-0.0187846
-0.0259531
-0.0354852
-0.0471188
-0.0681933
-0.0958396
-0.126565
-0.120735
0.0704115
-0.0265563
0.00157657
0.00708781
0.0110295
0.00999351
0.00784261
0.00477329
0.00115492
-0.00293754
-0.00554602
-0.00970437
-0.0145058
-0.0200481
-0.0273311
-0.0358669
-0.0517813
-0.0721747
-0.097156
-0.0919212
0.0436183
-0.0255291
-0.000837585
0.0047216
0.00880114
0.00828618
0.0067693
0.00437192
0.00147554
-0.00183355
-0.00400565
-0.00734128
-0.0111423
-0.0154109
-0.0209226
-0.0270446
-0.0387198
-0.053281
-0.0721316
-0.0652488
0.000941815
-0.0264988
-0.0032553
0.00262297
0.00685096
0.00681283
0.00582185
0.00397839
0.00167167
-0.00100186
-0.00279995
-0.00548148
-0.00849317
-0.0117705
-0.0158974
-0.0201543
-0.0283401
-0.0377521
-0.0494252
-0.0471729
-0.021056
-0.0265959
-0.00497029
0.00111687
0.00531237
0.00563172
0.00503818
0.00363337
0.00179872
-0.000364119
-0.00184921
-0.00401221
-0.00640488
-0.00892159
-0.0119924
-0.0148758
-0.0204144
-0.0259439
-0.0327264
-0.026886
0.0422409
-0.0292292
-0.00592645
0.000207866
0.00417473
0.00472799
0.00441494
0.00334851
0.001887
0.000132566
-0.00109459
-0.0028474
-0.0047561
-0.00669484
-0.00897386
-0.0108794
-0.0144495
-0.0170256
-0.019151
-0.0170524
0.013194
-0.0269376
-0.00576124
-9.12704e-05
0.00342571
0.0040757
0.00393795
0.00312407
0.00195407
0.000524751
-0.000492234
-0.0019203
-0.003452
-0.004955
-0.00665213
-0.00789961
-0.010119
-0.0108981
-0.0101684
-0.00448448
0.0450591
-0.0246122
-0.00490568
2.1369e-05
0.00296498
0.00361687
0.00357882
0.00295151
0.00200832
0.000837538
-8.92173e-06
-0.0011794
-0.00241714
-0.00359358
-0.00487209
-0.00570872
-0.00712884
-0.00731507
-0.00764594
-0.00628563
-0.0167346
-0.0122415
-0.00329936
0.000478738
0.00273733
0.00330908
0.00331387
0.00282141
0.00205428
0.00108945
0.000380733
-0.000584797
-0.00159271
-0.00252231
-0.00349565
-0.004056
-0.00496471
-0.00464078
-0.00543184
-0.00408844
-0.0232358
-0.00778127
-0.00184665
0.000916326
0.00261048
0.00309374
0.00311575
0.00272314
0.00209354
0.00129324
0.00069612
-0.000105661
-0.000932755
-0.00167512
-0.0024271
-0.00280737
-0.00341691
-0.00289503
-0.00368255
-0.00150274
-0.0105615
-0.004278
-0.000604228
0.00128589
0.00254917
0.00294292
0.00296722
0.00264884
0.00212741
0.00145913
0.000952411
0.000282069
-0.000402024
-0.00100137
-0.00159011
-0.00185279
-0.00226875
-0.00176823
-0.00235497
-0.00122035
-0.00609842
-0.00201071
0.000187537
0.00156486
0.002514
0.00283265
0.00285384
0.00259182
0.00215613
0.00159428
0.00116121
0.000596889
2.66669e-05
-0.000462159
-0.000929335
-0.00111339
-0.00140146
-0.000933042
-0.00133935
3.83805e-05
-0.00302741
-0.000677794
0.000757295
0.00177466
0.00249334
0.00275015
0.00276597
0.00254748
0.00218021
0.00170478
0.0013319
0.000853574
0.000374518
-2.83655e-05
-0.000403728
-0.000535304
-0.000738535
-0.000333335
-0.000611588
0.000445795
-0.00141397
0.000172576
0.00115381
0.001926
0.00247832
0.00268603
0.00269657
0.0025121
0.00219998
0.00179479
0.00147111
0.00106324
0.000657818
0.000322538
1.70056e-05
-7.86389e-05
-0.000223217
0.00012384
-5.39127e-05
0.000817156
-0.000335393
0.000746254
0.00143923
0.00203622
0.00246644
0.00263502
0.00264058
0.00248322
0.00221566
0.00186863
0.00158563
0.00123497
0.000889315
0.000607562
0.00035605
0.000285407
0.000180958
0.000474736
0.000365775
0.00105699
0.000342765
0.00113123
0.00164346
0.0021156
0.00245515
0.00259297
0.00259451
0.00245883
0.0022279
0.00192818
0.00167886
0.0013759
0.00107908
0.000840138
0.000630763
0.000577203
0.000501638
0.000750321
0.000690401
0.00124609
0.000806884
0.00140162
0.00179277
0.00217217
0.00244421
0.00255731
0.00255568
0.00243789
0.00223677
0.0019768
0.00175544
0.00149141
0.00123475
0.00103038
0.0008539
0.000813252
0.000757677
0.000968599
0.00094243
0.00139229
0.00112838
0.00159366
0.00190186
0.00221232
0.00243285
0.00252668
0.00252232
0.00241916
0.00224293
0.00201561
0.0018176
0.00158658
0.00136293
0.00118618
0.00103625
0.00100483
0.000963707
0.00114349
0.00114067
0.00150931
0.00135851
0.00173262
0.00198227
0.00223985
0.00242096
0.00249946
0.00249354
0.00240228
0.00224616
0.00204669
0.00186784
0.00166415
0.00146828
0.00131421
0.00118565
0.00116073
0.0011301
0.00128438
0.00129714
0.0016037
0.00152609
0.0018346
0.00204126
0.00225838
0.00240923
0.00247477
0.00246771
0.00238665
0.00224747
0.00207145
0.00190903
0.00172753
0.00155495
0.0014193
0.00130736
0.00128817
0.00126481
0.00139887
0.00142143
0.00167997
0.00165014
0.00191011
0.00208395
0.00227005
0.00239685
0.00245271
0.00244436
0.00237186
0.00224673
0.00209013
0.00194143
0.00177953
0.00162616
0.00150522
0.0014075
0.00139296
0.00137414
0.00149124
0.00152103
0.00174163
0.00174319
0.00196573
0.00211531
0.00227667
0.00238423
0.00243196
0.00242366
0.00235809
0.002244
0.00210464
0.00196669
0.001821
0.00168423
0.00157545
0.00148935
0.00147748
0.00146287
0.00156598
0.00159959
0.00179139
0.00181253
0.00200743
0.00213739
0.0022787
0.00237197
0.00241235
0.00240408
0.00234452
0.00223988
0.00211537
0.00198735
0.0018539
0.00173177
0.00163364
0.0015553
0.00154757
0.00153466
0.00162693
0.00166311
0.00183128
0.00186543
0.00203813
0.00215203
0.00227884
0.0023597
0.00239486
0.00238579
0.00233185
0.00223558
0.00212227
0.00200144
0.00188043
0.00176956
0.00167861
0.00160877
0.00160384
0.00159186
0.00167479
0.00171242
0.00186187
0.00190442
0.00205962
0.00216111
0.0022756
0.0023466
0.00237696
0.0023695
0.00231886
0.00222795
0.00212667
0.00201295
0.00190088
0.00180079
0.00171649
0.00165189
0.00165019
0.00163824
0.00171378
0.00175183
0.0018872
0.00193377
0.00207642
0.00216684
0.00227216
0.00233511
0.00236134
0.00235436
0.00230747
0.00222178
0.00212934
0.00201945
0.00191443
0.00182353
0.0017442
0.00168348
0.00168608
0.00167273
0.00174239
0.00178057
0.0019039
0.00195333
0.00208543
0.00216666
0.00226531
0.00232147
0.00234505
0.0023385
0.00229424
0.00221233
0.00212766
0.0020242
0.00192676
0.00184386
0.00176738
0.00171133
0.00171644
0.00170179
0.00176612
0.00180504
0.00191851
0.00196961
0.0020935
0.0021676
0.00226064
0.0023116
0.0023309
0.00232709
0.00228486
0.00220497
0.0021289
0.00202343
0.00193052
0.00185491
0.00178012
0.00172638
0.0017364
0.00171858
0.00177969
0.00181756
0.00192437
0.00197465
0.00209386
0.0021598
0.00225081
0.00229703
0.0023137
0.00231166
0.0022704
0.00219153
0.00212243
0.00202561
0.00193687
0.00186809
0.00179431
0.00174211
0.00175605
0.00173622
0.00179325
0.00183214
0.0019324
0.00198326
0.00209778
0.00215872
0.00224667
0.00228951
0.00230378
0.0023038
0.00226393
0.00218587
0.00212248
0.00201714
0.00193072
0.00186992
0.00179482
0.00174341
0.00176385
0.00173872
0.00179267
0.00183224
0.00192747
0.00197721
0.00208974
0.00214421
0.00223322
0.00227267
0.0022833
0.00228673
0.00224704
0.00216759
0.0021116
0.00201809
0.00193446
0.00187804
0.00180095
0.00175111
0.00177552
0.00174689
0.00179966
0.00183959
0.00193191
0.00198112
0.00209252
0.00214295
0.00223202
0.00226882
0.00227766
0.00228418
0.00224448
0.00216349
0.00211265
0.00200283
0.00191953
0.00187447
0.0017912
0.00173922
0.00177622
0.0017383
0.0017865
0.00182993
0.00191737
0.00196553
0.00207755
0.00212111
0.0022153
0.00224773
0.00225271
0.00226596
0.00222473
0.0021388
0.00209712
-0.0776921
-0.111702
-0.154881
-0.211126
-0.284326
-0.382354
-0.50612
-0.620764
-0.617869
-0.609641
-0.247025
-0.0102335
0.0116756
0.0192796
0.0160446
0.00572011
-0.00912867
-0.0277231
-0.0502677
-0.0545189
-0.0821675
-0.116773
-0.16167
-0.221976
-0.303838
-0.416857
-0.562409
-0.577822
-0.572552
-0.174569
0.0287973
0.0395172
0.040063
0.0324828
0.0201406
0.00515913
-0.0119956
-0.0316082
-0.0404919
-0.0625221
-0.0897887
-0.125044
-0.172817
-0.239462
-0.33761
-0.476471
-0.535061
-0.544967
-0.144992
0.0434506
0.0470749
0.0436497
0.0344604
0.022437
0.00901344
-0.00566011
-0.0219224
-0.0294667
-0.0468688
-0.0681265
-0.0953685
-0.132401
-0.184484
-0.266373
-0.38492
-0.462535
-0.50584
-0.084034
0.0488927
0.0480425
0.0428356
0.0335121
0.0226069
0.0110262
-0.00125272
-0.0145565
-0.0216526
-0.0353677
-0.0519376
-0.0729577
-0.101537
-0.141643
-0.207569
-0.304515
-0.390302
-0.469758
-0.0668903
0.0468716
0.0436644
0.0383639
0.0299332
0.0206456
0.0110272
0.00098578
-0.00975671
-0.0159811
-0.0268194
-0.0397664
-0.0559783
-0.077918
-0.108412
-0.160003
-0.236864
-0.324395
-0.422708
-0.0562159
0.0411455
0.0372747
0.0328583
0.0257557
0.0181431
0.01031
0.00217294
-0.00647919
-0.011805
-0.0203808
-0.0305148
-0.0430195
-0.0598373
-0.0828501
-0.122947
-0.181435
-0.26581
-0.370747
-0.048848
0.033566
0.0301422
0.0271236
0.0215108
0.0155017
0.00924808
0.00272134
-0.00421844
-0.0086956
-0.0154928
-0.0234298
-0.0330407
-0.045813
-0.0628133
-0.0933657
-0.134259
-0.21576
-0.312043
-0.0453084
0.0253547
0.0232206
0.0217863
0.0176289
0.0130468
0.00813
0.00292835
-0.00263071
-0.00634404
-0.0117418
-0.0179682
-0.0253495
-0.0350316
-0.0474839
-0.0703666
-0.0995493
-0.168079
-0.254367
-0.044463
0.017285
0.0169887
0.0170922
0.014254
0.0108894
0.00707999
0.00295842
-0.00148977
-0.00454665
-0.00884152
-0.0137287
-0.0193754
-0.0266416
-0.0355296
-0.0520663
-0.071632
-0.125947
-0.201367
-0.0453762
0.0102535
0.0117886
0.0131847
0.0114522
0.00907703
0.00616085
0.0029068
-0.000653662
-0.0031578
-0.00658403
-0.0104267
-0.014738
-0.0201533
-0.0263607
-0.0380095
-0.0502458
-0.0918784
-0.158754
-0.0470007
0.00452083
0.00769143
0.0100608
0.00920247
0.0076005
0.00539014
0.00282591
-2.77681e-05
-0.00207566
-0.00481815
-0.00784672
-0.0111344
-0.0151394
-0.019355
-0.0272587
-0.0340524
-0.0633989
-0.117426
-0.0480906
0.000375152
0.00474453
0.00768734
0.0074601
0.00643117
0.00476515
0.00274321
0.000449696
-0.00122612
-0.00343051
-0.0058266
-0.00833702
-0.0112854
-0.0140708
-0.0192223
-0.0221948
-0.0421245
-0.0828304
-0.0476997
-0.00226042
0.0028269
0.00596317
0.00614949
0.00552425
0.00426972
0.00267031
0.000819923
-0.000554914
-0.00233621
-0.00424158
-0.0061669
-0.00833632
-0.0101334
-0.01334
-0.0138747
-0.0259398
-0.0501475
-0.043456
-0.00324307
0.00182176
0.00479341
0.00519638
0.00483463
0.00388428
0.00261185
0.00111115
-2.16635e-05
-0.00146953
-0.00299489
-0.0044823
-0.00608757
-0.00723771
-0.00916668
-0.00854975
-0.0147217
-0.024609
-0.0355864
-0.00299622
0.0014736
0.00403877
0.00451614
0.00431525
0.00358728
0.00256696
0.00134259
0.000403992
-0.000780508
-0.00201076
-0.00317167
-0.00437473
-0.00512753
-0.0063079
-0.00559037
-0.00858754
-0.0153029
-0.0220308
-0.00187032
0.00156191
0.00358396
0.00403841
0.00392623
0.00335926
0.00253372
0.00152817
0.000745534
-0.000230126
-0.00123048
-0.00214632
-0.00305939
-0.0035568
-0.00428406
-0.00355939
-0.00402175
-0.00778794
-0.0349166
-0.00684124
-0.000791189
0.00176818
0.00329963
0.00369678
0.00363249
0.00318365
0.00250915
0.00167742
0.00102027
0.00021101
-0.000608993
-0.00133956
-0.00204318
-0.00237648
-0.0028438
-0.0021154
-0.00263836
-0.000737312
-0.00939797
-0.00362288
0.000172437
0.00196397
0.00311578
0.00344807
0.00340832
0.00304712
0.00249091
0.00179825
0.00124217
0.000566278
-0.000111511
-0.000700863
-0.00125097
-0.00147865
-0.00178695
-0.00116609
-0.00156357
-0.000290909
-0.00501954
-0.00143724
0.000821818
0.00211916
0.00298933
0.0032621
0.00323491
0.0029398
0.00247669
0.00189565
0.00142169
0.000853119
0.000288366
-0.0001921
-0.000628364
-0.000786416
-0.000992873
-0.000460957
-0.000717838
0.000646784
-0.00222542
-0.000170651
0.00127316
0.00223498
0.0028976
0.00311973
0.00309859
0.00285418
0.00246517
0.00197447
0.00156739
0.0010858
0.000611386
0.000215384
-0.000135251
-0.000247172
-0.000387795
5.55123e-05
-0.000107097
0.000963361
-0.000773305
0.000606141
0.00158442
0.00231582
0.00282711
0.003008
0.00298978
0.00278469
0.00245511
0.00203763
0.00168517
0.00127469
0.000873175
0.000543596
0.000257923
0.000177291
8.07944e-05
0.000450663
0.000359029
0.00121725
0.000154626
0.00111484
0.00180378
0.00237099
0.00277068
0.00291832
0.00290125
0.00272738
0.00244573
0.00208867
0.00178122
0.00142845
0.00108606
0.000808983
0.000573534
0.000514554
0.000447427
0.000755844
0.000711942
0.00139004
0.00074042
0.00144986
0.0019575
0.00240704
0.00272347
0.00284475
0.00282826
0.00267917
0.0024367
0.0021287
0.00185854
0.00155378
0.00125966
0.00102456
0.00082829
0.000783865
0.000737533
0.000995845
0.000985037
0.00152774
0.0011352
0.00167914
0.0020667
0.00242889
0.00268323
0.002783
0.00276692
0.00263811
0.00242746
0.0021606
0.00192132
0.00165571
0.00140133
0.00120005
0.00103434
0.00100093
0.000968524
0.00118636
0.00119737
0.00163691
0.00140708
0.00183852
0.00214364
0.00244096
0.00264773
0.00273069
0.00271458
0.00260227
0.00241809
0.00218497
0.00197148
0.00173911
0.00151732
0.00134311
0.00120205
0.00117645
0.00115384
0.00133887
0.00136446
0.00172525
0.0015996
0.00195083
0.00219806
0.00244546
0.00261575
0.00268535
0.00266979
0.00257084
0.00240799
0.00220361
0.00201128
0.00180643
0.00161203
0.00146004
0.00133887
0.00131871
0.00130294
0.00146146
0.00149619
0.00179713
0.00173827
0.00203106
0.00223581
0.00244501
0.00258724
0.00264537
0.00263033
0.00254273
0.00239782
0.00221759
0.00204341
0.00186089
0.00168945
0.00155548
0.00144978
0.00143447
0.00142321
0.00156085
0.00160057
0.00185525
0.00183963
0.00208865
0.00226101
0.00244088
0.00256075
0.00261037
0.00259536
0.00251723
0.00238716
0.00222693
0.0020679
0.00190512
0.00175259
0.00163302
0.00154062
0.00152922
0.00152038
0.00164067
0.00168394
0.00190214
0.0019145
0.00212948
0.00227783
0.00243431
0.00253623
0.00257864
0.00256474
0.00249425
0.00237586
0.00223335
0.0020863
0.00193986
0.00180367
0.00169598
0.00161448
0.00160516
0.00159886
0.00170492
0.00174922
0.00193976
0.00196918
0.00215889
0.00228782
0.00242531
0.00251394
0.00254971
0.0025367
0.00247279
0.00236436
0.0022371
0.00210097
0.00196689
0.0018451
0.00174783
0.00167356
0.00166788
0.00166195
0.00175706
0.00180169
0.00196956
0.00201004
0.00217935
0.0022923
0.00241617
0.00249316
0.00252426
0.00251116
0.00245329
0.00235364
0.00223793
0.00210994
0.00198844
0.00187767
0.00178737
0.0017212
0.00171785
0.00171182
0.00179759
0.00184191
0.00199187
0.00203922
0.00219238
0.00229293
0.00240523
0.00247296
0.00249967
0.00248877
0.00243453
0.00234056
0.00223719
0.00211693
0.00200453
0.0019043
0.00182048
0.00175929
0.00175872
0.00175191
0.00183039
0.00187365
0.00201026
0.00206036
0.00220209
0.00229149
0.00239526
0.00245541
0.00247827
0.00246837
0.00241811
0.00232962
0.00223538
0.0021197
0.00201454
0.00192324
0.00184421
0.00178677
0.00179004
0.00178123
0.00185399
0.00189613
0.00202139
0.00207327
0.00220539
0.00228547
0.00238315
0.00243687
0.00245727
0.00244826
0.00240075
0.00231625
0.00223005
0.00212111
0.00202377
0.00194018
0.00186388
0.00181109
0.00181639
0.0018058
0.0018735
0.00191522
0.00203133
0.00208389
0.00220866
0.00228137
0.00237401
0.00242282
0.002439
0.00243315
0.00238772
0.00230541
0.00222809
0.00211773
0.00202519
0.00194854
0.00187378
0.00182343
0.00183308
0.00181897
0.00188385
0.00192347
0.00203365
0.00208447
0.0022054
0.00226964
0.00236081
0.00240508
0.00241863
0.00241495
0.00237045
0.00228929
0.00221922
0.00211758
0.00202954
0.0019594
0.00188555
0.00183693
0.00184994
0.00183359
0.0018948
0.00193442
0.00203883
0.00208931
0.00220636
0.00226517
0.00235388
0.0023949
0.0024059
0.00240472
0.00236147
0.00228124
0.00221719
0.00210731
0.00202206
0.00195929
0.00188403
0.00183668
0.00185534
0.00183353
0.00189243
0.00193156
0.00203194
0.00208026
0.0021963
0.00224807
0.00233854
0.0023763
0.00238339
0.00238607
0.00234276
0.0022612
0.00220491
0.00210697
0.00202486
0.00196614
0.00188887
0.00184337
0.00186545
0.00184012
0.00189826
0.00193691
0.0020351
0.00208209
0.00219774
0.00224496
0.00233606
0.00237113
0.00237621
0.00238239
0.00233882
0.0022558
0.00220497
0.00209032
0.00200951
0.00196092
0.00187743
0.00183104
0.001864
0.00182944
0.00188462
0.00192482
0.00201999
0.00206416
0.00218213
0.00222118
0.0023187
0.00234949
0.00234985
0.0023636
0.00231776
0.00222985
0.0021889
-0.0497882
-0.0819534
-0.120956
-0.17162
-0.241437
-0.347655
-0.507778
-0.824461
-1.07036
-1.08363
0.197926
0.257137
0.186038
0.134311
0.094347
0.0610801
0.0320556
0.00517506
-0.0214755
-0.0375697
-0.0640414
-0.0955136
-0.135295
-0.18919
-0.267792
-0.396705
-0.620505
-1.03856
-1.12913
0.212763
0.231584
0.166063
0.11986
0.0848243
0.0561646
0.0313936
0.00856834
-0.0139201
-0.0283778
-0.0493916
-0.0740689
-0.104744
-0.145418
-0.203365
-0.296136
-0.451395
-0.830966
-1.0831
0.200243
0.19429
0.136966
0.0984629
0.0699206
0.0468569
0.0269717
0.00862408
-0.00944826
-0.0212757
-0.0379579
-0.0573665
-0.0811879
-0.112295
-0.155595
-0.224559
-0.333033
-0.653754
-1.06402
0.182879
0.158897
0.11061
0.0796627
0.0570066
0.0387515
0.0229529
0.0083028
-0.00615811
-0.0158618
-0.0290772
-0.0443569
-0.0629461
-0.0870413
-0.119978
-0.172638
-0.25076
-0.507494
-0.943301
0.158634
0.126914
0.0874304
0.0634158
0.0458686
0.0316614
0.0192556
0.0076574
-0.00384077
-0.0118053
-0.0222978
-0.0343475
-0.0488608
-0.067528
-0.0925839
-0.132759
-0.189588
-0.384742
-0.784033
0.130115
0.0994242
0.0682201
0.0501555
0.0367806
0.0258211
0.016112
0.00693178
-0.00222466
-0.00870842
-0.0170427
-0.0265434
-0.0378496
-0.0522619
-0.0711982
-0.101736
-0.142738
-0.291396
-0.64841
0.100064
0.0760099
0.0522774
0.0392823
0.0293294
0.0210016
0.0134593
0.00621616
-0.0010698
-0.00634367
-0.0129706
-0.0204565
-0.0292209
-0.04023
-0.0542006
-0.0763342
-0.10262
-0.231431
-0.515443
0.0713043
0.05649
0.0392788
0.0304915
0.0233012
0.0170808
0.0112623
0.00555831
-0.00024338
-0.00451803
-0.00979435
-0.015694
-0.0224714
-0.0308542
-0.0410967
-0.0574166
-0.0748093
-0.172157
-0.394903
0.0444667
0.0403847
0.0288189
0.023449
0.0184631
0.0139171
0.00946482
0.00498343
0.000361364
-0.00310093
-0.00730875
-0.0119582
-0.017176
-0.0234972
-0.0308249
-0.0425117
-0.0529689
-0.122138
-0.290955
0.0212887
0.0275485
0.02062
0.0179075
0.014636
0.0113953
0.00801401
0.00449772
0.000810372
-0.00199323
-0.00535659
-0.00902449
-0.0130291
-0.0177547
-0.0228628
-0.030975
-0.0363387
-0.0842134
-0.211088
0.00256582
0.0176049
0.0143727
0.0136308
0.0116539
0.00940847
0.00685693
0.00409845
0.00115067
-0.00112293
-0.00381986
-0.00671924
-0.00978723
-0.013291
-0.0167415
-0.0221317
-0.0239075
-0.0556898
-0.139027
-0.0112762
0.0102759
0.0098225
0.0104194
0.00937378
0.0078634
0.00594494
0.00377732
0.00141313
-0.00043577
-0.00260703
-0.00490705
-0.00725935
-0.00984411
-0.0121
-0.0154956
-0.0149361
-0.0349916
-0.0866683
-0.0207838
0.00520161
0.00668551
0.00807732
0.00766176
0.00667521
0.00523244
0.00352275
0.00161864
0.000108878
-0.0016481
-0.00348159
-0.00529263
-0.00719931
-0.00863517
-0.010661
-0.00884772
-0.020008
-0.0499176
-0.0240973
0.00229027
0.00473026
0.00643811
0.00640227
0.00577104
0.00467995
0.00332359
0.00178165
0.000542217
-0.000887613
-0.00235872
-0.00376325
-0.00517902
-0.00608419
-0.00724751
-0.00513019
-0.0106462
-0.0218577
-0.0220618
0.0010133
0.00364421
0.00532659
0.00548725
0.00508643
0.00425274
0.00316821
0.00191194
0.000888012
-0.000283116
-0.00147213
-0.00257203
-0.00363699
-0.00422003
-0.0049101
-0.00321897
-0.00554733
-0.00867387
-0.0153424
0.000801587
0.00313468
0.00459145
0.00482636
0.00456811
0.00392197
0.00304705
0.00201664
0.00116496
0.000199243
-0.00076947
-0.00164004
-0.00245199
-0.00283296
-0.00324831
-0.00199501
-0.00183826
-0.00350728
-0.0176622
-0.00340207
0.00106502
0.0029273
0.00410076
0.00434454
0.00417315
0.00366451
0.00295177
0.00210051
0.00138691
0.000585052
-0.000210445
-0.000907084
-0.00153547
-0.00178852
-0.00204526
-0.00105549
-0.0010625
0.00240621
-0.00455403
-0.00154533
0.00142334
0.00283926
0.00376206
0.00398735
0.00386885
0.00346216
0.00287612
0.00216793
0.00156527
0.000894951
0.000236229
-0.000327444
-0.000821006
-0.000992272
-0.00115416
-0.000384369
-0.000436445
0.00164483
-0.00237924
-0.000179871
0.00172505
0.00279997
0.00352039
0.00371729
0.00363154
0.00330145
0.00281483
0.00222134
0.00170862
0.00114427
0.00059446
0.000133555
-0.000259646
-0.000377623
-0.000479883
0.000133157
0.000103608
0.00166669
-0.000760635
0.000689128
0.00195393
0.00277869
0.0033415
0.00350887
0.00344369
0.00317211
0.00276439
0.0022636
0.00182395
0.00134547
0.000882842
0.000502006
0.000184628
0.000101788
3.70819e-05
0.000528017
0.000521583
0.00166381
0.00018994
0.00123843
0.00211868
0.00276153
0.00320419
0.00334477
0.00329295
0.00306653
0.00272192
0.0022962
0.00191619
0.00150808
0.00111582
0.000798039
0.000538323
0.000479157
0.000438786
0.000837219
0.000853718
0.00172289
0.000824215
0.00160198
0.00223601
0.00274422
0.00309564
0.00321301
0.00316996
0.00297914
0.00268534
0.00232149
0.00199057
0.00163952
0.00130446
0.00103667
0.000821566
0.000778763
0.000754032
0.00108036
0.00111361
0.00178625
0.00124234
0.0018422
0.00231696
0.00272545
0.00300717
0.00310534
0.00306851
0.00290578
0.00265336
0.00233964
0.00204935
0.00174582
0.00145763
0.00122987
0.00104982
0.00101773
0.00100382
0.00127384
0.00131896
0.00185136
0.00152884
0.00200473
0.00237193
0.00270492
0.00293379
0.0030156
0.00298343
0.00284352
0.00262463
0.0023529
0.00209631
0.00183154
0.00158194
0.00138647
0.00123385
0.00120997
0.00120274
0.00142864
0.00148073
0.00191056
0.00172818
0.00211575
0.0024077
0.00268371
0.00287133
0.00294016
0.00291114
0.00278969
0.00259859
0.00236133
0.00213283
0.00190106
0.00168311
0.00151349
0.00138304
0.00136502
0.00136221
0.00155314
0.00160943
0.00196215
0.0018695
0.00219155
0.00242991
0.00266155
0.00281723
0.00287558
0.00284954
0.00274296
0.00257425
0.00236629
0.00216089
0.00195643
0.00176507
0.00161679
0.00150435
0.00149016
0.00149012
0.00165329
0.00171133
0.0020061
0.00197065
0.0022436
0.00244221
0.00263954
0.00277044
0.00281943
0.0027958
0.00270176
0.00255183
0.00236848
0.00218288
0.0020006
0.00183158
0.00170059
0.00160215
0.00159167
0.00159309
0.00173447
0.00179216
0.00204232
0.00204373
0.00227897
0.00244699
0.00261774
0.00272871
0.00277081
0.0027487
0.00266505
0.00253064
0.00236767
0.00219859
0.00203594
0.00188531
0.00176816
0.00168187
0.00167433
0.00167586
0.0017994
0.00185663
0.00207177
0.00209664
0.00230202
0.00244715
0.00259661
0.00269142
0.00272756
0.00270772
0.00263244
0.00251025
0.00236531
0.00220943
0.00206306
0.00192832
0.00182258
0.0017463
0.00174008
0.00174239
0.00185137
0.00190663
0.00209528
0.00213402
0.00231701
0.0024435
0.00257555
0.00265845
0.00268888
0.00267087
0.00260274
0.00249093
0.00236151
0.00221753
0.0020835
0.00196277
0.00186706
0.00179734
0.00179416
0.00179541
0.00189329
0.00194656
0.00211355
0.00216101
0.0023257
0.00243668
0.00255634
0.00262863
0.00265513
0.00263778
0.00257612
0.00247345
0.00235582
0.0022209
0.00209947
0.0019894
0.00190035
0.00183823
0.00183684
0.0018369
0.00192541
0.00197654
0.00212646
0.00217901
0.00232915
0.00242803
0.00253708
0.00260092
0.00262356
0.00260905
0.00255134
0.00245462
0.00234956
0.002223
0.00211073
0.00201087
0.00192803
0.00187056
0.00187142
0.00186988
0.00195115
0.00199972
0.00213705
0.00219096
0.00233091
0.00241877
0.00252013
0.002577
0.00259618
0.00258319
0.00252968
0.00243867
0.00234295
0.00222173
0.0021168
0.00202554
0.00194727
0.00189334
0.00189755
0.00189336
0.00196907
0.00201527
0.00214195
0.0021965
0.00232787
0.00240644
0.0025024
0.00255331
0.00257029
0.00255865
0.00250805
0.00242121
0.00233372
0.00221956
0.00212259
0.00203873
0.00196299
0.00191366
0.0019194
0.00191293
0.00198381
0.00202848
0.00214669
0.00220092
0.00232586
0.00239694
0.00248851
0.00253486
0.00254776
0.00253971
0.00249124
0.00240672
0.00232835
0.00221339
0.00212144
0.00204411
0.00196975
0.00192292
0.00193244
0.00192212
0.00199053
0.00203209
0.00214509
0.00219668
0.00231861
0.00238103
0.00247173
0.00251382
0.00252413
0.00251862
0.00247107
0.00238782
0.0023169
0.00221076
0.00212357
0.0020524
0.00197884
0.00193389
0.00194623
0.00193339
0.00199855
0.00203912
0.00214709
0.00219744
0.00231632
0.00237298
0.00246182
0.00250085
0.00250853
0.00250592
0.00245951
0.00237726
0.00231265
0.00219864
0.00211463
0.00205023
0.00197513
0.0019319
0.00194904
0.0019306
0.00199416
0.00203315
0.00213804
0.00218526
0.00230405
0.00235322
0.00244448
0.00248043
0.00248399
0.00248564
0.00243895
0.00235545
0.00229889
0.00219692
0.00211637
0.00205567
0.00197854
0.00193743
0.00195744
0.00193543
0.00199867
0.00203635
0.00213977
0.00218488
0.00230401
0.00234815
0.00244061
0.0024739
0.00247523
0.00248076
0.00243359
0.00234869
0.00229787
0.00217889
0.00210053
0.00204877
0.00196537
0.00192457
0.00195381
0.00192263
0.00198443
0.00202183
0.00212398
0.00216463
0.00228765
0.00232249
0.00242256
0.00245168
0.00244753
0.00246137
0.00241127
0.00232151
0.00228122
-0.0145946
-0.035205
-0.0551674
-0.0740272
-0.0896787
-0.0995333
-0.09321
-0.223882
-0.660239
0.845662
0.413952
0.304787
0.225653
0.166319
0.121012
0.0850927
0.0554228
0.0298524
0.00686721
-0.0143148
-0.0334556
-0.0527943
-0.0722682
-0.0908298
-0.105002
-0.108516
-0.0832732
-0.199808
0.994877
0.371287
0.266066
0.194559
0.142698
0.103738
0.0729935
0.0475068
0.0253138
0.00503838
-0.0124135
-0.0288321
-0.045906
-0.0639175
-0.0826758
-0.100648
-0.113708
-0.108621
-0.215024
-1.10431
0.968747
0.317868
0.221391
0.159507
0.116263
0.0844384
0.0595085
0.0388098
0.0206474
0.00385818
-0.0103905
-0.0241525
-0.0387182
-0.054492
-0.0716748
-0.089707
-0.106436
-0.109967
-0.203457
-0.563115
0.898041
0.264138
0.180174
0.128373
0.0933131
0.0678918
0.0480273
0.031455
0.0167803
0.00306396
-0.00825713
-0.0195795
-0.0316975
-0.045024
-0.0599463
-0.0763196
-0.0937906
-0.102192
-0.18484
-0.252109
0.802102
0.212492
0.143627
0.10165
0.0740185
0.0541493
0.0385824
0.0254905
0.0137747
0.00270693
-0.00637235
-0.01561
-0.0255498
-0.03655
-0.0490407
-0.0630067
-0.0789743
-0.0881915
-0.158481
-0.188477
0.709883
0.169089
0.113449
0.0798649
0.0584691
0.0431324
0.0310382
0.0207483
0.011424
0.00252041
-0.0047369
-0.0122255
-0.020293
-0.0292147
-0.0393891
-0.0507672
-0.0642613
-0.0721826
-0.130738
-0.155087
0.613609
0.131209
0.0881767
0.0619877
0.0458926
0.0342798
0.0250042
0.0169761
0.00958693
0.00244732
-0.00337501
-0.00942398
-0.0159238
-0.0230583
-0.0311527
-0.0400261
-0.0505375
-0.0558379
-0.0575046
-0.0526679
0.532124
0.0986279
0.0672157
0.0474552
0.035802
0.0272117
0.0201995
0.0139788
0.00813921
0.00242051
-0.00225258
-0.00712879
-0.0123407
-0.0179905
-0.024335
-0.0310823
-0.0391779
-0.0423744
-0.0446483
-0.0398413
0.438153
0.0712313
0.0500279
0.0357676
0.0277647
0.0215958
0.0163856
0.0116009
0.00699787
0.0024201
-0.00133863
-0.00526683
-0.00943238
-0.0138674
-0.0187615
-0.0237165
-0.0296614
-0.0307901
-0.0324749
-0.0228817
0.36225
0.0489072
0.0362252
0.0265328
0.0214405
0.0171726
0.0133753
0.00972021
0.00609746
0.00243126
-0.000597882
-0.00376407
-0.00708838
-0.0105473
-0.0142704
-0.0177745
-0.0218962
-0.0212163
-0.0213594
-0.00633508
0.288136
0.0313168
0.025402
0.0193952
0.0165387
0.0137256
0.0110154
0.00823901
0.00538886
0.00244843
-7.5454e-08
-0.00255692
-0.00521046
-0.00789691
-0.0106967
-0.0130734
-0.0157293
-0.0136772
-0.0120187
0.00582319
0.147518
0.0180991
0.0171994
0.0140443
0.0128131
0.011074
0.00917976
0.00707805
0.00483278
0.0024681
0.000481293
-0.00158971
-0.00371236
-0.00579698
-0.00788719
-0.00943104
-0.0109864
-0.00807814
-0.00470975
0.0133134
0.11083
0.0086898
0.0112361
0.0101778
0.0100425
0.00906123
0.00776214
0.00617152
0.00439696
0.00248825
0.000868087
-0.000816363
-0.00252101
-0.00414307
-0.00570211
-0.0066697
-0.00748547
-0.00432263
-0.000298416
0.0157623
0.0782168
0.00308513
0.00728427
0.00754117
0.0080376
0.00755449
0.00667446
0.00546561
0.00405575
0.00250747
0.00117876
-0.000198344
-0.00157494
-0.00284486
-0.00401506
-0.00461148
-0.00499407
-0.00211951
0.00145884
0.0157679
0.0511702
0.000473883
0.00490689
0.00584062
0.00661779
0.00643673
0.00584222
0.00491582
0.0037879
0.00252477
0.00142796
0.000295459
-0.000823544
-0.00182655
-0.00271597
-0.0030904
-0.00327109
-0.00108345
0.000949546
0.00926804
0.0178668
-0.000258796
0.00361792
0.00479606
0.0056252
0.00560991
0.00520457
0.00448651
0.00357657
0.00253943
0.00162767
0.000690645
-0.000225644
-0.00102569
-0.00171098
-0.00194992
-0.00202979
-0.000423686
0.000619929
0.00872952
0.000162772
0.0002823
0.00305446
0.00417579
0.00493102
0.00499532
0.0047134
0.00414916
0.00340842
0.00255104
0.00178742
0.0010071
0.000251146
-0.000393556
-0.000929299
-0.00108455
-0.00111436
7.74546e-05
0.000647201
0.00502002
-1.12004e-05
0.000843031
0.00282285
0.00378895
0.00443556
0.00453256
0.00433147
0.0038818
0.00327328
0.00255951
0.00191511
0.00126093
0.000632405
0.000107445
-0.000317399
-0.000420151
-0.000424754
0.000468315
0.00079663
0.0033592
0.000329153
0.00134217
0.00273951
0.0035377
0.00407407
0.00417891
0.00403122
0.00366772
0.00316313
0.00256474
0.0020168
0.00146468
0.000938169
0.000506271
0.000164739
9.54823e-05
0.000104267
0.000789677
0.00100766
0.00270827
0.000855287
0.00172062
0.00271552
0.00336475
0.00380342
0.00390411
0.00379209
0.00349437
0.00307213
0.00256707
0.00209756
0.00162838
0.0011839
0.000825247
0.000547016
0.000499303
0.00051484
0.00105004
0.00121034
0.00239707
0.00126036
0.00198169
0.00270992
0.00323796
0.00359526
0.00368685
0.00359928
0.00335231
0.00299592
0.00256639
0.0021609
0.00175986
0.00138181
0.00108111
0.00085162
0.000818246
0.000836712
0.00126268
0.00139313
0.00226633
0.00157227
0.00216223
0.00270844
0.00313983
0.00343131
0.00351217
0.00344157
0.00323446
0.00293099
0.00256376
0.002211
0.00186537
0.00154149
0.00128691
0.00109542
0.00107191
0.00109106
0.00143511
0.00154827
0.002213
0.00179746
0.00228312
0.00270493
0.00306027
0.00329901
0.00336961
0.00331128
0.00313543
0.00287502
0.00255834
0.00224915
0.00194981
0.00167054
0.00145309
0.00129161
0.00127415
0.00129363
0.00157545
0.00167758
0.00219894
0.00195956
0.00236347
0.00269757
0.00299305
0.00319063
0.00325121
0.00320212
0.00305152
0.00282596
0.00255155
0.00227862
0.00201706
0.00177453
0.00158723
0.00144945
0.00143685
0.00145527
0.00168928
0.00178317
0.00220252
0.00207533
0.00241592
0.00268652
0.00293536
0.00309971
0.00315206
0.00310958
0.00297931
0.00278255
0.00254289
0.00230018
0.00207088
0.00185858
0.0016954
0.00157694
0.00156773
0.00158501
0.00178192
0.00186918
0.00221313
0.00215808
0.00244851
0.00267263
0.00288428
0.00302241
0.0030677
0.00303078
0.0029169
0.00274335
0.00253324
0.00231539
0.00211285
0.00192599
0.00178289
0.00168025
0.00167294
0.00168886
0.00185664
0.00193799
0.00222597
0.00221664
0.00246784
0.0026567
0.00283908
0.00295649
0.00299502
0.00296249
0.0028623
0.0027082
0.00252287
0.00232636
0.00214555
0.00198013
0.0018533
0.00176295
0.001758
0.00177225
0.00191728
0.00199284
0.00223789
0.00225792
0.00247784
0.00263902
0.00279838
0.00289886
0.00293245
0.00290301
0.00281409
0.00267603
0.00251126
0.00233257
0.00217106
0.0020233
0.00190953
0.00182997
0.00182687
0.00183883
0.0019655
0.00203656
0.00224809
0.00228639
0.00248093
0.00262106
0.00276177
0.0028483
0.00287741
0.00285147
0.00277161
0.0026462
0.00249959
0.00233526
0.00218977
0.00205729
0.0019543
0.00188371
0.00188109
0.00189202
0.00200377
0.00206986
0.00225609
0.00230468
0.00247993
0.0026027
0.00272795
0.00280423
0.00282876
0.00280561
0.00273346
0.00261877
0.00248782
0.00233631
0.00220299
0.00208399
0.0019905
0.00192572
0.00192538
0.00193383
0.00203436
0.00209615
0.00226174
0.00231649
0.0024757
0.00258378
0.00269814
0.00276506
0.00278652
0.00276481
0.00269954
0.00259427
0.00247524
0.00233369
0.00221286
0.00210408
0.00201682
0.00195907
0.00195993
0.00196608
0.00205717
0.00211504
0.00226442
0.00232237
0.0024687
0.00256523
0.00267017
0.00272958
0.00274783
0.00272959
0.0026686
0.00256949
0.00246314
0.00233059
0.00221886
0.00211988
0.00203849
0.00198498
0.00198755
0.00199127
0.00207515
0.002129
0.00226655
0.00232441
0.00246188
0.00254772
0.0026459
0.00269908
0.00271434
0.00269815
0.00264159
0.00254836
0.00245149
0.00232503
0.00222066
0.00212988
0.00205278
0.00200255
0.00200794
0.00200839
0.00208683
0.00213711
0.0022647
0.00232206
0.00245201
0.00252873
0.0026223
0.00267008
0.00268349
0.00266909
0.00261558
0.00252665
0.00243814
0.00231907
0.00222274
0.002139
0.00206419
0.00201845
0.00202485
0.00202252
0.00209636
0.00214404
0.00226385
0.00231988
0.00244433
0.00251359
0.00260346
0.00264712
0.00265662
0.00264621
0.00259491
0.00250841
0.00242919
0.00230996
0.00221879
0.00214116
0.00206755
0.00202432
0.00203395
0.00202742
0.00209911
0.00214273
0.00225801
0.00231055
0.00243281
0.00249334
0.00258294
0.00262268
0.0026297
0.00262219
0.0025718
0.00248666
0.00241503
0.00230474
0.00221853
0.00214667
0.00207372
0.00203251
0.00204439
0.00203508
0.00210391
0.00214562
0.00225658
0.00230703
0.00242705
0.00248157
0.00256993
0.00260685
0.00261118
0.00260694
0.00255761
0.00247353
0.00240844
0.00229071
0.002208
0.00214233
0.0020677
0.00202859
0.00204448
0.00202943
0.00209733
0.00213644
0.00224519
0.00229164
0.00241242
0.0024591
0.0025505
0.00258456
0.00258463
0.00258498
0.00253521
0.00244992
0.00239311
0.00228755
0.00220859
0.00214625
0.00206956
0.00203282
0.00205104
0.00203236
0.00210036
0.00213737
0.00224536
0.00228894
0.00241077
0.00245202
0.00254517
0.00257662
0.00257427
0.00257887
0.00252839
0.00244176
0.00239095
0.00226819
0.0021922
0.00213768
0.00205465
0.00201933
0.00204523
0.00201742
0.00208543
0.00212049
0.0022288
0.00226644
0.00239358
0.00242455
0.00252636
0.00255382
0.00254532
0.00255883
0.00250488
0.00241341
0.00237366
0.0102397
-0.00170552
-0.0107456
-0.0157496
-0.0146683
-0.00498463
0.0182378
0.0656684
0.161666
0.264298
0.242238
0.232313
0.201622
0.167316
0.135295
0.106802
0.0818604
0.0601125
0.0411305
0.0245594
0.00488223
-0.00746769
-0.0179001
-0.0256007
-0.0289423
-0.0250478
-0.00996918
0.0230141
0.106004
0.235419
0.236526
0.222945
0.188691
0.153585
0.122347
0.0953791
0.0721938
0.0521114
0.0344962
0.0188533
0.0018551
-0.00968804
-0.020135
-0.0289736
-0.0349916
-0.0356773
-0.0263608
0.000990517
0.0674591
0.201901
0.223277
0.204126
0.16764
0.133599
0.104857
0.0808806
0.0606853
0.0433431
0.0281004
0.0143953
3.87417e-05
-0.010295
-0.0200766
-0.029021
-0.0362969
-0.039962
-0.0358559
-0.0154669
0.0399779
0.164036
0.206117
0.180863
0.144368
0.112968
0.0876314
0.0670922
0.0500544
0.0354903
0.0226368
0.0109448
-0.000636207
-0.00957335
-0.0182905
-0.0266502
-0.0341225
-0.0392423
-0.0388391
-0.0243075
0.0216726
0.129709
0.183768
0.15438
0.120762
0.0932724
0.0718542
0.0548568
0.0408873
0.0289508
0.0183504
0.00860035
-0.000749068
-0.00832368
-0.0158547
-0.0232855
-0.0302964
-0.0357943
-0.037513
-0.0276499
0.00734365
0.107226
0.163685
0.129531
0.0994036
0.0759183
0.0582964
0.0445474
0.0332983
0.0236489
0.0150051
0.00696504
-0.00053744
-0.00686307
-0.0132249
-0.0195975
-0.0257912
-0.0309578
-0.0335652
-0.0267135
-0.000603424
0.088494
0.144042
0.10617
0.0803536
0.0609008
0.0468484
0.0359923
0.0270951
0.0193931
0.0124112
0.00583869
-0.000192372
-0.00542403
-0.0107144
-0.016038
-0.021278
-0.0257317
-0.0284489
-0.0235041
-0.00745454
0.0719111
0.12424
0.0846605
0.0637203
0.0481653
0.0373513
0.0289925
0.0220758
0.0159923
0.0103896
0.00504491
0.00019568
-0.00410294
-0.00845376
-0.0128166
-0.0171127
-0.0207187
-0.0230867
-0.0189347
-0.00711406
0.0620224
0.105014
0.0655763
0.0495384
0.0375702
0.0295866
0.0233258
0.0180432
0.013284
0.00881123
0.00448007
0.000573227
-0.00294448
-0.00649484
-0.0100171
-0.0134485
-0.0162041
-0.018006
-0.0141015
-0.00494641
0.0540566
0.0865475
0.0491125
0.0377085
0.0289272
0.023333
0.0187877
0.0148256
0.0111333
0.00757516
0.00407134
0.0009171
-0.0019559
-0.00483895
-0.00765116
-0.0103337
-0.0123207
-0.0134988
-0.00955365
-0.00193773
0.0487404
0.0693127
0.0354011
0.0280924
0.0220343
0.0183774
0.0151946
0.0122767
0.00943123
0.00660593
0.00377204
0.00121744
-0.00112873
-0.00346442
-0.00569308
-0.00775596
-0.00910376
-0.0097153
-0.00568716
0.00103085
0.0449171
0.0537939
0.0244313
0.020509
0.0166802
0.0145207
0.0123835
0.0102715
0.00808832
0.00584492
0.00354998
0.00147291
-0.000445821
-0.00233829
-0.00409864
-0.00566848
-0.00652557
-0.00669644
-0.00270538
0.00342685
0.0417262
0.0399308
0.0160445
0.0147341
0.0126434
0.0115753
0.0102101
0.00870385
0.00703134
0.0052466
0.00338318
0.00168617
0.000112504
-0.00142457
-0.00281609
-0.00400756
-0.00452086
-0.00441634
-0.000728243
0.00459754
0.0363054
0.0281347
0.0101861
0.0105744
0.00971483
0.00937242
0.00854836
0.00748457
0.00620034
0.00477482
0.003256
0.00186171
0.000565765
-0.000687659
-0.00179259
-0.00270189
-0.0029964
-0.00276943
0.000351013
0.00451585
0.0281816
0.0182873
0.00646825
0.00773787
0.00766436
0.00775213
0.00728754
0.00653838
0.00554651
0.00440139
0.00315727
0.00200453
0.000932065
-9.56999e-05
-0.000979446
-0.00168159
-0.00184999
-0.00161359
0.000765133
0.0034418
0.0170448
0.00972798
0.0042969
0.00589131
0.0062666
0.00657204
0.00633355
0.00580332
0.0050306
0.00410404
0.00307913
0.00211956
0.0012273
0.000379235
-0.000333692
-0.000883218
-0.000979641
-0.000771293
0.000982053
0.00259478
0.00981146
0.00483208
0.00336242
0.00478646
0.00533391
0.00571485
0.00560993
0.00522985
0.00462105
0.00386539
0.0030159
0.00221128
0.00146452
0.000760018
0.000179617
-0.00025646
-0.000311811
-0.000139584
0.00115531
0.00215016
0.0063424
0.00314847
0.00295474
0.00412638
0.00470163
0.00508531
0.00505617
0.00477902
0.00429356
0.00367205
0.00296328
0.0022837
0.00165495
0.00106559
0.000588539
0.000237786
0.00020592
0.000345008
0.00131026
0.001944
0.00450257
0.0024758
0.00279823
0.00372697
0.00426322
0.00461611
0.00462761
0.00442134
0.00402924
0.00351364
0.00291827
0.00234005
0.00180733
0.00131087
0.000915189
0.000629379
0.000611085
0.000723133
0.00145632
0.00188569
0.00357146
0.00229687
0.00275375
0.00347627
0.00394968
0.00426003
0.00429148
0.00413434
0.0038139
0.00338235
0.00287897
0.00238337
0.00192906
0.00150789
0.0011767
0.000940889
0.000930475
0.00102128
0.00158837
0.00189621
0.0030667
0.00227444
0.00274346
0.00330912
0.00371772
0.00398428
0.00402407
0.00390167
0.00363656
0.00327228
0.00284363
0.00241548
0.00202585
0.00166608
0.00138643
0.00118971
0.001184
0.00125832
0.00170515
0.00193902
0.00279321
0.00231025
0.00274353
0.00319097
0.00353966
0.00376645
0.00380841
0.00371077
0.00348907
0.00317877
0.00281182
0.00243942
0.00210267
0.00179321
0.00155493
0.00138897
0.00138613
0.0014473
0.00180551
0.00199226
0.00263932
0.00235677
0.00274207
0.00310193
0.0033991
0.003591
0.00363199
0.00355242
0.00336475
0.00309861
0.00278183
0.00245548
0.00216304
0.0018952
0.00169052
0.00154905
0.00154746
0.00159902
0.00189072
0.00204586
0.00255193
0.00239863
0.00273651
0.00303069
0.00328463
0.00344787
0.00348561
0.00341969
0.00325939
0.00302898
0.00275415
0.00246622
0.00221005
0.00197658
0.00179944
0.00167754
0.00167718
0.00172034
0.00196145
0.00209447
0.00250114
0.00243113
0.00272697
0.0029713
0.0031898
0.0033286
0.00336314
0.00330722
0.0031689
0.00296793
0.00272769
0.00247181
0.00224672
0.00204167
0.00188659
0.00178091
0.00178123
0.00181799
0.00202015
0.00213646
0.00247045
0.00245421
0.00271378
0.00292005
0.00310924
0.00322807
0.00325921
0.00321145
0.00309086
0.00291362
0.00270281
0.00247337
0.00227415
0.00209309
0.00195646
0.00186428
0.00186448
0.0018959
0.00206775
0.00217102
0.00245141
0.00246886
0.00269834
0.00287478
0.00304025
0.00314281
0.0031701
0.00312873
0.00302285
0.0028655
0.00267938
0.00247265
0.00229447
0.00213371
0.0020121
0.00193036
0.00193134
0.00195803
0.0021064
0.00219882
0.00243815
0.00247707
0.00268136
0.00283382
0.00298025
0.00306916
0.00309365
0.00305688
0.00296309
0.00282214
0.00265653
0.00246882
0.00230938
0.00216537
0.00205578
0.00198336
0.00198512
0.00200719
0.00213674
0.00222087
0.00242826
0.0024801
0.00266335
0.00279707
0.00292781
0.00300521
0.00302683
0.00299477
0.00291068
0.00278268
0.00263519
0.00246289
0.00231905
0.00218956
0.00208999
0.00202544
0.00202676
0.00204607
0.00216034
0.0022367
0.00242004
0.00247847
0.00264548
0.00276347
0.00288095
0.00294993
0.0029682
0.0029399
0.00286402
0.00274697
0.00261512
0.00245653
0.00232454
0.0022079
0.0021172
0.00205762
0.00206039
0.00207591
0.00217881
0.00224871
0.00241245
0.00247444
0.00262764
0.00273204
0.00284029
0.00290131
0.00291746
0.00289136
0.00282276
0.00271532
0.00259539
0.00244761
0.00232789
0.00222093
0.00213595
0.00208278
0.00208612
0.00209829
0.00219167
0.00225599
0.00240438
0.00246768
0.00260968
0.00270329
0.0028034
0.00285798
0.00287163
0.00284963
0.0027856
0.00268447
0.00257724
0.00243906
0.00232829
0.00223066
0.00215114
0.00210176
0.00210623
0.00211514
0.00220138
0.00226032
0.00239763
0.00245941
0.00259386
0.00267727
0.00277166
0.00282083
0.00283202
0.00281257
0.00275319
0.00265806
0.00256036
0.00242901
0.00232552
0.00223566
0.00216009
0.00211369
0.00212046
0.00212548
0.0022064
0.00226067
0.00238869
0.00244887
0.00257684
0.00265145
0.00274206
0.00278646
0.00279619
0.00277895
0.00272276
0.00263203
0.00254274
0.00241912
0.00232367
0.00224042
0.00216689
0.00212482
0.0021321
0.00213385
0.00221037
0.00226105
0.00238196
0.00243987
0.00256325
0.00263052
0.00271815
0.00275894
0.00276498
0.00275212
0.0026982
0.00260997
0.00253008
0.00240698
0.00231674
0.00223917
0.00216662
0.00212704
0.002137
0.00213422
0.0022089
0.00225465
0.00237167
0.00242529
0.00254727
0.00260585
0.00269381
0.00273106
0.00273479
0.00272512
0.00267215
0.00258533
0.00251311
0.00239906
0.00231393
0.00224175
0.00216968
0.00213222
0.00214389
0.00213807
0.00221026
0.00225324
0.00236662
0.00241737
0.00253788
0.00259029
0.00267763
0.00271233
0.00271334
0.00270728
0.0026553
0.00256958
0.0025041
0.0023831
0.00230172
0.00223514
0.00216127
0.00212623
0.00214116
0.00212947
0.00220132
0.00224082
0.00235278
0.00239875
0.00252078
0.00256514
0.00265605
0.00268817
0.00268484
0.00268365
0.0026311
0.00254421
0.00248714
0.00237846
0.00230107
0.00223747
0.00216147
0.00212905
0.00214576
0.00213038
0.00220276
0.00223941
0.00235126
0.00239367
0.00251743
0.00255601
0.00264921
0.0026788
0.00267287
0.00267625
0.00262282
0.00253462
0.00248378
0.00235782
0.00228407
0.00222725
0.00214483
0.00211485
0.00213781
0.00211333
0.00218706
0.00222026
0.00233386
0.00236904
0.00249934
0.00252685
0.00262958
0.00265543
0.00264279
0.00265555
0.00259821
0.00250516
0.00246582
0.0237925
0.0170042
0.0129346
0.0122882
0.0160147
0.0251404
0.040768
0.0635193
0.0901743
0.115476
0.133961
0.137191
0.129993
0.116981
0.101557
0.0856846
0.0704302
0.0563471
0.043738
0.0328133
0.0172658
0.00967499
0.00431983
0.00188566
0.00340757
0.0103168
0.0243154
0.0471016
0.0796163
0.111915
0.135267
0.137641
0.127903
0.112779
0.0960797
0.0796337
0.06425
0.0502405
0.0377023
0.0266802
0.0121527
0.00447736
-0.00154934
-0.00534419
-0.0059083
-0.00166008
0.00968638
0.0309874
0.0649165
0.102997
0.131197
0.131731
0.1196
0.103193
0.086317
0.0704322
0.0559916
0.0430353
0.0314659
0.0211819
0.00829111
0.000958407
-0.00521934
-0.00978425
-0.0118663
-0.00994124
-0.00154392
0.0169962
0.0498775
0.0933696
0.12422
0.121999
0.108078
0.0913805
0.0752377
0.0606196
0.0476356
0.036113
0.0258256
0.0165862
0.0058192
-0.000863203
-0.00676911
-0.0115568
-0.0145187
-0.0142908
-0.00852371
0.00700604
0.0375206
0.0861943
0.115039
0.109413
0.0946871
0.0786978
0.0640344
0.0511702
0.0399429
0.0300468
0.0211931
0.0131619
0.00426849
-0.00163708
-0.00702904
-0.0116571
-0.0149724
-0.0158199
-0.012174
0.000248653
0.0263549
0.0748649
0.10439
0.0957042
0.0811032
0.0664522
0.0536392
0.0426839
0.0332376
0.0249303
0.0174628
0.01062
0.0033599
-0.001742
-0.00650262
-0.0107334
-0.0140159
-0.0153866
-0.0132038
-0.00336072
0.0182685
0.0641875
0.0933326
0.0817685
0.0680566
0.0551534
0.0443581
0.0353039
0.0275449
0.0207027
0.0145033
0.00876049
0.00285015
-0.00148821
-0.00559194
-0.0093093
-0.0123211
-0.0138206
-0.0125577
-0.00476442
0.0121123
0.054384
0.0819676
0.0681579
0.0559976
0.045077
0.0363113
0.029038
0.0227989
0.0172483
0.0121603
0.0073895
0.00258862
-0.00105905
-0.00453522
-0.00770768
-0.0103276
-0.0117013
-0.0109036
-0.00446142
0.00911513
0.0472053
0.0708494
0.0554665
0.0452318
0.0363414
0.029492
0.0238114
0.0188929
0.0144475
0.0103082
0.00637348
0.00247296
-0.000570418
-0.00347831
-0.00612688
-0.00831622
-0.00943275
-0.00881222
-0.00326891
0.00773834
0.0413644
0.0599957
0.043988
0.0358795
0.0289504
0.0238259
0.019517
0.0157117
0.0121895
0.00884298
0.00561278
0.00244071
-8.62824e-05
-0.00249816
-0.00467372
-0.00644728
-0.00726236
-0.00665274
-0.00169685
0.00738635
0.0369248
0.04969
0.0339787
0.0279855
0.0228497
0.019206
0.0160369
0.0131447
0.0103777
0.00768315
0.0050379
0.00245247
0.000359463
-0.00163063
-0.00339789
-0.00480214
-0.00533312
-0.004671
-0.000153705
0.00746031
0.0333527
0.0401263
0.0255626
0.0215154
0.0179405
0.0155084
0.0132529
0.0110898
0.00892911
0.00676363
0.00459881
0.00248487
0.000751912
-0.000886561
-0.00231334
-0.00340918
-0.0037091
-0.00300178
0.00109724
0.00752047
0.0300747
0.0313592
0.0187525
0.0163762
0.0140936
0.0126024
0.0110523
0.00945599
0.00777422
0.00603359
0.00425995
0.00252425
0.00108753
-0.000262112
-0.00141224
-0.00226319
-0.00240056
-0.00170041
0.00189108
0.00714835
0.0259217
0.0235394
0.0135379
0.0124535
0.0111675
0.0103592
0.00933082
0.00816368
0.00685437
0.00545202
0.00399537
0.00256299
0.00136871
0.000254364
-0.000675224
-0.00133887
-0.00137828
-0.000743973
0.00223505
0.00627244
0.0206195
0.01674
0.00976317
0.00957391
0.00900099
0.00865258
0.00799418
0.00714421
0.00612137
0.00498693
0.00378606
0.0025973
0.00160078
0.000676895
-7.8449e-05
-0.000601598
-0.000592456
-6.46016e-05
0.00224885
0.00504121
0.0143439
0.0109201
0.00715198
0.00752902
0.00742957
0.00736654
0.00696005
0.00633995
0.00553596
0.00461292
0.00361828
0.00262546
0.00179031
0.00102048
0.000402294
-1.55483e-05
1.3831e-05
0.000434457
0.00217873
0.00402783
0.00971426
0.007108
0.00555917
0.00614804
0.00630885
0.00640137
0.00615935
0.00570345
0.00506603
0.00430993
0.00348178
0.00264703
0.00194344
0.00129833
0.000788594
0.00045044
0.000485423
0.000813625
0.00212129
0.00334824
0.00691597
0.00510778
0.00460755
0.00522487
0.00550692
0.00567336
0.00553598
0.00519687
0.00468656
0.00406258
0.00336894
0.0026623
0.00206648
0.00152253
0.0010986
0.000821383
0.000855239
0.00110981
0.00209462
0.00292277
0.00522777
0.00402192
0.00403377
0.00460393
0.00492644
0.00511904
0.00504673
0.00479069
0.00437756
0.00385862
0.00327404
0.00267168
0.0021642
0.00170279
0.0013475
0.00111747
0.00114755
0.00134551
0.00209712
0.00267509
0.00423599
0.00345766
0.00368345
0.00417776
0.00449843
0.00469151
0.00465866
0.00446205
0.00412403
0.00368892
0.00319323
0.00267607
0.00224124
0.00184744
0.00154712
0.00135404
0.00137977
0.00153474
0.00211694
0.00253623
0.0036385
0.00315198
0.0034567
0.00387695
0.00417604
0.00435665
0.00434736
0.00419369
0.00391399
0.00354618
0.00312306
0.0026758
0.00230131
0.00196296
0.00170724
0.00154355
0.00156501
0.00168817
0.00214636
0.00246237
0.00327342
0.00298334
0.0033032
0.00365669
0.00392647
0.00409054
0.00409475
0.00397233
0.00373856
0.00342493
0.00306186
0.00267248
0.00234757
0.00205499
0.00183544
0.00169537
0.00171313
0.00181163
0.00217832
0.00242592
0.0030437
0.00288508
0.00319169
0.00348993
0.00373001
0.00387548
0.00388717
0.00378793
0.00359036
0.00332111
0.00300702
0.00266563
0.00238252
0.00212805
0.001938
0.00181712
0.00183132
0.00191172
0.00220989
0.00240998
0.00289518
0.00282313
0.00310606
0.00335912
0.00357122
0.00369983
0.00371471
0.00363297
0.00346442
0.00323115
0.00295817
0.00265687
0.00240806
0.00218528
0.00201973
0.00191421
0.00192618
0.00199199
0.00223807
0.00240479
0.00279588
0.00278037
0.00303704
0.00325351
0.00344097
0.00355359
0.00357016
0.00350149
0.00335627
0.00315269
0.00291368
0.0026459
0.00242658
0.00223015
0.00208434
0.00199187
0.00200194
0.00205653
0.00226255
0.00240428
0.00272674
0.00274765
0.00297918
0.00316602
0.0033319
0.00343076
0.00344757
0.00338944
0.00326301
0.00308335
0.0028733
0.0026333
0.00243867
0.00226455
0.00213534
0.00205389
0.00206183
0.00210761
0.00228266
0.00240531
0.00267718
0.00272022
0.00292938
0.00309195
0.00323968
0.00332684
0.00334263
0.00329274
0.00318188
0.00302229
0.00283655
0.00262045
0.00244595
0.00229075
0.00217519
0.00210229
0.0021094
0.00214776
0.0022988
0.00240628
0.00263925
0.00269616
0.00288548
0.00302802
0.00316073
0.00323759
0.00325272
0.00320888
0.00311076
0.00296777
0.00280225
0.00260621
0.0024497
0.00231019
0.00220547
0.00214047
0.00214722
0.00217885
0.00231073
0.00240665
0.00260939
0.00267411
0.00284629
0.0029726
0.00309267
0.0031605
0.00317443
0.00313643
0.00304855
0.00291866
0.00277105
0.00259137
0.00244988
0.00232403
0.00222845
0.00217017
0.00217552
0.0022028
0.00231917
0.00240488
0.00258487
0.00265265
0.00281134
0.0029238
0.00303287
0.00309418
0.00310604
0.00307271
0.00299348
0.00287464
0.00274252
0.00257735
0.00244725
0.00233353
0.0022461
0.00219189
0.00219793
0.00222018
0.00232508
0.00240244
0.0025639
0.00263276
0.00277972
0.00287986
0.00298142
0.00303624
0.00304697
0.00301655
0.00294493
0.0028358
0.00271549
0.00256192
0.00244377
0.00233911
0.00225682
0.00220836
0.00221433
0.00223226
0.00232763
0.00239792
0.0025449
0.00261328
0.00275063
0.00284087
0.00293564
0.00298513
0.00299411
0.00296838
0.00290159
0.00279884
0.00269116
0.00254776
0.00243831
0.00234245
0.00226517
0.00222001
0.00222654
0.00224045
0.00232874
0.00239246
0.0025291
0.00259463
0.00272566
0.00280633
0.00289645
0.0029414
0.00294847
0.00292576
0.00286382
0.00276713
0.00266894
0.00253309
0.00243077
0.0023422
0.0022685
0.00222597
0.00223429
0.00224373
0.00232683
0.00238489
0.00251291
0.00257581
0.00270137
0.00277366
0.00286083
0.00290169
0.00290772
0.00288762
0.002829
0.00273677
0.00264695
0.00251916
0.0024248
0.00234241
0.00227046
0.00223208
0.0022404
0.00224612
0.00232502
0.00237863
0.00250014
0.00255993
0.00268175
0.00274693
0.00283186
0.00286963
0.00287224
0.00285684
0.00280057
0.00271087
0.0026305
0.00250392
0.00241476
0.00233761
0.00226639
0.00223044
0.00224092
0.00224181
0.00231915
0.00236706
0.00248528
0.00254009
0.00266123
0.00271786
0.00280369
0.00283834
0.00283883
0.00282689
0.00277161
0.00268334
0.00261066
0.00249324
0.00240929
0.00233712
0.0022662
0.00223245
0.00224411
0.00224171
0.00231691
0.00236129
0.0024765
0.00252772
0.00264811
0.0026985
0.00278429
0.00281671
0.0028145
0.00280647
0.00275212
0.00266497
0.00259915
0.00247536
0.00239532
0.0023282
0.00225535
0.00222428
0.00223852
0.00223014
0.00230552
0.00234564
0.00246013
0.00250593
0.0026285
0.00267074
0.00276057
0.0027907
0.00278413
0.00278115
0.00272619
0.00263787
0.00258054
0.00246921
0.00239336
0.00232886
0.0022538
0.00222558
0.00224109
0.00222894
0.00230527
0.00234186
0.00245686
0.00249846
0.00262339
0.00265955
0.00275217
0.0027799
0.00277058
0.00277246
0.00271644
0.00262683
0.00257592
0.00244737
0.00237571
0.00231706
0.00223548
0.00221061
0.00223105
0.00220984
0.00228873
0.00232056
0.00243857
0.00247184
0.00260436
0.00262885
0.00273171
0.00275597
0.00273948
0.00275108
0.00269082
0.00259636
0.00255728
0.0295593
0.0256751
0.0237621
0.0241862
0.0273
0.0333784
0.0424717
0.0541151
0.0669055
0.0786373
0.086953
0.0900726
0.0884322
0.0832467
0.0758366
0.0672934
0.0584314
0.0498372
0.0419386
0.0350799
0.023803
0.0192048
0.0164532
0.0159746
0.0182803
0.0239126
0.0332908
0.046407
0.062298
0.0775436
0.0883012
0.0917002
0.0890937
0.0825692
0.0739174
0.0643911
0.0547993
0.0456493
0.0372717
0.0299132
0.0184598
0.0134893
0.010079
0.00866397
0.00985014
0.0144117
0.0231878
0.0367555
0.0547013
0.0733483
0.0866086
0.0898401
0.0860455
0.0783305
0.0688761
0.058967
0.0493039
0.0402517
0.0320057
0.0246963
0.0139599
0.00892149
0.00513302
0.00299784
0.00313953
0.00645658
0.0140968
0.0272319
0.046165
0.0678878
0.0830187
0.0854725
0.0804736
0.0719471
0.0622244
0.0524741
0.0432252
0.0346884
0.0269372
0.0200077
0.0106499
0.00582236
0.00195523
-0.000602075
-0.00126519
0.000889764
0.00716489
0.019245
0.0381214
0.0622615
0.0779348
0.079
0.0730194
0.064206
0.0547793
0.0456789
0.03724
0.0295364
0.0225496
0.0162516
0.00827877
0.00383049
0.00010564
-0.00260504
-0.0037892
-0.00257505
0.00232922
0.0128998
0.0304886
0.0554465
0.0716927
0.0712139
0.0646569
0.0560353
0.0473171
0.0391636
0.0317322
0.0249938
0.0188731
0.0133081
0.0066384
0.00265881
-0.000778842
-0.00343469
-0.00487594
-0.00431637
-0.000577041
0.00843922
0.0241477
0.0487464
0.0649462
0.0627682
0.0560388
0.0479898
0.0402558
0.0332053
0.0268539
0.0211065
0.0158623
0.0110493
0.00551421
0.00202927
-0.00104592
-0.00351074
-0.00500654
-0.00484098
-0.0020101
0.00556773
0.0189957
0.0424473
0.0579124
0.0541119
0.0476278
0.0404374
0.0338412
0.0279359
0.0226435
0.017838
0.0134183
0.00931871
0.00475126
0.00174706
-0.000940747
-0.00313969
-0.0045532
-0.00457169
-0.00237188
0.00406625
0.0154926
0.0372553
0.0509377
0.0456883
0.039771
0.0336051
0.0281902
0.0233889
0.019077
0.0151244
0.0114463
0.00799317
0.00423336
0.00167249
-0.000637199
-0.0025423
-0.00379668
-0.00385947
-0.00207828
0.00346882
0.0131168
0.0328538
0.0440697
0.0377672
0.0326707
0.027605
0.0233339
0.0195417
0.0160991
0.0128915
0.00985892
0.00697288
0.00388072
0.00171456
-0.00024635
-0.00186178
-0.00292574
-0.00295359
-0.00144212
0.00341621
0.01155
0.029221
0.037454
0.0305845
0.0264529
0.0224782
0.0192515
0.0163411
0.0136423
0.0110668
0.00858297
0.00618307
0.00363807
0.00181459
0.000163201
-0.0011862
-0.00206047
-0.0020232
-0.000696598
0.00359629
0.0104414
0.0261022
0.0311881
0.0242904
0.0211678
0.0182098
0.0158872
0.0137169
0.011635
0.00958324
0.0075571
0.00556705
0.0034682
0.00193681
0.000552337
-0.000564581
-0.00126888
-0.00116961
6.48533e-06
0.0037831
0.00950071
0.0231796
0.0253322
0.0189626
0.0168074
0.014745
0.0131657
0.0115927
0.010008
0.00838167
0.00673169
0.0050827
0.00334632
0.00206072
0.000901897
-1.89199e-05
-0.000581794
-0.000442463
0.000583138
0.00382829
0.00847854
0.0199624
0.0199689
0.0146342
0.0133256
0.0120035
0.0110012
0.00989172
0.00869702
0.00741036
0.00606606
0.0046983
0.00325611
0.00217555
0.00120492
0.000445235
-5.87774e-06
0.000147517
0.00101273
0.00369796
0.00731048
0.0163229
0.0151994
0.0112645
0.0106329
0.00988375
0.00930345
0.00854035
0.00764431
0.00662522
0.00552736
0.00439034
0.00318648
0.00227596
0.00146087
0.000832174
0.000467007
0.000613728
0.00131559
0.00344147
0.00607463
0.0124359
0.0111176
0.00874174
0.00860857
0.00827456
0.00798477
0.00747158
0.0068
0.00598977
0.00508938
0.00414087
0.00313036
0.00236062
0.00167366
0.00115047
0.000851145
0.000980684
0.00153605
0.00317759
0.00503475
0.00931128
0.0081612
0.00698833
0.00713921
0.00707071
0.00696579
0.00662702
0.00612171
0.00547339
0.00473118
0.00393646
0.00308328
0.00242969
0.00184816
0.00141018
0.0011616
0.00127067
0.00170406
0.00296039
0.00426245
0.0071411
0.00627388
0.00580373
0.00608662
0.00617231
0.00617762
0.00595778
0.00557459
0.00505191
0.00443616
0.00376695
0.0030421
0.00248469
0.00198986
0.00162071
0.00141174
0.00150107
0.00183786
0.00279999
0.00371991
0.00568691
0.00508174
0.0050048
0.00533306
0.00549859
0.00556447
0.00542447
0.0051308
0.00470562
0.00419127
0.00362459
0.00300473
0.00252704
0.00210381
0.00179056
0.00161309
0.00168504
0.00194706
0.00269029
0.00335352
0.00473649
0.00434143
0.00446182
0.00478802
0.00498794
0.00508336
0.00499619
0.00476819
0.00441906
0.00398632
0.00350395
0.00297031
0.00255868
0.00219476
0.00192696
0.00177471
0.00183238
0.00203727
0.0026173
0.00310838
0.00411155
0.00387182
0.00408347
0.00438823
0.00459548
0.00470152
0.00464916
0.00446966
0.00418006
0.00381329
0.00339996
0.00293759
0.00258123
0.00226641
0.00203607
0.00190428
0.00195035
0.00211261
0.00257161
0.00294479
0.00369612
0.00356708
0.00381265
0.00408661
0.00428751
0.00439518
0.00436525
0.0042217
0.00397928
0.00366591
0.00331011
0.00290681
0.00259614
0.00232223
0.00212261
0.0020078
0.00204474
0.00217394
0.00254254
0.00283492
0.00341437
0.00336178
0.00361166
0.00385508
0.00404331
0.00414594
0.00413059
0.00401427
0.00380922
0.0035395
0.00323085
0.00287681
0.00260504
0.00236539
0.00219116
0.00209033
0.0021194
0.00222421
0.00252456
0.00275931
0.00321872
0.00321746
0.00345776
0.00367252
0.00384555
0.00394145
0.00393483
0.00383909
0.00366413
0.00343003
0.00316113
0.0028483
0.00260852
0.00239763
0.00224465
0.00215533
0.00217903
0.00226442
0.00251252
0.00270611
0.00307899
0.00311158
0.00333609
0.00352561
0.00368338
0.00377082
0.00377021
0.00369004
0.00353934
0.00333481
0.00309874
0.00282057
0.0026084
0.00242159
0.00228585
0.00220658
0.00222596
0.0022962
0.00250425
0.00266661
0.00297611
0.00303011
0.00323761
0.00340495
0.00354807
0.00362741
0.0036304
0.0035628
0.00343161
0.00325084
0.00304291
0.0027936
0.00260469
0.00243838
0.00231724
0.00224655
0.00226201
0.00232053
0.00249757
0.0026362
0.00289875
0.0029646
0.00315576
0.00330409
0.00343423
0.00350611
0.00351067
0.00345291
0.00333788
0.00317713
0.00299292
0.00276843
0.00259848
0.0024496
0.00234068
0.00227667
0.00228986
0.00233868
0.00249146
0.00261167
0.00283766
0.00291075
0.0030863
0.00321849
0.00333735
0.00340216
0.00340807
0.00335762
0.00325587
0.00311171
0.00294716
0.00274361
0.00259078
0.00245639
0.00235707
0.00229951
0.00231123
0.00235159
0.00248509
0.00259111
0.0027887
0.00286504
0.00302668
0.00314515
0.00325431
0.0033125
0.00331887
0.00327529
0.00318416
0.00305309
0.00290609
0.00271971
0.00258118
0.0024595
0.00236835
0.00231638
0.00232578
0.00236035
0.00247829
0.00257218
0.00274839
0.00282464
0.00297522
0.0030817
0.00318209
0.00323563
0.00324115
0.00320304
0.0031209
0.00300086
0.00286906
0.0026979
0.0025702
0.00245986
0.00237609
0.0023273
0.00233664
0.00236513
0.0024716
0.00255555
0.00271431
0.00278942
0.00293012
0.00302564
0.00312021
0.00316871
0.00317405
0.0031395
0.00306524
0.0029549
0.0028347
0.00267586
0.00255968
0.00245774
0.00237849
0.00233476
0.00234341
0.00236673
0.00246372
0.00253937
0.00268452
0.00275755
0.00289008
0.00297668
0.00306578
0.00311007
0.00311441
0.00308507
0.00301585
0.00291189
0.00280415
0.00265599
0.00254819
0.00245448
0.00237975
0.00233882
0.00234749
0.00236611
0.00245611
0.00252418
0.00265974
0.00272873
0.00285608
0.0029338
0.0030193
0.00305993
0.00306294
0.00303704
0.00297283
0.00287494
0.00277655
0.00263665
0.00253574
0.00244881
0.00237725
0.0023386
0.00234856
0.00236222
0.00244717
0.00250875
0.00263631
0.00270179
0.00282458
0.00289442
0.0029778
0.00301503
0.00301742
0.00299446
0.00293371
0.00284026
0.00275017
0.00261862
0.00252554
0.00244433
0.0023742
0.00233951
0.00234899
0.00235851
0.00243946
0.00249585
0.0026175
0.00267912
0.00279895
0.002862
0.00294383
0.00297853
0.00297778
0.00295982
0.00290148
0.00281056
0.00272989
0.00260026
0.0025123
0.00243589
0.00236624
0.00233387
0.00234504
0.00234946
0.0024291
0.00247915
0.00259805
0.0026541
0.0027739
0.00282862
0.0029119
0.0029439
0.00294126
0.00292697
0.00286968
0.00278019
0.00270715
0.0025868
0.00250407
0.00243225
0.00236271
0.00233258
0.00234443
0.00234534
0.00242317
0.00246903
0.0025855
0.00263735
0.00275705
0.00280554
0.00288931
0.00291943
0.00291413
0.00290398
0.00284759
0.00275922
0.00269312
0.00256704
0.00248829
0.002421
0.0023494
0.00232214
0.00233597
0.0023308
0.00240928
0.00245024
0.00256657
0.00261249
0.00273492
0.00277527
0.00286347
0.00289161
0.00288199
0.00287703
0.00282
0.00273046
0.00267284
0.00255935
0.00248497
0.00241995
0.00234605
0.00232186
0.00233646
0.00232745
0.00240726
0.00244408
0.0025615
0.00260266
0.00272801
0.00276206
0.00285351
0.00287941
0.0028669
0.00286703
0.00280882
0.00271797
0.00266694
0.00253639
0.00246663
0.00240664
0.00232611
0.00230606
0.00232443
0.00230639
0.00238984
0.0024208
0.00254229
0.00257423
0.00270802
0.00272999
0.0028322
0.00285495
0.00283493
0.00284497
0.00278231
0.00268658
0.00264758
0.0308791
0.0286093
0.027642
0.028149
0.0302527
0.0339688
0.0391395
0.0453633
0.0519242
0.0578618
0.0622174
0.064317
0.0640922
0.0618738
0.058171
0.0535227
0.0484215
0.0432882
0.0384667
0.0342434
0.0263961
0.023601
0.0221419
0.0222574
0.0241706
0.0280375
0.033854
0.041315
0.0496467
0.0574287
0.0631136
0.0656271
0.065091
0.0621589
0.0576066
0.0521288
0.0462801
0.0404849
0.0350685
0.0302944
0.0216838
0.0184934
0.0165518
0.0161393
0.0175768
0.0211858
0.0271862
0.0354958
0.0454103
0.0551449
0.0622466
0.0650089
0.0639831
0.0602916
0.055007
0.0489467
0.0426774
0.0365797
0.030917
0.0258905
0.017367
0.0139611
0.0116565
0.010747
0.0116152
0.0147168
0.0204932
0.0291592
0.0402239
0.0517845
0.060104
0.0628073
0.0611704
0.0568163
0.0510486
0.0447274
0.0383743
0.0322956
0.0266787
0.0216591
0.0138935
0.0104767
0.00798484
0.00670078
0.00702765
0.00950277
0.0147376
0.0232577
0.0348671
0.0478818
0.0569143
0.0591689
0.0568989
0.0521045
0.046192
0.039972
0.0338752
0.0281189
0.0228172
0.0180476
0.0112005
0.00792502
0.00540394
0.00389488
0.00378781
0.00564536
0.0101657
0.0181211
0.0295765
0.0433923
0.0528928
0.0544768
0.0516904
0.0467238
0.0409729
0.0351324
0.0295221
0.0242752
0.0194467
0.0150716
0.00918125
0.0061491
0.0037225
0.00212932
0.00172676
0.00306437
0.00685309
0.0140332
0.0248346
0.0388428
0.0484227
0.0491317
0.0459902
0.0411042
0.0357599
0.0304903
0.0255048
0.0208671
0.0165908
0.0126855
0.00768461
0.00494993
0.00269921
0.00113209
0.00056524
0.00151202
0.0046384
0.0109739
0.0207663
0.0344669
0.0437082
0.0434483
0.0401587
0.0355738
0.0308095
0.0262182
0.0219152
0.0179144
0.0142067
0.0107898
0.00658358
0.00416506
0.00213523
0.00066967
4.39439e-05
0.000728538
0.00331521
0.00887251
0.0175784
0.0305881
0.0389701
0.0377275
0.034487
0.0303664
0.0262811
0.0224049
0.018783
0.0153993
0.0122368
0.00929169
0.00577268
0.00366445
0.00187156
0.000550514
-6.1439e-05
0.000463256
0.00262789
0.00750012
0.0151131
0.0271627
0.0342772
0.03218
0.0291759
0.025629
0.0222583
0.0190809
0.0160988
0.0132827
0.0106182
0.00810749
0.00517255
0.00335387
0.00179435
0.000635198
7.95977e-05
0.000514813
0.0023541
0.00663768
0.0132178
0.0241784
0.0297171
0.0269891
0.0243669
0.0214465
0.0187728
0.0162401
0.0138316
0.0115176
0.00929343
0.00716939
0.00472406
0.00316619
0.00182416
0.00082601
0.000345198
0.000731077
0.00231128
0.00607704
0.011702
0.0215164
0.0253483
0.0222873
0.020143
0.0178519
0.0158172
0.0138518
0.0119389
0.0100561
0.00821097
0.00642283
0.0043845
0.00305577
0.00190874
0.00105966
0.000655262
0.00100803
0.00236723
0.00565298
0.0103922
0.0190138
0.021217
0.0181623
0.016539
0.0148388
0.0133587
0.011872
0.0103733
0.00885175
0.00732682
0.00582549
0.00412319
0.00299229
0.00201539
0.00129782
0.000961919
0.00128259
0.0024383
0.00525108
0.00914512
0.0164606
0.0173792
0.0146653
0.0135522
0.0123722
0.0113479
0.0102493
0.00908735
0.00786249
0.00660376
0.00534417
0.00391844
0.00295614
0.00212503
0.00151962
0.00124037
0.00152403
0.0024865
0.00482743
0.00791473
0.0138032
0.0139171
0.0118051
0.011146
0.0103953
0.00972595
0.00893105
0.00803601
0.00705087
0.00601116
0.00495356
0.00375466
0.00293484
0.0022271
0.0017157
0.00148139
0.00172399
0.00250601
0.00439392
0.00673858
0.0111532
0.0109254
0.00954776
0.00925652
0.00883809
0.00843102
0.00786596
0.0071784
0.00638467
0.00552371
0.00463371
0.0036209
0.00292099
0.00231695
0.00188348
0.00168439
0.00188622
0.00251029
0.00400131
0.00573604
0.00891789
0.00860441
0.00785501
0.00781279
0.00762792
0.00740368
0.0070074
0.00647849
0.00583639
0.00512094
0.00436938
0.00350951
0.00291001
0.00239285
0.00202376
0.00185261
0.00201707
0.00250962
0.00367559
0.00494749
0.00722087
0.00694535
0.00662041
0.00672516
0.0066927
0.00658985
0.00631489
0.00590611
0.00538372
0.00478606
0.00414898
0.00341482
0.00289946
0.00245501
0.00213908
0.00199033
0.00212251
0.00250974
0.00341965
0.00435417
0.00598813
0.00578863
0.00572816
0.00590967
0.00596941
0.00594339
0.0057543
0.00543603
0.00500809
0.00450588
0.00396333
0.00333283
0.00288803
0.00250429
0.00223249
0.00210218
0.00220747
0.00251174
0.00322536
0.00392048
0.00511488
0.00499376
0.00508244
0.00529574
0.00540692
0.00542718
0.005298
0.00504783
0.00469444
0.00426978
0.0038057
0.003261
0.0028752
0.00254232
0.00230702
0.00219202
0.00227592
0.00251603
0.00307953
0.00360565
0.00449829
0.00444341
0.00460985
0.00482979
0.00496541
0.00501143
0.00492411
0.0047254
0.00443101
0.00406956
0.00367002
0.00319659
0.00286061
0.00257058
0.00236578
0.00226349
0.00233015
0.00252115
0.0029715
0.00337771
0.00406111
0.00405643
0.00425771
0.00446948
0.0046144
0.00467451
0.00461558
0.00445552
0.00420825
0.0038984
0.00355304
0.00313905
0.00284452
0.00259045
0.00241111
0.00231995
0.00237334
0.00252604
0.00289004
0.00321076
0.00374684
0.00377849
0.00399008
0.00418789
0.00433206
0.00439738
0.00435856
0.00422836
0.00401861
0.00375114
0.00345041
0.00308629
0.00282733
0.00260349
0.00244552
0.00236374
0.00240598
0.00253007
0.0028282
0.00308638
0.00351702
0.00357313
0.00378216
0.00396353
0.004102
0.00416868
0.00414294
0.00403552
0.00385625
0.0036235
0.00336059
0.00303832
0.00280881
0.0026107
0.00247077
0.00239692
0.00243122
0.00253237
0.00277951
0.00299236
0.00334536
0.00341733
0.00361687
0.00378191
0.0039126
0.00397699
0.00396079
0.00387079
0.00371617
0.00351239
0.00328085
0.00299395
0.00279001
0.00261351
0.00248828
0.00242173
0.00244967
0.00253296
0.00274085
0.00291876
0.0032141
0.00329558
0.00348332
0.00363242
0.00375426
0.00381538
0.00380562
0.00372977
0.00359504
0.00341455
0.00321001
0.00295269
0.00277041
0.00261253
0.00249988
0.00243967
0.0024621
0.00253144
0.00270874
0.00285992
0.00311231
0.00319739
0.00337305
0.00350782
0.00362105
0.0036784
0.0036725
0.00360776
0.00348951
0.00332869
0.00314704
0.00291525
0.00275059
0.00260862
0.00250667
0.00245135
0.00247029
0.00252815
0.00268151
0.00281194
0.00303036
0.00311718
0.00328042
0.00340241
0.00350783
0.00356102
0.00355824
0.00350186
0.00339723
0.00325273
0.00309004
0.00287987
0.00273133
0.0026026
0.00250899
0.00245871
0.00247519
0.00252324
0.00265751
0.00277173
0.00296368
0.00305004
0.00320192
0.00331254
0.00341092
0.00345979
0.00345892
0.00341024
0.00331648
0.00318489
0.00303924
0.00284691
0.00271185
0.00259479
0.00250836
0.0024626
0.00247593
0.002517
0.00263591
0.00273657
0.00290857
0.00299214
0.00313501
0.00323542
0.00332711
0.00337307
0.00337245
0.00332992
0.00324539
0.00312471
0.00299382
0.0028173
0.00269243
0.00258586
0.00250602
0.00246257
0.00247516
0.00250928
0.00261685
0.00270635
0.00286203
0.00294257
0.00307715
0.00316789
0.00325539
0.00329766
0.00329779
0.00325938
0.0031829
0.00307183
0.0029522
0.00278864
0.00267479
0.0025759
0.00249994
0.00246089
0.00247222
0.00250045
0.00259864
0.00267891
0.00282187
0.00289898
0.00302664
0.00310945
0.00319275
0.00323188
0.00323171
0.00319895
0.00312768
0.00302291
0.00291548
0.00276307
0.00265719
0.00256594
0.00249399
0.00245724
0.00246807
0.00249105
0.00258239
0.00265429
0.00278838
0.00286045
0.00298396
0.00305862
0.00313931
0.00317563
0.00317469
0.00314572
0.00307957
0.00298082
0.00288255
0.00273904
0.00263976
0.00255476
0.00248557
0.00245073
0.0024624
0.00247999
0.00256642
0.00263119
0.00275788
0.0028257
0.00294546
0.0030128
0.00309215
0.00312575
0.00312463
0.00309888
0.00303629
0.00294194
0.00285178
0.00271693
0.00262526
0.00254553
0.00247744
0.00244633
0.00245709
0.00247019
0.00255282
0.00261181
0.00273314
0.00279649
0.00291399
0.00297491
0.00305336
0.00308497
0.00308101
0.00306049
0.00300039
0.00290852
0.00282769
0.00269546
0.00260878
0.0025334
0.00246554
0.00243663
0.00244864
0.00245643
0.00253797
0.00259012
0.00270918
0.0027665
0.00288453
0.0029374
0.00301779
0.00304715
0.00304154
0.00302484
0.00296584
0.00287538
0.00280206
0.00267923
0.00259775
0.00252658
0.00245862
0.00243196
0.0024442
0.00244828
0.00252832
0.00257572
0.00269289
0.00274551
0.00286398
0.00291073
0.00299208
0.00301992
0.00301171
0.00299934
0.00294123
0.00285185
0.0027855
0.00265763
0.00258014
0.00251303
0.00244287
0.00241922
0.0024329
0.00243083
0.00251192
0.00255394
0.00267144
0.00271775
0.0028394
0.00287811
0.0029642
0.00299038
0.00297795
0.0029708
0.00291209
0.00282151
0.00276357
0.00264841
0.0025754
0.00251029
0.00243769
0.00241729
0.00243129
0.00242531
0.0025081
0.00254544
0.00266455
0.00270562
0.00283069
0.00286295
0.00295268
0.00297679
0.00296136
0.0029595
0.0028995
0.0028076
0.00275636
0.00262445
0.00255636
0.0024956
0.00241623
0.00240064
0.00241739
0.00240242
0.00248976
0.00252037
0.0026444
0.0026756
0.00280973
0.0028297
0.00293052
0.00295184
0.00292868
0.00293677
0.00287223
0.00277542
0.00273628
0.0299939
0.0286442
0.0281131
0.0284886
0.0298103
0.0320365
0.0350196
0.0384962
0.0420801
0.0453097
0.0477397
0.0490548
0.0491598
0.0481369
0.0461951
0.0436025
0.0406367
0.0375633
0.0346251
0.0320391
0.0266798
0.0249612
0.0241512
0.0243798
0.0257372
0.0282413
0.0317935
0.0361266
0.0407651
0.0450346
0.0482356
0.0498868
0.0499144
0.0485224
0.0460488
0.0428611
0.0393016
0.035668
0.0322133
0.0291539
0.0228454
0.0207947
0.0196659
0.0196288
0.0208411
0.0234136
0.0273468
0.032435
0.0381538
0.0435931
0.0476564
0.0496017
0.0494577
0.0476278
0.0446223
0.0409144
0.0368916
0.0328561
0.0290445
0.0256504
0.0190777
0.0167889
0.0153787
0.0150431
0.0159985
0.0184507
0.0225235
0.028131
0.0347704
0.041345
0.0462087
0.0483075
0.0478948
0.0456279
0.0421886
0.0381256
0.0338383
0.0296069
0.0256331
0.0220755
0.0158249
0.0134327
0.0118325
0.0112302
0.0118789
0.0140613
0.0180206
0.0238265
0.0310644
0.0385701
0.0440118
0.0460455
0.0452962
0.0426718
0.0389799
0.0347937
0.0304864
0.0262949
0.022376
0.0188486
0.0131431
0.0107645
0.00907387
0.00827319
0.0086295
0.0104724
0.0141338
0.0198367
0.0272854
0.0354099
0.0412278
0.0430177
0.0419338
0.0390805
0.0353306
0.0312307
0.0271015
0.0231272
0.0194199
0.0160637
0.0110107
0.00873645
0.00704534
0.00612729
0.00624522
0.00774844
0.0110178
0.016406
0.0237255
0.0321358
0.0380811
0.0394578
0.0380818
0.0351434
0.0315132
0.0276679
0.023861
0.0202236
0.0168303
0.0137381
0.00934246
0.00723194
0.00560906
0.0046481
0.0045965
0.00580203
0.00865664
0.0136075
0.0205286
0.0289189
0.0347294
0.035574
0.0339896
0.0311093
0.0277435
0.024269
0.0208708
0.0176342
0.0146061
0.0118257
0.00805066
0.00613629
0.00462773
0.00368304
0.00352817
0.00449709
0.00696571
0.0114438
0.0178179
0.0259327
0.0313188
0.0315648
0.0298738
0.0271744
0.0241746
0.0211376
0.0181866
0.0153719
0.0127227
0.0102683
0.00705268
0.00534596
0.00397698
0.00308894
0.00288409
0.00367601
0.00580545
0.00981664
0.0155606
0.0232047
0.0279202
0.0275842
0.0259006
0.0234791
0.0209053
0.0183298
0.0158271
0.0134241
0.0111415
0.00900482
0.00628041
0.00477831
0.00355822
0.00275012
0.00253238
0.00319529
0.00503394
0.00860485
0.0136911
0.0207397
0.0245961
0.0237669
0.0221969
0.0201183
0.017991
0.0158668
0.0137873
0.0117662
0.00982221
0.00798091
0.00567936
0.00436934
0.00329595
0.00257725
0.00236872
0.00293567
0.00452307
0.00768097
0.0121116
0.0184873
0.021389
0.0202178
0.018849
0.017145
0.0154522
0.0137451
0.0120474
0.0103672
0.00872529
0.00714978
0.00520763
0.00407213
0.00313629
0.00250675
0.00231745
0.00280755
0.00417151
0.00693466
0.0107246
0.0163701
0.0183357
0.0170149
0.0159074
0.0145798
0.0132844
0.0119451
0.0105789
0.00919387
0.00781495
0.00647306
0.00483345
0.00385271
0.00304117
0.0024948
0.00232699
0.00274971
0.00390842
0.00628484
0.00945045
0.0142989
0.0154781
0.0142113
0.0133924
0.0124163
0.0114647
0.0104366
0.00934942
0.00821412
0.00705962
0.00591938
0.0045328
0.0036873
0.00298545
0.00251323
0.00236504
0.00272503
0.0036933
0.00569134
0.00825896
0.0122545
0.0128756
0.0118336
0.011297
0.0106281
0.00995878
0.00918433
0.00832596
0.00739792
0.00643229
0.00546406
0.004288
0.00355918
0.00295265
0.00254491
0.00241309
0.0027142
0.00350881
0.00514889
0.00716649
0.0103002
0.0105981
0.00988113
0.00959225
0.00917444
0.00872583
0.00815167
0.00747681
0.00671836
0.00590996
0.00508699
0.00408601
0.00345709
0.00293248
0.00257978
0.00246132
0.00270918
0.00335189
0.00467455
0.00622618
0.00860749
0.00874369
0.00833835
0.00823653
0.00800822
0.00772381
0.00730315
0.00677306
0.00615191
0.00547354
0.0047725
0.00391693
0.00337306
0.00291847
0.0026126
0.00250525
0.00270666
0.00322139
0.00427749
0.00545869
0.00724649
0.00731819
0.0071498
0.0071738
0.00707945
0.00691212
0.00660665
0.00618933
0.0056786
0.00510718
0.00450838
0.00377357
0.00330199
0.00290686
0.00264063
0.00254263
0.00270484
0.0031154
0.00395539
0.00485363
0.00619634
0.00625211
0.00624539
0.00634652
0.00634123
0.00625437
0.00603392
0.00570375
0.00528165
0.00479812
0.00428462
0.00365034
0.00324007
0.00289552
0.00266304
0.00257318
0.00270297
0.00302992
0.00369959
0.0043873
0.00540541
0.0054666
0.00555955
0.00570231
0.0057533
0.00571989
0.00556135
0.00529829
0.0049471
0.00453584
0.00409383
0.00354345
0.00318499
0.00288335
0.00267929
0.00259681
0.00270068
0.00296194
0.00349832
0.00403067
0.00481456
0.00488786
0.00503714
0.00519874
0.00528224
0.00528292
0.00516943
0.00495824
0.00466391
0.00431198
0.00392941
0.00344915
0.00313498
0.00286995
0.00269001
0.00261419
0.00269699
0.00290644
0.00334016
0.00375861
0.00437305
0.00445819
0.00463517
0.00480102
0.00490227
0.00492437
0.00484273
0.0046712
0.00442284
0.00411977
0.00378743
0.00336612
0.00308904
0.00285513
0.00269569
0.00262602
0.00269282
0.00286175
0.00321543
0.00354972
0.00404067
0.00413494
0.00432168
0.00448377
0.00459193
0.00462631
0.00456838
0.00442795
0.00421642
0.00395373
0.00366306
0.00329148
0.00304644
0.00283889
0.002697
0.0026328
0.00268605
0.00282417
0.00311586
0.00338711
0.00378752
0.00388723
0.00407395
0.00422763
0.00433682
0.00437861
0.00433677
0.0042203
0.00403895
0.0038095
0.00355433
0.00322474
0.00300644
0.00282164
0.00269471
0.00263524
0.00267847
0.00279164
0.00303499
0.00325961
0.00359176
0.00369406
0.00387456
0.00401842
0.0041254
0.00416964
0.00413994
0.00404204
0.00388522
0.00368372
0.00345814
0.00316423
0.00296931
0.00280358
0.00268897
0.00263431
0.00266978
0.00276333
0.00296906
0.00315721
0.00343757
0.00354051
0.0037121
0.00384502
0.00394774
0.00399257
0.00397156
0.00388887
0.00375193
0.00357294
0.00337297
0.00310904
0.00293406
0.00278501
0.00268108
0.00263074
0.00265943
0.00273756
0.00291354
0.00307345
0.0033149
0.00341555
0.00357796
0.00370006
0.00379777
0.00384198
0.00382666
0.003756
0.00363557
0.00347569
0.00329755
0.00305959
0.00290083
0.00276611
0.0026713
0.00262424
0.00264846
0.00271381
0.00286663
0.00300461
0.00321481
0.00331274
0.00346514
0.00357733
0.00367025
0.00371268
0.00370197
0.00364045
0.00353375
0.00338975
0.0032297
0.00301385
0.00287009
0.00274734
0.00265964
0.00261634
0.00263723
0.00269178
0.00282599
0.00294641
0.00313232
0.0032268
0.00336984
0.00347281
0.00356096
0.00360104
0.00359347
0.00354029
0.00344456
0.00331314
0.00316947
0.00297197
0.00284081
0.00272866
0.00264715
0.00260737
0.00262439
0.00267109
0.00279029
0.00289623
0.0030637
0.00315323
0.0032889
0.0033833
0.0034666
0.00350532
0.00349898
0.0034525
0.00336609
0.00324535
0.00311589
0.00293468
0.00281298
0.00271046
0.00263474
0.00259647
0.00261215
0.00265122
0.00275933
0.00285331
0.00300558
0.0030906
0.00321931
0.00330528
0.00338584
0.00342211
0.00341735
0.00337539
0.00329715
0.00318583
0.00306719
0.00289949
0.00278824
0.00269267
0.00262017
0.00258567
0.00259958
0.00263222
0.00273114
0.00281525
0.00295566
0.0030362
0.00315906
0.00323806
0.00331556
0.00334968
0.00334527
0.00330933
0.00323638
0.00313121
0.00302442
0.00286829
0.00276455
0.00267602
0.00260701
0.00257432
0.00258729
0.00261422
0.00270647
0.00278165
0.00291391
0.00298863
0.0031082
0.00317981
0.0032556
0.00328773
0.00328305
0.00325117
0.00318344
0.00308417
0.00298626
0.00283963
0.00274214
0.00265933
0.00259266
0.00256152
0.00257492
0.00259612
0.00268365
0.00275124
0.00287667
0.00294656
0.00306309
0.00312795
0.00320312
0.00323316
0.00322872
0.00320029
0.00313618
0.00304121
0.00295119
0.00281349
0.00272334
0.00264532
0.00257945
0.00255181
0.0025639
0.00258034
0.00266427
0.00272564
0.00284622
0.00291117
0.00302604
0.00308489
0.00315975
0.00318834
0.00318135
0.00315831
0.00309676
0.00300419
0.00292335
0.00278898
0.00270363
0.00262953
0.00256364
0.00253803
0.00255099
0.00256195
0.00264499
0.00269916
0.0028179
0.00287649
0.00299235
0.00304352
0.00312073
0.0031475
0.00313912
0.00312
0.00305961
0.00296839
0.00289489
0.00277001
0.00268977
0.00261951
0.00255332
0.00252995
0.00254276
0.00254982
0.00263165
0.00268065
0.00279795
0.00285146
0.00296824
0.00301343
0.00309202
0.00311763
0.00310674
0.00309207
0.00303258
0.00294239
0.00287581
0.00274666
0.00267034
0.00260373
0.0025352
0.00251491
0.00252869
0.00252959
0.00261277
0.00265604
0.00277407
0.00282103
0.0029413
0.00297867
0.00306219
0.00308646
0.0030715
0.00306201
0.00300201
0.00291058
0.00285226
0.00273593
0.00266418
0.00259946
0.0025282
0.0025113
0.00252499
0.00252191
0.00260715
0.00264529
0.00276537
0.0028067
0.00293081
0.00296165
0.00304915
0.00307155
0.0030535
0.00304942
0.00298802
0.00289529
0.00284374
0.00271108
0.00264443
0.00258372
0.00250535
0.00249377
0.00250936
0.00249735
0.00258789
0.00261863
0.00274428
0.00277531
0.0029089
0.00292741
0.00302615
0.00304614
0.00302026
0.00302604
0.00296007
0.00286243
0.00282295
0.0281569
0.0273289
0.0270193
0.0272757
0.0280971
0.0294396
0.0311977
0.0332108
0.0352672
0.0371195
0.0385403
0.0393601
0.0395071
0.0390008
0.0379296
0.0364318
0.0346701
0.0328085
0.0310101
0.029419
0.0257613
0.0246877
0.0242162
0.0244186
0.0253277
0.0269211
0.0291026
0.0316852
0.0343869
0.036856
0.0387437
0.0398021
0.0399509
0.0392515
0.0378569
0.0359634
0.0337771
0.0314945
0.0292948
0.0273372
0.0227647
0.021437
0.0207618
0.0208404
0.0217464
0.0235038
0.0260529
0.0292098
0.0326326
0.0358305
0.0382669
0.0395706
0.0396772
0.038731
0.0369777
0.0346849
0.0321023
0.0294469
0.026903
0.024629
0.0196397
0.0181005
0.0172249
0.0171389
0.0179585
0.0197645
0.0225569
0.0261883
0.0302846
0.0342165
0.0371904
0.0386801
0.0386852
0.0374706
0.0353877
0.0327694
0.0298937
0.0269812
0.0242071
0.0217167
0.0167794
0.0151114
0.0140785
0.0138225
0.0144936
0.0162278
0.0190946
0.0230138
0.027617
0.0321745
0.0355768
0.0371338
0.036979
0.0355173
0.0331958
0.0303891
0.0273797
0.0243737
0.0215244
0.0189554
0.0142961
0.0125818
0.0114494
0.0110472
0.0115467
0.0131273
0.0159221
0.0199322
0.0248256
0.0298411
0.0335397
0.0350434
0.0346992
0.0330455
0.0305997
0.0277469
0.0247526
0.0217954
0.0190012
0.0164703
0.0122239
0.0105348
0.00936275
0.00885456
0.00919098
0.0105793
0.0132001
0.0171353
0.022102
0.0273822
0.0312177
0.0325465
0.0320084
0.0302378
0.027785
0.0250145
0.0221581
0.0193607
0.0167206
0.014316
0.0105301
0.00891953
0.007759
0.00718925
0.00739015
0.00858225
0.0109733
0.014715
0.0195661
0.0249204
0.0287246
0.0297785
0.0290706
0.0272679
0.024914
0.0223268
0.0196954
0.0171309
0.0147074
0.0124859
0.00916426
0.0076672
0.00655708
0.00596606
0.00606616
0.0070801
0.00922413
0.0127049
0.017304
0.0225629
0.0261616
0.0268708
0.0260381
0.0242852
0.0221148
0.0197805
0.017427
0.0151354
0.0129609
0.0109524
0.00806926
0.00670485
0.00567084
0.0050899
0.00512194
0.00598428
0.007886
0.0110729
0.0153259
0.0203516
0.0235908
0.0239333
0.0230372
0.0214067
0.0194797
0.0174377
0.0153851
0.0133793
0.0114628
0.00967662
0.00719295
0.00596784
0.00502411
0.00447473
0.00446496
0.00520191
0.00687648
0.00975887
0.0136099
0.018302
0.0210616
0.021063
0.0201709
0.0187193
0.0170693
0.0153324
0.0135806
0.0118542
0.0101883
0.00861958
0.00649007
0.00540203
0.00455345
0.00404783
0.00401499
0.00464788
0.00611237
0.00868989
0.0121097
0.016398
0.0186093
0.01834
0.0175156
0.0162803
0.0149171
0.0134771
0.0120093
0.010543
0.00910981
0.00774458
0.00592362
0.00496487
0.00421005
0.00375322
0.00370856
0.00425259
0.00552207
0.00779686
0.0107736
0.0146073
0.0162645
0.0158278
0.0151233
0.0141214
0.0130344
0.0118681
0.0106568
0.00942406
0.00820014
0.00701963
0.00546393
0.00462343
0.00395679
0.00354902
0.00349846
0.00396379
0.00505105
0.00702565
0.00955842
0.0128943
0.01406
0.0135735
0.013023
0.0122521
0.0114162
0.010491
0.00950343
0.00847434
0.00743417
0.00641737
0.00508763
0.00435317
0.00376691
0.00340524
0.00335165
0.00374558
0.00466326
0.00634459
0.00844608
0.0112548
0.0120379
0.0116074
0.0112232
0.0106651
0.0100452
0.0093243
0.00852639
0.00767104
0.00678928
0.00591528
0.0047767
0.00413573
0.00362136
0.00330166
0.0032461
0.0035754
0.00433837
0.00574225
0.00744268
0.00972426
0.0102453
0.00994166
0.00971455
0.00933925
0.00889665
0.00834325
0.00770217
0.00699269
0.00624569
0.00549463
0.00451735
0.003958
0.00350684
0.00322429
0.00316757
0.00343955
0.00406605
0.00522045
0.00657126
0.00837822
0.0087343
0.00857289
0.00847506
0.00824596
0.00794223
0.0075224
0.00700861
0.00641974
0.00578625
0.00514033
0.00429864
0.00381001
0.00341407
0.0031642
0.00310699
0.00332938
0.00383911
0.00477922
0.00584123
0.00725441
0.00751343
0.00747355
0.00747108
0.00735206
0.00715287
0.00683699
0.00642503
0.00593525
0.00539669
0.00484022
0.00411254
0.00368484
0.00333664
0.00311534
0.00305819
0.00323873
0.00365166
0.00441343
0.00524576
0.0063479
0.00655195
0.00660232
0.00666446
0.00662377
0.00650094
0.00626469
0.00593356
0.00552469
0.00506512
0.0045842
0.00395241
0.00357711
0.00327037
0.00307387
0.00301746
0.00316328
0.0034969
0.00411447
0.00476883
0.00563255
0.00580601
0.00591619
0.006018
0.00603093
0.00596221
0.00578588
0.00551835
0.00517532
0.00478169
0.00436479
0.00381369
0.00348327
0.0032121
0.00303697
0.00298195
0.00309966
0.00336993
0.00387189
0.00438977
0.00507377
0.00522978
0.00537569
0.00549945
0.00554672
0.00551529
0.00538405
0.00516674
0.00487708
0.00453809
0.00417498
0.00369197
0.00340027
0.00315982
0.00300338
0.00295027
0.00304476
0.00326409
0.00367508
0.00408977
0.00463815
0.00478371
0.00494778
0.00508108
0.00514968
0.00514367
0.00504548
0.0048673
0.00462139
0.00432786
0.00401063
0.00358524
0.00332629
0.00311231
0.00297189
0.00292108
0.00299775
0.00317647
0.00351519
0.00385131
0.00429774
0.00443545
0.00460616
0.00474125
0.00482119
0.00483156
0.00475876
0.00461166
0.00440109
0.00414541
0.00386651
0.00349009
0.00325965
0.00306838
0.00294201
0.00289341
0.00295522
0.00310248
0.00338433
0.0036599
0.00402981
0.00416047
0.00433125
0.00446274
0.00454804
0.00456955
0.00451491
0.00439203
0.0042107
0.00398641
0.00374041
0.00340561
0.00319912
0.00302767
0.00291343
0.00286687
0.00291745
0.00303896
0.00327594
0.00350573
0.00381644
0.00394093
0.00410674
0.00423274
0.00431983
0.0043471
0.0043063
0.00420254
0.00404516
0.00384738
0.00362895
0.00332974
0.00314438
0.00298958
0.00288541
0.00284156
0.00288337
0.00298438
0.003186
0.00337955
0.00364445
0.00376325
0.0039218
0.00404059
0.00412673
0.00415745
0.00412693
0.00403894
0.00390108
0.00372476
0.00353036
0.00326121
0.003094
0.00295397
0.00285869
0.00281742
0.00285152
0.00293628
0.00310962
0.00327464
0.00350478
0.00361698
0.00376818
0.00387896
0.00396293
0.00399546
0.00397198
0.00389657
0.003775
0.003617
0.00344319
0.0032002
0.00304777
0.00292049
0.00283281
0.00279347
0.00282231
0.00289356
0.00304477
0.00318754
0.00338929
0.00349557
0.0036385
0.00374165
0.00382321
0.00385593
0.00383822
0.00377244
0.00366448
0.00352177
0.00336504
0.00314445
0.00300586
0.00288927
0.00280752
0.00277082
0.00279563
0.00285546
0.00298875
0.00311344
0.00329297
0.00339364
0.00352872
0.00362447
0.00370317
0.00373517
0.0037216
0.0036646
0.00356755
0.00343695
0.00329581
0.00309393
0.00296699
0.00285996
0.00278342
0.0027493
0.00276969
0.0028211
0.00293989
0.00304965
0.00321226
0.00330643
0.00343542
0.00352405
0.00359945
0.00363144
0.00361992
0.00356998
0.00348225
0.00336197
0.0032344
0.00304919
0.00293093
0.00283266
0.00276112
0.00272778
0.00274632
0.00278963
0.00289772
0.00299512
0.00314365
0.0032322
0.00335532
0.00343667
0.00351057
0.0035412
0.00353195
0.00348685
0.00340729
0.00329616
0.00317889
0.00300764
0.00289921
0.00280716
0.00273821
0.00270805
0.0027244
0.00276087
0.00286007
0.00294722
0.00308477
0.00316805
0.00328621
0.0033615
0.00343335
0.00346273
0.00345438
0.00341556
0.00334132
0.00323613
0.00313029
0.00297097
0.00286953
0.00278391
0.00271795
0.00268914
0.00270416
0.0027346
0.00282736
0.00290525
0.00303534
0.00311224
0.00322784
0.00329647
0.00336742
0.00339552
0.00338739
0.00335281
0.00328383
0.00318437
0.00308707
0.0029378
0.00284221
0.00276177
0.00269775
0.00267014
0.00268524
0.00270972
0.00279795
0.00286796
0.00299177
0.00306344
0.0031766
0.00323906
0.00331
0.00333662
0.00332911
0.00329813
0.00323283
0.00313752
0.00304782
0.00290772
0.00281916
0.00274305
0.00267953
0.00265519
0.00266865
0.00268814
0.00277297
0.00283649
0.00295591
0.00302233
0.00313432
0.00319123
0.00326237
0.00328805
0.00327825
0.00325277
0.00319008
0.00309707
0.00301633
0.00288026
0.00279625
0.00272362
0.00265986
0.00263737
0.00265139
0.00266529
0.00274942
0.00280551
0.00292347
0.00298332
0.00309668
0.0031463
0.00322012
0.00324439
0.00323348
0.00321195
0.0031505
0.00305875
0.00298511
0.00285863
0.00277958
0.00271037
0.00264619
0.00262592
0.00263943
0.0026493
0.00273248
0.0027831
0.00290001
0.00295451
0.00306917
0.00311302
0.00318858
0.00321204
0.00319872
0.00318169
0.0031212
0.00303037
0.00296357
0.00283362
0.00275837
0.00269237
0.00262581
0.0026086
0.00262272
0.00262643
0.0027112
0.00275588
0.0028738
0.00292166
0.00304001
0.00307635
0.00315693
0.00317937
0.00316217
0.00315021
0.00308934
0.00299723
0.00293845
0.00282142
0.00275076
0.00268673
0.00261705
0.0026033
0.00261698
0.00261664
0.00270377
0.00274298
0.00286334
0.00290527
0.00302779
0.00305758
0.00314241
0.00316319
0.00314286
0.00313635
0.00307398
0.00298061
0.00292862
0.0027958
0.0027303
0.00267031
0.002593
0.00258488
0.00259977
0.00259058
0.0026836
0.00271498
0.00284133
0.00287277
0.00300496
0.00302259
0.00311861
0.00313737
0.00310923
0.00311232
0.00304545
0.00294725
0.00290714
0.0260429
0.0255326
0.0253442
0.0255048
0.026013
0.0268301
0.0278921
0.029096
0.0303141
0.0314145
0.0322692
0.032785
0.0329098
0.0326411
0.0320259
0.0311408
0.0300787
0.0289421
0.0278273
0.0268309
0.0243098
0.0236286
0.0233424
0.0234917
0.0240873
0.0251009
0.026459
0.028038
0.0296683
0.0311537
0.0323053
0.0329845
0.0331311
0.0327606
0.0319463
0.0307966
0.0294354
0.02799
0.0265815
0.0253218
0.0220086
0.02114
0.0207238
0.0208204
0.0214631
0.0226447
0.0243008
0.026294
0.0284076
0.0303631
0.0318749
0.0327392
0.0328911
0.0323807
0.0313291
0.0298895
0.0282198
0.0264693
0.024773
0.0232507
0.0194865
0.0184464
0.0178922
0.0179039
0.0185417
0.019829
0.0217264
0.0240999
0.0266936
0.0291383
0.0310182
0.0320465
0.0321715
0.0314992
0.030212
0.0285098
0.0265789
0.0245814
0.0226561
0.0209223
0.0170614
0.0158979
0.015224
0.0151348
0.0157164
0.0170269
0.0190629
0.0217134
0.0247024
0.0275803
0.0297726
0.0309011
0.0309591
0.0301257
0.0286464
0.0267588
0.0246641
0.0225249
0.0204727
0.0186184
0.0148604
0.0136285
0.0128665
0.0126793
0.0131729
0.0144378
0.0165093
0.0193142
0.0225761
0.0257922
0.0282151
0.0293676
0.0293278
0.0283544
0.0267475
0.0247657
0.0226104
0.0204337
0.0183529
0.0164654
0.0129459
0.0116981
0.0108856
0.010617
0.0110114
0.0121844
0.0142062
0.0170478
0.0204466
0.0238837
0.0264353
0.0275298
0.0273744
0.0262979
0.0246369
0.0226517
0.0205306
0.0184071
0.0163809
0.0145345
0.0113207
0.0101003
0.00927268
0.00894641
0.00924621
0.0103043
0.0122173
0.0149993
0.0184068
0.0219431
0.024514
0.0254765
0.0252046
0.0240726
0.0224303
0.0205206
0.0185087
0.0165063
0.0145952
0.0128441
0.00996371
0.00880263
0.00798976
0.00763055
0.00784953
0.00878784
0.0105574
0.0132117
0.0165217
0.0200435
0.022523
0.0232957
0.0229228
0.0217863
0.0202264
0.0184532
0.0166036
0.0147671
0.0130096
0.0113889
0.00884097
0.00775995
0.00698393
0.00661333
0.00676832
0.00759267
0.00920286
0.0116848
0.0148152
0.0182253
0.0205135
0.0210652
0.0206212
0.0195301
0.018103
0.0165074
0.0148515
0.0132049
0.011621
0.0101489
0.00791643
0.00692651
0.00620189
0.00583662
0.00594342
0.00666384
0.00811062
0.0103936
0.0132865
0.0165084
0.0185257
0.0188555
0.0183792
0.0173766
0.0161163
0.0147206
0.0132714
0.011822
0.010417
0.00909919
0.00715559
0.00626047
0.00559491
0.00524627
0.00531799
0.00594513
0.00723049
0.00929973
0.0119169
0.0148939
0.01659
0.0167264
0.0162595
0.0153783
0.014303
0.0131128
0.0118686
0.0106116
0.00938017
0.0082134
0.00652828
0.00572648
0.00512267
0.00479722
0.00484301
0.00538622
0.00651493
0.00836258
0.0106815
0.013372
0.0147326
0.0147281
0.0143089
0.0135692
0.0126818
0.01169
0.0106389
0.00956123
0.00849161
0.00746683
0.00600904
0.00529558
0.0047525
0.0044532
0.00447935
0.00494622
0.00592469
0.00754781
0.00955838
0.0119316
0.0129799
0.0128997
0.0125574
0.0119666
0.0112581
0.0104481
0.00957137
0.0086554
0.0077323
0.00683715
0.00557693
0.00494473
0.00445907
0.00418625
0.00419718
0.0045945
0.00543103
0.00683231
0.00853716
0.0105751
0.0113619
0.0112693
0.0110202
0.0105735
0.0100257
0.0093759
0.00865188
0.00787777
0.00708429
0.00630491
0.00521498
0.0046562
0.00422347
0.00397624
0.00397467
0.00430919
0.00501479
0.00620434
0.00761977
0.00932286
0.00991041
0.00985243
0.00969847
0.00938156
0.00897152
0.00845768
0.00786381
0.00721184
0.0065311
0.00585367
0.00490957
0.00441626
0.00403126
0.00380783
0.00379627
0.00407504
0.00466349
0.00565961
0.00681585
0.00821011
0.00865506
0.00865212
0.00858266
0.00837477
0.00807764
0.00767603
0.00719081
0.00664217
0.00605826
0.00546963
0.00464988
0.00421432
0.00387205
0.00367034
0.00365087
0.00388117
0.00436763
0.00519405
0.00612896
0.00725685
0.00760384
0.00765571
0.00765346
0.00753211
0.0073239
0.00701255
0.00661661
0.00615473
0.00565335
0.00514139
0.00442746
0.00404243
0.0037379
0.00355579
0.00353037
0.00371938
0.00411964
0.00480144
0.00555407
0.00646228
0.00674319
0.00683954
0.00688654
0.0068303
0.00669013
0.00645033
0.00612696
0.00573715
0.00530547
0.00485927
0.00423536
0.00389446
0.00362318
0.00345873
0.00342907
0.00358346
0.00391163
0.00447359
0.00507986
0.0058126
0.00604847
0.0061764
0.00625629
0.0062474
0.00615788
0.00597355
0.00570861
0.00537857
0.00500573
0.0046159
0.0040686
0.00376605
0.00352372
0.00337487
0.00334221
0.00346833
0.00373779
0.00420138
0.00469143
0.00528689
0.00549126
0.0056389
0.00573897
0.00576252
0.00571002
0.00556862
0.00535071
0.00506967
0.00474629
0.00440443
0.00392229
0.00365314
0.0034363
0.00330145
0.00326718
0.00336963
0.00359111
0.00397548
0.00437508
0.00486301
0.00504513
0.00520248
0.00531324
0.00535843
0.00533249
0.00522375
0.00504324
0.00480289
0.00452113
0.00422055
0.00379408
0.00355341
0.00335876
0.00323605
0.00320107
0.00328458
0.00346749
0.00378787
0.00411671
0.00452122
0.00468625
0.00484646
0.00496158
0.00502003
0.0050123
0.00492932
0.00477871
0.00457156
0.00432473
0.00405891
0.0036801
0.00346455
0.00328914
0.00317741
0.00314222
0.00321036
0.00336252
0.0036317
0.0039045
0.00424482
0.00439556
0.0045546
0.00466879
0.00473512
0.00474057
0.00467662
0.00454988
0.00437053
0.0041529
0.00391719
0.0035792
0.00338483
0.00322646
0.00312431
0.00308909
0.00314538
0.0032718
0.00350024
0.00372977
0.00401935
0.00415858
0.00431282
0.00442419
0.00449504
0.00450841
0.00445899
0.00435138
0.00419496
0.00400215
0.0037918
0.00348893
0.00331344
0.00316951
0.00307533
0.00304114
0.003088
0.00319388
0.00338972
0.00358451
0.00383396
0.00396344
0.00411132
0.00421802
0.00429019
0.00430908
0.00427086
0.00417911
0.00404153
0.00386895
0.00368094
0.00340788
0.00324874
0.00311769
0.00303077
0.00299773
0.00303627
0.0031257
0.00329512
0.00346211
0.00368076
0.00380086
0.00394256
0.00404338
0.00411543
0.00413792
0.00410763
0.00402865
0.00390692
0.00375164
0.00358284
0.00333593
0.0031901
0.0030703
0.00298959
0.0029573
0.00299005
0.00306568
0.0032143
0.00335939
0.00355247
0.00366458
0.00379921
0.0038942
0.00396567
0.00398987
0.00396619
0.00389705
0.00378863
0.0036479
0.00349507
0.00327068
0.00313749
0.00302712
0.00295121
0.0029206
0.00294882
0.0030127
0.00314428
0.00327146
0.00344438
0.00354941
0.00367733
0.00376642
0.00383656
0.00386134
0.00384254
0.00378242
0.00368471
0.00355551
0.00341737
0.00321191
0.00308939
0.00298756
0.00291595
0.0028871
0.00291046
0.00296566
0.0030834
0.00319561
0.00335313
0.00345061
0.00357345
0.00365667
0.00372478
0.00375066
0.00373455
0.0036817
0.00359317
0.00347385
0.00334855
0.00316003
0.00304538
0.00295146
0.00288411
0.00285537
0.00287651
0.00292332
0.00303086
0.00313065
0.00327519
0.00336632
0.00348415
0.00356113
0.00362877
0.00365421
0.00364095
0.00359311
0.00351268
0.00340216
0.00328658
0.00311236
0.0030069
0.00291849
0.0028531
0.00282703
0.00284562
0.00288537
0.00298437
0.00307381
0.00320821
0.00329358
0.00340719
0.00347894
0.00354538
0.00357034
0.00355845
0.00351706
0.00344192
0.00333704
0.00323242
0.00307043
0.00297141
0.00288883
0.00282595
0.0028008
0.00281775
0.00285126
0.0029441
0.00302415
0.00315177
0.0032304
0.00334206
0.00340785
0.00347406
0.0034984
0.00348713
0.00345009
0.0033802
0.00328086
0.00318436
0.00303292
0.00293931
0.0028614
0.00280006
0.00277578
0.00279253
0.00281992
0.00290846
0.00298051
0.00310237
0.00317554
0.00328524
0.00334544
0.00341217
0.00343557
0.00342526
0.0033919
0.00332572
0.00323034
0.0031411
0.00299907
0.00291213
0.00283809
0.00277697
0.00275573
0.00277056
0.00279282
0.00287816
0.0029436
0.0030615
0.00312923
0.00323816
0.00329328
0.00336063
0.00338354
0.00337122
0.0033434
0.00327987
0.00318665
0.0031061
0.00296879
0.0028861
0.0028151
0.00275357
0.002734
0.00274912
0.00276573
0.00285055
0.00290846
0.00302521
0.00308629
0.00319687
0.00324513
0.00331543
0.00333731
0.00332415
0.00330024
0.00323805
0.00314596
0.00307223
0.00294459
0.00286666
0.00279857
0.00273662
0.00271923
0.00273357
0.00274605
0.00283013
0.0028824
0.00299842
0.00305401
0.00316618
0.00320894
0.00328122
0.00330264
0.00328719
0.00326778
0.00320664
0.00311534
0.00304831
0.00291806
0.00284369
0.00277826
0.00271408
0.0026997
0.00271438
0.00272072
0.00280656
0.00285283
0.00297004
0.00301904
0.00313496
0.00317059
0.0032479
0.00326862
0.00324952
0.00323498
0.0031737
0.00308101
0.00302168
0.00290442
0.00283459
0.00277066
0.00270362
0.00269272
0.00270664
0.00270889
0.00279737
0.0028379
0.00295786
0.00300073
0.00312109
0.00315021
0.00323196
0.00325124
0.00322898
0.00321987
0.00315717
0.00306316
0.00301058
0.00287818
0.00281337
0.00275229
0.00267853
0.00267342
0.00268806
0.00268154
0.00277631
0.0028088
0.00293499
0.00296737
0.00309738
0.00311469
0.00320741
0.00322507
0.00319514
0.0031952
0.0031285
0.0030295
0.00298843
0.0239486
0.0236252
0.023505
0.0236033
0.0239183
0.0244271
0.0250838
0.0258247
0.0265729
0.0272477
0.0277746
0.028098
0.028189
0.0280461
0.0276872
0.02715
0.0264909
0.0257736
0.0250708
0.0244458
0.0226924
0.0222528
0.0220725
0.0221754
0.0225638
0.0232142
0.0240742
0.0250631
0.0260765
0.0269987
0.0277206
0.0281603
0.0282769
0.0280719
0.0275817
0.0268676
0.0260056
0.0250781
0.024167
0.0233493
0.0209354
0.0203601
0.020096
0.0201797
0.0206256
0.0214179
0.0225032
0.0237852
0.0251257
0.0263593
0.0273233
0.0278984
0.0280348
0.027748
0.0270999
0.0261801
0.025089
0.0239276
0.0227914
0.0217682
0.0189267
0.0182185
0.0178604
0.0179029
0.0183769
0.0192817
0.0205718
0.0221427
0.0238235
0.025391
0.0266109
0.0273167
0.0274566
0.0270717
0.0262589
0.0251389
0.0238351
0.0224632
0.0211276
0.019921
0.0169126
0.0160981
0.0156522
0.0156381
0.0161039
0.0170694
0.0185053
0.0203106
0.0222901
0.0241638
0.0256116
0.0264142
0.0265325
0.0260447
0.0250867
0.023808
0.0223482
0.0208297
0.019358
0.0180247
0.0150129
0.0141271
0.0136099
0.0135341
0.0139635
0.0149389
0.016453
0.0184184
0.0206267
0.0227517
0.0243779
0.0252307
0.0253036
0.0247194
0.0236519
0.0222708
0.020723
0.0191298
0.0175911
0.0161926
0.0132995
0.0123795
0.0118136
0.0116806
0.0120564
0.013001
0.0145292
0.0165751
0.0189275
0.0212307
0.0229704
0.0238198
0.0238288
0.0231655
0.0220333
0.0206115
0.0190446
0.0174454
0.0159043
0.0144984
0.0117957
0.0108744
0.0102835
0.0101042
0.0104203
0.0113068
0.0127979
0.0148524
0.0172629
0.0196652
0.0214465
0.0222405
0.0221767
0.02146
0.0203112
0.0189067
0.0173803
0.015832
0.0143406
0.0129736
0.010501
0.009605
0.00901042
0.00879863
0.00905687
0.00987044
0.0112881
0.0132931
0.015684
0.0181081
0.0198581
0.0205529
0.0204183
0.019679
0.0185591
0.0172207
0.0157812
0.0143259
0.0129217
0.0116275
0.00939927
0.0085478
0.00796704
0.00773637
0.00794306
0.00867825
0.00999889
0.0119111
0.0142173
0.0165942
0.0182463
0.0188128
0.0186199
0.0178906
0.0168387
0.0156032
0.0142826
0.0129474
0.0116542
0.0104541
0.00846854
0.00767391
0.00711965
0.0068818
0.00704477
0.0077015
0.00891178
0.0107007
0.0128718
0.0151446
0.0166439
0.0170715
0.0168411
0.0161522
0.015198
0.0140894
0.0129062
0.0117054
0.010535
0.00944026
0.00768479
0.00695354
0.00643399
0.00619791
0.00632481
0.00690607
0.00799934
0.00964454
0.0116436
0.0137678
0.0150771
0.015374
0.0151313
0.0145087
0.0136713
0.0127016
0.0116623
0.0105996
0.00955476
0.00856867
0.00702526
0.00635953
0.00587897
0.00565072
0.00574786
0.00625776
0.00723193
0.00872051
0.0105228
0.0124654
0.0135684
0.0137591
0.0135298
0.0129916
0.0122798
0.0114507
0.0105531
0.0096245
0.0087015
0.00782169
0.00646932
0.00586796
0.00542797
0.00521134
0.00528366
0.00572654
0.00658286
0.00790799
0.00949943
0.0112371
0.0121392
0.0122585
0.0120642
0.0116206
0.0110339
0.010339
0.0095742
0.00877077
0.00796176
0.00718208
0.00599932
0.00545906
0.00505898
0.00485574
0.00490754
0.00528831
0.0060308
0.00719129
0.0085685
0.0100882
0.0108118
0.0108963
0.0107516
0.010404
0.00993462
0.00936231
0.00871762
0.00802729
0.00732187
0.00663403
0.00560032
0.00511665
0.00475466
0.00456562
0.00459992
0.00492387
0.00555956
0.00656068
0.00773067
0.00903115
0.00960789
0.00968753
0.00959825
0.00934113
0.00897617
0.0085116
0.00797226
0.00738191
0.00676888
0.00616378
0.00525981
0.00482766
0.0045011
0.00432615
0.00434593
0.00461891
0.00515737
0.00601024
0.00698975
0.00808378
0.00854602
0.00863812
0.00860178
0.0084241
0.0081483
0.00777546
0.0073267
0.00682295
0.00629087
0.00575935
0.00496766
0.00458184
0.00428765
0.00412627
0.00413423
0.00436244
0.00481464
0.00553467
0.00634649
0.00725686
0.00763276
0.00774339
0.00775206
0.00764052
0.00743775
0.00714103
0.00676859
0.00633919
0.00587734
0.00541045
0.00471555
0.00437109
0.00410617
0.00395758
0.00395591
0.00414553
0.00452344
0.00512761
0.00579702
0.00655019
0.0068625
0.0069903
0.0070343
0.00697477
0.00683023
0.00659587
0.00628678
0.00592018
0.00551871
0.00510811
0.00449664
0.00418879
0.00395011
0.00381353
0.00380444
0.00396122
0.00427562
0.0047817
0.00533315
0.00595646
0.00622105
0.00636217
0.00643128
0.00641153
0.00631217
0.00612749
0.00587067
0.00555701
0.00520721
0.00484552
0.00430581
0.00403024
0.00381478
0.00368917
0.0036742
0.00380374
0.00406554
0.00448935
0.00494383
0.0054624
0.00569075
0.00584047
0.00592601
0.00593505
0.00587007
0.00572505
0.00551094
0.00524148
0.00493576
0.0046161
0.00413804
0.00389092
0.00369626
0.00358075
0.00356185
0.00366844
0.00388616
0.00424235
0.0046194
0.00505318
0.00525419
0.00540727
0.00550255
0.00553192
0.00549253
0.00537849
0.00519924
0.00496692
0.0046986
0.00441566
0.00399075
0.0037681
0.0035918
0.00348527
0.00346324
0.00355107
0.00373322
0.00403364
0.00434858
0.00471453
0.00489424
0.00504667
0.00514708
0.00519
0.00516944
0.00507993
0.00492882
0.00472727
0.00449072
0.00423885
0.00385986
0.00365905
0.00349885
0.00340057
0.00337671
0.0034493
0.00360237
0.00385717
0.00412198
0.00443433
0.00459628
0.00474606
0.00484687
0.00489865
0.00489211
0.00482152
0.00469347
0.00451777
0.004308
0.00408339
0.00374403
0.00356176
0.00341603
0.00332511
0.00329966
0.00336004
0.0034884
0.0037068
0.00393201
0.00420101
0.00434875
0.00449353
0.00459306
0.00465097
0.00465342
0.00459763
0.00448802
0.00433394
0.00414709
0.00394557
0.00364051
0.003475
0.00334159
0.00325682
0.00323108
0.00328176
0.00339016
0.00357891
0.00377167
0.00400589
0.00414169
0.0042806
0.00437711
0.0044378
0.00444702
0.00440286
0.0043088
0.00417263
0.00400463
0.00382357
0.00354789
0.00339695
0.00327466
0.00319567
0.00316992
0.00321195
0.0033042
0.00346868
0.00363506
0.00384224
0.00396708
0.0041006
0.00419281
0.00425475
0.00426879
0.00423305
0.00415163
0.00403064
0.00387881
0.00371549
0.00346576
0.00332665
0.00321419
0.00314017
0.00311419
0.00315012
0.00322874
0.00337389
0.00351927
0.00370361
0.00381927
0.00394653
0.0040343
0.00409702
0.00411391
0.0040853
0.00401369
0.00390554
0.00376739
0.00361887
0.00339159
0.00326393
0.00315972
0.00308945
0.00306435
0.00309543
0.00316224
0.00329147
0.00341953
0.0035857
0.00369344
0.00381488
0.00389794
0.00396047
0.00397895
0.00395573
0.00389318
0.0037954
0.00366811
0.00353333
0.00332505
0.00320708
0.00311042
0.00304361
0.00301959
0.00304551
0.0031036
0.00321977
0.00333321
0.00348546
0.00358502
0.00370217
0.00378043
0.00384192
0.00386237
0.0038423
0.0037871
0.00369827
0.00358032
0.00345761
0.00326643
0.0031555
0.00306594
0.00300269
0.0029782
0.00300162
0.00305124
0.00315775
0.00325896
0.00339931
0.00349219
0.00360503
0.00367795
0.00373981
0.00376057
0.00374379
0.00369365
0.00361277
0.00350323
0.00338958
0.00321297
0.00311056
0.00302584
0.00296397
0.00294168
0.00296229
0.00300475
0.00310314
0.00319414
0.00332518
0.00341201
0.00352124
0.00358969
0.00365103
0.00367196
0.00365694
0.00361332
0.00353763
0.0034334
0.00333018
0.00316605
0.0030695
0.00299005
0.00293022
0.00290846
0.0029272
0.00296333
0.00305587
0.00313755
0.00326246
0.00334238
0.00345015
0.00351329
0.00357496
0.00359583
0.00358177
0.00354252
0.00347205
0.00337309
0.00327755
0.00312441
0.00303282
0.00295755
0.00289888
0.00287768
0.002896
0.00292595
0.00301442
0.00308815
0.00320778
0.00328216
0.00338835
0.00344648
0.00350909
0.00352948
0.0035167
0.00348114
0.00341436
0.00331917
0.0032305
0.00308698
0.00300165
0.00292984
0.00287111
0.00285274
0.00286893
0.00289366
0.00297914
0.00304626
0.00316231
0.0032312
0.00333694
0.00339045
0.00345401
0.00347433
0.00345979
0.00342974
0.00336566
0.00327245
0.00319216
0.00305404
0.00297263
0.00290347
0.00284413
0.00282725
0.00284353
0.0028626
0.0029477
0.00300732
0.00312249
0.00318478
0.00329235
0.00333946
0.00340615
0.0034258
0.00341067
0.00338446
0.0033218
0.00322958
0.00315578
0.0030274
0.0029505
0.00288382
0.002824
0.00280926
0.00282455
0.00283943
0.00292397
0.0029779
0.00309259
0.00314936
0.00325871
0.00330063
0.00336948
0.003389
0.00337171
0.00334994
0.00328844
0.00319685
0.00312956
0.00299949
0.00292585
0.00286132
0.00279944
0.00278763
0.00280305
0.00281186
0.00289827
0.00294626
0.00306222
0.00311256
0.00322563
0.00326089
0.00333466
0.00335377
0.00333312
0.00331596
0.00325458
0.00316147
0.00310152
0.00298449
0.00291525
0.00285065
0.00278726
0.00277899
0.00279341
0.00279808
0.00288736
0.00292946
0.0030484
0.00309251
0.00321018
0.00323904
0.00331738
0.00333526
0.00331145
0.00329965
0.00323725
0.00314246
0.00308916
0.0029578
0.00289325
0.00282595
0.00276113
0.00275886
0.00277365
0.00276965
0.00286545
0.00289952
0.00302471
0.00305856
0.00318567
0.00320323
0.00329213
0.00330881
0.00327757
0.0032744
0.00320953
0.00310863
0.00306639
0.0220282
0.0218151
0.0217358
0.0217999
0.022
0.0223227
0.0227379
0.0232053
0.0236766
0.0241016
0.0244347
0.0246435
0.0247117
0.0246268
0.0243993
0.0240616
0.0236471
0.0231996
0.0227554
0.0223511
0.0211047
0.0208159
0.0206986
0.0207678
0.0210228
0.0214454
0.0219999
0.022633
0.0232792
0.0238671
0.0243307
0.0246195
0.0247063
0.0245876
0.0242828
0.0238289
0.0232738
0.0226711
0.0220749
0.0215373
0.0197589
0.0193728
0.0192007
0.0192652
0.0195722
0.0201059
0.0208257
0.0216653
0.0225354
0.023334
0.0239632
0.0243496
0.0244576
0.0242902
0.0238806
0.0232824
0.0225602
0.0217822
0.0210153
0.0203222
0.0181653
0.0176785
0.017442
0.0174884
0.0178328
0.0184662
0.0193485
0.0204027
0.0215147
0.0225451
0.0233545
0.0238406
0.0239627
0.0237351
0.0232108
0.0224638
0.0215761
0.0206291
0.0196993
0.0188571
0.0165094
0.0159359
0.0156361
0.0156523
0.0160107
0.0167133
0.017726
0.0189676
0.0203024
0.0215525
0.0225288
0.0230974
0.0232185
0.0229253
0.0222942
0.0214196
0.0203977
0.0193185
0.0182632
0.017305
0.0148948
0.014256
0.0139011
0.0138801
0.0142307
0.0149681
0.0160685
0.0174534
0.0189715
0.0204096
0.0215236
0.0221466
0.0222504
0.0218923
0.0211735
0.0202053
0.0190926
0.0179285
0.0167941
0.0157611
0.0133916
0.0127127
0.0123158
0.0122567
0.0125832
0.0133234
0.0144666
0.0159423
0.0175906
0.0191708
0.0203811
0.021024
0.0210955
0.0206802
0.0199011
0.0188799
0.0177242
0.016525
0.015359
0.0142937
0.0120328
0.0113379
0.0109141
0.010821
0.0111135
0.0118315
0.0129772
0.0144925
0.0162135
0.0178836
0.0191428
0.0197701
0.0197994
0.0193406
0.0185323
0.0174993
0.0163456
0.0151557
0.0139996
0.0129393
0.0108301
0.0101404
0.00970443
0.00958406
0.00983871
0.0105174
0.0116333
0.0131425
0.0148811
0.0165881
0.0178472
0.018427
0.0184106
0.0179265
0.0171206
0.0161129
0.0149991
0.0138546
0.0127415
0.0117156
0.00978054
0.00911225
0.00867735
0.00853752
0.00875434
0.00938324
0.0104454
0.0119115
0.0136184
0.0153132
0.0165266
0.0170352
0.0169768
0.0164881
0.0157134
0.0147615
0.0137163
0.0126431
0.0115965
0.010626
0.00887302
0.00823787
0.00781418
0.00766246
0.00784405
0.00841785
0.00940989
0.0108041
0.0124385
0.0140787
0.0152079
0.0156324
0.0155423
0.0150697
0.0143501
0.0134759
0.0125187
0.0115335
0.0105677
0.009666
0.00809252
0.007498
0.00709311
0.00693583
0.00708562
0.00760235
0.00851359
0.00981495
0.011345
0.0128963
0.0139133
0.0142528
0.0141453
0.0137077
0.0130604
0.0122779
0.011419
0.0105299
0.00965215
0.00882594
0.00742311
0.00687318
0.00649176
0.0063338
0.00645545
0.0069154
0.00773979
0.00893374
0.0103361
0.0117728
0.012662
0.0129263
0.0128177
0.0124297
0.011865
0.0111802
0.0104228
0.00963154
0.00884307
0.00809417
0.00684922
0.00634495
0.00598966
0.00583462
0.00593139
0.00633621
0.00707143
0.00814905
0.00940925
0.0107126
0.0114717
0.0116782
0.0115832
0.0112547
0.0107763
0.0101886
0.00953023
0.00883363
0.00813177
0.00745832
0.00635677
0.0058974
0.00556904
0.00541912
0.00549428
0.00584665
0.00649351
0.00745108
0.00856248
0.00972179
0.0103593
0.0105285
0.0104583
0.0101932
0.00979904
0.00930338
0.00873755
0.00812915
0.00750828
0.0069063
0.00593312
0.00551646
0.00521493
0.00507163
0.00512793
0.00543147
0.0059936
0.00683257
0.00779646
0.00880925
0.00934041
0.00949053
0.00945137
0.00924849
0.00893219
0.00852016
0.0080379
0.00750973
0.00696301
0.00642696
0.00556752
0.00519085
0.00491492
0.00477891
0.00481909
0.00507806
0.00556164
0.00628808
0.0071129
0.00798471
0.00842754
0.00857112
0.00856396
0.00841814
0.00817071
0.00783216
0.00742379
0.00696677
0.00648646
0.00601019
0.00525079
0.00491077
0.00465885
0.00453066
0.00455734
0.00477654
0.00518884
0.00581236
0.00651129
0.00725445
0.00762603
0.00776996
0.00779183
0.00769549
0.00750652
0.00723079
0.00688622
0.0064915
0.00606995
0.00564727
0.00497536
0.00466868
0.00443908
0.00431861
0.00433372
0.0045183
0.00486818
0.00539985
0.00598867
0.00661832
0.00693394
0.00708023
0.00712625
0.00707032
0.00692983
0.00670703
0.00641663
0.0060757
0.00570554
0.00533022
0.00473463
0.00445795
0.00424869
0.00413588
0.00414201
0.00429644
0.00459178
0.00504416
0.00553917
0.00607205
0.00634326
0.006492
0.00655609
0.00653259
0.00643092
0.00625136
0.00600667
0.00571184
0.00538632
0.00505288
0.00452376
0.00427377
0.00408291
0.00397741
0.00397603
0.00410521
0.00435456
0.00473904
0.00515456
0.00560711
0.0058428
0.00599281
0.00606945
0.00607047
0.0059995
0.00585552
0.00564879
0.0053931
0.00510619
0.00480907
0.00433769
0.00411168
0.00393753
0.00383896
0.00383219
0.00393985
0.00414973
0.00447733
0.00482788
0.00521348
0.00542122
0.00557012
0.00565476
0.00567397
0.00562661
0.00551101
0.005336
0.00511357
0.00485979
0.00459495
0.00417384
0.00396861
0.00380942
0.00371724
0.00370584
0.00379553
0.00397333
0.00425308
0.00455017
0.00488077
0.00506623
0.00521196
0.00530131
0.00533344
0.00530428
0.00521155
0.00506242
0.00486801
0.00464275
0.00440532
0.00402804
0.00384161
0.00369569
0.00360955
0.0035951
0.00367007
0.00382094
0.00406073
0.00431397
0.00460015
0.0047667
0.00490862
0.00499905
0.00504023
0.00502485
0.00495024
0.00482276
0.00465208
0.00445104
0.004238
0.00389887
0.00372847
0.00359471
0.00351406
0.00349688
0.00355982
0.00368767
0.00389521
0.00411296
0.00436238
0.00451377
0.00465047
0.00474039
0.00478831
0.0047824
0.0047223
0.00461226
0.00446167
0.00428158
0.00408928
0.00378343
0.00362774
0.00350438
0.00342832
0.00340983
0.00346312
0.00357207
0.00375292
0.00394113
0.00416057
0.00429916
0.00443029
0.0045183
0.00456973
0.00457127
0.00452279
0.00442769
0.00429389
0.0041311
0.00395739
0.00368024
0.00353741
0.00342356
0.00335194
0.00333254
0.00337718
0.00347069
0.00362944
0.00379317
0.00398909
0.00411608
0.00424241
0.00432718
0.00438068
0.00438787
0.00434796
0.00426513
0.00414566
0.00399783
0.00384035
0.00358877
0.00345636
0.00335101
0.00328327
0.00326285
0.00330126
0.00338159
0.00352263
0.00366666
0.00384231
0.00395961
0.00408028
0.00416174
0.00421693
0.00422772
0.00419518
0.00412194
0.0040147
0.0038796
0.0037357
0.00350636
0.00338423
0.00328602
0.00322111
0.00320092
0.00323432
0.00330309
0.00342935
0.003557
0.00371635
0.00382542
0.00394097
0.0040187
0.0040745
0.00408759
0.00406076
0.00399644
0.00389912
0.00377415
0.00364299
0.00343261
0.0033192
0.00322762
0.00316539
0.00314571
0.00317378
0.00323395
0.00334804
0.00346172
0.00360856
0.00370919
0.00382109
0.00389487
0.00395043
0.00396614
0.00394276
0.00388572
0.00379704
0.00368083
0.00356093
0.0033677
0.00326051
0.00317527
0.00311596
0.00309533
0.0031207
0.00317249
0.00327755
0.00337936
0.00351542
0.00360927
0.00371742
0.00378662
0.0038432
0.00385982
0.00384005
0.00378802
0.00370707
0.00359881
0.00348728
0.00330883
0.00320948
0.00312844
0.00306997
0.00305113
0.00307354
0.00311819
0.00321558
0.00330752
0.00343509
0.00352279
0.00362781
0.00369323
0.00374983
0.00376714
0.00374942
0.00370389
0.00362798
0.00352467
0.00342302
0.00325723
0.00316316
0.00308687
0.00303001
0.00301135
0.00303171
0.00307003
0.00316192
0.00324476
0.00336678
0.00344759
0.00355155
0.00361227
0.00366964
0.00368736
0.00367088
0.00362967
0.00355891
0.00346059
0.00336612
0.00321172
0.00312213
0.00304958
0.00299351
0.00297513
0.00299492
0.00302707
0.00311514
0.00319021
0.00330739
0.00338271
0.0034854
0.00354164
0.00360027
0.00361792
0.00360298
0.00356542
0.00349832
0.00340353
0.00331551
0.00317092
0.00308717
0.00301772
0.00296131
0.00294556
0.00296306
0.00298998
0.00307523
0.00314384
0.00325775
0.00332768
0.00343012
0.00348224
0.00354206
0.00355999
0.00354353
0.00351139
0.00344702
0.00335403
0.00327405
0.00313552
0.00305532
0.0029882
0.00293095
0.00291649
0.00293396
0.00295526
0.00304026
0.00310151
0.00321474
0.00327821
0.0033826
0.00342878
0.00349183
0.00350942
0.00349263
0.0034642
0.00340132
0.00330916
0.0032353
0.00310659
0.00303061
0.00296573
0.00290781
0.00289544
0.00291176
0.00292883
0.00301343
0.00306903
0.00318197
0.00324001
0.00334628
0.00338763
0.00345293
0.00347068
0.00345189
0.00342778
0.00336615
0.00327447
0.00320689
0.00307746
0.00300444
0.00294157
0.00288137
0.00287182
0.00288818
0.00289928
0.00298574
0.0030356
0.0031498
0.0032017
0.00331154
0.00334675
0.00341679
0.00343441
0.00341257
0.00339277
0.00333147
0.00323817
0.00317755
0.00306119
0.00299248
0.00292946
0.00286736
0.00286157
0.00287674
0.00288366
0.00297319
0.00301709
0.00313443
0.00318008
0.00329462
0.00332359
0.00339823
0.00341486
0.00338988
0.00337542
0.00331309
0.00321794
0.00316395
0.00303423
0.00296999
0.00290704
0.00284011
0.00284064
0.00285601
0.00285439
0.00295048
0.00298656
0.00311
0.00314581
0.00326937
0.00328771
0.00337235
0.00338817
0.00335614
0.00334981
0.00328487
0.0031838
0.00314059
0.0203307
0.0201918
0.0201381
0.0201768
0.0203046
0.0205124
0.0207803
0.0210823
0.0213875
0.0216654
0.0218891
0.0220323
0.0220764
0.0220265
0.021889
0.0216739
0.0214051
0.0211071
0.0208101
0.0205434
0.0196381
0.0194453
0.0193672
0.0194131
0.0195818
0.0198604
0.0202243
0.0206383
0.02106
0.0214443
0.0217495
0.0219429
0.0220058
0.0219349
0.0217413
0.0214469
0.0210825
0.0206833
0.0202863
0.0199272
0.0185978
0.0183353
0.0182204
0.0182677
0.0184793
0.0188418
0.0193256
0.0198852
0.0204618
0.0209903
0.0214095
0.0216722
0.0217538
0.0216528
0.0213879
0.0209919
0.0205072
0.01998
0.0194571
0.0189831
0.0173306
0.0169926
0.0168333
0.0168739
0.0171217
0.017566
0.0181747
0.0188921
0.0196416
0.0203335
0.0208808
0.0212184
0.021316
0.0211774
0.0208322
0.020327
0.0197164
0.0190578
0.0184068
0.0178155
0.0159738
0.0155669
0.0153621
0.0153875
0.0156574
0.0161665
0.0168837
0.0177468
0.018662
0.0195134
0.0201838
0.0205878
0.0206929
0.020512
0.020089
0.0194844
0.0187643
0.0179942
0.0172356
0.0165451
0.014612
0.0141491
0.0139023
0.0139063
0.014183
0.0147346
0.0155343
0.0165176
0.0175763
0.0185693
0.0193458
0.0197999
0.0199019
0.0196777
0.019187
0.0185029
0.0177
0.0168483
0.016012
0.0152491
0.0133084
0.0128061
0.0125248
0.0125046
0.0127746
0.0133455
0.0141971
0.0152667
0.0164359
0.0175416
0.0183979
0.0188801
0.018968
0.0187036
0.0181616
0.0174245
0.0165712
0.0156728
0.0147924
0.0139869
0.0120987
0.0115741
0.0112679
0.0112238
0.0114771
0.0120469
0.0129207
0.0140408
0.0152822
0.016466
0.0173709
0.0178572
0.0179225
0.0176251
0.0170519
0.0162902
0.0154191
0.0145073
0.0136146
0.0127951
0.0110012
0.0104703
0.0101491
0.010084
0.0103145
0.0108672
0.011737
0.0128734
0.0141481
0.0153734
0.0162936
0.0167614
0.0167993
0.0164795
0.0158966
0.0151378
0.0142784
0.0133824
0.0125045
0.0116951
0.0100211
0.00949718
0.00917053
0.00908822
0.00929311
0.00981716
0.0106616
0.0117845
0.0130563
0.0142878
0.0151917
0.0156226
0.0156328
0.0153037
0.0147318
0.0139997
0.0131762
0.0123186
0.0114766
0.0106961
0.00915545
0.00864867
0.00832434
0.00822956
0.00840818
0.00889594
0.00969882
0.0107835
0.0120206
0.0132272
0.0140871
0.014469
0.0144558
0.0141311
0.0135888
0.0129022
0.0121324
0.0113295
0.010538
0.00979962
0.00839631
0.0079141
0.00759846
0.00749524
0.00764819
0.00809516
0.0088448
0.00987216
0.0110484
0.0122038
0.0129985
0.0133269
0.013298
0.012991
0.0124924
0.0118646
0.0111599
0.0104219
0.00968979
0.0090019
0.00773357
0.00728052
0.0069779
0.00686983
0.0069987
0.00740271
0.00809127
0.00904716
0.0101424
0.0112262
0.0119421
0.0122195
0.0121845
0.0119065
0.0114614
0.0109001
0.0102665
0.00959787
0.00892943
0.00829607
0.00715627
0.00673473
0.00644806
0.00633813
0.00644469
0.00680532
0.00742839
0.00830328
0.00930385
0.010301
0.0109326
0.0111669
0.0111354
0.0108944
0.0105081
0.0100161
0.00945474
0.00885605
0.00825186
0.00767402
0.0066537
0.00626442
0.00599529
0.00588553
0.00597185
0.00628993
0.00684628
0.00763493
0.00853309
0.00943439
0.00998338
0.0101853
0.0101653
0.00996592
0.00963927
0.0092152
0.00872383
0.00819261
0.00765049
0.00712701
0.00621582
0.00585825
0.0056074
0.00549941
0.00556761
0.00584521
0.00633589
0.00703735
0.00783112
0.0086331
0.00910612
0.00928637
0.00928299
0.00912623
0.00885684
0.00849654
0.00807029
0.0076022
0.00711837
0.00664643
0.00583375
0.00550658
0.0052738
0.00516868
0.00522086
0.00546093
0.00588941
0.0065063
0.00719908
0.00790341
0.00830987
0.00847674
0.00849214
0.00837589
0.00815891
0.00785648
0.00748937
0.00707869
0.00664833
0.00622412
0.00549952
0.00520095
0.00498564
0.00488428
0.00492269
0.00512849
0.00549938
0.00603734
0.00663611
0.00724922
0.00759912
0.00775838
0.00779183
0.00771208
0.00754111
0.00728958
0.00697479
0.00661537
0.00623336
0.00585294
0.00520654
0.00493439
0.00473571
0.00463841
0.00466495
0.0048406
0.00515993
0.00562576
0.0061401
0.00667062
0.00697364
0.00712812
0.00717747
0.00712862
0.00699708
0.00678953
0.00652023
0.00620611
0.00586714
0.00552597
0.00494872
0.00470083
0.00451768
0.0044248
0.00444173
0.00459064
0.00486394
0.00526644
0.00570687
0.0061648
0.00642924
0.00658012
0.00664194
0.00661908
0.00652008
0.00634939
0.00611933
0.00584463
0.00554365
0.00523785
0.0047216
0.00449548
0.00432674
0.00423837
0.00424699
0.00437309
0.00460702
0.00495392
0.00533017
0.00572634
0.00595867
0.00610655
0.00617754
0.00617493
0.00610255
0.00596296
0.00576603
0.00552543
0.00525781
0.00498295
0.0045203
0.00431416
0.00415865
0.00407478
0.00407722
0.00418362
0.00438298
0.00468244
0.00500507
0.0053483
0.00555452
0.00569855
0.0057757
0.00578889
0.00573748
0.00562325
0.00545462
0.00524339
0.00500475
0.00475788
0.00434238
0.00415364
0.00401012
0.00393063
0.00392756
0.00401724
0.00418818
0.0044472
0.00472441
0.00502315
0.00520803
0.00534737
0.00542829
0.00545329
0.00541876
0.00532542
0.00518016
0.00499402
0.00478063
0.00455767
0.00418368
0.00401098
0.0038783
0.00380297
0.00379609
0.00387193
0.00401836
0.00424284
0.00448222
0.00474441
0.00491076
0.00504576
0.00512796
0.00516121
0.00513979
0.00506343
0.0049381
0.00477345
0.00458171
0.00438033
0.0040428
0.00388381
0.00376122
0.00368979
0.00367942
0.00374371
0.00386919
0.00406548
0.00427363
0.00450474
0.00465614
0.00478572
0.00486782
0.00490785
0.00489598
0.00483335
0.00472421
0.00457799
0.00440516
0.00422224
0.00391679
0.00377058
0.00365667
0.00358854
0.00357612
0.00363102
0.00373901
0.00391149
0.00409329
0.00429865
0.00443731
0.00456153
0.00464247
0.00468642
0.00468211
0.00463075
0.0045357
0.00440501
0.0042479
0.0040817
0.00380412
0.00366917
0.00356329
0.00349843
0.0034845
0.00353091
0.00362444
0.00377694
0.00393651
0.00412154
0.00424862
0.00436849
0.00444692
0.00449348
0.00449521
0.00445229
0.00436894
0.00425163
0.00410821
0.00395675
0.00370419
0.00357832
0.00347973
0.00341782
0.00340226
0.00344246
0.00352343
0.00365987
0.00380138
0.00396848
0.0040859
0.00420062
0.00427658
0.00432543
0.00433119
0.00429566
0.00422151
0.00411571
0.00398404
0.00384492
0.00361428
0.00349757
0.0034051
0.0033452
0.00332934
0.00336452
0.0034344
0.00355727
0.00368348
0.00383609
0.00394532
0.00405548
0.00412849
0.00417849
0.00418706
0.00415735
0.00409187
0.00399546
0.00387313
0.00374575
0.00353392
0.00342499
0.00333831
0.0032804
0.00326458
0.00329437
0.00335593
0.00346755
0.0035806
0.00372207
0.00382291
0.00392994
0.00399971
0.00405003
0.00406169
0.00403559
0.00397722
0.00388906
0.00377487
0.00365792
0.00346323
0.00335972
0.00327867
0.0032231
0.00320591
0.00323293
0.00328631
0.00338957
0.00349133
0.00362304
0.0037172
0.00382094
0.00388681
0.00393862
0.00395164
0.00392937
0.00387586
0.00379516
0.00368844
0.00357915
0.00339934
0.00330302
0.00322559
0.00317036
0.00315462
0.00317858
0.00322495
0.00332103
0.00341338
0.00353736
0.00362548
0.00372648
0.00378917
0.00384141
0.00385553
0.00383552
0.00378842
0.00371258
0.0036104
0.00351041
0.00334341
0.00325179
0.00317863
0.00312461
0.00310875
0.00313055
0.00317068
0.00326161
0.00334522
0.00346421
0.00354558
0.00364584
0.00370438
0.00375772
0.00377262
0.00375409
0.00371118
0.00364038
0.00354291
0.00344959
0.00329433
0.00320669
0.00313687
0.0030833
0.00306746
0.00308861
0.00312264
0.00320999
0.00328612
0.00340066
0.00347672
0.00357593
0.0036305
0.00368534
0.00370051
0.00368375
0.00364438
0.0035772
0.003483
0.00339568
0.00325041
0.00316818
0.00310116
0.00304698
0.00303355
0.00305233
0.00308116
0.00316587
0.00323577
0.00334733
0.00341817
0.00351727
0.0035682
0.00362438
0.00364015
0.00362207
0.003588
0.00352356
0.00343097
0.00335131
0.00321274
0.00313368
0.00306875
0.00301348
0.00300116
0.00301982
0.00304311
0.00312767
0.00319044
0.00330148
0.0033661
0.00346719
0.00351267
0.0035721
0.00358781
0.00356966
0.0035391
0.00347622
0.00338431
0.00331037
0.0031817
0.00310653
0.00304369
0.00298751
0.0029772
0.00299464
0.0030137
0.00309795
0.00315525
0.00326609
0.00332547
0.00342845
0.00346948
0.00353118
0.00354732
0.00352734
0.00350093
0.00343941
0.00334783
0.0032799
0.00315152
0.00307894
0.0030181
0.0029594
0.00295175
0.00296919
0.0029824
0.00306848
0.00312032
0.00323233
0.00328596
0.00339228
0.00342775
0.00349391
0.00351017
0.0034875
0.00346505
0.00340405
0.00331079
0.00324936
0.00313406
0.00306566
0.00300469
0.0029437
0.00293994
0.00295608
0.00296508
0.00305435
0.00310026
0.0032155
0.00326296
0.00337397
0.00340342
0.00347416
0.00348966
0.00346389
0.00344667
0.00338467
0.00328944
0.00323458
0.003107
0.00304266
0.00298262
0.00291572
0.00291827
0.00293462
0.00293521
0.00303092
0.00306941
0.00319039
0.00322862
0.00334808
0.00336771
0.00344772
0.0034628
0.00343047
0.00342068
0.00335638
0.0032553
0.00321067
0.0188458
0.0187506
0.0187141
0.0187404
0.0188279
0.0189661
0.0191432
0.0193424
0.0195435
0.0197262
0.0198718
0.0199654
0.0199976
0.0199665
0.0198763
0.0197363
0.0195616
0.0193683
0.0191733
0.0189937
0.0183262
0.0181949
0.0181418
0.0181726
0.0182863
0.0184731
0.0187163
0.0189922
0.0192729
0.0195289
0.0197331
0.0198641
0.0199092
0.0198655
0.0197393
0.0195446
0.0193017
0.0190339
0.0187661
0.0185229
0.0175142
0.0173332
0.0172549
0.0172889
0.0174355
0.0176844
0.0180142
0.0183934
0.0187827
0.0191394
0.0194236
0.0196045
0.0196649
0.0196021
0.019427
0.0191604
0.0188305
0.0184688
0.0181083
0.0177807
0.0165002
0.0162628
0.0161534
0.0161861
0.016364
0.0166773
0.0171015
0.0175966
0.0181105
0.0185838
0.0189603
0.0191972
0.0192724
0.0191855
0.0189539
0.0186072
0.0181828
0.0177205
0.0172611
0.0168428
0.0153863
0.0150951
0.0149528
0.0149785
0.0151796
0.0155487
0.0160599
0.0166668
0.017304
0.0178944
0.0183622
0.0186514
0.0187368
0.0186224
0.0183341
0.0179112
0.0173997
0.0168468
0.0162988
0.015799
0.0142402
0.0139025
0.0137286
0.0137424
0.0139565
0.0143675
0.0149504
0.0156548
0.0164034
0.0171011
0.0176508
0.0179829
0.0180718
0.0179285
0.0175887
0.017101
0.0165184
0.0158932
0.0152751
0.0147103
0.013116
0.0127425
0.012541
0.01254
0.0127569
0.0131936
0.0138281
0.0146084
0.0154479
0.0162347
0.0168498
0.017211
0.0172959
0.0171247
0.0167432
0.0162076
0.0155753
0.0149014
0.0142365
0.0136272
0.0120481
0.0116508
0.0114276
0.0114104
0.0116215
0.0120684
0.0127331
0.0135648
0.0144697
0.0153229
0.0159826
0.0163568
0.0164312
0.0162359
0.0158256
0.0152614
0.0146028
0.0139044
0.013216
0.0125832
0.0110575
0.010648
0.0104098
0.0103771
0.0105762
0.0110197
0.0116944
0.0125525
0.0134958
0.0143898
0.0150716
0.015443
0.0155021
0.0152889
0.0148644
0.0142916
0.0136287
0.0129286
0.012238
0.0116008
0.0101542
0.00974302
0.00949636
0.00944979
0.00963272
0.0100621
0.0107293
0.0115907
0.0125458
0.0134556
0.0141371
0.0144919
0.0145341
0.014311
0.0138871
0.0133238
0.0126761
0.0119929
0.011318
0.0106921
0.00934064
0.00893627
0.008687
0.00862912
0.00879359
0.0092008
0.0098459
0.0106907
0.0116334
0.0125358
0.0131971
0.0135251
0.0135516
0.0133278
0.0129181
0.0123796
0.0117625
0.0111111
0.0104651
0.00986265
0.00861418
0.00822334
0.00797653
0.00790967
0.00805475
0.00843431
0.00904619
0.00985778
0.0107674
0.0116424
0.0122672
0.0125629
0.0125774
0.0123621
0.0119781
0.011476
0.0109004
0.0102907
0.00968319
0.00911276
0.00796943
0.0075966
0.00735597
0.00728274
0.00740845
0.00775681
0.00832733
0.00909299
0.00995287
0.0107843
0.0113613
0.0116237
0.0116317
0.011433
0.0110831
0.0106253
0.0100983
0.00953642
0.00897273
0.00843943
0.00739925
0.0070474
0.00681575
0.0067383
0.00684525
0.00716067
0.00768449
0.00839504
0.0091929
0.00996861
0.0104914
0.0107234
0.0107307
0.0105551
0.0102448
0.00983546
0.00936004
0.00884873
0.00833144
0.00783793
0.00689603
0.00656673
0.00634598
0.00626601
0.00635518
0.00663735
0.00711185
0.00776153
0.00848957
0.00920145
0.00966856
0.00987513
0.00988716
0.00973883
0.00947044
0.00911051
0.00868693
0.00822624
0.0077555
0.0073024
0.00645226
0.00614597
0.00593715
0.00585607
0.00592893
0.00617859
0.0066032
0.00718956
0.00784423
0.00848837
0.00890181
0.00908898
0.00910951
0.00899024
0.00876351
0.00845154
0.00807794
0.00766588
0.00724011
0.00682651
0.00606079
0.00577719
0.00558077
0.00549978
0.00555788
0.00577679
0.00615296
0.00667629
0.00725803
0.007834
0.00819818
0.00837102
0.00840224
0.00831152
0.00812421
0.00785717
0.00753012
0.00716359
0.00678017
0.00640404
0.00571515
0.00545346
0.00526947
0.00518941
0.00523454
0.00542472
0.00575504
0.00621836
0.00673033
0.00724107
0.00756156
0.0077242
0.00776634
0.00770242
0.0075508
0.00732427
0.00703943
0.00671452
0.00637021
0.00602924
0.00540966
0.00516854
0.0049967
0.00491825
0.00495195
0.00511637
0.00540482
0.00581202
0.00625976
0.00670995
0.00699262
0.00714757
0.0071999
0.00715939
0.00703929
0.00684874
0.00660151
0.0063141
0.00600529
0.00569638
0.00513895
0.0049172
0.00475699
0.00468062
0.00470477
0.00484597
0.00509626
0.00545323
0.00584324
0.00623884
0.0064893
0.00663795
0.00669863
0.00667858
0.00658526
0.00642561
0.00621149
0.00595731
0.00568038
0.00540093
0.00489904
0.00469485
0.00454567
0.00447175
0.00448745
0.0046085
0.00482564
0.00513754
0.0054762
0.00582427
0.00604695
0.00619054
0.00625764
0.00625404
0.00618334
0.00605036
0.00586469
0.00563979
0.00539129
0.00513788
0.00468539
0.00449766
0.0043588
0.0042875
0.00429676
0.00440015
0.00458746
0.00486022
0.00515512
0.00546131
0.00566081
0.0057992
0.00587084
0.00588058
0.0058281
0.00571736
0.00555653
0.0053572
0.00513374
0.00490432
0.00449576
0.0043224
0.00419309
0.00412452
0.00412787
0.00421606
0.00437859
0.0046174
0.00487428
0.00514453
0.00532466
0.00545763
0.00553216
0.0055523
0.00551502
0.00542298
0.00528292
0.00510576
0.0049044
0.00469561
0.00432613
0.00416631
0.00404576
0.00397988
0.00397894
0.00405432
0.00419507
0.00440431
0.00462895
0.00486921
0.0050321
0.00516051
0.00523618
0.00526372
0.00523854
0.00516204
0.00504001
0.00488208
0.00469987
0.00450999
0.00417515
0.00402693
0.00391457
0.00385136
0.00384653
0.00391108
0.00403298
0.00421779
0.00441535
0.00462947
0.00477832
0.00490135
0.00497711
0.00501114
0.00499511
0.00493137
0.00482417
0.00468295
0.00451761
0.00434399
0.0040399
0.0039027
0.00379753
0.00373652
0.00372912
0.00378476
0.00389067
0.00405447
0.00422884
0.00442098
0.00455773
0.00467568
0.00475071
0.00478872
0.00478011
0.00472704
0.00463293
0.00450591
0.00435471
0.00419602
0.00391885
0.00379143
0.00369298
0.00363426
0.00362492
0.00367238
0.00376497
0.00391093
0.00406533
0.00424
0.00436565
0.00447967
0.00455272
0.00459358
0.0045911
0.00454616
0.00446304
0.00434836
0.00420959
0.00406417
0.00381137
0.00369178
0.00359953
0.00354295
0.00353153
0.00357296
0.00365372
0.0037853
0.00392337
0.00408227
0.00419864
0.00430794
0.00437915
0.00442266
0.0044244
0.0043867
0.00431227
0.00420832
0.00408031
0.00394601
0.00371472
0.00360324
0.00351619
0.00346091
0.00344879
0.00348529
0.00355556
0.00367479
0.00379877
0.00394483
0.00405334
0.00415855
0.00422742
0.00427244
0.00427728
0.00424538
0.00417925
0.00408412
0.00396464
0.00384109
0.00362838
0.0035238
0.00344176
0.00338786
0.00337542
0.00340656
0.00346892
0.00357779
0.00368958
0.00382576
0.00392614
0.00402866
0.00409489
0.00414061
0.00414886
0.00412062
0.00406133
0.00397402
0.00386205
0.00374809
0.00355244
0.0034525
0.00337546
0.00332339
0.00330924
0.0033376
0.00339207
0.00349326
0.00359447
0.00372185
0.0038158
0.00391541
0.00397831
0.00402586
0.0040358
0.00401151
0.00395687
0.0038767
0.0037717
0.0036647
0.00348398
0.0033906
0.00331664
0.00326446
0.00325148
0.00327676
0.00332443
0.00341893
0.00351128
0.00363163
0.0037198
0.00381699
0.00387723
0.00392551
0.00393685
0.00391496
0.00386658
0.00379106
0.00369019
0.00359191
0.0034241
0.00333484
0.00326473
0.00321341
0.00320002
0.0032231
0.00326469
0.00335439
0.00343845
0.00355433
0.00363599
0.00373268
0.0037893
0.00383891
0.00385133
0.00383109
0.00378673
0.00371612
0.00361965
0.0035275
0.00337174
0.00328599
0.00321886
0.00316767
0.00315407
0.00317646
0.00321207
0.00329845
0.00337538
0.00348718
0.0035638
0.00365959
0.00371272
0.00376397
0.00377694
0.00375867
0.0037177
0.00365064
0.00355718
0.00347058
0.00332498
0.00324419
0.00317962
0.00312755
0.00311616
0.00313614
0.00316664
0.00325052
0.00332156
0.00343059
0.00350226
0.00359803
0.00364798
0.00370065
0.00371449
0.0036951
0.00365923
0.00359493
0.0035029
0.00342354
0.00328526
0.00320723
0.00314457
0.00309119
0.00308069
0.00310055
0.00312562
0.00320942
0.00327364
0.00338225
0.00344802
0.00354574
0.00359073
0.00364661
0.00366063
0.00364142
0.00360885
0.00354617
0.00345465
0.00338059
0.00325229
0.0031778
0.00311715
0.00306263
0.00305403
0.00307264
0.0030935
0.00317705
0.00323605
0.00334451
0.0034053
0.00350485
0.00354582
0.0036039
0.00361859
0.00359774
0.00356909
0.00350788
0.00341657
0.00334821
0.00322123
0.00314894
0.00309032
0.00303306
0.0030269
0.00304557
0.00306074
0.00314598
0.00319992
0.00330937
0.00336489
0.00346745
0.00350348
0.00356567
0.00358072
0.00355756
0.00353246
0.00347201
0.00337897
0.0033166
0.00320269
0.00313437
0.00307571
0.00301582
0.0030136
0.00303092
0.00304184
0.00313036
0.00317848
0.00329116
0.00334068
0.00344785
0.00347814
0.00354481
0.00355931
0.00353316
0.00351309
0.00345175
0.00335661
0.00330066
0.0031757
0.0031109
0.00305371
0.00298742
0.00299125
0.00300896
0.00301163
0.00310629
0.00314757
0.00326548
0.00330653
0.00342142
0.00344282
0.00351791
0.00353235
0.00350023
0.00348679
0.00342366
0.0033227
0.00327628
0.017585
0.0175203
0.0174952
0.0175118
0.0175691
0.0176616
0.0177803
0.017914
0.0180486
0.0181712
0.018269
0.0183325
0.0183553
0.0183356
0.0182759
0.0181819
0.0180631
0.0179303
0.0177994
0.0176825
0.0171805
0.0170901
0.0170533
0.0170741
0.0171514
0.0172785
0.0174437
0.0176309
0.0178212
0.017995
0.018134
0.0182242
0.0182566
0.0182289
0.0181448
0.0180134
0.0178482
0.0176653
0.017482
0.0173154
0.0165373
0.0164108
0.0163565
0.0163807
0.0164832
0.0166561
0.0168841
0.0171452
0.0174126
0.0176576
0.0178537
0.01798
0.0180244
0.0179844
0.0178663
0.0176838
0.0174558
0.0172045
0.0169528
0.0167237
0.0157179
0.0155493
0.0154728
0.0154979
0.015626
0.0158488
0.0161477
0.0164942
0.0168522
0.0171816
0.0174448
0.0176129
0.01767
0.0176142
0.017456
0.0172146
0.0169159
0.0165883
0.0162609
0.0159624
0.0147984
0.0145879
0.0144874
0.0145099
0.0146592
0.0149279
0.0152952
0.0157271
0.0161773
0.0165934
0.0169249
0.0171338
0.0172011
0.0171272
0.0169275
0.0166282
0.0162613
0.0158613
0.0154628
0.0150986
0.0138317
0.0135833
0.013459
0.0134752
0.0136393
0.0139455
0.0143728
0.0148824
0.0154189
0.0159168
0.0163116
0.0165561
0.0166297
0.0165363
0.0162977
0.0159465
0.0155207
0.0150593
0.0146005
0.0141804
0.0128631
0.0125835
0.0124374
0.0124448
0.0126162
0.0129493
0.0134234
0.0139972
0.0146073
0.0151759
0.0156238
0.0158952
0.0159701
0.0158574
0.0155856
0.0151933
0.0147225
0.0142153
0.0137117
0.0132495
0.0119237
0.0116211
0.0114568
0.0114536
0.0116256
0.011974
0.0124801
0.0131014
0.0137684
0.0143924
0.0148799
0.0151676
0.0152389
0.015109
0.0148124
0.014392
0.0138922
0.0133564
0.012825
0.0123357
0.0110347
0.0107177
0.0105394
0.010525
0.0106921
0.011045
0.011568
0.0122192
0.012924
0.0135861
0.0140975
0.0143905
0.0144545
0.0143109
0.0139993
0.013565
0.0130527
0.0125054
0.0119623
0.0114605
0.0102085
0.00988494
0.00969729
0.00967235
0.00983016
0.0101785
0.0107043
0.0113678
0.0120914
0.0127734
0.0132931
0.0135812
0.0136358
0.0134835
0.0131674
0.0127327
0.0122231
0.0116792
0.0111388
0.0106373
0.00945108
0.0091278
0.00893503
0.00890055
0.00904621
0.00938242
0.00989904
0.0105591
0.0112832
0.0119681
0.0124814
0.0127566
0.0128015
0.0126466
0.0123359
0.011913
0.0114187
0.0108909
0.0103648
0.00987394
0.00876332
0.00844608
0.00825207
0.0082094
0.00834111
0.00865964
0.00915706
0.00980005
0.0105086
0.011181
0.0116756
0.0119326
0.0119693
0.011818
0.0115217
0.0111202
0.010651
0.0101486
0.00964562
0.0091735
0.00814349
0.00783643
0.00764428
0.00759506
0.00771187
0.00800873
0.00847935
0.00909422
0.00977364
0.0104209
0.0108874
0.0111237
0.0111552
0.0110134
0.0107384
0.0103656
0.00992842
0.00945779
0.00898384
0.00853581
0.00758755
0.00729373
0.00710593
0.00705154
0.0071532
0.00742597
0.00786432
0.00844267
0.00908252
0.00969469
0.0101271
0.0103427
0.0103725
0.010245
0.00999637
0.0096568
0.00925575
0.00882064
0.00837924
0.00795876
0.00709051
0.0068119
0.00663029
0.00657208
0.00665893
0.00690639
0.00730916
0.00784534
0.00843825
0.00900827
0.00940358
0.00960063
0.00963187
0.00952235
0.00930285
0.00899877
0.00863545
0.00823748
0.0078301
0.00743892
0.00664711
0.00638473
0.00621049
0.00614959
0.00622249
0.00644442
0.00680994
0.00730075
0.00784257
0.00836644
0.00872435
0.00890581
0.00894124
0.00885161
0.0086621
0.00839364
0.00806795
0.00770685
0.00733347
0.00697193
0.00625188
0.00600606
0.00583998
0.00577751
0.00583743
0.00603469
0.00636306
0.00680738
0.00729689
0.00777304
0.0080951
0.00826383
0.0083052
0.00823567
0.00807558
0.00784152
0.00755191
0.00722633
0.00688591
0.00655327
0.00589973
0.00567036
0.00551285
0.00544956
0.00549776
0.00567144
0.00596385
0.00636293
0.00680097
0.00723033
0.00751926
0.00767797
0.00772581
0.0076759
0.00754322
0.00734098
0.00708494
0.0067926
0.00648335
0.00617848
0.00558594
0.00537236
0.00522351
0.00516016
0.00519781
0.00534986
0.00560879
0.00596458
0.00635403
0.00673888
0.00699804
0.00714853
0.00720279
0.00717053
0.00706278
0.00688957
0.00666415
0.00640243
0.00612204
0.00584299
0.00530596
0.0051076
0.00496726
0.00490437
0.00493302
0.00506531
0.00529299
0.00560921
0.00595392
0.00629762
0.00653064
0.0066741
0.00673383
0.00671751
0.00663148
0.00648383
0.00628598
0.0060519
0.00579792
0.00554306
0.00505632
0.00487194
0.0047399
0.00467795
0.00469845
0.00481323
0.00501335
0.00529333
0.00559728
0.0059044
0.0061141
0.00625185
0.00631596
0.00631285
0.00624571
0.00612061
0.00594689
0.00573761
0.00550757
0.00527437
0.0048329
0.00466192
0.0045378
0.00447709
0.00449121
0.00459046
0.00476516
0.0050131
0.00528161
0.00555562
0.00574549
0.00587763
0.00594496
0.00595296
0.00590136
0.00579548
0.00564324
0.00545599
0.00524733
0.00503448
0.00463375
0.00447451
0.00435786
0.00429861
0.00430675
0.00439238
0.00454577
0.00476545
0.00500248
0.00524749
0.00542036
0.00554693
0.00561642
0.00563337
0.0055952
0.00550581
0.00537177
0.00520389
0.00501435
0.00481911
0.00445501
0.00430709
0.00419742
0.00413973
0.00414339
0.00421737
0.00435165
0.0045462
0.00475602
0.00497652
0.0051339
0.00525598
0.00532637
0.00534983
0.00532258
0.00524717
0.00512921
0.00497838
0.00480562
0.00462681
0.00429547
0.00415726
0.00405417
0.00399817
0.0039977
0.00406171
0.00417921
0.00435278
0.00453939
0.00473799
0.00488262
0.00499955
0.00507009
0.00509959
0.00508085
0.0050171
0.00491258
0.00477667
0.00461885
0.00445424
0.00415226
0.00402349
0.00392627
0.00387158
0.00386824
0.00392393
0.004027
0.00418221
0.00434861
0.00452849
0.00466201
0.00477419
0.00484427
0.00487762
0.00486594
0.00481214
0.00471962
0.00459657
0.00445137
0.00429999
0.00402391
0.00390356
0.00381193
0.00375871
0.00375316
0.00380108
0.00389202
0.00403141
0.00418009
0.00434503
0.00446821
0.00457687
0.00464537
0.0046816
0.00467595
0.0046298
0.00454749
0.00443576
0.00430174
0.00416224
0.00390981
0.00379614
0.00370974
0.00365796
0.00365003
0.00369218
0.00377214
0.00389874
0.0040328
0.00418392
0.00429842
0.00440278
0.0044699
0.00450897
0.00450757
0.00446839
0.00439418
0.00429237
0.00416812
0.00403856
0.00380717
0.00370064
0.00361862
0.00356754
0.00355861
0.00359603
0.00366615
0.00378158
0.00390284
0.00404263
0.00414976
0.00425044
0.00431572
0.00435649
0.00435833
0.00432482
0.00425849
0.00416488
0.00404837
0.00392861
0.00371549
0.00361504
0.00353735
0.00348712
0.00347759
0.00350974
0.00357243
0.00367839
0.00378846
0.00391954
0.00401895
0.00411732
0.00418044
0.00422217
0.0042276
0.0041977
0.00413789
0.00405165
0.00394201
0.00383103
0.00363484
0.00353831
0.00346504
0.0034162
0.00340468
0.00343411
0.00348928
0.00358822
0.00368849
0.00381163
0.003905
0.00400077
0.00406106
0.00410484
0.00411218
0.00408629
0.00403083
0.0039514
0.00384824
0.00374352
0.00356226
0.0034717
0.00340102
0.00335169
0.0033411
0.00336748
0.0034161
0.00350885
0.00360087
0.00371764
0.00380556
0.00389917
0.00395726
0.00400197
0.00401093
0.00398753
0.00393814
0.00386312
0.00376368
0.0036671
0.00349884
0.00341183
0.00334463
0.00329583
0.00328459
0.00330878
0.00335152
0.00343982
0.00352406
0.00363683
0.00371857
0.00381185
0.0038668
0.00391298
0.00392325
0.00390163
0.00385605
0.0037858
0.00369045
0.00359947
0.00344352
0.00335955
0.00329503
0.00324608
0.00323441
0.00325793
0.00329487
0.00338005
0.0034576
0.00356659
0.00364362
0.00373611
0.00378802
0.00383592
0.00384696
0.00382748
0.00378509
0.00371833
0.00362574
0.00353983
0.00339419
0.00331473
0.00325257
0.00320252
0.00319287
0.00321399
0.00324592
0.00332874
0.00340079
0.00350719
0.00357961
0.00367208
0.00372128
0.00377061
0.00378272
0.00376231
0.00372481
0.00366082
0.00356947
0.00349037
0.00335265
0.00327556
0.00321516
0.00316358
0.0031546
0.00317563
0.00320228
0.00328506
0.00335066
0.0034567
0.00352359
0.00361793
0.00366265
0.00371509
0.0037276
0.00370762
0.00367314
0.00361084
0.00351985
0.00344561
0.00331795
0.003244
0.00318559
0.00313268
0.00312545
0.00314528
0.00316777
0.00325029
0.00331099
0.00341686
0.00347911
0.00357514
0.00361628
0.00367079
0.00368419
0.00366278
0.00363194
0.00357127
0.00348037
0.00341146
0.0032862
0.00321401
0.00315771
0.0031019
0.00309681
0.00311684
0.0031338
0.00321783
0.00327395
0.00338055
0.00343809
0.00353675
0.0035736
0.0036318
0.00364576
0.00362245
0.00359472
0.00353506
0.00344238
0.00337891
0.00326667
0.0031982
0.00314197
0.00308326
0.00308209
0.00310079
0.00311348
0.0032008
0.0032513
0.00336106
0.00341284
0.00351595
0.00354739
0.0036099
0.00362353
0.00359735
0.0035744
0.003514
0.00341911
0.00336187
0.00323992
0.00317433
0.00312001
0.0030547
0.00305915
0.00307856
0.00308319
0.00317618
0.00322059
0.0033349
0.00337914
0.00348907
0.00351268
0.00358262
0.00359653
0.00356509
0.00354786
0.00348635
0.00338564
0.00333709
0.0165116
0.0164684
0.0164515
0.0164629
0.0165019
0.0165651
0.016646
0.0167371
0.0168291
0.016913
0.01698
0.0170237
0.0170396
0.0170266
0.0169865
0.0169229
0.0168424
0.0167519
0.0166578
0.0165753
0.0161941
0.0161311
0.0161054
0.0161196
0.016173
0.0162609
0.0163751
0.0165043
0.0166357
0.0167557
0.0168521
0.0169151
0.0169386
0.0169205
0.0168634
0.0167732
0.0166591
0.0165322
0.0164044
0.0162881
0.0156772
0.0155875
0.0155492
0.0155664
0.0156388
0.0157605
0.0159204
0.0161031
0.0162899
0.0164611
0.0165986
0.0166881
0.0167209
0.0166947
0.0166136
0.0164866
0.0163268
0.0161497
0.0159717
0.0158093
0.0150071
0.0148857
0.0148313
0.0148503
0.014943
0.0151029
0.0153161
0.0155621
0.0158154
0.0160484
0.0162353
0.0163561
0.0163993
0.0163627
0.0162527
0.0160823
0.0158694
0.0156345
0.0153989
0.0151834
0.0142413
0.0140875
0.0140153
0.0140337
0.0141447
0.0143415
0.0146082
0.0149193
0.0152421
0.0155399
0.0157783
0.0159308
0.0159833
0.0159345
0.015794
0.0155795
0.0153136
0.0150216
0.0147294
0.0144617
0.0134213
0.013237
0.0131466
0.0131621
0.0132873
0.0135163
0.0138319
0.0142045
0.0145941
0.0149549
0.0152425
0.0154241
0.0154836
0.0154216
0.0152516
0.014996
0.0146821
0.0143391
0.0139964
0.0136819
0.0125843
0.0123734
0.0122659
0.0122762
0.0124106
0.0126648
0.013021
0.0134469
0.0138958
0.0143127
0.0146434
0.0148487
0.0149119
0.0148366
0.0146406
0.0143505
0.0139975
0.0136136
0.0132304
0.0128781
0.0117575
0.0115256
0.0114031
0.0114065
0.0115449
0.011816
0.0122028
0.0126708
0.0131679
0.013631
0.0139958
0.0142178
0.0142816
0.014194
0.0139772
0.0136615
0.0132803
0.0128675
0.0124558
0.0120761
0.0109609
0.0107141
0.0105792
0.0105749
0.0107128
0.0109926
0.0113989
0.0118964
0.0124287
0.0129258
0.0133141
0.0135453
0.0136065
0.0135088
0.013278
0.0129466
0.0125492
0.0121201
0.0116919
0.0112958
0.0102079
0.00995206
0.00980791
0.00979573
0.00992905
0.0102102
0.0106251
0.0111392
0.0116928
0.0122111
0.0126118
0.0128448
0.0129016
0.0127968
0.0125592
0.0122222
0.0118201
0.0113865
0.0109532
0.0105507
0.00950621
0.00924672
0.00909637
0.00907652
0.00920243
0.00947842
0.00989217
0.0104106
0.010972
0.0114989
0.0119012
0.0121297
0.0121812
0.0120734
0.0118364
0.011503
0.0111065
0.0106785
0.0102497
0.00984948
0.00885926
0.00860087
0.00844726
0.0084204
0.0085367
0.00880226
0.00920652
0.00971838
0.010275
0.0107988
0.0111934
0.0114127
0.0114593
0.0113527
0.0111231
0.0108013
0.0104186
0.0100045
0.00958816
0.0091972
0.00826785
0.0080142
0.00785981
0.00782683
0.0079321
0.00818341
0.00857133
0.00906728
0.00960835
0.010119
0.0104983
0.0107056
0.0107486
0.0106475
0.0104308
0.0101269
0.00976443
0.00937044
0.00897214
0.00859569
0.00773036
0.0074844
0.00733129
0.00729307
0.00738661
0.00762083
0.00798721
0.00845995
0.00897673
0.00946622
0.00982469
0.0100189
0.0100603
0.00996814
0.00976868
0.00948715
0.00914917
0.00877931
0.00840299
0.00804482
0.00724402
0.00700777
0.00685757
0.00681511
0.0068968
0.00711223
0.00745356
0.00789769
0.00838358
0.00884582
0.00918013
0.00936137
0.00940323
0.00932288
0.0091435
0.00888706
0.008576
0.00823273
0.00788058
0.00754297
0.00680542
0.00658019
0.00643415
0.00638827
0.00645836
0.0066542
0.00696825
0.00738039
0.00783114
0.00826221
0.0085709
0.00874052
0.00878441
0.00871771
0.00855982
0.00832947
0.00804624
0.00773039
0.00740341
0.00708751
0.00641061
0.00619712
0.00605611
0.00600774
0.00606676
0.00624313
0.00652911
0.00690744
0.00732101
0.00771879
0.00800181
0.00816118
0.00820838
0.00815594
0.00801989
0.00781548
0.00755982
0.00727125
0.00696941
0.00667536
0.00605573
0.00585433
0.00571899
0.00566875
0.00571753
0.00587489
0.00613302
0.00647751
0.00685337
0.00721764
0.00747596
0.0076267
0.0076777
0.00763962
0.00752446
0.00734482
0.00711549
0.0068531
0.00657571
0.00630324
0.00573705
0.00554754
0.00541816
0.00536677
0.00540614
0.00554563
0.00577732
0.00608863
0.00642798
0.00675951
0.00699487
0.00713809
0.00719314
0.00716835
0.0070727
0.00691623
0.00671155
0.00647382
0.00621959
0.0059676
0.00545078
0.00527305
0.00514973
0.00509772
0.00512886
0.00525178
0.00545814
0.00573853
0.00604341
0.00634389
0.00655852
0.00669504
0.00675362
0.00674124
0.00666302
0.00652746
0.00634548
0.00613047
0.00589783
0.00566548
0.00519403
0.00502726
0.00491004
0.00485792
0.00488143
0.00498939
0.00517307
0.00542452
0.00569724
0.00596961
0.00616505
0.00629606
0.00635758
0.00635574
0.00629314
0.00617645
0.00601466
0.00582043
0.00560774
0.0053932
0.00496309
0.00480713
0.00469586
0.00464397
0.00466142
0.00475587
0.00491809
0.00514349
0.00538768
0.00563395
0.00581283
0.00593839
0.00600218
0.00600951
0.00595999
0.0058597
0.00571631
0.00554085
0.00534625
0.00514881
0.00475635
0.00460987
0.00450435
0.00445297
0.00446457
0.00454698
0.00469107
0.00489309
0.00511142
0.00533434
0.00549864
0.00561887
0.00568425
0.00569919
0.00566139
0.00557546
0.00544784
0.00528914
0.00511093
0.00492839
0.00457016
0.00443306
0.00433303
0.00428234
0.00428947
0.00436143
0.00448891
0.00466968
0.00486525
0.00506815
0.00521888
0.00533493
0.00540098
0.00542155
0.00539345
0.00531994
0.00520654
0.0050628
0.00489919
0.00473081
0.00440348
0.00427444
0.00417964
0.00412986
0.00413278
0.00419566
0.00430834
0.00447122
0.00464706
0.00483164
0.0049711
0.00508235
0.00514856
0.00517465
0.0051543
0.00509133
0.00498994
0.00485945
0.00470896
0.00455289
0.00425354
0.00413251
0.00404245
0.00399326
0.00399317
0.00404839
0.00414816
0.0042951
0.00445346
0.00462214
0.00475163
0.00485851
0.00492443
0.00495414
0.00494038
0.00488655
0.00479609
0.00467715
0.00453783
0.00439343
0.00411892
0.00400511
0.00391965
0.00387127
0.00386882
0.00391674
0.00400556
0.00413854
0.0042813
0.00443727
0.00455732
0.00466109
0.00472573
0.00475823
0.00475026
0.00470354
0.00462247
0.00451383
0.00438451
0.00425068
0.00399907
0.0038909
0.00380983
0.00376231
0.00375727
0.00379975
0.00387848
0.00400015
0.00412995
0.00427383
0.00438593
0.00448577
0.0045494
0.00458479
0.00458099
0.0045409
0.00446728
0.00436778
0.00424728
0.00412228
0.00389121
0.0037893
0.00371188
0.00366455
0.00365832
0.00369629
0.00376589
0.00387748
0.00399576
0.00412964
0.00423499
0.00433151
0.00439369
0.00443088
0.00443034
0.00439572
0.00432953
0.00423761
0.00412408
0.00400797
0.00379483
0.00369825
0.00362454
0.00357763
0.00357058
0.00360344
0.0036661
0.00376909
0.00387718
0.00400341
0.00410154
0.00419608
0.00425651
0.00429481
0.00429794
0.00426682
0.00420679
0.00412177
0.0040145
0.0039064
0.00371003
0.00361668
0.00354689
0.003501
0.00349173
0.00352197
0.00357752
0.00367414
0.00377321
0.00389229
0.00398482
0.00407703
0.00413505
0.00417553
0.00418071
0.0041536
0.00409761
0.00401905
0.00391779
0.00381526
0.00363379
0.00354587
0.00347824
0.00343151
0.003423
0.00345026
0.00349956
0.00359042
0.00368191
0.0037952
0.00388268
0.00397294
0.00402918
0.0040707
0.00407765
0.00405306
0.00400291
0.00392852
0.00383058
0.00373565
0.00356721
0.00348231
0.00341783
0.00337137
0.00336198
0.00338711
0.00343076
0.00351751
0.00360175
0.00371146
0.00379314
0.0038832
0.00393672
0.0039798
0.00398823
0.00396552
0.00391892
0.00384916
0.00375502
0.00366515
0.00350926
0.00342694
0.00336489
0.00331803
0.00330801
0.00333253
0.00337057
0.00345441
0.00353243
0.00363862
0.00371596
0.00380529
0.00385619
0.00390099
0.00391037
0.00388996
0.00384633
0.00377998
0.00368835
0.00360309
0.00345766
0.00337942
0.00331957
0.00327142
0.00326322
0.00328539
0.00331856
0.00340013
0.00347308
0.00357682
0.00364993
0.0037392
0.00378784
0.00383403
0.00384464
0.00382347
0.00378448
0.00372093
0.00363036
0.00355147
0.00341453
0.00333825
0.00328005
0.00323019
0.00322243
0.0032446
0.00327265
0.00335419
0.00342111
0.00352449
0.0035925
0.00368351
0.00372813
0.00377729
0.00378847
0.00376798
0.00373173
0.00366994
0.00357958
0.00350509
0.00337829
0.00330474
0.00324857
0.00319722
0.00319101
0.0032121
0.00323604
0.00331727
0.00337969
0.0034828
0.00354658
0.00363907
0.00368059
0.0037316
0.00374386
0.00372218
0.00368925
0.00362927
0.0035389
0.00346933
0.00334604
0.00327379
0.00321982
0.00316547
0.00316107
0.00318253
0.00320114
0.00328363
0.003342
0.00344553
0.00350521
0.00359988
0.0036378
0.00369204
0.00370503
0.00368189
0.00365156
0.0035929
0.0035007
0.00343599
0.00332562
0.00325679
0.00320302
0.00314557
0.00314499
0.00316523
0.00317955
0.00326528
0.0033183
0.00342485
0.00347909
0.00357798
0.00361085
0.00366916
0.00368204
0.00365619
0.00363035
0.00357116
0.00347663
0.00341788
0.00329931
0.00323261
0.00318121
0.00311711
0.00312156
0.00314299
0.00314946
0.00324022
0.00328804
0.00339832
0.00344607
0.00355076
0.00357697
0.0036416
0.00365507
0.00362476
0.00360365
0.00354412
0.00344381
0.00339278
0.015614
0.0155831
0.0155709
0.0155786
0.0156055
0.0156493
0.0157056
0.015769
0.0158329
0.0158914
0.0159382
0.0159691
0.0159805
0.0159719
0.0159447
0.0159012
0.0158461
0.0157839
0.0157191
0.0156605
0.0153573
0.0153125
0.015294
0.0153038
0.0153413
0.0154031
0.0154833
0.015574
0.0156663
0.0157508
0.0158188
0.0158636
0.0158807
0.0158688
0.0158292
0.0157663
0.0156863
0.0155969
0.0155066
0.0154241
0.0149343
0.0148697
0.0148421
0.0148544
0.0149061
0.014993
0.0151069
0.0152368
0.0153695
0.0154913
0.0155894
0.0156537
0.015678
0.0156605
0.0156038
0.015514
0.0154002
0.0152736
0.015146
0.0150293
0.0143784
0.0142898
0.0142504
0.0142645
0.0143322
0.0144483
0.0146024
0.0147796
0.0149618
0.0151293
0.0152642
0.0153522
0.015385
0.0153605
0.0152827
0.0151606
0.0150068
0.0148362
0.0146645
0.0145071
0.0137334
0.0136195
0.0135668
0.0135814
0.0136642
0.0138097
0.0140054
0.0142326
0.0144675
0.0146841
0.0148582
0.014971
0.0150118
0.014979
0.0148786
0.0147227
0.0145277
0.0143122
0.0140957
0.0138969
0.0130318
0.0128934
0.0128267
0.0128401
0.0129357
0.0131081
0.0133434
0.0136192
0.0139062
0.0141715
0.0143841
0.0145205
0.0145682
0.0145263
0.0144035
0.0142152
0.0139814
0.013724
0.0134658
0.0132283
0.012304
0.0121433
0.012063
0.0120735
0.0121785
0.0123734
0.0126432
0.0129627
0.0132974
0.0136076
0.0138552
0.0140119
0.0140644
0.0140133
0.01387
0.0136533
0.0133862
0.0130933
0.0127997
0.0125291
0.0115733
0.011394
0.0113013
0.0113075
0.0114182
0.0116297
0.0119272
0.0122831
0.0126583
0.0130069
0.0132836
0.0134562
0.0135113
0.0134514
0.013291
0.0130518
0.0127588
0.0124388
0.0121179
0.0118215
0.0108582
0.0106645
0.0105611
0.010562
0.0106746
0.0108968
0.0112139
0.0115974
0.0120042
0.0123828
0.0126814
0.0128646
0.0129201
0.0128529
0.01268
0.0124251
0.0121148
0.0117766
0.0114374
0.0111232
0.0101717
0.00996792
0.00985585
0.00985093
0.00996224
0.0101891
0.0105178
0.0109194
0.0113477
0.0117472
0.0120598
0.0122484
0.0123026
0.0122299
0.0120497
0.0117865
0.0114676
0.0111203
0.0107715
0.010447
0.00952239
0.00931278
0.00919427
0.00918334
0.00929063
0.00951688
0.00984944
0.0102597
0.0106995
0.0111105
0.0114292
0.0116183
0.0116703
0.0115949
0.0114126
0.0111484
0.0108288
0.0104805
0.01013
0.00980239
0.0089155
0.00870381
0.00858101
0.00856432
0.00866532
0.0088863
0.00921577
0.00962612
0.0100678
0.0104814
0.0107991
0.0109849
0.0110345
0.0109592
0.01078
0.0105209
0.0102076
0.00986545
0.00951977
0.00919508
0.00835337
0.00814275
0.00801756
0.00799546
0.00808867
0.00830088
0.00862139
0.00902412
0.00945907
0.00986747
0.010178
0.0103577
0.0104054
0.0103331
0.0101614
0.00991289
0.00961152
0.00928098
0.00894548
0.00862839
0.00783631
0.00762939
0.00750349
0.00747654
0.00756096
0.00776148
0.0080683
0.00845719
0.00887825
0.0092748
0.00957354
0.00974554
0.00979222
0.0097257
0.00956509
0.00933111
0.00904573
0.00873083
0.00840937
0.00810358
0.00736324
0.00716197
0.00703681
0.00700563
0.00708077
0.00726773
0.00755741
0.00792753
0.00832896
0.00870853
0.00899209
0.00915572
0.00920259
0.00914394
0.00899708
0.00878044
0.00851377
0.00821736
0.0079125
0.00762052
0.00693222
0.00673805
0.00661479
0.00657996
0.0066457
0.00681797
0.00708809
0.00743606
0.0078138
0.00817267
0.00843914
0.00859461
0.00864263
0.00859341
0.00846184
0.00826407
0.00801766
0.00774118
0.00745447
0.00717791
0.00654069
0.00635453
0.00623404
0.00619629
0.00625282
0.00640992
0.00665921
0.0069829
0.00733452
0.00767041
0.00791884
0.00806665
0.00811662
0.00807766
0.00796213
0.00778374
0.00755808
0.00730217
0.0070343
0.00677389
0.00618586
0.00600834
0.00589135
0.00585115
0.00589892
0.00604095
0.00626893
0.00656755
0.00689172
0.00720378
0.0074341
0.00757507
0.00762732
0.00759892
0.00749923
0.00733996
0.00713475
0.00689917
0.00665013
0.0064062
0.00586488
0.00569612
0.00558304
0.00554103
0.00558058
0.00570805
0.00591531
0.00618871
0.00648562
0.00677367
0.00698657
0.00712124
0.0071761
0.00715775
0.00707329
0.00693234
0.00674672
0.0065308
0.00630009
0.00607218
0.0055747
0.0054149
0.00530598
0.00526264
0.00529485
0.00540856
0.00559545
0.00584486
0.00611537
0.00638002
0.00657676
0.00670558
0.00676275
0.00675409
0.00668353
0.00655953
0.00639242
0.00619497
0.00598174
0.00576958
0.00531297
0.00516164
0.00505707
0.00501292
0.00503813
0.00513918
0.00530757
0.00553399
0.00577921
0.00602232
0.00620355
0.00632748
0.00638661
0.00638636
0.00632865
0.0062203
0.00606995
0.00588975
0.005693
0.00549532
0.00507643
0.00493371
0.00483352
0.00478888
0.00480847
0.00489789
0.00504827
0.00525362
0.00547602
0.00569856
0.00586618
0.00598517
0.00604592
0.00605322
0.00600641
0.00591195
0.00577723
0.00561291
0.00543132
0.00524791
0.00486379
0.00472863
0.00463277
0.00458795
0.00460195
0.00468082
0.0048159
0.00500199
0.00520325
0.00540698
0.00556237
0.0056765
0.00573841
0.00575214
0.00571549
0.00563343
0.00551226
0.00536233
0.0051947
0.00502379
0.00467162
0.00454418
0.00445256
0.00440779
0.00441746
0.00448704
0.00460778
0.00477597
0.00495826
0.0051457
0.00528938
0.00539977
0.00546218
0.00548073
0.00545261
0.00538149
0.0052728
0.00513593
0.0049809
0.00482214
0.0044991
0.00437828
0.00429078
0.00424628
0.00425179
0.00431317
0.00442095
0.00457392
0.00473957
0.00491168
0.00504557
0.00515158
0.00521416
0.00523771
0.00521655
0.00515488
0.00505683
0.00493166
0.00478811
0.00463995
0.00434353
0.00422949
0.00414576
0.0041013
0.00410377
0.00415816
0.00425446
0.00439364
0.00454425
0.00470286
0.00482796
0.00493
0.00499243
0.0050193
0.00500422
0.00495088
0.00486271
0.00474786
0.00461415
0.00447622
0.00420362
0.00409573
0.00401576
0.0039716
0.00397163
0.00401921
0.00410569
0.00423259
0.00436953
0.00451734
0.00463397
0.00473331
0.00479468
0.00482417
0.00481457
0.00476776
0.00468819
0.00458266
0.00445787
0.00432932
0.00407887
0.0039757
0.00389938
0.00385561
0.00385292
0.00389543
0.00397269
0.00408962
0.00421515
0.00435238
0.00446183
0.00455758
0.00461824
0.00465061
0.00464502
0.00460446
0.0045317
0.00443454
0.00431767
0.00419694
0.0039665
0.00386881
0.00379552
0.00375151
0.00374752
0.00378578
0.00385458
0.00396245
0.00407767
0.00420609
0.00430943
0.0044022
0.00446174
0.00449591
0.00449352
0.00445819
0.00439238
0.00430221
0.00419159
0.00407892
0.00386606
0.00377301
0.0037029
0.00365895
0.00365398
0.0036873
0.0037497
0.00384975
0.00395575
0.00407745
0.00417411
0.00426518
0.00432331
0.00435867
0.00435998
0.00432798
0.00426796
0.00418423
0.0040793
0.00397392
0.00377763
0.00368722
0.00362058
0.00357733
0.00356996
0.0036008
0.0036565
0.00375077
0.00384854
0.0039638
0.00405533
0.00414429
0.00420037
0.00423798
0.00424141
0.00421339
0.00415707
0.00407948
0.00398009
0.00387964
0.00369819
0.00361271
0.00354786
0.00350348
0.00349672
0.0035247
0.00357445
0.00366339
0.00375421
0.0038642
0.00395112
0.00403828
0.00409294
0.00413165
0.00413693
0.00411143
0.00406074
0.00398706
0.00389062
0.00379724
0.00362885
0.0035459
0.00348392
0.0034396
0.00343176
0.00345766
0.00350203
0.00358715
0.00367128
0.00377806
0.00385957
0.00394664
0.00399896
0.00403926
0.00404613
0.0040226
0.00397518
0.00390599
0.00381308
0.00372425
0.0035686
0.0034878
0.00342804
0.0033831
0.00337445
0.00339985
0.00343881
0.0035212
0.00359957
0.00370305
0.00378063
0.00386698
0.00391707
0.00395905
0.003967
0.0039459
0.00390121
0.00383537
0.00374473
0.00366005
0.00351502
0.00343788
0.00338019
0.00333382
0.00332678
0.00334993
0.00338417
0.00346436
0.00353813
0.00363923
0.00371298
0.0037992
0.00384746
0.00389074
0.00390005
0.00387836
0.00383805
0.00377502
0.0036853
0.00360654
0.00347054
0.00339496
0.00333885
0.0032906
0.00328378
0.00330703
0.00333633
0.00341646
0.00348464
0.00358536
0.00365446
0.00374225
0.00378696
0.00383302
0.00384305
0.00382228
0.0037844
0.00372321
0.00363356
0.00355873
0.00343297
0.00335968
0.00330568
0.00325584
0.00325033
0.00327267
0.00329794
0.00337765
0.00344177
0.00354206
0.00360739
0.00369639
0.00373849
0.00378614
0.0037974
0.00377571
0.00374078
0.00368163
0.00359187
0.00352153
0.0034004
0.00332793
0.00327625
0.00322336
0.00321927
0.00324223
0.00326237
0.00334304
0.0034037
0.00350404
0.00356593
0.00365661
0.00369579
0.00374616
0.00375831
0.00373561
0.00370278
0.00364525
0.00355365
0.00348754
0.00337919
0.0033098
0.00325849
0.00320234
0.00320192
0.00322384
0.00323966
0.00332345
0.00337911
0.00348225
0.00353908
0.00363369
0.00366823
0.00372237
0.0037346
0.00370941
0.00368071
0.00362292
0.00352887
0.00346842
0.0033535
0.00328541
0.00323699
0.00317424
0.0031781
0.00320182
0.00321004
0.00329806
0.00334955
0.00345547
0.00350698
0.00360624
0.00363539
0.00369464
0.00370773
0.00367899
0.00365394
0.00359668
0.00349692
0.0034431
0.0148675
0.0148455
0.0148368
0.0148421
0.014861
0.0148921
0.0149319
0.014977
0.0150222
0.0150636
0.0150967
0.0151182
0.0151255
0.0151191
0.0151004
0.0150691
0.0150273
0.014983
0.0149405
0.0149003
0.0146565
0.0146241
0.0146106
0.0146175
0.0146442
0.0146884
0.0147458
0.0148108
0.0148768
0.0149373
0.0149862
0.0150184
0.0150309
0.0150228
0.0149948
0.01495
0.0148925
0.0148284
0.0147638
0.0147046
0.0143039
0.0142567
0.0142364
0.0142452
0.0142827
0.0143457
0.0144282
0.0145222
0.0146182
0.0147064
0.0147777
0.0148247
0.014843
0.0148311
0.0147907
0.014726
0.0146436
0.0145515
0.0144586
0.0143734
0.0138353
0.0137696
0.0137405
0.013751
0.013801
0.0138864
0.0139995
0.0141293
0.0142625
0.0143851
0.0144842
0.0145494
0.0145745
0.0145578
0.0145018
0.0144128
0.0143
0.0141742
0.0140473
0.0139307
0.0132845
0.013199
0.0131597
0.013171
0.0132334
0.0133422
0.0134878
0.0136563
0.01383
0.0139902
0.0141195
0.0142042
0.0142362
0.0142137
0.0141407
0.0140257
0.0138807
0.0137195
0.013557
0.0134074
0.0126773
0.012572
0.0125218
0.0125329
0.0126063
0.0127374
0.012915
0.013122
0.0133367
0.0135352
0.0136949
0.0137987
0.0138369
0.0138082
0.013718
0.0135773
0.013401
0.0132056
0.0130087
0.0128273
0.0120386
0.0119147
0.0118536
0.0118632
0.0119455
0.012096
0.0123026
0.0125455
0.0127988
0.0130333
0.0132216
0.0133427
0.0133861
0.0133508
0.0132445
0.0130805
0.0128761
0.0126503
0.012423
0.0122131
0.0113884
0.0112481
0.0111768
0.0111837
0.0112722
0.0114383
0.0116693
0.0119433
0.0122306
0.0124971
0.0127102
0.0128458
0.0128927
0.0128513
0.012731
0.0125475
0.01232
0.0120695
0.0118171
0.0115836
0.010743
0.0105893
0.0105088
0.0105121
0.0106039
0.0107812
0.0110309
0.0113299
0.0116451
0.0119379
0.0121708
0.0123173
0.0123663
0.0123195
0.0121883
0.0119902
0.0117457
0.0114768
0.0112059
0.0109546
0.0101149
0.00995103
0.00986265
0.00986167
0.00995419
0.0101379
0.0104004
0.0107175
0.0110533
0.0113659
0.0116131
0.0117667
0.0118164
0.0117655
0.0116272
0.0114197
0.0111646
0.0108843
0.0106014
0.010338
0.00951303
0.00934213
0.00924743
0.00924183
0.00933267
0.00951871
0.00978788
0.0101159
0.0104648
0.0107902
0.0110459
0.011203
0.0112525
0.0111994
0.0110576
0.0108463
0.0105869
0.0103016
0.010013
0.00974316
0.0089434
0.00876845
0.00866901
0.00865874
0.00874576
0.00893012
0.00920039
0.0095326
0.00988738
0.0102188
0.0104775
0.010635
0.0106839
0.0106305
0.0104892
0.0102789
0.0100208
0.00973636
0.00944767
0.00917634
0.00840952
0.0082332
0.00813047
0.00811558
0.00819733
0.00837686
0.00864326
0.00897336
0.00932714
0.00965846
0.00991532
0.0100706
0.010119
0.0100672
0.00993002
0.00972537
0.00947332
0.00919451
0.00891034
0.00864173
0.00791303
0.0077376
0.00763297
0.00761375
0.0076891
0.00786103
0.00811939
0.00844218
0.00878908
0.00911488
0.00936589
0.00951735
0.00956549
0.00951751
0.00938725
0.00919163
0.00894941
0.00868006
0.0084041
0.00814161
0.0074542
0.00728148
0.00717615
0.00715294
0.0072212
0.00738363
0.00763073
0.0079418
0.00827692
0.00859282
0.00883491
0.0089815
0.00902998
0.00898734
0.00886638
0.00868246
0.00845286
0.00819583
0.00793071
0.00767692
0.00703226
0.0068637
0.00675869
0.0067319
0.00679268
0.0069443
0.0071777
0.00747387
0.00779345
0.00809608
0.00832717
0.00846847
0.0085178
0.00848183
0.00837168
0.00820122
0.00798605
0.00774314
0.00749067
0.00724742
0.00664575
0.00648235
0.00637851
0.00634867
0.00640189
0.00654191
0.00676007
0.00703908
0.0073406
0.00762766
0.00784639
0.00798233
0.00803303
0.00800447
0.0079061
0.00774997
0.00755019
0.00732251
0.00708388
0.00685224
0.00629283
0.00613539
0.00603341
0.00600082
0.00604672
0.00617489
0.00637692
0.00663757
0.00691931
0.00718957
0.00739529
0.00752616
0.00757835
0.00755766
0.00747128
0.00732978
0.00714574
0.0069336
0.00670925
0.00648996
0.00597142
0.00582025
0.00572065
0.00568589
0.00572469
0.00584111
0.00602705
0.00626865
0.00653017
0.00678292
0.00697563
0.00710153
0.00715551
0.00714248
0.00706796
0.00694087
0.00677226
0.00657562
0.00636563
0.0061587
0.00567912
0.00553465
0.00543773
0.00540123
0.00543357
0.00553865
0.00570829
0.00593137
0.00617275
0.00640791
0.00658822
0.0067093
0.00676484
0.00675946
0.006696
0.00658258
0.00642896
0.00624724
0.00605124
0.00585681
0.00541411
0.00527607
0.00518214
0.00514436
0.00517036
0.00526481
0.00541944
0.00562431
0.00584585
0.00606454
0.00623246
0.00634946
0.00640635
0.0064077
0.0063548
0.00625431
0.0061145
0.00594702
0.00576452
0.00558177
0.00517352
0.00504228
0.00495147
0.00491272
0.00493359
0.00501808
0.00515763
0.0053455
0.00554885
0.00575132
0.00590821
0.00602093
0.00607902
0.00608661
0.00604274
0.00595396
0.00582738
0.00567325
0.0055034
0.00533249
0.0049564
0.00483111
0.0047435
0.00470406
0.00471967
0.00479495
0.00492166
0.00509371
0.00527979
0.0054671
0.00561386
0.00572229
0.00578125
0.0057943
0.0057592
0.00568109
0.00556608
0.00542427
0.00526625
0.00510575
0.00475952
0.00464056
0.00455617
0.00451631
0.00452781
0.00459487
0.00470923
0.00486619
0.00503652
0.00521057
0.00534733
0.00545252
0.00551187
0.00552903
0.00550139
0.00543287
0.00532878
0.00519832
0.00505116
0.00490105
0.00458231
0.00446873
0.00438754
0.00434748
0.00435492
0.00441462
0.00451765
0.00466171
0.00481803
0.00497922
0.00510759
0.00520885
0.00526839
0.00529005
0.00526864
0.00520854
0.00511384
0.00499369
0.00485653
0.00471552
0.00442214
0.00431428
0.00423604
0.00419559
0.00420004
0.00425339
0.00434625
0.00447836
0.00462178
0.00477149
0.0048922
0.00498989
0.00504939
0.00507406
0.00505821
0.00500568
0.00491988
0.00480892
0.00468041
0.00454837
0.00427782
0.0041752
0.00410003
0.00405946
0.00406146
0.00410848
0.00419257
0.00431385
0.00444533
0.00458588
0.00469905
0.00479441
0.00485305
0.00488014
0.00486943
0.00482286
0.0047449
0.00464238
0.0045218
0.00439808
0.00414897
0.00405025
0.00397811
0.00393756
0.00393676
0.00397908
0.00405477
0.00416727
0.00428873
0.00442
0.00452674
0.00461884
0.00467701
0.00470692
0.00470003
0.00465931
0.00458755
0.00449267
0.00437922
0.00426238
0.00403279
0.00393888
0.00386921
0.00382808
0.00382592
0.00386426
0.00393215
0.00403649
0.00414875
0.00427223
0.00437352
0.00446291
0.00452023
0.00455189
0.00454809
0.00451235
0.0044471
0.00435864
0.00425078
0.00414126
0.00392886
0.00383901
0.00377207
0.00373071
0.00372746
0.00376105
0.00382303
0.00392026
0.00402421
0.00414179
0.00423692
0.00432488
0.00438107
0.00441395
0.00441381
0.00438122
0.00432139
0.00423895
0.00413626
0.00403336
0.00383735
0.00374958
0.00368574
0.00364482
0.00363902
0.00367028
0.00372598
0.00381798
0.00391442
0.00402616
0.00411665
0.00420267
0.00425713
0.00429227
0.00429429
0.00426562
0.00420915
0.00413253
0.00403496
0.0039364
0.00375515
0.00367188
0.00360949
0.00356721
0.00356192
0.00359044
0.00364049
0.00372754
0.00381764
0.00392456
0.00401087
0.00409523
0.00414856
0.00418483
0.00418873
0.00416257
0.00411151
0.00403855
0.00394358
0.00385163
0.00368345
0.00360225
0.00354251
0.0035001
0.00349355
0.00352009
0.00356501
0.00364851
0.00373245
0.00383648
0.00391778
0.00400212
0.00405346
0.0040913
0.00409688
0.00407274
0.00402467
0.00395607
0.00386438
0.00377648
0.00362122
0.00354179
0.00348408
0.0034409
0.00343336
0.0034595
0.00349924
0.00358015
0.0036588
0.0037597
0.00383747
0.00392108
0.00397053
0.00400999
0.00401674
0.00399515
0.00394957
0.00388426
0.00379464
0.00371045
0.00356596
0.00348979
0.00343406
0.00338933
0.00338321
0.00340721
0.00344239
0.00352112
0.00359564
0.0036942
0.00376858
0.00385194
0.00389997
0.0039406
0.0039488
0.00392679
0.00388532
0.00382286
0.00373401
0.00365531
0.00352034
0.00344534
0.00339115
0.00334443
0.00333827
0.00336253
0.00339294
0.00347158
0.00354095
0.00363908
0.00370924
0.00379399
0.00383891
0.0038821
0.00389115
0.0038703
0.00383094
0.00377041
0.0036815
0.00360626
0.00348165
0.00340849
0.00335654
0.00330817
0.00330304
0.00332662
0.00335309
0.00343112
0.00349692
0.00359439
0.00366129
0.00374692
0.00378973
0.0038342
0.00384461
0.00382313
0.00378633
0.00372809
0.00363903
0.0035678
0.00344893
0.00337613
0.00332663
0.00327518
0.00327106
0.00329554
0.00331711
0.00339574
0.00345869
0.00355582
0.00361995
0.00370674
0.00374732
0.00379397
0.00380539
0.00378338
0.00374815
0.00369185
0.00360093
0.00353329
0.00342705
0.00335692
0.00330802
0.00325319
0.00325253
0.00327622
0.00329344
0.003375
0.00343336
0.00353299
0.0035925
0.00368285
0.00371926
0.00376932
0.003781
0.00375676
0.00372526
0.00366903
0.00357556
0.0035132
0.00340216
0.00333243
0.00328701
0.00322573
0.00322845
0.00325468
0.00326456
0.00334942
0.00340476
0.00350609
0.00356156
0.00365532
0.00368766
0.00374155
0.00375432
0.00372753
0.00369854
0.00364377
0.0035447
0.00348778
0.0142577
0.0142414
0.0142348
0.0142385
0.0142521
0.0142746
0.0143035
0.0143363
0.0143693
0.0143995
0.0144234
0.0144383
0.0144428
0.0144386
0.0144268
0.0144056
0.0143768
0.0143444
0.0143118
0.0142819
0.0140798
0.0140558
0.0140457
0.0140506
0.01407
0.0141023
0.0141443
0.0141918
0.0142402
0.0142845
0.0143204
0.014344
0.0143534
0.0143477
0.0143278
0.0142953
0.0142535
0.0142065
0.014159
0.0141153
0.0137797
0.0137444
0.0137292
0.0137356
0.0137632
0.0138098
0.0138707
0.0139402
0.0140111
0.0140764
0.0141293
0.0141645
0.0141786
0.0141703
0.0141408
0.0140933
0.0140324
0.0139641
0.013895
0.0138315
0.0133774
0.0133277
0.0133057
0.0133135
0.013351
0.013415
0.0134996
0.0135965
0.0136959
0.0137875
0.0138617
0.013911
0.0139306
0.0139189
0.0138778
0.0138117
0.0137274
0.0136329
0.0135374
0.0134494
0.0128993
0.012834
0.012804
0.0128127
0.0128603
0.0129429
0.0130532
0.0131804
0.0133114
0.0134323
0.0135302
0.0135949
0.0136203
0.0136047
0.0135506
0.0134642
0.0133544
0.0132318
0.0131078
0.0129934
0.0123665
0.012285
0.0122464
0.0122554
0.0123124
0.0124134
0.0125496
0.0127077
0.0128713
0.0130226
0.0131449
0.0132253
0.0132563
0.0132362
0.0131687
0.0130618
0.0129266
0.0127759
0.0126236
0.0124829
0.0117993
0.0117022
0.0116548
0.011663
0.011728
0.0118458
0.0120063
0.012194
0.0123892
0.0125699
0.0127156
0.0128108
0.0128467
0.012822
0.0127417
0.0126156
0.0124568
0.0122802
0.0121017
0.0119366
0.0112148
0.0111035
0.0110475
0.0110541
0.0111253
0.0112571
0.011439
0.0116533
0.0118771
0.0120847
0.0122516
0.0123598
0.0123997
0.0123706
0.0122788
0.0121359
0.0119567
0.011758
0.011557
0.0113706
0.0106276
0.010504
0.0104401
0.0104442
0.0105194
0.0106622
0.0108614
0.0110981
0.0113463
0.0115769
0.0117617
0.0118804
0.0119233
0.0118903
0.0117892
0.0116329
0.0114376
0.0112213
0.0110023
0.0107988
0.0100493
0.00991571
0.00984475
0.00984576
0.00992283
0.010073
0.0102851
0.0105391
0.0108067
0.0110556
0.0112543
0.0113809
0.0114257
0.0113897
0.0112818
0.011116
0.0109094
0.0106806
0.0104487
0.0102323
0.00948873
0.00934756
0.0092706
0.00926808
0.00934503
0.00949924
0.00971956
0.00998546
0.0102668
0.0105289
0.0107372
0.0108688
0.0109148
0.010877
0.0107652
0.010594
0.010381
0.0101448
0.00990476
0.00968002
0.00895229
0.00880591
0.00872409
0.00871778
0.00879276
0.00894767
0.00917171
0.00944428
0.00973366
0.0100038
0.0102175
0.0103518
0.0103984
0.0103602
0.0102474
0.0100748
0.00985979
0.00962095
0.0093775
0.00914846
0.00844424
0.0082949
0.00820932
0.00819913
0.00827073
0.0084236
0.00864724
0.00892131
0.00921334
0.00948661
0.00970186
0.00983664
0.00988367
0.00984648
0.00973546
0.0095651
0.00935224
0.00911489
0.00887199
0.00864231
0.00796717
0.00781678
0.00772858
0.0077146
0.00778165
0.00792996
0.00814957
0.00842081
0.00871067
0.00898266
0.00919607
0.00932968
0.00937722
0.00934256
0.00923572
0.00907055
0.00886313
0.00863079
0.00839184
0.00816455
0.00752231
0.00737254
0.00728271
0.00726508
0.00732679
0.0074687
0.00768134
0.00794589
0.00822939
0.00849638
0.00870518
0.0088365
0.00888471
0.00885377
0.00875313
0.00859562
0.00839632
0.00817169
0.00793928
0.00771687
0.00710984
0.00696206
0.00687147
0.00685043
0.0069063
0.00704041
0.00724375
0.00749865
0.0077724
0.00803138
0.00823351
0.00836182
0.00841088
0.00838476
0.00829174
0.00814367
0.00795442
0.00773946
0.00751551
0.0072999
0.00672917
0.00658441
0.00649387
0.00646981
0.00651953
0.00664486
0.00683723
0.00708026
0.0073418
0.00759052
0.00778448
0.00790933
0.00795954
0.00793892
0.00785455
0.00771697
0.00753898
0.00733508
0.00712104
0.00691349
0.00637923
0.00623836
0.00614847
0.00612163
0.00616525
0.00628134
0.00646161
0.00669132
0.00693876
0.00717584
0.00736065
0.00748199
0.00753332
0.00751865
0.00744338
0.00731696
0.00715096
0.0069588
0.00675542
0.00655694
0.00605861
0.00592207
0.00583342
0.00580426
0.00584176
0.00594842
0.00611624
0.00633165
0.00656418
0.00678856
0.0069638
0.00708144
0.00713413
0.00712539
0.00705939
0.00694428
0.00679037
0.00661035
0.00641811
0.00622902
0.00576548
0.00563384
0.00554675
0.00551558
0.00554746
0.00564479
0.00579961
0.00600076
0.00621795
0.00642914
0.00659499
0.00670883
0.00676267
0.00676003
0.00670285
0.00659875
0.00645696
0.00628893
0.00610781
0.00592857
0.00549845
0.00537161
0.00528646
0.00525372
0.00527991
0.00536832
0.00551098
0.00569771
0.00589931
0.00609793
0.00625395
0.00636455
0.00641936
0.00642218
0.00637369
0.00628029
0.00614985
0.00599354
0.00582345
0.00565356
0.00525504
0.00513353
0.00505053
0.00501648
0.00503803
0.00511793
0.00524793
0.00542093
0.00560804
0.00579383
0.00594099
0.00604799
0.00610375
0.00611178
0.00607078
0.00598725
0.005868
0.00572291
0.00556335
0.00540327
0.00503461
0.00491774
0.00483702
0.00480193
0.00481856
0.00489043
0.00500966
0.00516964
0.00534262
0.00551613
0.00565498
0.00575828
0.00581471
0.00582742
0.00579402
0.00571967
0.00561029
0.00547573
0.0053262
0.00517477
0.00483411
0.0047224
0.0046441
0.00460825
0.00462102
0.00468562
0.0047942
0.0049414
0.00510128
0.00526398
0.00539432
0.00549488
0.00555166
0.00556786
0.00554098
0.00547504
0.00537523
0.00525056
0.00511038
0.00496784
0.0046532
0.00454585
0.00446999
0.00443359
0.00444243
0.00450043
0.0045991
0.00473533
0.00488341
0.00503527
0.00515846
0.00525552
0.00531254
0.0053328
0.00531148
0.00525306
0.00516153
0.00504593
0.00491449
0.00477974
0.00448933
0.00438681
0.00431325
0.00427612
0.00428206
0.0043343
0.00442394
0.00454979
0.00468679
0.00482882
0.00494539
0.00503924
0.00509631
0.00511931
0.00510306
0.0050515
0.00496801
0.00486061
0.00473677
0.00460991
0.00434142
0.00424337
0.00417229
0.00413475
0.00413828
0.00418462
0.00426642
0.00438268
0.00450922
0.00464345
0.00475334
0.00484522
0.0049016
0.00492679
0.00491536
0.00486922
0.00479289
0.00469314
0.00457637
0.00445691
0.00420921
0.00411436
0.00404579
0.00400797
0.00400865
0.00405064
0.0041248
0.0042333
0.00435106
0.00447708
0.00458125
0.00467015
0.00472626
0.00475418
0.00474637
0.00470573
0.00463501
0.00454225
0.0044319
0.0043185
0.00408985
0.00399925
0.00393269
0.00389402
0.00389333
0.00393161
0.00399855
0.00409967
0.0042092
0.0043283
0.00442763
0.00451406
0.00456955
0.00459914
0.0045943
0.00455837
0.00449376
0.00440691
0.00430157
0.00419484
0.00398302
0.00389598
0.00383177
0.00379263
0.00379078
0.00382447
0.00388597
0.0039806
0.00408264
0.00419654
0.00429021
0.00437543
0.00443003
0.00446084
0.00445959
0.00442661
0.00436709
0.00428586
0.00418523
0.00408455
0.00388893
0.00380348
0.00374204
0.00370316
0.00369863
0.00373015
0.00378578
0.00387564
0.00397083
0.00407941
0.00416889
0.00425231
0.00430544
0.00433849
0.00433942
0.0043103
0.00425381
0.0041781
0.00408224
0.00398535
0.0038044
0.00372311
0.00366283
0.00362237
0.0036183
0.0036472
0.00369745
0.0037827
0.00387211
0.00397624
0.00406196
0.00414383
0.00419609
0.00423025
0.00423306
0.00420642
0.00415515
0.00408288
0.00398928
0.0038986
0.00373072
0.00365108
0.00359327
0.00355256
0.00354704
0.00357407
0.00361945
0.00370137
0.00378511
0.00388664
0.00396771
0.00404961
0.00410018
0.00413588
0.00414042
0.00411584
0.00406728
0.00399925
0.00390874
0.00382164
0.00366683
0.0035886
0.00353268
0.00349108
0.00348441
0.00351117
0.00355158
0.00363102
0.00370991
0.00380843
0.00388637
0.0039675
0.00401649
0.00405371
0.00405948
0.00403757
0.00399126
0.00392648
0.00383786
0.00375405
0.00361016
0.00353484
0.00348084
0.00343759
0.00343216
0.00345692
0.00349291
0.00357019
0.00364539
0.00374158
0.00381655
0.00389729
0.00394523
0.00398349
0.00399076
0.0039686
0.00392614
0.00386423
0.00377626
0.00369754
0.00356363
0.00348912
0.00343663
0.0033913
0.00338558
0.00341076
0.00344218
0.00351928
0.00358977
0.00368544
0.00375663
0.00383857
0.0038838
0.0039244
0.00393262
0.00391185
0.00387119
0.0038113
0.00372316
0.00364744
0.00352403
0.0034509
0.00340082
0.00335384
0.00334883
0.00337359
0.00340117
0.00347741
0.00354484
0.0036396
0.00370804
0.0037905
0.00383412
0.00387564
0.00388533
0.00386425
0.00382572
0.00376841
0.00368011
0.00360789
0.00349132
0.00341809
0.00337061
0.00332056
0.00331614
0.0033421
0.003365
0.00344147
0.00350667
0.00360065
0.003667
0.00375008
0.00379215
0.00383531
0.0038461
0.00382496
0.0037875
0.00373245
0.00364228
0.00357302
0.00346886
0.00339787
0.00335128
0.00329775
0.00329648
0.003322
0.00334052
0.00341964
0.00348073
0.00357684
0.00363908
0.00372528
0.00376369
0.00380983
0.00382104
0.00379801
0.00376382
0.00370922
0.0036164
0.003552
0.00344498
0.00337342
0.00333096
0.0032712
0.00327229
0.0033012
0.00331269
0.00339402
0.00345333
0.00354998
0.00360952
0.00369781
0.00373355
0.00378216
0.00379463
0.00377014
0.00373727
0.00368513
0.00358687
0.00352661
0.0137691
0.0137567
0.0137516
0.0137542
0.0137643
0.013781
0.0138025
0.0138271
0.013852
0.0138752
0.0138942
0.0139079
0.0139162
0.0139128
0.0138987
0.0138807
0.0138587
0.0138344
0.0138099
0.0137873
0.0136156
0.0135974
0.0135896
0.0135931
0.0136076
0.0136318
0.0136633
0.013699
0.0137355
0.013769
0.0137963
0.0138146
0.0138223
0.0138182
0.013803
0.0137784
0.0137469
0.0137115
0.0136756
0.0136425
0.0133545
0.0133274
0.0133156
0.0133203
0.0133412
0.0133764
0.0134226
0.0134752
0.013529
0.0135786
0.0136189
0.0136459
0.013657
0.0136512
0.0136291
0.0135932
0.0135471
0.0134952
0.0134426
0.0133941
0.013002
0.0129636
0.0129464
0.0129523
0.012981
0.01303
0.0130947
0.0131688
0.0132449
0.013315
0.013372
0.0134102
0.0134258
0.0134175
0.0133865
0.0133362
0.0132717
0.0131992
0.0131256
0.0130577
0.0125794
0.0125283
0.0125048
0.0125116
0.0125485
0.0126126
0.012698
0.0127962
0.0128974
0.0129908
0.0130668
0.0131175
0.013138
0.0131268
0.0130858
0.0130194
0.0129344
0.012839
0.0127424
0.012653
0.0121041
0.0120396
0.0120092
0.0120163
0.0120613
0.0121407
0.0122473
0.0123708
0.0124984
0.0126165
0.0127123
0.012776
0.0128015
0.0127871
0.0127355
0.0126525
0.0125466
0.012428
0.0123076
0.0121962
0.011593
0.0115152
0.0114775
0.0114844
0.0115366
0.0116303
0.0117575
0.0119057
0.0120595
0.012202
0.0123174
0.0123938
0.0124239
0.0124063
0.0123443
0.0122452
0.0121193
0.0119785
0.0118356
0.0117031
0.011061
0.0109707
0.0109258
0.0109317
0.0109897
0.0110961
0.011242
0.0114131
0.0115913
0.0117566
0.0118904
0.0119783
0.0120125
0.0119917
0.0119202
0.0118066
0.0116628
0.0115022
0.0113391
0.0111876
0.010521
0.0104196
0.0103677
0.0103719
0.0104341
0.010551
0.0107127
0.0109038
0.0111036
0.0112892
0.011439
0.0115369
0.0115745
0.0115508
0.0114712
0.0113456
0.0111868
0.0110097
0.0108296
0.0106619
0.0099837
0.00987274
0.00981449
0.00981639
0.00988121
0.0100057
0.0101801
0.0103875
0.0106051
0.0108077
0.0109707
0.0110767
0.0111169
0.0110911
0.0110052
0.0108703
0.0107001
0.0105102
0.0103169
0.0101363
0.0094577
0.00933904
0.00927517
0.00927434
0.00934006
0.00946962
0.0096529
0.00987246
0.0101038
0.0103194
0.0104925
0.0106044
0.0106466
0.0106194
0.0105295
0.0103885
0.0102106
0.010012
0.00980932
0.00961927
0.00894959
0.00882508
0.0087564
0.0087525
0.00881752
0.00894934
0.00913795
0.00936558
0.00960622
0.00983093
0.0100108
0.0101267
0.0101704
0.0101428
0.0100511
0.00990704
0.00972521
0.00952174
0.00931348
0.00911732
0.00846405
0.00833556
0.00826291
0.00825574
0.00831877
0.00845049
0.00864101
0.00887247
0.00911805
0.00934794
0.00953143
0.00964957
0.00969448
0.00966749
0.00957611
0.0094321
0.00924974
0.00904493
0.00883453
0.00863542
0.00800428
0.00787343
0.00779774
0.00778728
0.00784716
0.0079765
0.00816578
0.00839746
0.00864401
0.00887543
0.00905974
0.00917857
0.00922455
0.00919936
0.00911032
0.00896884
0.00878886
0.00858588
0.00837639
0.00817702
0.00757222
0.00744052
0.0073626
0.00734884
0.00740477
0.00753
0.00771541
0.0079439
0.00818782
0.00841761
0.00860027
0.00871866
0.00876566
0.00874316
0.00865818
0.0085215
0.00834638
0.00814775
0.00794162
0.00774435
0.00716877
0.00703749
0.00695808
0.00694115
0.00699253
0.00711225
0.00729158
0.00751421
0.00775245
0.00797791
0.00815698
0.00827405
0.00832207
0.00830315
0.00822354
0.00809336
0.00792504
0.00773274
0.00753193
0.00733865
0.006794
0.00666414
0.00658401
0.00656418
0.00661056
0.0067237
0.00689525
0.00710987
0.00734011
0.00755911
0.00773305
0.00784818
0.00789731
0.00788259
0.00780936
0.00768683
0.00752664
0.00734222
0.0071483
0.00696038
0.00644747
0.00631995
0.00623961
0.00621704
0.00625834
0.00636428
0.00652681
0.00673187
0.00695216
0.00716325
0.00733091
0.00744384
0.00749395
0.00748385
0.00741757
0.00730355
0.00715246
0.00697684
0.00679076
0.00660936
0.00612831
0.00600364
0.0059237
0.00589875
0.0059348
0.00603315
0.00618606
0.00638039
0.00658972
0.00679168
0.00695238
0.0070627
0.00711396
0.00710855
0.00704959
0.00694447
0.00680287
0.00663672
0.00645922
0.00628488
0.00583517
0.00571402
0.0056348
0.0056077
0.00563884
0.0057295
0.00587198
0.00605532
0.00625294
0.006445
0.00659865
0.00670609
0.00675828
0.00675786
0.006706
0.00660979
0.006478
0.00632149
0.00615282
0.00598622
0.00556704
0.00544939
0.00537132
0.00534248
0.0053685
0.00545166
0.00558424
0.0057561
0.00594139
0.00612384
0.0062697
0.00637468
0.00642761
0.00643169
0.00638706
0.00629976
0.00617733
0.00603051
0.00587087
0.00571174
0.00532175
0.00520827
0.00513159
0.00510123
0.00512307
0.0051989
0.00532078
0.0054815
0.00565516
0.0058274
0.00596615
0.00606817
0.00612192
0.00613043
0.00609202
0.0060131
0.0059002
0.00576284
0.00561201
0.00546103
0.00509894
0.00498903
0.00491394
0.00488229
0.00489953
0.00496832
0.00508113
0.00523106
0.00539307
0.00555529
0.00568723
0.00578608
0.0058404
0.00585296
0.00582121
0.00575023
0.00564579
0.00551747
0.00537517
0.00523139
0.00489572
0.00479004
0.00471673
0.00468409
0.00469772
0.00476006
0.00486361
0.00500262
0.00515366
0.005307
0.00543168
0.00552826
0.00558291
0.00559847
0.00557243
0.00550888
0.00541287
0.0052932
0.00515903
0.0050229
0.00471197
0.00460981
0.00453834
0.0045049
0.00451473
0.00457113
0.00466595
0.00479556
0.00493661
0.0050807
0.00519931
0.00529277
0.00534772
0.00536698
0.00534594
0.00528913
0.00520044
0.00508882
0.0049623
0.00483287
0.00454519
0.00444714
0.00437744
0.00434303
0.00435007
0.00440121
0.004488
0.00460849
0.00473998
0.00487555
0.00498844
0.00507901
0.00513411
0.00515583
0.00513944
0.00508888
0.00500749
0.00490323
0.00478344
0.00466098
0.00439443
0.00430021
0.00423253
0.00419748
0.00420217
0.00424779
0.00432754
0.00443945
0.00456173
0.00469062
0.00479757
0.00488648
0.00494104
0.00496474
0.00495287
0.00490725
0.00483242
0.00473513
0.0046217
0.00450586
0.00425953
0.00416794
0.00410233
0.00406678
0.00406859
0.00411018
0.00418294
0.00428795
0.00440249
0.00452405
0.00462591
0.00471206
0.00476653
0.00479287
0.00478444
0.00474399
0.00467427
0.00458339
0.00447577
0.00436529
0.00413759
0.00404981
0.00398583
0.0039492
0.00394967
0.00398778
0.00405385
0.00415211
0.00425927
0.0043746
0.00447217
0.00455606
0.00461009
0.004638
0.0046324
0.00459643
0.0045325
0.00444706
0.00434394
0.0042396
0.00402839
0.00394375
0.00388181
0.00384455
0.0038438
0.00387748
0.00393852
0.00403081
0.00413118
0.0042419
0.00433425
0.00441712
0.00447046
0.00449956
0.0044975
0.00446427
0.00440511
0.00432497
0.00422618
0.00412739
0.0039322
0.00384874
0.00378931
0.00375215
0.00374862
0.00378028
0.00383581
0.00392373
0.00401783
0.00412365
0.00421222
0.0042934
0.00434549
0.0043768
0.0043769
0.00434748
0.00429105
0.00421617
0.00412183
0.00402636
0.00384577
0.00376618
0.00370765
0.00366875
0.00366565
0.00369482
0.00374522
0.0038288
0.0039176
0.00401928
0.00410447
0.00418419
0.0042356
0.00426801
0.00426995
0.00424297
0.00419162
0.00411995
0.00402761
0.00393801
0.00377047
0.00369219
0.00363597
0.00359674
0.00359203
0.0036194
0.00366517
0.00374563
0.00382918
0.0039285
0.00400937
0.00408916
0.00413913
0.00417303
0.00417675
0.00415186
0.00410295
0.00403543
0.003946
0.00385956
0.00370522
0.00362803
0.00357361
0.0035334
0.00352739
0.00355464
0.00359564
0.00367367
0.00375278
0.00384917
0.00392728
0.00400623
0.0040549
0.00409021
0.0040952
0.0040731
0.00402621
0.0039619
0.00387423
0.00379069
0.00364742
0.00357285
0.00352028
0.00347836
0.00347343
0.0034988
0.00353553
0.00361138
0.00368722
0.00378127
0.00385679
0.00393522
0.00398317
0.00401938
0.00402588
0.00400368
0.00396042
0.003899
0.00381189
0.00373307
0.00360018
0.00352609
0.00347503
0.00343096
0.00342549
0.00345145
0.00348379
0.00355937
0.0036309
0.00372433
0.00379649
0.00387591
0.00392152
0.00395984
0.00396738
0.0039468
0.00390503
0.00384573
0.00375835
0.0036821
0.00355987
0.00348669
0.00343827
0.00339259
0.00338747
0.00341332
0.00344192
0.00351636
0.00358533
0.00367754
0.00374747
0.00382703
0.00387152
0.00391038
0.00391946
0.00389891
0.00385883
0.00380244
0.00371493
0.00364165
0.00352731
0.00345362
0.00340793
0.00335923
0.00335426
0.00338163
0.00340577
0.00348004
0.00354738
0.00363839
0.00370688
0.00378654
0.00383011
0.00387008
0.00388033
0.00386019
0.0038207
0.00376685
0.00367749
0.00360656
0.00350438
0.00343243
0.00338799
0.00333573
0.00333354
0.0033609
0.00338063
0.00345716
0.00352096
0.00361364
0.0036786
0.00376086
0.00380134
0.00384379
0.00385462
0.00383297
0.00379624
0.00374331
0.00365119
0.00358461
0.0034817
0.00340817
0.00336859
0.00331038
0.00330941
0.0033411
0.00335416
0.00343168
0.00349501
0.00358699
0.00365064
0.00373361
0.00377287
0.00381636
0.00382858
0.00380666
0.00377001
0.00372057
0.00362324
0.00355942
0.0133894
0.0133797
0.0133756
0.0133775
0.0133852
0.013398
0.0134145
0.0134335
0.0134526
0.0134705
0.0134849
0.013495
0.0134992
0.0134972
0.0134888
0.0134757
0.0134589
0.0134401
0.0134211
0.0134035
0.0132537
0.0132394
0.0132332
0.0132358
0.0132469
0.0132656
0.01329
0.0133177
0.013346
0.0133721
0.0133934
0.0134077
0.0134137
0.0134108
0.0133993
0.0133804
0.013356
0.0133285
0.0133005
0.0132747
0.013021
0.0129995
0.0129901
0.0129937
0.0130099
0.0130374
0.0130734
0.0131145
0.0131566
0.0131954
0.0132271
0.0132485
0.0132575
0.0132532
0.0132362
0.0132084
0.0131723
0.0131317
0.0130904
0.0130522
0.0127052
0.0126746
0.0126608
0.0126653
0.0126879
0.0127265
0.0127776
0.0128359
0.0128959
0.0129513
0.0129965
0.0130269
0.0130397
0.0130336
0.0130096
0.0129702
0.0129193
0.0128619
0.0128035
0.0127495
0.0123239
0.0122828
0.0122638
0.0122691
0.0122986
0.0123497
0.0124177
0.0124958
0.0125763
0.0126508
0.0127115
0.0127523
0.0127693
0.0127612
0.0127291
0.0126765
0.0126089
0.0125326
0.012455
0.0123832
0.011892
0.0118395
0.0118147
0.0118205
0.0118568
0.0119209
0.0120067
0.0121059
0.0122084
0.0123033
0.0123807
0.0124326
0.012454
0.0124435
0.0124028
0.0123364
0.0122511
0.0121552
0.0120575
0.011967
0.0114237
0.0113597
0.0113288
0.0113345
0.0113773
0.0114538
0.0115574
0.0116776
0.0118023
0.0119179
0.012012
0.0120749
0.0121007
0.0120878
0.0120385
0.0119585
0.011856
0.0117407
0.0116234
0.0115144
0.0109322
0.0108572
0.01082
0.0108251
0.0108733
0.0109613
0.0110813
0.0112216
0.0113674
0.0115029
0.011613
0.0116864
0.0117162
0.0117009
0.0116436
0.0115509
0.0114325
0.0112995
0.0111638
0.0110377
0.0104291
0.0103438
0.0103005
0.0103044
0.010357
0.0104547
0.0105893
0.0107475
0.0109126
0.0110662
0.0111909
0.0112736
0.011307
0.0112896
0.0112252
0.0111216
0.0109893
0.0108408
0.0106892
0.0105479
0.00992433
0.00982999
0.00978087
0.00978308
0.00983853
0.00994397
0.0100906
0.0102642
0.0104459
0.0106151
0.0107524
0.0108431
0.0108795
0.0108605
0.0107904
0.0106779
0.0105344
0.0103733
0.0102086
0.0100545
0.00942611
0.00932413
0.00926974
0.00926981
0.0093268
0.00943782
0.00959368
0.00977934
0.00997441
0.0101564
0.0103037
0.0104008
0.0104397
0.0104196
0.0103455
0.0102265
0.0100748
0.00990428
0.00972956
0.0095655
0.00894109
0.00883291
0.00877385
0.00877138
0.00882853
0.00894279
0.00910493
0.00929943
0.00950443
0.00969603
0.00985086
0.00995276
0.00999373
0.00997341
0.00989695
0.00977406
0.0096171
0.0094403
0.00925867
0.00908737
0.00847415
0.00836136
0.00829826
0.00829301
0.00834915
0.00846463
0.00863019
0.00882998
0.00904133
0.00923936
0.00939917
0.00950437
0.00954703
0.00952712
0.00945015
0.00932587
0.00916661
0.00898659
0.00880101
0.00862522
0.00802892
0.00791291
0.00784654
0.00783841
0.00789244
0.00800707
0.00817329
0.00837533
0.00858971
0.00879112
0.00895348
0.00906061
0.00910479
0.00908624
0.00901038
0.00888684
0.00872785
0.00854744
0.00836066
0.00818278
0.00760785
0.00748996
0.00742098
0.00740987
0.00746098
0.00757317
0.0077377
0.00793897
0.00815324
0.0083553
0.00851803
0.00862601
0.00867151
0.00865498
0.00858176
0.008461
0.00830458
0.00812612
0.00794042
0.00776266
0.00721233
0.00709376
0.00702281
0.00700875
0.0070563
0.00716467
0.00732544
0.00752351
0.00773494
0.00793521
0.00809649
0.0082044
0.00825109
0.00823734
0.00816792
0.00805158
0.00789959
0.00772504
0.00754235
0.00736653
0.00684294
0.00672465
0.00665244
0.00663563
0.0066791
0.00678251
0.00693784
0.00713066
0.00733707
0.00753357
0.00769187
0.00779899
0.00784686
0.00783642
0.00777178
0.007661
0.00751484
0.00734581
0.00716776
0.00699529
0.00649975
0.00638265
0.00630964
0.00629015
0.00632936
0.00642713
0.00657572
0.00676171
0.00696113
0.00715241
0.00730652
0.00741246
0.00746128
0.00745454
0.00739531
0.00729108
0.00715186
0.00698939
0.00681705
0.00664918
0.00618228
0.00606692
0.00599371
0.00597185
0.00600651
0.00609811
0.00623921
0.0064171
0.00660844
0.00679316
0.00694225
0.00704647
0.00709636
0.00709345
0.00704009
0.00694296
0.00681123
0.00665621
0.00649049
0.00632791
0.00588959
0.00577669
0.00570358
0.00567952
0.00570985
0.00579503
0.00592767
0.00609703
0.00627931
0.00645655
0.00660037
0.00670248
0.00675319
0.00675446
0.00670691
0.0066171
0.00649341
0.00634619
0.00618755
0.00603105
0.00562093
0.00551057
0.00543803
0.00541213
0.00543783
0.00551661
0.0056411
0.00580119
0.00597359
0.00614342
0.006281
0.0063813
0.00643263
0.00643771
0.00639628
0.00631398
0.00619811
0.00605899
0.00590781
0.00575733
0.00537445
0.00526735
0.00519564
0.00516808
0.00518998
0.0052624
0.00537768
0.00552862
0.00569157
0.00585316
0.005985
0.00608288
0.00613497
0.00614392
0.00610771
0.00603262
0.00592496
0.00579392
0.00565018
0.00550654
0.00514998
0.00504564
0.00497498
0.00494597
0.00496354
0.00502973
0.00513727
0.00527916
0.00543234
0.00558562
0.00571184
0.00580703
0.00585961
0.00587214
0.00584185
0.00577373
0.00567339
0.0055502
0.0054138
0.00527623
0.00494477
0.00484393
0.00477457
0.00474443
0.0047586
0.004819
0.00491839
0.00505079
0.00519466
0.00534054
0.00546051
0.00555383
0.00560676
0.00562191
0.00559667
0.00553517
0.00544235
0.00532684
0.00519759
0.00506667
0.00475892
0.00466093
0.00459295
0.00456181
0.00457231
0.00462731
0.00471894
0.00484317
0.00497848
0.00511633
0.0052311
0.00532161
0.00537492
0.00539346
0.00537277
0.00531741
0.00523111
0.00512279
0.00500033
0.00487523
0.00458993
0.00449548
0.00442886
0.00439658
0.00440441
0.00445456
0.00453896
0.00465506
0.00478202
0.00491237
0.00502217
0.00511005
0.00516358
0.00518436
0.00516798
0.00511835
0.00503876
0.00493711
0.00482068
0.00470181
0.00443696
0.00434584
0.00428088
0.00424782
0.00425336
0.00429829
0.00437633
0.00448461
0.00460339
0.00472793
0.00483242
0.00491889
0.00497203
0.00499457
0.00498247
0.00493736
0.00486385
0.00476861
0.00465798
0.0045451
0.00429999
0.00421104
0.0041478
0.00411405
0.00411668
0.00415787
0.00422947
0.00433154
0.00444345
0.00456133
0.00466126
0.00474513
0.00479835
0.00482344
0.00481463
0.00477442
0.00470558
0.00461628
0.00451095
0.00440283
0.00417603
0.00409056
0.00402862
0.00399362
0.00399498
0.00403289
0.00409823
0.00419404
0.00429927
0.00441146
0.00450757
0.00458934
0.00464227
0.00466883
0.00466271
0.00462679
0.00456348
0.00447922
0.00437797
0.00427559
0.00406495
0.00398229
0.00392215
0.00388643
0.00388653
0.00392011
0.00398077
0.00407103
0.00417004
0.00427812
0.00436937
0.00445029
0.00450268
0.00453041
0.00452775
0.00449436
0.00443558
0.00435635
0.00425914
0.00416189
0.00396712
0.0038853
0.00382746
0.00379173
0.00378895
0.00382063
0.00387612
0.00396234
0.00405555
0.00415905
0.00424687
0.00432618
0.00437749
0.00440739
0.0044069
0.00437728
0.00432095
0.00424676
0.00415375
0.00405941
0.00387916
0.00380104
0.00374386
0.00370623
0.00370392
0.00373322
0.00378377
0.00386588
0.00395419
0.00405379
0.00413857
0.00421646
0.00426725
0.00429823
0.00429953
0.00427231
0.00422099
0.00414979
0.00405853
0.00396982
0.00380259
0.00372547
0.00367049
0.00363251
0.00362843
0.003656
0.00370213
0.00378126
0.0038647
0.00396214
0.00404286
0.00412087
0.00417042
0.00420284
0.00420593
0.00418083
0.0041317
0.00406457
0.00397612
0.00389019
0.00373628
0.00365998
0.00360673
0.00356773
0.00356219
0.00358978
0.00363133
0.00370806
0.00378738
0.00388196
0.00396024
0.00403735
0.00408581
0.00411954
0.00412392
0.00410172
0.0040544
0.00399047
0.00390369
0.00382031
0.0036776
0.00360369
0.00355223
0.00351147
0.00350688
0.00353272
0.00357011
0.00364464
0.00372106
0.00381324
0.0038893
0.00396574
0.00401378
0.00404828
0.00405416
0.00403199
0.00398813
0.0039271
0.00384079
0.00376182
0.00362984
0.00355612
0.00350617
0.00346322
0.00345785
0.00348444
0.00351762
0.00359178
0.00366423
0.00375571
0.00382876
0.00390602
0.00395202
0.00398843
0.00399542
0.00397509
0.00393242
0.00387359
0.00378695
0.00371014
0.00358902
0.00351574
0.0034687
0.00342425
0.00341883
0.00344563
0.00347519
0.00354787
0.00361825
0.00370819
0.0037795
0.00385651
0.00390185
0.0039384
0.00394698
0.00392704
0.00388563
0.00383006
0.00374337
0.00366898
0.00355674
0.00348259
0.0034384
0.00339098
0.0033853
0.00341391
0.00343924
0.00351134
0.00358066
0.00366898
0.00373947
0.00381607
0.0038611
0.00389824
0.00390805
0.00388896
0.0038477
0.00379493
0.00370642
0.00363379
0.00353344
0.00346048
0.00341799
0.00336693
0.00336356
0.00339271
0.00341359
0.00348747
0.00355388
0.00364332
0.00371092
0.00378954
0.0038321
0.00387116
0.00388165
0.00386155
0.00382247
0.00377116
0.0036798
0.00361095
0.00351218
0.00343659
0.00339975
0.00334311
0.00333971
0.0033742
0.00338881
0.00346235
0.00352966
0.00361708
0.00368482
0.00376272
0.00380553
0.00384416
0.00385611
0.003837
0.00379673
0.00374998
0.00365371
0.00358614
0.0131104
0.0131025
0.0130991
0.0131005
0.0131066
0.0131169
0.0131301
0.0131454
0.0131607
0.0131751
0.0131866
0.0131946
0.013198
0.0131966
0.0131902
0.01318
0.0131665
0.0131514
0.0131361
0.0131219
0.0129874
0.0129757
0.0129706
0.0129726
0.0129814
0.0129965
0.0130162
0.0130385
0.0130614
0.0130826
0.0130999
0.0131115
0.0131166
0.0131144
0.0131052
0.0130901
0.0130704
0.0130482
0.0130255
0.0130045
0.0127745
0.0127568
0.012749
0.0127517
0.0127649
0.0127872
0.0128165
0.01285
0.0128843
0.012916
0.012942
0.0129596
0.0129671
0.0129639
0.0129502
0.0129277
0.0128984
0.0128652
0.0128314
0.0128001
0.0124846
0.0124592
0.0124477
0.0124513
0.0124698
0.0125014
0.0125433
0.0125912
0.0126405
0.012686
0.0127233
0.0127485
0.0127594
0.0127547
0.0127353
0.0127031
0.0126614
0.0126142
0.012566
0.0125214
0.0121328
0.0120983
0.0120824
0.0120867
0.0121111
0.0121533
0.0122096
0.0122743
0.0123409
0.0124026
0.0124531
0.0124873
0.0125018
0.0124956
0.0124695
0.0124262
0.0123702
0.0123069
0.0122422
0.0121823
0.0117319
0.0116876
0.0116666
0.0116714
0.0117018
0.0117553
0.011827
0.0119098
0.0119953
0.0120746
0.0121394
0.0121833
0.0122019
0.0121938
0.0121605
0.0121054
0.0120341
0.0119536
0.0118715
0.0117951
0.0112946
0.0112401
0.0112138
0.0112186
0.0112548
0.0113195
0.0114068
0.011508
0.0116128
0.0117102
0.0117898
0.0118434
0.0118662
0.0118563
0.0118156
0.0117485
0.0116621
0.0115644
0.0114646
0.0113719
0.0108326
0.0107681
0.0107362
0.0107407
0.010782
0.0108571
0.0109593
0.0110784
0.0112021
0.0113172
0.0114111
0.0114744
0.011501
0.0114893
0.0114416
0.0113632
0.0112623
0.0111484
0.011032
0.0109234
0.0103567
0.0102827
0.0102452
0.0102488
0.0102944
0.0103788
0.0104944
0.01063
0.0107712
0.0109028
0.0110101
0.0110822
0.0111124
0.0110992
0.0110451
0.0109567
0.0108429
0.0107144
0.0105829
0.01046
0.00987613
0.00979346
0.00975067
0.00975292
0.0098016
0.00989351
0.0100207
0.0101708
0.0103276
0.0104738
0.010593
0.0106729
0.0107064
0.0106919
0.0106326
0.0105357
0.010411
0.0102702
0.0101257
0.00999039
0.00939878
0.00930858
0.0092608
0.00926132
0.00931195
0.00940971
0.00954618
0.00970809
0.00987789
0.0100365
0.0101658
0.0102522
0.0102885
0.0102732
0.0102099
0.0101065
0.00997326
0.00982267
0.0096679
0.00952238
0.00893126
0.00883471
0.0087824
0.00878076
0.00883209
0.00893371
0.009077
0.00924814
0.00942815
0.00959659
0.00973376
0.0098255
0.00986418
0.00984871
0.0097829
0.00967498
0.00953576
0.00937809
0.0092156
0.00906218
0.00847859
0.00837705
0.00832069
0.00831662
0.00836762
0.00847132
0.00861898
0.0087963
0.00898351
0.00915912
0.00930207
0.00939778
0.00943851
0.00942334
0.00935649
0.00924628
0.00910364
0.00894153
0.00877391
0.00861501
0.00804464
0.00793932
0.00787957
0.00787295
0.00792255
0.00802643
0.00817602
0.00835689
0.00854845
0.0087286
0.00887522
0.00897367
0.00901622
0.00900216
0.00893564
0.00882499
0.00868121
0.00851723
0.00834701
0.00818479
0.0076322
0.00752433
0.00746174
0.00745238
0.00749981
0.00760238
0.00775177
0.00793346
0.00812657
0.00830888
0.0084572
0.00855737
0.00860148
0.00858902
0.00852418
0.00841498
0.00827221
0.00810854
0.00793783
0.00777435
0.00724301
0.00713371
0.00706885
0.00705673
0.00710132
0.00720126
0.00734848
0.00752878
0.00772095
0.00790317
0.00805147
0.00815243
0.00819789
0.00818769
0.00812563
0.0080194
0.00787943
0.00771797
0.00754865
0.00738569
0.00687803
0.00676821
0.00670174
0.00668701
0.00672818
0.00682432
0.00696772
0.00714469
0.00733386
0.00751413
0.00766094
0.00776194
0.00780866
0.0078012
0.00774281
0.0076407
0.00750493
0.00734732
0.00718106
0.00702003
0.00653768
0.00642825
0.00636056
0.00634322
0.00638074
0.00647237
0.00661067
0.00678269
0.00696691
0.00714381
0.00728788
0.00738845
0.00743614
0.00743175
0.00737772
0.00728078
0.00715041
0.00699776
0.00683567
0.00667787
0.00622177
0.0061133
0.00604499
0.00602531
0.00605882
0.00614528
0.00627762
0.00644341
0.00662155
0.0067937
0.00693409
0.00703363
0.00708236
0.00708122
0.00703206
0.0069409
0.0068166
0.00666993
0.00651305
0.00635925
0.00592965
0.0058229
0.00575427
0.00573236
0.00576198
0.00584295
0.00596827
0.00612724
0.0062982
0.00646459
0.00660099
0.006699
0.0067485
0.00675099
0.00670672
0.00662173
0.00650418
0.00636397
0.00621287
0.00606395
0.00566082
0.00555588
0.00548742
0.00546363
0.00548899
0.0055644
0.00568281
0.00583413
0.00599693
0.00615747
0.00628877
0.00638548
0.00643552
0.00644134
0.00640238
0.00632388
0.00621301
0.00607973
0.00593495
0.00579099
0.0054136
0.00531129
0.00524325
0.00521772
0.00523958
0.00530935
0.00541963
0.00556325
0.00571816
0.00587186
0.00599843
0.00609315
0.00614393
0.00615325
0.00611874
0.0060466
0.00594298
0.00581675
0.00567839
0.0055403
0.00518804
0.00508787
0.00502049
0.00499342
0.00501115
0.00507528
0.00517882
0.00531469
0.00546117
0.00560781
0.00572964
0.00582206
0.00587324
0.00588585
0.00585672
0.00579082
0.00569364
0.00557438
0.00544249
0.0053096
0.00498143
0.00488422
0.00481782
0.00478953
0.00480404
0.00486288
0.00495908
0.00508651
0.00522491
0.00536523
0.00548156
0.00557241
0.00562398
0.00563892
0.00561433
0.00555447
0.0054641
0.00535179
0.00522634
0.00509936
0.00479412
0.00469926
0.00463387
0.00460443
0.00461536
0.00466925
0.00475841
0.00487857
0.00500952
0.00514266
0.00525446
0.00534271
0.00539479
0.00541286
0.00539248
0.0053383
0.00525386
0.00514808
0.00502875
0.0049069
0.00462352
0.00453178
0.00446746
0.00443679
0.00444516
0.0044945
0.00457707
0.00468978
0.00481331
0.00493966
0.00504709
0.00513287
0.00518526
0.00520537
0.00518905
0.0051402
0.00506203
0.00496239
0.00484858
0.00473243
0.00446894
0.00438013
0.00431724
0.00428571
0.00429183
0.00433615
0.00441291
0.00451832
0.00463447
0.00475566
0.00485828
0.00494285
0.00499499
0.00501663
0.00500445
0.00495975
0.00488727
0.00479366
0.00468525
0.00457458
0.0043305
0.00424351
0.00418203
0.00414968
0.00415285
0.00419367
0.00426442
0.00436414
0.00447412
0.00458911
0.00468758
0.00476964
0.00482203
0.00484615
0.00483713
0.00479717
0.00472901
0.00464093
0.00453741
0.00443103
0.00420502
0.00412132
0.00406087
0.00402711
0.00402913
0.00406682
0.00413165
0.00422544
0.00432929
0.00443898
0.00453402
0.00461408
0.0046663
0.00469178
0.00468534
0.0046495
0.00458675
0.00450336
0.00440359
0.00430268
0.00409252
0.0040114
0.00395258
0.00391807
0.0039188
0.0039522
0.00401263
0.00410119
0.00419926
0.00430522
0.00439566
0.00447503
0.00452682
0.00455345
0.00455041
0.0045169
0.00445848
0.00437992
0.00428401
0.00418792
0.00399349
0.00391295
0.00385625
0.00382166
0.00381941
0.00385101
0.00390657
0.00399134
0.00408396
0.00418559
0.00427288
0.00435067
0.00440151
0.00443029
0.00442944
0.00439967
0.00434346
0.00426976
0.00417787
0.00408435
0.00390437
0.00382747
0.0037712
0.00373458
0.00373289
0.00376218
0.00381295
0.00389379
0.00398179
0.0040797
0.00416422
0.00424064
0.00429103
0.00432089
0.00432175
0.00429436
0.00424317
0.00417223
0.00408187
0.00399385
0.00382686
0.00375071
0.00369657
0.0036596
0.00365599
0.00368361
0.00373014
0.0038081
0.00389151
0.00398743
0.00406809
0.00414468
0.00419399
0.00422525
0.0042279
0.00420264
0.00415342
0.00408652
0.00399892
0.00391334
0.00375977
0.0036842
0.00363176
0.00359379
0.00358858
0.00361633
0.00365843
0.003734
0.00381355
0.00390663
0.00398513
0.00406075
0.00410913
0.00414159
0.00414554
0.00412329
0.0040757
0.004012
0.00392604
0.00384271
0.00370044
0.00362715
0.00357639
0.00353662
0.00353228
0.00355836
0.00359639
0.00366975
0.00374669
0.00383734
0.0039139
0.00398873
0.00403691
0.00407008
0.00407547
0.00405337
0.00400915
0.00394829
0.00386273
0.00378358
0.00365233
0.003579
0.00352975
0.00348777
0.00348241
0.00350939
0.00354339
0.00361627
0.0036895
0.00377939
0.00385322
0.00392874
0.0039751
0.00401002
0.00401658
0.00399651
0.00395323
0.00389465
0.00380872
0.00373134
0.00361117
0.00353784
0.0034918
0.00344852
0.00344268
0.00347017
0.0035007
0.00357172
0.00364333
0.00373133
0.00380388
0.00387877
0.00392489
0.00395954
0.00396773
0.00394842
0.00390593
0.003851
0.0037652
0.00368968
0.00357926
0.00350475
0.00346164
0.00341546
0.00340897
0.00343857
0.00346507
0.00353512
0.00360617
0.00369219
0.00376447
0.00383849
0.00388482
0.00391961
0.00392905
0.00391101
0.00386829
0.00381636
0.00372877
0.0036545
0.0035557
0.00348178
0.00344093
0.00339103
0.00338626
0.00341708
0.0034391
0.00351029
0.00357916
0.00366564
0.00373576
0.00381113
0.0038557
0.00389173
0.00390194
0.0038835
0.00384231
0.0037925
0.00370196
0.00363074
0.00353618
0.00345858
0.00342417
0.00336918
0.00336302
0.00340023
0.00341649
0.00348587
0.00355705
0.00364017
0.00371189
0.00378505
0.0038314
0.00386548
0.00387714
0.00386103
0.00381738
0.0037732
0.00367816
0.00360665
0.0129335
0.0129266
0.0129236
0.0129247
0.0129298
0.0129386
0.0129499
0.012963
0.0129762
0.0129885
0.0129985
0.0130054
0.0130083
0.0130073
0.0130019
0.0129932
0.0129817
0.0129688
0.0129556
0.0129433
0.0128187
0.0128085
0.0128041
0.0128057
0.0128132
0.0128261
0.012843
0.0128622
0.0128819
0.0129
0.0129149
0.012925
0.0129295
0.0129277
0.0129199
0.0129071
0.0128902
0.0128711
0.0128516
0.0128335
0.012618
0.0126025
0.0125956
0.0125979
0.0126092
0.0126284
0.0126538
0.0126827
0.0127124
0.0127399
0.0127624
0.0127777
0.0127844
0.0127818
0.0127702
0.0127508
0.0127254
0.0126967
0.0126674
0.0126402
0.0123441
0.0123219
0.0123117
0.0123147
0.0123307
0.0123582
0.0123946
0.0124362
0.0124791
0.0125187
0.0125513
0.0125734
0.0125831
0.0125793
0.0125626
0.0125348
0.0124985
0.0124574
0.0124153
0.0123763
0.0120105
0.0119801
0.011966
0.0119696
0.0119909
0.0120279
0.0120771
0.0121337
0.012192
0.0122461
0.0122904
0.0123206
0.0123337
0.0123286
0.012306
0.0122683
0.0122193
0.0121637
0.0121069
0.0120541
0.011629
0.0115896
0.0115709
0.0115751
0.0116019
0.0116491
0.0117122
0.0117851
0.0118604
0.0119303
0.0119875
0.0120265
0.0120434
0.0120368
0.0120078
0.0119595
0.0118967
0.0118256
0.0117528
0.0116851
0.0112111
0.0111623
0.0111388
0.011143
0.0111752
0.0112327
0.0113101
0.0113998
0.0114927
0.011579
0.0116498
0.0116979
0.0117187
0.0117106
0.011675
0.0116158
0.0115391
0.0114521
0.0113631
0.0112802
0.0107677
0.0107096
0.010681
0.010685
0.0107221
0.0107893
0.0108806
0.0109868
0.0110971
0.0111998
0.0112839
0.011341
0.0113656
0.011356
0.0113141
0.0112445
0.0111543
0.0110521
0.0109473
0.0108496
0.0103091
0.0102419
0.0102081
0.0102114
0.0102527
0.0103287
0.0104327
0.0105545
0.0106812
0.0107993
0.0108961
0.0109617
0.0109899
0.0109791
0.0109313
0.0108522
0.0107497
0.0106335
0.0105143
0.0104028
0.00984389
0.00976842
0.00972948
0.00973169
0.00977613
0.00985966
0.0099749
0.0101105
0.0102521
0.0103842
0.0104925
0.0105657
0.0105973
0.0105855
0.0105328
0.0104454
0.0103323
0.010204
0.0100721
0.00994835
0.00937991
0.00929701
0.00925329
0.00925402
0.00930063
0.00939014
0.00951461
0.0096619
0.00981619
0.00996045
0.0100786
0.0101585
0.010193
0.0101805
0.0101239
0.01003
0.00990826
0.00977008
0.00962772
0.00949372
0.0089237
0.00883437
0.00878621
0.00878502
0.00883265
0.00892635
0.00905794
0.00921464
0.00937925
0.00953342
0.00965968
0.00974506
0.00978221
0.00976965
0.00971037
0.00961172
0.00948354
0.00933781
0.00918728
0.00904501
0.00848028
0.00838576
0.00833357
0.00833016
0.00837787
0.00847416
0.00861067
0.00877403
0.00894631
0.00910805
0.00924055
0.00933027
0.00936968
0.00935736
0.00929675
0.0091953
0.00906306
0.00891217
0.00875583
0.00860751
0.00805368
0.00795506
0.00789944
0.00789369
0.00794045
0.00803752
0.00817668
0.00834436
0.00852176
0.00868872
0.00882552
0.00891845
0.00895989
0.00894853
0.0088878
0.00878521
0.00865098
0.00849736
0.00833758
0.00818522
0.00764693
0.00754536
0.00748676
0.00747844
0.00752347
0.00761996
0.00775981
0.00792925
0.00810917
0.00827916
0.00841845
0.00851363
0.00855677
0.00854677
0.00848717
0.00838524
0.00825107
0.00809675
0.00793554
0.00778109
0.00726195
0.0071585
0.00709745
0.00708649
0.00712914
0.00722371
0.00736238
0.00753151
0.00771164
0.00788254
0.00802269
0.00811916
0.00816377
0.00815573
0.00809828
0.00799845
0.0078661
0.00771295
0.00755212
0.00739733
0.00689992
0.00679547
0.0067326
0.00671914
0.0067588
0.00685027
0.00698613
0.00715308
0.00733143
0.00750149
0.00764104
0.00773808
0.00778401
0.00777838
0.00772394
0.00762731
0.00749816
0.00734785
0.0071891
0.00703536
0.00656152
0.00645697
0.00639263
0.00637661
0.006413
0.00650067
0.00663246
0.00679559
0.00697023
0.00713806
0.00727574
0.00737285
0.00741976
0.0074168
0.00736609
0.0072738
0.0071491
0.00700273
0.0068472
0.00669583
0.00624671
0.00614264
0.00607743
0.00605909
0.00609182
0.00617495
0.00630174
0.00645979
0.00662958
0.00679378
0.0069286
0.0070251
0.00707305
0.007073
0.00702656
0.00693922
0.0068197
0.00667838
0.00652716
0.006379
0.00595507
0.00585224
0.00578644
0.00576586
0.00579499
0.00587321
0.00599391
0.0061462
0.00630995
0.00646944
0.00660108
0.00669646
0.00674515
0.00674837
0.00670627
0.00662437
0.00651078
0.00637508
0.00622882
0.00608478
0.00568619
0.00558473
0.00551886
0.00549638
0.00552152
0.0055947
0.00570927
0.00585491
0.00601156
0.00616617
0.00629343
0.00638784
0.006437
0.00644326
0.00640596
0.00632992
0.0062223
0.0060928
0.00595214
0.00581238
0.00543857
0.00533934
0.00527362
0.00524936
0.0052712
0.0053392
0.00544627
0.0055852
0.0057349
0.00588357
0.00600675
0.00609945
0.00614931
0.00615892
0.0061255
0.00605529
0.00595432
0.00583119
0.00569631
0.00556181
0.00521236
0.00511488
0.00504959
0.00502374
0.00504155
0.00510429
0.00520525
0.00533731
0.00547937
0.00562176
0.00574079
0.00583146
0.00588161
0.00589438
0.00586603
0.00580156
0.00570644
0.00558972
0.00546076
0.00533091
0.00500489
0.00491001
0.00484551
0.00481842
0.00483309
0.0048909
0.00498499
0.00510929
0.00524407
0.00538083
0.0054948
0.00558411
0.00563471
0.00564963
0.00562543
0.00556666
0.0054779
0.00536767
0.00524472
0.00512027
0.00481672
0.00472385
0.00466011
0.00463176
0.00464289
0.00469608
0.00478362
0.00490118
0.00502928
0.00515936
0.00526923
0.00535601
0.00540726
0.00542513
0.00540494
0.00535161
0.00526835
0.00516421
0.00504693
0.00492714
0.00464508
0.00455507
0.00449223
0.00446263
0.00447131
0.00452008
0.0046015
0.00471198
0.00483329
0.00495699
0.00506292
0.00514729
0.00519895
0.00521865
0.00520241
0.0051541
0.00507685
0.00497854
0.0048665
0.00475205
0.00448946
0.00440211
0.00434059
0.00431015
0.00431658
0.00436041
0.00443643
0.00453982
0.00465434
0.00477328
0.00487476
0.00495805
0.00500963
0.0050306
0.00501844
0.004974
0.00490217
0.00480967
0.00470284
0.00459351
0.00435019
0.0042644
0.00420403
0.00417262
0.00417604
0.00421659
0.00428693
0.00438491
0.00449381
0.00460679
0.0047044
0.00478518
0.0048372
0.00486057
0.00485152
0.00481177
0.004744
0.0046567
0.00455444
0.00444904
0.0042237
0.00414118
0.00408159
0.00404865
0.00405111
0.00408863
0.00415321
0.00424547
0.00434862
0.00445651
0.00455096
0.00462978
0.00468173
0.00470637
0.00469976
0.00466404
0.00460171
0.0045188
0.00442003
0.00432005
0.00411022
0.00403016
0.00397213
0.00393849
0.00393963
0.00397278
0.00403319
0.0041204
0.00421808
0.00432253
0.00441252
0.00449077
0.00454236
0.00456817
0.00456493
0.00453128
0.00447317
0.004395
0.00430006
0.00420468
0.00401044
0.00393079
0.00387476
0.00384099
0.00383905
0.00387045
0.00392625
0.00400989
0.0041023
0.00420254
0.0042896
0.00436626
0.00441695
0.00444492
0.00444393
0.00441402
0.00435792
0.00428448
0.00419344
0.00410039
0.00392055
0.00384464
0.00378876
0.00375281
0.00375161
0.00378075
0.00383184
0.00391168
0.00399962
0.00409624
0.00418074
0.00425605
0.0043063
0.00433538
0.00433601
0.00430846
0.00425754
0.0041866
0.00409689
0.00400934
0.00384246
0.00376706
0.00371332
0.00367712
0.00367383
0.0037013
0.00374829
0.00382529
0.00390881
0.00400362
0.00408434
0.0041599
0.00420916
0.00423961
0.00424202
0.00421661
0.00416744
0.00410056
0.00401367
0.00392825
0.00377486
0.00369987
0.00364782
0.0036107
0.00360567
0.00363338
0.00367605
0.00375062
0.00383045
0.00392243
0.00400119
0.00407572
0.00412416
0.00415571
0.00415939
0.00413711
0.00408942
0.00402577
0.00394057
0.00385714
0.00371512
0.00364246
0.00359187
0.00355286
0.00354876
0.0035748
0.00361345
0.00368585
0.00376326
0.00385276
0.00392982
0.00400347
0.00405183
0.00408413
0.00408913
0.00406708
0.00402283
0.00396183
0.00387693
0.00379759
0.00366683
0.00359396
0.00354485
0.00350366
0.00349832
0.00352533
0.00356014
0.00363202
0.00370582
0.00379457
0.00386905
0.00394335
0.00398996
0.00402396
0.00403021
0.00401031
0.00396679
0.00390811
0.00382282
0.00374496
0.00362546
0.00355215
0.0035066
0.00346446
0.00345816
0.00348593
0.00351745
0.00358709
0.00365959
0.0037462
0.00381972
0.00389307
0.00393975
0.00397311
0.00398105
0.00396222
0.00391903
0.00386441
0.00377959
0.00370302
0.00359389
0.00351924
0.00347664
0.00343162
0.00342436
0.00345448
0.00348217
0.00355048
0.00362282
0.00370713
0.00378086
0.00385298
0.00390029
0.0039334
0.00394259
0.00392539
0.00388171
0.00383021
0.00374361
0.00366785
0.0035702
0.00349548
0.00345581
0.00340696
0.00340071
0.00343293
0.00345606
0.00352469
0.00359572
0.00367972
0.0037521
0.0038248
0.00387117
0.00390474
0.00391469
0.00389788
0.00385501
0.00380638
0.0037167
0.00364317
0.00355285
0.0034735
0.00344098
0.00338768
0.00337865
0.00341824
0.00343625
0.00350157
0.00357624
0.0036556
0.00373095
0.00380002
0.00384965
0.00387978
0.00389106
0.00387797
0.00383139
0.0037894
0.00369578
0.00362036
0.0128628
0.0128563
0.0128534
0.0128544
0.0128591
0.0128673
0.0128778
0.0128903
0.0129027
0.0129143
0.0129236
0.0129301
0.0129329
0.0129321
0.0129271
0.0129189
0.0129082
0.012896
0.0128835
0.012872
0.012752
0.0127424
0.0127382
0.0127397
0.0127466
0.0127587
0.0127744
0.0127923
0.0128107
0.0128277
0.0128417
0.0128511
0.0128553
0.0128538
0.0128466
0.0128346
0.0128188
0.012801
0.0127827
0.0127658
0.0125559
0.0125413
0.0125348
0.0125369
0.0125474
0.0125655
0.0125893
0.0126164
0.0126443
0.0126701
0.0126913
0.0127057
0.0127121
0.0127097
0.0126989
0.0126807
0.0126569
0.01263
0.0126025
0.0125769
0.0122884
0.0122673
0.0122577
0.0122604
0.0122754
0.0123013
0.0123356
0.0123747
0.0124151
0.0124525
0.0124832
0.0125041
0.0125133
0.0125098
0.0124943
0.0124681
0.012434
0.0123952
0.0123555
0.0123187
0.0119618
0.011933
0.0119196
0.011923
0.0119431
0.011978
0.0120245
0.0120779
0.012133
0.0121841
0.012226
0.0122546
0.0122672
0.0122625
0.0122413
0.0122058
0.0121595
0.012107
0.0120532
0.0120032
0.011588
0.0115505
0.0115328
0.0115366
0.011562
0.0116067
0.0116665
0.0117355
0.0118068
0.011873
0.0119273
0.0119645
0.0119807
0.0119747
0.0119474
0.0119018
0.0118423
0.0117748
0.0117057
0.0116413
0.0111777
0.0111312
0.0111088
0.0111128
0.0111434
0.011198
0.0112716
0.0113567
0.011445
0.011527
0.0115943
0.0116402
0.0116603
0.0116529
0.0116194
0.0115633
0.0114903
0.0114076
0.0113227
0.0112437
0.0107418
0.0106862
0.0106588
0.0106626
0.0106981
0.0107622
0.0108491
0.0109503
0.0110553
0.0111531
0.0112334
0.0112881
0.0113119
0.0113032
0.0112636
0.0111974
0.0111114
0.0110138
0.0109136
0.0108201
0.01029
0.0102256
0.0101931
0.0101963
0.0102358
0.0103086
0.0104081
0.0105244
0.0106454
0.0107582
0.0108509
0.0109139
0.0109413
0.0109315
0.0108862
0.0108107
0.0107127
0.0106014
0.010487
0.01038
0.00983093
0.00975829
0.00972085
0.00972303
0.00976578
0.00984598
0.00995649
0.0100864
0.010222
0.0103486
0.0104526
0.0105231
0.010554
0.0105433
0.0104932
0.0104096
0.010301
0.0101776
0.0100507
0.00993154
0.00937227
0.00929223
0.00925012
0.00925093
0.00929593
0.00938216
0.00950186
0.00964338
0.00979155
0.00993016
0.010044
0.0101212
0.0101551
0.0101437
0.0100897
0.00999962
0.00988241
0.00974913
0.00961169
0.00948223
0.00892058
0.0088341
0.00878756
0.00878654
0.00883268
0.00892324
0.00905017
0.00920117
0.00935969
0.00950824
0.0096302
0.00971308
0.00974964
0.00973825
0.00968155
0.00958657
0.00946276
0.00932175
0.00917595
0.00903809
0.00848086
0.00838912
0.00833856
0.00833539
0.00838178
0.00847513
0.0086072
0.00876503
0.00893141
0.00908765
0.00921604
0.00930338
0.0093423
0.00933112
0.00927298
0.00917502
0.00904689
0.00890045
0.00874857
0.00860445
0.0080572
0.00796122
0.00790724
0.00790184
0.00794744
0.00804178
0.0081768
0.00833924
0.00851104
0.00867274
0.00880569
0.00889643
0.00893745
0.00892719
0.00886875
0.00876935
0.00863891
0.00848941
0.00833379
0.00818533
0.00765273
0.00755366
0.00749663
0.00748871
0.00753278
0.00762683
0.00776289
0.00792743
0.00810214
0.00826722
0.00840296
0.00849615
0.00853894
0.00852991
0.0084724
0.00837336
0.00824262
0.00809202
0.00793458
0.00778372
0.00726945
0.00716833
0.00710877
0.00709826
0.00714013
0.00723256
0.00736783
0.00753247
0.00770784
0.0078742
0.00801115
0.00810583
0.00815013
0.00814294
0.00808734
0.00799007
0.00786076
0.00771091
0.00755346
0.00740193
0.00690861
0.00680628
0.00674485
0.00673189
0.00677094
0.00686052
0.00699338
0.0071563
0.00733036
0.00749632
0.00763303
0.00772848
0.00777413
0.00776922
0.00771637
0.00762193
0.00749542
0.00734802
0.00719228
0.00704144
0.00657099
0.00646839
0.00640538
0.00638987
0.00642581
0.00651187
0.00664109
0.00680061
0.00697146
0.00713564
0.00727081
0.00736655
0.00741317
0.00741075
0.00736141
0.00727096
0.00714853
0.00700468
0.00685176
0.00670297
0.00625663
0.00615434
0.00609034
0.00607252
0.00610495
0.0061867
0.00631132
0.00646622
0.00663269
0.0067937
0.00692629
0.00702161
0.00706927
0.00706963
0.00702433
0.0069385
0.00682091
0.00668172
0.00653275
0.00638686
0.00596521
0.00586394
0.00579926
0.0057792
0.00580813
0.00588519
0.00600414
0.00615367
0.00631452
0.00647127
0.006601
0.00669537
0.00674373
0.0067472
0.00670606
0.00662538
0.00651339
0.00637948
0.00623515
0.00609306
0.0056963
0.00559623
0.00553139
0.00550944
0.00553451
0.00560675
0.00571985
0.00586313
0.00601729
0.00616953
0.00629519
0.00638873
0.00643749
0.0064439
0.00640734
0.00633226
0.00622596
0.00609797
0.00595898
0.00582091
0.00544853
0.00535054
0.00528574
0.00526197
0.00528384
0.0053511
0.00545687
0.00559392
0.00574147
0.00588812
0.00600998
0.0061019
0.00615136
0.00616111
0.00612812
0.00605868
0.00595882
0.00583692
0.00570345
0.00557039
0.00522206
0.00512566
0.0050612
0.00503584
0.00505369
0.00511582
0.00521574
0.00534635
0.0054865
0.00562722
0.00574516
0.0058352
0.00588479
0.00589777
0.00586971
0.0058058
0.00571152
0.00559582
0.00546805
0.0053394
0.00501424
0.00492028
0.00485656
0.00482997
0.00484469
0.00490206
0.00499527
0.00511838
0.0052516
0.00538698
0.0055
0.00558878
0.00563886
0.00565391
0.00562981
0.00557149
0.00548335
0.00537398
0.00525207
0.00512862
0.00482579
0.00473369
0.00467059
0.00464267
0.00465384
0.00470677
0.00479363
0.0049102
0.00503714
0.00516594
0.00527504
0.00536123
0.00541214
0.00543002
0.00540986
0.00535694
0.00527412
0.00517063
0.00505417
0.00493516
0.00465368
0.00456434
0.00450212
0.00447299
0.00448179
0.0045303
0.00461129
0.00472082
0.00484128
0.0049638
0.00506921
0.00515295
0.00520433
0.00522388
0.00520767
0.00515959
0.00508271
0.00498496
0.00487369
0.00475988
0.00449764
0.00441079
0.0043499
0.00432004
0.00432652
0.00437006
0.00444591
0.00454829
0.00466227
0.00478021
0.00488134
0.00496406
0.00501548
0.00503607
0.005024
0.00497961
0.004908
0.00481603
0.00470998
0.00460108
0.00435815
0.00427275
0.00421281
0.00418183
0.00418522
0.00422567
0.00429599
0.00439308
0.00450174
0.00461374
0.00471112
0.00479125
0.00484331
0.00486625
0.00485728
0.00481766
0.00474995
0.00466295
0.00456127
0.00445611
0.0042312
0.0041492
0.00408984
0.00405722
0.00405989
0.00409734
0.00416193
0.00425333
0.00435643
0.00446341
0.00455775
0.0046359
0.00468795
0.00471209
0.00470544
0.00466984
0.00460774
0.00452492
0.00442657
0.00432693
0.00411723
0.00403766
0.00397991
0.00394672
0.00394804
0.00398094
0.00404147
0.00412791
0.00422565
0.00432936
0.00441926
0.00449695
0.00454865
0.004574
0.00457071
0.00453693
0.00447902
0.00440096
0.00430654
0.0042114
0.00401719
0.00393793
0.00388211
0.00384878
0.00384691
0.00387808
0.0039342
0.00401719
0.00410971
0.00420922
0.0042963
0.00437236
0.00442317
0.0044507
0.00444977
0.00441974
0.00436369
0.0042903
0.00419973
0.00410678
0.00392696
0.00385165
0.00379572
0.00376004
0.00375916
0.00378809
0.0038395
0.00391877
0.00400683
0.00410274
0.0041874
0.0042621
0.00431239
0.00434109
0.00434169
0.00431404
0.0042634
0.00419226
0.00410284
0.00401554
0.00384864
0.00377366
0.00371994
0.00368416
0.00368102
0.00370827
0.00375565
0.00383208
0.00391576
0.00401001
0.00409087
0.00416592
0.00421524
0.00424529
0.00424765
0.00422214
0.00417308
0.00410608
0.00401961
0.00393421
0.00378085
0.00370615
0.00365416
0.00361757
0.00361257
0.00364013
0.00368325
0.00375716
0.00383725
0.00392865
0.00400765
0.00408163
0.0041302
0.00416128
0.00416486
0.00414258
0.00409488
0.00403118
0.0039465
0.0038629
0.00372094
0.00364877
0.00359795
0.00355934
0.00355545
0.00358128
0.00362034
0.0036922
0.00376992
0.00385882
0.00393625
0.0040093
0.00405782
0.00408977
0.00409454
0.00407249
0.00402844
0.00396712
0.00388261
0.00380317
0.00367261
0.00360016
0.00355076
0.00350999
0.00350473
0.00353152
0.00356691
0.00363828
0.00371235
0.00380057
0.00387543
0.00394916
0.00399588
0.00402959
0.00403567
0.00401581
0.00397238
0.00391335
0.00382847
0.00375033
0.0036311
0.00355788
0.00351236
0.00347105
0.00346443
0.00349209
0.00352438
0.00359323
0.00366612
0.00375206
0.00382611
0.00389873
0.00394562
0.00397847
0.00398631
0.00396769
0.00392422
0.00386961
0.0037856
0.00370832
0.00359972
0.00352516
0.00348251
0.00343831
0.00343058
0.00346071
0.00348925
0.00355658
0.00362953
0.00371304
0.00378753
0.00385876
0.00390651
0.00393889
0.00394799
0.00393118
0.00388713
0.00383562
0.0037498
0.00367314
0.0035759
0.00350077
0.00346162
0.00341341
0.00340611
0.00343914
0.00346303
0.00352996
0.0036023
0.00368487
0.00375868
0.00382985
0.00387733
0.00390954
0.00391934
0.00390362
0.00385983
0.00381181
0.00372271
0.00364762
0.00356064
0.00348024
0.00344868
0.00339666
0.00338554
0.00342658
0.00344597
0.00350843
0.00358538
0.00366238
0.00374012
0.00380662
0.00385846
0.00388613
0.00389707
0.00388615
0.00383775
0.00379704
0.00370458
0.00362638
0.00178069
-0.018685
0.0164783
-0.185649
-0.156265
-0.163795
0.00955062
0.00707085
0.0337714
-0.150558
-0.165559
-0.141354
-0.122933
0.0342759
0.0222314
0.0548856
-0.12796
-0.118412
-0.131024
-0.0865893
-0.250565
-0.268587
-0.224836
-0.462924
-0.545731
-0.436551
-0.5224
-0.221064
-0.173423
-0.241141
-0.158938
-0.175745
-0.126031
-0.201495
-0.172123
-0.218354
-0.160327
-0.219674
-0.257347
-0.213376
-0.430385
-0.531509
-0.412654
-0.490865
-0.175507
-0.181292
-0.147691
-0.229385
-0.194224
-0.130069
-0.142051
-0.111733
-0.201244
-0.127627
-0.173081
-0.106492
-0.202179
-0.248822
-0.191758
-0.408174
-0.491498
-0.390463
-0.465943
-0.142682
-0.16809
-0.108988
-0.189543
-0.188081
-0.0908182
-0.104565
-0.0744297
-0.161662
-0.0879441
-0.146461
-0.0722021
-0.187291
-0.233481
-0.171626
-0.380425
-0.465068
-0.36375
-0.437303
-0.121095
-0.142443
-0.100179
-0.174897
-0.157674
-0.164678
-0.213336
-0.135029
-0.351635
-0.434181
-0.332246
-0.391009
-0.0906538
-0.11492
-0.0709492
-0.151241
-0.13546
-0.131236
-0.192095
-0.108576
-0.319324
-0.388655
-0.300398
-0.358704
-0.0643696
-0.0554749
-0.0456943
-0.130933
-0.121269
-0.105205
-0.164719
-0.06561
-0.284244
-0.353918
-0.260115
-0.326107
-0.0402187
0.00465273
-0.0295739
-0.117357
-0.108367
-0.0564959
-0.134369
-0.00418196
-0.241261
-0.322404
-0.216766
-0.294678
-0.0274147
0.0696536
-0.0208925
-0.10587
-0.0997795
-0.000416517
-0.105052
0.0230104
-0.195598
-0.293275
-0.173872
-0.282806
-0.0191626
0.0639054
-0.0199271
-0.0984083
-0.0938589
0.0209816
-0.0775761
0.0361672
-0.154758
-0.28216
-0.134295
-0.274278
-0.0188696
0.0180259
-0.0197253
-0.0925778
-0.0893698
0.0419371
-0.0564099
0.06071
-0.11687
-0.270793
-0.100956
-0.184627
-0.0208583
-0.0170486
-0.0204497
-0.0888639
-0.0862518
0.048013
-0.0345299
0.0718726
-0.0861153
-0.180805
-0.0691103
-0.0725017
-0.0211636
0.00982683
-0.0229725
-0.0852178
-0.0796264
-0.569895
-1.03991
-1.02151
-0.263218
-0.220239
-0.0183922
-0.0392084
-0.12971
-0.189068
-0.107368
-0.0283739
0.0118909
-0.00942448
0.024307
-0.543085
-1.02171
-0.959738
-0.209417
-0.187608
-0.0273794
-0.0110078
-0.51228
-0.949004
-0.902905
-0.182561
-0.171314
-0.00758067
-0.00813466
-0.475276
-0.893246
-0.823588
-0.16347
-0.151586
-0.00939034
-0.0133716
-0.430703
-0.800769
-0.728667
-0.146301
-0.135474
-0.0142508
-0.0250456
-0.382147
-0.704093
-0.615598
-0.134655
-0.126185
-0.026334
-0.0373687
-0.323849
-0.305833
-0.589213
-0.490745
-0.122952
-0.117067
-0.0396982
-0.0512487
-0.30059
-0.26612
-0.310195
-0.472598
-0.397152
-0.115384
-0.111557
-0.0535232
-0.0638478
-0.30843
-0.212665
-0.320644
-0.377339
-0.307546
-0.110455
-0.107257
-0.0663446
-0.0766471
-0.316174
-0.167625
-0.197952
-0.288103
-0.233306
-0.106528
-0.104861
-0.079207
-0.0882925
-0.190113
-0.127516
-0.150456
-0.219248
-0.167106
-0.1047
-0.103296
-0.0904567
-0.0962147
-0.145097
-0.0901903
-0.0612053
-0.151271
-0.11111
-0.102477
-0.0971371
-0.0967782
-0.0981211
-0.0580197
-0.057483
-0.0681148
-0.100954
-0.069731
-0.0949482
-0.0861655
-0.0978877
-0.0945529
-0.0674764
-0.0294812
0.0363629
-0.0601344
-0.0345281
-0.0834899
-0.0737331
-0.0926928
-0.0826897
0.0397517
-0.0146927
0.0340309
-0.0287699
-0.0148079
-0.0698898
-0.0515713
-0.0779209
-0.0549004
-1.07717
-1.10552
-1.12334
-1.36689
-0.936193
-1.12798
1.02066
1.02898
0.0846194
0.0877686
0.876316
0.616347
0.971385
0.610294
-1.16277
-0.939319
-1.10621
-0.977569
-2.47991
-0.765522
-1.50469
-1.08732
1.04074
-1.75118
1.08547
0.0955163
0.0906201
0.974953
0.601564
0.994199
0.574126
-1.06093
-0.723046
-0.973722
-0.652684
-1.32033
-0.533594
-0.909926
-1.08008
-1.84609
1.0973
-1.07317
1.16546
0.0935378
0.0846316
0.998632
0.553557
1.013
0.52028
-0.981915
-0.994631
1.17839
-0.769448
1.18289
0.0855726
0.0724767
1.01596
0.494293
1.00572
0.456329
-0.821482
-0.682022
1.18979
-0.478509
1.18509
0.0709114
0.050473
1.00532
0.427942
0.977569
0.390359
-0.682335
-0.434733
1.18477
-0.331356
1.17036
0.0479628
0.0277821
0.970805
0.357369
0.901005
0.318904
-0.536664
-0.303135
1.05614
-0.242355
1.05738
0.024251
0.00415227
0.874556
0.28655
0.8094
0.251122
-0.421058
-0.23389
1.0412
-0.178599
0.905591
0.000616262
-0.0175273
0.798163
0.220853
0.67101
0.188289
-0.312534
-0.165611
0.892293
-0.123933
0.728079
-0.0211266
-0.0387015
0.644786
0.159782
0.546197
0.13176
-0.22813
-0.113061
0.710876
-0.0781903
0.57462
-0.0423525
-0.0575998
0.538286
0.108514
0.445945
0.0841185
-0.155165
-0.0707758
0.592765
-0.0461819
0.489517
-0.0606571
-0.0711476
0.438216
0.0633345
0.316473
0.0419736
-0.0974676
-0.0399713
0.479513
-0.0226752
0.380076
-0.0717821
-0.0770675
0.299274
0.0247788
0.24685
0.00885334
-0.0587351
-0.0182935
0.366225
-0.00461424
0.30662
-0.0775318
-0.0777142
0.236624
-0.00570539
0.190799
-0.0150837
1.16571
1.16217
0.377023
0.504284
0.346504
0.502842
1.16373
-1.23763
1.19928
0.327579
0.431862
0.240226
0.401958
1.20594
-0.606152
1.20687
0.229889
0.395251
0.168628
0.364525
1.20868
-0.267095
1.18363
0.158776
0.355046
0.159389
0.349482
0.00798224
0.0214355
0.00865842
-0.115167
-0.157327
-0.0918661
-0.0427517
-0.0503115
-0.0373388
-0.150423
-0.128579
-0.146324
-0.12199
0.00532899
0.0218771
0.0014419
-0.150032
-0.0735377
-0.0985378
-0.0643871
-0.0360546
-0.0438644
-0.0277398
-0.149153
-0.14199
-0.140575
-0.126834
0.00545514
0.011941
0.0121913
-0.091295
-0.0500428
-0.0684029
-0.04001
-0.0266973
-0.0382378
-0.0247225
-0.13762
-0.122139
-0.129196
-0.105827
0.0493645
0.0297853
0.0540339
-0.128213
-0.0760178
-0.10659
-0.0535289
-0.0223931
-0.0305315
-0.0165289
-0.124847
-0.0996724
-0.114403
-0.077633
0.046148
0.0402673
0.0339352
-0.103142
-0.0425164
-0.0735523
-0.0288932
-0.0108458
-0.0227061
0.00902723
-0.108965
-0.0693403
-0.0989672
-0.0481308
0.0321172
0.0188539
0.0495699
-0.0667483
-0.0246426
-0.02854
-0.00731708
0.0111607
-0.0196942
0.0144765
-0.0932045
-0.0420771
-0.0829003
-0.0222743
0.0586729
-0.00756044
0.0587418
-0.0219258
-0.0031505
0.0190703
0.00228103
0.0174701
-0.0152965
0.0193316
-0.075671
-0.0108879
-0.0655565
0.0056102
0.0504597
-0.00844726
0.0483377
0.0288034
0.00252485
0.0480496
0.0182758
0.0185584
-0.0115425
0.0222013
-0.0590457
0.0107421
-0.0492266
0.032913
0.0441533
-0.00456802
0.0389913
0.0437496
0.0192958
0.0371873
0.0165041
0.0183903
-0.0100803
0.0190604
-0.0424384
0.0457925
-0.0347079
0.0536541
0.0361687
0.00153216
0.0319915
0.0369372
0.0167064
0.019417
0.0147655
-0.22561
-0.237487
-0.341973
-0.212059
-0.330037
-0.199024
-0.183933
-0.166964
-0.239985
-0.208465
-0.177873
-0.191959
-0.314233
-0.175445
-0.313386
-0.160517
-0.155913
-0.158047
-0.214285
-0.14423
-0.173079
-0.196924
-0.15472
-0.173537
-0.301864
-0.291857
-0.206391
-0.157304
-0.287065
-0.121565
-0.213881
-0.281034
-0.0605819
-0.0848171
-0.0507576
-0.115196
-0.0625625
-0.103741
-0.0535506
-0.180954
-0.11899
-0.131984
-0.267667
-0.0883061
-0.192436
-0.244876
-0.0407464
-0.062307
-0.0345544
-0.0911923
-0.0447873
-0.0821101
-0.0386678
-0.167065
-0.0624725
-0.0743293
-0.237989
-0.0683734
-0.165629
-0.223136
-0.0280487
-0.0456698
-0.0237864
-0.0728618
-0.0330909
-0.066064
-0.0292352
-0.134637
-0.0338359
-0.0184869
-0.232649
-0.0210773
-0.142854
-0.228445
-0.106326
0.00164898
0.0439985
-0.183134
0.0127316
-0.117468
-0.157653
-0.0808912
0.0296119
0.0940635
-0.150853
0.0381838
-0.0923262
-0.154828
-0.0637196
0.0313167
0.0158949
-0.112247
0.0344504
-0.0775018
-0.0931809
0.0622299
-0.0216295
0.065089
-0.0575142
-0.0693521
-0.045181
-0.0667177
-0.0296042
0.0208754
-0.0255413
-0.077233
-0.0684098
0.0605376
-0.0104015
0.0384898
-0.0348178
-0.0660544
-0.0238059
0.0423205
-0.0232913
0.044447
-0.0241062
-0.0660337
-0.0589121
0.0272451
-0.00329253
0.0165267
-0.0146738
0.046496
-0.0106597
0.0368978
-0.0246649
0.0188612
-0.0249293
-0.0563513
-0.0486975
-0.65084
-0.57655
-0.613804
-0.829876
-1.00089
-0.794064
-0.950936
-0.13348
-0.196853
-0.220847
-0.173631
-0.180191
-0.164988
-0.13832
-0.610023
-0.554171
-0.595229
-0.790128
-0.953134
-0.751684
-0.834697
-0.0798581
-0.154979
-0.0609501
0.00361551
0.0396031
-0.00735957
0.0421979
-0.578808
-0.499409
-0.552862
-0.705919
-0.794491
-0.643299
-0.754346
-0.244649
-0.298965
-0.193734
-0.0466929
-0.0991328
-0.0404566
0.00299028
0.0481001
0.00743191
0.0490109
-0.517034
-0.424757
-0.492444
-0.590852
-0.71318
-0.532687
-0.675901
-0.201917
-0.27631
-0.250804
-0.208972
-0.0311071
-0.0758326
-0.0249255
0.0140933
0.0508872
0.0144479
0.0484848
-0.240272
-0.257032
-0.245751
-0.210832
-0.0198121
-0.0622452
-0.0170358
0.0162365
0.0466469
0.0129934
0.0415259
-0.230674
-0.267821
-0.250507
-0.232016
-0.236893
-0.244664
-0.247101
-0.235017
-0.240867
-0.235659
-0.232759
-0.23825
-0.247603
-0.222933
-0.221632
-0.248719
-0.250479
-0.212479
-0.209007
-0.249935
-0.257967
-0.199189
-0.200721
-0.252136
-0.259843
-0.20025
-0.193024
-0.264562
-0.237746
-0.175851
-0.164448
-0.24411
-0.221227
-0.145984
-0.139219
-0.227582
-0.185668
-0.130699
-0.119345
-0.207206
0.0303081
-0.0117549
-0.0291682
-0.0125516
-0.00959683
-0.0323566
-0.0440612
-0.0540129
-0.0320856
-0.0464651
-0.0567075
-0.0309486
-1.01247
-0.732412
-0.930534
-0.703884
-1.0172
-0.578222
-0.825045
-1.08854
0.328756
-0.010715
-0.0155716
0.313899
-1.1287
-1.61605
-1.55565
0.33411
-0.0123759
-0.0152522
0.342625
-1.14197
-1.04287
-1.45833
-1.12474
-1.38291
0.316716
0.000661321
0.00181976
0.328976
-0.895906
-0.575311
-0.827258
-0.459004
-0.796965
-0.410598
-0.631394
-1.59694
-1.13662
-1.03148
-1.21726
-1.10844
-1.17118
0.296224
0.00781033
0.00350311
0.306268
-0.73207
-0.437389
-0.648162
-0.361279
-0.52782
-0.309426
-0.44552
-1.41629
-1.0659
-0.904507
-1.06357
-1.02588
-1.55942
-1.00058
0.270006
-0.0100842
-0.0236379
0.28504
-0.566565
-0.331354
-0.495063
-0.272958
-0.377367
-0.236114
-0.324685
-1.17209
-0.958645
-0.744894
-0.815833
-0.917995
-1.25723
-0.759546
0.231003
-0.0410568
-0.0511187
0.249768
0.177699
-0.42449
-0.255049
-0.366392
-0.208223
-0.274239
-0.18284
-0.235428
0.18685
-0.0675344
0.155821
-0.0802973
0.206914
0.121073
0.141569
-0.0954496
0.0177535
-0.105035
0.162282
0.0897125
0.0989182
-0.11779
-0.0191658
-0.127295
0.117664
-0.206471
0.0514699
-0.141934
0.0378961
-0.152646
0.071619
0.202419
0.00626414
-0.169717
0.255583
-0.17959
0.0252859
0.209696
-0.0208924
-0.206012
0.0804298
-0.217929
-0.0131446
0.0731252
-0.0545051
-0.219642
0.279611
-0.223148
-0.0461957
0.525324
-0.0268827
0.00272685
0.296306
0.00752155
0.250446
-0.076539
-0.0697391
0.17774
-0.0201208
0.141837
-0.023308
-0.0101882
0.00991357
0.239852
0.00876484
0.154595
-0.0659697
-0.0470594
0.132458
-0.0233476
0.0821402
-0.0209567
-0.456795
0.181125
0.322854
0.131478
0.280837
0.864753
1.38278
0.82159
1.36572
0.733458
0.875991
0.685686
0.999681
0.642063
0.495517
0.441192
0.485724
0.426765
-2.60974
-0.204479
-0.95613
0.0677771
0.255197
0.0304863
0.147884
0.766838
-2.30294
0.54359
0.818682
0.371857
0.631802
0.979316
0.59611
0.477602
0.42265
0.459961
0.4037
0.568608
0.91644
0.526234
0.444362
0.389936
0.421737
0.366186
0.494313
0.822144
0.445873
0.40124
0.348425
0.372663
0.31967
1.18675
-0.201002
1.10069
0.1234
0.325347
0.093195
0.292357
0.414285
0.73426
0.374674
0.353751
0.299933
0.330699
0.275017
1.08692
-0.16503
0.920592
0.0740182
0.267724
0.0564707
0.242926
0.344098
0.63739
0.306905
0.312267
0.25697
0.290787
0.233072
0.899558
-0.1299
0.806655
0.045092
0.222761
0.0348232
0.200038
0.278221
0.551701
0.24467
0.273909
0.215408
0.2537
0.192858
0.795403
-0.047853
0.673946
0.0221748
0.182859
0.016115
0.167454
0.218385
0.461249
0.187902
0.237028
0.175863
0.217229
0.154648
0.5098
-0.0330546
0.427337
0.0152786
0.159853
0.0139542
0.146473
0.16372
0.378305
0.137281
0.201155
0.138691
0.182325
0.119446
-0.08414
-0.0601292
-0.185499
-0.0476516
-0.179561
-0.0914133
-0.0597725
-0.016486
-0.157553
-0.0254177
-0.0472199
-0.172697
-0.0285073
-0.0184373
-0.158867
-0.143061
-0.0404314
-0.0112344
-0.162135
-0.0406662
-0.0646323
-0.146289
-0.159601
-0.0693997
-0.0302228
-0.152706
-0.0301911
0.0102649
-0.134996
-0.0129478
-0.0194384
-0.159423
-0.0224036
-0.0654402
-0.154268
-0.140422
-0.0264485
-0.0615072
-0.00410089
0.00125241
-0.105437
-0.01396
0.00666972
-0.0213998
-0.0497279
-0.138252
-0.0561358
-0.011146
-0.0189852
-0.0134484
-0.101093
-0.139394
0.00504951
-0.0132729
-0.38958
-0.384272
-0.515868
-0.528997
-0.369955
-0.505562
-0.397698
-0.380958
-0.356156
-0.527919
-0.488593
-0.36595
-0.376029
-0.495786
-0.22482
-0.204592
-0.243277
-0.229269
-0.180434
-0.316282
-0.207356
-0.326849
-0.169396
-0.227051
-0.198755
-0.240973
-0.370267
-0.372055
-0.248679
-0.214402
-0.358797
-0.367914
-0.226769
-0.246
-0.220616
-0.206218
-0.166166
-0.221955
-0.159802
-0.235772
-0.193592
-0.199179
-0.214861
-0.237365
-0.213859
-0.204292
-0.211334
-0.201736
-0.217684
-0.228859
-0.178036
-0.223965
-0.19308
-0.189851
-0.37363
-0.355206
-0.491814
-0.512292
-0.375439
-0.351539
-0.484363
-0.369704
-0.345841
-0.506273
-0.467757
-0.350555
-0.36514
-0.475976
-0.177692
-0.15908
-0.222685
-0.165094
-0.21643
-0.190157
-0.15897
-0.304758
-0.171842
-0.312194
-0.162973
-0.191327
-0.161833
-0.208346
-0.358059
-0.340284
-0.221254
-0.215099
-0.217273
-0.330752
-0.3396
-0.200149
-0.20732
-0.211861
-0.35978
-0.346299
-0.46857
-0.479446
-0.365471
-0.336184
-0.461341
-0.356144
-0.315689
-0.481084
-0.449361
-0.323871
-0.350878
-0.457137
-0.128953
-0.183694
-0.171452
-0.173421
-0.287608
-0.293227
-0.217446
-0.123902
-0.149417
-0.163667
-0.16613
-0.216102
-0.330125
-0.316391
-0.359091
-0.194993
-0.182717
-0.181921
-0.338094
-0.307056
-0.266163
-0.312458
-0.252789
-0.321571
-0.179993
-0.195291
-0.258097
-0.176157
-0.251233
-0.310847
-0.264709
-0.177394
-0.186224
-0.263182
-0.192237
-0.273134
-0.257698
-0.342993
-0.314798
-0.445619
-0.462275
-0.349024
-0.314029
-0.436135
-0.337708
-0.297483
-0.46184
-0.418867
-0.311033
-0.330067
-0.428401
-0.203578
-0.148316
-0.114532
-0.153412
-0.124123
-0.210832
-0.146681
-0.209039
-0.152519
-0.123267
-0.270032
-0.120058
-0.282312
-0.197432
-0.205728
-0.106023
-0.117443
-0.132872
-0.121101
-0.138997
-0.184476
-0.214445
-0.305973
-0.266203
-0.239267
-0.299878
-0.279591
-0.219354
-0.173693
-0.259102
-0.169537
-0.232976
-0.168567
-0.245993
-0.227079
-0.285031
-0.244487
-0.299754
-0.211662
-0.257949
-0.216862
-0.155392
-0.163015
-0.225404
-0.161667
-0.2022
-0.232817
-0.245566
-0.181674
-0.14923
-0.258327
-0.173513
-0.252872
-0.242074
-0.239589
-0.145912
-0.160295
-0.226086
-0.16783
-0.237124
-0.231687
-0.315742
-0.293854
-0.411069
-0.427336
-0.324971
-0.284195
-0.400168
-0.309503
-0.266331
-0.426268
-0.380548
-0.280752
-0.300964
-0.391728
-0.166542
-0.110593
-0.0835773
-0.124121
-0.092815
-0.175083
-0.117418
-0.181026
-0.127635
-0.06406
-0.233736
-0.0831189
-0.242749
-0.165248
-0.165148
-0.0770128
-0.075055
-0.104252
-0.0879691
-0.110658
-0.153954
-0.196026
-0.283037
-0.240072
-0.206873
-0.268953
-0.229359
-0.190715
-0.147384
-0.220977
-0.145876
-0.197472
-0.141152
-0.213441
-0.196022
-0.252533
-0.232795
-0.266741
-0.180756
-0.228363
-0.187554
-0.128219
-0.139832
-0.206027
-0.134024
-0.176889
-0.210088
-0.218369
-0.155506
-0.121071
-0.223756
-0.147169
-0.226981
-0.214628
-0.213235
-0.119507
-0.135323
-0.208299
-0.142478
-0.212671
-0.205813
-0.286864
-0.267146
-0.373314
-0.380855
-0.296163
-0.269248
-0.362536
-0.281465
-0.25839
-0.382315
-0.345485
-0.2687
-0.27352
-0.35538
-0.140941
-0.0694806
-0.0583097
-0.0975565
-0.0606978
-0.15025
-0.0915014
-0.165039
-0.0734587
-0.0413192
-0.227717
-0.0623706
-0.222605
-0.145059
-0.116615
-0.0509603
-0.0609434
-0.0804389
-0.0651971
-0.085359
-0.111095
-0.201037
-0.256008
-0.241498
-0.180177
-0.265369
-0.229513
-0.164996
-0.121728
-0.206783
-0.128799
-0.171754
-0.117449
-0.18423
-0.192408
-0.236965
-0.230487
-0.264863
-0.178659
-0.227161
-0.156509
-0.107095
-0.12458
-0.174713
-0.111408
-0.150909
-0.178189
-0.189932
-0.12981
-0.0854239
-0.205706
-0.12008
-0.199846
-0.194112
-0.182449
-0.0790022
-0.105567
-0.190874
-0.113576
-0.189417
-0.172945
-0.256834
-0.257956
-0.336981
-0.355191
-0.266884
-0.236772
-0.326928
-0.248388
-0.201725
-0.350724
-0.306678
-0.23327
-0.238223
-0.317555
-0.130891
-0.0122866
0.000820067
-0.18638
-0.0154918
-0.225879
-0.119497
-0.166838
-0.237581
-0.227015
-0.172207
-0.214159
-0.226964
-0.163141
-0.189278
-0.220114
-0.212619
-0.152378
-0.226593
-0.152672
-0.0982444
-0.0369817
-0.184938
-0.0877663
-0.164918
-0.160895
-0.145516
-0.0330296
-0.073139
-0.142358
-0.082428
-0.157994
-0.13531
-0.216751
-0.198291
-0.29676
-0.305306
-0.230041
-0.180792
-0.281785
-0.208572
-0.165701
-0.30433
-0.258918
-0.180349
-0.197076
-0.272051
-0.102297
0.0469935
0.0284505
-0.152054
0.0287936
-0.161773
-0.0960337
-0.14124
-0.187761
-0.219049
-0.150523
-0.175599
-0.216074
-0.136907
-0.167833
-0.207217
-0.176735
-0.131658
-0.212313
-0.120412
-0.0674323
-0.000570749
-0.1378
-0.0621883
-0.1284
-0.141829
-0.112663
0.00683277
-0.0475055
-0.104561
-0.0560028
-0.139627
-0.103131
-0.176779
-0.163324
-0.247084
-0.28818
-0.187586
-0.150481
-0.234822
-0.168189
-0.0959876
-0.286852
-0.215303
-0.145712
-0.158513
-0.225541
-0.0815146
0.0776718
0.0233905
-0.113672
0.0320531
-0.153397
-0.0821316
-0.121152
-0.166973
-0.206639
-0.129417
-0.164466
-0.205403
-0.120853
-0.107488
-0.198661
-0.162836
-0.121305
-0.203037
-0.0879573
-0.0435562
0.0193355
-0.1026
-0.0382055
-0.0965831
-0.0885361
-0.139872
-0.0937347
-0.205408
-0.283352
-0.1503
-0.0832897
-0.194309
-0.128239
-0.0136045
-0.28319
-0.165937
-0.0761123
-0.113246
-0.181953
-0.104921
-0.106065
-0.197494
-0.118004
-0.0804246
-0.192323
-0.102927
-0.0224379
-0.180667
-0.0758116
-0.100884
-0.189933
-0.0913372
-0.00267703
-0.151943
-0.216723
-0.100362
-0.00813453
-0.141544
-0.0880753
-0.0674536
-0.214783
-0.128064
-0.0205502
-0.0818411
-0.135766
-0.0885339
-0.0149796
-0.179297
-0.100104
-0.0198606
-0.176987
-0.0826878
-0.102686
-0.171644
-0.0306846
-0.0703852
-0.175939
-0.0607331
-0.0657066
-0.120303
-0.119061
-0.0739927
-0.00432909
-0.106469
-0.0471776
0.0938304
-0.110656
-0.0820433
0.00348238
-0.0368728
-0.092934
-0.0645163
-0.101646
-0.170281
-0.0683435
-0.000587252
-0.163009
-0.0637449
0.145935
-0.149983
0.00176115
-0.0577945
-0.160725
-0.761623
-0.58941
-0.579544
-0.761931
-0.757131
-0.562405
-0.57357
-0.743924
-0.790681
-0.871791
-1.0121
-0.797161
-0.88211
-0.794574
-0.883024
-0.784684
-0.825312
-1.01478
-0.828378
-0.784374
-0.788754
-0.767389
-0.242729
-0.179334
-0.166718
-0.232784
-0.15124
-0.160901
-0.0531127
-0.0317922
-0.152679
-0.0434505
-0.00449219
-0.139034
-0.0400693
-0.0422617
-0.0195721
-0.123054
-0.0403304
-0.0562649
-0.13097
-0.0316196
-0.726089
-0.559821
-0.548188
-0.746531
-0.738829
-0.533811
-0.545476
-0.732465
-0.796928
-0.823488
-1.01697
-0.793327
-0.818524
-0.774347
-0.770029
-0.804199
-0.806983
-0.977334
-1.0629
-0.817935
-0.801899
-0.781589
-1.06139
-0.778202
-0.151934
-0.198426
-0.144199
-0.141763
-0.195102
-0.151413
-0.19587
-0.161699
-0.140415
-0.205963
-0.191615
-0.0420054
-0.0481718
-0.197934
-0.116643
-0.0546853
-0.0231096
-0.107705
-0.0484275
-0.210557
-0.0495132
-0.196916
-0.0456582
-0.185465
-0.100943
-0.0138388
-0.0452649
-0.10312
-0.196456
-0.0453485
-0.717219
-0.534477
-0.524087
-0.733744
-0.716781
-0.507032
-0.521694
-0.705989
-0.792598
-0.801595
-1.0662
-0.927692
-0.802832
-0.783458
-1.06571
-0.790982
-1.05246
-0.778652
-1.0946
-0.790164
-0.75796
-0.922672
-1.02237
-0.77567
-0.778536
-1.06851
-0.789108
-1.06423
-0.778448
-1.09551
-0.207793
-0.181113
-0.153403
-0.300395
-0.20144
-0.148769
-0.239407
-0.272113
-0.268245
-0.213419
-0.205128
-0.174989
-0.257432
-0.134009
-0.258701
-0.138925
-0.196418
-0.203042
-0.0459606
-0.201341
-0.0716738
-0.179835
-0.096041
-0.0405658
-0.00728586
-0.197405
-0.0943165
-0.0460494
-0.202652
-0.0701516
-0.201287
-0.0712785
-0.178288
-0.086736
-0.00735663
-0.0453488
-0.0897475
-0.174317
-0.0432816
-0.688345
-0.504384
-0.491927
-0.702656
-0.684927
-0.473332
-0.487534
-0.672555
-0.77483
-0.74953
-1.0176
-0.868625
-0.773964
-0.736257
-1.00382
-0.754286
-1.06109
-0.774135
-1.04558
-0.759289
-0.703387
-0.849512
-0.972316
-0.721897
-0.750403
-0.995047
-0.751412
-1.01534
-0.741485
-1.04454
-0.188747
-0.253557
-0.159616
-0.126882
-0.226111
-0.191992
-0.12307
-0.201169
-0.255752
-0.24759
-0.211391
-0.185077
-0.15476
-0.229861
-0.117888
-0.225576
-0.119803
-0.188332
-0.192746
-0.0633353
-0.202838
-0.0677272
-0.165297
-0.0811197
-0.0572807
-0.00983186
-0.169574
-0.0786737
-0.0575991
-0.193247
-0.0765381
-0.20883
-0.0675868
-0.647727
-0.469254
-0.449126
-0.667576
-0.642597
-0.429678
-0.44583
-0.622753
-0.713099
-1.00974
-0.736045
-0.975021
-0.709428
-0.912434
-0.689675
-0.94975
-0.197235
-0.231629
-0.142711
-0.114836
-0.223566
-0.188612
-0.114454
-0.231838
-0.245326
-0.246331
-0.228856
-0.18203
-0.137903
-0.216901
-0.115847
-0.221993
-0.115979
-0.1817
-0.211292
-0.0775547
-0.213598
-0.0853154
-0.21257
-0.0943153
-0.214775
-0.0865086
-0.59396
-0.427317
-0.409083
-0.616696
-0.587269
-0.389998
-0.405301
-0.562687
-0.657823
-0.907332
-0.682409
-0.881071
-0.650199
-0.850883
-0.620915
-0.877167
-0.23196
-0.247934
-0.250415
-0.237761
-0.219453
-0.0959056
-0.213388
-0.104858
-0.22006
-0.120502
-0.222563
-0.107073
-0.529081
-0.386764
-0.330045
-0.36849
-0.553986
-0.526829
-0.324654
-0.349635
-0.365304
-0.506187
-0.580673
-0.837837
-0.61019
-0.790753
-0.579346
-0.74907
-0.55938
-0.785577
-0.238145
-0.236084
-0.244497
-0.239914
-0.230623
-0.123164
-0.224089
-0.133717
-0.230945
-0.144704
-0.230956
-0.135663
-0.468543
-0.346162
-0.297838
-0.324488
-0.497454
-0.463542
-0.298133
-0.299959
-0.321232
-0.437528
-0.518649
-0.734167
-0.548619
-0.685331
-0.514885
-0.653378
-0.488025
-0.681552
-0.243552
-0.222214
-0.228878
-0.249441
-0.23961
-0.146371
-0.231213
-0.15449
-0.241452
-0.163198
-0.245734
-0.155848
-0.39898
-0.293331
-0.327393
-0.272179
-0.427695
-0.392846
-0.326018
-0.250699
-0.267855
-0.368695
-0.445027
-0.640938
-0.475878
-0.596344
-0.438794
-0.537589
-0.412603
-0.586046
-0.246957
-0.213348
-0.217985
-0.249064
-0.247612
-0.165249
-0.245263
-0.173218
-0.248014
-0.183056
-0.251
-0.175096
-0.336789
-0.246599
-0.265025
-0.22547
-0.363025
-0.331126
-0.260668
-0.199369
-0.221363
-0.306131
-0.376487
-0.520852
-0.405977
-0.458513
-0.370015
-0.430263
-0.344335
-0.44769
-0.248947
-0.199519
-0.206685
-0.249804
-0.253024
-0.185245
-0.251683
-0.19366
-0.252657
-0.204956
-0.256664
-0.19604
-0.274862
-0.192735
-0.164849
-0.175539
-0.298192
-0.268305
-0.163874
-0.159059
-0.172801
-0.242775
-0.310599
-0.426485
-0.336132
-0.399295
-0.302509
-0.329
-0.270478
-0.386419
-0.259514
-0.200788
-0.201204
-0.263388
-0.265663
-0.207915
-0.259356
-0.216036
-0.267331
-0.229291
-0.272008
-0.218479
-0.21122
-0.155404
-0.119888
-0.132483
-0.235872
-0.20444
-0.111337
-0.122312
-0.135307
-0.185527
-0.233955
-0.311253
-0.261482
-0.263075
-0.22734
-0.252727
-0.210785
-0.257004
-0.257701
-0.178957
-0.190478
-0.246259
-0.270859
-0.237844
-0.273889
-0.246863
-0.268939
-0.247265
-0.259833
-0.247772
-0.157676
-0.107397
-0.0607299
-0.0969879
-0.179213
-0.151556
-0.0607223
-0.084658
-0.0902193
-0.122808
-0.180821
-0.250918
-0.204883
-0.221702
-0.173006
-0.156141
-0.137844
-0.208725
-0.235957
-0.148979
-0.160683
-0.229481
-0.253944
-0.24813
-0.258486
-0.249026
-0.252655
-0.247027
-0.247648
-0.248929
-0.0879164
-0.0762811
-0.0321925
-0.0663516
-0.114005
-0.0812274
-0.0274049
-0.0444357
-0.0555235
-0.0623807
-0.0976923
-0.141558
-0.127164
-0.106605
-0.0903024
-0.0750367
-0.0699224
-0.0976954
-0.219557
-0.132875
-0.137933
-0.211137
-0.240174
-0.246061
-0.246089
-0.240988
-0.23842
-0.227622
-0.229087
-0.239052
-0.0441382
-0.0343221
0.0739477
-0.0274827
-0.0573537
-0.0412779
0.0789248
-0.021086
-0.0222646
-0.033828
-0.0498982
-0.0698538
-0.064656
-0.0533454
-0.0466815
-0.0360392
-0.0378709
-0.0493329
-0.176282
-0.0902865
-0.113582
-0.135311
-0.201146
-0.222329
-0.224716
-0.197805
-0.19085
-0.141433
-0.145284
-0.187489
-1.41004
-1.13776
-1.11175
-1.12212
-1.44827
-1.35371
-1.12131
-1.11742
-1.52466
-1.12719
-1.32238
-1.57078
-1.45555
-2.08038
-1.19839
-1.37258
-1.68676
-1.59123
-1.59991
-2.1653
-2.01347
-1.61992
-1.58994
-1.71809
-1.45741
-1.49204
-1.86782
-1.12436
-1.613
1.26255
1.26982
1.02211
1.34003
-1.70258
1.01269
1.36377
0.338029
-0.0170082
-0.014223
0.336275
0.535329
0.777997
0.881336
0.777171
0.529125
0.540209
0.859674
0.772971
0.550259
0.781452
-1.44591
-1.72632
-1.44123
-2.0604
-1.53486
-1.67806
-1.23106
-1.33037
-1.53662
-1.93897
-0.956204
-1.6369
-1.22197
-1.09779
-1.11793
-1.11312
-1.4716
-1.53904
-1.74972
-2.41026
-1.67568
1.05695
-1.66701
-2.35759
-1.6708
1.06499
0.336188
-0.00635537
-0.0142062
0.326853
0.55115
0.770948
0.982878
0.554239
0.763407
0.547361
0.986597
0.750535
0.543358
0.758519
-1.12379
-1.09856
-1.1379
-1.2569
-1.12161
-1.35296
-1.14523
-1.12332
-1.65595
-1.42309
-1.55753
1.12381
-1.3658
-1.3184
-1.51164
1.13384
0.318319
0.00534747
0.00563036
0.30598
0.532469
0.744541
1.00655
0.538632
0.735401
0.527173
1.009
0.716498
0.52072
0.727815
-1.60351
-1.14248
-1.09536
-1.59358
-1.01276
-1.08237
-1.12238
-1.09878
-1.16607
-1.57933
-1.61594
-1.0767
-1.09094
-1.64543
-1.63753
-1.31298
-0.807856
-1.21739
-2.4644
-1.63459
1.2062
-1.68177
-1.15819
-0.905952
-1.40653
-1.25741
-1.71535
-2.28226
-1.66161
1.22105
-1.69547
-1.73354
0.296001
-0.00818456
0.00294197
0.285191
0.509518
0.70526
1.02063
0.51428
0.249179
0.695332
0.505829
0.213762
1.01665
0.675913
0.252979
0.502511
0.687461
-1.52693
-1.06782
-1.03062
-1.64335
-1.39497
-0.868978
-0.972643
-0.868891
-1.00745
-0.943685
-1.28027
-1.52764
-0.960537
-1.00604
-1.4786
-1.6126
-1.06525
-1.27365
-0.598655
-1.71019
-0.97028
-0.74514
-1.70207
-1.50476
1.19516
-1.74523
-0.867987
-1.54642
-0.804454
-0.541337
-0.597131
-0.892166
-1.40039
-0.821493
-1.66959
1.19693
-0.450141
-1.61939
-0.802177
0.269253
-0.0397297
-0.0257143
0.252192
0.489721
0.209206
0.663603
0.997971
0.496719
0.186969
0.647995
0.482064
0.174859
0.996203
0.616282
0.187405
0.47229
0.63475
-1.37965
-1.0091
-0.977178
-1.4714
-1.13964
-0.716971
-0.840086
-0.664966
-0.87136
-0.711688
-1.06162
-1.36111
-0.950387
-0.978078
-1.24177
-1.25289
-0.738546
-0.546743
-0.39473
-1.37083
-0.671767
-0.436891
-1.46774
-0.414394
1.10673
-1.59263
-0.322216
-1.20518
-0.564657
-0.363498
-0.321895
-0.617759
-1.09161
-0.405118
-1.44171
1.10075
-0.291816
-1.30139
-0.307715
0.229271
-0.0648023
0.158017
-0.0525134
0.178851
0.210736
0.448533
0.174603
0.596988
0.920228
0.460466
0.235973
0.573378
0.436469
0.212751
0.910326
0.532982
0.23666
0.423459
0.554196
-1.23663
-0.937558
-0.891208
-1.23096
-1.18525
-0.835521
-0.884337
-1.02282
-0.950129
-0.519343
-0.296663
-0.281011
-1.04016
-0.4808
-0.323674
-1.31039
-0.253672
1.11472
-1.28402
-0.189417
-0.684982
-0.423767
-0.261696
-0.251114
-0.457357
-0.616748
-0.290425
-1.24056
1.09731
-0.142931
-1.032
-0.17532
0.18465
-0.0936631
0.0275502
-0.0824306
0.117798
0.165799
0.392579
0.210375
0.511383
0.858435
0.407805
0.172137
0.488439
0.378939
0.0710651
0.84796
0.447209
0.167845
0.361603
0.469487
-0.930454
-0.819242
-0.755936
-1.00529
-0.889327
-0.709544
-0.746336
-0.782777
-0.864271
-0.115373
1.00022
-1.00094
-0.0807515
-0.819168
0.966152
-0.0555826
-0.705633
-0.0733708
0.139202
-0.115461
-0.0119079
-0.106469
0.0876922
0.121612
0.327169
0.0636865
0.425983
0.747283
0.345127
0.0444724
0.402092
0.311999
-0.0871541
0.730497
0.357355
0.043373
0.295382
0.381849
-0.665082
-0.69646
-0.652003
-0.746554
-0.635614
-0.576845
-0.634986
-0.530819
-0.55134
-0.0483445
0.814329
-0.654577
-0.0368716
0.0957945
-0.13922
0.0193614
-0.129183
-0.202162
0.0759798
0.257189
-0.0689763
0.328723
0.591863
0.275448
0.0812246
0.304092
-0.439648
-0.557724
-0.472375
-0.496778
-0.434851
-0.445423
-0.457425
-0.377123
0.0478045
-0.166221
0.256024
-0.155409
0.212072
0.0306747
-0.294951
-0.442802
-0.414455
-0.356264
-0.277498
-0.336791
-0.400479
-0.215934
0.00166184
-0.19396
0.0855659
-0.182123
0.212994
-0.000819084
-0.147152
-0.316011
-0.25965
-0.198236
-0.13586
-0.247532
1.2147
-0.252591
-0.110939
-0.025393
-0.218507
0.272989
-0.218498
0.0941937
-0.0391693
-0.0817894
-0.245556
1.25994
-0.215907
-0.103963
1.65922
-0.072456
-0.148677
1.54496
-0.202214
1.57885
-0.0445268
-0.0596707
-0.222765
0.337618
-0.223118
0.548594
-0.0652687
0.959287
1.3622
1.16799
0.871351
1.38878
0.871515
0.959008
0.863004
0.573044
1.37662
0.696625
0.823654
0.962367
1.18655
1.44615
0.887464
1.41294
0.895352
0.950246
0.809988
1.45612
1.18279
0.875351
0.935986
0.858983
0.749288
-2.30137
0.246321
0.357838
0.669194
0.79809
1.19112
0.829589
0.847593
0.742423
0.654893
1.20809
0.812686
0.722724
0.790252
0.636277
1.20908
0.741665
0.766608
0.568328
0.46566
1.19913
0.718633
-2.9105
0.550146
0.695929
0.580097
1.18066
-0.669617
0.640907
-2.95446
0.66281
0.541085
0.0124148
0.022949
0.0228827
-0.0102625
0.00883986
0.00554431
0.0252316
0.0233332
0.042951
0.0245052
0.00843417
0.0178752
0.0185678
0.022338
0.0185826
0.0389686
0.0297696
0.0166452
0.0184754
0.02146
0.0338699
-0.0544616
-0.0591473
-0.0435854
-0.17604
-0.154493
-0.156608
-0.135635
0.0100737
0.0144669
0.0106591
-0.040878
-0.0307392
-0.0319716
-0.024376
0.00808001
0.00843943
0.00679933
-0.0217049
-0.0176503
-0.0182627
-0.0146471
0.0222329
-0.0105148
0.0210568
-0.0285529
0.0570776
-0.0260243
0.0579785
0.0236743
0.00743417
0.0274555
0.0246176
0.00983174
0.0216402
0.01079
0.0192885
-0.00826063
0.0113386
-0.0259127
0.0513729
-0.0183563
0.0509211
0.022421
0.0214903
0.0173092
0.00971561
0.00532266
0.0358658
0.000647905
-0.216797
-0.187667
-0.235064
-0.112976
-0.116079
-0.0914817
-0.143727
-0.108611
-0.120013
-0.0836437
-0.121658
-0.11242
-0.123576
-0.156754
-0.103807
-0.131293
-0.148239
-0.209351
-0.157798
-0.162886
-0.209742
-0.156185
-0.220114
-0.207173
-0.133347
-0.134437
-0.186955
-0.130844
-0.184608
-0.181379
-0.0787967
-0.107392
-0.155063
-0.0645092
-0.152166
-0.123037
-0.0575944
-0.046476
-0.137853
0.012348
-0.12731
-0.0195582
-0.0334162
-0.0176072
-0.0588904
-0.0258341
-0.0544674
-0.0240188
-0.0580525
0.111645
0.0358794
-0.0816784
0.112849
-0.0697775
-0.0638037
-0.016094
-0.0278747
-0.0161703
-0.0500365
-0.0227721
-0.0478852
-0.0225371
0.0453782
0.116403
0.0742082
-0.00270687
0.119626
0.0106824
-0.00986686
-0.0153285
-0.026612
-0.0161806
-0.0454657
-0.0223783
-0.0447518
-0.0228485
-0.0549575
0.00601656
0.0132447
0.0397596
0.010361
-0.0656258
0.00757105
-0.0351399
0.0260656
-0.0152988
-0.106521
0.0217111
-0.0360834
0.0099944
0.014179
-0.0073689
0.0132935
-0.0110625
0.0327488
-0.00961155
-0.0196427
-0.0192884
-0.0297726
-0.0155612
-0.0352342
-0.0438873
-0.0255424
-0.749944
-0.618214
-0.591913
-0.757303
-0.606869
-0.721904
-0.761606
-0.191362
-0.229543
-0.233759
-0.206801
-0.221338
-0.202832
-0.197948
-0.724952
-0.591452
-0.557937
-0.69997
-0.580758
-0.731359
-0.686718
-0.147797
-0.168136
-0.13128
-0.139497
-0.10225
-0.125248
-0.0947424
-0.674979
-0.571682
-0.530095
-0.6724
-0.560596
-0.685843
-0.657066
-0.643537
-0.537152
-0.49521
-0.624529
-0.530504
-0.648504
-0.612752
-0.459129
-0.355452
-0.431852
-0.482503
-0.622181
-0.428467
-0.576408
-0.598341
-0.498557
-0.453908
-0.575424
-0.486561
-0.609118
-0.555787
-0.399098
-0.293005
-0.369011
-0.385025
-0.523991
-0.339156
-0.47312
-0.0146578
-0.0530947
-0.0137661
0.0126715
0.0377561
0.00769234
0.0315056
-0.334683
-0.238289
-0.306948
-0.303601
-0.418673
-0.268531
-0.374834
-0.30593
-0.322473
-0.33222
-0.277814
-0.0131812
-0.0476554
-0.013748
0.0056893
0.0267514
-0.000185248
0.0204219
-0.276497
-0.188948
-0.247891
-0.243982
-0.328888
-0.211037
-0.290719
-0.339301
-0.304934
-0.29885
-0.29289
-0.0145979
-0.0454864
-0.0160418
-0.0030766
0.015309
-0.00924358
0.00936319
-0.218383
-0.144821
-0.191057
-0.185319
-0.250373
-0.156774
-0.215337
-0.318004
-0.312028
-0.306252
-0.310212
-0.0175785
-0.0456403
-0.0194029
-0.0127805
0.0043679
-0.0190275
-0.00098893
-0.284394
-0.295413
-0.290982
-0.281153
-0.304695
-0.266384
-0.264443
-0.297886
-0.34575
-0.263421
-0.262066
-0.345473
-0.3178
-0.256562
-0.248722
-0.321991
-0.279493
-0.198457
-0.190327
-0.28557
-0.262571
-0.183408
-0.173634
-0.269903
-0.0827211
-0.121656
-0.0872697
-0.0864955
-0.0714755
-0.12893
-1.06814
-1.28925
0.205209
0.206253
0.20856
0.509106
0.407862
0.490789
0.382683
-1.3188
-1.10901
-1.12914
-1.27119
-1.12874
-1.3275
-1.25966
0.136419
0.204594
0.207176
0.20235
0.195215
0.476298
0.368179
0.441048
0.333791
0.0702341
0.0824389
0.186793
0.187049
0.172193
0.417801
0.311949
0.379739
0.278614
0.0498465
-0.0404806
-0.0829643
0.0425957
0.162254
0.166808
0.146384
0.355286
0.256474
0.317272
0.226577
0.0279898
-0.0864171
-0.137781
0.0434067
0.135067
0.14056
0.118775
0.292337
0.205348
0.257963
0.179407
-0.0282505
-0.146565
-0.153679
-0.0221697
-0.854012
-0.79688
-0.613192
-0.62447
-0.772853
-1.02312
-0.603442
-0.061946
-0.173874
-0.187544
-0.054393
-0.310681
-0.197912
-0.266877
-0.161936
-0.195086
-0.13738
-0.16435
-0.676785
-0.704899
-0.480728
-0.504526
-0.664682
-0.736416
-0.462164
-0.105484
-0.234601
-0.241745
-0.0987324
-0.225229
-0.143356
-0.188212
-0.120394
-0.140353
-0.099921
-0.115515
-0.484076
-0.550975
-0.365962
-0.363667
-0.512534
-0.529095
-0.331796
-0.138833
-0.251829
-0.263027
-0.131369
-0.156136
-0.100425
-0.126395
-0.0856033
-0.0969945
-0.0702412
-0.0775152
-0.316459
-0.425575
-0.267736
-0.253857
-0.387884
-0.362502
-0.22939
-0.174795
-0.303395
-0.310312
-0.166759
-0.101616
-0.067994
-0.0800203
-0.0590185
-0.0630515
-0.0473439
-0.0481252
-0.180643
-0.273371
-0.191692
-0.172787
-0.243699
-0.207651
-0.154474
-0.213323
-0.346215
-0.352599
-0.207095
-0.240218
-0.383076
-0.387446
-0.236926
-0.264916
-0.409857
-0.412073
-0.261812
-0.222003
0.338342
-0.21809
-0.0673484
-0.0718087
0.428816
-0.200321
-0.178029
-0.0686518
0.496686
-0.073083
0.452876
-0.00445194
-0.0193183
0.00499296
0.105531
0.00163181
0.0226831
-0.0402716
-0.0425062
-0.0229708
0.0531735
-0.0175351
-0.00501285
-0.014075
1.60274
1.69081
1.47004
1.59252
1.07132
-2.58652
0.303284
0.122676
1.32318
-0.426657
-0.210528
-0.355955
0.000282462
0.11021
-0.0278157
0.0646003
0.546739
-0.803411
0.249382
0.635998
0.19095
-0.327021
-0.193242
-0.176438
-0.0409462
0.039731
-0.0578684
0.00216616
0.271521
-0.263558
0.0874822
-1.19887
0.419703
0.0413137
-0.17321
-0.171046
-0.165398
-0.0657874
-0.0185348
-0.0697911
-0.0319929
-0.205632
-0.239772
-0.0286831
-0.192615
0.187935
0.158111
-0.0387879
0.403125
-0.0145099
0.337107
0.0150979
0.135576
0.0164503
0.123432
0.116976
0.306809
0.0944534
0.167158
0.105152
0.149427
0.0882573
0.330066
-0.000186463
0.292537
0.0183983
0.116773
0.0198656
0.109195
0.0770796
0.169748
0.0603457
0.134928
0.0757509
0.120886
0.06232
0.28037
0.00952042
0.260116
0.021571
0.104596
0.0221842
0.099797
0.0462332
0.128029
0.030937
0.108511
0.0516981
0.0951617
0.0395092
0.150409
0.0135143
0.139655
0.0230879
0.0997544
0.0221434
0.0931887
0.0187257
0.0932452
0.00813376
0.0846456
0.0304075
0.0724303
0.0212682
0.299301
0.257184
0.299084
0.174463
0.192156
0.172349
0.192372
0.279769
0.21523
0.266988
0.164869
0.18919
0.152913
0.182531
-0.0265955
-0.00208507
0.0107877
-0.016916
0.0070929
-0.00712556
-0.0348687
-0.0195454
0.0153337
0.0185522
0.000367368
0.0158684
-0.00516904
-0.0124007
-0.137473
-0.129034
-0.188195
-0.120754
-0.187821
-0.141295
-0.0839728
-0.0816191
-0.16415
-0.152113
-0.0864567
-0.0799052
-0.153139
-0.112651
-0.100487
-0.171618
-0.1063
-0.00588103
0.0142572
0.00741503
-0.000171434
0.0135323
-0.000922206
0.0166364
-0.00603007
0.0142918
0.0210562
0.0327995
0.0162917
0.0148085
0.0015642
-0.060849
-0.0808007
-0.152361
-0.149754
-0.0677375
-0.0742279
-0.15596
-0.0968731
-0.152769
-0.102302
-0.0992142
-0.0899098
-0.0921381
-0.12793
-0.140492
-0.0964765
-0.0928865
-0.142459
0.0110095
0.00502555
0.0442635
0.0274354
0.00558674
0.00213552
0.0187963
-0.0931579
-0.0879632
-0.13585
-0.114137
-0.083831
-0.0892672
-0.126157
-0.458207
-0.469378
-0.538152
-0.540097
-0.459738
-0.536963
-0.465181
-0.439028
-0.422384
-0.520486
-0.514619
-0.427189
-0.438268
-0.518285
-0.212251
-0.207733
-0.192767
-0.217734
-0.223242
-0.460346
-0.437696
-0.24754
-0.418769
-0.40898
-0.218938
-0.237929
-0.26454
-0.21924
-0.182742
-0.178476
-0.146929
-0.171575
-0.166318
-0.160604
-0.192327
-0.193158
-0.185607
-0.169369
-0.205033
-0.176211
-0.188338
-0.211631
-0.223741
-0.23528
-0.235408
-0.227302
-0.193013
-0.223169
-0.297253
-0.212029
-0.219587
-0.293307
-0.21038
-0.298746
-0.291775
-0.293655
-0.217325
-0.203006
-0.284523
-0.206744
-0.28932
-0.289323
-0.439935
-0.42694
-0.519271
-0.526554
-0.440376
-0.428061
-0.517607
-0.429192
-0.424074
-0.493169
-0.491315
-0.421905
-0.427278
-0.491663
-0.168967
-0.200928
-0.196943
-0.179095
-0.153258
-0.150823
-0.162243
-0.164239
-0.166673
-0.174292
-0.424233
-0.427898
-0.226445
-0.223818
-0.26041
-0.221278
-0.246319
-0.226898
-0.24619
-0.425756
-0.42042
-0.151538
-0.151182
-0.122667
-0.169395
-0.132386
-0.178009
-0.142267
-0.168954
-0.205892
-0.16588
-0.192494
-0.174862
-0.198126
-0.155524
-0.158748
-0.180473
-0.182152
-0.137806
-0.188389
-0.149911
-0.146497
-0.284725
-0.212119
-0.198312
-0.279574
-0.209763
-0.289754
-0.273587
-0.281706
-0.195548
-0.203704
-0.2849
-0.207364
-0.289007
-0.27723
-0.425847
-0.423672
-0.492451
-0.481856
-0.426761
-0.417836
-0.488925
-0.417459
-0.405797
-0.474396
-0.473569
-0.40771
-0.414502
-0.478121
-0.163146
-0.144897
-0.137703
-0.158246
-0.15133
-0.150518
-0.172443
-0.21533
-0.170624
-0.161401
-0.211851
-0.222287
-0.165173
-0.213143
-0.419846
-0.413467
-0.397145
-0.396538
-0.269214
-0.201721
-0.181362
-0.282807
-0.196008
-0.275121
-0.274095
-0.410448
-0.407466
-0.471574
-0.458545
-0.412668
-0.391667
-0.467417
-0.393773
-0.368095
-0.446979
-0.446885
-0.3708
-0.390385
-0.451842
-0.204721
-0.146447
-0.12911
-0.189405
-0.136703
-0.182027
-0.194518
-0.39781
-0.393999
-0.373997
-0.37536
-0.381431
-0.364474
-0.441993
-0.428905
-0.385963
-0.357285
-0.437791
-0.364116
-0.346785
-0.404372
-0.409342
-0.3494
-0.359923
-0.414174
-0.118603
-0.0901091
-0.157026
-0.104555
-0.162913
-0.372565
-0.36207
-0.324047
-0.329856
-0.350555
-0.345546
-0.406388
-0.381306
-0.354996
-0.345833
-0.402491
-0.334819
-0.327164
-0.381116
-0.379045
-0.328778
-0.332313
-0.383771
-0.0714522
-0.0493349
-0.140465
-0.145135
-0.320905
-0.340448
-0.322142
-0.287564
-0.319764
-0.324783
-0.328686
-0.373318
-0.343221
-0.329322
-0.324468
-0.367267
-0.300903
-0.313311
-0.335624
-0.339489
-0.318399
-0.295729
-0.344242
-0.0975731
-0.0519289
-0.0364672
-0.0752412
-0.0465008
-0.103421
-0.070983
-0.0733285
-0.00957329
0.103705
-0.0881662
0.0828785
-0.0695077
-0.0985967
-0.0902171
-0.032694
-0.0311531
-0.0630069
-0.0388768
-0.0668275
-0.0825136
-0.246407
-0.326193
-0.288234
-0.298605
-0.322328
-0.138949
-0.102197
-0.16891
-0.114466
-0.14348
-0.0982874
-0.166485
-0.257236
-0.307687
-0.290493
-0.305704
-0.24649
-0.291822
-0.132627
-0.0905284
-0.111232
-0.157671
-0.0942453
-0.126154
-0.161855
-0.281895
-0.313029
-0.333761
-0.313132
-0.289905
-0.300172
-0.325887
-0.250367
-0.234131
-0.300863
-0.286101
-0.252204
-0.243728
-0.293173
-0.0731788
-0.0272857
-0.0252632
-0.059932
-0.0235716
-0.0773659
-0.0570422
-0.00501825
0.0596221
0.121559
-0.00581055
0.127745
0.00874042
-0.0296066
-0.0700743
-0.0219451
-0.0206141
-0.0524322
-0.0208258
-0.0542531
-0.0690815
-0.247482
-0.307537
-0.290096
-0.28723
-0.246439
-0.300253
-0.118534
-0.0872551
-0.154654
-0.103809
-0.121515
-0.0845068
-0.152955
-0.250605
-0.193087
-0.299242
-0.220597
-0.256833
-0.295984
-0.114804
-0.0798206
-0.101589
-0.146766
-0.0817736
-0.113392
-0.148748
-0.231336
-0.231853
-0.279807
-0.290611
-0.238154
-0.212816
-0.273182
-0.200876
-0.142999
-0.280932
-0.238182
-0.153708
-0.195226
-0.244592
-0.0619828
-0.0178954
-0.018293
-0.0505411
-0.013814
-0.0661656
-0.04907
-0.265879
-0.189414
-0.292474
-0.289391
-0.265264
-0.172478
-0.107442
-0.0780976
-0.144001
-0.0968546
-0.111
-0.0764867
-0.140881
-0.268542
-0.128449
-0.295117
-0.134342
-0.272098
-0.296171
-0.10325
-0.0740013
-0.0952239
-0.133687
-0.0751075
-0.100692
-0.136352
-0.0780597
0.0190829
-0.022523
0.0182271
-0.031877
-0.0806726
-0.0643499
-0.183682
-0.141862
-0.231999
-0.28177
-0.190308
-0.137552
-0.224857
-0.150139
-0.0691294
-0.275515
-0.184796
-0.0859855
-0.142255
-0.191815
-0.0624914
0.0094254
0.0120099
0.0314171
0.0210264
-0.0882146
-0.0651984
-0.271026
-0.127442
-0.294719
-0.293173
-0.272311
-0.122832
-0.251367
-0.0561613
-0.271437
-0.0696843
-0.248909
-0.287221
-0.0451541
-0.0140567
0.0474449
0.0310907
-0.00847057
-0.0527018
0.0343551
-0.0439134
0.0416951
-0.00136961
-0.0485475
-0.00852382
0.016509
-0.0373856
-0.129394
-0.066985
-0.177132
-0.240908
-0.135109
-0.0577017
-0.170738
-0.124429
-0.118552
-0.197047
-0.154858
-0.118262
-0.12185
-0.158192
-0.0488172
0.00578723
0.0274736
-0.106877
0.0242143
-0.00665892
-0.0375298
-0.242183
-0.0533697
-0.269509
-0.264882
-0.248306
-0.0509237
-0.180403
-0.240898
-0.15956
-0.246162
-0.0152573
0.0160443
0.0630591
-0.0473771
0.0276103
-0.0279541
0.0205689
-0.00458106
0.0585653
0.0376651
0.137813
0.0338035
0.0288845
0.00414163
-0.113111
-0.116703
-0.150794
-0.154635
-0.118309
-0.120438
-0.146036
-0.0705613
-0.0783893
-0.0890832
-0.0964377
-0.0626284
-0.0798472
-0.105468
-0.0349972
-0.0180617
0.0150954
0.213521
0.0210719
0.0113326
-0.0324348
-0.147968
-0.239285
-0.237388
-0.156884
-0.147219
-0.232189
-0.146673
-0.236426
-0.657024
-0.58408
-0.579104
-0.639352
-0.739722
-0.580365
-0.588874
-0.697939
-0.596875
-0.709563
-0.729185
-0.630665
-0.558504
-0.561678
-0.619654
-0.91749
-0.923567
-1.01284
-0.927567
-0.889831
-0.241937
-0.210144
-0.198725
-0.172249
-0.228187
-0.244357
-0.186723
-0.268708
-0.186907
-0.189442
-0.125104
-0.21339
-0.162996
-0.145795
-0.168537
-0.152889
-0.115952
-0.0714006
-0.115441
0.00526474
-0.00795283
-0.100354
0.0250525
-0.0862246
-0.629798
-0.557429
-0.549971
-0.627989
-0.695192
-0.555721
-0.569815
-0.675806
-0.579709
-0.6859
-0.687699
-0.620316
-0.529508
-0.532042
-0.61726
-0.195021
-0.2404
-0.205189
-0.183824
-0.182378
-0.234326
-0.195746
-0.616149
-0.529721
-0.526821
-0.616638
-0.666644
-0.526962
-0.544057
-0.634634
-0.555418
-0.649825
-0.657506
-0.59687
-0.512423
-0.518574
-0.587387
-0.0293828
-0.0919083
-0.579439
-0.511339
-0.506671
-0.58712
-0.633304
-0.488837
-0.510724
-0.586669
-0.520524
-0.602467
-0.624856
-0.576918
-0.479138
-0.48651
-0.576645
-0.0285545
-0.0658577
-0.0992729
-0.262884
-0.0766018
-0.162424
-0.0773582
-0.0109985
-0.0596119
-0.0774399
-0.170323
-0.0563065
-0.558324
-0.476294
-0.471506
-0.57232
-0.534251
-0.436117
-0.445326
-0.53069
-0.720381
-0.687852
-0.957588
-0.772919
-0.730101
-0.665343
-0.924828
-0.705372
-0.629477
-0.754457
-0.821522
-0.649861
-0.692876
-0.838949
-0.867495
-0.833539
-0.193393
-0.102126
-0.138501
-0.262964
-0.139864
-0.0792131
-0.060043
-0.0182807
-0.137882
-0.0808893
-0.0648387
-0.271452
-0.149149
-0.257305
-0.14027
-0.139259
-0.0830894
-0.0211064
-0.0696587
-0.081574
-0.141772
-0.0652488
-0.519825
-0.433926
-0.426417
-0.527319
-0.502598
-0.397551
-0.406228
-0.501082
-0.652656
-0.61137
-0.792278
-0.672782
-0.669486
-0.586003
-0.772806
-0.782487
-0.830672
-0.626526
-0.537586
-0.644426
-0.727415
-0.561869
-0.609215
-0.748119
-0.805042
-0.976355
-0.760893
-0.956892
-0.177518
-0.199253
-0.132023
-0.113943
-0.192966
-0.178372
-0.113113
-0.291274
-0.322502
-0.281913
-0.175122
-0.12884
-0.185397
-0.111322
-0.189443
-0.111807
-0.17518
-0.261699
-0.150642
-0.16574
-0.252895
-0.141888
-0.08229
-0.0704725
-0.0300191
-0.140499
-0.0832449
-0.075355
-0.31131
-0.22797
-0.29217
-0.222438
-0.141314
-0.0855479
-0.0334028
-0.0812869
-0.0840535
-0.143521
-0.0765242
-0.495682
-0.394405
-0.384794
-0.499546
-0.460273
-0.314409
-0.388027
-0.393284
-0.44918
-0.565022
-0.516087
-0.694137
-0.556071
-0.584117
-0.489385
-0.670176
-0.724291
-0.979222
-0.752513
-0.961772
-0.541616
-0.437959
-0.523518
-0.627145
-0.464568
-0.522915
-0.647233
-0.717118
-0.887565
-0.6985
-0.921781
-0.173546
-0.180922
-0.121046
-0.110064
-0.179902
-0.173291
-0.109854
-0.277088
-0.305718
-0.290192
-0.310488
-0.172241
-0.118669
-0.174103
-0.109545
-0.175565
-0.109423
-0.173132
-0.295697
-0.229578
-0.22361
-0.28974
-0.147135
-0.0859866
-0.0835254
-0.0437812
-0.144319
-0.0877083
-0.0888889
-0.345208
-0.256493
-0.378155
-0.247202
-0.146742
-0.0908046
-0.0474319
-0.0948094
-0.0891016
-0.149222
-0.0900073
-0.430191
-0.378478
-0.297579
-0.371735
-0.443874
-0.386259
-0.308146
-0.323535
-0.330518
-0.371892
-0.488982
-0.421144
-0.602829
-0.444253
-0.505468
-0.397012
-0.579109
-0.671081
-0.876833
-0.691605
-0.842722
-0.468952
-0.359099
-0.422937
-0.532348
-0.379954
-0.451079
-0.557583
-0.658914
-0.856736
-0.665441
-0.83233
-0.171488
-0.172794
-0.114197
-0.109085
-0.171735
-0.171503
-0.109194
-0.326073
-0.316195
-0.315282
-0.306321
-0.170004
-0.112725
-0.166438
-0.10929
-0.167849
-0.109233
-0.17064
-0.367871
-0.261483
-0.274181
-0.384261
-0.151481
-0.0915371
-0.0959787
-0.0572039
-0.149167
-0.0930946
-0.100626
-0.380853
-0.280215
-0.395564
-0.282622
-0.150763
-0.0959453
-0.0607023
-0.105138
-0.0946043
-0.152647
-0.101066
-0.352591
-0.315162
-0.31794
-0.309025
-0.366828
-0.316137
-0.326312
-0.267327
-0.274291
-0.304362
-0.411644
-0.343052
-0.497417
-0.353569
-0.429343
-0.323312
-0.470584
-0.677027
-0.852492
-0.671377
-0.838755
-0.390672
-0.284328
-0.332312
-0.426604
-0.30556
-0.373505
-0.446108
-0.663085
-0.733068
-0.648249
-0.757828
-0.167783
-0.163526
-0.10925
-0.109174
-0.160737
-0.168519
-0.109106
-0.28329
-0.296818
-0.280958
-0.301005
-0.166999
-0.108091
-0.15663
-0.109629
-0.157487
-0.10933
-0.168297
-0.416469
-0.280576
-0.288499
-0.4011
-0.154553
-0.0970107
-0.10665
-0.0696843
-0.152467
-0.0984153
-0.111095
-0.410054
-0.317927
-0.402208
-0.307598
-0.292387
-0.258119
-0.29101
-0.25305
-0.300774
-0.26236
-0.224867
-0.210204
-0.216915
-0.2498
-0.633755
-0.739824
-0.646022
-0.749647
-0.592031
-0.653649
-0.559633
-0.685721
-0.292955
-0.268245
-0.29656
-0.28077
-0.402019
-0.322168
-0.331731
-0.399873
-0.428784
-0.368127
-0.451906
-0.359859
-0.235195
-0.199557
-0.176756
-0.194522
-0.245071
-0.221447
-0.15774
-0.178462
-0.179608
-0.218233
-0.521086
-0.639121
-0.542384
-0.613658
-0.461508
-0.519967
-0.441769
-0.545815
-0.339034
-0.263245
-0.344171
-0.261848
-0.466963
-0.370837
-0.375166
-0.456759
-0.487701
-0.404348
-0.49085
-0.398339
-0.212677
-0.174306
-0.126183
-0.171802
-0.217299
-0.181713
-0.0722758
-0.12185
-0.132407
-0.170504
-0.431377
-0.516105
-0.437317
-0.519057
-0.399313
-0.48014
-0.379451
-0.496494
-0.332445
-0.258686
-0.323768
-0.263211
-0.483313
-0.405739
-0.409361
-0.489959
-0.451966
-0.429309
-0.453542
-0.423838
-0.145648
-0.111425
-0.0490474
-0.103614
-0.156432
-0.132479
-0.0652706
-0.101799
-0.100131
-0.133988
-0.340706
-0.470603
-0.367202
-0.449886
-0.277168
-0.271119
-0.248479
-0.327938
-0.296383
-0.201784
-0.213778
-0.287948
-0.455977
-0.430769
-0.434245
-0.454197
-0.46176
-0.445386
-0.464505
-0.442174
-0.132
-0.101335
-0.0565965
-0.0994568
-0.133103
-0.0942916
0.0299418
-0.0422675
-0.0532416
-0.0831317
-0.211063
-0.253775
-0.219674
-0.237816
-0.166999
-0.148138
-0.159528
-0.154938
-0.274624
-0.184967
-0.187868
-0.271621
-0.467625
-0.446632
-0.44738
-0.465583
-0.473699
-0.437343
-0.446561
-0.472172
-0.0663559
-0.033461
0.0622601
-0.0259448
-0.0735072
-0.0394321
0.0675553
-0.0175878
-0.013437
-0.0397747
-0.138572
-0.146906
-0.128818
-0.15217
-0.1107
-0.0866403
-0.0985023
-0.0985676
-0.213839
-0.174974
-0.178356
-0.185881
-0.460207
-0.434251
-0.421053
-0.471006
-0.367401
-0.277027
-0.297969
-0.335627
-1.22251
-1.09107
-1.09703
-1.09364
-1.2619
-1.23006
-1.48996
-1.14312
-1.08328
-1.27019
-1.25656
-1.389
-1.4619
-2.01968
-2.14582
-2.01757
-2.27533
-1.94726
-1.13095
-1.10425
-1.26119
-1.32754
-1.09856
-1.28079
0.764385
0.841575
1.08355
1.01865
0.835751
1.0851
0.789864
0.757392
1.02389
1.16442
0.763071
1.15368
0.271855
0.00869372
0.0854853
0.275054
-0.00359173
0.278782
0.268125
0.149018
0.199671
0.287024
0.0905845
0.009657
0.280627
-0.0022058
0.284794
0.280895
-1.28141
-1.12015
-1.15594
-1.52763
-1.09709
-1.31694
-1.49773
-1.23717
-1.13822
-1.02969
-1.31057
-1.07244
-1.36423
-1.16759
-1.91358
-2.13587
-1.9641
-2.43322
-1.8152
-1.95956
-2.10608
-2.54108
-2.15229
0.757901
1.18337
1.04609
0.758164
1.20385
-1.98826
-2.01618
-3.23625
-1.95501
-2.18884
0.764186
1.07965
1.29013
0.75913
1.26941
0.285159
0.0168357
0.0945329
0.286307
0.0155814
0.291961
0.28142
0.151387
0.0809379
0.288527
0.0936519
0.0651407
0.267717
0.0171545
0.276141
0.276822
-1.05063
-1.47147
-0.897456
-1.16597
-1.14921
-1.37068
-0.798604
-0.972286
-1.16424
-1.02365
-0.650957
-1.26419
-0.889542
-0.725062
-2.16079
-1.94099
-2.92973
-1.68025
-2.50723
-2.19041
-1.88925
0.769776
1.30237
1.10607
0.779603
1.33634
0.81024
1.15401
1.4553
0.811567
1.42479
0.270736
0.0700259
0.0913065
0.267374
0.0674029
0.279897
0.260495
0.0697683
-0.0415303
0.0358716
-0.00810482
0.272533
0.0890403
0.066288
0.242843
0.0711
0.253014
0.260634
0.812381
1.47503
1.18363
0.81995
1.50708
0.902571
1.17691
1.81287
0.878674
1.75223
0.251764
0.0680629
0.0824784
0.240771
0.0640007
0.260443
0.233821
0.0547439
-0.0846499
0.0459262
-0.0525971
0.249081
0.0777943
0.058223
0.214428
0.0641888
0.223711
0.239169
0.911665
1.84259
1.19502
1.90116
0.926989
0.980147
1.19558
1.77075
1.8633
0.967906
0.223505
0.0575245
0.0635578
0.210016
0.0485176
0.236912
0.19885
-0.00948152
-0.132505
-0.018125
-0.120173
0.220254
0.0576627
0.0386382
0.176773
0.0472621
0.188045
0.206803
-1.00819
-0.959963
0.986951
1.77091
1.15784
1.65875
1.00134
1.08211
1.17643
1.3095
1.44376
1.06302
-0.0488775
-0.17032
-0.0527932
-0.156427
-1.01024
-1.01465
-0.823681
-0.574288
-0.740452
-0.525633
-0.759834
-0.565856
-0.786023
-1.17108
-0.94525
-0.945752
-1.1805
1.09187
1.26404
1.15604
1.11855
1.10891
1.18391
1.07245
0.773264
0.847749
1.16302
-0.0867155
-0.237004
-0.0966352
-0.231504
-1.1773
-0.937496
-0.892627
-1.17486
-0.632753
-0.453358
-0.600701
-0.393661
-0.636095
-0.430912
-0.587094
-1.04558
-0.844094
-0.855648
-1.03649
-0.500161
-0.408373
-0.22106
-0.211512
-0.55999
-0.369122
-0.199452
-2.65407
1.19635
0.759413
1.02664
0.666822
1.20881
-0.451318
-0.307916
-0.197323
-0.164049
-0.34109
-0.407654
-0.18193
-0.921824
1.23212
0.916415
0.665783
0.515587
1.22228
-0.714872
-0.123026
-0.249731
-0.12874
-0.242608
-0.975237
-0.843225
-0.828479
-1.03751
-0.44161
-0.340551
-0.45345
-0.275803
-0.479434
-0.305228
-0.40333
-0.897465
-0.757731
-0.822436
-0.816117
-0.320458
-0.28193
-0.1456
-0.151596
-0.356415
-0.255504
-0.132907
-0.327895
1.23004
0.605729
0.859446
0.570277
-0.508948
1.20523
-0.521753
0.804764
-0.0146681
-0.418736
-0.0320162
-0.156795
-0.299821
-0.16411
-0.290561
0.242154
0.247076
0.583153
0.26595
0.102878
0.225321
0.286217
-0.770232
-0.747845
-0.756413
-0.786455
-0.280169
-0.248616
-0.312221
-0.189341
-0.3531
-0.210394
-0.242677
-0.758037
-0.695511
-0.7209
-0.756209
-0.349706
-0.00832603
0.640531
-0.385688
0.00879434
-0.334014
0.129835
0.624297
0.027348
-0.27156
0.0205465
-0.196842
-0.343318
-0.204347
-0.335188
0.191421
0.259145
0.247778
0.497638
0.208921
0.36122
0.227832
0.176713
0.288698
0.486769
0.194749
0.367304
0.160488
0.211994
-0.803106
-0.686141
-0.673697
-0.77566
-0.72518
-0.545335
-0.581299
-0.646588
-0.194585
0.161852
0.0342647
0.548404
-0.252966
0.118753
0.0399732
-0.179708
0.421225
0.537349
0.052553
0.125305
-0.126963
0.0450655
-0.233752
-0.381655
-0.238728
-0.376092
0.137385
0.27936
0.180432
0.345013
0.145176
0.254961
0.169023
0.123338
0.26832
0.341804
0.139928
0.256704
0.110149
0.152669
-0.512517
-0.539196
-0.513319
-0.620634
-0.423962
-0.506566
-0.519592
-0.465366
-0.077255
0.430912
0.0602321
0.436731
-0.113753
1.09273
0.0651546
-0.0683715
1.50444
0.424833
0.064817
1.12195
-0.0580887
0.0710612
-0.257463
-0.408684
-0.261429
-0.403474
0.071833
0.265053
0.125463
0.277677
0.0902583
0.360842
0.107551
0.058377
0.477147
0.264569
0.076169
0.367213
0.0341068
0.0946809
-0.524494
-0.50031
-0.484801
-0.505539
-0.332939
-0.275286
-0.246975
-0.348382
0.0122222
1.56043
0.0590895
0.336392
-0.0567469
1.46903
0.0650335
0.0208056
1.44062
0.320524
0.06965
1.4476
0.0279493
0.0675234
-0.272807
-0.418635
-0.277125
-0.416237
0.00703434
0.477383
0.0633869
0.220683
0.0203829
0.544637
0.0499138
-0.00122417
0.338648
0.207491
0.0330728
0.535353
-0.00880454
0.041177
1.46893
0.350781
0.727542
1.35766
0.596265
0.553632
0.409127
0.373958
0.536812
0.408768
0.603318
0.583325
0.472914
0.364807
0.396494
0.508659
0.562155
0.406479
0.513107
0.442863
0.383176
0.301746
0.54692
0.398502
0.365259
0.521085
-0.73614
0.108054
0.147992
0.440702
0.25327
-0.288394
-0.218407
-0.0197154
-0.993997
0.00192989
0.213788
-0.0571462
-0.168297
-0.0246596
-0.139752
-0.0215535
-0.0433304
-0.0144591
-0.117838
-0.0194331
-0.134607
-0.0281499
-0.0498619
-0.0319766
-0.112652
-0.131558
-0.0226153
-0.104012
-0.0453977
-0.0467824
-0.0313049
-0.105995
-0.0867463
-0.0396831
-0.0945865
-0.0423873
-0.0370998
-0.0381916
-0.0789952
-0.0851988
-0.0325595
-0.071818
-0.0243882
-0.0316735
-0.0427347
-0.121179
-0.0105987
-0.112368
-0.00256273
-0.033449
-0.00900741
-0.137758
-0.0666119
-0.0133219
-0.106813
0.013445
-0.00357261
-0.117717
-0.0983612
-0.11082
-0.00204703
-0.0146888
-0.0253278
0.0207292
-0.0583347
-0.0824069
-0.103409
0.0104216
0.00181739
0.000141229
0.0203177
-0.0958826
-0.0953869
-0.0718257
0.0482951
-0.00771352
0.0264735
0.00936631
-0.0770932
-0.0366942
-0.0569289
0.00344447
0.0166745
0.00692859
0.0223025
-0.0905085
-0.0436321
-0.0666909
0.0478938
0.0175071
0.0109377
0.065089
-0.0441179
-0.0467951
-0.0169475
0.0803108
0.0202642
0.0640315
0.0244101
-0.04413
0.0124904
-0.0086141
0.0607427
0.0187168
0.0168151
0.0770767
0.0173711
0.00176814
0.0256026
0.0884178
0.000841162
0.0773475
-0.00976857
0.0109042
0.0362983
0.0231545
0.0889484
-0.0221158
-0.0231418
0.0964896
0.0350557
0.045266
0.0393838
0.093452
-0.0316871
0.0930559
-0.033021
0.05485
0.0438148
0.0564014
0.0904861
-0.0317274
-0.0332219
0.0863444
0.0411692
0.0587997
0.0446005
0.0781509
-0.0330244
0.0798375
-0.0338924
-0.290384
-0.269596
-0.33413
-0.281318
-0.287333
-0.335488
-0.294056
-0.288366
-0.343435
-0.283389
-0.339405
-0.300196
-0.208015
-0.178521
-0.200663
-0.177298
-0.194862
-0.2263
-0.212687
-0.175015
-0.190508
-0.205851
-0.225179
-0.249644
-0.224148
-0.230385
-0.222803
-0.225477
-0.21662
-0.215497
-0.220141
-0.204593
-0.208953
-0.22915
-0.208067
-0.217451
-0.219775
-0.249882
-0.308488
-0.240633
-0.320692
-0.224553
-0.185406
-0.176827
-0.230754
-0.185871
-0.230091
-0.227579
-0.178254
-0.193239
-0.192591
-0.225583
-0.256372
-0.330552
-0.258284
-0.322068
-0.260437
-0.316637
-0.262449
-0.311539
-0.266572
-0.258153
-0.319893
-0.233576
-0.231988
-0.225432
-0.168267
-0.160454
-0.222018
-0.243974
-0.253632
-0.295442
-0.299533
-0.24779
-0.250279
-0.22538
-0.155466
-0.155727
-0.220916
-0.235474
-0.248193
-0.241256
-0.246789
-0.296077
-0.24711
-0.235968
-0.1718
-0.240592
-0.16779
-0.198171
-0.141312
-0.133788
-0.15309
-0.23018
-0.161492
-0.202104
-0.160254
-0.151062
-0.200789
-0.15351
-0.20354
-0.21528
-0.238998
-0.249346
-0.281115
-0.233536
-0.248324
-0.19919
-0.168615
-0.131237
-0.141527
-0.1518
-0.161218
-0.252084
-0.231312
-0.169247
-0.227505
-0.24218
-0.280325
-0.244468
-0.219952
-0.159735
-0.184188
-0.167112
-0.124003
-0.101552
-0.164406
-0.128377
-0.159426
-0.13476
-0.120991
-0.172932
-0.125697
-0.170133
-0.207919
-0.253391
-0.197777
-0.150147
-0.101595
-0.118766
-0.124583
-0.156189
-0.18946
-0.175772
-0.165542
-0.189409
-0.25021
-0.188887
-0.146424
-0.163821
-0.134767
-0.0547143
-0.128067
-0.119688
-0.0841459
-0.147563
-0.0612151
-0.15183
-0.173636
-0.23408
-0.173904
-0.118164
-0.0692958
-0.0814555
-0.118358
-0.163584
-0.14256
-0.136732
-0.170582
-0.229665
-0.173367
-0.137491
-0.107575
-0.137559
-0.152918
-0.110604
-0.14609
-0.156029
-0.119318
-0.0459383
-0.0249371
-0.0830068
0.00496474
-0.138875
-0.0763903
-0.123395
-0.0393554
0.00768399
-0.107598
0.0283889
-0.12179
-0.124239
-0.144046
-0.150509
-0.231482
-0.142624
-0.149018
-0.119656
-0.0715036
-0.0227969
0.00914871
0.0121879
-0.0738416
-0.109928
-0.136038
-0.141528
-0.119601
-0.145537
-0.165718
-0.114183
-0.156998
-0.145475
-0.151121
-0.127311
-0.230054
-0.138764
-0.14492
-0.148184
-0.0688584
-0.0679654
-0.111363
-0.133357
-0.0738434
-0.0619626
-0.14365
-0.044714
0.0227254
0.00338773
-0.043602
0.0176145
-0.0601226
-0.0397984
-0.0523235
0.0415121
0.0848504
-0.0590969
0.116601
-0.060819
-0.0334064
-0.0762477
-0.110169
-0.152508
-0.161901
-0.0870887
-0.0892341
-0.154437
-0.0395871
-0.0290364
0.00751097
0.0323881
0.0208534
-0.0345077
-0.0364726
-0.0796201
-0.115135
-0.082901
-0.146923
-0.0923986
-0.0794935
-0.145666
-0.0679725
-0.154419
-0.0739354
-0.160223
-0.0858507
-0.0503911
-0.154428
-0.038403
-0.0356621
-0.0822599
-0.0972278
-0.0368882
-0.0316976
-0.0986744
0.0652282
0.0725724
0.117762
-0.0304603
0.118671
-0.0204521
0.103241
0.00211663
-0.0479679
-0.167582
-0.15697
-0.00336052
-0.0624889
-0.127499
-0.0464278
-0.0868374
-0.0486204
-0.117937
-0.0524135
-0.0418908
-0.107033
0.0141411
-0.122762
-0.080982
-0.15752
-0.0713158
0.0401188
-0.110771
0.0671393
0.0475429
-0.111644
-0.107077
0.0346433
0.0303407
-0.064526
0.0797701
-0.0583804
0.0214283
-0.107181
0.0304013
0.148031
-0.0579095
0.101238
-0.0708703
-0.0581533
-0.029564
-0.0624348
-0.023511
0.152341
-0.0583506
-0.052773
-0.0581161
-0.0215798
0.177159
0.139898
-0.0182622
0.141456
-0.146681
-0.0526969
-0.134029
-0.0412685
0.218204
-0.117182
-0.129806
-0.0369237
0.37805
0.224547
-0.0271644
-0.046022
-0.0268376
-0.0364076
-0.00649298
0.188085
-0.0139454
0.159602
-0.0218633
-0.0179207
-0.0274411
0.00011419
0.154654
0.156765
0.00710495
-0.114099
-0.108237
-0.0278007
0.338621
-0.0250047
0.225119
-0.104174
-0.107279
-0.0411201
0.143987
0.222683
-0.0409311
-0.00971285
0.0846484
-0.00496356
0.0152804
0.154948
0.0132571
0.118967
0.0900767
-0.00454918
-0.00257603
0.0146941
0.030002
0.108747
0.00999056
-0.103036
-0.0958629
-0.0440941
0.144615
-0.0427669
0.119721
-0.0727823
-0.0859404
-0.041364
0.0182082
0.112326
-0.037799
-0.836759
-0.947742
-0.950038
-0.817037
-0.927774
-0.788847
-0.813736
-0.177764
-0.218916
-0.247395
-0.210491
-0.167866
-0.216035
-0.21525
-0.245365
-0.252553
-0.215742
-0.216112
-0.226445
-0.257901
-0.23041
-0.212002
-0.223178
-0.265965
-0.219808
-0.215021
-0.207242
-0.228135
-0.237909
-0.237448
-0.240417
-0.236177
-0.256084
-0.231488
-0.239086
-0.245629
-0.249653
-0.24222
-0.219298
-0.225817
-0.237687
-0.276672
-0.250342
-0.230734
-0.28046
-0.252117
-0.362802
-0.261626
-0.283546
-0.267375
-0.261034
-0.326139
-0.305941
-0.249934
-0.335677
-0.275441
-0.280722
-0.24985
-0.254009
-0.32348
-0.329166
-0.247669
-0.289446
-0.281117
-0.232768
-0.246538
-0.334417
-0.298518
-0.248986
-0.258314
-0.290615
-0.362474
-0.280233
-0.299197
-0.240828
-0.235142
-0.315008
-0.241663
-0.273768
-0.308125
-0.298975
-0.300448
-0.245166
-0.241958
-0.310371
-0.280737
-0.244189
-0.315109
-0.327655
-0.331544
-0.286953
-0.358695
-0.324374
-0.267408
-0.329807
-0.312509
-0.243163
-0.2459
-0.302582
-0.308391
-0.244651
-0.297644
-0.309395
-0.234553
-0.245246
-0.305621
-0.279833
-0.244282
-0.306506
-0.361649
-0.342178
-0.271201
-0.330782
-0.306506
-0.242678
-0.238888
-0.326921
-0.243148
-0.304235
-0.317816
-0.320343
-0.304657
-0.23575
-0.23964
-0.300945
-0.29446
-0.240405
-0.3437
-0.314033
-0.29737
-0.324291
-0.337527
-0.34868
-0.298444
-0.351288
-0.319493
-0.236943
-0.235105
-0.300706
-0.299776
-0.23931
-0.302402
-0.313863
-0.238172
-0.245542
-0.315839
-0.308231
-0.244338
-0.316078
-0.330102
-0.370758
-0.326412
-0.350458
-0.281886
-0.241269
-0.247753
-0.310171
-0.242739
-0.278831
-0.306292
-0.281749
-0.276285
-0.223584
-0.231437
-0.274932
-0.283237
-0.232603
-0.322695
-0.309506
-0.304027
-0.291227
-0.329187
-0.399287
-0.31393
-0.406098
-0.278006
-0.228927
-0.223214
-0.271374
-0.275086
-0.231577
-0.265878
-0.292686
-0.247874
-0.244286
-0.319239
-0.30288
-0.244291
-0.307236
-0.314819
-0.42047
-0.301465
-0.41048
-0.286515
-0.291876
-0.29007
-0.294152
-0.325051
-0.445281
-0.315179
-0.454193
-0.327471
-0.458005
-0.322917
-0.456644
-0.307592
-0.260843
-0.265374
-0.324113
-0.332942
-0.41867
-0.326729
-0.425215
-0.335379
-0.436612
-0.352508
-0.428477
-0.345023
-0.267273
-0.263543
-0.33902
-0.377803
-0.464935
-0.378269
-0.461286
-0.377115
-0.450986
-0.368765
-0.459206
-0.31652
-0.235197
-0.24589
-0.310679
-0.340105
-0.40351
-0.343748
-0.400043
-0.339222
-0.397901
-0.335264
-0.399652
-0.278181
-0.187493
-0.188911
-0.276162
-0.308243
-0.390673
-0.314398
-0.387524
-0.306922
-0.385443
-0.30501
-0.386769
-0.259335
-0.161471
-0.170903
-0.245981
-0.288657
-0.380794
-0.297184
-0.371057
-0.285107
-0.34691
-0.270807
-0.366313
-0.0215885
-0.0338546
-0.0307685
-0.0460805
-0.0218915
-0.0879404
-0.0319581
-0.0365807
-0.0339969
-0.0919
-0.0971193
-0.0282213
-0.123939
-0.129542
-0.0936787
-0.127393
-0.13745
-0.0864968
-1.08152
-1.07247
-1.28493
-1.27147
-1.30864
-1.07239
-1.33234
-1.30501
0.174057
0.205056
0.326122
0.325981
0.207217
0.161147
0.324697
0.164617
-0.0282998
0.126862
0.128115
0.334365
0.351627
0.14695
0.136166
-0.0419098
0.125857
0.249771
0.182745
0.372052
0.119852
0.349622
0.235625
0.326186
0.203259
0.306574
0.20569
0.324728
0.172753
-1.39371
-1.388
-1.35444
-1.10644
-1.09234
-1.37814
-1.34985
-1.61836
-1.39846
-1.34559
-1.11012
-1.10092
-1.33175
-1.37243
-1.38815
-1.3873
-1.60878
-1.3908
-1.37971
0.0922256
-0.0061097
0.103828
0.135557
0.0969398
0.155142
0.119944
0.202145
0.36659
0.183092
0.360405
0.126089
0.0947092
-0.0119894
0.100257
0.113614
0.207883
0.358473
0.149221
0.359904
-1.33816
-1.57228
-1.30704
-1.59581
-1.29066
-1.15543
-1.12686
-1.14647
-1.29688
-1.28437
-1.13181
-1.13376
-1.14156
-1.25724
-1.33958
-1.64809
-1.34988
-1.59583
0.0773679
-0.0581817
0.00302245
0.0931685
0.0115274
0.0880271
0.0924362
0.0729575
-0.0508696
0.0808462
0.130057
0.351846
0.139244
0.344206
0.0785869
0.0887053
0.00326594
-0.0636467
0.0126728
0.0892452
0.0720054
0.130414
0.336016
0.118277
0.344162
-1.29196
-1.33988
-1.58543
-1.40663
-1.32149
-1.27797
-1.41562
-1.19704
-1.1047
-1.12734
-1.30258
-1.09582
-1.20906
-1.2958
-1.18513
-1.28464
-1.11659
-1.07361
-1.086
-1.29847
-1.17062
-1.30401
-1.58888
-1.36406
-1.42943
-1.31249
-1.33234
-1.41611
0.0529366
-0.0432561
0.00667121
0.0841716
-0.0366227
0.0670674
0.0804366
0.0499584
-0.0287652
-0.0825998
0.0506663
0.0926329
0.326801
0.11064
0.32071
0.0540824
0.0772456
0.00427553
-0.0369442
-0.0383569
0.0782049
0.053376
0.0900077
0.31951
0.0838399
0.321012
-1.17525
-1.2719
-1.43973
-1.23934
-1.28446
-1.14906
-1.27147
-1.19336
-1.53977
-1.29613
-1.31249
-1.21627
-1.29491
-1.29132
0.0310986
-0.0816603
-0.014314
0.0656219
-0.0871914
0.0393196
0.0605555
0.0230523
-0.117314
-0.138714
0.00153826
0.085006
0.31227
0.0819713
0.31136
0.0255279
0.0508098
-0.0193139
-0.0940807
-0.090215
0.0550752
0.0207978
0.0828192
0.30828
0.0715097
0.312492
-0.0287389
-0.155384
-0.151162
-0.0384094
0.0374471
0.290441
0.0478787
0.283812
0.0364065
0.278
0.0279011
0.284737
-0.0637386
-0.212841
-0.192449
-0.0700389
0.00551431
0.255583
0.139333
0.0120459
0.246463
0.00420243
0.239922
0.139059
-0.00106758
0.246732
-0.107272
-0.245497
-0.242751
-0.11416
-0.0384011
0.186139
0.0830284
-0.0306539
0.183536
-0.0394841
0.17858
0.0849935
-0.047489
0.182878
-0.140532
-0.275886
-0.26575
-0.146517
-0.0770033
0.162629
-0.121875
-0.0681506
0.158213
-0.0779878
0.15043
-0.141726
-0.0824308
0.156081
-0.176444
-0.320404
-0.313287
-0.183746
-0.112411
0.124725
0.133611
-0.102084
0.118741
-0.114322
0.10935
0.142163
-0.124845
0.114823
-0.21526
-0.363174
-0.355333
-0.22085
-0.163883
0.0827841
0.208711
-0.155047
0.0808952
-0.165556
0.0862462
0.216986
-0.168763
0.080255
-0.242218
-0.393998
-0.388981
-0.249599
-0.159721
0.0496405
0.0488665
-0.154822
0.0424325
-0.165862
0.0342731
0.0345661
-0.17233
0.0369208
-0.26541
-0.414395
-0.412683
-0.267819
-0.170608
0.0166297
0.422055
-0.170072
0.0135181
-0.170651
0.00913099
0.448418
-0.170797
0.0115223
-0.133701
1.56422
-0.0976609
-0.0374211
-0.0141584
1.26536
-0.0647167
-0.0882938
-0.00806352
1.1242
1.27014
0.00641263
-0.205605
-0.216184
-0.0732434
0.496324
0.436352
-0.073347
-0.0591891
-0.0425546
0.0158951
1.26186
0.0110556
0.979487
-0.0262965
-0.0385316
0.0160861
0.715954
0.958781
0.0147697
-0.127373
-0.169013
-0.0611433
0.339245
0.45362
-0.0524634
-2.30124
0.733529
-1.7302
0.619983
0.234177
0.347287
-1.04213
0.430135
-1.51827
0.564921
0.189075
0.121382
1.55094
1.34978
1.46282
1.4731
1.53625
1.60256
1.11625
1.45141
1.58024
1.23054
1.20658
0.798538
0.865875
1.26212
0.856187
1.22962
1.55388
1.40109
1.34372
1.48742
1.55587
1.20627
0.816373
1.05802
0.774735
1.22538
1.16789
0.842844
-0.577523
-1.49185
0.395977
-0.501312
0.174437
0.0170315
0.0602751
-1.35337
-0.432463
0.0798914
-0.46439
0.141956
-0.0113957
-0.0484114
1.2852
1.4253
1.43499
1.41973
0.990285
-2.53101
0.0262354
0.148084
0.749726
0.787762
0.586585
0.683365
0.490181
0.498507
0.869927
0.640944
1.22767
1.41965
1.41898
1.03945
-0.431792
1.15443
0.626036
-0.22771
0.508805
0.461753
0.598965
-0.230491
-0.0954897
-0.207755
0.132265
-0.0532347
-0.0463346
0.0938856
1.14368
0.0839514
-0.211953
0.424994
0.549419
0.575778
0.37875
0.0931458
1.00236
0.053915
0.318547
0.530861
0.349606
0.508158
0.978604
0.0234211
0.0453041
0.29715
0.467481
0.490067
0.272944
0.0305673
0.854366
0.0254927
0.228499
0.449918
0.252839
0.427072
0.839599
0.156197
0.0290016
0.211202
0.388722
0.408314
0.187836
0.155635
0.752828
0.144022
0.158384
0.37554
0.173075
0.356594
0.734145
0.130107
0.139243
0.151897
0.329768
0.342622
0.144178
0.130224
0.476459
0.118179
0.132365
0.334205
0.142718
0.317825
-0.101965
-0.100607
-0.0571562
-0.0618455
-0.104709
-0.0582608
-0.105389
-0.127872
-0.181834
-0.124777
-0.121162
-0.178732
-0.0997239
-0.0486662
-0.052018
-0.0993027
-0.102844
-0.0525199
-0.094443
-0.0913503
-0.0885583
-0.0174273
-0.0275911
-0.0397004
-0.0898782
-0.113059
-0.181106
-0.111599
-0.113016
-0.125313
-0.161898
-0.127789
-0.116267
-0.0925487
-0.0485761
-0.0167286
-0.0437914
-0.092084
-0.113234
-0.12601
-0.181695
-0.164973
-0.121847
-0.123443
-0.0828484
-0.0862236
-0.0252023
-0.00374414
-0.0847919
-0.0902957
-0.0144906
-0.110799
-0.120339
-0.16016
-0.105562
-0.109251
-0.14945
-0.0929135
-0.10048
-0.0985269
-0.101551
-0.162074
-0.107586
-0.106074
-0.15208
-0.0945458
-0.156078
-0.0993095
-0.102965
-0.153845
-0.11076
-0.10666
-0.15584
-0.157028
-0.113509
-0.103947
-0.154162
-0.0839632
-0.00976831
-0.0276271
-0.0773222
-0.00530345
-0.0715648
-0.0882422
-0.129896
-0.102496
-0.0987147
-0.143384
-0.0893609
-0.151332
-0.0944279
-0.150351
-0.0870713
-0.0919641
-0.147147
-0.0828336
-0.0250557
-0.00278337
-0.0714988
-0.00477911
-0.0696623
-0.0782858
-0.0887008
-0.0978466
-0.16294
-0.0884574
-0.146226
-0.0990649
-0.146481
-0.0926875
-0.142591
-0.100168
-0.0890374
-0.102559
-0.0811515
-0.136772
-0.14188
-0.0832908
-0.100804
-0.0913324
-0.149577
-0.0935567
-0.0902812
-0.0818638
-0.137189
-0.0636923
-0.00761322
-0.0037957
-0.0699862
-0.0771128
0.0124572
-0.0700496
-0.0886104
-0.0689775
-0.129868
-0.0789295
-0.078872
-0.134866
-0.0933246
-0.126238
-0.0637536
-0.0760309
-0.0726411
-0.13368
-0.0977771
-0.0805505
-0.136233
-0.0988609
-0.0727214
-0.135487
-0.0579645
-0.114663
-0.0919427
-0.0765456
-0.0738745
-0.120008
-0.0669112
-0.0745865
-0.12861
-0.0765922
-0.0723958
-0.121668
-0.450654
-0.535888
-0.432882
-0.528098
-0.445287
-0.438286
-0.531414
-0.441237
-0.522855
-0.429263
-0.525108
-0.442038
-0.428606
-0.522953
-0.263136
-0.277074
-0.211525
-0.223736
-0.26955
-0.260037
-0.210327
-0.195933
-0.249891
-0.215991
-0.204193
-0.257509
-0.2019
-0.288636
-0.285734
-0.269441
-0.262542
-0.332479
-0.279016
-0.279662
-0.336302
-0.238358
-0.187529
-0.189398
-0.230703
-0.231616
-0.195002
-0.239146
-0.266988
-0.329236
-0.261445
-0.27598
-0.328516
-0.258258
-0.194107
-0.229428
-0.17883
-0.234456
-0.222982
-0.237717
-0.216989
-0.253367
-0.191383
-0.188601
-0.237494
-0.228875
-0.226467
-0.364064
-0.364993
-0.410442
-0.36397
-0.366075
-0.361569
-0.40252
-0.41545
-0.423787
-0.361347
-0.373395
-0.391967
-0.362003
-0.401776
-0.367672
-0.363447
-0.247378
-0.225511
-0.243651
-0.222376
-0.356128
-0.357997
-0.400638
-0.361349
-0.337378
-0.393206
-0.360631
-0.412642
-0.411215
-0.3621
-0.366257
-0.392306
-0.39332
-0.358515
-0.328311
-0.362405
-0.213508
-0.236731
-0.215327
-0.236472
-0.222369
-0.223235
-0.263618
-0.239733
-0.214671
-0.213435
-0.200682
-0.190881
-0.172727
-0.178013
-0.208695
-0.214975
-0.212741
-0.222643
-0.228054
-0.206735
-0.20766
-0.220076
-0.212445
-0.219668
-0.222126
-0.226927
-0.223904
-0.232161
-0.217281
-0.217774
-0.222209
-0.219917
-0.209447
-0.227226
-0.222371
-0.240939
-0.218996
-0.217704
-0.219247
-0.231763
-0.218624
-0.219329
-0.220849
-0.209399
-0.217545
-0.185783
-0.214861
-0.206939
-0.218278
-0.229097
-0.210352
-0.21288
-0.21724
-0.209134
-0.437687
-0.523931
-0.428205
-0.508053
-0.436392
-0.426632
-0.513389
-0.431966
-0.495284
-0.428449
-0.499936
-0.434484
-0.425773
-0.495065
-0.23623
-0.174882
-0.168459
-0.187707
-0.191186
-0.191643
-0.214563
-0.219432
-0.205579
-0.174123
-0.226245
-0.199928
-0.226653
-0.200625
-0.19208
-0.252852
-0.305884
-0.241859
-0.22855
-0.173015
-0.180658
-0.221948
-0.177645
-0.251829
-0.255635
-0.308777
-0.298875
-0.249248
-0.259376
-0.321365
-0.230461
-0.192872
-0.172716
-0.226046
-0.190515
-0.253535
-0.31577
-0.260468
-0.310833
-0.255484
-0.260618
-0.322772
-0.251795
-0.24754
-0.187415
-0.238605
-0.225524
-0.189875
-0.157475
-0.175351
-0.151737
-0.180265
-0.173118
-0.185358
-0.15183
-0.159967
-0.178292
-0.186204
-0.179443
-0.194897
-0.209423
-0.21685
-0.183796
-0.180669
-0.196844
-0.171668
-0.156832
-0.194308
-0.228727
-0.194943
-0.1997
-0.18216
-0.217739
-0.190527
-0.186376
-0.218611
-0.224966
-0.187798
-0.328227
-0.399679
-0.335736
-0.355992
-0.334268
-0.402078
-0.429686
-0.426177
-0.329326
-0.332885
-0.353117
-0.348245
-0.399365
-0.330955
-0.402231
-0.220658
-0.230571
-0.236081
-0.210064
-0.213773
-0.215916
-0.217026
-0.224097
-0.248918
-0.253298
-0.242754
-0.216946
-0.216819
-0.24527
-0.229123
-0.220435
-0.256045
-0.214389
-0.21921
-0.22334
-0.215963
-0.211577
-0.254242
-0.221329
-0.214825
-0.234989
-0.261472
-0.238887
-0.273783
-0.394921
-0.335448
-0.394057
-0.32265
-0.429898
-0.427645
-0.353643
-0.336993
-0.399506
-0.398321
-0.324048
-0.236238
-0.23884
-0.241742
-0.239649
-0.229424
-0.231858
-0.22913
-0.24092
-0.225431
-0.234515
-0.209671
-0.208694
-0.229575
-0.226671
-0.207723
-0.222165
-0.228702
-0.236773
-0.224348
-0.227056
-0.243695
-0.229635
-0.240936
-0.424445
-0.480318
-0.418702
-0.482182
-0.422582
-0.417368
-0.485149
-0.4203
-0.476077
-0.417461
-0.482912
-0.422326
-0.4101
-0.481487
-0.17694
-0.204583
-0.172057
-0.214887
-0.171339
-0.148747
-0.153569
-0.181529
-0.168546
-0.144594
-0.149209
-0.166575
-0.179279
-0.213822
-0.193635
-0.213806
-0.243996
-0.230996
-0.217903
-0.171936
-0.166734
-0.215029
-0.216784
-0.164676
-0.215024
-0.216166
-0.145587
-0.236711
-0.150654
-0.240599
-0.250374
-0.288986
-0.240125
-0.254097
-0.220048
-0.155019
-0.225207
-0.152174
-0.244682
-0.254978
-0.289387
-0.243269
-0.256068
-0.240904
-0.245419
-0.166358
-0.201955
-0.229739
-0.169768
-0.204802
-0.160335
-0.140254
-0.158958
-0.133112
-0.158489
-0.157834
-0.144416
-0.135244
-0.16158
-0.178909
-0.221687
-0.158334
-0.193587
-0.196254
-0.172586
-0.400162
-0.32595
-0.400496
-0.404989
-0.414026
-0.323038
-0.391714
-0.402756
-0.21326
-0.216952
-0.257386
-0.221219
-0.215668
-0.217132
-0.232762
-0.360723
-0.226422
-0.235656
-0.214174
-0.229827
-0.224963
-0.224254
-0.213281
-0.233193
-0.317102
-0.238415
-0.223521
-0.246432
-0.236298
-0.389541
-0.300581
-0.382717
-0.403672
-0.397628
-0.264635
-0.346945
-0.202353
-0.300867
-0.387833
-0.382563
-0.222904
-0.224913
-0.321673
-0.21991
-0.213636
-0.212481
-0.260017
-0.233745
-0.218613
-0.222601
-0.241653
-0.220034
-0.2183
-0.244131
-0.292425
-0.201127
-0.219816
-0.225624
-0.209587
-0.246706
-0.20983
-0.216386
-0.210021
-0.232644
-0.207926
-0.222279
-0.209321
-0.232433
-0.275547
-0.220403
-0.230197
-0.229142
-0.406739
-0.458238
-0.382931
-0.462852
-0.40212
-0.389017
-0.46437
-0.363457
-0.318754
-0.315605
-0.365222
-0.320807
-0.360559
-0.370254
-0.350591
-0.354151
-0.300868
-0.305777
-0.30892
-0.357148
-0.348042
-0.396248
-0.448118
-0.380838
-0.460273
-0.399108
-0.369508
-0.456145
-0.353354
-0.316637
-0.306457
-0.36295
-0.31249
-0.357752
-0.356975
-0.16884
-0.171723
-0.218396
-0.179065
-0.171381
-0.163605
-0.184345
-0.148718
-0.134963
-0.132067
-0.155398
-0.130861
-0.15476
-0.150272
-0.14747
-0.165024
-0.128194
-0.121943
-0.126968
-0.158564
-0.144223
-0.169614
-0.221008
-0.155499
-0.189498
-0.169866
-0.170633
-0.188826
-0.169683
-0.202253
-0.172582
-0.206195
-0.148574
-0.150381
-0.200902
-0.14647
-0.2168
-0.19792
-0.12792
-0.111418
-0.163824
-0.138419
-0.168867
-0.202419
-0.211591
-0.276164
-0.218299
-0.166838
-0.142147
-0.11182
-0.140151
-0.170287
-0.203528
-0.224122
-0.278619
-0.222262
-0.219912
-0.199336
-0.177086
-0.173768
-0.155181
-0.168339
-0.174522
-0.194792
-0.158928
-0.16694
-0.170266
-0.130742
-0.102803
-0.11045
-0.145192
-0.106692
-0.155789
-0.127408
-0.135131
-0.161159
-0.115565
-0.112964
-0.110931
-0.138661
-0.160251
-0.150825
-0.189103
-0.166384
-0.16413
-0.164829
-0.167896
-0.148537
-0.22928
-0.224292
-0.213789
-0.384273
-0.307361
-0.371805
-0.252913
-0.26416
-0.217329
-0.382903
-0.392718
-0.238234
-0.255743
-0.212901
-0.306631
-0.363157
-0.371267
-0.224947
-0.264776
-0.222677
-0.200704
-0.228428
-0.19518
-0.217465
-0.198237
-0.220587
-0.197455
-0.21086
-0.213119
-0.232015
-0.249136
-0.212716
-0.226903
-0.209276
-0.202834
-0.242578
-0.205227
-0.236825
-0.206843
-0.204208
-0.215043
-0.207642
-0.219645
-0.247848
-0.207344
-0.23249
-0.205171
-0.20687
-0.215189
-0.220198
-0.248579
-0.366284
-0.290478
-0.368579
-0.381759
-0.37387
-0.231725
-0.259274
-0.228016
-0.293504
-0.361899
-0.367465
-0.215202
-0.223962
-0.234966
-0.227951
-0.25452
-0.240294
-0.194445
-0.189652
-0.205577
-0.213897
-0.187082
-0.194079
-0.221063
-0.189954
-0.210092
-0.180573
-0.207472
-0.185083
-0.21444
-0.185948
-0.200278
-0.232368
-0.201631
-0.227545
-0.204063
-0.225039
-0.19873
-0.341265
-0.352034
-0.302563
-0.29275
-0.345004
-0.298929
-0.351217
-0.378007
-0.428646
-0.351741
-0.429049
-0.374043
-0.355484
-0.434545
-0.337548
-0.291234
-0.287992
-0.339432
-0.295433
-0.332512
-0.349633
-0.321629
-0.325261
-0.270331
-0.27717
-0.280568
-0.326292
-0.319076
-0.367478
-0.40585
-0.351449
-0.42535
-0.371947
-0.349786
-0.418969
-0.324385
-0.288506
-0.276106
-0.333918
-0.283937
-0.329071
-0.32657
-0.117842
-0.097265
-0.103713
-0.140207
-0.0913738
-0.136225
-0.12257
-0.158215
-0.174094
-0.1565
-0.122632
-0.113386
-0.17064
-0.105057
-0.164482
-0.0717078
-0.132013
-0.136095
-0.17539
-0.237755
-0.18189
-0.150058
-0.116388
-0.0760588
-0.137928
-0.187855
-0.236653
-0.182585
-0.170123
-0.145134
-0.15338
-0.198924
-0.228025
-0.219986
-0.365233
-0.274303
-0.362846
-0.235091
-0.246169
-0.22173
-0.338022
-0.361141
-0.204956
-0.228511
-0.22292
-0.271382
-0.347286
-0.362468
-0.227623
-0.239576
-0.222793
-0.188872
-0.227652
-0.213673
-0.331976
-0.250697
-0.334412
-0.334165
-0.330179
-0.21552
-0.230904
-0.213546
-0.251693
-0.343402
-0.334536
-0.186133
-0.215556
-0.212111
-0.220826
-0.233532
-0.21322
-0.311936
-0.320555
-0.274231
-0.270166
-0.316807
-0.270509
-0.303672
-0.347643
-0.380671
-0.337865
-0.394969
-0.343843
-0.343973
-0.399108
-0.308806
-0.264052
-0.269858
-0.296543
-0.267552
-0.304964
-0.302304
-0.296725
-0.285143
-0.265074
-0.252746
-0.256028
-0.288651
-0.293564
-0.337374
-0.383524
-0.335918
-0.392754
-0.341591
-0.330264
-0.387674
-0.299078
-0.262253
-0.267076
-0.294498
-0.258738
-0.302746
-0.289513
-0.185399
-0.144001
-0.154882
-0.136429
-0.140467
-0.073565
-0.147057
-0.144701
-0.152617
-0.0402462
-0.0471411
-0.0931819
-0.0359766
-0.141906
-0.0983425
-0.153577
-0.22565
-0.161789
-0.152624
-0.107643
-0.0824985
-0.0524165
-0.0361183
-0.101424
-0.169793
-0.225935
-0.164044
-0.185096
-0.148419
-0.125822
-0.141493
-0.170299
-0.129886
-0.139254
-0.201956
-0.218348
-0.214611
-0.307111
-0.329024
-0.259141
-0.302235
-0.210605
-0.246306
-0.275485
-0.217577
-0.329343
-0.338933
-0.181703
-0.212371
-0.206203
-0.262952
-0.288576
-0.300127
-0.220596
-0.237526
-0.279862
-0.28066
-0.222069
-0.265554
-0.262901
-0.208164
-0.187899
-0.210594
-0.170661
-0.31167
-0.203104
-0.30052
-0.264128
-0.278344
-0.328319
-0.320597
-0.242795
-0.275479
-0.212007
-0.229396
-0.206132
-0.230358
-0.280171
-0.266706
-0.287409
-0.279383
-0.263571
-0.183611
-0.165468
-0.199311
-0.169397
-0.200062
-0.252509
-0.242689
-0.209838
-0.279287
-0.228144
-0.254654
-0.206061
-0.278136
-0.167123
-0.163564
-0.214169
-0.201429
-0.159867
-0.171952
-0.209146
-0.162699
-0.200047
-0.147711
-0.197339
-0.154183
-0.156623
-0.205269
-0.145285
-0.129794
-0.199671
-0.179407
-0.184767
-0.134797
-0.139939
-0.148478
-0.196016
-0.142918
-0.20097
-0.152814
-0.189212
-0.138637
-0.284825
-0.283402
-0.24866
-0.247826
-0.28965
-0.243548
-0.27762
-0.321195
-0.34122
-0.309701
-0.359468
-0.314486
-0.322519
-0.363147
-0.280995
-0.23453
-0.24508
-0.269638
-0.239876
-0.274674
-0.275211
-0.261248
-0.261003
-0.209825
-0.216016
-0.221211
-0.267058
-0.2563
-0.305595
-0.337461
-0.305877
-0.35619
-0.312114
-0.317044
-0.349317
-0.265515
-0.231084
-0.212019
-0.266582
-0.225756
-0.271633
-0.265113
-0.0872643
-0.102092
-0.152759
-0.126763
-0.140557
-0.0940489
-0.159286
-0.0729947
-0.0059441
-0.00174971
-0.102124
0.0806543
-0.122814
-0.0978932
-0.065731
0.0301954
-0.000883173
-0.0458239
0.0172995
-0.0604213
-0.0478855
-0.0866622
-0.116732
-0.198034
-0.152459
-0.0873547
-0.122942
-0.148111
-0.0633289
-0.0638316
-0.018809
-0.00838167
0.00345523
-0.102787
-0.0540348
-0.0793113
-0.150718
-0.125677
-0.198812
-0.14277
-0.12414
-0.147797
-0.0892625
-0.121389
-0.0852389
-0.14731
-0.0934123
-0.0876043
-0.160457
-0.260755
-0.169027
-0.179623
-0.187532
-0.169823
-0.189412
-0.258616
-0.277488
-0.303162
-0.226179
-0.168889
-0.297424
-0.245411
-0.275837
-0.211029
-0.226701
-0.271127
-0.238646
-0.20754
-0.244694
-0.302523
-0.299799
-0.298243
-0.321351
-0.240879
-0.263891
-0.171023
-0.165154
-0.196927
-0.170573
-0.247367
-0.193459
-0.27741
-0.168415
-0.224717
-0.279843
-0.168238
-0.296257
-0.286228
-0.239505
-0.204268
-0.226084
-0.270137
-0.270911
-0.204372
-0.227531
-0.238296
-0.177629
-0.158924
-0.186133
-0.162082
-0.256811
-0.185919
-0.273225
-0.285377
-0.199896
-0.164066
-0.287915
-0.131189
-0.265709
-0.249128
-0.300559
-0.303366
-0.304906
-0.240702
-0.292267
-0.251995
-0.283005
-0.202278
-0.221256
-0.204518
-0.231967
-0.281437
-0.280443
-0.167616
-0.201016
-0.277999
-0.283653
-0.120086
-0.288175
-0.229094
-0.153449
-0.168751
-0.179155
-0.164728
-0.18154
-0.233448
-0.247096
-0.205027
-0.27191
-0.224518
-0.227583
-0.207677
-0.28185
-0.126233
-0.120594
-0.173545
-0.17146
-0.112517
-0.133666
-0.166199
-0.121273
-0.15458
-0.104428
-0.168426
-0.106522
-0.115409
-0.16088
-0.0986062
-0.0781661
-0.147381
-0.133107
-0.138459
-0.0856377
-0.0922335
-0.104247
-0.150009
-0.0999191
-0.149262
-0.111044
-0.143571
-0.093536
-0.24413
-0.256919
-0.210859
-0.191516
-0.251138
-0.204148
-0.248766
-0.276166
-0.311919
-0.278866
-0.312088
-0.268762
-0.296964
-0.319563
-0.239027
-0.192137
-0.188497
-0.245835
-0.198756
-0.23248
-0.247423
-0.215281
-0.21493
-0.171502
-0.17057
-0.176202
-0.22421
-0.209355
-0.255949
-0.301431
-0.277573
-0.306352
-0.263089
-0.2556
-0.299184
-0.22041
-0.187837
-0.174518
-0.241461
-0.181598
-0.227296
-0.227935
-0.0640762
-0.0631768
-0.136785
-0.0999396
-0.0580169
-0.0598902
-0.138504
-0.00606993
0.0557678
0.104016
-0.0569787
0.132739
-0.0292523
-0.0400307
-0.0162892
0.026231
0.0287315
-0.0142214
0.0280253
-0.0108447
-0.0171485
-0.0395843
-0.0417529
-0.153797
-0.170735
-0.0186611
-0.0541576
-0.158333
-0.0206851
-0.0219818
0.0258179
0.0337135
0.0321752
-0.0340473
-0.0185537
-0.0442015
-0.155557
-0.0720336
-0.154157
-0.0467481
-0.0599368
-0.158008
-0.0705477
-0.0980325
-0.0560031
-0.144354
-0.0636464
-0.0594385
-0.140086
-0.228677
-0.145407
-0.155179
-0.170842
-0.164948
-0.173603
-0.220925
-0.254664
-0.284052
-0.16396
-0.183522
-0.164022
-0.264927
-0.275496
-0.235542
-0.282752
-0.200636
-0.218473
-0.281499
-0.232251
-0.199728
-0.247165
-0.263398
-0.294524
-0.286206
-0.295649
-0.250383
-0.230185
-0.148407
-0.168456
-0.177223
-0.166591
-0.232955
-0.17559
-0.252814
-0.164012
-0.182095
-0.260347
-0.163786
-0.273923
-0.239028
-0.236292
-0.197171
-0.2177
-0.282451
-0.280626
-0.198656
-0.23843
-0.216509
-0.156084
-0.134612
-0.166877
-0.158525
-0.214371
-0.1643
-0.240551
-0.196468
-0.174007
-0.18864
-0.213277
-0.169844
-0.246091
-0.249949
-0.259699
-0.29479
-0.225858
-0.24841
-0.295526
-0.232593
-0.277148
-0.18844
-0.208253
-0.189269
-0.235362
-0.270345
-0.239709
-0.164665
-0.173745
-0.253826
-0.217121
-0.169043
-0.234113
-0.217161
-0.133173
-0.164737
-0.161833
-0.159759
-0.162847
-0.220028
-0.232579
-0.193732
-0.276178
-0.209948
-0.238131
-0.190917
-0.270605
-0.0839957
-0.0789033
-0.130336
-0.140754
-0.0867738
-0.0878163
-0.12654
-0.0828468
-0.119158
-0.089777
-0.142141
-0.0913614
-0.0782188
-0.124176
-0.0550741
-0.0275366
-0.115044
-0.0917154
-0.0973176
-0.0450675
-0.0490729
-0.0632352
-0.113409
-0.0839556
-0.121142
-0.0723353
-0.104612
-0.0565362
-0.197922
-0.211196
-0.166468
-0.156956
-0.204239
-0.161114
-0.203142
-0.226639
-0.289592
-0.172008
-0.263578
-0.219991
-0.191884
-0.269118
-0.192462
-0.15057
-0.156175
-0.18992
-0.156911
-0.185234
-0.202446
-0.166118
-0.16169
-0.109677
-0.123462
-0.129171
-0.1717
-0.160636
-0.207106
-0.281302
-0.169757
-0.25751
-0.214024
-0.155708
-0.250963
-0.172287
-0.144304
-0.116899
-0.187626
-0.136117
-0.179206
-0.173508
0.0248001
0.0486975
-0.130873
-0.123756
0.0345745
0.0205709
-0.137519
0.027427
-0.128353
-0.0745132
-0.13417
0.0426875
0.00979816
-0.136649
-0.2034
-0.123029
-0.152506
-0.155731
-0.157167
-0.157189
-0.199525
-0.245594
-0.194419
-0.187457
-0.166958
-0.181508
-0.245467
-0.180848
-0.235899
-0.259392
-0.18707
-0.206499
-0.25956
-0.234641
-0.186431
-0.265617
-0.146416
-0.297703
-0.287927
-0.158599
-0.259545
-0.205246
-0.12645
-0.165539
-0.160362
-0.163079
-0.204676
-0.159071
-0.245034
-0.156641
-0.166923
-0.16887
-0.170576
-0.177314
-0.236381
-0.235792
-0.184607
-0.205923
-0.260017
-0.259817
-0.185298
-0.234459
-0.189086
-0.150342
-0.122428
-0.154414
-0.14875
-0.192345
-0.154726
-0.249553
-0.147639
-0.131442
-0.174959
-0.154041
-0.182814
-0.253434
-0.266016
-0.144747
-0.3041
-0.135756
-0.250055
-0.296578
-0.220084
-0.239452
-0.180691
-0.19955
-0.181422
-0.219007
-0.241284
-0.246555
-0.169046
-0.135756
-0.16706
-0.155473
-0.181462
-0.227355
-0.188301
-0.122587
-0.145669
-0.1537
-0.14835
-0.154473
-0.18708
-0.221961
-0.183071
-0.252268
-0.200997
-0.22716
-0.182269
-0.244733
-0.0438931
-0.0282289
-0.0880922
-0.0990931
-0.0463999
-0.0462674
-0.0836153
-0.0435615
-0.07478
-0.0551676
-0.0986348
-0.0527567
-0.0380086
-0.081468
-0.150462
-0.160432
-0.119378
-0.0936048
-0.156287
-0.114399
-0.154222
-0.180096
-0.281198
-0.109046
-0.213527
-0.172806
-0.13703
-0.220363
-0.146787
-0.104633
-0.0930421
-0.133134
-0.111827
-0.138247
-0.153299
-0.112011
-0.0803381
-0.0433861
-0.0642929
-0.0752687
-0.1007
-0.102853
-0.157877
-0.276192
-0.106945
-0.207616
-0.166514
-0.088708
-0.199433
-0.120723
-0.0970141
-0.0500173
-0.130408
-0.0854157
-0.130561
-0.103952
-0.249962
-0.146506
-0.167291
-0.0941884
-0.126566
-0.253265
-0.139486
-0.270532
-0.0867948
-0.294334
-0.292943
-0.122317
-0.268653
-0.248602
-0.102352
-0.0944214
-0.116063
-0.112856
-0.138607
-0.24041
-0.227529
-0.069653
-0.0581428
-0.127608
-0.0897053
-0.113964
-0.225805
-0.254148
-0.0844562
-0.295399
-0.0722222
-0.267226
-0.295442
-0.226664
-0.105483
-0.0347905
-0.113118
-0.0929665
-0.113346
-0.235961
-0.0877097
-0.0775082
-0.054844
0.0138037
-0.0947462
-0.0477133
-0.0545129
-0.127487
-0.23676
-0.101614
-0.163993
-0.125761
-0.0861838
-0.167263
-0.0839692
-0.0451702
0.0119979
-0.0577339
-0.045338
-0.0823613
-0.0505076
-0.0843791
-0.0757148
-0.0611807
-0.0470809
-0.0493147
-0.0764639
-0.0823056
-0.125643
-0.198794
-0.103725
-0.16309
-0.126344
-0.116999
-0.160911
-0.0849425
-0.0485208
-0.055646
-0.059969
-0.0501344
-0.0842223
-0.0751022
-0.222801
-0.0666839
-0.126331
0.0208345
-0.109951
-0.225143
-0.0609263
-0.238572
-0.255829
-0.262964
-0.225504
-0.217223
-0.0664227
0.0275373
-0.0481397
-0.100076
-0.0449585
-0.19173
-0.135262
-0.070529
-0.0946408
-0.0042812
-0.0687501
-0.0198041
-0.124181
-0.190253
-0.253034
-0.21769
-0.248085
-0.144224
-0.0566418
-0.0921118
-0.0507531
-0.0671892
-0.0278519
-0.18049
-0.0709912
-0.0751676
-0.0429399
-0.0475353
-0.0782221
-0.0354957
-0.099475
-0.106669
-0.149943
-0.105253
-0.131133
-0.0971939
-0.118758
-0.139646
-0.06328
-0.0162338
-0.033524
-0.0805504
-0.0267365
-0.053276
-0.0973125
-0.0252552
-0.0464972
0.0633487
0.0223027
-0.017646
0.0143651
-0.0490275
-0.0796273
-0.0919135
-0.10294
-0.123947
-0.0891748
-0.0833085
-0.114519
-0.0341401
-0.00723185
0.0422577
-0.0778953
0.00359749
-0.0440385
-0.0539067
-0.111405
-0.0695021
-0.00250705
-0.048372
-0.00467566
-0.121722
-0.145335
-0.239513
-0.239484
-0.143794
-0.110291
-0.0166999
-0.0362295
-0.0087372
-0.111592
-0.116959
0.139346
-0.0263278
-0.116629
-0.027017
-0.146632
-0.238752
-0.144324
-0.237231
-0.115932
-0.0182378
0.100441
-0.0245978
-0.112439
-0.670656
-0.682892
-0.784202
-0.680512
-0.6631
-0.651191
-0.572913
-0.575735
-0.630528
-0.674578
-0.670299
-0.669064
-0.675987
-0.777344
-0.686149
-0.685286
-0.682153
-0.645337
-0.681559
-0.751422
-0.656266
-0.682697
-0.632538
-0.570547
-0.565534
-0.62537
-0.627744
-0.654367
-0.629555
-0.6619
-0.645623
-0.750341
-0.678373
-0.680869
-0.657687
-0.88121
-0.80995
-0.819736
-0.822452
-0.869038
-0.925104
-0.863664
-0.916043
-1.01117
-0.918805
-1.03164
-0.916542
-0.921343
-0.921192
-1.0522
-0.906624
-0.875133
-0.844731
-0.952999
-0.837648
-0.821424
-0.833257
-0.83281
-0.875659
-0.794053
-0.782574
-0.787803
-0.870867
-0.885458
-0.934399
-1.04843
-0.956838
-0.933326
-1.04349
-0.876082
-0.780874
-0.789807
-0.890281
-0.787314
-0.88013
-0.877224
-0.933648
-1.03487
-0.928195
-1.02569
-0.786175
-0.783444
-0.876386
-0.196128
-0.186296
-0.189481
-0.239538
-0.196645
-0.19617
-0.164252
-0.197855
-0.180769
-0.220335
-0.181682
-0.164687
-0.189711
-0.190419
-0.173088
-0.195111
-0.183947
-0.196013
-0.173993
-0.157952
-0.200676
-0.200656
-0.189464
-0.177738
-0.23106
-0.20086
-0.129494
-0.194123
-0.14946
-0.240975
-0.192925
-0.158631
-0.181496
-0.184446
-0.185172
-0.161447
-0.190274
-0.187758
-0.180511
-0.178431
-0.177168
-0.187693
-0.195002
-0.0380389
-0.00792724
-0.114787
-0.169127
-0.143331
-0.112375
-0.121742
-0.105563
-0.144357
-0.142284
-0.153537
-0.107101
-0.115055
-0.100753
-0.0452276
-0.0421643
-0.0443435
-0.106633
-0.100432
-0.0316786
-0.0348882
-0.105823
-0.0343398
-0.118302
-0.167717
-0.128094
-0.174384
-0.042487
-0.162339
-0.127923
-0.0414718
-0.158133
-0.117016
-0.161311
-0.159764
-0.119665
-0.0981044
-0.099363
-0.0323669
-0.135204
-0.0347436
-0.157213
-0.0942308
-0.0268226
-0.130735
-0.154035
-0.1102
-0.155897
-0.085907
-0.126572
-0.103807
-0.167507
-0.0283162
-0.0365402
-0.10251
-0.153467
-0.0269357
-0.652731
-0.671177
-0.744045
-0.679662
-0.65747
-0.631356
-0.543768
-0.547013
-0.627046
-0.647098
-0.66497
-0.654391
-0.745201
-0.684004
-0.683076
-0.667338
-0.647349
-0.646004
-0.65023
-0.66514
-0.736971
-0.656266
-0.660873
-0.740761
-0.620346
-0.541348
-0.535427
-0.626581
-0.644498
-0.653402
-0.646595
-0.646176
-0.650357
-0.734638
-0.65516
-0.761858
-0.658253
-0.739004
-0.652932
-0.959632
-1.0535
-0.953837
-1.04979
-0.953707
-0.934705
-0.873476
-0.791077
-0.796174
-0.888234
-0.795668
-0.873999
-0.879324
-0.959651
-0.938751
-1.05836
-1.04882
-0.935383
-0.957839
-0.780681
-0.887717
-0.89572
-0.923413
-0.778912
-0.880869
-0.8856
-0.934933
-0.909398
-0.943853
-1.03867
-0.945791
-1.08635
-0.945755
-0.9413
-1.04439
-0.946361
-0.941334
-1.05249
-1.0609
-0.949772
-0.941665
-1.04598
-0.778624
-0.900971
-0.903392
-0.948845
-0.937917
-0.778188
-0.7654
-0.896259
-0.902377
-0.942996
-0.934551
-0.198129
-0.191766
-0.194388
-0.177084
-0.201396
-0.252731
-0.262513
-0.198968
-0.19972
-0.228643
-0.237872
-0.193233
-0.195338
-0.173143
-0.188035
-0.173393
-0.201306
-0.203432
-0.233089
-0.201493
-0.186532
-0.191893
-0.193794
-0.256157
-0.184418
-0.202595
-0.229822
-0.178708
-0.230379
-0.214087
-0.199789
-0.235408
-0.233357
-0.191008
-0.198695
-0.196135
-0.233211
-0.178233
-0.253815
-0.179491
-0.197621
-0.122645
-0.0985801
-0.155236
-0.0487248
-0.125728
-0.107454
-0.0904441
-0.14208
-0.0464925
-0.130035
-0.109676
-0.179176
-0.151506
-0.124822
-0.153922
-0.109971
-0.107343
-0.0835054
-0.0283773
-0.121104
-0.0542424
-0.0862987
-0.118516
-0.0274086
-0.11808
-0.182731
-0.149744
-0.118984
-0.122151
-0.150834
-0.116812
-0.22888
-0.126656
-0.138232
-0.117086
-0.0525208
-0.126013
-0.225576
-0.129046
-0.133193
-0.131512
-0.0516957
-0.117625
-0.107962
-0.149618
-0.181838
-0.120602
-0.148634
-0.106622
-0.121784
-0.109339
-0.177633
-0.149521
-0.13331
-0.147984
-0.128965
-0.111298
-0.649317
-0.652364
-0.724467
-0.723339
-0.655645
-0.653571
-0.735169
-0.612936
-0.522214
-0.525445
-0.607503
-0.650798
-0.65524
-0.650251
-0.731412
-0.65599
-0.755913
-0.654801
-0.65397
-0.764534
-0.649755
-0.716126
-0.652636
-0.739099
-0.636593
-0.65028
-0.731615
-0.713166
-0.653996
-0.645664
-0.725168
-0.607563
-0.522139
-0.519515
-0.608945
-0.619975
-0.716082
-0.748572
-0.611112
-0.632088
-0.741966
-0.653369
-0.737259
-0.638619
-0.710803
-0.64028
-0.722736
-0.642929
-0.731157
-0.639053
-0.938195
-1.03715
-0.943714
-1.06502
-1.02877
-0.943559
-0.941858
-0.935283
-0.93401
-1.06018
-1.01932
-1.02576
-0.940497
-0.928086
-0.795271
-0.778452
-0.876802
-0.760511
-0.877989
-0.9426
-1.06704
-0.917686
-0.777256
-0.762132
-0.894989
-0.777758
-0.877622
-0.915646
-1.05239
-0.915618
-0.752785
-0.783131
-0.870155
-0.752953
-0.870451
-0.753301
-0.770764
-0.905404
-1.09184
-0.91342
-0.749328
-0.748895
-0.779279
-0.759731
-0.865308
-0.763312
-0.86956
-0.917388
-1.09794
-0.914603
-0.184942
-0.193834
-0.206617
-0.172692
-0.19954
-0.183161
-0.170866
-0.207887
-0.225738
-0.282883
-0.186871
-0.196994
-0.227207
-0.20953
-0.200011
-0.186749
-0.254858
-0.225505
-0.212325
-0.224862
-0.194137
-0.189951
-0.213559
-0.243496
-0.173873
-0.209665
-0.193356
-0.172936
-0.181661
-0.21384
-0.190717
-0.315066
-0.230904
-0.19076
-0.168783
-0.349858
-0.186127
-0.217263
-0.213601
-0.206487
-0.181427
-0.199659
-0.169392
-0.199472
-0.180654
-0.191744
-0.166169
-0.189596
-0.21054
-0.258521
-0.210559
-0.212827
-0.193817
-0.190141
-0.190093
-0.185592
-0.221434
-0.279561
-0.217789
-0.190046
-0.19727
-0.234784
-0.145894
-0.135961
-0.11611
-0.0444575
-0.0677081
-0.124489
-0.215324
-0.13975
-0.13562
-0.122715
-0.043768
-0.0272733
-0.0569409
-0.125379
-0.110326
-0.183062
-0.149273
-0.134065
-0.110179
-0.153632
-0.135679
-0.217581
-0.145658
-0.1454
-0.0888538
-0.0303082
-0.139782
-0.0723039
-0.133637
-0.101846
-0.211549
-0.158232
-0.14723
-0.122576
-0.0260332
-0.0720705
-0.134342
-0.0969437
-0.630466
-0.625208
-0.693837
-0.712447
-0.629939
-0.624245
-0.7144
-0.576251
-0.497708
-0.503713
-0.581912
-0.615309
-0.709861
-0.61378
-0.727546
-0.635557
-0.701353
-0.637333
-0.716855
-0.63533
-0.636999
-0.714359
-0.612541
-0.728651
-0.609831
-0.726625
-0.61566
-0.62199
-0.706731
-0.67868
-0.619514
-0.616463
-0.700811
-0.57725
-0.494597
-0.488475
-0.58047
-0.603003
-0.692945
-0.71394
-0.597345
-0.603822
-0.725206
-0.606835
-0.718611
-0.612618
-0.676023
-0.609807
-0.692645
-0.613933
-0.698627
-0.610529
-0.761501
-0.734345
-0.840256
-0.752669
-0.848993
-0.844166
-0.751099
-0.726401
-0.907973
-1.0478
-0.88968
-0.768787
-0.761912
-0.864446
-0.753209
-0.845043
-0.72923
-0.724177
-0.886561
-1.04314
-0.894231
-0.869046
-0.727339
-0.745681
-0.832903
-0.72495
-0.843447
-0.825939
-0.725104
-0.732818
-0.86553
-0.901166
-1.02302
-0.865932
-0.872711
-0.733813
-0.736329
-0.868037
-0.743586
-0.72463
-0.815524
-0.726498
-0.822397
-0.856921
-0.873166
-0.883144
-1.02575
-0.869244
-0.188429
-0.206265
-0.241447
-0.211532
-0.210105
-0.204733
-0.189153
-0.218881
-0.209454
-0.235422
-0.265639
-0.235122
-0.234842
-0.220375
-0.267634
-0.229035
-0.211308
-0.224085
-0.233508
-0.194084
-0.177177
-0.156364
-0.24
-0.0276402
-0.144434
-0.06483
-0.0645005
-0.145167
-0.123377
-0.0667531
-0.198037
-0.159024
-0.156589
-0.29297
-0.139662
-0.0655691
-0.107959
-0.0659429
-0.143515
-0.174622
-0.158092
-0.198297
-0.174803
-0.178776
-0.172906
-0.122164
-0.074455
-0.158327
-0.117371
-0.141212
-0.0735282
-0.140413
-0.245388
-0.120736
-0.153546
-0.197855
-0.170885
-0.170838
-0.178506
-0.153471
-0.139477
-0.108263
-0.0706386
-0.152844
-0.140907
-0.116857
-0.555454
-0.459826
-0.470273
-0.54872
-0.580634
-0.691792
-0.592229
-0.703643
-0.597016
-0.660976
-0.603503
-0.691175
-0.596237
-0.603189
-0.665361
-0.578538
-0.701413
-0.578023
-0.703222
-0.535229
-0.456792
-0.447474
-0.543538
-0.56375
-0.649919
-0.66407
-0.563664
-0.565892
-0.697087
-0.576928
-0.67008
-0.824669
-0.722983
-0.723898
-0.784794
-0.733772
-0.794051
-0.827487
-0.820926
-0.72534
-0.709345
-0.870321
-0.889109
-0.997737
-0.886969
-0.878797
-0.852184
-0.821805
-0.72565
-0.72419
-0.807995
-0.863079
-0.734883
-0.796742
-0.827371
-0.700716
-0.706084
-0.841293
-0.865738
-0.865024
-0.993836
-0.870728
-0.859253
-0.812293
-0.721291
-0.700793
-0.783634
-0.719011
-0.83075
-0.774731
-0.834613
-0.713093
-0.717414
-0.773212
-0.870755
-0.875091
-0.871152
-0.979043
-0.833571
-0.920358
-0.841647
-0.846461
-0.839152
-0.69931
-0.69569
-0.858404
-0.802572
-0.697321
-0.711552
-0.759758
-0.717283
-0.76915
-0.780415
-0.873603
-0.860384
-0.932697
-0.870887
-0.849159
-0.249283
-0.25201
-0.225724
-0.260908
-0.238669
-0.241877
-0.271014
-0.313064
-0.265356
-0.245189
-0.245993
-0.250765
-0.224821
-0.251613
-0.279666
-0.291691
-0.260452
-0.240367
-0.181145
-0.210995
-0.241207
-0.180462
-0.332246
-0.177346
-0.197947
-0.205212
-0.179716
-0.118521
-0.140688
-0.0800354
-0.131417
-0.241683
-0.14212
-0.196192
-0.160949
-0.138161
-0.200953
-0.186452
-0.214634
-0.169798
-0.346447
-0.179487
-0.174676
-0.20553
-0.204793
-0.192755
-0.147189
-0.0822513
-0.142567
-0.1327
-0.144771
-0.217818
-0.235013
-0.243045
-0.215225
-0.180685
-0.225376
-0.199103
-0.182396
-0.252534
-0.326447
-0.342142
-0.259365
-0.159973
-0.203492
-0.139709
-0.257205
-0.14319
-0.151424
-0.0918599
-0.149439
-0.24293
-0.147089
-0.240559
-0.204484
-0.247209
-0.215443
-0.327779
-0.187924
-0.228993
-0.184832
-0.283746
-0.256788
-0.147209
-0.144061
-0.0889484
-0.224571
-0.148052
-0.14856
-0.517604
-0.417405
-0.424441
-0.512371
-0.554305
-0.645972
-0.5606
-0.642947
-0.552047
-0.625946
-0.539899
-0.644397
-0.503214
-0.416044
-0.408017
-0.509661
-0.532887
-0.591085
-0.601189
-0.531191
-0.532564
-0.625633
-0.537209
-0.606273
-0.778122
-0.666581
-0.673809
-0.723054
-0.694251
-0.735436
-0.777601
-0.790622
-0.712851
-0.768555
-0.696767
-0.810701
-0.978172
-0.827803
-0.898828
-0.841059
-0.819442
-0.990048
-0.78459
-0.816399
-0.777339
-0.672935
-0.712071
-0.751743
-0.774695
-0.701931
-0.742226
-0.794755
-0.653995
-0.684406
-0.802199
-0.804933
-0.802147
-0.88879
-0.96087
-0.813203
-0.801789
-0.985725
-0.761538
-0.663828
-0.63972
-0.714934
-0.65277
-0.777042
-0.703705
-0.769742
-0.615471
-0.629729
-0.733947
-0.808943
-0.925366
-0.825067
-0.955499
-0.802391
-0.946983
-0.76394
-0.862317
-0.774992
-0.783739
-0.965345
-0.774687
-0.645696
-0.628639
-0.804955
-0.754762
-0.631402
-0.628216
-0.683629
-0.637116
-0.695072
-0.737038
-0.806497
-0.793965
-0.930747
-0.86997
-0.805952
-0.78297
-0.963923
-0.272049
-0.245583
-0.287339
-0.23565
-0.36849
-0.242525
-0.312171
-0.29694
-0.277465
-0.301203
-0.252567
-0.242373
-0.282951
-0.318262
-0.244107
-0.284887
-0.323831
-0.272008
-0.386006
-0.281136
-0.251053
-0.322612
-0.253084
-0.290373
-0.316695
-0.249446
-0.287458
-0.291253
-0.371823
-0.3885
-0.271657
-0.237556
-0.24457
-0.317604
-0.276214
-0.241606
-0.323533
-0.248225
-0.216914
-0.282768
-0.189339
-0.254707
-0.188697
-0.248932
-0.24999
-0.27621
-0.261589
-0.334745
-0.248851
-0.144529
-0.152426
-0.0987099
-0.153848
-0.239242
-0.155145
-0.259397
-0.186936
-0.171895
-0.271753
-0.253044
-0.214977
-0.286068
-0.188805
-0.248813
-0.285134
-0.188871
-0.245706
-0.277551
-0.264878
-0.257907
-0.252909
-0.160661
-0.101721
-0.163932
-0.154988
-0.15794
-0.265971
-0.265925
-0.294082
-0.221058
-0.190326
-0.319335
-0.250721
-0.192668
-0.286498
-0.326037
-0.418382
-0.315596
-0.300092
-0.193089
-0.273475
-0.218559
-0.271817
-0.185705
-0.167316
-0.116749
-0.165032
-0.266566
-0.180249
-0.279429
-0.276748
-0.419148
-0.2592
-0.272701
-0.221284
-0.295024
-0.197598
-0.315612
-0.194768
-0.286103
-0.276587
-0.161605
-0.166042
-0.113093
-0.269174
-0.163179
-0.175242
-0.493352
-0.376719
-0.382458
-0.48234
-0.520956
-0.584818
-0.527989
-0.576361
-0.517973
-0.567965
-0.506296
-0.574898
-0.4633
-0.315888
-0.400238
-0.397212
-0.47605
-0.489842
-0.557588
-0.56275
-0.480271
-0.492802
-0.564871
-0.501665
-0.562422
-0.666215
-0.591165
-0.600477
-0.633881
-0.605246
-0.648056
-0.65389
-0.728681
-0.609948
-0.733032
-0.603555
-0.77342
-0.937506
-0.751369
-0.822565
-0.77495
-0.734502
-0.908405
-0.718869
-0.922748
-0.70636
-0.954152
-0.680832
-0.598882
-0.61596
-0.672294
-0.73142
-0.611765
-0.659119
-0.718631
-0.594073
-0.60161
-0.68449
-0.765228
-0.704616
-0.808611
-0.89802
-0.721067
-0.750767
-0.899699
-0.629761
-0.592731
-0.574618
-0.631582
-0.586688
-0.638754
-0.62743
-0.648121
-0.57294
-0.579879
-0.639201
-0.72337
-0.919988
-0.738831
-0.923339
-0.730874
-0.856885
-0.675768
-0.766818
-0.689042
-0.712026
-0.882222
-0.652296
-0.592473
-0.582619
-0.676769
-0.737314
-0.700705
-0.896432
-0.773343
-0.746816
-0.692534
-0.892638
-0.284623
-0.240491
-0.318563
-0.240537
-0.27482
-0.242537
-0.334843
-0.277654
-0.330548
-0.281496
-0.311737
-0.284782
-0.305615
-0.236843
-0.238708
-0.289872
-0.307421
-0.237423
-0.274841
-0.349575
-0.294769
-0.362549
-0.283987
-0.239169
-0.303686
-0.239823
-0.284949
-0.309263
-0.237883
-0.273174
-0.343431
-0.268994
-0.359561
-0.287395
-0.240697
-0.245656
-0.321731
-0.299838
-0.24364
-0.337594
-0.282189
-0.229102
-0.324846
-0.204149
-0.312032
-0.203414
-0.299427
-0.298218
-0.326939
-0.328957
-0.314456
-0.273914
-0.190965
-0.169184
-0.12676
-0.194977
-0.268926
-0.172231
-0.296044
-0.233803
-0.226451
-0.304095
-0.281727
-0.227065
-0.298485
-0.199466
-0.30914
-0.286642
-0.201888
-0.298808
-0.341815
-0.329507
-0.315862
-0.274759
-0.180891
-0.130202
-0.200123
-0.198391
-0.175194
-0.259101
-0.305636
-0.329453
-0.232092
-0.205316
-0.332862
-0.30026
-0.208515
-0.338932
-0.347169
-0.378741
-0.36156
-0.337676
-0.235535
-0.30963
-0.245016
-0.271467
-0.209158
-0.191641
-0.141552
-0.188731
-0.272824
-0.206268
-0.332874
-0.343985
-0.376234
-0.317008
-0.30672
-0.231699
-0.314177
-0.215742
-0.327075
-0.210858
-0.296443
-0.268457
-0.182876
-0.202465
-0.13874
-0.262926
-0.186295
-0.204108
-0.425633
-0.297182
-0.357121
-0.363141
-0.411265
-0.464534
-0.554124
-0.47553
-0.547035
-0.46012
-0.541263
-0.446712
-0.547262
-0.390807
-0.306952
-0.349113
-0.339618
-0.406225
-0.425035
-0.506404
-0.521828
-0.410716
-0.429264
-0.53627
-0.442468
-0.525263
-0.641216
-0.567355
-0.632083
-0.558331
-0.694035
-0.844333
-0.667544
-0.714345
-0.697195
-0.651934
-0.818519
-0.665347
-0.819494
-0.656418
-0.832341
-0.63929
-0.5528
-0.555729
-0.644089
-0.686831
-0.630545
-0.698947
-0.809065
-0.640369
-0.678655
-0.80951
-0.640137
-0.536417
-0.543938
-0.635823
-0.65273
-0.817874
-0.649655
-0.825884
-0.650244
-0.81823
-0.600759
-0.664601
-0.615734
-0.655768
-0.816805
-0.640047
-0.549408
-0.54609
-0.642608
-0.656233
-0.629531
-0.809411
-0.674281
-0.662208
-0.627349
-0.815489
-0.310005
-0.241981
-0.314538
-0.246327
-0.306602
-0.242089
-0.32084
-0.326464
-0.313853
-0.324774
-0.305951
-0.307853
-0.289416
-0.224152
-0.230431
-0.287097
-0.284243
-0.23013
-0.321499
-0.397989
-0.315307
-0.387231
-0.305847
-0.234832
-0.291426
-0.226846
-0.301345
-0.284881
-0.233409
-0.324382
-0.370433
-0.327099
-0.382713
-0.304586
-0.247939
-0.243399
-0.329461
-0.3063
-0.242225
-0.326514
-0.305489
-0.236663
-0.309187
-0.223203
-0.303407
-0.221636
-0.303951
-0.396258
-0.347273
-0.349885
-0.366208
-0.270151
-0.212641
-0.19273
-0.148983
-0.216151
-0.272333
-0.194193
-0.362551
-0.283904
-0.276979
-0.362503
-0.30519
-0.233533
-0.313244
-0.217611
-0.314999
-0.301574
-0.219968
-0.393055
-0.365103
-0.357117
-0.367131
-0.298517
-0.314899
-0.24393
-0.223496
-0.319892
-0.300921
-0.224702
-0.371177
-0.410342
-0.396815
-0.383912
-0.376788
-0.282079
-0.364927
-0.282522
-0.368503
-0.36879
-0.390533
-0.36415
-0.297393
-0.245083
-0.316689
-0.227068
-0.321017
-0.225667
-0.298099
-0.348404
-0.318148
-0.295054
-0.301
-0.334155
-0.390441
-0.499788
-0.405212
-0.487573
-0.386029
-0.468507
-0.370844
-0.483015
-0.319939
-0.325073
-0.286791
-0.281404
-0.330454
-0.348055
-0.437911
-0.447214
-0.335632
-0.35241
-0.464271
-0.366311
-0.450531
-0.625756
-0.53672
-0.634186
-0.530056
-0.666413
-0.760111
-0.583625
-0.625529
-0.660661
-0.569255
-0.760034
-0.676285
-0.818585
-0.673027
-0.837256
-0.619645
-0.513114
-0.526255
-0.609511
-0.660366
-0.546757
-0.610102
-0.73546
-0.557573
-0.658617
-0.74434
-0.592383
-0.477138
-0.488418
-0.587212
-0.664246
-0.805564
-0.670315
-0.775486
-0.617992
-0.671718
-0.500595
-0.558686
-0.517819
-0.609778
-0.676641
-0.594811
-0.509245
-0.493664
-0.605771
-0.633652
-0.539345
-0.709455
-0.572971
-0.642844
-0.52877
-0.69833
-0.285939
-0.239399
-0.318245
-0.247083
-0.282091
-0.23868
-0.325119
-0.28484
-0.307083
-0.289784
-0.302363
-0.254969
-0.246765
-0.214078
-0.223524
-0.253269
-0.24954
-0.223334
-0.304356
-0.441476
-0.312088
-0.430153
-0.257479
-0.225883
-0.258869
-0.215575
-0.259458
-0.253431
-0.224066
-0.303145
-0.422328
-0.301708
-0.426859
-0.402766
-0.406209
-0.408323
-0.388751
-0.420498
-0.297558
-0.290287
-0.426742
-0.303586
-0.24569
-0.30885
-0.228296
-0.306004
-0.300314
-0.230002
-0.406496
-0.419836
-0.412377
-0.412842
-0.419915
-0.435864
-0.422874
-0.411301
-0.417171
-0.300092
-0.428024
-0.304942
-0.418956
-0.419879
-0.419545
-0.412358
-0.291124
-0.286034
-0.242307
-0.246538
-0.280757
-0.320469
-0.435148
-0.331562
-0.429687
-0.318718
-0.419936
-0.306918
-0.428856
-0.266455
-0.229802
-0.235123
-0.227134
-0.277688
-0.287359
-0.38466
-0.401191
-0.273427
-0.291313
-0.417785
-0.303214
-0.406117
-0.588957
-0.474217
-0.58666
-0.46277
-0.632427
-0.743918
-0.62313
-0.75547
-0.593103
-0.451864
-0.461076
-0.590224
-0.566754
-0.418341
-0.433241
-0.533744
-0.598379
-0.731349
-0.618541
-0.697935
-0.573454
-0.449786
-0.43821
-0.588154
-0.291208
-0.294763
-0.294955
-0.29091
-0.321676
-0.416382
-0.325265
-0.415366
-0.320266
-0.453487
-0.322475
-0.419617
-0.40191
-0.440516
-0.450951
-0.406874
-0.403839
-0.343338
-0.334328
-0.411981
-0.403032
-0.453839
-0.453214
-0.409088
-0.427408
-0.425576
-0.420879
-0.453733
-0.423908
-0.346291
-0.413945
-0.358342
-0.422651
-0.44971
-0.42375
-0.410989
-0.233336
-0.173361
-0.185836
-0.1891
-0.227069
-0.257249
-0.377926
-0.268294
-0.364969
-0.255285
-0.346826
-0.249128
-0.36089
-0.222186
-0.158642
-0.183693
-0.182385
-0.226475
-0.243835
-0.319824
-0.328935
-0.240645
-0.244452
-0.343469
-0.248858
-0.331275
-0.496925
-0.411419
-0.518944
-0.398393
-0.513085
-0.576492
-0.487858
-0.605107
-0.48731
-0.382267
-0.394911
-0.460823
-0.430128
-0.352424
-0.364509
-0.412081
-0.46545
-0.570517
-0.481639
-0.550637
-0.435653
-0.378975
-0.367163
-0.45448
-0.33705
-0.259814
-0.326488
-0.261655
-0.372381
-0.464082
-0.377184
-0.460148
-0.370222
-0.440852
-0.35745
-0.457964
-0.472577
-0.430496
-0.442994
-0.459963
-0.46899
-0.385062
-0.378066
-0.477954
-0.475067
-0.457853
-0.447213
-0.485702
-0.49926
-0.478891
-0.473024
-0.503232
-0.486136
-0.387754
-0.479739
-0.396678
-0.496581
-0.460857
-0.470267
-0.487919
-0.211544
-0.123023
-0.160873
-0.165801
-0.210549
-0.235284
-0.317049
-0.239632
-0.307729
-0.234338
-0.291692
-0.221159
-0.305506
-0.192506
-0.0760968
-0.151118
-0.141015
-0.202795
-0.196163
-0.248982
-0.265519
-0.182354
-0.198961
-0.285769
-0.213174
-0.269462
-0.404832
-0.348297
-0.408828
-0.335417
-0.435852
-0.523875
-0.428968
-0.530376
-0.408434
-0.317051
-0.33238
-0.400426
-0.368258
-0.271357
-0.289216
-0.345024
-0.403783
-0.519368
-0.421164
-0.499162
-0.375315
-0.311009
-0.294059
-0.394473
-0.335694
-0.266351
-0.339128
-0.264038
-0.357919
-0.406078
-0.345708
-0.429029
-0.361818
-0.449327
-0.366576
-0.436305
-0.496477
-0.480422
-0.477166
-0.503634
-0.479842
-0.414466
-0.410758
-0.460499
-0.491571
-0.46442
-0.474199
-0.471848
-0.449426
-0.420595
-0.445333
-0.448043
-0.451447
-0.415828
-0.456026
-0.421093
-0.450725
-0.462995
-0.453407
-0.464828
-0.140931
-0.049228
-0.0972413
-0.101072
-0.133133
-0.162188
-0.240574
-0.176672
-0.224849
-0.159625
-0.211811
-0.149838
-0.222065
-0.131331
-0.064643
-0.0982436
-0.0987743
-0.131924
-0.146129
-0.190487
-0.199662
-0.145853
-0.145501
-0.210507
-0.150101
-0.201011
-0.311339
-0.262175
-0.333265
-0.246398
-0.335461
-0.407551
-0.312273
-0.444324
-0.307952
-0.233658
-0.243832
-0.291917
-0.263998
-0.207085
-0.219158
-0.239285
-0.283056
-0.396345
-0.306723
-0.344143
-0.268944
-0.23218
-0.221211
-0.288204
-0.299473
-0.231216
-0.218114
-0.308212
-0.32438
-0.391577
-0.316727
-0.394201
-0.326985
-0.39734
-0.333552
-0.39509
-0.449706
-0.418206
-0.415284
-0.448383
-0.456739
-0.438237
-0.435427
-0.458234
-0.450412
-0.413828
-0.415019
-0.45178
-0.454639
-0.411234
-0.412071
-0.456549
-0.46083
-0.439254
-0.458974
-0.441202
-0.453954
-0.41355
-0.412455
-0.452439
-0.12557
-0.0545611
-0.0868484
-0.0922026
-0.120423
-0.141204
-0.187349
-0.146506
-0.174296
-0.138042
-0.15828
-0.129915
-0.170388
-0.10203
0.0237716
-0.0789217
-0.0630898
-0.113059
-0.138037
-0.132605
-0.145674
-0.127638
-0.142847
-0.155614
-0.128357
-0.148709
-0.206024
-0.202666
-0.230285
-0.186315
-0.205828
-0.193006
-0.213315
-0.189986
-0.200964
-0.168582
-0.181821
-0.186147
-0.165428
-0.139036
-0.151766
-0.153053
-0.171998
-0.186071
-0.165755
-0.185551
-0.17001
-0.165273
-0.155447
-0.182161
-0.275214
-0.187486
-0.188356
-0.275763
-0.303193
-0.382451
-0.299305
-0.384996
-0.303914
-0.385149
-0.304628
-0.385168
-0.458295
-0.410969
-0.409626
-0.457252
-0.46833
-0.448199
-0.447253
-0.46983
-0.458671
-0.408756
-0.409355
-0.459229
-0.461631
-0.406548
-0.408813
-0.460074
-0.472599
-0.448355
-0.447566
-0.470235
-0.460839
-0.408542
-0.40882
-0.45933
-0.059737
0.0636204
-0.0174459
-0.0201869
-0.0551288
-0.108403
-0.127586
-0.116741
-0.115277
-0.10006
-0.102461
-0.0947876
-0.112717
-0.0432937
0.072297
-0.0147364
-0.0136375
-0.0486186
-0.0732405
-0.0752573
-0.067823
-0.085813
-0.0793893
-0.0986869
-0.086202
-0.088691
-0.135481
-0.134497
-0.149508
-0.121988
-0.135045
-0.111865
-0.12372
-0.124389
-0.131862
-0.109214
-0.119523
-0.120634
-0.106424
-0.0835554
-0.095523
-0.0934156
-0.113828
-0.109097
-0.101971
-0.121548
-0.10929
-0.105764
-0.0962232
-0.11752
-0.220452
-0.15787
-0.145787
-0.240602
-0.23506
-0.247534
-0.201531
-0.295912
-0.243238
-0.338923
-0.265065
-0.307946
-0.448489
-0.405018
-0.395445
-0.458883
-0.454898
-0.392593
-0.414893
-0.432559
-0.443409
-0.37071
-0.390715
-0.421803
-0.359404
-0.26224
-0.292035
-0.315964
-0.383859
-0.38312
-0.349489
-0.422535
-0.375027
-0.36218
-0.329204
-0.412258
-1.301
-1.53475
-1.30633
-1.52671
-1.31655
-1.3408
-1.53324
-1.32802
-1.30827
-1.34449
-1.53786
-1.33893
-1.50498
-1.33826
-1.58506
-1.34466
-1.49038
-1.35842
-2.02265
-1.66722
-1.74889
-1.6261
-1.64595
-1.79941
-1.96313
-1.56883
-1.63779
-2.14892
-1.93799
-1.91671
-2.47919
-2.03771
-1.65129
-1.6537
-2.0262
-2.005
-1.90005
-2.08896
-2.39968
-1.95256
-2.02436
-1.98844
-1.62334
-1.56428
-1.89052
-1.62561
-1.82818
-1.93435
-2.13754
-1.69523
-1.68112
-1.6876
-1.88362
-2.0386
-2.43147
-2.34584
-2.0667
-1.95431
-1.6531
-1.66946
-1.62484
-2.00292
-1.97564
-1.87484
-2.34694
-1.7209
-2.10334
-2.01694
-1.7844
-1.12755
-1.06612
-1.28283
-1.09085
-1.28014
-1.10282
-1.08767
-1.34251
-1.59474
-1.34052
-1.0634
-1.08428
-1.35041
-1.59594
-1.33006
1.26341
1.29873
0.683924
0.683797
1.17056
1.24913
1.16938
0.751896
1.02382
0.832505
1.09577
0.835356
1.09353
0.686717
0.689401
1.27392
1.19166
1.17679
-1.66862
-1.66939
0.683961
0.67202
1.01027
0.820745
1.09673
0.815174
1.09861
1.20889
1.19191
0.681934
0.671209
1.19815
1.20346
0.199891
0.212988
0.330758
0.337966
0.15572
0.214389
0.330713
0.148807
0.142447
-0.0142833
0.0985474
0.188039
0.0908333
0.21464
0.364904
0.1931
0.372055
0.140967
0.143171
-0.022518
0.253127
0.129276
0.219699
0.375067
0.121927
0.371923
0.200873
0.335694
0.205504
0.335086
0.197317
0.20921
0.33334
0.621655
0.613922
0.438379
0.449037
0.633394
0.606102
0.624294
0.453446
0.638701
0.453382
0.640404
0.622698
0.621085
0.628326
0.478426
0.623257
0.473752
0.625234
0.613345
0.456559
0.630103
0.62376
0.457388
0.618198
-1.79875
-2.09604
-1.67789
-1.73609
-1.83498
-1.65658
-2.02506
-1.81229
-2.32538
-1.99263
-1.56201
-1.68764
-1.71079
-2.06663
-1.39765
-1.38504
-1.67147
-1.3127
-1.11273
-1.09327
-1.3104
-1.11362
-1.39121
-1.33636
-1.4952
-1.6172
-1.37721
-1.35632
-1.63362
-1.31679
-1.11447
-1.34111
-1.11207
-1.39153
-1.65814
-1.38275
-1.51442
-1.39784
-1.369
-1.63904
-1.36741
-1.66875
-1.35585
-1.67697
-2.0968
-1.7255
-2.08741
-2.45524
-2.1158
-2.13866
-1.72564
-2.00842
-2.09361
0.677417
0.679722
1.22291
1.24051
1.05255
0.766159
1.22896
0.760578
1.20887
0.680982
0.679937
1.26375
1.24814
-1.6816
-1.85392
-1.67913
-1.70803
-1.87407
-1.71212
-2.1336
-2.10925
-2.08403
-1.99954
-1.70722
-1.99098
-1.91038
-1.69042
-1.71488
-1.71511
0.697885
0.700721
1.07224
0.767579
1.2338
0.761018
1.26124
1.32489
1.30596
0.682424
0.691133
1.26034
1.2961
0.153974
0.144953
0.107609
-0.0662361
-0.00568724
0.0930875
0.0881074
0.0960254
0.141505
0.353844
0.132778
0.358693
0.109517
0.0972655
-0.00930756
0.109538
0.09868
0.143986
0.356734
0.156346
0.3561
0.630398
0.674734
0.480358
0.477959
0.630096
0.673367
0.628994
0.475771
0.674585
0.478217
0.673573
0.62788
0.624762
0.682704
0.473645
0.683845
0.474126
0.621875
0.625458
0.474056
0.675615
0.680077
0.473046
0.625883
-1.12147
-1.1047
-1.34168
-1.5625
-1.30749
-1.35758
-1.52651
-1.21549
-1.10456
-1.13895
-1.3206
-1.20679
-1.11518
-1.33929
-1.22292
-1.31156
-1.12848
-1.14196
-1.23793
-1.11948
-1.34454
-1.31956
-1.36201
-1.48178
-1.31692
-1.35152
-1.5172
-1.11633
-1.35073
-1.11838
-1.35962
-2.09424
-1.70259
-1.74055
-2.06848
-2.06117
-1.80678
-1.71078
-1.62332
-1.71949
-2.13244
-1.76812
-2.16216
-2.92108
-2.10863
-1.55443
-1.70858
-2.15737
-2.49873
-1.7934
-2.06826
-2.062
-1.71763
-1.75633
-2.0303
-1.70569
-1.59042
-1.65521
-1.70639
-1.7126
-1.96968
-2.17533
-2.37954
-2.89869
-2.12631
0.698111
0.693787
1.35138
1.4131
1.11639
0.796208
1.37937
0.784101
1.34901
0.690208
0.690324
1.46898
1.42093
-2.01113
-1.69514
-1.65859
-2.03971
-1.93568
-1.24851
-1.62192
-2.08242
-1.54421
-2.05181
-1.76584
-2.11978
-1.79242
-2.02344
-2.09495
-1.97957
-1.60387
-1.64469
-1.91553
-2.15518
-2.50587
-2.15594
-2.18816
0.652748
0.650254
1.14319
0.800863
1.39039
0.811475
1.42681
1.58572
1.50867
0.690932
0.665252
1.47699
1.49385
0.0703172
-0.0568442
0.080406
-0.00751037
0.0740448
-0.042701
0.00594364
0.0832968
0.0642803
-0.00800258
0.0849912
0.100341
0.326607
0.108737
0.329835
0.0744475
0.0890112
-0.0653024
0.00682204
0.0718026
-0.0152417
0.0884964
0.102392
0.334629
0.116671
0.329497
0.618114
0.683838
0.471914
0.468173
0.619812
0.68063
0.6169
0.461652
0.681724
0.466263
0.681523
0.61442
0.606263
0.666221
0.450535
0.66526
0.453978
0.603481
0.608877
0.458738
0.682094
0.670478
0.455121
0.611584
-1.34176
-1.32052
-1.09642
-1.33225
-1.32472
-1.30078
-1.09748
-1.33505
-1.35705
-1.30586
-1.25931
-1.33222
-1.39907
-1.5623
-1.2763
-1.34551
-1.3747
-1.25122
-1.5465
-1.31426
-1.34105
-1.23173
-1.3471
-1.36553
-1.3205
-1.56954
-1.33405
-1.08824
-1.26773
-1.28089
-1.29892
-1.08885
-1.30534
-1.57496
-1.31697
-1.36999
-1.74412
-1.6224
-1.6034
-1.61668
-1.73728
-1.87714
-1.70473
-1.45414
-1.96072
-1.78124
-1.6099
-1.57016
-1.53227
-1.85948
-1.82604
-1.46416
-1.35712
-1.70936
0.671918
0.677638
1.6016
1.65799
1.19332
0.83221
1.56953
0.822413
1.52272
0.729307
0.679699
1.72146
1.6683
-1.61742
-1.57931
-1.75223
-2.04162
-1.53585
-1.68228
-2.08794
-1.52978
-0.941458
-2.11624
-1.75909
-2.17684
-1.44988
-1.02436
-1.57546
-1.72403
-1.47503
-1.96259
-1.51481
-2.0624
-1.52128
-1.60411
-1.26029
-1.81269
-1.72211
-2.19601
-1.10191
-1.70074
0.768262
0.757337
1.23066
0.838842
1.59209
0.857044
1.66359
1.94212
-2.28236
-2.71881
1.86283
0.734004
0.750076
-1.71388
-2.11017
1.75
-2.95876
1.84096
0.0572032
-0.0290507
0.0577096
-0.0473563
0.045389
-0.0805354
-0.00354221
0.0669364
0.0423316
-0.055923
0.0704707
0.0907672
0.311654
0.08357
0.318252
0.0486266
0.0770463
-0.0387545
-0.000244618
0.0539617
-0.050416
0.0739686
0.0911476
0.319741
0.0842105
0.317377
0.600417
0.673558
0.449343
0.267098
0.445941
0.60239
0.676974
0.601379
0.441804
0.265232
0.691492
0.444121
0.678214
0.604513
0.60793
0.72692
0.230047
0.439803
0.716352
0.439779
0.607809
0.60623
0.441546
0.23236
0.696238
0.707235
0.439608
0.604629
-1.29
-1.62908
-1.31038
-1.05814
-1.25694
-1.23887
-1.23005
-1.05376
-1.23325
-1.6363
-1.30067
-1.31401
-1.29158
-1.54558
-1.2821
-0.992292
-0.977701
-1.16296
-1.18582
-1.22652
-0.982394
-1.19276
-1.52401
-1.22482
-1.26949
-1.34091
-1.6395
-1.3114
-1.7697
-1.35359
-1.89147
-1.27992
-1.26744
-0.863409
-2.13108
-1.00584
-0.781541
-1.36474
-2.05954
-1.39433
-1.6536
-1.43015
-1.93606
-1.39655
-1.45674
-1.92379
-1.1959
-1.86145
-0.909724
-0.661231
-0.718753
-2.01601
-1.11583
-1.66201
-1.97851
-1.98879
0.770153
0.778846
1.9868
-2.28061
-1.39867
2.06346
-2.12833
1.19592
0.950345
1.93019
1.90569
0.933599
-1.68006
-2.09993
-1.99558
0.797195
0.780909
-2.09477
-1.20405
2.06484
2.07542
-2.12596
-1.19765
-1.27339
-1.50712
-1.74173
-1.21902
-1.22142
-1.60591
-1.17572
-1.44767
-1.1618
-1.46184
-1.19834
-1.52443
-1.12486
-1.02702
-1.83551
-0.620244
-0.724846
-0.587803
-1.04448
-1.48554
-1.6773
-1.9708
-1.94353
0.83181
0.816627
1.19657
0.95658
1.93092
1.8634
0.962521
1.67133
-1.90461
-0.565872
1.94237
-2.073
0.800688
0.813939
-1.66761
-1.87266
-1.89472
-2.08542
2.06993
-0.594723
1.94013
-2.16869
-0.0117676
-0.116175
-0.00214999
-0.109759
0.00642642
-0.0851322
-0.0364149
0.0347793
0.000744354
-0.0819154
0.0393756
0.061058
0.292399
0.0514746
0.300079
0.00964415
0.0489723
-0.0961323
-0.0321284
0.0160443
-0.0772421
0.0443871
0.060948
0.306216
0.0688905
0.300073
0.606729
0.734101
0.438311
0.191786
0.434309
0.607468
0.738491
0.607076
0.431841
0.191713
0.747426
0.434066
0.7405
0.606943
0.604238
0.766884
0.182162
0.420456
0.760944
0.424533
0.601912
0.605039
0.429161
0.182182
0.750842
0.757798
0.42662
0.605336
-1.14367
-1.42938
-1.18867
-0.979693
-0.999206
-1.15347
-1.12636
-1.00565
-1.09124
-0.979366
-0.996183
-1.11734
-1.00245
-1.44962
-1.21911
-1.20198
-1.12021
-1.28572
-1.08242
-0.955055
-1.02815
-0.963004
-1.03195
-0.956627
-1.03413
-1.12838
-1.07489
-0.989711
-0.972333
-0.956423
-1.04841
-1.27077
-1.13835
-1.07694
-1.13718
-1.5383
-1.5656
-1.64
0.835598
0.847921
1.66716
-1.85321
-0.335037
1.48873
-1.65036
1.14898
1.0322
1.61309
1.64772
1.00883
-1.55858
-1.82857
-1.66355
0.875565
0.851916
-1.50619
-0.31072
1.18229
1.46914
-1.61695
-1.35527
-1.52779
-1.44047
0.908158
0.902553
1.19134
1.03839
1.55932
1.46547
1.04843
0.617418
-1.20051
-0.332485
0.768195
-1.32359
0.879731
0.898452
-1.33914
-1.32361
-1.41464
-1.45649
1.15267
-0.369987
0.813151
-1.35852
-0.0469274
-0.156942
-0.0403991
-0.152669
0.0168199
0.169847
0.258204
0.013454
0.267133
0.0183158
0.275291
0.171459
0.0263804
0.267445
0.595799
0.770422
0.416643
0.167451
0.413671
0.598559
0.773363
0.595261
0.413854
0.167803
0.786926
0.4137
0.777862
0.593336
0.582936
0.795644
0.226945
0.401411
0.798884
0.405784
0.579244
0.585515
0.411289
0.228706
0.79018
0.796567
0.408238
0.58978
-1.17732
-1.10701
-1.24365
-1.13212
-1.20292
-1.1868
-1.02968
-0.924395
-1.02206
-1.01859
-1.01512
-1.12453
-0.937565
-1.00424
-1.19028
-0.980611
-0.910781
-0.965744
-1.00631
-1.00167
-1.17748
-1.17306
-1.2579
-1.1139
-1.12947
-1.13034
-1.14643
-1.07366
-1.80702
-1.10419
-1.19917
-1.01636
-1.82206
-1.17242
-0.93197
-0.941875
-1.17409
-0.94304
-0.855371
-0.894384
-0.93462
-0.915254
-1.1482
-1.16419
-1.19632
-1.17035
-0.965407
-0.952729
-0.865524
-0.937169
-1.17373
-0.933694
-1.1611
-1.16507
-1.05663
-0.957981
-1.89387
-0.981912
-1.83367
-1.22027
-1.22198
-1.18962
-1.07949
0.909262
0.916014
0.604902
-1.15433
-0.213012
0.467483
-0.969444
1.13642
1.14011
0.978146
1.0937
1.11766
-1.23223
-1.28261
-1.13725
0.929636
0.919118
-2.42464
-1.13792
-1.09803
-1.94278
-0.981844
0.950516
0.927607
1.08435
1.1494
0.951323
0.85318
1.15852
0.931528
0.926493
-2.38037
-1.07678
-1.88114
-0.860066
-1.93657
-0.921182
-2.22664
-0.0812264
-0.216281
-0.0730637
-0.228485
-0.0172365
0.0745313
0.189527
-0.0285768
0.193658
-0.00936174
0.237597
0.0794406
-0.00170265
0.230332
0.567374
0.793632
0.39647
0.190925
0.391894
0.574332
0.794633
0.562898
0.386137
0.191238
0.807147
0.389477
0.798656
0.557713
0.542881
0.820823
0.116108
0.367629
0.814966
0.372433
0.537011
0.547378
0.382239
0.121758
0.810036
0.813278
0.378459
0.55261
-1.13239
-0.902269
-0.969045
-1.48355
-0.931611
-1.07597
-1.61154
-1.08098
-0.935605
-0.79676
-0.881375
-0.863155
-0.914822
-1.1337
-1.16456
-0.87742
-0.885673
-1.05155
-1.20515
-1.19017
-2.00854
-1.03989
-0.820073
-0.775976
-0.881368
-0.845684
-0.898011
-1.02094
-1.16863
-0.987748
-0.948227
-1.89486
-0.939019
-1.21166
-1.7238
-1.2093
-1.79354
-1.09811
-1.87548
-1.07339
-0.867473
-1.47268
-0.832231
-1.0545
-0.819734
-1.34414
-1.0408
-0.863273
-0.849896
-1.05482
-1.02463
-0.853623
-0.7207
-0.749551
-0.862872
-0.758735
-0.98673
-1.0687
-1.50475
-1.68743
-1.07047
-1.03732
-0.800424
-0.87109
-0.732377
-0.865962
-1.02815
-0.772923
-1.05884
-1.78631
-1.08272
-1.70663
-1.07355
-0.805804
-0.787154
-1.27114
-0.799254
-1.30866
-1.0564
-1.41701
-0.918457
-1.46966
-0.63779
-1.65381
-0.693734
-1.14432
-2.67961
0.952267
0.957603
-2.53467
1.01568
1.2227
0.574101
0.648818
-2.31119
1.21274
-1.46574
-0.964104
-1.86367
-0.812022
-2.16029
-1.69318
-0.755867
-2.57136
-1.69564
0.974202
-1.73989
-2.75589
0.957956
-1.07115
-1.45925
-0.772732
-0.59833
-1.34537
-1.10517
-0.554352
-1.56917
1.03276
-1.55117
-1.64573
1.00536
-1.04328
-0.978329
0.935228
1.22651
0.565074
0.521646
-2.17508
1.21906
-1.61836
-1.68917
0.978751
-1.65926
-2.70336
1.00194
-1.01098
-0.738913
-1.31501
-0.481657
-1.3134
-0.51559
-0.789928
-0.121461
-0.241642
-0.114904
-0.241693
-0.0591066
0.0596577
0.166093
-0.0653642
0.169427
-0.0580351
0.175187
0.0627406
-0.049596
0.170824
0.524602
0.821961
0.363208
0.0483379
0.359088
0.531498
0.817432
0.520249
0.352538
0.0454751
0.816913
0.3563
0.816506
0.515036
0.500979
0.832023
-0.0154648
0.345097
0.825604
0.345994
0.497765
0.504443
0.349506
-0.00122541
0.819648
0.822691
0.346886
0.5101
-1.00938
-0.712243
-0.69639
-1.18904
-0.739406
-0.964722
-1.23534
-0.928376
-0.847477
-0.685665
-0.738551
-0.730009
-0.832605
-0.970397
-0.962074
-0.878553
-0.82824
-0.92846
-1.03154
-1.45823
-1.07339
-1.28119
-0.910491
-0.68865
-0.669437
-0.805319
-0.711472
-0.824829
-0.884739
-1.02713
-0.721969
-0.770542
-1.27188
-0.760051
-1.04635
-1.24947
-1.02056
-1.2129
-0.950904
-1.26877
-0.913426
-0.68324
-1.16035
-0.601988
-0.946605
-0.650338
-1.07808
-0.905736
-0.867683
-0.836853
-0.9289
-0.84062
-0.726327
-0.597887
-0.598362
-0.729
-0.61428
-0.772814
-0.942198
-1.18977
-1.21181
-0.862246
-0.857804
-0.665281
-0.791786
-0.615811
-0.755129
-0.875155
-0.638153
-0.945516
-1.20828
-0.947443
-1.21569
-0.895765
-0.568341
-0.585313
-0.901078
-0.618869
-1.04577
-0.838456
-0.492913
-0.586073
-1.20047
-0.342272
-1.26509
-0.37147
-0.431016
-0.72163
1.03603
-1.49325
-1.03236
-1.27916
1.04043
-0.147866
0.833854
1.17845
0.515958
0.540886
-0.052898
1.20341
-0.514826
-0.617547
-1.34143
-0.434435
-0.634121
-1.28083
-0.399086
-0.618667
-1.20981
1.04802
-1.26503
-0.453717
1.04432
-0.155158
-0.278669
-0.148429
-0.287792
-0.0908019
-0.1002
0.130714
-0.0992895
0.136425
-0.0897228
0.143973
-0.116087
-0.0838251
0.139648
0.48603
0.826331
0.345601
0.0118786
0.343704
0.492681
0.817783
0.479197
0.334654
-7.44554e-06
0.816078
0.340148
0.820481
0.470986
-0.82252
-0.492878
-0.474813
-0.897089
-0.528722
-0.839144
-0.883078
-0.769025
-0.711586
-0.528853
-0.57927
-0.55011
-0.702765
-0.763478
-0.790444
-0.789041
-0.771882
-0.751403
-0.803562
-1.17853
-0.849882
-1.12384
-0.763931
-0.485066
-0.503614
-0.662331
-0.523787
-0.685173
-0.745912
-0.863615
-0.475737
-0.554065
-0.863388
-0.531772
-0.830287
-0.839906
-0.827737
-0.831876
-0.808315
-1.11555
-0.777748
-0.473285
-0.795829
-0.417632
-0.82638
-0.459724
-0.731595
-0.761127
-0.774465
-0.733725
-0.746178
-0.653849
-0.573615
-0.444965
-0.448229
-0.599716
-0.450347
-0.606423
-0.78567
-0.855788
-0.847353
-0.819152
-0.692146
-0.465361
-0.639299
-0.448608
-0.622114
-0.722173
-0.454883
-0.786687
-0.795902
-0.800359
-0.848006
-0.715494
-0.399213
-0.437956
-0.575452
-0.449702
-0.657243
-0.639301
-0.19503
-0.322322
-0.18594
-0.333234
-0.1414
0.259938
0.0905829
-0.151673
0.0953338
-0.139322
0.104116
0.266159
-0.1276
0.0991337
-0.501514
-0.373143
-0.315957
-0.397971
-0.391301
-0.471514
-0.435453
-0.803699
-0.629027
-0.664638
-0.790302
-0.871866
-0.844734
-0.847387
-0.76195
-0.536673
-0.333506
-0.422988
-0.512907
-0.405545
-0.572721
-0.475682
-0.871829
-0.722832
-0.854377
-0.75467
-0.742054
-0.619579
-0.590018
-0.783177
-0.773567
-0.483651
-0.563503
-0.68937
-0.793838
-0.698489
-0.844929
-0.594328
-0.23234
-0.365903
-0.223197
-0.374625
-0.181806
0.112081
0.0641334
-0.147192
0.0749472
-0.17963
0.0835886
0.128196
-0.170396
0.0784133
-0.46736
-0.491172
-0.503858
-0.419157
-0.517189
-0.449232
-0.655731
-0.318155
-0.458089
-0.257157
-0.397677
-0.293095
-0.419251
-0.518547
-0.516936
-0.414496
-0.404358
0.888295
-0.160063
-0.214572
-0.471019
-0.399654
-0.25019
0.734436
-0.392864
-0.225685
-0.254676
-0.395604
-0.251498
-0.400754
-0.170462
0.203806
0.0201694
-0.168675
0.0218299
-0.173474
0.0325865
0.21103
-0.176309
0.0299954
-0.519028
-0.44036
-0.480367
-0.46047
-0.494084
-0.142223
1.40193
-0.516023
-0.0958772
-0.484493
-0.0388713
1.42463
-0.414711
-0.0905306
-0.359456
-0.427441
-0.368913
-0.441154
-0.277824
1.47681
0.0359498
-0.199008
0.00736205
-0.304978
-0.0289538
1.69264
-0.392207
-4.17388e-05
-0.269801
-0.414919
-0.268975
-0.41552
-0.172068
0.54885
0.0219346
-0.162864
0.00263567
-0.168861
0.00465006
0.578208
-0.171669
0.00359547
1.26906
1.38589
1.37991
1.34969
1.38712
1.33292
1.26979
1.49667
1.09573
0.831322
1.58144
1.51268
1.40892
1.42143
1.44121
1.42792
0.995793
0.666461
0.625564
0.700043
0.771123
0.92831
0.73821
1.52588
1.41212
1.40419
1.56005
1.4239
1.06691
0.793115
0.995808
0.655672
0.819077
1.12556
0.763723
1.3266
1.40607
1.38607
1.43332
1.39391
1.43075
1.33284
1.29053
1.40244
1.36619
1.38688
1.3784
1.28048
1.4131
1.33948
1.35002
1.44402
1.45371
1.36613
1.33163
1.34299
1.39973
1.40474
1.46242
1.37278
1.32702
0.430508
-1.90096
-0.031564
-0.0802382
0.681431
0.682159
1.25431
0.526019
1.33806
0.743327
1.41473
0.985803
1.35667
1.3274
1.48393
1.30778
1.45595
1.35481
1.32181
1.32876
1.39718
1.41717
1.44478
1.33165
1.3652
1.30878
1.49829
1.29401
1.22309
1.53861
1.3207
1.29585
1.10662
1.59751
1.20109
1.55575
1.27193
1.2058
1.69644
0.843822
1.6626
0.943149
1.17378
1.23007
1.07941
1.61234
1.64742
1.25324
0.97029
1.12544
1.72005
0.820258
0.688432
1.73965
1.15302
1.10146
0.614914
1.76622
0.677294
1.74826
1.08629
0.995278
1.81713
-1.42463
0.573196
0.963982
1.80479
0.637464
1.02621
0.755648
1.80031
-1.56239
1.79776
1.0619
0.688831
0.014817
0.0245597
0.0314303
0.0139728
0.0292013
0.0326412
0.0323771
0.0313486
0.0329976
0.0440684
0.0424002
0.0311284
0.0445514
0.0296957
0.0318016
0.0193516
0.0450031
0.0165167
0.0431472
0.0101273
0.0521379
0.0461432
-0.00627007
0.0541336
0.00356015
0.0564457
-0.00298774
0.0519764
0.0162596
-0.0223892
-0.00532286
0.0145275
0.00230438
0.0252605
-0.00327713
-0.017163
-0.0059286
-0.00996804
-0.081407
-0.072696
-0.0672072
-0.058051
0.02175
0.0179452
0.0106334
0.0013349
0.0297811
0.0388577
0.00430649
0.00734648
0.00296528
0.0110549
-0.0253731
0.00721979
-0.00198412
-0.0183955
0.0130732
-0.00362927
0.0395301
0.0104332
0.00166533
0.00697786
0.0185812
0.00721885
0.0144378
0.0078486
-0.0134657
-0.0103792
-0.00853621
-0.0076302
0.00994076
0.0166345
0.00839366
-0.00416706
-0.00460874
-0.00227554
-0.00416943
0.0136078
-0.00505173
0.0162872
-0.0134743
0.0383536
-0.0124212
0.0386545
0.0127747
0.0202885
0.0135781
0.0437236
-0.00550021
0.0352928
-0.00358973
0.0130269
-0.00176823
0.00358486
-0.0101816
0.0335352
-0.00538628
0.0175832
0.0117125
0.0245662
0.00745091
0.0298301
-0.00462926
0.0412467
-0.00911342
-0.17486
-0.162484
-0.16882
-0.191152
-0.157852
-0.179475
-0.188885
-0.211221
-0.181913
-0.168727
-0.217354
-0.178196
-0.213582
-0.214633
-0.0204589
-0.00712109
0.0203402
-0.0329059
-0.033389
-0.0219856
0.00297763
0.110699
0.133873
0.0301455
0.0840568
0.120769
0.0768249
0.141595
-0.0164104
-0.0264627
-0.0175601
-0.043186
-0.0233922
-0.0434007
-0.0241987
-0.0183959
-0.026677
-0.019199
-0.042501
-0.0250139
-0.0423387
-0.0254648
-0.0193095
-0.0281501
-0.0193228
-0.0416558
-0.0257143
-0.042196
-0.0253751
0.0320219
0.211122
-0.00946827
-0.00410523
0.03739
0.0335001
0.329876
0.0057196
0.0349748
0.0216673
0.166347
0.0324462
0.00954527
0.0823755
-0.229474
-0.241068
-0.23816
-0.245707
-0.234863
-0.239855
-0.234708
-0.538756
-0.449254
-0.407693
-0.511992
-0.438472
-0.551692
-0.492012
-0.473154
-0.399867
-0.353812
-0.440106
-0.389947
-0.486054
-0.419
-0.409306
-0.348262
-0.294067
-0.366525
-0.335268
-0.423407
-0.345571
-0.345766
-0.292016
-0.239425
-0.299751
-0.279558
-0.359713
-0.282496
-0.165693
-0.107317
-0.139956
-0.134759
-0.182305
-0.112523
-0.151119
-0.278916
-0.237227
-0.188305
-0.235759
-0.222891
-0.295549
-0.220053
-0.0212483
-0.0470141
-0.0230701
-0.0224263
-0.00549775
-0.0281001
-0.0099835
-0.116962
-0.0766752
-0.0967625
-0.095099
-0.123106
-0.0779069
-0.0999065
-0.162963
-0.321018
-0.308832
-0.170449
-0.0247518
-0.0483138
-0.0259439
-0.0308935
-0.0136618
-0.0352511
-0.0168621
-0.0795968
-0.0517164
-0.0635474
-0.0640872
-0.080158
-0.0513365
-0.062728
-0.311783
-0.257416
-0.28447
-0.299678
-0.0268391
-0.0486934
-0.0269363
-0.0370166
-0.0192923
-0.0397209
-0.0208731
-0.049866
-0.0334017
-0.0375326
-0.0413582
-0.0474437
-0.0319463
-0.0338291
-0.36632
-0.323898
-0.370969
-0.320718
-0.0268627
-0.0464668
-0.0257434
-0.0401675
-0.0219642
-0.0405136
-0.0218771
-0.0278695
-0.0195944
-0.0198697
-0.0246836
-0.0234839
-0.0181909
-0.0155294
-0.304167
-0.251853
-0.307095
-0.239166
-0.0244948
-0.0404121
-0.0223141
-0.0385368
-0.02135
-0.0363865
-0.0197626
-0.311859
-0.219106
-0.31974
-0.209706
-0.169503
-0.177395
-0.139258
-0.141249
-0.112411
-0.180695
-1.28914
-1.10777
-1.03638
-1.24969
-1.08276
-1.19234
-1.3206
-1.10464
-1.07172
-1.13723
-1.0617
-1.11704
0.106963
0.111275
0.0911276
0.234239
0.160387
0.202129
0.13753
-0.238733
-0.228839
0.0798061
0.0823061
0.0658922
0.180528
0.120714
0.152681
0.101859
-0.30881
-0.364848
-0.346126
-0.300248
0.0555991
0.0549422
0.0436594
0.133632
0.0874311
0.109379
0.0718932
-0.283169
-0.306299
-0.30826
-0.270598
0.0345889
0.0299999
0.0246558
0.0927328
0.0597258
0.0725358
0.0472352
-0.394364
-0.319975
-0.383077
-0.381121
0.0171641
0.00931473
0.0092836
0.0593782
0.0374925
0.0431059
0.0277941
-0.519467
-0.415727
-0.430184
-0.518235
0.00339592
-0.00652321
-0.0024029
0.0326318
0.0202032
0.0198945
0.0129614
-0.0625041
-0.0438761
-0.0467696
-0.0386772
-0.0370055
-0.030042
-0.0255563
-0.102691
-0.178839
-0.122575
-0.108027
-0.160755
-0.118794
-0.0939746
-0.55077
-0.55032
-0.557751
-0.549902
-0.0335889
-0.0261877
-0.0211845
-0.023613
-0.0165291
-0.0172598
-0.00866849
-0.0448898
-0.103345
-0.0765588
-0.0619978
-0.0816185
-0.0632706
-0.0526831
-0.588185
-0.630994
-0.641103
-0.585607
-0.419764
-0.420044
-0.278647
-0.278193
-0.403304
-0.392652
-0.31631
-0.327538
-0.111824
-0.106541
0.295843
-0.0658773
-0.04576
-0.0422397
-0.00124888
-0.210977
-0.21144
-0.217676
0.0109924
0.0709525
-0.015724
0.0366245
-2.25282
-0.566396
-1.3498
0.0986549
0.0529233
-0.00260684
0.176135
-2.93844
-2.78536
-2.24173
-3.37719
-0.975429
-0.161797
-2.14405
0.0469453
-0.00236692
-0.175246
0.810519
0.952631
0.748409
0.791251
0.730088
0.645155
0.661464
0.737617
0.87787
0.6745
0.717583
0.652514
0.578845
0.597526
0.659595
0.779764
0.585533
0.638056
0.507866
0.525172
0.566006
-0.152633
-0.143636
-0.142217
-0.0703088
-0.0375817
-0.0681218
-0.0417999
-0.0891321
-0.181438
-0.0893161
0.0640359
-0.0538815
0.0802392
-0.0588395
0.57858
0.680902
0.553586
0.44255
0.514672
0.461106
0.49436
0.492002
0.593244
0.469688
0.379552
0.447996
0.396531
0.430973
0.411211
0.508525
0.388451
0.318298
0.388217
0.335534
0.370979
0.131594
0.0161353
0.120108
0.0218455
0.08778
0.0204972
0.0790462
0.00186243
0.0640225
-0.00354815
0.0629194
0.0151938
0.0519874
0.00952981
0.10583
0.013052
0.0821627
0.0185683
0.0696617
0.0159293
0.054024
-0.00599194
0.0365257
-0.00715742
0.042933
0.00588543
0.0310255
0.0033166
0.212894
0.135931
0.198704
0.108416
0.144446
0.0986889
0.139635
-0.0929829
-0.106972
-0.171449
-0.17289
-0.0961454
-0.162823
-0.100134
-0.166041
-0.162147
-0.189768
-0.187995
-0.160833
-0.166861
-0.141452
-0.165647
-0.147782
-0.00815025
0.00256456
0.00791949
-0.0231737
0.00355331
-0.0275837
-0.00275238
-0.137352
-0.146242
-0.162739
-0.165422
-0.143989
0.0160831
0.0171837
0.0195007
-0.00754227
0.0147061
-0.0129529
0.0215918
0.0219867
0.0443072
0.024088
0.0260715
0.0110445
0.0284122
0.0313732
-0.10253
-0.0852298
-0.13387
-0.124343
-0.0886773
-0.100129
-0.12744
-0.31642
-0.244548
-0.239604
-0.319074
-0.233978
-0.311778
-0.323527
-0.308163
-0.231279
-0.21592
-0.297593
-0.224153
-0.305456
-0.300483
-0.501031
-0.504381
-0.547598
-0.543867
-0.501744
-0.547772
-0.502785
-0.483175
-0.47791
-0.515735
-0.52462
-0.481589
-0.479336
-0.522581
-0.204927
-0.178713
-0.181517
-0.18154
-0.504502
-0.499049
-0.231716
-0.455251
-0.46642
-0.237951
-0.230447
-0.225587
-0.236776
-0.209961
-0.24099
-0.184026
-0.18031
-0.196811
-0.155998
-0.168167
-0.179545
-0.196735
-0.477673
-0.473882
-0.532434
-0.533287
-0.478718
-0.472744
-0.533643
-0.464595
-0.45839
-0.4919
-0.496535
-0.460326
-0.462669
-0.497337
-0.177214
-0.171996
-0.18748
-0.178762
-0.171002
-0.200505
-0.220228
-0.18594
-0.190115
-0.221106
-0.216808
-0.192573
-0.225237
-0.453984
-0.454753
-0.449334
-0.452821
-0.222973
-0.201456
-0.197938
-0.217401
-0.204565
-0.2203
-0.223255
-0.461054
-0.457217
-0.496881
-0.489956
-0.462271
-0.455716
-0.496205
-0.448705
-0.45662
-0.469211
-0.476415
-0.46092
-0.446136
-0.47862
-0.448248
-0.445781
-0.209645
-0.195399
-0.213639
-0.187439
-0.212688
-0.192
-0.213107
-0.457462
-0.461905
-0.112917
-0.112562
-0.0891847
-0.130789
-0.0956782
-0.136831
-0.105507
-0.129791
-0.168392
-0.128947
-0.154641
-0.139667
-0.159212
-0.120442
-0.441963
-0.455836
-0.47526
-0.461869
-0.444367
-0.451048
-0.473169
-0.424516
-0.409416
-0.441436
-0.454017
-0.414877
-0.422375
-0.456208
-0.456258
-0.450983
-0.403525
-0.408882
-0.416539
-0.408278
-0.45183
-0.431082
-0.419182
-0.403847
-0.449623
-0.389593
-0.359961
-0.397403
-0.41359
-0.36679
-0.388574
-0.41597
-0.401777
-0.397378
-0.367188
-0.369563
-0.14007
-0.115262
-0.0788048
-0.136053
-0.0845718
-0.14039
-0.135721
-0.387642
-0.3835
-0.412685
-0.384742
-0.388752
-0.384989
-0.411312
-0.370051
-0.36795
-0.369044
-0.386064
-0.369339
-0.368808
-0.389027
-0.126469
-0.0755799
-0.101731
-0.131501
-0.0705255
-0.12681
-0.131777
-0.104052
-0.0746349
-0.0432406
-0.0916974
-0.0502909
-0.0984147
-0.0983004
-0.363671
-0.367242
-0.382584
-0.348928
-0.366321
-0.367547
-0.378815
-0.333686
-0.334985
-0.329785
-0.342111
-0.34048
-0.331546
-0.343755
-0.0575109
-0.00284926
-0.0152797
-0.0418738
-0.0459746
-0.0490364
-0.0269698
-0.0849567
-0.0381357
-0.046718
-0.0821732
-0.0310462
-0.0735597
-0.0923197
-0.0573288
-0.014609
-0.000749299
-0.0288251
-0.00610389
-0.0407056
-0.0506229
-0.323661
-0.332062
-0.338276
-0.318216
-0.327472
-0.325854
-0.334836
-0.278966
-0.273619
-0.298065
-0.294724
-0.278499
-0.276023
-0.297509
-0.0443264
0.00146083
-0.000117336
-0.0216692
0.00411087
-0.0217364
-0.0470731
-0.269836
-0.271974
-0.291874
-0.292336
-0.27318
-0.267375
-0.288939
-0.239566
-0.228809
-0.281576
-0.256603
-0.232665
-0.237314
-0.258954
0.0829873
0.0784735
0.139634
0.0840514
0.14592
0.0749269
0.0499977
-0.0594424
-0.0189934
-0.0135997
-0.0481697
-0.0133645
-0.0485562
-0.0576266
-0.232598
-0.227275
-0.253443
-0.280791
-0.234739
-0.223316
-0.250407
-0.193381
-0.161698
-0.274481
-0.202394
-0.168984
-0.190246
-0.205463
-0.0495094
-0.00986177
-0.0183919
-0.0466774
-0.00808614
-0.0528538
-0.0453127
-0.0938071
-0.0723849
-0.130867
-0.0912992
-0.0968308
-0.0707515
-0.12938
-0.362397
-0.356909
-0.369997
-0.358058
-0.0923371
-0.0687708
-0.090281
-0.126683
-0.0695966
-0.0921858
-0.12785
-0.18237
-0.159066
-0.197573
-0.254727
-0.186036
-0.152343
-0.193058
-0.172642
-0.151803
-0.190213
-0.170184
-0.148217
-0.171114
-0.172068
-0.378024
-0.356134
-0.353887
-0.372175
-0.0851147
-0.0682179
-0.124105
-0.0881447
-0.0901176
-0.0673215
-0.12008
-0.409812
-0.219929
-0.424055
-0.222616
-0.0781454
-0.0650637
-0.0873471
-0.111082
-0.0662049
-0.0739472
-0.114575
-0.165112
-0.151926
-0.166897
-0.171624
-0.168191
-0.152715
-0.163372
-0.0968358
-0.0823294
-0.0793589
-0.0950964
-0.0944823
-0.0992147
-0.0920949
-0.358342
-0.226145
-0.266624
-0.419576
-0.0744498
-0.0640728
-0.109344
-0.0836888
-0.0725397
-0.0627005
-0.110599
-0.246531
-0.308496
-0.308952
-0.246923
-0.076177
-0.0593099
-0.0821041
-0.113344
-0.0613233
-0.0777286
-0.111688
-0.610537
-0.581943
-0.581311
-0.593126
-0.559702
-0.55821
-0.590498
-0.947306
-0.921994
-1.02013
-1.02173
-0.923343
-0.945862
-1.02037
-0.253677
-0.25335
-0.258693
-0.0820162
-0.0753716
-0.0338915
-0.0135891
-0.069469
-0.0302579
-0.0881578
-0.0649071
-0.0877176
-0.00888877
0.0259711
-0.0900594
-0.0601858
0.0242946
-0.587013
-0.562515
-0.558576
-0.58992
-0.550402
-0.537295
-0.53643
-0.548014
-0.954699
-0.92384
-1.02813
-1.01965
-0.923001
-1.02749
-0.949398
-0.548521
-0.537945
-0.537795
-0.548205
-0.545057
-0.531287
-0.533039
-0.543714
-0.542228
-0.530396
-0.528636
-0.543092
-0.530533
-0.503995
-0.505625
-0.531479
-0.529468
-0.50336
-0.501538
-0.531689
-0.58075
-0.445457
-0.462267
-0.52501
-0.472744
-0.543073
-0.568975
-0.479947
-0.471788
-0.475175
-0.477525
-0.473886
-0.46984
-0.467709
-0.475727
-0.518056
-0.396791
-0.413441
-0.455916
-0.423826
-0.475308
-0.504569
-0.453699
-0.433924
-0.436893
-0.451337
-0.445962
-0.431348
-0.428012
-0.44903
-0.453531
-0.340462
-0.360696
-0.380488
-0.373697
-0.401633
-0.437792
-0.429742
-0.309076
-0.360621
-0.362261
-0.427441
-0.420396
-0.356651
-0.298669
-0.353232
-0.424575
-0.390497
-0.28196
-0.306157
-0.313377
-0.319226
-0.331522
-0.376111
-0.354855
-0.311551
-0.315269
-0.317859
-0.352497
-0.331161
-0.325825
-0.342298
-0.311792
-0.313666
-0.309165
-0.347414
-0.327315
-0.227094
-0.251276
-0.250015
-0.264296
-0.267787
-0.312185
-0.300291
-0.327541
-0.268604
-0.271508
-0.295904
-0.50131
-0.331514
-0.335904
-0.504248
-0.330717
-0.507954
-0.338191
-0.154796
-0.101677
-0.0731959
-0.11644
-0.100104
-0.157217
-0.112099
-0.288985
-0.264542
-0.302552
-0.26033
-0.292134
-0.2611
-0.177676
-0.19584
-0.196564
-0.208625
-0.207902
-0.243897
-0.240297
-0.209761
-0.206094
-0.209449
-0.23725
-0.335073
-0.266977
-0.405629
-0.266836
-0.355267
-0.248407
-0.379517
-0.313125
-0.220815
-0.250046
-0.317658
-0.234124
-0.28812
-0.351962
-0.599577
-0.168983
-0.155277
-0.105919
-0.109868
-0.155108
-0.168173
-0.110243
-0.192589
-0.324998
-0.175344
-0.336039
-0.167199
-0.10536
-0.152504
-0.110816
-0.153447
-0.11059
-0.166826
-0.511763
-0.330185
-0.363849
-0.508786
-0.159868
-0.102872
-0.118285
-0.082651
-0.157627
-0.104478
-0.123043
-0.490755
-0.408918
-0.483834
-0.399833
-0.159578
-0.107263
-0.0858237
-0.128364
-0.106071
-0.161193
-0.124494
-0.22957
-0.200507
-0.185569
-0.196713
-0.231662
-0.209776
-0.155476
-0.172028
-0.174024
-0.207867
-0.239421
-0.20941
-0.282784
-0.201945
-0.26126
-0.194945
-0.255649
-0.629514
-0.593331
-0.220171
-0.164031
-0.185681
-0.21596
-0.180688
-0.205532
-0.233003
-0.585166
-0.681188
-0.576444
-0.682923
-0.165793
-0.150721
-0.104421
-0.111302
-0.148519
-0.166221
-0.111653
-0.285113
-0.247397
-0.296008
-0.211584
-0.164271
-0.104056
-0.143418
-0.111694
-0.145147
-0.111945
-0.164102
-0.530034
-0.411454
-0.42627
-0.484452
-0.163612
-0.108472
-0.131116
-0.0929929
-0.162327
-0.109647
-0.134206
-0.579958
-0.534409
-0.586103
-0.524761
-0.163558
-0.111055
-0.0951657
-0.138749
-0.110719
-0.164773
-0.135606
-0.20183
-0.168686
-0.137341
-0.165273
-0.204767
-0.118924
-0.0659509
-0.0831019
-0.0869573
-0.11319
-0.176188
-0.149399
-0.199834
-0.134937
-0.190754
-0.134468
-0.184241
-0.571907
-0.678187
-0.572529
-0.673097
-0.158477
-0.113401
-0.122276
-0.141461
-0.123104
-0.139116
-0.164343
-0.573534
-0.647401
-0.52444
-0.653023
-0.1644
-0.142291
-0.101162
-0.1114
-0.143171
-0.163571
-0.110681
-0.369454
-0.324519
-0.371596
-0.325748
-0.162756
-0.0996084
-0.143433
-0.107527
-0.142762
-0.109585
-0.162227
-0.588965
-0.537202
-0.545839
-0.587986
-0.16593
-0.111245
-0.140389
-0.0979957
-0.164825
-0.111329
-0.143272
-0.629253
-0.599015
-0.633297
-0.59231
-0.164022
-0.109533
-0.0986486
-0.143748
-0.110933
-0.163836
-0.142359
-0.102974
-0.0786393
-0.0540151
-0.107335
-0.0754164
-0.0794765
-0.0673253
-0.0813858
-0.0787219
-0.0808227
-0.106739
-0.104288
-0.122972
-0.0903594
-0.123229
-0.0940489
-0.1028
-0.415754
-0.642218
-0.505523
-0.629231
-0.098181
-0.072575
-0.0818726
-0.0822498
-0.0847249
-0.0892221
-0.0926922
-0.386418
-0.426323
-0.374852
-0.442756
-0.159155
-0.14228
-0.0919985
-0.105883
-0.140517
-0.160603
-0.103385
-0.312894
-0.255211
-0.308279
-0.264134
-0.155878
-0.0893156
-0.13305
-0.098209
-0.136605
-0.101154
-0.153035
-0.637107
-0.601704
-0.610032
-0.634551
-0.161836
-0.108499
-0.143909
-0.0970456
-0.16266
-0.106655
-0.144166
-0.662779
-0.688339
-0.669372
-0.67931
-0.159251
-0.10249
-0.0962995
-0.141018
-0.104996
-0.157153
-0.142329
-0.0775569
-0.0813552
-0.065627
-0.0785021
-0.0798421
-0.00235966
0.0283222
-0.00564701
0.0397668
0.0489459
0.00297567
-0.0120214
-0.0717852
-0.0629373
-0.0725976
-0.0497739
-0.0810729
-0.0526241
-0.0622407
-0.359385
-0.420583
-0.372419
-0.402839
-0.0624801
-0.0371404
-0.0418897
-0.0437679
-0.0446449
-0.0536768
-0.0526028
-0.305158
-0.318375
-0.299952
-0.322866
-0.144405
-0.128116
-0.0804233
-0.0955797
-0.123916
-0.148494
-0.0922684
-0.32034
-0.221313
-0.321835
-0.22815
-0.679841
-0.692138
-0.701772
-0.672141
-0.149529
-0.100052
-0.137666
-0.0903311
-0.153132
-0.0969025
-0.135084
-0.751312
-0.748483
-0.76776
-0.742838
0.0119312
0.000682152
0.0493206
0.0458206
0.0455551
0.00786413
0.00684617
0.0106009
0.0487841
-0.00231954
0.0243121
0.0473544
0.0056321
0.00375137
-0.28747
-0.316676
-0.29684
-0.304529
-0.22863
-0.179416
-0.205059
-0.200143
-0.180673
-0.148463
-0.16233
-0.159349
-0.770689
-0.740859
-0.73572
-0.767593
-0.555957
-0.507723
-0.498099
-0.567885
-2.31494
-2.36644
-2.4033
-2.42792
-2.29733
-2.42466
-2.34922
-2.40961
-2.34909
-2.34544
-2.26454
-1.25956
-1.09962
-1.14003
-1.21397
-1.25608
-1.1456
-1.22895
-2.39433
-1.02653
-0.978456
-1.02746
-1.25731
-0.931019
-1.09758
-1.20451
-0.973056
-0.995671
-0.863252
-1.09702
-0.895695
-1.14543
-0.914022
-1.84387
-1.38508
-1.16406
-1.48331
-1.46498
-1.7613
-1.61619
0.768257
0.815291
0.886505
1.0026
0.885991
0.766753
0.820251
0.770942
0.842996
1.01183
0.871282
0.875527
0.843375
0.76864
-1.59197
-1.31013
-1.34688
-0.920117
-1.24557
-1.24414
-1.66428
0.764824
0.845981
0.867985
1.01368
0.861824
0.767232
0.847129
0.779569
0.89813
1.00532
0.843775
0.849103
0.890948
0.779985
0.777215
0.904359
0.838294
1.00312
0.83224
0.778926
0.90701
0.769741
0.922615
0.987031
0.794866
0.804276
0.921684
0.765383
0.186397
0.0368763
0.0409419
0.170409
0.0277922
0.201626
0.158959
-0.227573
0.181697
0.034709
0.0186223
0.13641
0.0265021
0.147432
0.168713
0.754373
0.925235
0.785169
0.955248
0.772608
0.760459
0.924405
0.7274
0.926815
0.914659
0.716538
0.727169
0.928814
0.721516
0.147448
0.0157026
0.0170927
0.129143
0.00672265
0.161762
0.117966
-0.267662
-0.295761
0.142165
0.0108407
-0.0032221
0.0964226
0.00507663
0.106863
0.129149
0.703606
0.92586
0.702232
0.879518
0.692665
0.71453
0.917618
0.664142
0.885653
0.823785
0.629426
0.6419
0.895659
0.653124
0.108414
-0.00562951
-0.00613246
0.0893008
-0.0143125
0.122573
0.0787147
-0.275301
-0.306236
-0.273581
-0.303087
0.103327
-0.011967
-0.0225191
0.0595675
-0.0154568
0.0684037
0.0919378
0.62921
0.876722
0.617917
0.778459
0.602511
0.643118
0.858129
-0.284936
-0.208618
-0.139582
-0.101636
-0.233631
-0.251453
-0.11845
0.0700994
1.09119
0.751234
0.440892
1.11152
0.100114
0.462759
0.0726506
-0.0252362
-0.027186
0.0527051
-0.0333603
0.0854455
0.0433582
-0.359833
-0.321265
-0.375881
-0.330378
0.0669549
-0.0328365
-0.0431189
0.0254277
-0.0354105
0.0339881
0.0551231
-0.171309
-0.190186
-0.0838753
-0.0992647
-0.21421
-0.167547
-0.063394
0.16253
1.0884
0.422222
0.686743
0.404441
0.119028
1.06159
-0.145639
-0.135038
-0.0894492
-0.0387572
-0.152015
-0.122675
-0.0508811
0.344881
0.912638
0.587606
0.320696
0.331817
0.943526
0.330001
0.0352278
-0.0466926
-0.048331
0.0192782
-0.0552454
0.048033
0.0105502
-0.506861
-0.412298
-0.517095
-0.400791
0.0286869
-0.0533223
-0.06565
-0.00413751
-0.05838
0.00234841
0.0174978
-0.15739
-0.174243
-0.198515
-0.12175
-0.218751
-0.138704
-0.1376
-0.749134
-0.752776
-0.753225
-0.740265
-0.00195403
-0.070655
-0.0654544
-0.00957651
-0.0770256
0.00880685
-0.0172054
-0.55625
-0.547685
-0.550363
-0.538044
-0.00823422
-0.0690299
-0.0856751
-0.0280494
-0.0799696
-0.0238872
-0.0160601
-0.721998
-0.749842
-0.742908
-0.732185
-0.0875226
-0.109328
-0.119581
-0.0717453
-0.14116
-0.082351
-0.0717419
-0.695243
-0.674342
-0.68324
-0.692482
-0.579607
-0.627319
-0.584117
-0.616714
-0.679326
-0.667099
-0.656808
-0.683114
-0.0374025
-0.0699175
-0.0597415
-0.0369191
-0.0706869
-0.0459346
-0.0290798
-0.485118
-0.438598
-0.460368
-0.440041
-0.575313
-0.690747
-0.577163
-0.681868
-3.02987
0.382898
-1.80102
-3.49968
-0.170701
-0.11204
0.278908
0.488235
0.327919
0.266122
0.326108
0.372476
0.457057
0.345644
1.20151
1.37756
1.20849
1.07357
1.06736
1.38583
1.20914
1.14288
1.20837
1.40715
1.0122
1.02301
1.4071
1.12754
1.09976
1.41162
1.20288
1.00628
0.992224
1.40547
1.11767
1.03625
1.18429
1.64737
0.922507
0.930107
1.0249
1.62608
0.012825
0.0101107
-0.000439048
0.0104582
0.03897
0.0287961
0.00731633
-0.129984
-0.176495
-0.120568
-0.105693
-0.149856
-0.107381
-0.119769
-0.0529294
-0.059152
-0.0545153
-0.0467807
-0.107601
-0.160073
-0.142618
-0.0993254
-0.14746
-0.111456
-0.111265
-0.101864
-0.138798
-0.140886
-0.13155
-0.107943
-0.101078
-0.106237
-0.0779681
-0.131531
-0.145515
-0.0822853
-0.149458
-0.0815776
-0.0768153
-0.027081
-0.0763079
-0.0595643
-0.0291819
-0.0659745
-0.0238817
-0.0224581
-0.111798
-0.127541
-0.133257
-0.0657998
-0.0600297
-0.0656906
-0.0601951
0.0135993
0.0270123
0.00470957
0.00836916
0.00775944
0.00183637
0.0133751
-0.110387
-0.11378
-0.117426
-0.0716745
-0.0526264
-0.057688
-0.064987
-0.123766
-0.092593
-0.11673
-0.0529349
-0.0567713
-0.0588162
-0.0501308
-0.0849599
-0.104193
-0.11113
-0.0493521
-0.0407979
-0.0460462
-0.0430405
-0.111516
-0.0999353
-0.105886
-0.0621503
-0.0485181
-0.0629089
-0.0473651
-0.0811282
-0.077359
-0.0831109
-0.00852466
-0.0308677
-0.0375886
0.00277155
-0.0330446
-0.0388631
-0.052065
0.00238265
0.0181721
0.0163758
0.0100677
-0.0995642
-0.0609277
-0.0909209
-0.0322967
-0.0365894
-0.0406207
-0.0308171
-0.055306
-0.078907
-0.0857005
-0.0265866
-0.0221418
-0.0273104
-0.0199015
-0.0691506
-0.064148
-0.0721443
0.0109614
-0.0228591
0.00648618
-0.0184292
-0.0358352
-0.0196733
-0.0134582
0.0198868
0.0166029
0.0128657
0.0203484
-0.044216
-0.115317
0.0187663
0.0259367
0.020955
0.010944
-0.0120065
0.00210053
-0.0014383
0.0257979
0.0298077
0.0262586
0.0286094
-0.0746478
-0.031657
-0.0661271
-0.0139303
-0.0240266
-0.0193805
-0.0199173
-0.0234185
-0.0554818
-0.061044
-0.0122129
-0.0165755
-0.0181712
-0.00721195
-0.0915325
-0.0199174
0.0540362
-0.00466568
0.0235182
-0.000894659
0.023493
0.00680351
-0.000882237
0.00926489
0.033086
0.0314094
0.0302926
0.0329366
0.00740455
0.0830654
0.0653068
-0.0124961
0.0401282
0.0322006
-0.00694897
0.000830033
0.01668
0.0119768
0.0332453
0.0312779
0.031813
0.036486
-0.0496922
-0.00673187
-0.041531
0.000624643
-0.0103358
-0.00608702
-0.00771539
-0.00444124
-0.0314181
-0.0384303
0.00149159
0.00172595
-0.00590746
0.005912
0.0886187
0.0360932
0.0977709
-0.00559941
0.0420459
-0.011028
0.0439141
-0.0284089
0.00682966
-0.0253169
0.00920725
0.00443664
0.00583128
0.00483695
0.0526396
0.0239466
0.0298402
0.0731552
-0.0283123
-0.0403862
0.071186
0.0494001
0.0142989
0.0503494
0.06832
-0.0155458
0.0706317
-0.0175405
-0.307738
-0.306845
-0.339818
-0.259549
-0.225039
-0.222475
-0.261687
-0.219242
-0.254866
-0.266556
-0.253845
-0.241861
-0.215164
-0.207609
-0.211834
-0.249347
-0.247528
-0.289882
-0.326299
-0.282045
-0.331199
-0.28578
-0.287264
-0.32624
-0.321492
-0.31947
-0.344669
-0.313335
-0.3414
-0.326994
-0.213894
-0.199209
-0.212061
-0.199023
-0.20187
-0.211162
-0.211347
-0.188258
-0.177885
-0.185453
-0.186629
-0.2018
-0.184302
-0.173701
-0.176355
-0.1821
-0.189554
-0.196116
-0.23274
-0.226199
-0.229244
-0.235136
-0.225386
-0.271371
-0.265782
-0.318632
-0.313645
-0.273096
-0.264785
-0.320826
-0.196495
-0.188781
-0.176784
-0.177573
-0.178964
-0.204457
-0.19312
-0.167842
-0.162319
-0.148099
-0.173752
-0.152611
-0.17863
-0.161793
-0.188723
-0.211692
-0.196339
-0.207915
-0.196082
-0.204196
-0.190486
-0.180894
-0.170047
-0.165155
-0.182615
-0.207022
-0.173534
-0.166806
-0.212051
-0.167305
-0.212555
-0.215239
-0.170206
-0.139772
-0.150853
-0.185809
-0.209154
-0.193373
-0.150734
-0.123704
-0.155791
-0.224586
-0.217792
-0.195441
-0.171382
-0.173598
-0.180466
-0.17927
-0.175641
-0.175667
-0.180079
-0.122513
-0.111643
-0.108632
-0.127236
-0.105343
-0.128031
-0.124706
-0.246185
-0.247012
-0.271396
-0.262564
-0.243373
-0.247267
-0.258215
-0.110181
-0.107673
-0.0919234
-0.0887655
-0.094312
-0.108419
-0.105753
-0.180118
-0.189288
-0.184698
-0.19663
-0.186036
-0.181013
-0.18953
-0.237048
-0.259795
-0.227987
-0.246131
-0.23341
-0.230816
-0.23895
-0.205882
-0.215109
-0.23629
-0.237024
-0.214712
-0.212717
-0.235587
-0.204461
-0.205143
-0.204741
-0.224106
-0.206101
-0.202002
-0.206398
-0.177974
-0.187451
-0.234025
-0.185195
-0.183577
-0.150469
-0.175408
-0.230284
-0.177707
-0.146428
-0.178885
-0.170454
-0.179238
-0.127671
-0.15763
-0.135221
0.0082099
0.0319952
0.0344717
-0.00820106
0.0411399
-0.0025358
-0.00159516
-0.0821654
-0.150876
-0.0964961
0.0250705
0.00542027
0.0385057
0.0474849
0.050133
0.00400411
0.0334643
-0.105321
-0.157987
-0.100965
0.000197513
-0.0220187
-0.0667751
-0.0546342
-0.0241993
0.00428882
-0.0567543
0.120791
0.0135014
0.108812
0.182952
0.10168
0.156544
0.187596
0.00647929
-0.0699442
-0.112846
-0.081595
-0.00714397
-0.0714153
-0.0344352
-0.0762318
-0.017689
-0.0284928
-0.0638565
0.0217668
-0.0591561
-0.110963
-0.103262
0.0219221
-0.119713
-0.0524816
0.0317239
0.143245
0.00686345
0.00996098
0.0618138
0.0320787
0.178572
0.00931389
0.0646292
0.0257209
0.132046
0.0280185
0.157639
0.0106768
-0.0789781
-0.0880298
-0.0574236
-0.0550482
-0.0811664
-0.0484763
-0.0690564
-0.0636558
-0.0789736
-0.0791762
-0.0483962
-0.0840052
-0.0649009
-0.0483319
0.00228285
0.0320436
0.0381905
0.216313
0.0371941
0.280306
0.00640368
-0.230146
-0.222259
-0.145068
-0.136568
-0.169526
-0.182872
-0.0862035
-0.0738473
0.0149283
0.022838
0.0563176
0.143828
0.0238687
0.0117589
0.120336
0.0165123
0.0490419
0.0214624
0.100753
0.0209436
0.120711
0.0190061
-0.0761725
-0.0543294
-0.0728432
-0.0411567
-0.0845569
-0.0453918
-0.0618509
0.0290509
-0.016304
-0.0264337
0.0051339
0.100643
0.0593795
0.0152101
0.00237956
0.031654
0.0295037
0.0911716
0.0323576
0.0881995
-0.000271769
-0.166083
-0.158832
-0.0618881
-0.0702834
-0.151234
-0.154974
-0.0860666
-0.0828648
-0.00823972
0.0722796
0.000184881
0.0333265
0.115191
0.0239352
0.23808
0.070083
0.00280453
0.00871059
0.0378883
0.10394
0.0308611
0.15626
-0.149878
-0.150943
-0.0808234
-0.0801815
-0.125631
-0.128144
-0.0647305
-0.480152
-0.0639763
-0.0372967
-0.803196
-0.952212
-0.917652
-0.812757
-0.924252
-0.782214
-0.770578
-0.187224
-0.224955
-0.206477
-0.195545
-0.211814
-0.200075
-0.183929
-0.165722
-0.190304
-0.162262
-0.153618
-0.176831
-0.143263
-0.177516
-0.806671
-0.925278
-0.948727
-0.797061
-0.90536
-0.769502
-0.781027
-0.161383
-0.124148
-0.125576
-0.131095
-0.123892
-0.0895879
-0.0865959
-0.217233
-0.23567
-0.274149
-0.210536
-0.238465
-0.203438
-0.239967
-0.248523
-0.191212
-0.266383
-0.225589
-0.204921
-0.218048
-0.228175
-0.260863
-0.226046
-0.274037
-0.222037
-0.224115
-0.206191
-0.232494
-0.274093
-0.303238
-0.380262
-0.226594
-0.202355
-0.217186
-0.209797
-0.229201
-0.204325
-0.283099
-0.222083
-0.222697
-0.307918
-0.272672
-0.260753
-0.261178
-0.281473
-0.288021
-0.265196
-0.293531
-0.240688
-0.250793
-0.335873
-0.241372
-0.294346
-0.3345
-0.252521
-0.24444
-0.211457
-0.223563
-0.242494
-0.252471
-0.223581
-0.254132
-0.222598
-0.210338
-0.243222
-0.241781
-0.223311
-0.25762
-0.291694
-0.250634
-0.240715
-0.330526
-0.289729
-0.241355
-0.332735
-0.306735
-0.244653
-0.256069
-0.330696
-0.242794
-0.304825
-0.331342
-0.274735
-0.245455
-0.199524
-0.218374
-0.24414
-0.274425
-0.219741
-0.226034
-0.228719
-0.253232
-0.237822
-0.498941
-0.776189
-0.494806
-0.773132
-0.272743
-0.222571
-0.199891
-0.235952
-0.24009
-0.220885
-0.269873
-0.307954
-0.254391
-0.239366
-0.332484
-0.307728
-0.241292
-0.332163
-0.505787
-0.763368
-0.509175
-0.764945
-0.307253
-0.243594
-0.262334
-0.346816
-0.246564
-0.310843
-0.342146
-0.264202
-0.224358
-0.198141
-0.226058
-0.225387
-0.262065
-0.224219
-0.298958
-0.311388
-0.301777
-0.336706
-0.521012
-0.733349
-0.522264
-0.721103
-0.267085
-0.219224
-0.19619
-0.229821
-0.227213
-0.222423
-0.269679
-0.303004
-0.263449
-0.249853
-0.33244
-0.299957
-0.248238
-0.336564
-0.520909
-0.698941
-0.52474
-0.69953
-0.319801
-0.217755
-0.239967
-0.348125
-0.220603
-0.318727
-0.348422
-0.285065
-0.245545
-0.171937
-0.201759
-0.245175
-0.284642
-0.198346
-0.3484
-0.297359
-0.30467
-0.341516
-0.489197
-0.559676
-0.487088
-0.559566
-0.283814
-0.192126
-0.168574
-0.239519
-0.24291
-0.195573
-0.28172
-0.320455
-0.241727
-0.225924
-0.348137
-0.319868
-0.222938
-0.348687
-0.496981
-0.563513
-0.499162
-0.562624
-0.296519
-0.226823
-0.21584
-0.295881
-0.482806
-0.565662
-0.491075
-0.563896
-0.301896
-0.225344
-0.20463
-0.339453
-0.305113
-0.202056
-0.336929
-0.471508
-0.553133
-0.471682
-0.553806
-0.283978
-0.204398
-0.172916
-0.264693
-0.460338
-0.546973
-0.464802
-0.543632
-0.428212
-0.506047
-0.418899
-0.519755
-0.0197077
-0.0398002
-0.0450844
-0.0296719
-0.0271541
-0.110904
-0.0832542
-0.0957975
-0.0986556
-0.245936
-0.094984
-0.211546
-0.254219
-0.273031
-0.2138
-0.277848
-0.202362
-0.256669
-1.46213
-0.0102406
-0.0260524
-0.039035
0.00432996
-0.00886445
0.368449
0.390191
0.0119341
0.00286968
-0.0320588
-0.00927225
0.0101184
-0.014606
0.410084
0.400086
-1.07752
-1.32143
-1.13359
-1.13668
-1.2556
-1.13266
-1.26313
-1.31857
-1.51352
-1.50294
-1.63246
-1.62207
-1.5101
-1.50754
-1.63884
-1.10611
-1.08296
-1.1639
0.180794
0.207489
0.337688
0.330055
0.209908
0.17002
0.335266
0.385672
0.381574
0.179904
0.34099
0.214636
0.33718
0.178123
0.214117
0.334626
0.232267
0.368384
0.228224
0.37191
-1.41535
-1.62096
-1.44546
-1.60743
-1.20955
-1.11933
-1.1004
-1.118
-1.20521
-1.35028
-1.32348
-1.60288
-1.43527
-1.36048
-1.29881
-1.51015
-1.18002
-1.18395
-1.13472
-1.12154
-1.12744
-1.19157
-1.17312
-1.3337
-1.48196
-1.25258
-1.41326
-1.28267
-1.31842
-1.48952
0.167027
0.186239
0.320417
0.313128
0.188069
0.165721
0.317806
0.208501
0.352208
0.206985
0.34628
0.16905
0.325934
0.195111
0.323238
0.173384
0.192394
0.319293
0.217225
0.325195
0.219344
0.33299
-1.05097
-0.594094
-0.705467
-0.817313
-0.958822
-0.737485
-0.528928
-1.45666
-1.48093
-1.55829
-1.5338
-1.49025
-1.45224
-1.5254
-1.44588
-1.48919
-1.42802
-1.54626
-1.43372
-1.43938
-1.51785
0.155691
0.171424
0.297835
0.298625
0.1734
0.153147
0.299192
0.182449
0.332294
0.185284
0.32159
0.156689
0.302737
0.178542
0.304072
0.155761
0.177743
0.299622
0.178058
0.315297
0.17599
0.316394
-1.08635
-1.01671
-1.05626
-1.17635
-0.994897
-1.10959
-1.1715
-1.07143
-1.13913
-1.03831
-0.963099
-0.983525
-1.15147
-1.0491
0.13778
0.143511
0.274499
0.287798
0.148379
0.13243
0.291469
0.210942
0.262351
0.22939
0.289775
0.141014
0.280828
0.159768
0.293879
0.144356
0.155137
0.291147
0.203317
0.292808
0.200628
0.294759
-0.974325
-1.07806
-1.19591
-0.983095
-1.09633
-0.945785
-1.01533
-0.994414
-1.23507
-1.14793
-1.07859
-1.02511
-1.12509
-1.04099
0.104875
0.106994
0.236177
0.255631
0.111722
0.0990069
0.2623
-0.00983859
-0.0861961
-0.0444717
0.0324311
-0.0905424
-0.00399312
0.0278261
0.175796
0.275493
0.181456
0.272666
-0.0129103
0.0186739
-0.0479588
-0.0947198
-0.0913667
0.0226017
-0.0177693
0.107391
0.243801
0.124187
0.268552
0.11256
0.118812
0.262961
0.145166
0.244417
0.174107
0.140681
0.246477
-0.0412695
-0.117111
-0.07181
0.00147753
-0.122865
-0.0362489
-0.00288491
-0.193985
-0.203026
0.106828
0.223504
0.147607
0.114286
0.219203
-0.0444123
-0.0121556
-0.0762257
-0.132338
-0.127233
-0.00788079
-0.0488288
0.111196
0.205488
0.131176
0.109515
0.208137
-0.0700536
-0.150919
-0.0984304
-0.0275997
-0.154639
-0.0650449
-0.0314876
-0.316175
-0.293798
-0.290363
-0.312445
0.11797
0.18039
0.000795064
0.12445
0.177992
-0.0728764
-0.0398441
-0.10171
-0.160612
-0.156599
-0.0358681
-0.0773154
0.102694
0.177735
0.0909386
0.101033
0.178861
-0.0971653
-0.177095
-0.120385
-0.0545157
-0.180541
-0.0935263
-0.0575436
-0.329014
-0.309489
-0.305034
-0.308483
0.0879592
0.174168
-0.0765999
0.0910371
0.175424
-0.0998455
-0.0659643
-0.123909
-0.187881
-0.183586
-0.0618641
-0.104582
0.0636645
0.168553
-0.187978
0.0559011
0.173053
-0.128828
-0.205043
-0.14535
-0.0839082
-0.20911
-0.123719
-0.0882972
-0.434427
-0.364385
-0.395014
-0.449186
0.00200492
0.132612
0.0910165
0.130073
0.00525468
-0.132083
-0.0972829
-0.149163
-0.216762
-0.212522
-0.0930997
-0.13678
-0.0102604
0.128768
0.172122
0.127879
-0.013141
-0.160091
-0.23509
-0.173176
-0.116825
-0.238622
-0.1562
-0.121204
-0.543537
-0.486044
-0.469744
-0.551317
0.00666944
0.13814
0.239842
0.138836
0.00386412
-0.16179
-0.129367
-0.17642
-0.244501
-0.240946
-0.125259
-0.166122
0.0172357
0.13118
0.209441
0.131466
0.0145818
-0.566882
-0.583238
-0.577553
-0.572918
-0.0073543
-0.267939
0.139861
0.0704969
0.139287
-0.00690977
-0.251986
0.00366845
0.1887
-0.228117
-0.00279273
0.166076
-0.269786
0.0159881
-0.569427
-0.670158
-0.660044
-0.57383
0.0503014
-0.172717
0.22279
0.311116
0.225472
0.0487437
-0.192016
0.0471679
0.22907
-0.301368
0.515905
0.229077
-0.305387
0.0504328
-0.25348
-0.216838
-0.21926
-0.18134
-0.14116
-0.152088
-0.0934258
-0.0848904
1.43087
0.0714775
0.0363986
0.0433825
0.280609
1.17659
0.0730317
0.0502762
0.909372
0.267408
0.0723774
1.1535
0.0539785
0.0736288
-0.407266
-0.417763
-0.270108
-0.263563
0.326475
0.0264947
-0.0136469
-0.0210006
0.163414
0.306811
0.0183721
-0.0251033
0.290155
0.153383
0.00773081
0.300612
-0.0290116
0.0129667
-0.140827
-0.12073
-0.0613054
-0.0917242
-0.0773593
-0.0895865
-0.0153092
-0.00838221
0.0565848
0.660985
0.0710669
0.216947
0.0585984
0.568158
0.0663403
-0.262486
-0.316095
-0.226517
-0.195262
-0.0324363
0.285169
0.00357904
0.11805
-0.0313832
0.265651
-0.000879073
1.53082
1.43643
0.399373
0.773498
-1.92664
0.102809
-2.3369
0.399224
-0.253457
-0.291255
0.469224
0.318544
0.443015
0.329073
0.252169
0.24291
0.369056
1.21009
1.1673
0.858631
0.873388
1.18048
1.19235
0.874551
1.56823
1.34396
1.3742
1.50278
1.36975
1.50563
1.56021
1.59857
1.57156
1.36323
1.56024
1.67959
-1.52965
-2.49599
0.0872779
-0.182466
-1.35018
-0.240096
-0.25285
0.948784
1.03069
0.787164
0.682835
1.06165
0.895961
0.715367
1.89075
1.71045
1.87064
1.7301
-2.12947
-2.52113
-2.93637
-1.46849
-1.56649
-2.05191
2.00722
1.87188
1.83005
0.989787
0.802982
1.10509
0.774163
1.03777
1.08262
0.745654
0.728096
0.549521
0.384244
0.418121
0.459284
0.653077
0.591738
0.936405
0.755377
0.69078
0.776432
0.712941
0.631654
0.612444
0.843354
0.67704
0.599498
0.696973
0.620325
0.558001
0.53908
1.6695
1.17848
0.918257
1.65735
1.0163
0.994197
0.90322
1.11697
1.43534
1.50431
0.882279
0.816204
0.831451
0.858703
0.758601
0.598724
0.62096
0.493352
0.529335
0.549293
0.475667
1.41996
1.06133
1.33863
0.811918
0.805634
0.785232
0.839549
-0.173941
-0.0850062
-0.0886199
0.0532896
-0.0614758
-0.0608401
0.0445258
0.941525
0.9811
1.0212
0.736104
0.691183
0.706872
0.71309
0.658234
0.512521
0.53457
0.427801
0.460948
0.478411
0.410794
0.938981
0.891119
0.902561
0.660409
0.679908
0.665213
0.687625
0.8186
0.756573
0.778779
0.54685
0.590936
0.600484
0.529753
0.572953
0.430387
0.451731
0.365465
0.399927
0.416314
0.349193
0.731161
0.779472
0.690548
0.495782
0.584203
0.57076
0.518382
0.454749
0.109579
0.115296
0.127545
0.290144
0.305238
0.12162
-0.138919
-0.179959
-0.182996
-0.141012
-0.137274
-0.177614
-0.141979
-0.136964
-0.130039
-0.179276
-0.183304
-0.135102
-0.133431
-0.179599
-0.0375444
-0.0328844
-0.0170919
-0.0178392
-0.0186275
-0.0405523
-0.0487136
-0.0832746
-0.0512699
-0.0457544
-0.0877084
-0.0484398
-0.0903679
-0.0808383
-0.0894292
-0.0316958
-0.00983837
-0.077301
-0.0220268
-0.0810595
-0.145328
-0.157213
-0.138993
-0.159163
-0.141141
-0.144112
-0.159087
-0.0880688
-0.0344443
-0.040619
-0.0844298
-0.0865547
-0.0354044
-0.0845532
-0.0876919
-0.00519944
-0.00473997
-0.0729939
-0.0823133
-0.00815392
-0.13386
-0.143779
-0.158085
-0.139204
-0.142544
-0.132077
-0.154732
-0.13103
-0.163449
-0.130441
-0.131676
-0.156542
-0.0679936
-0.0348543
-0.0267506
-0.0616297
-0.0295586
-0.0619569
-0.0670037
-0.0782671
-0.0490426
0.0017585
-0.00767042
-0.0546534
-0.00892953
-0.0668218
-0.11848
-0.127176
-0.0832554
-0.00707702
-0.00944244
-0.0613917
-0.0590064
-0.00458838
-0.141702
-0.157636
-0.127342
-0.138357
-0.0653675
-0.0231092
-0.0192782
-0.0578333
-0.0212271
-0.0657781
-0.0621699
-0.126042
-0.150651
-0.128889
-0.144713
-0.1518
-0.129648
-0.130439
-0.0647275
-0.0231678
-0.0262287
-0.0582639
-0.0239164
-0.0664387
-0.0560896
-0.12578
-0.110266
-0.140408
-0.139747
-0.119063
-0.126129
-0.0588634
-0.00356659
0.0062939
-0.0620531
0.00287753
-0.0676976
-0.0495947
-0.0448596
-0.0474075
-0.0153073
0.00892361
-0.0449953
-0.0635619
-0.00754527
-0.11609
-0.131192
-0.0888025
-0.109266
-0.0759121
-0.117798
-0.0799793
-0.0854389
-0.12019
-0.134263
-0.139399
-0.123154
-0.135621
-0.0564769
-0.0161642
-0.0172415
-0.0545707
-0.0128928
-0.0597403
-0.0532431
-0.1099
-0.116235
-0.106626
-0.135999
-0.0519587
-0.0145552
-0.00324522
-0.0343859
-0.0488623
-0.00899638
-0.0492075
-0.123926
-0.111788
-0.140453
-0.126288
-0.131573
-0.0402693
0.0111078
-0.0153112
-0.0577686
0.0222794
-0.0486499
-0.0618045
-0.0750809
-0.0960172
-0.0716596
-0.11305
-0.0668605
-0.0798836
-0.107709
-0.114876
-0.13133
-0.111545
-0.114168
-0.132005
-0.0272504
-0.0180462
0.0301891
-0.0312969
-0.0250003
0.0219838
-0.0633856
-0.118666
-0.140245
-0.122028
-0.138337
-0.493339
-0.53202
-0.503235
-0.535327
-0.49376
-0.499336
-0.535995
-0.490375
-0.525919
-0.500594
-0.533819
-0.491631
-0.49954
-0.532836
-0.319345
-0.312362
-0.296149
-0.304476
-0.274977
-0.269303
-0.320318
-0.317993
-0.276648
-0.270341
-0.31425
-0.244205
-0.241943
-0.203895
-0.200806
-0.24312
-0.197179
-0.2461
-0.278535
-0.323191
-0.276497
-0.324946
-0.280563
-0.274115
-0.321069
-0.291626
-0.299551
-0.17367
-0.171083
-0.18868
-0.174237
-0.192169
-0.247185
-0.239096
-0.227889
-0.221417
-0.213634
-0.235205
-0.26611
-0.237561
-0.229321
-0.489014
-0.504461
-0.358826
-0.358633
-0.242334
-0.243576
-0.255155
-0.223945
-0.259885
-0.213205
-0.243097
-0.238772
-0.486882
-0.484773
-0.219202
-0.217024
-0.229005
-0.230892
-0.235911
-0.218679
-0.223492
-0.251611
-0.237126
-0.240285
-0.262313
-0.243126
-0.24313
-0.249567
-0.215908
-0.221612
-0.229378
-0.191994
-0.174488
-0.184955
-0.192011
-0.205441
-0.233062
-0.228928
-0.209974
-0.238558
-0.229109
-0.235626
-0.22821
-0.206519
-0.223447
-0.226742
-0.237526
-0.231324
-0.226256
-0.224495
-0.225374
-0.212352
-0.206868
-0.217031
-0.20973
-0.214284
-0.203605
-0.219166
-0.203175
-0.209645
-0.221092
-0.207328
-0.212241
-0.21243
-0.200734
-0.208906
-0.221965
-0.223737
-0.209016
-0.220729
-0.213485
-0.202871
-0.391073
-0.390759
-0.342239
-0.354187
-0.391407
-0.341083
-0.390041
-0.472353
-0.517935
-0.467789
-0.517347
-0.4712
-0.46856
-0.521203
-0.390827
-0.338009
-0.351154
-0.389023
-0.33924
-0.389575
-0.390652
-0.384931
-0.383336
-0.348105
-0.32957
-0.332667
-0.383445
-0.383536
-0.469909
-0.500607
-0.467046
-0.50932
-0.471103
-0.465449
-0.505367
-0.388221
-0.336516
-0.350351
-0.388588
-0.335623
-0.389001
-0.388524
-0.183399
-0.17937
-0.18819
-0.186594
-0.165274
-0.246101
-0.23689
-0.228382
-0.220608
-0.23196
-0.248764
-0.226848
-0.175334
-0.22157
-0.188688
-0.198761
-0.224678
-0.220392
-0.195491
-0.22631
-0.192436
-0.176371
-0.164314
-0.187886
-0.178909
-0.196948
-0.192635
-0.175172
-0.173458
-0.196604
-0.173605
-0.176013
-0.44556
-0.447991
-0.444178
-0.443391
-0.217489
-0.198898
-0.206793
-0.216741
-0.226037
-0.201514
-0.217797
-0.224828
-0.203265
-0.214643
-0.232142
-0.232636
-0.209062
-0.228895
-0.275452
-0.259916
-0.225956
-0.252386
-0.251231
-0.274872
-0.384041
-0.387195
-0.328443
-0.34491
-0.384976
-0.326311
-0.386087
-0.45759
-0.478459
-0.459682
-0.487935
-0.456939
-0.460802
-0.488576
-0.381624
-0.319813
-0.341022
-0.375587
-0.322668
-0.376843
-0.382982
-0.370332
-0.362889
-0.316116
-0.322425
-0.323592
-0.364283
-0.368544
-0.455716
-0.478758
-0.459748
-0.488592
-0.457008
-0.460003
-0.488243
-0.372243
-0.327411
-0.318622
-0.368174
-0.325466
-0.374633
-0.365331
-0.190986
-0.231619
-0.189353
-0.219718
-0.15936
-0.132633
-0.143188
-0.143651
-0.146908
-0.145055
-0.158064
-0.179205
-0.172318
-0.199073
-0.180369
-0.167657
-0.182486
-0.198115
-0.169203
-0.148685
-0.148608
-0.189101
-0.242729
-0.176083
-0.189447
-0.159555
-0.176082
-0.163492
-0.172199
-0.194676
-0.137253
-0.140137
-0.147447
-0.195303
-0.231044
-0.199134
-0.219549
-0.147377
-0.118202
-0.136975
-0.138665
-0.130978
-0.150908
-0.13416
-0.155602
-0.145241
-0.165736
-0.142251
-0.156451
-0.162856
-0.163268
-0.145692
-0.18238
-0.197278
-0.218623
-0.188462
-0.213922
-0.193982
-0.212667
-0.197941
-0.457943
-0.460115
-0.342418
-0.327794
-0.319044
-0.337009
-0.328708
-0.34073
-0.338826
-0.239824
-0.237432
-0.231877
-0.229895
-0.209068
-0.194131
-0.213732
-0.191737
-0.214341
-0.21168
-0.189918
-0.244839
-0.276342
-0.221972
-0.26322
-0.218966
-0.24524
-0.237591
-0.202693
-0.201153
-0.186264
-0.181993
-0.204431
-0.201516
-0.18499
-0.24832
-0.231704
-0.284402
-0.266093
-0.235971
-0.246866
-0.25962
-0.313029
-0.32037
-0.306747
-0.305228
-0.318999
-0.303928
-0.315509
-0.457718
-0.457926
-0.24129
-0.272845
-0.278767
-0.335469
-0.30969
-0.306964
-0.333759
-0.331446
-0.30108
-0.336073
-0.227866
-0.255211
-0.301603
-0.263807
-0.234335
-0.233943
-0.238448
-0.229116
-0.24052
-0.238272
-0.245415
-0.258989
-0.256708
-0.234056
-0.239445
-0.229068
-0.230286
-0.227814
-0.219835
-0.228092
-0.25906
-0.224316
-0.252062
-0.227706
-0.261099
-0.271948
-0.25132
-0.267533
-0.254736
-0.216707
-0.237917
-0.266861
-0.267094
-0.270724
-0.242264
-0.21163
-0.220075
-0.277332
-0.245738
-0.270795
-0.222549
-0.274268
-0.24462
-0.365519
-0.358818
-0.321862
-0.317259
-0.366899
-0.322403
-0.370806
-0.436902
-0.460066
-0.42643
-0.472532
-0.436389
-0.430527
-0.471477
-0.434867
-0.45488
-0.426095
-0.4716
-0.435919
-0.424061
-0.469014
-0.150441
-0.144121
-0.14332
-0.164711
-0.141942
-0.158848
-0.15323
-0.138282
-0.143167
-0.125244
-0.119354
-0.122157
-0.144759
-0.135368
-0.193987
-0.2132
-0.214695
-0.208644
-0.192271
-0.197343
-0.209144
-0.184315
-0.211072
-0.189566
-0.11706
-0.12931
-0.130184
-0.130619
-0.246475
-0.249421
-0.271627
-0.272712
-0.244987
-0.251067
-0.274501
-0.14879
-0.115521
-0.141336
-0.257242
-0.281774
-0.261063
-0.281567
-0.257771
-0.260921
-0.280927
-0.206434
-0.191092
-0.199534
-0.190001
-0.192651
-0.201583
-0.217228
-0.239299
-0.217812
-0.340209
-0.322249
-0.304346
-0.304594
-0.303047
-0.316553
-0.325334
-0.238315
-0.288621
-0.240369
-0.419576
-0.425677
-0.238804
-0.223547
-0.22757
-0.341737
-0.305277
-0.301762
-0.329638
-0.300049
-0.330918
-0.334874
-0.271266
-0.281438
-0.286463
-0.253299
-0.218931
-0.232041
-0.220822
-0.214301
-0.219228
-0.220605
-0.226179
-0.217507
-0.229422
-0.228614
-0.29685
-0.308167
-0.286672
-0.273532
-0.30998
-0.278055
-0.294015
-0.419285
-0.416997
-0.23497
-0.236189
-0.239755
-0.246387
-0.249546
-0.232802
-0.248445
-0.327164
-0.307445
-0.298108
-0.327242
-0.324508
-0.30825
-0.33253
-0.259866
-0.220812
-0.202175
-0.226632
-0.227526
-0.227742
-0.266529
-0.243356
-0.270309
-0.286017
-0.251254
-0.306579
-0.252178
-0.274146
-0.195413
-0.194762
-0.217144
-0.228975
-0.21603
-0.193255
-0.196813
-0.20574
-0.233852
-0.263421
-0.253339
-0.228448
-0.208137
-0.259372
-0.214833
-0.253184
-0.206332
-0.246817
-0.211796
-0.211935
-0.257093
-0.202755
-0.19276
-0.229793
-0.239924
-0.242874
-0.195665
-0.199924
-0.205467
-0.250141
-0.20208
-0.233151
-0.20927
-0.245867
-0.198661
-0.405459
-0.427383
-0.390448
-0.436687
-0.404023
-0.39464
-0.438428
-0.401259
-0.415968
-0.38978
-0.43471
-0.402965
-0.388303
-0.431139
-0.13474
-0.14821
-0.169268
-0.147347
-0.152648
-0.130762
-0.150618
-0.11314
-0.126951
-0.0973426
-0.0818227
-0.086601
-0.129404
-0.109197
-0.138553
-0.173476
-0.159223
-0.158295
-0.154471
-0.143165
-0.154645
-0.173415
-0.171838
-0.181346
-0.182891
-0.173489
-0.171522
-0.191835
-0.226195
-0.214511
-0.235402
-0.23408
-0.219177
-0.215334
-0.24874
-0.0971202
-0.103092
-0.0820161
-0.0808292
-0.0801711
-0.10118
-0.0998714
-0.223924
-0.259417
-0.224855
-0.239109
-0.226822
-0.223278
-0.252655
-0.123724
-0.144536
-0.144135
-0.163016
-0.126729
-0.143744
-0.141306
-0.0969574
-0.0659808
-0.0775573
-0.110072
-0.069149
-0.113058
-0.0935359
-0.100767
-0.122995
-0.0775665
-0.0817086
-0.0728592
-0.105017
-0.117758
-0.119591
-0.156854
-0.134098
-0.134594
-0.137938
-0.13743
-0.116131
-0.235827
-0.196199
-0.190355
-0.215332
-0.191501
-0.21685
-0.230634
-0.293806
-0.306611
-0.271948
-0.281744
-0.278704
-0.292391
-0.306202
-0.227407
-0.235914
-0.23574
-0.240514
-0.236854
-0.224953
-0.23028
-0.383499
-0.387224
-0.26829
-0.204801
-0.198065
-0.224842
-0.189136
-0.267692
-0.225576
-0.271419
-0.268073
-0.304342
-0.263658
-0.305928
-0.225893
-0.218116
-0.230553
-0.240172
-0.241502
-0.221937
-0.221272
-0.176529
-0.191266
-0.166045
-0.204022
-0.1685
-0.20225
-0.174994
-0.186806
-0.191506
-0.213052
-0.22247
-0.189301
-0.210663
-0.190443
-0.179464
-0.19677
-0.175907
-0.208051
-0.182685
-0.172702
-0.205227
-0.184727
-0.20859
-0.217715
-0.18476
-0.211312
-0.182203
-0.187567
-0.218913
-0.19522
-0.196788
-0.212315
-0.209818
-0.224481
-0.208603
-0.290096
-0.24882
-0.22307
-0.290652
-0.245784
-0.382842
-0.382348
-0.27217
-0.2592
-0.303157
-0.307175
-0.258747
-0.168127
-0.162544
-0.183419
-0.19981
-0.159359
-0.17117
-0.1946
-0.176372
-0.201493
-0.181759
-0.210298
-0.178044
-0.200091
-0.180876
-0.193756
-0.186916
-0.237747
-0.221963
-0.184141
-0.196957
-0.234852
-0.190909
-0.228338
-0.178058
-0.217764
-0.180875
-0.187409
-0.231822
-0.143303
-0.118711
-0.0910278
-0.145555
-0.0877651
-0.146532
-0.143894
-0.179351
-0.167785
-0.207628
-0.217653
-0.220442
-0.170137
-0.175758
-0.18219
-0.226569
-0.175852
-0.209978
-0.185455
-0.22321
-0.173163
-0.380092
-0.379672
-0.374979
-0.402209
-0.378883
-0.376192
-0.403867
-0.377109
-0.386282
-0.374475
-0.401106
-0.378248
-0.37322
-0.400061
-0.195897
-0.193259
-0.226246
-0.196887
-0.195629
-0.196729
-0.204995
-0.203979
-0.222645
-0.201377
-0.203203
-0.20694
-0.284662
-0.223919
-0.258468
-0.224667
-0.277929
-0.265793
-0.265161
-0.265502
-0.267413
-0.242069
-0.269994
-0.264908
-0.265005
-0.264328
-0.121201
-0.0935084
-0.0584331
-0.112341
-0.0646135
-0.119301
-0.114868
-0.106571
-0.0736338
-0.0543917
-0.105449
-0.0501285
-0.110712
-0.100433
-0.357523
-0.363317
-0.376304
-0.37332
-0.358059
-0.368837
-0.372108
-0.350343
-0.343663
-0.372899
-0.365131
-0.353864
-0.362716
-0.360099
-0.0395984
-0.00839122
-0.0340609
-0.052637
-0.0290356
-0.0430719
-0.048912
-0.180273
-0.19182
-0.182822
-0.143414
-0.173457
-0.22301
-0.145186
-0.174064
-0.26575
-0.234902
-0.262682
-0.218974
-0.250611
-0.256587
-0.22846
-0.193296
-0.23226
-0.205187
-0.249054
-0.24429
-0.0799622
-0.0405859
-0.0214268
-0.0646332
-0.026534
-0.0673038
-0.0744785
-0.0639205
-0.0247302
-0.0197408
-0.060429
-0.0129754
-0.0709559
-0.0525017
-0.305707
-0.307791
-0.302702
-0.31608
-0.302762
-0.307578
-0.318807
-0.177786
-0.168604
-0.167372
-0.159509
-0.160821
-0.170023
-0.17549
-0.296347
-0.303758
-0.300806
-0.313836
-0.2997
-0.295603
-0.31164
-0.0861672
-0.154038
-0.0933736
-0.126603
-0.159934
-0.119755
-0.226097
-0.189853
-0.221379
-0.177301
-0.196319
-0.199793
-0.183181
-0.170036
-0.180883
-0.178035
-0.19516
-0.193786
-0.0445844
-0.00194432
0.00654037
-0.0233031
0.00209691
-0.0254903
-0.0403595
-0.171468
-0.167412
-0.15903
-0.161728
-0.173739
-0.157487
-0.166998
-0.261645
-0.288481
-0.253645
-0.276684
-0.259334
-0.257807
-0.278476
-0.162134
-0.14644
-0.153216
-0.150521
-0.149405
-0.158805
-0.154873
-0.132574
-0.118955
-0.0989738
-0.109001
-0.111326
-0.121854
-0.130248
-0.253498
-0.283267
-0.251796
-0.274093
-0.256532
-0.246686
-0.27112
-0.150859
-0.142427
-0.136988
-0.145387
-0.1361
-0.155071
-0.141397
-0.0312321
-0.0369257
-0.0948923
-0.0839109
-0.0287574
-0.0402391
-0.0946339
0.0919276
0.0822414
0.139331
-0.0293156
0.14117
0.110057
0.0259623
-0.0684157
-0.119876
-0.0675532
-0.103444
-0.150032
-0.0936936
-0.0315851
-0.0842146
-0.0392515
-0.0875377
-0.0258279
-0.0412303
-0.0937395
-0.183788
-0.166972
-0.188019
-0.167497
-0.184148
-0.193835
-0.156618
-0.11454
-0.161976
-0.157193
-0.180286
-0.166172
-0.0735957
-0.0853622
-0.0964763
-0.101832
-0.0887157
-0.0726234
-0.0953637
-0.0752664
-0.0835287
-0.0961266
-0.0937748
-0.0709798
-0.100944
-0.0880423
-0.126877
-0.11649
-0.106766
-0.0935257
-0.127999
-0.105408
-0.1162
-0.220748
-0.281452
-0.201412
-0.232989
-0.218706
-0.207654
-0.235995
-0.120843
-0.0927274
-0.0880489
-0.111703
-0.0970059
-0.116666
-0.116482
-0.0745563
-0.0509496
-0.0238014
-0.034324
-0.0424586
-0.0594727
-0.0677783
-0.212529
-0.282843
-0.199165
-0.230106
-0.216248
-0.19236
-0.226047
-0.105404
-0.0874581
-0.0674714
-0.105279
-0.0803512
-0.111686
-0.0978966
-0.175738
-0.108571
-0.114636
-0.142678
-0.12027
-0.145694
-0.17132
-0.155235
-0.106565
-0.151896
-0.215255
-0.23776
-0.17924
-0.195916
-0.235904
-0.217451
-0.177137
-0.180347
-0.11308
-0.139268
-0.151737
-0.129713
-0.184421
-0.14871
-0.0851967
-0.0907094
-0.136627
-0.0815002
-0.147706
-0.205868
-0.212991
-0.172555
-0.194261
-0.233056
-0.234293
-0.174934
-0.210675
-0.1681
-0.114688
-0.102048
-0.140243
-0.116963
-0.168282
-0.13804
-0.198001
-0.0624179
-0.0425928
-0.1138
-0.110496
-0.0766333
-0.196002
-0.205746
-0.227434
-0.161182
-0.183013
-0.163654
-0.2043
-0.229423
-0.186821
-0.0857084
-0.0591514
-0.133325
-0.0957192
-0.121954
-0.201987
-0.168695
-0.101126
-0.118541
-0.133879
-0.118155
-0.13552
-0.168234
-0.207201
-0.170091
-0.23224
-0.18675
-0.208566
-0.167203
-0.231729
-0.055146
-0.0417709
-0.0262854
0.005407
-0.0194315
-0.0609538
-0.0352552
-0.174922
-0.223954
-0.134745
-0.179757
-0.175196
-0.136099
-0.180741
-0.0506209
-0.0225582
0.000567436
-0.0388327
-0.0175756
-0.0543974
-0.0322835
-0.0735752
-0.0915945
-0.0673697
-0.0504734
-0.0499024
-0.0790838
-0.0711991
-0.176034
-0.209486
-0.134133
-0.179425
-0.175657
-0.133379
-0.179047
-0.0640385
-0.0287189
-0.0346535
-0.0476125
-0.0355467
-0.0589628
-0.0573275
-0.152731
-0.0938922
-0.088287
-0.122895
-0.101438
-0.127079
-0.141611
-0.19155
-0.05747
-0.115432
0.00414387
-0.127467
-0.194757
-0.0454388
-0.198028
-0.225422
-0.159348
-0.178483
-0.222252
-0.202112
-0.157567
-0.386823
-0.303077
-0.325913
-0.389711
-0.16114
-0.0977912
-0.117357
-0.132317
-0.111722
-0.165994
-0.130108
-0.159311
-0.00658216
0.000173295
-0.041318
-0.0780265
-0.0305397
-0.140884
-0.191078
-0.152928
-0.177732
-0.210025
-0.216275
-0.155509
-0.183175
-0.115334
-0.0737289
-0.0775338
-0.11824
-0.0631867
-0.127657
-0.113656
-0.0218439
-0.0851734
-0.103571
0.0602277
0.0553416
-0.083227
-0.021247
-0.388334
-0.296455
-0.388153
-0.275518
-0.155151
-0.188353
-0.140627
-0.173489
-0.143785
-0.149314
-0.191424
-0.0363296
-0.00788917
-0.0666374
-0.0464764
0.0152997
-0.0627458
-0.1258
-0.106262
-0.0736649
-0.0541416
-0.106277
-0.0569549
-0.10981
-0.101339
-0.163521
-0.1499
-0.202652
-0.174931
-0.173047
-0.146824
-0.196508
-0.0642952
-0.0905687
-0.0489459
-0.063068
-0.045879
-0.0681915
-0.0863129
-0.143827
-0.130107
-0.164068
-0.136736
-0.137561
-0.157389
-0.139614
-0.0330172
-0.00460062
-0.0123027
-0.0364679
-0.0119446
-0.0258571
-0.0472572
0.0319178
0.0460253
0.0854131
0.062824
0.0575271
0.0359991
0.0418015
-0.126165
-0.097531
-0.164611
-0.133008
-0.132324
-0.148064
-0.126399
-0.0120622
0.00139218
0.0124087
-0.0322407
0.00906379
-0.019745
-0.0186912
-0.103065
-0.0656583
-0.0614842
-0.0977679
-0.0588504
-0.0998825
-0.105555
-0.0181465
-0.0838959
0.0624185
-0.0861117
0.0678371
-0.0198389
-0.0744486
-0.145711
-0.186999
-0.138423
-0.1678
-0.186827
-0.146278
-0.135676
-0.23828
-0.301369
-0.291458
-0.236991
-0.10062
-0.0662136
-0.0539161
-0.103993
-0.055571
-0.0998245
-0.101311
-0.0382694
0.030717
-0.00787762
-0.0195688
0.0271741
-0.0305773
-0.0419381
-0.14716
-0.131181
-0.165959
-0.190876
-0.188259
-0.133879
-0.149595
-0.082866
0.0718415
0.166459
0.0251402
-0.00917862
-0.0724015
0.072241
-0.238364
-0.303618
-0.237265
-0.305815
-0.157954
-0.20313
-0.119552
-0.154152
-0.158457
-0.123472
-0.201436
-0.0471885
0.0365159
0.0193018
-0.0158518
0.0363566
-0.00085813
-0.0426953
-0.155948
-0.129177
-0.194611
-0.157223
-0.152843
-0.126174
-0.198465
-0.742348
-0.729143
-0.759241
-0.767046
-0.730751
-0.74067
-0.75982
-0.658148
-0.598212
-0.586425
-0.643692
-0.647023
-0.595185
-0.64717
-0.575543
-0.571732
-0.573413
-0.571234
-0.651343
-0.62853
-0.580696
-0.586698
-0.642448
-0.587915
-0.624327
-0.727673
-0.757982
-0.732442
-0.734212
-0.723695
-0.72774
-0.727292
-0.76265
-0.759325
-0.719734
-0.73879
-0.780756
-0.568967
-0.571138
-0.570235
-0.571806
-0.619455
-0.575203
-0.565435
-0.618372
-0.576668
-0.619753
-0.618279
-0.621608
-0.622874
-0.582855
-0.570119
-0.580183
-0.617206
-0.622015
-0.859416
-0.856147
-0.826257
-0.918563
-0.864934
-0.852626
-0.838043
-0.902859
-0.838401
-0.904519
-0.942295
-0.825009
-0.796482
-0.802768
-0.845493
-0.946218
-1.01564
-0.923571
-1.03077
-0.923681
-0.942728
-1.02692
-0.968613
-0.98515
-0.787999
-0.801289
-0.774389
-0.795257
-0.766846
-0.763424
-0.811723
-0.764201
-0.801517
-0.232835
-0.240288
-0.250136
-0.220125
-0.224031
-0.245155
-0.228323
-0.184765
-0.178416
-0.15687
-0.175058
-0.179995
-0.177753
-0.19447
-0.239095
-0.169097
-0.209692
-0.212823
-0.0131853
-0.0816298
-0.041309
-0.125588
-0.133248
-0.0514533
-0.0228372
-0.0376999
-0.0318782
-0.0675498
-0.0826344
-0.114858
-0.151466
-0.138505
-0.0952214
-0.153812
-0.10853
-0.0996602
-0.0655062
-0.093566
-0.0325485
-0.101141
0.0203942
-0.117076
-0.0689504
-0.0804265
-0.0502211
-0.136853
-0.114644
-0.111974
-0.14329
-0.126246
-0.0933986
-0.138654
-0.112377
-0.09251
-0.14805
-0.142385
-0.144191
-0.150112
-0.145422
-0.610544
-0.570549
-0.556028
-0.619021
-0.618875
-0.566955
-0.608702
-0.554958
-0.542398
-0.54671
-0.560666
-0.614786
-0.61595
-0.550021
-0.560637
-0.61795
-0.562428
-0.610546
-0.564756
-0.544381
-0.541931
-0.561877
-0.604033
-0.551387
-0.536579
-0.601581
-0.553843
-0.603236
-0.602518
-0.604461
-0.608204
-0.559718
-0.542283
-0.557975
-0.604935
-0.605734
-0.874874
-0.7973
-0.793883
-0.886659
-0.7971
-0.885648
-0.872768
-1.01177
-1.04952
-1.06604
-1.01306
-1.0265
-1.01381
-1.06007
-1.07176
-0.997689
-1.01526
-0.817137
-0.777529
-0.788202
-0.820905
-0.789836
-0.818938
-0.820733
-0.809036
-0.771955
-0.775013
-0.8124
-0.770633
-0.812857
-0.870142
-0.783063
-0.802195
-0.871362
-0.77773
-0.870744
-0.873906
-1.01749
-1.0694
-1.00929
-1.09639
-1.0176
-1.01562
-1.07027
-0.868081
-0.802503
-0.773244
-0.872281
-0.775972
-0.873871
-0.865673
-1.01136
-1.02668
-1.08702
-1.0107
-0.998337
-1.0821
-0.818489
-0.79611
-0.781349
-0.815588
-0.794676
-0.818243
-0.815587
-1.00455
-0.985727
-0.995161
-0.205258
-0.268145
-0.139953
-0.185603
-0.228062
-0.201453
-0.195638
-0.202211
-0.212913
-0.17725
-0.178926
-0.216256
-0.193329
-0.187925
-0.170829
-0.166519
-0.142245
-0.169406
-0.188345
-0.164367
-0.22458
-0.195365
-0.244628
-0.160502
-0.20078
-0.200305
-0.184552
-0.220787
-0.21447
-0.195993
-0.202353
-0.255466
-0.186916
-0.194472
-0.212419
-0.175709
-0.193957
-0.191192
-0.193337
-0.213035
-0.174981
-0.17415
-0.210761
-0.190574
-0.227304
-0.267676
-0.234081
-0.22501
-0.249078
-0.221048
-0.211293
-0.201589
-0.224997
-0.227334
-0.188286
-0.210149
-0.193597
-0.204201
-0.163921
-0.146125
-0.144063
-0.0646351
-0.0892493
-0.0456267
-0.0245702
-0.103918
-0.173295
-0.0921824
-0.0443273
-0.0652656
-0.0558608
-0.0967608
-0.126928
-0.143692
-0.0958101
-0.171988
-0.152928
-0.171721
-0.145247
-0.144845
-0.138598
-0.167028
-0.122675
-0.137319
-0.168605
-0.096483
-0.0794785
-0.11178
-0.053462
-0.0220737
-0.113982
-0.0815947
-0.0261209
-0.177168
-0.126555
-0.114814
-0.170256
-0.161528
-0.154252
-0.102848
-0.0869056
-0.063666
-0.0437137
-0.0931418
-0.0897232
-0.0536647
-0.140767
-0.175226
-0.172256
-0.147988
-0.171019
-0.139793
-0.145136
-0.0729793
-0.021819
-0.0977715
-0.0456984
-0.0957356
-0.0742808
-0.0210826
-0.0742807
-0.105444
-0.0196351
-0.044334
-0.0775636
-0.0974754
-0.0192901
-0.60163
-0.552291
-0.532406
-0.601803
-0.601011
-0.551638
-0.600936
-0.570808
-0.529545
-0.531795
-0.565965
-0.597784
-0.594486
-0.528788
-0.548032
-0.598759
-0.550536
-0.59376
-0.5513
-0.531352
-0.538557
-0.56447
-0.582575
-0.539047
-0.512002
-0.57895
-0.542763
-0.582465
-0.579758
-0.588401
-0.592631
-0.546204
-0.51649
-0.542584
-0.592628
-0.587585
-0.8532
-0.798932
-0.755503
-0.854756
-0.764072
-0.858993
-0.846039
-1.01
-1.06194
-1.00235
-1.06297
-1.0622
-1.00701
-1.01047
-0.857597
-0.802143
-0.774367
-0.868971
-0.767887
-0.865169
-0.862238
-1.00125
-1.07897
-1.00728
-1.02688
-1.08544
-1.03345
-0.981082
-0.916671
-0.999147
-0.925793
-1.03138
-0.927813
-0.909869
-1.00954
-0.920701
-0.934586
-1.02072
-1.03358
-0.928022
-0.929116
-1.01497
-0.988412
-1.0506
-1.00972
-1.07584
-1.01079
-1.0001
-1.00792
-1.02879
-1.08128
-0.981278
-1.02246
-0.247006
-0.262912
-0.216493
-0.245999
-0.239145
-0.230365
-0.224495
-0.268784
-0.259553
-0.199212
-0.258702
-0.228099
-0.227291
-0.217575
-0.217089
-0.251503
-0.19959
-0.268478
-0.221467
-0.247542
-0.245395
-0.28901
-0.245615
-0.204104
-0.222964
-0.232983
-0.206818
-0.227076
-0.22489
-0.248423
-0.230767
-0.243566
-0.249732
-0.260122
-0.249295
-0.229973
-0.254013
-0.181712
-0.194433
-0.203431
-0.161878
-0.205904
-0.162443
-0.180671
-0.187657
-0.218326
-0.190773
-0.2011
-0.270795
-0.188155
-0.261664
-0.210211
-0.22115
-0.16532
-0.194679
-0.110947
-0.184443
-0.150882
-0.139617
-0.153192
-0.138244
-0.111679
-0.0734062
-0.0195424
-0.0942193
-0.0405117
-0.0723841
-0.0960468
-0.0191224
-0.173198
-0.171767
-0.206698
-0.202134
-0.18478
-0.257155
-0.195284
-0.218512
-0.200113
-0.209469
-0.185911
-0.197107
-0.189831
-0.212729
-0.110739
-0.148606
-0.178085
-0.138493
-0.147603
-0.110476
-0.139493
-0.109765
-0.175373
-0.144435
-0.140144
-0.145312
-0.138467
-0.11028
-0.573434
-0.537405
-0.50018
-0.575667
-0.571866
-0.534369
-0.57712
-0.543857
-0.522302
-0.524126
-0.540824
-0.568495
-0.563991
-0.496863
-0.526734
-0.567233
-0.530681
-0.567327
-0.536873
-0.518959
-0.516391
-0.539699
-0.558182
-0.512202
-0.47865
-0.548173
-0.516811
-0.552242
-0.556108
-0.561256
-0.560592
-0.522786
-0.482282
-0.520219
-0.564368
-0.555499
-0.897698
-0.997548
-0.924788
-1.01468
-0.988671
-0.908395
-0.923315
-0.879582
-0.918755
-1.00982
-0.968515
-0.98065
-0.928199
-0.864697
-1.01958
-1.05005
-1.00794
-1.06369
-1.01409
-1.0057
-1.08098
-0.994558
-0.988521
-1.0437
-1.05473
-0.992966
-0.984985
-1.05081
-0.848752
-0.908862
-0.962688
-0.988977
-0.861916
-0.900108
-0.949269
-0.984568
-0.985701
-1.05566
-1.03819
-0.980785
-0.983672
-1.04216
-0.176576
-0.204878
-0.19183
-0.156286
-0.20335
-0.176872
-0.157467
-0.187063
-0.214833
-0.233771
-0.201803
-0.210877
-0.204855
-0.187671
-0.177859
-0.192486
-0.201552
-0.159322
-0.204853
-0.177596
-0.158621
-0.229726
-0.218917
-0.217298
-0.203994
-0.239556
-0.214977
-0.222402
-0.263489
-0.270772
-0.255594
-0.256523
-0.273798
-0.267239
-0.249633
-0.303557
-0.239963
-0.300399
-0.252777
-0.208475
-0.288032
-0.251122
-0.176212
-0.206034
-0.154471
-0.186784
-0.176044
-0.20643
-0.154951
-0.186387
-0.198138
-0.228392
-0.220262
-0.198143
-0.218131
-0.186951
-0.186735
-0.214418
-0.199381
-0.230556
-0.199798
-0.186409
-0.215713
-0.175089
-0.186845
-0.204459
-0.15541
-0.203979
-0.154772
-0.175374
-0.187282
-0.205134
-0.223857
-0.180453
-0.234879
-0.199075
-0.176876
-0.10877
-0.168452
-0.142233
-0.138593
-0.109224
-0.141322
-0.138847
-0.592853
-0.583863
-0.657083
-0.654813
-0.592528
-0.58807
-0.658956
-0.547811
-0.508148
-0.462786
-0.542862
-0.536181
-0.505586
-0.551419
-0.49678
-0.494497
-0.497986
-0.492567
-0.542061
-0.522875
-0.459036
-0.492416
-0.53161
-0.500799
-0.536073
-0.57811
-0.579449
-0.647578
-0.634024
-0.583756
-0.571545
-0.640943
-0.488291
-0.490892
-0.487673
-0.491359
-0.523343
-0.474199
-0.436596
-0.502909
-0.480763
-0.508694
-0.519462
-0.527204
-0.518831
-0.488372
-0.439047
-0.484109
-0.531562
-0.511766
-0.571482
-0.629549
-0.56208
-0.627002
-0.56804
-0.630942
-0.568578
-0.185151
-0.196577
-0.228888
-0.217357
-0.217329
-0.195235
-0.185005
-0.184686
-0.219023
-0.223414
-0.191159
-0.217158
-0.192778
-0.183759
-0.553878
-0.536267
-0.603124
-0.605677
-0.544775
-0.550284
-0.61127
-0.463305
-0.45876
-0.46049
-0.462688
-0.558953
-0.608695
-0.556625
-0.620711
-0.549254
-0.562871
-0.617824
-0.572923
-0.574832
-0.541539
-0.530535
-0.59972
-0.577948
-0.545156
-0.523166
-0.5913
-0.462158
-0.454311
-0.450596
-0.46552
-0.606981
-0.609218
-0.579826
-0.575819
-0.537503
-0.571369
-0.512302
-0.575498
-0.518874
-0.581144
-0.534023
-0.514406
-0.48142
-0.538346
-0.553328
-0.490864
-0.507724
-0.557965
-0.431646
-0.342223
-0.391377
-0.399478
-0.432973
-0.620707
-0.624888
-0.521662
-0.544043
-0.505283
-0.566815
-0.496209
-0.526471
-0.563506
-0.615603
-0.552191
-0.608144
-0.554372
-0.492917
-0.47805
-0.547023
-0.520948
-0.500921
-0.471071
-0.54115
-0.435797
-0.318869
-0.382199
-0.377152
-0.436254
-0.593068
-0.57675
-0.57334
-0.585006
-0.595407
-0.552469
-0.602654
-0.552331
-0.484571
-0.51725
-0.457177
-0.529344
-0.467259
-0.534866
-0.477851
-0.554946
-0.548637
-0.624201
-0.57148
-0.576685
-0.612337
-0.580305
-0.624797
-0.624583
-0.452868
-0.422221
-0.478126
-0.499243
-0.431736
-0.445324
-0.505726
-0.402582
-0.298016
-0.335431
-0.339605
-0.395361
-0.562741
-0.589798
-0.578593
-0.583055
-0.46198
-0.485561
-0.449513
-0.520765
-0.438653
-0.469392
-0.514036
-0.547278
-0.568852
-0.533001
-0.570886
-0.428068
-0.417047
-0.488708
-0.455774
-0.435947
-0.408771
-0.481056
-0.381256
-0.302604
-0.33272
-0.33062
-0.388409
-0.464644
-0.552967
-0.554172
-0.473204
-0.485827
-0.567465
-0.493814
-0.567447
-0.418622
-0.447446
-0.392064
-0.466017
-0.401119
-0.471742
-0.412645
-0.618389
-0.527838
-0.550353
-0.571277
-0.555606
-0.580011
-0.614968
-0.571117
-0.567145
-0.623426
-0.535839
-0.568469
-0.601814
-0.621317
-0.563712
-0.588683
-0.569809
-0.572117
-0.598673
-0.541082
-0.508361
-0.568948
-0.535551
-0.604716
-0.56459
-0.53836
-0.560518
-0.558538
-0.560657
-0.569057
-0.568627
-0.591795
-0.499217
-0.524192
-0.540577
-0.527714
-0.554142
-0.591011
-0.373857
-0.373383
-0.26821
-0.197667
-0.151588
-0.22305
-0.218597
-0.195623
-0.270022
-0.359756
-0.311624
-0.281566
-0.23626
-0.204855
-0.161107
-0.202889
-0.285711
-0.233937
-0.277383
-0.198528
-0.226808
-0.15866
-0.273018
-0.200862
-0.231121
-0.386392
-0.356467
-0.40919
-0.4332
-0.366226
-0.380175
-0.439177
-0.325984
-0.323439
-0.293547
-0.29591
-0.322906
-0.462371
-0.548707
-0.469327
-0.545955
-0.395989
-0.417119
-0.383237
-0.455244
-0.373398
-0.40262
-0.449215
-0.453256
-0.511155
-0.444884
-0.514311
-0.364563
-0.35061
-0.423331
-0.384355
-0.370831
-0.342324
-0.417381
-0.315961
-0.322604
-0.289922
-0.285935
-0.319279
-0.41995
-0.438986
-0.442436
-0.413665
-0.436617
-0.509213
-0.442155
-0.507915
-0.356419
-0.378551
-0.328221
-0.402116
-0.337126
-0.408837
-0.349485
-0.569768
-0.455417
-0.495492
-0.492283
-0.500313
-0.502498
-0.566718
-0.554166
-0.555361
-0.558315
-0.552946
-0.578902
-0.464275
-0.513869
-0.525295
-0.581263
-0.509637
-0.512221
-0.560995
-0.540162
-0.541563
-0.559514
-0.547915
-0.485354
-0.430207
-0.485855
-0.479663
-0.555094
-0.476622
-0.555468
-0.503128
-0.503764
-0.558808
-0.561791
-0.538434
-0.538767
-0.558799
-0.53596
-0.423653
-0.462851
-0.455054
-0.469511
-0.468477
-0.529945
-0.28695
-0.247716
-0.239972
-0.32844
-0.288046
-0.238863
-0.32693
-0.307903
-0.24666
-0.314926
-0.233729
-0.308916
-0.231815
-0.314229
-0.29401
-0.239069
-0.20658
-0.167616
-0.242346
-0.289872
-0.208687
-0.471166
-0.33528
-0.336012
-0.474446
-0.297549
-0.213133
-0.170368
-0.248159
-0.244925
-0.210889
-0.301619
-0.331097
-0.325049
-0.249002
-0.235249
-0.333331
-0.32353
-0.236949
-0.481538
-0.333304
-0.473354
-0.332488
-0.306721
-0.260587
-0.21938
-0.180449
-0.21765
-0.30798
-0.257264
-0.33321
-0.249773
-0.338179
-0.238898
-0.335837
-0.237713
-0.334273
-0.306975
-0.214616
-0.251055
-0.17809
-0.305412
-0.216481
-0.254699
-0.322262
-0.299053
-0.346631
-0.363975
-0.308136
-0.313039
-0.373801
-0.272648
-0.274102
-0.240016
-0.244106
-0.267825
-0.407625
-0.437523
-0.411506
-0.436349
-0.332679
-0.352929
-0.323054
-0.392839
-0.314053
-0.340787
-0.384881
-0.385338
-0.433625
-0.37872
-0.43173
-0.299284
-0.293711
-0.354814
-0.321413
-0.304387
-0.284166
-0.349653
-0.259914
-0.250652
-0.236505
-0.23201
-0.264243
-0.333764
-0.412743
-0.415317
-0.325508
-0.365298
-0.438682
-0.377237
-0.431408
-0.496828
-0.387465
-0.42082
-0.410745
-0.431839
-0.423848
-0.483877
-0.561316
-0.501437
-0.558525
-0.450308
-0.581645
-0.658027
-0.488112
-0.497237
-0.59407
-0.47016
-0.645599
-0.510741
-0.394482
-0.452533
-0.4464
-0.518769
-0.44407
-0.432403
-0.566393
-0.431799
-0.435779
-0.562564
-0.561601
-0.442251
-0.480411
-0.600267
-0.45847
-0.543734
-0.622939
-0.465253
-0.410463
-0.359922
-0.403147
-0.40469
-0.472415
-0.392606
-0.561839
-0.428855
-0.42264
-0.545904
-0.506083
-0.539057
-0.409406
-0.432362
-0.414723
-0.495951
-0.555807
-0.566185
-0.433544
-0.437701
-0.563111
-0.454753
-0.352357
-0.394851
-0.377982
-0.396795
-0.384945
-0.449502
-0.520101
-0.433142
-0.583508
-0.438076
-0.529852
-0.422336
-0.572592
-0.300819
-0.238682
-0.334611
-0.247874
-0.295563
-0.237043
-0.334006
-0.285293
-0.270294
-0.245717
-0.200656
-0.217463
-0.273041
-0.245441
-0.216999
-0.488701
-0.777149
-0.493445
-0.776511
-0.265963
-0.220661
-0.245632
-0.203647
-0.261459
-0.246059
-0.218518
-0.485957
-0.304897
-0.247756
-0.237638
-0.333384
-0.306989
-0.236254
-0.33382
-0.337301
-0.252659
-0.345848
-0.243043
-0.344637
-0.24166
-0.340059
-0.312229
-0.264217
-0.220778
-0.187882
-0.268011
-0.309429
-0.222628
-0.513886
-0.42571
-0.347689
-0.508772
-0.335952
-0.252325
-0.341066
-0.239625
-0.343463
-0.334953
-0.240617
-0.463906
-0.452367
-0.315351
-0.226872
-0.190784
-0.275912
-0.27163
-0.224673
-0.319299
-0.34516
-0.345541
-0.253053
-0.244116
-0.345649
-0.342147
-0.245904
-0.427501
-0.657404
-0.653089
-0.421065
-0.498382
-0.42596
-0.507646
-0.429028
-0.329102
-0.289718
-0.236274
-0.202235
-0.233681
-0.331832
-0.286742
-0.438862
-0.435224
-0.346967
-0.254045
-0.344685
-0.250544
-0.345448
-0.247829
-0.348549
-0.326557
-0.228671
-0.279348
-0.199181
-0.322446
-0.23121
-0.283952
-0.218656
-0.168769
-0.181994
-0.183835
-0.217267
-0.316806
-0.408454
-0.322082
-0.400911
-0.298173
-0.39091
-0.283067
-0.392951
-0.214836
-0.16301
-0.18115
-0.180447
-0.215948
-0.281509
-0.375295
-0.376983
-0.283336
-0.274374
-0.390343
-0.279657
-0.387818
-0.412104
-0.320872
-0.362003
-0.343541
-0.369458
-0.355046
-0.401968
-0.55228
-0.424334
-0.544721
-0.416148
-0.462465
-0.508849
-0.4032
-0.420913
-0.475862
-0.396647
-0.48918
-0.614767
-0.703921
-0.612863
-0.71399
-0.425468
-0.328666
-0.386115
-0.370537
-0.435725
-0.379317
-0.363362
-0.504125
-0.413135
-0.413668
-0.50949
-0.446367
-0.37548
-0.412487
-0.455377
-0.388
-0.434379
-0.469527
-0.377262
-0.351623
-0.291115
-0.333843
-0.341114
-0.389416
-0.320044
-0.440073
-0.399588
-0.400941
-0.429305
-0.604978
-0.688677
-0.609561
-0.693343
-0.396856
-0.41213
-0.315791
-0.350455
-0.333714
-0.386027
-0.420926
-0.489219
-0.413023
-0.41178
-0.509732
-0.363667
-0.282464
-0.318058
-0.294092
-0.329087
-0.308993
-0.351583
-0.40922
-0.363979
-0.441932
-0.367298
-0.421175
-0.347588
-0.431038
-0.298409
-0.246209
-0.328659
-0.261377
-0.300615
-0.248097
-0.32831
-0.253362
-0.221234
-0.241505
-0.202752
-0.260426
-0.223842
-0.201604
-0.226015
-0.260637
-0.224632
-0.226166
-0.523998
-0.737883
-0.522698
-0.75196
-0.262134
-0.223985
-0.230825
-0.201808
-0.264988
-0.227241
-0.225569
-0.520122
-0.762645
-0.511417
-0.764541
-0.297232
-0.26269
-0.249361
-0.329768
-0.298039
-0.249116
-0.328064
-0.35363
-0.263667
-0.34601
-0.259708
-0.345143
-0.257686
-0.355198
-0.414365
-0.658377
-0.660767
-0.419239
-0.336764
-0.292818
-0.238946
-0.21074
-0.295609
-0.3344
-0.241378
-0.594672
-0.475555
-0.459146
-0.615307
-0.351948
-0.261783
-0.344149
-0.25322
-0.344806
-0.350069
-0.255626
-0.488428
-0.651647
-0.652332
-0.509723
-0.338456
-0.245727
-0.213372
-0.300209
-0.297691
-0.243583
-0.34018
-0.358444
-0.346556
-0.269277
-0.261539
-0.347994
-0.356513
-0.26359
-0.5743
-0.645623
-0.648977
-0.587086
-0.616617
-0.479255
-0.615872
-0.490642
-0.344807
-0.310289
-0.255047
-0.224265
-0.252353
-0.347418
-0.307089
-0.530433
-0.650596
-0.658693
-0.51448
-0.359456
-0.270853
-0.351498
-0.26698
-0.34885
-0.265336
-0.361966
-0.343481
-0.247717
-0.302236
-0.221174
-0.341513
-0.250046
-0.304775
-0.177617
-0.108218
-0.131975
-0.139451
-0.166885
-0.28457
-0.374606
-0.283438
-0.373367
-0.268123
-0.348291
-0.260026
-0.356791
-0.153338
-0.0881954
-0.125203
-0.117598
-0.158993
-0.234104
-0.295182
-0.303893
-0.225252
-0.251651
-0.346163
-0.257772
-0.343374
-0.304562
-0.242629
-0.262904
-0.249712
-0.274687
-0.259107
-0.291365
-0.412198
-0.397995
-0.423509
-0.393777
-0.359406
-0.403584
-0.301285
-0.290876
-0.373223
-0.284636
-0.396952
-0.597005
-0.732643
-0.60462
-0.717397
-0.321473
-0.250496
-0.304334
-0.282553
-0.337205
-0.289823
-0.268893
-0.37657
-0.356282
-0.365187
-0.367322
-0.343983
-0.26166
-0.275286
-0.377338
-0.272252
-0.329764
-0.390062
-0.272342
-0.253205
-0.221814
-0.243433
-0.245864
-0.281366
-0.239179
-0.343158
-0.314278
-0.32162
-0.337312
-0.614842
-0.724511
-0.604643
-0.689368
-0.287026
-0.291943
-0.247728
-0.251855
-0.248663
-0.276004
-0.313433
-0.357828
-0.354039
-0.350214
-0.364934
-0.26271
-0.215582
-0.233967
-0.23153
-0.237567
-0.234431
-0.257247
-0.301793
-0.255545
-0.359144
-0.25431
-0.31669
-0.252212
-0.335161
-0.314616
-0.241033
-0.349493
-0.253977
-0.313245
-0.237035
-0.349446
-0.345077
-0.314443
-0.338851
-0.321675
-0.279327
-0.244496
-0.183278
-0.204587
-0.282977
-0.241404
-0.209071
-0.488692
-0.559833
-0.486365
-0.562171
-0.27561
-0.216612
-0.233395
-0.186683
-0.272405
-0.237465
-0.212672
-0.530124
-0.700238
-0.527625
-0.699552
-0.31624
-0.250491
-0.228598
-0.347698
-0.318582
-0.233214
-0.348117
-0.371061
-0.272856
-0.368512
-0.269474
-0.364754
-0.270478
-0.371969
-0.602446
-0.64468
-0.642996
-0.589745
-0.353893
-0.316856
-0.259543
-0.242185
-0.322096
-0.350866
-0.261234
-0.591593
-0.572544
-0.566411
-0.599664
-0.368175
-0.273386
-0.354802
-0.269699
-0.359337
-0.364857
-0.270014
-0.612025
-0.697625
-0.695069
-0.604855
-0.355477
-0.263425
-0.245355
-0.327003
-0.32486
-0.262998
-0.356451
-0.369726
-0.369806
-0.265682
-0.268491
-0.368583
-0.371092
-0.266436
-0.57723
-0.578888
-0.599426
-0.580326
-0.610711
-0.574616
-0.602766
-0.578802
-0.360106
-0.332396
-0.261879
-0.248572
-0.263238
-0.360232
-0.332544
-0.620701
-0.699178
-0.699555
-0.603561
-0.370091
-0.263129
-0.365306
-0.263479
-0.366451
-0.265564
-0.369996
-0.357986
-0.26365
-0.328604
-0.247378
-0.357385
-0.262786
-0.329579
-0.0827412
-0.061972
-0.0770404
-0.0756139
-0.0800063
-0.21568
-0.290419
-0.220684
-0.276734
-0.210348
-0.244312
-0.20585
-0.249004
-0.0776687
-0.0615777
-0.0772554
-0.0773014
-0.0787319
-0.207184
-0.239775
-0.232866
-0.209587
-0.20582
-0.243359
-0.205681
-0.237973
-0.227298
-0.191419
-0.203622
-0.200396
-0.209659
-0.213022
-0.220654
-0.327868
-0.309743
-0.333608
-0.297095
-0.248032
-0.265612
-0.244533
-0.244298
-0.260265
-0.237512
-0.248862
-0.39373
-0.47541
-0.399223
-0.545589
-0.237626
-0.197433
-0.225828
-0.226841
-0.246622
-0.218407
-0.219503
-0.320909
-0.269618
-0.274261
-0.319291
-0.235498
-0.216101
-0.237579
-0.22731
-0.230621
-0.228447
-0.234114
-0.312303
-0.249068
-0.249504
-0.299212
-0.397962
-0.46865
-0.396009
-0.441106
-0.213737
-0.209708
-0.155921
-0.173827
-0.172304
-0.211504
-0.212986
-0.317585
-0.267979
-0.257554
-0.318744
-0.217378
-0.204246
-0.220714
-0.1898
-0.221563
-0.186796
-0.216891
-0.314414
-0.215292
-0.347436
-0.23364
-0.317051
-0.212346
-0.345839
-0.331736
-0.294574
-0.286609
-0.338974
-0.501173
-0.565835
-0.493691
-0.567189
-0.274804
-0.189089
-0.235103
-0.15646
-0.229755
-0.278762
-0.185521
-0.501552
-0.563789
-0.499737
-0.56473
-0.311814
-0.231591
-0.206991
-0.341738
-0.308334
-0.209652
-0.344401
-0.373081
-0.255595
-0.367354
-0.260606
-0.366924
-0.26168
-0.374113
-0.580647
-0.578307
-0.578077
-0.580627
-0.363168
-0.333407
-0.262262
-0.248923
-0.335302
-0.36146
-0.262163
-0.637898
-0.647855
-0.637006
-0.639001
-0.372479
-0.256833
-0.365833
-0.263144
-0.366731
-0.371066
-0.262325
-0.57945
-0.582264
-0.581351
-0.579031
-0.363907
-0.261336
-0.249208
-0.337444
-0.335893
-0.261953
-0.365318
-0.374769
-0.367504
-0.250856
-0.259863
-0.36677
-0.3749
-0.258524
-0.591659
-0.583149
-0.584668
-0.595538
-0.644433
-0.650926
-0.639684
-0.661128
-0.367581
-0.338718
-0.258054
-0.247974
-0.259183
-0.36583
-0.340703
-0.579571
-0.582541
-0.583447
-0.579008
-0.375003
-0.249319
-0.364218
-0.256143
-0.366301
-0.257473
-0.373188
-0.366806
-0.260915
-0.338872
-0.248297
-0.366534
-0.259899
-0.339471
-0.0594456
-0.0429015
-0.0586679
-0.0415633
-0.0612265
-0.0531663
-0.212611
-0.248127
-0.210734
-0.255297
-0.199481
-0.243718
-0.192317
-0.248253
-0.0397163
-0.00900433
-0.0550013
-0.0318185
-0.0473746
-0.0478823
-0.0173402
-0.128448
-0.206828
-0.21665
-0.120605
-0.17785
-0.242063
-0.189721
-0.237929
-0.288236
-0.25366
-0.298031
-0.258756
-0.204124
-0.20658
-0.142194
-0.127653
-0.200762
-0.208597
-0.128773
-0.337223
-0.356873
-0.368077
-0.332785
-0.251568
-0.245021
-0.244353
-0.240146
-0.19605
-0.108491
-0.117222
-0.182408
-0.190503
-0.118748
-0.189287
-0.220485
-0.224516
-0.233888
-0.220024
-0.327406
-0.354019
-0.347771
-0.331071
-0.231314
-0.246267
-0.245535
-0.237419
-0.173446
-0.100018
-0.173845
-0.0882619
-0.166009
-0.181134
-0.0911311
-0.297245
-0.22907
-0.236802
-0.294934
-0.469557
-0.548702
-0.467022
-0.549736
-0.471937
-0.552724
-0.471608
-0.552391
-0.602277
-0.583112
-0.582554
-0.597226
-0.697677
-0.701101
-0.696488
-0.703509
-0.370523
-0.244146
-0.36268
-0.254875
-0.360692
-0.372174
-0.253172
-0.614375
-0.583906
-0.583241
-0.615858
-0.613949
-0.580154
-0.581459
-0.61252
-0.711897
-0.702729
-0.707951
-0.705242
-0.616176
-0.583816
-0.583855
-0.615858
0.0270795
0.066669
0.0240377
0.0612241
0.0228752
0.0525635
0.0282605
-0.104734
-0.201246
-0.112898
-0.189977
-0.0973549
-0.160937
-0.0994462
-0.170564
0.022956
0.0953285
0.0251382
0.057538
0.0249923
0.027193
0.0551862
-0.104316
-0.126776
-0.104269
-0.121776
-0.120779
-0.154275
-0.12457
-0.143961
-0.217182
-0.218225
-0.214655
-0.206652
-0.276187
-0.260136
-0.272427
-0.271582
-0.220689
-0.176798
-0.186182
-0.212338
-0.174139
-0.113645
-0.160415
-0.137194
-0.265228
-0.254966
-0.244291
-0.269042
-0.201511
-0.171896
-0.162194
-0.208601
-0.246308
-0.197981
-0.192363
-0.259874
-0.366613
-0.372952
-0.332597
-0.405664
-0.415007
-0.500042
-0.416253
-0.4812
-0.606448
-0.578165
-0.574393
-0.6101
-0.753814
-0.680563
-0.687681
-0.739397
-0.580395
-0.538007
-0.550878
-0.567201
-0.455525
-0.380378
-0.4064
-0.428865
-0.698788
-0.677036
-0.659071
-0.725425
-0.542554
-0.532122
-0.514039
-0.560865
-1.22327
-1.11503
-1.08639
-1.23428
-1.09451
-1.25921
-1.21771
-1.43985
-1.48847
-1.54318
-1.46775
-1.45755
-1.47653
-1.55948
-1.32365
-1.43544
-1.31172
-1.50815
-1.28704
-1.46906
-1.3412
-1.22037
-1.12436
-1.09736
-1.23817
-1.09464
-1.22466
-1.23974
-1.33976
-1.36194
-1.57607
-1.47458
-1.48317
-1.36164
-1.33132
-1.47158
-1.57821
-1.46863
-1.60409
-1.46978
-1.56005
-1.47552
-1.68274
-1.70216
-1.93165
-1.91349
-1.60227
-1.8632
-1.77167
-1.61016
-1.57152
-1.54999
-1.76073
-1.51781
-1.71734
-1.67795
-2.23998
-2.2103
-2.14101
-2.31492
-2.15747
-1.64451
-1.63639
-1.79162
-1.80811
-1.66517
-1.54419
-1.73888
-1.63164
-1.85716
-1.6681
-1.89799
-1.8093
-1.61973
-1.59396
-1.96139
-1.69131
-1.8436
-1.82571
-1.67026
-1.64367
-1.6921
-1.82282
-1.45503
-1.48767
-1.6174
-1.61444
-1.48495
-1.47914
-1.46957
-1.44241
1.27759
1.30896
0.520082
0.540971
1.02829
1.21601
1.26542
1.21653
1.02746
0.562361
0.560682
1.28028
1.27948
1.2563
-1.82759
-1.70623
-1.84676
0.564978
0.564616
1.31521
1.28455
0.564193
0.564043
1.29133
1.35936
1.29165
-0.00210678
-0.0214482
-0.02044
0.0151366
0.0192315
-0.00523291
-0.0329314
0.384607
0.391464
-0.0153254
-0.00892064
-0.00599763
-0.0277396
0.00754563
-0.0515566
0.0243737
0.436883
0.442467
0.485634
0.446857
0.392491
0.404444
0.470081
0.466285
0.499299
0.414961
0.490337
0.415725
0.488888
0.500749
0.510323
0.496573
0.446751
0.49757
0.45125
0.509971
0.503315
0.42451
0.493568
0.493177
0.416839
0.503395
-1.7563
-1.582
-1.71267
-1.84495
-1.63364
-1.67241
-1.90437
-1.55673
-1.80333
-1.92356
-1.47161
-1.35866
-1.63348
-1.85548
-1.54449
-1.53096
-1.60705
-1.78335
-1.48317
-1.60556
-1.7395
-1.26676
-1.10172
-1.15136
-1.25276
-1.27649
-1.14275
-1.23854
-1.1918
-1.1261
-1.11807
-1.1954
-1.13199
-1.17759
-1.12096
-1.18708
-1.11863
-1.84368
-1.73037
-1.71954
-1.8333
-2.46334
-2.4236
-2.65659
-2.4574
-2.49322
0.57573
0.559254
1.31491
1.31829
0.563324
0.564757
1.35803
1.34744
-2.47149
-2.26906
-2.36294
-2.54019
-2.29697
-2.47674
-2.56238
0.596114
0.597931
0.563141
0.561874
1.36362
0.155209
0.211009
0.328055
0.333724
0.173645
0.206647
0.324018
0.11884
0.352602
0.20568
0.355701
0.216216
0.36765
0.225594
0.364743
0.176141
0.329769
0.192294
0.321679
0.170783
0.196987
0.323722
0.51472
0.506428
0.444786
0.441683
0.518104
0.496539
0.514422
0.432237
0.497793
0.433986
0.498336
0.513944
0.51788
0.518555
0.423401
0.519524
0.424306
0.516841
0.512611
0.430831
0.49733
0.49689
0.429346
0.513124
-1.09556
-1.1759
-1.09757
-1.1968
-1.43604
-1.62236
-1.45457
-1.56962
-1.17743
-1.18976
-1.11638
-1.12604
-1.17656
-1.11568
-1.18497
-1.29015
-1.4511
-1.22928
-1.31532
-1.30307
-1.20455
-1.42285
-1.46364
-1.43283
-1.55258
-1.4419
-1.40354
-1.56717
-1.14021
-1.20102
-1.20118
-1.20527
-1.13239
-1.21506
-1.68423
0.596743
0.594982
0.586473
0.589094
-1.70728
-1.69643
-1.71822
-1.41061
-1.41041
-1.54086
-1.46889
-1.57176
-1.67726
-2.90726
-3.06167
-3.47485
-2.81454
-1.78181
-1.66856
-1.45521
-1.60465
-1.52886
-1.61938
-1.83615
-1.93487
-1.60409
-1.64046
-1.96201
0.577014
0.579361
0.588294
0.586935
0.161805
0.188783
0.311651
0.315901
0.166444
0.186033
0.308986
0.190089
0.330515
0.184736
0.312656
0.238044
0.324716
0.220831
0.319802
0.158695
0.310003
0.178308
0.304677
0.158399
0.180377
0.309
0.514325
0.518456
0.422808
0.421047
0.516342
0.516788
0.77097
1.00523
0.832383
0.882784
0.885002
0.828949
0.771469
0.505755
0.406935
0.569648
0.412101
0.510087
0.508482
0.497407
0.561755
0.386902
0.567256
0.394169
0.493738
0.771058
1.0112
0.837202
0.880061
0.878028
0.840399
0.771015
0.505453
0.404669
0.571411
0.570187
0.402391
0.507103
-1.41047
-1.55353
-1.48013
-1.12813
-1.18919
-1.18713
-1.08302
-1.1497
-1.15989
-1.09768
-1.08797
-1.16318
-1.08977
-1.17985
-1.42949
-1.45873
-1.54045
-1.59802
-1.44125
-1.45375
-1.53153
-1.14636
-1.03248
-1.08677
-1.19176
-1.12723
-1.04967
-1.19486
-1.15511
-1.28191
-1.06816
-1.09605
-1.16476
-1.05578
-1.21517
-1.40529
-1.6458
-1.45923
-1.15885
-1.0829
-1.08266
-1.14619
-1.08877
-1.143
-1.16441
-1.18615
-1.15956
-1.09712
-1.08847
-1.10928
-1.17424
-1.15784
-1.64282
-1.42984
-1.44127
-1.81436
-1.65506
-1.67902
-2.05689
-1.66858
-2.00929
-1.83709
-1.56898
-1.35317
-1.49342
-1.271
-1.30113
-1.46325
-1.61454
-2.61175
-2.69525
-2.36899
-2.7255
-1.92909
-1.62075
-1.68856
-1.96647
-2.33917
-3.53148
-1.80166
-1.94513
-2.32548
0.578113
0.57296
0.539813
0.543992
-1.80509
-1.66901
-1.74622
-2.06873
-1.65718
-1.83139
-2.05456
-1.7775
-1.10364
-2.1814
-1.49441
-1.16204
-2.15383
-1.72605
-1.72894
-1.68622
-1.62615
-1.84062
-1.62958
-1.85429
-1.7103
-2.08726
-1.62581
-2.34937
-1.53767
-2.2291
-2.6114
-1.72937
0.535243
0.539084
-2.79203
-2.23809
-2.85755
0.54441
0.542429
-1.68291
-2.03998
-2.05799
-3.16178
0.150787
0.171286
0.298362
0.294046
0.15159
0.168932
0.298079
0.23103
0.260922
0.230672
0.263881
0.225001
0.318517
0.179842
0.316396
0.149731
0.289638
0.160298
0.294521
0.146066
0.164397
0.29896
0.489927
0.562533
0.3865
0.269954
0.379893
0.49257
0.561709
0.766124
1.01475
0.856522
0.862207
0.860622
0.850712
0.770175
0.480006
0.370304
0.253716
0.53478
0.371887
0.539685
0.478122
0.472921
0.522558
0.220621
0.364438
0.529551
0.366708
0.469766
0.774497
1.01674
0.860556
0.856819
0.854514
0.868175
0.770802
0.476963
0.37196
0.243144
0.538269
0.534746
0.370358
0.478644
-1.45948
-1.46933
-1.56393
-1.56741
-1.45569
-1.51338
-1.14803
-1.06861
-1.06556
-1.13847
-1.13278
-1.0691
-1.15826
-1.61285
-1.44403
-1.5109
-1.08722
-1.24562
-1.19899
-1.35766
-1.11755
-1.22131
-1.15292
-1.00475
-1.11689
-0.942347
-0.994497
-1.02728
-0.92393
-1.09998
-1.0749
-1.31268
-1.17536
-1.10827
-1.05028
-1.19675
-1.13739
-1.50366
-1.47622
-1.58703
-1.54881
-1.51374
-1.47025
-1.61765
-1.503
-1.48176
-1.3883
-1.59103
-1.38718
-1.62713
-1.49058
-1.5826
-1.04175
-2.16123
-1.17049
-0.974947
-1.67354
-2.03478
-1.64716
-1.69996
-1.60522
-1.81029
-1.5793
-1.67697
-1.80972
-1.73654
-1.80061
-1.83004
0.538356
0.536972
-2.57063
-1.20246
-2.37365
-1.71667
-1.97917
-1.97201
0.539292
0.544762
-1.86968
-0.92184
-0.925019
-1.02629
-2.19915
-1.00992
-0.53128
-1.27888
-0.648681
-0.571411
-1.37207
-0.950543
-1.66212
-1.80434
-1.69821
-1.78457
0.470008
0.489423
-2.94469
-0.378142
-1.21481
-0.484015
-0.437678
-1.27305
-2.51829
0.539765
0.531382
-1.94535
-1.63563
-1.67136
-1.71581
-1.74267
-1.73105
-1.93836
-1.8064
-0.942562
-0.708815
-0.999343
-1.73121
0.12409
0.142806
0.284189
0.264536
0.128864
0.138033
0.279565
0.186934
0.277569
0.18186
0.280005
0.197576
0.292053
0.200702
0.290014
0.1219
0.257653
0.126208
0.272787
0.116543
0.131441
0.27834
0.466541
0.523881
0.363526
0.202553
0.363288
0.468584
0.518451
0.777405
1.00255
0.914162
0.822676
0.828455
0.912063
0.775918
0.460966
0.353249
0.189562
0.522324
0.354818
0.525021
0.45954
0.447732
0.508232
0.18148
0.337899
0.511709
0.339996
0.446021
0.771328
0.991381
0.917681
0.816626
0.81034
0.918081
0.773567
0.45668
0.352514
0.18509
0.523161
0.520297
0.350619
0.458428
-1.39168
-1.29534
-1.39475
-1.49076
-1.31232
-1.38276
-1.48105
-1.43307
-1.46597
-1.37736
-1.61478
-1.36154
-1.45978
-1.57518
-0.979578
-1.28915
-1.00576
-1.23336
-1.0445
-1.28059
-0.93206
-0.84158
-0.503989
-1.19805
-0.501295
-0.47228
-0.903395
-1.10652
-1.0234
-1.34114
-1.12603
-1.41454
-1.08013
-1.08291
-1.35137
-0.797785
-0.962215
-0.462714
-0.425766
-0.451643
-1.02623
-0.749237
-1.7154
-1.49496
-1.61871
-1.51004
-1.64063
-1.54532
-1.69635
0.466716
0.448224
-1.29345
-0.319087
-1.13012
-0.400584
-0.333625
-2.2861
-1.03454
-1.90927
-1.57341
-1.67181
-1.67875
-1.93518
-1.75099
-1.64405
0.414246
0.419982
-0.838464
-0.967487
-1.17022
-1.16361
-0.927307
-0.887877
-1.10733
-0.803675
-1.12715
-0.862717
-1.00586
-0.896905
-1.05278
-0.761419
-0.658252
-0.882331
-0.40665
-0.376093
-0.380237
-0.707263
-0.82315
-1.66921
-1.60931
-1.4078
-1.47679
-1.60938
-1.67696
-1.43877
0.397913
0.39712
0.41566
0.410703
0.0895999
0.105884
0.250613
0.223265
0.0947901
0.100536
0.24513
-0.0301376
-0.112392
-0.0608259
0.00391681
-0.0335421
-0.107012
0.00776222
0.122214
0.163671
0.225859
0.114938
0.230156
-0.0267003
0.0169094
-0.0973228
-0.0566389
-0.0223622
-0.101963
0.0124903
0.13485
0.243672
0.175722
0.140081
0.241099
0.0870868
0.216383
0.0895996
0.237398
0.0828211
0.0943715
0.243477
0.441055
0.510188
0.3356
0.170369
0.332705
0.443805
0.506006
0.751798
0.943724
0.925863
0.749773
0.762915
0.929358
0.744978
0.437313
0.339181
0.238487
0.502402
0.337794
0.504256
0.438489
0.434202
0.468688
0.219703
0.324686
0.475698
0.32839
0.43136
0.731356
0.919548
0.926522
0.739603
0.734188
0.923397
0.738464
0.437741
0.338951
0.233135
0.502512
0.496622
0.337138
0.438544
0.404747
0.435265
0.530719
0.490658
-0.687827
-0.206829
0.386679
0.440124
-0.774113
0.574473
0.584521
-2.65202
0.0920748
-0.481732
-0.166832
0.0870267
-0.518698
-2.23965
0.542692
0.567217
-2.75503
-0.614644
0.39002
-0.164615
0.340526
-3.24671
-0.537154
-0.219197
-0.208479
-0.0579721
-0.148528
-0.0900377
-0.0255421
-0.0621384
-0.144586
-0.0216797
0.13177
0.0508541
0.182757
0.127914
0.18669
-0.0563416
-0.0139595
-0.137359
-0.0863466
-0.0522368
-0.14205
-0.0178402
0.105596
0.203202
0.100287
0.109203
0.200105
0.428247
0.473832
0.322786
0.200118
0.319471
0.430363
0.476089
0.696425
0.871823
0.91205
0.672772
0.683967
0.916049
0.687773
0.42678
0.309583
0.183058
0.498374
0.310901
0.496386
0.426552
0.41972
0.499484
0.0910518
0.299859
0.501467
0.302265
0.417746
0.671406
0.834117
0.909952
0.662479
0.651126
0.90199
0.680426
0.425246
0.308706
0.147036
0.500526
0.501848
0.307743
0.425776
0.594466
0.602367
-0.81255
0.133769
-0.436871
-0.105104
0.137038
-2.17191
-0.400733
0.595639
0.597734
-0.760175
-0.326296
-0.094388
0.14977
0.143104
-0.362893
-0.589415
0.612165
0.60017
-0.375807
0.14054
-0.240261
-0.0637237
0.134935
-0.261108
-0.323538
0.599712
0.59044
-0.422898
-0.302934
0.153327
-0.0677687
0.139952
-0.544775
-0.280495
-0.282018
-0.290986
-0.293142
-0.291565
-0.0865159
-0.173413
-0.113116
-0.0520652
-0.0893373
-0.17059
-0.0494916
0.0912881
0.0412494
0.170792
0.0890577
0.170596
-0.0842199
-0.0413736
-0.163398
-0.109874
-0.0795701
-0.167611
-0.0455374
0.0970759
0.176636
0.0770943
0.0994293
0.175015
0.413676
0.501383
0.298231
0.0513078
0.295443
0.41588
0.501329
0.620233
0.764779
0.829949
0.579058
0.591538
0.845297
0.609209
0.406579
0.289803
0.0434209
0.487261
0.290496
0.488585
0.406317
0.411243
0.52354
-0.0729349
0.29535
0.513934
0.291373
0.417407
0.405751
0.289488
0.0366337
0.48937
0.486223
0.288858
0.406264
0.620886
0.636504
-0.0959135
0.116936
-0.200566
-0.043341
0.110111
-0.122785
-0.180125
0.658183
0.674964
-0.31267
-0.30722
-0.303652
-0.303498
-0.114953
-0.201321
-0.135978
-0.0807354
-0.119535
-0.197787
-0.0766639
0.0125993
-0.0329681
0.135609
0.138623
0.00889084
-0.11216
-0.0681375
-0.19087
-0.132729
-0.107783
-0.195196
-0.0723892
0.0413916
0.163102
-0.172222
0.157878
0.0492431
0.426412
0.406087
0.302305
-0.0363525
0.30568
0.422792
0.409331
0.432511
0.302108
0.0300144
0.495449
0.433727
0.305029
0.485059
-0.467244
-0.361498
-0.45403
-0.369219
-0.148586
-0.231434
-0.163109
-0.112792
-0.152144
-0.228062
-0.109356
-0.0049486
0.264781
0.136986
0.134937
-0.000319741
-0.145673
-0.100365
-0.220173
-0.159128
-0.14056
-0.224952
-0.104673
-0.0178182
0.130019
0.245855
0.129623
-0.015229
-0.521031
-0.532285
-0.436852
-0.441762
-0.431375
-0.507076
-0.551618
-0.792708
-0.492926
-0.405564
-0.428199
-0.465758
-0.420844
-0.483302
-0.471515
-0.43823
-0.356388
-0.369427
-0.256095
-0.450677
-0.334287
-0.346844
-0.78131
-0.786194
-0.441992
-0.425846
-0.360737
-0.326528
-0.433427
-0.350553
-0.433011
-0.448366
-0.390795
-0.451279
-0.379731
-0.441688
-0.45613
-0.369387
-0.425647
-0.238383
-0.292253
-0.290624
-0.315545
-0.321018
-0.409308
-0.557929
-0.490217
-0.553403
-0.502787
-0.00408852
-0.274163
0.0864126
0.140641
0.142943
-0.00603794
-0.291261
-0.171474
-0.132026
-0.24718
-0.184349
-0.169683
-0.249391
-0.133149
-0.0075957
0.13035
0.181074
0.126041
0.00542348
-0.416994
-0.355896
-0.211128
-0.162463
-0.195155
-0.227906
-0.336122
-0.21497
-0.423113
-0.421827
-0.292398
-0.305345
-0.280247
-0.421109
-0.427615
-0.70701
-0.743022
-0.748782
-0.693645
-1.20741
-0.418424
-0.244225
-0.27371
-0.409082
-0.260175
-0.420228
-0.404729
-0.375416
-0.178627
-0.271775
-0.263713
-0.247539
-0.394011
-0.238866
-1.07176
-1.01369
-1.05363
-1.07013
-0.274629
-0.200026
-0.174605
-0.123808
-0.311707
-0.189773
-0.146017
-0.685954
-0.754683
-0.715987
-0.691283
-0.321599
-0.298423
-0.246447
-0.221372
-0.333598
-0.223394
-0.278998
-1.14181
1.11417
-1.00225
-0.999826
-1.18478
-0.348037
-0.235129
-0.390712
-0.249091
-0.360194
-0.383077
-0.228591
-1.0808
-1.00759
-1.30222
-1.07616
-0.251224
-0.116558
-0.175569
-0.111848
-0.181806
-0.135681
-0.213032
-0.579061
-0.585425
-0.575213
-0.590655
0.0405176
-0.170325
0.239422
0.218695
0.211846
0.0454968
-0.160444
0.0235131
0.198183
-0.226143
0.168505
0.199035
0.0229378
-0.208933
-0.129849
-0.145587
-0.094179
-0.0297066
-0.160552
-0.118053
-0.0426963
-0.21033
-0.258538
-0.238711
-0.216547
-0.208952
-0.237282
-0.233615
-0.685859
-0.545716
-0.594171
-0.684332
-1.20852
-0.95019
1.33346
-0.616417
-1.19793
-0.191961
-0.188491
-0.232462
-0.215502
-0.204728
-0.221223
-0.18463
-0.154079
-0.097695
-0.168133
-0.0876032
-0.161289
-0.177292
-0.0661381
-0.977722
0.0280409
1.55932
-0.0224512
-0.890191
-0.0925543
-0.1329
-0.0187304
-0.0603548
-0.10482
-0.116516
-0.00764679
-0.655463
-0.54047
-0.483738
-0.682798
-0.160788
-0.19283
-0.166608
-0.125977
-0.149066
-0.20052
-0.141932
-0.180902
1.47038
0.32875
0.318951
-0.138796
-0.169093
-0.17506
-0.209567
-0.183092
-0.206133
-0.175763
-0.156917
-0.721411
0.0549685
1.60062
0.0989775
-0.841856
-0.0820402
-0.0525273
-0.0917043
0.0086453
-0.0702923
-0.104211
-9.48723e-05
-0.582222
-0.673022
-0.578265
-0.682443
0.0709582
-0.201394
0.336821
0.190486
0.0902782
0.176543
-0.291409
0.0666785
0.229906
-0.344208
0.5763
0.225788
0.0639751
-0.316989
1.26101
1.31567
1.37345
1.36838
1.37594
1.32154
1.25798
1.14252
1.16413
0.846182
0.852438
1.17324
1.15024
0.827221
1.79794
1.69601
1.84361
1.66592
1.71886
1.59392
1.38698
1.69077
1.60685
1.10721
0.841112
1.11449
0.782219
1.06646
1.13673
0.80945
1.52025
1.42966
1.42485
1.62587
1.43632
1.61065
1.53398
1.47235
1.5374
1.39347
1.4227
1.40165
1.46317
1.54927
1.57612
1.43743
1.65081
1.6634
1.44992
1.56348
1.62981
1.81017
1.4493
1.77042
1.42621
1.64597
0.776304
1.00293
0.657357
0.723025
0.843596
0.963841
0.61935
-1.61285
-2.15499
-2.79486
-1.38223
-1.31073
-1.68509
-2.60352
1.93438
1.50213
1.95025
1.88321
1.90132
0.501903
0.521225
0.333302
0.317736
0.264023
0.581428
0.478024
0.718326
0.700717
0.884887
0.549474
0.660088
0.927106
0.59142
1.72697
1.63568
1.88052
1.59853
1.88089
1.73547
1.67673
1.82075
1.46055
1.47457
1.66324
1.83698
1.7566
1.64039
1.89353
1.89692
1.66227
1.75088
1.19389
1.20906
1.39484
1.04931
1.05963
1.39321
1.17812
1.78105
1.70572
1.7989
1.68633
1.153
1.20873
1.40043
1.04219
1.03305
1.40171
1.16759
1.59559
1.03856
1.17941
1.54542
1.69153
1.68674
1.58369
1.69111
1.50028
1.00903
0.765232
1.54207
1.08984
1.19919
1.40816
0.973146
0.981557
1.40298
1.08132
1.30366
0.568728
0.683724
1.26236
1.05829
1.189
1.60606
0.94966
0.941723
1.42198
1.06167
0.887054
1.03623
-0.681042
0.22414
0.265329
0.831513
1.26788
1.20567
0.527142
-2.31427
0.477371
1.25076
-0.205204
-0.217212
-0.213185
-0.197559
-0.181761
-0.179
-0.195382
-0.181445
-0.18689
-0.221256
-0.199754
-0.187767
-0.184709
-0.217014
-0.208153
-0.184855
-0.186987
-0.212974
-0.183676
-0.220406
-0.199985
-0.217327
-0.185279
-0.197237
-0.214927
-0.15857
-0.149501
-0.195542
-0.154377
-0.153622
-0.194726
-0.140452
-0.13058
-0.133391
-0.150843
-0.144881
-0.129153
-0.135682
-0.137912
-0.146553
-0.133297
-0.124369
-0.127308
-0.134694
-0.13624
-0.161286
-0.145821
-0.196334
-0.164689
-0.155992
-0.196773
-0.122855
-0.154184
-0.116706
-0.156123
-0.127451
-0.0833281
-0.076927
-0.127294
-0.0819345
-0.124521
-0.0812341
-0.0864669
-0.0837954
-0.122127
-0.127139
-0.165459
-0.129076
-0.159317
-0.0921925
-0.0735039
-0.125914
-0.130884
-0.0754752
-0.0831646
-0.147636
-0.105092
-0.044306
-0.0239172
-0.0467152
-0.103766
-0.0528929
-0.0638793
-0.103845
-0.111863
-0.139163
-0.136101
-0.103876
-0.109546
-0.138792
-0.104349
-0.0570336
-0.00701445
-0.0468218
-0.0578388
-0.0621015
-0.0955951
-0.0945854
-0.128821
-0.152044
-0.107217
-0.0757975
-0.148368
-0.10414
-0.131373
-0.102824
-0.133428
-0.107415
-0.101218
-0.13823
-0.0312247
-0.00844582
-0.0708449
-0.0126703
-0.023638
-0.0271843
0.0684181
0.103958
0.0190142
-0.0555309
0.088672
0.0175533
-0.0033968
0.0293699
0.030925
-0.00312875
-0.0116966
0.019259
0.00754333
-0.0542348
-0.0556093
-0.0888262
-0.0747498
-0.0764756
-0.0445206
-0.0763988
-0.0210613
0.0160177
0.116923
0.0918623
0.0904193
0.0170611
-0.0143508
-0.0385015
-0.0711322
-0.0102562
-0.0635265
-0.0142721
-0.0452506
-0.0627802
-0.028748
-0.0693586
-0.0359743
-0.0356153
-0.0730458
0.0731873
0.0920804
0.0234915
0.0644935
0.0707863
0.183205
0.0152185
0.0614327
0.0362927
0.0193731
-0.000588096
0.0577278
0.0373969
0.0232611
0.000828772
0.0117471
0.0478356
-0.0142366
-0.102815
0.0576753
0.00343804
0.0716917
-0.00971485
0.0333858
-0.00196786
0.0381223
0.169693
0.0207752
-0.0844854
0.0736095
-0.0702066
0.0745233
0.185586
0.0691082
0.237092
-0.0374177
0.0781357
-0.0625165
0.0759331
0.163705
0.227406
0.0965168
0.0338468
-0.0475331
0.0291754
0.0815605
0.169467
0.0968254
0.102817
0.0129878
-0.0296035
0.0229856
0.0556582
0.116421
0.124055
0.0452558
-0.00855558
0.0227381
-0.0303892
0.00210015
-0.0115896
-0.00278698
0.00894339
-0.0584583
-0.0527409
-0.0696594
-0.0320697
-0.0500019
-0.032076
-0.0317241
-0.683445
-0.751218
-0.7581
-0.690394
-0.762979
-0.684805
-0.676071
-0.778036
-0.70139
-0.794539
-0.69857
-0.783062
-0.695439
-0.700693
-0.328829
-0.273713
-0.331186
-0.323816
-0.356958
-0.364545
-0.363644
-0.324065
-0.364477
-0.276495
-0.330817
-0.333458
-0.330824
-0.312124
-0.330204
-0.3023
-0.352036
-0.350246
-0.347098
-0.301287
-0.349589
-0.30599
-0.333704
-0.330688
-0.310826
-0.309567
-0.308874
-0.310702
-0.322912
-0.319326
-0.312622
-0.307619
-0.314592
-0.308584
-0.316673
-0.312961
-0.273069
-0.272659
-0.282748
-0.164685
-0.273637
-0.264372
-0.168734
-0.297264
-0.357865
-0.293718
-0.283288
-0.359511
-0.303956
-0.281122
-0.295052
-0.27792
-0.292356
-0.361864
-0.359972
-0.279485
-0.288588
-0.275687
-0.281693
-0.27677
-0.193006
-0.283618
-0.274872
-0.174362
-0.253311
-0.283561
-0.301756
-0.320525
-0.280397
-0.261376
-0.313988
-0.239082
-0.306965
-0.265357
-0.264166
-0.302084
-0.240905
-0.26464
-0.168003
-0.287392
-0.30413
-0.19131
-0.216738
-0.305631
-0.190571
-0.315346
-0.240438
-0.267983
-0.264514
-0.292277
-0.300244
-0.265445
-0.243047
-0.250767
-0.299931
-0.277006
-0.304448
-0.243561
-0.278682
-0.311727
-0.221848
-0.32605
-0.235614
-0.318189
-0.322354
-0.316709
-0.346633
-0.35253
-0.317862
-0.322755
-0.350956
-0.2942
-0.269793
-0.262838
-0.288624
-0.271146
-0.291821
-0.288875
-0.316313
-0.283159
-0.291279
-0.337962
-0.324382
-0.369378
-0.314764
-0.374153
-0.295976
-0.287765
-0.262566
-0.26586
-0.270836
-0.289016
-0.293171
-0.319544
-0.346001
-0.316693
-0.34644
-0.317238
-0.317319
-0.348197
-0.328224
-0.38393
-0.346732
-0.376298
-0.370932
-0.297095
-0.319229
-0.398653
-0.299113
-0.371003
-0.397242
-0.34289
-0.313691
-0.254051
-0.279515
-0.342799
-0.31245
-0.277297
-0.36442
-0.314994
-0.319386
-0.358848
-0.384351
-0.413714
-0.385548
-0.41789
-0.34192
-0.272577
-0.25164
-0.307961
-0.310468
-0.275204
-0.340124
-0.369901
-0.320378
-0.302467
-0.392937
-0.367943
-0.300677
-0.395394
-0.382885
-0.422122
-0.376967
-0.419125
-0.303082
-0.222385
-0.234426
-0.301144
-0.32104
-0.375346
-0.323699
-0.371421
-0.320253
-0.369391
-0.319577
-0.370324
-0.30838
-0.18059
-0.191033
-0.300143
-0.339049
-0.366582
-0.342684
-0.375724
-0.336599
-0.384069
-0.329528
-0.378722
-0.23106
-0.19102
-0.161558
-0.21101
-0.190885
-0.182364
-1.06081
-1.0621
-1.06785
-1.12958
-1.05775
-1.13308
-1.13258
-1.17361
-1.15731
-1.06932
-1.05635
-1.18591
-1.17414
-1.21639
-1.23588
-1.31671
-1.30709
-1.23251
-1.21671
-1.30733
-1.23197
-1.33495
-1.2293
-1.31459
-1.23123
-1.22749
-1.31585
0.135515
0.188076
-0.0100344
0.076032
-0.0302137
-0.0197284
0.03848
0.0314206
0.0172069
0.0744908
0.00470415
0.0137971
0.0400342
0.0531073
0.075193
0.0229029
0.000977537
-0.0514124
0.0301665
0.0237015
-0.0118158
-0.0848289
0.0182123
0.0435558
0.0189334
-0.0229378
0.0172035
-0.0138733
-0.0475281
-0.0189326
0.0324368
-0.015814
-0.0140924
-0.0495996
-0.0186212
-0.119934
-0.0192686
-0.0236003
-0.0406635
-0.127727
-0.0354667
-0.0441176
0.0390031
0.000455388
0.0579557
-0.0422367
-0.00459903
0.0360585
-0.063849
-0.0589204
-0.102053
-0.0831295
-0.0295436
-0.0545408
-0.0769732
-0.0993098
-0.0414923
-0.096486
-0.149769
-0.0960443
-0.0838822
-0.0933543
-0.108934
-0.129433
-0.0952935
-0.0997593
-0.153408
-0.0957515
-0.0792528
-0.102727
-0.0265892
-0.0680547
-0.0222339
-0.099014
-0.0726837
-0.0389784
-0.146789
-0.143583
-0.101635
-0.11904
-0.0594278
-0.100663
-0.115263
-0.108287
-0.0987071
-0.194656
-0.173106
-0.17853
-0.146996
-0.183826
-0.188408
-0.151308
-0.242264
-0.252321
-0.163375
-0.255642
-0.152583
-0.268759
-0.196833
-0.159665
-0.182313
-0.206171
-0.184264
-0.155477
-0.204379
-0.0998449
-0.0567778
-0.108045
-0.0947543
-0.0945538
-0.111376
-0.0968056
-0.166902
-0.281246
-0.176344
-0.273247
-0.223958
-0.164379
-0.103717
-0.165314
-0.161853
-0.224082
-0.164851
-0.23389
-0.317848
-0.233314
-0.196543
-0.319473
-0.207971
-0.194919
-0.307648
-0.280429
-0.345778
-0.313761
-0.317569
-0.241775
-0.304723
-0.167769
-0.233415
-0.200466
-0.235991
-0.271231
-0.319136
-0.1975
-0.223474
-0.218969
-0.100969
-0.157271
-0.158243
-0.203351
-0.158877
-0.162301
-0.325975
-0.173672
-0.351232
-0.16762
-0.27264
-0.197433
-0.136418
-0.187131
-0.196416
-0.268568
-0.184535
-0.321648
-0.309007
-0.255484
-0.230238
-0.316545
-0.314784
-0.23383
-0.320111
-0.310436
-0.308699
-0.316557
-0.331726
-0.201148
-0.328627
-0.2078
-0.32678
-0.239055
-0.259569
-0.323529
-0.321337
-0.23643
-0.326487
-0.283705
-0.134461
-0.19479
-0.180082
-0.281891
-0.197129
-0.183641
-0.3097
-0.215654
-0.307085
-0.20812
-0.365055
-0.403863
-0.305372
-0.271074
-0.404894
-0.362251
-0.273166
-0.402146
-0.393169
-0.390738
-0.417296
-0.437684
-0.24561
-0.428094
-0.248528
-0.367227
-0.277748
-0.307123
-0.40942
-0.404491
-0.275091
-0.370927
-0.441427
-0.25287
-0.44813
-0.249689
-0.417167
-0.451282
-0.347627
-0.31008
-0.453648
-0.416001
-0.310812
-0.521925
-0.447211
-0.43473
-0.5277
-0.469373
-0.27512
-0.477121
-0.276386
-0.419952
-0.31465
-0.350177
-0.460402
-0.45786
-0.312803
-0.421276
-0.471097
-0.284117
-0.47562
-0.278525
-0.552334
-0.566936
-0.559963
-0.557208
-0.508539
-0.324441
-0.504412
-0.330224
-0.510512
-0.33861
-0.516574
-0.332007
-0.586589
-0.646597
-0.643623
-0.574024
-0.535956
-0.362863
-0.535319
-0.367565
-0.533982
-0.373845
-0.52387
-0.368692
-0.420601
-0.419774
-0.277646
-0.27494
0.024545
-0.162373
-0.160317
0.332245
0.0210063
-0.158203
0.359422
0.00900304
-0.152768
0.0153237
-0.366919
-0.387413
-0.304269
-0.290286
-0.139237
-0.0240021
0.445863
-0.148823
-0.0233189
-0.135357
-0.483854
-0.0243502
0.448074
-0.595906
-0.12851
-0.0240429
-0.022922
-0.073198
0.634533
-0.0121858
0.0125119
0.00465463
0.0362363
1.90716
1.6512
1.82182
1.60489
1.7976
1.94595
1.65872
1.72005
1.73245
1.94655
1.6832
1.6825
1.683
1.91809
1.93716
1.6574
1.5553
1.68311
1.7708
1.74726
1.90915
1.59905
1.78307
1.64554
1.79411
1.65073
1.8879
0.741525
1.22555
1.18382
-0.937432
0.853285
-2.8028
-1.67254
-2.02878
-1.10336
-1.59644
0.217182
0.658538
-0.713169
0.530429
-1.40156
0.397
-0.46375
0.175106
-0.584803
-1.32962
0.474981
1.24793
1.93767
1.0557
0.923653
-0.410788
-0.404987
0.0433556
-0.392805
0.00406345
-0.0654732
-0.0942203
1.22843
-3.21533
0.47159
1.12237
0.319006
-0.891133
-1.60476
-1.989
-0.0175242
-0.199864
-0.182202
-0.0549953
0.957813
-2.05581
-2.89216
1.09223
0.307698
0.199548
-1.10215
0.60803
-0.559709
0.361821
0.0173593
0.0678426
0.292597
-3.70754
-0.522198
-0.568419
0.330671
-0.0208448
-0.0296254
-0.335638
-0.197951
0.144439
-0.322796
-0.0768986
-0.0705498
0.122097
0.106067
0.374305
0.0898485
0.278168
0.116972
0.106133
0.260468
0.354243
0.0859772
0.0881841
0.102191
0.237784
0.248381
0.0990497
-5.38599e-05
-0.00865385
-0.00978198
0.0131252
0.0178788
0.0189623
0.0137744
-0.145073
-0.145582
-0.127895
-0.127463
-0.151498
-0.12654
-0.147493
-0.15863
-0.160991
-0.142906
-0.12326
-0.121131
-0.142289
-0.125013
-0.143993
-0.162779
-0.162853
-0.186725
-0.187506
-0.161168
-0.166308
-0.106418
-0.110249
-0.133807
-0.127372
-0.129986
-0.109264
-0.130398
-0.168076
-0.156825
-0.148937
-0.104238
-0.131312
-0.108505
-0.132795
-0.144532
-0.00148447
0.00636968
0.00540718
0.0198627
0.0225848
0.0220318
0.0184463
-0.157579
-0.121133
-0.151436
-0.15718
-0.119099
-0.114762
-0.117024
-0.117106
-0.152627
-0.157807
-0.158893
-0.116929
-0.112072
-0.111802
-0.097597
-0.101643
-0.120443
-0.136245
-0.127609
-0.103806
-0.129623
-0.100679
-0.13308
-0.154696
-0.134128
-0.152545
-0.157902
-0.137669
-0.12851
-0.126851
-0.0966669
-0.104016
-0.118714
-0.121307
-0.0996896
-0.119474
-0.102187
-0.158009
-0.130089
-0.108457
-0.0932053
-0.0962675
-0.112127
-0.0919209
-0.10944
-0.113376
-0.107472
-0.0963294
-0.0872073
-0.109744
-0.104918
-0.0908156
-0.113161
-0.123928
-0.126155
-0.139852
-0.148013
-0.140567
-0.124631
-0.127024
-0.499079
-0.542831
-0.503645
-0.544808
-0.500067
-0.546188
-0.500436
-0.483356
-0.518134
-0.493688
-0.526978
-0.491558
-0.525523
-0.485076
-0.20582
-0.213032
-0.235163
-0.208278
-0.226125
-0.207383
-0.232507
-0.249987
-0.186234
-0.193795
-0.18821
-0.197932
-0.219343
-0.220329
-0.192223
-0.199413
-0.213412
-0.189849
-0.43085
-0.442745
-0.489246
-0.447996
-0.466661
-0.487495
-0.453813
-0.480454
-0.511104
-0.4974
-0.441749
-0.443503
-0.476976
-0.485381
-0.44796
-0.457975
-0.445923
-0.247852
-0.260537
-0.256817
-0.227343
-0.3953
-0.401022
-0.441232
-0.411344
-0.411256
-0.443035
-0.403906
-0.479252
-0.475579
-0.398595
-0.404836
-0.442573
-0.449378
-0.399961
-0.411797
-0.405296
-0.236315
-0.228258
-0.223821
-0.226084
-0.261296
-0.2552
-0.227099
-0.225265
-0.246905
-0.24574
-0.282052
-0.24321
-0.229085
-0.223976
-0.244744
-0.222543
-0.260505
-0.261709
-0.22005
-0.259195
-0.25014
-0.183022
-0.184228
-0.179834
-0.190277
-0.188127
-0.176921
-0.186559
-0.243784
-0.250711
-0.216606
-0.231998
-0.255941
-0.240795
-0.240209
-0.229759
-0.247648
-0.231655
-0.251686
-0.237133
-0.22138
-0.222523
-0.230345
-0.182082
-0.23001
-0.227672
-0.477582
-0.531501
-0.472466
-0.529414
-0.473042
-0.531673
-0.476803
-0.465386
-0.492076
-0.462701
-0.498348
-0.46155
-0.49776
-0.46616
-0.20359
-0.203507
-0.191865
-0.205559
-0.168587
-0.167909
-0.179193
-0.172431
-0.17945
-0.162383
-0.183961
-0.203211
-0.194866
-0.202195
-0.201211
-0.190907
-0.189873
-0.19375
-0.196407
-0.203081
-0.19094
-0.199756
-0.192668
-0.197633
-0.203319
-0.178816
-0.171606
-0.198331
-0.204736
-0.198013
-0.161571
-0.16898
-0.156997
-0.163666
-0.155428
-0.164486
-0.167343
-0.442906
-0.41682
-0.427569
-0.452997
-0.434651
-0.453009
-0.454403
-0.417232
-0.433695
-0.427428
-0.452275
-0.453538
-0.434566
-0.239685
-0.225705
-0.228228
-0.253523
-0.224701
-0.248408
-0.23794
-0.246928
-0.246276
-0.215375
-0.256229
-0.248157
-0.239981
-0.254007
-0.239344
-0.200592
-0.230048
-0.206784
-0.226574
-0.217434
-0.250949
-0.240576
-0.244463
-0.254771
-0.232798
-0.236214
-0.249993
-0.235988
-0.427317
-0.426192
-0.431306
-0.457262
-0.453484
-0.401382
-0.425097
-0.434249
-0.4322
-0.4599
-0.48831
-0.462038
-0.49219
-0.455139
-0.493974
-0.459356
-0.42743
-0.429628
-0.40622
-0.38712
-0.432149
-0.424987
-0.38875
-0.451157
-0.471076
-0.466175
-0.482883
-0.462305
-0.480993
-0.452958
-0.425083
-0.417963
-0.422283
-0.461372
-0.445767
-0.416526
-0.429994
-0.422044
-0.444532
-0.395289
-0.449358
-0.468207
-0.463487
-0.395303
-0.454436
-0.45124
-0.421821
-0.428116
-0.386433
-0.407712
-0.423708
-0.425786
-0.386979
-0.43967
-0.460507
-0.444583
-0.470115
-0.448676
-0.471138
-0.438051
-0.420078
-0.393237
-0.395058
-0.417235
-0.420256
-0.394215
-0.418011
-0.401647
-0.403806
-0.369436
-0.371849
-0.406801
-0.399398
-0.373165
-0.427108
-0.443013
-0.422328
-0.46108
-0.416148
-0.458383
-0.430025
-0.403906
-0.375511
-0.370503
-0.410952
-0.409322
-0.374589
-0.405995
-0.17302
-0.18189
-0.189126
-0.202664
-0.17536
-0.164794
-0.198567
-0.15189
-0.129635
-0.129702
-0.154186
-0.14938
-0.130621
-0.156193
-0.154197
-0.159267
-0.134697
-0.132188
-0.132514
-0.15675
-0.157708
-0.170209
-0.184205
-0.155161
-0.193805
-0.16762
-0.160612
-0.1948
-0.443412
-0.405162
-0.437597
-0.444129
-0.448419
-0.400596
-0.429477
-0.434719
-0.407876
-0.375069
-0.413988
-0.417678
-0.410357
-0.375548
-0.418514
-0.416183
-0.393086
-0.400044
-0.368639
-0.361358
-0.396065
-0.396658
-0.366099
-0.41446
-0.430389
-0.400244
-0.445409
-0.402435
-0.447969
-0.411855
-0.390644
-0.362365
-0.358654
-0.391147
-0.393563
-0.364059
-0.38826
-0.372267
-0.371166
-0.347556
-0.349187
-0.386186
-0.368768
-0.350734
-0.391674
-0.399125
-0.374786
-0.421441
-0.368722
-0.4181
-0.394831
-0.374412
-0.353175
-0.348593
-0.389816
-0.387352
-0.352026
-0.37682
-0.151392
-0.167588
-0.153566
-0.16766
-0.122758
-0.0903567
-0.0895566
-0.124137
-0.0945415
-0.122257
-0.10757
-0.105101
-0.0946391
-0.100384
-0.123357
-0.137547
-0.16547
-0.130639
-0.165956
-0.405961
-0.367632
-0.400733
-0.393026
-0.395964
-0.365504
-0.394945
-0.399137
-0.383087
-0.326573
-0.38952
-0.379675
-0.371888
-0.327364
-0.390173
-0.390351
-0.360227
-0.362232
-0.34616
-0.343921
-0.363789
-0.352318
-0.34355
-0.386368
-0.383987
-0.380414
-0.407787
-0.383975
-0.409804
-0.38433
-0.358835
-0.341278
-0.347358
-0.347527
-0.351275
-0.343079
-0.356949
-0.341665
-0.329271
-0.326619
-0.325126
-0.332471
-0.34122
-0.324702
-0.371633
-0.372389
-0.371039
-0.39467
-0.369866
-0.391756
-0.373378
-0.342851
-0.327006
-0.327301
-0.335539
-0.333375
-0.325524
-0.344369
-0.125107
-0.155549
-0.129472
-0.149439
-0.11244
-0.0464327
-0.105291
-0.0620956
-0.110017
-0.114694
-0.141851
-0.142728
-0.106301
-0.117802
-0.142166
-0.115559
-0.0864282
-0.0705342
-0.116561
-0.118088
-0.154302
-0.109062
-0.155442
-0.117368
-0.139595
-0.125108
-0.144024
-0.121638
-0.122334
-0.138866
-0.363468
-0.318057
-0.350194
-0.342516
-0.345978
-0.349621
-0.330383
-0.316242
-0.332695
-0.216352
-0.27719
-0.316918
-0.334676
-0.333248
-0.199157
-0.338038
-0.327927
-0.3249
-0.327916
-0.339648
-0.326312
-0.323881
-0.361865
-0.348188
-0.368723
-0.372938
-0.367899
-0.376396
-0.359204
-0.336791
-0.32046
-0.326536
-0.326043
-0.326086
-0.322701
-0.334882
-0.305803
-0.320247
-0.317134
-0.285626
-0.326381
-0.303473
-0.28748
-0.336961
-0.331814
-0.348225
-0.349705
-0.342572
-0.346708
-0.340448
-0.309282
-0.292854
-0.316858
-0.334815
-0.328659
-0.290394
-0.312733
-0.0858907
-0.0320982
-0.0705009
-0.087065
-0.0867602
-0.0161652
-0.0626269
-0.00643804
-0.030979
-0.0525589
-0.0527482
-0.026168
-0.0543493
-0.0642872
0.0637566
0.0980822
0.0122069
-0.0611269
0.062888
0.0112594
-0.0936859
-0.0642525
-0.0941512
-0.0931026
-0.0823298
-0.0712857
-0.103452
-0.0763962
-0.00994395
0.0489942
0.112936
0.0810676
-0.0718254
0.0148925
-0.0829904
-0.0697606
-0.0116599
-0.0690251
-0.0146351
-0.0862307
-0.0868551
-0.0817489
-0.0965036
-0.0781661
-0.0877307
-0.105823
-0.195221
-0.242607
-0.187968
-0.329009
-0.32659
-0.328451
-0.290445
-0.218626
-0.219309
-0.224429
-0.291074
-0.219961
-0.261109
-0.180518
-0.186358
-0.325852
-0.330027
-0.32889
-0.261756
-0.240275
-0.244074
-0.307616
-0.255915
-0.291207
-0.255016
-0.307096
-0.251688
-0.246142
-0.244575
-0.252037
-0.291606
-0.254719
-0.295014
-0.317071
-0.281348
-0.308108
-0.298994
-0.310199
-0.277637
-0.32027
-0.317101
-0.317299
-0.327836
-0.323799
-0.331883
-0.315765
-0.291367
-0.269552
-0.306408
-0.300781
-0.307959
-0.274124
-0.286604
-0.245715
-0.250687
-0.240552
-0.225465
-0.256018
-0.242297
-0.228982
-0.281939
-0.298658
-0.285936
-0.30382
-0.280186
-0.300342
-0.28602
-0.248935
-0.236465
-0.243933
-0.264475
-0.25791
-0.232124
-0.25338
0.0512261
-0.00490004
0.0532081
0.0599603
0.0344821
0.0121108
-0.0113018
0.055586
0.0277805
0.00648658
-0.0019106
0.049445
-0.141767
0.0432593
0.0261788
-0.0246043
0.00149132
-0.0191604
0.0145636
-0.0149569
-0.00116178
-0.253423
-0.247171
-0.250205
-0.305942
-0.288813
-0.256238
-0.257838
-0.260372
-0.288257
-0.258266
-0.24713
-0.246728
-0.249438
-0.305151
-0.253218
-0.266715
-0.269257
-0.203188
-0.279456
-0.299208
-0.276814
-0.206941
-0.253979
-0.272087
-0.270078
-0.273774
-0.298111
-0.276018
-0.235823
-0.248913
-0.222233
-0.224505
-0.239225
-0.24383
-0.218405
-0.267607
-0.292149
-0.259683
-0.284313
-0.265962
-0.286811
-0.26555
-0.233557
-0.209593
-0.222562
-0.233335
-0.242252
-0.215163
-0.231558
-0.200641
-0.20797
-0.146738
-0.164973
-0.212582
-0.198205
-0.167464
-0.242066
-0.281221
-0.238448
-0.263947
-0.23402
-0.26142
-0.245079
-0.203524
-0.174315
-0.148406
-0.219573
-0.214189
-0.170636
-0.206988
-0.269975
-0.265515
-0.269675
-0.178774
-0.291954
-0.280892
-0.280214
-0.278818
-0.289987
-0.278952
-0.265606
-0.270679
-0.270188
-0.175774
-0.318914
-0.298994
-0.270471
-0.27785
-0.302137
-0.314454
-0.279136
-0.130034
-0.317286
-0.335184
-0.290043
-0.295499
-0.320116
-0.332665
-0.289749
-0.130956
-0.320238
-0.271406
-0.304199
-0.280643
-0.323965
-0.302818
-0.2799
-0.316294
-0.289075
-0.330281
-0.29592
-0.332126
-0.313055
-0.289539
-0.0231946
-0.0289341
-0.0417469
-0.00847431
0.0348405
0.000367421
0.00336863
-0.0671608
-0.0513716
-0.041504
-0.0314591
-0.0540259
-0.0194571
-0.0115319
-0.192973
-0.206264
-0.162193
-0.139734
-0.195436
-0.201605
-0.15987
-0.230314
-0.28098
-0.217584
-0.244807
-0.221822
-0.247673
-0.227648
-0.190652
-0.155513
-0.139002
-0.194675
-0.199808
-0.157899
-0.188053
-0.154497
-0.124285
-0.0757426
-0.107636
-0.134771
-0.150892
-0.111462
-0.196954
-0.274885
-0.179541
-0.21317
-0.171654
-0.209057
-0.201174
-0.158664
-0.120991
-0.0782933
-0.149502
-0.138481
-0.115909
-0.163391
-0.0201758
-0.0851995
-0.0756381
0.103685
0.151168
0.0833514
0.101185
-0.0593177
0.0238963
-0.0299885
0.146315
-0.06813
0.115971
0.0955948
-0.331436
-0.281535
-0.271632
-0.308452
-0.306248
-0.281444
-0.336862
-0.125313
-0.323917
-0.336095
-0.294096
-0.290217
-0.339262
-0.320977
-0.290209
-0.32486
-0.290282
-0.293654
-0.343598
-0.340235
-0.290257
-0.328102
-0.329792
-0.272051
-0.304479
-0.281098
-0.325092
-0.305807
-0.281299
-0.124524
-0.331959
-0.307175
-0.249379
-0.27022
-0.312454
-0.345191
-0.265753
-0.376011
-0.0615937
-0.386728
-0.381506
-0.359928
-0.359758
-0.372482
-0.358471
-0.33256
-0.321738
-0.272304
-0.274014
-0.33345
-0.32342
-0.274474
-0.37476
-0.33649
-0.0636634
-0.352019
-0.332751
-0.248731
-0.318947
-0.262569
-0.335361
-0.313305
-0.263518
-0.334222
-0.287509
-0.35999
-0.278426
-0.324577
-0.34358
-0.279116
-0.0181951
0.0482687
-0.0100822
0.0232855
0.0445889
0.0815867
0.0144205
-0.00679852
0.0495322
-0.00694987
0.0259814
0.0648155
0.0798162
0.0258514
-0.0423352
-0.00598061
-0.00905381
0.0411356
0.0302815
0.0287251
0.0467363
-0.0114656
-0.0352471
-0.0128803
0.0238274
0.0554254
0.0219133
0.0405586
-0.143586
-0.12096
-0.103169
-0.0625613
-0.146631
-0.118035
-0.0998492
-0.179638
-0.250772
-0.142852
-0.18678
-0.150016
-0.189585
-0.177454
-0.141458
-0.0967038
-0.0617032
-0.114555
-0.117349
-0.0978547
-0.14024
-0.14771
-0.146181
-0.120285
-0.111595
-0.143953
-0.146983
-0.111666
-0.173726
-0.191697
-0.141014
-0.176136
-0.14657
-0.173581
-0.175477
-0.147948
-0.111248
-0.120062
-0.138086
-0.142675
-0.111353
-0.148475
-0.086138
0.033393
0.0238228
0.105763
0.178272
0.103152
0.175395
-0.0257816
-0.0835371
0.0166678
0.103661
0.154822
0.10412
0.182512
-0.33663
-0.256413
-0.24546
-0.324379
-0.321137
-0.258809
-0.334662
-0.385325
-0.394643
-0.0512308
-0.382708
-0.411634
-0.335136
-0.321153
-0.268216
-0.27072
-0.319337
-0.333984
-0.269611
-0.37971
-0.349017
-0.353061
-0.38359
-0.335134
-0.265637
-0.266658
-0.315161
-0.318613
-0.26789
-0.333818
-0.336852
-0.247458
-0.320423
-0.261516
-0.335959
-0.322732
-0.260572
-0.386019
-0.389635
-0.0510344
-0.409504
-0.387053
-0.2452
-0.188673
-0.171396
-0.217247
-0.166638
-0.257525
-0.210256
-0.409456
-0.128192
-0.37222
-0.191379
-0.404589
-0.240232
-0.226334
-0.390786
-0.265183
-0.253567
-0.22316
-0.2428
-0.257131
-0.257376
-0.227919
-0.415454
-0.25373
-0.198498
-0.416787
-0.229061
-0.164374
-0.141349
-0.196381
-0.210656
-0.149261
-0.203244
-0.27117
-0.236594
-0.264662
-0.244735
-0.260916
-0.276307
-0.232457
-0.00343063
-0.0350895
0.00329765
0.0511494
0.0235462
0.0196964
0.0449945
0.0230431
-0.0148193
0.0131937
0.0619752
0.0507419
0.0479168
0.0692667
0.104269
0.0569966
0.0512025
0.0866995
0.0736917
0.0662809
0.0875397
0.0304069
0.0729599
0.040214
0.0787452
0.0441875
0.0728343
0.0494337
-0.143103
-0.145894
-0.110261
-0.118143
-0.145001
-0.144834
-0.10943
-0.161797
-0.167766
-0.151467
-0.154065
-0.152427
-0.159313
-0.157779
-0.141047
-0.105727
-0.121223
-0.141768
-0.143932
-0.108499
-0.138103
-0.0798729
-0.0881416
-0.0495719
-0.0750413
-0.102693
-0.0747804
-0.0535155
-0.102032
-0.0816582
-0.115412
-0.110333
-0.0990724
-0.10393
-0.108775
-0.0850729
-0.0621028
-0.0744761
-0.134265
-0.109069
-0.0567819
-0.0919262
0.18172
-0.00376354
-0.000545833
0.01826
0.0782955
0.0476039
0.0472013
0.0112462
0.12051
0.00368164
0.0266109
0.112492
0.0303645
0.0781609
-0.201116
-0.183203
-0.152075
-0.169635
-0.168699
-0.185855
-0.209826
-0.242493
-0.137756
-0.35116
-0.144951
-0.235215
-0.251341
-0.237368
-0.218752
-0.248612
-0.246643
-0.214726
-0.299959
-0.249759
-0.276416
-0.251514
-0.23129
-0.212882
-0.236771
-0.249131
-0.246583
-0.213347
-0.235354
-0.19198
-0.154487
-0.146877
-0.191352
-0.198041
-0.160907
-0.187591
-0.227216
-0.144428
-0.147092
-0.217769
-0.224285
-0.170733
-0.225635
-0.166703
-0.245386
-0.306861
-0.308047
-0.242565
-0.250138
-0.283541
-0.205431
-0.23393
-0.284108
-0.249469
-0.206839
-0.2229
-0.156501
-0.164253
-0.219049
-0.250778
-0.208457
-0.284361
-0.235566
-0.284645
-0.2507
-0.208045
-0.616418
-0.61756
-0.640971
-0.618893
-0.612578
-0.606625
-0.587674
-0.584972
-0.610917
-0.587542
-0.608391
-0.630626
-0.608222
-0.578662
-0.580081
-0.601261
-0.611914
-0.605885
-0.580185
-0.581606
-0.581664
-0.608928
-0.609446
-0.610336
-0.640155
-0.623459
-0.620109
-0.620839
-0.680724
-0.742014
-0.735571
-0.680362
-0.73689
-0.670461
-0.672655
-0.598868
-0.609654
-0.618616
-0.624931
-0.606234
-0.593989
-0.565426
-0.561945
-0.5642
-0.595019
-0.58834
-0.600325
-0.593495
-0.617151
-0.592957
-0.586067
-0.600819
-0.985627
-1.04984
-1.03081
-0.988775
-0.978077
-0.983446
-0.973598
-1.01193
-1.03521
-0.975688
-0.975697
-0.935079
-0.894091
-0.891632
-0.951626
-0.890828
-0.927301
-0.938153
-0.202641
-0.232299
-0.188037
-0.223741
-0.243288
-0.262746
-0.219604
-0.220589
-0.204064
-0.203564
-0.225724
-0.20366
-0.242335
-0.204062
-0.219029
-0.196809
-0.221037
-0.229703
-0.1875
-0.213197
-0.218775
-0.240216
-0.258799
-0.220827
-0.242836
-0.21315
-0.226232
-0.226524
-0.24025
-0.249579
-0.214952
-0.240291
-0.223611
-0.237695
-0.583822
-0.590905
-0.623968
-0.590734
-0.584393
-0.585562
-0.553504
-0.557
-0.582669
-0.584263
-0.585452
-0.583909
-0.583141
-0.583876
-0.620588
-0.58674
-0.582662
-0.589835
-0.587901
-0.582755
-0.611714
-0.621985
-0.591813
-0.582321
-0.614419
-0.557619
-0.53564
-0.536243
-0.561311
-0.575726
-0.572695
-0.588588
-0.593015
-0.580794
-0.622753
-0.584467
-0.613816
-0.58117
-0.58236
-0.617887
-0.585738
-0.62026
-0.589127
-0.623646
-0.585727
-0.59441
-0.638106
-0.54862
-0.53585
-0.536072
-0.556279
-0.573476
-0.573567
-0.57449
-0.590676
-0.584143
-0.62073
-0.585088
-0.612893
-0.582744
-0.584933
-0.636562
-0.570859
-0.571209
-0.616042
-0.591395
-0.56994
-0.572135
-0.584434
-0.545983
-0.536913
-0.535145
-0.546465
-0.547948
-0.587976
-0.547163
-0.587784
-0.548907
-0.546859
-0.588704
-0.569281
-0.588334
-0.569633
-0.583215
-0.568689
-0.570523
-0.583311
-0.0822445
-0.0910239
-0.565226
-0.575161
-0.559026
-0.583486
-0.563986
-0.556224
-0.58095
-0.54255
-0.527498
-0.527218
-0.549189
-0.546862
-0.585645
-0.546863
-0.582076
-0.546991
-0.569554
-0.558736
-0.580416
-0.567093
-0.58598
-0.568446
-0.581974
-0.56872
-0.566072
-0.581839
-0.534875
-0.542755
-0.580634
-0.575364
-0.536135
-0.541029
-0.580013
-0.530671
-0.509251
-0.507042
-0.532581
-0.539391
-0.599642
-0.541693
-0.591144
-0.539231
-0.587592
-0.540704
-0.588433
-0.534873
-0.575397
-0.541662
-0.584249
-0.534772
-0.54044
-0.582469
-0.0461565
-0.0508951
-0.240068
-0.23171
-0.272136
-0.0870697
-0.263243
-0.233835
-0.232743
-0.26422
-0.0857955
-0.257592
-0.536618
-0.557229
-0.533263
-0.562527
-0.537991
-0.530286
-0.560622
-0.528454
-0.50208
-0.5004
-0.512222
-0.548728
-0.593545
-0.544564
-0.577305
-0.547238
-0.57218
-0.532072
-0.575451
-0.54039
-0.567265
-0.540176
-0.576148
-0.536489
-0.540554
-0.567154
-0.509705
-0.510438
-0.526969
-0.532373
-0.511087
-0.508329
-0.525862
-0.480514
-0.479551
-0.476795
-0.482776
-0.506342
-0.516264
-0.505139
-0.518493
-0.506529
-0.514075
-0.508394
-0.516021
-0.508119
-0.531418
-0.505947
-0.521421
-0.506885
-0.506891
-0.523541
-0.845031
-0.844895
-0.860057
-0.865316
-0.257893
-0.191044
-0.247542
-0.121461
-0.270576
-0.30064
-0.260322
-0.129319
-0.283195
-0.193922
-0.235164
-0.253968
-0.32088
-0.216785
-0.223257
-0.226239
-0.141858
-0.215292
-0.322746
-0.232238
-0.223861
-0.201684
-0.142952
-0.210831
-0.473727
-0.463937
-0.465823
-0.472317
-0.502409
-0.51257
-0.503846
-0.506296
-0.502145
-0.50148
-0.498842
-0.505068
-0.454563
-0.442069
-0.439422
-0.457203
-0.458573
-0.516343
-0.457474
-0.513163
-0.459212
-0.512359
-0.461056
-0.512892
-0.785019
-0.903499
-0.882843
-0.875438
-0.784356
-0.864133
-0.882188
-0.916761
-0.886528
-0.78585
-0.821658
-0.846042
-0.849489
-0.971917
-0.837783
-0.781209
-0.860644
-0.84601
-0.885682
-0.97082
-0.840784
-0.290508
-0.384749
-0.323158
-0.35657
-0.312578
-0.355159
-0.29138
-0.331848
-0.329115
-0.370615
-0.270264
-0.258368
-0.258348
-0.151857
-0.228453
-0.254175
-0.263194
-0.160894
-0.259754
-0.258546
-0.235665
-0.253279
-0.313796
-0.274547
-0.278166
-0.208627
-0.270774
-0.226363
-0.24891
-0.264552
-0.312527
-0.281721
-0.278664
-0.254444
-0.247067
-0.225712
-0.252778
-0.260362
-0.445383
-0.421508
-0.425401
-0.441403
-0.45276
-0.520144
-0.455338
-0.525676
-0.452483
-0.525376
-0.449429
-0.526162
-0.431693
-0.311045
-0.367626
-0.364869
-0.434979
-0.424803
-0.48813
-0.417605
-0.492523
-0.425224
-0.501556
-0.431044
-0.49465
-0.731673
-0.844698
-0.85673
-0.861667
-0.972134
-0.867685
-0.74121
-0.859085
-0.854916
-0.87495
-0.95413
-0.87834
-0.712703
-0.742358
-0.740577
-0.753128
-0.90242
-0.757232
-0.702679
-0.747247
-0.741253
-0.765821
-0.906106
-0.754988
-0.280126
-0.33668
-0.336203
-0.352428
-0.307647
-0.35259
-0.281924
-0.334481
-0.335547
-0.352879
-0.308493
-0.352902
-0.305418
-0.291706
-0.302596
-0.213469
-0.231463
-0.273908
-0.224819
-0.281159
-0.296746
-0.224678
-0.25595
-0.21204
-0.29435
-0.291055
-0.291847
-0.2979
-0.391875
-0.362113
-0.341597
-0.465221
-0.343128
-0.331972
-0.25912
-0.283162
-0.253033
-0.332705
-0.243737
-0.281051
-0.392015
-0.368233
-0.333308
-0.377845
-0.339684
-0.328555
-0.279837
-0.240527
-0.250163
-0.242458
-0.331947
-0.280109
-0.418376
-0.299056
-0.347702
-0.351276
-0.414317
-0.406599
-0.485197
-0.414177
-0.476376
-0.40536
-0.46655
-0.397233
-0.474508
-0.358212
-0.310857
-0.323404
-0.320338
-0.363297
-0.342278
-0.385739
-0.336575
-0.396251
-0.345445
-0.40756
-0.353988
-0.398833
-0.677139
-0.61649
-0.749037
-0.62376
-0.749971
-0.73794
-0.852276
-0.741125
-0.685564
-0.75518
-0.751451
-0.740645
-0.848071
-0.743115
-0.650833
-0.659656
-0.697292
-0.649761
-0.691928
-0.773632
-0.84108
-0.779155
-0.662183
-0.660452
-0.688271
-0.683427
-0.651085
-0.691339
-0.786218
-0.83957
-0.782963
-0.324038
-0.328785
-0.329064
-0.330896
-0.309693
-0.32941
-0.318936
-0.322761
-0.326037
-0.327173
-0.30844
-0.328872
-0.406947
-0.326077
-0.379674
-0.467423
-0.556399
-0.323866
-0.415113
-0.344194
-0.274007
-0.264807
-0.287304
-0.279891
-0.338795
-0.290873
-0.368106
-0.347681
-0.300894
-0.268622
-0.343422
-0.281356
-0.295386
-0.352333
-0.401155
-0.383894
-0.325049
-0.396334
-0.567626
-0.322882
-0.492598
-0.41577
-0.3859
-0.366785
-0.410442
-0.489317
-0.371751
-0.32013
-0.323218
-0.453874
-0.327547
-0.341176
-0.27916
-0.468563
-0.319479
-0.339452
-0.497735
-0.389814
-0.40782
-0.379606
-0.514939
-0.409821
-0.375142
-0.449004
-0.336499
-0.307116
-0.28011
-0.319336
-0.417319
-0.338358
-0.339434
-0.31538
-0.304375
-0.30751
-0.335267
-0.326824
-0.376325
-0.33455
-0.362373
-0.325273
-0.349706
-0.31582
-0.359413
-0.303045
-0.329148
-0.277366
-0.274293
-0.306651
-0.278708
-0.286076
-0.30651
-0.297248
-0.278639
-0.308778
-0.283759
-0.300189
-0.684387
-0.676896
-0.669905
-0.697445
-0.664838
-0.689906
-0.708776
-0.767823
-0.847298
-0.762742
-0.681029
-0.673618
-0.659629
-0.687399
-0.680468
-0.663281
-0.685494
-0.749242
-0.845706
-0.760821
-0.740182
-0.801458
-0.687996
-0.657931
-0.721602
-0.688462
-0.775405
-0.718543
-0.861958
-0.776591
-0.745104
-0.733515
-0.84534
-0.751783
-0.743127
-0.809486
-0.652633
-0.68179
-0.713499
-0.833437
-0.681863
-0.715367
-0.857263
-0.745569
-0.740463
-0.753567
-0.833478
-0.742705
-0.295557
-0.282177
-0.285309
-0.248259
-0.302666
-0.282871
-0.226509
-0.312467
-0.357451
-0.285142
-0.298256
-0.306022
-0.355221
-0.287277
-0.293315
-0.281355
-0.278485
-0.198764
-0.285983
-0.280632
-0.219721
-0.314592
-0.291672
-0.351777
-0.299685
-0.354522
-0.321072
-0.289421
-0.562665
-0.39237
-0.411932
-0.4075
-0.407426
-0.389896
-0.573192
-0.542779
-0.328694
-0.282273
-0.340187
-0.340707
-0.480994
-0.339359
-0.504296
-0.33925
-0.337372
-0.513384
-0.546635
-0.343166
-0.285541
-0.344006
-0.341634
-0.341463
-0.549726
-0.55957
-0.407018
-0.406613
-0.382907
-0.520483
-0.408058
-0.386343
-0.516842
-0.469807
-0.406372
-0.372927
-0.451328
-0.507746
-0.373561
-0.587703
-0.604742
-0.594922
-0.576862
-0.502579
-0.332426
-0.338003
-0.498323
-0.486724
-0.402008
-0.343831
-0.314768
-0.49334
-0.395923
-0.342022
-0.58568
-0.564266
-0.594111
-0.577734
-0.518762
-0.403585
-0.466404
-0.374267
-0.530545
-0.449085
-0.374253
-0.485279
-0.336477
-0.388457
-0.311682
-0.391753
-0.479538
-0.339671
-0.28582
-0.300398
-0.254436
-0.257284
-0.283117
-0.303136
-0.283805
-0.304709
-0.28431
-0.29889
-0.280894
-0.295783
-0.284794
-0.244233
-0.214312
-0.217569
-0.213351
-0.24826
-0.254289
-0.247667
-0.252208
-0.25121
-0.258981
-0.256037
-0.262372
-0.252414
-0.843821
-0.639478
-0.652222
-0.685549
-0.691374
-0.695875
-0.814507
-0.806322
-0.767142
-0.746683
-0.747496
-0.834142
-0.772197
-0.74313
-0.850137
-0.643243
-0.684733
-0.711436
-0.839463
-0.690969
-0.705364
-0.669952
-0.801921
-0.727089
-0.748534
-0.775176
-0.772567
-0.73517
-0.791106
-0.63093
-0.664829
-0.583632
-0.604776
-0.649187
-0.689107
-0.594708
-0.596574
-0.648164
-0.623323
-0.668198
-0.682694
-0.768113
-0.604683
-0.662146
-0.628325
-0.76582
-0.615733
-0.605844
-0.71394
-0.675209
-0.622582
-0.571452
-0.629717
-0.573768
-0.632349
-0.643
-0.582725
-0.690465
-0.64409
-0.76774
-0.676141
-0.766899
-0.718656
-0.631209
-0.237242
-0.293829
-0.275162
-0.285923
-0.240074
-0.274957
-0.292648
-0.19856
-0.330685
-0.339701
-0.218913
-0.24828
-0.308558
-0.264698
-0.270516
-0.242532
-0.313008
-0.26537
-0.159132
-0.302403
-0.181479
-0.292625
-0.237216
-0.29505
-0.276238
-0.302037
-0.241579
-0.275369
-0.294959
-0.250742
-0.270068
-0.312954
-0.273883
-0.314455
-0.257799
-0.266733
-0.158475
-0.277596
-0.172872
-0.288955
-0.542854
-0.376638
-0.400701
-0.5024
-0.490441
-0.375129
-0.552386
-0.601782
-0.604293
-0.597184
-0.620131
-0.451507
-0.411755
-0.325735
-0.348812
-0.417291
-0.448651
-0.352143
-0.510688
-0.360552
-0.367364
-0.51217
-0.454192
-0.357296
-0.328513
-0.427162
-0.420754
-0.354988
-0.459603
-0.542678
-0.399711
-0.471573
-0.371409
-0.538323
-0.486209
-0.372786
-0.601673
-0.642663
-0.626396
-0.606832
-0.542347
-0.570549
-0.434854
-0.410279
-0.578726
-0.542359
-0.414903
-0.590506
-0.791144
-0.586698
-0.771894
-0.493198
-0.434318
-0.398062
-0.493611
-0.500935
-0.47956
-0.397672
-0.364906
-0.504934
-0.475395
-0.394174
-0.591703
-0.73532
-0.753553
-0.594418
-0.54065
-0.445769
-0.56108
-0.423673
-0.543023
-0.557565
-0.419676
-0.49865
-0.387205
-0.474485
-0.361992
-0.47284
-0.498117
-0.390662
-0.22668
-0.182912
-0.190639
-0.193379
-0.224442
-0.246312
-0.245149
-0.245875
-0.242539
-0.243089
-0.238956
-0.241277
-0.241601
-0.210593
-0.155411
-0.177676
-0.175166
-0.212687
-0.230729
-0.233457
-0.229551
-0.234296
-0.231261
-0.234544
-0.232187
-0.233926
-0.624759
-0.531223
-0.612989
-0.544164
-0.62889
-0.552608
-0.620269
-0.620909
-0.642449
-0.618696
-0.627408
-0.624709
-0.769103
-0.589875
-0.632841
-0.622496
-0.766038
-0.582813
-0.624364
-0.622035
-0.626947
-0.536879
-0.637372
-0.560551
-0.62971
-0.633928
-0.555837
-0.618765
-0.607224
-0.62296
-0.612056
-0.622919
-0.570832
-0.625018
-0.739432
-0.763547
-0.578239
-0.6312
-0.534988
-0.509226
-0.454379
-0.489562
-0.49986
-0.543367
-0.482936
-0.563896
-0.527663
-0.558268
-0.539793
-0.588536
-0.686794
-0.684272
-0.594137
-0.590396
-0.633437
-0.497879
-0.529781
-0.559788
-0.638807
-0.503757
-0.566478
-0.549399
-0.543431
-0.571453
-0.528903
-0.448474
-0.476279
-0.470852
-0.521056
-0.489817
-0.477183
-0.594558
-0.515525
-0.656068
-0.537009
-0.641399
-0.603908
-0.508604
-0.308021
-0.341387
-0.310225
-0.336729
-0.305272
-0.312501
-0.338933
-0.282022
-0.180787
-0.20173
-0.271682
-0.285037
-0.2664
-0.287604
-0.262935
-0.288006
-0.263472
-0.286406
-0.303241
-0.3678
-0.311764
-0.363648
-0.310983
-0.34279
-0.315355
-0.343444
-0.313692
-0.313898
-0.341313
-0.281848
-0.283488
-0.257641
-0.262726
-0.260336
-0.278881
-0.285368
-0.300745
-0.358156
-0.292454
-0.362419
-0.539972
-0.436066
-0.464787
-0.565106
-0.56141
-0.433883
-0.543782
-0.591557
-0.796548
-0.586316
-0.806559
-0.507993
-0.481848
-0.370874
-0.400887
-0.474724
-0.50778
-0.402452
-0.528558
-0.440058
-0.429354
-0.518455
-0.511532
-0.407644
-0.372737
-0.477831
-0.475048
-0.404979
-0.516662
-0.538202
-0.461709
-0.560573
-0.427381
-0.543389
-0.558905
-0.431053
-0.589893
-0.821089
-0.81136
-0.580664
-0.548046
-0.568707
-0.489518
-0.451509
-0.571612
-0.545224
-0.453264
-0.707074
-0.86665
-0.706701
-0.870234
-0.578491
-0.509712
-0.521689
-0.581812
-0.528228
-0.519635
-0.428767
-0.402786
-0.531347
-0.516592
-0.427403
-0.707379
-0.868984
-0.871026
-0.707993
-0.553606
-0.490351
-0.578139
-0.455878
-0.556876
-0.575713
-0.454904
-0.52351
-0.423703
-0.506476
-0.400507
-0.511482
-0.521221
-0.425393
-0.198821
-0.134772
-0.155608
-0.161309
-0.194311
-0.224807
-0.232449
-0.226905
-0.230276
-0.222627
-0.22612
-0.219744
-0.229527
-0.12416
-0.0669437
-0.0977671
-0.091091
-0.131763
-0.159523
-0.176048
-0.153428
-0.18181
-0.164562
-0.194953
-0.171979
-0.187176
-0.479577
-0.431204
-0.410623
-0.465833
-0.426938
-0.462969
-0.466319
-0.556931
-0.518865
-0.555453
-0.491353
-0.534104
-0.626691
-0.496014
-0.509843
-0.546237
-0.614997
-0.493281
-0.570728
-0.683766
-0.671101
-0.584315
-0.495558
-0.432611
-0.459839
-0.467524
-0.50758
-0.444025
-0.464029
-0.556143
-0.427296
-0.487076
-0.571667
-0.518227
-0.501915
-0.507849
-0.535524
-0.604761
-0.493689
-0.506089
-0.396656
-0.386683
-0.391934
-0.429457
-0.394833
-0.388568
-0.422859
-0.514325
-0.382415
-0.442087
-0.394131
-0.591333
-0.667853
-0.656648
-0.609575
-0.438798
-0.476518
-0.447859
-0.481664
-0.431697
-0.482457
-0.45065
-0.526912
-0.400434
-0.396434
-0.538024
-0.401105
-0.383671
-0.418098
-0.412549
-0.407694
-0.403936
-0.414867
-0.448734
-0.466898
-0.483228
-0.490054
-0.488376
-0.447407
-0.459795
-0.358922
-0.329167
-0.310132
-0.380492
-0.355954
-0.308189
-0.383037
-0.366535
-0.325034
-0.325069
-0.35939
-0.339406
-0.314027
-0.281415
-0.260507
-0.34143
-0.313885
-0.283104
-0.379353
-0.412167
-0.384334
-0.407732
-0.361994
-0.325831
-0.30419
-0.38967
-0.365049
-0.305874
-0.386325
-0.33699
-0.286178
-0.311831
-0.262256
-0.313403
-0.334005
-0.284975
-0.37633
-0.400266
-0.369065
-0.405352
-0.555652
-0.451855
-0.486799
-0.582124
-0.572663
-0.453316
-0.561793
-0.638144
-0.857634
-0.70598
-0.843164
-0.536751
-0.524107
-0.406776
-0.429171
-0.527759
-0.534049
-0.42917
-0.590144
-0.555311
-0.548371
-0.589008
-0.54091
-0.430335
-0.408426
-0.535973
-0.532022
-0.430091
-0.545628
-0.551337
-0.48794
-0.571388
-0.45498
-0.554256
-0.566392
-0.453456
-0.636852
-0.812092
-0.838771
-0.623458
-0.594003
-0.597906
-0.452271
-0.444813
-0.601892
-0.590277
-0.445817
-0.643509
-0.657755
-0.648493
-0.651035
-0.627719
-0.586515
-0.590917
-0.621601
-0.64175
-0.639349
-0.648507
-0.635042
-0.59709
-0.452715
-0.608312
-0.448097
-0.600283
-0.605141
-0.446804
-0.584851
-0.438185
-0.570069
-0.425561
-0.57377
-0.581224
-0.439623
-0.0986145
-0.0518152
-0.068588
-0.0716969
-0.0948898
-0.140869
-0.169904
-0.146618
-0.165105
-0.135489
-0.154373
-0.130348
-0.160141
-0.0792356
-0.0668763
-0.0797884
-0.0800092
-0.0794099
-0.114756
-0.141989
-0.113281
-0.142274
-0.114954
-0.142454
-0.115322
-0.142169
-0.43353
-0.350154
-0.418861
-0.376534
-0.424509
-0.386765
-0.435081
-0.394093
-0.377217
-0.426416
-0.374889
-0.428117
-0.468909
-0.436366
-0.464756
-0.430438
-0.458723
-0.429952
-0.405856
-0.605103
-0.621878
-0.388526
-0.431363
-0.357979
-0.426485
-0.401295
-0.417403
-0.431061
-0.393866
-0.390886
-0.376449
-0.375331
-0.391398
-0.42277
-0.414303
-0.459272
-0.435181
-0.444447
-0.423748
-0.420151
-0.361874
-0.34375
-0.266745
-0.290657
-0.339039
-0.36736
-0.278111
-0.371409
-0.331729
-0.360735
-0.341821
-0.388363
-0.451152
-0.446134
-0.394485
-0.382331
-0.399194
-0.265749
-0.289155
-0.380266
-0.402323
-0.279749
-0.373233
-0.351691
-0.343665
-0.379925
-0.357599
-0.258688
-0.332578
-0.256625
-0.355816
-0.334924
-0.268459
-0.387669
-0.308255
-0.415035
-0.306315
-0.408822
-0.394513
-0.292148
-0.31459
-0.273473
-0.266595
-0.320113
-0.329717
-0.376953
-0.324881
-0.383078
-0.331443
-0.39138
-0.337114
-0.385105
-0.608815
-0.451533
-0.455678
-0.618737
-0.616203
-0.451081
-0.611625
-0.653765
-0.659953
-0.650126
-0.665588
-0.637535
-0.621607
-0.612922
-0.637812
-0.606089
-0.454935
-0.611117
-0.44905
-0.603203
-0.613787
-0.450099
-0.654735
-0.6733
-0.667565
-0.656785
-0.63679
-0.635835
-0.462726
-0.460096
-0.637467
-0.634368
-0.461505
-0.668274
-0.701453
-0.673926
-0.701527
-0.660127
-0.668607
-0.676325
-0.653412
-0.665882
-0.698064
-0.700681
-0.660828
-0.0757884
-0.0641476
-0.0735673
-0.0777121
-0.0715332
-0.110984
-0.141474
-0.112168
-0.141102
-0.109128
-0.13596
-0.105714
-0.139472
-0.00813397
0.027175
-0.0247926
0.0115807
0.0451501
-0.0178103
-0.0156412
-0.0303658
-0.0709101
-0.0259403
-0.0760209
-0.0371855
-0.0903382
-0.0449333
-0.0825648
-0.346656
-0.330931
-0.358829
-0.320068
-0.376761
-0.396343
-0.239973
-0.25126
-0.37683
-0.395933
-0.238813
-0.355196
-0.387785
-0.397518
-0.347581
-0.372269
-0.219625
-0.228799
-0.391991
-0.390023
-0.228419
-0.374863
-0.342653
-0.308534
-0.31622
-0.334966
-0.295073
-0.268642
-0.289801
-0.273663
-0.308519
-0.333859
-0.326084
-0.316333
-0.298559
-0.287003
-0.277522
-0.306732
-0.317432
-0.237837
-0.232274
-0.304259
-0.331962
-0.3696
-0.342527
-0.371687
-0.326756
-0.37664
-0.318305
-0.372573
-0.683355
-0.701993
-0.676405
-0.702954
-0.682046
-0.696742
-0.703917
-0.688816
-0.685336
-0.704636
-0.703221
-0.691628
-0.747029
-0.708691
-0.760526
-0.706493
-0.746988
-0.734104
-0.740808
-0.735892
-0.74316
-0.706027
-0.705978
-0.733687
0.0154238
0.0529763
0.0192539
0.0463325
0.0124532
0.01959
-0.0190229
-0.0660419
-0.0221845
-0.0626335
-0.0160372
-0.0569658
-0.013778
-0.0596008
0.0165102
0.0539005
0.0174065
0.0732914
0.0543741
0.0120339
0.0212624
0.0121569
0.0492768
-0.0321371
0.0832905
0.00263654
-0.024406
0.0183382
-0.019729
0.115746
0.0944567
0.0222239
-0.0201235
-0.276872
-0.262048
-0.28615
-0.251036
-0.286737
-0.29481
-0.303092
-0.285047
-0.275831
-0.242127
-0.248567
-0.274454
-0.231766
-0.205142
-0.209737
-0.211187
-0.23552
-0.224124
-0.207331
-0.250586
-0.237915
-0.21093
-0.211423
-0.250004
-0.195769
-0.177946
-0.168582
-0.211553
-0.1976
-0.252058
-0.157294
-0.288111
-0.206372
-0.317531
-0.232225
-0.296103
-0.762197
-0.706147
-0.75992
-0.702185
-0.771475
-0.716715
-0.734682
-0.772708
-0.762752
-0.694272
-0.700383
-0.76329
-0.568586
-0.464181
-0.503127
-0.524475
-0.574036
-0.619341
-0.584076
-0.623762
-0.586124
-0.580579
-0.540345
-0.633239
-1.18426
-1.17027
-1.26782
-1.27014
-1.18311
-1.26734
-1.17506
-1.18297
-1.2591
-1.19144
-1.28871
-1.19057
-1.18083
-1.26008
-2.21003
-2.17426
-2.09659
-2.14918
-2.11255
-2.37908
-2.50771
-2.48508
-2.44044
-2.35876
-2.28092
-2.43532
-2.20722
-2.44217
-2.42145
-2.19495
-2.22786
-2.08394
-2.07138
-2.22115
-1.21557
-1.20674
-1.31338
-1.23302
-1.19581
-1.29933
-1.2152
-1.21813
-1.31396
-1.222
-1.20346
-1.3187
-1.16355
-1.15891
-1.08933
-1.10015
-1.0903
-1.16236
-1.16253
0.901597
0.770624
0.918192
0.777501
0.784597
0.909718
0.908389
0.904523
0.785093
0.793373
0.914764
0.791634
0.91422
0.907304
0.886237
0.743652
0.891755
0.739114
0.890284
0.906428
0.887438
0.727635
0.936947
0.889468
0.747975
0.924281
0.0166893
-0.00679766
0.10461
0.104188
0.0217041
0.113399
0.112337
0.108471
-0.00964585
0.0154024
0.107815
0.014036
0.115919
0.115984
0.141765
0.14637
0.0236143
0.011051
0.104052
0.0229734
0.103611
0.112606
0.111424
0.118608
0.0178141
0.00449824
0.0213453
0.113539
0.118684
0.122102
-1.37171
-1.48271
-1.52892
-1.37014
-1.33299
-1.46547
-1.31713
-2.13718
-2.21011
-2.07935
-2.13867
-2.1478
-2.19739
-2.07335
-2.24574
-2.42546
-2.13293
-2.35838
-2.43305
-2.18071
-2.15591
-2.12267
-2.03285
-2.09162
-2.17672
-2.16846
-2.05685
-2.07857
-2.14284
-2.21252
-2.51032
-2.36304
-2.42933
-2.09267
-2.27231
-2.23307
0.904445
0.718803
0.982664
0.720682
0.961102
0.902277
0.902132
0.726354
0.947784
0.898199
0.722541
0.961283
-2.25815
-2.12007
-2.15778
-2.28369
-2.42202
-2.55974
-2.52369
-2.53899
-2.19886
-2.12146
-2.41003
-2.22461
-2.1001
-2.45905
-2.55912
-2.48551
-2.46336
0.932814
0.6909
1.0898
0.681293
0.926131
1.10256
0.93945
0.651887
1.11623
0.945984
0.67811
1.10449
0.139424
-0.0785663
0.00332806
-0.0333049
-0.0514528
0.134285
-0.00347954
-0.00642052
-0.0501706
-2.21086
-2.31192
-2.20643
-2.08524
-2.10358
-2.3939
-2.1734
-2.38405
-2.35399
-2.86537
-2.77309
-2.28352
-2.45835
-2.74942
-2.29786
-2.62581
-2.74111
-2.06586
-2.14938
-2.69907
-2.20946
-2.24768
-2.14252
-2.13089
-2.41595
-2.25958
-2.10889
-2.47097
1.00808
0.594674
0.593055
1.02286
1.00601
0.652425
1.1259
0.959248
0.597591
0.945096
0.77763
0.776185
0.910831
0.90691
0.773098
0.951753
1.13371
1.21799
1.32484
1.24481
1.23639
1.20115
1.14208
1.09545
1.08685
1.01827
0.947413
0.812911
0.731335
0.945406
1.02468
0.757339
1.22315
1.33936
1.44559
1.23204
1.33026
1.27548
1.01471
0.711761
0.813825
0.941235
0.944639
0.745477
1.00852
1.09654
1.10622
1.21429
1.27701
1.31432
1.42925
1.32078
1.20255
1.28022
0.0642458
0.0452117
0.0438318
0.0305947
-0.0263277
0.0484596
0.0435977
0.018033
-0.0261447
0.0421679
-0.0399023
0.0532713
-0.0180879
0.0498422
1.14318
1.15018
1.04699
0.951752
0.748189
0.816118
1.03256
0.958119
0.787559
1.22584
1.35143
1.48762
1.23751
1.36022
1.13906
1.11129
1.05354
0.851566
0.817313
0.962813
0.95993
0.803501
1.05895
1.23285
1.49868
1.3729
1.36712
1.23842
1.18657
1.18345
1.11607
1.02801
0.89615
0.998533
1.02661
1.10473
0.948868
1.27107
1.53256
1.78199
1.28775
1.51748
1.11088
0.929282
0.889838
1.01532
1.02326
0.946179
1.10654
1.18772
1.19813
1.26795
1.49265
1.7776
1.50453
1.34619
0.051225
0.00905293
0.0745563
0.00495654
0.0693283
-0.013382
-0.0751709
-0.000384402
0.048337
0.000654829
0.0599998
-0.0439828
0.00382109
0.0667525
0.00309425
-0.0720094
-0.00296483
1.222
1.22172
1.11509
1.03337
1.01379
0.916636
1.11054
1.03736
1.02968
1.3279
1.56296
1.88358
1.30567
1.57932
1.33498
1.89051
1.60124
1.59291
1.35627
1.22109
1.21008
1.12308
1.04351
0.921937
1.04706
1.04191
1.03402
1.12798
1.32641
1.25887
1.25483
1.11431
0.978845
1.16352
1.11126
1.25856
1.17112
1.48968
1.61526
1.8089
1.5308
1.61846
1.47485
1.62766
1.83011
1.62226
1.43534
1.24473
1.15555
0.972182
1.10163
1.10616
1.16161
1.23721
1.34909
1.41247
-0.0619423
-0.0105623
-0.0510499
-0.0155754
-0.0279357
-0.0559731
-0.000322615
-0.114289
-0.105727
-0.126284
-0.106453
-0.106199
-0.102395
-0.0848873
-0.0724347
-0.013879
-0.0648454
-0.0182362
-0.100912
-0.0602807
-0.00381523
-0.115399
-0.105556
-0.124421
-0.0913605
-0.104859
-0.0590412
-0.0788314
-0.989761
-0.988748
1.49344
1.46037
1.2756
1.12141
1.17432
0.991502
1.27029
1.12579
1.14632
1.5779
1.61738
1.72028
1.54775
1.61149
1.58479
1.71282
1.5825
1.60415
1.61476
1.48464
1.43887
1.28405
1.1067
0.996969
1.13818
1.13062
1.13316
1.28503
1.67152
1.64874
1.42388
1.1794
1.07989
1.17691
1.43851
1.73069
1.35428
1.36994
2.16796
1.75075
1.37094
1.71622
1.39319
1.40341
1.37803
1.71511
1.40797
1.07398
1.16506
1.17313
1.39293
1.68194
1.71717
-0.153958
-0.050961
-0.106787
-0.0782405
-0.149185
-0.10862
-0.0832292
-0.123192
-0.168848
-0.14345
-0.164603
-0.188217
-0.166863
-0.138222
-0.215501
-0.252598
-0.151379
-0.253785
-0.151034
-0.0522653
-0.106942
-0.0915478
-0.100189
-0.109377
-0.0883691
-0.119758
-0.131265
-0.157934
-0.160865
-0.16533
-0.111486
-0.134752
-0.217549
-0.243792
-0.212152
-0.247503
-1.19369
-1.01385
-1.10414
-1.12509
-1.0064
-1.10891
-1.26063
-1.17987
-1.25993
-0.949274
-1.09741
-1.16679
-1.17792
-0.94913
-1.16743
-1.1839
-1.21605
-1.25637
1.77279
1.77233
1.46121
1.203
1.09776
1.45274
1.20212
1.7864
1.33097
1.18902
1.78495
1.77891
1.31324
1.50262
1.73978
1.48388
1.15655
1.30933
1.31913
1.60614
1.72592
1.81533
1.77527
1.47491
1.10033
1.18344
1.18376
1.47562
1.85686
0.0405097
1.85679
-0.0743145
1.52188
1.18067
1.17378
1.179
1.52
1.50141
1.098
0.801047
0.879391
1.47784
1.1164
0.93347
1.51383
1.02583
1.14141
0.823273
1.12721
1.52949
0.982171
1.52024
1.16766
1.1825
1.18111
1.52063
1.86061
-0.21406
1.85557
-0.109169
-0.174469
-0.090791
-0.143869
-0.142832
-0.169426
-0.147854
-0.146598
-0.258244
-0.235927
-0.191822
-0.270364
-0.197354
-0.23684
-0.203215
-0.254841
-0.195412
-0.278532
-0.250922
-0.299117
-0.252436
-0.18006
-0.0942327
-0.154937
-0.152732
-0.187087
-0.151869
-0.149664
-0.189245
-0.188386
-0.254313
-0.234553
-0.254842
-0.178947
-0.191715
-0.271087
-0.241286
-0.250507
-0.249599
-1.09856
-1.18074
-1.11608
-0.922384
-1.09093
-1.08008
-1.07016
-0.915252
-1.07793
-1.1794
-1.20635
-1.12512
-1.00215
-1.0423
-0.98661
-0.870557
-0.940029
-0.97103
-0.99625
-0.868656
-0.978248
-1.03873
-0.954031
-0.979772
1.69441
0.168977
-2.95136
0.195015
1.63463
1.50003
1.18148
1.20412
1.51774
1.17797
1.39756
1.07916
0.72832
0.850525
1.44532
1.04601
0.822325
1.32963
0.724665
0.697737
0.983208
1.01459
0.766945
1.28117
1.77429
-3.08982
-0.159815
1.85467
0.190722
1.50899
1.20633
1.17313
1.17478
1.51313
1.29111
0.315024
-0.777458
1.3183
0.289107
1.29432
-0.767689
0.236295
1.24546
0.250317
-0.284911
-0.125225
-0.188658
-0.175817
-0.285452
-0.189983
-0.177188
-0.281276
-0.301114
-0.301779
-0.273773
-0.303149
-0.303449
-0.227411
-0.247248
-0.309003
-0.297809
-0.224327
-0.324542
-0.199501
-0.326155
-0.196102
-0.276841
-0.126887
-0.192162
-0.178225
-0.278741
-0.190075
-0.176632
-0.298276
-0.218083
-0.288232
-0.245609
-0.292191
-0.286959
-0.222059
-0.338858
-0.19326
-0.296144
-0.193785
-0.908212
-1.01372
-0.90981
-0.839777
-0.93415
-0.906678
-0.920273
-0.840941
-0.906216
-1.02427
-0.944911
-0.919715
-0.863142
-0.868119
-0.851484
-0.766946
-0.782572
-0.805345
-0.825883
-0.85676
-0.798905
-0.840885
-0.854967
-0.802762
-0.827916
1.15229
-0.465251
0.211266
1.19491
0.21086
-1.16561
-0.487852
-0.319777
-1.07773
-0.409857
-0.319964
-0.291821
-1.20026
-1.23527
-0.289363
1.14179
1.12754
-0.179106
1.18403
0.499702
-0.0167014
0.0570299
0.777075
1.1169
0.487462
-1.20695
1.05176
-1.23956
-0.438358
-0.354303
1.12338
-0.454331
-0.869849
-1.0397
-0.28886
-0.243476
-0.269031
-0.200212
-0.354549
-0.296925
-0.330368
-0.332412
-0.353235
-0.397149
-0.268012
-0.296304
-0.357192
-0.390568
-0.265264
-0.408451
-0.244214
-0.423285
-0.24045
-0.354061
-0.263258
-0.380624
-0.293476
-0.386719
-0.360725
-0.263664
-0.402965
-0.235071
-0.3855
-0.239158
0.177189
0.308903
0.315964
0.446502
0.831718
0.83128
0.436389
0.327454
0.167496
0.809453
0.321409
0.462688
0.454123
0.830269
-0.762957
-0.772399
-0.775408
-0.764035
-0.743856
-0.78956
-0.781702
-0.775204
-0.743038
-0.745523
-0.781918
-0.7812
-0.757059
-0.784346
-0.786874
-0.788404
-0.801321
-0.748514
-0.699254
-0.75938
-0.797738
-0.739765
-0.727794
-0.823442
-0.808552
-0.700233
-0.71007
-0.803268
-0.820692
-0.711036
-0.825628
-0.730607
-0.802656
-0.712664
-0.803345
-0.826379
-0.722154
-0.80044
-0.750014
-0.728228
-0.75534
-0.800467
-0.727193
-0.735663
-0.37295
-0.598383
-0.861343
-0.188699
-0.180923
-0.202922
-0.170106
-1.19063
-1.12283
-0.0633216
1.15098
-0.13854
1.15031
0.408801
0.663272
1.0095
0.366186
0.382318
0.394074
1.053
-0.367827
-0.857351
-0.820579
-0.219665
-0.218938
-0.254687
-0.206633
-0.76543
-1.10804
-0.0428849
1.15257
0.0391442
1.16492
-0.531082
-0.313103
-0.473595
-0.123096
-0.169242
-0.145672
-0.157131
0.20031
-0.702417
-0.784245
0.0667743
1.08227
1.10042
0.0823681
0.356511
0.60404
1.00037
0.354624
0.340998
0.374109
0.955324
-0.762135
-0.807447
0.0665128
1.15207
0.0500367
1.10875
-0.293744
-0.352431
-0.411245
-0.105535
-0.132673
-0.146687
-0.0826527
-0.502664
-0.384399
-0.397448
-0.488262
-0.411385
-0.447219
-0.307843
-0.34048
-0.413407
-0.443671
-0.305948
-0.476854
-0.273529
-0.479643
-0.268976
-0.408838
-0.301134
-0.438462
-0.337747
-0.440809
-0.405524
-0.303674
-0.474958
-0.264169
-0.468151
-0.267823
0.301103
0.322275
0.294144
0.414691
0.831898
0.425585
0.822487
0.283766
0.328514
0.28894
0.406338
0.802336
0.819824
0.397117
0.302546
0.257565
0.265714
0.364609
0.723428
0.76617
0.350463
0.27812
0.351514
0.272482
0.375659
0.800372
0.774549
0.387452
-0.808104
-0.79252
-0.754775
-0.802193
-0.754933
-0.808466
-0.787035
-0.822471
-0.813369
-0.687522
-0.709554
-0.816217
-0.822838
-0.717362
-0.823212
-0.715132
-0.682852
-0.815377
-0.818297
-0.718863
-0.822715
-0.806765
-0.793209
-0.736264
-0.767727
-0.804586
-0.748643
-0.783144
-0.747925
-0.669344
-0.814622
-0.700195
-0.769789
-0.646125
-0.821391
-0.729486
-0.761213
-0.754644
-0.699897
-0.662176
-0.558138
-0.56633
-0.674218
-0.704293
-0.583876
-0.735174
-0.745995
-0.701225
-0.616994
-0.693214
-0.568749
-0.676946
-0.749493
-0.59852
-0.708778
-0.67798
-0.60261
-0.796394
-0.706584
-0.62661
-0.815317
-0.676368
0.0726372
-0.543866
0.110298
1.06777
0.0799395
1.04296
-0.488288
0.103051
-0.530736
0.116532
1.01621
0.120966
1.03039
0.456959
-0.303005
-0.34311
0.132232
0.929515
0.960653
0.174156
-0.464004
0.371818
-0.371318
0.128218
1.01811
0.123269
0.988495
-0.557806
-0.522089
-0.5346
-0.558318
-0.502259
-0.323493
-0.503388
-0.321275
-0.500653
-0.316541
-0.496968
-0.320879
0.245475
0.25481
0.240501
0.314469
0.677298
0.332128
0.669844
0.244671
0.252581
0.235133
0.298905
0.555706
0.557871
0.307698
0.241811
0.213119
0.221945
0.277743
0.514054
0.524961
0.267816
0.240833
0.250486
0.228878
0.28881
0.556773
0.539672
0.306024
-0.688473
-0.730667
-0.50956
-0.5552
-0.540093
-0.667937
-0.753684
-0.683973
-0.654799
-0.528869
-0.556012
-0.643464
-0.69572
-0.539896
-0.718592
-0.736443
-0.740569
-0.713656
-0.722654
-0.733196
-0.81277
-0.72026
-0.806677
-0.719866
-0.817424
-0.673322
-0.506803
-0.52169
-0.616855
-0.633656
-0.526656
-0.655174
-0.699848
-0.584953
-0.585651
-0.789892
-0.703446
-0.561064
-0.751737
-0.481368
-0.463491
-0.609034
-0.434618
-0.53892
-0.499625
-0.586368
-0.695399
-0.693656
-0.686565
-0.722064
-0.486079
-0.496974
-0.50593
-0.515059
-0.501592
-0.487506
-0.51081
-0.747122
-0.909706
-0.748797
-0.905031
-0.486323
-0.513805
-0.484142
-0.514558
-0.502777
-0.465669
-0.518623
-0.744667
-0.890406
-0.711066
-0.90133
-0.465964
-0.44937
-0.505256
-0.527899
-0.473375
-0.497069
-0.568749
-0.275775
0.705598
-0.184698
0.195636
0.92894
0.18635
0.900721
-0.104515
0.771516
-0.159602
0.208908
0.840179
0.217643
0.879996
1.12448
-0.0246961
-0.0705848
0.208378
0.797103
0.8299
0.229113
-0.0945129
0.983445
-0.0662156
0.225704
0.831825
0.236886
0.802086
-0.577968
-0.602521
-0.613348
-0.571625
-0.532631
-0.362456
-0.534848
-0.361428
-0.531792
-0.355341
-0.528683
-0.361867
0.200503
0.272689
0.188854
0.24277
0.506437
0.256634
0.490899
0.176396
0.264786
0.181018
0.232525
0.463972
0.477094
0.22482
0.457988
0.128186
0.137362
0.18888
0.434469
0.442101
0.178121
0.170625
0.462533
0.159116
0.206131
0.457182
0.456632
0.217574
-0.468802
-0.44601
-0.529228
-0.534246
-0.536271
-0.459251
-0.457764
-0.482939
-0.49024
-0.496833
-0.515699
-0.478188
-0.49164
-0.518048
-0.677334
-0.640859
-0.651812
-0.68254
-0.729089
-0.958195
-0.731573
-0.949283
-0.728896
-0.954232
-0.734832
-0.950972
-0.467609
-0.510427
-0.493106
-0.454936
-0.462324
-0.517627
-0.460371
-0.483025
-0.530256
-0.5184
-0.482903
-0.483959
-0.532545
-0.472507
-0.407284
-0.30231
-0.360906
-0.414531
-0.409232
-0.33094
-0.414234
-0.491403
-0.4701
-0.464756
-0.579267
-0.40602
-0.407419
-0.276531
-0.298816
-0.410084
-0.408729
-0.304662
-0.516045
-0.614687
-0.439285
-0.801364
-0.40267
-0.274833
-0.273546
-0.391422
-0.405959
-0.303502
-0.403041
-0.405639
-0.359479
-0.414864
-0.321643
-0.41427
-0.408224
-0.330538
-0.527885
-0.90244
-0.617389
-0.83866
-0.00967364
1.50331
0.0118773
0.234961
0.785201
0.238465
0.753124
0.150738
1.4211
0.136329
0.226974
0.684659
0.227395
0.714282
1.53525
0.167509
0.164776
0.22262
0.616091
0.634121
0.220319
0.162758
1.4913
0.16776
0.226071
0.664181
0.227569
0.643243
-0.574387
-0.673525
-0.678922
-0.574033
-0.54778
-0.365551
-0.547873
-0.367648
-0.547871
-0.364425
-0.544056
-0.36765
0.120931
0.514247
0.11294
0.161398
0.432533
0.171007
0.423655
0.101915
0.531484
0.107585
0.154302
0.403998
0.414368
0.147659
0.524421
0.0913976
0.08635
0.129024
0.338603
0.365955
0.127289
0.0952249
0.5214
0.0900594
0.134703
0.393042
0.37892
0.141333
1.32765
1.43435
1.9636
1.95423
1.25915
-1.80172
0.479162
0.755908
-2.28581
0.880735
1.07797
0.584025
-2.51762
0.970608
1.40424
1.90941
1.12885
1.95158
1.20867
-1.18302
0.634266
-1.45943
0.74362
0.118109
0.0821772
0.912374
-1.9169
-1.56912
0.776583
0.129472
0.177264
-0.343527
-0.557915
0.16445
-0.413325
0.215375
-0.0636635
-0.0685553
0.277051
-0.489551
-0.609654
-0.446535
0.238469
-0.0616921
-0.0441231
-0.109836
-0.038916
-0.10395
-0.10521
-0.0362605
-0.0286415
-0.153555
-0.170784
-0.107578
-0.104686
-0.114362
-0.160881
-0.169521
-0.126403
-0.106243
-0.107296
-0.0377805
-0.108244
-0.103564
-0.0161271
-0.0318806
-0.0912452
-0.14591
-0.148265
-0.163603
-0.109193
-0.109594
-0.113554
-0.114932
-0.0946294
-0.031877
-0.0734322
-0.0349672
-0.0433671
-0.0761918
-0.078469
-0.096684
-0.0332467
-0.0901578
-0.0381962
-0.0268759
-0.079156
-0.0848461
-0.0168968
-0.0893303
-0.0716789
-0.0246208
-0.0250493
-0.0714536
-0.168508
-0.157894
-0.106323
-0.149747
-0.116206
-0.107388
-0.0127495
-0.0920009
-0.0808564
-0.0177477
-0.0240416
-0.0906188
-0.0801287
-0.0240233
-0.071122
-0.0647642
-0.0210376
-0.010489
-0.0668219
-0.136699
-0.098848
-0.122455
-0.127831
-0.104303
-0.0980559
-0.0938903
-0.12495
-0.0830775
-0.123796
-0.12903
-0.0749339
-0.0633306
-0.0857411
-0.121085
-0.12797
-0.127794
-0.0614445
-0.017868
-0.0708393
-0.0533834
-0.108746
-0.0832986
-0.122508
-0.0692414
-0.102959
-0.065232
-0.0664546
-0.118956
-0.090289
-0.096251
-0.0564853
-0.0509064
-0.0579817
-0.048514
-0.123595
-0.10281
-0.120019
-0.0364435
-0.00628739
-0.0154939
-0.0234783
-0.129366
-0.103522
-0.123999
-0.0403814
-0.0168827
-0.0526639
-0.0241032
-0.00239464
0.0210197
0.00871988
0.0277998
0.022174
0.0161761
0.00920566
-0.0713319
-0.0949441
-0.075547
-0.0354088
-0.0343409
-0.035116
-0.0310731
-0.0841001
-0.0972987
-0.0798425
-0.0396503
-0.0441323
-0.042282
-0.0398417
-0.120149
-0.0852403
-0.103951
-0.0125999
0.00914911
-0.0189738
0.0295748
-0.10203
-0.0994799
-0.10031
-0.0356689
-0.0505021
-0.0557707
-0.0249272
-0.0855083
-0.11129
-0.102071
-0.0159554
0.0351632
0.0260436
0.00208815
0.0165621
0.032533
0.0333203
0.028484
0.0256
0.0146583
0.0357055
-0.0653443
-0.0687314
-0.058565
-0.00892873
-0.0402482
-0.01838
-0.0283533
-0.0849197
-0.097417
-0.0877649
-0.0177527
-0.0459723
-0.0407988
-0.0196948
-0.0513038
-0.0830147
0.0200185
0.00251139
0.00764468
0.0293446
-0.111415
-0.0576998
-0.0880136
0.024448
0.0308663
0.0109722
0.0399063
-0.0290913
0.0154393
0.00593374
0.0235896
0.0192792
-0.0578319
-0.0275842
-0.0659845
0.0169727
0.0001313
-0.0087586
0.0224937
-0.0175906
-0.0951503
0.01803
0.0298188
0.0195328
0.0242181
-0.0481509
-0.0318577
0.0189109
0.0152497
0.018534
0.0138099
-0.0475806
0.0114514
-0.0360137
0.0275238
0.0796158
0.0781189
0.0350201
-0.0979423
0.00816861
-0.0347717
0.0231997
0.0652901
0.0241809
0.0805571
-0.0387593
0.0287489
0.0471409
0.0286326
0.0763601
0.0301508
0.0838811
-0.00945164
0.0737089
0.091947
-0.00480241
0.0331597
0.0285656
-0.00254978
0.0268724
0.0392995
0.0401849
0.0313188
0.080279
0.0771696
0.0399656
0.013321
0.0906046
0.0729713
-0.00988045
0.0336485
0.035404
-0.00947231
0.0458722
0.0340643
0.0499965
0.0383904
0.0826727
0.0792927
0.044168
0.0382369
0.0272928
0.0394361
0.0374776
0.0772027
0.0365123
0.0788329
-0.291719
-0.276941
-0.266367
-0.272006
-0.287421
-0.294594
-0.312702
-0.335047
-0.30843
-0.33827
-0.310521
-0.311009
-0.339826
-0.311074
-0.301317
-0.331594
-0.3141
-0.331112
-0.29407
-0.278138
-0.276583
-0.29347
-0.273747
-0.294611
-0.289606
-0.319763
-0.309609
-0.33428
-0.317207
-0.31552
-0.339469
-0.187248
-0.185827
-0.181305
-0.181437
-0.177049
-0.180092
-0.189402
-0.203344
-0.21706
-0.192547
-0.211386
-0.208499
-0.208743
-0.198707
-0.186558
-0.204548
-0.201002
-0.213443
-0.211835
-0.202394
-0.218116
-0.185414
-0.190697
-0.178136
-0.176395
-0.185222
-0.178836
-0.187176
-0.190474
-0.194452
-0.217953
-0.21905
-0.191174
-0.184776
-0.187652
-0.181645
-0.175573
-0.186085
-0.188358
-0.223162
-0.227781
-0.221607
-0.225194
-0.236511
-0.225238
-0.245458
-0.224796
-0.243474
-0.230584
-0.219392
-0.225768
-0.222825
-0.236962
-0.23263
-0.222052
-0.232356
-0.22464
-0.225402
-0.22233
-0.232198
-0.208762
-0.232209
-0.224039
-0.224461
-0.206871
-0.22003
-0.220606
-0.219244
-0.22561
-0.222075
-0.232538
-0.250858
-0.225675
-0.229755
-0.241471
-0.223009
-0.222575
-0.224172
-0.220239
-0.216689
-0.240324
-0.224906
-0.213444
-0.212442
-0.216894
-0.215915
-0.211119
-0.217274
-0.211444
-0.266854
-0.248377
-0.243247
-0.26903
-0.241393
-0.278283
-0.269753
-0.244798
-0.237326
-0.286228
-0.333052
-0.289303
-0.238835
-0.229698
-0.265423
-0.242479
-0.242399
-0.271179
-0.240598
-0.27015
-0.29432
-0.332461
-0.282219
-0.290084
-0.203581
-0.202932
-0.236045
-0.236932
-0.20609
-0.200667
-0.20343
-0.231343
-0.206116
-0.204248
-0.233585
-0.20471
-0.215514
-0.225653
-0.221819
-0.203305
-0.211472
-0.196321
-0.178554
-0.172989
-0.189397
-0.175019
-0.192572
-0.194018
-0.21616
-0.227083
-0.216385
-0.226938
-0.212899
-0.207112
-0.276442
-0.258773
-0.260514
-0.276133
-0.283661
-0.262305
-0.278742
-0.273961
-0.25849
-0.256215
-0.273104
-0.295895
-0.305525
-0.321472
-0.305976
-0.309592
-0.276967
-0.257044
-0.262647
-0.280079
-0.260801
-0.27947
-0.276158
-0.277235
-0.253633
-0.25509
-0.286156
-0.296572
-0.32289
-0.283919
-0.302965
-0.240041
-0.268771
-0.242619
-0.236351
-0.249273
-0.239365
-0.264235
-0.195339
-0.194274
-0.225408
-0.195381
-0.188506
-0.177792
-0.15695
-0.184593
-0.162915
-0.202921
-0.196706
-0.202124
-0.224367
-0.203133
-0.218082
-0.197796
-0.218916
-0.201508
-0.197352
-0.187372
-0.278861
-0.304507
-0.290102
-0.296406
-0.282719
-0.283459
-0.307975
-0.277747
-0.267122
-0.297793
-0.306384
-0.277734
-0.273459
-0.308496
-0.200544
-0.190851
-0.222007
-0.187366
-0.191174
-0.166124
-0.14914
-0.180336
-0.150897
-0.171024
-0.1542
-0.156067
-0.1757
-0.175225
-0.152023
-0.180627
-0.169784
-0.173207
-0.152432
-0.153895
-0.172768
-0.172524
-0.149418
-0.186326
-0.192248
-0.219516
-0.201745
-0.198429
-0.183709
-0.237845
-0.271356
-0.274467
-0.292883
-0.285061
-0.238845
-0.267753
-0.263864
-0.266144
-0.27502
-0.252562
-0.227773
-0.240273
-0.260164
-0.259458
-0.227111
-0.254323
-0.269719
-0.300828
-0.266502
-0.28909
-0.267095
-0.305348
-0.250371
-0.232549
-0.248277
-0.237435
-0.251846
-0.232137
-0.251934
-0.272769
-0.265314
-0.30419
-0.289148
-0.271832
-0.303934
-0.181617
-0.171655
-0.188377
-0.212755
-0.199381
-0.196109
-0.175048
-0.189849
-0.192846
-0.185632
-0.224015
-0.186917
-0.139322
-0.142477
-0.177106
-0.171758
-0.140943
-0.163863
-0.177278
-0.175709
-0.150826
-0.131024
-0.169378
-0.143298
-0.22611
-0.188673
-0.192345
-0.168979
-0.169105
-0.189018
-0.187459
-0.20506
-0.196618
-0.188445
-0.189208
-0.203511
-0.187969
-0.197207
-0.185378
-0.202726
-0.188434
-0.201853
-0.184962
-0.259349
-0.221327
-0.227119
-0.228581
-0.258123
-0.266578
-0.289828
-0.277615
-0.290023
-0.256461
-0.225717
-0.236897
-0.242816
-0.23229
-0.248875
-0.25363
-0.26823
-0.272782
-0.268288
-0.284026
-0.183355
-0.198811
-0.174603
-0.162194
-0.184249
-0.166997
-0.12525
-0.168156
-0.159832
-0.147647
-0.165917
-0.17411
-0.175823
-0.130571
-0.15284
-0.172237
-0.188718
-0.170929
-0.165173
-0.20011
-0.169869
-0.174586
-0.219255
-0.222246
-0.194421
-0.197637
-0.178696
-0.186796
-0.222479
-0.186527
-0.16444
-0.189634
-0.256965
-0.227023
-0.215557
-0.221901
-0.255939
-0.259981
-0.2751
-0.255714
-0.266184
-0.258032
-0.213643
-0.22002
-0.218197
-0.257177
-0.260602
-0.271356
-0.264649
-0.268049
-0.17518
-0.192557
-0.171046
-0.166991
-0.161837
-0.1735
-0.179409
-0.166617
-0.167717
-0.176905
-0.180696
-0.179541
-0.178486
-0.203944
-0.174964
-0.182538
-0.177957
-0.17791
-0.177731
-0.180565
-0.173726
-0.168344
-0.167366
-0.173113
-0.195776
-0.169713
-0.169091
-0.175673
-0.180418
-0.181482
-0.176529
-0.178156
-0.177998
-0.205373
-0.183007
-0.120881
-0.156638
-0.135273
-0.119368
-0.103254
-0.101573
-0.117813
-0.102594
-0.11137
-0.121198
-0.142375
-0.145926
-0.169237
-0.163547
-0.176713
-0.129927
-0.150246
-0.118185
-0.134646
-0.146944
-0.140927
-0.174426
-0.14423
-0.162074
-0.132989
-0.176761
-0.149234
-0.148233
-0.146771
-0.192294
-0.148995
-0.144428
-0.187339
-0.139481
-0.113739
-0.125381
-0.135543
-0.11713
-0.146192
-0.135564
-0.135528
-0.145002
-0.12276
-0.12773
-0.134738
-0.118493
-0.143655
-0.152169
-0.128219
-0.174467
-0.146564
-0.180078
-0.155922
-0.232653
-0.199275
-0.205948
-0.22616
-0.226387
-0.27269
-0.241446
-0.257288
-0.243361
-0.257638
-0.241202
-0.245158
-0.240129
-0.244682
-0.251741
-0.234728
-0.213932
-0.207458
-0.243753
-0.224442
-0.245169
-0.218055
-0.251232
-0.122184
-0.176253
-0.124243
-0.13042
-0.151549
-0.177628
-0.174237
-0.131184
-0.141216
-0.115718
-0.0986063
-0.104143
-0.113094
-0.101994
-0.110835
-0.109857
-0.106642
-0.0874216
-0.123276
-0.0937046
-0.102173
-0.108416
-0.124579
-0.0999342
-0.124132
-0.172379
-0.154905
-0.134832
-0.171475
-0.126873
-0.129188
-0.125924
-0.192537
-0.18122
-0.130664
-0.177923
-0.188455
-0.180157
-0.183697
-0.172418
-0.178725
-0.187342
-0.177752
-0.177432
-0.188644
-0.170214
-0.175868
-0.181568
-0.173815
-0.175673
-0.171479
-0.171217
-0.16686
-0.169701
-0.174807
-0.170773
-0.18082
-0.201977
-0.19497
-0.185494
-0.225134
-0.231318
-0.220858
-0.239976
-0.240557
-0.248369
-0.23812
-0.242862
-0.23792
-0.236764
-0.238881
-0.198046
-0.178315
-0.177885
-0.188598
-0.233771
-0.242898
-0.217447
-0.239399
-0.171949
-0.167607
-0.162307
-0.170064
-0.165704
-0.17019
-0.168825
-0.163005
-0.169082
-0.177282
-0.179095
-0.168361
-0.165886
-0.164299
-0.171385
-0.165051
-0.0986505
-0.152411
-0.10088
-0.142423
-0.0885021
-0.0696338
-0.0647693
-0.0862114
-0.0887463
-0.0456945
-0.0583785
-0.0858546
-0.0935255
-0.169168
-0.151365
-0.10319
-0.116592
-0.153589
-0.117856
-0.132621
-0.102959
-0.0896757
-0.0529791
-0.087729
-0.100294
-0.10593
-0.087491
-0.054401
-0.11457
-0.086856
-0.120663
-0.132623
-0.131904
-0.121003
-0.208161
-0.148515
-0.150737
-0.205623
-0.199468
-0.197902
-0.167862
-0.172636
-0.167968
-0.200509
-0.195752
-0.201089
-0.211606
-0.194903
-0.235914
-0.210219
-0.232299
-0.190007
-0.211866
-0.234587
-0.206376
-0.168716
-0.153108
-0.208218
-0.20677
-0.170019
-0.17411
-0.192733
-0.169775
-0.204328
-0.194732
-0.194704
-0.190912
-0.119631
-0.154616
-0.15816
-0.0896106
-0.0805791
-0.0603297
-0.0506695
-0.071752
-0.0816304
-0.0470305
-0.0467622
-0.0799834
-0.115902
-0.150673
-0.156694
-0.10679
-0.178105
-0.165803
-0.168158
-0.158082
-0.16982
-0.169512
-0.167858
-0.173481
-0.176528
-0.176496
-0.162408
-0.168299
-0.168185
-0.168935
-0.167848
-0.171247
-0.177107
-0.1499
-0.170838
-0.203097
-0.176207
-0.183439
-0.171863
-0.172884
-0.174221
-0.184934
-0.173498
-0.205588
-0.225709
-0.208993
-0.230098
-0.186088
-0.207658
-0.207589
-0.177906
-0.171227
-0.173025
-0.189332
-0.175189
-0.194428
-0.186701
-0.175235
-0.16682
-0.171252
-0.172596
-0.189661
-0.137043
-0.126258
-0.140921
-0.168311
-0.125802
-0.138782
-0.169359
-0.144673
-0.154984
-0.145125
-0.152973
-0.151245
-0.142195
-0.155786
-0.134865
-0.147003
-0.122527
-0.162187
-0.124876
-0.166362
-0.135604
-0.144748
-0.161308
-0.157016
-0.15613
-0.146623
-0.158302
-0.156279
-0.0770978
-0.0742706
-0.127048
-0.101526
-0.0755521
-0.0740598
-0.102793
-0.0527731
-0.0245757
-0.0266841
-0.0496554
-0.064832
-0.0197019
-0.0528727
-0.0480969
-0.0580761
-0.00742391
-0.00787823
-0.0623244
-0.00752144
-0.0442251
-0.0777437
-0.125329
-0.0773314
-0.114815
-0.0760098
-0.104479
-0.0799025
-0.0617828
-0.0749614
-0.127118
-0.125502
-0.0782752
-0.0761553
-0.1181
-0.0505352
0.0164864
0.00594451
-0.0740549
-0.0014503
-0.0697633
-0.0318886
-0.0874233
-0.0862198
-0.112589
-0.111509
-0.119423
-0.0911432
-0.0826374
-0.0603193
-0.0556104
-0.0390931
0.00699554
-0.0901086
-0.00873864
-0.066852
-0.0895205
-0.124119
-0.0980987
-0.11651
-0.094863
-0.12234
-0.0945788
-0.0801852
-0.124258
-0.0875139
-0.10784
-0.0783102
-0.11537
-0.0705255
-0.13061
-0.126423
-0.174709
-0.149122
-0.179301
-0.172178
-0.163462
-0.148338
-0.158401
-0.183559
-0.169331
-0.176814
-0.176387
-0.233996
-0.181128
-0.1731
-0.182789
-0.132117
-0.154655
-0.149489
-0.177639
-0.136553
-0.145932
-0.166993
-0.15714
-0.176725
-0.167851
-0.162554
-0.158864
-0.19251
-0.0748635
-0.0913437
-0.101041
-0.124577
-0.0993177
-0.0720195
-0.080388
-0.0373941
0.00564773
0.0113501
-0.0364986
0.00298944
-0.042637
-0.0316492
-0.0422004
-0.0453837
-0.00344285
0.0102835
-8.21971e-06
-0.0451571
-0.0455225
-0.0704921
-0.113182
-0.0963586
-0.0741903
-0.0995847
-0.0783129
-0.0648661
-0.147027
-0.123971
-0.125952
-0.168741
-0.142116
-0.124321
-0.16376
-0.162271
-0.164354
-0.16422
-0.192143
-0.170864
-0.157093
-0.165523
-0.149846
-0.119957
-0.143266
-0.175665
-0.130164
-0.16501
-0.152357
-0.160816
-0.164531
-0.159448
-0.166454
-0.151847
-0.200744
-0.162407
-0.122598
-0.14685
-0.177324
-0.183673
-0.110172
-0.155824
-0.15102
-0.158753
-0.156446
-0.150729
-0.13092
-0.100269
-0.106605
-0.15453
-0.149609
-0.156424
-0.229356
-0.180165
-0.171911
-0.178539
-0.160766
-0.133116
-0.134943
-0.16504
-0.110015
-0.175515
-0.15993
-0.14464
-0.185773
-0.103073
-0.184683
-0.107806
-0.161023
-0.149815
-0.159772
-0.0245551
-0.0144161
-0.0457707
-0.022471
0.0020624
0.0018144
-0.0242051
-0.0596678
-0.0623152
-0.0620152
-0.0236656
-0.00951907
-0.0149821
-0.0608464
-0.0250974
-0.0587508
-0.0319676
-0.0576812
-0.0222661
0.00138458
-0.0449093
0.043152
0.0111077
-0.0150847
-0.0861685
-0.130932
-0.136425
-0.131859
-0.108195
-0.101465
-0.0920257
-0.125225
-0.130712
-0.141203
-0.153511
-0.141761
-0.168156
-0.171755
-0.176155
-0.0869084
-0.140762
-0.13778
-0.0738407
-0.0949806
-0.121225
-0.0871962
-0.125923
-0.140478
-0.153602
-0.141699
-0.0540893
-0.127804
-0.104645
-0.116487
-0.155843
-0.117223
-0.122711
-0.0777266
-0.062544
-0.0736201
-0.119414
-0.156949
-0.16749
-0.163086
-0.0721957
-0.0823686
-0.118275
-0.0709008
-0.116702
-0.0576853
-0.0992516
-0.0956725
-0.138824
-0.157111
-0.12263
0.219229
0.10748
0.0812298
0.0841778
0.192287
0.125123
0.102296
0.145016
0.0572732
-0.031615
0.0589353
0.140662
0.170022
-0.0175522
0.0325294
-0.030936
0.177575
0.0418536
0.191155
0.0961192
0.166181
0.100265
0.153735
0.0989501
0.185902
-0.00334774
-0.0066068
0.0541064
-0.0163109
0.0194475
-0.0107721
-6.89419e-05
-0.0932032
-0.0507718
-0.0881313
-0.108196
-0.161163
-0.0839406
-0.153106
-0.0959679
-0.0949072
-0.00854211
-0.00431469
0.0294874
-0.0409639
0.00828526
-0.0180477
-0.0557959
-0.0874785
-0.0878518
-0.0466251
-0.148413
-0.0620791
-0.0308485
-0.00364152
0.0679696
0.0276774
-0.0204785
-0.0219499
0.0891655
0.00231438
-0.0374017
-0.15098
-0.0750571
-0.108541
-0.0701776
-0.0455191
-0.148034
-0.0843149
-0.0820516
-0.0925762
-0.158289
-0.0971143
-0.100423
-0.0795464
-0.0890052
-0.0926074
-0.0064921
0.0362593
-0.0200728
0.0891263
-0.020602
0.0893161
-0.0119985
-0.0325821
-0.0468339
-0.100194
-0.0616645
-0.0270385
-0.159533
0.00134803
0.0509113
0.120078
0.0135146
0.0458878
0.00449627
0.0273861
0.0122821
-0.0442606
-0.0144764
0.04305
0.029892
0.00388678
-0.05752
0.00639631
-0.14566
-0.0500311
-0.0948309
-0.0358451
-0.0482227
-0.134533
0.0100273
-0.113146
-0.109476
0.0212035
-0.0891017
-0.00131458
0.0400831
0.0131946
-0.00613611
0.0489629
-0.00081366
-6.26108e-05
0.0143401
0.152776
0.041323
-0.0931188
0.0449676
0.0403005
-0.066074
0.0104819
-0.02069
-0.078689
-0.0900868
-0.0264409
0.0086094
-0.124659
0.0376876
0.128286
0.0956564
0.0217536
0.0322339
0.145116
0.0320954
0.0139161
-0.0672741
-0.0044785
-0.0578963
0.00829953
-0.00806509
-0.063729
0.0484947
-0.103969
0.0304121
0.178888
0.0529672
0.179668
-0.10767
0.0223209
-0.104897
-0.113923
-0.054017
0.0218536
-0.119769
-0.057979
0.0504961
0.161483
0.0311994
-0.0986511
0.181246
0.0441776
-0.106855
0.0319974
0.138163
0.0544245
0.101246
0.0311882
0.0483383
0.106557
0.0146154
-0.0180913
-0.0568044
-0.0489791
-0.0140501
0.0101003
-0.062354
-0.0456253
0.0272501
-0.0122771
-0.00720799
0.146736
0.032119
-0.0455663
-0.0570782
-0.0764224
-0.0785928
-0.0455887
-0.0407243
-0.0434937
-0.0622063
-0.00506207
0.156295
-0.0353712
0.0335199
0.0340106
-0.00422302
-0.0459098
-0.0629298
-0.0778425
-0.0783877
-0.0469415
-0.0416844
-0.0453022
-0.062283
-0.0135985
-0.0951173
0.0603507
0.0184298
0.0198693
-0.0689439
-0.0148229
-0.0111345
-0.0356849
0.0286769
0.121492
0.022882
-0.00742393
-0.0660615
-0.0195244
-0.114638
-0.105746
0.220714
-0.0135894
-0.207663
-0.219325
-0.132952
-0.11677
-0.102405
0.21855
0.000857392
-0.0123679
-0.0876164
-0.203212
-0.187887
-0.0911456
-0.110505
-0.0573834
0.279106
0.0415042
0.0369258
-0.0429153
-0.0626108
0.00787601
0.283804
0.0320162
-0.0818556
-0.0522286
-0.058808
-0.0665309
-0.0345818
0.00153285
-0.0258205
-0.0569893
-0.00867476
-0.0963498
0.019057
0.172089
-0.0132013
0.0224221
-0.0696174
-0.00172496
-0.00677299
0.0325495
0.161528
0.0270795
0.00644327
-0.0644552
0.0293445
-0.0495657
-0.0359875
-0.00398753
0.00948291
-0.0163298
0.0536198
0.026451
-0.00074931
0.0369318
0.150284
0.0476947
0.0142772
0.0578503
-0.156297
-0.157771
-0.0601946
-0.0539564
-0.0288429
0.0353803
0.293021
0.0375484
-0.0378959
-0.027962
0.0388915
0.256503
0.0403564
-0.0237255
-0.15595
-0.155963
-0.0590445
-0.0524288
-0.0207965
0.0390573
0.182332
0.0282843
-0.0197743
0.0736626
0.00901509
0.00568676
0.0382435
0.145925
0.0406887
0.211661
0.0742772
0.0112804
0.0106209
0.0399984
0.139153
0.0414844
0.15293
-0.141694
-0.147354
-0.0786897
-0.0873299
-0.0732825
-0.135146
-0.129157
-0.0656648
-0.0803017
-0.0395675
-0.069056
-0.20414
-0.170099
-0.218229
-0.22638
-0.205957
-0.223769
-0.170813
-0.17878
-0.218587
-0.210521
-0.247191
-0.198753
-0.276619
-0.185548
-0.209117
-0.218929
-0.210332
-0.254955
-0.208861
-0.248736
-0.197553
-0.178154
-0.200893
-0.180112
-0.236329
-0.175232
-0.191121
-0.200321
-0.220659
-0.272265
-0.223472
-0.215885
-0.225319
-0.223979
-0.217121
-0.212916
-0.197482
-0.21824
-0.241075
-0.24871
-0.212296
-0.22149
-0.254241
-0.234818
-0.224915
-0.246883
-0.2579
-0.216403
-0.302608
-0.208742
-0.21568
-0.272344
-0.220198
-0.216285
-0.212193
-0.200084
-0.214007
-0.226482
-0.213862
-0.207427
-0.261983
-0.240403
-0.294765
-0.232232
-0.218256
-0.268518
-0.254611
-0.256308
-0.23563
-0.210306
-0.216961
-0.211757
-0.194987
-0.237301
-0.255164
-0.189077
-0.222534
-0.207264
-0.211185
-0.192177
-0.239186
-0.279821
-0.198688
-0.242149
-0.227646
-0.207261
-0.247966
-0.229169
-0.218651
-0.20692
-0.282708
-0.250636
-0.219575
-0.232008
-0.198922
-0.20486
-0.228683
-0.21761
-0.279069
-0.198463
-0.220471
-0.219542
-0.238151
-0.239824
-0.221538
-0.202285
-0.212754
-0.218498
-0.245665
-0.223795
-0.219518
-0.233419
-0.280827
-0.218236
-0.19124
-0.209202
-0.189319
-0.210023
-0.226404
-0.234155
-0.213961
-0.290831
-0.23202
-0.287491
-0.246291
-0.214125
-0.219791
-0.217422
-0.203486
-0.188406
-0.224749
-0.217556
-0.303782
-0.232934
-0.25275
-0.243715
-0.283864
-0.277648
-0.245545
-0.268077
-0.26439
-0.268155
-0.284754
-0.279256
-0.249013
-0.270537
-0.272996
-0.257992
-0.255803
-0.275026
-0.327243
-0.245084
-0.283657
-0.277718
-0.256271
-0.280292
-0.241433
-0.363627
-0.297384
-0.300478
-0.31537
-0.296653
-0.261097
-0.283355
-0.251315
-0.27514
-0.290951
-0.259614
-0.271435
-0.25596
-0.241791
-0.231827
-0.241449
-0.289305
-0.250766
-0.323902
-0.285267
-0.282191
-0.312357
-0.291471
-0.235542
-0.239264
-0.351032
-0.279308
-0.266023
-0.306049
-0.279942
-0.269678
-0.246307
-0.27271
-0.247688
-0.269368
-0.269986
-0.247458
-0.280835
-0.271977
-0.275132
-0.288964
-0.279536
-0.283091
-0.280702
-0.276809
-0.282193
-0.281069
-0.306265
-0.30169
-0.251873
-0.265715
-0.24638
-0.240004
-0.244293
-0.245179
-0.274051
-0.246129
-0.262282
-0.230887
-0.236359
-0.249559
-0.244341
-0.267453
-0.239553
-0.255943
-0.292485
-0.285937
-0.271439
-0.315421
-0.292734
-0.294859
-0.329841
-0.270112
-0.26157
-0.283588
-0.271259
-0.291322
-0.271039
-0.256866
-0.283454
-0.269898
-0.296065
-0.27669
-0.296332
-0.295388
-0.275571
-0.273531
-0.380107
-0.254789
-0.269188
-0.281446
-0.288044
-0.25528
-0.301435
-0.30973
-0.285558
-0.275813
-0.330082
-0.289157
-0.27654
-0.313464
-0.29751
-0.298472
-0.301699
-0.323826
-0.32892
-0.317569
-0.389314
-0.308796
-0.301854
-0.319982
-0.288353
-0.305091
-0.384031
-0.283653
-0.314048
-0.28266
-0.400909
-0.280136
-0.28519
-0.309104
-0.277104
-0.276704
-0.280714
-0.286404
-0.309095
-0.292401
-0.29477
-0.32595
-0.329939
-0.327592
-0.295035
-0.292938
-0.293317
-0.327192
-0.301414
-0.326882
-0.297815
-0.328178
-0.29622
-0.28599
-0.271253
-0.29223
-0.307403
-0.285462
-0.30745
-0.288903
-0.284276
-0.284754
-0.281527
-0.311308
-0.290892
-0.278826
-0.302326
-0.282705
-0.269539
-0.272832
-0.269259
-0.27233
-0.273458
-0.265738
-0.278711
-0.287037
-0.282179
-0.287967
-0.278555
-0.29893
-0.273021
-0.287593
-0.379324
-0.256658
-0.259251
-0.288136
-0.282709
-0.261054
-0.327962
-0.310168
-0.284699
-0.322725
-0.296514
-0.317938
-0.410886
-0.283857
-0.316355
-0.263514
-0.273087
-0.28371
-0.281195
-0.267912
-0.264067
-0.281302
-0.263708
-0.276487
-0.263395
-0.284589
-0.264802
-0.282689
-0.265138
-0.270774
-0.29704
-0.272627
-0.310583
-0.269709
-0.299229
-0.274519
-0.28073
-0.300724
-0.288853
-0.278941
-0.299829
-0.283386
-0.275128
-0.284702
-0.280699
-0.300195
-0.333086
-0.333866
-0.28056
-0.284323
-0.285212
-0.322987
-0.299253
-0.285467
-0.332546
-0.28775
-0.281276
-0.279838
-0.283359
-0.317921
-0.268486
-0.301568
-0.272001
-0.279066
-0.326167
-0.333029
-0.32935
-0.329539
-0.386447
-0.366708
-0.362805
-0.330609
-0.366305
-0.305857
-0.38018
-0.328936
-0.273563
-0.26836
-0.277928
-0.34831
-0.32627
-0.279751
-0.271336
-0.286081
-0.300854
-0.285146
-0.326974
-0.284658
-0.290096
-0.306427
-0.280571
-0.320936
-0.280352
-0.286178
-0.315515
-0.291989
-0.287401
-0.304109
-0.328496
-0.324626
-0.286414
-0.294471
-0.290638
-0.321589
-0.285912
-0.305834
-0.288674
-0.321624
-0.286536
-0.291367
-0.315251
-0.271459
-0.334302
-0.277187
-0.324433
-0.29143
-0.271945
-0.301854
-0.277186
-0.286795
-0.266818
-0.277355
-0.30098
-0.27456
-0.273095
-0.317479
-0.30354
-0.302178
-0.280088
-0.271209
-0.275756
-0.288832
-0.270647
-0.303926
-0.27519
-0.310171
-0.276007
-0.271268
-0.295773
-0.271629
-0.304754
-0.269853
-0.296238
-0.270943
-0.279141
-0.270825
-0.275756
-0.29715
-0.336582
-0.292752
-0.280469
-0.282367
-0.277468
-0.286831
-0.334936
-0.291352
-0.331222
-0.323596
-0.337793
-0.298846
-0.330423
-0.337688
-0.34556
-0.297954
-0.341087
-0.323867
-0.335873
-0.339675
-0.32154
-0.329825
-0.330486
-0.362026
-0.349915
-0.340235
-0.312576
-0.337432
-0.33569
-0.338316
-0.349722
-0.337258
-0.322955
-0.330418
-0.333853
-0.343009
-0.355576
-0.343328
-0.323722
-0.336676
-0.334952
-0.33878
-0.355241
-0.342325
-0.314745
-0.362129
-0.314495
-0.320276
-0.297817
-0.422439
-0.30382
-0.318586
-0.319671
-0.354008
-0.311062
-0.303894
-0.314723
-0.382704
-0.297339
-0.30175
-0.287948
-0.315232
-0.298148
-0.319798
-0.286345
-0.322689
-0.376628
-0.331181
-0.340591
-0.249176
-0.296232
-0.352753
-0.398481
-0.366908
-0.610773
-0.34213
-0.317783
-0.325381
-0.344444
-0.285137
-0.374656
-0.400385
-0.630486
-0.36881
-0.318045
-0.614788
-0.247699
-0.324887
-0.304459
-0.328298
-0.331357
-0.291725
-0.241662
-0.353261
-0.671196
-0.391013
-0.418149
-0.387528
-0.368962
-0.656933
-0.256455
-0.301534
-0.337709
-0.271543
-0.334182
-0.286512
-0.285838
-0.348313
-0.378759
-0.414904
-0.636688
-0.383865
-0.327406
-0.651141
-0.25312
-0.272632
-0.172621
-0.289394
-0.260938
-0.27431
-0.204673
-0.277735
-0.36113
-0.289814
-0.285909
-0.279948
-0.363433
-0.263813
-0.225607
-0.280128
-0.277102
-0.362398
-0.289511
-0.286425
-0.277305
-0.363396
-0.252851
-0.292739
-0.287641
-0.259772
-0.279758
-0.21682
-0.260823
-0.385018
-0.321757
-0.239519
-0.377451
-0.213963
-0.374454
-0.393628
-0.438944
-0.738444
-0.420708
-0.448427
-0.423865
-0.431179
-0.747456
-0.382067
-0.318454
-0.177364
-0.367941
-0.204298
-0.371333
-0.372097
-0.441132
-0.429485
-0.451334
-0.757201
-0.426765
-0.447812
-0.749949
-0.399562
-0.24433
-0.328829
-0.379583
-0.380562
-0.258875
-0.395439
-0.452131
-0.743957
-0.427429
-0.45949
-0.432391
-0.453893
-0.751396
-0.245382
-0.398774
-0.32772
-0.371759
-0.244909
-0.37888
-0.260895
-0.396822
-0.452615
-0.431596
-0.458849
-0.758257
-0.433004
-0.449076
-0.75504
-0.28314
-0.286953
-0.323309
-0.312134
-0.276668
-0.293675
-0.33078
-0.222654
-0.280272
-0.200977
-0.261652
-0.263368
-0.258275
-0.26109
-0.275033
-0.273462
-0.261259
-0.266442
-0.25621
-0.345908
-0.340538
-0.266226
-0.257392
-0.271515
-0.28446
-0.264562
-0.255417
-0.273562
-0.274921
-0.25282
-0.328743
-0.241325
-0.336355
-0.289532
-0.318924
-0.298355
-0.326105
-0.295957
-0.320198
-0.293641
-0.418505
-0.330396
-0.343798
-0.364349
-0.338267
-0.362338
-0.421378
-0.453876
-0.338084
-0.346227
-0.448778
-0.446814
-0.563157
-0.394722
-0.421059
-0.39624
-0.443655
-0.561739
-0.499988
-0.769954
-0.502323
-0.77307
-0.417516
-0.328724
-0.329732
-0.359283
-0.336306
-0.361023
-0.413414
-0.455259
-0.35512
-0.348622
-0.458627
-0.447441
-0.399122
-0.422566
-0.560143
-0.397282
-0.449457
-0.560908
-0.42493
-0.345942
-0.338962
-0.366215
-0.368673
-0.352344
-0.422497
-0.452033
-0.555858
-0.409274
-0.433509
-0.405255
-0.453634
-0.557834
-0.463928
-0.373416
-0.366081
-0.468707
-0.505092
-0.76836
-0.502903
-0.766766
-0.462818
-0.357274
-0.363589
-0.459627
-0.425542
-0.343155
-0.377163
-0.362269
-0.371633
-0.359346
-0.427331
-0.451915
-0.40101
-0.431074
-0.560705
-0.402974
-0.450339
-0.559914
-0.313538
-0.315596
-0.353493
-0.342565
-0.320022
-0.313657
-0.351199
-0.292044
-0.261283
-0.341659
-0.300878
-0.296656
-0.299185
-0.267684
-0.29062
-0.289434
-0.292998
-0.313603
-0.349843
-0.388607
-0.407354
-0.343345
-0.28564
-0.28732
-0.266424
-0.265753
-0.287224
-0.287479
-0.278981
-0.343729
-0.388071
-0.354405
-0.403269
-0.315587
-0.340922
-0.314758
-0.346719
-0.314004
-0.348268
-0.323436
-0.419418
-0.378842
-0.384074
-0.408765
-0.382669
-0.410427
-0.420271
-0.481059
-0.39154
-0.395173
-0.480897
-0.463276
-0.509784
-0.444531
-0.464352
-0.443752
-0.46446
-0.508047
-0.52116
-0.708493
-0.519476
-0.718604
-0.417624
-0.378466
-0.379256
-0.410879
-0.380285
-0.410536
-0.417526
-0.481621
-0.402381
-0.396947
-0.481744
-0.464228
-0.440886
-0.463847
-0.509004
-0.443184
-0.464209
-0.509021
-0.422621
-0.386143
-0.374717
-0.407686
-0.405225
-0.385853
-0.422428
-0.467522
-0.514889
-0.431206
-0.453591
-0.434202
-0.467576
-0.514131
-0.486652
-0.416604
-0.420869
-0.494154
-0.518741
-0.707105
-0.520222
-0.697807
-0.484078
-0.405631
-0.415988
-0.483081
-0.423738
-0.372448
-0.399563
-0.381212
-0.40316
-0.385355
-0.422414
-0.466014
-0.43917
-0.455884
-0.511548
-0.436268
-0.466087
-0.511918
-0.367819
-0.295111
-0.399281
-0.314887
-0.369845
-0.292685
-0.399335
-0.350679
-0.313113
-0.356829
-0.30704
-0.365531
-0.415267
-0.421846
-0.358602
-0.33409
-0.270048
-0.304675
-0.242603
-0.337373
-0.300996
-0.267068
-0.3679
-0.422694
-0.374676
-0.423064
-0.364787
-0.313
-0.286901
-0.396653
-0.290007
-0.398383
-0.361235
-0.458362
-0.341209
-0.427514
-0.360298
-0.425861
-0.361247
-0.459997
-0.470778
-0.426062
-0.430134
-0.468149
-0.491804
-0.520572
-0.386326
-0.401731
-0.384578
-0.489478
-0.522216
-0.490137
-0.561234
-0.493071
-0.559981
-0.456436
-0.342169
-0.421244
-0.363772
-0.423855
-0.362117
-0.453826
-0.471864
-0.435274
-0.431487
-0.47521
-0.49342
-0.382812
-0.400905
-0.524587
-0.383702
-0.494841
-0.523407
-0.462003
-0.42856
-0.338123
-0.359684
-0.358902
-0.429325
-0.461099
-0.49716
-0.527019
-0.380153
-0.398617
-0.381028
-0.497509
-0.526666
-0.479644
-0.436886
-0.438133
-0.481881
-0.496281
-0.561636
-0.493933
-0.562343
-0.478888
-0.436144
-0.437899
-0.476188
-0.462522
-0.336855
-0.356894
-0.429503
-0.358025
-0.429583
-0.462814
-0.496625
-0.382306
-0.399112
-0.525419
-0.381682
-0.495809
-0.526141
-0.298015
-0.220203
-0.300235
-0.214814
-0.319167
-0.374619
-0.371316
-0.319812
-0.319443
-0.369188
-0.319284
-0.370766
-0.456588
-0.396166
-0.391573
-0.463549
-0.492907
-0.52806
-0.369002
-0.38948
-0.367115
-0.494367
-0.528245
-0.480388
-0.560108
-0.475585
-0.563074
-0.454591
-0.388561
-0.390243
-0.450813
-0.447868
-0.392124
-0.389336
-0.448621
-0.472015
-0.558138
-0.474189
-0.554447
-0.448179
-0.388118
-0.388967
-0.44966
-0.288366
-0.179118
-0.297508
-0.17438
-0.314047
-0.363559
-0.374958
-0.298583
-0.318202
-0.383841
-0.32706
-0.378542
-0.437755
-0.381815
-0.381256
-0.443372
-0.457677
-0.536163
-0.447021
-0.541794
-0.434394
-0.391714
-0.382822
-0.423448
-0.410821
-0.381427
-0.392219
-0.411784
-0.430925
-0.533418
-0.442536
-0.524164
-0.412463
-0.394019
-0.395008
-0.419563
-0.0783378
-0.0611995
-0.0620485
-0.154802
-0.12833
-0.0764258
-0.0836024
-0.0936026
-0.0937072
-0.163186
-0.0856555
-0.197467
-0.243644
-0.268186
-0.21116
-0.216859
-0.199716
-0.238989
-1.19132
-1.14906
-1.09257
-1.07496
-1.10063
-1.15938
-1.18914
-1.19354
-1.27867
-1.29274
-1.19552
-1.19052
-1.1706
-1.08545
-1.07252
-1.14705
-1.09386
-1.19202
-1.21097
-1.26819
-1.18889
-1.20785
-1.1833
-1.17167
-1.42537
-1.32735
-1.29697
0.22553
0.192135
0.186916
0.210937
0.182974
0.210252
0.222224
0.0146348
0.109477
0.0664291
0.139483
0.0506104
-0.00354805
0.00417721
0.0130585
-0.0303344
0.0445356
0.0743785
0.137108
0.128906
0.0621983
0.139602
0.102523
-0.0451416
0.000220376
0.139802
0.140081
0.213958
0.224893
0.393536
0.389505
0.325532
0.346136
0.260112
0.288281
0.341079
0.292267
0.344611
0.349535
0.222394
0.297405
0.339543
0.272757
0.226009
0.0427799
0.109528
0.174473
0.116117
0.0753368
-0.0229732
-0.04951
0.00402875
0.0102857
-0.0222578
0.00536584
0.0011681
-0.0647104
-0.041582
0.0485387
0.199863
0.151783
0.148441
0.0250046
0.154784
0.216488
0.212628
0.210051
0.386103
0.273142
0.367945
0.276347
0.199112
0.381272
0.393171
0.406963
0.126769
0.215469
0.220723
0.215908
0.295194
0.359215
0.340018
0.280779
0.229557
0.358768
0.225572
0.189599
0.211889
0.201126
0.222535
0.17982
0.215429
0.226
0.183998
0.174847
0.23122
0.179039
0.218759
0.232954
-1.35937
-1.48184
-1.36749
-1.45812
-1.44274
-1.21723
-1.32878
-1.21662
-1.0648
-1.09333
-1.17514
-1.15803
-1.07656
-1.09874
-1.08009
-1.16295
-1.09162
-1.09786
-1.16667
-1.15072
-1.08108
-1.33649
-1.19263
-1.21951
-1.4508
-1.40619
-1.37443
-1.43792
-1.37464
-1.44904
-1.49048
-1.46693
-1.63609
-1.441
-1.38276
-1.39121
-1.38623
-1.41192
-1.51405
-1.65165
-1.5038
-1.63874
-1.19355
-1.25209
-1.3428
-1.24517
-1.08715
-1.07855
-1.18554
-1.10612
-1.11087
-1.17495
-1.17189
-1.10872
-1.16958
-1.18293
-1.1633
-1.09895
-1.10554
-1.1561
-1.1663
-1.10519
-1.19937
-1.34805
-1.2354
-1.2467
-1.23836
-1.43859
-1.3757
-1.3857
-1.43309
-1.46002
-1.37547
-1.44478
-1.51024
-1.65377
-1.48902
-1.48277
-1.51387
-1.66692
-1.43258
-1.38265
-1.44777
-1.37094
-1.44057
-1.37549
-1.43775
-1.53087
-1.65679
-1.47258
-1.53508
-1.66172
0.0649467
0.00790183
0.095325
0.115497
0.0166766
0.0635089
0.118209
0.0226225
-0.0255662
-0.0541141
-0.0124525
0.0241307
0.0159513
-0.0165662
-0.0546091
0.0680068
0.135845
0.13559
0.0133224
0.131911
0.0647152
0.13318
0.13112
0.191222
0.194543
0.213253
0.221714
0.173942
0.288151
0.364228
0.29776
0.364366
0.295175
0.291107
0.361083
0.377183
0.238545
0.380201
0.19217
0.170599
0.209123
0.218013
0.204316
0.286938
0.29436
0.362716
0.355451
0.295643
0.232509
0.358834
0.0538254
0.0614001
0.126216
0.12901
0.126155
0.0613543
0.0257297
-0.0060356
-0.0458655
-0.0258157
-0.0341404
0.00066272
-0.0070126
-0.00747639
-0.0309857
0.0139744
-0.0161572
-0.0333046
0.00168686
0.0516438
0.124859
0.116593
0.0250191
0.123278
0.0245771
0.0479564
0.243384
0.193987
0.21535
0.213254
0.172395
0.27491
0.346702
0.284237
0.360407
0.286332
0.272
0.348762
0.256673
0.375497
0.238881
0.372405
0.248526
0.191503
0.224081
0.222392
0.252447
0.256713
0.297216
0.359536
0.350676
0.296065
0.23359
0.349339
-1.3821
-1.34398
-1.33223
-1.39837
-1.35111
-1.3954
-1.38614
-1.39358
-1.36087
-1.34702
-1.42058
-1.44379
-1.48449
-1.47829
-1.592
-1.46195
-1.57834
-1.47679
-1.46113
-1.60844
-1.37086
-1.35671
-1.33226
-1.4212
-1.48647
-1.48262
-1.63672
-1.58518
-1.49158
-1.47837
-1.64726
-1.19639
-1.1149
-1.12328
-1.22746
-1.19829
-1.12484
-1.19667
-1.26123
-1.35256
-1.33669
-1.24619
-1.28414
-1.35079
-1.23706
-1.28228
-1.34938
-1.2411
-1.24812
-1.32871
-1.34012
-1.23077
-1.24178
-1.19797
-1.13321
-1.12573
-1.23732
-1.20022
-1.12988
-1.23459
-1.25297
-1.32996
-1.23495
-1.32605
-1.27437
-1.24975
-1.40443
-1.3406
-1.34083
-1.40476
-1.40655
-1.33983
-1.40632
-1.48118
-1.41324
-1.34647
-1.32229
-1.49043
-1.52263
-1.62352
-1.50835
-1.4754
-1.41752
-1.3517
-1.35059
-1.43123
-1.35817
-1.42007
-1.4622
-1.40585
-1.36358
-1.41981
-1.32253
-1.51598
-1.4874
-1.61535
-1.62595
-1.47897
-1.49367
0.0117285
-0.0323903
-0.0408657
-0.0111198
0.0461342
-0.0349238
0.00743494
0.0118147
-0.00329882
0.0149477
-0.026499
0.03707
0.00715821
-0.024337
0.0418536
0.0816866
0.0315489
0.0992771
0.0231282
0.0958414
0.0442425
-0.00851822
0.0932037
0.00121231
-0.0166607
-0.0301471
0.0267394
0.0124367
0.0930272
0.0546979
0.0333267
0.161477
0.13415
0.18844
0.190516
0.159878
0.132884
0.131004
0.26186
0.343871
0.270383
0.348925
0.268634
0.264003
0.339996
0.207814
0.340145
0.211124
0.345002
0.161845
0.136512
0.194642
0.192389
0.164471
0.132687
0.136607
0.00888745
-0.0314948
0.0144601
0.000478538
0.00127877
-0.0362331
0.00857193
0.0138476
0.0227654
-0.0325877
0.0125361
0.0144839
0.0229033
-0.0354979
0.1599
0.122957
0.187829
0.185802
0.16069
0.144667
0.147652
0.216872
0.339374
0.212425
0.335033
0.143961
0.138853
0.159545
0.120103
0.18273
0.0809002
0.185291
0.159411
-1.36992
-1.38277
-1.33757
-1.31332
-1.31543
-1.37971
-1.36791
-1.44881
-1.58848
-1.46252
-1.53472
-1.44682
-1.49235
-1.52562
-1.37609
-1.31763
-1.32933
-1.40903
-1.31608
-1.3844
-1.39161
-1.2176
-1.22867
-1.28298
-1.28844
-1.27415
-1.21956
-1.24054
-1.44845
-1.50336
-1.44552
-1.53431
-1.44793
-1.44009
-1.51732
-1.37876
-1.4127
-1.33004
-1.3569
-1.3359
-1.38269
-1.38029
-1.38074
-1.32232
-1.40881
-1.35142
-1.38575
-1.33465
-1.38589
0.0144672
-0.0312366
-0.0429321
0.0145707
0.0112142
-0.0315613
0.0165518
0.0419785
0.0771632
0.0496619
0.042718
0.0834743
-0.0461215
0.00987246
-0.0100381
-0.0122267
-0.0752356
-0.0119314
0.0494005
0.040277
0.0938321
0.0429162
0.0857562
0.14819
0.10235
0.0544234
0.172825
0.0474817
0.16713
0.170212
0.18557
0.18797
0.184846
0.318212
0.182704
0.321403
0.130628
0.10702
0.0819234
0.165083
0.052429
0.162947
0.133167
0.188811
0.184027
0.1696
0.05578
0.087767
0.173158
0.171967
0.0625314
0.171512
0.176458
0.170559
0.179254
0.317643
0.181946
0.317391
0.178465
0.182827
0.167044
0.0858864
0.16806
0.0727755
0.170575
0.0651105
0.163276
0.0120537
-0.0222972
-0.0177746
0.0116557
-0.0504554
-0.0214608
-0.0274825
-0.0937952
-0.130699
-0.0826073
-0.0751124
-0.100693
-0.112888
-0.101339
-0.0935106
-0.0474572
-0.141089
-0.0625319
-0.0678484
-0.0988259
0.00277295
0.00565938
-0.0230445
-0.036986
-0.019252
-0.029247
-0.00630336
0.127785
0.0849072
0.0573363
0.152612
0.0426462
0.154159
0.124581
0.120725
-0.0682688
-0.0719826
0.127249
0.208036
0.297404
0.203744
0.296905
0.129567
0.08131
0.00890335
0.158966
0.00872423
0.155525
0.136275
0.120651
-0.0124761
0.00627012
0.116144
0.125302
0.0544491
0.0782729
0.151882
0.152007
0.0656406
0.123843
0.166711
-0.0745033
-0.0641414
0.169597
0.210067
0.296624
0.203594
0.296558
0.154315
-0.0179031
-0.0628259
0.116094
0.126066
0.0743912
0.149117
0.0588232
0.150562
0.0617047
0.125511
-0.0978982
-0.0846641
-0.0576293
-0.0321234
-0.0987059
-0.0878969
-0.0707054
-0.0821302
-0.206026
-0.153144
-0.107526
-0.103704
-0.204845
-0.0855594
-0.227409
-0.192706
-0.0817493
-0.0992101
-0.208666
-0.151253
-0.0766164
-0.101663
-0.204435
-0.155781
-0.181146
-0.0974874
-0.0351367
-0.0933297
-0.0839173
-0.0899238
-0.0736224
-0.0949696
0.101382
0.0400472
-0.00583399
0.120565
-0.00109707
0.123289
0.0988874
0.144945
-0.124434
-0.137613
0.150557
0.175596
0.267109
0.148782
0.270803
0.096329
0.0434689
0.0192944
0.127034
0.0123013
0.124158
0.0986325
0.145744
-0.160679
-0.159491
0.12447
0.092352
-0.00870746
0.0333684
0.119472
0.116332
-0.0122469
0.0959561
0.115549
-0.177604
-0.167177
0.109726
0.14474
0.163047
0.26119
0.147854
0.251078
0.115923
-0.162972
-0.165583
0.121187
0.0897257
0.0305062
0.110775
-0.0168721
0.113164
-0.0147307
0.0869732
-0.121545
-0.1214
-0.102321
-0.0661332
-0.109539
-0.123455
-0.105107
-0.191634
-0.253322
-0.143556
-0.253014
-0.204865
-0.176452
-0.165358
-0.230786
-0.143588
-0.186033
-0.260881
-0.271942
-0.211198
-0.148461
-0.161736
-0.21232
-0.199769
-0.203417
-0.161963
-0.222612
-0.179201
-0.280472
-0.179054
-0.271363
-0.124641
-0.0683891
-0.127963
-0.112276
-0.126392
-0.107979
-0.133668
0.0745865
-0.179619
-0.183135
0.0816369
0.105313
0.145139
0.21418
0.101698
0.21668
0.07298
-0.187448
-0.184832
0.0686749
0.0522294
-0.16602
-0.185551
0.0520699
0.10905
0.133666
0.211892
0.101861
0.210231
0.0523194
-0.187434
-0.185433
0.0675549
-0.228399
-0.167258
-0.166255
-0.109773
-0.22619
-0.17025
-0.168104
-0.315065
-0.284175
-0.314887
-0.288274
-0.231418
-0.252387
-0.246866
-0.209511
-0.20883
-0.243321
-0.239231
-0.35705
-0.183918
-0.185747
-0.35393
-0.226669
-0.203556
-0.246287
-0.245011
-0.225298
-0.206432
-0.2417
-0.356731
-0.176321
-0.3537
-0.184163
-0.232451
-0.112312
-0.175091
-0.172519
-0.172907
-0.170433
-0.240781
0.0387417
-0.104922
-0.103821
0.0400998
0.109319
0.0900011
0.181182
0.106289
0.178787
0.041826
-0.1092
-0.103374
0.0478715
0.0434439
-0.120292
-0.118385
0.0404571
0.103769
0.0890945
0.180747
0.105199
0.179807
0.0440867
-0.111026
-0.116995
0.0474472
-0.274612
-0.199218
-0.189625
-0.143206
-0.270843
-0.202043
-0.192804
-0.326301
-0.310018
-0.318976
-0.305822
-0.345983
-0.351869
-0.272224
-0.250286
-0.24877
-0.345879
-0.34522
-0.328006
-0.229305
-0.222355
-0.337787
-0.339755
-0.242023
-0.329672
-0.268371
-0.332528
-0.24544
-0.336307
-0.323833
-0.216941
-0.31133
-0.221221
-0.277752
-0.145849
-0.206469
-0.194297
-0.205045
-0.194675
-0.277766
0.0216818
-0.144444
-0.150587
0.028226
0.0822877
-0.0935891
0.183279
0.0784376
0.179274
0.0201691
-0.156806
-0.151322
0.015579
0.00811146
-0.171088
-0.161989
-0.0146417
0.0681563
-0.179354
0.181989
0.0732655
0.176919
0.0091533
-0.157733
-0.161355
0.0142113
-0.430703
-0.394261
-0.421426
-0.396274
-0.384538
-0.421085
-0.319365
-0.28783
-0.285474
-0.426712
-0.387675
-0.446559
-0.25895
-0.256786
-0.452212
-0.380589
-0.28016
-0.416296
-0.316884
-0.375685
-0.283088
-0.423393
-0.445786
-0.252523
-0.449204
-0.257035
-0.0439683
-0.190984
-0.193347
-0.0410011
-0.000402332
0.106633
0.12726
0.128155
-0.00256415
-0.0461736
-0.196188
-0.194116
-0.0488394
-0.0590611
-0.187318
-0.185505
-0.0634974
-0.00752493
0.16447
0.126945
0.127197
-0.00450242
-0.055256
-0.194803
-0.187444
-0.0513991
-0.540778
-0.451532
-0.53149
-0.465305
-0.425561
-0.470686
-0.360396
-0.322852
-0.320525
-0.468032
-0.427181
-0.489413
-0.307197
-0.29998
-0.495963
-0.423721
-0.31661
-0.463917
-0.357488
-0.423721
-0.3178
-0.465456
-0.487019
-0.288056
-0.479001
-0.297304
-0.0697016
-0.221191
-0.235214
-0.0689378
0.00825689
0.22976
0.137693
0.13689
0.0116027
-0.0701929
-0.244769
-0.238551
-0.06952
-0.0738145
-0.270658
-0.262921
-0.0801607
0.0171841
0.211901
0.127645
0.131662
0.0119189
-0.0705015
-0.249657
-0.259809
-0.071507
-0.56424
-0.569366
-0.558892
-0.575384
-0.527406
-0.354027
-0.350604
-0.533737
-0.524484
-0.340716
-0.51845
-0.347422
-0.130213
-0.199509
-0.201436
-0.129302
-0.00721377
0.0686871
-0.238296
0.145206
0.140658
-0.00571053
-0.24595
-0.13115
-0.205733
-0.203398
-0.131887
-0.134508
-0.21485
-0.216013
-0.128542
-0.00239136
0.00609599
-0.238645
0.149478
0.155794
-0.00439228
-0.264657
-0.135262
-0.208751
-0.213419
-0.133179
-0.569297
-0.649323
-0.571887
-0.657011
-0.51957
-0.360004
-0.378542
-0.525303
-0.519748
-0.376106
-0.522317
-0.378619
-0.117705
-0.318546
-0.235014
-0.24219
-0.115821
-0.311409
0.0501677
0.326109
-0.268024
0.228913
0.227526
0.0488372
-0.203121
-0.121411
-0.261843
-0.331849
-0.250458
-0.127599
-0.307964
-0.138638
-0.362
-0.28952
-0.28659
-0.336809
-0.13813
0.046088
0.506193
-0.273317
0.226539
0.22824
0.0457999
-0.299704
-0.13645
-0.271657
-0.318642
-0.280193
-0.132967
-0.327443
-0.189283
-0.210118
-0.174501
-0.150487
0.0445627
-0.178553
-0.146014
1.58353
0.0698137
-0.137833
1.50382
0.108901
-0.110908
0.0837663
-0.181659
-0.158596
-0.10179
-0.139663
-0.0469311
1.21098
0.145973
0.13541
-0.0360599
-0.056882
0.115352
1.22421
-0.0990523
0.131563
-0.420619
-0.419175
-0.271192
-0.273889
-0.147554
0.468303
-0.0121639
-0.144677
-0.00624774
-0.148509
0.00396742
0.457745
-0.150354
-0.00086214
-0.102771
-0.11488
-0.0508979
-0.0302395
-0.00949829
0.182315
1.14661
-0.0445418
0.17858
0.00133695
0.155807
1.09501
0.018761
0.166122
-0.100055
-0.0929785
-0.0180682
-0.0259696
-0.358927
-0.328315
-0.250268
-0.273019
-2.24697
0.213459
0.0520152
-0.128972
0.57748
-2.68038
1.00977
1.41323
0.401013
0.0456114
1.25375
0.707973
1.16431
0.66349
0.614103
0.58838
0.836381
-2.14614
-2.64454
0.147232
-0.395619
-0.373921
-0.0895689
0.911177
0.673903
1.10938
0.612622
0.493033
0.495764
0.548638
-2.54724
0.973997
-2.41916
0.528659
-0.0879694
0.0831734
1.62198
1.35637
1.69242
1.69606
1.59915
1.57378
1.37394
1.52119
1.58259
1.36628
1.51142
1.6282
1.7354
1.71298
1.64495
1.64525
1.83569
1.5998
1.96042
1.86375
1.62937
1.85403
1.26497
1.47417
1.54113
1.6346
1.30564
1.59053
1.81181
1.83583
1.59364
1.91062
1.576
1.87898
1.61076
1.69054
1.75538
1.48921
1.55793
1.49625
1.67416
1.77087
1.60478
1.35807
1.53241
1.59541
1.54776
1.66685
1.83886
1.80054
1.71048
1.66953
1.7582
1.65225
1.78628
1.71426
1.56258
1.5141
1.86746
1.5149
1.78983
1.72548
-2.32683
-1.11113
-0.197369
-0.138467
-1.2373
-0.235797
-0.265852
-1.20704
-1.02896
-0.151097
-0.934323
-0.198653
-0.271207
-0.24053
1.91233
1.70957
1.35919
1.40355
1.91436
1.9156
1.43421
1.93559
1.92676
1.90916
1.7611
1.96496
1.73618
1.76747
1.6744
1.47232
1.42392
1.46645
1.76343
1.68002
1.9531
1.90121
1.3964
1.97348
1.46819
1.92573
1.4492
1.89839
1.78311
1.45265
1.69728
1.42406
1.78939
1.46375
1.68963
-1.153
0.672881
1.21068
0.900294
-0.528472
0.932379
0.57189
-2.5989
-2.61061
-2.08269
-3.34153
-1.80789
-3.2468
-2.14761
-3.55497
-0.980576
0.836793
0.770439
0.421716
0.873425
0.505907
-0.460088
1.9631
1.70486
1.38952
1.15583
1.33874
1.9405
1.32221
1.93617
1.75483
1.41719
1.38591
1.40001
1.73888
1.95321
1.98802
1.77516
1.99759
1.80268
1.92435
1.44931
1.40744
1.70958
1.41127
1.80704
1.72135
1.96744
1.10676
1.26539
1.04121
1.30594
1.23705
1.94098
1.84145
-0.321421
0.535645
1.80057
0.939442
0.896248
0.483157
1.1688
1.5975
1.64703
0.975663
0.87422
0.889987
0.951266
-0.262136
1.58513
1.77605
0.858636
0.405531
0.444337
0.814167
1.12956
1.58181
1.51712
0.904849
0.862546
0.931334
0.846071
1.24138
0.0777019
1.42308
0.699181
0.261325
0.288548
0.661098
1.55736
-0.159232
1.44345
0.740349
0.37749
0.782067
0.340264
1.20949
0.0829701
1.07939
0.593067
0.251
0.222294
0.632316
1.03614
1.15024
1.31584
0.793056
0.753563
0.768857
0.802678
0.0811853
0.87754
1.04112
0.566626
0.1931
0.209615
0.554703
0.959369
1.10347
1.05472
0.757364
0.739947
0.784313
0.72144
0.834115
0.0169551
0.553111
0.506553
0.185054
0.533754
0.170978
0.874959
0.841788
0.874273
0.640934
0.636762
0.651837
0.618974
0.826174
0.806177
0.77819
0.575219
0.625583
0.598926
0.612188
0.767559
0.632112
0.661467
0.481062
0.548878
0.559856
0.464916
-0.160532
-0.155776
-0.138906
-0.119338
-0.116096
-0.124474
-0.166419
-0.160792
-0.185688
-0.164845
-0.154647
-0.141884
-0.12838
-0.12312
-0.142921
-0.128513
-0.161794
-0.163875
-0.185723
-0.163179
-0.163987
-0.0667615
-0.0900121
-0.0656462
-0.0921748
-0.0891578
-0.0676134
-0.0641525
-0.0521844
-0.0548545
-0.0937909
-0.0622827
-0.062801
-0.0421342
-0.0151756
-0.0534392
-0.0192436
-0.0173293
-0.0388718
-0.0460893
-0.059638
-0.0849684
-0.091464
-0.0673795
-0.0641708
-0.0607011
-0.0918992
-0.0645231
-0.0898321
-0.0632733
-0.0631712
-0.112584
-0.109791
-0.132231
-0.1042
-0.128941
-0.10627
-0.103196
-0.152671
-0.146184
-0.103989
-0.107385
-0.110469
-0.133112
-0.133388
-0.10523
-0.133063
-0.148013
-0.139781
-0.148247
-0.163632
-0.136447
-0.144803
-0.160301
-0.131719
-0.114374
-0.123558
-0.110295
-0.132426
-0.110984
-0.127774
-0.152448
-0.145537
-0.16477
-0.14457
-0.149636
-0.159976
-0.0738693
-0.0673893
-0.0909259
-0.06599
-0.0720427
-0.0930665
-0.0710404
-0.0867801
-0.0842572
-0.0655041
-0.071811
-0.091869
-0.150805
-0.180819
-0.158148
-0.173649
-0.154887
-0.155659
-0.179363
-0.147943
-0.148016
-0.173862
-0.170326
-0.14685
-0.147084
-0.176656
-0.0617453
-0.0902137
-0.0922577
-0.06327
-0.0693648
-0.0820075
-0.0553434
-0.0885874
-0.0998105
-0.061747
-0.068112
-0.0776881
-0.0899732
-0.0891337
-0.063129
-0.0978688
-0.0639205
-0.0773927
-0.0615924
-0.0900067
-0.0707294
-0.0663072
-0.0703845
-0.120262
-0.103559
-0.112247
-0.108487
-0.123131
-0.145045
-0.153706
-0.139507
-0.159494
-0.140361
-0.156857
-0.137374
-0.159862
-0.141475
-0.136434
-0.164113
-0.126162
-0.103229
-0.125011
-0.107733
-0.127784
-0.106494
-0.138795
-0.128459
-0.122699
-0.0988197
-0.122953
-0.102092
-0.138488
-0.147116
-0.134894
-0.151141
-0.138309
-0.133809
-0.15082
-0.131857
-0.150488
-0.129381
-0.154513
-0.116823
-0.101474
-0.116684
-0.0993038
-0.117698
-0.114729
-0.103533
-0.121156
-0.0931343
-0.0973726
-0.117169
-0.133741
-0.157679
-0.133847
-0.156366
-0.122883
-0.11097
-0.108918
-0.119121
-0.123461
-0.122793
-0.105338
-0.105306
-0.124724
-0.108889
-0.121006
-0.132961
-0.16178
-0.137962
-0.15942
-0.138038
-0.136873
-0.133223
-0.128613
-0.101206
-0.104198
-0.118164
-0.130797
-0.13419
-0.130725
-0.158489
-0.135139
-0.158776
-0.128537
-0.137781
-0.158016
-0.0578163
-0.0393099
-0.0720713
-0.0464377
-0.0533587
-0.0758545
-0.059602
-0.0527838
-0.074951
-0.0554534
-0.0416618
-0.0788105
-0.11068
-0.0943481
-0.0938063
-0.112088
-0.110658
-0.0961367
-0.115481
-0.132709
-0.147653
-0.14984
-0.133029
-0.128821
-0.145496
-0.112996
-0.0985888
-0.0954927
-0.113211
-0.0990917
-0.117803
-0.127993
-0.120161
-0.141151
-0.146419
-0.125082
-0.123424
-0.143577
-0.0789159
-0.0946417
-0.116237
-0.115864
-0.122215
-0.147739
-0.123069
-0.11427
-0.0927151
-0.0821925
-0.112325
-0.0966116
-0.159179
-0.130885
-0.134772
-0.0825071
-0.0865297
-0.114847
-0.112773
-0.09434
-0.0952294
-0.114676
-0.115192
-0.123031
-0.147224
-0.121602
-0.0379134
-0.0423515
-0.0684503
-0.0894141
-0.0458767
-0.0322408
-0.0599152
-0.0185529
0.000311442
-0.00545885
-0.0104271
-0.00221483
-0.0146734
-0.0138694
-0.0461482
-0.0429443
-0.0705933
-0.0801509
-0.0415958
-0.0702175
-0.0485587
-0.0344329
-0.0893927
-0.0335297
-0.0348496
-0.0628209
-0.0280803
-0.0887133
-0.113
-0.078857
-0.111807
-0.118277
-0.096286
-0.0942676
-0.118287
-0.114595
-0.0938029
-0.154246
-0.130797
-0.133497
-0.0954292
-0.118096
-0.0820702
-0.113872
-0.0874859
-0.0903879
-0.115789
-0.116209
-0.0884962
-0.121107
-0.124266
-0.14399
-0.149553
-0.120949
-0.15024
-0.123732
-0.126764
-0.106174
-0.1113
-0.0823045
-0.0830765
-0.08554
-0.105209
-0.105861
-0.126609
-0.140648
-0.121394
-0.139704
-0.124747
-0.122652
-0.107219
-0.0861798
-0.0825743
-0.106541
-0.0867975
-0.108613
-0.105249
-0.0903545
-0.0894564
-0.108761
-0.107246
-0.115434
-0.12694
-0.139912
-0.127825
-0.111389
-0.0806105
-0.0924238
-0.109888
-0.120312
-0.127666
-0.085434
-0.113097
-0.114062
-0.0825653
-0.114873
-0.107551
-0.127681
-0.138432
-0.142107
-0.128176
-0.123013
-0.037972
-0.0389854
-0.0796618
-0.0673834
-0.0414737
-0.0368018
-0.0661889
-0.0149341
-0.0693102
-0.0272162
-0.0253684
-0.0215926
-0.114565
-0.0879919
-0.0859141
-0.107898
-0.0880033
-0.11588
-0.107378
-0.113634
-0.0772305
-0.0856794
-0.105609
-0.0882562
-0.114241
-0.140161
-0.121202
-0.134917
-0.133403
-0.133772
-0.11771
-0.130191
-0.119362
-0.122494
-0.133071
-0.0793476
-0.112838
-0.105355
-0.111526
-0.0831759
-0.0831018
-0.101737
-0.0861087
-0.10463
-0.107628
-0.137671
-0.12254
-0.140294
-0.132457
-0.121774
-0.121362
-0.133826
-0.107089
-0.124343
-0.108895
-0.129448
-0.110493
-0.105098
-0.130542
-0.0976254
-0.0795626
-0.0802857
-0.100491
-0.0789238
-0.115157
-0.143672
-0.111906
-0.134717
-0.102982
-0.074254
-0.0817034
-0.0754994
-0.104769
-0.11782
-0.109858
-0.131333
-0.134934
-0.108313
-0.120057
-0.133003
-0.103496
-0.112587
-0.0828147
-0.0857983
-0.105061
-0.0829317
-0.098775
-0.117747
-0.133298
-0.113452
-0.128039
-0.105627
-0.0776309
-0.0823527
-0.0803973
-0.105737
-0.0999382
-0.0951403
-0.103006
-0.0719487
-0.0960836
-0.0673548
-0.116773
-0.13466
-0.112675
-0.135085
-0.0972382
-0.064764
-0.0727919
-0.10312
-0.108467
-0.086597
-0.0866624
-0.113068
-0.0745835
-0.119736
-0.133622
-0.115137
-0.126591
-0.12033
-0.113414
-0.132709
-0.117501
-0.134663
-0.11361
-0.136953
-0.102215
-0.0728476
-0.081964
-0.0985439
-0.104633
-0.0784529
-0.0956541
-0.107337
-0.0709362
-0.0851581
-0.0737146
-0.104125
-0.495695
-0.53369
-0.501265
-0.540527
-0.496195
-0.501439
-0.53835
-0.489111
-0.525178
-0.496731
-0.529976
-0.487634
-0.497953
-0.531307
-0.279719
-0.277157
-0.292703
-0.244619
-0.2458
-0.242504
-0.255278
-0.246699
-0.258257
-0.241886
-0.263248
-0.24317
-0.24583
-0.261056
-0.232344
-0.227394
-0.210622
-0.206652
-0.23347
-0.208706
-0.227945
-0.251564
-0.250118
-0.270723
-0.248914
-0.260127
-0.252465
-0.201789
-0.201717
-0.230482
-0.240827
-0.230202
-0.226927
-0.251906
-0.2307
-0.222832
-0.224473
-0.209386
-0.201729
-0.208366
-0.211927
-0.235142
-0.254973
-0.25905
-0.237299
-0.231591
-0.241843
-0.221108
-0.204073
-0.200594
-0.201818
-0.226779
-0.227668
-0.222916
-0.315884
-0.304219
-0.290363
-0.285104
-0.302541
-0.28539
-0.289414
-0.2825
-0.311579
-0.278405
-0.285604
-0.282465
-0.26497
-0.25975
-0.289143
-0.26458
-0.311155
-0.331111
-0.305281
-0.334055
-0.30846
-0.304753
-0.328768
-0.286527
-0.287114
-0.281717
-0.271832
-0.259776
-0.265925
-0.285224
-0.29656
-0.297593
-0.335417
-0.300708
-0.292867
-0.333188
-0.209948
-0.212067
-0.23309
-0.251994
-0.207646
-0.239214
-0.21327
-0.211805
-0.243764
-0.219398
-0.240235
-0.215467
-0.242872
-0.213273
-0.288776
-0.294482
-0.280791
-0.265182
-0.25315
-0.287752
-0.263119
-0.293361
-0.301673
-0.320863
-0.299559
-0.299244
-0.277816
-0.272036
-0.255254
-0.276813
-0.267279
-0.291103
-0.296643
-0.325399
-0.29437
-0.297808
-0.258733
-0.25931
-0.196964
-0.190224
-0.224691
-0.173109
-0.176993
-0.173343
-0.177132
-0.199197
-0.172083
-0.197211
-0.192414
-0.200613
-0.208028
-0.172158
-0.175682
-0.214973
-0.245646
-0.21
-0.240085
-0.228744
-0.226756
-0.213256
-0.238887
-0.227576
-0.25831
-0.239716
-0.235941
-0.217019
-0.235629
-0.226968
-0.270382
-0.223572
-0.227284
-0.242074
-0.223726
-0.230275
-0.243985
-0.223439
-0.231824
-0.201818
-0.201248
-0.194572
-0.213929
-0.209058
-0.192592
-0.192713
-0.202473
-0.194933
-0.208771
-0.19937
-0.208916
-0.188766
-0.191255
-0.222455
-0.214735
-0.247147
-0.225417
-0.226802
-0.238538
-0.214661
-0.226577
-0.234704
-0.211983
-0.230378
-0.233722
-0.383014
-0.389533
-0.360252
-0.36151
-0.348385
-0.394307
-0.376763
-0.360146
-0.36156
-0.355202
-0.397154
-0.391187
-0.382471
-0.379499
-0.409402
-0.410341
-0.379345
-0.393703
-0.381143
-0.423825
-0.379604
-0.415474
-0.376573
-0.384928
-0.41316
-0.407146
-0.507381
-0.505933
-0.450218
-0.416157
-0.41516
-0.455114
-0.412539
-0.419969
-0.462195
-0.419355
-0.457986
-0.416501
-0.418549
-0.405793
-0.388647
-0.382537
-0.401806
-0.387129
-0.385769
-0.408809
-0.391456
-0.408653
-0.388729
-0.388916
-0.406819
-0.393893
-0.380286
-0.400945
-0.35624
-0.368786
-0.363563
-0.373997
-0.357448
-0.385741
-0.373491
-0.374718
-0.359785
-0.355386
-0.380689
-0.381448
-0.385656
-0.25542
-0.245979
-0.251543
-0.225605
-0.241199
-0.209797
-0.234474
-0.235042
-0.254615
-0.24011
-0.23278
-0.235604
-0.226891
-0.207125
-0.242902
-0.219534
-0.23595
-0.353659
-0.360227
-0.364034
-0.352569
-0.370584
-0.383526
-0.388368
-0.371281
-0.40668
-0.377016
-0.361769
-0.339835
-0.34905
-0.355911
-0.347523
-0.354869
-0.363862
-0.360088
-0.379924
-0.352012
-0.359764
-0.350298
-0.366533
-0.355506
-0.382024
-0.408374
-0.408417
-0.376364
-0.396815
-0.399655
-0.481653
-0.483791
-0.447464
-0.411552
-0.420073
-0.445951
-0.406606
-0.400152
-0.444805
-0.411627
-0.445463
-0.402838
-0.423798
-0.404218
-0.384218
-0.388928
-0.372271
-0.372909
-0.379056
-0.384833
-0.371192
-0.353942
-0.357864
-0.369697
-0.351844
-0.37114
-0.370718
-0.370669
-0.3822
-0.357244
-0.352993
-0.35319
-0.367782
-0.370531
-0.392283
-0.403484
-0.390523
-0.392644
-0.38115
-0.385376
-0.340503
-0.350559
-0.220342
-0.224232
-0.202957
-0.224312
-0.206113
-0.227182
-0.252351
-0.218543
-0.21618
-0.198918
-0.222406
-0.218921
-0.235097
-0.239671
-0.205805
-0.210018
-0.2148
-0.217688
-0.212925
-0.219029
-0.215421
-0.219624
-0.216402
-0.236288
-0.214701
-0.215399
-0.201225
-0.239645
-0.237005
-0.228315
-0.229162
-0.225646
-0.230074
-0.218605
-0.211527
-0.185168
-0.232704
-0.252347
-0.25039
-0.252821
-0.225918
-0.229744
-0.232562
-0.228201
-0.225418
-0.222062
-0.230571
-0.227916
-0.227318
-0.270489
-0.250113
-0.237812
-0.236811
-0.201906
-0.213816
-0.227542
-0.201244
-0.23272
-0.206084
-0.219101
-0.195078
-0.219392
-0.199282
-0.214057
-0.20664
-0.20013
-0.161767
-0.218442
-0.189089
-0.179402
-0.196256
-0.187712
-0.185268
-0.196853
-0.205436
-0.227235
-0.211329
-0.188566
-0.199545
-0.216265
-0.200158
-0.21114
-0.187786
-0.221736
-0.20114
-0.190386
-0.212551
-0.233127
-0.232623
-0.226919
-0.213418
-0.235921
-0.236967
-0.224297
-0.229897
-0.224547
-0.20858
-0.233088
-0.235086
-0.225531
-0.226105
-0.23735
-0.232028
-0.240124
-0.224449
-0.226198
-0.231956
-0.226409
-0.203445
-0.222262
-0.216243
-0.212887
-0.215616
-0.193431
-0.214619
-0.217062
-0.223746
-0.223526
-0.226198
-0.221565
-0.212996
-0.212197
-0.230242
-0.242524
-0.215664
-0.23474
-0.22089
-0.232819
-0.223488
-0.225651
-0.226746
-0.185822
-0.22416
-0.226525
-0.227953
-0.222053
-0.223635
-0.227026
-0.220186
-0.22404
-0.207273
-0.230589
-0.199502
-0.231684
-0.22482
-0.221746
-0.21124
-0.211095
-0.23061
-0.210862
-0.218191
-0.225146
-0.219254
-0.234052
-0.216472
-0.231457
-0.217177
-0.217119
-0.474244
-0.520143
-0.470765
-0.526884
-0.475097
-0.470146
-0.524434
-0.468306
-0.498247
-0.465029
-0.50064
-0.46779
-0.464625
-0.502409
-0.240565
-0.176599
-0.195124
-0.190562
-0.16742
-0.19321
-0.202305
-0.205373
-0.206856
-0.186774
-0.19769
-0.18471
-0.199867
-0.17661
-0.162429
-0.176026
-0.177241
-0.181769
-0.172016
-0.167201
-0.189202
-0.171089
-0.197347
-0.170432
-0.181618
-0.18742
-0.172424
-0.193564
-0.166012
-0.186335
-0.184627
-0.193314
-0.197117
-0.191765
-0.24102
-0.205963
-0.217183
-0.234237
-0.229654
-0.225325
-0.217149
-0.204509
-0.221799
-0.223282
-0.218927
-0.244045
-0.230929
-0.26396
-0.220068
-0.226618
-0.209099
-0.213337
-0.213904
-0.22146
-0.218437
-0.220685
-0.25106
-0.21574
-0.230774
-0.231091
-0.233411
-0.233984
-0.221095
-0.180797
-0.184757
-0.198412
-0.223255
-0.202051
-0.244521
-0.205157
-0.235144
-0.222464
-0.230965
-0.238295
-0.216275
-0.213801
-0.221465
-0.227456
-0.214419
-0.204317
-0.198173
-0.226032
-0.209537
-0.206546
-0.237925
-0.222592
-0.236904
-0.229812
-0.232414
-0.231824
-0.246084
-0.258772
-0.267165
-0.24003
-0.265855
-0.233261
-0.239974
-0.286778
-0.312029
-0.295548
-0.24312
-0.237098
-0.271742
-0.239816
-0.267917
-0.241199
-0.276183
-0.315674
-0.289913
-0.204851
-0.227779
-0.209215
-0.227214
-0.207228
-0.206943
-0.235084
-0.18752
-0.170729
-0.175219
-0.17803
-0.189207
-0.193612
-0.189484
-0.206146
-0.227189
-0.204796
-0.215593
-0.207404
-0.203611
-0.234345
-0.193272
-0.227187
-0.207245
-0.285739
-0.306731
-0.282793
-0.315506
-0.284288
-0.283851
-0.311791
-0.28862
-0.28873
-0.313903
-0.318559
-0.289291
-0.288533
-0.313527
-0.213646
-0.230367
-0.204606
-0.229575
-0.228624
-0.206423
-0.210265
-0.207634
-0.222454
-0.209833
-0.237645
-0.198401
-0.167752
-0.173558
-0.173173
-0.19426
-0.208442
-0.223216
-0.236754
-0.212179
-0.285519
-0.318278
-0.290761
-0.317538
-0.283692
-0.292019
-0.319761
-0.291523
-0.28776
-0.315604
-0.315518
-0.289234
-0.289979
-0.317034
-0.253812
-0.246629
-0.271902
-0.2346
-0.272857
-0.284158
-0.271454
-0.252425
-0.263673
-0.23395
-0.272325
-0.275923
-0.27377
-0.190084
-0.201337
-0.232474
-0.237763
-0.226891
-0.238671
-0.18835
-0.208001
-0.217273
-0.204152
-0.22318
-0.230266
-0.176718
-0.181114
-0.182936
-0.18209
-0.176399
-0.183418
-0.181674
-0.1704
-0.173749
-0.158691
-0.185733
-0.164438
-0.176456
-0.168358
-0.168671
-0.170852
-0.158406
-0.152258
-0.167364
-0.159482
-0.162793
-0.177098
-0.174875
-0.173049
-0.182529
-0.178977
-0.191095
-0.182325
-0.196355
-0.17478
-0.172245
-0.155547
-0.176572
-0.168552
-0.173472
-0.158615
-0.170554
-0.178073
-0.174618
-0.169884
-0.182102
-0.183416
-0.185022
-0.164401
-0.172156
-0.16294
-0.176372
-0.19144
-0.20258
-0.194896
-0.20004
-0.190151
-0.21184
-0.192112
-0.195899
-0.214661
-0.222053
-0.227992
-0.232481
-0.21994
-0.222628
-0.219106
-0.203728
-0.184277
-0.195388
-0.192935
-0.20545
-0.206948
-0.193324
-0.20095
-0.192569
-0.204266
-0.224772
-0.229796
-0.21684
-0.213513
-0.25541
-0.214924
-0.212953
-0.222781
-0.207663
-0.191882
-0.201349
-0.19876
-0.199036
-0.331953
-0.329357
-0.377373
-0.39445
-0.384246
-0.379968
-0.382742
-0.375054
-0.399076
-0.39872
-0.395312
-0.382589
-0.374127
-0.366123
-0.339643
-0.34014
-0.358761
-0.340527
-0.365
-0.365807
-0.346237
-0.339422
-0.338909
-0.364816
-0.378215
-0.409489
-0.385853
-0.37706
-0.378607
-0.400412
-0.39956
-0.372224
-0.396807
-0.371938
-0.377949
-0.451517
-0.449347
-0.445296
-0.428745
-0.410438
-0.446705
-0.406243
-0.424093
-0.450668
-0.42971
-0.447953
-0.407418
-0.34526
-0.350536
-0.384473
-0.399637
-0.384493
-0.396705
-0.35402
-0.344446
-0.33033
-0.336767
-0.354629
-0.375906
-0.375557
-0.399024
-0.409411
-0.378437
-0.394058
-0.372813
-0.357315
-0.327754
-0.335803
-0.332843
-0.357806
-0.384384
-0.400174
-0.3761
-0.400689
-0.377173
-0.384285
-0.394541
-0.377339
-0.395943
-0.371604
-0.219699
-0.239646
-0.21246
-0.231726
-0.209898
-0.201598
-0.217302
-0.214724
-0.222347
-0.215306
-0.198928
-0.185873
-0.223076
-0.215678
-0.215005
-0.212591
-0.212046
-0.251527
-0.201534
-0.219035
-0.208016
-0.201474
-0.218974
-0.223141
-0.207139
-0.2163
-0.17817
-0.226932
-0.231275
-0.218182
-0.233434
-0.254429
-0.239928
-0.289514
-0.245417
-0.253563
-0.236891
-0.255122
-0.247198
-0.224407
-0.227089
-0.230302
-0.233981
-0.2283
-0.223086
-0.226452
-0.217615
-0.212457
-0.235328
-0.219753
-0.214581
-0.217415
-0.222807
-0.215985
-0.224949
-0.203745
-0.229516
-0.230071
-0.209731
-0.220824
-0.217562
-0.174576
-0.212255
-0.231258
-0.223657
-0.198251
-0.209432
-0.220246
-0.221606
-0.220847
-0.216843
-0.230384
-0.216445
-0.217215
-0.224087
-0.229884
-0.231786
-0.243241
-0.263573
-0.261722
-0.258716
-0.218705
-0.238616
-0.249889
-0.232694
-0.271228
-0.25755
-0.355491
-0.359044
-0.370261
-0.370553
-0.392779
-0.391351
-0.387307
-0.371664
-0.368835
-0.343787
-0.336286
-0.317991
-0.336088
-0.345231
-0.371167
-0.402833
-0.389422
-0.374425
-0.380855
-0.372057
-0.373863
-0.352161
-0.342756
-0.320679
-0.34277
-0.359673
-0.362948
-0.366109
-0.458852
-0.441754
-0.445086
-0.429816
-0.410742
-0.444955
-0.410346
-0.406115
-0.432955
-0.429569
-0.441643
-0.410063
-0.361056
-0.360358
-0.360414
-0.345606
-0.349388
-0.345014
-0.354547
-0.375122
-0.375026
-0.399775
-0.409689
-0.375621
-0.373147
-0.409415
-0.375298
-0.405803
-0.375801
-0.399345
-0.375626
-0.375188
-0.408928
-0.360546
-0.336935
-0.344257
-0.342634
-0.360775
-0.361649
-0.368939
-0.235934
-0.234283
-0.217085
-0.224173
-0.230462
-0.212157
-0.23375
-0.228296
-0.224656
-0.238328
-0.227348
-0.210508
-0.234409
-0.229865
-0.208346
-0.234068
-0.236998
-0.230412
-0.24068
-0.252219
-0.244002
-0.239222
-0.227561
-0.227202
-0.250417
-0.28066
-0.23819
-0.254241
-0.234205
-0.239086
-0.253893
-0.23932
-0.228076
-0.227775
-0.236584
-0.230201
-0.225312
-0.24154
-0.249927
-0.23945
-0.237938
-0.26055
-0.239024
-0.238612
-0.26116
-0.216326
-0.223963
-0.225444
-0.218564
-0.219473
-0.2151
-0.220579
-0.213992
-0.237475
-0.213022
-0.225271
-0.258249
-0.222989
-0.249401
-0.214375
-0.240472
-0.237046
-0.227045
-0.252555
-0.22343
-0.251192
-0.226404
-0.244945
-0.236812
-0.218084
-0.235625
-0.242718
-0.236934
-0.251378
-0.205625
-0.228925
-0.231002
-0.22338
-0.225262
-0.243136
-0.238917
-0.218723
-0.242056
-0.216363
-0.234419
-0.262604
-0.230638
-0.262919
-0.2204
-0.237907
-0.25964
-0.250217
-0.282338
-0.242151
-0.270776
-0.27706
-0.253373
-0.263147
-0.222884
-0.241696
-0.246205
-0.245556
-0.266802
-0.213767
-0.246695
-0.246608
-0.249502
-0.244169
-0.254115
-0.245196
-0.458546
-0.479258
-0.46219
-0.490124
-0.458571
-0.461546
-0.489715
-0.454491
-0.478392
-0.466147
-0.484823
-0.454233
-0.460244
-0.486529
-0.196068
-0.164843
-0.175328
-0.184482
-0.174757
-0.183834
-0.186499
-0.184551
-0.173584
-0.195161
-0.180056
-0.192284
-0.259721
-0.191317
-0.223631
-0.201233
-0.170025
-0.173921
-0.185255
-0.186371
-0.17582
-0.174244
-0.178089
-0.181749
-0.181734
-0.179853
-0.203514
-0.198669
-0.230899
-0.208282
-0.203399
-0.197098
-0.21826
-0.182015
-0.192084
-0.165265
-0.171511
-0.17276
-0.162041
-0.172509
-0.15579
-0.173591
-0.167533
-0.192489
-0.169465
-0.161687
-0.161629
-0.149639
-0.164563
-0.166068
-0.196512
-0.179608
-0.173455
-0.184032
-0.177878
-0.158833
-0.183542
-0.165757
-0.16764
-0.168613
-0.159386
-0.164642
-0.164861
-0.173284
-0.177057
-0.170744
-0.170134
-0.157807
-0.163758
-0.147814
-0.147682
-0.157092
-0.143773
-0.157115
-0.167084
-0.1635
-0.182265
-0.170988
-0.165793
-0.1603
-0.146991
-0.148606
-0.157927
-0.163529
-0.158126
-0.163612
-0.168729
-0.173171
-0.163919
-0.174958
-0.162538
-0.172174
-0.206421
-0.188625
-0.17842
-0.188487
-0.180503
-0.171472
-0.190437
-0.185127
-0.237002
-0.191746
-0.237275
-0.185151
-0.218545
-0.201123
-0.218164
-0.199211
-0.198705
-0.239938
-0.208009
-0.186368
-0.187027
-0.183623
-0.182465
-0.19385
-0.189866
-0.177202
-0.187988
-0.185606
-0.198463
-0.220327
-0.215397
-0.19718
-0.198695
-0.226104
-0.229055
-0.228796
-0.255683
-0.21467
-0.194569
-0.193716
-0.155284
-0.176548
-0.146799
-0.177061
-0.139407
-0.153548
-0.13751
-0.220403
-0.189181
-0.192136
-0.176803
-0.148537
-0.151329
-0.178348
-0.140326
-0.16721
-0.261681
-0.23472
-0.240011
-0.263969
-0.237295
-0.261111
-0.269697
-0.282107
-0.28972
-0.283534
-0.261305
-0.296571
-0.256714
-0.240668
-0.235921
-0.241062
-0.236477
-0.252448
-0.263579
-0.280921
-0.26108
-0.290671
-0.282594
-0.261537
-0.297234
-0.185577
-0.226031
-0.202395
-0.204801
-0.180829
-0.153569
-0.176606
-0.153979
-0.18154
-0.153855
-0.176985
-0.150835
-0.144036
-0.183929
-0.225628
-0.203528
-0.183177
-0.203898
-0.182685
-0.173764
-0.152798
-0.153717
-0.150464
-0.176032
-0.165638
-0.26071
-0.24249
-0.242511
-0.265156
-0.272955
-0.242226
-0.259553
-0.280401
-0.287288
-0.269219
-0.272266
-0.279512
-0.288153
-0.261753
-0.242291
-0.25353
-0.243701
-0.260333
-0.272827
-0.242381
-0.282715
-0.26205
-0.289488
-0.279117
-0.284019
-0.287911
-0.230702
-0.237704
-0.184771
-0.169696
-0.179955
-0.177214
-0.199005
-0.227215
-0.201823
-0.218325
-0.18358
-0.168862
-0.178266
-0.18717
-0.156787
-0.140278
-0.14442
-0.158777
-0.173608
-0.173479
-0.176937
-0.161815
-0.168572
-0.167403
-0.162219
-0.165185
-0.189805
-0.161988
-0.171842
-0.161005
-0.167161
-0.164844
-0.159907
-0.157581
-0.153481
-0.140851
-0.154046
-0.147728
-0.164647
-0.149367
-0.158632
-0.139532
-0.143255
-0.157184
-0.157298
-0.167486
-0.164598
-0.160751
-0.199036
-0.220478
-0.19672
-0.221197
-0.196134
-0.201659
-0.214361
-0.183493
-0.1811
-0.164715
-0.169352
-0.187151
-0.17205
-0.182612
-0.190373
-0.171262
-0.218459
-0.179671
-0.190068
-0.198946
-0.17927
-0.375707
-0.362485
-0.376826
-0.370193
-0.394121
-0.400198
-0.392913
-0.375727
-0.370154
-0.349108
-0.334435
-0.328425
-0.350674
-0.347912
-0.32234
-0.325248
-0.359718
-0.376995
-0.376406
-0.375987
-0.393799
-0.399104
-0.370882
-0.390998
-0.370095
-0.366084
-0.461707
-0.461063
-0.42926
-0.414182
-0.429305
-0.430018
-0.415466
-0.429888
-0.353229
-0.360143
-0.350986
-0.32351
-0.316117
-0.341741
-0.352332
-0.354205
-0.397413
-0.358049
-0.344188
-0.353859
-0.320498
-0.317529
-0.357496
-0.355445
-0.366068
-0.40118
-0.361861
-0.362536
-0.349859
-0.3425
-0.225008
-0.245948
-0.235257
-0.22382
-0.238855
-0.231418
-0.218877
-0.222661
-0.225418
-0.218484
-0.233249
-0.217632
-0.229539
-0.229014
-0.216589
-0.23817
-0.229782
-0.218667
-0.219291
-0.221759
-0.263778
-0.221957
-0.220421
-0.242749
-0.282405
-0.240469
-0.270204
-0.222401
-0.219123
-0.219982
-0.238265
-0.219401
-0.223507
-0.221478
-0.235901
-0.232188
-0.213385
-0.225782
-0.24172
-0.217679
-0.220257
-0.21802
-0.227024
-0.226741
-0.224656
-0.225666
-0.244699
-0.249549
-0.246612
-0.222467
-0.230485
-0.229047
-0.231042
-0.244716
-0.22773
-0.222034
-0.219068
-0.234783
-0.224454
-0.226732
-0.228673
-0.225858
-0.22448
-0.233561
-0.221052
-0.225407
-0.243618
-0.228445
-0.22538
-0.234127
-0.226717
-0.236167
-0.242744
-0.223328
-0.234357
-0.215151
-0.222352
-0.213759
-0.240935
-0.22245
-0.23402
-0.242134
-0.227704
-0.227158
-0.265266
-0.287512
-0.280753
-0.258484
-0.260043
-0.261374
-0.238099
-0.231679
-0.26604
-0.215629
-0.223837
-0.33482
-0.338145
-0.390156
-0.338803
-0.332807
-0.313968
-0.305856
-0.319916
-0.296386
-0.319367
-0.302154
-0.316601
-0.313306
-0.287102
-0.2993
-0.318308
-0.337969
-0.386466
-0.348636
-0.342794
-0.363981
-0.31353
-0.298296
-0.303904
-0.305372
-0.467941
-0.458121
-0.429353
-0.401139
-0.430222
-0.454067
-0.399844
-0.431168
-0.237293
-0.211536
-0.28441
-0.277598
-0.247515
-0.298961
-0.209626
-0.235495
-0.255224
-0.334167
-0.340247
-0.314863
-0.302574
-0.336833
-0.329585
-0.3039
-0.322125
-0.295679
-0.327409
-0.297614
-0.319518
-0.33639
-0.350094
-0.3852
-0.3473
-0.340256
-0.335947
-0.348961
-0.383481
-0.346474
-0.364608
-0.337268
-0.298199
-0.3006
-0.306769
-0.334945
-0.337912
-0.2172
-0.199249
-0.238152
-0.199835
-0.249425
-0.273349
-0.298853
-0.247319
-0.241153
-0.235492
-0.253039
-0.243621
-0.245805
-0.223294
-0.238186
-0.266003
-0.229953
-0.247386
-0.233519
-0.205999
-0.236863
-0.267823
-0.217391
-0.229458
-0.218756
-0.210834
-0.200559
-0.24168
-0.219479
-0.213559
-0.235124
-0.242319
-0.224781
-0.228468
-0.254971
-0.222524
-0.229675
-0.247787
-0.271519
-0.257804
-0.25551
-0.273449
-0.245656
-0.245786
-0.232251
-0.222402
-0.213821
-0.228928
-0.238311
-0.219012
-0.229458
-0.224684
-0.23507
-0.233694
-0.218644
-0.228593
-0.220464
-0.222658
-0.221882
-0.212428
-0.20485
-0.216585
-0.242524
-0.211882
-0.215566
-0.225395
-0.220446
-0.202203
-0.195097
-0.253794
-0.220261
-0.216251
-0.235404
-0.219468
-0.218502
-0.197191
-0.227534
-0.268691
-0.216046
-0.247652
-0.269063
-0.246576
-0.254917
-0.233397
-0.244443
-0.253345
-0.236536
-0.2257
-0.190385
-0.224293
-0.255465
-0.222188
-0.233305
-0.43641
-0.457476
-0.444209
-0.469393
-0.436819
-0.437397
-0.46996
-0.409009
-0.404705
-0.384342
-0.385391
-0.387044
-0.406084
-0.407343
-0.413094
-0.391382
-0.414546
-0.387382
-0.415852
-0.389742
-0.411941
-0.434155
-0.452718
-0.423525
-0.463171
-0.431919
-0.424562
-0.466235
-0.405023
-0.403762
-0.382544
-0.377051
-0.405186
-0.379327
-0.404198
-0.40686
-0.37524
-0.411215
-0.371238
-0.406485
-0.377015
-0.410706
-0.175872
-0.179064
-0.174457
-0.166063
-0.182424
-0.168608
-0.173018
-0.189539
-0.209679
-0.207385
-0.204528
-0.1974
-0.194492
-0.198927
-0.179928
-0.169917
-0.182726
-0.189037
-0.189463
-0.172479
-0.181744
-0.147988
-0.140463
-0.133145
-0.158296
-0.137896
-0.15379
-0.145485
-0.156514
-0.168819
-0.180167
-0.159021
-0.162881
-0.158869
-0.161881
-0.157257
-0.160788
-0.162219
-0.174321
-0.160397
-0.153782
-0.159902
-0.152691
-0.159212
-0.168727
-0.156986
-0.165188
-0.159523
-0.14947
-0.141301
-0.130122
-0.129983
-0.155559
-0.125753
-0.149734
-0.14603
-0.152118
-0.158419
-0.16703
-0.158067
-0.157565
-0.160559
-0.153295
-0.194307
-0.212808
-0.197478
-0.208595
-0.196578
-0.193763
-0.20755
-0.181144
-0.179535
-0.181763
-0.169559
-0.18408
-0.183715
-0.171919
-0.182455
-0.169861
-0.181988
-0.1617
-0.180081
-0.180366
-0.169333
-0.179884
-0.167347
-0.190502
-0.207903
-0.190621
-0.18779
-0.167957
-0.183447
-0.19093
-0.179789
-0.183184
-0.206441
-0.203918
-0.176657
-0.17894
-0.204632
-0.183723
-0.214638
-0.1883
-0.207682
-0.186085
-0.186453
-0.206611
-0.179181
-0.15957
-0.132737
-0.156954
-0.160542
-0.115853
-0.135742
-0.13244
-0.145507
-0.163334
-0.123773
-0.155705
-0.169016
-0.132377
-0.160721
-0.151161
-0.154889
-0.148637
-0.166931
-0.161353
-0.246739
-0.229653
-0.229141
-0.240957
-0.248322
-0.273731
-0.255583
-0.277669
-0.253102
-0.250917
-0.276782
-0.25252
-0.274837
-0.250607
-0.279108
-0.246545
-0.22912
-0.229685
-0.245485
-0.252775
-0.28517
-0.256356
-0.280527
-0.17992
-0.17224
-0.159756
-0.164527
-0.151587
-0.137494
-0.160224
-0.155474
-0.113956
-0.135945
-0.138288
-0.171202
-0.137486
-0.155058
-0.183679
-0.176785
-0.163987
-0.148068
-0.148243
-0.239988
-0.209209
-0.230871
-0.231668
-0.239285
-0.258591
-0.293458
-0.248942
-0.294188
-0.25641
-0.280488
-0.258315
-0.279014
-0.260283
-0.255111
-0.279693
-0.23999
-0.221661
-0.225592
-0.24758
-0.229176
-0.258515
-0.289511
-0.256425
-0.293232
-0.202524
-0.188302
-0.187864
-0.185267
-0.199032
-0.170715
-0.177054
-0.178885
-0.181201
-0.171439
-0.179285
-0.221088
-0.224372
-0.218354
-0.230157
-0.22881
-0.217139
-0.212157
-0.238239
-0.211362
-0.345937
-0.339165
-0.37918
-0.332454
-0.344336
-0.286432
-0.283185
-0.321186
-0.341919
-0.306204
-0.310398
-0.329528
-0.306953
-0.329637
-0.334854
-0.303082
-0.283326
-0.35008
-0.374932
-0.360017
-0.355385
-0.339494
-0.233009
-0.218382
-0.231978
-0.273431
-0.250208
-0.245639
-0.21666
-0.254178
-0.232656
-0.443477
-0.443435
-0.410686
-0.38734
-0.415742
-0.428403
-0.388955
-0.424783
-0.235776
-0.231143
-0.239698
-0.214413
-0.214915
-0.231438
-0.216123
-0.214502
-0.26262
-0.297943
-0.286756
-0.334257
-0.304219
-0.310035
-0.327865
-0.306437
-0.328687
-0.333356
-0.334566
-0.357319
-0.367395
-0.359867
-0.328105
-0.302411
-0.293965
-0.334092
-0.361991
-0.368712
-0.361517
-0.336043
-0.245066
-0.230414
-0.236775
-0.269479
-0.247577
-0.244246
-0.232612
-0.243569
-0.240369
-0.209365
-0.221798
-0.214447
-0.221395
-0.209242
-0.219293
-0.211227
-0.222704
-0.23013
-0.223102
-0.221242
-0.223175
-0.22954
-0.218022
-0.220933
-0.231314
-0.221701
-0.231929
-0.22061
-0.235329
-0.21689
-0.219974
-0.216013
-0.220789
-0.23359
-0.216358
-0.228811
-0.218745
-0.21859
-0.210941
-0.215259
-0.217043
-0.231337
-0.211846
-0.21235
-0.216018
-0.229663
-0.229581
-0.228137
-0.225152
-0.222982
-0.250516
-0.234669
-0.233
-0.225055
-0.346911
-0.367902
-0.348869
-0.297939
-0.288535
-0.313336
-0.291535
-0.311214
-0.279396
-0.302969
-0.268809
-0.27283
-0.368448
-0.350472
-0.349834
-0.295409
-0.274294
-0.418899
-0.418848
-0.410131
-0.378766
-0.406767
-0.418436
-0.374148
-0.414852
-0.246097
-0.233647
-0.255869
-0.211789
-0.237779
-0.225465
-0.214687
-0.221542
-0.235169
-0.262034
-0.230906
-0.254289
-0.243174
-0.259639
-0.233208
-0.249898
-0.253381
-0.215951
-0.230459
-0.224202
-0.229334
-0.224304
-0.230202
-0.23155
-0.253936
-0.253436
-0.30524
-0.3076
-0.325512
-0.295959
-0.318626
-0.301054
-0.322032
-0.306751
-0.318964
-0.322284
-0.354351
-0.3604
-0.352261
-0.326237
-0.320787
-0.347924
-0.359195
-0.349694
-0.319097
-0.300553
-0.3063
-0.256923
-0.231635
-0.229913
-0.25179
-0.231321
-0.243385
-0.225524
-0.221895
-0.218792
-0.224278
-0.228205
-0.241037
-0.248259
-0.229169
-0.247563
-0.224799
-0.22688
-0.237178
-0.261703
-0.257924
-0.239887
-0.266297
-0.244048
-0.250723
-0.240494
-0.255429
-0.236946
-0.243427
-0.267845
-0.239428
-0.231342
-0.253774
-0.232833
-0.233995
-0.246755
-0.407688
-0.428375
-0.39881
-0.442663
-0.409675
-0.395712
-0.440631
-0.383235
-0.385677
-0.355231
-0.35261
-0.357182
-0.383014
-0.385688
-0.384766
-0.360849
-0.388696
-0.354011
-0.386431
-0.359126
-0.387074
-0.399314
-0.412614
-0.375882
-0.423752
-0.396834
-0.387742
-0.427641
-0.382721
-0.38744
-0.35404
-0.350081
-0.383553
-0.352471
-0.386884
-0.381474
-0.353114
-0.390246
-0.349293
-0.378102
-0.351968
-0.385929
-0.168469
-0.171948
-0.175968
-0.170475
-0.166401
-0.163546
-0.169365
-0.156815
-0.169784
-0.165755
-0.162066
-0.16726
-0.179227
-0.174217
-0.218497
-0.178006
-0.180398
-0.168279
-0.180658
-0.176189
-0.171186
-0.194854
-0.168779
-0.179753
-0.17309
-0.177596
-0.169029
-0.172063
-0.155969
-0.162501
-0.16538
-0.177658
-0.162145
-0.16918
-0.177666
-0.180007
-0.208913
-0.159652
-0.163012
-0.158138
-0.163061
-0.132401
-0.111737
-0.101941
-0.133888
-0.109347
-0.134506
-0.132851
-0.126453
-0.108938
-0.105931
-0.0990543
-0.123682
-0.106621
-0.118439
-0.157266
-0.127755
-0.170494
-0.156586
-0.129861
-0.163907
-0.115264
-0.176125
-0.116204
-0.175992
-0.0970231
-0.0673791
-0.0669669
-0.0907966
-0.0936286
-0.0677424
-0.0744126
-0.0921215
-0.0704535
-0.0947442
-0.0900036
-0.0981958
-0.0750263
-0.0682085
-0.100588
-0.114408
-0.172373
-0.107488
-0.176194
-0.124171
-0.147599
-0.11462
-0.135646
-0.11967
-0.153013
-0.114364
-0.205469
-0.179811
-0.179405
-0.209992
-0.203617
-0.200428
-0.16692
-0.176835
-0.1689
-0.202894
-0.201595
-0.224842
-0.237128
-0.21782
-0.250345
-0.215757
-0.229679
-0.250521
-0.220809
-0.224385
-0.212604
-0.169398
-0.173783
-0.2172
-0.198856
-0.177529
-0.179269
-0.202019
-0.174659
-0.201016
-0.198602
-0.219209
-0.224963
-0.115081
-0.174055
-0.190468
-0.116724
-0.135732
-0.130006
-0.172828
-0.148015
-0.14203
-0.168527
-0.12668
-0.0993398
-0.0835917
-0.0957769
-0.0808399
-0.103572
-0.0905016
-0.0784213
-0.0793725
-0.0938774
-0.0798937
-0.0917351
-0.0960186
-0.0941283
-0.0942479
-0.0776911
-0.0803003
-0.0983988
-0.121493
-0.191857
-0.129517
-0.192782
-0.122767
-0.144339
-0.143169
-0.115752
-0.157357
-0.1122
-0.121022
-0.204857
-0.178195
-0.181329
-0.212968
-0.211792
-0.21825
-0.225111
-0.237327
-0.220425
-0.243073
-0.223329
-0.234633
-0.250927
-0.183576
-0.177949
-0.186245
-0.18308
-0.19624
-0.176805
-0.18377
-0.202782
-0.202421
-0.179799
-0.197204
-0.220149
-0.233157
-0.171654
-0.173992
-0.173214
-0.17874
-0.167709
-0.167532
-0.164109
-0.174712
-0.169982
-0.161305
-0.171898
-0.170127
-0.167222
-0.168065
-0.16617
-0.170592
-0.178242
-0.16875
-0.179051
-0.1667
-0.170843
-0.158544
-0.149637
-0.170578
-0.164461
-0.155209
-0.171388
-0.174556
-0.175586
-0.167902
-0.26983
-0.228765
-0.259858
-0.2226
-0.248588
-0.19725
-0.191797
-0.218201
-0.182992
-0.250843
-0.218894
-0.282546
-0.175724
-0.177712
-0.273029
-0.234084
-0.224497
-0.223112
-0.248545
-0.231883
-0.222378
-0.238013
-0.286375
-0.187912
-0.179438
-0.283036
-0.23671
-0.22548
-0.224713
-0.22067
-0.243245
-0.224907
-0.223222
-0.268444
-0.289911
-0.222917
-0.268424
-0.34559
-0.362548
-0.344612
-0.266969
-0.277683
-0.270602
-0.312144
-0.275094
-0.311883
-0.362212
-0.323656
-0.330116
-0.22749
-0.228316
-0.230423
-0.223294
-0.229221
-0.245153
-0.23839
-0.234458
-0.2192
-0.230802
-0.222474
-0.229013
-0.227717
-0.226915
-0.226963
-0.229527
-0.243778
-0.271145
-0.232604
-0.250775
-0.238624
-0.22976
-0.227802
-0.2749
-0.246613
-0.227168
-0.229031
-0.231192
-0.228304
-0.223817
-0.22293
-0.22518
-0.222681
-0.221563
-0.224086
-0.222254
-0.391509
-0.388441
-0.387817
-0.357105
-0.389416
-0.393441
-0.358346
-0.390463
-0.23244
-0.255532
-0.230131
-0.26308
-0.205951
-0.212195
-0.220875
-0.185338
-0.252592
-0.226323
-0.231372
-0.22629
-0.213788
-0.232571
-0.239761
-0.260959
-0.231108
-0.204247
-0.282051
-0.252603
-0.235901
-0.22286
-0.225473
-0.225873
-0.244835
-0.226551
-0.231632
-0.269389
-0.268506
-0.310194
-0.264442
-0.307979
-0.310736
-0.357279
-0.316315
-0.322533
-0.35911
-0.317986
-0.263815
-0.224961
-0.21955
-0.227645
-0.245876
-0.217736
-0.22888
-0.249295
-0.245795
-0.225247
-0.227448
-0.238885
-0.233632
-0.256246
-0.233543
-0.245398
-0.251878
-0.228107
-0.231872
-0.237919
-0.241088
-0.220386
-0.235178
-0.250113
-0.242785
-0.241683
-0.251906
-0.223121
-0.226923
-0.226064
-0.232881
-0.232476
-0.229266
-0.240265
-0.271073
-0.222328
-0.22399
-0.265498
-0.23206
-0.265839
-0.237028
-0.221988
-0.178683
-0.195755
-0.267414
-0.225478
-0.192484
-0.19703
-0.206819
-0.200368
-0.228679
-0.207553
-0.250425
-0.224904
-0.258749
-0.22162
-0.243655
-0.243482
-0.223039
-0.242165
-0.180926
-0.18866
-0.249878
-0.265192
-0.275552
-0.266492
-0.238137
-0.241191
-0.228141
-0.216313
-0.216854
-0.237695
-0.232885
-0.218954
-0.284386
-0.33509
-0.292352
-0.250286
-0.299455
-0.249833
-0.293694
-0.245974
-0.335306
-0.301912
-0.293573
-0.380181
-0.382209
-0.387933
-0.331482
-0.38708
-0.390077
-0.331085
-0.386863
-0.235222
-0.224184
-0.228427
-0.213626
-0.22332
-0.24859
-0.219924
-0.259515
-0.226815
-0.254893
-0.23407
-0.222781
-0.226391
-0.258196
-0.221253
-0.258103
-0.254938
-0.302828
-0.25024
-0.305662
-0.256836
-0.30929
-0.338377
-0.3075
-0.303122
-0.337436
-0.306037
-0.263122
-0.230832
-0.265486
-0.232822
-0.240539
-0.167813
-0.168018
-0.234203
-0.243165
-0.177765
-0.170133
-0.248633
-0.261311
-0.257876
-0.23404
-0.253587
-0.21651
-0.22485
-0.230101
-0.212126
-0.217164
-0.213112
-0.231233
-0.216364
-0.21962
-0.22363
-0.211397
-0.214456
-0.23741
-0.218419
-0.242535
-0.217411
-0.243596
-0.222053
-0.231397
-0.215122
-0.257993
-0.217192
-0.246718
-0.381415
-0.379945
-0.379439
-0.406741
-0.383042
-0.377072
-0.405108
-0.352413
-0.341072
-0.334652
-0.339673
-0.336468
-0.350945
-0.342437
-0.353951
-0.339961
-0.346404
-0.341808
-0.355598
-0.338226
-0.343559
-0.278749
-0.274253
-0.286439
-0.296915
-0.298289
-0.278915
-0.275755
-0.280873
-0.301237
-0.287442
-0.282873
-0.299756
-0.282576
-0.281514
-0.37597
-0.386838
-0.371264
-0.396705
-0.374388
-0.372724
-0.398876
-0.34834
-0.340369
-0.333234
-0.334067
-0.349912
-0.331345
-0.338675
-0.346962
-0.327966
-0.336102
-0.332217
-0.345281
-0.329814
-0.338091
-0.285356
-0.285712
-0.306795
-0.292668
-0.287039
-0.304978
-0.283901
-0.284157
-0.302008
-0.282323
-0.290961
-0.283002
-0.30356
-0.282596
-0.167517
-0.204051
-0.158343
-0.175327
-0.156095
-0.190127
-0.160107
-0.177934
-0.177641
-0.152831
-0.172429
-0.161742
-0.175316
-0.169572
-0.168034
-0.165827
-0.156096
-0.201932
-0.167062
-0.167525
-0.148633
-0.166186
-0.161813
-0.160884
-0.168789
-0.128414
-0.153095
-0.130553
-0.153356
-0.108234
-0.0932386
-0.101405
-0.100972
-0.124512
-0.127567
-0.137586
-0.145974
-0.124753
-0.126745
-0.138425
-0.114917
-0.105463
-0.116901
-0.105372
-0.12595
-0.132752
-0.121322
-0.153651
-0.125231
-0.139736
-0.12597
-0.145539
-0.124911
-0.126797
-0.140304
-0.100031
-0.0950743
-0.150799
-0.132945
-0.0948773
-0.100536
-0.132978
-0.0637271
-0.0234485
-0.0426397
-0.075059
-0.0811533
-0.024745
-0.0578842
-0.067239
-0.079258
-0.0414909
-0.0327043
-0.0804003
-0.0290548
-0.0686789
-0.0973294
-0.149108
-0.0877039
-0.125311
-0.0944777
-0.0898871
-0.130614
-0.172983
-0.16907
-0.181758
-0.175133
-0.166383
-0.156803
-0.17626
-0.188107
-0.174734
-0.197088
-0.22517
-0.199342
-0.19782
-0.201052
-0.157433
-0.169765
-0.182811
-0.176752
-0.159632
-0.177869
-0.175381
-0.176178
-0.187509
-0.100008
-0.0952972
-0.149049
-0.131068
-0.120701
-0.0947346
-0.100938
-0.0768751
-0.0642405
-0.0490471
-0.0620659
-0.056373
-0.0674345
-0.0819408
-0.0750517
-0.0795793
-0.043148
-0.0364819
-0.0443861
-0.0820164
-0.0708768
-0.0942769
-0.146005
-0.134011
-0.0955021
-0.114461
-0.0945865
-0.16853
-0.168066
-0.171009
-0.182577
-0.172281
-0.168072
-0.172943
-0.181281
-0.171688
-0.205431
-0.22363
-0.200717
-0.202756
-0.202766
-0.206774
-0.172522
-0.165867
-0.172166
-0.169229
-0.1938
-0.167301
-0.166403
-0.17909
-0.181006
-0.169897
-0.191086
-0.155904
-0.182014
-0.158257
-0.174912
-0.156805
-0.15753
-0.175947
-0.154472
-0.162915
-0.164078
-0.13789
-0.154803
-0.164226
-0.162274
-0.154993
-0.179735
-0.151255
-0.176279
-0.15407
-0.155377
-0.176032
-0.155532
-0.166231
-0.163958
-0.137932
-0.15718
-0.164683
-0.163094
-0.255731
-0.235657
-0.258829
-0.234162
-0.223275
-0.185851
-0.185618
-0.215234
-0.228818
-0.18808
-0.187552
-0.231464
-0.253198
-0.254931
-0.240866
-0.25014
-0.277652
-0.315315
-0.282265
-0.25788
-0.22475
-0.271028
-0.224649
-0.277312
-0.309443
-0.282089
-0.281629
-0.216512
-0.226115
-0.231175
-0.221038
-0.212266
-0.250682
-0.252682
-0.208399
-0.216876
-0.267587
-0.254327
-0.242356
-0.219736
-0.245023
-0.224689
-0.24316
-0.339217
-0.332593
-0.341089
-0.345028
-0.33385
-0.342147
-0.252232
-0.238169
-0.251532
-0.248157
-0.234875
-0.170195
-0.179552
-0.231905
-0.235667
-0.181397
-0.180093
-0.235803
-0.25126
-0.257446
-0.248787
-0.247646
-0.265796
-0.224554
-0.268608
-0.265774
-0.287565
-0.292186
-0.289223
-0.288114
-0.293814
-0.289442
-0.24375
-0.22517
-0.233154
-0.227891
-0.226463
-0.235452
-0.265753
-0.2812
-0.180023
-0.265134
-0.19296
-0.233353
-0.244745
-0.265164
-0.281684
-0.265177
-0.256426
-0.190541
-0.240558
-0.249465
-0.196037
-0.245302
-0.215392
-0.223736
-0.24813
-0.287046
-0.261175
-0.236241
-0.288868
-0.247088
-0.237999
-0.221444
-0.187693
-0.176555
-0.190389
-0.214564
-0.245067
-0.223946
-0.244809
-0.174365
-0.193474
-0.192842
-0.245691
-0.224512
-0.249621
-0.261395
-0.257626
-0.249192
-0.287904
-0.244246
-0.278718
-0.275009
-0.281969
-0.262946
-0.272241
-0.270398
-0.275683
-0.284322
-0.283204
-0.338689
-0.325301
-0.33702
-0.334772
-0.324284
-0.336436
-0.221743
-0.224377
-0.240242
-0.175717
-0.173353
-0.224101
-0.218712
-0.246209
-0.260077
-0.220281
-0.268652
-0.202652
-0.242184
-0.266602
-0.229019
-0.238215
-0.234201
-0.235769
-0.173818
-0.227696
-0.233478
-0.2422
-0.189524
-0.272081
-0.268349
-0.197936
-0.237976
-0.269927
-0.266249
-0.27185
-0.264262
-0.286507
-0.284237
-0.282668
-0.282825
-0.283174
-0.281767
-0.243014
-0.285326
-0.23527
-0.263326
-0.245328
-0.278522
-0.234039
-0.218181
-0.186472
-0.166044
-0.228441
-0.188515
-0.236445
-0.214763
-0.220963
-0.243556
-0.1919
-0.166861
-0.190506
-0.222902
-0.238736
-0.240338
-0.262066
-0.263381
-0.236423
-0.275279
-0.233717
-0.23729
-0.218006
-0.24329
-0.225148
-0.176885
-0.226599
-0.183297
-0.218233
-0.234777
-0.265542
-0.177958
-0.278315
-0.233298
-0.1796
-0.266322
-0.218665
-0.24398
-0.234985
-0.193097
-0.218237
-0.230109
-0.185113
-0.235175
-0.186431
-0.278525
-0.267262
-0.18151
-0.236436
-0.266363
-0.269478
-0.268129
-0.294713
-0.28142
-0.292779
-0.272089
-0.264993
-0.267919
-0.288788
-0.2798
-0.262097
-0.291212
-0.265568
-0.263834
-0.356853
-0.34506
-0.369066
-0.370527
-0.357549
-0.369899
-0.37007
-0.32962
-0.366496
-0.304587
-0.316176
-0.309826
-0.327794
-0.330184
-0.332318
-0.318635
-0.326436
-0.320639
-0.333779
-0.315429
-0.330622
-0.2583
-0.253138
-0.27726
-0.272034
-0.280607
-0.255616
-0.255456
-0.260975
-0.28672
-0.259815
-0.272946
-0.263545
-0.283932
-0.257353
-0.239756
-0.219228
-0.263346
-0.267442
-0.268917
-0.221153
-0.238438
-0.242406
-0.273129
-0.265841
-0.227368
-0.271324
-0.245288
-0.224002
-0.347298
-0.34135
-0.350581
-0.352241
-0.343333
-0.358745
-0.356572
-0.321631
-0.366237
-0.301145
-0.303688
-0.324722
-0.298395
-0.358491
-0.319104
-0.2942
-0.337784
-0.314449
-0.315446
-0.296311
-0.350569
-0.25179
-0.250401
-0.27481
-0.26411
-0.253744
-0.272932
-0.247272
-0.251436
-0.273299
-0.233788
-0.263436
-0.247887
-0.273638
-0.242203
-0.125371
-0.105574
-0.0929553
-0.133335
-0.101652
-0.146431
-0.118364
-0.139799
-0.153983
-0.14402
-0.152365
-0.140867
-0.143026
-0.153381
-0.130962
-0.128238
-0.118646
-0.160316
-0.133933
-0.111529
-0.156172
-0.13826
-0.145045
-0.153322
-0.150854
-0.143191
-0.135948
-0.152215
-0.053448
-0.0387869
-0.0919299
-0.0846982
-0.0808407
-0.043359
-0.0827984
-0.0376594
-0.00567886
-0.0265157
-0.0489536
-0.0439575
-0.0232085
-0.047284
-0.0186834
0.0256103
0.0607319
-0.0680238
0.0315308
-0.0270821
-0.0358088
-0.0769144
-0.0819419
-0.0991244
-0.0978832
-0.0793909
-0.0784222
-0.0871737
-0.0167642
-0.0200109
0.0471911
0.0764159
-0.064058
0.0372012
-0.0491494
-0.0559212
-0.110483
-0.0869956
-0.105885
-0.0662611
-0.0359477
-0.0838321
-0.0773587
-0.0859837
-0.0801881
-0.0973107
-0.0827095
-0.0782416
-0.0866559
-0.0283299
-0.0441067
-0.0622455
-0.063598
-0.0332925
-0.0355759
-0.058313
0.00830562
-0.00595372
0.0370828
0.0527254
0.0118496
0.0601557
0.000231775
-0.0891669
-0.176451
-0.147659
-0.129349
-0.135811
-0.112791
-0.120249
-0.119293
-0.126237
-0.138411
-0.193658
-0.185565
-0.184443
-0.141357
-0.152771
-0.142962
-0.0887383
-0.14186
-0.145575
-0.130721
-0.117039
-0.121676
-0.143192
-0.118907
-0.140386
-0.133808
-0.14938
-0.153451
-0.144553
-0.0478996
-0.0536738
-0.0645589
-0.0687178
-0.0739384
-0.0527375
-0.0439405
-0.0187313
0.0215775
-0.0199054
-0.0318439
0.0295075
-0.0241328
-0.0277904
-0.0168356
-0.0242056
-0.01392
0.0447153
0.0334475
-0.0339628
-0.00921456
-0.0508665
-0.0859489
-0.0908907
-0.0651924
-0.0576267
-0.0821414
-0.0531039
-0.127737
-0.192502
-0.197094
-0.155086
-0.151066
-0.156385
-0.14612
-0.149127
-0.0954444
-0.124827
-0.147679
-0.149431
-0.119201
-0.146074
-0.207946
-0.182771
-0.178955
-0.139673
-0.186645
-0.101253
-0.193785
-0.147057
-0.116932
-0.125373
-0.146899
-0.151759
-0.119132
-0.138353
-0.152001
-0.150931
-0.157719
-0.108572
-0.0938357
-0.0891241
-0.127186
-0.113835
-0.0854997
-0.122785
-0.122589
-0.137337
-0.128748
-0.148055
-0.120371
-0.129829
-0.13934
-0.105576
-0.0938832
-0.081551
-0.118778
-0.103304
-0.0833934
-0.120151
-0.12595
-0.141134
-0.14799
-0.152231
-0.131826
-0.133762
-0.142632
-0.219426
-0.238092
-0.224898
-0.26207
-0.21975
-0.238768
-0.225215
-0.199378
-0.176184
-0.182649
-0.210489
-0.17755
-0.210698
-0.198804
-0.199122
-0.217113
-0.177066
-0.170601
-0.177196
-0.198763
-0.217974
-0.218194
-0.259769
-0.247631
-0.225696
-0.245459
-0.225201
-0.219867
-0.254352
-0.292613
-0.22862
-0.275711
-0.302356
-0.270278
-0.143439
-0.216573
-0.232875
-0.264339
-0.264042
-0.225383
-0.164954
-0.218341
-0.297833
-0.226581
-0.301411
-0.268613
-0.270368
-0.222984
-0.207925
-0.249713
-0.225018
-0.207819
-0.227587
-0.22683
-0.236981
-0.257659
-0.277194
-0.220353
-0.222432
-0.25759
-0.238166
-0.238138
-0.219013
-0.276927
-0.26479
-0.2232
-0.258679
-0.246016
-0.224091
-0.283079
-0.207769
-0.24063
-0.206159
-0.228817
-0.235667
-0.198837
-0.244381
-0.208672
-0.315503
-0.335653
-0.298807
-0.23592
-0.232049
-0.225519
-0.299181
-0.230894
-0.330936
-0.316356
-0.335448
-0.244954
-0.216339
-0.210894
-0.223791
-0.23833
-0.303782
-0.226812
-0.221525
-0.206745
-0.233584
-0.203989
-0.182397
-0.136575
-0.224867
-0.178141
-0.209867
-0.218906
-0.200581
-0.217181
-0.178114
-0.164063
-0.177932
-0.199729
-0.220115
-0.228209
-0.312661
-0.258036
-0.239516
-0.233734
-0.201799
-0.240334
-0.255104
-0.283627
-0.254648
-0.169006
-0.227395
-0.223508
-0.220002
-0.263146
-0.258009
-0.256096
-0.289741
-0.261553
-0.226009
-0.168783
-0.225967
-0.26738
-0.290738
-0.262654
-0.285532
-0.255309
-0.253718
-0.229079
-0.215696
-0.226027
-0.238786
-0.226698
-0.226796
-0.216479
-0.247755
-0.267984
-0.270029
-0.244627
-0.266961
-0.242893
-0.249302
-0.247186
-0.240048
-0.265447
-0.270374
-0.266843
-0.245092
-0.241338
-0.230106
-0.22813
-0.225187
-0.223123
-0.224674
-0.2206
-0.231702
-0.211258
-0.214571
-0.245744
-0.219065
-0.227088
-0.206574
-0.220577
-0.194582
-0.174502
-0.174642
-0.207846
-0.172894
-0.196973
-0.202949
-0.191025
-0.187593
-0.169542
-0.166447
-0.170034
-0.196038
-0.186798
-0.215435
-0.252308
-0.244298
-0.224853
-0.218474
-0.237268
-0.222748
-0.22322
-0.269581
-0.219269
-0.221968
-0.288491
-0.225165
-0.195227
-0.239
-0.233959
-0.164784
-0.202135
-0.202096
-0.288835
-0.231564
-0.226741
-0.171119
-0.164901
-0.200253
-0.267598
-0.217498
-0.21859
-0.234171
-0.232654
-0.224332
-0.299379
-0.238443
-0.304508
-0.244935
-0.305075
-0.237937
-0.218792
-0.222654
-0.249709
-0.296375
-0.250145
-0.227304
-0.227089
-0.24335
-0.245622
-0.244091
-0.222559
-0.229221
-0.239158
-0.254187
-0.260998
-0.282925
-0.260407
-0.239283
-0.253967
-0.225959
-0.233962
-0.243892
-0.216462
-0.243805
-0.218328
-0.225477
-0.239445
-0.256033
-0.282472
-0.254304
-0.258912
-0.239579
-0.254157
-0.227509
-0.286777
-0.239718
-0.165616
-0.226071
-0.219991
-0.20756
-0.241339
-0.243555
-0.254569
-0.275445
-0.248892
-0.236057
-0.278629
-0.246571
-0.203711
-0.163687
-0.215969
-0.290702
-0.253538
-0.245024
-0.198953
-0.207465
-0.215725
-0.230954
-0.20208
-0.21383
-0.211646
-0.177132
-0.15659
-0.1686
-0.193034
-0.158281
-0.191956
-0.175724
-0.179366
-0.180104
-0.163774
-0.169259
-0.160859
-0.182447
-0.189092
-0.196823
-0.232924
-0.218574
-0.207365
-0.217174
-0.208838
-0.195539
-0.233622
-0.237089
-0.228702
-0.253433
-0.226564
-0.246262
-0.232577
-0.249245
-0.267422
-0.24699
-0.280238
-0.249486
-0.25561
-0.265814
-0.232888
-0.22917
-0.225094
-0.226171
-0.232339
-0.22499
-0.232765
-0.246994
-0.257772
-0.282554
-0.256301
-0.268616
-0.24194
-0.260481
-0.232644
-0.215675
-0.263738
-0.254024
-0.260768
-0.234947
-0.213658
-0.230338
-0.254432
-0.251369
-0.209556
-0.258003
-0.227035
-0.211599
-0.308349
-0.308283
-0.315254
-0.325069
-0.312763
-0.309152
-0.321
-0.275785
-0.284285
-0.256523
-0.286803
-0.259878
-0.27234
-0.289859
-0.278865
-0.26668
-0.298511
-0.289303
-0.283493
-0.262605
-0.291705
-0.218804
-0.202744
-0.246421
-0.248327
-0.249203
-0.216424
-0.204236
-0.221169
-0.252742
-0.207116
-0.248494
-0.224657
-0.250667
-0.206755
-0.199009
-0.193975
-0.218291
-0.218729
-0.221963
-0.197451
-0.196008
-0.180195
-0.168998
-0.165264
-0.178067
-0.162485
-0.18404
-0.172553
-0.201349
-0.227892
-0.221437
-0.200141
-0.224583
-0.20397
-0.200176
-0.292915
-0.302834
-0.287875
-0.306094
-0.289076
-0.293559
-0.309023
-0.264993
-0.282067
-0.252704
-0.267974
-0.268767
-0.248618
-0.275838
-0.261126
-0.23996
-0.266733
-0.26532
-0.256806
-0.244493
-0.273426
-0.191221
-0.177148
-0.16801
-0.185474
-0.171092
-0.187741
-0.188476
-0.211385
-0.201242
-0.242841
-0.237127
-0.213872
-0.238807
-0.200422
-0.208753
-0.230726
-0.199082
-0.232425
-0.205875
-0.234916
-0.199306
-0.0302832
0.0430884
-0.00890203
0.0381413
-0.02163
-0.0225037
-0.0616987
-0.0531965
-0.0105916
-0.0185174
-0.0571878
-0.0260296
-0.0143683
0.0675818
-0.0162304
0.0300918
-0.0195242
-0.0327129
-0.00840624
-0.0485484
-0.0282456
-0.0147495
-0.0532824
-0.0370381
-0.0733816
-0.0738782
-0.0975442
0.00537691
-0.0423981
-0.00544244
-0.102188
-0.15318
-0.108297
-0.0979257
-0.122314
-0.157022
-0.125732
-0.0322627
-0.0603797
-0.0699124
-0.0272926
-0.0476454
-0.111981
-0.0108615
-0.10855
-0.0850073
-0.155738
-0.128073
-0.00948308
-0.082035
-0.0911893
-0.116068
-0.153664
-0.114523
-0.122984
-0.0615426
-0.0690323
-0.120096
-0.0576405
-0.158594
-0.110958
-0.117603
-0.0316196
-0.0975616
-0.093234
-0.0361119
-0.0656044
-0.113591
-0.116945
-0.0545773
-0.104893
-0.154577
-0.113506
-0.210828
-0.259487
-0.213762
-0.219527
-0.280142
-0.214561
-0.164152
-0.201813
-0.200489
-0.188665
-0.215995
-0.220216
-0.1977
-0.164016
-0.199743
-0.261019
-0.216961
-0.21478
-0.279322
-0.210539
-0.213423
-0.225292
-0.233338
-0.244435
-0.215634
-0.245432
-0.225157
-0.215405
-0.253907
-0.248135
-0.257659
-0.274992
-0.28769
-0.270282
-0.263701
-0.260483
-0.287161
-0.263262
-0.279603
-0.248488
-0.262656
-0.258284
-0.173221
-0.155214
-0.168209
-0.192804
-0.154175
-0.174389
-0.192222
-0.192803
-0.232252
-0.218127
-0.206187
-0.194162
-0.217058
-0.205266
-0.209468
-0.24796
-0.2061
-0.165158
-0.192079
-0.193698
-0.178093
-0.21615
-0.201599
-0.187918
-0.270629
-0.189094
-0.196674
-0.1652
-0.194723
-0.210913
-0.271029
-0.189391
-0.245856
-0.19906
-0.204531
-0.20825
-0.243401
-0.211689
-0.232228
-0.202336
-0.236211
-0.170136
-0.183217
-0.179937
-0.172244
-0.200635
-0.201657
-0.204257
-0.193047
-0.235365
-0.197465
-0.171202
-0.201022
-0.24415
-0.214105
-0.212434
-0.247923
-0.2662
-0.265146
-0.245715
-0.271885
-0.293475
-0.27213
-0.240749
-0.248042
-0.261909
-0.265203
-0.273329
-0.293805
-0.272219
-0.207164
-0.235958
-0.203034
-0.164145
-0.191543
-0.19181
-0.177077
-0.193714
-0.193482
-0.187387
-0.232633
-0.187895
-0.195302
-0.228359
-0.188789
-0.196366
-0.165327
-0.192491
-0.234507
-0.193852
-0.20209
-0.190401
-0.190099
-0.215651
-0.207757
-0.21192
-0.193304
-0.187244
-0.169622
-0.159019
-0.154437
-0.163402
-0.156084
-0.167798
-0.165042
-0.189131
-0.204904
-0.204631
-0.187575
-0.209054
-0.188561
-0.185819
-0.263563
-0.288562
-0.260578
-0.282636
-0.265105
-0.258925
-0.28031
-0.226707
-0.236842
-0.193051
-0.177594
-0.196401
-0.223901
-0.241834
-0.229174
-0.204831
-0.240427
-0.17968
-0.231205
-0.199925
-0.243077
-0.164796
-0.155193
-0.153492
-0.161534
-0.151512
-0.167084
-0.158793
-0.183595
-0.176885
-0.188179
-0.195395
-0.191684
-0.18019
-0.181154
-0.186506
-0.199985
-0.187737
-0.197238
-0.188795
-0.195274
-0.185051
-0.15685
-0.1455
-0.165254
-0.16111
-0.163501
-0.148331
-0.154543
-0.135842
-0.103841
-0.119389
-0.131006
-0.114818
-0.139948
-0.126143
-0.159874
-0.170197
-0.166718
-0.156496
-0.166548
-0.163636
-0.152162
-0.250781
-0.282995
-0.239967
-0.265852
-0.247428
-0.244994
-0.268887
-0.21681
-0.234774
-0.189233
-0.163709
-0.220528
-0.185001
-0.229101
-0.213776
-0.177634
-0.221337
-0.161764
-0.209945
-0.181759
-0.227115
-0.148015
-0.126231
-0.12419
-0.136093
-0.130513
-0.143724
-0.140484
-0.172809
-0.171843
-0.184531
-0.181576
-0.176585
-0.180469
-0.167437
-0.170345
-0.173437
-0.160777
-0.17943
-0.166815
-0.177369
-0.164489
-0.0764559
0.0281976
-0.0153645
-0.0359789
0.000922622
-0.0618814
-0.0318507
-0.0425364
-0.0194002
0.0435328
0.00425759
-0.0413459
-0.122098
-0.07313
-0.0679525
-0.0913889
-0.148384
-0.0647968
-0.132033
-0.0682059
-0.0774991
-0.156845
-0.0757647
0.0327339
0.00618759
-0.0132548
-0.00166239
-0.0372636
-0.0231644
0.0406599
-0.0475682
0.0191091
-0.0424693
-0.0907297
-0.0869578
-0.159979
-0.13651
-0.0817365
-0.0846765
-0.158684
-0.0377249
0.0333104
-0.00748768
-0.0341829
-0.0284895
0.0281216
-0.0560461
-0.0594415
-0.152725
-0.0751863
-0.131172
-0.0483879
-0.077644
-0.156853
-0.0800449
-0.0639978
-0.067389
-0.145469
-0.076845
-0.0894459
-0.0309712
0.0394979
-0.0191761
0.0865868
-0.0153668
-0.0233899
0.0466765
-0.0469156
-0.0513527
-0.0626141
-0.0643284
-0.0854719
-0.132946
-0.1595
-0.0808047
-0.0777193
-0.157794
-0.225577
-0.245466
-0.22525
-0.227305
-0.18791
-0.210826
-0.188212
-0.2046
-0.205431
-0.169257
-0.211423
-0.186057
-0.205374
-0.187024
-0.205683
-0.245663
-0.224442
-0.224993
-0.185909
-0.216662
-0.204361
-0.269701
-0.265892
-0.270701
-0.15048
-0.289136
-0.287379
-0.280111
-0.278068
-0.288149
-0.279
-0.152094
-0.264287
-0.27345
-0.270913
-0.224981
-0.244985
-0.22444
-0.210923
-0.150512
-0.18889
-0.224272
-0.192554
-0.200759
-0.167773
-0.206568
-0.196144
-0.196204
-0.173173
-0.20457
-0.203287
-0.157172
-0.199011
-0.213976
-0.174663
-0.206564
-0.24315
-0.217646
-0.222069
-0.28144
-0.282715
-0.231722
-0.251903
-0.2877
-0.269986
-0.234201
-0.158677
-0.14969
-0.163556
-0.118167
-0.172111
-0.164021
-0.305677
-0.177375
-0.179911
-0.212555
-0.188377
-0.213639
-0.316771
-0.15063
-0.172559
-0.165422
-0.29928
-0.210937
-0.196256
-0.182586
-0.191249
-0.27745
-0.213307
-0.284606
-0.252883
-0.29205
-0.235261
-0.288978
-0.235089
-0.294349
-0.307382
-0.29751
-0.260757
-0.276674
-0.312896
-0.291176
-0.275267
-0.14103
-0.31588
-0.32565
-0.295798
-0.298387
-0.295023
-0.327617
-0.139838
-0.305835
-0.253523
-0.27577
-0.286635
-0.275714
-0.310341
-0.289036
-0.32974
-0.297037
-0.312022
-0.290074
-0.328087
-0.254816
-0.280558
-0.228729
-0.24118
-0.224318
-0.265743
-0.271895
-0.25016
-0.207014
-0.175308
-0.191864
-0.203871
-0.234238
-0.200115
-0.149659
-0.174448
-0.173875
-0.192812
-0.162086
-0.181097
-0.174756
-0.160379
-0.180716
-0.255999
-0.207846
-0.177408
-0.197387
-0.202424
-0.20287
-0.270359
-0.249546
-0.235783
-0.216427
-0.260436
-0.222069
-0.265365
-0.0755363
-0.100167
-0.100184
-0.0931785
-0.094415
-0.0770929
-0.0943627
-0.077167
-0.097008
-0.103313
-0.0929318
-0.103347
-0.0785099
-0.0905641
-0.150587
-0.142718
-0.158525
-0.157621
-0.156505
-0.152177
-0.141235
-0.12678
-0.0933124
-0.10277
-0.120626
-0.104277
-0.126471
-0.117534
-0.149518
-0.152438
-0.156667
-0.139054
-0.154788
-0.147819
-0.139863
-0.222575
-0.281142
-0.215834
-0.242245
-0.22552
-0.210387
-0.238576
-0.182984
-0.178886
-0.142745
-0.119749
-0.146925
-0.182081
-0.182715
-0.18398
-0.153962
-0.192692
-0.135266
-0.1864
-0.150672
-0.186619
-0.123411
-0.0911256
-0.10216
-0.120814
-0.0995645
-0.126065
-0.119236
-0.139858
-0.13035
-0.135614
-0.147667
-0.141157
-0.135257
-0.134689
-0.143171
-0.150709
-0.13775
-0.150757
-0.146467
-0.146519
-0.13631
-0.0909399
-0.0867597
-0.0884358
-0.0946479
-0.0992706
-0.0987866
-0.0852165
-0.0812299
-0.0341505
-0.059091
-0.0757934
-0.0503967
-0.0882992
-0.0681222
-0.0968842
-0.110263
-0.0914877
-0.115418
-0.104395
-0.103566
-0.102949
-0.209017
-0.281437
-0.182347
-0.217308
-0.205192
-0.189943
-0.221859
-0.175816
-0.176076
-0.138925
-0.100027
-0.179697
-0.134523
-0.166538
-0.172046
-0.1257
-0.153324
-0.0966865
-0.167824
-0.130485
-0.163284
-0.100486
-0.0582813
-0.066288
-0.0829799
-0.0740268
-0.0942626
-0.0904591
-0.123343
-0.124593
-0.130767
-0.121006
-0.130086
-0.125283
-0.117929
-0.116405
-0.115565
-0.119864
-0.114568
-0.109598
-0.121077
-0.127077
-0.321419
-0.227021
-0.25139
-0.300576
-0.296628
-0.230488
-0.326316
-0.157265
-0.14343
-0.153283
-0.296695
-0.173424
-0.155804
-0.209536
-0.164089
-0.312617
-0.204385
-0.0971833
-0.152497
-0.149573
-0.290718
-0.188829
-0.142658
-0.1372
-0.160119
-0.198008
-0.273752
-0.316457
-0.252473
-0.292957
-0.234555
-0.295774
-0.299873
-0.232812
-0.142271
-0.147794
-0.151308
-0.344709
-0.281734
-0.309453
-0.270173
-0.33872
-0.313862
-0.282263
-0.121126
-0.333571
-0.348202
-0.29315
-0.292545
-0.348045
-0.291373
-0.336857
-0.332543
-0.290431
-0.344646
-0.292965
-0.329166
-0.34743
-0.290918
-0.123262
-0.346712
-0.26943
-0.324658
-0.283615
-0.315796
-0.282638
-0.353339
-0.312884
-0.22274
-0.302376
-0.246827
-0.216148
-0.322179
-0.309776
-0.239056
-0.0963598
-0.100298
-0.147378
-0.0857754
-0.153481
-0.172021
-0.0921357
-0.152344
-0.0847585
-0.148984
-0.131518
-0.137162
-0.141606
-0.249876
-0.178025
-0.103255
-0.118305
-0.0765001
-0.164135
-0.268811
-0.146973
-0.136334
-0.142802
-0.308073
-0.244101
-0.199417
-0.326214
-0.208285
-0.313107
-0.267313
-0.218829
-0.317154
-0.196409
-0.225856
-0.306919
-0.219067
-0.195411
-0.230946
-0.0665383
-0.0776861
-0.380595
-0.38756
-0.0791576
-0.228103
-0.19767
-0.0485622
-0.0971901
-0.108371
-0.111101
-0.081331
-0.195667
-0.1956
-0.125217
-0.12529
-0.159619
-0.122197
-0.157246
-0.194318
-0.231887
-0.378372
-0.0806683
-0.097925
-0.38378
-0.0835925
-0.230701
-0.192243
-0.156897
-0.133911
-0.117928
-0.135285
-0.19044
-0.157267
-0.219078
-0.22543
-0.304631
-0.196151
-0.306332
-0.19542
-0.220076
-0.365573
-0.302854
-0.259412
-0.275137
-0.357198
-0.337789
-0.280157
-0.425483
-0.0799976
-0.340592
-0.347172
-0.29319
-0.296295
-0.337709
-0.292819
-0.342359
-0.307246
-0.0779631
-0.362945
-0.263816
-0.328178
-0.284055
-0.355578
-0.336614
-0.282876
-0.342402
-0.29153
-0.376206
-0.296978
-0.339413
-0.292215
-0.341373
-0.21476
-0.328832
-0.195473
-0.227057
-0.192191
-0.22145
-0.332099
-0.185622
-0.0949072
-0.108494
-0.147006
-0.101094
-0.168663
-0.150686
-0.183303
-0.0533901
-0.102422
-0.105982
-0.097431
-0.118049
-0.194233
-0.239772
-0.128332
-0.105348
-0.11817
-0.231574
-0.374998
-0.103006
-0.101924
-0.115541
-0.230023
-0.186842
-0.156832
-0.110964
-0.113906
-0.103308
-0.154572
-0.191111
-0.206589
-0.230314
-0.19302
-0.330452
-0.261778
-0.190452
-0.333141
-0.0739465
-0.0822916
-0.0895577
-0.0709765
-0.0850446
-0.0792532
-0.0744255
-0.0511594
0.0114142
-0.0123963
-0.0274964
-0.0150747
-0.0483341
-0.0300855
-0.0700745
-0.0771423
-0.0696761
-0.0693058
-0.0816076
-0.066322
-0.0719355
-0.175006
-0.226531
-0.140739
-0.184362
-0.176224
-0.136803
-0.181872
-0.142188
-0.122062
-0.101241
-0.0961892
-0.0994245
-0.143227
-0.117583
-0.141271
-0.097313
-0.114483
-0.0945132
-0.140747
-0.0979291
-0.116314
-0.0483361
0.00660648
-0.0124804
-0.0265333
-0.0143517
-0.0476654
-0.0282305
-0.0645676
-0.0771369
-0.0752527
-0.0522968
-0.0729811
-0.0674722
-0.0702745
-0.063142
-0.0735369
-0.0676546
-0.0509631
-0.063943
-0.0719629
-0.0681031
-0.0833838
-0.0924181
-0.0778385
-0.0885684
-0.0885359
-0.108979
-0.0831491
-0.0739814
-0.0653845
-0.0468816
-0.0759721
-0.048908
-0.0731563
-0.0782651
-0.0834759
-0.0880568
-0.077973
-0.106134
-0.0883068
-0.0830458
-0.108307
-0.176227
-0.207067
-0.138683
-0.177278
-0.175897
-0.133646
-0.178446
-0.145717
-0.123456
-0.103458
-0.110182
-0.144442
-0.105949
-0.128683
-0.146891
-0.109789
-0.136088
-0.112239
-0.147708
-0.108125
-0.130478
-0.0679113
-0.0472211
-0.0439981
-0.0719468
-0.0400222
-0.071063
-0.0658499
-0.0752489
-0.0824795
-0.0781704
-0.0673038
-0.0711226
-0.0815416
-0.0926448
-0.0786217
-0.086452
-0.104522
-0.069612
-0.0812384
-0.0843293
-0.097152
-0.211277
-0.191429
-0.221538
-0.251606
-0.29847
-0.197034
-0.20723
-0.219759
-0.0620822
-0.37631
-0.0609011
-0.359899
-0.227171
-0.052025
-0.173264
-0.12921
-0.123294
-0.164193
-0.130296
-0.171935
-0.163397
-0.188983
0.00919675
-0.145093
-0.033328
-0.132634
-0.0421594
-0.179689
-0.169244
-0.1517
-0.118257
-0.115239
-0.125783
-0.159297
-0.160939
-0.215785
-0.223425
-0.303927
-0.195431
-0.302044
-0.234528
-0.199764
-0.216706
-0.328201
-0.0598208
-0.0423795
-0.352706
-0.0491646
-0.206576
-0.32529
-0.253032
-0.314229
-0.236945
-0.331983
-0.281302
-0.249534
-0.386864
-0.346596
-0.384478
-0.333679
-0.385433
-0.320914
-0.349071
-0.389307
-0.324624
-0.288517
-0.257231
-0.254908
-0.299457
-0.256018
-0.301821
-0.327399
-0.262663
-0.311629
-0.261119
-0.331564
-0.304923
-0.260154
-0.385612
-0.381387
-0.386859
-0.358621
-0.321172
-0.231848
-0.263429
-0.243981
-0.271831
-0.245009
-0.292715
-0.184271
-0.183194
-0.243828
-0.209936
-0.17254
-0.198159
-0.237177
-0.107051
-0.0354427
-0.0773306
-0.103412
-0.0523715
-0.117742
-0.0797168
-0.161968
0.00495882
-0.141838
-0.0295655
-0.0905321
-0.0286038
-0.174563
-0.179068
-0.0495889
-0.0422162
-0.265223
-0.0408274
-0.288331
-0.166445
-0.130044
-0.142354
-0.0882593
-0.0985807
-0.0753404
-0.130364
-0.148364
-0.18534
-0.31904
-0.0388274
-0.0405261
-0.0391589
-0.20136
-0.296712
-0.16698
-0.201842
-0.14786
-0.208366
-0.161282
-0.224315
-0.145919
-0.074593
-0.106928
-0.0958115
-0.129706
-0.0977328
-0.0627721
-0.0935169
-0.0451063
-0.0844604
-0.0724133
-0.116769
-0.110475
-0.084508
-0.0456291
-0.0237849
-0.101819
-0.0789214
0.0423278
0.0519656
-0.0824552
-0.0246854
-0.0457923
0.00391725
-0.00802447
-0.0463452
-0.00135992
-0.0516102
-0.0407251
-0.0471632
-0.196122
-0.0716905
-0.0803233
-0.116507
-0.083637
-0.0433059
-0.0486219
-0.0615472
-0.0156101
-0.0128415
-0.00818469
-0.0471412
-0.0565144
-0.0832297
-0.126514
-0.113881
-0.0863753
-0.101251
-0.0906648
-0.085497
-0.274169
-0.207691
-0.19995
-0.223659
-0.266551
-0.223946
-0.22925
-0.387532
-0.246379
-0.390619
-0.267441
-0.394904
-0.310172
-0.388493
-0.284776
-0.292521
-0.283094
-0.251268
-0.251617
-0.297408
-0.248237
-0.278259
-0.398126
-0.261814
-0.413369
-0.277047
-0.281562
-0.209535
-0.251883
-0.239473
-0.287864
-0.238545
-0.234983
-0.286855
-0.240666
-0.268731
-0.249258
-0.281673
-0.244065
-0.272994
-0.0728551
-0.125731
-0.100383
-0.155676
-0.107935
-0.0614613
-0.149616
-0.03715
-0.0259971
-0.0468322
-0.0904611
-0.024796
-0.0542831
-0.0794666
-0.0272448
-0.0763375
-0.0766157
0.0373621
0.0233247
-0.0674282
-0.02516
-0.110185
-0.0539235
-0.0589528
-0.256546
-0.0670623
-0.160608
-0.240506
-0.100856
-0.209357
-0.0789229
-0.0615348
-0.0711259
-0.0357665
-0.235316
-0.0328858
-0.0664481
-0.0370204
-0.0217095
-0.0246345
-0.0716538
-0.040933
-0.0946479
-0.168321
-0.133645
-0.191318
-0.121564
-0.119568
-0.171776
-0.0748211
-0.0904603
-0.0865892
-0.0997446
-0.083159
-0.0801333
-0.0861835
-0.0596363
-0.0558702
-0.0350788
-0.0701917
-0.0414124
-0.0534396
-0.0826469
-0.0692383
-0.0742537
-0.102323
-0.0697549
-0.0790735
-0.0630618
-0.0817973
-0.148725
-0.134926
-0.151009
-0.148868
-0.153905
-0.154058
-0.14278
-0.126302
-0.147992
-0.0882239
-0.110931
-0.0935988
-0.120458
-0.142977
-0.130599
-0.102314
-0.141529
-0.112713
-0.135001
-0.0976267
-0.141457
-0.0391313
-0.0219893
-0.0272586
-0.0649027
-0.0186225
-0.0468199
-0.0513894
-0.0449191
-0.0387026
-0.0533488
-0.0877957
-0.0593422
-0.0381834
-0.0495503
-0.0503257
-0.069531
-0.0653298
-0.0900762
-0.0571489
-0.063856
-0.0532379
0.0154108
0.0476203
-0.0132075
-0.0463419
-0.0161809
0.018956
0.0410762
0.0263101
0.0785801
0.0421614
0.0207814
0.0526352
0.0161551
0.0375759
0.00924845
-0.0251045
-0.044083
0.0115666
-0.0193749
-0.00138165
0.034846
-0.120621
-0.0952751
-0.121779
-0.116141
-0.115159
-0.140861
-0.120825
-0.110518
-0.149146
-0.0839391
-0.0954974
-0.115714
-0.0792401
-0.149252
-0.105039
-0.0683735
-0.142718
-0.0924015
-0.0988896
-0.0741941
-0.149268
-0.00412779
0.0254482
0.0299427
0.0111025
0.0178148
0.00597912
-0.0124948
-0.0251311
-0.0349425
-0.0482418
-0.0692991
-0.0322707
-0.0424361
-0.0217293
-0.0183956
-0.0311687
0.00331653
-0.0657249
-0.010294
-0.0371321
-0.0162641
-0.0770155
-0.0746513
-0.114693
-0.122862
-0.124326
-0.0757168
-0.0770055
-0.044216
-0.0829789
-0.118243
-0.119157
-0.0449005
-0.0745853
-0.0323751
0.00738169
-0.00138631
-0.042835
0.00990146
-0.0359957
-0.0399845
-0.0191293
-0.075882
0.0561033
-0.0554982
0.0675409
-0.0709604
-0.0239288
-0.0318509
-0.0403049
-0.00246808
0.00692938
0.00957744
-0.0395629
-0.0336448
-0.0790419
-0.11772
-0.122654
-0.0823498
-0.125007
-0.0832764
-0.0778547
-0.045306
-0.119924
-0.0581863
-0.121184
-0.0717048
-0.0481795
-0.209253
-0.180975
-0.167507
-0.143753
-0.212149
-0.16491
-0.178518
-0.240546
-0.259733
-0.248181
-0.290704
-0.211831
-0.144282
-0.143937
-0.210721
-0.247403
-0.277019
-0.240713
-0.209776
-0.276056
-0.210848
-0.247072
-0.248075
-0.213262
-0.259142
-0.240691
-0.245658
-0.271442
-0.211894
-0.213326
-0.144732
-0.215363
-0.144075
-0.207351
-0.143727
-0.163417
-0.176997
-0.163929
-0.177584
-0.206688
-0.0804691
-0.0755058
-0.122081
-0.110191
-0.0768455
-0.0787321
-0.121711
-0.0362811
-0.0135843
0.0473295
-0.0498535
0.0294858
-0.0349064
-0.0274256
-0.0587316
-0.0252889
-0.123164
-0.0363457
-0.121875
-0.0620921
-0.0571397
-0.12063
-0.0534318
-0.0403204
-0.0507487
-0.12157
-0.0822031
-0.110951
-0.0797553
-0.122288
-0.078443
-0.122112
-0.0832526
-0.100335
0.0607383
-0.153714
-0.149033
-0.0977803
0.0556517
-0.0804177
0.190272
0.0497658
-0.00425478
-0.0216518
0.0723356
-0.0658912
-0.0968333
-0.136916
0.0319113
-0.14622
0.0523049
-0.0825822
-0.209094
-0.169073
-0.145649
-0.177728
-0.21019
-0.167066
-0.177405
-0.239069
-0.306851
-0.241919
-0.306291
-0.213192
-0.14436
-0.211216
-0.145965
-0.248458
-0.278332
-0.209568
-0.237954
-0.247783
-0.209198
-0.279971
-0.214175
-0.154355
-0.218065
-0.14751
-0.207867
-0.14484
-0.163973
-0.177124
-0.207241
-0.165058
-0.177124
-0.24951
-0.208964
-0.283455
-0.237699
-0.250171
-0.209155
-0.282067
-0.049639
0.0300311
0.0373242
0.00881755
0.0329558
0.00649146
-0.0616014
-0.0670949
-0.0216959
-0.123569
-0.00793291
-0.0629732
-0.125286
-0.0691352
-0.134362
0.0223681
-0.00171021
-0.0788174
-0.126668
-0.701926
-0.682702
-0.663897
-0.673957
-0.718978
-0.722659
-0.743291
-0.727556
-0.775133
-0.731321
-0.730096
-0.725325
-0.768502
-0.694916
-0.661211
-0.659891
-0.66647
-0.692773
-0.713117
-0.719275
-0.612692
-0.615063
-0.638436
-0.608291
-0.625964
-0.578662
-0.575846
-0.596112
-0.574764
-0.588235
-0.58254
-0.5752
-0.588542
-0.584037
-0.591246
-0.585253
-0.593247
-0.598381
-0.581449
-0.576591
-0.598993
-0.585617
-0.594589
-0.610154
-0.63457
-0.622333
-0.624035
-0.608656
-0.663285
-0.659482
-0.708608
-0.690113
-0.708231
-0.722543
-0.693779
-0.734213
-0.767623
-0.745905
-0.74434
-0.745515
-0.72679
-0.723297
-0.732849
-0.731971
-0.704164
-0.707539
-0.69436
-0.698194
-0.710527
-0.703326
-0.644936
-0.652177
-0.691719
-0.651966
-0.696257
-0.719644
-0.74499
-0.725995
-0.755514
-0.713519
-0.752566
-0.718981
-0.723156
-0.758754
-0.701945
-0.649736
-0.65897
-0.696328
-0.654059
-0.719009
-0.735205
-0.718126
-0.762595
-0.628592
-0.612681
-0.635057
-0.626033
-0.613343
-0.56778
-0.56762
-0.566344
-0.569407
-0.582011
-0.580769
-0.568969
-0.587361
-0.579704
-0.584077
-0.58624
-0.630882
-0.633183
-0.619486
-0.610576
-0.61664
-0.634153
-0.635008
-0.633422
-0.635767
-0.688455
-0.652272
-0.689262
-0.653277
-0.69456
-0.656536
-0.683075
-0.729982
-0.742507
-0.708904
-0.767197
-0.726843
-0.722981
-0.735848
-0.718094
-0.76598
-0.682379
-0.656156
-0.660362
-0.703674
-0.658621
-0.678552
-0.687161
-0.858162
-0.832491
-0.875135
-0.880533
-0.845279
-0.846888
-0.829191
-0.797033
-0.814236
-0.834933
-0.792975
-0.835159
-0.828262
-0.863299
-0.8655
-0.880784
-0.860879
-0.850102
-0.93433
-0.916766
-0.905473
-0.954042
-0.88976
-0.978913
-0.974883
-0.888487
-0.928989
-0.972266
-1.03468
-1.05614
-0.975565
-1.0358
-0.97536
-0.970333
-0.973615
-0.959597
-1.03993
-1.05077
-0.966549
-1.03084
-0.969332
-0.935426
-0.936679
-0.912568
-0.913726
-0.924949
-0.894693
-0.925109
-0.974072
-0.964209
-0.949756
-0.96369
-0.911813
-0.904511
-0.906555
-0.944669
-0.91892
-0.939387
-0.942931
-0.835743
-0.853318
-0.870668
-0.853075
-0.85414
-0.84333
-0.862289
-0.86893
-0.838293
-0.848785
-0.843549
-0.894199
-0.860462
-0.857544
-0.836438
-0.865747
-0.854155
-0.858398
-0.831994
-0.826112
-0.833276
-0.835179
-0.855149
-0.833962
-0.796686
-0.814047
-0.840426
-0.831746
-0.822287
-0.892266
-0.833283
-0.896591
-0.834374
-0.830346
-0.894208
-0.822652
-0.831241
-0.897422
-0.825146
-0.992552
-1.06367
-1.0046
-1.0404
-0.994524
-1.0046
-1.03754
-0.965209
-0.930722
-0.9461
-0.956672
-0.963828
-0.983733
-0.985652
-0.95533
-0.952741
-0.930516
-0.951072
-0.980926
-0.991442
-0.989854
-1.04309
-0.992407
-0.987133
-1.03981
-0.840161
-0.841951
-0.916482
-0.894072
-0.89653
-0.848135
-0.834196
-0.842736
-0.886702
-0.835308
-0.915468
-0.838245
-0.894425
-0.837972
-0.962751
-0.927289
-0.947528
-0.968726
-0.939095
-0.963464
-0.970093
-0.959108
-0.926348
-0.937343
-0.973531
-0.988735
-1.04026
-1.00072
-0.987678
-0.95769
-0.933176
-0.945561
-0.950214
-0.942747
-0.945752
-0.961378
-0.949995
-0.937206
-0.934867
-0.982222
-1.00532
-0.993052
-1.04116
-1.00094
-0.988088
-0.790609
-0.797185
-0.804795
-0.764594
-0.791354
-0.819935
-0.8396
-0.800392
-0.826668
-0.770756
-0.798981
-0.806647
-0.763447
-0.799605
-0.759168
-0.764831
-0.836381
-0.845275
-0.765035
-0.807777
-0.836468
-0.210876
-0.196866
-0.160949
-0.202165
-0.216617
-0.19634
-0.165502
-0.195256
-0.24151
-0.182563
-0.261969
-0.200798
-0.239852
-0.234696
-0.223
-0.187477
-0.229623
-0.20077
-0.244122
-0.248423
-0.250482
-0.211326
-0.213839
-0.194729
-0.221762
-0.199439
-0.233641
-0.211554
-0.197883
-0.235962
-0.201706
-0.199856
-0.215356
-0.226562
-0.201192
-0.166327
-0.195344
-0.185865
-0.207093
-0.184707
-0.188896
-0.202941
-0.147169
-0.212206
-0.182521
-0.193205
-0.193549
-0.200688
-0.157932
-0.191957
-0.154325
-0.196953
-0.170951
-0.182094
-0.185486
-0.196776
-0.17843
-0.188856
-0.211825
-0.182975
-0.185997
-0.201715
-0.152884
-0.205916
-0.198709
-0.190643
-0.188616
-0.198475
-0.195386
-0.187786
-0.191749
-0.190522
-0.190574
-0.191432
-0.152123
-0.192846
-0.179975
-0.200536
-0.194532
-0.174933
-0.198053
-0.197903
-0.205547
-0.222281
-0.175327
-0.199163
-0.20915
-0.147236
-0.22203
-0.202025
-0.188207
-0.20723
-0.218309
-0.192067
-0.218886
-0.213518
-0.24858
-0.153145
-0.200702
-0.207674
-0.187802
-0.17887
-0.204106
-0.152784
-0.186772
-0.239251
-0.265885
-0.229356
-0.232119
-0.241157
-0.224933
-0.234327
-0.253023
-0.218855
-0.256744
-0.219155
-0.205068
-0.188773
-0.181356
-0.217457
-0.187953
-0.191404
-0.213488
-0.184274
-0.227588
-0.262923
-0.192903
-0.239054
-0.244125
-0.217783
-0.18348
-0.203046
-0.221267
-0.20127
-0.215915
-0.172296
-0.237632
-0.188808
-0.185142
-0.187974
-0.193773
-0.187991
-0.185433
-0.191157
-0.187245
-0.166708
-0.21233
-0.189448
-0.23528
-0.206371
-0.223315
-0.185706
-0.245062
-0.228568
-0.195224
-0.179575
-0.20247
-0.206705
-0.195614
-0.210798
-0.179344
-0.202879
-0.219096
-0.182016
-0.205413
-0.207885
-0.192536
-0.166436
-0.204884
-0.181046
-0.204137
-0.196392
-0.236705
-0.0492063
-0.126083
-0.0460904
-0.0998343
-0.147339
-0.126238
-0.122302
-0.112468
-0.128829
-0.121966
-0.077827
-0.08373
-0.186095
-0.175956
-0.136589
-0.131931
-0.132127
-0.163446
-0.132676
-0.10104
-0.142775
-0.103522
-0.152055
-0.179304
-0.14905
-0.137586
-0.145102
-0.116522
-0.099391
-0.135094
-0.107878
-0.117484
-0.122886
-0.125032
-0.118795
-0.118205
-0.137578
-0.171067
-0.190681
-0.14558
-0.167093
-0.135187
-0.142856
-0.04489
-0.0700923
-0.0208413
-0.0320759
-0.0447982
-0.0540769
-0.066986
-0.0925509
-0.132072
-0.0679814
-0.096439
-0.117903
-0.0976903
-0.126915
-0.122621
-0.0922123
-0.117032
-0.0816929
-0.0925907
-0.0806536
-0.133412
-0.0876524
-0.0872332
-0.129032
-0.13626
-0.0266325
-0.146609
-0.0986613
-0.058139
-0.0364115
-0.0109083
-0.0258744
-0.0252541
-0.0638076
-0.0541113
-0.0908544
-0.0900454
-0.0627329
-0.0160698
-0.137118
-0.101289
-0.127241
-0.126108
-0.113608
-0.123868
-0.14139
-0.131218
-0.188625
-0.151038
-0.112571
-0.140956
-0.157346
-0.182692
-0.136291
-0.103134
-0.137328
-0.115655
-0.102154
-0.145485
-0.147815
-0.129158
-0.0698946
-0.157212
-0.143266
-0.120296
-0.0386402
-0.059553
0.00498205
-0.103727
0.0297248
-0.147373
-0.103112
-0.102005
-0.166335
-0.169689
-0.145121
-0.0896229
-0.0493173
-0.0581903
-0.0227687
-0.0777797
-0.0258187
-0.126488
-0.0817276
-0.132979
-0.159784
-0.16552
-0.134347
-0.121662
-0.136703
-0.132298
-0.111494
-0.176598
-0.180545
-0.102916
-0.0928646
-0.154141
-0.151648
-0.125121
-0.133396
-0.134015
-0.125818
-0.164935
-0.160539
-0.181643
-0.131668
-0.12079
-0.0928391
-0.1334
-0.139382
-0.147716
-0.1328
-0.0971458
-0.128906
-0.142971
-0.130679
-0.116207
-0.129709
-0.106057
-0.133783
-0.174469
-0.189856
-0.136272
-0.131848
-0.0860471
-0.157763
-0.123029
-0.149162
-0.127439
-0.126023
-0.135771
-0.119288
-0.16033
-0.156766
-0.149388
-0.127473
-0.100053
-0.134183
-0.140375
-0.0966037
-0.102576
-0.0774305
-0.129872
-0.102264
-0.133195
-0.0850016
-0.118642
-0.115825
-0.133464
-0.102643
-0.688446
-0.647486
-0.656879
-0.693552
-0.648317
-0.695127
-0.685126
-0.710217
-0.748177
-0.702329
-0.736509
-0.703731
-0.75242
-0.682616
-0.657267
-0.646698
-0.686285
-0.647405
-0.682274
-0.68224
-0.726687
-0.745471
-0.757566
-0.732181
-0.739376
-0.7502
-0.579804
-0.590622
-0.631522
-0.584037
-0.589724
-0.557034
-0.551729
-0.58093
-0.548571
-0.573725
-0.591047
-0.575421
-0.582063
-0.578457
-0.628663
-0.585065
-0.587491
-0.586595
-0.667037
-0.689453
-0.699882
-0.666035
-0.697688
-0.649157
-0.66733
-0.694481
-0.696378
-0.659053
-0.696931
-0.735591
-0.748763
-0.712228
-0.728894
-0.719356
-0.741368
-0.699344
-0.667733
-0.659678
-0.711637
-0.696132
-0.659367
-0.715288
-0.739688
-0.744411
-0.757522
-0.734853
-0.713103
-0.750414
-0.647226
-0.689793
-0.678221
-0.703178
-0.645615
-0.70129
-0.677026
-0.707071
-0.759823
-0.702577
-0.709314
-0.698535
-0.758105
-0.705293
-0.709046
-0.752991
-0.697222
-0.704371
-0.756496
-0.591304
-0.583737
-0.619468
-0.612799
-0.592214
-0.5843
-0.606888
-0.562726
-0.537685
-0.562555
-0.539105
-0.595153
-0.593355
-0.593024
-0.620739
-0.582387
-0.590676
-0.583246
-0.609857
-0.593188
-0.59356
-0.676605
-0.647809
-0.670972
-0.6919
-0.693662
-0.712862
-0.708089
-0.649189
-0.663907
-0.663371
-0.640595
-0.678971
-0.702766
-0.703073
-0.697671
-0.639317
-0.704523
-0.703479
-0.711518
-0.696015
-0.704047
-0.748263
-0.735643
-0.702495
-0.699873
-0.743148
-0.704809
-0.705303
-0.71173
-0.75023
-0.733379
-0.703258
-0.70821
-0.743452
-1.0171
-1.04616
-1.05617
-1.00646
-1.00179
-1.05625
-1.02147
-0.976586
-0.930413
-0.924505
-0.980178
-0.93001
-1.00844
-1.05351
-1.07069
-1.01023
-0.981637
-0.933376
-0.924122
-0.973921
-0.929502
-0.979296
-0.979512
-0.975829
-0.938777
-0.938917
-0.939045
-0.990943
-0.979916
-1.02559
-1.04861
-1.0703
-1.01873
-0.994169
-0.979108
-0.935937
-0.941381
-0.974547
-0.940268
-0.975215
-0.991935
-0.816745
-0.781645
-0.780737
-0.81645
-0.779482
-0.816424
-0.828645
-0.816602
-0.791362
-0.788395
-0.809783
-0.850308
-0.850859
-0.890978
-0.858614
-0.861719
-0.817166
-0.761974
-0.780012
-0.84694
-0.862483
-0.900979
-0.857485
-0.833441
-0.923015
-0.918955
-0.803864
-0.772486
-0.779043
-0.811139
-0.77044
-0.805475
-0.825249
-0.780211
-0.764061
-0.836032
-0.909852
-0.841147
-0.760242
-0.75066
-0.850943
-0.89004
-0.852941
-0.829217
-0.975359
-0.91763
-0.92
-1.01696
-1.08723
-1.02031
-1.07187
-1.01723
-1.01523
-1.07145
-0.96926
-0.984051
-0.921324
-0.939329
-0.973184
-0.916811
-0.97589
-1.01188
-1.06554
-1.01615
-1.06776
-1.01446
-1.00741
-1.07356
-0.832173
-0.850926
-0.829898
-0.790976
-0.779919
-0.821664
-0.833772
-0.842459
-0.902798
-0.835169
-0.845211
-0.828989
-0.779821
-0.778474
-0.812067
-0.832354
-0.836062
-0.834103
-0.892017
-0.845934
-0.903996
-0.845387
-0.849593
-0.977442
-0.948787
-0.912435
-0.982146
-0.919919
-1.00345
-0.985427
-0.954568
-0.961414
-0.982405
-0.837161
-0.854905
-0.810936
-0.79723
-0.793076
-0.825471
-0.853718
-0.853798
-0.899734
-0.909286
-0.851909
-0.919872
-0.854179
-0.807176
-0.780762
-0.791072
-0.812968
-0.848446
-0.894585
-0.847019
-0.899198
-0.851569
-0.854935
-0.902237
-0.837495
-0.828292
-0.966639
-0.926981
-0.989477
-1.01488
-1.00179
-0.927641
-0.969425
-0.992118
-0.220932
-0.186549
-0.18822
-0.219444
-0.204092
-0.189507
-0.198184
-0.193978
-0.20695
-0.22356
-0.204001
-0.207561
-0.174707
-0.212514
-0.205612
-0.192924
-0.189029
-0.205288
-0.164267
-0.167212
-0.245999
-0.183961
-0.212925
-0.201326
-0.212077
-0.221472
-0.21043
-0.204594
-0.186437
-0.202102
-0.217995
-0.204317
-0.16417
-0.23169
-0.203083
-0.201447
-0.19832
-0.203169
-0.13816
-0.206367
-0.213182
-0.172271
-0.23599
-0.216172
-0.211463
-0.21645
-0.232624
-0.211507
-0.272573
-0.208805
-0.187431
-0.232745
-0.189495
-0.237419
-0.169891
-0.207057
-0.242172
-0.284795
-0.156885
-0.201541
-0.202608
-0.196294
-0.199114
-0.204787
-0.209346
-0.204007
-0.208236
-0.219337
-0.191301
-0.195399
-0.19543
-0.213691
-0.220921
-0.200694
-0.214128
-0.180136
-0.196267
-0.203832
-0.217337
-0.211485
-0.213223
-0.211104
-0.190116
-0.198856
-0.170232
-0.212123
-0.193581
-0.181989
-0.247692
-0.183526
-0.189245
-0.224793
-0.207156
-0.197698
-0.165474
-0.202301
-0.212512
-0.210973
-0.199559
-0.171936
-0.250703
-0.253754
-0.19069
-0.185095
-0.194908
-0.207088
-0.223662
-0.205391
-0.217912
-0.200083
-0.209679
-0.207958
-0.16977
-0.19069
-0.187609
-0.181267
-0.219281
-0.190453
-0.210996
-0.224782
-0.168009
-0.184814
-0.213017
-0.198151
-0.23405
-0.294101
-0.23249
-0.210383
-0.225363
-0.267148
-0.18534
-0.204898
-0.215975
-0.236542
-0.207487
-0.220723
-0.199533
-0.22974
-0.227723
-0.196526
-0.180239
-0.245383
-0.223926
-0.227448
-0.210974
-0.233065
-0.210909
-0.233158
-0.206852
-0.215701
-0.222948
-0.299564
-0.235457
-0.202653
-0.22457
-0.210195
-0.232582
-0.251036
-0.239968
-0.213314
-0.212939
-0.189182
-0.204153
-0.217671
-0.224668
-0.204714
-0.218057
-0.245172
-0.186626
-0.208409
-0.21348
-0.191677
-0.201732
-0.188349
-0.171444
-0.212756
-0.185713
-0.205174
-0.196167
-0.20776
-0.215451
-0.179488
-0.168098
-0.208825
-0.200298
-0.201704
-0.13533
-0.139854
-0.104607
-0.149556
-0.162999
-0.133599
-0.142178
-0.171531
-0.069634
-0.0280131
-0.15258
-0.0960221
-0.118719
-0.13215
-0.052917
-0.0636665
-0.0902009
-0.0748931
-0.0871291
-0.0892453
-0.0583585
-0.031991
-0.0850694
-0.134694
-0.167285
-0.12332
-0.178282
-0.144226
-0.150591
-0.147527
-0.106694
-0.177039
-0.0928619
-0.11732
-0.138453
-0.112719
-0.174465
-0.12261
-0.0452917
-0.0539503
-0.0988108
-0.0525174
-0.100166
-0.100363
-0.191957
-0.0249873
-0.0513647
-0.130195
-0.0560896
-0.0556309
-0.0982645
-0.120853
-0.137963
-0.160635
-0.122994
-0.182125
-0.151257
-0.109611
-0.166563
-0.141803
-0.16565
-0.160783
-0.148248
-0.134194
-0.167226
-0.169304
-0.164097
-0.0776432
-0.145888
-0.137242
-0.0709492
-0.117771
-0.12919
-0.12802
-0.147837
-0.119587
-0.136137
-0.110834
-0.133794
-0.123766
-0.14741
-0.131503
-0.11309
-0.184193
-0.167298
-0.123832
-0.0975959
-0.130309
-0.16281
-0.143709
-0.0924415
-0.149691
-0.145278
-0.160623
-0.149782
-0.123077
-0.152023
-0.116092
-0.116665
-0.0597029
-0.0950677
-0.0539052
-0.133057
-0.108247
-0.119218
-0.121335
-0.161426
-0.107629
-0.133786
-0.105268
-0.0794696
-0.121581
-0.0992865
-0.154119
-0.101132
-0.10074
-0.166608
-0.107988
-0.16454
-0.147339
-0.151827
-0.0881831
-0.178387
-0.0646127
-0.172537
-0.17274
-0.155727
-0.163782
-0.12098
-0.171475
-0.094089
-0.162845
-0.197936
-0.0752008
-0.136026
-0.118365
-0.0915326
-0.157451
-0.166368
-0.111643
-0.0922918
-0.11956
-0.120588
-0.15839
-0.12326
-0.172821
-0.0932207
-0.117613
-0.142061
-0.0274511
-0.138014
-0.0244049
-0.120807
-0.0463695
-0.0910636
-0.0725843
-0.119492
-0.0917868
-0.0626744
-0.121696
-0.192366
-0.0947825
-0.0840226
-0.115045
-0.0999175
-0.0818322
-0.0813725
-0.107437
-0.147166
-0.0883957
-0.137238
-0.043506
-0.140004
-0.186042
-0.169929
-0.148657
-0.173757
-0.140978
-0.144517
-0.697737
-0.724798
-0.68372
-0.723516
-0.692105
-0.688915
-0.725007
-0.702863
-0.704631
-0.736593
-0.724783
-0.705775
-0.698688
-0.728723
-0.584339
-0.619092
-0.589204
-0.610484
-0.594943
-0.584122
-0.617274
-0.572185
-0.533799
-0.557478
-0.534419
-0.559858
-0.555542
-0.563312
-0.591962
-0.580508
-0.609215
-0.578599
-0.618287
-0.581495
-0.6165
-0.577837
-0.620602
-0.654617
-0.679057
-0.628983
-0.678808
-0.700145
-0.680709
-0.657921
-0.66985
-0.631312
-0.679725
-0.680973
-0.679587
-0.706218
-0.748646
-0.708221
-0.755349
-0.706843
-0.704613
-0.746552
-0.704651
-0.703891
-0.74551
-0.754664
-0.705358
-0.70243
-0.745679
-0.619657
-0.650249
-0.68069
-0.687166
-0.618418
-0.686591
-0.724413
-0.696092
-0.651546
-0.668865
-0.620527
-0.684673
-0.617183
-0.683631
-0.726866
-0.700641
-0.690199
-0.726908
-0.682787
-0.732207
-0.689245
-0.683323
-0.727789
-0.691101
-0.694469
-0.724318
-0.726514
-0.690314
-0.691391
-0.724624
-0.57203
-0.573177
-0.609589
-0.622483
-0.570983
-0.573649
-0.629062
-0.54975
-0.538952
-0.547922
-0.540178
-0.550351
-0.554985
-0.574042
-0.610313
-0.577696
-0.619653
-0.57661
-0.575147
-0.629702
-0.549533
-0.54873
-0.669258
-0.622224
-0.614397
-0.609133
-0.675457
-0.751534
-0.680828
-0.684273
-0.703896
-0.752331
-0.684297
-0.611818
-0.605623
-0.676051
-0.608817
-0.67775
-0.642771
-0.659027
-0.630022
-0.665074
-0.640279
-0.686223
-0.736905
-0.689708
-0.646098
-0.667747
-0.62249
-0.664951
-0.642467
-0.69491
-0.728494
-0.694789
-0.676428
-0.704836
-0.728158
-0.730897
-0.681563
-0.698601
-0.727611
-0.834297
-0.887904
-0.855127
-0.897988
-0.820205
-0.764146
-0.758455
-0.76096
-0.813296
-0.824155
-0.769311
-0.758112
-0.760324
-0.818917
-0.851192
-0.882677
-0.832178
-0.880151
-0.829037
-0.854238
-0.883352
-0.833595
-0.873712
-0.908801
-0.829964
-0.904199
-0.972517
-0.913979
-0.926055
-0.965556
-0.916656
-1.08596
-1.00539
-1.00867
-0.906686
-0.918227
-0.978859
-0.980163
-0.91392
-0.849538
-0.897067
-0.844164
-0.875184
-0.838885
-0.795337
-0.76051
-0.826396
-0.795133
-0.854408
-0.854209
-0.909196
-0.891439
-0.855662
-0.855675
-0.881079
-0.849702
-0.829623
-0.882285
-0.835712
-0.786288
-0.758501
-0.795267
-0.815133
-0.844307
-0.88112
-0.83956
-0.879227
-0.848329
-0.837894
-0.874912
-0.900844
-0.910517
-0.947553
-0.969692
-0.918857
-0.919976
-0.964512
-0.926187
-0.980124
-1.08806
-1.00995
-1.02467
-0.95215
-0.905095
-0.922984
-0.982059
-0.966284
-0.914929
-0.915639
-0.93357
-0.831356
-0.881788
-0.846757
-0.876968
-0.813312
-0.758635
-0.741039
-0.756458
-0.813491
-0.805437
-0.781582
-0.744314
-0.761919
-0.757982
-0.796071
-0.797465
-0.835223
-0.862326
-0.833943
-0.868296
-0.769648
-0.771524
-0.978903
-0.887306
-0.906572
-0.950499
-0.984284
-0.994511
-0.965744
-0.959458
-0.905253
-0.899435
-0.95987
-0.898705
-0.961217
-0.989289
-1.08692
-1.00664
-1.00531
-1.00188
-0.95468
-0.914234
-0.904635
-0.952592
-0.95291
-0.900593
-0.951994
-0.977452
-0.90515
-0.903946
-0.967277
-0.986761
-0.737041
-0.736513
-0.851439
-0.88332
-0.855177
-0.8103
-0.894544
-0.80366
-0.756184
-0.770887
-0.807531
-0.757435
-0.809274
-0.801162
-0.79791
-0.778441
-0.758556
-0.77211
-0.758208
-0.793877
-0.807895
-0.848704
-0.809908
-0.875615
-0.808969
-0.892524
-0.848636
-0.884996
-0.884732
-0.951115
-0.988103
-0.96958
-0.921392
-0.9194
-0.982438
-0.964536
-0.926974
-1.00052
-1.08902
-0.999557
-1.00646
-0.98933
-0.903153
-0.913934
-0.983084
-0.915544
-0.91447
-0.951626
-0.957761
-0.915447
-0.948673
-0.227108
-0.195571
-0.262461
-0.19002
-0.267826
-0.222525
-0.215288
-0.258985
-0.216215
-0.207141
-0.179792
-0.226434
-0.216109
-0.218173
-0.204254
-0.248302
-0.187662
-0.179581
-0.227669
-0.209622
-0.215198
-0.231095
-0.202252
-0.188878
-0.222043
-0.194251
-0.214938
-0.236413
-0.253989
-0.205356
-0.247539
-0.210646
-0.251375
-0.228378
-0.215125
-0.204715
-0.218303
-0.255569
-0.208157
-0.201766
-0.220781
-0.198605
-0.196989
-0.186322
-0.204993
-0.213095
-0.195959
-0.1985
-0.194452
-0.198651
-0.189476
-0.194475
-0.207857
-0.188083
-0.197768
-0.193735
-0.197957
-0.20688
-0.295797
-0.211562
-0.224941
-0.211215
-0.224271
-0.248131
-0.195819
-0.188939
-0.23854
-0.276176
-0.220567
-0.270262
-0.207925
-0.242468
-0.197101
-0.258871
-0.208487
-0.215307
-0.207793
-0.192186
-0.226408
-0.268572
-0.202476
-0.196873
-0.29304
-0.206483
-0.220506
-0.208198
-0.201146
-0.198503
-0.208031
-0.221974
-0.21745
-0.213447
-0.204837
-0.217412
-0.28671
-0.200644
-0.21202
-0.206602
-0.23158
-0.196785
-0.26561
-0.20908
-0.215725
-0.240597
-0.204678
-0.234881
-0.231531
-0.224155
-0.214766
-0.285868
-0.225447
-0.274067
-0.250477
-0.225646
-0.250941
-0.241085
-0.219627
-0.22134
-0.145022
-0.157368
-0.175804
-0.234206
-0.182911
-0.278515
-0.123253
-0.184929
-0.279799
-0.231368
-0.173411
-0.144211
-0.167328
-0.164914
-0.172819
-0.174895
-0.226575
-0.131989
-0.173832
-0.137825
-0.131561
-0.13815
-0.172817
-0.230172
-0.184586
-0.202041
-0.191319
-0.0853467
-0.151819
-0.139986
-0.116573
-0.109151
-0.0834611
-0.0595518
-0.0836968
-0.120486
-0.101798
-0.11169
-0.117744
-0.123732
-0.114824
-0.100603
-0.110418
-0.0831555
-0.0792667
-0.0759647
-0.141461
-0.0881427
-0.119059
-0.102694
-0.106715
-0.111998
-0.142506
-0.126066
-0.0992902
-0.145101
-0.114018
-0.098736
-0.128051
-0.123488
-0.200016
-0.201744
-0.191766
-0.134518
-0.194917
-0.12494
-0.159423
-0.181087
-0.139699
-0.186881
-0.133682
-0.150704
-0.187177
-0.121091
-0.118979
-0.132698
-0.168566
-0.138684
-0.130527
-0.113329
-0.153209
-0.155799
-0.191563
-0.171049
-0.120345
-0.108329
-0.0708465
0.00450768
-0.0707964
-0.110922
-0.104711
-0.076882
0.00214103
-0.076225
-0.138221
-0.158539
-0.115541
-0.140558
-0.130391
-0.207743
-0.144954
-0.227051
-0.128436
-0.194815
-0.280051
-0.163428
-0.213391
-0.265625
-0.185939
-0.19991
-0.181792
-0.188762
-0.185438
-0.171413
-0.169832
-0.14771
-0.171623
-0.17071
-0.174256
-0.177558
-0.260505
-0.193049
-0.203145
-0.153604
-0.201424
-0.132109
-0.197542
-0.15845
-0.178727
-0.146131
-0.208865
-0.164202
-0.175975
-0.157249
-0.172825
-0.183077
-0.145022
-0.123628
-0.0695186
-0.159581
-0.089769
-0.161782
-0.12099
-0.0728938
-0.177649
-0.221945
-0.156069
-0.23609
-0.175224
-0.179833
-0.134115
-0.239785
-0.0999764
-0.0731557
-0.236707
-0.135358
-0.0744426
-0.201831
-0.151114
-0.267244
-0.17671
-0.209409
-0.202747
-0.273946
-0.187874
-0.20037
-0.19803
-0.189174
-0.253023
-0.205491
-0.193979
-0.180632
-0.258793
-0.275115
-0.206382
-0.211783
-0.193991
-0.162789
-0.178077
-0.150439
-0.208576
-0.168535
-0.173447
-0.181694
-0.211658
-0.197024
-0.170024
-0.125867
-0.155506
-0.13898
-0.134366
-0.138665
-0.0660489
-0.0297262
-0.125638
-0.059088
-0.127751
-0.111809
-0.126861
-0.13689
-0.137842
-0.244086
-0.0301201
-0.068821
-0.136919
-0.0600369
-0.544986
-0.574143
-0.55148
-0.576861
-0.547783
-0.550048
-0.578113
-0.546227
-0.526752
-0.548943
-0.526141
-0.549535
-0.591496
-0.591202
-0.547699
-0.551541
-0.558475
-0.554975
-0.595424
-0.54298
-0.579996
-0.548806
-0.584735
-0.549639
-0.584843
-0.54202
-0.616693
-0.617288
-0.663875
-0.615737
-0.663698
-0.682036
-0.707905
-0.680476
-0.618532
-0.607446
-0.670264
-0.615927
-0.663115
-0.68064
-0.705609
-0.681605
-0.634629
-0.607826
-0.663432
-0.6598
-0.596953
-0.692959
-0.725213
-0.673826
-0.589432
-0.58845
-0.595211
-0.606454
-0.64595
-0.595112
-0.653597
-0.592656
-0.628448
-0.679831
-0.725893
-0.675325
-0.538248
-0.543437
-0.578472
-0.580772
-0.53685
-0.544994
-0.581917
-0.535958
-0.511231
-0.533158
-0.513588
-0.544352
-0.590645
-0.5467
-0.589437
-0.539554
-0.579376
-0.547299
-0.584
-0.540685
-0.546021
-0.583122
-0.543604
-0.587646
-0.541166
-0.588845
-0.624911
-0.635109
-0.593405
-0.600807
-0.595047
-0.619583
-0.633231
-0.604788
-0.589447
-0.640596
-0.693156
-0.672645
-0.677802
-0.630521
-0.690792
-0.695058
-0.689037
-0.587998
-0.58887
-0.641722
-0.600382
-0.607954
-0.632684
-0.598025
-0.635419
-0.633751
-0.630598
-0.604967
-0.637866
-0.593353
-0.640605
-0.593154
-0.622446
-0.69678
-0.720057
-0.695345
-0.588244
-0.587557
-0.630895
-0.605574
-0.642071
-0.594042
-0.627628
-0.641569
-0.593383
-0.690868
-0.719571
-0.692342
-0.58767
-0.587302
-0.816174
-0.812978
-0.884558
-0.816535
-0.811558
-0.880131
-0.771195
-0.734269
-0.742754
-0.77521
-0.740989
-0.768258
-0.773842
-0.772775
-0.774712
-0.749546
-0.74759
-0.744937
-0.776414
-0.768558
-0.81631
-0.802518
-0.864194
-0.812087
-0.878411
-0.818464
-0.754282
-0.775292
-0.752665
-0.947332
-0.899658
-0.900493
-0.958646
-1.01661
-1.02147
-0.961029
-0.96135
-0.905454
-0.905424
-0.962778
-0.958886
-0.905391
-1.01633
-1.05627
-1.00794
-1.07394
-1.00487
-1.0214
-1.09408
-0.986791
-0.904392
-0.985951
-0.885925
-0.992504
-1.01764
-0.818156
-0.799364
-0.885937
-0.81246
-0.8199
-0.888128
-0.798069
-0.758216
-0.802208
-0.765946
-0.797186
-0.760791
-0.818057
-0.829529
-0.809722
-0.870616
-0.846337
-0.82772
-0.868716
-0.786166
-0.770807
-0.75186
-0.762119
-0.755968
-0.778626
-0.812697
-0.716904
-0.790893
-0.76691
-0.774271
-0.719228
-0.768004
-0.796031
-0.983008
-0.903041
-0.906288
-0.964625
-1.00699
-1.04365
-1.00645
-1.04466
-1.00065
-1.01833
-1.04608
-0.97545
-1.06918
-0.990168
-1.06267
-0.985645
-0.929537
-0.906397
-0.978094
-0.97371
-1.04489
-1.01868
-1.03876
-0.809974
-0.815675
-0.852356
-0.85963
-0.796989
-0.80663
-0.859123
-0.773602
-0.732073
-0.723993
-0.779734
-0.729533
-0.775105
-0.778389
-0.773096
-0.775603
-0.723653
-0.728871
-0.728783
-0.779192
-0.771563
-0.810509
-0.844568
-0.799747
-0.861063
-0.813911
-0.796236
-0.8591
-0.810985
-0.811622
-0.722113
-0.777577
-0.784648
-0.785685
-0.723012
-0.785896
-0.801504
-0.80987
-0.946334
-0.908385
-0.880805
-0.892834
-0.941073
-0.958381
-1.0514
-0.965236
-1.04264
-0.953135
-0.875972
-0.873313
-0.879734
-0.953125
-0.951612
-1.00748
-0.976331
-1.0306
-0.810181
-0.788452
-0.729698
-0.788783
-0.78709
-0.782396
-0.729597
-0.787193
-0.792571
-0.788683
-0.803393
-0.815805
-0.857681
-0.876323
-0.805578
-0.816751
-0.855338
-0.7624
-0.723192
-0.721397
-0.759431
-0.723756
-0.761751
-0.760024
-0.765723
-0.768843
-0.729142
-0.723304
-0.725713
-0.769833
-0.765149
-0.799489
-0.869882
-0.805556
-0.835755
-0.815319
-0.844689
-0.800622
-0.953068
-0.917399
-0.927856
-0.941507
-0.991534
-1.08326
-0.990152
-1.06439
-0.982651
-1.03399
-0.978592
-1.02099
-0.982324
-0.98513
-1.03332
-0.966322
-0.934584
-0.977205
-0.934684
-0.986128
-1.01205
-0.980586
-1.06783
-0.234368
-0.266653
-0.227107
-0.222418
-0.261982
-0.22886
-0.219247
-0.224988
-0.262327
-0.232435
-0.228054
-0.221799
-0.214312
-0.269442
-0.227072
-0.255583
-0.21622
-0.307217
-0.220752
-0.248508
-0.265577
-0.231144
-0.21777
-0.253105
-0.231867
-0.223419
-0.227241
-0.254124
-0.224648
-0.233718
-0.247589
-0.254988
-0.243043
-0.304876
-0.264857
-0.296912
-0.292343
-0.294828
-0.250953
-0.256177
-0.331791
-0.246095
-0.271534
-0.239923
-0.246786
-0.266626
-0.256738
-0.251632
-0.240342
-0.28854
-0.269691
-0.249802
-0.256349
-0.239883
-0.304661
-0.274117
-0.259764
-0.356257
-0.293651
-0.253395
-0.248353
-0.248843
-0.2358
-0.240984
-0.236254
-0.269802
-0.243114
-0.246373
-0.235404
-0.21679
-0.236831
-0.267436
-0.243745
-0.204004
-0.220041
-0.232119
-0.216312
-0.241598
-0.298392
-0.312418
-0.260065
-0.285617
-0.249126
-0.280031
-0.238126
-0.254522
-0.258737
-0.219871
-0.216527
-0.30987
-0.243791
-0.235024
-0.232715
-0.223164
-0.234217
-0.222585
-0.228266
-0.236171
-0.223824
-0.308783
-0.2205
-0.24281
-0.241252
-0.245326
-0.270712
-0.244276
-0.225297
-0.232
-0.242789
-0.230631
-0.225346
-0.26062
-0.215714
-0.227664
-0.225748
-0.240459
-0.215988
-0.233931
-0.269102
-0.225031
-0.248649
-0.184201
-0.194094
-0.212603
-0.200394
-0.223238
-0.209493
-0.198197
-0.19385
-0.219632
-0.213636
-0.20153
-0.195422
-0.173261
-0.259979
-0.209489
-0.208863
-0.184608
-0.16443
-0.159278
-0.2108
-0.153886
-0.201538
-0.156979
-0.122147
-0.0675592
-0.0399236
-0.140172
-0.17373
-0.0692436
-0.11835
-0.129542
-0.179645
-0.0731644
-0.0671183
-0.172937
-0.0681417
-0.135173
-0.170594
-0.15529
-0.172671
-0.160995
-0.173873
-0.187575
-0.127795
-0.284238
-0.284705
-0.082988
-0.28047
-0.185266
-0.180805
-0.214371
-0.186953
-0.185116
-0.20309
-0.21724
-0.177704
-0.230543
-0.19034
-0.176147
-0.172816
-0.213443
-0.250547
-0.173582
-0.17181
-0.237572
-0.293472
-0.18886
-0.182069
-0.204228
-0.168365
-0.183426
-0.165539
-0.162018
-0.21026
-0.258344
-0.202371
-0.157596
-0.18996
-0.135939
-0.08178
-0.0993692
-0.243002
-0.0766768
-0.251169
-0.13633
-0.1359
-0.181452
-0.0679542
-0.0737987
-0.0710804
-0.136124
-0.25074
-0.167945
-0.189359
-0.178663
-0.229804
-0.18497
-0.194287
-0.17275
-0.214751
-0.147016
-0.175141
-0.218493
-0.180442
-0.196395
-0.214198
-0.23369
-0.189718
-0.191046
-0.25899
-0.25157
-0.201434
-0.198908
-0.165404
-0.203763
-0.18907
-0.194204
-0.244069
-0.25513
-0.218062
-0.125972
-0.239076
-0.328567
-0.332981
-0.265489
-0.122001
-0.23675
-0.16675
-0.187449
-0.180918
-0.17159
-0.176009
-0.190904
-0.172319
-0.143542
-0.0942302
-0.193928
-0.122258
-0.184715
-0.146569
-0.0935598
-0.165205
-0.19349
-0.177747
-0.191241
-0.177354
-0.189316
-0.165742
-0.141353
-0.169135
-0.12492
-0.0901972
-0.173251
-0.139897
-0.0935053
-0.211395
-0.265573
-0.175074
-0.157225
-0.216867
-0.254926
-0.17885
-0.239203
-0.240195
-0.268528
-0.228656
-0.275498
-0.243927
-0.223059
-0.249396
-0.233524
-0.212094
-0.199674
-0.162677
-0.193076
-0.190916
-0.19843
-0.183076
-0.196374
-0.180263
-0.148906
-0.184899
-0.176679
-0.181636
-0.218949
-0.176919
-0.133281
-0.0821693
-0.202111
-0.112806
-0.13179
-0.177754
-0.0850932
-0.180982
-0.15774
-0.176282
-0.283701
-0.178016
-0.177741
-0.262216
-0.13562
-0.166795
-0.114638
-0.0874368
-0.154606
-0.139018
-0.0851056
-0.519597
-0.553809
-0.529227
-0.553542
-0.524327
-0.525292
-0.550598
-0.49937
-0.50278
-0.508178
-0.501005
-0.519538
-0.565864
-0.571082
-0.516044
-0.521915
-0.571801
-0.52878
-0.574582
-0.515072
-0.551345
-0.518853
-0.542938
-0.521708
-0.545588
-0.512892
-0.623744
-0.593789
-0.583366
-0.614728
-0.596458
-0.615797
-0.633982
-0.601477
-0.594139
-0.618755
-0.669395
-0.701643
-0.626217
-0.662898
-0.589467
-0.592511
-0.625537
-0.58796
-0.606528
-0.627826
-0.597669
-0.630535
-0.622125
-0.615859
-0.641133
-0.707435
-0.651568
-0.634558
-0.611406
-0.593897
-0.578312
-0.612021
-0.606189
-0.601913
-0.631403
-0.623366
-0.628043
-0.705441
-0.629932
-0.62734
-0.591376
-0.59823
-0.589296
-0.602273
-0.612328
-0.578865
-0.599557
-0.593572
-0.601576
-0.600087
-0.614396
-0.623158
-0.637648
-0.705088
-0.633243
-0.630762
-0.511627
-0.511086
-0.537688
-0.52851
-0.511827
-0.512196
-0.531506
-0.487219
-0.481968
-0.4833
-0.484968
-0.512851
-0.560639
-0.515252
-0.552353
-0.510425
-0.540031
-0.515031
-0.53824
-0.511332
-0.512932
-0.535417
-0.51285
-0.51405
-0.508677
-0.548007
-0.605987
-0.590819
-0.569605
-0.562206
-0.568798
-0.616179
-0.58732
-0.578229
-0.560136
-0.56517
-0.57151
-0.609384
-0.627373
-0.65638
-0.61786
-0.619372
-0.612812
-0.620413
-0.62504
-0.659558
-0.631841
-0.620709
-0.559569
-0.562018
-0.576145
-0.563338
-0.569206
-0.58373
-0.570415
-0.585155
-0.572809
-0.62519
-0.570165
-0.592844
-0.571623
-0.596214
-0.575022
-0.617844
-0.641734
-0.62771
-0.682021
-0.631055
-0.631327
-0.583503
-0.574119
-0.627042
-0.573945
-0.598136
-0.581897
-0.619625
-0.59829
-0.580214
-0.639568
-0.626726
-0.674883
-0.63014
-0.63346
-0.558237
-0.568362
-0.782918
-0.789275
-0.823728
-0.844885
-0.788504
-0.781292
-0.824359
-0.775324
-0.831029
-0.767566
-0.819521
-0.775005
-0.821391
-0.771709
-0.822835
-0.756953
-0.796039
-0.74505
-0.711711
-0.742685
-0.824437
-0.787677
-0.796375
-0.755531
-0.709629
-0.742107
-0.922445
-0.867785
-0.871442
-0.89436
-0.873113
-0.915137
-0.968413
-1.05914
-0.96364
-1.05518
-0.932276
-0.863684
-0.873864
-0.941849
-0.871553
-0.994464
-1.02854
-0.996971
-1.05081
-0.833973
-0.840471
-0.795815
-0.821037
-0.798618
-0.823616
-0.79153
-0.806611
-0.825924
-0.796922
-0.821328
-0.803933
-0.831387
-0.797418
-0.805358
-0.827772
-0.75476
-0.842155
-0.751066
-0.708571
-0.765222
-0.756096
-0.763078
-0.704352
-0.756333
-0.837775
-0.770389
-0.748591
-0.911182
-0.866367
-0.837041
-0.893488
-0.863426
-0.909361
-0.926859
-0.966397
-1.0213
-0.909363
-0.920164
-0.951773
-1.01823
-0.91422
-0.84988
-0.859684
-0.919105
-0.860865
-0.926613
-0.910128
-0.982931
-1.02005
-0.99453
-0.927828
-1.01591
-0.766062
-0.763744
-0.82611
-0.80902
-0.758787
-0.764598
-0.815761
-0.767896
-0.829591
-0.763014
-0.819688
-0.770044
-0.759168
-0.819052
-0.774289
-0.816054
-0.775716
-0.713684
-0.730933
-0.747965
-0.748615
-0.714799
-0.748323
-0.814695
-0.762636
-0.775749
-0.870947
-0.873439
-0.873907
-0.841631
-0.850515
-0.897078
-0.899166
-0.83931
-0.878225
-0.92164
-0.96407
-0.91767
-0.949211
-0.910915
-0.920087
-0.963699
-0.870809
-0.849139
-0.865593
-0.837368
-0.86524
-0.838781
-0.869191
-0.924311
-0.92481
-0.953363
-0.980845
-0.923181
-0.926317
-0.966731
-0.773728
-0.857482
-0.763474
-0.693394
-0.763664
-0.756384
-0.74945
-0.694822
-0.752697
-0.858875
-0.768521
-0.764109
-0.759378
-0.765625
-0.804364
-0.795288
-0.764051
-0.766184
-0.795845
-0.757259
-0.786697
-0.760598
-0.789361
-0.764572
-0.792095
-0.754686
-0.88844
-0.874942
-0.843077
-0.898023
-0.84662
-0.911223
-0.880796
-0.925538
-1.02391
-0.923197
-0.932792
-0.916943
-1.01667
-0.893086
-0.877141
-0.853963
-0.925554
-0.899073
-0.850431
-0.91587
-0.922748
-0.925282
-0.990133
-0.917378
-0.925338
-1.00229
-0.301325
-0.294327
-0.287881
-0.28128
-0.345898
-0.303606
-0.286332
-0.249346
-0.246858
-0.292342
-0.340978
-0.24199
-0.282374
-0.263842
-0.266626
-0.271787
-0.26834
-0.256287
-0.243598
-0.244123
-0.282694
-0.258813
-0.24064
-0.286821
-0.285123
-0.284305
-0.297055
-0.296608
-0.298563
-0.29803
-0.283124
-0.293718
-0.319181
-0.304419
-0.312505
-0.293556
-0.282688
-0.281814
-0.29417
-0.292482
-0.283752
-0.284166
-0.290975
-0.322536
-0.271739
-0.296011
-0.273364
-0.300797
-0.280086
-0.317108
-0.284487
-0.311716
-0.286307
-0.277227
-0.293873
-0.278982
-0.303843
-0.285234
-0.295668
-0.321199
-0.277813
-0.259587
-0.265823
-0.271129
-0.245064
-0.266187
-0.266584
-0.259705
-0.270138
-0.382758
-0.29084
-0.283734
-0.270275
-0.311524
-0.275335
-0.255766
-0.267782
-0.247597
-0.237831
-0.255859
-0.266976
-0.253847
-0.23108
-0.202716
-0.202276
-0.186646
-0.223165
-0.240408
-0.197057
-0.236929
-0.239378
-0.237361
-0.259005
-0.241969
-0.249914
-0.241596
-0.233362
-0.227783
-0.262999
-0.256189
-0.247952
-0.227065
-0.243358
-0.235239
-0.188495
-0.283524
-0.200203
-0.248281
-0.197839
-0.237032
-0.265917
-0.269346
-0.169761
-0.205267
-0.167809
-0.181944
-0.200863
-0.182398
-0.171357
-0.146933
-0.0951625
-0.123911
-0.193818
-0.192675
-0.0987885
-0.146997
-0.146578
-0.184509
-0.128784
-0.103481
-0.189459
-0.101213
-0.145377
-0.167784
-0.174374
-0.180684
-0.189746
-0.189587
-0.166034
-0.184227
-0.298772
-0.194582
-0.283344
-0.159942
-0.191644
-0.192461
-0.222166
-0.147504
-0.193505
-0.198779
-0.21445
-0.281463
-0.206623
-0.195344
-0.258541
-0.204173
-0.217431
-0.189878
-0.202751
-0.239927
-0.250909
-0.215531
-0.262566
-0.242893
-0.215246
-0.228433
-0.220621
-0.277629
-0.279853
-0.225438
-0.201518
-0.201819
-0.262172
-0.175645
-0.194002
-0.196335
-0.189909
-0.200528
-0.199204
-0.202606
-0.179278
-0.227179
-0.185117
-0.197017
-0.186556
-0.176837
-0.230263
-0.179962
-0.205591
-0.194721
-0.226721
-0.189847
-0.230737
-0.178735
-0.228703
-0.236459
-0.226592
-0.213056
-0.250223
-0.226307
-0.20903
-0.251336
-0.240386
-0.235833
-0.269014
-0.243041
-0.246715
-0.327634
-0.252263
-0.244769
-0.231791
-0.253851
-0.247064
-0.32574
-0.246718
-0.232195
-0.217351
-0.338013
-0.201292
-0.234478
-0.282506
-0.204755
-0.261478
-0.288992
-0.257128
-0.244202
-0.249876
-0.258104
-0.251084
-0.29811
-0.246555
-0.255674
-0.247076
-0.215406
-0.203438
-0.191399
-0.160485
-0.194428
-0.226074
-0.209105
-0.207543
-0.200619
-0.151725
-0.192392
-0.180785
-0.211222
-0.254087
-0.206673
-0.209584
-0.211487
-0.178478
-0.183219
-0.253132
-0.217439
-0.210342
-0.213441
-0.21206
-0.186012
-0.265229
-0.224789
-0.288363
-0.347869
-0.264456
-0.347788
-0.217259
-0.353839
-0.293831
-0.227983
-0.23224
-0.218085
-0.256507
-0.227796
-0.238467
-0.222167
-0.236001
-0.254691
-0.268309
-0.231393
-0.259828
-0.22595
-0.233239
-0.239497
-0.232409
-0.257155
-0.254349
-0.261679
-0.243495
-0.227907
-0.229417
-0.265426
-0.249448
-0.230066
-0.241063
-0.225775
-0.232133
-0.177019
-0.25232
-0.210221
-0.206632
-0.207077
-0.209634
-0.177405
-0.17844
-0.232891
-0.197364
-0.22232
-0.178174
-0.201731
-0.220396
-0.466229
-0.46298
-0.471461
-0.461908
-0.488786
-0.512453
-0.516757
-0.473643
-0.492724
-0.501656
-0.497502
-0.507796
-0.567431
-0.559176
-0.556581
-0.575653
-0.561332
-0.576979
-0.572804
-0.566101
-0.558498
-0.553771
-0.568647
-0.608957
-0.625499
-0.614896
-0.643261
-0.611359
-0.612619
-0.625141
-0.566047
-0.549657
-0.552619
-0.570264
-0.567737
-0.558261
-0.566241
-0.580357
-0.563417
-0.57018
-0.578265
-0.608379
-0.609999
-0.642281
-0.651887
-0.611818
-0.606952
-0.625395
-0.586558
-0.554518
-0.547522
-0.574768
-0.573448
-0.545384
-0.578231
-0.569207
-0.633585
-0.594912
-0.630697
-0.597797
-0.571709
-0.639926
-0.58269
-0.502814
-0.507799
-0.582589
-0.573961
-0.577117
-0.58309
-0.550951
-0.508183
-0.58698
-0.585303
-0.543434
-0.567989
-0.532517
-0.570425
-0.537016
-0.584964
-0.570308
-0.605428
-0.641707
-0.649551
-0.602689
-0.573888
-0.647497
-0.46112
-0.444637
-0.457915
-0.447503
-0.464983
-0.511897
-0.470726
-0.511615
-0.464117
-0.511901
-0.461602
-0.511812
-0.586498
-0.570045
-0.527251
-0.531889
-0.527811
-0.587247
-0.568521
-0.615558
-0.512427
-0.50952
-0.6076
-0.606992
-0.609962
-0.608342
-0.599646
-0.592862
-0.572076
-0.571712
-0.598225
-0.611437
-0.60752
-0.575922
-0.606734
-0.595479
-0.609564
-0.572839
-0.596142
-0.617678
-0.506817
-0.508975
-0.623975
-0.584563
-0.531291
-0.528057
-0.566437
-0.527358
-0.567289
-0.583497
-0.581532
-0.532851
-0.568932
-0.527823
-0.567307
-0.52914
-0.586516
-0.59106
-0.645361
-0.59291
-0.620932
-0.575504
-0.587621
-0.633341
-0.588278
-0.503049
-0.583427
-0.502057
-0.582336
-0.613346
-0.576951
-0.532757
-0.566349
-0.530838
-0.586594
-0.565429
-0.528888
-0.592629
-0.578784
-0.615045
-0.617337
-0.584442
-0.610485
-0.627879
-0.593046
-0.505841
-0.502792
-0.622693
-0.791193
-0.726364
-0.746333
-0.726095
-0.711433
-0.718704
-0.779343
-0.758261
-0.75092
-0.718018
-0.708245
-0.657124
-0.718182
-0.868651
-0.817414
-0.815817
-0.884838
-0.879684
-0.819648
-0.869755
-0.910662
-0.964207
-0.911277
-1.00005
-0.879682
-0.914489
-0.962955
-0.866895
-0.828743
-0.865207
-0.83255
-0.888383
-0.865821
-0.826536
-0.908849
-0.930037
-0.993042
-0.955117
-0.898581
-0.903673
-0.961607
-0.806112
-0.9047
-0.92089
-0.91651
-0.930038
-0.805519
-0.890164
-0.916679
-0.919032
-0.938159
-0.723305
-0.800557
-0.708336
-0.62263
-0.662379
-0.723725
-0.620686
-0.729515
-0.715357
-0.673952
-0.651347
-0.628189
-0.721671
-0.798828
-0.716876
-0.714023
-0.864003
-0.813693
-0.802277
-0.879908
-0.810238
-0.868006
-0.878271
-0.897346
-0.936044
-0.930893
-0.967168
-0.941383
-0.895843
-0.940056
-0.860224
-0.799028
-0.802772
-0.863771
-0.806234
-0.871152
-0.853818
-0.896913
-0.931324
-0.952058
-0.965941
-0.900314
-0.944708
-0.944915
-0.73073
-0.74476
-0.730147
-0.600962
-0.6176
-0.638821
-0.594189
-0.65162
-0.608067
-0.672785
-0.623424
-0.622159
-0.600748
-0.659927
-0.740052
-0.709591
-0.721308
-0.817607
-0.822387
-0.861966
-0.911687
-0.924731
-0.905533
-0.817908
-0.87353
-0.868336
-0.888702
-0.933779
-0.897994
-0.82167
-0.786777
-0.797181
-0.824517
-0.829102
-0.779964
-0.8272
-0.867254
-0.926398
-0.860802
-0.953123
-0.866998
-0.863081
-0.929606
-0.871027
-0.889179
-0.954144
-0.929272
-0.875188
-0.88128
-0.929147
-0.705556
-0.785627
-0.712402
-0.637511
-0.637943
-0.717588
-0.625595
-0.709903
-0.686822
-0.631836
-0.630585
-0.621505
-0.701768
-0.788903
-0.715732
-0.71411
-0.834405
-0.806897
-0.790298
-0.825669
-0.7938
-0.830371
-0.830145
-0.89493
-0.930594
-0.914204
-0.930676
-0.896482
-0.910953
-0.928299
-0.83847
-0.806149
-0.798671
-0.845854
-0.84436
-0.796336
-0.836366
-0.891718
-0.897613
-0.937964
-0.929357
-0.905574
-0.886449
-0.928504
-0.27206
-0.273861
-0.27578
-0.26994
-0.276353
-0.266693
-0.269581
-0.272217
-0.265522
-0.281621
-0.294036
-0.270899
-0.281216
-0.272126
-0.273007
-0.291481
-0.289527
-0.276623
-0.27146
-0.28218
-0.269332
-0.27374
-0.277515
-0.30282
-0.281594
-0.277913
-0.275919
-0.277149
-0.317288
-0.367883
-0.28854
-0.279882
-0.394975
-0.274987
-0.321393
-0.298879
-0.2718
-0.29044
-0.283206
-0.333944
-0.302004
-0.343284
-0.285844
-0.290467
-0.282327
-0.282535
-0.319257
-0.267835
-0.319854
-0.27994
-0.268466
-0.301303
-0.34536
-0.310933
-0.298989
-0.379268
-0.299644
-0.307283
-0.282221
-0.27436
-0.259501
-0.341428
-0.36466
-0.25613
-0.281651
-0.277828
-0.257193
-0.272988
-0.4073
-0.258364
-0.303819
-0.33021
-0.334899
-0.281757
-0.290446
-0.302242
-0.305917
-0.297174
-0.294091
-0.329411
-0.319992
-0.293492
-0.294739
-0.32838
-0.298998
-0.367793
-0.295374
-0.30542
-0.292005
-0.296892
-0.30079
-0.301043
-0.325864
-0.319611
-0.297125
-0.295388
-0.329156
-0.306034
-0.284732
-0.27778
-0.285992
-0.306443
-0.326769
-0.298945
-0.306122
-0.295845
-0.29036
-0.277597
-0.334623
-0.29293
-0.267805
-0.27387
-0.272139
-0.26891
-0.268181
-0.267445
-0.272001
-0.282984
-0.2776
-0.327786
-0.338952
-0.283758
-0.315769
-0.284252
-0.269098
-0.274138
-0.267587
-0.292886
-0.273568
-0.265488
-0.281435
-0.280373
-0.28273
-0.28431
-0.339997
-0.277467
-0.29645
-0.286289
-0.236514
-0.281068
-0.219834
-0.246322
-0.239332
-0.268773
-0.220147
-0.252146
-0.262307
-0.271076
-0.294487
-0.255549
-0.294924
-0.252921
-0.249445
-0.270094
-0.245929
-0.261985
-0.250972
-0.24485
-0.28359
-0.233513
-0.24727
-0.250887
-0.223095
-0.256071
-0.220908
-0.232786
-0.290458
-0.248199
-0.273512
-0.260399
-0.240711
-0.240433
-0.258153
-0.261624
-0.244143
-0.256758
-0.245856
-0.254491
-0.27526
-0.261167
-0.299911
-0.182976
-0.25023
-0.248169
-0.26256
-0.179446
-0.248001
-0.261707
-0.291733
-0.300863
-0.240875
-0.286836
-0.259943
-0.221059
-0.241419
-0.286471
-0.223031
-0.232769
-0.249653
-0.246858
-0.236807
-0.243759
-0.231267
-0.242831
-0.236181
-0.25793
-0.243148
-0.245299
-0.242836
-0.240567
-0.249036
-0.238018
-0.276753
-0.260045
-0.229799
-0.234354
-0.271062
-0.227462
-0.335495
-0.248994
-0.287939
-0.26607
-0.293363
-0.337621
-0.276817
-0.266265
-0.338109
-0.25042
-0.250019
-0.266465
-0.251101
-0.266823
-0.307132
-0.289325
-0.272295
-0.25223
-0.281079
-0.249296
-0.268307
-0.318913
-0.276085
-0.275477
-0.270632
-0.249274
-0.268648
-0.297088
-0.277072
-0.325415
-0.296109
-0.284375
-0.273419
-0.339214
-0.281663
-0.300676
-0.290959
-0.279576
-0.291014
-0.276175
-0.276122
-0.251169
-0.209419
-0.235395
-0.239793
-0.289165
-0.280526
-0.273645
-0.249856
-0.244207
-0.214103
-0.243802
-0.237752
-0.264854
-0.26822
-0.259924
-0.329581
-0.272453
-0.260105
-0.268764
-0.336575
-0.267292
-0.26748
-0.25607
-0.256508
-0.25417
-0.269021
-0.296286
-0.281976
-0.270103
-0.276312
-0.257129
-0.251885
-0.268914
-0.275289
-0.303038
-0.272239
-0.250046
-0.271039
-0.433951
-0.417204
-0.439701
-0.41151
-0.442798
-0.523711
-0.524167
-0.428935
-0.444257
-0.525154
-0.448045
-0.524138
-0.564035
-0.516012
-0.524333
-0.55214
-0.519052
-0.555707
-0.561125
-0.604867
-0.515715
-0.531526
-0.611576
-0.618043
-0.587674
-0.570723
-0.581596
-0.619865
-0.570616
-0.596844
-0.62003
-0.618083
-0.604053
-0.529537
-0.531422
-0.600369
-0.567806
-0.526467
-0.52378
-0.562094
-0.521891
-0.574801
-0.558698
-0.617226
-0.565951
-0.578913
-0.595764
-0.568671
-0.614326
-0.596768
-0.55414
-0.512133
-0.51402
-0.549723
-0.546893
-0.50817
-0.557812
-0.609765
-0.55681
-0.562041
-0.570466
-0.56415
-0.602134
-0.557604
-0.596959
-0.520104
-0.524941
-0.589258
-0.616159
-0.618016
-0.557112
-0.597459
-0.5288
-0.5258
-0.599779
-0.549731
-0.510589
-0.539549
-0.502672
-0.543897
-0.504972
-0.545974
-0.610961
-0.565054
-0.572101
-0.594036
-0.564991
-0.614887
-0.559704
-0.438033
-0.317175
-0.370001
-0.437452
-0.374671
-0.431369
-0.524639
-0.433645
-0.518794
-0.432422
-0.503871
-0.431464
-0.514501
-0.510625
-0.517612
-0.496959
-0.485295
-0.493173
-0.514008
-0.513626
-0.555274
-0.501659
-0.504505
-0.548189
-0.594246
-0.577966
-0.597357
-0.574802
-0.56265
-0.582606
-0.557215
-0.546048
-0.548045
-0.57864
-0.559342
-0.565608
-0.554634
-0.581997
-0.560092
-0.568573
-0.551277
-0.579766
-0.556872
-0.512551
-0.506564
-0.560779
-0.506537
-0.481572
-0.487871
-0.508403
-0.489326
-0.509916
-0.504117
-0.523539
-0.497193
-0.520235
-0.500747
-0.524626
-0.505014
-0.517948
-0.576607
-0.559412
-0.561307
-0.562874
-0.580326
-0.558814
-0.56121
-0.561831
-0.520276
-0.583303
-0.523486
-0.596372
-0.580524
-0.596951
-0.553363
-0.529391
-0.499146
-0.533805
-0.503008
-0.540181
-0.528182
-0.505557
-0.575858
-0.556017
-0.562711
-0.582816
-0.557936
-0.572973
-0.563638
-0.561666
-0.514444
-0.520836
-0.560875
-0.593248
-0.736337
-0.639938
-0.656181
-0.552877
-0.588092
-0.598766
-0.628239
-0.607995
-0.595624
-0.61102
-0.622047
-0.604085
-0.728511
-0.694418
-0.676334
-0.579774
-0.612387
-0.606039
-0.609943
-0.611066
-0.618245
-0.584883
-0.85274
-0.920304
-0.854383
-0.931426
-0.853523
-0.857761
-0.913814
-0.848912
-0.86273
-0.916343
-0.902414
-0.859516
-0.846839
-0.907058
-0.711839
-0.838803
-0.818615
-0.839002
-0.904259
-0.85856
-0.708365
-0.794966
-0.813236
-0.87311
-0.906789
-0.862067
-0.594001
-0.632008
-0.702705
-0.620588
-0.547663
-0.611676
-0.595829
-0.595914
-0.615627
-0.595637
-0.615689
-0.613438
-0.611138
-0.612233
-0.597917
-0.607474
-0.59536
-0.614466
-0.587412
-0.593451
-0.690654
-0.617123
-0.618065
-0.596669
-0.834769
-0.882939
-0.852887
-0.892833
-0.856744
-0.827201
-0.88896
-0.839352
-0.862163
-0.897601
-0.895444
-0.84354
-0.861531
-0.893598
-0.624444
-0.624906
-0.644889
-0.622586
-0.625086
-0.555604
-0.550929
-0.624429
-0.556241
-0.573245
-0.608441
-0.55392
-0.609893
-0.62364
-0.625314
-0.613089
-0.558607
-0.576463
-0.555452
-0.624589
-0.611534
-0.624318
-0.641183
-0.612786
-0.631941
-0.627997
-0.629372
-0.724661
-0.747051
-0.752642
-0.828576
-0.924275
-0.810787
-0.731835
-0.778046
-0.757448
-0.77542
-0.931458
-0.805677
-0.623033
-0.625086
-0.660441
-0.623733
-0.62269
-0.617088
-0.597012
-0.590447
-0.615229
-0.597482
-0.614246
-0.61544
-0.559929
-0.624421
-0.614208
-0.588661
-0.562118
-0.599028
-0.617122
-0.624677
-0.607006
-0.669618
-0.615561
-0.597668
-0.617121
-0.268485
-0.277766
-0.263022
-0.286891
-0.266279
-0.264118
-0.289986
-0.278624
-0.337182
-0.342533
-0.408186
-0.375757
-0.401378
-0.278537
-0.429467
-0.344747
-0.353291
-0.348774
-0.369279
-0.273542
-0.28597
-0.298197
-0.26605
-0.297611
-0.27298
-0.268086
-0.275647
-0.270968
-0.31179
-0.306238
-0.312511
-0.27603
-0.270855
-0.275785
-0.314282
-0.306837
-0.271736
-0.313364
-0.271267
-0.275977
-0.282519
-0.298959
-0.309817
-0.358012
-0.367867
-0.330417
-0.284847
-0.33259
-0.31485
-0.312054
-0.373727
-0.324671
-0.276064
-0.282912
-0.299504
-0.265142
-0.264554
-0.302694
-0.273716
-0.289007
-0.286731
-0.332116
-0.314368
-0.29351
-0.284762
-0.336721
-0.280771
-0.281364
-0.26684
-0.328641
-0.287199
-0.264837
-0.311798
-0.281557
-0.316285
-0.313006
-0.273946
-0.278437
-0.321054
-0.277633
-0.268083
-0.297081
-0.290845
-0.298231
-0.348221
-0.302853
-0.267512
-0.283627
-0.289003
-0.310066
-0.349665
-0.304511
-0.33385
-0.29467
-0.314703
-0.328178
-0.298824
-0.31222
-0.328239
-0.327921
-0.315836
-0.294165
-0.294186
-0.309244
-0.307437
-0.296058
-0.310121
-0.399949
-0.261326
-0.230903
-0.288769
-0.261181
-0.29171
-0.395434
-0.297091
-0.264323
-0.23063
-0.265893
-0.29612
-0.299168
-0.313399
-0.310815
-0.337189
-0.305685
-0.361972
-0.335178
-0.369992
-0.352019
-0.332599
-0.333198
-0.348052
-0.308588
-0.347374
-0.363647
-0.339451
-0.350671
-0.335776
-0.355136
-0.338216
-0.334051
-0.337298
-0.36626
-0.33424
-0.354575
-0.341832
-0.339832
-0.490273
-0.329395
-0.341781
-0.469031
-0.337814
-0.384417
-0.259224
-0.289156
-0.238246
-0.395006
-0.288906
-0.254695
-0.317123
-0.316558
-0.322434
-0.336962
-0.280402
-0.247394
-0.241206
-0.33449
-0.283175
-0.25357
-0.340508
-0.326259
-0.339913
-0.352174
-0.368104
-0.342176
-0.337887
-0.357101
-0.339721
-0.322338
-0.343193
-0.340278
-0.406322
-0.297029
-0.344919
-0.410755
-0.341378
-0.38676
-0.436557
-0.452134
-0.382451
-0.388075
-0.464415
-0.394303
-0.455586
-0.487767
-0.478023
-0.469757
-0.489276
-0.482529
-0.494973
-0.482696
-0.495009
-0.500448
-0.492356
-0.543162
-0.540616
-0.588294
-0.538524
-0.552842
-0.548694
-0.533613
-0.58489
-0.562208
-0.576797
-0.556154
-0.582273
-0.493253
-0.483028
-0.490685
-0.486549
-0.492391
-0.473155
-0.486025
-0.502332
-0.485508
-0.497026
-0.498932
-0.536486
-0.523935
-0.550169
-0.578787
-0.529605
-0.531561
-0.584571
-0.472953
-0.47347
-0.455516
-0.484032
-0.479076
-0.469284
-0.47806
-0.515972
-0.551961
-0.506215
-0.545113
-0.510501
-0.510898
-0.556299
-0.477503
-0.460181
-0.469822
-0.473694
-0.548741
-0.573411
-0.553953
-0.57158
-0.478702
-0.48102
-0.472504
-0.484785
-0.469129
-0.451333
-0.472209
-0.459148
-0.47534
-0.464278
-0.46828
-0.521119
-0.518668
-0.546744
-0.564248
-0.514004
-0.52677
-0.561049
-0.375273
-0.302971
-0.325432
-0.368515
-0.328168
-0.369436
-0.432525
-0.380332
-0.422208
-0.366249
-0.410326
-0.356616
-0.418761
-0.461247
-0.410202
-0.423429
-0.465215
-0.467061
-0.563653
-0.474654
-0.55688
-0.469884
-0.509119
-0.512629
-0.469758
-0.474318
-0.517025
-0.463676
-0.473692
-0.482499
-0.528342
-0.516936
-0.4782
-0.477617
-0.523457
-0.461936
-0.434321
-0.425959
-0.468504
-0.466683
-0.434021
-0.458719
-0.441813
-0.463177
-0.446219
-0.462391
-0.493976
-0.545814
-0.500564
-0.531973
-0.499897
-0.495585
-0.542519
-0.480774
-0.458339
-0.47469
-0.448084
-0.482554
-0.565714
-0.477108
-0.565466
-0.470563
-0.437979
-0.469272
-0.454907
-0.469982
-0.46659
-0.450826
-0.488059
-0.486542
-0.528856
-0.532856
-0.491365
-0.48275
-0.538444
-0.477609
-0.437008
-0.444859
-0.470921
-0.632334
-0.639061
-0.627286
-0.625922
-0.631243
-0.62916
-0.627873
-0.618748
-0.559857
-0.600819
-0.565326
-0.617492
-0.571812
-0.597346
-0.563436
-0.566129
-0.62767
-0.633036
-0.602178
-0.628152
-0.609367
-0.626641
-0.627971
-0.622861
-0.58993
-0.562163
-0.570081
-0.571389
-0.594291
-0.617424
-0.661336
-0.610606
-0.746356
-0.614396
-0.741359
-0.801794
-0.825165
-0.740079
-0.658816
-0.63646
-0.729773
-0.623467
-0.734906
-0.737743
-0.825568
-0.739507
-0.621905
-0.625214
-0.637951
-0.623168
-0.621305
-0.625864
-0.624483
-0.598566
-0.589042
-0.555438
-0.572217
-0.591721
-0.575814
-0.598775
-0.565319
-0.574168
-0.598948
-0.585992
-0.555751
-0.583417
-0.593592
-0.579882
-0.614013
-0.622446
-0.640964
-0.617814
-0.640293
-0.619748
-0.629331
-0.624114
-0.594891
-0.597158
-0.645139
-0.638756
-0.644769
-0.598077
-0.593247
-0.548742
-0.537507
-0.56511
-0.559701
-0.539844
-0.542001
-0.569822
-0.538089
-0.551526
-0.573385
-0.552554
-0.551879
-0.542127
-0.557893
-0.580542
-0.540202
-0.575154
-0.545532
-0.554033
-0.593849
-0.638547
-0.650806
-0.585738
-0.645424
-0.591107
-0.55422
-0.649127
-0.653574
-0.70696
-0.631358
-0.71655
-0.798991
-0.822714
-0.797522
-0.647552
-0.632544
-0.721629
-0.631378
-0.718271
-0.788042
-0.820549
-0.793197
-0.606895
-0.601239
-0.640569
-0.646781
-0.607335
-0.599509
-0.637539
-0.591027
-0.589347
-0.547021
-0.568751
-0.586272
-0.596954
-0.566252
-0.566965
-0.567149
-0.540166
-0.585224
-0.561344
-0.546502
-0.582593
-0.587175
-0.564376
-0.547741
-0.614582
-0.641123
-0.615205
-0.638301
-0.622357
-0.611927
-0.637252
-0.325707
-0.329204
-0.328999
-0.329951
-0.304558
-0.327412
-0.325218
-0.332058
-0.328946
-0.327463
-0.304618
-0.327385
-0.320704
-0.320196
-0.316607
-0.336328
-0.395773
-0.329782
-0.317655
-0.315808
-0.313956
-0.333342
-0.392757
-0.330109
-0.327797
-0.327677
-0.330173
-0.350136
-0.374404
-0.347461
-0.327534
-0.33667
-0.334578
-0.338773
-0.377535
-0.343461
-0.366799
-0.384256
-0.516453
-0.358821
-0.349362
-0.338375
-0.343619
-0.350299
-0.348479
-0.346598
-0.374896
-0.343942
-0.350862
-0.428895
-0.328748
-0.460649
-0.360395
-0.416862
-0.440671
-0.332878
-0.368138
-0.371168
-0.365527
-0.352421
-0.283165
-0.318077
-0.348781
-0.313344
-0.381092
-0.361334
-0.30456
-0.343612
-0.280513
-0.351168
-0.347041
-0.309164
-0.433723
-0.360139
-0.429456
-0.342579
-0.438397
-0.337262
-0.449682
-0.370168
-0.503454
-0.387472
-0.380056
-0.416537
-0.362219
-0.370388
-0.363621
-0.351911
-0.360601
-0.358716
-0.377056
-0.394939
-0.404288
-0.387394
-0.411725
-0.403576
-0.40116
-0.37445
-0.375569
-0.400542
-0.405436
-0.37495
-0.401339
-0.56154
-0.411503
-0.382681
-0.38669
-0.413506
-0.416143
-0.402518
-0.404244
-0.472835
-0.398084
-0.400911
-0.378802
-0.399761
-0.380172
-0.401133
-0.375808
-0.406248
-0.472465
-0.417155
-0.372057
-0.362396
-0.484463
-0.423068
-0.357362
-0.319021
-0.314842
-0.393355
-0.356729
-0.32282
-0.279735
-0.384374
-0.327063
-0.296877
-0.468784
-0.368487
-0.428351
-0.347803
-0.454868
-0.424914
-0.352826
-0.397473
-0.334353
-0.305694
-0.280914
-0.410494
-0.33078
-0.29816
-0.466091
-0.400884
-0.376943
-0.364705
-0.384712
-0.405542
-0.401977
-0.376335
-0.377509
-0.386845
-0.40394
-0.382709
-0.39552
-0.476918
-0.470882
-0.363802
-0.393996
-0.404249
-0.390835
-0.402196
-0.328587
-0.321298
-0.301596
-0.332342
-0.298137
-0.303893
-0.324055
-0.333002
-0.29748
-0.30503
-0.346237
-0.3139
-0.33625
-0.455271
-0.403859
-0.391708
-0.46165
-0.453953
-0.500594
-0.464345
-0.495435
-0.458217
-0.459659
-0.496491
-0.460428
-0.541361
-0.454346
-0.545141
-0.453293
-0.38006
-0.388974
-0.447211
-0.449895
-0.451225
-0.492815
-0.489045
-0.456374
-0.445682
-0.493217
-0.444787
-0.461742
-0.439675
-0.472971
-0.442818
-0.442571
-0.467118
-0.438681
-0.353837
-0.363818
-0.429706
-0.456619
-0.542013
-0.452452
-0.510677
-0.44406
-0.377018
-0.367385
-0.445268
-0.442572
-0.447707
-0.477272
-0.483292
-0.444421
-0.442352
-0.475396
-0.312781
-0.323334
-0.279734
-0.308973
-0.283471
-0.290964
-0.321065
-0.295305
-0.320698
-0.289463
-0.311319
-0.284496
-0.31931
-0.399303
-0.294879
-0.304385
-0.392627
-0.422507
-0.452659
-0.432702
-0.444967
-0.426718
-0.430374
-0.440197
-0.413845
-0.416015
-0.433574
-0.42434
-0.4295
-0.42163
-0.440918
-0.443458
-0.429904
-0.41873
-0.438182
-0.401825
-0.316283
-0.307463
-0.4114
-0.433732
-0.456832
-0.435629
-0.458949
-0.437988
-0.430541
-0.452708
-0.419587
-0.349808
-0.426543
-0.333146
-0.434973
-0.490461
-0.431852
-0.504326
-0.430237
-0.423794
-0.455522
-0.446794
-0.427451
-0.429251
-0.449043
-0.417614
-0.319132
-0.329131
-0.412107
-0.553387
-0.631931
-0.57144
-0.655054
-0.655623
-0.575039
-0.552703
-0.546363
-0.550377
-0.566401
-0.545694
-0.550999
-0.535433
-0.566568
-0.542863
-0.54925
-0.55371
-0.5488
-0.552247
-0.554744
-0.553365
-0.632679
-0.651022
-0.580987
-0.654449
-0.556292
-0.576841
-0.566239
-0.545984
-0.53428
-0.538156
-0.540959
-0.548284
-0.569709
-0.546388
-0.548124
-0.712283
-0.675074
-0.67128
-0.70167
-0.706986
-0.675041
-0.702116
-0.752036
-0.742636
-0.830758
-0.742219
-0.774692
-0.716252
-0.674807
-0.681587
-0.709548
-0.676261
-0.704454
-0.738111
-0.744167
-0.743403
-0.836776
-0.734272
-0.741495
-0.568408
-0.569019
-0.615519
-0.652448
-0.566702
-0.557186
-0.655283
-0.573752
-0.517603
-0.517102
-0.539366
-0.520693
-0.542034
-0.573213
-0.561414
-0.550184
-0.540012
-0.567272
-0.558853
-0.556163
-0.574015
-0.545586
-0.521039
-0.533053
-0.52591
-0.544022
-0.577182
-0.567887
-0.613359
-0.561985
-0.659649
-0.564838
-0.655927
-0.567376
-0.559509
-0.564718
-0.600221
-0.557788
-0.646832
-0.588749
-0.647397
-0.599305
-0.555146
-0.568955
-0.611785
-0.572385
-0.556269
-0.502887
-0.504894
-0.554029
-0.543018
-0.47999
-0.479587
-0.52605
-0.483682
-0.526306
-0.539958
-0.544945
-0.532555
-0.492098
-0.483253
-0.488025
-0.54579
-0.528767
-0.568775
-0.566755
-0.602507
-0.587429
-0.605973
-0.558602
-0.641837
-0.555575
-0.602016
-0.744715
-0.666189
-0.688288
-0.719228
-0.771049
-0.679264
-0.717229
-0.776021
-0.741052
-0.794344
-0.769395
-0.739362
-0.74049
-0.666152
-0.680185
-0.713099
-0.733981
-0.676162
-0.713594
-0.779694
-0.743752
-0.791389
-0.827146
-0.744151
-0.57888
-0.559802
-0.598975
-0.647003
-0.562665
-0.598591
-0.640774
-0.575682
-0.513646
-0.504277
-0.537048
-0.51084
-0.572277
-0.534798
-0.558229
-0.517893
-0.534772
-0.554003
-0.571498
-0.555929
-0.570646
-0.534687
-0.500617
-0.500121
-0.505852
-0.535397
-0.547508
-0.578895
-0.600511
-0.560179
-0.656977
-0.566387
-0.559571
-0.635113
-0.567154
-0.566513
-0.311401
-0.286625
-0.287802
-0.25346
-0.304852
-0.290282
-0.266668
-0.331302
-0.36497
-0.303752
-0.304409
-0.343135
-0.347657
-0.298265
-0.314037
-0.288211
-0.296177
-0.284414
-0.323577
-0.292634
-0.27133
-0.328921
-0.293865
-0.350933
-0.303413
-0.323089
-0.348262
-0.295998
-0.351586
-0.306618
-0.210259
-0.353565
-0.190305
-0.338961
-0.357201
-0.418979
-0.737024
-0.417082
-0.437668
-0.428297
-0.413351
-0.72341
-0.356206
-0.30911
-0.172056
-0.364401
-0.185056
-0.368308
-0.36066
-0.415344
-0.406
-0.706558
-0.43379
-0.405335
-0.409697
-0.720076
-0.31824
-0.302468
-0.216579
-0.350287
-0.346907
-0.237857
-0.333968
-0.385779
-0.674709
-0.394134
-0.422889
-0.373917
-0.39665
-0.684292
-0.313304
-0.301876
-0.340726
-0.26656
-0.295778
-0.343739
-0.24552
-0.389428
-0.402618
-0.424597
-0.702721
-0.399567
-0.401479
-0.687904
-0.417252
-0.399993
-0.398649
-0.389184
-0.393567
-0.395954
-0.422662
-0.424985
-0.561056
-0.402958
-0.384231
-0.51355
-0.417697
-0.390861
-0.427382
-0.399221
-0.403901
-0.527809
-0.51658
-0.394961
-0.433792
-0.415218
-0.39434
-0.397872
-0.385109
-0.395277
-0.408593
-0.391536
-0.638019
-0.393977
-0.408828
-0.423648
-0.577294
-0.425632
-0.393421
-0.470143
-0.339903
-0.512311
-0.340171
-0.606362
-0.604286
-0.47793
-0.364229
-0.294609
-0.337911
-0.361225
-0.337622
-0.474931
-0.481919
-0.343724
-0.346365
-0.29097
-0.549467
-0.356534
-0.34078
-0.607624
-0.639022
-0.425511
-0.462655
-0.391832
-0.435269
-0.392417
-0.632295
-0.42858
-0.403404
-0.388804
-0.409869
-0.406194
-0.424872
-0.387753
-0.443416
-0.555979
-0.418778
-0.407664
-0.54636
-0.407848
-0.447231
-0.441533
-0.402875
-0.416119
-0.532176
-0.542611
-0.405935
-0.436326
-0.43001
-0.412091
-0.407222
-0.383582
-0.407798
-0.387382
-0.432138
-0.408562
-0.460554
-0.41103
-0.419369
-0.469292
-0.411726
-0.416496
-0.490004
-0.462799
-0.441993
-0.593736
-0.431441
-0.423076
-0.587092
-0.418022
-0.442722
-0.512986
-0.527669
-0.44009
-0.407339
-0.576336
-0.426866
-0.583525
-0.442797
-0.412618
-0.413156
-0.414528
-0.422401
-0.422605
-0.442974
-0.420212
-0.422476
-0.499708
-0.49242
-0.424043
-0.374216
-0.505957
-0.455986
-0.377604
-0.489019
-0.331098
-0.496849
-0.332254
-0.548352
-0.598981
-0.461763
-0.365234
-0.33879
-0.302067
-0.468511
-0.337773
-0.370172
-0.569327
-0.677748
-0.577296
-0.496347
-0.428079
-0.472303
-0.390095
-0.613089
-0.460014
-0.384188
-0.466188
-0.335402
-0.382255
-0.303253
-0.477498
-0.33607
-0.376171
-0.422422
-0.390012
-0.405131
-0.415743
-0.400745
-0.41402
-0.353162
-0.446061
-0.558549
-0.417876
-0.405804
-0.563555
-0.448728
-0.401426
-0.444801
-0.402833
-0.417984
-0.573396
-0.56518
-0.40064
-0.442524
-0.425449
-0.412404
-0.404465
-0.383326
-0.433348
-0.400129
-0.355998
-0.275486
-0.276402
-0.251059
-0.279517
-0.246889
-0.285413
-0.267446
-0.272534
-0.280699
-0.288512
-0.278861
-0.292124
-0.273648
-0.379737
-0.292005
-0.28883
-0.38988
-0.417741
-0.427798
-0.410345
-0.433528
-0.420673
-0.407024
-0.429443
-0.403738
-0.439782
-0.397009
-0.445441
-0.375629
-0.284474
-0.290705
-0.367753
-0.415087
-0.399904
-0.433249
-0.432596
-0.404723
-0.411908
-0.433913
-0.40049
-0.422824
-0.387125
-0.421307
-0.390307
-0.396651
-0.422891
-0.354833
-0.265709
-0.272686
-0.346336
-0.387381
-0.438181
-0.394518
-0.43298
-0.357132
-0.28173
-0.274526
-0.364982
-0.404069
-0.398584
-0.421815
-0.429611
-0.391676
-0.408501
-0.425292
-0.25599
-0.245849
-0.222241
-0.252979
-0.227278
-0.27316
-0.265693
-0.276803
-0.261548
-0.269136
-0.257703
-0.267721
-0.260656
-0.292697
-0.253721
-0.256852
-0.283465
-0.336368
-0.420902
-0.345163
-0.416053
-0.295606
-0.261271
-0.258131
-0.305857
-0.387589
-0.42339
-0.38303
-0.413906
-0.391832
-0.377188
-0.423643
-0.331577
-0.262897
-0.343888
-0.25741
-0.361396
-0.422549
-0.348489
-0.429351
-0.327188
-0.261915
-0.25695
-0.310308
-0.605076
-0.587439
-0.557432
-0.629664
-0.610516
-0.558587
-0.603314
-0.575322
-0.613999
-0.61816
-0.57231
-0.532166
-0.475054
-0.524786
-0.470771
-0.535918
-0.468386
-0.52205
-0.564025
-0.442706
-0.450174
-0.567877
-0.602907
-0.586423
-0.606536
-0.559357
-0.609376
-0.601934
-0.558881
-0.528832
-0.514413
-0.467853
-0.455243
-0.46078
-0.519019
-0.525859
-0.57749
-0.630605
-0.621244
-0.58035
-0.78758
-0.624741
-0.650772
-0.681316
-0.802343
-0.66617
-0.671863
-0.716686
-0.686682
-0.774976
-0.781796
-0.704386
-0.752578
-0.712925
-0.761966
-0.783544
-0.782561
-0.624589
-0.681388
-0.659737
-0.670927
-0.66756
-0.761057
-0.666229
-0.679672
-0.778269
-0.725194
-0.772661
-0.754638
-0.785346
-0.717614
-0.78062
-0.579497
-0.56008
-0.587918
-0.629565
-0.558226
-0.600687
-0.641017
-0.517038
-0.442898
-0.452757
-0.502478
-0.443671
-0.505509
-0.511726
-0.566836
-0.441243
-0.437108
-0.567634
-0.576656
-0.653249
-0.635881
-0.579377
-0.519868
-0.513379
-0.452955
-0.451034
-0.446414
-0.50587
-0.52188
-0.578534
-0.589864
-0.55883
-0.654503
-0.560442
-0.642929
-0.576542
-0.576778
-0.628952
-0.58037
-0.633415
-0.547361
-0.534645
-0.655819
-0.557166
-0.646602
-0.548236
-0.526091
-0.598141
-0.676808
-0.712759
-0.605652
-0.566081
-0.427456
-0.422742
-0.569092
-0.471795
-0.427636
-0.422142
-0.456226
-0.420433
-0.463819
-0.467411
-0.479876
-0.478837
-0.423096
-0.427818
-0.422725
-0.480911
-0.472201
-0.597398
-0.714922
-0.719101
-0.595867
-0.538907
-0.544967
-0.624052
-0.503523
-0.641732
-0.514314
-0.540027
-0.726952
-0.604245
-0.672605
-0.615509
-0.697138
-0.678154
-0.627127
-0.715884
-0.730572
-0.744766
-0.780836
-0.693212
-0.717586
-0.758039
-0.680769
-0.774021
-0.73634
-0.610407
-0.679959
-0.649238
-0.75266
-0.679848
-0.637324
-0.729062
-0.738828
-0.739057
-0.658092
-0.768643
-0.706237
-0.725747
-0.669211
-0.772662
-0.558115
-0.540799
-0.578501
-0.659626
-0.545018
-0.556392
-0.663185
-0.496156
-0.43743
-0.446052
-0.497641
-0.436431
-0.501011
-0.492104
-0.566679
-0.428904
-0.43556
-0.569376
-0.589941
-0.669947
-0.583391
-0.690785
-0.4898
-0.484074
-0.442658
-0.428781
-0.431195
-0.488394
-0.487853
-0.564758
-0.582608
-0.554764
-0.664365
-0.569945
-0.54891
-0.663343
-0.591159
-0.710096
-0.595496
-0.697997
-0.254332
-0.292788
-0.274953
-0.284798
-0.240563
-0.278922
-0.28063
-0.252685
-0.350903
-0.225512
-0.345757
-0.35883
-0.290183
-0.297625
-0.260553
-0.346591
-0.290048
-0.205864
-0.248932
-0.261854
-0.271299
-0.293329
-0.289818
-0.272609
-0.264219
-0.283751
-0.278876
-0.318578
-0.275242
-0.331761
-0.297816
-0.260023
-0.342389
-0.284713
-0.190323
-0.274555
-0.179187
-0.265094
-0.406107
-0.322439
-0.312625
-0.355084
-0.31882
-0.401646
-0.355296
-0.441604
-0.335391
-0.327101
-0.447114
-0.486345
-0.773168
-0.47807
-0.774235
-0.439005
-0.563825
-0.39329
-0.415679
-0.442629
-0.392609
-0.5634
-0.407603
-0.323766
-0.327541
-0.357799
-0.320976
-0.412056
-0.356632
-0.439147
-0.314489
-0.323985
-0.431312
-0.437795
-0.392155
-0.565744
-0.41378
-0.433456
-0.391398
-0.563616
-0.408306
-0.323231
-0.312042
-0.354809
-0.361034
-0.308585
-0.402841
-0.421586
-0.733708
-0.419884
-0.4436
-0.452457
-0.410955
-0.694055
-0.421255
-0.278794
-0.299119
-0.473496
-0.775461
-0.47605
-0.398505
-0.323321
-0.366397
-0.284349
-0.392687
-0.363348
-0.306055
-0.418664
-0.31208
-0.303223
-0.429986
-0.441614
-0.394075
-0.432716
-0.571698
-0.403846
-0.434621
-0.670339
-0.519256
-0.412836
-0.402091
-0.450973
-0.440239
-0.416755
-0.478663
-0.487391
-0.477999
-0.499188
-0.471157
-0.596278
-0.444433
-0.427977
-0.60038
-0.445604
-0.431427
-0.51931
-0.474604
-0.4331
-0.447851
-0.602586
-0.600253
-0.433375
-0.543886
-0.514227
-0.40339
-0.422587
-0.423076
-0.435121
-0.443963
-0.420286
-0.493086
-0.520361
-0.506753
-0.425786
-0.565146
-0.37789
-0.50698
-0.406295
-0.555475
-0.518893
-0.379717
-0.513193
-0.356912
-0.51299
-0.34728
-0.613534
-0.68412
-0.669731
-0.609571
-0.475758
-0.452022
-0.340502
-0.368386
-0.447262
-0.364137
-0.476431
-0.470967
-0.358916
-0.434082
-0.337642
-0.465271
-0.441492
-0.361269
-0.612351
-0.648738
-0.608863
-0.664022
-0.566569
-0.4086
-0.531268
-0.38692
-0.522169
-0.382325
-0.564748
-0.432168
-0.409455
-0.456078
-0.404859
-0.407725
-0.451042
-0.467656
-0.482088
-0.616766
-0.455142
-0.421345
-0.602023
-0.424183
-0.464505
-0.465102
-0.525834
-0.406697
-0.561255
-0.546763
-0.402313
-0.512388
-0.431701
-0.454999
-0.600532
-0.604798
-0.428297
-0.550365
-0.396494
-0.526545
-0.423409
-0.541307
-0.43561
-0.406595
-0.407235
-0.481153
-0.406906
-0.471345
-0.432026
-0.458506
-0.513879
-0.419852
-0.433564
-0.520861
-0.452459
-0.424339
-0.431081
-0.656559
-0.637264
-0.452176
-0.428624
-0.644538
-0.650063
-0.432606
-0.468519
-0.555243
-0.423787
-0.426876
-0.554405
-0.422336
-0.46521
-0.42294
-0.606429
-0.623014
-0.400022
-0.469873
-0.413674
-0.555121
-0.420241
-0.554427
-0.469136
-0.415741
-0.457523
-0.446601
-0.537337
-0.441812
-0.526961
-0.434698
-0.458174
-0.537446
-0.568895
-0.419911
-0.406286
-0.5412
-0.557349
-0.402453
-0.49687
-0.431527
-0.495494
-0.430135
-0.598027
-0.690068
-0.609416
-0.709989
-0.485777
-0.456827
-0.371638
-0.350885
-0.479914
-0.377089
-0.463363
-0.597868
-0.732013
-0.597328
-0.716344
-0.533841
-0.417195
-0.532834
-0.389971
-0.564324
-0.552233
-0.399119
-0.491242
-0.384215
-0.475143
-0.354581
-0.496334
-0.380419
-0.470298
-0.440285
-0.511442
-0.416068
-0.418193
-0.412577
-0.450239
-0.499748
-0.458272
-0.640754
-0.442882
-0.416644
-0.643582
-0.458383
-0.414091
-0.434275
-0.643916
-0.690102
-0.433627
-0.393307
-0.566203
-0.396122
-0.581275
-0.391535
-0.602382
-0.394214
-0.587109
-0.459203
-0.412231
-0.433454
-0.560047
-0.662619
-0.412657
-0.468659
-0.43746
-0.414985
-0.407552
-0.483245
-0.431294
-0.410214
-0.494751
-0.219747
-0.16968
-0.187694
-0.221797
-0.185138
-0.236719
-0.235465
-0.236526
-0.236082
-0.237855
-0.237852
-0.238819
-0.23661
-0.274848
-0.251247
-0.248541
-0.279956
-0.315092
-0.397976
-0.309099
-0.399746
-0.27311
-0.246278
-0.247853
-0.267469
-0.262491
-0.246382
-0.244612
-0.255098
-0.300821
-0.398116
-0.306472
-0.393841
-0.263135
-0.245361
-0.244405
-0.265045
-0.214127
-0.162319
-0.178757
-0.213473
-0.179792
-0.233775
-0.234837
-0.234485
-0.234566
-0.233209
-0.234632
-0.232731
-0.234655
-0.258628
-0.248773
-0.248485
-0.260207
-0.280059
-0.380263
-0.277866
-0.377225
-0.257382
-0.248459
-0.247985
-0.254963
-0.249881
-0.246595
-0.252886
-0.248045
-0.274959
-0.381079
-0.277437
-0.385269
-0.250835
-0.248305
-0.24821
-0.254216
-0.526949
-0.508177
-0.465816
-0.559505
-0.564833
-0.475688
-0.523633
-0.624578
-0.663305
-0.637757
-0.60784
-0.455956
-0.424385
-0.445007
-0.407657
-0.45544
-0.425947
-0.439348
-0.55358
-0.41506
-0.415083
-0.553481
-0.536598
-0.514982
-0.577795
-0.488124
-0.578714
-0.532027
-0.482536
-0.44817
-0.427578
-0.403787
-0.4212
-0.420163
-0.434141
-0.448567
-0.628367
-0.613677
-0.631629
-0.631676
-0.621625
-0.503368
-0.608564
-0.537268
-0.617418
-0.571172
-0.527158
-0.61766
-0.620045
-0.720557
-0.604431
-0.573081
-0.584344
-0.599876
-0.625539
-0.6598
-0.541844
-0.585514
-0.549723
-0.621016
-0.671911
-0.615835
-0.495955
-0.560411
-0.512432
-0.563786
-0.520102
-0.608804
-0.606895
-0.602937
-0.610624
-0.589256
-0.631959
-0.565197
-0.735769
-0.593359
-0.629348
-0.556068
-0.676311
-0.499675
-0.456836
-0.476881
-0.547561
-0.446777
-0.508965
-0.542914
-0.440364
-0.42312
-0.387263
-0.406084
-0.423392
-0.412116
-0.439747
-0.503324
-0.417491
-0.414112
-0.54757
-0.611381
-0.577831
-0.590834
-0.578302
-0.444165
-0.422929
-0.390555
-0.420941
-0.424373
-0.416786
-0.445054
-0.488876
-0.469194
-0.43151
-0.5284
-0.439506
-0.533555
-0.481945
-0.615133
-0.609067
-0.624829
-0.596434
-0.418851
-0.405511
-0.4641
-0.422713
-0.451912
-0.425966
-0.400615
-0.436317
-0.493455
-0.524329
-0.433566
-0.443502
-0.403777
-0.400867
-0.458129
-0.424316
-0.401219
-0.356477
-0.376722
-0.407712
-0.380589
-0.419595
-0.428744
-0.388113
-0.41703
-0.36001
-0.413274
-0.430382
-0.383995
-0.440602
-0.543166
-0.531051
-0.450197
-0.413806
-0.417467
-0.4255
-0.394526
-0.440281
-0.397471
-0.413583
-0.564773
-0.470603
-0.520308
-0.492178
-0.554907
-0.531359
-0.496193
-0.60164
-0.692295
-0.598255
-0.688319
-0.586852
-0.568172
-0.595949
-0.560432
-0.607537
-0.660923
-0.536074
-0.563657
-0.613445
-0.529669
-0.666222
-0.589641
-0.474587
-0.549906
-0.506684
-0.601969
-0.541377
-0.500758
-0.578548
-0.552555
-0.57483
-0.559162
-0.621841
-0.518881
-0.664075
-0.557786
-0.611975
-0.524355
-0.671751
-0.444203
-0.409427
-0.442192
-0.478952
-0.415319
-0.43452
-0.491206
-0.437148
-0.421455
-0.374038
-0.402405
-0.421551
-0.437808
-0.397509
-0.484688
-0.404324
-0.408511
-0.462217
-0.492134
-0.572316
-0.564593
-0.562622
-0.435898
-0.390976
-0.371539
-0.420119
-0.420965
-0.395411
-0.433367
-0.459533
-0.446882
-0.426005
-0.516952
-0.471222
-0.419315
-0.505437
-0.485359
-0.549779
-0.457353
-0.561062
-0.300155
-0.333445
-0.308493
-0.334878
-0.302835
-0.305277
-0.332908
-0.2562
-0.183291
-0.268211
-0.196982
-0.271578
-0.254878
-0.275773
-0.260634
-0.268766
-0.25404
-0.278478
-0.278351
-0.347241
-0.269059
-0.351451
-0.298376
-0.330887
-0.29964
-0.330057
-0.295869
-0.303216
-0.332323
-0.273592
-0.282272
-0.255805
-0.260463
-0.276293
-0.254311
-0.279727
-0.280523
-0.356861
-0.289769
-0.352317
-0.41404
-0.374713
-0.371897
-0.40614
-0.373578
-0.412889
-0.408305
-0.48075
-0.390286
-0.387071
-0.480804
-0.524439
-0.762007
-0.5242
-0.756056
-0.464344
-0.510216
-0.444082
-0.463242
-0.464114
-0.443594
-0.511088
-0.415096
-0.376037
-0.376875
-0.410143
-0.375341
-0.415936
-0.409376
-0.480761
-0.382672
-0.386147
-0.479591
-0.464419
-0.440788
-0.512551
-0.462114
-0.464155
-0.442712
-0.512087
-0.412028
-0.366358
-0.370779
-0.403882
-0.399446
-0.369986
-0.412488
-0.455988
-0.553955
-0.414408
-0.449913
-0.456811
-0.426361
-0.560027
-0.476296
-0.374253
-0.474536
-0.37744
-0.522018
-0.763799
-0.524201
-0.766854
-0.411569
-0.363205
-0.385664
-0.367865
-0.407517
-0.394589
-0.371029
-0.477243
-0.381673
-0.378032
-0.47929
-0.462822
-0.43856
-0.453722
-0.514061
-0.433525
-0.464717
-0.513797
-0.478318
-0.466542
-0.469664
-0.518408
-0.51431
-0.463064
-0.482271
-0.482004
-0.666931
-0.680706
-0.459818
-0.447107
-0.55432
-0.436197
-0.436657
-0.552752
-0.460132
-0.446872
-0.419889
-0.65875
-0.661191
-0.443784
-0.447824
-0.454601
-0.439252
-0.549737
-0.551813
-0.451556
-0.4574
-0.475055
-0.466015
-0.507021
-0.453801
-0.510671
-0.45345
-0.458913
-0.487187
-0.695163
-0.685132
-0.503203
-0.547573
-0.438018
-0.569195
-0.471804
-0.547441
-0.571547
-0.439988
-0.531232
-0.443607
-0.515121
-0.455722
-0.617212
-0.851159
-0.843071
-0.622426
-0.515229
-0.486569
-0.382415
-0.414618
-0.484102
-0.412368
-0.515958
-0.520735
-0.410087
-0.481667
-0.380301
-0.520859
-0.483556
-0.411683
-0.58303
-0.825899
-0.578407
-0.837643
-0.539154
-0.475159
-0.569958
-0.444029
-0.567333
-0.441614
-0.540517
-0.492902
-0.469088
-0.523088
-0.478466
-0.472623
-0.488697
-0.527046
-0.484362
-0.540997
-0.454607
-0.464382
-0.543536
-0.460885
-0.487389
-0.480145
-0.655474
-0.65343
-0.45597
-0.531885
-0.725115
-0.716161
-0.54614
-0.48164
-0.454023
-0.450886
-0.548582
-0.546616
-0.457047
-0.479413
-0.526159
-0.699554
-0.509966
-0.710715
-0.495649
-0.482493
-0.480322
-0.531498
-0.476816
-0.527718
-0.499493
-0.519535
-0.54142
-0.496958
-0.501496
-0.545498
-0.515084
-0.499738
-0.599335
-0.760557
-0.758645
-0.609538
-0.570413
-0.653731
-0.650418
-0.555922
-0.510287
-0.509618
-0.477335
-0.488658
-0.50705
-0.486862
-0.514393
-0.596189
-0.752048
-0.757946
-0.584479
-0.506875
-0.482078
-0.50375
-0.475617
-0.505203
-0.50267
-0.48506
-0.523254
-0.502345
-0.552947
-0.502677
-0.549254
-0.501141
-0.527705
-0.553219
-0.575821
-0.483502
-0.451518
-0.549705
-0.581723
-0.450291
-0.61728
-0.505124
-0.600867
-0.493845
-0.603014
-0.853483
-0.617609
-0.860452
-0.525612
-0.489812
-0.417016
-0.391435
-0.520117
-0.420373
-0.494635
-0.601471
-0.871047
-0.691914
-0.862971
-0.55001
-0.481834
-0.574277
-0.446046
-0.544897
-0.578873
-0.448667
-0.528453
-0.423714
-0.502549
-0.393862
-0.525889
-0.422365
-0.498321
-0.51099
-0.543037
-0.493666
-0.492738
-0.489099
-0.513666
-0.543522
-0.494744
-0.539232
-0.463401
-0.467439
-0.50966
-0.490239
-0.471182
-0.535076
-0.655593
-0.658103
-0.552183
-0.563226
-0.727627
-0.550229
-0.734951
-0.567139
-0.750968
-0.581768
-0.737453
-0.496908
-0.478756
-0.466137
-0.504366
-0.504563
-0.47413
-0.500281
-0.50727
-0.490478
-0.483085
-0.535629
-0.50326
-0.486303
-0.539832
-0.184018
-0.111053
-0.149622
-0.189728
-0.142807
-0.207941
-0.220869
-0.226005
-0.201774
-0.213127
-0.224076
-0.216165
-0.221584
-0.260229
-0.24775
-0.246526
-0.259825
-0.285454
-0.369601
-0.284443
-0.372665
-0.260621
-0.244234
-0.246085
-0.258938
-0.259411
-0.197428
-0.21257
-0.252453
-0.272205
-0.367226
-0.283559
-0.359239
-0.260831
-0.242676
-0.231905
-0.258292
-0.146702
-0.0819682
-0.105168
-0.140229
-0.110883
-0.191383
-0.215004
-0.195995
-0.20965
-0.185543
-0.201773
-0.180131
-0.204949
-0.230079
-0.152108
-0.161817
-0.222559
-0.236353
-0.319831
-0.238668
-0.30635
-0.231701
-0.175772
-0.166799
-0.233271
-0.242153
-0.191516
-0.25006
-0.187474
-0.24852
-0.328289
-0.242383
-0.340778
-0.239369
-0.177352
-0.184827
-0.235899
-0.405199
-0.405081
-0.386633
-0.389454
-0.393714
-0.389165
-0.401685
-0.419599
-0.484522
-0.424948
-0.42817
-0.404085
-0.391069
-0.373088
-0.343615
-0.411551
-0.381805
-0.368825
-0.407387
-0.382827
-0.391759
-0.395511
-0.410185
-0.40557
-0.414083
-0.392668
-0.403742
-0.412046
-0.390029
-0.395348
-0.361391
-0.34046
-0.362906
-0.371669
-0.366049
-0.388137
-0.414541
-0.409513
-0.416692
-0.403075
-0.435536
-0.433721
-0.390894
-0.472643
-0.445736
-0.388479
-0.470804
-0.595392
-0.694227
-0.586895
-0.713322
-0.574943
-0.402357
-0.402044
-0.577617
-0.449268
-0.460333
-0.507086
-0.525928
-0.512377
-0.448584
-0.456899
-0.416339
-0.432924
-0.376139
-0.463558
-0.379728
-0.468999
-0.408729
-0.578663
-0.423671
-0.577111
-0.404063
-0.464823
-0.513766
-0.490484
-0.528227
-0.477237
-0.513547
-0.472454
-0.397694
-0.3866
-0.405796
-0.391156
-0.381569
-0.399995
-0.39507
-0.378024
-0.378437
-0.3676
-0.389427
-0.383027
-0.398917
-0.405258
-0.373318
-0.389854
-0.404367
-0.372963
-0.395597
-0.378307
-0.39432
-0.38645
-0.38404
-0.411453
-0.395795
-0.398992
-0.360439
-0.339188
-0.386646
-0.359834
-0.389174
-0.361372
-0.33089
-0.350462
-0.370874
-0.381087
-0.344412
-0.344857
-0.332241
-0.323326
-0.349807
-0.352204
-0.38743
-0.383667
-0.357075
-0.358347
-0.351092
-0.396075
-0.316095
-0.391124
-0.322357
-0.35879
-0.395703
-0.408347
-0.389519
-0.431813
-0.39668
-0.371933
-0.435592
-0.615686
-0.673039
-0.616966
-0.681976
-0.578519
-0.399428
-0.575505
-0.384209
-0.471718
-0.475076
-0.494515
-0.514202
-0.457039
-0.485991
-0.496365
-0.405401
-0.415085
-0.368066
-0.452841
-0.402388
-0.368787
-0.444503
-0.566758
-0.400157
-0.545537
-0.385844
-0.463585
-0.470277
-0.501456
-0.502336
-0.464256
-0.474727
-0.493729
-0.376258
-0.34679
-0.383535
-0.39578
-0.356081
-0.373083
-0.392258
-0.355913
-0.338745
-0.347892
-0.353572
-0.363343
-0.396374
-0.370845
-0.382533
-0.38259
-0.390428
-0.367044
-0.391227
-0.380976
-0.363229
-0.39414
-0.361784
-0.388511
-0.360609
-0.382615
-0.352349
-0.338375
-0.312327
-0.379361
-0.353944
-0.314492
-0.376647
-0.348591
-0.325181
-0.357237
-0.323478
-0.325712
-0.301411
-0.290892
-0.265053
-0.322921
-0.303303
-0.289552
-0.354715
-0.359203
-0.351007
-0.387854
-0.349229
-0.339307
-0.31615
-0.353451
-0.340585
-0.315804
-0.368159
-0.328267
-0.28737
-0.309487
-0.264575
-0.331071
-0.306501
-0.288564
-0.358496
-0.399091
-0.366948
-0.394325
-0.442037
-0.353147
-0.408249
-0.381619
-0.410894
-0.436423
-0.375582
-0.468168
-0.424642
-0.421243
-0.467326
-0.494013
-0.655165
-0.49109
-0.574375
-0.481568
-0.518101
-0.388719
-0.411394
-0.485944
-0.392945
-0.514587
-0.446509
-0.34829
-0.417763
-0.365907
-0.414295
-0.450198
-0.369237
-0.470796
-0.415423
-0.419435
-0.471865
-0.473751
-0.407673
-0.504376
-0.420426
-0.463717
-0.400618
-0.507233
-0.418241
-0.364201
-0.404974
-0.38589
-0.389311
-0.394539
-0.427975
-0.465709
-0.515955
-0.428477
-0.446147
-0.46743
-0.423898
-0.516534
-0.494067
-0.406526
-0.4979
-0.392879
-0.522555
-0.677584
-0.477469
-0.697955
-0.416323
-0.365158
-0.396175
-0.378834
-0.419049
-0.392186
-0.381542
-0.481602
-0.414761
-0.40406
-0.466227
-0.461283
-0.413409
-0.442339
-0.509611
-0.419004
-0.458825
-0.514755
-0.541331
-0.498025
-0.501187
-0.56998
-0.560395
-0.502762
-0.548419
-0.621663
-0.75613
-0.759786
-0.611087
-0.521208
-0.512529
-0.480385
-0.490424
-0.514249
-0.518232
-0.490487
-0.606434
-0.655446
-0.643281
-0.612579
-0.527753
-0.486025
-0.480042
-0.522802
-0.519074
-0.489867
-0.532952
-0.533546
-0.502536
-0.551732
-0.504107
-0.552157
-0.530581
-0.50389
-0.62468
-0.742747
-0.759048
-0.626934
-0.570129
-0.449959
-0.603618
-0.473708
-0.56764
-0.607991
-0.447036
-0.588765
-0.557625
-0.588041
-0.564028
-0.603287
-0.618383
-0.716949
-0.610539
-0.560446
-0.552225
-0.412967
-0.431243
-0.548801
-0.430827
-0.563764
-0.556404
-0.430901
-0.540799
-0.411936
-0.551959
-0.544635
-0.43095
-0.601184
-0.788794
-0.614278
-0.75359
-0.572442
-0.467147
-0.592043
-0.442823
-0.601888
-0.444584
-0.574503
-0.574774
-0.492635
-0.591067
-0.485302
-0.486462
-0.56299
-0.606204
-0.557886
-0.542441
-0.467067
-0.469633
-0.539619
-0.472589
-0.563387
-0.609736
-0.665314
-0.687853
-0.61457
-0.615547
-0.637039
-0.677243
-0.605553
-0.54963
-0.481763
-0.470068
-0.529942
-0.534283
-0.476359
-0.542759
-0.615107
-0.726417
-0.626902
-0.687764
-0.587027
-0.479117
-0.477235
-0.612322
-0.481704
-0.616292
-0.593448
-0.571361
-0.588859
-0.447557
-0.448413
-0.593162
-0.568263
-0.443737
-0.579102
-0.620748
-0.613866
-0.58248
-0.572253
-0.669707
-0.635711
-0.592693
-0.555241
-0.539056
-0.426068
-0.428331
-0.540612
-0.431782
-0.555377
-0.575312
-0.601947
-0.611193
-0.575716
-0.555444
-0.445821
-0.547219
-0.435397
-0.545898
-0.56067
-0.437791
-0.574284
-0.447933
-0.600139
-0.43975
-0.596796
-0.441115
-0.57659
-0.583527
-0.595103
-0.452076
-0.443138
-0.587524
-0.591438
-0.442441
-0.613105
-0.585801
-0.620556
-0.580155
-0.622955
-0.619392
-0.614138
-0.621162
-0.571323
-0.556127
-0.43181
-0.417758
-0.56747
-0.433053
-0.560127
-0.625618
-0.636847
-0.633735
-0.625328
-0.580523
-0.453285
-0.588692
-0.441852
-0.577186
-0.589641
-0.441743
-0.574593
-0.435908
-0.567533
-0.419724
-0.578625
-0.43462
-0.563464
-0.580083
-0.586643
-0.452591
-0.453738
-0.45943
-0.571193
-0.585006
-0.572116
-0.545477
-0.460987
-0.467669
-0.54831
-0.568537
-0.46463
-0.627507
-0.68132
-0.697314
-0.626787
-0.667956
-0.606653
-0.607168
-0.588217
-0.661326
-0.599785
-0.578239
-0.591436
-0.572818
-0.453672
-0.45838
-0.549554
-0.549628
-0.460234
-0.569872
-0.591449
-0.458054
-0.472463
-0.600088
-0.595949
-0.466038
-0.588932
-0.087598
-0.0643113
-0.0688702
-0.0927992
-0.0707785
-0.118583
-0.143452
-0.145427
-0.116419
-0.121845
-0.150781
-0.127071
-0.146982
-0.212549
-0.149997
-0.141358
-0.218429
-0.216135
-0.257742
-0.218357
-0.270944
-0.211154
-0.133932
-0.13967
-0.206526
-0.193805
-0.167507
-0.169527
-0.186972
-0.212704
-0.256051
-0.217997
-0.249764
-0.199056
-0.133514
-0.137982
-0.205627
-0.077951
-0.062239
-0.0789979
-0.0787346
-0.0781286
-0.114674
-0.14228
-0.115292
-0.142147
-0.114445
-0.141973
-0.114814
-0.141557
-0.182335
-0.16873
-0.166299
-0.184251
-0.20586
-0.233284
-0.205617
-0.231524
-0.181056
-0.164046
-0.16475
-0.181317
-0.183626
-0.165238
-0.186354
-0.164551
-0.205858
-0.233562
-0.205546
-0.236992
-0.182909
-0.16343
-0.163033
-0.181401
-0.347395
-0.31851
-0.287632
-0.38177
-0.387093
-0.293202
-0.34428
-0.335257
-0.365829
-0.362388
-0.340307
-0.326781
-0.282383
-0.292344
-0.323762
-0.353806
-0.324884
-0.396735
-0.30519
-0.395193
-0.355919
-0.298273
-0.334509
-0.362821
-0.362326
-0.332128
-0.423446
-0.326425
-0.410831
-0.370307
-0.431545
-0.399456
-0.358478
-0.395868
-0.597928
-0.386474
-0.545725
-0.392152
-0.369579
-0.374239
-0.391682
-0.424465
-0.420424
-0.3732
-0.422912
-0.387861
-0.425691
-0.419739
-0.417891
-0.321607
-0.380561
-0.338913
-0.39043
-0.351475
-0.409727
-0.395753
-0.377189
-0.39058
-0.376368
-0.41855
-0.408245
-0.427801
-0.430595
-0.417695
-0.395204
-0.422733
-0.335439
-0.285302
-0.301561
-0.375369
-0.280457
-0.339896
-0.367503
-0.321187
-0.280713
-0.274911
-0.323492
-0.330636
-0.362386
-0.365014
-0.330243
-0.330812
-0.363873
-0.3322
-0.365421
-0.319545
-0.323703
-0.334207
-0.307823
-0.313946
-0.251754
-0.248869
-0.317475
-0.321779
-0.344527
-0.336181
-0.32953
-0.383306
-0.292253
-0.349741
-0.298481
-0.374764
-0.356501
-0.310299
-0.39589
-0.446796
-0.394365
-0.436589
-0.386102
-0.366864
-0.388141
-0.361468
-0.420612
-0.422265
-0.3626
-0.378917
-0.425038
-0.347083
-0.424398
-0.393346
-0.297692
-0.371989
-0.330561
-0.40163
-0.364602
-0.318432
-0.383712
-0.35319
-0.380374
-0.359371
-0.411847
-0.319555
-0.421015
-0.364409
-0.403224
-0.335394
-0.423576
-0.317665
-0.252084
-0.255894
-0.317405
-0.330847
-0.359949
-0.330058
-0.354623
-0.331226
-0.3462
-0.33031
-0.352667
-0.329102
-0.276273
-0.322604
-0.283687
-0.348857
-0.412454
-0.356077
-0.403948
-0.352626
-0.3054
-0.28372
-0.393956
-0.356986
-0.280285
-0.390759
-0.346216
-0.393997
-0.339648
-0.401065
-0.458925
-0.321817
-0.42015
-0.349433
-0.416859
-0.460393
-0.347556
-0.475454
-0.397945
-0.40455
-0.466161
-0.502117
-0.566272
-0.502554
-0.567149
-0.496278
-0.527889
-0.370538
-0.392474
-0.495434
-0.372044
-0.52795
-0.477964
-0.413386
-0.40668
-0.483053
-0.496698
-0.374769
-0.527593
-0.393384
-0.496987
-0.373471
-0.527756
-0.4622
-0.329316
-0.423437
-0.351285
-0.352864
-0.425774
-0.461673
-0.497811
-0.527355
-0.379335
-0.396575
-0.497733
-0.378314
-0.527541
-0.483689
-0.434942
-0.482386
-0.427274
-0.501744
-0.566215
-0.502946
-0.564814
-0.462741
-0.331536
-0.355749
-0.428902
-0.462861
-0.35437
-0.427804
-0.483575
-0.416235
-0.424168
-0.483858
-0.497594
-0.376113
-0.395842
-0.527741
-0.377228
-0.497522
-0.527561
-0.583335
-0.439431
-0.449444
-0.611475
-0.608666
-0.439395
-0.585825
-0.581628
-0.622799
-0.628309
-0.582566
-0.557836
-0.539818
-0.416678
-0.426925
-0.540895
-0.556491
-0.426049
-0.580855
-0.579777
-0.578505
-0.580821
-0.559141
-0.425396
-0.416013
-0.543005
-0.541877
-0.425794
-0.560679
-0.581138
-0.448834
-0.603136
-0.439288
-0.606018
-0.578848
-0.439158
-0.581566
-0.636452
-0.630283
-0.581453
-0.616941
-0.452535
-0.621058
-0.457224
-0.614326
-0.623255
-0.453254
-0.637736
-0.624977
-0.638047
-0.633759
-0.657798
-0.686427
-0.681562
-0.657874
-0.657743
-0.675174
-0.657497
-0.679876
-0.619562
-0.457864
-0.627201
-0.454795
-0.625363
-0.454154
-0.621939
-0.590607
-0.439902
-0.614003
-0.450861
-0.440215
-0.588214
-0.616426
-0.56492
-0.546067
-0.414326
-0.425393
-0.545457
-0.425492
-0.566304
-0.579633
-0.58021
-0.581028
-0.580668
-0.581599
-0.650813
-0.645418
-0.584217
-0.563508
-0.425484
-0.414625
-0.543893
-0.544727
-0.42542
-0.562089
-0.581367
-0.638449
-0.58152
-0.643627
-0.592942
-0.451445
-0.440904
-0.620776
-0.440656
-0.618736
-0.595063
-0.606852
-0.629726
-0.443286
-0.45534
-0.631321
-0.604982
-0.44387
-0.604097
-0.673583
-0.671606
-0.608013
-0.589844
-0.584221
-0.584735
-0.585132
-0.577859
-0.552162
-0.411471
-0.426923
-0.551254
-0.426616
-0.579361
-0.602289
-0.665845
-0.670301
-0.59716
-0.576025
-0.426176
-0.549245
-0.411814
-0.550165
-0.574201
-0.426476
-0.608579
-0.455771
-0.633749
-0.444817
-0.632736
-0.444232
-0.609899
-0.629924
-0.634412
-0.460301
-0.458738
-0.632168
-0.632875
-0.457954
-0.645978
-0.66726
-0.651839
-0.663874
-0.658194
-0.687888
-0.657863
-0.692302
-0.658199
-0.697311
-0.660064
-0.693442
-0.627154
-0.459399
-0.629375
-0.455842
-0.62481
-0.631006
-0.456611
-0.601367
-0.628287
-0.442761
-0.453497
-0.442317
-0.603297
-0.626649
-0.569342
-0.546779
-0.413094
-0.425578
-0.547336
-0.567908
-0.425581
-0.580001
-0.584347
-0.583472
-0.584163
-0.589559
-0.652507
-0.585413
-0.657654
-0.590758
-0.66442
-0.59591
-0.659045
-0.570909
-0.425977
-0.412775
-0.54867
-0.54791
-0.425789
-0.572647
-0.599336
-0.452799
-0.441441
-0.623012
-0.597363
-0.441755
-0.624774
-0.0626319
-0.0460784
-0.0691429
-0.0678856
-0.0639603
-0.0901011
-0.114801
-0.121335
-0.0796417
-0.0974333
-0.132365
-0.103164
-0.126686
-0.188668
-0.17008
-0.171186
-0.186084
-0.212646
-0.25552
-0.209306
-0.255883
-0.188813
-0.16558
-0.1696
-0.185446
-0.174348
-0.144428
-0.149143
-0.167657
-0.201067
-0.254298
-0.20671
-0.249226
-0.175865
-0.159711
-0.154063
-0.182293
-0.032203
-0.0020765
-0.0317095
0.00166787
-0.0232471
-0.0400162
-0.0147838
-0.0647734
-0.108272
-0.0719716
-0.103527
-0.0602821
-0.0975307
-0.0528407
-0.10232
-0.130632
-0.100085
-0.105966
-0.124533
-0.131386
-0.228449
-0.139152
-0.219571
-0.135808
-0.119359
-0.11177
-0.143359
-0.161843
-0.138259
-0.165414
-0.135114
-0.156478
-0.231456
-0.14045
-0.23704
-0.155393
-0.125781
-0.130327
-0.149365
-0.295616
-0.32288
-0.312085
-0.306468
-0.28392
-0.255098
-0.259057
-0.269729
-0.291306
-0.300236
-0.30799
-0.280517
-0.338395
-0.384036
-0.344851
-0.371452
-0.323933
-0.292136
-0.296834
-0.320614
-0.359036
-0.368645
-0.200023
-0.194734
-0.371137
-0.201142
-0.356806
-0.366434
-0.213745
-0.383845
-0.206817
-0.369276
-0.380005
-0.207414
-0.325303
-0.30575
-0.332166
-0.298604
-0.254669
-0.25338
-0.245249
-0.266002
-0.264859
-0.282951
-0.288532
-0.253258
-0.268239
-0.297796
-0.277863
-0.290524
-0.225793
-0.257911
-0.263862
-0.224562
-0.221695
-0.242058
-0.236255
-0.225268
-0.227192
-0.276693
-0.267791
-0.233319
-0.328086
-0.337854
-0.320042
-0.348126
-0.317457
-0.291068
-0.319895
-0.2916
-0.346984
-0.362271
-0.178862
-0.188545
-0.35913
-0.350444
-0.182226
-0.318136
-0.291491
-0.310529
-0.294308
-0.23136
-0.243637
-0.245757
-0.229626
-0.245443
-0.281419
-0.25045
-0.280712
-0.24638
-0.281012
-0.238885
-0.283429
-0.299808
-0.239173
-0.303558
-0.238244
-0.31914
-0.375456
-0.318998
-0.378533
-0.318265
-0.378484
-0.321
-0.378868
-0.449595
-0.384553
-0.392498
-0.446237
-0.470321
-0.551682
-0.471484
-0.550395
-0.450171
-0.396172
-0.393924
-0.450612
-0.44988
-0.392916
-0.448757
-0.395992
-0.471698
-0.552172
-0.472137
-0.551983
-0.449921
-0.397516
-0.396477
-0.451098
-0.614648
-0.674761
-0.677387
-0.609728
-0.582705
-0.55337
-0.410428
-0.42715
-0.554619
-0.581099
-0.42708
-0.603786
-0.582609
-0.582265
-0.609371
-0.612775
-0.457625
-0.635022
-0.44532
-0.63614
-0.611421
-0.445486
-0.616077
-0.679433
-0.677881
-0.621317
-0.696041
-0.693924
-0.695502
-0.690285
-0.700198
-0.704274
-0.704588
-0.705951
-0.698543
-0.704497
-0.692943
-0.704739
-0.613844
-0.582502
-0.583221
-0.610513
-0.625875
-0.676529
-0.678116
-0.627284
-0.625368
-0.679248
-0.622308
-0.678637
-0.624387
-0.672582
-0.671769
-0.622959
-0.614416
-0.583172
-0.582061
-0.615682
-0.624904
-0.673518
-0.671854
-0.626514
-0.714271
-0.723399
-0.7287
-0.710059
-0.714004
-0.703899
-0.707611
-0.703467
-0.716089
-0.704993
-0.728278
-0.703044
-0.615801
-0.583748
-0.583466
-0.616277
-0.627279
-0.675646
-0.627219
-0.673797
-0.626775
-0.673242
-0.627061
-0.672956
0.0253405
0.0653047
0.0226434
0.0230558
0.0223456
0.0476095
-0.00209493
-0.0417933
-0.0467273
0.00208856
-0.00609683
-0.0545591
-0.0105856
-0.0511431
-0.111469
-0.0932476
-0.088696
-0.117264
-0.104175
-0.180854
-0.10025
-0.187704
-0.108853
-0.0847017
-0.0863899
-0.10785
-0.099962
-0.0720278
-0.0761249
-0.0966282
-0.0966357
-0.179163
-0.0989147
-0.173032
-0.103915
-0.0830846
-0.0800811
-0.106901
0.0234172
0.0935339
0.0215205
0.0812794
0.0235054
0.0244558
0.0625536
0.0133237
-0.0346866
0.00804104
-0.0294245
0.0494039
0.0186528
-0.0219058
0.100717
0.0218072
-0.0248417
0.0560784
-0.0781849
-0.0577409
-0.0529347
-0.0787848
-0.106822
-0.130019
-0.108021
-0.123755
-0.0791453
-0.0530415
-0.05224
-0.0800422
-0.0904862
-0.0665809
-0.0937011
-0.0625373
-0.116408
-0.132973
-0.112297
-0.140844
-0.086881
-0.0558103
-0.0587563
-0.0834318
-0.209301
-0.250385
-0.237652
-0.214252
-0.219056
-0.19708
-0.204279
-0.22466
-0.210418
-0.226502
-0.23379
-0.221195
-0.278953
-0.289751
-0.282929
-0.277925
-0.263581
-0.223339
-0.228689
-0.25873
-0.267063
-0.238344
-0.272428
-0.231232
-0.223111
-0.195281
-0.188743
-0.225731
-0.226854
-0.214646
-0.215472
-0.221901
-0.228572
-0.222775
-0.225162
-0.216547
-0.186746
-0.202664
-0.212133
-0.172938
-0.177855
-0.148075
-0.140437
-0.1871
-0.19063
-0.213039
-0.213069
-0.200013
-0.262134
-0.229162
-0.25485
-0.239704
-0.255299
-0.221389
-0.256844
-0.220312
-0.253424
-0.212315
-0.252199
-0.218953
-0.19849
-0.150968
-0.15906
-0.19001
-0.213689
-0.213614
-0.219039
-0.213707
-0.210829
-0.214035
-0.202719
-0.213566
-0.241507
-0.182157
-0.223389
-0.185811
-0.279362
-0.359727
-0.293894
-0.346571
-0.27417
-0.324482
-0.251319
-0.341949
-0.348957
-0.273979
-0.317034
-0.305709
-0.375417
-0.440796
-0.396608
-0.414066
-0.357608
-0.333926
-0.313468
-0.380153
-0.407343
-0.377504
-0.410837
-0.363572
-0.412809
-0.449812
-0.402553
-0.474281
-0.403899
-0.340623
-0.358598
-0.387248
-0.61651
-0.670193
-0.667054
-0.620406
-0.604431
-0.566617
-0.572479
-0.597741
-0.614512
-0.659846
-0.665412
-0.607876
-0.757468
-0.70538
-0.690947
-0.76669
-0.747494
-0.660365
-0.673837
-0.735674
-0.750799
-0.689743
-0.758695
-0.678313
-0.584767
-0.563759
-0.554977
-0.594326
-0.590575
-0.628678
-0.64145
-0.578063
-0.594766
-0.655871
-0.604334
-0.645665
-0.464125
-0.445217
-0.501581
-0.41221
-0.468633
-0.470531
-0.440823
-0.499996
-0.477697
-0.554194
-0.516619
-0.510301
-0.688629
-0.628375
-0.647317
-0.651053
-0.701467
-0.652138
-0.725055
-0.629315
-0.691638
-0.593782
-0.653754
-0.620356
-0.534928
-0.481386
-0.506629
-0.510876
-0.553416
-0.621169
-0.571693
-0.600228
-0.545706
-0.56657
-0.521436
-0.591845
-1.407
-1.31791
-1.31747
-1.43644
-1.42549
-1.44209
-1.51237
-1.46884
-1.46578
-1.38393
-1.30943
-1.31008
-1.31971
-1.37655
-1.44332
-1.44554
-1.56285
-1.5353
-1.45421
-1.44471
-1.37645
-1.30935
-1.33092
-1.37786
-1.32089
-1.38026
-1.38256
-1.39194
-1.3888
-1.32912
-1.311
-1.4162
-1.31348
-1.39235
-1.4836
-1.54074
-1.46642
-1.5595
-1.37587
-1.30228
-1.30673
-1.378
-1.30735
-1.38965
-1.46423
-1.58061
-1.57251
-1.4918
-1.46341
-1.57268
-1.48837
-1.81469
-1.85721
-1.93355
-1.98682
-1.84566
-1.91712
-1.83544
-1.85164
-1.55992
-1.74549
-1.5948
-1.61261
-1.72322
-2.13726
-1.98506
-2.13815
-1.98656
-2.26948
-2.17731
-2.31395
-2.11019
-2.32191
-2.16068
-2.23021
-2.10125
-2.03743
-1.93637
-1.94917
-2.03453
-1.97122
-2.28158
-2.37829
-2.26406
-2.09666
-1.96686
-2.06674
-2.34266
-2.36027
-2.00259
-2.21065
-2.21706
-1.82725
-2.07196
-1.81732
-1.78672
-1.6563
-1.64862
-1.76014
-1.65851
-1.75842
-1.79298
-1.63446
-1.76343
-1.63529
-1.61542
-1.63176
-1.74566
-2.07657
-1.86618
-1.87268
-1.8832
-2.08799
-1.98689
-2.05533
-1.9804
-2.11032
-2.19928
-2.2526
-2.23605
-2.42376
-2.3392
-2.27981
-2.33846
-2.21231
-2.27124
-2.36229
-2.45283
-2.36749
-2.24207
-2.33074
-2.08588
-2.01062
-1.9769
-2.12452
-1.98304
-2.13392
-2.06061
-1.83847
-1.84066
-1.95712
-1.83431
-1.80491
-1.99426
-1.69126
-1.57507
-1.58959
-1.58704
-1.72808
-1.71164
-1.80521
-1.78082
-1.85644
-2.02476
-1.75503
-1.91559
-1.81874
-1.82348
-1.76524
-1.95891
-1.8141
-1.91358
-1.95061
-2.0284
-2.03609
-1.92273
-1.91506
-1.79197
-1.69368
-1.68209
-1.82233
-1.67899
-1.79184
-1.82954
-1.91757
-2.10559
-2.06614
-1.92983
-1.92396
-2.2232
-2.11832
-2.05287
-2.08937
-2.14777
-2.09272
-2.1436
-2.43418
-2.40109
-2.35695
-2.29207
-2.40093
-2.33904
-2.45702
-2.41748
-2.39207
-2.37365
-2.18547
-2.07395
-2.2334
-2.11729
-2.14287
-2.06386
-2.21744
-2.07701
-1.89456
-1.85168
-1.97997
-2.04024
-1.8662
-1.89948
-2.05574
-1.81942
-1.6846
-1.67796
-1.69154
-1.79951
-1.86104
-1.88798
-1.9136
-1.98596
-1.87466
-1.89522
-1.8795
-2.11714
-1.87328
-2.11678
-1.87569
-2.12329
-1.20424
-1.18248
-1.30222
-1.22393
-1.31196
-1.15939
-1.08359
-1.0803
-1.1542
-1.08524
-1.15347
-1.21326
-1.20316
-1.29248
-1.28155
-1.2216
-1.19935
-1.28427
-1.20062
-1.18961
-1.27589
-1.15875
-1.15415
-1.09503
-1.08461
-1.15478
-1.08691
-1.15533
-1.19552
-1.067
-1.16847
-1.10009
-1.16452
-1.18142
-1.1966
-1.15779
-1.08566
-1.18053
-1.39374
-1.33159
-1.35082
-1.47093
-1.60866
-1.50245
-1.49083
-1.45051
-1.44989
-1.48084
-1.40537
-1.36101
-1.36241
-1.41478
-1.40293
-1.34763
-1.34465
-1.40182
-1.34746
-1.40333
-1.40648
-1.054
-1.15531
-1.05569
-1.35694
-1.34155
-1.40795
-1.3451
-1.38943
-1.36111
-1.5827
-1.47426
-1.47989
-1.34729
-1.32557
-1.39874
-1.40646
-1.33881
-1.39177
1.27875
1.31088
0.730605
0.70089
0.568069
0.670412
0.686085
0.656552
0.588525
0.553436
0.546319
0.674179
0.67829
0.606443
0.668098
0.60207
0.724327
0.707732
0.979998
0.963293
0.949793
1.05058
1.19602
1.16948
1.05326
1.05272
1.19563
1.04825
1.04428
1.26556
1.19611
1.04802
1.21639
1.03684
1.06196
1.16985
1.19192
1.05797
1.02981
1.19614
1.00018
0.971247
0.954701
1.00633
0.897656
0.763901
0.918117
0.909765
0.783546
0.888734
0.897075
0.779034
0.893653
0.783138
0.892073
0.896379
0.736756
0.741783
0.556991
0.559754
0.610971
0.680547
0.690096
0.684149
0.61201
0.733848
0.7402
0.683849
0.611054
0.690894
0.686103
0.611703
0.967095
0.953337
1.28253
1.20962
1.05602
1.21678
1.06874
1.22082
1.07246
1.18617
1.06929
1.08867
1.21577
0.938507
0.94284
1.07037
1.06944
1.20213
1.18086
1.03472
1.07458
1.20738
-1.92486
-1.91198
-1.67691
-1.8168
0.70298
0.723347
0.587456
0.683698
0.699703
0.71454
0.586657
0.56294
0.56615
0.662928
0.676925
0.596299
0.666036
0.594461
0.688072
0.728938
0.894662
0.758379
0.904064
0.893754
0.762865
0.904653
0.895954
0.77439
0.905436
0.897489
0.767252
0.905362
0.964633
0.917119
1.25259
1.01331
1.19336
1.01047
1.23216
1.29265
1.28573
0.95796
0.937643
1.06875
1.19228
1.22242
1.06587
1.22659
0.71113
0.718085
0.565572
0.56489
0.608895
0.67786
0.676667
0.672309
0.606422
0.733082
0.720448
0.666635
0.602415
0.673312
0.669203
0.604437
0.973214
0.974861
1.09394
1.23461
1.0637
1.20387
1.09123
1.0649
1.24455
1.33917
1.29941
1.28629
0.962725
0.974249
1.07564
1.20374
1.24041
1.07444
1.24081
0.151351
0.0156463
0.142706
0.126811
0.0499772
0.13807
-0.00801687
-0.0290623
-0.0198892
-0.0647394
0.00577624
-0.0219034
-0.0260984
0.0184536
0.0215242
-0.0364332
0.00749848
0.0469929
0.147377
0.138759
0.0538816
0.141236
0.0161478
-0.0279191
-0.0668977
0.033302
0.177359
0.193088
0.208716
0.184305
0.42931
0.39357
0.277877
0.362848
0.291472
0.368113
0.278867
0.290892
0.367034
0.183164
0.194613
0.174102
0.183466
0.173966
0.281655
0.275758
0.37517
0.369837
0.205205
0.284022
0.371124
0.0708356
0.148
0.123076
0.135679
0.0452812
-0.0230951
-0.0443403
-0.00361685
-0.0206929
0.0185032
0.0154744
0.0116927
0.0302265
-0.00213364
0.0749145
0.222188
0.162167
0.0559888
0.156844
-0.0179847
0.0214216
0.18967
0.205407
0.250713
0.205351
0.384625
0.274642
0.376798
0.199706
0.270666
0.388031
0.434317
0.443377
0.147799
0.218857
0.250659
0.204136
0.270929
0.37631
0.382554
0.270843
0.197433
0.388204
0.490934
0.410723
0.480379
0.408601
0.476936
0.494038
0.499408
0.413306
0.485335
0.415643
0.487549
0.497696
0.509165
0.495685
0.431094
0.497956
0.450202
0.508429
0.503585
0.494826
0.417029
0.4944
0.416982
0.504386
-1.88869
-1.94964
-1.99223
-2.06858
-1.97897
-1.90866
-1.948
-1.40737
-1.36125
-1.46366
-1.45943
-1.49605
-1.50797
-1.38353
-1.46872
-1.44272
-1.51601
-1.48179
-1.2399
-1.30272
-1.24382
-1.37113
-1.24111
-1.24813
-1.33213
-1.19328
-1.10142
-1.13499
-1.14171
-1.19842
-1.23578
-1.36243
-1.23116
-1.34946
-1.24104
-1.30823
-1.24371
-1.32799
-1.23946
-1.25132
-1.33237
-1.23259
-1.20825
-1.33292
-1.23781
-1.32686
-1.24367
-1.35298
-1.34504
-1.24059
-1.24901
-1.23049
-1.21909
-1.16591
-1.13559
-1.11658
-1.1956
-1.23119
-1.3348
-1.23309
-1.22627
-1.34074
-1.23416
-1.21681
-1.20737
-1.52363
-1.63453
-1.50687
-1.69712
-1.51994
-1.53543
-1.62875
-1.52017
-1.51798
-1.69174
-1.6101
-1.52994
-1.50931
-1.61395
-1.35375
-1.36936
-1.46804
-1.35691
-1.46343
-1.3706
-1.33323
-1.53438
-1.64768
-1.46833
-1.50994
-1.35463
-1.36847
-1.43573
-1.45234
-1.34253
-1.44996
-1.53519
-1.6292
-1.50606
-1.90506
-2.13277
-1.90329
-1.73252
-1.73855
-1.82455
-1.77745
-1.84318
-1.87276
-1.73669
-2.14193
-1.98587
-1.91853
-1.91794
-2.43892
-2.35797
-2.32358
-2.21386
-2.11498
-2.18317
-2.20457
-2.1668
-2.3312
-2.2417
-2.14649
-2.20654
-1.94575
-1.89607
-1.72024
-1.75487
-1.86651
-1.84485
-1.70721
-1.75292
-1.82086
-1.73222
-1.81861
-1.88852
-1.97358
-1.91982
-2.03608
-2.09437
-1.93812
-2.12191
-1.98496
-1.88714
-1.74374
-1.72858
-1.95509
-1.94665
-2.04764
-1.95196
-1.92996
-2.06809
-1.97583
-2.07194
-1.91445
0.691764
0.688945
0.61951
0.690539
0.67485
0.692597
0.603962
0.566289
0.557914
0.681907
0.687921
0.691799
0.675203
0.633041
0.692912
0.604271
1.01913
0.99491
1.24979
1.04286
1.23203
1.06541
1.30953
1.31926
1.31892
0.975833
0.993617
1.08107
1.23456
1.3076
1.06633
1.30319
0.882488
0.719221
0.971569
0.893265
0.722662
1.029
0.897422
0.752683
1.05712
0.720789
1.04364
0.896013
0.688941
0.685675
0.565287
0.565525
0.636998
0.696315
0.679351
0.689005
0.638698
0.693473
0.685861
0.68876
0.638246
0.679948
0.688937
0.639073
1.01291
1.32621
1.33731
1.34719
1.10241
1.26477
1.07221
1.33305
1.07754
1.31278
1.25597
1.07636
1.32563
-1.9578
-2.1017
-1.90705
-2.0799
-1.97371
-1.97408
-1.80408
-1.68626
-1.72029
-1.86408
-1.6917
-1.85282
-1.81509
-1.80138
-1.84952
-1.69422
-1.7218
-1.69035
-1.80501
-1.8869
-1.97021
-2.03298
-2.03554
-2.02133
-2.02952
-1.98719
-1.96044
-2.34446
-2.15885
-2.32398
-2.16874
-2.46221
-2.19493
-2.1766
-2.46769
-2.44285
-2.23241
-2.49206
-2.31057
-2.17776
-2.07027
-2.21956
-2.14543
-2.3005
-2.1545
-2.52163
-2.76491
-2.20552
-2.10932
-2.06296
-2.02583
-2.21499
-2.1
-2.09595
-2.34064
-2.20518
-2.15781
-2.55129
-2.57967
-2.4887
-2.6829
-1.92179
-2.12165
-1.99667
-2.10153
-1.85309
-1.7557
-1.71832
-1.73618
-1.86798
-1.94987
-1.89649
-1.96037
-2.08941
-1.87602
-1.95299
-2.04991
-1.84123
-1.8207
-1.71126
-1.70165
-1.70775
-1.81075
-1.92699
-2.10026
-1.91419
-2.06861
-1.67105
-1.92794
-1.85149
-1.69699
-2.02302
0.590517
0.700576
0.774073
0.773238
0.592866
0.555261
0.599255
0.769479
0.701264
0.629161
0.775117
0.595456
0.911046
0.693363
1.08218
0.919568
0.753552
1.06785
0.906582
0.754872
1.06176
0.903385
0.755199
1.06689
1.38021
1.16048
1.31846
1.14977
1.38379
1.13415
1.31164
1.4015
1.14527
1.38712
0.696889
0.55892
0.560734
0.637626
0.698508
0.683069
0.699222
0.636245
0.69672
0.698263
0.754007
0.63266
0.685303
0.698845
0.635121
1.34855
1.10988
1.2728
1.1132
1.37304
1.12669
1.28717
1.39764
1.11586
1.38155
0.152725
-0.049199
-0.0491433
0.154509
-0.0490529
0.0522316
0.104147
0.0216943
0.112569
0.0513971
0.0443305
0.108579
0.000454291
-0.0399844
-0.0213705
-0.0276054
0.0007564
-0.0381087
0.0505817
0.100159
0.0297702
0.0980803
0.0442566
0.0424035
0.105792
0.00301415
0.0725325
-0.0371371
-0.0286914
-0.0369632
0.0115726
0.252116
0.137617
0.213103
0.252677
0.210411
0.133891
0.127601
0.361097
0.147466
0.358095
0.221525
0.347352
0.267921
0.356735
0.256476
0.257637
0.348311
0.244809
0.134067
0.198387
0.168021
0.204601
0.223769
0.260946
0.350747
0.359371
0.224709
0.259731
0.352195
0.0492218
0.106847
-0.0183263
0.115218
0.116685
-0.0282489
0.0488882
-0.00844554
-0.048699
0.0397997
-0.0110326
-0.0565564
0.0267774
0.046173
0.110484
0.117353
0.04563
0.0462388
0.117087
-0.0305404
-0.00316547
0.0351254
-0.0233839
-0.044083
0.0275729
-0.00423235
0.246743
0.144565
0.213285
0.21405
0.249134
0.263777
0.344641
0.281254
0.355214
0.267824
0.277623
0.342669
0.210971
0.36825
0.160141
0.363416
0.24705
0.146823
0.220334
0.252112
0.217196
0.257695
0.26437
0.354018
0.34639
0.273637
0.237898
0.341301
0.514349
0.439253
0.496517
0.440853
0.496309
0.514238
0.515605
0.437752
0.499026
0.435822
0.499209
0.515503
0.517882
0.493179
0.427983
0.51849
0.426182
0.51029
0.511933
0.495354
0.430176
0.496416
0.42833
0.511847
-1.10837
-1.0957
-1.41041
-1.38449
-1.31406
-1.42386
-1.37218
-1.46617
-1.57853
-1.4564
-1.54731
-1.46001
-1.44742
-1.56162
-1.43583
-1.61572
-1.44772
-1.57612
-1.42718
-1.33161
-1.31084
-1.34119
-1.41513
-1.2198
-1.22474
-1.28838
-1.31103
-1.2199
-1.28224
-1.22936
-1.22767
-1.28267
-1.24676
-1.30196
-1.23184
-1.28032
-1.23949
-1.23588
-1.24305
-1.30502
-1.33494
-1.23953
-1.29661
-1.24746
-1.23219
-1.28513
-1.34092
-1.24749
-1.29416
-1.23098
-1.25208
-1.48504
-1.60258
-1.47393
-1.5661
-1.38616
-1.42239
-1.33185
-1.34436
-1.39166
-1.33328
-1.39729
-1.38072
-1.33685
-1.34805
-1.39429
-1.33682
-1.3711
-1.11689
-1.17078
-1.19546
-1.23034
-1.32836
-1.20651
-1.22795
-1.29986
-1.19913
-1.22993
-1.25324
-1.13528
-1.16974
-1.21433
-1.22976
-1.2504
-1.32821
-2.02989
-2.10067
-1.98045
-1.69883
-1.70732
-1.84303
-1.71188
-1.86351
-1.93204
-1.89635
-1.69162
-1.71335
-1.71336
-1.89524
-2.08866
-2.05256
-1.99448
-2.03624
-1.92107
-2.0049
-2.09224
-1.96266
-1.9932
-2.00592
-1.89924
-1.93802
-2.15269
-2.0114
-2.04752
-1.99386
-1.94386
-2.04856
-2.56285
-2.20906
-2.45968
-3.33524
-2.88844
-3.12109
-2.15888
-2.05151
-2.28949
-2.0214
-2.12208
-2.10239
-1.98152
-2.29738
-2.07262
-2.51244
-2.00317
-2.33204
-1.87888
-2.15351
-2.43473
-2.03165
-2.14399
-2.00128
-1.68335
-1.91619
-1.91177
-1.90159
-1.69435
-1.92858
-2.16055
-2.03793
-1.99022
-2.57733
-2.14875
-2.46896
-2.64224
-2.57524
-2.65572
-2.8773
-2.60262
-2.66738
-2.12937
-2.38843
-2.45871
0.591078
0.788024
0.698505
0.749325
0.590957
0.591293
0.593782
0.726745
0.696062
0.588482
0.746531
0.590256
1.36392
1.1716
1.38767
1.39123
1.04218
0.632543
1.02789
0.62212
0.97248
0.924745
0.696191
0.788063
0.686938
0.979547
0.919862
1.16316
1.27625
1.25326
1.36954
1.25398
1.16738
1.26893
1.04555
0.621971
1.05559
0.966473
0.707229
0.91332
0.787147
0.959383
0.69136
0.917528
1.1568
1.22959
1.2532
1.36089
1.15033
1.24856
1.2624
0.591618
0.59015
0.587309
0.637305
0.686383
0.687312
0.587071
0.711043
0.588887
0.689081
0.690473
0.58802
1.44839
1.44337
-2.10814
-1.93927
-2.01784
-2.14851
-1.97782
-2.08956
-2.14454
-1.97807
-1.70869
-1.69224
-1.85281
-1.73416
-1.94142
-1.841
-1.91893
-1.66775
-1.70327
-1.96306
-1.91929
-1.80257
-1.68165
-1.70808
-1.72642
-1.81723
-1.89457
-2.13065
-2.00077
-2.00852
-2.05884
-1.99622
-2.11565
-2.11756
-2.6721
-2.15216
-2.08086
-2.26876
-2.21256
-2.17999
-2.79837
-2.67012
-2.38233
-2.07401
-1.87919
-2.16568
-2.4228
-2.59743
-2.84987
-2.14465
-2.16343
-2.91869
-3.61793
-2.18085
-2.65111
-2.04501
-2.09153
-2.12779
-2.1516
-2.17619
-2.57588
-2.73566
-2.31616
-1.99056
-3.23026
-2.27505
-2.69802
-2.9381
-2.07109
-1.91764
-2.12898
-1.95961
-2.10492
-1.91375
-2.12972
-1.99764
-1.67044
-1.65545
-1.99593
-2.12885
-2.10924
-2.12621
-2.09789
-1.85888
-1.79225
-1.6792
-1.6298
-1.67446
-1.88865
-1.7692
-2.14992
-2.1404
-2.14297
-2.02155
-1.94232
-1.85756
-2.04097
-1.88228
-2.07063
-1.99549
-2.14012
-2.16793
-2.31794
-2.1451
-2.32466
-2.74839
-2.53738
-2.48667
-3.75933
-2.50801
-2.11854
-2.38628
-2.10097
-2.35019
-2.40661
-2.31196
-3.19047
-3.33561
-2.48943
-2.94125
0.591614
0.645741
0.590729
0.599288
0.578965
0.580421
0.603011
0.648146
0.600708
0.592904
0.601599
1.07486
1.08454
0.992836
0.929138
0.694585
0.804623
0.987049
0.68058
0.932792
1.18008
1.28409
1.25762
1.4017
1.17492
1.25315
1.29215
1.07303
1.06118
0.996946
0.699881
0.939114
0.806319
1.00376
0.677819
0.934891
1.1848
1.26576
1.30961
1.41206
1.19193
1.25258
1.30006
1.55461
1.54427
0.582133
0.585009
0.588386
0.636664
0.689804
0.622733
0.588058
0.605742
0.600915
0.685099
0.618904
0.587523
1.4973
1.48854
0.069649
0.0448827
0.0521361
-0.0182309
-0.0554213
-0.00210437
0.0443958
0.0553616
0.0524618
0.0537341
-0.0533504
0.00532025
0.0145328
-0.0319119
0.0133235
-0.0233045
0.00951746
0.0154278
-0.0267876
0.0134306
0.00513666
-0.0104103
-0.0221807
0.00492226
-0.0239563
0.0141596
0.200356
0.0995625
0.0555639
0.180003
0.0444874
0.20408
0.177469
0.188737
0.182172
0.18943
0.313858
0.186408
0.311656
0.201768
0.107656
0.0817604
0.17122
0.103394
0.188968
0.175309
0.18634
0.186754
0.0108579
-0.0249005
-0.00363527
-0.0636063
0.00970319
-0.0248522
0.00188916
0.0122529
0.00795128
-0.0598109
-0.0232286
-0.0248689
0.00171253
0.0158981
0.224015
0.107191
0.0616333
0.182066
0.185751
0.075658
0.206354
0.220904
0.149995
0.235837
0.31661
0.177063
0.317917
0.221385
0.113075
0.183839
0.0785089
0.162162
0.186683
0.080988
0.219722
0.184897
0.512349
0.417609
0.51282
0.419153
0.514375
0.510451
0.507872
0.416623
0.512024
0.415274
0.511362
0.509129
0.499282
0.569618
0.396161
0.568926
0.394641
0.500822
0.503727
0.570825
0.398119
0.568803
0.400104
0.502091
-1.39597
-1.35109
-1.42605
-1.46017
-1.48487
-1.34982
-1.43513
-1.42731
-1.10584
-1.19781
-1.09019
-1.19273
-1.09823
-1.23386
-1.28914
-1.24247
-1.2214
-1.29442
-1.22778
-1.26128
-1.32197
-1.27221
-1.19653
-1.1479
-1.10427
-1.18705
-1.09069
-1.17025
-1.10556
-1.07524
-1.07975
-1.32325
-1.2265
-1.26337
-1.42713
-1.34077
-1.37839
-1.42034
-1.33958
-1.38632
-1.43133
-1.57168
-1.4756
-1.51985
-1.43319
-1.4654
-1.52313
-1.40988
-1.3064
-1.43609
-1.62602
-1.47797
-1.47515
-1.32369
-1.42757
-1.44227
-1.16398
-1.05433
-1.04479
-1.17799
-1.15444
-1.0855
-1.09822
-1.14532
-1.09623
-1.14292
-1.18938
-1.21344
-1.20714
-1.25867
-1.30918
-1.21138
-1.25112
-1.20473
-1.15654
-1.07406
-1.04303
-1.21807
-1.21629
-1.25904
-1.21348
-1.23255
-1.24836
-1.193
-1.21626
-1.24366
-1.31868
-1.19129
-1.22915
-1.09992
-1.09987
-1.169
-1.08847
-1.09693
-1.14626
-1.11619
-1.14825
-1.19358
-1.07577
-1.11181
-1.20924
-1.32404
-1.21507
-1.21589
-1.23802
-1.62587
-1.46604
-1.44471
-1.41718
-1.33917
-1.30218
-1.4119
-1.40535
-1.36151
-1.40466
-1.81672
-1.6517
-1.64037
-1.65182
-1.85057
-1.94216
-2.17293
-1.95725
-1.97347
-1.91838
-1.98459
-2.01187
-1.94153
-2.00681
-2.40655
-2.25582
-1.59843
-2.02501
-2.05608
-1.96844
-2.49121
-2.70483
-2.14688
-2.86109
-2.15281
-2.49755
-2.06196
-2.29703
-2.52784
-2.35278
-1.93054
-2.03909
-2.10566
-1.99583
-2.39891
-2.11733
-2.56389
-2.09764
-2.12499
-2.55376
-1.90267
-1.65186
-1.67033
-1.88618
-2.05592
-2.10251
-2.10024
-2.10143
-1.94605
-1.83468
-1.81872
-1.98896
-1.96223
-1.78994
-1.99805
-2.03554
-2.04226
-1.9357
-2.07903
-2.34754
-2.13411
-2.06952
-2.37368
-2.36239
-1.95793
-2.06543
-2.50403
-2.39439
-2.0841
-2.08974
-2.51315
0.59057
0.67518
0.585116
0.557929
0.566834
0.67623
0.575425
0.581697
1.63141
1.63757
1.14689
1.15454
1.08431
0.980597
0.885973
0.829126
0.890654
1.09155
0.976043
1.27442
1.41456
1.54991
1.28486
1.40134
1.14835
1.16144
1.07934
0.869639
0.965889
0.826151
1.06448
0.893126
0.972091
1.26207
1.38117
1.53545
1.25263
1.39184
0.555542
0.54755
0.552382
0.724491
0.554772
0.572694
0.723724
0.557772
1.68694
1.6814
-1.7891
-1.74159
-1.6633
-2.02873
-1.65773
-1.77584
-2.07433
-1.91361
-2.18885
-1.93995
-2.10911
-1.91495
-1.97955
-2.13774
-1.89648
-1.94251
-2.04866
-2.10387
-1.87023
-1.97079
-2.12307
-1.94991
-2.28878
-2.10023
-1.91084
-1.94108
-2.24952
-1.87737
-1.78819
-1.63418
-2.53419
-1.27377
-1.18419
-1.90221
-2.40906
-1.96424
-2.0191
-2.15619
-2.44693
-1.96306
-2.03254
-2.38964
-1.75134
-1.70465
-1.65801
-2.01387
-1.63886
-1.76226
-1.9017
-1.79528
-1.89165
-2.02524
-1.82936
-1.83172
-1.90466
-1.77917
-1.80854
-1.89353
-2.03872
-2.05353
-1.83564
-1.85255
-1.98777
-2.21262
-2.11333
-2.20021
-2.29615
-2.13564
-2.6638
-1.98567
-2.32408
-2.57022
-1.36196
-1.42614
-1.96403
-2.60755
-2.12495
-2.07461
-2.20154
-2.55033
-2.11064
-2.07822
-2.63337
-1.72544
-2.12228
0.548722
0.768568
0.553304
0.540868
0.540842
0.76798
0.554853
0.554792
1.19038
1.19535
1.11163
0.987786
0.901458
0.842285
1.10663
0.910669
0.990406
1.32687
1.44116
1.7108
1.30425
1.44404
1.18895
1.175
1.118
0.933496
1.00272
0.846809
1.12595
0.912789
0.994607
1.33457
1.4666
1.64498
1.34281
1.45231
1.90118
-2.56844
-2.19402
-2.53933
-2.32904
-2.82064
-2.17931
-2.60473
1.89407
0.540989
0.540992
0.555305
0.738132
0.554464
0.554625
0.738845
0.553684
-1.67069
-2.10749
-2.06276
-1.98123
-2.08251
-2.01527
-2.0639
-2.07501
-2.02017
1.79989
-3.17515
1.80602
0.0601035
0.0104348
0.0757063
0.011447
0.0807624
0.013468
-0.0339145
0.0084294
0.0635704
0.028261
0.0999965
0.0153393
0.0950045
0.00354401
-0.0347306
0.007224
0.134144
0.0887577
0.0224865
0.162503
0.0170949
0.133586
0.162062
0.124463
-0.0620961
-0.0509018
0.126549
0.228657
0.313392
0.226949
0.305012
0.138237
0.0864134
0.01094
0.160158
0.0164896
0.137583
0.161758
0.118302
-0.035301
-0.0447549
0.114579
0.137537
0.0887754
0.023751
0.162365
0.162461
0.0190793
0.133686
0.113985
0.170721
0.229726
0.314
0.227046
0.315494
0.139868
0.0832885
0.166812
0.0796128
0.160235
0.161889
0.0740971
0.119779
-0.0324985
-0.0310364
0.114542
0.48746
0.274376
0.377619
0.550773
0.378886
0.557304
0.485491
0.482198
0.257306
0.375719
0.549069
0.374138
0.542498
0.483116
0.473747
0.222789
0.532504
0.366475
0.531402
0.365268
0.474571
0.475953
0.23917
0.53264
0.367553
0.533298
0.368554
0.475354
-1.26763
-1.43172
-1.37773
-1.29498
-1.3442
-1.38358
-1.298
-1.45002
-1.45125
-1.5964
-1.47157
-1.45457
-1.41453
-1.42846
-1.31398
-1.30087
-1.37866
-1.38412
-1.27372
-1.39424
-1.32282
-1.28092
-1.23779
-1.24888
-1.20132
-1.16246
-1.06247
-1.0848
-1.18935
-1.13266
-1.06456
-1.11644
-1.07061
-1.12674
-1.07113
-1.11996
-1.22877
-1.19491
-1.25437
-1.29863
-1.19114
-1.21498
-1.29717
-1.23903
-1.25404
-1.19097
-1.24845
-1.19089
-1.22016
-1.28137
-1.17673
-1.07211
-1.08338
-1.11513
-1.21572
-1.21518
-1.15244
-1.24903
-1.27845
-1.20401
-1.18478
-1.15825
-1.23293
-1.26788
-1.16712
-1.26983
-1.17236
-1.13764
-1.01944
-1.03573
-1.15209
-1.20082
-1.25226
-1.23026
-1.18728
-1.17686
-1.281
-1.21517
-1.12461
-1.06399
-1.04197
-1.11371
-1.15208
-1.2971
-1.27685
-1.16576
-1.61407
-1.4946
-1.50837
-1.41679
-1.40947
-1.30794
-1.2997
-1.38032
-1.32151
-1.31349
-1.36748
-1.31478
-1.36811
-1.39004
-1.31763
-1.42064
-1.3087
-1.32974
-1.45989
-1.39925
-1.36954
-1.35937
-1.29505
-1.43387
-1.36334
-1.35306
-1.51005
-1.55338
-1.43017
-1.65519
-1.45538
-1.44384
-1.63402
-1.41076
-1.34438
-1.34201
-1.41604
-1.32475
-1.29525
-1.34463
-1.35514
-1.33092
-1.45293
-1.44383
-1.15281
-1.20992
-1.17377
-1.23683
-1.09733
-1.04225
-1.05836
-1.10884
-1.09775
-1.06614
-1.06482
-1.12872
-1.14794
-1.26073
-1.24264
-1.12869
-1.19072
-1.21438
-1.274
-1.18219
-1.16708
-1.15379
-1.26123
-1.21824
-1.16726
-1.14915
-1.24278
-1.15325
-1.03011
-1.02828
-1.15254
-1.14414
-1.03094
-1.02785
-1.13552
-1.19327
-1.30899
-1.17836
-1.27918
-1.17047
-1.20931
-1.20734
-1.13654
-1.14518
-1.22123
-1.17463
-1.45298
-1.30726
-1.47414
-1.24823
-1.50298
-1.49988
-1.41268
-1.65501
-1.39547
-1.45078
-1.6359
-1.39094
-1.29617
-1.2281
-1.27204
-1.30703
-1.27061
-1.37229
-1.48008
-1.61518
-1.4769
-1.41462
-1.30366
-1.34074
-1.24105
-1.32354
-1.46353
-1.28746
-1.47948
-1.45595
-1.44563
-1.28944
-1.24818
-1.42401
-1.77766
-2.24509
-1.86412
-2.1187
-1.83733
-1.80502
-2.24553
-1.70672
-1.71289
-2.06642
-2.04427
-1.75441
-1.63884
-2.12358
-1.69575
-1.85227
-1.78427
-1.91357
-1.73673
-1.72833
-1.84311
-1.66471
-1.65951
-1.82631
-1.90716
-1.62537
-1.69452
-1.82196
-1.66352
-1.90842
-1.8468
-1.82978
-1.98965
-1.86461
-1.90247
-1.99325
-1.87437
0.55311
0.773764
0.549992
0.551
0.531804
0.775267
0.582108
0.535408
2.04277
-2.4251
-2.17808
-2.42849
-1.16928
-0.70705
-2.33372
-2.29553
2.0525
-2.19824
-2.25061
-2.36748
1.22405
1.22367
1.15001
1.06888
1.08126
0.945391
1.069
1.15851
1.06254
1.39041
1.61931
1.92096
1.61607
1.41125
1.38314
1.60881
1.90999
1.36377
1.61262
1.22667
1.23932
1.14128
1.05116
1.05257
0.93982
1.13591
1.06302
1.05792
-1.70831
-1.92962
-1.96981
-1.94822
-2.07731
-1.95784
-1.9169
-2.07846
-1.94496
0.551284
0.547269
0.56559
0.790062
0.572293
0.581013
0.789224
0.575067
-2.03466
-2.13696
-2.32184
-0.976419
-0.130338
-2.34759
-1.14973
-2.30996
0.477447
2.07239
0.565614
2.06382
0.847567
-2.14732
-2.26201
-2.36508
-1.66013
-1.73705
-1.7459
-1.69918
-1.76699
-1.92771
-1.80428
-1.88742
-1.81101
-1.81347
-1.90896
-1.80548
0.489703
0.829494
0.51289
0.50763
0.494067
0.824606
0.529892
0.516156
1.20844
1.23706
1.18762
1.07704
1.09771
0.958601
1.17361
1.12005
1.08345
1.42052
1.62498
1.88335
1.62384
1.4228
1.40296
1.62851
1.87916
1.42268
1.62902
1.23889
1.24962
1.21381
1.14791
1.09622
0.959807
1.22601
1.13292
1.09077
0.0835141
1.80901
0.116274
-4.08488
-2.78572
-1.70032
-1.95007
-2.63421
-1.73783
-2.60108
-2.60751
-2.98368
-0.523836
-0.780076
-1.37815
-0.600283
-1.33527
-3.39926
1.85647
-0.273809
-0.0754003
-2.78733
-2.01104
-1.88923
-1.80136
-2.57114
-2.97136
0.511688
0.526113
0.565163
0.806103
0.555431
0.534238
0.806627
0.550188
-1.94846
-1.65816
-1.74546
-1.7245
-1.75285
-1.74346
-1.94662
-1.7325
-1.92762
-1.80081
-1.89884
-2.26029
-1.81347
-2.23796
-1.92376
-1.92753
-1.78891
-1.91829
-1.81985
-1.94741
-2.21643
-1.99018
-2.00889
-2.0522
0.441973
1.97579
0.209788
-0.632744
-0.856579
-1.45214
-0.961378
-1.60323
-3.64975
1.96959
-0.291393
0.135748
-2.13036
-2.01655
-2.0153
-3.41096
-0.026212
-0.00965652
-0.0450205
-0.0493996
-0.0410654
-0.0377288
-0.0526127
-0.11827
-0.0871122
-0.0976195
-0.104558
-0.0907225
-0.117559
-0.129472
-0.0211811
-0.00609129
-0.0274713
-0.0397636
-0.00943352
-0.0324923
-0.0494902
-0.12549
-0.100667
-0.0998113
-0.144151
-0.0949857
-0.139695
-0.134988
0.109363
0.058476
0.0426782
0.138812
0.0349044
0.11387
0.135909
0.156661
-0.119434
-0.104392
0.151441
0.188734
0.284719
0.193018
0.282608
0.105404
0.0553332
0.0248781
0.129527
0.0301029
0.101594
0.132767
0.158692
-0.072832
-0.0993024
0.163393
0.119133
0.0632215
0.0464855
0.139778
0.142127
0.0501053
0.116333
0.167015
-0.0778778
0.169407
-0.0882187
0.196615
0.286636
0.193698
0.288432
0.12167
0.065943
0.147107
0.0562671
0.124054
0.144667
0.0532546
0.166019
-0.0986376
-0.0928239
0.163826
0.463887
0.200384
0.357651
0.527806
0.358224
0.515691
0.46393
0.462281
0.190704
0.356861
0.528036
0.356283
0.526764
0.462954
0.450479
0.180283
0.516419
0.34511
0.514502
0.343093
0.452055
0.455282
0.183782
0.516937
0.347061
0.518742
0.348855
0.454001
-1.36505
-1.26
-1.21941
-1.37415
-1.39935
-1.41267
-1.33889
-1.48175
-1.32789
-1.3801
-1.48529
-1.40582
-1.58017
-1.39426
-1.55726
-1.3538
-1.18941
-1.21107
-1.32512
-1.40972
-1.64534
-1.40118
-1.56354
-1.1184
-1.21937
-1.11902
-1.25045
-1.10678
-1.02141
-0.990457
-1.00434
-1.11713
-1.10036
-0.989428
-0.994467
-0.997434
-1.08041
-1.1152
-1.26408
-1.11513
-1.25539
-1.16406
-1.20838
-1.20259
-1.17474
-1.03986
-0.999523
-1.00378
-1.05878
-1.00075
-1.0469
-1.0426
-1.04669
-0.999319
-1.00522
-0.999517
-1.06132
-1.04934
-1.1477
-1.2115
-1.20258
-1.13863
-1.33612
-1.26972
-1.36921
-1.30221
-1.38818
-1.46007
-1.34775
-1.51612
-1.35457
-1.37244
-1.54067
-1.31613
-1.28127
-1.21565
-1.27066
-1.27042
-1.33286
-1.27935
-1.42546
-1.62233
-1.46015
-1.63386
-1.33388
-1.30111
-1.39125
-1.30549
-1.36525
-1.67286
-1.39044
-1.64487
-1.27403
-1.24338
-1.25133
-1.30021
-1.35344
-1.60037
-1.39421
-1.59724
-1.27636
-1.19124
-1.3214
-1.18701
-1.34913
-1.56759
-1.33432
-1.5933
-1.10731
-1.17957
-1.11793
-1.08604
-1.19528
-1.10279
-1.10159
-1.05362
-0.979802
-1.01012
-1.13072
-1.13379
-0.979558
-1.04401
-1.05816
-1.12488
-1.00551
-0.986843
-1.13287
-0.979974
-1.0644
-1.11168
-1.07966
-1.21087
-1.12067
-1.19922
-1.10712
-1.10893
-1.09317
-1.17272
-1.13707
-1.16078
-1.13099
-1.09417
-1.05513
-0.997484
-0.992587
-1.07327
-0.995506
-1.04902
-1.08369
-1.06162
-1.12544
-0.993822
-0.989603
-0.994311
-1.10758
-1.06458
-1.10334
-1.19868
-1.11297
-1.11896
-1.18098
-1.1215
-1.30866
-1.22139
-1.30051
-1.20202
-1.3121
-1.51097
-1.50597
-1.31128
-1.3158
-1.55493
-1.339
-1.52618
-1.2848
-1.15834
-1.17881
-1.26283
-1.93266
-2.36966
-1.9127
-2.45345
-1.73499
-1.52203
-1.66685
-1.55143
-1.66971
-1.56773
-1.80891
-1.90056
-1.69317
-1.76947
-1.88328
-1.77005
-1.56045
-1.59935
-1.94185
-1.59535
-1.9168
-1.77569
-1.9021
-1.8074
-1.77166
-1.90783
-1.75904
-2.00472
-1.60349
-1.60929
-1.6095
-1.81564
-2.00988
-1.9249
-2.41923
-2.48299
-1.91008
0.485569
0.840549
0.465811
0.427178
0.442284
0.842126
0.44385
0.460064
-3.34543
-2.7598
-3.17281
-2.80624
0.0854806
1.58405
-0.0325083
-3.82455
-2.24984
-1.65437
-2.65346
-1.8212
-2.5197
-1.59285
-2.53713
-2.84372
1.56957
-0.277612
-0.197432
-2.62128
-3.28198
-2.13254
-2.15722
-1.7465
-1.38074
-1.47941
-2.51638
-2.00778
1.51835
1.47282
1.32517
1.16618
1.07406
1.02592
1.08852
1.33475
1.16058
1.66223
1.48832
1.68005
1.51451
1.67995
1.65203
1.56546
1.57344
1.62556
1.54547
1.54015
1.57724
1.30679
1.10022
1.14511
1.01757
1.29394
1.08441
1.15378
-1.90301
-2.35743
-1.91697
-1.90444
-1.56068
-1.68309
-1.56641
-1.73655
-1.61169
-1.83217
-1.73254
-1.74945
-1.91037
-1.76227
-2.27371
-1.7927
-1.92406
-1.72508
-2.23422
-1.93636
-1.80402
-1.7592
-1.91377
-1.89121
-2.03839
-1.61979
-1.74074
-1.67735
-1.8391
-2.23214
0.424428
0.418161
0.451788
0.867492
0.439304
0.440542
0.866237
0.436578
-2.73736
-2.74534
-2.7384
-3.03342
-1.76374
-1.20203
-1.54431
-2.01744
-1.25731
-1.99951
-1.6871
-1.94636
0.00790115
1.29287
-0.0929361
-1.48297
-2.15367
-0.316687
1.35306
-0.325246
-2.45988
-1.74807
-2.11985
-1.56767
-1.33124
-1.28176
-2.10367
-1.78397
-2.51479
-2.48127
-2.70814
-2.05689
-1.78792
-2.00177
-1.75646
-2.0548
-1.81729
-1.6986
-1.69525
-1.88508
-1.66568
-1.37826
-1.60202
-1.38428
-1.60725
-1.40769
-1.65901
-1.74764
-1.52274
-1.94104
-1.4883
-1.76678
-1.48177
-1.902
-1.76589
-1.6815
-1.69358
-1.72855
-1.84536
-2.42967
-1.91656
-2.23148
-1.75277
-1.81818
-1.43082
-1.46941
-1.45451
-1.74526
-1.84954
0.591933
0.913346
0.577019
0.404676
0.399306
0.913182
0.541787
0.569704
1.62772
1.63788
1.34993
1.17095
1.07478
1.04288
1.33959
1.06825
1.16913
1.69389
1.47419
1.5226
1.45526
1.68682
1.7517
1.4065
1.50156
1.71415
1.43523
1.61968
1.58738
1.36692
1.08356
1.15666
1.04042
1.37496
1.08241
1.15294
-1.35947
-1.99071
-1.98168
-1.56676
-1.31539
-2.07256
-2.02589
-1.05948
0.406759
0.407296
0.463014
0.886084
0.493077
0.533371
0.885444
0.500533
-1.74302
-2.01051
-1.75013
-2.01877
-1.70992
-1.60815
-1.63236
-1.71137
-1.71265
-1.67393
-1.64791
-1.72057
-1.70546
-1.78878
-1.4138
-1.38131
-1.39414
-1.72725
-1.75429
-1.74651
-2.0705
-2.05094
-1.7589
-1.66975
-1.98466
-2.0526
-1.62213
-1.41999
-1.13141
-1.98521
-1.40776
-1.54347
-1.07311
-1.8705
-1.29832
0.021308
1.08518
0.00537957
-1.43431
-1.06296
0.880755
-0.0716901
-0.0564594
-1.01773
-1.72822
-2.46334
-1.88551
-2.21559
-1.31479
-1.71373
-1.3934
-0.991703
-1.03027
-1.76429
-1.26937
-0.142067
-0.0447563
-0.104868
-0.0736489
-0.147257
-0.102743
-0.0695954
-0.100059
-0.202955
-0.115424
-0.149616
-0.0851842
-0.147718
-0.120197
-0.20304
-0.235968
-0.239677
-0.140747
-0.0431745
-0.101174
-0.0592181
-0.0961525
-0.101031
-0.0669129
-0.103104
-0.128147
-0.155252
-0.149588
-0.109176
-0.148016
-0.124779
-0.205524
-0.24262
-0.209617
-0.24217
0.0705542
0.0150595
-0.0283841
0.0986442
-0.0304378
0.0731388
0.0962785
0.0891287
-0.17983
-0.168444
0.0827069
0.123276
0.16549
0.234812
0.127569
0.232305
0.0691047
0.0143533
-0.0300483
0.091445
-0.0308655
0.0662904
0.0941717
0.0901457
-0.18206
-0.166738
0.0941436
0.0785755
0.0206363
-0.0256603
0.100133
0.102486
-0.022791
0.075819
0.10261
-0.184651
0.108741
-0.199314
0.1328
0.173465
0.237185
0.128876
0.238991
0.0820043
0.023094
0.108657
-0.0148074
0.0857299
0.105326
-0.0195183
0.100298
-0.186102
-0.199952
0.0956174
0.439361
0.168826
0.327855
0.50243
0.330512
0.50437
0.437542
0.436931
0.245939
0.326575
0.503208
0.330498
0.504553
0.436396
0.435404
0.221686
0.486168
0.332378
0.479065
0.330471
0.436108
0.437202
0.230959
0.488416
0.334256
0.4929
0.335411
0.437446
-1.25095
-1.19497
-1.19632
-1.24913
-1.19694
-1.23002
-1.26558
-1.32808
-1.44195
-1.34523
-1.33036
-1.33772
-1.45821
-1.26239
-1.20143
-1.1702
-1.29532
-1.19181
-1.27602
-1.2518
-1.29771
-1.31418
-1.43178
-1.28883
-1.31916
-1.43697
-1.09005
-1.13443
-1.16013
-1.15534
-1.20752
-1.08358
-1.13247
-1.02885
-0.979016
-1.02657
-1.13059
-1.08876
-0.978944
-1.03679
-1.02682
-1.11355
-1.01423
-0.982478
-1.09383
-0.981969
-1.02759
-1.09216
-1.1468
-1.21207
-1.12333
-1.20269
-1.10279
-1.12383
-1.20099
-1.20976
-0.99088
-1.17726
-1.1645
-1.12116
-0.996767
-1.16116
-1.24882
-1.222
-1.07458
-1.12721
-1.1644
-1.19778
-1.12044
-1.07625
-1.16026
-1.0378
-0.954108
-0.981288
-1.08141
-0.965522
-1.08853
-1.03155
-1.03187
-1.12449
-0.977428
-0.993058
-0.972167
-1.02867
-1.13725
-1.07355
-1.19931
-1.09387
-1.19553
-1.11252
-1.18688
-1.06738
-1.19848
-1.19061
-1.1417
-1.25163
-1.21384
-1.16918
-1.35425
-1.5123
-1.37733
-1.50173
-1.20131
-1.14021
-1.14582
-1.24128
-1.14489
-1.32479
-1.32075
-1.43838
-1.3053
-1.45281
-1.23085
-1.13949
-1.11066
-1.31033
-1.1262
-1.32659
-1.21429
-1.35743
-1.43413
-1.35674
-1.76385
-1.34339
-1.37773
-1.44996
-1.24381
-1.18496
-1.15417
-1.30435
-1.24434
-1.14477
-1.31737
-1.35873
-1.39036
-1.75952
-1.46913
-1.38937
-1.35432
-1.46157
-1.25766
-1.13756
-1.25114
-0.931128
-1.17665
-1.17985
-1.18734
-0.934882
-1.18209
-1.10366
-1.24585
-1.2463
-1.0166
-1.12022
-1.05873
-1.17863
-1.11464
-1.02706
-1.05443
-0.950608
-0.892041
-0.939423
-1.00291
-1.00705
-0.896672
-0.945319
-0.957887
-1.02727
-0.941794
-0.907989
-1.01741
-0.901298
-0.969355
-1.00747
-1.17936
-1.08976
-1.04775
-1.09989
-1.05079
-0.999709
-1.18437
-1.34897
-1.19125
-1.2695
-1.22948
-1.05344
-1.18076
-1.13747
-1.06408
-1.07443
-1.19596
-1.03627
-1.02027
-0.94692
-0.949637
-1.07035
-0.941505
-1.02662
-1.06293
-1.00276
-1.04507
-0.934893
-0.914748
-0.928913
-1.04616
-0.981609
-1.06561
-1.12823
-1.08487
-1.19419
-1.06592
-1.08294
-1.19056
-1.09394
-1.18734
-1.10581
-1.29985
-1.18916
-1.20107
-1.1052
-1.26676
-1.31314
-1.41968
-1.8717
-1.26911
-1.3292
-1.44363
-1.29326
-1.33111
-1.38631
-1.4677
-1.86865
-1.34636
-1.35569
-1.45692
-1.17692
-1.19395
-1.10377
-1.22672
-1.10558
-1.21395
-1.17113
-1.59491
-1.66479
-1.69687
-1.54387
-1.54817
-1.56097
-1.57298
-1.56421
-1.54897
-1.52323
-1.5707
-1.64198
-1.62729
-1.69925
-1.64639
-1.67846
0.597989
0.907485
0.616234
0.486606
0.447946
0.906752
0.648015
0.623466
-1.05026
-1.57218
-1.52088
-1.52873
-1.7517
-0.971147
-1.12051
-2.03366
-2.28964
-1.17086
-1.82812
1.78357
1.77831
1.48161
1.18284
1.13116
1.48413
1.18083
1.71082
1.25365
1.02878
0.70787
1.27839
1.29238
1.68534
1.71841
1.45812
1.30211
1.06055
1.72544
1.2908
1.32402
1.79021
0.451716
1.82426
1.4779
1.18396
1.12327
1.47964
1.18151
-1.73215
-1.68974
-1.71364
-1.8216
-1.69412
-1.60172
-1.69945
-1.5798
-1.75357
-2.03846
-1.74579
-1.91042
-1.67415
-1.52026
-1.5371
-1.65672
0.502526
0.477376
0.622095
0.92542
0.608285
0.645953
0.924537
0.604684
-1.65367
-1.991
-2.74917
-1.41805
-1.91842
-1.60357
-1.5427
-1.57213
-1.54899
-2.01554
-1.53843
-1.57598
-1.57403
-1.78242
-1.97544
-1.54081
-1.53293
-1.76788
-1.57187
-1.68786
-2.7785
-1.71982
-1.70711
-1.65585
0.634267
0.938443
0.637244
0.600695
0.589413
0.936459
0.641496
0.639105
1.84699
0.0224964
1.84886
0.147543
1.49705
1.18509
1.15264
1.49612
1.1823
1.58724
1.22455
0.904221
0.742097
1.18513
1.64409
0.725734
1.56747
0.623121
1.14903
0.878015
1.54644
1.16612
0.717625
1.83847
0.196366
1.83983
0.16849
1.50852
1.18245
1.15577
1.51493
1.18198
0.598125
0.575417
0.625923
0.928812
0.632974
0.640966
0.927252
0.634739
-1.54827
-1.99395
-1.40316
-2.35177
-1.58336
-2.03667
-1.37261
-1.52713
-1.48768
-1.90676
-1.79559
-1.51244
-1.78326
-1.50014
-1.54205
-1.773
-1.5397
-1.92282
-1.52586
-1.56472
-1.79418
-1.52682
-2.26925
-2.05626
-1.31747
-2.02769
-1.35443
-1.49504
-0.159491
-0.0775892
-0.139732
-0.137723
-0.163344
-0.136118
-0.135091
-0.224505
-0.217486
-0.166293
-0.253323
-0.179046
-0.219853
-0.153102
-0.251865
-0.181197
-0.226646
-0.257852
-0.214989
-0.231677
-0.154649
-0.0751859
-0.130349
-0.129259
-0.147835
-0.132708
-0.133165
-0.168551
-0.186715
-0.261324
-0.223776
-0.170372
-0.251588
-0.184633
-0.231941
-0.238101
-0.242033
-0.232809
0.0431136
-0.10704
-0.106264
0.0401148
0.13398
0.0576184
0.192013
0.134151
0.189686
0.0436051
-0.0992507
-0.104718
0.0448386
0.0499174
-0.127236
0.0523435
-0.0916038
0.105543
0.0957502
0.196627
0.133914
0.19837
0.050219
-0.0970917
-0.091878
0.0443315
0.427924
0.19727
0.316258
0.480605
0.317716
0.47638
0.428331
0.427132
0.185661
0.314164
0.484873
0.312359
0.496214
0.42747
0.421414
0.0972071
0.504424
0.30502
0.502873
0.303919
0.422494
0.424797
0.141194
0.504046
0.306976
0.502446
0.307196
0.424603
-1.15474
-1.09095
-1.10422
-1.20728
-1.09641
-1.14724
-1.17257
-1.15819
-1.15391
-1.2564
-1.51621
-1.31215
-1.17995
-1.1568
-1.15024
-1.07836
-1.06809
-1.17087
-1.08972
-1.16009
-1.13451
-1.16729
-1.33283
-1.22242
-1.53417
-1.1839
-1.32165
-1.1794
-0.978461
-1.01758
-1.01635
-1.10398
-1.0365
-0.970799
-1.02703
-0.934037
-0.88518
-0.929657
-0.995326
-0.99445
-0.877895
-0.939723
-0.983513
-1.11885
-1.07178
-1.04246
-1.05424
-0.992385
-1.03297
-1.09037
-1.14544
-1.06704
-0.884018
-1.03429
-1.04567
-1.06485
-0.883184
-1.04554
-1.08143
-1.05579
-1.06873
-1.19061
-1.28954
-1.27166
-1.31879
-1.32042
-1.1895
-1.26433
-1.2707
-1.33097
-1.30972
-0.974337
-1.01648
-1.00082
-1.02195
-1.01843
-0.971697
-1.01271
-0.972134
-1.00761
-1.00108
-1.0254
-1.01459
-1.01759
-0.959697
-1.15076
-1.08752
-1.17956
-1.28601
-1.14323
-1.09289
-1.29691
-1.24842
-1.38433
-1.26538
-1.87572
-1.26872
-1.31746
-1.34869
-1.15603
-1.1826
-1.10032
-1.25091
-1.16463
-1.09431
-1.29021
-1.23329
-1.3424
-1.27829
-1.84575
-1.21475
-1.3287
-1.31619
-1.21505
-1.2915
-1.34288
-1.41715
-1.82499
-1.38516
-1.18662
-1.35491
-1.35425
-1.33354
-1.83406
-1.37706
-1.09577
-1.06542
-1.01203
-1.12344
-1.03035
-1.1333
-1.07157
-1.17415
-1.1425
-1.22938
-1.4369
-1.17517
-1.23721
-1.1551
-1.11204
-1.04915
-1.05633
-1.14621
-1.12298
-1.04508
-1.1323
-1.17176
-1.25721
-1.34799
-1.18391
-1.25662
-1.14656
-1.20265
-1.00457
-1.04312
-1.02293
-0.8504
-1.02977
-1.02767
-1.00111
-0.846719
-1.02113
-1.0526
-1.0472
-1.0321
-1.19122
-1.0718
-1.17088
-1.61049
-1.27561
-1.28869
-1.37649
-1.62977
-1.29516
-1.06801
-1.19675
-1.17595
-0.91912
-0.98271
-1.04899
-0.951466
-0.969983
-1.00217
-0.902286
-0.93503
-1.0395
-0.994291
-1.01442
-0.949325
-0.984081
-1.0082
-1.05149
-1.25421
-1.31589
-1.42662
-1.74368
-1.44928
-1.06315
-1.35954
-1.34813
-1.39986
-1.74201
-1.43005
-1.03902
-1.00411
-1.10868
-1.06785
-1.06206
-0.983558
-1.11201
-1.07923
-1.06826
-1.28536
-1.20054
-1.20006
-1.10337
-1.04717
-1.10315
-1.22632
-1.16502
-1.30544
-1.13243
-1.21632
-1.13117
-1.0233
-1.0595
-0.946879
-1.12778
-0.969751
-1.11759
-0.996955
-1.16611
-1.8591
-1.07714
-1.38731
-1.25246
-1.57362
-0.983127
-1.16307
-1.16482
-1.50104
-1.46361
-1.16279
-1.51661
-1.18503
-1.19142
-1.73058
-1.25632
-1.51971
-1.19306
-1.26686
-1.53581
-1.13843
-1.36409
-1.4739
-0.915111
-1.54722
-0.939173
-1.17509
-3.09613
0.665209
0.956314
0.678566
0.599811
0.603592
-3.16429
0.954685
0.676246
0.678676
1.5829
0.164026
-2.52818
1.63128
0.193059
1.20258
0.695757
0.964264
0.609279
1.25144
0.934482
0.62353
1.58079
-2.47108
0.15422
0.183752
1.54009
1.52394
1.17222
1.21644
1.52343
1.16999
-1.40398
-1.79635
-1.93678
-1.16059
-1.34556
-1.95843
-1.24383
-1.43158
-1.44953
-1.79269
-1.7996
-1.4618
-1.41279
-1.74499
-1.44703
-1.89573
-2.05637
-1.2935
-1.45934
-1.95539
-1.30052
-1.3954
-1.7688
-1.33019
-1.76981
-1.37567
-1.34844
-1.74893
-2.18042
-2.69238
-2.20063
-1.70538
-1.96475
-1.94049
0.600199
0.597837
0.676792
0.962514
0.675488
-1.86203
-1.70951
-1.92566
-2.68784
-2.20901
-2.21255
0.676284
0.962406
0.675347
-1.09
-1.36876
-1.05366
-0.789993
-1.31885
-1.05382
-0.81714
-1.16784
-1.15281
-1.41962
-1.46129
-1.16899
-1.16984
-1.44819
-1.19067
-1.39053
-1.33936
-1.20355
-1.22159
-1.35874
-1.16341
-1.1132
-1.07482
-1.47755
-0.884086
-1.14973
-1.48608
-0.844338
-2.38804
-1.15709
-2.14228
0.665127
1.01402
0.652681
0.582485
0.59447
-1.60632
-1.90699
-2.03452
-2.12399
-1.61377
-2.04506
1.01373
0.639566
0.649789
-1.12772
-1.90457
-2.11101
1.44436
0.318361
-1.5437
1.32994
0.310035
1.46614
-1.64315
0.155201
1.54548
0.191323
-2.39611
-2.23815
-2.37188
-1.65863
-1.97392
-2.00817
0.577855
0.57615
0.680431
0.98837
0.66275
-2.12441
-1.6769
-2.08248
-2.34127
-2.22201
-2.28376
0.637165
0.991853
0.63302
-0.978778
-1.33924
-0.751364
-0.972852
-1.01154
-1.36889
-0.720621
-1.06251
-1.08207
-1.31833
-1.35154
-1.11346
-1.38165
-1.03612
-1.0932
-1.36609
-1.17723
-1.33035
-1.14225
-1.12812
-1.40352
-0.940612
-0.88804
-1.22671
-0.651191
-1.31107
-0.681938
-0.915898
-0.274548
-0.119043
-0.186865
-0.173253
-0.280789
-0.183995
-0.17026
-0.281435
-0.299525
-0.273947
-0.294902
-0.266059
-0.262797
-0.210338
-0.239586
-0.258692
-0.274068
-0.210933
-0.308702
-0.180131
-0.331085
-0.186285
-0.268577
-0.116364
-0.178914
-0.169237
-0.26384
-0.180935
-0.167827
-0.273182
-0.215854
-0.285832
-0.240555
-0.279729
-0.276699
-0.213409
-0.30705
-0.191703
-0.297592
-0.187749
0.0294436
-0.142994
-0.137201
0.0274135
0.091636
0.0465585
0.171845
0.0926377
0.171356
0.0296477
-0.131426
-0.135334
0.0312296
0.0356819
-0.118831
0.0399672
-0.125072
0.0952979
0.0760629
0.172719
0.0937748
0.173381
0.0348479
-0.13006
-0.126389
0.0321792
0.412242
0.0751636
0.293935
0.494516
0.295133
0.50029
0.410447
0.407453
0.041056
0.292571
0.493477
0.291441
0.489856
0.408572
0.409512
-0.061144
0.497817
0.289317
0.511308
0.290467
0.407491
0.405777
0.0370989
0.494063
0.289101
0.485545
0.288407
0.40696
-0.87756
-1.19785
-0.898829
-1.22605
-0.894914
-1.19091
-0.879905
-0.913059
-0.932507
-0.910172
-0.884305
-0.872352
-0.890499
-0.920214
-0.892148
-0.897125
-0.924794
-0.886544
-0.904759
-1.05666
-1.16666
-1.17415
-1.29217
-1.32761
-1.24421
-1.06231
-1.2108
-1.17879
-1.23334
-1.31458
-1.24007
-0.960773
-1.02419
-1.20753
-1.26296
-1.00681
-1.21521
-0.972457
-0.927784
-1.04317
-0.923231
-1.12797
-0.965951
-0.891671
-1.13187
-0.940036
-1.21099
-0.919498
-1.25608
-0.913795
-1.21489
-0.948276
-0.984942
-1.16208
-1.15201
-1.2022
-1.23356
-1.2146
-0.975285
-1.12164
-1.1439
-1.2287
-1.24459
-1.22099
-0.821454
-0.919187
-0.823777
-0.85852
-0.865941
-0.890726
-0.865496
-0.849718
-0.875623
-0.925257
-0.878663
-0.834839
-1.06188
-0.914884
-1.05815
-1.22332
-1.14197
-1.13323
-1.16674
-1.21062
-1.14047
-0.885285
-1.07995
-1.05838
-0.945508
-1.07236
-1.0895
-1.19845
-1.21927
-1.19506
-0.948575
-1.11394
-1.09798
-1.17424
-1.21642
-1.18804
-0.846295
-1.21647
-0.908022
-1.25132
-0.885847
-0.875681
-1.19257
-0.943748
-1.26833
-1.32806
0.666105
1.04807
0.672819
-1.72129
-1.33248
-1.38144
0.665848
0.642848
-0.964875
-1.67277
-1.34474
-1.32723
-1.31696
-1.36829
1.05501
0.696507
0.684447
-0.972316
-1.04294
-1.33186
-1.30942
-1.01215
-0.991397
-1.28701
-0.867135
-0.584867
-1.12363
-0.599287
-0.900438
-1.05735
-0.563455
-0.943398
-1.23819
-0.932177
-1.29064
-0.963829
-0.90528
-1.25567
-1.24464
-0.526337
-1.21346
-1.22758
-1.26368
-1.27646
0.679716
0.674103
0.699528
1.05173
0.697819
-1.31045
-1.23861
-1.28819
-0.50768
-1.18587
-1.20178
0.70021
1.05027
0.696288
-0.282651
-0.152668
-0.216046
-0.198997
-0.286269
-0.213136
-0.197217
-0.316764
-0.295153
-0.328414
-0.301202
-0.344153
-0.353129
-0.251606
-0.282012
-0.340383
-0.359061
-0.254587
-0.365145
-0.231459
-0.351037
-0.233493
-0.27926
-0.150457
-0.20822
-0.195393
-0.277245
-0.210528
-0.196705
-0.35137
-0.261144
-0.373887
-0.284876
-0.357419
-0.366873
-0.257846
-0.3683
-0.234247
-0.380952
-0.231297
-0.0378308
-0.189845
-0.186377
-0.0387294
0.0158917
-0.051556
0.144946
0.141475
0.0204944
-0.0379288
-0.181718
-0.185387
-0.0364971
-0.0234963
-0.172834
-0.0187154
-0.173992
0.0344414
-0.157365
0.14876
0.153438
0.0261679
-0.0271345
-0.181456
-0.177804
-0.0332028
0.430076
-0.0266311
0.309324
0.418764
0.308702
0.412941
0.431109
0.432003
0.0152416
0.310557
0.455512
0.307301
0.475697
0.432631
-0.70949
-0.764025
-0.788078
-0.758728
-0.830971
-0.807719
-0.793706
-0.79593
-0.802325
-0.784143
-0.822935
-0.801081
-0.748741
-0.781151
-0.784102
-0.797143
-0.757884
-0.757366
-0.770857
-0.774465
-0.758352
-0.779271
-0.795266
-0.986277
-1.03763
-1.13468
-1.15874
-1.10713
-0.81923
-1.07511
-1.04302
-1.0618
-1.15303
-1.10157
-0.838939
-0.887811
-0.876887
-0.903041
-0.874346
-1.04199
-0.829144
-0.867316
-0.871761
-1.02305
-1.00104
-1.02835
-0.789926
-0.762026
-0.75021
-0.703035
-0.796034
-0.766458
-0.695552
-0.825661
-0.808512
-0.756703
-0.788147
-0.805275
-0.826566
-0.769305
-0.827416
-0.744507
-0.802655
-0.742579
-0.826188
-0.805408
-0.753645
-0.785657
-0.747859
-0.785698
-0.770087
-0.781979
-0.777742
-0.708268
-0.86422
-0.843134
-0.804655
-0.811976
-0.88103
-1.45255
-0.906328
-0.915438
-1.72523
-0.939942
-0.886943
-0.881488
-0.916029
-0.806132
-0.823736
-0.889829
-0.816969
-0.890047
-1.59216
-0.777564
-0.871132
-0.867177
-0.858755
-0.916013
-0.868543
-0.823733
-0.879562
-0.793271
-0.869435
-0.874486
-0.918464
-0.887832
-0.821653
-0.866536
-0.471222
-0.379866
-0.483762
-0.372093
-0.395168
-0.421515
-0.290097
-0.326041
-0.391385
-0.425865
-0.293229
-0.459465
-0.259275
-0.45427
-0.260378
-0.398843
-0.299211
-0.43578
-0.329503
-0.402355
-0.431172
-0.296068
-0.460994
-0.26293
-0.466105
-0.26085
-0.0714342
-0.216622
-0.207809
-0.0701296
-0.00946461
0.261691
0.130869
0.133788
-0.0157334
-0.0733591
-0.198881
-0.205809
-0.0752513
-0.0712794
-0.188005
-0.0672156
-0.19113
-0.0202365
0.253152
0.129834
0.128991
-0.0187629
-0.0747834
-0.196662
-0.192101
-0.0758885
-0.813941
-0.792913
-0.753481
-0.798803
-0.80866
-0.747665
-0.809592
-0.826395
-0.726355
-0.640914
-0.683649
-0.787383
-0.693884
-0.826084
-0.827031
-0.710251
-0.81287
-0.65135
-0.822185
-0.785317
-0.701314
-0.813089
-0.795967
-0.736585
-0.816164
-0.743443
-0.809116
-0.815796
-1.4582
-0.838506
-0.873033
-0.898837
-0.843786
-0.906056
-1.47795
-1.31586
-1.43846
-0.911562
-0.796214
-1.45239
-1.51234
-0.891562
-1.45545
-0.864682
-0.83738
-0.905074
-0.843378
-1.50084
-0.905549
-1.29794
-0.872202
-0.782179
-1.47643
-1.45893
-0.885261
-1.25805
-1.4434
-0.835185
-0.865955
-0.897046
-0.891686
-0.8456
-1.4791
-1.23007
-1.55265
-0.846665
-0.741495
-1.53822
-0.860664
-1.21523
-1.4239
-0.861732
-0.87493
-0.852683
-0.88605
-0.843219
-1.38883
-1.2434
-0.868781
-0.749946
-1.48286
-1.54303
-0.866406
-1.24621
-0.798739
-0.686936
-0.758931
-0.815409
-0.781229
-0.704249
-0.81148
-0.768464
-0.76454
-0.807392
-0.720138
-0.610206
-0.673754
-0.711292
-0.822626
-0.661722
-0.794838
-0.632031
-0.699358
-0.601334
-0.759764
-0.701477
-0.648654
-0.805873
-0.772501
-0.728517
-0.81408
-0.812977
-0.717572
-0.815145
-1.1816
-0.763617
-0.859468
-0.747017
-0.871921
-1.23106
-0.733381
-1.074
-1.19947
-0.524786
-0.612229
-1.30497
-0.653235
-1.05612
-1.09329
-0.706783
-1.42991
-0.53789
-1.36573
-1.11417
-0.67564
-1.15534
-0.724754
-0.870713
-0.672181
-0.869453
-0.710791
-1.11438
-1.31942
-0.81405
-0.789389
-0.859814
-0.816627
-0.853689
-1.25695
-1.18191
-1.54934
-0.827428
-0.663984
-1.56691
-1.20341
-0.800689
-1.33802
-0.831452
-0.860697
-0.851774
-1.37171
-0.84057
-0.856408
-1.16799
-0.737478
-0.627962
-1.46441
-1.56706
-0.770028
-1.12937
-0.558282
-0.51815
-0.558591
-0.506303
-0.432012
-0.473391
-0.325272
-0.369465
-0.428912
-0.477409
-0.328606
-0.499122
-0.307703
-0.497097
-0.311191
-0.434343
-0.333373
-0.485096
-0.371728
-0.438382
-0.48056
-0.330625
-0.498921
-0.317545
-0.497837
-0.312331
-0.126063
-0.19809
-0.19795
-0.128067
-0.00310366
0.0817047
-0.324589
0.138837
0.142092
-0.300759
-0.00476747
-0.121645
-0.274628
-0.202145
-0.122636
-0.120836
-0.269688
-0.0996836
-0.270695
-0.00977919
0.170483
-0.339928
0.133114
0.127731
-0.391944
-0.00830032
-0.125257
-0.2766
-0.271454
-0.125711
-0.628627
-0.694161
-0.477526
-0.44471
-0.651997
-0.461043
-0.667054
-0.711967
-0.737244
-0.711586
-0.74681
-0.610765
-0.546503
-0.489131
-0.457902
-0.569502
-0.461991
-0.589901
-0.720108
-0.866843
-0.861598
-0.709269
-0.7238
-0.81763
-0.719276
-0.858025
-0.619942
-0.485553
-0.599595
-0.495917
-0.642005
-0.578106
-0.472849
-0.619713
-0.429195
-0.440148
-0.648175
-0.447603
-0.659709
-0.60222
-0.975854
-0.769264
-0.570773
-0.484012
-0.807748
-0.542895
-0.845354
-0.899142
-0.928071
-1.1339
-0.575287
-0.403243
-0.659465
-1.03869
-0.527568
-1.18108
-1.19202
-1.1171
-0.893879
-0.923109
-1.17195
-0.99091
-0.610792
-0.865454
-0.636656
-0.817187
-1.09396
-0.589792
-0.915924
-0.418826
-0.359532
-0.534451
-0.625652
-0.474161
-0.702338
-0.677812
-0.719317
-0.427262
-0.427167
-0.397758
-0.695414
-0.728042
-0.634517
-0.393429
-0.336979
-0.274206
-0.441651
-0.349488
-0.608786
-1.03838
-1.00611
-0.991405
-1.01484
-1.07152
-1.15671
-1.07151
-1.08417
-1.04564
-0.911541
-0.982559
-1.08753
-0.668381
-0.409141
-0.369478
-0.677664
-0.38065
-0.688763
-0.641971
-0.641699
-0.378398
-0.287328
-0.508518
-0.45183
-0.363373
-0.670821
-0.587607
-0.453139
-0.416361
-0.616278
-0.552545
-0.442886
-0.634116
-0.684505
-0.697807
-0.719088
-0.710083
-0.582726
-0.479657
-0.521136
-0.460395
-0.491057
-0.580743
-0.466581
-0.703636
-0.868426
-0.706526
-0.871738
-0.574362
-0.500671
-0.500627
-0.511203
-0.491952
-0.492166
-0.468426
-0.595919
-0.415019
-0.437703
-0.647755
-0.597084
-0.442016
-0.645125
-0.702388
-0.886392
-0.709255
-0.873353
-0.468427
-0.392887
-0.626721
-0.414785
-0.59853
-0.52928
-0.402348
-0.945206
-0.977545
-0.985069
-0.987201
-1.04617
1.06116
-0.982083
-0.845203
-1.03644
-0.300674
-0.00954847
-0.172339
-0.343721
-0.0476292
-0.346419
-0.262762
-0.453601
-0.356135
-0.195899
-0.191875
-0.144757
-0.492136
-0.345912
-0.928662
-0.9878
-0.97944
-0.955104
-0.421692
-0.447031
-0.505229
-0.458559
-0.570501
-0.444641
-0.38861
-0.561899
-0.398238
-0.392629
-0.634848
-0.391517
-0.654847
-0.541083
-0.54451
-0.385597
-0.334731
-0.233486
-0.315575
-0.600782
-0.338673
-1.00451
-1.00866
-1.01178
-0.997355
-1.06327
-1.06944
-1.32889
-1.04457
-0.596749
-0.39112
-0.366969
-0.677064
-0.634654
-0.368749
-0.66903
-0.505378
-0.368013
-0.229509
-0.22587
-0.236451
-0.371887
-0.501097
-0.994483
-0.99341
-0.996361
-0.967178
-0.57847
-0.599928
-0.571662
-0.592408
-0.538838
-0.355815
-0.536007
-0.358692
-0.537541
-0.356664
-0.531344
-0.358026
-0.117838
-0.322673
-0.230217
-0.226187
-0.116193
-0.325873
0.0352149
0.230035
-0.168621
0.194699
0.204459
-0.161071
0.0289026
-0.121089
-0.224132
-0.365184
-0.225623
-0.332329
-0.124486
-0.127871
-0.215439
-0.126094
-0.219077
0.0207005
0.188249
-0.189093
0.187245
0.195822
-0.185222
0.0188124
-0.132533
-0.230143
-0.38341
-0.225153
-0.135867
-0.440225
-0.437133
-0.525938
-0.497473
-0.449654
-0.508223
-0.430253
-0.685383
-0.634457
-0.682587
-0.600058
-0.434911
-0.425273
-0.457084
-0.463514
-0.430831
-0.482042
-0.428762
-0.725561
-0.951347
-0.950397
-0.702205
-0.73159
-0.95174
-0.734028
-0.950508
-0.442673
-0.507508
-0.445816
-0.465697
-0.45144
-0.437363
-0.491748
-0.430067
-0.483301
-0.476254
-0.412867
-0.496598
-0.420262
-0.422079
-0.33431
-0.410189
-0.509135
-0.40415
-0.422639
-0.423295
-0.320458
-1.13037
-0.983053
-1.05961
-1.06105
-0.193647
0.0270788
-0.328498
-0.12688
0.0434568
-0.221666
-0.308724
-1.19669
1.37883
-0.29125
-0.511678
-1.15654
-1.12874
-1.07182
-1.06637
-1.09787
-0.350059
-0.515725
-0.470516
-0.451865
-0.443886
-0.380817
-0.440333
-0.177899
-0.266946
-0.106925
0.0700259
0.0472614
-0.284888
-0.156751
-0.300574
-0.400818
-0.458078
-0.393023
-0.362466
-0.396331
-0.30509
-0.109627
0.0956826
-0.18798
-0.0513395
0.0796065
-0.210039
-0.0909271
-0.984537
-1.03718
-1.0595
-0.921297
-0.997528
1.52982
-0.251641
-0.0376377
-1.12384
-1.00034
-1.06877
-1.06542
-1.07685
-0.287671
-0.440249
-0.316215
-0.374585
-0.3424
-0.385128
-0.270915
-0.125153
-0.26041
-0.0654687
0.0660395
0.0655656
-0.2295
-0.132893
-0.408662
-0.385914
-0.39022
-0.409977
-0.409481
-0.413838
-0.406033
-0.644519
-0.464195
-0.594996
-0.480319
-0.41737
-0.42063
-0.408606
-0.448681
-0.41897
-0.421884
-0.427125
-0.672758
-0.95234
-0.69447
-0.950415
-0.41367
-0.382371
-0.415549
-0.392011
-0.411536
-0.416803
-0.408113
-0.409731
-0.41469
-0.459225
-0.406268
-0.413993
-0.435398
-0.403229
-0.665961
-0.916091
-0.630319
-0.945437
-0.232746
-0.248404
-0.193436
-0.367264
-0.361918
-0.244553
-0.169921
-0.287735
-0.559186
-0.743338
-0.237095
-0.202659
1.41772
0.263692
0.30676
-0.290364
-0.0225882
0.158646
-0.0529691
0.0270418
0.15043
-0.0111181
-0.0663165
-0.210843
-0.222409
-0.323249
-0.132677
-0.342724
-0.197479
-0.149944
-0.0363108
-0.0972979
0.136183
0.0182882
0.139135
-0.0400418
-0.0805694
-0.315457
-0.875724
-0.781148
-0.490339
-0.249333
-0.336951
-0.215881
-0.36633
-0.243625
-0.364975
-0.247549
-0.0590329
0.111897
-0.16861
-0.0193327
0.12175
-0.0703656
-0.149594
-0.817736
-1.03081
-0.898926
-1.00116
-0.604267
1.62434
0.219172
0.115291
-0.387427
-0.246712
-0.363891
-0.293099
-0.365786
-0.254972
-0.26704
-0.361291
-0.0531387
-0.113154
-0.0118546
0.137113
0.130455
-0.134118
-0.0438377
-0.743802
-0.905427
-0.983675
-0.578571
-0.5817
-0.675747
-0.573307
-0.684518
-0.536627
-0.347644
-0.531993
-0.342517
-0.536178
-0.353649
-0.538692
-0.346382
-0.108791
-0.402478
-0.262794
-0.092766
-0.271
-0.397157
0.0684037
0.603372
-0.346442
0.20613
0.193587
-0.361165
0.0643723
-0.114055
-0.276774
-0.410321
-0.275428
-0.441042
-0.120692
-0.115226
-0.439763
-0.275785
-0.124147
-0.362704
-0.261777
0.0689716
0.581631
-0.365076
0.219781
0.224651
-0.324964
0.0691078
-0.113661
-0.268884
-0.422387
-0.374274
-0.262723
-0.115752
1.39425
1.53299
1.95678
1.96193
1.4628
0.942275
1.39491
1.2867
1.13325
0.876713
1.26173
1.56179
1.929
1.56219
1.95416
1.51313
1.8375
1.48823
1.95453
1.51313
1.95895
1.80401
1.49228
1.84274
1.89562
1.78567
1.64482
1.75222
1.66245
1.84503
1.46764
1.95743
1.47172
1.96298
1.88049
1.48271
1.83075
1.80444
1.77381
1.54147
1.94766
1.51819
1.52074
1.93246
1.78783
1.74911
1.8562
1.71793
1.72694
1.4043
1.62273
1.74195
1.61946
1.76241
1.55496
1.52041
1.88545
1.74962
1.52369
1.92396
1.75935
1.79473
1.51338
1.41286
1.42233
1.58805
1.43395
1.60095
1.50291
1.48044
1.39814
1.41365
1.57261
1.40635
1.56128
1.49233
1.58889
1.68984
1.39109
1.6781
1.46425
1.60478
1.6211
1.71008
1.38774
1.72385
1.41554
1.60994
-1.44817
-2.00364
-3.10978
-0.305842
0.574716
0.623549
0.353368
-0.494735
-0.502101
0.254848
-1.3763
-2.36111
-2.67381
-1.7516
-2.9396
1.17992
0.604028
-0.277717
1.02086
-0.44142
1.48031
0.952058
-1.17451
0.712973
-1.73612
1.91441
1.94834
1.51662
1.62933
1.10289
1.28894
1.30148
1.15816
1.67027
1.13252
0.560087
0.163902
0.83991
0.915559
-0.238423
0.902762
-2.00595
-1.90667
1.57215
1.23878
1.71647
1.31183
1.77398
1.19404
1.69505
1.76934
0.829954
-0.0710474
1.0698
1.12869
0.523669
1.56218
1.91404
1.76107
1.37148
1.39732
1.95895
1.33839
1.75197
1.90867
1.90682
1.81117
0.897675
1.23253
0.980942
1.92904
1.17541
0.72596
1.89935
1.27074
1.37867
1.72556
1.30888
1.79948
1.74027
1.71935
1.52523
1.85102
1.58307
1.8781
1.71249
1.69163
1.50453
1.84652
1.47365
1.84043
1.70022
1.76215
1.87762
1.70624
1.89832
1.67595
1.76179
1.65353
1.5138
1.52638
1.63887
1.51021
1.60562
1.65696
1.77782
1.87553
1.73274
1.82006
1.775
1.67294
1.77626
1.58129
1.52203
1.74928
1.5211
1.66181
1.6712
1.52017
1.6599
1.56957
1.73468
1.66787
1.52224
1.65153
1.93079
1.68509
1.52022
1.52324
1.91099
1.63984
1.6199
1.33323
1.21106
1.67108
1.66764
1.52937
1.67199
1.86959
1.52865
1.88826
1.67949
1.6763
1.79109
1.62424
1.52656
1.82791
1.67263
1.5286
1.69016
1.37091
1.50374
1.67261
1.67935
1.52772
1.63609
1.8475
1.83413
1.52752
1.67846
1.63628
1.96481
1.73445
1.52489
1.52181
1.64349
1.49068
0.699568
0.763732
1.40545
1.62618
1.50063
1.73983
1.51391
1.60009
1.31821
0.69184
0.591774
1.39272
1.55075
1.7537
1.48415
1.47945
1.54379
1.56169
1.49606
1.74831
1.58613
1.48312
1.2935
1.68628
1.4125
1.81195
1.42157
1.25834
1.86447
0.941463
-0.599819
1.68136
0.387901
0.324741
1.31782
1.03631
1.32859
1.44566
1.80701
2.01789
1.43189
1.90228
1.39458
1.50151
1.80497
1.49727
2.108
1.53474
1.4881
1.15489
-1.79671
0.398458
0.419833
1.09586
1.46658
1.44692
1.8004
1.98966
2.04745
1.46217
1.43381
0.0178978
-0.00435852
0.0218235
0.0195897
0.0275504
0.0149416
-2.43139e-05
0.00683486
0.0128439
0.00307944
-0.00170894
-0.00393902
-0.00287805
-0.00614183
-0.00261777
0.00122876
-0.000286769
-0.000927708
0.00561157
-0.00136417
0.0077129
0.00156542
0.0120116
0.000486562
0.0432918
-0.014483
0.0227496
-0.0145666
-0.0948785
-0.0796712
-0.0516027
-0.0913049
-0.0939935
-0.0893428
-0.0839757
0.140188
0.0770907
0.071357
0.0619452
0.14576
0.0607567
0.0759421
0.123973
0.126914
0.0133413
0.171933
0.130882
0.0892778
0.144457
-0.0190786
-0.0284449
-0.0183198
-0.041509
-0.0249544
-0.0401079
-0.0236673
-0.0126682
0.0245977
0.047279
0.0895994
0.0197245
-0.0058778
0.0766025
-0.116238
-0.143111
-0.116225
-0.109367
-0.10998
-0.0735997
-0.0799476
-0.208758
-0.182332
-0.148554
-0.186873
-0.170135
-0.224928
-0.174705
-0.152601
-0.135548
-0.106837
-0.136246
-0.124389
-0.166073
-0.123357
-0.100713
-0.10212
-0.0748538
-0.0967663
-0.0937029
-0.113191
-0.0875304
-0.0673609
-0.0634399
-0.0419739
-0.0587478
-0.0545295
-0.0759112
-0.0491872
-0.0136505
-0.010785
-0.00999617
-0.0136549
-0.00978537
-0.00964922
-0.00674698
-0.0352826
-0.0317593
-0.0200755
-0.0293498
-0.0261204
-0.0420935
-0.0239161
-0.297017
-0.257427
-0.301299
-0.254885
-0.0198827
-0.0302703
-0.0163875
-0.0321369
-0.0177401
-0.0270843
-0.0146775
-0.14452
-0.149501
-0.110965
-0.107572
-1.23405
-1.13564
-1.06377
-1.20011
-1.12409
-1.24201
-1.17744
-0.00656997
-0.0177447
-0.010167
0.0121319
0.00741776
0.00307935
0.00260366
-0.0126379
-0.0239703
-0.0140593
-0.00243164
-0.00104344
-0.00770647
-0.00361651
-0.0124751
-0.0142987
-0.00611141
-0.0129628
-0.00328557
-0.00886449
0.000789947
-0.0493894
-0.0402349
-0.0303064
-0.0383689
-0.0208587
-0.0110078
-0.0229221
-0.694693
-0.704249
-0.579107
-0.584099
-0.701722
-0.698492
-0.588651
-0.594805
-0.241411
-0.276338
-0.171432
-0.154429
-0.117221
-0.110972
0.856878
0.996125
0.79672
0.847587
0.786765
0.696652
0.705966
-0.128663
-0.114546
-0.115443
-0.0651141
-0.0420423
-0.0576467
-0.0378878
-0.0771075
-0.151369
-0.0895339
0.0267151
-0.0597691
0.0391939
-0.0623089
0.323886
0.414102
0.30071
0.255191
0.329082
0.272626
0.312101
0.169349
0.0753461
0.144463
0.085034
0.127351
0.0678159
0.11182
0.255189
0.181339
0.243001
0.135205
0.17377
0.123113
0.166948
0.226827
0.144311
0.221956
0.115034
0.158705
0.104464
0.150233
-0.178497
-0.153959
-0.157099
-0.160901
-0.162076
-0.154765
-0.157332
-0.156181
-0.0716021
-0.0550931
-0.0896558
-0.0981569
-0.0569499
-0.069305
-0.101427
-0.524063
-0.528846
-0.552993
-0.545008
-0.526366
-0.553062
-0.525913
-0.499045
-0.512809
-0.516376
-0.531645
-0.500102
-0.507623
-0.52494
-0.187599
-0.170652
-0.168938
-0.181184
-0.164455
-0.18493
-0.1771
-0.531594
-0.527811
-0.254573
-0.511525
-0.501196
-0.177259
-0.176401
-0.17048
-0.179435
-0.177714
-0.17901
-0.171311
-0.178832
-0.134349
-0.143549
-0.141375
-0.152135
-0.151699
-0.166657
-0.216029
-0.21485
-0.215773
-0.247017
-0.241803
-0.203102
-0.225252
-0.202903
-0.2132
-0.221762
-0.197442
-0.214846
-0.201323
-0.199528
-0.520579
-0.528389
-0.537083
-0.534334
-0.516019
-0.533762
-0.538586
-0.488941
-0.502572
-0.491483
-0.492122
-0.503528
-0.487769
-0.492767
-0.487093
-0.5034
-0.492321
-0.491094
-0.487946
-0.502686
-0.491907
-0.467626
-0.462238
-0.466911
-0.472254
-0.463564
-0.466326
-0.473327
-0.146625
-0.111035
-0.120922
-0.126678
-0.124328
-0.129325
-0.141161
-0.120728
-0.144701
-0.153652
-0.107961
-0.149294
-0.114074
-0.114437
-0.46409
-0.460942
-0.471514
-0.464152
-0.465333
-0.459636
-0.470555
-0.445616
-0.44055
-0.438091
-0.441966
-0.441661
-0.444854
-0.442665
-0.164667
-0.140248
-0.107777
-0.159643
-0.112918
-0.163273
-0.161274
-0.441614
-0.437952
-0.439615
-0.433137
-0.442798
-0.436794
-0.438758
-0.40671
-0.397663
-0.39273
-0.401182
-0.399283
-0.406082
-0.402986
-0.155088
-0.105109
-0.128747
-0.15498
-0.101546
-0.152048
-0.158347
-0.405665
-0.39839
-0.398848
-0.387203
-0.405648
-0.398471
-0.397122
-0.39207
-0.393554
-0.361578
-0.374144
-0.393838
-0.391431
-0.375847
-0.0999755
-0.0602868
-0.0818078
-0.0940499
-0.0961603
-0.0974999
-0.0875424
-0.387204
-0.389973
-0.371483
-0.352415
-0.388977
-0.386882
-0.370213
-0.344394
-0.338202
-0.326862
-0.337059
-0.339184
-0.343771
-0.337431
-0.339506
-0.33505
-0.333956
-0.321369
-0.340796
-0.333739
-0.332898
-0.298356
-0.290935
-0.295862
-0.300691
-0.292318
-0.297053
-0.301741
0.150714
0.0643941
0.0745607
0.0625625
0.147572
0.0566554
0.0738962
-0.0157612
0.0212792
0.0338204
0.0223141
0.0273578
0.0151691
-0.00917657
-0.29451
-0.2894
-0.299839
-0.293038
-0.295772
-0.288341
-0.298842
-0.2643
-0.25996
-0.282453
-0.27918
-0.259917
-0.263316
-0.280293
-0.00396034
0.036234
0.0167
0.0229235
0.0401013
0.0171241
-0.00648297
-0.260575
-0.259374
-0.277422
-0.282052
-0.261781
-0.259262
-0.275969
-0.212061
-0.243197
-0.273705
-0.224078
-0.243125
-0.211164
-0.224773
0.125742
0.02098
0.129769
0.175629
0.115607
0.16965
0.124071
-0.0494181
-0.0186426
-0.0125135
-0.0445946
-0.0098185
-0.0447208
-0.0510062
-0.205511
-0.241492
-0.221289
-0.265362
-0.208661
-0.239244
-0.21724
-0.184535
-0.219126
-0.186084
-0.179951
-0.221623
-0.184041
-0.180346
-0.0466567
-0.0149738
-0.0211311
-0.0446402
-0.0141253
-0.0506571
-0.0441041
0.105645
-0.0147698
0.104896
0.0284606
0.10517
0.102795
0.0313364
-0.0407112
-0.0200897
-0.0112092
-0.0424332
-0.0109607
-0.0431189
-0.0381386
-0.18012
-0.214744
-0.177496
-0.178445
-0.181554
-0.211149
-0.176133
-0.0850762
-0.0749312
-0.0740003
-0.0870745
-0.0771038
-0.0879684
-0.0836901
-0.584097
-0.585023
-0.573122
-0.56094
-0.560074
-0.982773
-0.975006
-1.04327
-1.02846
-1.02757
-0.974841
-0.979189
-0.243477
-0.22692
-0.239278
-0.55438
-0.574251
-0.572243
-0.557017
-0.527935
-0.523286
-0.523677
-0.528068
-0.193354
-0.188883
-0.206757
-0.173109
-0.172941
-0.20709
-0.194887
-0.528658
-0.523709
-0.523343
-0.528802
-0.532942
-0.518326
-0.519266
-0.532039
-0.187797
-0.2028
-0.180892
-0.167622
-0.165392
-0.202973
-0.190234
-0.531152
-0.518044
-0.517166
-0.531753
-0.504609
-0.485935
-0.486358
-0.503811
-0.50381
-0.484782
-0.48447
-0.502982
-0.482319
-0.453675
-0.455425
-0.480646
-0.478594
-0.45236
-0.450623
-0.479963
-0.447314
-0.414892
-0.41636
-0.445546
-0.443332
-0.413387
-0.412555
-0.444196
-0.367646
-0.306503
-0.321052
-0.321424
-0.366909
-0.364134
-0.318194
-0.300071
-0.317566
-0.364678
-0.375057
-0.311067
-0.310896
-0.311144
-0.375051
-0.37653
-0.311519
-0.31064
-0.311146
-0.376717
-0.318731
-0.323051
-0.298762
-0.300541
-0.317571
-0.314756
-0.296374
-0.312675
-0.294192
-0.315927
-0.258591
-0.201772
-0.218156
-0.219932
-0.256713
-0.25169
-0.214687
-0.187342
-0.211228
-0.25375
-0.192912
-0.138703
-0.147299
-0.14867
-0.157963
-0.162746
-0.180118
-0.225849
-0.152075
-0.174858
-0.175666
-0.224616
-0.22126
-0.172485
-0.142852
-0.170971
-0.222736
-0.138455
-0.0976199
-0.109753
-0.104854
-0.115837
-0.113318
-0.124874
-0.0749306
-0.0620345
-0.0819674
-0.0321806
-0.0824317
-0.0324942
-0.0748376
-0.0717001
-0.0793948
-0.0570009
-0.0276121
-0.0272926
-0.0728764
-0.0781099
-0.0926815
-0.066805
-0.0730242
-0.067576
-0.084364
-0.0786647
-0.0838724
-0.0785158
-0.0676265
-0.0826623
-0.0623409
-0.0618571
-0.0794218
-0.0817797
-0.0784999
-0.0819638
-0.0673433
-0.0618527
-0.0621227
-0.0785466
-0.0819155
-0.0585258
-0.0354908
-0.0386603
-0.0347662
-0.046114
-0.0417511
-0.0504087
0.00714006
0.0331622
0.0200213
0.0303843
0.0275711
0.0106171
0.01632
-0.307829
-0.257838
-0.302924
-0.260665
-0.138487
-0.0776027
-0.112886
-0.0842498
-0.118481
-0.0889487
-0.131998
-1.36957
-0.143733
-0.0884282
-0.087431
-0.124272
-0.0934575
-0.137195
-0.130081
0.0153982
0.0232627
0.0427792
0.0330156
0.0351759
0.0131821
0.0261895
-0.0292626
-0.0175869
-0.0190284
-0.0166103
-0.0220331
-0.0206945
-0.0242106
0.0167251
0.0387032
0.0198836
0.0302735
0.0349123
0.0266408
0.00937405
-0.0369071
-0.0313238
-0.0345196
-0.0228384
-0.0444152
-0.0253556
-0.0274788
-0.0302432
-0.0171434
-0.0193094
-0.0176184
-0.0216926
-0.0247287
-0.0217204
-0.11323
-0.105594
-0.0641727
-0.0795175
-0.0977719
-0.123458
-0.0727918
-0.247199
-0.246259
-0.258024
-0.236188
-0.0994456
-0.0588744
-0.0735542
-0.0569377
-0.0853316
-0.0660304
-0.0848907
-1.27767
-1.27958
-0.117791
-0.0832542
-0.116577
-0.0714603
-0.128528
-0.0761426
-0.107008
-0.771129
-0.817193
-0.730779
-0.851742
-0.103872
-0.058722
-0.0644584
-0.0804512
-0.068637
-0.0882144
-0.0946514
-1.11568
-1.06205
-1.07272
-1.12278
-1.11593
-1.0632
-1.11791
-1.22123
-1.12853
-1.09589
-1.24492
-1.09961
-1.24177
-1.21372
-2.71104
-2.46672
-2.64309
-2.55574
0.775172
0.797716
0.965316
0.89051
0.888541
0.800844
0.769558
-2.58355
-2.44322
-2.45199
-2.59649
-2.69912
-2.41435
-1.47867
-1.71106
-1.65425
-1.1623
-1.26138
-1.7625
-1.41502
-2.28142
-1.93719
-1.8271
-2.14632
-1.99388
-2.22957
-2.22083
0.768152
0.799529
0.891481
0.977925
0.890745
0.769193
0.800143
0.767574
0.811082
0.993029
0.887132
0.889931
0.809753
0.766613
1.25532
1.14476
1.17744
1.36563
1.13701
1.26876
1.35414
1.30301
1.15487
1.38142
1.19257
1.29079
1.16117
1.39038
1.41514
1.21904
1.18805
1.40655
1.21789
1.4208
1.40869
1.4339
1.22368
1.40679
1.17752
1.43132
1.22271
1.39922
0.577117
0.75985
0.693105
0.526201
0.541185
0.782323
0.564787
0.534851
0.734929
0.508931
0.620624
0.491868
0.550031
0.715363
-0.0847777
-0.122791
-0.0284185
-0.0623917
-0.101332
-0.108944
-0.0204291
0.30746
0.872338
0.316347
0.578086
0.304176
0.323194
0.839827
-0.0703166
-0.0838477
-0.0549281
-0.00625884
-0.0969664
-0.0574362
-0.0136383
0.279405
0.69404
0.504181
0.259668
0.270898
0.718108
0.25952
-0.0363487
-0.0738398
-0.000108276
-0.0333681
-0.0459502
-0.0633682
0.0049368
0.254349
0.676673
0.254919
0.464314
0.249847
0.25691
0.65446
-0.0278438
-0.0463266
-0.0279042
0.00994363
-0.0544969
-0.0200054
0.00864243
-0.0304012
-0.089184
-0.0746153
-0.0312583
-0.0949406
-0.0221141
-0.0363097
-0.0341607
-0.0764646
-0.0990775
-0.0428611
-0.0952694
-0.0406129
-0.0415074
-0.0532929
-0.101479
-0.0781513
-0.045468
-0.104119
-0.047558
-0.0480414
-0.0555971
-0.0784697
-0.103632
-0.0507578
-0.10357
-0.0501909
-0.0578651
1.22054
1.15769
1.28381
1.08848
1.09648
1.2739
1.22283
1.21594
1.28188
1.17013
1.08641
1.08645
1.29434
1.21172
1.21389
1.19751
1.36293
1.07363
1.0799
1.35593
1.20845
0.582209
0.611572
0.420727
0.422186
0.610186
0.603028
0.408499
0.565081
0.577196
0.412853
0.381896
0.592074
0.544439
0.396514
-0.646747
-0.667735
-0.717953
-0.106393
-0.214898
-0.20761
-0.12146
0.388671
0.296598
0.310453
0.209152
0.422441
0.254084
0.292935
0.499241
0.565131
0.369643
0.385812
0.522474
0.549014
0.356337
0.355882
0.186079
0.189744
0.259406
0.220869
0.325113
0.278225
0.477462
0.515364
0.375875
0.331909
0.533333
0.454047
0.346631
0.402313
0.500241
0.317613
0.338819
0.43198
0.476287
0.296473
-0.161703
-0.145275
-0.158082
-0.154081
-0.145757
-0.154764
-0.14152
-0.141388
-0.0990031
-0.103144
-0.110174
-0.0548787
-0.045081
-0.0486561
-0.0500496
-0.0905732
-0.15711
-0.137989
-0.0869454
-0.153704
-0.0861458
-0.0939019
-0.0748714
-0.143024
-0.116705
-0.13777
-0.069492
-0.07488
-0.0695432
0.0221151
0.0257596
0.041401
0.0483334
0.0536663
0.0273581
0.0259325
-0.0810604
-0.12133
-0.126908
-0.120383
-0.0964647
-0.0902132
-0.0772696
0.0160407
0.0370516
0.0167799
0.0254471
0.00342526
0.0206171
0.0253397
0.0159284
0.00241493
0.0173226
0.0352606
0.0289075
0.0336842
0.0269632
0.0553296
0.0754401
0.0666794
0.0245918
0.0380088
0.0435817
0.0381893
0.0181568
-0.0151516
-0.0211804
0.00996123
0.0199313
0.00958913
0.013024
0.0753916
0.0502491
0.0757418
0.0469156
0.0316668
0.0416903
0.0369461
-0.0134656
0.0451548
-0.0104727
0.0124512
0.0194013
0.0109786
0.0188197
0.00636928
0.0374378
0.0433333
0.0649428
-0.0128226
-0.023501
0.0653768
-0.294936
-0.301786
-0.33216
-0.33703
-0.291602
-0.329748
-0.302289
-0.337686
-0.339464
-0.342671
-0.340186
-0.234386
-0.233378
-0.217261
-0.207042
-0.228584
-0.222061
-0.21183
-0.184554
-0.171938
-0.177938
-0.185466
-0.170882
-0.185991
-0.184015
-0.222649
-0.194902
-0.199691
-0.225436
-0.199746
-0.228487
-0.220349
-0.1809
-0.180809
-0.185196
-0.205066
-0.193473
-0.174102
-0.18692
-0.161619
-0.15283
-0.165579
-0.160717
-0.199941
-0.197839
-0.205912
-0.205194
-0.198989
-0.196354
-0.207518
-0.276443
-0.263624
-0.2854
-0.285682
-0.261469
-0.278718
-0.285925
-0.131391
-0.129876
-0.122703
-0.121902
-0.131011
-0.130619
-0.122845
-0.221383
-0.226732
-0.213366
-0.275105
-0.280296
-0.254841
-0.278837
-0.254737
-0.269935
-0.278181
-0.0800584
-0.066902
-0.0601719
-0.0815907
-0.0653597
-0.0825391
-0.0787472
-0.107617
-0.0757123
-0.101859
-0.107479
-0.101427
-0.108789
-0.106473
-0.168929
-0.166061
-0.158146
-0.172704
-0.166304
-0.158919
-0.171601
-0.0561659
-0.0249956
-0.042451
-0.0570731
-0.0509461
-0.0634583
-0.0477857
0.00700054
0.0421804
0.0418918
0.00610749
0.0373473
0.00583413
-0.00755199
-0.213991
-0.170164
-0.199858
-0.177228
-0.216637
-0.166044
-0.186399
-0.161142
-0.141199
-0.148373
-0.157145
-0.152932
-0.148999
-0.146876
-0.13651
-0.127946
-0.156644
-0.15029
-0.138063
-0.127646
-0.155568
-0.148813
-0.161525
-0.141386
-0.156035
-0.141488
-0.150226
-0.161535
0.037529
0.0376866
0.035319
0.00154984
0.0431532
0.0257047
0.0067673
-0.133459
-0.107091
-0.125077
-0.111495
-0.130178
-0.108256
-0.121034
0.0434112
0.00807368
0.0371791
0.0430392
0.0425979
0.0100193
0.0438159
-0.11546
-0.0901773
-0.104426
-0.0974325
-0.108917
-0.0941386
-0.110754
-0.0778333
-0.0904243
-0.0638355
-0.0867719
-0.0869117
-0.0824477
-0.0679572
-0.0660484
-0.0866731
-0.0858814
-0.0749658
-0.0681084
-0.066637
-0.0754317
-0.308016
-0.305174
-0.246608
-0.244197
-0.056577
-0.112389
-0.0741905
-0.0758557
-0.110369
-0.0738246
-0.0538978
-0.225336
-0.239197
-0.134972
-0.126815
-0.0860498
-0.0636226
-0.0838601
-0.0718981
-0.0675375
-0.0744146
-0.0639862
0.03274
0.00382946
-0.00315152
0.0188127
0.0653773
0.0497116
0.026401
-0.220042
-0.203973
-0.13223
-0.12652
-0.181294
-0.188174
-0.110938
-0.109859
0.0178772
0.0225939
0.023868
0.0872368
0.0205885
0.0209643
0.050445
0.0163146
0.0221953
0.0170908
0.0361927
0.0194622
0.0454606
0.0129417
0.0109406
0.0585342
0.0182415
0.0433524
0.072376
0.0345846
0.0956009
0.0524623
0.00872357
0.0184492
0.0346433
0.0652755
0.08438
0.0246827
-0.0173375
0.0340662
0.00371413
0.0421149
0.0104081
0.0678031
-0.0214402
-0.179666
-0.17793
-0.112076
-0.109045
-0.127619
-0.133208
-0.0931954
-0.0941029
-0.918476
-0.997
-0.993724
-0.926161
-0.991421
-0.915671
-0.909695
-0.0757674
0.0341465
0.0091503
-0.0500693
-0.0753101
-0.0432052
0.0389238
-0.240723
-0.322877
-0.266965
-0.221391
-0.206607
-0.20235
-0.191608
-0.211022
-0.209666
-0.208676
-0.284834
-0.302325
-0.295501
-0.280703
-0.343593
-0.321207
-0.268656
-0.272404
-0.252846
-0.245078
-0.269653
-0.268612
-0.248957
-0.279384
-0.236633
-0.213682
-0.218921
-0.231888
-0.237972
-0.219936
-0.233708
-0.298628
-0.197776
-0.223468
-0.33174
-0.199986
-0.296049
-0.33413
-0.25853
-0.214022
-0.143117
-0.176394
-0.209491
-0.26231
-0.173591
-0.415042
-0.247901
-0.402867
-0.23734
-0.254879
-0.169433
-0.141087
-0.201736
-0.205171
-0.171503
-0.252031
-0.250236
-0.166104
-0.194601
-0.272322
-0.173982
-0.238045
-0.284943
-0.219415
-0.180939
-0.127142
-0.158501
-0.175251
-0.227468
-0.153935
-0.270147
-0.240739
-0.267734
-0.242949
-0.208459
-0.142913
-0.124205
-0.156922
-0.164734
-0.149352
-0.198353
-0.261961
-0.201206
-0.1852
-0.305601
-0.271054
-0.179818
-0.296461
-0.0108977
0.0171776
-0.0017876
-0.0154383
0.0328422
-0.199446
-0.0186178
-0.1706
-0.194737
-0.161394
-0.137012
-0.477424
-0.469536
-0.349866
-0.340276
-1.13847
-1.08724
-1.09681
-1.13481
-1.09803
-1.13925
-1.13454
0.0470407
-0.00179071
-0.0119054
0.0448323
-0.00414949
0.0279596
0.0659562
0.0101012
-0.0157896
-0.0153284
0.0210217
0.0258979
-0.0248388
0.00270786
0.381441
0.379505
0.00658828
0.0203469
-0.0138118
-0.0242618
0.0212207
-0.0224273
0.00512718
0.362329
0.363932
-1.13531
-1.11195
-1.10308
-1.14081
-1.08994
-1.13153
-1.13329
-1.21774
-1.05907
-1.09933
-1.13965
-1.1125
-1.16522
-1.20719
0.345538
0.342448
0.310264
0.312887
-1.51723
-1.59555
-1.57742
-1.5805
-1.58599
-1.52474
-1.57253
-1.1548
-1.08352
-1.12838
-1.17017
-1.08219
-1.1576
-1.17034
-1.46677
-1.57456
-1.50846
-1.45285
-1.56499
0.213225
0.310957
0.214048
0.302064
0.242643
0.288809
0.243013
0.288189
-1.36902
-1.55076
-1.45908
-1.48706
-1.38566
-1.46307
-1.4657
0.244613
0.297819
0.22946
0.300197
0.280011
0.290149
0.278995
0.291082
-0.929799
-0.884489
-0.944113
-1.04797
-0.864766
-0.954538
-1.02805
-0.915147
-0.993306
-0.927055
-0.837352
-0.855414
-1.00583
-0.889785
0.260957
0.274331
0.261986
0.272849
0.240092
0.232645
0.177971
0.239669
0.233047
0.0711132
0.0699849
0.193154
0.217495
0.0751852
0.0661405
0.223636
0.214974
0.213555
0.152619
0.21704
0.211359
0.0733262
0.200572
0.0869115
0.231664
0.079028
0.081542
0.224871
0.191761
0.193637
0.124924
0.189548
0.195189
0.040593
0.0369576
0.147581
0.169937
0.0419504
0.0349982
0.176322
0.162203
0.169049
0.0105068
0.160886
0.169415
0.0427596
0.155418
0.053315
0.18664
0.0495872
0.047916
0.179088
0.145575
0.228081
0.0428392
0.091459
0.0443559
0.145036
0.228937
0.00598198
0.0046365
0.105394
0.126887
0.00990962
3.93101e-05
0.133908
0.137996
0.0522491
0.172987
-0.0390558
0.139432
0.0479574
0.163231
0.00815785
0.112486
0.0193471
0.143374
0.0138558
0.0153884
0.136682
0.14611
0.124574
-0.124974
-0.202858
-0.114813
0.141515
0.128715
-0.032379
-0.0337768
0.0573417
0.0806702
-0.0287132
-0.0381624
0.0871783
0.0193851
-0.289002
0.0886828
0.0544854
0.0269021
-0.298853
0.0870621
-0.029263
0.0647927
-0.0170797
0.0990382
-0.022671
-0.0227339
0.0913776
-0.0312589
0.0802288
-0.107008
0.191852
-0.127377
-0.0332314
0.0788851
-0.0604782
-0.0718429
0.0138188
0.0494836
-0.0659805
-0.06509
0.0537436
-0.031633
0.129304
0.0945854
0.252149
-0.032068
0.139898
0.0950326
-0.0613488
0.0190283
-0.0554559
0.0560542
-0.0575462
-0.0609717
0.0521661
-0.0366229
0.0901673
0.151432
0.208589
0.149655
-0.0304773
0.086094
-0.172008
-0.26041
-0.212452
-0.138167
-0.267589
-0.1663
-0.142217
0.0412721
0.0145861
0.149514
0.0771702
0.0402311
0.0123138
0.151156
-0.174373
-0.147504
-0.216223
-0.271906
-0.270165
-0.145967
-0.175457
0.0037763
0.10281
-0.0468687
0.0391766
-0.0548011
-0.00655034
0.114736
-0.189931
-0.278053
-0.221913
-0.152714
-0.280619
-0.185853
-0.156724
0.140506
-0.0267328
0.253206
0.286112
0.139706
-0.0113009
0.252408
-0.191669
-0.160135
-0.222883
-0.282665
-0.281096
-0.159146
-0.193533
0.203112
0.348439
0.216897
0.523957
0.220119
0.218564
0.342318
-0.430102
-0.407664
-0.419868
-0.388765
-0.0332486
-0.0213634
-0.0292031
-0.00406808
-0.0138293
-0.0180316
0.00149694
-0.317229
-0.321913
-0.29233
-0.282827
-0.704898
-0.706275
-0.601444
-0.599682
-0.315851
-0.300176
-0.26666
-0.28644
-0.171701
-0.191719
-0.166475
-0.149738
0.0527247
0.401145
0.192729
0.051672
0.540165
0.0447301
0.0596502
-0.508936
-0.569895
-0.463629
-0.419247
-0.0301057
0.189824
0.104906
-0.00293836
0.259651
-0.0266525
-0.00297687
-0.531846
-0.554212
-0.63977
0.0445649
-0.0741421
-0.0306143
-0.00509257
-2.62012
-2.47251
-2.55556
-2.78468
-2.13616
-1.99119
0.354857
0.304127
0.400538
0.287392
0.202097
0.233973
0.228698
1.45918
1.45818
1.36361
1.38139
1.37545
1.45434
1.46422
1.21829
0.874809
1.17562
0.883798
1.17974
0.880645
1.21467
1.01209
0.86133
0.801288
0.874171
0.810874
0.721958
0.706717
-2.39597
-2.66895
-2.25057
-2.00677
-2.29878
-1.54285
-1.68984
0.310881
0.225296
0.263187
0.144514
0.1754
0.191293
0.146044
1.6214
1.63455
0.991668
0.823225
0.760915
0.83961
0.777817
0.688643
0.672823
-0.143194
-0.0660738
-0.0855347
0.0205688
-0.0569689
-0.0616982
0.0208106
0.696248
0.546948
0.56653
0.42957
0.495446
0.512357
0.417358
0.485544
0.346851
0.369765
0.303916
0.339826
0.35594
0.287064
-0.0841379
-0.0572855
-0.0546002
-0.0908451
-0.0525235
-0.0850182
-0.0895118
-0.147192
-0.159647
-0.140117
-0.158761
-0.14286
-0.144983
-0.158426
-0.0513079
-0.0294359
-0.0233224
-0.050961
-0.0258048
-0.0471775
-0.0541973
-0.0436387
-0.0310338
-0.0196528
-0.012238
-0.0155786
-0.0307691
-0.0464197
-0.132816
-0.144307
-0.128794
-0.145763
-0.130016
-0.131856
-0.147245
-0.156992
-0.149534
-0.158892
-0.16452
-0.152389
-0.157262
-0.15202
-0.0713989
-0.0376814
-0.0385829
-0.0693327
-0.0331766
-0.0749038
-0.0657968
-0.142041
-0.157721
-0.145963
-0.161257
-0.146667
-0.141707
-0.159838
-0.13291
-0.14097
-0.155641
-0.155593
-0.134186
-0.138688
-0.157384
-0.145147
-0.145802
-0.153091
-0.148629
-0.162087
-0.155208
-0.151543
-0.149667
-0.15272
-0.144532
-0.152357
-0.14518
-0.147603
-0.148782
-0.140864
-0.153874
-0.111687
-0.143298
-0.0987129
-0.133824
-0.103616
-0.137794
-0.109508
-0.128857
-0.128465
-0.144838
-0.0399961
-0.00855435
0.001065
-0.0387698
-0.0421029
-0.0129014
-0.0378348
-0.106306
-0.136216
-0.0946365
-0.131948
-0.0924764
-0.107443
-0.129818
-0.133118
-0.127953
-0.129718
-0.138332
-0.129587
-0.140405
-0.130562
-0.139261
-0.129326
-0.51427
-0.530335
-0.515183
-0.537177
-0.514066
-0.515658
-0.538524
-0.398423
-0.356776
-0.371221
-0.39156
-0.361673
-0.394344
-0.394676
-0.389058
-0.390001
-0.360521
-0.343416
-0.347519
-0.386839
-0.390091
-0.512496
-0.527163
-0.514084
-0.536332
-0.513094
-0.513539
-0.535592
-0.390225
-0.352998
-0.364588
-0.388326
-0.351096
-0.39131
-0.387098
-0.213533
-0.214314
-0.207032
-0.208721
-0.21541
-0.209859
-0.213003
-0.208469
-0.214976
-0.201539
-0.194664
-0.198422
-0.214511
-0.210667
-0.241438
-0.225823
-0.23761
-0.517866
-0.517857
-0.227958
-0.239303
-0.516628
-0.516144
-0.239974
-0.226988
-0.226074
-0.242026
-0.193562
-0.18391
-0.179436
-0.168876
-0.155705
-0.163233
-0.192378
-0.17288
-0.237049
-0.232209
-0.235195
-0.218885
-0.230421
-0.237182
-0.22602
-0.208792
-0.208062
-0.195867
-0.200801
-0.209492
-0.198309
-0.205269
-0.213827
-0.224766
-0.203337
-0.21494
-0.21201
-0.208463
-0.220343
-0.225978
-0.22407
-0.198259
-0.226659
-0.211502
-0.227453
-0.230467
-0.219339
-0.22382
-0.222472
-0.224789
-0.223621
-0.22206
-0.219253
-0.508223
-0.514328
-0.518996
-0.517097
-0.505817
-0.521466
-0.519647
-0.502417
-0.50436
-0.518131
-0.508889
-0.504259
-0.516708
-0.505776
-0.175521
-0.158985
-0.161407
-0.169516
-0.170779
-0.162291
-0.17147
-0.179338
-0.165411
-0.165461
-0.183947
-0.16277
-0.179389
-0.15868
-0.16021
-0.17681
-0.161496
-0.166752
-0.163726
-0.17159
-0.168498
-0.353216
-0.348025
-0.338533
-0.355754
-0.341434
-0.356457
-0.354108
-0.216551
-0.210211
-0.229301
-0.217842
-0.212149
-0.21162
-0.22167
-0.344334
-0.348283
-0.33181
-0.340372
-0.348203
-0.34034
-0.345805
-0.351662
-0.348851
-0.338622
-0.354675
-0.353824
-0.347728
-0.353036
-0.479508
-0.479194
-0.477375
-0.48126
-0.478998
-0.477776
-0.481324
-0.480016
-0.479792
-0.478168
-0.482293
-0.479691
-0.47839
-0.482339
-0.252312
-0.281318
-0.266018
-0.288571
-0.283759
-0.266934
-0.281544
-0.285378
-0.284487
-0.28939
-0.270883
-0.29049
-0.270641
-0.278508
-0.288644
-0.238466
-0.210467
-0.240811
-0.206121
-0.229285
-0.148879
-0.147467
-0.149615
-0.152161
-0.147234
-0.150134
-0.150938
-0.164459
-0.183539
-0.154795
-0.163121
-0.166571
-0.182224
-0.152239
-0.205946
-0.212649
-0.235024
-0.219882
-0.204574
-0.215677
-0.218726
-0.349627
-0.35145
-0.338098
-0.329094
-0.337379
-0.350062
-0.351346
-0.288793
-0.240102
-0.272384
-0.311989
-0.332443
-0.307844
-0.206071
-0.185012
-0.186155
-0.209943
-0.205391
-0.187994
-0.214507
-0.258404
-0.269029
-0.290024
-0.295327
-0.263046
-0.266576
-0.273188
-0.265046
-0.282764
-0.256187
-0.267528
-0.257124
-0.264685
-0.284157
-0.265531
-0.24415
-0.246962
-0.32605
-0.296792
-0.297501
-0.25869
-0.236382
-0.243615
-0.261772
-0.194848
-0.195192
-0.172317
-0.178949
-0.19166
-0.201174
-0.174909
-0.236648
-0.258911
-0.238251
-0.233382
-0.237311
-0.238664
-0.234028
-0.281665
-0.31196
-0.287119
-0.276825
-0.282465
-0.295942
-0.27134
-0.465631
-0.461813
-0.463853
-0.464715
-0.465902
-0.463581
-0.464819
-0.465306
-0.460424
-0.46371
-0.464026
-0.465772
-0.463678
-0.462599
-0.185472
-0.188888
-0.20409
-0.19354
-0.192002
-0.182717
-0.194879
-0.151483
-0.146449
-0.147308
-0.153043
-0.154567
-0.150947
-0.145205
-0.21054
-0.216852
-0.22812
-0.215752
-0.21128
-0.217764
-0.217293
-0.190196
-0.195583
-0.207472
-0.221397
-0.189036
-0.196906
-0.241035
-0.127744
-0.128422
-0.120186
-0.118576
-0.128982
-0.1272
-0.118901
-0.182339
-0.18821
-0.193156
-0.200958
-0.181342
-0.191068
-0.190921
-0.12866
-0.139801
-0.115923
-0.118542
-0.113123
-0.13189
-0.136253
-0.22377
-0.212795
-0.213344
-0.224217
-0.213589
-0.221181
-0.224319
-0.260758
-0.278738
-0.255193
-0.276948
-0.291766
-0.260292
-0.258342
-0.237319
-0.25121
-0.251379
-0.210138
-0.217981
-0.206357
-0.22721
-0.2063
-0.222464
-0.211133
-0.233638
-0.237134
-0.24238
-0.264728
-0.230863
-0.248588
-0.238044
-0.23202
-0.229794
-0.230388
-0.237118
-0.233103
-0.228245
-0.236649
-0.221629
-0.247656
-0.229241
-0.227861
-0.24091
-0.225748
-0.225339
-0.204379
-0.204221
-0.210458
-0.218167
-0.200743
-0.206736
-0.21589
-0.179906
-0.151744
-0.123535
-0.174611
-0.132109
-0.178048
-0.174373
-0.167905
-0.143321
-0.120084
-0.170617
-0.116312
-0.171761
-0.166978
-0.431023
-0.427197
-0.425146
-0.432383
-0.430383
-0.425703
-0.433028
-0.428829
-0.423494
-0.424783
-0.431246
-0.429801
-0.424759
-0.428887
-0.0916297
-0.0674086
-0.0656311
-0.0853151
-0.0679713
-0.0886926
-0.0879386
-0.165568
-0.165632
-0.158372
-0.17018
-0.16524
-0.159185
-0.169759
-0.221672
-0.246191
-0.221491
-0.230187
-0.220754
-0.227225
-0.241091
-0.222323
-0.181813
-0.189136
-0.19929
-0.190042
-0.200792
-0.22014
-0.218962
-0.215599
-0.239579
-0.230314
-0.218609
-0.215798
-0.243242
-0.174573
-0.176878
-0.196201
-0.206425
-0.198251
-0.172159
-0.179119
-0.165695
-0.179054
-0.153718
-0.190355
-0.156016
-0.191213
-0.163775
-0.152172
-0.124608
-0.0933451
-0.147382
-0.0975913
-0.149965
-0.14858
-0.274284
-0.280232
-0.241885
-0.270228
-0.276486
-0.237744
-0.279977
-0.397926
-0.379739
-0.39093
-0.392223
-0.398504
-0.39058
-0.389508
-0.267099
-0.229443
-0.269708
-0.271103
-0.230736
-0.265759
-0.271769
-0.255946
-0.260618
-0.261247
-0.217316
-0.219977
-0.262992
-0.253934
-0.39874
-0.384483
-0.390791
-0.392165
-0.398164
-0.391453
-0.393274
-0.263445
-0.228604
-0.268565
-0.270195
-0.22753
-0.264785
-0.269391
-0.101659
-0.116944
-0.143828
-0.11998
-0.119531
-0.100062
-0.121725
-0.0854393
-0.0620828
-0.0653039
-0.103934
-0.0582483
-0.0992246
-0.0895791
-0.0801519
-0.0920677
-0.0643378
-0.0502914
-0.0516218
-0.0941652
-0.0776969
-0.108275
-0.146507
-0.129929
-0.13192
-0.125524
-0.112888
-0.127278
-0.108595
-0.074053
-0.102554
-0.107164
-0.105588
-0.107039
-0.107234
-0.212524
-0.180402
-0.188306
-0.197726
-0.186225
-0.216829
-0.196404
-0.167399
-0.173641
-0.189856
-0.20778
-0.167606
-0.190514
-0.174364
-0.157858
-0.168851
-0.150682
-0.183884
-0.159947
-0.147738
-0.180989
-0.265367
-0.250723
-0.238317
-0.271907
-0.251621
-0.273904
-0.263821
-0.145187
-0.18739
-0.194398
-0.178505
-0.181241
-0.192169
-0.140954
-0.249152
-0.2579
-0.215537
-0.255208
-0.251308
-0.212957
-0.256198
-0.373954
-0.35779
-0.369907
-0.363832
-0.372
-0.372
-0.366538
-0.237582
-0.197157
-0.239512
-0.243387
-0.199275
-0.234862
-0.246304
-0.223798
-0.219332
-0.204189
-0.200739
-0.2027
-0.221502
-0.222217
-0.365784
-0.347926
-0.366254
-0.359495
-0.368528
-0.36366
-0.356314
-0.23188
-0.195551
-0.229066
-0.240456
-0.196302
-0.233097
-0.237747
-0.221178
-0.172922
-0.188099
-0.202263
-0.217697
-0.175825
-0.20443
-0.262955
-0.250088
-0.274125
-0.237361
-0.274723
-0.263633
-0.249393
-0.221242
-0.249941
-0.215895
-0.221039
-0.252142
-0.222883
-0.219086
-0.211474
-0.206899
-0.19003
-0.181861
-0.207755
-0.183537
-0.209753
-0.215299
-0.24775
-0.210833
-0.219644
-0.218211
-0.245454
-0.217187
-0.133033
-0.184005
-0.173888
-0.179846
-0.181385
-0.136809
-0.169969
-0.116962
-0.151977
-0.158198
-0.164205
-0.163794
-0.11283
-0.154811
-0.0896888
-0.124076
-0.14484
-0.133711
-0.134269
-0.128486
-0.0909065
-0.106545
-0.149433
-0.154574
-0.154803
-0.110664
-0.146326
-0.149478
-0.216701
-0.216143
-0.196981
-0.197185
-0.218857
-0.194363
-0.214907
-0.318661
-0.305443
-0.311563
-0.314831
-0.31764
-0.312417
-0.315696
-0.199999
-0.177536
-0.182591
-0.192551
-0.179733
-0.197638
-0.194776
-0.315653
-0.304441
-0.310092
-0.314012
-0.316373
-0.309393
-0.313798
-0.193592
-0.175703
-0.179456
-0.19115
-0.173528
-0.195619
-0.190262
0.032369
0.0494342
0.0509196
0.00846083
0.0575353
-0.00664154
0.0132939
-0.141465
-0.129385
-0.153027
-0.157989
-0.139922
-0.130579
-0.159084
-0.138726
-0.16567
-0.145497
-0.161651
-0.142563
-0.142599
-0.168539
-0.201863
-0.2051
-0.180471
-0.187023
-0.174103
-0.20725
-0.204249
-0.191335
-0.172444
-0.175681
-0.190855
-0.176944
-0.191403
-0.189141
-0.171941
-0.176725
-0.168639
-0.16735
-0.177274
-0.168211
-0.171367
-0.191062
-0.17959
-0.178283
-0.190985
-0.191626
-0.182893
-0.190551
-0.105989
-0.109649
-0.135718
-0.136989
-0.108633
-0.104945
-0.135648
-0.105258
-0.131435
-0.111604
-0.142534
-0.112322
-0.102918
-0.133679
-0.0253535
0.0133943
0.01156
-0.015786
0.0191726
-0.0349459
-0.002342
-0.0745004
-0.0845008
-0.106932
-0.0983997
-0.100441
-0.0847356
-0.0732877
-0.0952865
-0.128354
-0.109378
-0.134915
-0.0997787
-0.123294
-0.105425
-0.28102
-0.288316
-0.273225
-0.291066
-0.280454
-0.274021
-0.291024
-0.277849
-0.285542
-0.271681
-0.290222
-0.27918
-0.270323
-0.289251
0.0187763
0.0308919
0.0226722
-0.00322301
0.0287866
0.0190244
-0.00405465
-0.125345
-0.106748
-0.115331
-0.130104
-0.127676
-0.106595
-0.135083
0.0253536
0.00319842
0.0433822
0.0276652
0.0348784
0.033816
-0.00133106
-0.148096
-0.160373
-0.14087
-0.151276
-0.149551
-0.139222
-0.159006
-0.170836
-0.17633
-0.166389
-0.166515
-0.165752
-0.170871
-0.176289
-0.181426
-0.176332
-0.165743
-0.165945
-0.174885
-0.167842
-0.183071
-0.0811116
-0.0967977
-0.109099
-0.106146
-0.0983984
-0.108602
-0.0796822
-0.183258
-0.176835
-0.1605
-0.16376
-0.160906
-0.176656
-0.183731
-0.00344791
0.0146599
0.0465252
0.0147126
0.0405767
0.0126203
0.00198821
-0.243464
-0.282564
-0.256553
-0.256348
-0.242243
-0.256378
-0.257563
-0.239038
-0.283849
-0.256013
-0.254498
-0.240408
-0.25601
-0.253101
-0.0769443
-0.0952913
-0.103589
-0.105404
-0.10219
-0.0775174
-0.0945403
-0.0626413
-0.0845171
-0.119456
-0.0655138
-0.123464
-0.0507625
-0.0292134
-0.0566669
-0.057768
-0.070644
-0.115647
-0.111122
-0.0536498
-0.191097
-0.218674
-0.235355
-0.194
-0.191638
-0.233831
-0.194192
-0.192657
-0.213537
-0.237146
-0.193261
-0.191727
-0.239382
-0.193475
-0.0443428
-0.00803022
-0.0387487
-0.0118581
-0.0328244
-0.0264198
-0.0931662
-0.103697
-0.0941046
-0.0428193
-0.0412481
-0.0497065
-0.141796
-0.130953
-0.123292
-0.137056
-0.134945
-0.129227
-0.140985
-0.125221
-0.103387
-0.120778
-0.131847
-0.130684
-0.116947
-0.125337
-0.0917655
-0.0986994
-0.0887178
-0.0013964
-0.00617501
-0.00838834
-0.110885
-0.0639314
-0.0622116
-0.0963218
-0.0660829
-0.108329
-0.0939655
0.111084
0.150741
-0.139743
0.114775
-0.0771106
-0.029991
0.00528829
-0.0031616
0.000806329
-0.112346
-0.0607076
-0.0654236
-0.0882431
-0.11186
-0.067217
-0.0917929
-0.57234
-0.573015
-0.739607
-0.764302
-0.734595
-0.744203
-0.746474
-0.73567
-0.737642
-0.571816
-0.571679
-0.726649
-0.747703
-0.713744
-0.746077
-0.714975
-0.753958
-0.72432
-0.818414
-0.783367
-0.815075
-0.797198
-0.788853
-0.812242
-0.815873
-0.863974
-0.810858
-0.804923
-0.854139
-0.860198
-0.819551
-0.857518
-0.998489
-0.876536
-0.880195
-0.874991
-1.00323
-0.78824
-0.809806
-0.786914
-0.795661
-0.810688
-0.790826
-0.783364
-0.878475
-0.797082
-0.7751
-0.783202
-0.803247
-0.771843
-0.804353
-0.794911
-0.185697
-0.181456
-0.173479
-0.187244
-0.183438
-0.178413
-0.181451
-0.227338
-0.232108
-0.238946
-0.218957
-0.220359
-0.239033
-0.227324
-0.0532312
-0.00369977
-0.0562235
-0.0516949
-0.0238106
-0.0587593
-0.0197134
-0.0687142
-0.00351079
-0.0338773
-0.0464239
0.0187637
0.0180231
-0.0353738
-0.00183216
-0.0757694
-0.00542698
-0.0619348
-0.022033
-0.0819303
-0.0605938
-0.0238127
-0.0660862
-0.0653448
-0.033869
-0.0282554
-0.0232505
-0.0838891
-0.0613046
-0.060303
-0.0483359
-0.00198514
-0.0239797
-0.0523911
-0.0537927
-0.00510966
-0.113622
-0.0918296
-0.124809
-0.135919
-0.136607
-0.0930484
-0.112141
-0.184021
-0.176971
-0.0584005
-0.0633388
-0.0223142
-0.0474941
-0.031775
-0.0578823
-0.0602317
-0.541876
-0.551135
-0.553815
-0.540757
-0.730977
-0.740026
-0.715799
-0.748842
-0.716188
-0.726821
-0.739943
-0.53483
-0.53822
-0.534147
-0.536012
-0.956352
-1.02217
-0.9231
-1.03
-0.925687
-1.02866
-0.952472
-1.04664
-1.05817
-1.05236
-1.04621
-1.04503
-1.07288
-1.06283
-1.06419
-1.06607
-1.04448
-1.07337
-1.03636
-1.09501
-1.05766
-1.03375
-1.08873
-1.05954
-1.06422
-1.06038
-0.813514
-0.778489
-0.796727
-0.814622
-0.797617
-0.812904
-0.81316
-0.21927
-0.187225
-0.136266
-0.166299
-0.209423
-0.187283
-0.151756
-0.183342
-0.167658
-0.163983
-0.141399
-0.16495
-0.182111
-0.166936
-0.210876
-0.235993
-0.183875
-0.215768
-0.192424
-0.229665
-0.238772
-0.177017
-0.186705
-0.191547
-0.172591
-0.220242
-0.187233
-0.190004
-0.202345
-0.286228
-0.285885
-0.248944
-0.181044
-0.163875
-0.163377
-0.13925
-0.163004
-0.180249
-0.161028
-0.177697
-0.148041
-0.152749
-0.167848
-0.183657
-0.183913
-0.144094
-0.170581
-0.161536
-0.160825
-0.102246
-0.0850342
-0.13076
-0.116386
-0.0822935
-0.106197
-0.134214
-0.144744
-0.175979
-0.135225
-0.188406
-0.172445
-0.168846
-0.16362
-0.10063
-0.0666408
-0.0824674
-0.0483316
-0.083977
-0.098485
-0.0630761
-0.239232
-0.185995
-0.18837
-0.217836
-0.173732
-0.212188
-0.242792
-0.151743
-0.181219
-0.178654
-0.162388
-0.171783
-0.160452
-0.155282
-0.515509
-0.513047
-0.513811
-0.513278
-0.523732
-0.513711
-0.515239
-0.515647
-0.993968
-1.02551
-1.06409
-1.05909
-1.06009
-1.0285
-0.990479
-1.04352
-1.08637
-1.04942
-0.816162
-0.778758
-0.797746
-0.815028
-0.813182
-0.797946
-0.817328
-1.05545
-1.03918
-1.09493
-1.10104
-1.04372
-1.05345
-1.10048
-0.837395
-0.754
-0.786887
-0.851429
-0.746645
-0.843709
-0.851102
-0.833139
-0.785062
-0.735079
-0.845694
-0.744102
-0.849319
-0.826094
-1.02995
-1.05854
-1.06737
-0.99171
-1.0263
-1.05863
-0.993959
-1.07278
-1.04423
-1.10126
-1.08315
-1.06218
-1.04748
-1.07038
-0.233663
-0.263074
-0.242868
-0.223195
-0.267816
-0.237664
-0.319178
-0.285648
-0.275712
-0.28578
-0.252881
-0.194505
-0.21014
-0.22391
-0.185655
-0.205122
-0.200952
-0.190215
-0.258163
-0.295567
-0.268003
-0.277336
-0.314461
-0.279703
-0.258099
-0.242572
-0.277399
-0.251198
-0.21926
-0.237561
-0.250857
-0.230773
-0.235564
-0.233134
-0.219225
-0.252549
-0.237087
-0.267352
-0.260895
-0.263162
-0.250627
-0.243438
-0.107757
-0.0650884
-0.0786003
-0.044932
-0.0589967
-0.0969101
-0.0822747
-0.201489
-0.229429
-0.201156
-0.215902
-0.260613
-0.238361
-0.203569
-0.161831
-0.194465
-0.178384
-0.163017
-0.154767
-0.180331
-0.17375
-0.073527
-0.0958753
-0.0398363
-0.0222185
-0.0966416
-0.0737219
-0.0194991
-0.0746035
-0.0247281
-0.099235
-0.0450738
-0.097349
-0.0739411
-0.0234646
-0.0742428
-0.093983
-0.0215238
-0.0441756
-0.0730501
-0.0962972
-0.0221568
-0.524354
-0.50838
-0.510258
-0.521728
-0.518648
-0.505856
-0.503616
-0.52012
-0.813367
-0.76937
-0.733829
-0.841706
-0.730513
-0.823191
-0.839439
-0.845734
-0.928121
-0.886072
-0.980261
-0.89305
-0.832959
-0.943648
-0.994867
-1.02954
-0.940062
-1.01881
-0.949529
-0.990886
-1.02811
-0.21714
-0.234593
-0.246231
-0.222271
-0.221546
-0.231642
-0.216823
-0.246806
-0.211224
-0.220988
-0.234045
-0.246087
-0.220426
-0.236028
-0.206882
-0.190172
-0.207879
-0.182034
-0.200881
-0.182858
-0.201715
-0.108278
-0.16642
-0.13913
-0.141514
-0.139816
-0.138301
-0.108687
-0.193119
-0.214497
-0.1963
-0.178009
-0.179064
-0.218881
-0.193507
-0.50642
-0.482172
-0.485228
-0.503419
-0.499813
-0.479614
-0.477011
-0.501781
-0.991587
-1.02849
-0.936019
-1.00686
-0.93291
-0.990052
-1.02627
-0.973943
-0.907405
-0.981563
-1.00392
-0.91144
-0.95869
-1.00764
-0.175609
-0.206876
-0.195423
-0.158478
-0.204997
-0.175191
-0.157454
-0.175697
-0.191982
-0.205006
-0.154306
-0.206865
-0.174384
-0.156247
-0.271717
-0.267728
-0.242058
-0.251935
-0.275195
-0.264463
-0.247755
-0.287845
-0.253991
-0.272032
-0.249246
-0.284501
-0.277363
-0.25495
-0.180705
-0.184757
-0.215261
-0.221459
-0.185499
-0.219643
-0.18121
-0.180957
-0.217867
-0.188166
-0.219931
-0.187086
-0.181097
-0.218411
-0.508179
-0.469301
-0.419717
-0.498023
-0.490683
-0.463548
-0.513387
-0.476561
-0.446833
-0.443416
-0.479643
-0.502365
-0.478612
-0.416501
-0.453557
-0.486362
-0.458077
-0.498775
-0.47083
-0.445607
-0.444402
-0.474143
-0.48526
-0.43472
-0.395921
-0.457371
-0.440608
-0.463089
-0.481826
-0.489798
-0.473724
-0.44994
-0.398797
-0.445225
-0.493945
-0.466964
-0.471594
-0.42815
-0.379592
-0.451868
-0.443888
-0.423109
-0.475847
-0.387969
-0.33302
-0.343619
-0.347367
-0.383078
-0.464619
-0.430075
-0.376711
-0.410107
-0.439206
-0.41672
-0.457862
-0.376127
-0.322003
-0.339012
-0.335768
-0.379523
-0.435226
-0.386011
-0.357733
-0.40595
-0.394594
-0.415117
-0.427948
-0.443357
-0.425879
-0.406323
-0.359067
-0.400243
-0.450871
-0.418863
-0.411421
-0.377936
-0.337281
-0.39974
-0.389765
-0.368979
-0.419441
-0.364502
-0.295723
-0.308838
-0.309391
-0.363842
-0.402183
-0.374366
-0.3324
-0.352912
-0.383327
-0.360112
-0.394635
-0.366046
-0.30002
-0.309355
-0.309872
-0.365475
-0.367848
-0.321799
-0.307153
-0.34583
-0.327497
-0.354083
-0.36164
-0.377142
-0.369441
-0.344539
-0.31352
-0.33606
-0.385335
-0.361215
-0.345657
-0.312984
-0.285438
-0.338045
-0.329047
-0.306679
-0.352182
-0.3576
-0.326362
-0.310578
-0.310321
-0.355011
-0.336482
-0.313517
-0.28016
-0.291926
-0.322584
-0.298175
-0.330176
-0.348943
-0.324333
-0.309899
-0.309045
-0.352061
-0.30896
-0.266069
-0.257618
-0.287903
-0.27258
-0.29589
-0.302394
-0.316548
-0.308242
-0.284519
-0.2612
-0.279739
-0.322008
-0.300605
-0.287991
-0.259186
-0.239357
-0.283254
-0.275248
-0.253112
-0.294847
-0.292784
-0.26793
-0.263253
-0.265373
-0.290834
-0.278912
-0.261236
-0.233505
-0.237806
-0.269615
-0.245371
-0.270773
-0.286795
-0.258024
-0.26074
-0.258294
-0.289151
-0.25185
-0.215462
-0.206906
-0.232743
-0.217785
-0.240785
-0.250072
-0.258111
-0.25632
-0.230419
-0.212942
-0.224897
-0.262864
-0.247284
-0.292738
-0.314377
-0.268809
-0.341519
-0.277235
-0.342705
-0.291156
-0.273921
-0.239438
-0.283956
-0.316457
-0.247404
-0.269511
-0.322113
-0.240144
-0.209014
-0.18614
-0.225437
-0.218581
-0.205004
-0.24388
-0.236552
-0.165815
-0.190119
-0.190125
-0.23707
-0.234085
-0.206229
-0.181667
-0.195266
-0.213176
-0.19936
-0.230245
-0.280647
-0.290864
-0.260846
-0.334828
-0.253605
-0.284816
-0.329976
-0.256711
-0.23423
-0.308176
-0.258907
-0.263108
-0.226604
-0.299908
-0.235638
-0.163942
-0.18899
-0.188762
-0.236186
-0.212839
-0.173683
-0.164451
-0.185836
-0.179221
-0.192005
-0.206869
-0.219323
-0.202158
-0.190335
-0.167447
-0.184779
-0.224776
-0.195818
-0.249025
-0.252331
-0.214287
-0.28111
-0.221768
-0.290183
-0.24189
-0.211686
-0.185185
-0.219884
-0.233768
-0.194818
-0.203019
-0.244267
-0.190422
-0.166428
-0.149029
-0.181517
-0.174421
-0.158765
-0.198654
-0.141069
-0.128062
-0.135256
-0.111501
-0.112043
-0.128927
-0.136963
-0.180782
-0.15429
-0.142907
-0.145497
-0.167886
-0.148334
-0.17771
-0.222642
-0.226692
-0.209001
-0.2694
-0.201145
-0.232405
-0.25726
-0.182822
-0.178108
-0.223177
-0.198144
-0.189885
-0.171132
-0.216091
-0.122974
-0.102917
-0.129521
-0.102775
-0.121927
-0.129588
-0.0971496
-0.174568
-0.191099
-0.15774
-0.204577
-0.163019
-0.207397
-0.172693
-0.151543
-0.131946
-0.166605
-0.17809
-0.139435
-0.145952
-0.183738
-0.0725166
-0.0609645
-0.0749314
-0.0563372
-0.056655
-0.0723102
-0.0749588
-0.157934
-0.172071
-0.150991
-0.197876
-0.144292
-0.164767
-0.191277
-0.259201
-0.256339
-0.136808
-0.127658
-0.1723
-0.141064
-0.141201
-0.119291
-0.167501
-0.0723427
-0.0608983
-0.0749419
-0.0562789
-0.0722292
-0.0564377
-0.0750799
-0.260445
-0.310659
-0.291649
-0.275159
-0.261601
-0.258552
-0.13281
-0.133163
-0.105671
-0.157874
-0.113697
-0.162405
-0.128969
-0.209385
-0.197384
-0.160348
-0.190645
-0.192586
-0.21396
-0.175529
-0.281005
-0.205042
-0.150348
-0.183434
-0.148787
-0.187613
-0.163348
-0.201962
-0.270841
-0.21908
-0.152613
-0.179098
-0.224442
-0.266425
-0.18227
-0.114238
-0.0772446
-0.0961766
-0.135443
-0.0843336
-0.108864
-0.141121
-0.0565627
-0.0379312
-0.0469962
-0.0398744
-0.0470922
-0.0545217
-0.0531367
-0.272557
-0.315348
-0.273453
-0.317181
-0.119218
-0.103927
-0.0990563
-0.151597
-0.0907597
-0.123567
-0.146805
-0.282581
-0.320521
-0.282385
-0.320571
-0.0891115
-0.0714146
-0.12733
-0.0740506
-0.101201
-0.0651157
-0.118716
-0.0455001
-0.022387
-0.0413098
-0.0340978
-0.0491612
-0.029432
-0.0370263
-0.246371
-0.278614
-0.282631
-0.24286
-0.277684
-0.315559
-0.279071
-0.313895
-0.0806878
-0.068081
-0.0543695
-0.104698
-0.0595473
-0.110014
-0.0760825
-0.186415
-0.106876
-0.160283
-0.104752
-0.166398
-0.114547
-0.180196
-0.311143
-0.326316
-0.193322
-0.11561
-0.177723
-0.136562
-0.197752
-0.172786
-0.123925
-0.251435
-0.308866
-0.300588
-0.278951
-0.164396
-0.152061
-0.0823971
-0.0968616
-0.14403
-0.172124
-0.0884594
-0.265662
-0.274701
-0.277855
-0.263439
-0.163655
-0.146127
-0.0781482
-0.0810723
-0.155502
-0.0842235
-0.155678
-0.273529
-0.302768
-0.300514
-0.278206
-0.154964
-0.0760076
-0.128632
-0.0756774
-0.134933
-0.0818349
-0.147782
-0.289481
-0.19616
-0.328428
-0.217202
-0.292868
-0.19406
-0.324679
-0.357872
-0.260864
-0.394333
-0.266945
-0.240583
-0.186587
-0.13499
-0.161529
-0.190898
-0.234884
-0.164309
-0.245438
-0.167989
-0.198281
-0.136432
-0.195133
-0.248785
-0.166141
-0.284593
-0.214834
-0.188758
-0.313094
-0.27868
-0.191983
-0.319401
-0.368359
-0.242422
-0.356124
-0.249351
-0.358293
-0.251606
-0.366396
-0.36385
-0.338575
-0.256924
-0.244821
-0.337468
-0.365273
-0.255374
-0.361685
-0.251526
-0.243447
-0.332999
-0.335135
-0.253857
-0.359749
-0.359182
-0.352793
-0.235855
-0.247574
-0.348789
-0.36318
-0.244806
-0.347055
-0.312208
-0.238573
-0.232955
-0.320207
-0.243522
-0.340049
-0.353466
-0.233212
-0.336339
-0.237371
-0.343116
-0.241918
-0.346626
-0.352725
-0.249626
-0.329821
-0.236163
-0.326025
-0.35662
-0.246688
-0.0593958
-0.0378231
-0.0479816
-0.0787897
-0.0410215
-0.0554003
-0.0841491
0.0398551
0.0710499
0.0524915
0.0630057
0.0604075
0.0409091
0.0514883
-0.235462
-0.274824
-0.239073
-0.271907
-0.0665164
-0.052087
-0.0495826
-0.098226
-0.0448126
-0.0722046
-0.0921083
-0.196363
-0.225732
-0.193818
-0.228501
-0.0477341
-0.035149
-0.0729569
-0.0382606
-0.051053
-0.0326345
-0.06782
0.0404313
0.0820597
0.0536598
0.0673833
0.0414072
0.0688706
0.0539183
-0.134802
-0.15901
-0.166419
-0.12705
-0.188427
-0.22251
-0.190824
-0.220246
-0.0439285
-0.0365252
-0.0299411
-0.0558481
-0.0412217
-0.0314942
-0.0615047
-0.119828
-0.0542881
-0.097481
-0.0547379
-0.104014
-0.0594931
-0.112284
-0.262552
-0.272496
-0.263872
-0.27051
-0.136104
-0.132339
-0.072968
-0.0636269
-0.124375
-0.143917
-0.0668761
-0.129529
-0.0588679
-0.120126
-0.070425
-0.137407
-0.112961
-0.0643961
-0.242997
-0.242149
-0.244576
-0.240974
-0.126341
-0.0568791
-0.0583828
-0.106289
-0.114815
-0.0617824
-0.118126
-0.0952748
-0.0903562
-0.0431172
-0.051167
-0.0835497
-0.103755
-0.0470016
-0.190315
-0.189872
-0.196016
-0.186047
-0.0884071
-0.0666358
-0.040472
-0.0409214
-0.077613
-0.0765259
-0.0450445
-0.234333
-0.23896
-0.237345
-0.236892
-0.0855792
-0.0408338
-0.067485
-0.0402107
-0.0757071
-0.0754395
-0.0440436
-0.098818
-0.0530508
-0.0959618
-0.0444783
-0.0862652
-0.108407
-0.0484725
-0.207069
-0.157749
-0.255826
-0.163903
-0.222903
-0.146946
-0.237368
-0.259667
-0.237748
-0.264032
-0.234377
-0.159152
-0.122194
-0.0995288
-0.107125
-0.131156
-0.145136
-0.118495
-0.436167
-0.485803
-0.501336
-0.430406
-0.17411
-0.135991
-0.147892
-0.106516
-0.139431
-0.186065
-0.127082
-0.187458
-0.151497
-0.122634
-0.188982
-0.168062
-0.136379
-0.213993
-0.318013
-0.210807
-0.295172
-0.207917
-0.307919
-0.218027
-0.30486
-0.322456
-0.302823
-0.233616
-0.214857
-0.291378
-0.332559
-0.226303
-1.13928
-1.04677
-1.00772
-1.08043
-0.32971
-0.21812
-0.32876
-0.232731
-0.319419
-0.339269
-0.225703
-0.310495
-0.208253
-0.207328
-0.2666
-0.279446
-0.218411
-0.297071
-0.267167
-0.278233
-0.177312
-0.197123
-0.258699
-0.287406
-0.18298
-0.598705
-0.640815
-0.981683
-1.04446
-0.987933
-1.04054
-0.233868
-0.183864
-0.148895
-0.160092
-0.204169
-0.209732
-0.168156
-0.240979
-0.163341
-0.204273
-0.149177
-0.210192
-0.233316
-0.168276
-0.259245
-0.197236
-0.250119
-0.174178
-0.23188
-0.279407
-0.183087
-1.32507
-1.27597
-1.46496
-1.43741
-1.29051
-1.3201
-1.47175
-1.53748
-1.53327
-1.50944
-1.50574
-1.54873
-1.54804
-1.59918
-1.50273
-1.57265
-1.50972
-1.5887
-1.55158
-2.06711
-2.07049
-2.03932
-1.91842
-1.93091
-1.9031
-1.95045
-1.60791
-1.71937
-1.81383
-1.39568
-1.50064
-1.79908
-1.54296
-2.2371
-2.23406
-2.20412
-2.16324
-2.18712
-2.25042
-2.21611
-1.79533
-1.80187
-1.7185
-1.66602
-1.675
-1.8289
-1.78064
-1.6971
-1.68249
-1.687
-1.74824
-1.51893
-1.59073
-1.57462
-1.602
-1.61485
-1.73833
1.27794
1.26211
1.23539
1.28076
1.23542
1.1846
1.26378
1.26783
1.20173
1.20197
1.26295
1.18416
1.22336
1.32503
1.30101
1.22458
1.28904
-1.74707
-1.75024
-1.70446
-1.72406
-1.74975
-1.73348
-1.74293
1.32101
1.35625
1.23013
1.30561
0.381561
0.385115
0.444869
0.428901
0.361621
0.364674
0.445159
0.428783
0.457105
0.398778
0.446069
0.396108
0.448355
0.456188
0.450056
0.428531
0.445323
0.433798
0.449034
0.445357
0.462193
0.407588
0.449292
0.44884
0.405557
0.462411
-1.77073
-1.80533
-1.67639
-1.71276
-1.66424
-1.78344
-1.81049
-1.4909
-1.64995
-1.55912
-1.4162
-1.44592
-1.67247
-1.44989
-1.11638
-1.11541
-1.10998
-1.11759
-1.12316
-1.11387
-1.11444
-1.12666
-1.11367
-1.84455
-1.74337
-1.69004
-1.79184
-1.74265
-1.8121
-1.83031
-1.80836
-1.73548
-1.65285
-1.777
-1.757
-1.71675
-1.81751
0.345659
0.348551
0.00851852
0.0224949
-0.0245259
-0.0193784
0.0218495
0.00695907
-0.035077
0.361272
0.360485
0.439644
0.426655
0.444375
0.441465
0.443712
0.422211
0.767211
0.981423
0.803025
0.889946
0.891427
0.80043
0.767225
0.424232
0.423019
0.395443
0.424802
0.398458
0.421773
0.405175
0.361673
0.401843
0.362131
0.404316
0.403929
0.767443
0.990578
0.806299
0.889549
0.89019
0.808083
0.766975
0.419911
0.422549
0.394293
0.392792
0.42145
0.421146
-1.09981
-1.13244
-1.1311
-1.11545
-1.12389
-1.13557
-1.12241
-1.12931
-1.16026
-1.08414
-1.13867
-1.17391
-1.15971
-1.08705
-1.17645
-1.26975
-1.17302
-1.28959
-1.37501
-1.25905
-1.19222
-1.3922
-1.50446
-1.57766
-1.51478
-1.56237
-1.1302
-1.12526
-1.12182
-1.123
-1.11533
-1.12536
-1.12992
-1.63989
-1.63067
-1.71678
0.212092
0.315908
0.213429
0.321014
0.308187
0.305531
0.404337
0.368034
0.402686
0.399389
0.405489
0.368636
0.399403
0.369894
0.373943
0.371713
0.374744
0.397732
0.383832
0.385064
0.337039
0.388152
0.342815
0.380008
0.396042
0.368107
0.376113
0.37766
0.36536
0.396862
-1.58295
-1.57271
-1.56619
-1.42231
-1.56943
-1.45867
-1.50734
-1.41096
-1.45722
-1.51387
-1.56902
-1.6391
-1.56754
-1.57694
-1.65259
-1.56485
-1.6575
-1.57297
-1.65768
-1.58067
-1.76078
-1.68245
-1.6454
-1.75851
-1.66748
-1.7636
-1.7516
-1.50561
-0.878501
-1.12259
-1.05075
-1.21985
-1.13011
-1.40255
-1.7328
-1.64952
-1.65325
-1.72778
-1.50723
-1.40875
-1.25446
-1.22076
-1.27829
-1.43214
-1.48224
-2.91801
-3.91564
-2.65868
-1.98892
-3.86211
-2.75142
-2.23465
-1.7224
-1.62875
-1.70204
-1.78122
-1.62488
-1.74993
-1.72966
-2.46458
-3.4256
-1.87211
-2.3925
-2.57202
-3.30867
-1.89747
-1.69339
-1.72372
-3.43375
-2.62886
-2.43722
-1.92662
-2.58519
-3.27843
-2.81184
-1.80992
-1.72971
-1.7487
-1.80708
-1.73497
-1.78132
-1.83512
0.228166
0.297723
0.22965
0.299185
0.250239
0.294819
0.249196
0.295914
0.379969
0.386753
0.335408
0.330942
0.380038
0.386306
0.416384
0.288932
0.250693
0.424028
0.288908
0.430098
0.413637
0.401795
0.393988
0.217487
0.277981
0.397639
0.28025
0.398713
0.412142
0.292007
0.249943
0.423752
0.418208
0.291543
0.414944
-1.1145
-1.094
-1.04027
-1.05069
-1.09981
-1.05449
-1.11421
-1.53951
-1.63583
-1.54765
-1.6532
-1.53637
-1.53647
-1.66846
-0.995372
-0.897558
-0.983214
-1.07307
-0.974316
-0.916396
-1.08486
-1.08553
-1.03674
-0.963225
-1.03419
-1.05027
-1.03983
-1.0833
-1.11509
-1.08805
-1.0644
-0.993195
-1.05893
-1.11669
-1.08203
-1.53021
-1.62927
-1.47182
-1.66271
-1.48641
-1.68526
-1.51256
-1.22695
-1.42832
-0.791388
-0.690211
-0.743969
-1.5348
-1.13414
-2.57462
-2.0509
-2.24218
-1.3107
-2.63365
-2.01394
-1.81529
1.34749
1.19468
1.18912
1.40851
1.40658
1.35472
1.18436
-1.84679
-1.73772
-1.7678
-1.82593
-1.84942
-1.77635
-1.8205
1.37287
1.19608
1.19563
1.41154
1.40982
1.36566
1.20065
0.263706
0.274833
0.262483
0.276397
0.278327
0.290207
0.27906
0.289384
0.396809
0.393811
0.277402
0.206093
0.277616
0.398735
0.390831
0.381494
0.269758
0.188197
0.362686
0.270535
0.36497
0.379883
0.35947
0.335038
0.17732
0.255926
0.338453
0.257785
0.356453
0.3778
0.269614
0.186271
0.362392
0.360252
0.268752
0.379443
-0.886892
-1.0458
-0.951489
-1.12093
-0.916649
-1.03056
-0.917761
-0.868725
-1.08744
-0.995411
-0.868445
-0.849728
-1.00706
-0.894347
-1.35315
-1.2763
-1.49693
-1.33107
-1.36952
-1.2485
-1.4952
-1.31522
-1.24843
-1.17545
-1.41063
-1.18138
-1.41717
-1.31477
-0.870308
-0.727275
-0.317453
-0.224373
-0.227892
-0.765843
-0.794497
-0.624943
-0.340571
-0.712138
-0.350549
-0.363262
-0.766068
-0.584613
-1.59588
-1.31283
-1.50884
-1.32702
-1.53122
-1.34326
-1.57151
-0.698239
-0.683563
-0.207891
-0.289213
-0.198133
-0.727729
-0.637846
0.220333
0.160475
0.214452
0.217753
0.217423
0.238915
0.232338
0.177987
0.240022
0.231302
0.35253
0.334958
0.254895
0.172705
0.253082
0.355376
0.331991
0.338047
0.299938
0.23688
0.310605
0.300607
0.312859
0.336676
0.316345
0.26697
0.216054
0.28175
0.272533
0.284918
0.312211
0.334287
0.299883
0.235449
0.309851
0.307294
0.29867
0.336314
-1.29976
-1.22261
-1.17157
-1.38923
-1.16666
-1.30184
-1.38123
-0.647401
-0.968822
-0.75046
-0.800641
-0.788402
-0.824817
-0.608472
-0.499134
-0.323101
-0.653029
-0.264671
-0.292809
-0.550273
-0.597345
-0.683767
-1.00444
-0.829727
-0.939543
-0.801458
-0.722334
-0.884309
-1.49466
-1.27014
-1.47397
-1.30288
-1.53168
-1.45101
-1.27909
0.0589022
0.0688044
0.213192
0.178933
0.0635752
0.0644247
0.205919
0.157327
0.0343065
0.168674
0.159069
0.170191
0.185313
0.192322
0.111996
0.188017
0.190534
0.0582712
0.171679
0.0555164
0.191206
0.0530226
0.0600496
0.198326
0.307106
0.263906
0.280753
0.206031
0.278104
0.310969
0.257513
0.296073
0.265129
0.176621
0.209435
0.266213
0.215145
0.295029
0.286097
0.0971543
0.0773184
0.24761
0.104587
0.24964
0.283524
0.293478
0.264472
0.160835
0.203825
0.195399
0.26319
0.294664
0.0254432
0.0356663
0.165633
0.132523
0.0318071
0.0302015
0.158171
0.147121
0.0330378
0.011826
0.19151
0.144253
0.0400539
0.201913
0.142959
0.227
0.0416318
0.0846324
0.144402
0.0400519
0.224922
0.0236745
0.125871
0.0218009
0.15059
0.0196384
0.0250291
0.155724
0.279738
0.0892297
0.2471
0.0572203
0.245972
0.282311
0.0813297
0.270695
0.240359
0.0458547
0.056435
0.241052
0.0564763
0.270421
0.275824
0.196027
-0.0846957
0.188005
0.197265
0.19814
0.268404
0.586372
0.708412
0.815893
0.567066
0.552871
0.795947
0.59906
0.270583
0.239621
0.0413148
0.061411
0.0662943
0.237676
0.270919
0.442359
0.44597
-0.0979226
-0.15943
-0.0427839
0.101411
0.102386
-0.173569
-0.0860573
-0.0094505
0.00249959
0.121897
0.0891338
-0.00369007
-0.00301942
0.115251
0.0422251
-0.280576
0.00281907
0.0903372
0.0342288
-0.270573
0.0919587
0.129774
0.119293
-0.129489
-0.197334
0.13518
-0.138363
0.115805
-0.0121794
0.0820162
-0.0137189
0.104751
-0.0180479
-0.00864068
0.111577
0.240833
0.226334
0.166078
-0.058528
0.157749
0.248943
0.239052
0.524085
0.605902
0.688929
0.468432
0.480019
0.702332
0.512315
0.285432
0.189815
0.0618877
0.243223
0.18927
0.232618
0.288568
-0.0478197
-0.0366664
0.0759839
0.0418427
-0.0420656
-0.041748
0.0697461
-0.0329519
0.111797
0.259941
0.0948408
-0.0321345
0.101859
0.0939464
-0.0376279
0.0804764
-0.0876413
0.223784
-0.0357784
-0.0660918
0.0814648
-0.0496903
0.0352428
-0.0510082
0.0621367
-0.0534045
-0.0471624
0.0668601
-0.0730002
-0.0749488
0.0434209
-0.00066482
-0.0702346
-0.0760325
0.0394485
-0.170799
-0.25204
-0.187276
-0.13744
-0.167546
-0.250706
-0.134454
0.0403583
0.0175442
0.0840579
0.150443
0.0419547
0.0176161
0.146342
-0.0108252
0.0957481
0.158834
0.200455
-0.0190785
0.135644
0.0974966
-0.0747592
-0.00411655
-0.072716
0.0321844
-0.0794651
-0.0774156
0.0357072
1.19166
-0.185398
-0.277723
-0.220088
-0.15092
-0.185321
-0.278407
-0.151912
0.133907
-0.0424613
0.264929
0.251792
0.136814
-0.0573542
0.24996
-0.178963
-0.147637
-0.273051
-0.218415
-0.1762
-0.274415
-0.148468
-0.0131718
0.102046
-0.0405377
0.117839
-0.0117557
-0.0343051
0.102283
1.27886
1.60699
1.88703
1.522
1.90122
1.84548
1.91918
1.17062
1.57692
1.11238
-0.201387
-0.285361
-0.223367
-0.163311
-0.19947
-0.287701
-0.163071
-0.197566
-0.160654
-0.283917
-0.22312
-0.19463
-0.285448
-0.161637
0.223184
0.354333
0.157651
0.556537
0.233014
0.127932
0.33579
1.33638
1.36262
1.45076
1.4527
1.33798
1.39432
1.39317
1.44062
1.51998
1.39672
1.37513
1.51059
1.37137
1.44974
1.59198
1.5789
1.50306
1.47325
1.39313
1.38079
1.49626
1.47437
1.51421
1.41526
1.44307
1.55159
1.41725
1.54099
1.52005
1.06605
1.07424
0.823524
0.811209
1.09778
1.05975
0.824025
1.52343
1.41818
1.57048
1.58309
1.40864
1.52532
1.21864
1.1753
1.3178
1.08772
1.08887
1.30237
1.21448
1.63915
1.72768
1.71334
1.65296
0.439924
0.171571
0.285373
0.40126
0.221069
0.387612
0.444797
1.04106
1.05991
0.803281
0.779953
1.05387
1.03805
0.7907
1.21571
1.19531
1.33629
1.08909
1.08514
1.34606
1.21884
1.80452
1.8311
1.71199
1.69805
1.0314
0.764237
0.993391
0.766834
1.01715
0.781433
1.01687
0.97215
0.87501
0.680073
0.710534
0.910723
0.949084
0.727838
0.987637
0.699805
0.970726
0.755314
0.94129
1.00584
0.740013
0.908609
0.842382
0.696685
0.612285
0.931512
0.806496
0.679919
0.888856
0.592575
0.737196
0.648732
0.773214
0.666585
0.861886
0.805243
0.625521
0.487065
0.582345
0.659395
0.779234
0.602092
0.709776
-0.69162
-3.17207
0.628658
-0.540498
0.820223
0.523449
0.707077
0.635344
0.672761
0.843275
0.618014
0.494619
-0.734181
-2.95822
0.613162
-0.787278
0.0288278
0.0275726
0.0283694
-0.00971825
0.0596161
0.0573709
-0.00474271
0.02527
0.0344927
0.0364948
0.0571528
-0.00384977
-0.00526277
0.0536662
-0.170031
-0.181464
-0.17747
-0.192518
-0.177454
-0.173845
-0.177281
-0.225569
-0.205349
-0.166752
-0.167293
-0.155442
-0.138813
-0.141276
-0.16613
-0.165664
-0.160054
-0.203498
-0.159343
-0.178556
-0.19677
-0.170978
-0.182124
-0.186959
-0.180194
-0.168783
-0.20342
-0.0751374
-0.0826979
-0.0741212
-0.076821
-0.0787232
-0.0796995
-0.0707211
-0.146563
-0.123026
-0.157052
-0.153078
-0.147904
-0.120959
-0.154666
-0.093949
-0.0702305
-0.0663204
-0.0702973
-0.0974669
-0.14412
-0.149921
-0.120371
-0.152748
-0.119948
-0.141191
-0.151176
-0.106093
-0.121434
-0.10585
-0.061349
-0.0681657
-0.0513601
-0.0628824
-0.0741545
-0.0584658
-0.064251
-0.094166
-0.0509311
-0.0820787
-0.0829639
-0.0876256
-0.0869029
-0.0897772
-0.0239695
0.00582158
-0.128929
-0.166676
-0.0253659
-0.0556526
-0.0430254
-0.0655128
-0.0650384
-0.0472211
-0.0446944
-0.0739498
-0.0560573
-0.0704972
-0.0520613
-0.0721085
-0.0543658
-0.0531321
-0.0731371
0.154415
0.0882388
0.119402
0.0842179
0.153641
0.0863737
0.0899453
0.127836
0.0723832
0.0632465
0.0617601
0.0615728
0.0681487
0.117865
0.151344
0.104034
0.115239
0.0653135
0.0736028
0.0948504
0.135583
-0.060053
-0.0408533
-0.0515755
-0.0113791
-0.0240181
-0.0277508
-0.00287501
0.11876
0.0176116
0.121741
0.0882918
0.122955
0.128959
0.115515
-0.0984241
0.0615118
-0.127029
-0.123629
0.0651764
-0.0875359
0.0948328
-0.0637461
-0.0654598
-0.0605901
-0.0168585
-0.0317482
-0.0192126
-0.030676
-0.0236168
0.0312931
-0.0319626
-0.030666
0.0826252
0.103466
0.0252986
0.0894886
-0.0894811
0.0965069
0.230447
0.0406655
0.238204
0.143781
0.0645866
0.000495369
0.0524376
0.179323
0.208469
0.141075
0.170664
-0.00187507
0.0743124
-0.0125447
0.0208338
-0.0102803
0.00719409
0.0269501
-0.128606
-0.488401
-0.124631
-0.0817757
-0.074373
-0.0483042
-0.0596011
-0.759406
-0.731254
-0.796844
-0.735234
-0.793518
-0.739021
-0.733846
-0.230765
-0.226955
-0.230348
-0.230106
-0.228265
-0.243059
-0.223295
-0.211431
-0.229691
-0.197833
-0.201938
-0.218113
-0.193103
-0.220643
-0.671391
-0.729449
-0.723216
-0.678788
-0.72753
-0.6584
-0.655624
-0.731377
-0.683309
-0.732544
-0.682386
-0.732158
-0.664232
-0.666252
-0.289549
-0.282287
-0.284741
-0.323024
-0.375361
-0.376297
-0.385013
-0.330316
-0.382818
-0.278638
-0.293881
-0.293795
-0.288917
-0.325539
-0.326014
-0.381894
-0.317124
-0.311956
-0.321649
-0.353333
-0.321594
-0.304146
-0.32376
-0.32076
-0.354892
-0.32262
-0.343317
-0.315202
-0.299261
-0.314021
-0.314915
-0.315987
-0.341448
-0.269601
-0.296705
-0.293204
-0.280677
-0.265089
-0.295732
-0.282847
-0.316861
-0.251541
-0.281201
-0.355512
-0.253503
-0.314799
-0.357396
-0.280022
-0.242632
-0.195027
-0.228738
-0.283722
-0.237459
-0.225771
-0.27627
-0.221284
-0.192517
-0.227475
-0.232038
-0.223418
-0.273258
-0.319823
-0.283083
-0.25827
-0.363295
-0.322922
-0.25562
-0.360249
-0.290968
-0.236805
-0.265517
-0.323962
-0.239705
-0.287792
-0.327674
-0.25554
-0.21544
-0.18208
-0.214518
-0.257255
-0.214981
-0.212926
-0.287034
-0.251101
-0.251342
-0.285294
-0.436339
-0.372768
-0.422912
-0.39904
-0.252954
-0.206994
-0.176591
-0.212282
-0.214151
-0.209983
-0.250472
-0.294492
-0.267881
-0.243719
-0.334674
-0.296987
-0.242127
-0.331537
-0.45405
-0.445804
-0.457714
-0.444462
-0.360317
-0.32019
-0.266545
-0.288248
-1.24102
-1.23477
-1.24496
-1.24124
-1.22982
-1.15927
-1.09116
-1.10066
-1.15334
-1.09021
-1.15648
-1.15679
-1.28233
-1.35326
-1.29158
-1.33271
-1.2829
-1.29384
-1.34418
0.0819655
0.136166
0.148733
0.0650591
0.151246
0.201689
0.120772
0.124755
0.0662907
0.0672485
0.0707067
0.0504416
0.0729533
0.0556931
0.0515341
-0.0497127
0.10445
0.0792655
0.092198
0.0697086
0.109372
0.0890086
0.0666968
-0.0448012
-0.0412455
-0.0548979
-0.04469
-0.0544299
0.0339427
0.0104314
-0.0821551
-0.0693232
-0.0678201
0.0147766
0.0287718
-0.116391
-0.0706248
-0.0928935
-0.0875176
-0.0795098
-0.115263
-0.0902051
-0.0551602
-0.0794445
-0.133817
-0.179839
-0.175807
-0.0748779
-0.0609788
-1.01455
-0.963227
-0.843553
-0.830479
-0.945359
-0.816409
-0.807817
-0.308463
-0.235247
-0.17199
-0.223313
-0.232752
-0.31179
-0.21986
-0.304995
-0.169261
-0.22808
-0.21313
-0.301677
-0.230374
-0.216545
-0.344064
-0.266374
-0.210311
-0.274193
-0.264469
-0.346235
-0.270482
-0.24634
-0.182288
-0.164497
-0.34117
-0.207808
-0.262409
-0.264931
-0.341667
-0.262653
-0.265666
-0.264755
-0.25675
-0.275643
-0.245771
-0.419466
-0.300724
-0.23869
-0.351185
-0.299354
-0.423433
-0.347085
-0.466102
-0.506114
-0.384414
-0.343539
-0.509498
-0.462718
-0.344789
-0.424546
-0.388386
-0.41998
-0.392933
-0.470223
-0.348196
-0.386332
-0.516778
-0.513417
-0.346904
-0.474008
-0.415379
-0.236632
-0.296936
-0.340235
-0.411851
-0.297359
-0.343569
-0.445575
-0.417631
-0.449446
-0.413768
-0.443859
-0.327794
-0.264841
-0.369151
-0.327685
-0.440572
-0.371897
-0.502068
-0.556685
-0.411344
-0.370264
-0.559176
-0.500776
-0.371747
-0.477053
-0.48376
-0.476944
-0.497582
-0.501681
-0.372457
-0.412272
-0.561262
-0.560772
-0.372741
-0.498299
-0.444164
-0.263663
-0.324355
-0.370407
-0.442714
-0.326225
-0.372072
-0.485548
-0.573321
-0.497495
-0.5632
-0.684898
-0.681299
-0.590961
-0.590782
-0.179123
0.190847
0.0921706
0.0883927
0.329156
0.181574
-0.120695
0.0819574
-0.0569129
0.421485
0.157743
0.169893
0.0252665
0.0754589
-0.67938
-0.68555
-0.569886
-0.562574
-0.0737243
-0.258805
-0.0723171
-0.00610337
-0.0184922
-0.121455
1.73918
1.50679
1.63
1.50757
1.68613
1.70265
1.53445
-3.28647
-2.70281
-2.70953
-2.7925
-2.81456
-2.9494
-3.32978
-0.372284
-0.351804
-0.0391096
-0.370862
-0.0152477
-0.105869
-0.118685
0.700924
0.578699
0.754086
0.516158
0.387602
0.452759
0.423102
1.95211
1.4102
1.93861
1.06886
1.52757
1.74191
-0.258973
-0.35907
0.604395
0.846943
0.488861
0.627172
0.800445
0.563637
0.448163
-2.15101
0.626794
-1.71912
-0.0305169
-0.273111
-0.207441
0.00676528
-3.00745
-0.909322
-0.933236
0.137279
-0.215599
-0.234605
-0.186053
-0.301816
-0.307878
-0.0774581
0.0907674
0.110625
-0.0840337
0.086126
0.315781
0.0839946
0.093328
0.232445
0.0973663
0.221318
0.306556
0.0855155
0.0842585
0.0916984
0.204852
0.213229
0.0912803
0.0874298
0.268879
0.0887745
0.0909931
0.198026
0.0912226
0.190103
-0.0167471
-0.00133458
-0.012509
0.0111433
0.010542
0.00673424
0.0138883
-0.165387
-0.185974
-0.187333
-0.164377
-0.184863
-0.163301
-0.166103
-0.122559
-0.118281
-0.119768
-0.121771
-0.122425
-0.117576
-0.122902
-0.157906
-0.126912
-0.156547
-0.130354
-0.163433
-0.128008
-0.12133
-0.113845
-0.11695
-0.104486
-0.100443
-0.1133
-0.120384
-0.104064
-0.168529
-0.159151
-0.155899
-0.107714
-0.104104
-0.116254
-0.114653
-0.111045
-0.120386
-0.120943
-0.11654
-0.00561235
0.00846327
0.000635443
0.0191241
0.0150818
0.017976
0.0175294
0.00475019
0.0133708
0.00563893
0.012091
0.0240914
0.0148406
0.0139844
0.00279614
-0.00325799
0.006291
0.0158717
0.0139356
0.0117891
0.0175336
-0.144364
-0.157348
-0.158177
-0.160022
-0.141643
-0.1376
-0.138638
-0.10649
-0.115804
-0.0987821
-0.0891026
-0.112068
-0.114598
-0.0928953
-0.101431
-0.0977351
-0.106592
-0.101493
-0.10177
-0.099299
-0.0877193
-0.0895158
-0.0948898
-0.0866999
-0.0986714
-0.0953097
-0.121927
-0.134724
-0.12416
-0.142047
-0.120814
-0.136722
-0.124986
0.00864487
0.00612771
0.0141682
0.0141477
0.0178723
0.0195231
0.0126685
-0.118432
-0.131311
-0.123325
-0.13431
-0.11899
-0.130469
-0.122743
-0.101015
-0.0856435
-0.0843172
-0.106914
-0.102518
-0.0817747
-0.106719
-0.520159
-0.541308
-0.520777
-0.548038
-0.521238
-0.54959
-0.519412
-0.442773
-0.440049
-0.41556
-0.414137
-0.440792
-0.441033
-0.412583
-0.504949
-0.519362
-0.5072
-0.529382
-0.505891
-0.528185
-0.506276
-0.208689
-0.210261
-0.207379
-0.215851
-0.210913
-0.210837
-0.210352
-0.184756
-0.183311
-0.186014
-0.202881
-0.221118
-0.211669
-0.212002
-0.20553
-0.209259
-0.210425
-0.521813
-0.521973
-0.233733
-0.215885
-0.231912
-0.251157
-0.244229
-0.199785
-0.222611
-0.235898
-0.509802
-0.508613
-0.230194
-0.225513
-0.215163
-0.220134
-0.224352
-0.230104
-0.216338
-0.244845
-0.235544
-0.237941
-0.247295
-0.237419
-0.242986
-0.247177
-0.248434
-0.262706
-0.292816
-0.278283
-0.272552
-0.261431
-0.248341
-0.227928
-0.220918
-0.218452
-0.223996
-0.224017
-0.221355
-0.227375
-0.231038
-0.226422
-0.255731
-0.253796
-0.220312
-0.279344
-0.258085
-0.282191
-0.282774
-0.273303
-0.188325
-0.190051
-0.200597
-0.208369
-0.188981
-0.19107
-0.201529
-0.191673
-0.205533
-0.204631
-0.206035
-0.193964
-0.198568
-0.201718
-0.202472
-0.207763
-0.209873
-0.233117
-0.183155
-0.223001
-0.231967
-0.231523
-0.220827
-0.225019
-0.231803
-0.220458
-0.226469
-0.238741
-0.441569
-0.44191
-0.416423
-0.428879
-0.441787
-0.442396
-0.41724
-0.518737
-0.528242
-0.531635
-0.530795
-0.532379
-0.532451
-0.517645
-0.441693
-0.415902
-0.428086
-0.442045
-0.442745
-0.416606
-0.440821
-0.4328
-0.430662
-0.424882
-0.40617
-0.433095
-0.430449
-0.407802
-0.491384
-0.492547
-0.506905
-0.49451
-0.50609
-0.493754
-0.492304
-0.433683
-0.407524
-0.424198
-0.43346
-0.434226
-0.408037
-0.433462
-0.168504
-0.184014
-0.175924
-0.175199
-0.174657
-0.172548
-0.172707
-0.159754
-0.147103
-0.155281
-0.166227
-0.150531
-0.158753
-0.165651
-0.167104
-0.174778
-0.172572
-0.171896
-0.167422
-0.170978
-0.171369
-0.212852
-0.227302
-0.245543
-0.226848
-0.234256
-0.233845
-0.206283
-0.20602
-0.19557
-0.20327
-0.192167
-0.192924
-0.204356
-0.190933
-0.257932
-0.286542
-0.286979
-0.288669
-0.260185
-0.239179
-0.236099
-0.292537
-0.261054
-0.287918
-0.290291
-0.261549
-0.241458
-0.245408
-0.428316
-0.428652
-0.405909
-0.422419
-0.429593
-0.427028
-0.404737
-0.483873
-0.483212
-0.481548
-0.484314
-0.483606
-0.485823
-0.482608
-0.428003
-0.403627
-0.420576
-0.430576
-0.426565
-0.403654
-0.43209
-0.473652
-0.473436
-0.47161
-0.48043
-0.47037
-0.479374
-0.474904
-0.429426
-0.390962
-0.406778
-0.43591
-0.434601
-0.389817
-0.430872
-0.153985
-0.142831
-0.146101
-0.161765
-0.143503
-0.155454
-0.157684
-0.188958
-0.215684
-0.203351
-0.216509
-0.189179
-0.203984
-0.215964
-0.188464
-0.22108
-0.200261
-0.219122
-0.186945
-0.201909
-0.219346
-0.415714
-0.422779
-0.431578
-0.419519
-0.416906
-0.420952
-0.432471
-0.41033
-0.426558
-0.413771
-0.414839
-0.415752
-0.426757
-0.408907
-0.41236
-0.41216
-0.395789
-0.400506
-0.412284
-0.412444
-0.398096
-0.414181
-0.39981
-0.395848
-0.415357
-0.414426
-0.398899
-0.415196
-0.256598
-0.285662
-0.278301
-0.25329
-0.283674
-0.231303
-0.234225
-0.278991
-0.248592
-0.275985
-0.250497
-0.225231
-0.28123
-0.228039
-0.45843
-0.458915
-0.452572
-0.4656
-0.453182
-0.4661
-0.458034
-0.452734
-0.445869
-0.451279
-0.450937
-0.449718
-0.449696
-0.454286
-0.195129
-0.195906
-0.203598
-0.205756
-0.195828
-0.194348
-0.204296
-0.187578
-0.181664
-0.184622
-0.185292
-0.186352
-0.185993
-0.184527
-0.41853
-0.412034
-0.403947
-0.407072
-0.410779
-0.414835
-0.429235
-0.40212
-0.395013
-0.395377
-0.400092
-0.401867
-0.39649
-0.400432
-0.362663
-0.363834
-0.374148
-0.37385
-0.364761
-0.3621
-0.373747
-0.363258
-0.374588
-0.375931
-0.367066
-0.36681
-0.375377
-0.363035
-0.436837
-0.428276
-0.431655
-0.437729
-0.431293
-0.435117
-0.437498
-0.414119
-0.402783
-0.408804
-0.413746
-0.407087
-0.412058
-0.415923
-0.146092
-0.151109
-0.0970733
-0.0891723
-0.0920545
-0.0922197
-0.0911365
-0.0872177
-0.0954342
-0.154115
-0.126608
-0.157279
-0.158288
-0.150176
-0.129564
-0.158103
-0.113137
-0.115399
-0.101383
-0.102335
-0.0996643
-0.114246
-0.114124
-0.138406
-0.155694
-0.162405
-0.134088
-0.160385
-0.131569
-0.158112
-0.160132
-0.354987
-0.360582
-0.373005
-0.371455
-0.358053
-0.357816
-0.37281
-0.34339
-0.360182
-0.36287
-0.344917
-0.346687
-0.361079
-0.341901
-0.368466
-0.324056
-0.318185
-0.367812
-0.318538
-0.322601
-0.328776
-0.370747
-0.37002
-0.321797
-0.401616
-0.381894
-0.394089
-0.391113
-0.3949
-0.391841
-0.400743
-0.396407
-0.378349
-0.392426
-0.388799
-0.392787
-0.38672
-0.397215
-0.105048
-0.0666991
-0.10224
-0.105216
-0.10187
-0.0955581
-0.107962
-0.0612326
-0.0676998
-0.0291113
-0.0472431
-0.0696377
-0.0582718
-0.106495
-0.113822
-0.112397
-0.10707
-0.364337
-0.317537
-0.320546
-0.362383
-0.3184
-0.342486
-0.360728
-0.361961
-0.33747
-0.311325
-0.335977
-0.264658
-0.284892
-0.269042
-0.318634
-0.343202
-0.342162
-0.377394
-0.344523
-0.369086
-0.360272
-0.370772
-0.361835
-0.375899
-0.284573
-0.305405
-0.315604
-0.261366
-0.306635
-0.283117
-0.263939
-0.352091
-0.334691
-0.348717
-0.345609
-0.347495
-0.344681
-0.353261
-0.292003
-0.269608
-0.31805
-0.312677
-0.312026
-0.268794
-0.292941
-0.0571637
-0.0595081
-0.0708513
-0.0685565
-0.0568857
-0.0576485
-0.0706094
0.0542255
0.0593693
0.0892087
0.0894671
0.0969164
0.0465657
0.0711351
-0.0526277
-0.0691451
-0.0516378
-0.07124
-0.0532473
-0.0512494
-0.0705873
-0.213297
-0.246811
-0.215088
-0.337253
-0.327709
-0.336857
-0.289201
-0.264339
-0.265066
-0.273553
-0.296903
-0.272329
-0.261594
-0.274843
-0.323534
-0.331882
-0.332871
-0.21705
-0.297388
-0.295725
-0.256689
-0.247472
-0.264405
-0.311846
-0.307955
-0.311416
-0.285539
-0.30158
-0.278524
-0.290686
-0.285575
-0.301821
-0.278542
-0.306262
-0.308911
-0.309311
-0.209433
-0.246877
-0.238613
-0.233397
-0.212234
-0.238954
-0.232344
-0.285579
-0.278694
-0.302975
-0.291691
-0.30289
-0.285583
-0.278651
-0.278028
-0.303313
-0.259293
-0.311236
-0.279957
-0.301529
-0.257087
-0.330506
-0.314355
-0.32297
-0.323564
-0.324654
-0.324998
-0.328751
-0.266171
-0.245455
-0.302248
-0.284089
-0.287066
-0.247409
-0.263617
-0.211321
-0.220102
-0.236159
-0.193154
-0.222201
-0.209363
-0.195067
-0.305427
-0.300227
-0.300773
-0.308198
-0.299409
-0.307105
-0.306971
-0.222134
-0.208092
-0.249318
-0.237493
-0.234658
-0.205797
-0.224747
0.0997393
0.0609675
0.0704978
0.032281
0.0424663
0.0690637
0.0696032
0.0368393
0.0993425
0.117976
0.0877529
0.159206
0.0870751
0.0754162
0.021517
0.0942476
0.0885583
0.125429
0.0859474
-0.074532
0.0840799
-0.237193
-0.244823
-0.247269
-0.247712
-0.246455
-0.243083
-0.241276
-0.311244
-0.30719
-0.309914
-0.285612
-0.301258
-0.289739
-0.278349
-0.300986
-0.285538
-0.278256
-0.285194
-0.277581
-0.287199
-0.298188
-0.298403
-0.277278
-0.285434
-0.218849
-0.246699
-0.239312
-0.234507
-0.215492
-0.240521
-0.236109
-0.302769
-0.28213
-0.286793
-0.2676
-0.262862
-0.251571
-0.255651
-0.263713
-0.26643
-0.256697
-0.202834
-0.196415
-0.205361
-0.285031
-0.293921
-0.292628
-0.299795
-0.284677
-0.294452
-0.292282
-0.215792
-0.223503
-0.21998
-0.271167
-0.256063
-0.267161
-0.262147
-0.272467
-0.26579
-0.261462
-0.291348
-0.288341
-0.298793
-0.296769
-0.299433
-0.29068
-0.289085
-0.205255
-0.217777
-0.191011
-0.229208
-0.207216
-0.215635
-0.188713
-0.28869
-0.290989
-0.281313
-0.294481
-0.282596
-0.294958
-0.287621
-0.196482
-0.178835
-0.218494
-0.185746
-0.203872
-0.18044
-0.191579
-0.144552
-0.114777
-0.144001
-0.14257
-0.116231
-0.143409
-0.143601
-0.268807
-0.281009
-0.26193
-0.283927
-0.261204
-0.283808
-0.269559
-0.153584
-0.153588
-0.151886
-0.130798
-0.128134
-0.151694
-0.155692
-0.200019
-0.185807
-0.197481
-0.171503
-0.184772
-0.185565
-0.0868736
-0.128908
-0.0888785
-0.133131
-0.108123
-0.104549
0.00558739
-0.00988544
-0.0194751
-0.00456613
0.0147539
-0.000205831
0.00637816
-0.07798
-0.0882517
-0.0703053
-0.0654792
-0.0697839
-0.0568141
-0.0765553
-0.14091
-0.113689
-0.141058
-0.141162
-0.141962
-0.113187
-0.139962
-0.254751
-0.281389
-0.258492
-0.268406
-0.258312
-0.269383
-0.253863
-0.13654
-0.135238
-0.137877
-0.110089
-0.110342
-0.135742
-0.136017
-0.108067
-0.10701
-0.0709912
-0.0835642
-0.108334
-0.106524
-0.085234
-0.222084
-0.275212
-0.24752
-0.237257
-0.246771
-0.235036
-0.224225
-0.119487
-0.100703
-0.0834489
-0.119124
-0.117291
-0.0979793
-0.121986
-0.0206953
-0.0570435
-0.0629184
-0.00176671
-0.0597508
-0.00595245
-0.0223943
0.109945
0.184071
0.186123
0.143462
0.0173279
0.167886
0.119767
0.00820107
-0.0919467
-0.0854981
-0.0472259
0.0512268
-0.0744141
0.0142362
-0.0601286
-0.10519
-0.0691202
0.0229273
-0.0674182
0.0238772
-0.0782879
-0.0639752
-0.0648619
-0.0628743
-0.0112514
-0.0292326
-0.0147344
-0.0265561
-0.0852421
-0.126736
-0.0850379
-0.123215
-0.0844134
-0.0843132
-0.0578578
-0.0676693
-0.000723234
0.0405816
0.00735815
0.0268582
0.0299436
0.0420886
0.0169835
0.0103103
0.0446487
0.015808
0.0421932
0.0557155
0.0650216
0.0369101
-0.0496528
-0.0193183
-0.0193816
0.021285
-0.0339288
-0.0387824
0.0233041
0.00276075
-0.00474218
-0.0057277
0.0203807
0.0339104
0.0288238
0.00628662
-0.102287
-0.105241
-0.0809008
-0.0653311
-0.104226
-0.104083
-0.0785817
-0.196814
-0.243912
-0.233169
-0.204083
-0.233257
-0.205327
-0.196035
-0.09907
-0.0766229
-0.0626163
-0.0965122
-0.100284
-0.0755869
-0.100094
-0.125744
-0.138322
-0.119305
-0.104235
-0.138931
-0.125492
-0.104051
-0.190819
-0.195111
-0.240188
-0.188381
-0.236936
-0.187003
-0.192066
-0.125848
-0.102734
-0.119112
-0.137623
-0.138421
-0.103401
-0.125355
-0.0276699
-0.0437735
-0.0186661
0.0141254
-0.0171065
0.0100112
-0.0132529
0.111083
-0.0044624
0.117524
0.0610871
0.1114
0.11551
0.0419781
-0.107099
0.0872955
0.0831577
0.240557
0.0371168
0.240251
0.0241591
-0.0104809
-0.0552917
0.0316327
0.193718
0.0666789
0.0532156
0.052016
-0.0403059
-0.0127766
-0.0143231
0.0171826
-0.00877429
0.01818
-0.0105406
-0.0521238
-0.0540208
-0.0185525
-0.0470106
-0.0158084
0.0240596
-0.0350067
-0.0440715
0.021651
0.0283326
0.0110514
0.0212805
0.0642834
0.0231213
0.0274554
0.0669182
0.0336963
0.0378839
0.0406133
0.0718473
0.0218524
0.0690708
0.0261555
-0.12408
-0.136882
-0.103367
-0.115682
-0.124388
-0.135538
-0.103977
-0.165811
-0.159354
-0.177993
-0.157945
-0.184415
-0.161957
-0.161911
-0.122304
-0.103588
-0.121675
-0.131352
-0.132289
-0.105293
-0.120717
-0.0649622
-0.104432
-0.0459978
-0.0772008
-0.0629075
-0.103768
-0.0475712
-0.101317
-0.087786
-0.0965458
-0.105911
-0.093671
-0.103446
-0.104376
-0.0763523
-0.0568955
-0.0775467
-0.10637
-0.105896
-0.0541642
-0.0791827
0.229149
0.0585193
0.0310897
0.200269
0.198069
0.188954
0.185056
0.0792877
0.0285269
0.0825091
0.17745
0.199804
0.18494
0.1979
-0.211994
-0.147954
-0.17112
-0.17771
-0.17264
-0.211312
-0.17785
-0.21187
-0.147589
-0.17297
-0.175946
-0.211489
-0.173112
-0.177049
-0.644345
-0.655936
-0.655866
-0.676484
-0.640458
-0.666178
-0.581073
-0.581903
-0.641952
-0.640103
-0.634473
-0.634827
-0.641862
-0.732925
-0.679183
-0.728696
-0.677546
-0.731552
-0.664869
-0.663677
-0.617489
-0.61021
-0.634823
-0.628272
-0.612554
-0.614182
-0.632169
-0.568106
-0.567414
-0.585098
-0.564395
-0.56011
-0.583647
-0.566845
-0.583588
-0.584705
-0.582165
-0.580856
-0.572026
-0.560991
-0.570378
-0.576295
-0.583043
-0.940246
-0.907013
-0.930712
-0.904255
-0.899188
-0.936049
-0.93734
-0.984544
-1.01544
-0.971441
-1.01083
-1.01608
-0.974183
-0.976865
-1.00207
-0.982653
-1.01489
-1.0057
-1.00109
-0.98555
-0.196856
-0.20147
-0.176571
-0.181167
-0.20071
-0.199704
-0.180686
-0.22357
-0.214017
-0.275244
-0.239166
-0.251772
-0.232761
-0.213251
-0.192759
-0.184991
-0.197121
-0.189382
-0.196136
-0.191343
-0.183414
-0.210728
-0.199534
-0.190609
-0.177866
-0.195194
-0.184526
-0.173471
-0.575907
-0.562414
-0.554161
-0.577594
-0.55968
-0.57852
-0.57447
-0.546939
-0.562814
-0.563883
-0.546114
-0.572746
-0.570052
-0.551726
-0.555423
-0.556972
-0.572198
-0.57072
-0.524245
-0.523343
-0.522741
-0.524659
-0.551714
-0.542654
-0.530039
-0.553925
-0.541943
-0.5511
-0.554329
-0.557339
-0.560871
-0.539747
-0.531549
-0.54054
-0.558504
-0.559287
-0.208951
-0.229875
-0.234089
-0.206665
-0.226475
-0.206148
-0.212142
-0.206251
-0.207137
-0.232148
-0.223864
-0.223922
-0.207715
-0.206301
-0.551399
-0.543626
-0.5291
-0.554369
-0.543643
-0.551267
-0.553922
-0.525142
-0.517415
-0.518693
-0.524354
-0.551363
-0.555976
-0.527572
-0.54091
-0.542129
-0.553489
-0.553374
-0.538164
-0.525703
-0.524751
-0.538235
-0.534993
-0.532035
-0.514407
-0.540384
-0.533742
-0.534061
-0.541353
-0.53707
-0.543648
-0.537673
-0.516837
-0.53593
-0.538936
-0.543259
-0.118672
-0.0309134
-0.119206
-0.0928383
-0.531881
-0.531771
-0.509374
-0.539262
-0.530208
-0.533014
-0.537738
-0.530194
-0.513452
-0.513915
-0.529102
-0.532625
-0.536627
-0.508203
-0.529185
-0.529399
-0.537025
-0.535435
-0.508907
-0.49329
-0.492104
-0.509913
-0.517155
-0.508183
-0.482139
-0.515538
-0.511453
-0.516517
-0.515456
-0.51804
-0.519116
-0.514291
-0.483616
-0.512314
-0.519644
-0.516918
-0.0317268
-0.116583
-0.118271
-0.0777651
-0.0639764
-0.0754229
-0.264589
-0.145215
-0.0810321
-0.144738
-0.0948969
-0.15378
-0.0731304
-0.147507
-0.265109
-0.1937
-0.196455
-0.182629
-0.201883
-0.0657913
-0.0804011
-0.0711289
-0.177531
-0.20748
-0.137583
-0.164447
-0.138668
-0.138373
-0.107543
-0.139203
-0.107823
-0.164729
-0.139491
-0.13937
-0.138493
-0.138548
-0.108171
-0.109682
-0.515379
-0.507041
-0.474022
-0.51349
-0.50485
-0.515761
-0.512909
-0.504532
-0.488122
-0.483007
-0.516603
-0.51327
-0.508006
-0.473211
-0.504861
-0.503879
-0.511202
-0.510455
-0.488298
-0.464693
-0.463163
-0.489676
-0.484154
-0.476673
-0.440315
-0.477568
-0.481441
-0.482434
-0.478991
-0.485667
-0.483447
-0.484541
-0.442314
-0.482535
-0.487308
-0.480999
-0.916688
-0.872515
-0.948123
-0.898192
-0.827486
-0.86094
-0.812136
-0.842285
-0.934636
-0.872672
-0.8903
-0.851949
-0.809549
-0.798763
-0.862959
-0.861624
-0.857812
-0.832747
-0.867953
-0.866441
-0.197622
-0.18212
-0.193018
-0.165447
-0.0877689
-0.109255
-0.145761
-0.101537
-0.161229
-0.145923
-0.144638
-0.140961
-0.136174
-0.155377
-0.157379
-0.140334
-0.142704
-0.257453
-0.193904
-0.192701
-0.242039
-0.324423
-0.284024
-0.33147
-0.306468
-0.247539
-0.154105
-0.13761
-0.170184
-0.146687
-0.154244
-0.1342
-0.169949
-0.238137
-0.282318
-0.275364
-0.234343
-0.255285
-0.27384
-0.224229
-0.226395
-0.190576
-0.122924
-0.141553
-0.124601
-0.228216
-0.189973
-0.500299
-0.508446
-0.495672
-0.522652
-0.498551
-0.497659
-0.511521
-0.479331
-0.475953
-0.431859
-0.474798
-0.47468
-0.480456
-0.473009
-0.473823
-0.443915
-0.444923
-0.473286
-0.4778
-0.468234
-0.429422
-0.47166
-0.473267
-0.470873
-0.476293
-0.502909
-0.524922
-0.502851
-0.517701
-0.504738
-0.500796
-0.514556
-0.474654
-0.475205
-0.499805
-0.501224
-0.475656
-0.473169
-0.499579
-0.456097
-0.426283
-0.424623
-0.457985
-0.456922
-0.446876
-0.401449
-0.442019
-0.45101
-0.455267
-0.443701
-0.458833
-0.448317
-0.454778
-0.40318
-0.452713
-0.460457
-0.445744
-0.473442
-0.500539
-0.471381
-0.500831
-0.473281
-0.471916
-0.499134
-0.783015
-0.773078
-0.841121
-0.771116
-0.843073
-0.832984
-0.865848
-0.870781
-0.833161
-0.813841
-0.798609
-0.83129
-0.804751
-0.837476
-0.829535
-0.924074
-0.979492
-0.942147
-0.810747
-0.771838
-0.744771
-0.80285
-0.800347
-0.77754
-0.807885
-0.954139
-0.958941
-0.950017
-0.291812
-0.295566
-0.30328
-0.375501
-0.320526
-0.375268
-0.28378
-0.297244
-0.297616
-0.297467
-0.266391
-0.262724
-0.30423
-0.307266
-0.261367
-0.309196
-0.157331
-0.140321
-0.151675
-0.169177
-0.14334
-0.154186
-0.169805
-0.261095
-0.245875
-0.278176
-0.236681
-0.259983
-0.266248
-0.237631
-0.28462
-0.354279
-0.314124
-0.300921
-0.354019
-0.307929
-0.291321
-0.27909
-0.296521
-0.27496
-0.287936
-0.280372
-0.283957
-0.288104
-0.469271
-0.503796
-0.462237
-0.498395
-0.465159
-0.467747
-0.50502
-0.449782
-0.444605
-0.391265
-0.438448
-0.441702
-0.45225
-0.435674
-0.432808
-0.402412
-0.404385
-0.430109
-0.44737
-0.429649
-0.388992
-0.435458
-0.439341
-0.43322
-0.444701
-0.470556
-0.499594
-0.468618
-0.502705
-0.471562
-0.466882
-0.505261
-0.458073
-0.409714
-0.481661
-0.45527
-0.463401
-0.404163
-0.477047
-0.374372
-0.313766
-0.329581
-0.328654
-0.375541
-0.456012
-0.45152
-0.398013
-0.469625
-0.449411
-0.40245
-0.473037
-0.753846
-0.727662
-0.77314
-0.755578
-0.775145
-0.758802
-0.751933
-0.930451
-0.980297
-0.930599
-0.796757
-0.748243
-0.740702
-0.795002
-0.79876
-0.73717
-0.791219
-0.864091
-0.880936
-0.95934
-0.878872
-0.862095
-0.837114
-0.89566
-0.823692
-0.895416
-0.828484
-0.904807
-0.829325
-0.87941
-0.875819
-0.927087
-0.922977
-0.92908
-0.882732
-0.870764
-0.280323
-0.27753
-0.295246
-0.254529
-0.282959
-0.294683
-0.252686
-0.357856
-0.322405
-0.324843
-0.306292
-0.356361
-0.323154
-0.325743
-0.266724
-0.287124
-0.292278
-0.277896
-0.264757
-0.292092
-0.272653
-0.364424
-0.331564
-0.327102
-0.30969
-0.326581
-0.365315
-0.330602
-0.293928
-0.294942
-0.293536
-0.284936
-0.281592
-0.292425
-0.297451
-0.28128
-0.289712
-0.267995
-0.28606
-0.279829
-0.263871
-0.288056
-0.434642
-0.451611
-0.378509
-0.435668
-0.384569
-0.429869
-0.456192
-0.359753
-0.297769
-0.310791
-0.311663
-0.359332
-0.438305
-0.439786
-0.393817
-0.464548
-0.444234
-0.388645
-0.46027
-0.384938
-0.338916
-0.399115
-0.380702
-0.389091
-0.333777
-0.394189
-0.374482
-0.309273
-0.311923
-0.311943
-0.373753
-0.345088
-0.348918
-0.361793
-0.364718
-0.380376
-0.376348
-0.325762
-0.384576
-0.378658
-0.329177
-0.388826
-0.760913
-0.881467
-0.815331
-0.867906
-0.814206
-0.85975
-0.801015
-0.783065
-0.79655
-0.843762
-0.842944
-0.844372
-0.793215
-0.788347
-0.877288
-0.782181
-0.887374
-0.836781
-0.886354
-0.884796
-0.780922
-0.324983
-0.32513
-0.328485
-0.321037
-0.324969
-0.327857
-0.3211
-0.322724
-0.315174
-0.308887
-0.307038
-0.309545
-0.322004
-0.315869
-0.369467
-0.364293
-0.308199
-0.358648
-0.314978
-0.362238
-0.370154
-0.375749
-0.316851
-0.31119
-0.311235
-0.373499
-0.351285
-0.356773
-0.357657
-0.354684
-0.327089
-0.330373
-0.322496
-0.333951
-0.372711
-0.362235
-0.321079
-0.379031
-0.375186
-0.317302
-0.374949
-0.325115
-0.2776
-0.327918
-0.311358
-0.329621
-0.272744
-0.323393
-0.326432
-0.328017
-0.305449
-0.30556
-0.329448
-0.250307
-0.222565
-0.25136
-0.223844
-0.24942
-0.264367
-0.250426
-0.256901
-0.323544
-0.307779
-0.266763
-0.315418
-0.322013
-0.270956
-0.319319
-0.315107
-0.308684
-0.255567
-0.296496
-0.258951
-0.312637
-0.310839
-0.308143
-0.294063
-0.281934
-0.283776
-0.306675
-0.254174
-0.223401
-0.252464
-0.225109
-0.2643
-0.236006
-0.265338
-0.23539
-0.317745
-0.298068
-0.263689
-0.312368
-0.320474
-0.260292
-0.311203
-0.277745
-0.22689
-0.281548
-0.257806
-0.280253
-0.222141
-0.279896
-0.269765
-0.221382
-0.237286
-0.234255
-0.27226
-0.253677
-0.247488
-0.252538
-0.247647
-0.257502
-0.247882
-0.25836
-0.247882
-0.273735
-0.253798
-0.21491
-0.274173
-0.270357
-0.21903
-0.275966
-0.264406
-0.265549
-0.199957
-0.239194
-0.204124
-0.261049
-0.267008
-0.243807
-0.178453
-0.199454
-0.200816
-0.242528
-0.250626
-0.246591
-0.250985
-0.246214
-0.247937
-0.243884
-0.247254
-0.244242
-0.268178
-0.241768
-0.209813
-0.269182
-0.263473
-0.207224
-0.270105
-0.242149
-0.189324
-0.253586
-0.220001
-0.242674
-0.188202
-0.252792
-0.230626
-0.15672
-0.183064
-0.181963
-0.231359
-0.247061
-0.247353
-0.246331
-0.247605
-0.247948
-0.247036
-0.247893
-0.24728
-0.241041
-0.219313
-0.187201
-0.249606
-0.236786
-0.188513
-0.251454
-0.225975
-0.239238
-0.18573
-0.215147
-0.187594
-0.221707
-0.241496
-0.211554
-0.12916
-0.154786
-0.158042
-0.209536
-0.244823
-0.246768
-0.245479
-0.246435
-0.241
-0.24339
-0.24041
-0.243813
-0.228773
-0.215543
-0.187977
-0.246561
-0.233228
-0.186402
-0.244069
-0.0851906
-0.0712593
-0.0981224
-0.0386777
-0.0958022
-0.031741
-0.0889854
-0.180659
-0.184103
-0.177175
-0.187205
-0.197941
-0.204037
-0.20044
-0.201936
-0.588033
-0.580996
-0.44274
-0.427208
-0.591493
-0.577197
-0.440995
-0.0651617
-0.049543
-0.0682681
-0.0243131
-0.069558
-0.0241524
-0.0638244
-0.168864
-0.18017
-0.172906
-0.176655
-0.149015
-0.157056
-0.144634
-0.159728
-0.0767004
-0.0657962
-0.079257
-0.0603752
-0.0797024
-0.0608027
-0.076294
-0.167271
-0.167096
-0.16819
-0.165841
-0.163479
-0.159525
-0.162366
-0.160933
-0.334172
-0.269942
-0.293427
-0.378463
-0.338442
-0.266691
-0.374408
-0.291731
-0.248048
-0.205649
-0.231578
-0.287718
-0.253153
-0.234847
-0.296096
-0.241675
-0.263775
-0.209468
-0.258431
-0.300666
-0.238077
-0.330128
-0.290665
-0.260796
-0.366788
-0.326436
-0.263717
-0.370485
-0.598257
-0.584724
-0.432459
-0.443988
-0.588582
-0.594814
-0.445439
-0.601718
-0.447424
-0.433772
-0.595685
-0.592221
-0.446729
-0.605315
-0.637538
-0.62057
-0.461937
-0.44391
-0.638885
-0.619687
-0.460297
-0.638944
-0.463364
-0.640146
-0.463925
-0.640581
-0.638975
-0.462403
-0.635612
-0.45786
-0.617028
-0.44344
-0.618503
-0.633248
-0.459409
-0.0725701
-0.0600881
-0.0705208
-0.0534464
-0.0749097
-0.0561123
-0.0681063
-0.167373
-0.166852
-0.167678
-0.167037
-0.164609
-0.165747
-0.164169
-0.166186
-0.00564026
0.0284858
-0.00145406
0.0234
0.0013212
0.0292852
-0.00911588
-0.0931189
-0.0952063
-0.0932536
-0.101188
-0.126168
-0.135884
-0.131739
-0.131208
-0.346443
-0.215096
-0.219036
-0.321717
-0.320377
-0.22346
-0.348774
-0.350606
-0.227528
-0.326545
-0.244215
-0.351236
-0.32494
-0.232885
-0.307052
-0.166006
-0.288408
-0.162822
-0.282851
-0.312406
-0.161875
-0.324844
-0.32896
-0.151151
-0.152972
-0.31837
-0.336681
-0.156295
-0.328081
-0.164709
-0.3461
-0.155418
-0.340444
-0.33336
-0.160548
-0.303626
-0.158741
-0.272944
-0.154199
-0.297751
-0.27888
-0.157722
-0.302112
-0.246915
-0.273949
-0.346352
-0.302754
-0.24662
-0.343981
-0.319158
-0.260676
-0.258752
-0.326346
-0.261519
-0.217424
-0.186275
-0.215846
-0.260183
-0.218087
-0.216978
-0.376585
-0.390251
-0.262566
-0.217877
-0.219715
-0.187331
-0.219387
-0.262485
-0.217605
-0.301205
-0.273156
-0.245025
-0.338221
-0.299858
-0.246156
-0.341205
-0.645821
-0.467944
-0.467333
-0.646786
-0.644787
-0.467605
-0.647761
-0.641285
-0.621492
-0.44728
-0.4634
-0.621783
-0.640295
-0.464351
-0.642729
-0.465475
-0.448185
-0.621059
-0.622185
-0.465569
-0.643865
-0.643907
-0.466312
-0.641663
-0.465315
-0.642397
-0.643012
-0.466315
-0.645307
-0.474321
-0.648914
-0.473404
-0.645885
-0.648657
-0.473615
-0.633574
-0.598108
-0.442554
-0.462551
-0.628569
-0.602273
-0.466501
-0.636537
-0.468952
-0.61028
-0.443947
-0.605401
-0.640506
-0.467298
-0.642448
-0.473672
-0.638434
-0.471129
-0.637657
-0.642961
-0.473553
0.0289745
0.0573831
0.0416183
0.0542657
0.03681
0.044458
0.0378383
-0.0966022
-0.0934012
-0.0951313
-0.096056
-0.0913959
-0.0952495
-0.0901083
-0.0964759
0.0371497
0.0631224
0.0501983
0.0649119
0.0473792
0.0597098
0.0403202
-0.0751446
-0.0855041
-0.0815104
-0.0791596
-0.0428358
-0.0674303
-0.0518629
-0.0611085
-0.28572
-0.138021
-0.143749
-0.249137
-0.256113
-0.143526
-0.280141
-0.312472
-0.325611
-0.139488
-0.151234
-0.315833
-0.321874
-0.144537
-0.308023
-0.13544
-0.136168
-0.312421
-0.317245
-0.141731
-0.302841
-0.290726
-0.146243
-0.268407
-0.15214
-0.294741
-0.262688
-0.146007
-0.209885
-0.106866
-0.110487
-0.199465
-0.191275
-0.220436
-0.106603
-0.390068
-0.31442
-0.389877
-0.3086
-0.205137
-0.19392
-0.0943581
-0.0905545
-0.190504
-0.209667
-0.0985695
-0.196061
-0.10311
-0.168962
-0.0979638
-0.1828
-0.179926
-0.102573
-0.219906
-0.106453
-0.235351
-0.094721
-0.224851
-0.230822
-0.102648
-0.284391
-0.290233
-0.22518
-0.191341
-0.205201
-0.260097
-0.233306
-0.184697
-0.250402
-0.233509
-0.218096
-0.2178
-0.235502
-0.366763
-0.420801
-0.368536
-0.424429
-0.215546
-0.197945
-0.170999
-0.22725
-0.208691
-0.180424
-0.237282
-0.414778
-0.488174
-0.427499
-0.476517
-0.627676
-0.457376
-0.464923
-0.621772
-0.627226
-0.462631
-0.622278
-0.619776
-0.601266
-0.431508
-0.459757
-0.59458
-0.625976
-0.456629
-1.12456
-1.28954
-1.25412
-0.617725
-0.445928
-0.426791
-0.583911
-0.593201
-0.45189
-0.610579
-0.629741
-0.468658
-0.635248
-0.469388
-0.634857
-0.630238
-0.466754
-0.468263
-0.347455
-0.362482
-0.504588
-0.47686
-0.496617
-0.34278
-0.597107
-0.703753
-0.871276
-0.961109
-0.94966
-0.882869
-0.403038
-0.351186
-0.288436
-0.299652
-0.362683
-0.387449
-0.313066
-0.43025
-0.325826
-0.391346
-0.295127
-0.384076
-0.438317
-0.321792
-0.43828
-0.351784
-0.447788
-0.317857
-0.419957
-0.46702
-0.332931
-1.22255
-1.23389
-1.24601
-1.21845
-1.30166
-1.22332
-2.14116
-2.09136
-2.0636
-1.9887
-2.05558
-2.12384
-2.05623
-2.14645
-2.17142
-2.12123
-2.13681
-2.14856
-2.15756
-2.11455
-2.27013
-2.22782
-2.1092
-2.0841
-2.25018
-2.31958
-2.12385
-2.11141
-1.97133
-2.03053
-2.00141
-2.0995
-2.04458
-2.02614
-1.26653
-1.27849
-1.1577
-1.08993
-1.14826
-1.1023
-1.15153
-1.08999
-1.15854
-1.28595
-1.31848
-1.31221
-1.33568
-1.29189
-1.30248
-1.32098
-1.22001
-1.28772
-1.21063
-1.28403
-1.20991
-1.23089
-1.28904
0.814902
0.739856
0.800122
0.778782
0.763148
0.807456
0.81084
0.819831
0.788352
0.779382
0.817681
0.7767
0.811916
0.824385
0.78966
0.707081
0.768176
0.726123
0.787646
0.773956
0.874267
0.859017
0.758384
0.757545
0.858349
0.876074
0.75883
1.01416
1.11935
1.04523
1.15186
1.01889
1.10919
1.03992
0.873425
0.758018
0.761278
0.859174
0.85771
0.761091
0.876285
0.749867
0.747195
1.0142
1.04413
1.1099
1.1509
1.10634
1.02019
1.04165
0.00135682
-0.0157456
-0.00712064
0.0136404
-0.00779363
0.0282378
0.013626
0.127871
0.201613
0.120951
0.122578
-1.42152
-1.35106
-1.5127
-1.36307
-1.45565
-1.31986
-1.30158
-2.11
-2.1532
-2.12601
-2.13582
-2.14694
-2.09365
-2.10937
-2.13578
-2.08763
-2.46161
-2.67183
-2.59503
-2.59131
-2.18987
-2.17088
-2.15355
-2.1732
-2.17728
-2.16488
-2.18685
0.739211
0.731734
0.886559
0.862518
0.757295
0.757721
0.882784
0.865285
0.756618
1.03454
1.13012
1.05963
1.1945
1.02865
1.13911
1.06644
0.748928
0.750887
0.887973
0.755581
0.757748
0.865773
0.866469
0.755652
0.887661
1.03908
1.08254
1.19794
1.1456
1.14239
1.07454
1.0425
-2.19445
-2.11643
-2.1498
-2.3237
-1.92457
-2.10763
-2.3511
-2.05619
-2.2765
-2.36959
-2.65998
-2.81805
-2.78784
-2.64985
-2.1398
-2.05712
-1.93311
-2.0138
-1.97907
-2.05737
-2.1667
-2.20064
-2.15634
-2.17689
-2.23912
-2.22542
-2.13439
-2.21426
0.927179
0.899783
0.762133
0.747312
0.89848
0.930621
0.743828
1.09694
1.21261
1.1509
1.28227
1.10447
1.20709
1.14261
0.92377
0.739162
0.760229
0.892428
0.896988
0.73996
0.918325
1.09079
1.12724
1.19688
1.27648
1.20242
1.08416
1.1349
0.0290475
0.0180504
0.110881
0.108265
0.0293831
0.115822
0.116702
0.104498
0.016207
0.0281679
0.108721
0.0291057
0.114546
0.111203
0.0859131
0.145708
0.0726212
0.178585
0.0919729
0.0658265
0.172902
0.121658
0.0921448
0.0921712
0.0699716
0.11074
0.0978374
0.0758507
0.108657
0.0287412
0.0138075
0.0298647
0.109636
0.111228
0.112073
-2.53833
-2.63756
-2.90102
-2.66681
-2.59987
-2.57453
-2.65401
-2.19467
-2.17679
-2.17596
-2.23419
-2.22507
-2.15418
-2.22186
0.940938
0.903422
0.757733
0.769863
0.937113
0.904382
0.756147
1.12599
1.21973
1.16357
1.31898
1.11297
1.2304
1.1919
-0.0478155
-0.0560177
-0.038694
-0.0457421
-0.0581098
-0.00923702
-0.0106559
-0.0103842
1.245
1.17414
1.13404
1.3415
1.13274
1.34647
1.24806
1.63515
1.69417
1.77022
1.79947
1.68066
1.6526
1.75732
-0.111474
-0.0667337
-0.0870324
-0.0805753
-0.11285
-0.0611782
-0.0838334
-0.0973417
-0.0415788
-0.0379103
-0.0611183
-0.0593409
-0.038647
-0.0614635
1.72291
1.72342
1.85998
1.81417
1.73788
1.68793
1.87401
1.31475
1.19346
1.4006
1.17146
1.166
1.3969
1.32254
1.79885
1.98814
1.89716
1.77075
1.76706
1.98469
1.80604
1.407
1.19232
1.41373
1.21545
1.21697
1.41008
1.40234
1.92186
1.71685
1.77836
2.06928
1.7198
1.9276
2.06683
1.92013
2.07116
1.76534
1.85493
1.75998
1.91811
2.07432
-1.01047
-1.02019
-1.01881
-0.968645
1.94646
1.71911
1.75747
2.08777
1.71306
1.94162
2.08837
1.43788
1.16851
1.37729
1.21673
1.22055
1.39299
1.43543
1.88343
1.96741
1.67432
1.64169
1.65346
1.98011
1.87294
-1.01286
-1.02131
-1.02826
-1.0489
-1.01123
-1.04062
-1.1815
-1.17449
-1.18309
-0.996455
-0.95396
-0.952467
-0.989089
-0.960142
-0.993924
-0.990712
-0.978992
-0.960337
-0.94674
-0.955401
-0.960666
-0.970615
-0.963912
-1.17809
-1.19153
-1.18742
-2.16921
-2.21526
-1.13527
-1.17646
-1.13371
-0.997769
-0.947618
-0.933079
-0.985365
-0.938973
-0.995465
-0.987845
-0.978598
-0.955518
-0.901013
-0.880075
-0.894663
-0.96621
-0.960865
-1.17954
-1.18504
-1.18587
-1.03176
-1.03
-1.04835
-1.04122
-1.03587
-1.0251
-1.04667
-0.966797
-0.96298
-0.84852
-0.889014
-0.959504
-0.970287
-0.890263
-0.95606
-0.904557
-0.889116
-0.864651
-0.903885
-0.950896
-0.902024
-1.02049
-1.03979
-1.01058
-1.04675
-1.0216
-1.01545
-1.04477
-1.81054
-2.72107
-1.85629
-3.6855
-2.04901
-2.23225
-0.291078
-0.301153
-1.62204
-0.863747
-0.27583
-1.58519
-0.287983
1.38889
1.10231
1.22365
2.1668
1.09694
1.40473
2.12677
0.938455
0.510362
0.794421
0.513265
0.764938
0.968188
0.49464
1.38769
2.08556
1.22347
1.11333
1.10472
2.11106
1.39293
-0.976429
-1.0312
-0.930911
-0.987287
-0.938261
-0.968755
-1.04193
-0.972694
-0.965592
-0.840355
-0.890803
-0.97052
-0.971075
-0.889941
-0.946296
-0.884835
-0.832374
-0.950415
-0.955236
-0.88898
-0.942878
-1.02636
-1.03265
-1.00922
-1.04896
-1.02331
-1.00093
-1.05339
-0.904568
-0.848847
-0.930298
-0.887829
-0.912771
-0.837135
-0.922492
1.13211
0.228133
-0.44169
2.0802
0.221962
1.07563
1.41906
1.09644
2.22917
1.22342
1.42529
1.08175
2.25016
1.39592
2.07452
1.21785
1.04728
1.06639
2.26134
1.3425
0.383939
0.419004
0.650658
0.565448
-0.291875
-0.159289
-0.218079
-0.200992
-0.289359
-0.220338
-0.203863
-0.294932
-0.161798
-0.225298
-0.209635
-0.298065
-0.222766
-0.206596
0.215815
0.263995
0.268242
0.433738
0.587481
0.579041
0.432412
0.296458
0.137046
0.506076
0.291214
0.432727
0.434152
0.519507
0.373962
0.344188
0.634511
0.515184
0.147388
0.743941
0.705101
0.661776
0.709971
-0.337352
-0.200014
-0.254725
-0.249932
-0.334732
-0.257106
-0.254604
-0.180939
-0.172978
-0.33946
-0.20259
-0.260447
-0.261793
-0.340609
-0.259121
-0.258742
-0.177602
-0.176112
0.259862
0.29078
0.25625
0.429361
0.597564
0.43088
0.605241
0.258929
0.34638
0.257094
0.428628
0.592406
0.604462
0.426322
0.29639
0.280324
0.277282
0.435856
0.620752
0.620243
0.43519
0.261401
0.39014
0.261454
0.427332
0.591925
0.595706
0.427079
-0.214426
-0.201633
-0.233361
-0.036932
-0.0861391
-0.0989963
-0.0251125
0.146201
0.760567
0.822243
0.303927
0.565089
0.793234
0.291668
0.298473
0.297961
0.822806
-0.231075
-0.308799
-0.26872
-0.0512415
-0.121896
-0.0714731
-0.108769
0.115246
0.752739
1.01129
0.741512
0.981671
-0.177024
-0.162308
-0.156808
-0.00652932
-0.0777533
-0.0154022
-0.0673633
0.607013
-1.22769
-1.29203
0.45695
1.14831
1.19361
0.486336
0.284782
0.519434
0.772417
0.285634
0.277196
0.292533
0.743907
0.169347
0.472351
1.02263
0.744028
1.03827
-0.147612
-0.0973298
-0.130995
0.00463156
-0.0446122
-0.0585214
0.0246181
-0.390121
-0.23777
-0.286405
-0.307599
-0.376444
-0.290677
-0.327237
-0.455465
-0.501569
-0.342557
-0.380218
-0.458273
-0.498945
-0.340672
-0.411474
-0.383056
-0.414412
-0.378315
-0.404611
-0.237908
-0.297967
-0.337445
-0.407979
-0.295863
-0.335812
-0.447634
-0.334592
-0.488463
-0.378021
-0.493711
-0.440926
-0.337167
-0.471656
-0.375404
-0.466899
-0.37845
0.281354
0.269298
0.2834
0.429747
0.617156
0.43186
0.621695
0.266011
0.25182
0.263702
0.406311
0.679576
0.671924
0.408933
0.233397
0.284458
0.286421
0.394042
0.65204
0.672302
0.389937
0.267049
0.252472
0.262136
0.399156
0.687129
0.681022
0.409075
-0.0888673
-0.0346308
-0.0455739
0.0534049
-0.0147454
-0.0217606
0.0587985
-1.18769
0.487693
-0.973693
0.478708
1.14466
0.494249
1.13428
0.255555
0.450714
0.608436
0.249529
0.248116
0.259048
0.630471
-0.100225
-0.0745003
-0.0592435
0.0470522
-0.0362012
0.0383197
-0.0279916
-0.91477
0.913097
-0.977291
0.538046
1.14896
0.534978
1.14026
-0.0236586
-0.057712
-0.012115
0.0645499
-0.00922168
0.0641549
-0.000851145
1.36569
-0.206836
-0.270748
0.810629
1.3001
1.30552
0.806803
-0.881859
1.21608
-1.31395
0.934338
1.15392
0.54783
1.1461
-0.438712
-0.258525
-0.318659
-0.368582
-0.439316
-0.319977
-0.367595
-0.497497
-0.554134
-0.369449
-0.406615
-0.499369
-0.55129
-0.367428
-0.476622
-0.473328
-0.476426
-0.467531
-0.439788
-0.259324
-0.323774
-0.369201
-0.441498
-0.321507
-0.367873
-0.496011
-0.364767
-0.546079
-0.405038
-0.548678
-0.495417
-0.366026
-0.475513
-0.448148
-0.471585
-0.451662
0.283663
0.269544
0.280801
0.379828
0.64874
0.387015
0.637725
0.313502
0.260735
0.302359
0.37201
0.589648
0.615892
0.376453
0.471708
0.305258
0.30227
0.346446
0.615536
0.613641
0.346968
0.319131
0.375225
0.316473
0.372091
0.588844
0.587087
0.376797
-0.190332
1.66917
-0.0651746
0.768019
1.30907
0.799862
1.29994
0.599336
1.45553
0.603722
0.658828
1.15112
0.64985
1.17713
1.45233
0.575029
0.577872
0.584142
1.05096
0.580276
1.06142
0.600451
1.44838
0.597475
0.6339
1.12873
0.643089
1.10464
-0.474729
-0.276174
-0.338018
-0.378027
-0.471962
-0.341054
-0.380969
-0.516196
-0.571941
-0.3824
-0.417251
-0.518062
-0.570882
-0.380616
-0.75291
-0.892301
-0.762416
-0.87936
-0.473834
-0.275286
-0.343533
-0.37849
-0.475599
-0.341256
-0.378215
-0.51582
-0.378832
-0.569758
-0.417287
-0.570282
-0.514582
-0.380646
-0.695384
-0.790873
-0.686756
-0.801093
0.306053
0.478231
0.305259
0.343264
0.61752
0.346373
0.614742
0.307319
0.548483
0.309517
0.337992
0.602341
0.611041
0.334311
0.303479
0.527677
0.296913
0.32275
0.590653
0.579008
0.329336
0.647774
0.490985
0.598125
0.349411
0.362086
0.400758
0.329861
-0.690755
-0.869787
-0.801025
-0.109849
-0.193871
-0.205025
-0.0849102
-2.40871
0.644403
-2.81286
0.809451
-0.423368
-0.251636
1.48116
1.26696
-0.140664
-0.246758
0.000676873
-0.811125
-0.851997
-0.760618
-0.0119069
-0.233676
-0.223293
-0.178797
-0.141864
-0.0295531
-0.0574943
-0.0580144
-0.0670747
-0.0210213
-0.0265462
-0.0594006
-0.174448
-0.164744
-0.140198
-0.141639
-0.0185202
-0.0497846
-0.0548618
-0.0410014
-0.018524
-0.0179545
-0.0535022
-0.0699608
-0.0356839
-0.0726718
-0.025091
-0.0296486
-0.0764607
-0.0686471
-0.0250514
-0.0592463
-0.0664194
-0.0628006
-0.0145559
-0.0160443
-0.057546
-0.118428
-0.10405
-0.0928011
-0.124089
-0.115044
-0.116459
-0.0862788
-0.0698233
-0.0731054
-0.0842005
-0.000805694
-0.032084
-0.0458161
-0.0388235
-0.00762555
0.00342554
-0.0190486
-0.115954
-0.0929793
-0.0887618
-0.0939653
-0.090241
-0.0320933
-0.00668261
-0.00565723
0.0126592
0.00734069
-0.0103243
-0.0248658
-0.128507
-0.109824
-0.132422
-0.110949
-0.125431
-0.108255
-0.105911
0.0295317
-0.0225685
-0.0204824
-0.0159159
-0.00264866
0.0377345
-0.012279
-0.108936
-0.102135
-0.105323
-0.0888588
-0.0910794
-0.0942435
-0.0847848
-0.00988187
0.00146835
0.00270131
0.0428405
0.0371888
-0.00375851
-0.00878407
-0.113478
-0.114288
-0.110012
-0.0755286
-0.0652336
-0.0611231
-0.0807439
-0.0991381
-0.0779081
-0.0785171
-0.107531
-0.0860975
-0.0933526
-0.0833479
-0.00936892
-0.00276243
0.0145958
0.00121762
0.0198723
-0.0195128
0.0143143
-0.100518
-0.0907906
-0.0972398
-0.0771756
-0.079837
-0.0940823
-0.0737376
-0.0745007
-0.0726041
-0.0858332
-0.070951
-0.0451399
-0.0500634
-0.0449921
0.00335593
0.0397422
0.0369759
0.00942625
0.0146953
0.0381435
0.00945532
-0.0647238
-0.050156
-0.055506
-0.0125206
-0.0203216
-0.0293368
-0.00751946
-0.0691898
-0.0643508
-0.0681355
-0.0396574
-0.0428341
-0.0393623
-0.043897
0.0106043
0.0417064
0.00321648
0.0554765
-0.000105751
0.0132455
0.0454833
0.0051975
0.0358449
0.0556413
-0.00597097
-0.0065175
0.0397005
0.00849315
0.0280803
0.0360987
0.0248496
0.0378011
0.0779497
0.0389218
0.0795714
0.0464167
0.0795351
0.0639968
0.00244614
0.0486563
0.0428361
0.00733743
0.0588095
0.0471007
0.0546772
0.0138707
0.0493948
0.0494906
0.00547837
0.0489711
0.0736653
0.0678077
0.038321
0.0278497
0.0326411
0.0322222
-0.315498
-0.310182
-0.336048
-0.3332
-0.31122
-0.31356
-0.334338
-0.30274
-0.300252
-0.287929
-0.286376
-0.284624
-0.29976
-0.304309
-0.321511
-0.339014
-0.341402
-0.324181
-0.319115
-0.338064
-0.327149
-0.300268
-0.279416
-0.293422
-0.281912
-0.296334
-0.27957
-0.299351
-0.318634
-0.312927
-0.340177
-0.339255
-0.316468
-0.316116
-0.336834
-0.196104
-0.199519
-0.204645
-0.208737
-0.200144
-0.197059
-0.204313
-0.185462
-0.186835
-0.185993
-0.184451
-0.186721
-0.189474
-0.185053
-0.187811
-0.17919
-0.176041
-0.187929
-0.177956
-0.185651
-0.209794
-0.221203
-0.186953
-0.221142
-0.202598
-0.219734
-0.195166
-0.215123
-0.227402
-0.201342
-0.208279
-0.195231
-0.20997
-0.198283
-0.215665
-0.196989
-0.218252
-0.25624
-0.238052
-0.218077
-0.227869
-0.239326
-0.20744
-0.228871
-0.2177
-0.212109
-0.2298
-0.228309
-0.226681
-0.229994
-0.223903
-0.228663
-0.21467
-0.223212
-0.22007
-0.220846
-0.217597
-0.230093
-0.225387
-0.222951
-0.216938
-0.217835
-0.220996
-0.229676
-0.220317
-0.215312
-0.219514
-0.220073
-0.212571
-0.21885
-0.214361
-0.211088
-0.303198
-0.300084
-0.315129
-0.301644
-0.302721
-0.313089
-0.317538
-0.322668
-0.333965
-0.327125
-0.308734
-0.188114
-0.17612
-0.170806
-0.190617
-0.170543
-0.189121
-0.188486
-0.225739
-0.223181
-0.237161
-0.232521
-0.236629
-0.220982
-0.232463
-0.210715
-0.223756
-0.223154
-0.218232
-0.212487
-0.216638
-0.210267
-0.224801
-0.224404
-0.223386
-0.215121
-0.20951
-0.227875
-0.224705
-0.225896
-0.228867
-0.215142
-0.222275
-0.224754
-0.207403
-0.219713
-0.20811
-0.212687
-0.264465
-0.256372
-0.260878
-0.314911
-0.335236
-0.311595
-0.327879
-0.312264
-0.31488
-0.332627
-0.327804
-0.319873
-0.322829
-0.322575
-0.317979
-0.330342
-0.321823
-0.290227
-0.319108
-0.294218
-0.323429
-0.296692
-0.286319
-0.323494
-0.289948
-0.294584
-0.32154
-0.319516
-0.295015
-0.289905
-0.320404
-0.247623
-0.236027
-0.23774
-0.248651
-0.242304
-0.249876
-0.244248
-0.236231
-0.236077
-0.232115
-0.239753
-0.234986
-0.237886
-0.237883
-0.181538
-0.175006
-0.165994
-0.184333
-0.183452
-0.171798
-0.181636
-0.158675
-0.159138
-0.179489
-0.177945
-0.16365
-0.166418
-0.180824
-0.178389
-0.169335
-0.259316
-0.245301
-0.230489
-0.262293
-0.232907
-0.264201
-0.256193
-0.299038
-0.298226
-0.300028
-0.294455
-0.297792
-0.3003
-0.298128
-0.260738
-0.245732
-0.236692
-0.264827
-0.234594
-0.262307
-0.263496
-0.279981
-0.274451
-0.309159
-0.27638
-0.27795
-0.310929
-0.151568
-0.219906
-0.219181
-0.216521
-0.209032
-0.208819
-0.214636
-0.219762
-0.252363
-0.23589
-0.238245
-0.24992
-0.251544
-0.238881
-0.250675
-0.286836
-0.280161
-0.279681
-0.309477
-0.275723
-0.272683
-0.307341
-0.272426
-0.27631
-0.306241
-0.176399
-0.174479
-0.173312
-0.171993
-0.173066
-0.176044
-0.174946
-0.207412
-0.222926
-0.216631
-0.237176
-0.213641
-0.209437
-0.223229
-0.168355
-0.173957
-0.177232
-0.201009
-0.221118
-0.207857
-0.135828
-0.145276
-0.147278
-0.206849
-0.225851
-0.206748
-0.206681
-0.205818
-0.154142
-0.161644
-0.154712
-0.193648
-0.20946
-0.205378
-0.200412
-0.193884
-0.211832
-0.203468
-0.164716
-0.1331
-0.151172
-0.164125
-0.134532
-0.165881
-0.161796
-0.164847
-0.164242
-0.137066
-0.15318
-0.165222
-0.136205
-0.163764
-0.188152
-0.213755
-0.19551
-0.212084
-0.198018
-0.210469
-0.187404
-0.231361
-0.22112
-0.221515
-0.235975
-0.21487
-0.230617
-0.232814
-0.28201
-0.275712
-0.282942
-0.257468
-0.277053
-0.259038
-0.274804
-0.28092
-0.243957
-0.229001
-0.224468
-0.248178
-0.221261
-0.248098
-0.24446
-0.20497
-0.19998
-0.211495
-0.166932
-0.166906
-0.16989
-0.169205
-0.170001
-0.167527
-0.167124
-0.128966
-0.142812
-0.140271
-0.141834
-0.154467
-0.139044
-0.148613
-0.149622
-0.147588
-0.143119
-0.161754
-0.154447
-0.154815
-0.190964
-0.194979
-0.221086
-0.225089
-0.216464
-0.255079
-0.213364
-0.226086
-0.17403
-0.169847
-0.173694
-0.22966
-0.224457
-0.224723
-0.233231
-0.231092
-0.223146
-0.232108
-0.275668
-0.280115
-0.255691
-0.276647
-0.255767
-0.273913
-0.278313
-0.211843
-0.217653
-0.209906
-0.220013
-0.209294
-0.217956
-0.212205
-0.121924
-0.121436
-0.14896
-0.14716
-0.120941
-0.133622
-0.13167
-0.137372
-0.173954
-0.195964
-0.175209
-0.193881
-0.111719
-0.0998514
-0.121308
-0.107119
-0.100478
-0.106997
-0.111931
-0.164895
-0.144508
-0.176531
-0.17556
-0.177436
-0.149105
-0.166618
-0.179248
-0.181759
-0.182125
-0.182007
-0.208663
-0.216822
-0.216219
-0.208528
-0.229165
-0.231812
-0.228177
-0.205071
-0.224786
-0.232599
-0.230095
-0.216028
-0.221012
-0.221006
-0.227285
-0.225615
-0.217694
-0.202152
-0.223505
-0.221156
-0.222324
-0.227471
-0.117954
-0.108165
-0.106964
-0.131153
-0.120087
-0.129048
-0.201452
-0.196344
-0.200917
-0.206105
-0.191295
-0.186647
-0.189833
-0.209789
-0.197924
-0.208349
-0.210957
-0.184864
-0.217685
-0.20399
-0.217087
-0.212783
-0.17141
-0.171642
-0.190963
-0.209721
-0.212363
-0.187159
-0.159137
-0.165304
-0.151712
-0.169354
-0.160361
-0.151184
-0.171697
-0.155615
-0.15932
-0.157804
-0.151215
-0.156685
-0.149016
-0.132986
-0.143059
-0.148301
-0.155489
-0.141291
-0.201184
-0.210891
-0.211077
-0.20367
-0.158622
-0.15122
-0.159872
-0.150394
-0.142478
-0.175781
-0.145328
-0.168668
-0.0603054
-0.0709525
-0.0806703
-0.0564269
-0.0555825
-0.0772565
-0.059703
-0.0806022
-0.0772566
-0.103228
-0.105314
-0.145419
-0.122804
-0.135481
-0.112989
-0.100356
-0.0507426
-0.0447003
-0.0458964
-0.0487158
-0.103176
-0.133019
-0.0979935
-0.120106
-0.106839
-0.130331
-0.0985728
-0.111233
-0.0791353
-0.104333
-0.114241
-0.113599
-0.104006
-0.11072
-0.095079
-0.0747122
-0.0726879
-0.0963977
-0.124567
-0.128025
-0.148452
-0.13696
-0.136592
-0.128851
-0.124589
-0.0978906
-0.0645355
-0.057887
-0.0993135
-0.0616337
-0.125035
-0.144735
-0.130249
-0.149823
-0.128703
-0.138648
-0.129606
-0.149356
-0.17965
-0.181216
-0.147569
-0.0651125
-0.081245
-0.0575307
-0.0696543
-0.0664346
-0.0505868
-0.0470189
-0.0500942
-0.048277
-0.115804
-0.134442
-0.117458
-0.0906719
-0.135728
-0.112413
-0.0912703
-0.149872
-0.181259
-0.181098
-0.150896
-0.178266
-0.203959
-0.182978
-0.197827
-0.16296
-0.165439
-0.154377
-0.16686
-0.160607
-0.157393
-0.167305
-0.166377
-0.150078
-0.158025
-0.140056
-0.156032
-0.162118
-0.150492
-0.199938
-0.165704
-0.151688
-0.146117
-0.138562
-0.159329
-0.154259
-0.149517
-0.160626
-0.151186
-0.159379
-0.15262
-0.146531
-0.131552
-0.138741
-0.159341
-0.132071
-0.145844
-0.160538
-0.153351
-0.145257
-0.162114
-0.155925
-0.154044
-0.144077
-0.162135
-0.10082
-0.104222
-0.119146
-0.11517
-0.104384
-0.100057
-0.115445
-0.0435591
-0.0283409
-0.0399641
-0.0521338
-0.0606572
-0.0186192
-0.044917
-0.108042
-0.133021
-0.120331
-0.132014
-0.113384
-0.124747
-0.113379
-0.106284
-0.124217
-0.106904
-0.069156
-0.0323505
-0.0726794
-0.0771083
-0.0813616
-0.0617466
-0.070161
0.00839966
-0.0333782
-0.0412581
-0.0264174
-0.24267
0.0130417
-0.0361881
-0.124033
-0.109077
-0.107569
-0.139346
-0.175846
-0.169717
-0.129976
-0.150532
-0.134346
-0.0957947
-0.104849
-0.114691
-0.12077
-0.114503
-0.0981436
-0.106492
-0.141371
-0.133052
-0.131005
-0.156918
-0.144841
-0.129723
-0.149864
-0.159666
-0.157504
-0.140003
-0.157892
-0.146333
-0.154552
-0.162601
-0.165252
-0.161461
-0.152124
-0.197488
-0.145157
-0.192661
-0.171363
-0.156998
-0.147416
-0.162758
-0.157999
-0.155521
-0.149939
-0.162797
-0.146454
-0.178725
-0.179812
-0.125418
-0.151068
-0.125083
-0.1452
-0.173931
-0.17462
-0.126556
-0.148387
-0.124724
-0.0872977
-0.0671186
-0.0641603
-0.100996
-0.063995
-0.091714
-0.0908183
-0.105965
-0.125866
-0.111045
-0.134586
-0.109254
-0.1052
-0.126742
-0.0842445
-0.0641935
-0.0577242
-0.0873057
-0.0613451
-0.0855013
-0.0823116
-0.108938
-0.122734
-0.131423
-0.140042
-0.112538
-0.115428
-0.129372
-0.0194088
-0.0140953
-0.0531706
-0.0455582
-0.0174229
-0.0176796
-0.0494458
0.00974468
0.0452907
0.0217449
0.0149567
0.015413
0.0439607
0.00952767
0.00842703
0.00900163
0.0179985
0.0409737
0.0122623
0.0391614
0.00847836
-0.0211021
-0.0584206
-0.0244078
-0.0535132
-0.0220142
-0.0520507
-0.0226753
-0.0305151
-0.0379295
-0.051343
-0.0440288
-0.0219976
-0.0379009
-0.0259978
0.0171804
0.0438757
0.0493167
0.00165092
0.0150784
0.0488643
0.00536295
0.0104269
0.0639912
0.0883254
0.0747146
0.0898306
0.0437617
-0.093582
-0.0116587
0.0137046
0.11685
0.113969
-0.0148924
0.111567
0.0351138
-0.0238439
-0.0371609
-0.0165642
-0.034465
-0.0223644
-0.0380324
-0.0193348
-0.105666
-0.0818041
-0.0860698
-0.0956524
-0.0893815
-0.0991819
-0.104333
-0.140608
-0.151479
-0.143466
-0.152918
-0.144051
-0.139559
-0.152034
-0.190831
-0.163981
-0.148584
-0.163911
-0.188981
-0.150462
-0.165921
-0.109169
-0.0871911
-0.0892314
-0.105019
-0.0897587
-0.104607
-0.10959
-0.144788
-0.146197
-0.154006
-0.154917
-0.145792
-0.145789
-0.154275
-0.0138117
-0.0168152
-0.0423319
-0.0415747
-0.0404971
-0.0162948
-0.0179076
-0.00917195
-0.0411195
-0.0328644
-0.00569076
-0.0373352
-0.0119035
-0.00438234
-0.0985708
-0.0873481
-0.0719684
-0.109818
-0.0958819
-0.0760837
-0.114071
-0.117824
-0.135917
-0.128281
-0.146921
-0.128451
-0.11886
-0.134997
-0.100231
-0.0910187
-0.0800407
-0.117426
-0.0783939
-0.116314
-0.101638
-0.116691
-0.12681
-0.133058
-0.146387
-0.115135
-0.12801
-0.134032
-0.0902984
-0.0761383
-0.060849
-0.0893583
-0.0805435
-0.0631383
-0.100163
-0.123684
-0.169003
-0.136583
-0.153399
-0.13599
-0.131226
-0.160489
-0.184508
-0.158813
-0.146336
-0.161533
-0.186009
-0.145303
-0.160072
-0.0709429
-0.0533617
-0.0666612
-0.0513456
-0.0698937
-0.0541376
-0.0678673
-0.148982
-0.146141
-0.155293
-0.155435
-0.146588
-0.146716
-0.156875
0.133713
0.0680973
0.0605276
0.0618652
0.120456
0.0566246
0.0619695
0.138537
0.109345
0.0591113
0.118385
0.129607
0.0557467
0.114229
-0.143529
-0.155534
-0.140332
-0.156558
-0.146371
-0.1381
-0.155103
-0.149755
-0.158107
-0.141436
-0.157757
-0.148317
-0.142295
-0.159143
-0.00954868
0.00598314
0.00605833
0.0466558
0.00447572
-0.00702896
0.00409514
-0.132589
-0.106884
-0.117282
-0.106351
-0.130965
-0.116194
-0.106976
-0.0822901
-0.0961116
0.0353508
-0.0321201
-0.0708633
-0.1103
-0.0228371
-0.155006
-0.0522772
0.0267055
-0.191777
-0.156765
-0.184625
-0.046957
-0.128823
-0.107085
-0.117934
-0.105629
-0.129477
-0.118291
-0.105113
-0.132931
-0.102273
0.0295458
-0.0367382
-0.10743
-0.124218
-0.0402154
0.0470145
0.0685024
0.0401392
0.0437784
0.10839
0.0741354
0.0584447
-0.0577117
-0.0794645
-0.0787545
-0.0668334
-0.0519767
-0.0664895
-0.0517487
0.0577265
0.162513
0.0667443
0.0840844
0.0873516
0.0554376
0.0754248
-0.0596455
-0.0803209
-0.0813229
-0.068769
-0.0525479
-0.0673335
-0.0554756
0.0413806
-0.141412
0.112845
0.0931986
0.0926695
-0.0831559
0.0403072
0.0470404
0.0597917
0.0792969
0.130249
0.0728496
0.0523689
0.0280474
0.0723586
0.0542586
-0.0658636
-0.0540192
0.142383
0.0681893
0.079606
-0.203067
-0.11597
-0.142368
-0.201666
-0.157394
-0.155109
-0.111385
-0.28063
-0.289029
-0.227048
-0.216647
-0.0621125
0.219461
0.0780357
0.129334
0.115675
0.0900569
-0.039107
-0.277433
-0.268132
-0.19746
-0.212276
0.118373
-0.344393
0.316498
0.222537
0.181266
-0.16187
0.170208
0.0129982
0.0692124
0.132214
0.283319
0.151385
0.00607927
-0.029275
-0.039108
-0.05326
-0.0606519
-0.0449624
-0.0133086
-0.0353973
-0.0320745
0.0450415
-0.149691
0.0932292
0.192003
0.096683
0.0410655
-0.137119
-0.00207307
-0.0462935
-0.0375024
-0.0165481
-0.00524886
-0.0265723
0.0244446
0.034792
0.101999
0.152438
0.0604156
0.05387
0.0642431
0.0443056
-0.203797
-0.197085
-0.12172
-0.112766
0.191734
-0.367355
0.250702
0.328824
0.259787
0.185813
-0.327569
-0.204458
-0.20551
-0.103145
-0.108561
-0.022946
0.179838
0.02911
0.0277541
-0.0190555
0.0765786
0.0383308
0.0361406
0.0623628
0.1272
0.0638248
0.113173
0.0643927
0.118888
0.0661645
0.0947973
0.0533792
0.073983
0.296825
0.0692486
0.142306
0.0827308
0.114287
0.0816555
0.0699804
0.239608
0.099476
0.0411505
0.0425671
0.0629364
0.12546
0.0646747
0.106346
0.0603822
0.20945
0.0558681
0.0618082
0.0517509
0.0708813
0.204959
0.0645325
0.135935
0.0786991
0.084239
0.075345
0.0680824
0.200159
-0.157234
-0.155311
-0.11787
-0.113995
-0.0111892
0.0299194
0.0479903
0.0325599
-0.0147452
-0.0101063
-0.200378
0.0558022
0.113622
0.0507453
-0.00701108
-0.153776
-0.148637
-0.102002
-0.108656
-0.00813531
0.191794
0.0596255
0.0347797
-0.0078768
-0.173502
0.0403769
-0.00641806
-0.171182
0.05117
0.0881541
-0.19339
0.0491749
-0.00710176
-0.224061
-0.21599
-0.173316
-0.158005
-0.158888
-0.205565
-0.236484
-0.208053
-0.220335
-0.227136
-0.208332
-0.220512
-0.217256
-0.210761
-0.157475
-0.238931
-0.214336
-0.181593
-0.197117
-0.172694
-0.169425
-0.239617
-0.194165
-0.197267
-0.212104
-0.183787
-0.1762
-0.170886
-0.148645
-0.158287
-0.192491
-0.16321
-0.253161
-0.201446
-0.245072
-0.214484
-0.283583
-0.222691
-0.239858
-0.197495
-0.247403
-0.25311
-0.209441
-0.193722
-0.204871
-0.173013
-0.226103
-0.243865
-0.207799
-0.209373
-0.192068
-0.235732
-0.265258
-0.32057
-0.331748
-0.272101
-0.239872
-0.232901
-0.235714
-0.251629
-0.249769
-0.227601
-0.247413
-0.330803
-0.237731
-0.282477
-0.258709
-0.344816
-0.291281
-0.245564
-0.238389
-0.25713
-0.235354
-0.226103
-0.25374
-0.241388
-0.225738
-0.258928
-0.274207
-0.267654
-0.262741
-0.287803
-0.289381
-0.339509
-0.268532
-0.334615
-0.26125
-0.257415
-0.246059
-0.233966
-0.263162
-0.246617
-0.24667
-0.281547
-0.257509
-0.246733
-0.268349
-0.276076
-0.254231
-0.28911
-0.274433
-0.266792
-0.245901
-0.247213
-0.276926
-0.267371
-0.250871
-0.332183
-0.293679
-0.278908
-0.323041
-0.313802
-0.321619
-0.234015
-0.215575
-0.222682
-0.241853
-0.233644
-0.220691
-0.236839
-0.249885
-0.223547
-0.234962
-0.230819
-0.244902
-0.244709
-0.226379
-0.255551
-0.260498
-0.259967
-0.256223
-0.246433
-0.261595
-0.226003
-0.234369
-0.243536
-0.253522
-0.226596
-0.261489
-0.281369
-0.259078
-0.283344
-0.286052
-0.279982
-0.275838
-0.273865
-0.282253
-0.282573
-0.273238
-0.31714
-0.300229
-0.316913
-0.326473
-0.300156
-0.360516
-0.30749
-0.279122
-0.275912
-0.265273
-0.26398
-0.28117
-0.275297
-0.265722
-0.283544
-0.288787
-0.283317
-0.279808
-0.288269
-0.285017
-0.278302
-0.373521
-0.328488
-0.32925
-0.373223
-0.402422
-0.396616
-0.312042
-0.466191
-0.367228
-0.324822
-0.327898
-0.283517
-0.372379
-0.297005
-0.313519
-0.279537
-0.368947
-0.342949
-0.288327
-0.278837
-0.307766
-0.285574
-0.286826
-0.279506
-0.280837
-0.281275
-0.284459
-0.28712
-0.324987
-0.296914
-0.324254
-0.374613
-0.375172
-0.297404
-0.324866
-0.332125
-0.385841
-0.310204
-0.327088
-0.343895
-0.378222
-0.303678
-0.287282
-0.270845
-0.295486
-0.27329
-0.288215
-0.274226
-0.288542
-0.279611
-0.281261
-0.279928
-0.280209
-0.281784
-0.278201
-0.281706
-0.282491
-0.287759
-0.279478
-0.34053
-0.290813
-0.273569
-0.292397
-0.283537
-0.290246
-0.288056
-0.304498
-0.281169
-0.298288
-0.287034
-0.287491
-0.268888
-0.264422
-0.258874
-0.280817
-0.282553
-0.265046
-0.330341
-0.287278
-0.321941
-0.314917
-0.367233
-0.302115
-0.279242
-0.299315
-0.271784
-0.279119
-0.30254
-0.312097
-0.300658
-0.274061
-0.275983
-0.313305
-0.296681
-0.3007
-0.330509
-0.330773
-0.297212
-0.312614
-0.292586
-0.365061
-0.316724
-0.357538
-0.32913
-0.372705
-0.37755
-0.383979
-0.332139
-0.384017
-0.323835
-0.284644
-0.319907
-0.285111
-0.353455
-0.279278
-0.31556
-0.337144
-0.305137
-0.348756
-0.310397
-0.349478
-0.282531
-0.372184
-0.361384
-0.325974
-0.324429
-0.321946
-0.376433
-0.360157
-0.269413
-0.258832
-0.266378
-0.376324
-0.327806
-0.328751
-0.363953
-0.326991
-0.377503
-0.362585
-0.251614
-0.350549
-0.32471
-0.282618
-0.265946
-0.29738
-0.273837
-0.383041
-0.370004
-0.337517
-0.340494
-0.336236
-0.383579
-0.370272
-0.242118
-0.271242
-0.262421
-0.258337
-0.261323
-0.260679
-0.242808
-0.379647
-0.328665
-0.331964
-0.365511
-0.32963
-0.379036
-0.366276
-0.286488
-0.286196
-0.303652
-0.305395
-0.285918
-0.285075
-0.306433
-0.291854
-0.293867
-0.321464
-0.321694
-0.316174
-0.293074
-0.290517
-0.287526
-0.302176
-0.283911
-0.311847
-0.285568
-0.307142
-0.286696
-0.2902
-0.313102
-0.284997
-0.320271
-0.287627
-0.315245
-0.288232
-0.279168
-0.310947
-0.313099
-0.284843
-0.303643
-0.281954
-0.282245
-0.275723
-0.27061
-0.303686
-0.310767
-0.31008
-0.27015
-0.275875
-0.275715
-0.310534
-0.302179
-0.268976
-0.30956
-0.276316
-0.269512
-0.277205
-0.303083
-0.296743
-0.274979
-0.299041
-0.278714
-0.27587
-0.38722
-0.331502
-0.391828
-0.337239
-0.325804
-0.344711
-0.360626
-0.327329
-0.349651
-0.303561
-0.317747
-0.317717
-0.307837
-0.319044
-0.336871
-0.313346
-0.312
-0.297541
-0.338193
-0.313184
-0.311714
-0.326651
-0.323179
-0.327231
-0.326916
-0.327439
-0.323536
-0.330056
-0.327719
-0.342385
-0.357981
-0.322892
-0.388624
-0.328027
-0.314329
-0.359058
-0.361494
-0.353885
-0.34822
-0.35041
-0.363034
-0.362479
-0.300391
-0.303069
-0.287558
-0.308079
-0.288621
-0.314166
-0.29382
-0.369849
-0.352158
-0.351369
-0.376082
-0.351845
-0.371763
-0.373458
-0.285126
-0.317938
-0.28478
-0.313302
-0.283778
-0.283834
-0.322283
-0.27752
-0.267843
-0.3013
-0.309765
-0.316162
-0.267969
-0.27535
-0.277965
-0.312641
-0.26823
-0.300457
-0.276843
-0.316321
-0.268238
-0.283719
-0.305434
-0.279484
-0.307903
-0.281834
-0.318025
-0.280451
-0.287001
-0.318533
-0.287639
-0.307968
-0.285647
-0.288102
-0.312259
-0.28938
-0.28592
-0.324291
-0.314977
-0.316653
-0.291563
-0.285029
-0.288216
-0.31726
-0.283033
-0.323796
-0.286721
-0.320849
-0.288531
-0.289008
-0.31312
-0.285535
-0.313838
-0.288195
-0.312573
-0.286057
-0.317484
-0.32878
-0.324357
-0.323492
-0.322387
-0.314566
-0.319362
-0.327503
-0.325102
-0.327855
-0.327074
-0.326634
-0.324821
-0.328675
-0.375621
-0.352171
-0.353609
-0.379339
-0.354927
-0.373569
-0.382173
-0.330038
-0.291827
-0.239141
-0.26037
-0.296544
-0.263929
-0.325703
-0.311396
-0.250037
-0.353675
-0.277252
-0.312668
-0.248952
-0.352782
-0.264855
-0.219572
-0.187542
-0.217577
-0.220013
-0.217859
-0.263353
-0.26755
-0.219718
-0.223642
-0.188079
-0.27003
-0.221422
-0.218694
-0.309876
-0.276455
-0.24763
-0.351529
-0.248045
-0.351798
-0.308998
-0.445589
-0.309988
-0.39792
-0.335354
-0.40006
-0.337167
-0.443262
-0.448621
-0.311917
-0.406328
-0.341392
-0.403113
-0.339045
-0.451536
-0.490975
-0.363893
-0.388584
-0.528739
-0.365538
-0.489337
-0.528356
-0.43968
-0.395918
-0.306025
-0.333995
-0.333032
-0.394881
-0.440999
-0.485076
-0.527825
-0.360598
-0.385643
-0.360926
-0.484682
-0.527887
-0.438453
-0.305278
-0.331944
-0.393672
-0.332248
-0.393869
-0.438099
-0.486268
-0.362624
-0.386187
-0.528573
-0.361696
-0.487453
-0.528491
-0.279657
-0.233559
-0.318685
-0.25537
-0.283286
-0.22976
-0.313993
-0.281293
-0.250454
-0.283328
-0.249735
-0.23904
-0.205231
-0.164809
-0.192143
-0.203434
-0.196458
-0.23571
-0.508263
-0.465494
-0.463852
-0.513951
-0.243655
-0.203807
-0.209275
-0.167792
-0.246653
-0.206547
-0.20029
-0.46832
-0.450064
-0.462872
-0.449627
-0.274278
-0.250984
-0.220787
-0.302473
-0.225527
-0.307532
-0.270383
-0.410766
-0.291957
-0.360929
-0.314775
-0.365492
-0.318677
-0.404534
-0.466012
-0.513164
-0.354338
-0.378341
-0.351603
-0.470099
-0.509164
-0.416917
-0.29463
-0.375541
-0.324595
-0.370538
-0.321804
-0.422043
-0.429809
-0.442101
-0.440937
-0.428324
-0.460892
-0.34414
-0.375164
-0.498977
-0.348323
-0.454942
-0.504452
-0.390537
-0.355116
-0.280822
-0.310622
-0.305683
-0.349739
-0.397177
-0.429103
-0.464844
-0.32134
-0.35421
-0.328148
-0.419307
-0.474701
-0.441329
-0.446912
-0.447425
-0.436953
-0.446361
-0.449377
-0.445152
-0.446679
-0.382034
-0.276165
-0.294336
-0.335642
-0.300447
-0.342248
-0.373966
-0.439236
-0.339517
-0.360556
-0.491973
-0.334024
-0.447197
-0.484674
-0.118775
-0.101665
-0.100694
-0.111763
-0.109588
-0.154612
-0.136296
-0.102944
-0.364931
-0.378743
-0.306012
-0.297311
-1.14328
-1.08516
-1.09063
-1.14022
-1.13728
-1.09422
-1.14412
-1.09832
-1.06746
-1.09583
-1.07974
-1.09453
-1.08379
-1.08565
-1.09605
-1.08376
-1.25129
-1.26931
-1.25174
-1.27677
-1.24188
-1.26899
-1.26849
-1.34278
-1.33267
-1.32971
-1.35008
-1.34339
-1.33907
-1.32789
-1.32662
-1.29833
0.215578
0.185021
0.172519
0.225524
0.180164
0.234596
0.209123
0.231011
0.15994
0.172809
0.22529
0.176389
0.22237
0.23354
0.0738472
0.153978
0.15751
0.0679492
0.145233
0.00337295
-0.01924
-0.0407004
-0.00147669
-0.00580037
0.00674644
-0.0328875
0.0531402
0.124987
0.0695781
0.138571
0.0638093
0.0694013
0.139361
0.136428
0.143127
0.194321
0.199995
0.160695
0.16723
0.083726
0.146658
0.147394
0.149222
0.0748208
0.0656976
0.0692109
0.134002
0.139518
0.0705746
0.136281
0.0594778
0.09005
0.120894
0.128347
0.0801251
0.0799164
0.124099
0.0919472
0.15668
0.196921
0.211873
0.143344
0.175108
0.115821
0.180286
0.243907
0.24515
0.216974
0.11618
0.20145
0.202514
0.215029
0.201196
0.213068
0.195658
0.246321
0.195576
0.212066
0.204954
0.1892
0.177057
0.164644
0.17294
0.169308
0.176421
0.185632
-1.40133
-1.38175
-1.38368
-1.38173
-1.38141
-1.42261
-1.40156
-1.40771
-1.38367
-1.41091
-1.27674
-1.28341
-1.34898
-1.27845
-1.27283
-1.2928
-1.29072
-1.39288
-1.38103
-1.35586
-1.41627
-1.35994
-1.3966
-1.40542
-1.42148
-1.41355
-1.3819
-1.35332
-1.3821
-1.42045
-1.41217
-1.53146
-1.62133
-1.49788
-1.63528
-1.50222
-1.52864
-1.64108
-1.39931
-1.36693
-1.39035
-1.36225
-1.36298
-1.32788
-1.30688
-1.34434
-1.34554
-1.30511
-1.34217
-1.32727
-1.37716
-1.39237
-1.35617
-1.39515
-1.38186
-1.36474
-1.38896
-1.38737
-1.58724
-1.70699
-1.59151
-1.58131
-1.59935
-1.68705
-1.5323
-1.5985
-1.49782
-1.62708
-1.49382
-1.5359
-1.62679
-1.61805
0.0116258
-0.0110475
-0.00460874
0.0202344
0.0260576
0.00409632
-0.0198213
0.129428
0.16603
0.140293
0.137244
0.154106
0.117117
0.103156
0.120252
0.118088
0.117903
0.164619
0.203076
0.221064
0.174434
0.175142
0.222937
0.165408
0.374266
0.376953
0.16971
0.170327
0.19371
0.196211
0.183093
0.178594
0.174745
0.00544075
-0.0143208
-0.0178533
0.0206368
0.0214565
0.0030612
-0.0226511
0.00947815
-0.0585436
-0.0521234
0.00524851
-0.0497011
-0.0510384
0.164919
0.226159
0.203362
0.175442
0.173454
0.222012
0.166175
0.37209
0.370653
0.192193
0.153163
0.190881
0.135658
0.181217
0.133446
0.203369
-1.36153
-1.39472
-1.3914
-1.38476
-1.39363
-1.31567
-1.36754
-1.38186
-1.36446
-1.38678
-1.40183
-1.27574
-1.21901
-1.29356
-1.31526
-1.22555
-1.27117
-1.319
-1.13359
-1.12607
-1.10121
-1.13088
-1.13593
-1.09979
-1.12474
-1.27375
-1.29552
-1.2302
-1.31511
-1.22594
-1.31324
-1.2764
-1.31239
-1.31355
-1.25204
-1.21408
-1.30556
-1.27722
-1.30405
-1.26634
-1.20801
-1.28635
-1.29098
-1.36572
-1.36607
-1.28291
-1.29345
-1.33158
-1.34097
-1.32963
-1.34048
-1.60742
-1.64723
-1.57677
-1.63766
-1.57389
-1.62011
-1.63732
0.0445172
0.0341295
0.0808649
0.0925029
0.0256129
0.0477372
0.095111
0.0119964
-0.0732899
-0.0575595
0.0400222
0.017312
-0.0690483
0.0214314
-0.00313138
-0.0588549
0.0190013
-0.00649493
0.0175822
-0.0356769
-0.00107137
-0.0118169
0.061194
0.0547841
0.0842024
0.0390883
0.0340678
0.0901163
0.0169528
-0.0435768
-0.0492138
-0.0522851
-0.00644793
0.0841959
0.0259293
0.0818207
0.0265279
0.0870514
-0.00556745
0.326815
0.329458
0.25849
0.262981
0.346944
0.334069
0.266222
0.254789
0.337598
0.0432362
0.0273168
0.0920319
0.0790851
0.0917752
0.0442897
0.0256248
-0.0318321
-0.0422595
0.000486701
-0.00491089
-0.0423301
-0.016858
-0.017952
-0.0376849
-0.055591
-0.00610315
0.00828074
-0.034441
-0.0596906
-0.0102659
0.0471564
0.077464
0.0873658
0.0407234
0.0907174
0.0377229
0.0481544
0.247335
0.322101
0.254184
0.339753
0.25748
0.24432
0.326821
0.325289
0.32289
0.249724
0.262531
0.342281
0.332395
0.259733
0.252748
0.329707
-1.53385
-1.59423
-1.52638
-1.58983
-1.53182
-1.54077
-1.59575
-1.19935
-1.26628
-1.25183
-1.29078
-1.18756
-1.27103
-1.25837
-1.18165
-1.24479
-1.28881
-1.24937
-1.25547
-1.25556
-1.17074
-1.1802
-1.26491
-1.29178
-1.2535
-1.25918
-1.18833
-1.24958
-1.536
-1.55869
-1.54522
-1.58914
-1.54245
-1.53431
-1.56515
-1.3435
-1.33215
-1.31357
-1.37494
-1.32262
-1.33456
-1.35286
0.00976699
-0.00312914
-0.0340694
-0.0297364
0.00497607
0.00491896
-0.0272706
0.0448379
0.0656451
0.0407198
0.0803127
0.03796
0.0786174
0.0460255
-0.00542374
-0.0112683
-0.0278902
-0.0195998
-0.0128669
-0.0145873
-0.0084829
0.0274004
0.0102312
-0.0681121
-0.0827911
0.028788
0.00882059
-0.068626
0.22409
0.311765
0.245526
0.324017
0.24343
0.226489
0.307687
0.231279
0.277928
0.232148
0.276991
0.224454
0.238623
0.322312
0.303957
0.242093
0.218175
0.306927
0.0014672
-0.0352707
-0.0324676
-0.00514429
-0.00727552
-0.0314172
0.000451647
0.00202834
-0.0058511
-0.0309116
-0.0391788
0.0036079
-0.00763307
-0.032324
0.214698
0.300471
0.236676
0.320751
0.237814
0.21347
0.301678
0.235593
0.280092
0.234227
0.281206
0.21592
0.238855
0.321219
0.302902
0.238291
0.216984
0.30279
-1.37333
-1.53806
-1.44726
-1.43598
-1.36001
-1.45684
-1.45761
-0.0217884
-0.0625179
-0.0832757
-0.0245255
-0.028727
-0.0654772
-0.018296
-0.0244359
-0.037186
-0.0832912
-0.0701311
-0.0326818
-0.0280207
-0.0669371
-0.0943124
-0.102584
-0.117219
-0.101044
-0.0983922
-0.10317
-0.0990952
-0.0698152
-0.0809315
-0.181442
-0.141983
-0.0640012
-0.0850642
-0.184195
0.213934
0.286465
0.237734
0.312348
0.233559
0.224299
0.292066
0.286511
0.295228
0.285622
0.295738
0.209389
0.229941
0.311451
0.294361
0.231361
0.206939
0.294184
-0.0381431
-0.0800261
-0.0921821
-0.0567535
-0.0515577
-0.0774502
-0.0417934
-0.0356779
-0.0403851
-0.0725293
-0.0948566
-0.0308826
-0.047528
-0.0766844
0.205598
0.289643
0.227187
0.309967
0.228681
0.204632
0.291329
0.284708
0.294893
0.285055
0.29457
0.206825
0.230631
0.311871
0.293876
0.230447
0.206209
0.29307
0.180826
0.272091
0.207134
0.287453
0.203892
0.183999
0.268944
0.277446
0.265326
0.263311
0.269998
0.180815
0.200183
0.285245
0.267161
0.201754
0.181893
0.26817
0.17668
0.259355
0.192376
0.279207
0.194367
0.174373
0.260778
0.25455
0.26311
0.25933
0.26139
0.179068
0.200801
0.282428
0.266005
0.198002
0.181862
0.262817
0.0586533
0.00753282
-0.034859
0.0809954
-0.0333651
0.0832675
0.0563309
0.14564
0.238648
0.168642
0.251605
0.164761
0.149815
0.234364
0.20689
0.141384
0.204523
0.205365
0.205781
0.0612264
0.0098465
-0.0304173
0.0893497
-0.0320003
0.0861927
0.0646439
0.143408
0.159407
0.24829
0.230696
0.161473
0.141504
0.232555
0.0518835
-0.0365091
0.00167013
0.0798646
0.0777159
-0.0399047
0.054382
0.142013
0.225332
0.15339
0.24224
0.155579
0.140224
0.227243
0.202929
0.138668
0.204099
0.204666
0.201578
0.0503824
-0.000183681
0.0737372
-0.0407225
0.0754699
-0.0408541
0.0489163
0.142203
0.159472
0.245077
0.229357
0.158142
0.140746
0.228281
0.0325452
-0.0366641
-0.0667936
0.0454404
-0.0648463
0.0463845
0.0335048
0.146482
0.0837777
0.0372144
0.228289
0.146715
0.036742
0.227999
0.0287092
-0.0336513
-0.0605251
0.0506926
-0.0636814
0.048603
0.0288691
0.030285
-0.0685138
-0.042063
0.0452081
0.0429206
-0.0712254
0.0327754
0.147026
0.0859205
0.0401358
0.228655
0.147058
0.041229
0.228959
0.0287304
-0.0450048
0.0375583
-0.0758382
0.0398319
-0.0733222
0.0266606
0.0110028
-0.0744157
-0.100436
0.00792479
-0.0978032
0.0106005
0.00840768
-0.094329
-0.0921649
0.16427
-0.111362
0.0253431
0.136436
0.164529
0.0461212
0.136771
0.013155
-0.0718096
-0.092207
0.018003
-0.0959172
0.0138772
0.0172297
-0.0953975
-0.0963413
0.00409249
-0.102313
-0.0806059
0.00747905
0.00485881
-0.105149
0.00703973
-0.0854553
-0.0830141
0.167621
-0.160517
-0.00665444
0.145382
0.167405
-0.0352061
0.149179
-0.0936001
-0.0941258
0.00247833
-0.0828901
0.00153343
-0.104473
0.00204225
-0.105711
-0.00508487
-0.316872
-0.236947
-0.225361
-0.178997
-0.314505
-0.239299
-0.226194
-0.216622
-0.219912
-0.318933
-0.181132
-0.243389
-0.231225
-0.24122
-0.227796
-0.321584
-0.0324681
-0.108749
-0.126712
-0.0315704
-0.121801
-0.0277361
-0.0375834
-0.0192757
-0.144319
-0.142588
-0.0228107
-0.00840369
0.125679
-0.258156
0.0798639
0.081204
-0.0123219
-0.275651
-0.0287407
-0.105309
-0.113156
-0.0204208
-0.117796
-0.0238871
-0.0238864
-0.00366851
-0.133348
-0.135934
-0.001792
-0.0461587
-0.130048
-0.118021
-0.0334391
-0.0375057
-0.13252
-0.0414715
-0.00112659
-0.0785363
-0.081097
-0.0074765
-0.0187801
0.149569
-0.241109
0.0791793
0.0778013
-0.0153141
-0.223806
0.00468306
-0.127313
-0.115246
0.00176301
-0.0496263
-0.121261
-0.0449526
-0.141102
-0.0412793
-0.135373
-0.0554327
-0.351517
-0.267967
-0.282195
-0.215471
-0.350528
-0.268629
-0.284639
-0.38925
-0.329144
-0.322572
-0.404341
-0.298389
-0.264061
-0.285144
-0.272466
-0.354889
-0.21849
-0.27386
-0.29198
-0.271477
-0.289293
-0.357636
-0.104794
-0.159114
-0.2138
-0.0831725
-0.209047
-0.0773154
-0.108752
-0.200094
-0.182399
-0.177644
-0.194513
-0.0329818
0.210661
0.148667
0.087762
0.0883702
-0.0349087
0.149882
-0.100949
-0.155936
-0.198347
-0.074814
-0.202456
-0.0747246
-0.0984218
-0.252529
-0.246979
-0.238196
-0.261966
-0.117716
-0.225622
-0.164375
-0.0835022
-0.0801216
-0.22839
-0.117842
-0.320312
-0.308859
-0.303757
-0.324655
-0.0458778
0.213361
0.162642
0.0807916
0.0763782
-0.042051
0.159074
-0.278991
-0.254036
-0.262046
-0.269902
-0.119132
-0.16703
-0.0817405
-0.233452
-0.0809601
-0.232916
-0.1189
-0.43236
-0.302308
-0.356018
-0.244885
-0.427943
-0.304566
-0.361498
-0.486428
-0.531196
-0.392043
-0.355611
-0.353509
-0.528078
-0.489264
-0.47881
-0.452446
-0.448946
-0.483049
-0.481929
-0.349881
-0.52071
-0.390557
-0.478302
-0.351747
-0.524002
-0.456246
-0.421259
-0.452989
-0.425006
-0.43772
-0.247294
-0.308666
-0.369246
-0.306484
-0.367653
-0.440052
-0.468954
-0.415372
-0.420427
-0.46285
0.0542253
0.0568709
-0.00989475
0.175031
0.169528
0.0587989
-0.00638182
-0.498319
-0.4493
-0.444728
-0.503862
-0.562891
-0.497966
-0.492459
-0.572046
0.0661823
0.0220715
-0.0195699
0.179708
0.18286
0.0630073
-0.029779
-0.518062
-0.45425
-0.459633
-0.510182
-0.441075
-0.328722
-0.369378
-0.266217
-0.440558
-0.329688
-0.368727
-0.500678
-0.568148
-0.414128
-0.375063
-0.374693
-0.566108
-0.504867
-0.568294
-0.666306
-0.647884
-0.581104
-0.498257
-0.373026
-0.562457
-0.413257
-0.497418
-0.373662
-0.564059
-0.518962
-0.583028
-0.508296
-0.592755
-0.443407
-0.267166
-0.331759
-0.371145
-0.331018
-0.368786
-0.449944
-0.759575
-0.629486
-0.645692
-0.748745
0.163124
0.38801
0.0911407
0.300121
0.287247
0.166452
0.0829459
-0.796309
-0.723862
-0.71333
-0.799864
-0.827339
-0.815364
-0.803724
-0.814286
0.179609
0.479644
0.123302
0.308906
0.322371
0.169333
0.151911
-0.809228
-0.73437
-0.74621
-0.803858
-0.18596
-0.119564
-0.112647
-0.17724
-0.137382
-0.125783
-0.0991569
-0.354911
-0.366731
-0.347294
-0.335382
0.333401
-0.124662
-0.0937852
1.5994
0.338425
-0.108566
-0.154146
-0.164046
-0.110502
-0.0772513
-0.0880527
-0.0992911
-0.081247
0.0176334
-0.0588615
-0.0474593
-0.028395
-0.0692074
0.0266885
-0.0335664
-0.0491282
-0.0210931
0.0427848
-0.0588955
-0.0230818
0.0353459
-0.0629564
1.29779
0.39777
0.382859
-0.0264219
-0.351974
-0.345572
-0.326275
-0.332727
-0.114352
-0.0708235
-0.125461
-0.0687641
-0.0445366
-0.0504936
-0.0572258
-0.144949
-0.0783955
-0.136773
-0.080264
-0.0680244
-0.0893928
-0.0580139
-0.00347735
-0.04085
0.0501236
-0.000554471
-0.0135301
-0.031372
0.0585132
0.0707217
0.40922
1.2689
0.421986
-0.0126093
-0.686144
-0.690113
-0.593418
-0.591013
-0.251054
-0.263495
-0.222807
-0.215519
-0.245919
-0.23566
-0.206365
-0.211802
0.0234316
0.890562
0.118509
0.022008
0.133704
0.0227973
0.150558
0.918499
0.0218045
0.14402
-0.675579
-0.659114
-0.540075
-0.558294
-0.0945777
-0.0395607
0.407352
-0.0168541
-0.080564
-0.299184
-0.0185192
-0.106123
-0.443292
-0.0220048
0.418651
-0.118773
-0.417363
-0.0201295
-2.43199
-2.43711
-2.58186
-1.97011
-2.11004
0.469086
0.366782
0.483812
0.327515
0.284689
0.464656
0.661672
-1.36238
-1.21095
-1.56092
-0.323527
-0.360028
-0.349404
-0.341132
0.393201
0.486443
0.489061
0.253997
0.278944
0.330841
0.178672
-2.50417
-1.34212
-1.77522
-0.349813
-0.351997
-0.303312
-0.368643
0.847579
0.52091
0.571822
0.335887
0.410298
0.428638
0.36015
1.6507
1.74111
1.48569
1.54897
1.72813
1.66296
1.48251
1.53826
1.43819
1.35018
1.36106
1.43021
1.42025
1.44856
1.35118
1.64359
1.54333
1.71331
1.47027
1.72464
1.47598
1.63101
1.40892
1.17279
1.17386
1.23079
1.24583
1.2784
1.33824
1.6426
1.49165
1.59829
1.40589
1.68955
1.52839
1.45821
1.10518
1.32924
1.30185
1.03039
1.35094
1.06247
1.07818
1.63283
1.56656
1.40126
1.46373
1.46124
1.5524
1.64807
1.45381
1.34763
1.34656
1.43372
1.44869
1.35249
1.43887
1.00826
0.882998
1.11942
1.17807
0.927879
1.23196
0.973808
1.03486
1.30735
1.1694
1.00737
0.968063
1.26524
1.06298
0.333471
0.342873
0.247531
0.0973312
0.250816
0.150066
0.204941
1.68897
-3.16182
-2.58041
-2.65895
-2.74577
-3.23506
-2.63041
-2.65515
-0.279292
-0.361933
0.0625581
0.191911
-0.358914
0.245696
-0.365752
-0.434133
0.376567
-0.44896
0.0957877
-0.526379
-0.408757
0.294227
0.981592
-0.331572
0.206048
0.749778
0.786867
0.72612
0.168875
-0.23037
0.198237
0.250284
0.528998
0.103758
0.1159
0.499125
-0.295256
-0.195375
-0.282639
-0.0880503
0.0753791
-0.0870461
0.0646003
0.166461
-0.195276
0.14416
0.442032
0.097671
0.476095
0.0836009
0.478466
0.0176092
0.512393
0.482744
0.153488
0.162153
0.459067
0.445793
0.0296333
0.402261
0.407475
0.14875
0.135965
0.436307
0.0267162
0.353866
0.3734
0.386919
0.115888
0.125371
0.367422
0.335826
0.0249402
0.321435
0.325781
0.112307
0.350233
0.104579
0.712778
0.610125
0.584034
0.438994
0.537967
0.453885
0.524028
-0.0858896
-0.106772
-0.106658
-0.0834878
-0.108737
-0.0855643
-0.0824823
-0.140302
-0.129747
-0.1257
-0.142907
-0.139005
-0.128608
-0.142919
-0.116996
-0.120975
-0.177842
-0.173555
-0.184221
-0.173253
-0.176949
-0.127617
-0.121413
-0.126579
-0.122134
-0.128015
-0.125989
-0.120851
-0.139836
-0.123177
-0.12445
-0.138474
-0.125367
-0.142208
-0.144568
-0.0752211
-0.076055
-0.100571
-0.0999529
-0.0766177
-0.103063
-0.0730559
-0.078013
-0.106815
-0.0818295
-0.102851
-0.079864
-0.0805385
-0.105655
-0.0826136
-0.0804458
-0.0917786
-0.0883377
-0.0913252
-0.0824539
-0.0806898
-0.0400428
-0.0252246
-0.029652
-0.0445007
-0.0266541
-0.0440781
-0.0404706
-0.108877
-0.175374
-0.174039
-0.17479
-0.132834
-0.110384
-0.114241
-0.132838
-0.131207
-0.110739
-0.133452
-0.151466
-0.158118
-0.147265
-0.160988
-0.145323
-0.150872
-0.157449
-0.156654
-0.163447
-0.167007
-0.0711709
-0.0914935
-0.0678834
-0.0919665
-0.0689548
-0.0713448
-0.089317
-0.0479468
-0.0199079
-0.0426826
-0.0195946
-0.0223016
-0.044345
-0.047083
-0.0827724
-0.0819759
-0.10132
-0.0808382
-0.082605
-0.0867914
-0.127193
-0.111245
-0.108799
-0.129349
-0.108368
-0.127183
-0.129527
-0.171077
-0.183167
-0.174487
-0.190114
-0.171688
-0.174586
-0.188641
-0.153587
-0.158723
-0.16023
-0.152276
-0.158414
-0.165993
-0.0807753
-0.0863922
-0.0816213
-0.0803613
-0.0818909
-0.0791293
-0.0805127
-0.0885226
-0.0824412
-0.0860694
-0.0811479
-0.0787684
-0.0405912
-0.0236568
-0.0455304
-0.02151
-0.0196992
-0.0397626
-0.0441459
-0.0319918
-0.0107092
-0.029168
-0.0111116
-0.0165696
-0.0310784
-0.0281389
-0.0836347
-0.0936361
-0.0895263
-0.0819275
-0.0813919
-0.0949623
-0.0859437
-0.0445751
-0.0382727
-0.0205617
-0.0133525
-0.0187335
-0.0409848
-0.0373077
-0.110796
-0.114011
-0.105777
-0.109361
-0.107873
-0.109808
-0.109737
-0.120705
-0.114371
-0.109309
-0.120267
-0.123329
-0.111406
-0.118902
-0.113355
-0.109551
-0.094712
-0.0942162
-0.111412
-0.096898
-0.110652
-0.149528
-0.155127
-0.146575
-0.156138
-0.0989967
-0.092396
-0.093118
-0.099707
-0.111472
-0.101231
-0.0992764
-0.100223
-0.11383
-0.121348
-0.112357
-0.106676
-0.119294
-0.122155
-0.110824
-0.117004
-0.103574
-0.102171
-0.107729
-0.106538
-0.0942204
-0.0835747
-0.0852437
-0.107016
-0.106391
-0.130962
-0.155258
-0.137929
-0.156741
-0.130451
-0.137082
-0.15626
-0.0819102
-0.0303927
-0.01014
-0.00912813
-0.0232884
-0.00949127
-0.0310652
-0.0227583
-0.0607882
-0.0553806
-0.0750222
-0.074249
-0.0582581
-0.0538505
-0.0735815
-0.0278705
-0.0165431
-0.00822554
-0.00573896
-0.00810765
-0.0196488
-0.0253895
-0.0731459
-0.065915
-0.0709004
-0.0656087
-0.0723304
-0.0578313
-0.0710218
-0.0494916
-0.0707972
-0.051202
-0.0546965
-0.0694489
-0.098929
-0.0898491
-0.0883409
-0.0978471
-0.0890603
-0.0998757
-0.0983899
-0.1436
-0.153085
-0.152141
-0.144233
-0.14464
-0.15134
-0.100598
-0.0933494
-0.0944399
-0.100162
-0.144401
-0.139333
-0.145826
-0.139581
-0.139836
-0.148592
-0.144101
-0.0906585
-0.101819
-0.101716
-0.13745
-0.15969
-0.136068
-0.145333
-0.138096
-0.135188
-0.146846
-0.153178
-0.142177
-0.153679
-0.144186
-0.100921
-0.093551
-0.0994323
-0.0944756
-0.100787
-0.095455
-0.100085
-0.139347
-0.147785
-0.142061
-0.0820921
-0.085629
-0.0805308
-0.0230306
-0.0206127
-0.00512798
-0.00490804
-0.00336261
-0.0277667
-0.0173514
-0.0491323
-0.0695923
-0.0468204
-0.0679337
-0.0437917
-0.0523127
-0.0678603
-0.0725322
-0.0807034
-0.0551161
-0.0836434
-0.0619413
-0.084982
-0.0685104
-0.0988316
-0.144076
-0.165322
-0.1439
-0.145252
-0.14423
-0.140736
-0.142558
-0.149306
-0.106618
-0.104135
-0.0821005
-0.091274
-0.104953
-0.0818571
-0.106853
-0.13084
-0.153431
-0.128834
-0.15515
-0.129564
-0.129311
-0.105281
-0.0804337
-0.0887936
-0.107393
-0.0796824
-0.105352
-0.106553
-0.136594
-0.146518
-0.125943
-0.134005
-0.125456
-0.127605
-0.134804
-0.138671
-0.116811
-0.136384
-0.117829
-0.12731
-0.130178
-0.122223
-0.14039
-0.139862
-0.13919
-0.128511
-0.120266
-0.134297
-0.154351
-0.135991
-0.144205
-0.136166
-0.13218
-0.144428
-0.0983117
-0.0900217
-0.0972301
-0.0931959
-0.0974057
-0.0984547
-0.0926164
-0.0959561
-0.0851199
-0.0812031
-0.0933052
-0.0946728
-0.0840348
-0.094883
-0.0141665
-0.0595219
-0.020113
-0.078148
-0.0250464
-0.0216052
-0.00965957
-0.00110584
-0.00907182
0.00336161
0.00184778
-0.0128828
-0.00330608
-0.0727394
-0.0763929
-0.0546821
-0.0835349
-0.0504917
-0.071704
-0.0835272
-0.0367998
-0.0325152
-0.0666944
-0.0333521
-0.0291439
-0.0676071
-0.085868
-0.0709609
-0.0694305
-0.0698553
-0.0894965
-0.0845299
-0.0824816
-0.080886
-0.0889025
-0.0889715
-0.0848981
-0.0904585
-0.0880219
-0.0591373
-0.0655784
-0.0607993
-0.0846998
-0.0947427
-0.0787084
-0.0953105
-0.0857603
-0.0977818
-0.0938747
-0.0861108
-0.0755346
-0.0666233
-0.0799192
-0.0814563
-0.069065
-0.0792975
-0.075439
-0.126232
-0.134883
-0.115636
-0.134863
-0.12634
-0.114844
-0.133862
-0.0842575
-0.0671037
-0.073119
-0.0853021
-0.0672784
-0.0832855
-0.086377
-0.124974
-0.112914
-0.133517
-0.1344
-0.113451
-0.123614
-0.1317
-0.0916044
-0.0546076
-0.0785596
-0.087917
-0.0852632
-0.0748131
-0.0944168
-0.0877306
-0.08785
-0.0673096
-0.108099
-0.0765721
-0.0835206
-0.0897722
-0.133702
-0.138785
-0.134235
-0.14072
-0.0873598
-0.0821529
-0.0787128
-0.0896037
-0.109945
-0.106265
-0.118791
-0.125562
-0.104714
-0.111358
-0.125687
-0.0992274
-0.0697569
-0.0742415
-0.0902817
-0.0748257
-0.0927161
-0.0971868
-0.0777748
-0.0766951
-0.0780657
-0.136761
-0.13557
-0.0803178
-0.0726089
-0.0890991
-0.117166
-0.108278
-0.123617
-0.1279
-0.110653
-0.114605
-0.129901
-0.515942
-0.536541
-0.516992
-0.544076
-0.516397
-0.516929
-0.54506
-0.509192
-0.523721
-0.509405
-0.531403
-0.508203
-0.510379
-0.53229
-0.260433
-0.265285
-0.267932
-0.267387
-0.269383
-0.276487
-0.278737
-0.273936
-0.290083
-0.279346
-0.275094
-0.292454
-0.230822
-0.209338
-0.211459
-0.230565
-0.228637
-0.208755
-0.23196
-0.249738
-0.247931
-0.269058
-0.267631
-0.24599
-0.269736
-0.25069
-0.264506
-0.261866
-0.20421
-0.199907
-0.195687
-0.198529
-0.201113
-0.206782
-0.198716
-0.215168
-0.208036
-0.207137
-0.211535
-0.279844
-0.268423
-0.274039
-0.279308
-0.270192
-0.28069
-0.278851
-0.263905
-0.270754
-0.26525
-0.268451
-0.262203
-0.268162
-0.261568
-0.221515
-0.223635
-0.235792
-0.23349
-0.221898
-0.237893
-0.222539
-0.277254
-0.26446
-0.272542
-0.276731
-0.273309
-0.268307
-0.279483
-0.25719
-0.263128
-0.260093
-0.261161
-0.32276
-0.334144
-0.311444
-0.321574
-0.314695
-0.316854
-0.320202
-0.282659
-0.263395
-0.265621
-0.283363
-0.28325
-0.265579
-0.284688
-0.278292
-0.267949
-0.267482
-0.262989
-0.266429
-0.258741
-0.254926
-0.259068
-0.266401
-0.26763
-0.265757
-0.181161
-0.230754
-0.213609
-0.218732
-0.212944
-0.223695
-0.220473
-0.231516
-0.230027
-0.23186
-0.230137
-0.23141
-0.220352
-0.213378
-0.215314
-0.225701
-0.212251
-0.223784
-0.222528
-0.23753
-0.237695
-0.257563
-0.243874
-0.235784
-0.239683
-0.242145
-0.193566
-0.193537
-0.196257
-0.19762
-0.19796
-0.240573
-0.257629
-0.231194
-0.235799
-0.235952
-0.231006
-0.224035
-0.218815
-0.236422
-0.235784
-0.214304
-0.228439
-0.247068
-0.224961
-0.225606
-0.238149
-0.23682
-0.245637
-0.386185
-0.403748
-0.399073
-0.403335
-0.386863
-0.369081
-0.361657
-0.362487
-0.372268
-0.356711
-0.371705
-0.371962
-0.368648
-0.371141
-0.354719
-0.358816
-0.353362
-0.369226
-0.370031
-0.395547
-0.419476
-0.404228
-0.415869
-0.400481
-0.399245
-0.517478
-0.517271
-0.40838
-0.400418
-0.410207
-0.401668
-0.378637
-0.354724
-0.359085
-0.371685
-0.35492
-0.379516
-0.373593
-0.390198
-0.383817
-0.397557
-0.387026
-0.384487
-0.395548
-0.391326
-0.381916
-0.379585
-0.359208
-0.357901
-0.356686
-0.383679
-0.378116
-0.389133
-0.400141
-0.38565
-0.400681
-0.384841
-0.388404
-0.400078
-0.385774
-0.385979
-0.260753
-0.242666
-0.253189
-0.244787
-0.262656
-0.259838
-0.233884
-0.22338
-0.233043
-0.223902
-0.18992
-0.204129
-0.225541
-0.199292
-0.18587
-0.193874
-0.200958
-0.241816
-0.376962
-0.359779
-0.355118
-0.372453
-0.358854
-0.378842
-0.372257
-0.355444
-0.356848
-0.353375
-0.362314
-0.355244
-0.357758
-0.355117
-0.380802
-0.37544
-0.400565
-0.400756
-0.400719
-0.376365
-0.380898
-0.381614
-0.39395
-0.394946
-0.374439
-0.396198
-0.376563
-0.378284
-0.512107
-0.51295
-0.38855
-0.382313
-0.391434
-0.387734
-0.380993
-0.389239
-0.388077
-0.382849
-0.393318
-0.37595
-0.391469
-0.377918
-0.379997
-0.389873
-0.388626
-0.383832
-0.331453
-0.327603
-0.328044
-0.326883
-0.335636
-0.359923
-0.357336
-0.373492
-0.364693
-0.376731
-0.358576
-0.357743
-0.217413
-0.211286
-0.21069
-0.215135
-0.212517
-0.214399
-0.209332
-0.226025
-0.20768
-0.211417
-0.212574
-0.249573
-0.233999
-0.234868
-0.248886
-0.242585
-0.237387
-0.244773
-0.291718
-0.241207
-0.276448
-0.260811
-0.303297
-0.290155
-0.181237
-0.18047
-0.184783
-0.18085
-0.182643
-0.179065
-0.18018
-0.186264
-0.176543
-0.173666
-0.181975
-0.178614
-0.186083
-0.182353
-0.219786
-0.220471
-0.239755
-0.232777
-0.23849
-0.196404
-0.205787
-0.193631
-0.214479
-0.19323
-0.195363
-0.207909
-0.22171
-0.225601
-0.23106
-0.221391
-0.225891
-0.223879
-0.21955
-0.222564
-0.216756
-0.221055
-0.22878
-0.216531
-0.231071
-0.222036
-0.229267
-0.224615
-0.224709
-0.231958
-0.230044
-0.225825
-0.230005
-0.223878
-0.228722
-0.222661
-0.237544
-0.225185
-0.221354
-0.214786
-0.215791
-0.220582
-0.221856
-0.229166
-0.214858
-0.215364
-0.223178
-0.218472
-0.242774
-0.243838
-0.243155
-0.243434
-0.231346
-0.239022
-0.228217
-0.241432
-0.231451
-0.228409
-0.239651
-0.22393
-0.229268
-0.217969
-0.218531
-0.228222
-0.216484
-0.225546
-0.225005
-0.235905
-0.239882
-0.216558
-0.217475
-0.21831
-0.220806
-0.221761
-0.215062
-0.221822
-0.204832
-0.202479
-0.200834
-0.23475
-0.191227
-0.213097
-0.230197
-0.220667
-0.226802
-0.219226
-0.224861
-0.224105
-0.223246
-0.218553
-0.213474
-0.216437
-0.211094
-0.210572
-0.21437
-0.213615
-0.211521
-0.515966
-0.523466
-0.530613
-0.528633
-0.51638
-0.530478
-0.52869
-0.438494
-0.438485
-0.414437
-0.427791
-0.414927
-0.437838
-0.438926
-0.439279
-0.414747
-0.439951
-0.428497
-0.439339
-0.415574
-0.44009
-0.494882
-0.496178
-0.507931
-0.496342
-0.493642
-0.509041
-0.497468
-0.437416
-0.438269
-0.414163
-0.428431
-0.438127
-0.413752
-0.437884
-0.434804
-0.410487
-0.431172
-0.427786
-0.433349
-0.412658
-0.433326
-0.244263
-0.256955
-0.256849
-0.173257
-0.175808
-0.176533
-0.180894
-0.175847
-0.181996
-0.174783
-0.223144
-0.217671
-0.174604
-0.167834
-0.169139
-0.178243
-0.18591
-0.194785
-0.184054
-0.189449
-0.185765
-0.182366
-0.194659
-0.193888
-0.202638
-0.184301
-0.19288
-0.191
-0.20531
-0.186959
-0.229567
-0.218427
-0.221679
-0.228248
-0.223032
-0.230343
-0.225442
-0.223405
-0.232909
-0.225393
-0.244038
-0.183091
-0.176084
-0.181728
-0.176166
-0.180796
-0.1785
-0.18409
-0.218904
-0.203343
-0.224592
-0.236773
-0.230453
-0.242298
-0.251285
-0.248086
-0.237592
-0.241278
-0.211486
-0.203826
-0.197923
-0.211483
-0.20718
-0.199291
-0.218225
-0.202299
-0.191731
-0.194399
-0.193894
-0.200091
-0.194966
-0.195882
-0.245063
-0.259609
-0.239314
-0.238367
-0.260346
-0.298936
-0.310963
-0.302463
-0.311185
-0.300483
-0.299276
-0.186842
-0.17952
-0.187426
-0.175916
-0.190169
-0.18506
-0.181947
-0.170526
-0.182884
-0.171516
-0.170737
-0.174143
-0.170387
-0.17018
-0.186972
-0.193307
-0.176528
-0.180567
-0.190374
-0.182766
-0.189335
-0.263655
-0.252706
-0.241212
-0.26337
-0.241134
-0.263926
-0.263875
-0.301906
-0.300113
-0.311285
-0.303535
-0.300231
-0.313942
-0.304261
-0.261825
-0.251448
-0.236845
-0.261808
-0.239128
-0.26053
-0.263336
-0.296723
-0.301094
-0.320467
-0.32018
-0.297203
-0.300136
-0.31951
-0.17715
-0.168243
-0.167408
-0.176037
-0.164224
-0.172568
-0.179727
-0.214344
-0.228399
-0.226174
-0.20677
-0.212766
-0.229857
-0.207454
-0.265748
-0.248459
-0.242559
-0.264177
-0.264327
-0.242141
-0.264709
-0.299614
-0.302827
-0.322225
-0.321423
-0.304277
-0.298271
-0.320712
-0.29892
-0.297949
-0.20403
-0.193416
-0.185007
-0.194357
-0.190749
-0.207
-0.192779
-0.233384
-0.243174
-0.23552
-0.20641
-0.188292
-0.2086
-0.225402
-0.218107
-0.218487
-0.212689
-0.234679
-0.209886
-0.183258
-0.16772
-0.165445
-0.192847
-0.164712
-0.190078
-0.183806
-0.163683
-0.160835
-0.155985
-0.149659
-0.164453
-0.153809
-0.161145
-0.178465
-0.177824
-0.179011
-0.182948
-0.181313
-0.176111
-0.181436
-0.176652
-0.179405
-0.18379
-0.180039
-0.178062
-0.17659
-0.178755
-0.152859
-0.150032
-0.149546
-0.156192
-0.154034
-0.149608
-0.153855
-0.186236
-0.170217
-0.161295
-0.184056
-0.191064
-0.198041
-0.1848
-0.188371
-0.183428
-0.193095
-0.197773
-0.198948
-0.203685
-0.208935
-0.213575
-0.199675
-0.201621
-0.208045
-0.189435
-0.183687
-0.180349
-0.190724
-0.180477
-0.192082
-0.189121
-0.185836
-0.203873
-0.195353
-0.204475
-0.186182
-0.183942
-0.167421
-0.168968
-0.154472
-0.169497
-0.194367
-0.20552
-0.180959
-0.185638
-0.188912
-0.187267
-0.196448
-0.208328
-0.206214
-0.217278
-0.210402
-0.213786
-0.202614
-0.211427
-0.182488
-0.185051
-0.18834
-0.183789
-0.186194
-0.181915
-0.185781
-0.212865
-0.225881
-0.214858
-0.226827
-0.228475
-0.219115
-0.219434
-0.331385
-0.344597
-0.347698
-0.338375
-0.328488
-0.33194
-0.348895
-0.34281
-0.332711
-0.330581
-0.329852
-0.33422
-0.3279
-0.337214
-0.340924
-0.342189
-0.349583
-0.339591
-0.339652
-0.338104
-0.342021
-0.338962
-0.344645
-0.331279
-0.32654
-0.326526
-0.343558
-0.340376
-0.217669
-0.233135
-0.217822
-0.225686
-0.227939
-0.218802
-0.206041
-0.216056
-0.216172
-0.246491
-0.213754
-0.208429
-0.209234
-0.217003
-0.231989
-0.224928
-0.219923
-0.228303
-0.222243
-0.22473
-0.207098
-0.209334
-0.212779
-0.215318
-0.213412
-0.211313
-0.206807
-0.211009
-0.216686
-0.219171
-0.210568
-0.210867
-0.22225
-0.210195
-0.21425
-0.245553
-0.218696
-0.244101
-0.207639
-0.224631
-0.244426
-0.236853
-0.228597
-0.246837
-0.224614
-0.240616
-0.226668
-0.294677
-0.270295
-0.265419
-0.250882
-0.246909
-0.24088
-0.253432
-0.250275
-0.247202
-0.240589
-0.227867
-0.219806
-0.223304
-0.233387
-0.218353
-0.236859
-0.22926
-0.235807
-0.236879
-0.234873
-0.252051
-0.231197
-0.248759
-0.234499
-0.23597
-0.224434
-0.229809
-0.208245
-0.220937
-0.23319
-0.256605
-0.241204
-0.199064
-0.230813
-0.240967
-0.263418
-0.263379
-0.262384
-0.262045
-0.246664
-0.245115
-0.232977
-0.240536
-0.231546
-0.241148
-0.240587
-0.221457
-0.294471
-0.254078
-0.293554
-0.270948
-0.251326
-0.276712
-0.272755
-0.348484
-0.334613
-0.352562
-0.344067
-0.350731
-0.34394
-0.350366
-0.325672
-0.32482
-0.324878
-0.326204
-0.346126
-0.32482
-0.321937
-0.323978
-0.34688
-0.341378
-0.342317
-0.353043
-0.340732
-0.341861
-0.342887
-0.339537
-0.351351
-0.337255
-0.353613
-0.345678
-0.35346
-0.345343
-0.351731
-0.348571
-0.324265
-0.326183
-0.326853
-0.348041
-0.224226
-0.264107
-0.24748
-0.261407
-0.239484
-0.234006
-0.248362
-0.232545
-0.23957
-0.248603
-0.252046
-0.242474
-0.222862
-0.237174
-0.229447
-0.230507
-0.243342
-0.237148
-0.236375
-0.218381
-0.249601
-0.246259
-0.228135
-0.231068
-0.235418
-0.232905
-0.244371
-0.219528
-0.223537
-0.223047
-0.219924
-0.217513
-0.227533
-0.220091
-0.218011
-0.222577
-0.215988
-0.218609
-0.213923
-0.224379
-0.219265
-0.480944
-0.479741
-0.480214
-0.482914
-0.481631
-0.479538
-0.48216
-0.432253
-0.433095
-0.400555
-0.417278
-0.401223
-0.432706
-0.430959
-0.432686
-0.402728
-0.430507
-0.418457
-0.432101
-0.403106
-0.431073
-0.477211
-0.476829
-0.473338
-0.481965
-0.476235
-0.474601
-0.482818
-0.432976
-0.433933
-0.398914
-0.416668
-0.43304
-0.397874
-0.434376
-0.432063
-0.39279
-0.43697
-0.41425
-0.432094
-0.39576
-0.43394
-0.195094
-0.214475
-0.190141
-0.204382
-0.191836
-0.193054
-0.212933
-0.154753
-0.144494
-0.150195
-0.155223
-0.15642
-0.148357
-0.15301
-0.230765
-0.251399
-0.23269
-0.246542
-0.229745
-0.228363
-0.257398
-0.22733
-0.25902
-0.191062
-0.218336
-0.203873
-0.218837
-0.190424
-0.204165
-0.21931
-0.191623
-0.217134
-0.204263
-0.219384
-0.191768
-0.204389
-0.219039
-0.215565
-0.213236
-0.217299
-0.21516
-0.215984
-0.217729
-0.214086
-0.206669
-0.238126
-0.208468
-0.209211
-0.205989
-0.281966
-0.289873
-0.269192
-0.290074
-0.268231
-0.284606
-0.287963
-0.276691
-0.277979
-0.236933
-0.244749
-0.226266
-0.232123
-0.22904
-0.238257
-0.231925
-0.284767
-0.287309
-0.299386
-0.232797
-0.226177
-0.216051
-0.220206
-0.231605
-0.217942
-0.228569
-0.212299
-0.225468
-0.226763
-0.208617
-0.213948
-0.227368
-0.207887
-0.280195
-0.275163
-0.277675
-0.275715
-0.28592
-0.289875
-0.270608
-0.290323
-0.270889
-0.286594
-0.288967
-0.300663
-0.285508
-0.30145
-0.284223
-0.234325
-0.251092
-0.22846
-0.246379
-0.235729
-0.234145
-0.17771
-0.166609
-0.164838
-0.178496
-0.169174
-0.17644
-0.179589
-0.196318
-0.211014
-0.18991
-0.202265
-0.194213
-0.19119
-0.210369
-0.218648
-0.247574
-0.229734
-0.244243
-0.234149
-0.179585
-0.169543
-0.17187
-0.17761
-0.18036
-0.174633
-0.176647
-0.170136
-0.166403
-0.1689
-0.168324
-0.152942
-0.152489
-0.159737
-0.161707
-0.15275
-0.154474
-0.161587
-0.148509
-0.140598
-0.142668
-0.147651
-0.164391
-0.162085
-0.161541
-0.160872
-0.163269
-0.163125
-0.163015
-0.146914
-0.142466
-0.132305
-0.137324
-0.141679
-0.13713
-0.147844
-0.164632
-0.165442
-0.166635
-0.165194
-0.1591
-0.152682
-0.158563
-0.161319
-0.162259
-0.154065
-0.157216
-0.137853
-0.145687
-0.152561
-0.144618
-0.136999
-0.141176
-0.142905
-0.145939
-0.152236
-0.159252
-0.159819
-0.164302
-0.158545
-0.162696
-0.162435
-0.155225
-0.161782
-0.164774
-0.165011
-0.163453
-0.218785
-0.225472
-0.230959
-0.222034
-0.218778
-0.23375
-0.223678
-0.169928
-0.168245
-0.160116
-0.162178
-0.168962
-0.163686
-0.169437
-0.171
-0.164479
-0.167816
-0.165633
-0.325553
-0.324079
-0.325188
-0.325565
-0.349153
-0.327713
-0.336129
-0.349362
-0.337017
-0.350401
-0.351535
-0.321855
-0.322622
-0.430615
-0.428691
-0.407697
-0.411921
-0.427265
-0.415679
-0.43216
-0.409252
-0.428833
-0.415069
-0.415293
-0.409187
-0.41555
-0.430849
-0.318338
-0.346165
-0.32122
-0.332689
-0.346088
-0.330984
-0.343522
-0.348064
-0.319717
-0.318745
-0.226179
-0.216191
-0.221416
-0.211643
-0.220454
-0.217298
-0.217702
-0.229334
-0.232501
-0.216421
-0.215117
-0.22926
-0.216471
-0.226189
-0.222856
-0.260667
-0.231854
-0.234445
-0.247383
-0.244876
-0.232057
-0.220104
-0.211623
-0.21544
-0.219071
-0.214741
-0.213591
-0.217624
-0.226646
-0.215861
-0.223458
-0.219383
-0.219683
-0.217068
-0.224422
-0.241651
-0.253419
-0.226745
-0.232673
-0.230193
-0.232759
-0.250399
-0.285908
-0.342677
-0.292201
-0.316677
-0.247372
-0.247607
-0.232447
-0.236899
-0.230343
-0.232937
-0.252551
-0.228519
-0.23554
-0.249578
-0.225081
-0.215764
-0.213106
-0.219549
-0.21165
-0.220912
-0.221912
-0.24042
-0.206475
-0.255975
-0.243694
-0.22864
-0.260084
-0.21429
-0.295757
-0.29059
-0.332038
-0.309581
-0.295398
-0.320094
-0.275951
-0.213912
-0.233306
-0.211095
-0.214807
-0.432148
-0.428966
-0.402971
-0.410459
-0.42869
-0.432511
-0.409734
-0.419237
-0.401005
-0.41667
-0.398842
-0.416713
-0.419447
-0.402231
-0.269296
-0.252204
-0.227735
-0.265855
-0.267974
-0.245834
-0.340398
-0.314178
-0.294967
-0.364619
-0.330286
-0.321519
-0.206605
-0.219104
-0.218932
-0.202785
-0.20697
-0.202299
-0.244476
-0.209165
-0.255758
-0.307611
-0.28564
-0.281017
-0.231421
-0.213969
-0.231533
-0.221652
-0.224028
-0.212141
-0.213251
-0.221327
-0.220074
-0.214379
-0.259123
-0.280248
-0.258923
-0.253578
-0.275211
-0.264145
-0.245439
-0.250083
-0.258535
-0.243811
-0.213169
-0.262655
-0.240186
-0.217985
-0.207924
-0.225012
-0.206939
-0.200764
-0.19949
-0.211288
-0.208022
-0.220424
-0.217366
-0.202456
-0.208485
-0.209613
-0.215834
-0.221125
-0.243016
-0.24187
-0.243162
-0.257987
-0.236127
-0.256692
-0.245684
-0.235512
-0.224559
-0.247949
-0.20679
-0.262157
-0.225622
-0.215889
-0.207842
-0.203596
-0.217217
-0.207409
-0.209867
-0.199956
-0.211815
-0.231314
-0.2269
-0.235571
-0.211878
-0.235948
-0.22306
-0.22284
-0.457906
-0.458254
-0.451893
-0.464996
-0.457604
-0.451849
-0.464887
-0.336481
-0.359222
-0.364453
-0.36754
-0.366887
-0.3343
-0.361152
-0.338025
-0.369517
-0.362898
-0.36943
-0.338697
-0.368694
-0.362609
-0.321607
-0.346537
-0.355389
-0.351596
-0.352776
-0.349273
-0.318792
-0.322535
-0.355143
-0.356461
-0.350843
-0.354001
-0.324199
-0.349924
-0.457546
-0.449471
-0.452878
-0.451923
-0.455572
-0.454873
-0.453462
-0.330615
-0.356976
-0.362666
-0.360975
-0.332459
-0.360077
-0.355586
-0.328139
-0.355643
-0.351664
-0.358502
-0.325924
-0.357722
-0.353467
-0.14236
-0.134235
-0.131819
-0.142226
-0.133608
-0.144411
-0.140808
-0.157244
-0.158364
-0.152187
-0.158219
-0.154403
-0.159736
-0.157073
-0.160383
-0.16382
-0.150896
-0.154892
-0.150995
-0.160352
-0.164378
-0.137176
-0.126382
-0.129759
-0.137827
-0.128132
-0.135699
-0.139178
-0.168721
-0.164755
-0.155247
-0.160087
-0.164905
-0.167385
-0.160314
-0.171902
-0.172391
-0.170044
-0.16869
-0.172908
-0.168963
-0.171851
-0.177132
-0.170347
-0.170802
-0.175763
-0.164335
-0.174208
-0.177131
-0.197871
-0.197847
-0.207796
-0.206907
-0.196975
-0.200121
-0.208133
-0.157714
-0.130939
-0.151599
-0.159493
-0.130299
-0.159435
-0.158975
-0.156136
-0.161903
-0.128351
-0.150661
-0.15718
-0.128313
-0.158722
-0.189218
-0.21633
-0.196039
-0.214398
-0.188992
-0.195669
-0.214266
-0.129955
-0.132697
-0.133711
-0.129108
-0.129671
-0.133769
-0.130681
-0.118593
-0.11149
-0.111311
-0.118527
-0.111428
-0.118828
-0.117763
-0.145605
-0.146886
-0.136824
-0.140544
-0.144811
-0.137395
-0.14746
-0.166249
-0.166489
-0.165628
-0.167924
-0.165149
-0.165621
-0.16623
-0.233193
-0.20265
-0.205047
-0.20447
-0.235509
-0.236558
-0.234724
-0.23209
-0.214268
-0.234128
-0.235332
-0.236389
-0.230067
-0.217859
-0.217155
-0.230436
-0.238021
-0.236688
-0.216583
-0.240019
-0.235427
-0.238357
-0.238756
-0.165664
-0.165469
-0.167647
-0.166074
-0.16617
-0.166825
-0.1646
-0.142952
-0.154552
-0.140389
-0.14941
-0.150427
-0.14242
-0.150784
-0.119583
-0.112184
-0.112249
-0.119157
-0.111825
-0.119932
-0.119968
-0.149214
-0.149683
-0.135752
-0.155782
-0.140202
-0.150834
-0.151954
-0.192471
-0.191933
-0.160484
-0.173058
-0.174846
-0.164953
-0.186206
-0.165781
-0.163072
-0.237515
-0.205042
-0.206188
-0.207827
-0.236293
-0.242182
-0.246595
-0.236278
-0.221656
-0.245064
-0.243864
-0.238637
-0.214072
-0.222612
-0.211365
-0.222917
-0.213299
-0.212431
-0.223548
-0.240975
-0.23832
-0.220962
-0.2417
-0.24318
-0.238704
-0.240232
-0.168529
-0.166308
-0.177335
-0.173393
-0.169656
-0.16581
-0.175982
-0.171809
-0.176622
-0.163006
-0.169505
-0.170636
-0.180114
-0.162753
-0.180075
-0.194811
-0.187284
-0.186975
-0.185032
-0.179107
-0.188052
-0.170645
-0.16023
-0.171445
-0.174595
-0.177414
-0.162947
-0.167793
-0.121547
-0.110871
-0.107271
-0.127154
-0.106655
-0.127329
-0.122711
-0.13689
-0.147892
-0.145696
-0.154185
-0.146104
-0.138119
-0.145769
-0.14299
-0.154952
-0.153615
-0.16051
-0.145786
-0.152536
-0.152191
-0.12567
-0.114935
-0.10881
-0.129634
-0.11035
-0.131689
-0.124194
-0.14097
-0.150569
-0.162082
-0.14828
-0.149779
-0.152112
-0.139851
-0.165128
-0.157332
-0.172466
-0.161125
-0.170991
-0.165689
-0.155671
-0.246646
-0.22965
-0.228403
-0.245987
-0.231567
-0.251663
-0.238473
-0.215356
-0.225255
-0.225005
-0.215041
-0.214551
-0.226307
-0.215544
-0.203147
-0.205757
-0.210227
-0.221115
-0.205149
-0.215874
-0.211331
-0.380164
-0.367953
-0.371783
-0.36274
-0.361348
-0.367944
-0.382931
-0.226737
-0.229517
-0.243526
-0.226684
-0.225979
-0.222546
-0.226895
-0.254264
-0.264826
-0.26496
-0.260881
-0.264859
-0.253651
-0.262661
-0.214465
-0.210341
-0.216704
-0.228652
-0.212683
-0.224658
-0.221539
-0.388909
-0.387054
-0.384226
-0.383759
-0.388247
-0.385016
-0.387792
-0.397303
-0.393457
-0.398504
-0.391579
-0.398642
-0.397062
-0.392255
-0.287156
-0.240354
-0.237547
-0.263315
-0.265419
-0.281064
-0.252915
-0.215836
-0.255121
-0.244454
-0.236861
-0.259873
-0.208489
-0.208937
-0.209889
-0.212448
-0.207438
-0.210809
-0.210001
-0.378471
-0.356367
-0.364534
-0.358085
-0.357869
-0.359395
-0.377005
-0.38462
-0.366909
-0.363026
-0.370727
-0.363078
-0.384293
-0.366123
-0.255871
-0.21813
-0.242131
-0.245041
-0.263033
-0.266097
-0.245087
-0.21322
-0.219937
-0.220163
-0.209576
-0.224944
-0.211615
-0.21104
-0.211957
-0.212728
-0.212758
-0.227367
-0.219047
-0.209639
-0.214582
-0.233956
-0.252399
-0.244486
-0.230967
-0.252483
-0.23093
-0.233107
-0.22451
-0.219617
-0.219956
-0.240962
-0.234942
-0.216428
-0.22648
-0.221576
-0.234905
-0.22147
-0.216018
-0.229891
-0.215075
-0.225456
-0.228536
-0.251351
-0.240718
-0.230175
-0.239171
-0.228296
-0.232571
-0.220899
-0.22083
-0.226785
-0.233205
-0.232226
-0.218063
-0.223122
-0.348067
-0.339252
-0.36664
-0.369402
-0.369729
-0.340728
-0.346498
-0.351402
-0.371459
-0.369077
-0.343935
-0.371923
-0.343924
-0.351804
-0.386038
-0.386143
-0.380457
-0.382541
-0.38535
-0.386817
-0.381243
-0.360197
-0.372154
-0.367032
-0.371316
-0.362315
-0.36649
-0.364917
-0.374274
-0.35489
-0.360666
-0.356666
-0.353681
-0.375505
-0.355416
-0.360821
-0.369376
-0.345109
-0.360059
-0.34713
-0.354365
-0.349584
-0.204301
-0.207265
-0.198012
-0.215925
-0.198271
-0.214263
-0.205816
-0.207814
-0.213982
-0.209097
-0.219127
-0.207201
-0.213466
-0.212974
-0.315123
-0.345971
-0.349218
-0.350816
-0.347588
-0.316768
-0.345229
-0.313242
-0.345273
-0.350462
-0.340474
-0.34633
-0.310631
-0.343165
-0.435505
-0.429293
-0.430341
-0.436301
-0.436004
-0.430048
-0.43634
-0.302363
-0.328074
-0.33449
-0.344093
-0.338322
-0.299009
-0.331444
-0.304948
-0.343543
-0.337612
-0.34735
-0.307965
-0.341192
-0.33447
-0.287153
-0.311072
-0.327484
-0.325056
-0.325885
-0.316979
-0.285965
-0.287868
-0.326789
-0.327707
-0.317817
-0.326544
-0.289058
-0.318113
-0.419547
-0.407639
-0.410704
-0.415176
-0.417459
-0.413145
-0.417025
-0.294488
-0.325089
-0.331447
-0.330923
-0.296434
-0.32894
-0.3235
-0.292177
-0.327033
-0.319518
-0.328856
-0.290734
-0.327455
-0.32124
-0.167138
-0.156754
-0.166279
-0.15627
-0.11664
-0.0962077
-0.106863
-0.105168
-0.0933777
-0.11227
-0.121326
-0.164491
-0.141971
-0.17142
-0.168125
-0.165003
-0.140358
-0.168366
-0.114078
-0.115324
-0.10231
-0.0902853
-0.114675
-0.0980912
-0.111202
-0.17361
-0.179558
-0.182443
-0.165028
-0.16374
-0.163844
-0.13659
-0.16634
-0.161938
-0.13845
-0.166166
-0.123986
-0.109959
-0.151504
-0.134282
-0.120845
-0.153604
-0.112815
-0.101416
-0.107865
-0.0940257
-0.194516
-0.204064
-0.185075
-0.185664
-0.195856
-0.202465
-0.183797
-0.170951
-0.163927
-0.151364
-0.160657
-0.147083
-0.162709
-0.161958
-0.152755
-0.344705
-0.338018
-0.368985
-0.364425
-0.368625
-0.345976
-0.336819
-0.354969
-0.365036
-0.362406
-0.351735
-0.364253
-0.351633
-0.356244
-0.337877
-0.364096
-0.346528
-0.335209
-0.337165
-0.352785
-0.339453
-0.359
-0.343251
-0.360231
-0.340273
-0.342181
-0.358069
-0.34432
-0.340375
-0.354435
-0.344716
-0.342949
-0.357093
-0.33874
-0.353032
-0.364691
-0.350982
-0.361598
-0.349706
-0.35487
-0.363766
-0.333418
-0.330082
-0.332737
-0.329073
-0.329965
-0.331541
-0.331878
-0.323814
-0.330989
-0.333887
-0.328971
-0.329681
-0.329154
-0.326158
-0.366481
-0.333014
-0.328828
-0.36752
-0.326997
-0.322446
-0.37078
-0.330844
-0.370617
-0.323067
-0.225294
-0.276361
-0.227847
-0.272848
-0.22266
-0.212112
-0.218543
-0.230661
-0.235668
-0.215691
-0.219365
-0.226875
-0.229619
-0.223353
-0.242985
-0.234804
-0.221886
-0.240177
-0.230075
-0.222593
-0.216965
-0.215551
-0.230963
-0.225803
-0.217356
-0.241604
-0.260758
-0.295338
-0.227693
-0.208963
-0.262975
-0.222289
-0.260671
-0.334167
-0.338007
-0.341153
-0.340851
-0.33582
-0.336611
-0.338423
-0.326947
-0.331202
-0.328679
-0.335374
-0.329308
-0.326145
-0.332065
-0.225435
-0.183901
-0.194483
-0.205014
-0.192393
-0.227579
-0.202921
-0.234196
-0.211918
-0.215183
-0.239637
-0.236004
-0.211803
-0.235809
-0.234322
-0.226367
-0.214123
-0.213124
-0.235441
-0.229706
-0.212482
-0.282061
-0.223623
-0.233085
-0.22279
-0.249717
-0.233294
-0.218277
-0.24929
-0.216668
-0.220323
-0.214436
-0.213746
-0.221414
-0.220545
-0.211536
-0.244797
-0.252681
-0.234029
-0.258477
-0.296984
-0.29731
-0.324276
-0.314991
-0.320801
-0.297523
-0.29431
-0.273392
-0.270524
-0.235065
-0.276406
-0.23681
-0.271377
-0.278851
-0.295118
-0.314665
-0.307668
-0.289697
-0.317611
-0.293186
-0.291218
-0.399639
-0.380562
-0.39319
-0.39051
-0.400047
-0.392753
-0.390151
-0.26831
-0.270189
-0.233417
-0.273598
-0.231955
-0.269725
-0.272505
-0.290134
-0.287754
-0.308252
-0.298627
-0.310159
-0.28842
-0.289523
-0.291489
-0.313331
-0.290704
-0.300734
-0.292492
-0.311862
-0.290677
-0.257442
-0.262585
-0.222583
-0.266408
-0.2203
-0.259432
-0.264469
-0.398269
-0.385747
-0.391977
-0.390372
-0.397689
-0.391591
-0.392094
-0.262212
-0.268268
-0.224121
-0.267363
-0.226038
-0.260545
-0.268546
-0.184316
-0.185378
-0.171099
-0.210577
-0.17134
-0.207036
-0.184845
-0.204446
-0.173296
-0.162998
-0.165338
-0.200589
-0.175706
-0.208217
-0.209882
-0.204065
-0.210954
-0.159104
-0.146072
-0.142012
-0.157375
-0.148847
-0.156749
-0.158787
-0.110277
-0.0748479
-0.106157
-0.106566
-0.109633
-0.107302
-0.107687
-0.10158
-0.0776802
-0.0828979
-0.098335
-0.107269
-0.111731
-0.107486
-0.110887
-0.128172
-0.12977
-0.152461
-0.147191
-0.12982
-0.128115
-0.147246
-0.051583
-0.0289479
-0.039808
-0.0435956
-0.058037
-0.0319723
-0.0459164
-0.0498721
-0.0499857
-0.0366167
-0.0358416
-0.0509967
-0.0358275
-0.0493672
-0.121285
-0.144528
-0.122448
-0.136622
-0.123713
-0.117552
-0.139748
-0.126394
-0.129381
-0.151788
-0.14701
-0.145434
-0.128406
-0.127771
-0.0704793
-0.0829938
-0.0733346
-0.0655366
-0.0745585
-0.0727798
-0.0653748
-0.0511861
-0.0497508
-0.0375282
-0.0361427
-0.0379814
-0.0503975
-0.0498478
-0.130809
-0.181003
-0.145331
-0.175757
-0.18512
-0.184647
-0.170725
-0.212412
-0.184977
-0.170244
-0.213091
-0.150317
-0.155491
-0.136686
-0.13941
-0.151737
-0.135682
-0.154159
-0.178356
-0.173882
-0.156927
-0.201848
-0.175461
-0.160647
-0.204829
-0.153438
-0.143478
-0.156058
-0.138659
-0.154777
-0.141536
-0.155419
-0.265095
-0.241839
-0.264465
-0.240284
-0.19184
-0.180628
-0.166464
-0.187984
-0.195636
-0.160202
-0.160886
-0.194547
-0.270248
-0.316289
-0.267981
-0.279297
-0.326236
-0.326732
-0.326511
-0.327401
-0.325243
-0.328799
-0.324186
-0.305409
-0.296884
-0.304719
-0.3086
-0.300047
-0.309813
-0.303902
-0.221376
-0.233728
-0.236439
-0.218751
-0.231395
-0.276936
-0.278663
-0.228503
-0.22161
-0.211105
-0.222054
-0.20893
-0.222129
-0.223852
-0.211942
-0.246699
-0.257515
-0.270705
-0.27676
-0.252996
-0.230195
-0.237825
-0.230599
-0.239353
-0.351793
-0.330439
-0.352579
-0.359683
-0.336859
-0.358107
-0.26827
-0.248955
-0.267767
-0.251066
-0.211033
-0.180781
-0.187528
-0.196499
-0.185492
-0.212587
-0.196029
-0.193859
-0.159579
-0.228034
-0.210621
-0.233901
-0.208513
-0.233719
-0.228329
-0.207879
-0.191106
-0.158452
-0.157851
-0.191768
-0.280707
-0.267485
-0.290642
-0.246622
-0.225918
-0.225177
-0.205481
-0.206568
-0.225175
-0.227974
-0.206343
-0.29882
-0.301657
-0.289823
-0.281176
-0.303259
-0.282315
-0.297129
-0.308166
-0.294445
-0.309167
-0.297479
-0.309303
-0.306937
-0.291157
-0.218346
-0.22797
-0.227159
-0.215136
-0.244844
-0.268494
-0.280105
-0.248031
-0.26863
-0.248079
-0.244709
-0.241053
-0.257201
-0.272519
-0.279724
-0.268368
-0.24965
-0.245238
-0.270285
-0.288397
-0.283323
-0.230074
-0.297329
-0.251605
-0.238365
-0.27279
-0.294208
-0.262265
-0.255283
-0.291534
-0.27312
-0.255144
-0.158156
-0.218513
-0.197629
-0.158294
-0.208608
-0.151695
-0.167079
-0.193991
-0.193409
-0.171831
-0.175052
-0.176326
-0.194208
-0.193209
-0.277385
-0.274453
-0.32048
-0.27948
-0.267452
-0.290674
-0.279862
-0.268022
-0.271932
-0.269701
-0.275392
-0.263841
-0.28399
-0.272195
-0.277233
-0.291118
-0.271369
-0.290153
-0.285042
-0.350799
-0.327348
-0.349811
-0.343848
-0.32192
-0.345048
-0.227391
-0.242669
-0.242421
-0.223118
-0.222086
-0.242588
-0.227466
-0.263372
-0.276718
-0.257037
-0.273337
-0.263021
-0.260966
-0.27591
-0.227017
-0.232671
-0.227478
-0.238305
-0.210692
-0.239873
-0.229624
-0.24729
-0.251476
-0.280407
-0.267083
-0.252963
-0.245079
-0.268885
-0.294248
-0.300401
-0.286423
-0.279956
-0.299244
-0.295546
-0.279111
-0.286862
-0.272871
-0.291913
-0.280665
-0.292892
-0.286191
-0.273666
-0.273278
-0.296758
-0.255284
-0.263979
-0.2732
-0.299248
-0.255387
-0.184704
-0.167765
-0.165412
-0.185101
-0.168257
-0.186159
-0.183228
-0.191093
-0.192278
-0.173704
-0.168554
-0.172735
-0.19202
-0.19141
-0.266505
-0.257362
-0.300857
-0.248287
-0.302592
-0.250724
-0.263603
-0.228194
-0.242848
-0.242821
-0.223557
-0.242998
-0.224537
-0.227727
-0.243719
-0.267606
-0.247697
-0.279012
-0.243989
-0.24764
-0.267176
-0.230495
-0.239819
-0.256882
-0.234591
-0.235511
-0.241573
-0.229458
-0.243726
-0.249457
-0.27854
-0.265992
-0.249287
-0.243991
-0.265956
-0.146606
-0.197325
-0.186418
-0.196118
-0.149973
-0.183865
-0.193526
-0.15729
-0.201934
-0.187498
-0.194921
-0.150675
-0.19216
-0.193245
-0.247531
-0.251679
-0.206865
-0.254155
-0.210374
-0.244972
-0.255893
-0.372625
-0.339954
-0.367038
-0.358509
-0.374286
-0.365616
-0.356436
-0.240249
-0.242175
-0.20469
-0.251809
-0.201905
-0.242933
-0.249091
-0.226578
-0.207272
-0.207834
-0.227772
-0.205416
-0.229436
-0.224616
-0.356093
-0.338098
-0.350709
-0.347184
-0.354942
-0.351979
-0.347915
-0.294311
-0.269514
-0.313141
-0.316684
-0.293637
-0.270334
-0.313378
-0.233543
-0.21532
-0.208863
-0.231464
-0.209365
-0.231493
-0.234214
-0.0579309
-0.0611552
-0.0599341
-0.0704468
-0.0577866
-0.061698
-0.0633392
-0.0451001
-0.216092
0.0209871
-0.0214851
-0.118003
-0.0147779
-0.0191536
-0.0219165
0.0483497
0.0868825
0.0808832
0.0347822
0.081705
0.02594
-0.123843
-0.109673
-0.111065
0.00798809
0.0530994
0.0299463
0.00992164
0.00833902
0.0533398
0.00931545
-0.0260746
-0.0604669
-0.0272154
-0.0546197
-0.0298048
-0.0240143
-0.0561471
-0.11309
-0.084812
-0.0849955
-0.101707
-0.085683
-0.121974
-0.105052
-0.226948
-0.196584
-0.183711
-0.215841
-0.182603
-0.227819
-0.213953
-0.137379
-0.15105
-0.143244
-0.152268
-0.138394
-0.142987
-0.150705
-0.110949
-0.0875781
-0.08915
-0.105724
-0.0891745
-0.110293
-0.106283
-0.148078
-0.182753
-0.142019
-0.154247
-0.166697
-0.159975
-0.150687
-0.0797684
-0.0863387
-0.107362
-0.140349
-0.0829026
-0.11927
-0.125551
-0.150877
-0.12621
-0.227915
-0.200765
-0.183189
-0.217166
-0.184745
-0.22652
-0.219813
-0.14209
-0.171122
-0.169367
-0.189272
-0.152189
-0.137671
-0.146077
-0.181215
-0.255877
-0.280388
-0.24951
-0.261718
-0.255877
-0.281179
-0.249549
-0.187441
-0.18498
-0.174168
-0.169836
-0.174312
-0.187043
-0.185195
-0.332274
-0.276415
-0.326877
-0.25305
-0.263573
-0.304192
-0.255386
-0.262078
-0.241429
-0.228123
-0.26339
-0.236033
-0.265279
-0.237817
-0.239171
-0.187478
-0.169549
-0.188091
-0.245419
-0.298741
-0.252537
-0.25394
-0.244253
-0.228808
-0.223995
-0.246823
-0.241045
-0.225734
-0.240672
-0.229913
-0.261307
-0.276753
-0.276724
-0.256431
-0.257379
-0.277711
-0.260515
-0.249602
-0.246347
-0.282374
-0.239134
-0.297571
-0.242186
-0.243346
-0.210736
-0.244866
-0.209444
-0.313496
-0.304913
-0.315237
-0.299881
-0.276652
-0.276471
-0.272626
-0.299235
-0.273751
-0.33116
-0.32003
-0.330358
-0.242085
-0.198596
-0.200596
-0.254844
-0.281891
-0.265863
-0.247698
-0.254873
-0.282026
-0.248434
-0.178298
-0.167051
-0.162476
-0.183377
-0.166409
-0.181211
-0.180188
-0.186498
-0.185706
-0.174446
-0.170746
-0.173789
-0.18714
-0.18613
-0.259105
-0.243789
-0.29859
-0.245976
-0.26115
-0.294896
-0.246173
-0.335883
-0.279438
-0.338435
-0.168656
-0.187337
-0.187621
-0.234202
-0.22303
-0.262027
-0.234297
-0.260445
-0.232225
-0.236774
-0.22963
-0.236419
-0.282217
-0.23868
-0.22763
-0.187062
-0.168204
-0.187143
-0.240447
-0.250911
-0.294665
-0.249099
-0.242415
-0.284475
-0.331653
-0.332281
-0.231345
-0.215874
-0.244116
-0.239807
-0.243881
-0.23205
-0.215245
-0.273334
-0.273269
-0.277124
-0.234229
-0.246222
-0.286735
-0.248424
-0.220417
-0.198271
-0.217736
-0.195384
-0.216008
-0.193262
-0.222424
-0.17723
-0.163948
-0.164102
-0.175714
-0.163853
-0.175632
-0.177239
-0.289225
-0.255774
-0.256094
-0.180469
-0.177204
-0.14011
-0.157209
-0.157801
-0.184616
-0.179189
-0.289441
-0.265976
-0.31153
-0.256881
-0.310561
-0.257558
-0.288079
-0.223697
-0.282901
-0.238831
-0.228582
-0.311951
-0.299089
-0.310831
-0.27933
-0.304722
-0.279247
-0.309107
-0.303152
-0.308964
-0.239623
-0.198162
-0.196637
-0.284028
-0.278527
-0.303066
-0.292936
-0.285105
-0.278262
-0.302327
-0.288975
-0.275639
-0.294995
-0.1673
-0.186324
-0.185686
-0.227481
-0.20299
-0.218817
-0.197297
-0.220609
-0.200904
-0.223992
-0.223324
-0.234413
-0.276451
-0.232573
-0.225221
-0.216919
-0.252906
-0.273809
-0.224533
-0.169063
-0.154381
-0.124488
-0.172753
-0.289992
-0.330058
-0.327879
-0.12871
-0.175041
-0.174295
-0.162122
-0.177451
-0.124925
-0.166083
-0.118841
-0.165929
-0.170665
-0.159665
-0.167828
-0.121635
-0.156665
-0.093406
-0.146498
-0.138281
-0.138227
-0.0961872
-0.136082
-0.134113
-0.103529
-0.151712
-0.140636
-0.142737
-0.100244
-0.143544
-0.145945
-0.21428
-0.194555
-0.187772
-0.20985
-0.191488
-0.210607
-0.212802
-0.325048
-0.310377
-0.321311
-0.322379
-0.327309
-0.319377
-0.320337
-0.248884
-0.263174
-0.229854
-0.28261
-0.233156
-0.246725
-0.265659
-0.25895
-0.243316
-0.281131
-0.294645
-0.261662
-0.24165
-0.278203
-0.202841
-0.185078
-0.185354
-0.205493
-0.181825
-0.207494
-0.19911
-0.309602
-0.301902
-0.302092
-0.308939
-0.308162
-0.303342
-0.309893
-0.241975
-0.2606
-0.228211
-0.273785
-0.244176
-0.225057
-0.257976
-0.229672
-0.21046
-0.240515
-0.25883
-0.227007
-0.213067
-0.24346
-0.0734443
-0.0601686
-0.0414846
-0.0822567
-0.0403464
-0.0842299
-0.0740737
-0.102104
-0.125319
-0.113861
-0.137066
-0.103612
-0.113708
-0.124482
-0.0766116
-0.0557716
-0.0529129
-0.0860362
-0.0789694
-0.0496851
-0.0844836
-0.100359
-0.114799
-0.136897
-0.123237
-0.11375
-0.0991475
-0.123499
0.0406788
0.0523355
0.0657769
0.0250309
0.0481004
0.0624676
0.0186196
-0.0962128
0.0845526
0.117207
0.100124
0.0943718
-0.0953222
0.108983
-0.10614
0.110722
0.0985226
0.123725
-0.0776502
0.0980358
0.11348
-0.017841
-0.0246628
-0.0104432
-0.031935
-0.0181444
-0.00331284
-0.0302402
-0.123673
-0.152794
-0.131311
-0.159925
-0.130734
-0.125595
-0.155958
-0.172872
-0.145907
-0.174087
-0.158307
-0.168902
-0.143669
-0.176984
0.00668974
-0.0291092
-0.0272001
-0.0138892
0.00676107
-0.0265714
-0.0149371
-0.150108
-0.168165
-0.141321
-0.153988
-0.146808
-0.142942
-0.162174
-0.129204
-0.155715
-0.132055
-0.161378
-0.133761
-0.126961
-0.163692
-0.0633745
-0.0431304
-0.06349
-0.0485593
-0.0654327
-0.0610891
-0.046437
-0.161841
-0.147134
-0.156879
-0.171208
-0.146824
-0.164711
-0.168856
-0.0915955
-0.121896
-0.121116
-0.140233
-0.0921434
-0.123866
-0.122361
-0.0909797
-0.119282
-0.121873
-0.14027
-0.0923247
-0.125956
-0.121168
-0.187051
-0.211177
-0.202698
-0.227533
-0.188402
-0.208836
-0.202203
-0.165985
-0.1458
-0.158727
-0.176977
-0.147023
-0.18173
-0.164291
-0.167952
-0.187711
-0.150598
-0.162872
-0.149223
-0.169265
-0.185646
-0.185116
-0.225151
-0.198668
-0.20018
-0.204924
-0.201136
-0.183206
-0.271631
-0.244131
-0.256224
-0.291146
-0.294193
-0.24591
-0.268911
-0.243658
-0.282501
-0.241816
-0.17724
-0.164089
-0.164076
-0.175567
-0.164341
-0.177202
-0.175593
-0.208906
-0.185483
-0.193805
-0.200832
-0.195636
-0.202625
-0.207212
-0.17644
-0.17445
-0.163903
-0.165141
-0.164878
-0.174514
-0.176395
-0.284054
-0.26375
-0.310468
-0.255775
-0.308347
-0.286033
-0.254384
-0.276961
-0.237573
-0.23793
-0.225348
-0.247409
-0.234297
-0.215407
-0.246253
-0.215209
-0.225855
-0.239215
-0.253969
-0.282567
-0.261321
-0.261836
-0.253808
-0.239123
-0.239155
-0.262627
-0.281949
-0.2533
-0.262078
-0.253465
-0.239502
-0.249299
-0.24576
-0.248633
-0.247474
-0.245004
-0.250068
-0.247571
-0.255659
-0.267089
-0.258543
-0.279618
-0.293586
-0.291935
-0.281414
-0.291281
-0.281007
-0.275279
-0.285305
-0.276885
-0.296984
-0.286683
-0.284802
-0.297184
-0.277495
-0.278154
-0.289833
-0.274275
-0.26309
-0.249752
-0.271923
-0.256228
-0.26928
-0.253556
-0.265828
-0.191387
-0.213585
-0.231142
-0.203719
-0.190075
-0.215321
-0.204375
-0.171981
-0.189716
-0.152082
-0.167412
-0.153074
-0.170836
-0.190978
-0.263087
-0.242025
-0.287994
-0.251385
-0.24025
-0.266003
-0.284857
-0.173847
-0.17064
-0.164712
-0.165104
-0.172589
-0.171234
-0.144841
-0.204389
-0.180871
-0.191522
-0.199963
-0.190208
-0.199528
-0.205165
-0.257683
-0.266487
-0.257184
-0.176343
-0.17399
-0.164232
-0.165218
-0.165949
-0.174174
-0.176116
-0.238053
-0.270393
-0.233911
-0.241693
-0.241537
-0.22287
-0.261674
-0.22633
-0.264869
-0.238736
-0.226772
-0.248117
-0.215208
-0.237529
-0.215719
-0.225925
-0.249383
-0.240248
-0.253501
-0.28104
-0.265796
-0.25272
-0.263644
-0.241592
-0.240071
-0.262731
-0.252741
-0.280785
-0.25285
-0.239417
-0.263482
-0.227036
-0.237822
-0.216256
-0.251563
-0.215668
-0.24979
-0.228299
-0.181386
-0.197086
-0.215119
-0.198137
-0.194996
-0.182018
-0.197865
-0.163303
-0.145377
-0.15744
-0.175101
-0.145262
-0.163037
-0.176214
-0.162762
-0.177659
-0.156995
-0.144693
-0.14452
-0.176013
-0.163195
-0.181395
-0.214042
-0.192182
-0.198246
-0.181024
-0.193444
-0.198087
-0.236268
-0.249863
-0.230164
-0.241668
-0.25081
-0.235078
-0.231357
-0.216402
-0.198451
-0.218922
-0.179591
-0.171866
-0.189369
-0.177375
-0.185053
-0.172372
-0.186386
-0.21001
-0.232481
-0.230756
-0.189427
-0.178643
-0.180871
-0.170634
-0.183336
-0.187298
-0.179934
-0.239876
-0.246078
-0.254438
-0.236553
-0.253124
-0.235913
-0.241433
-0.264452
-0.262085
-0.249035
-0.255017
-0.265452
-0.261074
-0.254263
-0.252261
-0.255366
-0.24899
-0.272189
-0.289958
-0.283261
-0.293379
-0.272432
-0.282771
-0.293115
-0.227242
-0.230957
-0.230887
-0.264343
-0.246968
-0.266971
-0.257302
-0.263374
-0.258993
-0.259177
-0.289586
-0.287913
-0.298531
-0.294784
-0.290335
-0.287239
-0.297802
-0.22634
-0.214577
-0.233584
-0.244763
-0.245569
-0.214978
-0.226132
-0.239616
-0.248851
-0.261465
-0.271241
-0.257232
-0.23981
-0.248064
-0.227597
-0.233016
-0.247912
-0.215839
-0.24497
-0.216541
-0.226974
-0.238782
-0.257074
-0.270734
-0.248612
-0.257683
-0.238856
-0.247885
-0.232087
-0.248893
-0.229194
-0.238407
-0.227667
-0.233802
-0.247578
-0.172788
-0.172842
-0.163766
-0.165445
-0.168533
-0.154071
-0.170147
-0.187923
-0.174772
-0.188214
-0.178235
-0.188329
-0.180306
-0.186256
-0.258924
-0.245599
-0.259666
-0.239346
-0.221293
-0.246162
-0.183295
-0.177603
-0.167701
-0.178443
-0.176295
-0.176073
-0.185211
-0.197455
-0.232206
-0.219281
-0.254617
-0.230685
-0.212544
-0.247677
-0.183287
-0.19822
-0.198643
-0.218395
-0.182639
-0.199727
-0.199215
-0.165881
-0.14538
-0.161684
-0.180858
-0.146125
-0.180379
-0.164582
-0.1641
-0.178812
-0.144528
-0.161284
-0.144586
-0.163596
-0.180385
-0.185164
-0.218015
-0.201251
-0.200089
-0.199512
-0.201014
-0.184517
-0.226684
-0.232955
-0.21426
-0.244996
-0.214607
-0.245767
-0.225932
-0.240404
-0.251895
-0.265019
-0.272418
-0.241383
-0.260071
-0.250553
-0.227672
-0.235896
-0.21585
-0.252356
-0.228386
-0.215447
-0.249159
-0.23959
-0.257274
-0.270659
-0.248595
-0.257598
-0.238709
-0.249743
-0.0800156
-0.0951001
-0.0829355
-0.0451437
-0.0384108
-0.0952493
-0.0842779
-0.106712
-0.138207
-0.109558
-0.136185
-0.108397
-0.106795
-0.136062
-0.0799858
-0.0381087
-0.0854929
-0.0941837
-0.0390036
-0.0940924
-0.079547
-0.0779077
-0.0911589
-0.0935547
-0.0350402
-0.0959695
-0.0385972
-0.0744087
-0.106416
-0.142756
-0.111079
-0.136238
-0.112213
-0.10716
-0.135077
-0.0794503
-0.0404052
-0.0935324
-0.0960498
-0.0971643
-0.0395604
-0.0802355
-0.0391668
-0.0464059
-0.0306948
0.0093698
0.00692528
-0.0468949
-0.0378094
-0.0770482
-0.110549
-0.10788
-0.0887461
-0.0809517
-0.103576
-0.086255
-0.0424254
-0.00321446
-0.0361474
-0.0560299
0.00325761
-0.0474916
-0.0503642
-0.0647721
-0.0851032
-0.0298717
-0.0786915
-0.0700364
-0.025029
-0.0791076
-0.0908825
-0.127944
-0.112522
-0.0941394
-0.0854985
-0.11835
-0.0999424
-0.0594287
-0.0107216
-0.0687345
-0.0643064
-0.0181085
-0.0533011
-0.0715545
-0.285259
-0.289263
-0.279769
-0.293481
-0.286241
-0.278619
-0.292978
-0.176946
-0.153645
-0.172373
-0.17375
-0.174132
-0.175108
-0.156052
-0.187068
-0.187099
-0.174889
-0.185341
-0.190143
-0.184437
-0.169572
-0.157806
-0.205262
-0.173557
-0.191654
-0.175356
-0.155629
-0.207442
-0.168306
-0.191514
-0.216189
-0.201618
-0.17531
-0.18559
-0.216618
-0.126546
-0.17353
-0.162741
-0.144387
-0.145487
-0.174969
-0.125038
-0.134508
-0.155173
-0.169921
-0.185255
-0.153272
-0.137042
-0.182646
-0.271873
-0.281859
-0.262979
-0.284408
-0.27053
-0.264121
-0.285346
-0.170551
-0.150921
-0.16994
-0.16789
-0.172687
-0.167847
-0.148638
-0.160078
-0.155509
-0.133541
-0.157712
-0.157738
-0.157661
-0.136235
-0.151277
-0.202635
-0.17112
-0.185893
-0.152769
-0.169176
-0.201338
-0.141085
-0.156991
-0.186809
-0.175427
-0.138662
-0.159097
-0.189205
-0.0054227
0.00693315
0.00786129
0.0479974
0.00671272
-0.00536402
0.00699181
-0.123411
-0.127537
-0.116825
-0.147461
-0.113602
-0.12541
-0.146233
-0.0262852
-0.0223392
0.0275208
-0.0170567
-0.0192769
-0.00991934
-0.0317749
-0.131292
-0.137838
-0.120179
-0.149168
-0.124152
-0.128162
-0.150789
-0.0461147
-0.0322477
-0.00341633
-0.0246737
-0.0370332
-0.0366126
-0.0394186
-0.21415
-0.192211
-0.211678
-0.165362
-0.166401
-0.161903
-0.171608
-0.16126
-0.170619
-0.166258
-0.180981
-0.197169
-0.198677
-0.138709
-0.147636
-0.142104
-0.168617
-0.155747
-0.160419
-0.169754
-0.167467
-0.162544
-0.171852
-0.164326
-0.172534
-0.167438
-0.184413
-0.170232
-0.18644
-0.195987
-0.177577
-0.195637
-0.152111
-0.148297
-0.153211
-0.0972673
-0.126767
-0.119027
-0.149546
-0.114626
-0.141506
-0.101254
-0.152799
-0.162282
-0.160402
-0.134536
-0.143617
-0.131225
-0.111693
-0.137096
-0.115145
-0.115246
-0.139865
-0.123574
-0.155864
-0.12868
-0.158864
-0.107517
-0.1819
-0.165658
-0.179825
-0.164203
-0.156963
-0.166347
-0.0395276
-0.0483407
-0.0305464
0.00946771
0.00858317
-0.0535762
-0.0376876
-0.0429926
0.00216783
-0.0367587
-0.0732163
0.00506061
-0.0630012
-0.0461598
-0.0480641
-0.0812738
-0.0562961
0.00172033
-0.044661
-0.0828696
-0.0018986
-0.0488911
-0.00183334
-0.0548669
-0.0798512
-0.0824327
-0.0016379
-0.049139
-0.122322
-0.172484
-0.142794
-0.159549
-0.141596
-0.12354
-0.171604
-0.117831
-0.136008
-0.154909
-0.165587
-0.136712
-0.117169
-0.16648
-0.251084
-0.281262
-0.258023
-0.266798
-0.252435
-0.25789
-0.265263
-0.139305
-0.133632
-0.11872
-0.110594
-0.12077
-0.138332
-0.133182
-0.135056
-0.134512
-0.109685
-0.136703
-0.135372
-0.133865
-0.109611
-0.106376
-0.154237
-0.116441
-0.135829
-0.119161
-0.102964
-0.157671
-0.11545
-0.135076
-0.164608
-0.152475
-0.116487
-0.134055
-0.163637
-0.0791579
-0.0859281
-0.0826728
-0.0797532
-0.0817673
-0.0887048
-0.0766643
-0.0951017
-0.0989843
-0.0976341
-0.108788
-0.0959709
-0.0984311
-0.105395
-0.228342
-0.276722
-0.248523
-0.239184
-0.226184
-0.249399
-0.241521
-0.135511
-0.132726
-0.11649
-0.105071
-0.136884
-0.114855
-0.131639
-0.126705
-0.103351
-0.121196
-0.0913272
-0.124326
-0.105947
-0.123025
-0.0980838
-0.15211
-0.113719
-0.127928
-0.100611
-0.11174
-0.148849
-0.104789
-0.101902
-0.112438
-0.107086
-0.101676
-0.104738
-0.115897
-0.150804
-0.145564
-0.149761
-0.0932234
-0.0743554
-0.132548
-0.074928
-0.129735
-0.140245
-0.142348
-0.143341
-0.0893257
-0.0842167
-0.122207
-0.0848905
-0.0943279
-0.0737857
-0.133241
-0.0735276
-0.133231
-0.128599
-0.118817
-0.131247
-0.141302
-0.137993
-0.140486
-0.07397
-0.0720892
-0.0770038
-0.0575121
-0.0805018
-0.0812043
-0.0866798
-0.0982504
-0.0945729
-0.0831209
-0.0742108
-0.044196
-0.0758027
-0.0222958
-0.0307504
-0.0850407
-0.125694
-0.110752
-0.12292
-0.102108
-0.0959673
-0.105746
-0.070242
-0.0826272
-0.0767155
-0.0750422
-0.0739161
-0.0732522
-0.0799375
-0.0597086
-0.0618747
-0.0674599
-0.0687692
-0.0658517
-0.0569333
-0.0707851
-0.193175
-0.232863
-0.232396
-0.2021
-0.194629
-0.231717
-0.19988
-0.112562
-0.122117
-0.0890658
-0.0996323
-0.0873426
-0.113987
-0.120234
-0.105454
-0.0809464
-0.10516
-0.0903712
-0.102473
-0.0812951
-0.110019
-0.0551219
-0.0660442
-0.0649845
-0.0556592
-0.0629137
-0.0574868
-0.0637006
-0.0513807
-0.0601898
-0.0621743
-0.0493971
-0.0537286
-0.0585374
-0.058938
-0.0809956
-0.0858781
-0.0760631
-0.0841665
-0.0834299
-0.0862894
-0.0818186
-0.0771294
-0.0809476
-0.0772927
-0.0872669
-0.0817481
-0.0762007
-0.0880783
-0.193574
-0.201499
-0.243179
-0.189222
-0.192764
-0.24487
-0.190522
-0.116775
-0.124114
-0.09059
-0.105848
-0.115338
-0.0924345
-0.126102
-0.123544
-0.101627
-0.136463
-0.115678
-0.124434
-0.100587
-0.135226
-0.0623331
-0.0687999
-0.0667163
-0.0624211
-0.0596575
-0.0690245
-0.0715985
-0.073561
-0.079727
-0.0859234
-0.0736033
-0.0748707
-0.0785662
-0.0843784
-0.0705644
-0.0643366
-0.0677177
0.0181395
-0.0131858
-0.0161235
-0.059633
-0.0601834
-0.0580893
0.0167962
-0.00799365
-0.00938182
-0.0553134
-0.0458773
-0.0526447
-0.0495998
-0.0397997
-0.0474943
-0.0807796
-0.0709292
-0.0802728
-0.0951037
-0.091199
-0.0921593
-0.0698763
-0.0786487
-0.0795223
-0.0885572
-0.0887705
-0.0853757
-0.0582983
-0.0534659
-0.0614775
-0.0772128
-0.0656614
-0.0755524
-0.0793264
-0.0844417
-0.0835013
-0.0768884
-0.0849056
-0.0802593
-0.0840487
-0.0627784
-0.0814716
-0.101294
-0.0551315
-0.083713
-0.0597667
-0.0578666
-0.154569
-0.144658
-0.171269
-0.154609
-0.15866
-0.164007
-0.150269
-0.107152
-0.119613
-0.085148
-0.107964
-0.0878679
-0.10442
-0.121792
-0.117248
-0.102042
-0.130043
-0.116875
-0.119315
-0.0998059
-0.128547
-0.0391826
-0.031671
-0.0604755
-0.0835853
-0.0633251
-0.0359756
-0.0349105
-0.0540579
-0.079493
-0.0522143
-0.0949863
-0.0571788
-0.0768741
-0.0492032
0.00803539
-0.0109995
-0.0216841
-0.0469499
-0.0232588
0.00942722
-0.0125296
-0.00049918
-0.0303023
-0.0454631
0.00450873
-0.027844
-0.00305598
0.00661213
-0.110116
-0.0918598
-0.100973
-0.10979
-0.108773
-0.103013
-0.110124
-0.100106
-0.117985
-0.0832849
-0.100516
-0.102643
-0.0805606
-0.116218
-0.0858278
-0.0611218
-0.107608
-0.0860117
-0.0830276
-0.0643968
-0.108117
-0.0297011
-0.0290915
-0.0584952
-0.0749968
-0.0337906
-0.0551779
-0.0257989
-0.0111659
-0.0346682
-0.000362958
-0.0577699
-0.00784089
-0.037951
-0.00476931
-0.0798746
-0.0728212
-0.0814384
-0.0561775
-0.0487465
-0.0561924
-0.0494463
-0.051818
-0.0442417
-0.00812819
-0.0147118
-0.0491229
-0.00682287
-0.0473177
-0.0458103
-0.0282185
-0.0400274
-0.0327787
-0.0299023
-0.0313015
-0.0414358
-0.0426687
-0.0119675
0.000942872
-0.00363791
-0.0450989
-0.0378049
-0.0470374
-0.0444768
-0.0982006
-0.118044
-0.132759
-0.0869553
-0.135016
-0.0957862
-0.0880013
0.173164
0.101554
0.124295
-0.0582753
-0.0156305
-0.0558202
-0.0275581
-0.0192662
-0.0535933
-0.05761
-0.0979728
-0.117766
-0.135135
-0.0859352
-0.13567
-0.0956659
-0.08758
0.00198153
0.00233035
-0.0607682
-0.0573842
-0.0233221
-0.0284139
-0.0230504
-0.0597683
-0.0583443
-0.0888873
-0.129791
-0.0855812
-0.114455
-0.0837369
-0.0921935
-0.126893
-0.0495361
-0.00946589
-0.0199437
-0.0505832
-0.0115738
-0.0475289
-0.0521053
0.0669931
0.0773959
0.0541651
-0.0280601
-0.0253536
-0.0036597
-0.00796463
-0.052632
-0.0558349
-0.0219358
-0.019226
-0.0150196
-0.053733
-0.0562688
-0.0861938
-0.113326
-0.0810315
-0.123113
-0.0846268
-0.0822978
-0.124372
-0.683907
-0.670199
-0.67198
-0.675998
-0.669761
-0.679075
-0.680509
-0.697842
-0.686067
-0.675517
-0.701057
-0.696589
-0.678809
-0.701275
-0.670615
-0.657532
-0.650703
-0.654
-0.648966
-0.677084
-0.655322
-0.660966
-0.650332
-0.65349
-0.648894
-0.647103
-0.667347
-0.6473
-0.576619
-0.578259
-0.616463
-0.627753
-0.616257
-0.624788
-0.616741
-0.622264
-0.617309
-0.683198
-0.671603
-0.655677
-0.658835
-0.684719
-0.675499
-0.681723
-0.682185
-0.680515
-0.685557
-0.681581
-0.702511
-0.710637
-0.688417
-0.691048
-0.70842
-0.695556
-0.706804
-0.706
-0.691635
-0.709723
-0.687367
-0.711995
-0.70531
-0.693659
-0.708561
-0.685828
-0.676554
-0.680526
-0.679215
-0.615001
-0.611552
-0.634134
-0.636863
-0.612202
-0.614702
-0.638313
-0.56992
-0.570176
-0.579512
-0.583223
-0.57619
-0.567462
-0.578643
-0.577856
-0.584241
-0.610358
-0.623454
-0.613878
-0.620863
-0.610791
-0.614645
-0.619736
-0.640208
-0.631199
-0.628529
-0.630367
-0.646826
-0.639464
-0.665334
-0.657405
-0.643913
-0.671624
-0.658482
-0.630924
-0.640703
-0.632995
-0.64119
-0.634148
-0.657178
-0.657952
-0.653796
-0.727829
-0.753018
-0.714231
-0.750126
-0.71636
-0.727447
-0.756715
-0.858027
-0.846207
-0.884322
-0.883358
-0.848748
-0.881773
-0.855941
-0.866967
-0.873636
-0.882188
-0.855132
-0.874255
-0.842188
-0.869354
-0.845569
-0.872079
-0.849326
-0.890584
-0.872669
-0.893998
-0.861071
-0.897601
-0.874644
-0.890365
-0.926411
-0.90069
-0.920446
-0.909318
-0.922951
-0.898888
-0.923544
-1.01807
-0.999779
-1.05835
-1.0354
-0.991588
-1.0413
-1.03099
-1.00981
-1.01931
-1.00611
-1.01093
-1.00104
-0.988828
-0.969981
-0.917819
-0.954361
-0.945414
-0.935243
-0.961432
-0.897163
-0.848297
-0.84813
-0.876873
-0.895084
-0.85346
-0.880038
-0.800786
-0.808652
-0.8483
-0.817882
-0.815064
-0.804818
-0.818107
-0.823879
-0.843729
-0.831146
-0.825965
-0.8727
-0.831319
-0.790354
-0.784902
-0.767293
-0.792358
-0.769879
-0.791707
-0.788255
-0.852895
-0.883757
-0.880514
-0.873642
-0.857677
-0.877852
-0.892168
-0.887676
-0.888946
-0.872829
-0.894831
-0.892173
-0.953752
-0.948729
-0.933494
-0.963562
-0.955349
-0.948972
-0.965671
-0.943025
-0.945512
-0.951776
-0.940145
-0.938103
-0.945387
-0.945246
-0.939299
-0.947798
-0.940892
-0.963692
-0.95772
-0.933707
-0.962077
-0.946675
-0.956821
-0.952109
-0.958969
-0.798403
-0.772105
-0.765899
-0.7942
-0.764062
-0.794898
-0.796728
-0.861829
-0.8888
-0.872575
-0.888242
-0.866221
-0.894955
-0.865047
-1.03852
-1.03372
-1.02077
-1.03527
-1.02383
-1.03467
-1.03339
-0.936089
-0.934254
-0.861354
-0.889042
-0.883036
-0.864855
-0.873444
-0.865102
-0.180474
-0.195956
-0.213579
-0.201146
-0.182866
-0.231452
-0.211054
-0.175928
-0.187757
-0.229112
-0.191608
-0.182047
-0.206415
-0.182556
-0.199695
-0.206408
-0.198661
-0.196141
-0.204227
-0.201792
-0.20761
-0.19034
-0.188911
-0.209965
-0.178663
-0.199226
-0.217213
-0.212789
-0.208417
-0.212554
-0.185743
-0.192881
-0.205726
-0.188334
-0.177315
-0.189075
-0.185177
-0.190579
-0.180889
-0.193546
-0.198659
-0.225881
-0.170975
-0.180303
-0.208024
-0.216421
-0.179223
-0.188996
-0.204141
-0.222187
-0.195165
-0.189823
-0.174182
-0.195075
-0.182436
-0.204874
-0.184712
-0.170489
-0.180968
-0.143599
-0.178482
-0.181298
-0.17987
-0.160894
-0.186381
-0.234667
-0.181989
-0.223177
-0.198932
-0.153887
-0.136439
-0.20116
-0.131808
-0.189767
-0.208242
-0.180287
-0.174831
-0.178201
-0.265877
-0.256739
-0.256997
-0.261693
-0.25268
-0.264191
-0.159619
-0.194661
-0.149808
-0.156003
-0.174338
-0.139188
-0.190661
-0.138556
-0.182364
-0.129179
-0.162211
-0.156885
-0.162331
-0.142582
-0.264123
-0.246178
-0.238604
-0.204655
-0.183664
-0.134791
-0.167928
-0.174282
-0.191531
-0.198201
-0.188652
-0.177646
-0.195392
-0.180528
-0.201137
-0.179143
-0.187179
-0.183244
-0.169427
-0.197856
-0.182695
-0.184249
-0.196002
-0.169037
-0.175352
-0.185575
-0.194569
-0.191971
-0.186152
-0.192252
-0.202576
-0.0325875
-0.0402884
-0.0331234
-0.0362075
-0.0554145
-0.0341553
0.00027584
0.0192109
-0.0659606
0.0265869
-0.0522317
-0.0418543
-0.119762
-0.159862
-0.12902
-0.167104
-0.150108
-0.145043
-0.117482
-0.163961
-0.12913
-0.157463
-0.172599
-0.157604
-0.135608
-0.179188
-0.151538
-0.178334
-0.172805
-0.136344
-0.145721
-0.155731
-0.163799
-0.159929
-0.140372
-0.140538
-0.124977
-0.110366
-0.106542
-0.116023
-0.103685
-0.132591
-0.116528
-0.0875393
-0.106208
-0.0848089
-0.108706
-0.0764926
-0.10202
-0.120338
-0.0846995
-0.109168
-0.101362
-0.077129
-0.113184
-0.0882834
-0.0760794
-0.15057
-0.149756
-0.131206
-0.153456
-0.142609
-0.143201
-0.167598
-0.16408
-0.17984
-0.178597
-0.111911
-0.13359
-0.158275
-0.175079
-0.16592
-0.115725
-0.131826
-0.137468
-0.111538
-0.13274
-0.164889
-0.144427
-0.0887756
-0.161917
-0.139054
-0.135132
-0.159881
-0.112316
-0.152095
-0.133254
-0.184799
-0.122942
-0.126718
-0.117631
-0.121801
-0.121692
-0.131317
-0.124058
-0.16245
-0.136536
-0.16217
-0.133332
-0.117441
-0.118037
-0.11516
-0.131853
-0.108333
-0.120523
-0.123735
-0.158369
-0.106522
-0.148621
-0.0880687
-0.152364
-0.154951
-0.110449
-0.0991503
-0.129147
-0.134476
-0.120077
-0.118946
-0.123339
-0.10402
-0.0589362
-0.0351446
-0.0745271
-0.0256969
-0.0265673
-0.0691489
-0.0635862
-0.127563
-0.141681
-0.161921
-0.1225
-0.125204
-0.146023
-0.125221
-0.139372
-0.158014
-0.149798
-0.135785
-0.149817
-0.134506
-0.138322
-0.131854
-0.158272
-0.103053
-0.116366
-0.149126
-0.112952
-0.13923
-0.137785
-0.132081
-0.155984
-0.154265
-0.160987
-0.13499
-0.134189
-0.101349
-0.0996871
-0.101641
-0.102609
-0.086025
-0.123735
-0.115163
-0.112981
-0.100732
-0.171199
-0.163501
-0.115839
-0.108661
-0.169142
-0.0592713
-0.0391421
-0.0718069
-0.0262517
-0.027244
-0.0680963
-0.0618626
-0.149802
-0.141128
-0.0849245
-0.132047
-0.16509
-0.104127
-0.132983
-0.727558
-0.744228
-0.714506
-0.74387
-0.713672
-0.730329
-0.744106
-0.7279
-0.727736
-0.712241
-0.708345
-0.729756
-0.755455
-0.738435
-0.746259
-0.546996
-0.560947
-0.544159
-0.561752
-0.560252
-0.550407
-0.545009
-0.56335
-0.552001
-0.562691
-0.56066
-0.562973
-0.566399
-0.553862
-0.546508
-0.566138
-0.553969
-0.564344
-0.651169
-0.647137
-0.654288
-0.653962
-0.657861
-0.65769
-0.648671
-0.663238
-0.666701
-0.677586
-0.662276
-0.678755
-0.663202
-0.662985
-0.734206
-0.742483
-0.716488
-0.745239
-0.717699
-0.731433
-0.74442
-0.740008
-0.732638
-0.650171
-0.646988
-0.646429
-0.653574
-0.653739
-0.646169
-0.648712
-0.665192
-0.646143
-0.665074
-0.648996
-0.663793
-0.648732
-0.66599
-0.67547
-0.650352
-0.635761
-0.67783
-0.636264
-0.682278
-0.674125
-0.721999
-0.764828
-0.716718
-0.717041
-0.7192
-0.768078
-0.678069
-0.652436
-0.642186
-0.688848
-0.682202
-0.637765
-0.685492
-0.722587
-0.732247
-0.747378
-0.718482
-0.733132
-0.763452
-0.527812
-0.524789
-0.526602
-0.52594
-0.561945
-0.547704
-0.539196
-0.564133
-0.545688
-0.561601
-0.564444
-0.561026
-0.562992
-0.542096
-0.536922
-0.560339
-0.543197
-0.563798
-0.647648
-0.65014
-0.660445
-0.6454
-0.662073
-0.645552
-0.651857
-0.639625
-0.645812
-0.650808
-0.660924
-0.64772
-0.6578
-0.645797
-0.667342
-0.644062
-0.666373
-0.650489
-0.667749
-0.665549
-0.648937
-0.671903
-0.635113
-0.673852
-0.652688
-0.673084
-0.635397
-0.672315
-0.73607
-0.756701
-0.742545
-0.760868
-0.75425
-0.745023
-0.73944
-0.735918
-0.733322
-0.747235
-0.737666
-0.735358
-0.734028
-0.744857
-0.66598
-0.653827
-0.631505
-0.665319
-0.632948
-0.665763
-0.665056
-0.929815
-0.93913
-0.933953
-0.920689
-0.936826
-0.913259
-0.929754
-1.01983
-1.00282
-1.05277
-1.0491
-1.0039
-1.05738
-1.01729
-0.839244
-0.848655
-0.889485
-0.892431
-0.838358
-0.89146
-0.848118
-0.840222
-0.884034
-0.851116
-0.886862
-0.839682
-0.889028
-0.850645
-1.02698
-1.05991
-1.05613
-1.00608
-1.0562
-1.00582
-1.02072
-1.02326
-1.00236
-1.04797
-1.05218
-1.05235
-1.02099
-1.00305
-0.875703
-0.901864
-0.871852
-0.903232
-0.871515
-0.87517
-0.906394
-0.924972
-0.930041
-0.928437
-0.933493
-0.863388
-0.860669
-0.912534
-0.863899
-0.863233
-0.893937
-0.880411
-0.865698
-0.889755
-0.880436
-0.867847
-0.887513
-0.945697
-0.94822
-0.934465
-0.952985
-0.949092
-0.951491
-0.945764
-0.915462
-0.914921
-0.926441
-0.96089
-0.916392
-0.965672
-0.968493
-0.945451
-0.916352
-0.917045
-0.967064
-0.966445
-1.04202
-1.08046
-1.08401
-1.07781
-1.05903
-1.05177
-1.08317
-0.966175
-0.917291
-0.946197
-0.96633
-0.917946
-0.964536
-0.968016
-1.05478
-1.05646
-1.05499
-1.06355
-1.05553
-1.05198
-1.06078
-0.970842
-0.918266
-0.943072
-0.969007
-0.918847
-0.968633
-0.978811
-0.795132
-0.784248
-0.816387
-0.779041
-0.791526
-0.814513
-0.792704
-0.813773
-0.814409
-0.792014
-0.779834
-0.784081
-1.04882
-0.940378
-0.957946
-0.938495
-0.946449
-0.948876
-0.956231
-0.940565
-0.809497
-0.778874
-0.791529
-0.814832
-0.796482
-0.812086
-0.812738
-0.803473
-0.766085
-0.783133
-0.79403
-0.781038
-0.793587
-0.79101
-0.781996
-0.938506
-0.944205
-0.962097
-0.929172
-0.945596
-0.944857
-0.930347
-0.944992
-0.952732
-0.935761
-0.945783
-0.950732
-0.9543
-0.939889
-0.203778
-0.209893
-0.195606
-0.190228
-0.204256
-0.196649
-0.191912
-0.246866
-0.247086
-0.234953
-0.208489
-0.188613
-0.23278
-0.22492
-0.208769
-0.190399
-0.201833
-0.195431
-0.19231
-0.194301
-0.207148
-0.197635
-0.193029
-0.1863
-0.178667
-0.208054
-0.189377
-0.188259
-0.216654
-0.292058
-0.259328
-0.231278
-0.283635
-0.257056
-0.236927
-0.227219
-0.252568
-0.284691
-0.237871
-0.271536
-0.214251
-0.267145
-0.176197
-0.226548
-0.171837
-0.197442
-0.189313
-0.186432
-0.173746
-0.201796
-0.188293
-0.190042
-0.193225
-0.226225
-0.230878
-0.219087
-0.217519
-0.23534
-0.207489
-0.255684
-0.201838
-0.22482
-0.205609
-0.242032
-0.20217
-0.196511
-0.202466
-0.192206
-0.202782
-0.202361
-0.192707
-0.249503
-0.2623
-0.199823
-0.245562
-0.221123
-0.214316
-0.209513
-0.207838
-0.207629
-0.204597
-0.209482
-0.211455
-0.209466
-0.227556
-0.24537
-0.225741
-0.21812
-0.217511
-0.235464
-0.224205
-0.200088
-0.173369
-0.168596
-0.190082
-0.188564
-0.184692
-0.18668
-0.230199
-0.212673
-0.225634
-0.24264
-0.216876
-0.231443
-0.219603
-0.218709
-0.222764
-0.25315
-0.205585
-0.257028
-0.202325
-0.206163
-0.198306
-0.203366
-0.206206
-0.20062
-0.214412
-0.200229
-0.196541
-0.193104
-0.204479
-0.215251
-0.204147
-0.200321
-0.208777
-0.217866
-0.200571
-0.197012
-0.22439
-0.213709
-0.179096
-0.216051
-0.250593
-0.193094
-0.211556
-0.181924
-0.257777
-0.18911
-0.204749
-0.170853
-0.194577
-0.220094
-0.157735
-0.142772
-0.122715
-0.106361
-0.105706
-0.140757
-0.159271
-0.0788966
-0.0882834
-0.0987317
-0.108831
-0.0830453
-0.0971847
-0.0931915
-0.0935809
-0.0940125
-0.149071
-0.148348
-0.0791166
-0.142119
-0.100273
-0.154815
-0.143282
-0.101594
-0.122243
-0.0892291
-0.117761
-0.142438
-0.126925
-0.127805
-0.11953
-0.143812
-0.0793798
-0.117743
-0.0860014
-0.0971407
-0.0739365
-0.152348
-0.106807
-0.147575
-0.134054
-0.112432
-0.114443
-0.152518
-0.100289
-0.127712
-0.130522
-0.197503
-0.108534
-0.160889
-0.10192
-0.127413
-0.120335
-0.11913
-0.127753
-0.11351
-0.123992
-0.113625
-0.119077
-0.124621
-0.106885
-0.14019
-0.120048
-0.13244
-0.132388
-0.110111
-0.0958489
-0.123737
-0.109924
-0.114548
-0.0988537
-0.118602
-0.107245
-0.0937199
-0.107042
-0.119281
-0.112444
-0.110806
-0.107595
-0.0936887
-0.160531
-0.202626
-0.0949831
-0.168928
-0.137085
-0.129792
-0.133444
-0.155113
-0.130628
-0.152037
-0.132104
-0.158902
-0.132267
-0.133487
-0.225699
-0.217178
-0.139365
-0.21689
-0.121445
-0.156862
-0.127964
-0.0608812
-0.120535
-0.0617635
-0.114155
-0.0500604
-0.089515
-0.0743139
-0.118659
-0.0883041
-0.0694313
-0.109759
-0.102292
-0.127551
-0.218665
-0.213004
-0.135743
-0.206498
-0.118518
-0.142649
-0.102811
-0.102984
-0.125818
-0.129407
-0.111451
-0.121931
-0.121826
-0.134052
-0.113505
-0.126475
-0.113771
-0.138228
-0.125703
-0.132247
-0.130374
-0.114291
-0.151305
-0.174292
-0.168091
-0.16022
-0.169067
-0.161492
-0.149263
-0.66817
-0.629489
-0.649725
-0.665857
-0.628814
-0.667465
-0.668804
-0.666549
-0.651056
-0.627281
-0.66726
-0.628275
-0.66733
-0.662674
-0.719799
-0.739422
-0.743688
-0.728822
-0.719686
-0.740476
-0.736527
-0.522533
-0.51606
-0.523227
-0.515151
-0.559528
-0.536259
-0.524181
-0.554887
-0.537923
-0.55747
-0.556722
-0.559811
-0.556723
-0.539194
-0.525415
-0.554579
-0.539604
-0.557931
-0.734842
-0.722536
-0.727255
-0.725469
-0.66655
-0.629461
-0.652701
-0.665962
-0.666254
-0.631409
-0.666553
-0.721149
-0.757586
-0.740314
-0.755062
-0.730401
-0.726416
-0.75534
-0.667763
-0.653354
-0.631899
-0.670001
-0.667685
-0.631546
-0.669024
-0.720754
-0.731574
-0.758588
-0.766052
-0.718866
-0.731077
-0.761864
-0.713427
-0.712006
-0.712491
-0.746467
-0.732592
-0.741826
-0.65841
-0.645478
-0.618703
-0.657626
-0.620317
-0.660366
-0.656646
-0.659937
-0.649257
-0.626703
-0.664867
-0.661752
-0.623449
-0.661229
-0.540469
-0.526996
-0.539616
-0.527681
-0.546323
-0.537751
-0.52172
-0.553066
-0.539723
-0.553708
-0.548389
-0.542581
-0.544485
-0.539426
-0.520909
-0.541204
-0.540344
-0.545919
-0.724106
-0.712753
-0.721898
-0.724373
-0.717796
-0.718649
-0.724451
-0.701485
-0.704846
-0.750015
-0.70094
-0.705864
-0.722389
-0.741758
-0.724524
-0.696638
-0.69964
-0.732849
-0.697787
-0.697313
-0.675045
-0.721908
-0.729992
-0.699641
-0.69811
-0.725429
-0.673741
-0.963673
-0.966674
-0.914566
-0.931156
-0.963199
-0.912548
-0.964274
-0.99954
-1.07185
-1.06318
-1.02591
-1.06559
-0.996865
-1.02439
-0.994507
-1.06808
-1.05881
-1.02773
-1.06247
-0.995043
-1.02716
-0.77391
-0.75174
-0.782581
-0.775815
-0.757025
-0.779613
-0.771106
-0.849319
-0.826556
-0.881292
-0.878256
-0.828047
-0.885916
-0.851081
-0.754974
-0.760924
-0.766071
-0.760111
-0.761672
-0.75991
-0.756709
-1.06071
-1.06742
-1.06414
-1.06118
-1.05506
-1.06355
-1.06125
-0.814137
-0.778709
-0.794336
-0.8105
-0.798267
-0.815249
-0.810625
-0.79967
-0.764798
-0.760733
-0.798733
-0.763277
-0.781913
-0.774393
-0.778275
-0.780394
-0.775614
-0.775753
-0.779623
-1.05959
-1.06419
-1.05666
-1.05006
-1.06258
-1.04971
-1.05966
-0.860634
-0.766244
-0.742312
-0.743049
-0.765207
-0.736457
-0.766573
-0.766121
-0.847535
-0.823651
-0.869399
-0.869225
-0.853153
-0.820206
-0.866335
-0.775175
-0.78
-0.746786
-0.738932
-0.734752
-0.780477
-0.774871
-0.846328
-0.870231
-0.819947
-0.870095
-0.820589
-0.847077
-0.871899
-0.754441
-0.752103
-0.749886
-0.759188
-0.770999
-0.755726
-0.740515
-0.741556
-0.855471
-0.857455
-0.75601
-0.738565
-0.763402
-0.756
-0.737672
-0.752537
-0.75978
-0.852013
-0.814917
-0.867029
-0.868747
-0.818072
-0.872262
-0.849734
-0.760882
-0.753679
-0.741598
-0.769946
-0.745589
-0.764063
-0.751617
-0.851567
-0.869089
-0.820427
-0.867252
-0.817974
-0.851959
-0.873498
-0.886154
-0.866144
-0.868603
-0.885245
-0.193703
-0.201061
-0.182822
-0.188781
-0.206416
-0.184931
-0.192965
-0.195037
-0.208162
-0.212737
-0.188899
-0.211057
-0.194306
-0.191318
-0.190059
-0.194125
-0.184086
-0.188568
-0.197305
-0.187127
-0.187505
-0.226145
-0.235003
-0.226699
-0.215726
-0.217329
-0.234709
-0.224025
-0.262995
-0.318207
-0.225254
-0.294491
-0.244994
-0.325797
-0.234882
-0.192141
-0.174275
-0.243455
-0.196574
-0.183449
-0.189608
-0.22027
-0.234899
-0.258605
-0.225887
-0.26106
-0.227238
-0.257843
-0.233057
-0.191041
-0.221456
-0.206974
-0.191427
-0.199325
-0.192947
-0.194144
-0.190051
-0.184686
-0.213539
-0.221019
-0.170184
-0.199188
-0.210505
-0.205717
-0.219161
-0.156898
-0.201633
-0.239764
-0.212459
-0.206748
-0.242447
-0.277433
-0.309346
-0.247058
-0.283991
-0.237533
-0.244643
-0.165497
-0.168427
-0.197253
-0.194662
-0.176206
-0.174686
-0.190892
-0.160594
-0.17811
-0.143964
-0.174797
-0.164977
-0.157014
-0.173926
-0.303462
-0.32052
-0.35297
-0.277452
-0.26253
-0.31471
-0.235789
-0.158082
-0.190725
-0.206471
-0.168696
-0.204691
-0.214829
-0.192817
-0.194818
-0.18951
-0.193805
-0.190426
-0.199129
-0.189764
-0.193733
-0.193271
-0.189508
-0.210052
-0.204006
-0.189284
-0.197682
-0.219366
-0.248416
-0.24221
-0.222894
-0.236184
-0.23032
-0.217637
-0.203207
-0.204004
-0.200599
-0.20328
-0.203065
-0.196885
-0.206666
-0.204302
-0.194317
-0.209517
-0.194704
-0.208358
-0.204523
-0.19543
-0.204599
-0.217087
-0.187223
-0.193023
-0.209005
-0.20389
-0.190951
-0.204001
-0.193689
-0.197877
-0.209603
-0.203771
-0.192474
-0.20552
-0.0826004
-0.0509608
-0.0423738
-0.120334
-0.106723
-0.0450457
-0.0618326
-0.079779
-0.0614615
-0.100205
-0.0823872
-0.0919317
-0.0754784
-0.0830918
-0.0825165
-0.0944291
-0.137793
-0.108734
-0.119644
-0.131319
-0.12724
-0.108705
-0.134235
-0.0948414
-0.0439222
-0.0600034
-0.0783049
-0.0577003
-0.0955542
-0.0795322
-0.132221
-0.0315611
-0.00471405
-0.110308
-0.022831
-0.109455
-0.129432
-0.0982024
-0.0764195
-0.0499214
-0.0692389
-0.0910839
-0.133411
-0.145356
-0.123463
-0.101194
-0.139309
-0.120281
-0.106635
-0.0826148
-0.141405
-0.202645
-0.214584
-0.146833
-0.104588
-0.0546715
-0.135904
-0.0348069
-0.13471
-0.107063
-0.0570691
-0.140829
-0.117491
-0.136018
-0.155222
-0.15095
-0.113433
-0.14489
-0.134416
-0.154237
-0.134559
-0.108915
-0.152702
-0.130235
-0.110743
-0.149216
-0.176394
-0.172504
-0.162971
-0.0733677
-0.0514961
-0.103726
-0.0782176
-0.0554888
-0.0703833
-0.07999
-0.182076
-0.168078
-0.154222
-0.187357
-0.177986
-0.17041
-0.178964
-0.269009
-0.26858
-0.2141
-0.20846
-0.129551
-0.106688
-0.134283
-0.127641
-0.131484
-0.143551
-0.106874
-0.0819932
-0.0323397
-0.0958054
-0.0139238
-0.120438
-0.0445121
-0.0314463
-0.125698
-0.159252
-0.131745
-0.108716
-0.155585
-0.128621
-0.107406
-0.0634744
-0.0375013
-0.0944561
-0.0762803
-0.0492323
-0.0620966
-0.0687365
-0.65848
-0.703547
-0.692554
-0.711154
-0.68938
-0.656853
-0.707029
-0.660725
-0.692413
-0.712254
-0.712553
-0.663856
-0.690647
-0.709474
-0.529543
-0.513715
-0.529645
-0.513526
-0.530155
-0.52436
-0.499508
-0.527417
-0.525682
-0.529298
-0.52817
-0.534301
-0.533461
-0.529479
-0.501828
-0.536736
-0.528227
-0.531667
-0.72168
-0.706283
-0.723178
-0.709065
-0.722799
-0.722104
-0.705425
-0.717166
-0.716985
-0.717537
-0.727713
-0.717172
-0.716996
-0.725867
-0.669203
-0.717635
-0.701785
-0.712753
-0.671793
-0.698889
-0.7153
-0.668913
-0.693326
-0.713803
-0.710066
-0.666525
-0.69572
-0.713218
-0.73516
-0.730564
-0.698215
-0.725209
-0.708505
-0.710409
-0.728541
-0.716862
-0.716221
-0.7265
-0.726346
-0.716079
-0.716706
-0.726452
-0.653624
-0.701145
-0.692475
-0.703575
-0.655587
-0.691889
-0.698262
-0.650865
-0.688319
-0.701988
-0.695183
-0.690101
-0.648172
-0.696406
-0.511967
-0.494277
-0.510764
-0.495729
-0.524335
-0.521548
-0.492462
-0.525326
-0.519791
-0.526001
-0.523534
-0.522546
-0.520285
-0.515844
-0.490604
-0.520832
-0.517542
-0.52219
-0.706153
-0.685393
-0.692639
-0.675719
-0.677515
-0.685284
-0.705239
-0.705351
-0.680628
-0.719322
-0.701808
-0.697931
-0.681337
-0.691822
-0.697669
-0.728183
-0.692382
-0.722612
-0.702204
-0.68787
-0.726271
-0.692718
-0.681628
-0.718375
-0.724109
-0.681369
-0.696162
-0.721047
-0.643651
-0.687364
-0.692942
-0.677117
-0.682987
-0.688838
-0.638461
-0.644703
-0.688175
-0.694505
-0.695933
-0.647367
-0.687245
-0.691035
-0.833774
-0.828884
-0.892428
-0.834375
-0.826795
-0.897256
-0.844699
-0.845283
-0.849151
-0.850136
-0.850953
-0.850126
-0.853654
-0.773512
-0.752489
-0.772898
-0.775169
-0.72277
-0.722217
-0.722416
-0.759585
-0.902415
-0.895995
-0.956527
-0.92558
-0.89313
-0.952737
-0.952189
-0.928321
-0.954977
-0.860928
-0.889378
-0.857447
-0.890543
-0.83743
-0.813308
-0.867447
-0.862291
-0.84866
-0.81195
-0.865095
-0.872097
-0.861731
-0.880741
-0.859585
-0.735911
-0.71751
-0.718793
-0.717911
-0.74664
-0.717793
-0.774317
-0.723405
-0.720087
-0.720129
-0.770316
-0.915403
-0.924407
-0.928873
-0.913208
-0.965757
-0.945897
-0.89116
-0.930801
-0.95072
-0.933524
-0.95682
-0.962362
-0.929931
-0.893742
-0.953567
-0.954082
-0.930759
-0.956423
-0.940768
-0.906733
-0.900965
-0.939305
-0.851034
-0.848752
-0.86752
-0.870308
-0.845171
-0.849481
-0.870604
-0.850572
-0.842915
-0.848914
-0.848892
-0.8527
-0.847531
-0.847752
-0.733161
-0.723539
-0.723859
-0.740009
-0.722865
-0.73586
-0.736927
-0.732522
-0.738258
-0.733705
-0.726622
-0.722359
-0.737154
-0.735351
-0.810242
-0.824242
-0.926422
-0.870392
-0.863686
-0.870652
-0.925373
-0.978194
-1.01979
-0.975083
-1.01635
-0.966648
-0.980464
-1.01941
-0.936684
-0.913624
-0.864796
-0.926985
-0.921632
-0.903674
-0.938737
-0.865318
-0.869768
-0.863769
-0.874681
-0.857518
-0.872507
-0.868648
-0.713918
-0.73344
-0.732138
-0.719117
-0.731197
-0.715594
-0.717825
-0.717386
-0.731283
-0.73163
-0.739166
-0.729206
-0.722695
-0.738003
-0.848944
-0.848626
-0.868978
-0.867909
-0.848476
-0.850265
-0.869508
-0.816825
-0.857539
-0.818581
-0.85458
-0.833475
-0.857713
-0.803982
-0.932885
-0.877631
-0.875211
-0.879474
-0.9294
-0.949104
-0.941683
-0.931466
-0.879363
-0.95151
-0.937879
-0.930309
-0.944572
-0.910941
-0.943834
-0.911773
-0.942698
-0.919214
-0.875781
-0.929811
-0.934227
-0.925921
-0.940744
-0.217319
-0.239972
-0.232421
-0.22999
-0.225285
-0.228853
-0.220947
-0.227674
-0.206767
-0.213892
-0.236138
-0.228672
-0.213496
-0.230942
-0.241391
-0.210841
-0.216091
-0.241393
-0.23363
-0.219158
-0.238658
-0.229007
-0.221418
-0.229464
-0.224408
-0.236981
-0.22994
-0.217802
-0.268829
-0.259468
-0.249382
-0.266685
-0.334379
-0.344623
-0.171224
-0.211664
-0.181796
-0.204987
-0.200925
-0.191761
-0.20346
-0.179197
-0.201211
-0.195399
-0.18027
-0.178803
-0.175591
-0.168471
-0.158561
-0.181941
-0.178598
-0.168104
-0.205352
-0.250249
-0.230161
-0.24107
-0.218021
-0.2516
-0.272732
-0.234103
-0.270616
-0.226499
-0.242114
-0.107054
-0.0519221
-0.0305281
-0.133153
-0.135577
-0.0543576
-0.104464
-0.187168
-0.16895
-0.182073
-0.18194
-0.107568
-0.124606
-0.122232
-0.11167
-0.121155
-0.0791138
-0.0681847
-0.0789491
-0.170897
-0.197609
-0.1793
-0.190438
-0.186222
-0.166666
-0.187761
-0.15833
-0.17943
-0.182237
-0.169278
-0.263626
-0.216697
-0.263062
-0.205119
-0.189529
-0.174271
-0.170237
-0.157171
-0.189321
-0.176823
-0.170237
-0.182963
-0.209058
-0.27407
-0.284861
-0.261544
-0.204636
-0.209656
-0.170598
-0.179206
-0.166433
-0.176877
-0.170945
-0.180328
-0.16979
-0.173742
-0.170268
-0.156878
-0.165526
-0.172486
-0.169822
-0.164804
-0.275047
-0.266474
-0.192129
-0.197622
-0.21907
-0.181051
-0.17965
-0.221442
-0.195146
-0.21223
-0.288368
-0.296089
-0.208223
-0.254875
-0.174957
-0.255964
-0.197183
-0.261096
-0.254095
-0.174776
-0.105323
-0.117722
-0.125855
-0.124649
-0.107143
-0.175367
-0.199762
-0.062978
-0.0753652
-0.176516
-0.197464
-0.0597585
-0.211039
-0.174513
-0.17515
-0.188403
-0.248349
-0.181927
-0.194666
-0.185594
-0.246908
-0.160536
-0.217031
-0.168406
-0.215243
-0.181481
-0.170356
-0.15136
-0.163749
-0.155146
-0.162423
-0.163854
-0.166996
-0.204243
-0.198877
-0.21457
-0.181783
-0.185807
-0.214351
-0.198459
-0.237532
-0.272123
-0.269498
-0.255019
-0.208178
-0.244246
-0.236414
-0.197679
-0.17399
-0.173823
-0.158639
-0.192882
-0.154345
-0.187566
-0.178687
-0.190043
-0.149102
-0.172588
-0.177481
-0.169451
-0.174378
-0.191787
-0.172172
-0.160621
-0.159714
-0.164112
-0.167818
-0.167609
-0.159603
-0.514905
-0.487439
-0.514974
-0.487854
-0.499479
-0.49721
-0.463451
-0.494751
-0.500732
-0.49767
-0.49684
-0.50349
-0.505171
-0.505759
-0.46704
-0.507088
-0.503847
-0.501507
-0.710526
-0.687485
-0.674622
-0.693239
-0.709024
-0.675138
-0.690284
-0.637047
-0.684036
-0.674137
-0.69253
-0.634934
-0.670833
-0.683365
-0.492339
-0.465956
-0.490846
-0.467546
-0.492528
-0.494583
-0.453571
-0.491555
-0.49207
-0.494324
-0.489121
-0.490851
-0.484748
-0.486685
-0.450583
-0.488853
-0.489108
-0.487286
-0.803424
-0.844277
-0.824848
-0.835579
-0.800644
-0.85184
-0.828025
-0.736527
-0.678805
-0.727803
-0.746064
-0.682615
-0.745078
-0.734812
-0.741903
-0.752077
-0.690966
-0.729254
-0.685979
-0.746858
-0.746526
-0.819497
-0.831949
-0.834082
-0.743801
-0.727761
-0.74521
-0.722141
-0.74854
-0.723639
-0.743802
-0.809244
-0.807546
-0.751144
-0.748296
-0.708568
-0.727098
-0.720981
-0.746559
-0.755411
-0.893825
-0.870084
-0.864046
-0.894198
-0.895617
-0.864776
-0.892625
-0.991509
-1.00374
-0.924591
-1.01834
-0.930014
-0.991155
-1.0215
-0.886737
-0.882273
-0.883816
-0.881372
-0.884655
-0.875828
-0.877743
-1.01802
-1.01629
-1.03922
-0.840834
-0.844033
-0.802053
-0.820088
-0.841241
-0.824179
-0.800488
-0.842503
-0.823938
-0.752378
-0.720003
-0.749793
-0.722918
-0.754904
-0.715894
-0.746279
-0.796886
-0.858662
-0.823019
-0.854711
-0.802218
-0.819374
-0.848961
-0.748154
-0.748828
-0.692145
-0.734045
-0.697463
-0.746608
-0.745542
-0.836142
-0.847433
-0.85002
-0.706454
-0.734662
-0.704504
-0.712503
-0.738253
-0.715946
-0.703334
-0.749198
-0.743416
-0.705399
-0.725015
-0.724859
-0.741391
-0.750664
-0.834181
-0.809775
-0.804894
-0.884908
-0.861034
-0.833377
-0.887793
-0.850249
-0.888462
-0.876017
-0.980599
-0.985799
-0.922596
-1.01368
-0.913446
-0.989149
-1.00934
-1.01165
-1.04315
-1.00843
-1.0267
-0.880229
-0.853388
-0.827239
-0.891891
-0.825842
-0.893764
-0.878131
-1.02689
-1.01184
-1.03165
-1.00999
-0.729896
-0.676995
-0.717816
-0.74345
-0.673294
-0.732981
-0.739345
-0.726714
-0.734109
-0.718194
-0.668345
-0.670858
-0.734721
-0.724113
-0.771403
-0.778434
-0.829746
-0.775047
-0.775324
-0.780813
-0.775084
-0.765356
-0.785605
-0.768092
-0.785659
-0.779572
-0.876199
-0.865071
-0.866725
-0.871818
-0.861952
-0.858769
-0.846427
-0.819235
-0.867561
-0.863722
-0.860799
-0.822274
-0.846218
-0.9639
-0.973524
-0.973122
-0.959008
-0.955068
-0.975342
-0.963016
-0.938837
-0.922279
-1.00488
-0.930973
-0.932767
-1.00037
-0.776047
-0.781567
-0.842895
-0.781281
-0.777683
-0.701146
-0.734455
-0.695687
-0.710523
-0.730652
-0.702367
-0.709046
-0.724223
-0.712871
-0.695082
-0.729209
-0.734307
-0.713373
-0.721335
-0.856071
-0.816443
-0.816032
-0.717947
-0.656273
-0.716257
-0.728223
-0.661554
-0.731712
-0.715023
-0.719465
-0.732154
-0.665535
-0.716481
-0.661805
-0.722956
-0.732286
-0.845493
-0.879462
-0.820859
-0.865269
-0.823913
-0.855588
-0.847926
-0.994138
-1.03925
-0.98965
-1.04083
-0.857446
-0.876239
-0.827673
-0.859608
-0.865449
-0.82837
-0.855707
-0.940457
-0.927651
-1.01505
-0.931368
-0.93662
-1.01897
-0.292308
-0.310302
-0.305792
-0.32008
-0.256397
-0.244209
-0.279197
-0.250498
-0.268181
-0.272473
-0.242978
-0.263687
-0.277343
-0.261711
-0.2808
-0.251819
-0.259252
-0.241988
-0.24424
-0.26183
-0.251396
-0.243553
-0.29026
-0.296652
-0.29148
-0.297078
-0.372352
-0.329207
-0.374555
-0.326116
-0.272665
-0.240733
-0.262768
-0.24605
-0.262347
-0.272389
-0.24578
-0.320595
-0.373393
-0.372751
-0.323021
-0.370196
-0.364245
-0.369748
-0.319532
-0.318444
-0.367497
-0.29593
-0.300552
-0.302369
-0.295099
-0.274336
-0.255378
-0.267171
-0.246771
-0.283135
-0.26887
-0.253211
-0.278621
-0.250016
-0.268901
-0.247793
-0.277842
-0.271104
-0.252538
-0.309645
-0.296344
-0.302069
-0.304045
-0.347707
-0.322807
-0.335543
-0.363653
-0.267495
-0.271078
-0.2489
-0.250802
-0.269397
-0.270844
-0.251515
-0.341305
-0.308022
-0.325048
-0.315937
-0.262066
-0.274868
-0.262608
-0.266654
-0.267428
-0.254049
-0.26875
-0.295076
-0.316451
-0.286353
-0.30629
-0.287999
-0.306512
-0.314311
-0.25355
-0.260579
-0.246581
-0.239805
-0.253161
-0.258951
-0.248146
-0.235293
-0.272642
-0.197037
-0.178542
-0.236888
-0.266645
-0.195586
-0.235022
-0.235771
-0.246679
-0.238563
-0.239052
-0.242474
-0.233846
-0.236894
-0.269387
-0.322245
-0.266496
-0.28002
-0.247243
-0.246175
-0.216296
-0.194388
-0.2022
-0.208894
-0.200664
-0.205866
-0.217828
-0.279656
-0.210165
-0.271238
-0.180532
-0.235223
-0.156996
-0.214524
-0.156633
-0.178909
-0.213486
-0.200468
-0.191647
-0.194965
-0.155591
-0.195954
-0.160544
-0.161281
-0.19644
-0.158538
-0.15804
-0.138574
-0.138275
-0.150121
-0.141776
-0.135074
-0.149515
-0.144031
-0.205039
-0.230328
-0.23223
-0.226906
-0.271108
-0.215639
-0.199844
-0.235877
-0.263242
-0.210601
-0.291874
-0.275388
-0.269351
-0.28215
-0.286309
-0.277542
-0.333159
-0.352233
-0.342015
-0.25712
-0.284595
-0.186903
-0.194024
-0.160084
-0.193851
-0.180345
-0.170333
-0.200691
-0.280584
-0.200836
-0.272238
-0.206697
-0.219054
-0.220493
-0.143847
-0.112351
-0.140289
-0.167844
-0.110323
-0.168721
-0.144254
-0.142708
-0.171165
-0.105223
-0.136535
-0.108478
-0.142772
-0.167181
-0.237559
-0.2385
-0.240734
-0.236852
-0.239299
-0.235458
-0.233316
-0.252772
-0.249142
-0.229877
-0.244338
-0.242705
-0.24823
-0.25773
-0.220072
-0.208154
-0.198982
-0.209484
-0.215993
-0.212487
-0.213891
-0.267325
-0.277657
-0.277599
-0.336043
-0.25609
-0.262983
-0.351741
-0.389244
-0.296952
-0.387019
-0.305066
-0.312499
-0.254264
-0.287508
-0.310995
-0.290409
-0.156757
-0.194617
-0.161201
-0.160743
-0.157401
-0.162599
-0.194119
-0.208512
-0.232777
-0.235601
-0.224175
-0.190765
-0.118724
-0.140385
-0.224058
-0.191037
-0.118559
-0.159566
-0.124151
-0.192933
-0.141995
-0.188682
-0.162386
-0.122485
-0.157489
-0.181148
-0.146186
-0.121656
-0.184636
-0.154802
-0.122568
-0.257158
-0.231352
-0.245697
-0.211172
-0.20551
-0.222718
-0.256929
-0.286209
-0.334012
-0.237473
-0.287334
-0.248464
-0.250509
-0.264955
-0.251997
-0.247739
-0.235148
-0.251592
-0.260472
-0.263435
-0.146899
-0.113511
-0.168082
-0.150281
-0.144606
-0.172373
-0.116382
-0.150045
-0.179953
-0.148748
-0.120496
-0.175649
-0.153081
-0.118532
-0.493852
-0.505484
-0.49332
-0.515725
-0.495297
-0.490677
-0.50725
-0.473749
-0.443472
-0.473495
-0.442901
-0.46769
-0.464187
-0.419616
-0.457831
-0.465655
-0.460019
-0.466589
-0.470944
-0.465858
-0.470594
-0.420949
-0.474174
-0.467581
-0.462392
-0.491009
-0.514952
-0.485773
-0.507173
-0.488856
-0.51023
-0.486353
-0.478242
-0.476423
-0.504737
-0.50065
-0.47686
-0.478553
-0.502173
-0.461308
-0.427427
-0.459328
-0.429385
-0.465689
-0.463412
-0.413285
-0.456609
-0.461064
-0.467383
-0.454169
-0.463894
-0.449937
-0.456443
-0.41137
-0.462124
-0.459078
-0.452529
-0.479903
-0.505734
-0.483172
-0.504302
-0.482535
-0.479939
-0.503182
-0.726308
-0.740242
-0.773978
-0.778926
-0.734229
-0.739484
-0.770274
-0.69026
-0.712632
-0.639941
-0.683535
-0.639116
-0.694928
-0.709791
-0.704215
-0.77766
-0.749842
-0.759674
-0.75055
-0.764066
-0.695966
-0.782267
-0.790059
-0.784463
-0.78297
-0.781748
-0.784876
-0.782348
-0.776071
-0.771538
-0.758173
-0.782246
-0.758816
-0.775121
-0.784299
-0.969362
-0.984314
-0.9691
-0.980862
-0.968243
-0.971906
-0.983833
-0.954818
-0.95946
-0.981782
-0.988556
-0.954857
-0.952286
-0.985652
-0.792507
-0.794119
-0.78129
-0.837221
-0.800347
-0.79752
-0.911305
-0.905752
-0.801385
-0.810932
-0.81005
-0.810187
-0.804648
-0.80687
-0.810945
-0.742337
-0.779496
-0.743394
-0.775643
-0.738069
-0.748269
-0.778267
-0.707093
-0.654894
-0.724839
-0.70967
-0.710874
-0.651133
-0.721301
-0.746425
-0.775268
-0.755897
-0.784355
-0.749861
-0.753159
-0.781286
-0.703053
-0.716914
-0.643016
-0.708348
-0.648117
-0.699041
-0.718463
-0.790296
-0.785437
-0.803844
-0.787097
-0.787534
-0.782759
-0.803904
-0.774498
-0.80077
-0.771523
-0.800374
-0.772823
-0.799517
-0.774056
-0.914151
-0.955144
-0.912279
-0.965323
-0.906365
-0.913125
-0.958899
-0.942482
-0.954696
-0.982811
-0.983148
-0.946185
-0.952511
-0.978841
-0.682214
-0.737173
-0.76686
-0.740772
-0.742759
-0.675093
-0.746912
-0.685679
-0.772056
-0.747363
-0.755686
-0.691044
-0.743763
-0.751388
-0.74771
-0.719383
-0.784028
-0.763814
-0.776541
-0.743125
-0.715969
-0.758459
-0.734225
-0.742713
-0.705901
-0.734502
-0.707
-0.764686
-0.841505
-0.812512
-0.817449
-0.832486
-0.839442
-0.819703
-0.834696
-0.936693
-0.926133
-0.934455
-0.827682
-0.822628
-0.828095
-0.816389
-0.827349
-0.826613
-0.826257
-0.955504
-0.955617
-0.955138
-0.820193
-0.790796
-0.830574
-0.769536
-0.830383
-0.775813
-0.817075
-0.908519
-0.97203
-0.967417
-0.941434
-0.967015
-0.903782
-0.946438
-0.729834
-0.734643
-0.778075
-0.783348
-0.739289
-0.730187
-0.783988
-0.773907
-0.799121
-0.771439
-0.808358
-0.777829
-0.767201
-0.803744
-0.664749
-0.733466
-0.735875
-0.748355
-0.670616
-0.731756
-0.728526
-0.661623
-0.742235
-0.717686
-0.717367
-0.727196
-0.72368
-0.654172
-0.896857
-0.941946
-0.940424
-0.931251
-0.897907
-0.952199
-0.934126
-0.903869
-0.972193
-0.962182
-0.941297
-0.972253
-0.903558
-0.940198
-0.282854
-0.269731
-0.288453
-0.26734
-0.288603
-0.266392
-0.28228
-0.289765
-0.364347
-0.320417
-0.292553
-0.295998
-0.319949
-0.280689
-0.287835
-0.316029
-0.32399
-0.29752
-0.279654
-0.285784
-0.288015
-0.289933
-0.298677
-0.287528
-0.314697
-0.297186
-0.331876
-0.300922
-0.333593
-0.313378
-0.297295
-0.31784
-0.366106
-0.317532
-0.291947
-0.36064
-0.2934
-0.319311
-0.284048
-0.281177
-0.279148
-0.392201
-0.359243
-0.326703
-0.320745
-0.365659
-0.360403
-0.352907
-0.274134
-0.262795
-0.265451
-0.356962
-0.392015
-0.366023
-0.318143
-0.276058
-0.302991
-0.291879
-0.291997
-0.337785
-0.307119
-0.323633
-0.295657
-0.374461
-0.322096
-0.324003
-0.294849
-0.374772
-0.295487
-0.304149
-0.299335
-0.26861
-0.29028
-0.305174
-0.276283
-0.321408
-0.367485
-0.31829
-0.291114
-0.291666
-0.370945
-0.320014
-0.28626
-0.282928
-0.283058
-0.335156
-0.300589
-0.341775
-0.364837
-0.307918
-0.301472
-0.357095
-0.366561
-0.353713
-0.277327
-0.273031
-0.285671
-0.26716
-0.279927
-0.283626
-0.267712
-0.27583
-0.247656
-0.252456
-0.281069
-0.284894
-0.251957
-0.272713
-0.269661
-0.242032
-0.25436
-0.248329
-0.262825
-0.249397
-0.383928
-0.29047
-0.389394
-0.302092
-0.312107
-0.348211
-0.193575
-0.240709
-0.243732
-0.213874
-0.235072
-0.211261
-0.196957
-0.165848
-0.124981
-0.147801
-0.195864
-0.198977
-0.127176
-0.16388
-0.166798
-0.200576
-0.149946
-0.131505
-0.197854
-0.128804
-0.169443
-0.191252
-0.241471
-0.22233
-0.209461
-0.229811
-0.187972
-0.210297
-0.314814
-0.269183
-0.297211
-0.261312
-0.316192
-0.290833
-0.274176
-0.310933
-0.266084
-0.26671
-0.297046
-0.277044
-0.285371
-0.311085
-0.249109
-0.276744
-0.254647
-0.2272
-0.265933
-0.246927
-0.237871
-0.262164
-0.239369
-0.271476
-0.249066
-0.247348
-0.250571
-0.27044
-0.273449
-0.299961
-0.276266
-0.25106
-0.263172
-0.249554
-0.258928
-0.253585
-0.252041
-0.257864
-0.248905
-0.263512
-0.255983
-0.20273
-0.245282
-0.216103
-0.257028
-0.219146
-0.19941
-0.250491
-0.174208
-0.139478
-0.16128
-0.201887
-0.137705
-0.199955
-0.176113
-0.172757
-0.199186
-0.13285
-0.159315
-0.135964
-0.170494
-0.199019
-0.204464
-0.260552
-0.224069
-0.253286
-0.221022
-0.253023
-0.205884
-0.236032
-0.255347
-0.259853
-0.234696
-0.25077
-0.238897
-0.231077
-0.234194
-0.255587
-0.247807
-0.224914
-0.232745
-0.248079
-0.22825
-0.251863
-0.281182
-0.270688
-0.29023
-0.281079
-0.255304
-0.272761
-0.339951
-0.358853
-0.324393
-0.319258
-0.358325
-0.314477
-0.348788
-0.319545
-0.314094
-0.425942
-0.40925
-0.424699
-0.320718
-0.30547
-0.288743
-0.31574
-0.35458
-0.30259
-0.358584
-0.2973
-0.294783
-0.350119
-0.300525
-0.296027
-0.311104
-0.344871
-0.287421
-0.313353
-0.302859
-0.278605
-0.259594
-0.299218
-0.301144
-0.263946
-0.302898
-0.210508
-0.232558
-0.270872
-0.245654
-0.247649
-0.233586
-0.208971
-0.211696
-0.268113
-0.251105
-0.234184
-0.248508
-0.233692
-0.213197
-0.255236
-0.265411
-0.267627
-0.275245
-0.265342
-0.256032
-0.257257
-0.287649
-0.300277
-0.307262
-0.367097
-0.336665
-0.3629
-0.415194
-0.371809
-0.31645
-0.256007
-0.263081
-0.253593
-0.254205
-0.254881
-0.256362
-0.256404
-0.245562
-0.261541
-0.237647
-0.277963
-0.241886
-0.267629
-0.240705
-0.249133
-0.28224
-0.282696
-0.245039
-0.275159
-0.242913
-0.253234
-0.206279
-0.275582
-0.232414
-0.247606
-0.230231
-0.246985
-0.208118
-0.179334
-0.141535
-0.202626
-0.171149
-0.177937
-0.206878
-0.144897
-0.206472
-0.27364
-0.22576
-0.249523
-0.206083
-0.228345
-0.249222
-0.463907
-0.502178
-0.459771
-0.489896
-0.465813
-0.455905
-0.500725
-0.42406
-0.400417
-0.427648
-0.397363
-0.433463
-0.410784
-0.374197
-0.415574
-0.419206
-0.418286
-0.428816
-0.437954
-0.426889
-0.432258
-0.377453
-0.441719
-0.426366
-0.422318
-0.462122
-0.486743
-0.445575
-0.498176
-0.452232
-0.499024
-0.462043
-0.471669
-0.410581
-0.468682
-0.486373
-0.46608
-0.415816
-0.492791
-0.376602
-0.315489
-0.331074
-0.376341
-0.331541
-0.474282
-0.472173
-0.425183
-0.499465
-0.474172
-0.418752
-0.498175
-0.754313
-0.731113
-0.749927
-0.702383
-0.747919
-0.759694
-0.698292
-0.796636
-0.77774
-0.710717
-0.819059
-0.823327
-0.722189
-0.790006
-0.805525
-0.770209
-0.828309
-0.76116
-0.825556
-0.81198
-0.750133
-0.749821
-0.717103
-0.770177
-0.749625
-0.746403
-0.773049
-0.749277
-0.917837
-0.916803
-0.911506
-0.911484
-0.914877
-0.916543
-0.917608
-0.753147
-0.703968
-0.752307
-0.73903
-0.760682
-0.738032
-0.749982
-0.892621
-0.879853
-0.907522
-0.868601
-0.889703
-0.890999
-0.646491
-0.723155
-0.708846
-0.709833
-0.649091
-0.694347
-0.703709
-0.776091
-0.706543
-0.757995
-0.810787
-0.697823
-0.78415
-0.801311
-0.769788
-0.752104
-0.687504
-0.785414
-0.693158
-0.791606
-0.761547
-0.914518
-0.91256
-0.908008
-0.919635
-0.915324
-0.906601
-0.913703
-0.892619
-0.882343
-0.929871
-0.924107
-0.889678
-0.886747
-0.93071
-0.71867
-0.661872
-0.724573
-0.751906
-0.748579
-0.655919
-0.726674
-0.766952
-0.823483
-0.780609
-0.862805
-0.784362
-0.758613
-0.831
-0.714985
-0.718878
-0.743532
-0.657397
-0.74508
-0.65659
-0.711463
-0.773421
-0.802497
-0.874324
-0.848548
-0.793657
-0.784289
-0.838108
-0.739645
-0.7391
-0.66086
-0.758199
-0.668436
-0.759988
-0.729643
-0.813879
-0.879467
-0.842161
-0.897804
-0.82038
-0.836457
-0.875922
-0.747615
-0.746067
-0.680149
-0.774403
-0.754081
-0.674535
-0.769493
-0.804262
-0.816395
-0.893441
-0.855243
-0.824937
-0.790953
-0.867444
-0.270428
-0.281369
-0.267539
-0.296884
-0.265505
-0.293327
-0.273002
-0.278394
-0.281463
-0.304665
-0.323586
-0.275758
-0.307928
-0.284715
-0.280794
-0.316759
-0.32946
-0.290032
-0.312001
-0.28375
-0.287461
-0.288592
-0.277817
-0.296417
-0.257141
-0.285914
-0.297305
-0.259231
-0.371978
-0.330258
-0.363216
-0.302062
-0.280866
-0.303241
-0.276884
-0.294957
-0.302874
-0.274842
-0.366833
-0.332708
-0.327822
-0.314311
-0.366207
-0.328938
-0.333761
-0.274029
-0.287184
-0.296581
-0.272527
-0.296873
-0.275143
-0.269758
-0.283984
-0.277573
-0.263164
-0.280373
-0.269105
-0.28052
-0.283318
-0.403437
-0.359128
-0.358091
-0.351277
-0.366096
-0.371809
-0.355204
-0.292771
-0.291062
-0.286803
-0.303669
-0.284515
-0.293075
-0.299539
-0.378929
-0.346652
-0.400346
-0.364874
-0.374293
-0.350394
-0.404522
-0.274349
-0.270846
-0.257773
-0.278627
-0.27607
-0.251705
-0.277788
-0.384527
-0.370036
-0.338559
-0.345115
-0.384475
-0.340206
-0.369333
-0.251483
-0.268622
-0.263371
-0.253095
-0.246197
-0.265684
-0.250332
-0.380791
-0.345581
-0.35473
-0.397023
-0.3454
-0.37854
-0.376624
-0.279233
-0.290353
-0.269516
-0.300281
-0.275473
-0.272575
-0.30505
-0.291841
-0.287572
-0.3319
-0.331447
-0.292923
-0.332839
-0.28959
-0.282565
-0.293581
-0.279482
-0.319758
-0.286851
-0.275286
-0.311392
-0.289787
-0.321206
-0.291546
-0.337661
-0.286407
-0.327331
-0.291628
-0.269347
-0.310456
-0.251191
-0.290348
-0.268648
-0.311491
-0.253011
-0.278902
-0.285334
-0.319523
-0.329942
-0.281613
-0.327145
-0.281077
-0.277804
-0.316876
-0.277107
-0.316423
-0.279812
-0.274972
-0.323818
-0.26895
-0.296805
-0.308118
-0.257154
-0.311317
-0.254339
-0.269895
-0.304466
-0.310685
-0.297039
-0.285464
-0.283887
-0.313512
-0.297651
-0.360506
-0.358515
-0.327777
-0.322509
-0.357197
-0.356143
-0.325913
-0.351602
-0.329008
-0.328288
-0.348527
-0.348623
-0.328559
-0.350303
-0.365285
-0.306733
-0.348971
-0.306881
-0.31276
-0.306678
-0.322437
-0.219079
-0.262522
-0.271411
-0.240722
-0.25949
-0.238417
-0.221341
-0.217533
-0.271132
-0.25287
-0.235233
-0.257224
-0.214943
-0.237322
-0.302567
-0.295261
-0.286511
-0.296787
-0.299141
-0.289861
-0.295612
-0.263767
-0.309281
-0.283022
-0.249273
-0.266852
-0.304375
-0.247938
-0.264386
-0.269537
-0.301975
-0.289125
-0.27101
-0.260188
-0.296695
-0.268116
-0.311534
-0.275106
-0.305771
-0.272795
-0.272153
-0.304593
-0.260764
-0.284977
-0.290757
-0.246011
-0.256655
-0.298319
-0.247286
-0.295944
-0.310422
-0.286328
-0.300504
-0.312125
-0.296478
-0.287127
-0.332718
-0.341815
-0.339602
-0.342929
-0.344001
-0.339921
-0.329646
-0.344063
-0.329107
-0.330265
-0.348423
-0.347419
-0.328867
-0.348239
-0.303272
-0.312924
-0.326327
-0.304313
-0.323216
-0.29909
-0.310128
-0.227777
-0.263569
-0.243236
-0.279272
-0.24582
-0.223679
-0.267425
-0.272036
-0.309941
-0.30216
-0.264218
-0.307827
-0.273518
-0.262145
-0.280855
-0.287566
-0.333402
-0.326948
-0.289901
-0.281112
-0.321895
-0.27981
-0.31282
-0.335307
-0.290917
-0.290864
-0.316214
-0.279405
-0.27126
-0.302477
-0.30547
-0.258579
-0.270131
-0.306195
-0.260496
-0.342404
-0.351718
-0.347859
-0.342058
-0.348816
-0.341711
-0.345316
-0.346113
-0.352153
-0.44976
-0.377554
-0.446589
-0.357062
-0.346176
-0.355375
-0.34214
-0.346353
-0.346882
-0.342019
-0.337043
-0.35361
-0.425174
-0.361699
-0.364258
-0.445121
-0.385131
-0.370733
-0.3894
-0.317476
-0.320224
-0.326838
-0.307421
-0.313306
-0.329203
-0.312192
-0.276858
-0.308763
-0.266456
-0.310347
-0.275457
-0.310596
-0.270017
-0.278706
-0.284511
-0.316965
-0.316464
-0.285159
-0.314627
-0.280203
-0.279212
-0.309385
-0.290527
-0.322619
-0.288405
-0.280045
-0.310104
-0.423597
-0.446837
-0.372599
-0.421105
-0.425199
-0.369237
-0.442907
-0.35875
-0.296784
-0.310149
-0.359057
-0.308989
-0.402581
-0.398943
-0.42051
-0.416731
-0.361033
-0.429377
-0.365791
-0.437324
-0.415683
-0.399939
-0.343694
-0.39604
-0.404203
-0.393996
-0.34951
-0.409353
-0.371454
-0.305545
-0.311496
-0.372522
-0.311229
-0.388419
-0.390887
-0.405005
-0.400457
-0.358744
-0.421702
-0.412152
-0.352903
-0.415175
-0.370943
-0.368014
-0.454062
-0.454737
-0.43714
-0.41958
-0.432347
-0.458075
-0.449831
-0.451791
-0.415504
-0.421877
-0.443416
-0.427251
-0.446765
-0.451319
-0.73154
-0.812953
-0.781878
-0.833982
-0.782474
-0.738457
-0.804401
-0.730331
-0.776787
-0.824734
-0.789986
-0.781582
-0.722749
-0.798928
-0.848572
-0.838859
-0.776041
-0.818845
-0.779187
-0.857782
-0.832339
-0.816371
-0.797068
-0.80703
-0.828794
-0.797612
-0.803308
-0.817826
-0.719661
-0.772419
-0.782798
-0.805817
-0.777141
-0.715369
-0.778893
-0.720725
-0.773985
-0.787192
-0.809776
-0.724676
-0.779371
-0.781517
-0.865869
-0.842924
-0.778392
-0.822791
-0.870572
-0.778082
-0.858023
-0.873309
-0.779185
-0.87479
-0.823091
-0.876993
-0.779798
-0.866552
-0.699414
-0.751662
-0.759409
-0.816032
-0.764484
-0.703569
-0.750859
-0.696255
-0.769395
-0.815983
-0.755
-0.766737
-0.699787
-0.749863
-0.708029
-0.769671
-0.778662
-0.813528
-0.713338
-0.777991
-0.764596
-0.705304
-0.771002
-0.817128
-0.755739
-0.77833
-0.700169
-0.76022
-0.287717
-0.30909
-0.281894
-0.319255
-0.282028
-0.317892
-0.289793
-0.286886
-0.30771
-0.281716
-0.31767
-0.285792
-0.28183
-0.318966
-0.326204
-0.325969
-0.328782
-0.322127
-0.325907
-0.328301
-0.322373
-0.318336
-0.337041
-0.314211
-0.308113
-0.309701
-0.315206
-0.31444
-0.332224
-0.325122
-0.327027
-0.328029
-0.331294
-0.32692
-0.328956
-0.320938
-0.314859
-0.308678
-0.305316
-0.32178
-0.307939
-0.314241
-0.268928
-0.304951
-0.300326
-0.273026
-0.301201
-0.270323
-0.27346
-0.260941
-0.258324
-0.297665
-0.286748
-0.299107
-0.263275
-0.256889
-0.262865
-0.293858
-0.284709
-0.260114
-0.295219
-0.258209
-0.265763
-0.274886
-0.302549
-0.300308
-0.274347
-0.27676
-0.299308
-0.272244
-0.269787
-0.265134
-0.30025
-0.287021
-0.27193
-0.263179
-0.296889
-0.275771
-0.301383
-0.277432
-0.301702
-0.277455
-0.2768
-0.29991
-0.268686
-0.294899
-0.285082
-0.260499
-0.262094
-0.295195
-0.266572
-0.327716
-0.327489
-0.328379
-0.327217
-0.327412
-0.328793
-0.327855
-0.349129
-0.354472
-0.347764
-0.342562
-0.356245
-0.347516
-0.343124
-0.360676
-0.344473
-0.349739
-0.36927
-0.367137
-0.343032
-0.362126
-0.28152
-0.284075
-0.314579
-0.316697
-0.284116
-0.281079
-0.31636
-0.283178
-0.317558
-0.286255
-0.312772
-0.285578
-0.285388
-0.315607
-0.351553
-0.358803
-0.305685
-0.342869
-0.358074
-0.300414
-0.352804
-0.368844
-0.319253
-0.310674
-0.37146
-0.310482
-0.283641
-0.301155
-0.304297
-0.27706
-0.312726
-0.325766
-0.317291
-0.322379
-0.347671
-0.338843
-0.293486
-0.342282
-0.298478
-0.347242
-0.342154
-0.439119
-0.398028
-0.396305
-0.426094
-0.403157
-0.431382
-0.435032
-0.443318
-0.400109
-0.413771
-0.4392
-0.408116
-0.447395
-0.434812
-0.428528
-0.392944
-0.380359
-0.422364
-0.417945
-0.38716
-0.431524
-0.425129
-0.375857
-0.410518
-0.375594
-0.414691
-0.381079
-0.421097
-0.335444
-0.280242
-0.324163
-0.332421
-0.33246
-0.284427
-0.336033
-0.334526
-0.324458
-0.305401
-0.331328
-0.306073
-0.268208
-0.297749
-0.270509
-0.300684
-0.337732
-0.326894
-0.289995
-0.338554
-0.338341
-0.287362
-0.33778
-0.251307
-0.271267
-0.250491
-0.278663
-0.393273
-0.388767
-0.346995
-0.342943
-0.34213
-0.396803
-0.384317
-0.266781
-0.271376
-0.290569
-0.288109
-0.389283
-0.339016
-0.332941
-0.377717
-0.337151
-0.380675
-0.385849
-0.404404
-0.357378
-0.392416
-0.352501
-0.396989
-0.357691
-0.400432
-0.409435
-0.361106
-0.406076
-0.369437
-0.415265
-0.400635
-0.363121
-0.294366
-0.299189
-0.306138
-0.305867
-0.254151
-0.285084
-0.309438
-0.248957
-0.301952
-0.302382
-0.282877
-0.27931
-0.304213
-0.276978
-0.263125
-0.242215
-0.241341
-0.262609
-0.265442
-0.236388
-0.265351
-0.237439
-0.303934
-0.283745
-0.245569
-0.294499
-0.249262
-0.298855
-0.296815
-0.365438
-0.316774
-0.325571
-0.358855
-0.321183
-0.364721
-0.359791
-0.260074
-0.254766
-0.272065
-0.214955
-0.221359
-0.268235
-0.372752
-0.328099
-0.328341
-0.373414
-0.324571
-0.380284
-0.368675
-0.350236
-0.312696
-0.311781
-0.357114
-0.349948
-0.307455
-0.355424
-0.215102
-0.212302
-0.212339
-0.204872
-0.254912
-0.211243
-0.211257
-0.261947
-0.345828
-0.310042
-0.344479
-0.298399
-0.348019
-0.303283
-0.340526
-0.285798
-0.23209
-0.269686
-0.284692
-0.285583
-0.235577
-0.284546
-0.277538
-0.23351
-0.240057
-0.274534
-0.243431
-0.261807
-0.24327
-0.262323
-0.244429
-0.289531
-0.273106
-0.244244
-0.290437
-0.29301
-0.23995
-0.287492
-0.260947
-0.247769
-0.258758
-0.250814
-0.306348
-0.319287
-0.285546
-0.282471
-0.283709
-0.31019
-0.313307
-0.20917
-0.239369
-0.237702
-0.210731
-0.359443
-0.406209
-0.389594
-0.343442
-0.349374
-0.405121
-0.356428
-0.366515
-0.362027
-0.411401
-0.395458
-0.369719
-0.355721
-0.410017
-0.203533
-0.228169
-0.229877
-0.202146
-0.299615
-0.277808
-0.277046
-0.302427
-0.278916
-0.307682
-0.296459
-0.322316
-0.294651
-0.324505
-0.287539
-0.329602
-0.286257
-0.317152
-0.186761
-0.212531
-0.194492
-0.21327
-0.328768
-0.298086
-0.340053
-0.29298
-0.333909
-0.334
-0.289334
-0.381214
-0.367553
-0.410548
-0.416856
-0.372773
-0.376469
-0.41936
-0.202786
-0.227459
-0.231169
-0.203079
-0.257404
-0.26291
-0.198659
-0.230732
-0.257656
-0.196334
-0.262312
-0.239946
-0.171554
-0.197495
-0.241109
-0.195616
-0.245946
-0.245939
-0.242946
-0.248119
-0.246403
-0.243209
-0.246504
-0.243104
-0.255427
-0.229486
-0.193067
-0.259495
-0.195397
-0.260791
-0.252239
-0.282012
-0.266372
-0.261364
-0.283104
-0.267386
-0.287878
-0.279957
-0.211615
-0.239559
-0.239315
-0.210818
-0.347758
-0.400272
-0.336344
-0.374276
-0.348303
-0.331586
-0.401443
-0.216298
-0.238731
-0.23869
-0.216966
-0.287463
-0.264127
-0.271591
-0.29641
-0.271119
-0.289009
-0.291346
-0.342105
-0.322222
-0.370669
-0.395056
-0.327777
-0.339534
-0.396365
-0.272988
-0.263638
-0.252344
-0.280407
-0.276358
-0.262972
-0.275145
-0.323707
-0.381127
-0.304958
-0.35197
-0.309734
-0.318868
-0.383812
-0.226247
-0.245179
-0.239354
-0.243153
-0.216701
-0.238134
-0.238042
-0.216465
-0.270806
-0.25119
-0.271377
-0.2638
-0.274319
-0.262272
-0.271169
-0.328931
-0.318438
-0.35563
-0.389672
-0.313189
-0.332865
-0.387494
-0.244253
-0.190704
-0.224196
-0.254475
-0.24369
-0.192422
-0.255008
-0.232621
-0.160027
-0.183788
-0.231948
-0.184896
-0.247901
-0.244606
-0.247358
-0.245406
-0.245833
-0.224486
-0.193841
-0.257915
-0.249568
-0.191992
-0.256263
-0.247763
-0.246869
-0.247958
-0.246491
-0.2664
-0.262952
-0.263674
-0.242228
-0.262948
-0.266959
-0.260967
-0.249809
-0.249001
-0.248754
-0.250582
-0.299187
-0.357016
-0.322454
-0.285518
-0.28662
-0.360716
-0.298029
-0.30119
-0.290661
-0.367541
-0.325098
-0.302787
-0.287916
-0.364587
-0.246606
-0.246722
-0.247141
-0.245961
-0.265457
-0.241536
-0.261038
-0.259494
-0.261825
-0.260133
-0.265344
-0.268716
-0.246676
-0.263973
-0.264431
-0.266829
-0.26483
-0.268
-0.310352
-0.377314
-0.302228
-0.338474
-0.31376
-0.298148
-0.374888
-0.241273
-0.243002
-0.241544
-0.243617
-0.270345
-0.247007
-0.270362
-0.265549
-0.271153
-0.267772
-0.265738
-0.307019
-0.292346
-0.335651
-0.370411
-0.296131
-0.305109
-0.37207
-0.244608
-0.246378
-0.245817
-0.245439
-0.214941
-0.236249
-0.186102
-0.208266
-0.217707
-0.184968
-0.23394
-0.204719
-0.118768
-0.151832
-0.207572
-0.147948
-0.226846
-0.228173
-0.229895
-0.22545
-0.237593
-0.242599
-0.239397
-0.240995
-0.260788
-0.254019
-0.237646
-0.255365
-0.255229
-0.257322
-0.259216
-0.251157
-0.248714
-0.248732
-0.250719
-0.292913
-0.350464
-0.284325
-0.313701
-0.295087
-0.282507
-0.344811
-0.251135
-0.246995
-0.247282
-0.251121
-0.262919
-0.237987
-0.258787
-0.258747
-0.257302
-0.263801
-0.257386
-0.289166
-0.279654
-0.31167
-0.330475
-0.282053
-0.285425
-0.337574
-0.259821
-0.252597
-0.23041
-0.255012
-0.251639
-0.251625
-0.258494
-0.270636
-0.299987
-0.267146
-0.297111
-0.272263
-0.266712
-0.304968
-0.246013
-0.23635
-0.238383
-0.243851
-0.249875
-0.246279
-0.24475
-0.250627
-0.257242
-0.226524
-0.244318
-0.243044
-0.249276
-0.246486
-0.254567
-0.276952
-0.278882
-0.300329
-0.321954
-0.274866
-0.28104
-0.314054
-0.0993885
-0.0761927
-0.102197
-0.0545029
-0.0955705
-0.102558
-0.063898
-0.22103
-0.225768
-0.223182
-0.223592
-0.207813
-0.209128
-0.205343
-0.211416
-0.233952
-0.219112
-0.218732
-0.191515
-0.21528
-0.234667
-0.213363
-0.207084
-0.194896
-0.198085
-0.204196
-0.240867
-0.26168
-0.252826
-0.226262
-0.229708
-0.263314
-0.239485
-0.245303
-0.241698
-0.272911
-0.25919
-0.246238
-0.235686
-0.269023
-0.220884
-0.212982
-0.211588
-0.221452
-0.230541
-0.186202
-0.205104
-0.204182
-0.210366
-0.207688
-0.228474
-0.241697
-0.203557
-0.222937
-0.228064
-0.228754
-0.23531
-0.23976
-0.255807
-0.292201
-0.261234
-0.280518
-0.259029
-0.255716
-0.290356
-0.239035
-0.233763
-0.241304
-0.23218
-0.247469
-0.209092
-0.238357
-0.237588
-0.248457
-0.23356
-0.24282
-0.249685
-0.245238
-0.275542
-0.281606
-0.250926
-0.249971
-0.283688
-0.228057
-0.217621
-0.220488
-0.225904
-0.364263
-0.330353
-0.322738
-0.342932
-0.335771
-0.348745
-0.358878
-0.374482
-0.358763
-0.326437
-0.35373
-0.345709
-0.35264
-0.381067
-0.325358
-0.293859
-0.275841
-0.292488
-0.295086
-0.297793
-0.324755
-0.328765
-0.312525
-0.302784
-0.282645
-0.299614
-0.330988
-0.305248
-0.352164
-0.322833
-0.306304
-0.336894
-0.322381
-0.351886
-0.332761
-0.345307
-0.318644
-0.300773
-0.312779
-0.315713
-0.326579
-0.341974
-0.0612267
-0.0501761
-0.0677755
-0.0241783
-0.0628288
-0.0677444
-0.0253737
-0.144849
-0.139486
-0.138058
-0.147462
-0.135759
-0.153916
-0.139674
-0.151186
-0.215158
-0.182702
-0.166861
-0.181543
-0.185567
-0.18685
-0.212729
-0.198054
-0.191334
-0.188183
-0.20079
-0.235349
-0.257895
-0.218373
-0.235043
-0.235879
-0.212948
-0.257137
-0.270458
-0.265311
-0.185744
-0.171562
-0.173747
-0.184134
-0.220088
-0.171071
-0.197907
-0.196906
-0.191813
-0.22327
-0.191457
-0.23279
-0.202832
-0.230472
-0.249555
-0.208379
-0.232299
-0.252632
-0.206819
-0.179506
-0.155366
-0.178688
-0.174429
-0.177162
-0.209541
-0.22544
-0.239957
-0.189877
-0.215975
-0.193808
-0.223174
-0.242027
-0.164921
-0.14421
-0.148478
-0.162422
-0.258887
-0.261836
-0.179156
-0.168746
-0.165929
-0.181727
-0.204643
-0.153312
-0.168732
-0.176332
-0.172391
-0.178052
-0.202331
-0.227362
-0.199919
-0.217553
-0.246431
-0.195521
-0.230024
-0.243662
-0.0748574
-0.0638111
-0.0786814
-0.0599223
-0.0757199
-0.0778112
-0.0591855
-0.152295
-0.141364
-0.150001
-0.143717
-0.159968
-0.15799
-0.16131
-0.155873
-0.189946
-0.161967
-0.1693
-0.144543
-0.16758
-0.192261
-0.15986
-0.172795
-0.16978
-0.168016
-0.175459
-0.254553
-0.282975
-0.255768
-0.281576
-0.209831
-0.225065
-0.193767
-0.174599
-0.176696
-0.229044
-0.204317
-0.213149
-0.180598
-0.233705
-0.195673
-0.215723
-0.17764
-0.231415
-0.160309
-0.158312
-0.160414
-0.15722
-0.187059
-0.145926
-0.161243
-0.158805
-0.166555
-0.159828
-0.181836
-0.19593
-0.147737
-0.161907
-0.169198
-0.164421
-0.171268
-0.193561
-0.220644
-0.239067
-0.188772
-0.206428
-0.221843
-0.185175
-0.238312
-0.156667
-0.140797
-0.160184
-0.139699
-0.257742
-0.284824
-0.256756
-0.2858
-0.198142
-0.147486
-0.167976
-0.175023
-0.200429
-0.164923
-0.172707
-0.219479
-0.181121
-0.205037
-0.235392
-0.184288
-0.217381
-0.23737
-0.151511
-0.155918
-0.152608
-0.154508
-0.319055
-0.289585
-0.282894
-0.256447
-0.320858
-0.287835
-0.276905
-0.313452
-0.267161
-0.251819
-0.27881
-0.282059
-0.27233
-0.310975
-0.302548
-0.268593
-0.23796
-0.25457
-0.270779
-0.259119
-0.300119
-0.303956
-0.264966
-0.239337
-0.27517
-0.272247
-0.260492
-0.307174
-0.332982
-0.298734
-0.273744
-0.354485
-0.278915
-0.36161
-0.329192
-0.301505
-0.25162
-0.324098
-0.2549
-0.319522
-0.306027
-0.2439
-0.276964
-0.247353
-0.211425
-0.220102
-0.251594
-0.22591
-0.271834
-0.281424
-0.23649
-0.256951
-0.214197
-0.254488
-0.285031
-0.230119
-0.296801
-0.248037
-0.311811
-0.231228
-0.315127
-0.238422
-0.292537
-0.315997
-0.255605
-0.276824
-0.329535
-0.262349
-0.310985
-0.335332
-0.294955
-0.266628
-0.227699
-0.25271
-0.26397
-0.297583
-0.247665
-0.291495
-0.239568
-0.225968
-0.258919
-0.261296
-0.245285
-0.288288
-0.321281
-0.28098
-0.271317
-0.34786
-0.325227
-0.265431
-0.342023
-0.347775
-0.27339
-0.302461
-0.382936
-0.343328
-0.276823
-0.386794
-0.315968
-0.286441
-0.226865
-0.25682
-0.281067
-0.320815
-0.252987
-0.310686
-0.245398
-0.269776
-0.222536
-0.305904
-0.275164
-0.249196
-0.456949
-0.319281
-0.409825
-0.343453
-0.413396
-0.454374
-0.345573
-0.615712
-0.607943
-0.437534
-0.45187
-0.605274
-0.450949
-0.618892
-0.612251
-0.448703
-0.599091
-0.436397
-0.608841
-0.602224
-0.449746
-0.62537
-0.610976
-0.453151
-0.439967
-0.62252
-0.454149
-0.613057
-0.628677
-0.456431
-0.616173
-0.441308
-0.63103
-0.455746
-0.61548
-0.0608212
-0.0511451
-0.0679422
-0.0529888
-0.0653628
-0.0634721
-0.0501343
-0.154279
-0.15767
-0.157744
-0.154852
-0.161424
-0.164889
-0.162859
-0.163709
-0.170315
-0.151568
-0.144142
-0.150767
-0.15161
-0.154124
-0.169744
-0.17701
-0.169874
-0.170446
-0.175983
-0.192978
-0.217058
-0.172912
-0.182682
-0.196136
-0.169604
-0.213766
-0.271284
-0.3392
-0.280924
-0.326975
-0.180789
-0.171701
-0.17178
-0.181454
-0.172686
-0.144969
-0.155806
-0.158211
-0.153232
-0.175212
-0.155902
-0.189979
-0.163185
-0.179179
-0.208834
-0.167112
-0.189392
-0.210007
-0.16854
-0.152926
-0.134493
-0.147555
-0.143739
-0.150925
-0.170283
-0.185702
-0.200902
-0.149154
-0.162287
-0.152549
-0.182422
-0.204387
-0.175209
-0.163691
-0.164343
-0.174299
-0.286845
-0.331704
-0.283136
-0.327646
-0.181559
-0.171633
-0.170788
-0.181879
-0.165094
-0.13271
-0.138216
-0.144038
-0.141165
-0.147389
-0.162204
-0.189464
-0.159764
-0.165722
-0.209674
-0.155558
-0.190734
-0.208364
-0.0180649
0.0139111
-0.0053733
0.0126186
-0.0135621
-0.00981175
0.00489227
-0.149729
-0.155275
-0.152087
-0.153567
-0.138988
-0.139343
-0.135469
-0.142491
-0.123339
-0.10389
-0.110546
-0.117556
-0.25995
-0.296259
-0.262353
-0.294063
-0.147711
-0.165309
-0.137004
-0.128069
-0.132824
-0.166218
-0.146164
-0.15267
-0.142083
-0.174658
-0.141312
-0.15687
-0.13787
-0.170258
-0.14655
-0.141005
-0.137007
-0.150025
-0.172961
-0.19544
-0.147162
-0.15273
-0.177245
-0.145413
-0.190681
-0.170894
-0.161358
-0.171943
-0.160134
-0.266246
-0.296978
-0.263443
-0.299715
-0.155241
-0.127179
-0.136641
-0.139324
-0.157668
-0.13585
-0.136863
-0.166473
-0.144527
-0.151492
-0.180665
-0.146568
-0.16192
-0.18527
-0.156353
-0.144462
-0.147512
-0.153348
-0.274802
-0.213524
-0.202148
-0.296583
-0.29664
-0.20917
-0.273074
-0.258493
-0.238804
-0.214193
-0.196743
-0.262593
-0.235064
-0.207032
-0.347675
-0.334295
-0.254703
-0.280699
-0.221001
-0.304426
-0.223879
-0.301882
-0.284091
-0.21567
-0.252286
-0.194869
-0.192176
-0.227452
-0.229971
-0.201436
-0.249041
-0.342818
-0.209699
-0.19998
-0.318632
-0.344887
-0.31648
-0.203657
-0.337079
-0.19503
-0.310242
-0.192435
-0.311322
-0.198096
-0.33577
-0.266109
-0.197198
-0.195333
-0.293643
-0.191738
-0.269483
-0.290983
-0.23581
-0.215499
-0.173087
-0.1762
-0.218374
-0.180876
-0.232517
-0.265763
-0.331452
-0.313427
-0.272302
-0.240558
-0.190061
-0.176798
-0.225015
-0.222314
-0.184766
-0.24438
-0.260689
-0.190877
-0.182984
-0.283946
-0.187633
-0.285713
-0.257663
-0.229331
-0.163266
-0.262684
-0.161148
-0.257206
-0.233918
-0.158746
-0.274371
-0.289391
-0.285968
-0.279657
-0.202041
-0.182764
-0.143116
-0.144346
-0.183388
-0.148442
-0.199638
-0.204881
-0.157045
-0.19086
-0.147142
-0.186626
-0.208554
-0.152338
-0.225523
-0.157135
-0.246527
-0.150505
-0.252775
-0.154775
-0.220136
-0.320007
-0.171519
-0.176701
-0.292823
-0.316033
-0.296757
-0.176799
-0.340143
-0.170656
-0.348729
-0.172328
-0.336264
-0.352524
-0.176555
-0.326683
-0.180853
-0.305358
-0.187161
-0.330061
-0.302668
-0.181698
-0.242951
-0.167609
-0.17427
-0.267611
-0.171739
-0.239
-0.271221
-0.222948
-0.210707
-0.161504
-0.172605
-0.206304
-0.227072
-0.168451
-0.272703
-0.288456
-0.290174
-0.273037
-0.216586
-0.161218
-0.159002
-0.19652
-0.200644
-0.165273
-0.213054
-0.248763
-0.177888
-0.179268
-0.279051
-0.252159
-0.175091
-0.276442
-0.305278
-0.24722
-0.275401
-0.348716
-0.304362
-0.247225
-0.349784
-0.331263
-0.259281
-0.32612
-0.26051
-0.261961
-0.219223
-0.188007
-0.217393
-0.219773
-0.262121
-0.21779
-0.261924
-0.218111
-0.220345
-0.188161
-0.26271
-0.219934
-0.217884
-0.306881
-0.275773
-0.247271
-0.350929
-0.307651
-0.247398
-0.350806
-0.432863
-0.302243
-0.390222
-0.330564
-0.38829
-0.434445
-0.329668
-0.476818
-0.516944
-0.356328
-0.383788
-0.474115
-0.35793
-0.519698
-0.430202
-0.30118
-0.380838
-0.326803
-0.385066
-0.426914
-0.328638
-0.479137
-0.359498
-0.523749
-0.384359
-0.480617
-0.358734
-0.522064
-0.436473
-0.304202
-0.391868
-0.331147
-0.33131
-0.392471
-0.435801
-0.483509
-0.527132
-0.360209
-0.385241
-0.483865
-0.360225
-0.526803
-0.437219
-0.304603
-0.331585
-0.393166
-0.43741
-0.331606
-0.393153
-0.48263
-0.359899
-0.385088
-0.524932
-0.359961
-0.481813
-0.525887
-0.614125
-0.445737
-0.458257
-0.639034
-0.637479
-0.445856
-0.615655
-0.584233
-0.426986
-0.41014
-0.557622
-0.555944
-0.42722
-0.585962
-0.651853
-0.46878
-0.648691
-0.468804
-0.649681
-0.650801
-0.46938
-0.647773
-0.621879
-0.447709
-0.467614
-0.620584
-0.466992
-0.649264
-0.64662
-0.465975
-0.619831
-0.447187
-0.619961
-0.645014
-0.46635
-0.653343
-0.469298
-0.653906
-0.470719
-0.65225
-0.470046
-0.655057
-0.617561
-0.445869
-0.640288
-0.458846
-0.445854
-0.616683
-0.64158
-0.587994
-0.55976
-0.408823
-0.426713
-0.559604
-0.42673
-0.588085
-0.588042
-0.426982
-0.409125
-0.558801
-0.559683
-0.426901
-0.587122
-0.617568
-0.459
-0.445806
-0.642873
-0.445776
-0.64214
-0.617704
-0.605742
-0.635658
-0.446856
-0.461253
-0.632395
-0.609036
-0.446348
-0.574383
-0.545952
-0.407805
-0.425073
-0.549238
-0.426312
-0.570453
-0.577631
-0.427165
-0.554243
-0.408233
-0.552008
-0.580502
-0.42661
-0.602229
-0.461356
-0.624371
-0.444993
-0.628999
-0.44623
-0.597811
-0.65492
-0.473422
-0.651481
-0.471669
-0.651907
-0.653826
-0.472696
-0.649312
-0.621455
-0.448603
-0.468004
-0.620911
-0.649389
-0.468568
-0.648096
-0.468905
-0.614224
-0.448477
-0.644156
-0.619169
-0.468933
-0.655773
-0.470953
-0.654374
-0.471228
-0.655541
-0.654614
-0.471988
-0.614053
-0.638161
-0.44644
-0.460169
-0.446047
-0.611589
-0.640588
-0.586366
-0.559083
-0.408703
-0.426548
-0.558565
-0.587202
-0.426724
-0.584773
-0.426989
-0.408638
-0.555909
-0.557357
-0.426728
-0.582723
-0.615811
-0.459777
-0.445689
-0.642494
-0.616788
-0.445922
-0.641969
0.0355523
0.0625844
0.0435778
0.0552291
0.0396744
0.0434527
0.0496231
-0.0805076
-0.0860651
-0.08719
-0.0778603
-0.0893418
-0.0947332
-0.0896157
-0.0942766
-0.104031
-0.0971376
-0.0954767
-0.110956
-0.138528
-0.163717
-0.121955
-0.12238
-0.142865
-0.116396
-0.159834
-0.21159
-0.254814
-0.208449
-0.260956
-0.109554
-0.100603
-0.101573
-0.108821
-0.133886
-0.10906
-0.119343
-0.148452
-0.113171
-0.129191
-0.154357
-0.118022
-0.132624
-0.0955782
-0.105975
-0.0989352
-0.116538
-0.134882
-0.101913
-0.0922887
-0.0933025
-0.100712
-0.211061
-0.249191
-0.210701
-0.247071
-0.108026
-0.100238
-0.0996722
-0.108592
-0.12145
-0.105829
-0.108804
-0.142897
-0.101846
-0.124672
-0.13888
0.0450934
0.0779017
0.0523178
0.0712674
0.0427416
0.054321
0.0795867
-0.0707322
-0.0849915
-0.0743894
-0.0840089
-0.0614922
-0.0724228
-0.0577758
-0.0755694
-0.0658643
-0.0816313
-0.0738104
-0.0766427
-0.161924
-0.196253
-0.165445
-0.192888
-0.0919864
-0.104532
-0.0701611
-0.0805557
-0.0910064
-0.0735228
-0.106188
-0.0976019
-0.077945
-0.115465
-0.0827474
-0.10121
-0.0752015
-0.111752
-0.0774676
-0.0739392
-0.068807
-0.0818012
-0.111376
-0.128596
-0.0914379
-0.0950516
-0.113293
-0.0876555
-0.126252
-0.09795
-0.0910358
-0.0991308
-0.0901572
-0.171978
-0.200289
-0.169456
-0.203153
-0.107621
-0.081115
-0.09165
-0.12
-0.0838709
-0.10591
-0.12262
-0.0881947
-0.0783424
-0.0811639
-0.0857592
-0.200877
-0.140747
-0.131898
-0.216488
-0.22436
-0.137158
-0.193912
-0.193206
-0.182124
-0.139917
-0.12925
-0.197443
-0.178339
-0.134304
-0.257032
-0.268053
-0.272173
-0.250034
-0.207616
-0.143546
-0.240065
-0.146226
-0.232439
-0.214146
-0.140281
-0.18696
-0.126391
-0.126273
-0.164866
-0.172099
-0.131201
-0.179504
-0.271327
-0.134301
-0.130503
-0.242498
-0.27455
-0.239273
-0.129767
-0.286246
-0.286569
-0.114636
-0.119872
-0.29344
-0.122661
-0.280488
-0.292399
-0.131117
-0.306477
-0.118292
-0.296949
-0.300872
-0.126178
-0.266892
-0.127346
-0.232161
-0.123833
-0.235542
-0.126548
-0.262928
-0.183476
-0.128423
-0.127084
-0.209215
-0.123615
-0.187239
-0.205827
-0.163117
-0.146809
-0.112644
-0.112981
-0.149214
-0.116276
-0.160515
-0.242082
-0.260398
-0.256517
-0.244665
-0.242236
-0.267465
-0.26168
-0.167533
-0.123548
-0.115469
-0.158252
-0.153526
-0.119145
-0.172388
-0.179733
-0.123927
-0.117193
-0.200238
-0.120533
-0.202775
-0.177073
-0.270716
-0.273449
-0.152908
-0.102859
-0.102997
-0.177253
-0.170387
-0.158798
-0.0997412
-0.243172
-0.267548
-0.269941
-0.238468
-0.208551
-0.218632
-0.21631
-0.211129
-0.131513
-0.114323
-0.0888514
-0.0878442
-0.125539
-0.119393
-0.0928425
-0.144417
-0.0996922
-0.151582
-0.0931372
-0.160577
-0.137159
-0.097068
-0.138829
-0.098456
-0.130129
-0.090239
-0.125842
-0.143814
-0.0952878
-0.259261
-0.270412
-0.27308
-0.256889
-0.240829
-0.113824
-0.116302
-0.208387
-0.231697
-0.215816
-0.11622
-0.263673
-0.276262
-0.107075
-0.117087
-0.26799
-0.271296
-0.114989
-0.252452
-0.109871
-0.247029
-0.104342
-0.242844
-0.256277
-0.112241
-0.250477
-0.119144
-0.226836
-0.121134
-0.256038
-0.223148
-0.118979
-0.289739
-0.302736
-0.167688
-0.105668
-0.111844
-0.183997
-0.108154
-0.1643
-0.188902
-0.155126
-0.143402
-0.102318
-0.109813
-0.141153
-0.157193
-0.106644
-0.217072
-0.221828
-0.223929
-0.2147
-0.257206
-0.272406
-0.257552
-0.273481
-0.151698
-0.101091
-0.0991132
-0.134811
-0.137656
-0.103721
-0.148762
-0.171526
-0.11476
-0.114004
-0.196328
-0.173589
-0.111013
-0.193941
-0.253958
-0.271003
-0.255901
-0.273096
-0.250513
-0.1968
-0.228034
-0.272141
-0.244809
-0.204238
-0.27965
-0.241906
-0.219774
-0.238796
-0.221505
-0.225493
-0.200768
-0.153855
-0.187672
-0.197371
-0.229905
-0.18262
-0.507851
-0.469198
-0.514527
-0.474592
-0.218882
-0.169148
-0.191424
-0.150734
-0.218021
-0.191382
-0.177569
-0.258456
-0.234347
-0.215724
-0.295037
-0.263845
-0.209993
-0.288674
-0.451637
-0.494886
-0.439627
-0.495539
-0.297536
-0.224789
-0.285118
-0.254516
-0.27336
-0.31222
-0.242946
-0.407809
-0.464301
-0.412322
-0.464739
-0.540431
-0.570922
-0.677331
-0.304137
-0.310373
-0.23281
-0.267242
-0.284597
-0.25041
-0.33476
-0.278649
-0.215566
-0.244877
-0.216378
-0.263106
-0.257529
-0.232231
-0.416743
-0.448562
-0.450894
-0.41986
-0.327114
-0.275707
-0.382211
-0.281158
-0.345405
-0.262638
-0.361434
-0.340612
-0.251495
-0.298588
-0.263692
-0.272878
-0.307983
-0.328461
-0.395388
-0.451626
-0.314095
-0.32961
-0.407187
-0.305651
-0.438553
-0.435479
-0.448004
-0.435989
-0.44908
-0.613801
-0.58378
-0.353515
-0.258379
-0.287945
-0.326723
-0.363583
-0.280475
-0.318651
-0.424904
-0.446286
-0.447172
-0.421323
-0.380122
-0.286358
-0.319794
-0.404137
-0.296898
-0.364969
-0.421422
-0.58394
-0.433657
-0.452981
-0.604876
-0.610893
-0.437951
-0.577986
-0.561612
-0.542127
-0.402679
-0.423649
-0.537841
-0.566374
-0.421333
-0.557014
-0.413952
-0.399506
-0.527773
-0.533248
-0.418091
-0.551277
-0.588435
-0.45654
-0.620379
-0.443679
-0.615031
-0.59359
-0.44135
-0.609365
-0.451573
-0.615847
-0.448249
-0.615986
-0.609626
-0.444449
-1.15869
-1.09962
-1.09335
-1.17223
-0.58307
-0.541025
-0.400477
-0.415426
-0.5543
-0.424301
-0.569587
-0.593116
-0.439423
-0.573788
-0.407209
-0.563654
-0.601913
-0.431754
-0.60075
-0.44102
-0.592244
-0.428226
-0.601249
-0.437044
-0.590551
-0.564439
-0.428728
-0.598347
-0.437017
-0.422586
-0.571345
-0.591552
-0.528595
-0.495797
-0.378291
-0.38889
-0.504873
-0.396617
-0.51962
-0.537827
-0.409204
-0.384887
-0.521115
-0.514243
-0.403288
-0.544665
-0.555174
-0.429975
-0.407764
-0.573277
-0.415696
-0.58249
-0.546032
-0.437834
-0.34011
-0.487403
-0.348106
-0.460986
-0.462422
-0.329779
-0.54504
-0.516819
-0.384298
-0.334697
-0.273157
-0.284122
-0.352291
-0.362554
-0.297301
-0.404091
-0.319359
-0.381407
-0.284222
-0.424328
-0.366737
-0.310293
-0.41537
-0.331987
-0.413757
-0.299894
-0.391688
-0.438298
-0.314846
-0.545047
-0.378878
-0.530782
-0.398866
-0.524378
-0.549975
-0.393982
-0.930911
-0.976868
-0.894155
-0.995385
-0.537062
-0.524562
-0.373433
-0.404791
-0.510347
-0.551562
-0.393988
-0.518258
-0.367397
-0.472454
-0.362658
-0.495856
-0.491964
-0.38189
-0.563009
-0.411452
-0.579337
-0.417713
-0.575887
-0.567296
-0.406553
-0.504006
-0.512432
-0.362912
-0.389358
-0.376522
-0.486326
-0.530859
-0.49491
-0.483109
-0.352384
-0.380079
-0.470729
-0.507031
-0.369968
-0.478255
-0.345928
-0.341823
-0.436563
-0.453844
-0.358981
-0.46124
-0.521004
-0.401439
-0.398557
-0.560393
-0.533259
-0.388085
-0.548129
-1.36851
-1.31265
-1.36273
-1.3024
-1.31483
-1.36227
-1.36985
-1.32813
-1.53373
-1.51253
-1.47592
-1.51046
-1.51054
-1.48669
-1.30495
-1.29491
-1.32577
-1.29257
-1.30889
-1.29821
-1.30693
-1.48074
-1.53882
-1.44572
-1.53458
-1.45064
-1.46999
-1.53895
-1.30232
-1.29345
-1.31653
-1.31624
-1.29353
-1.29767
-1.31218
-1.47419
-1.44735
-1.53991
-1.53837
-1.44628
-1.47433
-1.5479
-1.38207
-1.38508
-1.31602
-1.33863
-1.38849
-1.31703
-1.37829
-1.92762
-1.98006
-1.99997
-1.99765
-1.9619
-1.98477
-1.94688
-1.70705
-1.72687
-1.62925
-1.61419
-1.60206
-1.73053
-1.71612
-1.80519
-1.97958
-1.84217
-1.88497
-1.85644
-1.90787
-1.78725
-1.56136
-1.95522
-1.98604
-2.01171
-1.98138
-2.0843
-1.95744
-1.9952
-1.93672
-2.03411
-2.0746
-1.9585
-2.4678
-2.52266
-2.52326
-2.08542
-2.05623
-2.0798
-2.05431
-2.08868
-2.07993
-2.03773
-1.9697
-1.99846
-1.96586
-2.01382
-1.95415
-2.00575
-2.02891
-2.0228
-1.96764
-2.0076
-2.14582
-2.02564
-2.2476
-2.07038
-2.20529
-2.02126
-2.19281
-2.44649
-2.44641
-1.95138
-1.96213
-1.98375
-1.95859
-1.94747
-2.02933
-1.61982
-1.55043
-1.56606
-1.58993
-1.55524
-1.63527
-1.59328
-1.711
-1.71121
-1.59845
-1.62422
-1.59946
-1.70717
-1.71768
-1.81765
-1.89884
-1.7466
-1.86164
-1.76685
-1.80094
-1.9248
-1.88038
-1.83645
-2.00928
-1.89907
-1.98981
-1.89951
-1.81037
-2.07389
-2.09414
-2.15939
-2.10547
-2.12712
-2.1452
-2.03312
-2.04761
-2.05967
-2.5915
-2.46691
-2.42819
-2.52422
-2.48261
-2.58386
-2.48293
-1.78082
-1.68652
-1.64119
-1.76498
-1.68046
-1.78644
-1.75775
-1.7101
-1.67982
-1.65252
-1.68568
-1.66203
-1.69606
-1.71227
-1.77922
-1.7339
-1.64086
-1.66688
-1.6842
-1.75027
-1.77556
-2.11693
-2.15995
-2.28201
-2.29797
-2.09978
-2.15527
-2.25631
-2.02161
-2.01758
-1.96671
-2.11114
-2.04401
-1.95015
-2.10297
-1.26875
-1.09919
-1.06245
-1.08706
-1.07289
-1.06534
-1.08743
-1.11016
-1.22198
-1.28333
-1.20646
-1.28052
-1.22008
-1.20577
-1.29143
-1.11807
-1.10465
-1.08427
-1.09516
-1.11333
-1.08908
-1.09965
-1.40524
-1.411
-1.36799
-1.33771
-1.36324
-1.41009
-1.40184
-1.57904
-1.60899
-1.57485
-1.59293
-1.55927
-1.60324
-1.61261
-1.39292
-1.35999
-1.37098
-1.07165
-1.09431
-1.10519
-1.07522
-1.10024
-1.08888
-1.09725
-1.09987
-1.55549
-1.60619
-1.57236
-1.58569
-1.55393
-1.57479
1.27009
1.29401
1.30072
1.31533
0.713762
0.733561
0.732155
0.794684
0.800659
1.19419
1.25412
1.22479
1.25223
1.25504
1.22513
1.19094
0.810435
0.805808
0.794685
0.729622
0.806545
0.808999
0.752716
0.77673
0.82974
0.748816
0.824733
0.751351
0.829521
0.825204
0.806597
0.786222
1.19266
1.28911
1.23342
1.26447
1.22629
1.19975
1.27105
-2.09531
-1.64167
-1.69433
-1.73193
-1.63978
-1.66811
-1.68726
0.807014
0.723966
0.797649
0.802181
0.727828
0.802964
0.820479
0.745554
0.823646
0.824676
0.742648
0.819342
1.33458
1.33709
1.33522
1.3316
0.240324
0.184211
0.187172
0.219297
0.182342
0.234957
0.228655
0.241726
0.153812
0.17344
0.229568
0.238777
0.173339
0.23478
0.149461
0.115126
0.134083
0.128622
0.149743
0.134304
0.115625
0.145722
0.121809
0.180277
0.107716
0.165645
0.108786
0.117062
0.161723
0.277304
0.172785
0.209806
0.196603
0.218369
0.248545
0.392311
0.268317
0.208375
0.203551
0.221961
0.218501
0.242874
0.242448
0.119991
0.142054
0.126474
0.147782
0.148911
0.129614
0.116639
0.0762765
0.0767067
0.147099
0.140824
0.0796462
0.0715834
0.143362
0.139087
0.25314
0.216008
0.159892
0.137005
0.216876
0.161371
0.0727389
0.125492
0.13603
0.0789253
0.0769075
0.133252
0.0758051
0.210016
0.218392
0.206028
0.204592
0.20972
0.190298
0.133098
0.202184
0.214423
0.186885
0.221291
0.207791
0.188183
0.21931
0.227445
0.190839
0.208856
0.219092
0.20668
0.183486
0.204198
0.218757
0.189619
0.204651
0.461851
0.381524
0.465219
0.379019
0.466877
0.461325
0.461959
0.384634
0.466657
0.387917
0.463817
0.463249
0.466021
0.437616
0.38876
0.450039
0.456156
0.455345
0.454204
0.436863
0.386844
0.437992
0.387685
0.453105
-2.02517
-2.10469
-2.07259
-2.10749
-2.06089
-2.03041
-2.10393
-1.87946
-1.93806
-2.04914
-1.93537
-1.9714
-1.85536
-1.94537
-2.05854
-2.28012
-2.05695
-2.298
-2.10111
-1.99169
-2.26766
-1.99757
-1.98796
-2.1324
-2.06
-2.03183
-1.95489
-2.12684
-1.43069
-1.38357
-1.40673
-1.41121
-1.41177
-1.40369
-1.42298
-1.62359
-1.66244
-1.61693
-1.18028
-1.13436
-1.18059
-1.10988
-1.17627
-1.18663
-1.13925
-1.14658
-1.09174
-1.09197
-1.09495
-1.1425
-1.18061
-1.17779
-1.11324
-1.1385
-1.17889
-1.14209
-1.17861
-1.47551
-1.57614
-1.52864
-1.61381
-1.46847
-1.52997
-1.57954
-1.47836
-1.53748
-1.60439
-1.61007
-1.49509
-1.53454
-1.58275
-1.17873
-1.1335
-1.17412
-1.11744
-1.17751
-1.13879
-1.17678
-1.12194
-1.10686
-1.11193
-1.1223
-1.16872
-1.17593
-1.11278
-1.13794
-1.13725
-1.17168
-1.17668
-1.43322
-1.39622
-1.35153
-1.44432
-1.44171
-1.35428
-1.43
-1.61194
-1.66239
-1.60582
-1.65999
-1.60742
-1.60101
-1.6614
-1.43188
-1.39324
-1.44669
-1.3621
-1.43994
-1.43546
-1.35286
-1.61809
-1.68464
-1.57796
-1.67113
-1.6023
-1.59348
-1.68328
-1.59348
-1.59631
-1.67475
-1.5924
-1.59501
-2.1198
-2.13128
-2.12928
-2.1395
-2.09646
-2.12234
-2.04096
-2.14631
-2.077
-2.10364
-2.62157
-2.45395
-2.54227
-2.57106
-2.69686
-2.48177
-2.51445
-2.15102
-2.21626
-2.142
-2.11042
-2.13768
-2.13044
-2.18102
-1.75669
-1.73627
-1.75172
0.729624
0.890508
0.87277
0.772364
0.765958
0.769428
0.893933
0.869183
1.04507
1.16764
1.07857
1.22381
1.06862
1.04869
1.16245
0.885034
0.762209
0.865072
0.765694
0.88512
0.771812
0.866588
1.04283
1.08327
1.14944
1.21797
1.04511
1.06971
1.15719
-1.681
-2.20145
-2.15354
-2.16189
-2.19536
-1.8812
-1.98222
-1.84754
-1.80487
-1.97249
-1.77844
-1.90133
-1.72265
-1.71789
-1.67097
-1.71157
-1.67304
-1.72822
-1.71419
-2.1414
-2.12856
-2.11758
-2.1506
-2.11182
-2.18697
-2.11273
-2.14879
-1.77568
-1.73531
-1.7318
-1.76649
-1.93911
-2.02712
-1.82355
-1.93617
-1.85004
-1.92908
-2.03258
-1.73431
-1.75541
-1.6909
-1.67023
-1.67762
-1.73179
-1.74712
-1.70618
-1.71653
-1.69442
-1.72852
-1.70436
-1.712
-1.71805
-1.71438
-1.70999
-1.70921
0.902921
0.876625
0.773077
0.767707
0.899428
0.772866
0.879375
1.06469
1.17292
1.09602
1.24335
1.05821
1.10388
1.17908
0.905858
0.752472
0.888416
0.767352
0.914221
0.770486
0.881506
1.06984
1.11807
1.1913
1.25199
1.07743
1.11004
1.18425
0.0974517
0.154627
0.0791421
0.179282
0.095228
0.0821741
0.178107
0.0801954
0.15326
0.0574429
0.168846
0.0767425
0.0667355
0.163431
0.00267722
-0.0813128
0.0385526
-0.0669967
0.042888
0.0154154
-0.08791
-0.0464726
-0.0466471
-0.0543184
-0.0420967
-0.0531485
-0.0536746
0.360752
0.358456
-0.0135903
-0.0645646
-0.0150997
-0.0582266
-0.0107695
-0.0321877
-0.0242581
-0.0203461
0.369509
0.35587
0.209958
0.148503
0.196329
0.153615
0.195285
0.212102
0.140101
0.604307
0.609175
0.665822
0.672677
0.666232
0.601156
0.615964
0.435276
0.434504
0.414531
0.436585
0.417266
0.432933
0.60522
0.666159
0.673017
0.613933
0.666795
0.617497
0.602927
0.430588
0.433268
0.411731
0.43166
0.409695
0.432257
0.600941
0.611603
0.674465
0.665232
0.612093
0.665956
0.600118
0.601707
0.665403
0.61321
0.67493
0.612957
0.602089
0.666353
0.593142
0.596546
0.684735
0.666756
0.66904
0.598532
0.590912
0.411007
0.379622
0.418297
0.376884
0.415444
0.413366
0.594295
0.668172
0.685259
0.608187
0.669609
0.600508
0.597407
0.416501
0.382346
0.421276
0.384176
0.418215
0.415469
0.599158
0.611576
0.676297
0.665276
0.61137
0.59964
0.665534
0.598974
0.667194
0.610291
0.677549
0.611317
0.598446
0.665806
-1.11794
-1.12514
-1.12382
-1.11287
-1.1225
-1.15897
-1.40316
-1.36225
-1.38677
-1.369
-1.39617
-1.29993
-1.37054
-1.37754
-1.39551
-1.36141
-1.37057
-1.32782
-1.3504
-1.34327
-1.3504
-1.34246
-1.34204
-1.32288
-1.47201
-1.40857
-1.53752
-1.57065
-1.42223
-1.47825
-1.55479
-1.1645
-1.13453
-1.093
-1.1714
-1.08878
-1.16507
-1.17451
-1.26579
-1.31984
-1.30303
-1.30164
-1.265
-1.30217
-1.31128
-1.30915
-1.30581
-1.31426
-1.30705
-1.2983
-1.31133
-1.31142
-1.17401
-1.13945
-1.09343
-1.1725
-1.1004
-1.16477
-1.18524
-1.27562
-1.32621
-1.34047
-1.29707
-1.32826
-1.26459
-1.30611
-1.49306
-1.49791
-1.34402
-1.33192
-1.31592
-1.35366
-1.33849
-1.31315
-1.3337
-1.46151
-1.53282
-1.38407
-1.49769
-1.44192
-1.39649
-1.53514
-1.35753
-1.34721
-1.35289
-1.33867
-1.35319
-1.34149
-1.35446
-1.4761
-1.40523
-1.55049
-1.50474
-1.47245
-1.39668
-1.54476
-1.13174
-1.11932
-1.13576
-1.1579
-1.14938
-1.14547
-1.15929
-1.31893
-1.35752
-1.32012
-1.30108
-1.30807
-1.32022
-1.16725
-1.1252
-1.13396
-1.16207
-1.14046
-1.16272
-1.16569
-1.28982
-1.29927
-1.33166
-1.35771
-1.33321
-2.16351
-2.15978
-2.10533
-2.1288
-2.19218
-2.1312
-2.14146
-2.135
-2.08078
-2.0329
-2.1231
-2.05086
-2.13019
-2.12287
-1.80019
-1.68681
-1.71866
-1.85507
-1.67794
-1.81312
-1.85001
-1.79724
-1.84601
-1.72467
-1.64202
-1.66338
-1.85591
-1.7763
-2.07414
-2.12912
-2.10923
-2.15391
-2.10025
-2.10325
-2.11111
-2.22159
-2.18931
-2.24368
-2.70533
-3.16072
-2.84914
-2.0067
-1.72268
-2.27159
-2.30606
-1.80426
-2.34571
-1.9646
-2.01099
-2.08153
-1.92623
-2.19991
-1.94927
-2.24399
-1.97307
-2.16271
-2.13483
-2.05498
-2.18596
-2.14832
-1.76984
-1.71867
-1.7158
-1.74029
-1.72815
-1.74573
-1.76971
-2.12854
-1.83512
-1.98346
-1.92107
-2.01717
-1.95759
-1.87421
-1.88129
-1.732
-1.82746
-1.68514
-1.6376
-1.61906
-1.82367
-1.75925
-1.80741
-1.97748
-1.92676
-1.83371
-1.93443
-1.85415
-1.78533
-2.20328
-2.15292
-2.17143
-2.18171
-2.1898
-2.17336
-2.17901
-2.77471
-2.6938
-2.52458
-2.52763
-2.88088
-2.62241
-2.65233
-2.92612
-2.66406
-3.49908
-2.72507
-3.09879
-2.72991
-2.21301
-2.11177
-2.16061
-2.17875
-2.11746
-2.17047
-2.23335
1.35045
1.33548
1.40548
1.43156
1.33429
1.34554
1.42187
1.33275
1.5087
1.34863
1.46249
1.34745
1.32997
1.50001
1.34376
1.3392
1.44322
1.42945
1.34784
1.34029
1.4551
-1.88067
-1.65654
-2.2671
-1.99649
-1.58191
-1.94309
-2.20581
-1.90843
-2.02543
-1.90015
-2.16653
-1.94576
-1.8735
-2.1424
-1.82358
-1.66401
-1.61906
-1.73582
-1.66299
-1.74595
-1.84312
1.75968
1.44514
1.57509
1.41889
1.75368
1.36018
1.51244
1.62931
1.32294
1.64066
1.33512
1.52129
1.35406
1.48395
1.33583
1.35617
1.53043
1.35839
1.48545
1.60626
1.35829
1.59054
0.0195613
-0.0524545
0.0233966
0.00183165
0.0769372
0.0273761
0.0802865
-0.00285374
0.0315442
0.0760286
-0.00871018
-0.00943863
0.00603235
0.0428436
0.0710294
0.027685
0.0832742
0.0287524
0.0432119
0.081418
0.0440253
0.0667673
0.0384602
0.0797068
0.0342282
0.0448733
0.0805688
0.279399
0.273337
0.230132
0.310895
0.242951
0.327766
0.22416
0.246682
0.310298
0.235438
0.251914
0.311211
0.328998
0.23724
0.250051
0.309793
0.045253
0.0755961
0.0271323
0.0846376
0.0855352
0.0308756
0.0437923
-0.00183837
-0.0441358
0.0168884
-0.0604847
-0.00753734
-0.0428136
0.0248606
0.0457101
0.0666536
0.0873275
0.0408981
0.0489555
0.0836437
0.035619
0.242149
0.320513
0.253613
0.333003
0.243544
0.253239
0.317971
0.287557
0.289039
0.237369
0.25075
0.330862
0.313055
0.251467
0.235347
0.315012
0.589628
0.597757
0.667034
0.681478
0.665072
0.591077
0.597325
0.403307
0.384961
0.37954
0.387549
0.377488
0.403254
0.58867
0.664148
0.681108
0.595449
0.664889
0.596376
0.587218
0.403999
0.383887
0.384426
0.381398
0.386821
0.403816
0.583565
0.5901
0.679563
0.663662
0.592338
0.663508
0.580151
0.585562
0.664736
0.595196
0.681715
0.594945
0.586406
0.664756
0.574311
0.590668
0.663572
0.650593
0.651986
0.595844
0.570108
0.389698
0.389493
0.344213
0.391349
0.34034
0.390512
0.576292
0.654306
0.664601
0.598049
0.653229
0.598615
0.577085
0.392146
0.388317
0.348439
0.387258
0.351158
0.392583
0.577254
0.589003
0.681321
0.663268
0.58795
0.57873
0.662145
0.576352
0.657118
0.592898
0.678267
0.587875
0.576922
0.660685
-1.3748
-1.37631
-1.34188
-1.35191
-1.37328
-1.34652
-1.37957
-1.31367
-1.32798
-1.34253
-1.31522
-1.32158
-1.34088
-1.3036
-1.28536
-1.27894
-1.34246
-1.28471
-1.28306
-1.33877
-1.3299
-1.31438
-1.32101
-1.32015
-1.32502
-1.33021
-1.3379
-1.27828
-1.29834
-1.3064
-1.27692
-1.29927
-1.34139
-1.33651
-1.34811
-1.33499
-1.31649
-1.30956
-1.34523
-1.33697
-1.33146
-1.37493
-1.36282
-1.2992
-1.35481
-1.29974
-1.35956
-1.29188
-1.35974
-1.39073
-1.30835
-1.33104
-1.36703
-1.2952
-1.39884
-1.35796
-1.26726
-1.34324
-1.39623
-1.27473
-1.354
-1.40083
-1.42497
-1.56161
-1.46933
-1.51996
-1.43526
-1.46684
-1.51324
-1.34089
-1.3854
-1.25427
-1.32864
-1.33399
-1.25849
-1.38232
-1.34291
-1.2677
-1.38656
-1.34333
-1.35341
-1.25735
-1.38642
-1.3656
-1.36464
-1.30462
-1.31602
-1.35815
-1.3631
-1.30864
-1.51157
-1.63182
-1.53309
-1.56385
-1.51373
-1.53757
-1.36091
-1.38722
-1.32853
-1.36502
-1.35029
-1.39256
-1.38189
-1.34476
-1.27856
-1.31832
-1.30775
-1.28031
-1.3536
-1.33131
-1.5491
-1.58122
-1.55113
-1.56146
-1.55997
-1.54029
-1.57223
-1.84142
-1.69492
-1.90463
-1.72226
-1.8455
-1.67427
-1.89077
-1.67809
-1.64417
-1.63229
-1.64061
-1.65229
-1.65629
-1.6763
-2.05977
-2.086
-2.09612
-2.04881
-2.09555
-2.04088
-2.0733
-2.08393
-2.3011
-1.92454
-1.90426
-2.08642
-1.96717
-2.11423
-2.25599
-3.38093
-4.05304
-3.94023
-2.30146
-1.87792
-1.52193
-1.88256
-1.93065
-1.93325
-2.26806
-1.90767
-1.72917
-1.80563
-1.95533
-1.87701
-1.75528
-1.98266
-1.69637
-1.56803
-1.60783
-1.63045
-1.57477
-1.64482
-1.80134
-1.65562
-1.54994
-1.70812
-1.64846
-1.82178
-1.68098
-1.77377
-1.63938
-1.62346
-1.53916
-1.62961
-1.77454
-1.65576
-2.11604
-1.85383
-2.02135
-1.79172
-2.00531
-2.16669
-1.78441
-2.38517
-2.19684
-2.18831
-2.42019
-3.354
-2.86595
-2.77439
-3.34578
-2.03038
-1.77809
-1.72149
-1.26962
-1.60108
-2.16166
-1.6645
-2.23791
-2.16614
-2.06961
-1.74484
-1.95676
-1.64678
-1.98927
-1.7073
-1.99577
1.7835
1.47529
1.61399
1.50068
1.79296
1.59465
1.64973
1.8176
1.57994
1.81112
0.638937
0.653406
0.735188
0.729261
0.7333
0.635596
0.654742
1.8821
1.65776
1.7081
1.64835
1.86317
1.61256
1.83036
1.6738
1.62016
1.83606
-2.05845
-2.05534
-2.02426
-2.09564
-2.05764
-2.05917
-2.08393
-2.00973
-2.02421
-2.04684
-2.08676
-1.99643
-2.03122
-2.05375
-2.21474
-2.10345
-2.16319
-2.41537
-2.09207
-2.24273
-2.37275
-1.97573
-2.01047
-2.02271
-2.0043
-1.98374
-1.9872
-2.03276
-2.30958
-2.18452
-2.22496
-2.38766
-2.21109
-2.37613
-2.23017
-2.04923
-2.63317
-1.46001
-1.58849
-2.09819
-2.79092
-2.24448
-2.11216
-2.19164
-2.44194
-2.11523
-2.24728
-2.4313
-1.72373
-1.81822
-1.8146
0.634142
0.670129
0.773805
0.775089
0.794111
0.673307
0.613196
0.633073
0.774725
0.762669
0.664744
0.780968
0.632891
0.666812
2.19278
1.87856
1.92345
1.86378
2.17849
-2.59519
-2.24869
-2.5354
-2.52823
-3.61158
-2.96865
-3.7365
1.79434
1.87266
2.10189
1.79631
2.12317
0.635827
0.657173
0.744222
0.733738
0.638325
0.74537
0.655827
0.633152
0.768071
0.661955
0.745659
0.633364
0.762023
0.660187
-1.71061
-1.83709
-1.84095
-2.02983
-2.09638
-2.02511
-2.0428
-2.03691
1.95142
1.69624
1.76612
1.70615
1.97395
-2.95444
-4.06785
-4.09598
1.78106
1.82659
2.05985
1.77734
2.03489
-0.0101646
-0.0101077
-0.0209415
-0.0319715
-0.00848205
-0.0115231
-0.0239084
-0.0188146
-0.035908
-0.0282565
-0.0416601
-0.0240538
-0.0201398
-0.0318493
-0.012458
-0.0613834
-0.0220095
-0.0739585
-0.0144189
-0.0170931
-0.0567179
-0.0095619
-0.0101544
-0.0644236
-0.0479527
-0.0106909
-0.0530339
-0.00713392
0.253653
0.300191
0.253921
0.299844
0.228433
0.285132
0.238643
0.31384
0.227215
0.240326
0.287985
0.226823
0.241702
0.298865
0.31699
0.226842
0.241249
0.296381
-0.00186311
-0.0360482
-0.00284979
-0.0432661
0.00100928
-0.0396395
-0.00669882
-0.00365656
-0.0117813
-0.04519
-0.0447154
-0.0409591
-0.00894893
-0.00612917
0.225362
0.303033
0.237771
0.317937
0.217332
0.239296
0.301778
0.254126
0.300242
0.254071
0.300348
0.228428
0.240788
0.317121
0.300135
0.240513
0.227573
0.300706
0.565852
0.587438
0.651913
0.675982
0.651514
0.568628
0.584954
0.424763
0.270287
0.294161
0.434416
0.29539
0.435047
0.423207
0.563963
0.650659
0.676168
0.5793
0.651071
0.581835
0.562055
0.421032
0.262344
0.293457
0.434737
0.292149
0.434734
0.422283
0.561465
0.572129
0.68846
0.66212
0.573081
0.660766
0.560684
0.562137
0.651148
0.576371
0.686429
0.574998
0.560388
0.658937
0.56109
0.575782
0.723207
0.679256
0.679154
0.576847
0.558806
0.40525
0.227647
0.405103
0.287087
0.403929
0.28615
0.406064
0.561398
0.675059
0.720874
0.576361
0.678008
0.576992
0.561254
0.40743
0.234789
0.405978
0.28793
0.407278
0.288632
0.406594
0.560919
0.575007
0.698671
0.6642
0.574409
0.561908
0.664861
0.561051
0.670618
0.575388
0.701313
0.574363
0.561596
0.66685
-1.10775
-1.04561
-1.11084
-1.06546
-1.10354
-1.05902
-1.10974
-1.05768
-1.03366
-1.04645
-1.65293
-1.62791
-1.55888
-1.69695
-1.55086
-1.65739
-1.68354
-1.08493
-0.993819
-1.03767
-1.0594
-1.09292
-0.965053
-1.05701
-1.06184
-1.05605
-1.04591
-1.09752
-1.15131
-1.09671
-1.16572
-1.21902
-1.1067
-1.21466
-1.14675
-1.09038
-1.05101
-1.04811
-1.07495
-1.16204
-1.19808
-1.1308
-1.1695
-1.11382
-1.16457
-1.21104
-1.049
-1.05926
-1.05928
-1.0491
-1.10749
-0.987684
-1.06219
-1.06734
-1.05524
-1.07642
-1.10789
-1.07615
-1.06562
-1.0698
-1.07505
-1.54463
-1.64079
-1.50459
-1.73193
-1.49198
-1.56091
-1.71283
-1.56403
-1.70273
-1.80292
-1.54806
-1.57681
-1.73099
-1.54244
-1.58626
-1.63706
-1.79356
-1.85598
-1.60453
-1.60973
-1.76869
-1.49722
-1.0846
-0.869032
-1.77801
-0.925661
-1.41638
-1.87301
-1.62336
-1.66646
-1.52731
-1.76991
-1.56022
-1.58296
-1.78431
-1.47762
-1.78698
-1.91115
-1.55587
-1.59378
-1.8859
-1.41165
-1.29377
-0.82877
-0.82134
-1.73411
-0.770296
-1.36434
-1.66639
-1.53845
-1.68034
-1.9769
-1.99957
-1.64059
-1.59453
-1.97873
-1.78892
-1.65839
-1.75037
-1.73241
-1.76901
-1.73084
-1.77276
-1.93503
-1.90613
-1.98248
-2.0007
-1.90264
-2.04478
-1.9166
-1.98242
-2.09315
-1.93171
-2.00852
-1.93747
-1.98326
-2.09293
0.608466
0.683082
0.753555
0.769809
0.745046
0.612339
0.68816
0.616022
0.763602
0.776791
0.69395
0.758295
0.625946
0.693037
2.21664
2.03313
1.92879
2.23799
-2.5911
-2.29909
-2.61081
2.05981
2.09799
2.09502
-2.62795
-2.33393
-2.12145
-2.26845
-2.26685
-2.2993
-2.67223
1.33845
1.19655
1.40348
1.17649
1.33142
1.40503
1.18142
1.86034
1.78944
1.93119
2.06866
1.78872
2.05933
1.86556
1.82163
1.99855
1.77411
1.90802
1.81596
1.77614
2.00144
-1.82587
-1.67567
-1.70741
-1.74408
-1.69439
-1.76575
-1.76659
-2.0196
-2.0996
-2.003
-1.99079
-2.09679
-1.94116
-1.99627
-1.94576
-1.99231
-2.08576
0.698393
0.709947
0.805147
0.795495
0.800646
0.707358
0.708522
0.647811
0.769259
0.695598
0.78383
0.637272
0.775065
0.698135
-2.4629
-2.14639
-2.1017
-2.15636
-2.19802
-2.19934
-2.31594
2.10527
2.07189
2.12433
2.11095
2.07684
2.11349
-2.65428
-2.34237
-2.15667
-2.26718
-2.30621
-2.34045
-2.68183
-1.50741
-1.67258
-1.53648
-1.76482
-1.5245
-1.52021
-1.70034
-1.30252
-1.70345
-1.54413
-1.81446
-1.34523
-1.51078
-1.64508
-1.88637
-1.89927
-1.98772
-1.95248
-1.90053
-1.88689
-1.97794
0.772808
0.7434
0.830351
0.865614
0.864123
0.73906
0.791907
0.769259
0.841499
0.819237
0.730269
0.845055
0.76602
0.731945
1.38655
1.19602
1.41397
1.21211
1.39457
1.4133
1.20727
1.87379
1.79147
1.91302
2.09502
1.79066
1.88028
2.0515
1.90768
2.06046
1.76702
1.86762
1.91233
1.7695
2.05687
1.52238
1.28494
1.69287
2.08373
2.09744
1.32424
1.47574
2.09402
1.92315
1.75661
2.08348
1.69481
0.729047
0.713179
0.812265
0.801703
0.720291
0.816139
0.714218
0.756232
0.837284
0.727864
0.811374
0.760545
0.833636
0.725395
-2.27789
-2.12032
-2.14958
-2.06579
-2.27527
-2.09549
-2.15014
2.12352
2.01439
2.03552
2.19483
2.09882
1.94812
1.77912
1.82834
2.11346
-0.100573
-0.100623
-0.101193
-0.116431
-0.0993108
-0.103484
-0.100129
0.270715
0.28332
0.271489
0.282518
0.189049
0.273762
0.209331
0.295124
0.186117
0.212348
0.276336
0.192035
0.218047
0.281245
0.298124
0.19511
0.215503
0.278765
-0.0480262
-0.0820722
-0.0595618
-0.100522
-0.0443482
-0.0848557
-0.0636629
0.201153
0.288636
0.225229
0.303915
0.203486
0.222818
0.28631
0.273004
0.284093
0.272286
0.284883
0.199306
0.218353
0.301641
0.282998
0.22039
0.197132
0.284854
0.556606
0.581021
0.681301
0.735791
0.680055
0.559276
0.578873
0.388489
0.19245
0.272805
0.375873
0.273226
0.377888
0.387429
0.554458
0.682309
0.736204
0.572716
0.680725
0.573045
0.553852
0.385874
0.191316
0.272543
0.374586
0.272415
0.373073
0.386725
0.553394
0.571335
0.744703
0.686633
0.571614
0.685663
0.553165
0.553611
0.683117
0.57202
0.743746
0.572344
0.55317
0.684973
0.555544
0.586028
0.766856
0.69225
0.693134
0.583522
0.555753
0.367066
0.181554
0.349201
0.263564
0.347596
0.262786
0.368643
0.556055
0.691461
0.764038
0.580431
0.692505
0.582986
0.555347
0.371512
0.182669
0.350439
0.264401
0.352014
0.265074
0.370019
0.553096
0.572436
0.752417
0.687797
0.572752
0.553325
0.688151
0.553832
0.690776
0.577672
0.754138
0.574683
0.555197
0.688965
-1.29056
-1.20705
-1.15776
-1.20058
-1.22522
-1.20805
-1.27205
-1.31658
-1.24073
-1.17003
-1.25901
-1.2418
-1.22722
-1.32329
-1.22273
-1.25687
-1.24007
-1.2456
-1.19869
-1.23659
-1.21938
-1.05152
-0.990152
-0.972519
-0.980535
-1.06059
-1.14004
-1.06925
-1.14432
-1.21261
-1.05492
-1.14593
-1.2083
-1.13825
-1.18354
-1.04594
-1.13811
-1.05399
-1.13778
-1.19261
-0.994255
-1.00634
-0.988555
-1.00936
-0.985227
-0.999307
-1.00404
-1.23845
-1.23387
-1.23665
-1.23108
-1.1207
-1.03042
-1.09803
-1.16268
-1.03191
-1.16606
-1.10852
-1.03052
-0.995478
-1.00193
-1.02564
-0.99948
-1.02502
-1.03231
-1.13371
-1.17178
-1.10412
-1.04417
-1.03392
-1.17195
-1.13716
-1.01508
-1.00514
-1.00774
-1.00185
-1.00605
-1.01498
-1.00495
-1.25189
-1.24084
-1.2363
-1.24433
-1.31408
-1.26067
-1.26852
-1.21327
-1.27065
-1.32635
-1.27042
-1.26651
-1.24497
-1.24618
-1.27323
-1.24186
-1.18903
-1.20172
-1.10045
-1.25529
-1.1662
-1.19311
-1.33507
-1.30723
-1.21244
-1.47325
-1.23003
-1.32889
-1.48266
-1.24975
-1.25293
-1.24882
-1.251
-1.23228
-1.18362
-1.09383
-1.14155
-1.15405
-1.18637
-1.23788
-0.957161
-1.09937
-1.06582
-1.18208
-1.06751
-1.10228
-1.16771
-0.989844
-0.953058
-1.02916
-1.02498
-1.00743
-0.951996
-0.997234
-1.00868
-1.02697
-0.963906
-0.960517
-1.02267
-0.95991
-1.0128
-1.15467
-1.11028
-1.15643
-1.15077
-1.14376
-1.13844
-1.16036
-1.16231
-1.06601
-1.1841
-1.20552
-1.10621
-1.0306
-0.991484
-0.992728
-1.0321
-0.985571
-1.03549
-1.03246
-1.0171
-1.029
-0.955589
-0.962501
-0.964992
-1.02435
-1.01599
-1.2242
-1.23605
-1.23018
-1.23416
-1.26865
-1.2383
-1.26952
-1.22478
-1.31634
-1.25675
-1.20137
-1.4526
-1.19077
-1.31805
-1.43709
-1.51032
-1.63118
-1.66787
-1.50785
-1.232
-1.16696
-1.134
-1.06964
-1.12484
-1.23138
-1.15679
-1.21977
-1.12495
-1.14361
-1.13505
-1.1381
-1.16414
0.810626
0.748635
0.872736
0.835735
0.87443
0.805929
0.749919
0.838569
0.89899
0.846397
0.763864
0.895813
0.843346
0.761994
1.43618
1.27456
1.64145
2.0997
2.08169
1.23356
1.48234
-1.21547
-0.368468
-0.312974
-0.887339
-0.328407
-0.953093
-1.14798
1.4138
1.85166
1.5159
0.958578
1.89865
0.997849
1.34466
1.4295
1.13709
1.36474
1.2139
1.43236
1.34565
1.21203
1.85644
1.96078
1.63359
1.62989
1.8678
1.62069
1.94715
0.827609
0.77321
0.970274
0.874206
0.968898
0.832297
0.770553
0.853185
0.905363
0.767308
0.854836
0.850864
0.909365
0.76879
-0.988363
-0.30407
-0.276536
-0.844244
-0.257115
-0.801993
-1.06352
0.528643
0.656707
1.22851
1.27988
0.688677
1.35376
0.516931
1.23813
1.81891
0.930979
1.43876
0.887421
1.30772
1.77289
0.895879
0.813276
0.911896
0.994
1.00427
0.817155
0.896934
0.88111
0.995313
0.904355
0.805508
1.00118
0.87659
0.807407
-0.620105
-0.00537781
0.664019
-0.0981217
-0.0287312
-0.522629
-1.13181
-0.835454
-1.24508
-1.57611
-0.881751
-1.60945
-1.05096
-0.712551
0.705907
-0.062885
-0.049523
-0.841587
-1.18283
-1.68024
-1.27637
-0.962577
-0.915462
-1.63195
-1.24578
-3.54775
0.844153
0.778654
0.97596
0.879297
0.84101
0.97445
0.780523
0.86551
0.987099
0.802694
0.893043
0.870147
0.980658
0.798658
-1.6258
-1.32362
-1.5829
-1.36965
-1.56308
-1.35419
-1.64279
-1.87699
-1.67353
-1.35556
-1.3583
-1.69491
-1.37916
-1.72146
-1.64674
0.500765
0.642812
1.12293
1.25851
0.617059
0.517626
1.22932
0.228395
0.168604
0.225114
0.229559
0.224148
0.156075
0.24027
0.171157
0.261525
0.151859
0.174644
0.244188
0.158254
0.180293
0.24879
0.264744
0.161208
0.177665
0.246021
0.168882
0.257851
0.189645
0.271632
0.17234
0.18603
0.254675
0.231941
0.171984
0.226271
0.230853
0.227091
0.166094
0.180991
0.268966
0.250957
0.183058
0.163766
0.252703
0.555099
0.589926
0.692799
0.771488
0.691502
0.556063
0.591194
0.345025
0.168795
0.247822
0.320808
0.249773
0.322884
0.343066
0.555456
0.691418
0.772435
0.595018
0.691588
0.593138
0.55557
0.342011
0.169242
0.247334
0.319955
0.250615
0.318167
0.342189
0.560597
0.610674
0.784097
0.699681
0.607165
0.696534
0.563585
0.558801
0.692833
0.598859
0.783234
0.602791
0.556266
0.695801
0.561178
0.61789
0.799083
0.691535
0.694897
0.620198
0.557994
0.324672
0.225272
0.290596
0.292868
0.287773
0.29163
0.32655
0.562259
0.696319
0.801049
0.621124
0.696146
0.621561
0.5627
0.329077
0.229436
0.293484
0.293999
0.295444
0.294767
0.327934
0.563299
0.614822
0.791016
0.700029
0.616113
0.564365
0.697271
0.563155
0.696875
0.620589
0.792312
0.618319
0.564031
0.695828
-1.21361
-1.19431
-1.1831
-1.18867
-1.19756
-1.20992
-1.19013
-1.50865
-1.7904
-1.58776
-1.59468
-1.49988
-1.80805
-1.22307
-1.20248
-1.18681
-1.21508
-1.19255
-1.21132
-1.22135
-1.60162
-1.77979
-1.6111
-1.7975
-1.17437
-1.18302
-1.19745
-1.17729
-1.19564
-1.17345
-1.1782
-1.00212
-0.952154
-1.0337
-1.02653
-1.03563
-0.953694
-0.996543
-1.16157
-1.12915
-1.15685
-1.15092
-1.16219
-1.15836
-1.15593
-0.933426
-0.937092
-1.03237
-0.927669
-1.02885
-1.04712
-0.98611
-1.04627
-1.10733
-1.10024
-1.16496
-1.18256
-1.19803
-1.19331
-1.18257
-1.16962
-1.19525
-1.11957
-1.17498
-1.14833
-1.12972
-1.15543
-1.12822
-1.11236
-1.20437
-1.19343
-1.16145
-1.18943
-1.21098
-1.18713
-1.18219
-1.51739
-1.6259
-1.50275
-1.64539
-1.15637
-1.12852
-1.15526
-1.13039
-1.15909
-1.16003
-1.13179
-1.59237
-1.75397
-1.59573
-1.73758
-1.18173
-1.13866
-1.14308
-1.16339
-1.1376
-1.2125
-1.1687
-1.50931
-1.7222
-1.55286
-1.82878
-1.51227
-1.54138
-1.70226
-1.21136
-1.18089
-1.18187
-1.22127
-1.2224
-1.16775
-1.21734
-1.52018
-1.61447
-1.79969
-1.60748
-1.60205
-1.51377
-1.61395
-1.18169
-1.1512
-1.17228
-0.923197
-0.931766
-1.03051
-0.921935
-1.03276
-0.967025
-0.963412
-0.9402
-0.940901
-0.965919
-0.937199
-0.96449
-1.09266
-1.105
-1.14648
-1.0893
-1.18968
-1.13538
-1.17812
-1.18872
-1.09999
-1.1347
-1.16078
-1.17053
-1.16692
-1.19204
-1.21325
-1.20468
-1.13203
-1.17573
-1.15642
-1.1379
-1.13063
-1.16831
-1.12944
-1.10805
-1.12356
-1.1443
-1.13027
-1.11035
-1.12405
-1.1364
-1.12885
-1.16681
-1.15893
-1.1485
-1.16027
-1.17432
-1.15952
-1.15411
-1.1611
-1.48018
-1.58095
-1.88488
-1.65943
-1.65751
-1.58117
-1.47517
-1.50454
-1.62108
-1.59669
-1.84977
-1.50441
-1.63279
-1.59689
-1.18203
-1.21299
-1.12983
-1.22447
-1.13464
-1.21279
-1.18516
-2.46864
-2.44628
-2.40273
-2.4661
-1.45025
-1.20115
-1.37435
-1.22034
-1.41771
-1.20212
-1.40863
-1.82563
-2.00865
-2.02137
-1.81073
-1.84733
-1.92922
-1.94364
-1.86357
-1.46634
-1.42519
-1.20578
-1.03709
-1.17696
-1.47419
-1.33899
-2.57449
-2.12963
-2.13956
-2.56561
0.952692
0.826134
0.981631
0.902545
0.970847
0.945084
0.825117
0.952843
0.979329
0.913489
0.835295
0.976957
0.953219
0.833573
-2.97362
-2.65003
-2.94754
-2.652
-0.421371
0.0202084
0.551046
-0.204836
-0.375872
0.018246
-0.452861
-0.910055
-0.800229
-1.51454
-1.09311
-0.968109
-0.754532
-1.41424
-0.390635
-0.226635
0.5075
0.0305409
-0.154535
0.0290718
-0.359425
-3.08835
-3.56524
-2.98618
-0.826201
-1.23587
-1.03638
-0.654629
-0.711078
-1.29188
-0.758188
-2.44092
-2.45576
-2.44072
-2.48822
-1.42267
-1.25292
-1.38815
-1.22994
-1.39439
-1.25224
-1.41967
-1.90055
-1.92027
-1.55258
-1.3226
-1.65385
-1.22838
-1.60386
-1.28496
-1.58062
-1.87283
-1.91003
-1.89749
-1.86727
-1.46933
-1.47536
-1.21995
-1.17483
-1.24384
-1.47781
-1.47147
0.944183
0.841538
0.984698
0.927938
0.983935
0.942104
0.84131
0.963206
0.982016
0.837725
0.921466
0.955948
0.984897
0.841404
-1.82524
-2.4522
-2.40861
-1.74525
-1.76135
-2.45873
-1.78321
-1.78415
-1.97156
-1.9379
-1.79435
-1.65511
-1.79357
-1.93145
-1.67701
-1.68779
-1.78461
-1.64271
-2.41315
-1.99762
-1.95782
-2.43302
0.869751
0.839366
0.945872
1.01671
1.00701
0.836126
0.872257
0.901434
0.972581
0.929958
0.833151
0.976224
0.906832
0.833519
0.935009
0.84212
0.985649
0.928564
0.940442
0.981317
0.838943
0.912808
0.971003
0.833228
0.926144
0.910074
0.970898
0.833805
-1.77908
-2.41196
-1.76246
-2.40124
-1.77374
-1.77959
-2.4156
-1.58936
-1.62018
-1.88792
-1.7618
-1.62124
-1.76257
-1.58995
-1.61935
-1.78211
-1.65975
-1.93777
-1.65519
-1.62341
-1.78827
-1.73144
-2.25023
-2.24682
-1.66168
-1.68786
-2.27857
-1.71797
0.0320037
-0.0225233
-0.0488999
0.0610865
-0.053704
0.0356038
0.0567563
0.161373
0.0689471
0.17898
0.165645
0.176627
0.0304881
-0.0262374
-0.0587305
0.0520065
-0.0564356
0.0293503
0.0534389
0.0449848
-0.00484854
-0.0415266
0.0647538
0.0683512
-0.0373254
0.0395414
0.135148
0.22339
0.151206
0.234346
0.138048
0.148376
0.220409
0.173914
0.0852819
0.181761
0.169926
0.183808
0.0456927
-0.00305057
0.0719134
-0.0375063
0.047523
0.0699018
-0.0366093
0.133125
0.145743
0.230652
0.219076
0.145349
0.128876
0.218799
0.554337
0.62165
0.690604
0.789899
0.685974
0.557597
0.620888
0.301398
0.19326
0.272574
0.232426
0.273577
0.236392
0.30041
0.553448
0.68375
0.790986
0.624248
0.683555
0.622257
0.553746
0.298945
0.190281
0.272472
0.232984
0.270218
0.232151
0.300725
0.552498
0.631739
0.803134
0.681714
0.631488
0.68169
0.551708
0.553136
0.683089
0.628406
0.801137
0.6307
0.553409
0.68227
0.541749
0.629389
0.818504
0.671618
0.672867
0.630865
0.539963
0.290089
0.109729
0.143806
0.256985
0.137189
0.255474
0.290841
0.543189
0.675622
0.817771
0.630757
0.674529
0.631339
0.54432
0.292096
0.128449
0.15012
0.25854
0.157713
0.259619
0.291658
0.548378
0.632114
0.811815
0.681087
0.631527
0.550255
0.679339
0.547154
0.677173
0.630668
0.8115
0.630706
0.546196
0.677953
-1.34725
-1.41507
-1.44451
-1.49383
-1.44992
-1.33516
-1.42299
-1.41474
-1.48451
-1.46871
-1.57931
-1.41383
-1.48421
-1.46655
-0.931861
-0.996355
-0.923063
-0.863423
-0.996615
-0.873074
-0.925803
-0.978773
-1.11556
-1.15142
-1.05788
-0.968329
-0.915236
-0.878697
-0.934263
-0.912481
-0.937927
-0.968429
-0.943695
-0.946943
-0.868864
-0.883848
-0.941715
-0.886299
-0.944108
-1.04462
-1.05575
-1.05898
-1.05693
-1.05088
-1.03269
-1.05882
-1.1974
-1.22039
-1.20883
-1.19277
-1.20716
-1.20953
-1.62464
-1.70568
-0.914368
-0.834845
-0.883193
-0.977202
-0.845014
-0.981835
-0.90078
-0.920088
-0.988541
-0.858174
-0.892264
-0.850328
-0.923847
-0.989636
-1.45018
-1.56732
-1.65373
-1.89393
-1.45734
-1.63864
-1.56549
-1.17517
-1.21027
-1.12182
-1.21713
-1.17447
-1.12602
-1.22172
-1.41553
-1.53251
-1.49746
-1.81327
-1.4247
-1.54263
-1.51633
-1.22259
-1.23307
-1.25977
-1.68612
-1.80487
-1.67439
-1.16649
-1.21769
-1.07962
-1.24864
-1.58406
-1.84276
-1.60546
-1.32212
-1.40716
-1.43793
-1.46039
-1.33107
-1.42342
-1.39721
-1.03814
-1.02787
-1.04585
-1.0454
-1.03611
-1.03311
-1.0454
-0.965297
-0.869878
-0.857168
-0.924939
-0.868945
-0.953729
-0.92034
-0.994457
-0.911635
-0.879746
-0.848281
-0.993042
-0.875429
-0.914893
-1.04778
-1.05158
-1.05271
-1.04803
-1.05096
-1.04908
-1.04452
-0.879315
-0.966204
-0.943054
-1.0094
-0.950014
-0.894793
-0.924512
-0.830753
-0.788209
-0.85608
-0.879787
-0.889944
-0.795743
-0.818437
-0.836289
-0.914022
-0.858586
-0.805412
-0.900779
-0.797524
-0.848699
-0.871085
-0.995329
-0.92379
-0.894212
-0.935615
-0.913439
-0.8554
-1.08986
-1.08793
-1.06575
-1.06534
-1.06513
-1.09403
-1.0888
-1.54171
-1.65092
-1.69977
-1.77689
-1.67329
-1.78479
-1.11291
-1.07355
-1.07942
-1.10589
-1.07678
-1.10896
-1.11843
-0.8784
-0.82884
-0.868544
-0.96021
-0.820921
-0.891047
-0.95121
-0.866261
-0.928664
-0.86996
-0.807281
-0.813663
-0.944601
-0.854036
-1.08698
-1.06292
-1.07587
-1.05962
-1.0801
-1.05864
-1.08881
-1.69954
-1.77539
-1.71049
-1.06465
-1.21257
-1.06053
-1.18584
-1.05114
-1.77601
-1.71787
-1.76536
-1.5438
-1.67124
-1.3061
-1.4237
-1.28035
-1.59019
-1.55073
-1.48946
-1.46243
-1.47899
-1.45831
-1.46823
-1.46818
-1.48513
-1.52602
-1.64625
-1.51727
-1.58123
-1.5069
-1.53849
-1.57192
-2.71066
-2.75685
-2.77246
0.848409
0.836665
1.02146
0.953624
1.02599
0.856775
0.835447
0.824189
1.04788
0.956748
0.829
1.04462
0.81936
0.829518
-1.73096
-2.48543
-1.68191
1.52969
1.16352
1.2187
1.52252
1.16631
1.17836
0.898741
0.592266
0.575105
0.918461
0.600989
1.14856
-0.00697278
-2.39651
-1.22613
-1.2451
-0.0239786
-1.71874
-1.60571
-1.80987
-1.34394
-1.41501
-1.6425
-1.90572
-1.58739
-1.60743
-1.75015
-1.84649
-1.58063
-1.60777
-1.73555
-1.79054
-1.94297
-2.18519
-1.65316
-1.70875
-1.71674
-2.03568
-1.55977
-1.67447
-1.53517
-1.71731
-1.55486
-1.5433
-1.67558
-2.37493
-2.56273
-2.31066
-1.70105
-1.70158
-1.70534
0.805552
0.836787
1.08546
0.968426
1.07993
0.801288
0.832356
-1.70208
-1.73254
-1.71068
-2.78077
-2.51584
-2.51678
0.814388
1.05123
0.828026
0.960308
0.817437
1.0563
0.828522
-1.46077
-1.45374
-1.44717
-1.44795
-1.44207
-1.47532
-1.43499
-1.90127
-2.64186
-1.4833
-2.6075
-1.86272
1.07362
0.911859
1.02803
1.24536
1.23186
0.905916
1.09103
-1.56917
-1.62989
-1.61993
-1.6728
-1.64015
-1.67305
0.965086
1.15408
1.00837
0.877212
1.16392
0.946773
0.881025
-2.46907
-1.05755
-1.85047
-1.32955
-1.92017
-1.3462
-2.45647
-0.270352
-0.326193
-1.21909
-1.66911
-0.389468
-0.283894
-1.8262
1.43915
1.15657
1.22007
1.48372
1.94493
1.13811
1.08564
0.882486
0.547866
0.565261
0.858844
1.12476
0.545873
1.04797
0.517519
0.813574
0.535614
1.00161
0.83855
0.536227
-0.363715
-1.93102
-1.16432
-1.01418
0.0253075
-1.66416
1.4129
2.06776
1.11773
1.2191
1.39699
2.0159
1.12524
-1.9178
-1.82177
-2.67794
-2.03546
-2.94934
-1.67771
-1.69571
-1.68411
0.819535
0.842666
1.09486
0.980245
0.81211
1.0923
0.842913
-1.68283
-1.66271
-1.68111
-2.55537
-2.48528
-2.43139
0.910708
1.14402
0.872918
0.997229
0.926996
1.13374
0.867849
0.015307
-0.0616811
-0.0874724
0.0270458
-0.0897481
0.0168947
0.024518
-0.0922593
-0.0912137
0.142831
0.0554304
0.0374639
0.215407
0.038645
0.142014
0.214217
0.0163854
-0.063768
-0.09109
0.0209958
-0.0901599
0.0178151
0.0222759
0.0203388
-0.0556088
-0.0851674
0.0275591
0.0295988
-0.082743
0.0186673
0.140497
0.0667602
0.0351
0.21663
0.0340786
0.14152
0.217407
0.0222136
-0.0523996
0.0357801
-0.0777034
0.0249441
0.0329821
-0.0803859
0.535283
0.628101
0.670337
0.821896
0.667217
0.538014
0.625298
0.274647
0.0539541
0.241226
0.0645679
0.242643
0.0686637
0.273041
0.533569
0.661269
0.81757
0.620957
0.663634
0.622659
0.531855
0.2712
0.0419065
0.240634
0.0626738
0.240144
0.059839
0.272109
0.528561
0.619655
0.814836
0.653592
0.618723
0.654327
0.528843
0.528951
0.658623
0.619774
0.816362
0.618996
0.530119
0.656395
0.539659
0.663824
0.825203
0.64719
0.64264
0.654528
0.547544
0.27533
-0.0310219
0.129524
0.220696
0.140884
0.216688
0.275138
0.53683
0.645367
0.828024
0.643946
0.644054
0.650028
0.534524
0.274458
0.0140129
0.117337
0.224343
0.106007
0.227842
0.275079
0.52962
0.623168
0.818497
0.652707
0.624867
0.529843
0.649901
0.531241
0.646522
0.637667
0.819503
0.631254
0.533068
0.647567
-0.85532
-0.840175
-0.997046
-1.11452
-0.82376
-0.871879
-1.1074
-0.866123
-0.856868
-1.16062
-1.20629
-1.1744
-0.855749
-0.868128
-0.844103
-0.978489
-0.802292
-1.07698
-0.812764
-1.09119
-0.833472
-0.810291
-0.815446
-0.868606
-0.944213
-0.877229
-0.792798
-0.836831
-0.791075
-0.778279
-0.840501
-0.863662
-0.855839
-0.765224
-0.807799
-0.786169
-0.853851
-0.840516
-0.75316
-0.855965
-0.764833
-0.772507
-0.819596
-0.959125
-0.902494
-0.876258
-0.88807
-0.841415
-0.849312
-0.906167
-1.00591
-0.917092
-0.952759
-0.912482
-0.909693
-1.00643
-0.933984
-0.88174
-0.94995
-0.831594
-0.943027
-0.935316
-0.879453
-0.919065
-0.922044
-0.921455
-0.927702
-0.919845
-0.917815
-0.915291
-1.13247
-1.09173
-1.03961
-1.07702
-1.09161
-1.07994
-1.13641
-1.71478
-1.54555
-1.43507
-1.74982
-1.45343
-1.51586
-1.12107
-1.06796
-1.07985
-1.11064
-1.08324
-1.11838
-1.10318
-1.64558
-1.32749
-1.29026
-1.4677
-1.33686
-1.63846
-1.46379
-0.771495
-0.802643
-0.861097
-0.901645
-0.787779
-0.783626
-0.858681
-0.747635
-0.72461
-0.813502
-0.824542
-0.733076
-0.830857
-0.739344
-0.75386
-0.846714
-0.748275
-0.820902
-0.737641
-0.765371
-0.839911
-0.764616
-0.890188
-0.770187
-0.846658
-0.778951
-0.851421
-0.75665
-0.912086
-0.855176
-1.03706
-1.12754
-0.888584
-0.877589
-1.13136
-1.13682
-1.0834
-1.01032
-1.07005
-1.06291
-1.08007
-1.13527
-1.55094
-1.41365
-1.2571
-1.21956
-1.26414
-1.54421
-1.41441
-1.07518
-0.955773
-0.996382
-0.962036
-1.0039
-0.968177
-1.07594
-1.62156
-1.31561
-1.2613
-1.45843
-1.30812
-1.62704
-1.45975
-0.812869
-0.920986
-0.780456
-0.98889
-0.784172
-1.00806
-0.806709
-0.842173
-0.845845
-1.13574
-1.13265
-0.840078
-0.845936
-1.11325
-0.819522
-0.936175
-0.793323
-1.05309
-0.823612
-0.789521
-1.03386
-0.835595
-1.06054
-1.1025
-0.819888
-0.831848
-1.08547
-0.827259
-0.896238
-0.870404
-0.911018
-0.927861
-0.894619
-0.877349
-0.929308
-0.915755
-0.933116
-0.917914
-0.927832
-0.911925
-0.915081
-0.936393
-0.718592
-0.802634
-0.743657
-0.83884
-0.801264
-0.72599
-0.736197
-0.999813
-0.973954
-0.969195
-0.934185
-0.960548
-1.0062
-0.971599
-1.28763
-1.15773
-1.19237
-1.19139
-1.2373
-1.20074
-1.19475
-1.36707
-1.23082
-1.32798
-1.20873
-1.33108
-1.37232
-1.2247
-0.984386
-0.874573
-0.915932
-0.942085
-0.939308
-0.945718
-0.963738
-0.736995
-0.818923
-0.863774
-0.750909
-0.754523
-0.826249
-0.731515
-0.72411
-0.717108
-0.789205
-0.814166
-0.710801
-0.731583
-0.813526
-0.742875
-0.871878
-0.762593
-0.837152
-0.748988
-0.758795
-0.832951
-0.99712
-0.947457
-0.970307
-0.967021
-0.968534
-0.966144
-1.00164
-1.51113
-1.40283
-1.25096
-1.20706
-1.39623
-1.52487
-1.24875
-1.0056
-0.951405
-0.989585
-0.950088
-1.05691
-0.979866
-0.946407
-1.39721
-1.23583
-1.22245
-1.33761
-1.33562
-1.24287
-1.39193
-0.790798
-0.772568
-0.963169
-0.885685
-0.795919
-0.769364
-0.944534
-0.792868
-0.7572
-0.960723
-0.903619
-0.768109
-0.953979
-0.786137
-0.80419
-1.02744
-0.802064
-1.01604
-0.7869
-0.813418
-0.998916
-0.785701
-0.863199
-0.769438
-0.877014
-0.769271
-0.913484
-0.784595
-0.724635
-0.958592
-0.482508
-0.465959
-0.758135
-0.927113
-0.458244
-0.825177
-0.855577
-1.22502
-1.11687
-0.801334
-0.870746
-1.15453
-0.700209
-0.443622
-0.849783
-0.423386
-0.672352
-0.887318
-0.442
-2.23838
-0.85882
-1.06688
-1.26178
-1.49009
-1.17753
-2.20252
1.14606
0.920026
1.26622
1.03866
1.27765
1.13036
0.925689
-1.65663
-1.60139
-1.45192
-1.79446
-1.57741
-1.46328
-2.49235
-1.03029
-1.7958
-1.32961
-1.80645
-2.46357
-1.32429
-1.59617
-1.27652
-1.29021
-1.50588
-1.50023
-1.29118
-1.60846
1.09618
1.34562
1.03885
0.94971
1.3374
1.10264
0.946821
0.989804
0.238225
-0.11373
2.07642
1.02928
1.96874
0.241406
1.28835
1.00975
1.9702
1.1932
1.26917
2.0597
1.02205
0.96072
-0.0879929
1.80655
0.239887
0.923363
1.94269
0.239898
1.30173
2.07805
1.03912
1.1983
1.32026
2.06251
1.03061
-0.834964
-0.546996
-0.985931
-0.500708
-0.790907
-1.01363
-0.536922
-2.13439
-1.00458
-0.583912
-1.04343
-0.977468
-2.15214
-1.00415
-1.62562
-1.48099
-1.21605
-1.22243
-1.64155
-1.47625
-1.22634
0.453935
0.426774
1.16234
0.977523
1.36882
1.05072
1.17506
1.37802
0.974835
-1.61787
-1.26148
-1.25646
-1.49879
-1.50327
-1.25306
-1.60689
-1.47428
-0.473992
-0.804062
-0.515786
-1.30824
-0.847104
-0.683107
1.12453
1.35511
0.955411
1.04622
1.11473
1.36258
0.958846
-0.0136539
-0.0937899
-0.0992294
-0.00859969
-0.102524
-0.00988718
-0.0117823
-0.0280953
-0.145776
-0.146641
-0.0261275
0.0814874
-0.0856376
-0.216952
0.102823
0.100567
-0.228336
0.0893423
-0.0162945
-0.096745
-0.108987
-0.0176515
-0.105258
-0.0199501
-0.015114
-0.0365247
-0.150311
-0.149369
-0.0379825
-0.00704189
-0.0874793
-0.0982559
-0.0077106
-0.00524041
-0.099059
-0.00804437
-0.0765206
-0.079607
0.102249
-0.129301
-0.20628
0.104623
0.106732
-0.193411
0.0957268
-0.00804094
-0.0856212
-0.000466401
-0.104562
-0.00778796
-0.00277868
-0.103196
-0.0400286
-0.152367
-0.15468
-0.0394345
0.557129
0.665202
0.64561
0.824111
0.643946
0.553435
0.668577
0.245786
-0.00345269
0.163881
0.22467
0.15756
0.245312
0.250406
0.561905
0.640183
0.825474
0.680678
0.643782
0.679164
0.561673
0.27397
-0.0119349
0.180654
0.207958
0.189787
0.195059
0.263587
0.562339
0.700417
0.821153
0.632602
0.563447
0.696532
0.63478
0.561578
0.638482
0.687965
0.82109
0.691116
0.562005
0.636819
-0.727167
-0.684424
-0.942739
-0.952373
-0.687457
-0.983504
-0.727143
-0.724216
-0.860828
-0.71503
-0.952769
-0.69795
-0.739887
-0.916903
-1.13418
-1.12054
-1.17886
-1.17699
-1.10462
-1.15673
-1.17381
-0.925063
-0.836918
-0.908609
-0.933138
-0.887204
-0.95243
-0.909362
-1.05787
-1.12309
-1.12784
-1.01588
-1.03205
-1.12921
-1.0447
-0.76642
-0.752616
-0.866087
-0.841765
-0.753634
-0.762337
-0.843204
-0.767944
-0.753117
-0.862802
-0.846941
-0.744303
-0.778901
-0.846335
-0.769883
-0.862129
-0.763285
-0.852163
-0.77866
-0.758973
-0.846955
-0.760414
-0.838084
-0.713078
-0.842575
-0.735375
-0.741151
-0.840815
-0.98345
-1.11232
-1.11965
-0.975093
-0.940294
-1.12075
-1.01355
-0.329566
-0.191864
-0.253212
-0.24559
-0.332206
-0.250491
-0.241534
-0.211406
-0.206211
-0.326989
-0.189014
-0.245338
-0.234285
-0.324133
-0.248028
-0.238108
-0.181461
-0.183687
-0.0848254
-0.145853
-0.170757
-0.0611361
-0.178536
-0.0790784
-0.0657211
-0.182436
-0.179594
-0.169014
-0.191413
-0.0308073
0.259037
0.059366
0.0893055
0.0954198
0.0680046
-0.0369959
-0.0882724
-0.149272
-0.19045
-0.0714357
-0.184816
-0.09202
-0.0690687
-0.130986
-0.0828951
-0.0969896
-0.120376
-0.0692203
-0.135275
-0.163795
-0.0594451
-0.0555485
-0.157139
-0.0745499
-0.0311469
-0.0751491
-0.0183182
-0.0725997
-0.039294
0.262249
0.0468426
0.0887719
0.0883153
0.0355483
-0.0384477
-0.0655537
-0.131614
-0.0477447
-0.146065
-0.0598277
-0.0517857
-0.152268
-0.0984578
-0.0711802
-0.0647209
-0.111296
-0.36755
-0.229912
-0.28518
-0.302512
-0.372346
-0.282429
-0.298937
-0.398323
-0.335519
-0.412792
-0.329666
-0.36439
-0.227468
-0.276381
-0.293372
-0.360271
-0.280144
-0.296665
-0.453574
-0.370497
-0.461182
-0.364226
-0.122019
-0.181096
-0.236166
-0.0939131
-0.24082
-0.122516
-0.094864
-0.451424
-0.41012
-0.405282
-0.456824
0.0455268
0.0975598
0.0495293
0.140517
0.146477
0.0379916
0.0414248
-0.404111
-0.364058
-0.371936
-0.391687
-0.121519
-0.177415
-0.232077
-0.0920535
-0.090188
-0.230517
-0.121126
-0.3313
-0.316576
-0.332665
-0.314824
0.0307817
0.144805
0.0608526
0.133882
0.128114
0.0725733
0.035895
-0.12171
-0.175031
-0.0829892
-0.230505
-0.11852
-0.0879669
-0.230597
-0.374054
-0.357644
-0.350896
-0.382738
0.958126
0.642523
-0.445476
-0.256485
-0.315327
-0.369355
-0.441319
-0.316115
-0.373502
-0.495916
-0.534947
-0.357295
-0.397883
-0.492789
-0.538763
-0.360007
-0.489852
-0.455925
-0.487035
-0.458283
-0.446863
-0.25548
-0.310383
-0.373157
-0.443717
-0.313993
-0.376404
-0.496714
-0.362073
-0.544826
-0.399856
-0.496689
-0.541597
-0.361953
-0.465418
-0.453499
-0.477136
-0.448479
-0.725004
-0.612017
-0.592997
-0.73678
0.0959204
0.209351
-0.0644968
0.208503
0.217288
-0.0766544
0.0846575
-0.66107
-0.508255
-0.51659
-0.642507
-0.590471
-0.502669
-0.581463
-0.505736
0.0590988
0.224174
-0.0529978
0.202612
0.196505
-0.0463208
0.0700668
-0.617388
-0.506844
-0.499212
-0.633289
1.52491
1.47129
1.37349
2.10053
1.53842
2.01102
1.52599
1.69247
1.50505
1.34976
-0.472589
-0.2716
-0.335443
-0.374489
-0.469662
-0.336504
-0.377569
-0.516429
-0.570948
-0.375717
-0.415254
-0.512779
-0.572277
-0.376487
-0.629909
-0.700868
-0.610855
-0.724249
-0.471373
-0.270614
-0.332883
-0.375126
-0.464861
-0.33452
-0.378229
-0.517866
-0.377301
-0.571069
-0.416341
-0.515056
-0.5733
-0.378014
-0.680466
-0.79132
-0.685528
-0.783989
-0.652075
-0.941118
-0.644708
-0.930844
0.213879
0.528986
0.262513
0.323857
0.294527
0.284891
0.232919
-0.683353
-0.860567
-0.866133
-0.69623
-0.800211
-0.824454
-0.796982
-0.836475
0.240729
0.587054
0.225648
0.335122
0.339678
0.19918
0.2393
-0.737555
-0.869111
-0.867337
-0.719645
1.4258
1.38517
1.47517
1.35245
1.49118
1.3591
1.41264
1.26058
1.17043
1.04718
1.20625
1.11328
1.31664
1.16398
1.58906
1.52469
1.58522
1.52445
1.73316
1.66087
1.46977
1.42167
1.74449
1.47189
1.64901
1.72003
1.4832
1.63274
1.42405
1.72547
1.47403
1.63755
1.68653
1.58599
1.472
1.41851
1.67245
1.47869
1.59884
1.5584
1.39926
1.5134
1.57339
1.50044
1.6994
1.48317
1.42013
1.6202
1.48014
1.71332
1.60834
0.917927
0.855294
0.930295
1.13665
0.813655
0.952415
1.07726
0.877796
0.965342
0.880708
0.702427
0.743459
1.03298
0.838544
1.48837
1.40205
1.3799
1.50312
1.39696
1.4961
1.48899
1.4769
1.38457
1.37942
1.50403
1.37691
1.49592
1.48377
1.49155
1.40362
1.35225
1.38306
1.38857
1.4101
1.48079
1.55184
1.695
1.42296
1.62892
1.43452
1.57474
1.5017
1.40354
1.35973
1.42507
1.39671
1.42054
1.51224
1.54296
1.66254
1.39401
1.34258
1.64392
1.34445
1.56222
1.6035
1.71036
1.4218
1.72451
1.58946
1.52674
1.46934
1.39267
1.43003
1.45697
1.41822
1.54111
1.52094
1.40667
1.43417
1.38248
1.44544
1.51187
1.41334
-0.233086
0.179353
0.511498
-0.344113
-0.319162
-0.488676
0.225943
-1.45322
-2.06212
-1.13275
-2.27148
-1.34146
-1.22304
-2.50207
1.6087
1.56556
1.47383
1.48642
1.47828
1.55211
1.61855
1.77677
1.77418
1.56412
1.62506
1.32722
1.29323
1.63918
1.30345
1.55982
1.60152
1.46986
1.46555
1.52562
1.47498
1.53767
1.59493
1.56613
1.3181
1.65392
1.34057
1.64786
1.56997
1.30962
1.57184
1.66923
1.34153
1.38845
1.57009
1.66776
1.33608
1.56547
1.48617
1.42524
1.44082
1.48433
1.5542
1.45005
1.7558
1.76126
1.57629
1.46297
1.43412
1.50825
1.49092
1.45699
1.58458
1.57254
1.32321
1.3778
1.65628
1.66328
1.33099
1.56996
1.64613
1.55518
1.51506
1.49772
1.50648
1.58863
1.63666
1.55317
1.61671
1.27183
1.28739
1.59907
1.56058
1.2744
1.54609
1.24379
1.54868
1.25174
1.57845
1.5313
1.26263
1.49137
1.414
1.1422
1.16905
1.45503
1.19326
1.45449
1.50425
1.2308
1.16765
1.52176
1.48319
1.209
1.5232
1.26867
1.00696
0.878624
0.997535
1.05985
1.02292
1.23122
1.30443
1.07132
1.16362
0.907247
1.11091
1.34455
1.04468
1.42276
1.38626
1.15446
1.0422
1.33927
1.44376
1.13243
1.40043
1.09005
1.00915
1.2103
1.26843
1.11521
1.36912
1.21423
-0.140283
0.142349
1.03494
1.17508
0.964365
0.777049
0.982008
0.913417
1.20909
0.953951
1.15126
0.904242
0.844359
0.720879
0.893788
1.10804
0.928489
1.00996
0.690381
0.636092
0.832633
0.742546
0.856522
0.973211
0.942725
-0.113025
-0.131635
1.0106
1.03652
0.88898
0.653057
0.814321
0.768229
0.868524
1.07678
-0.213995
-1.56379
-1.53254
-0.24527
-0.365113
-1.38446
-0.059402
-0.0158057
-0.00101477
-0.0138417
0.0100507
-0.00784921
0.0110459
0.00126237
-0.0145958
0.0172278
0.000944899
0.0140916
-0.00987767
0.0141964
0.0160647
0.0934156
0.174503
0.124747
0.109247
0.150482
0.142402
0.10073
-0.0353807
0.084964
0.0266402
0.126304
0.11287
0.126625
0.113812
0.0839555
0.0452076
0.0795283
0.111443
0.136224
0.111211
0.140751
0.261594
0.0968456
0.0461105
0.125074
0.133337
0.114055
0.138192
0.0128168
0.0543404
0.325374
0.0756232
0.0174141
0.0823436
0.0348659
0.352457
0.0299226
0.0202084
0.0809294
0.0177318
0.0189454
0.0844041
0.0705803
0.149652
0.0706527
0.0818754
0.0114534
0.0818415
0.0175098
-0.200495
-0.162592
-0.206045
-0.317162
-0.271069
-0.266738
-0.257208
-0.313089
-0.262261
-0.165977
-0.218402
-0.212017
-0.300535
-0.307399
-0.294852
-0.266947
-0.27092
-0.278044
-0.292052
-0.275106
-0.284331
-0.303713
-0.284654
-0.29002
-0.380343
-0.368185
-0.402418
-0.350602
-0.352165
-0.376856
-0.408113
-0.36398
-0.352752
-0.338187
-0.322916
-0.366332
-0.351639
-0.336945
-0.3841
-0.369644
-0.355256
-0.417881
-0.388721
-0.353623
-0.413167
-0.362018
-0.334499
-0.321888
-0.349338
-0.35058
-0.335775
-0.360038
-0.32231
-0.304935
-0.329754
-0.28697
-0.288411
-0.325096
-0.328009
-0.319732
-0.322826
-0.273277
-0.247859
-0.316688
-0.323662
-0.271035
-0.320277
-0.305988
-0.291524
-0.326455
-0.318595
-0.289945
-0.327106
-0.32299
-0.266237
-0.244012
-0.323699
-0.324312
-0.268713
-0.326644
-0.296402
-0.314697
-0.32938
-0.280975
-0.284366
-0.293878
-0.333001
-0.263804
-0.234472
-0.255474
-0.217102
-0.266041
-0.232739
-0.252967
-0.294872
-0.25285
-0.254055
-0.29249
-0.352801
-0.438376
-0.36019
-0.429771
-0.298054
-0.31759
-0.290492
-0.339909
-0.301084
-0.287689
-0.335767
-0.348271
-0.416375
-0.343884
-0.423397
-0.262755
-0.24593
-0.21402
-0.230986
-0.232092
-0.24979
-0.261033
-0.238433
-0.159632
-0.121305
-0.195107
-1.12261
-1.09501
-1.10923
-1.09285
-1.12614
-1.07752
-1.08925
-1.06876
-1.08356
-1.06345
-1.07095
-1.08447
-1.11202
-1.10356
-1.15245
-1.13069
-1.1066
-1.15967
-1.10538
-1.07502
-1.09555
-1.05928
-1.05625
-1.05703
-1.07093
-1.08651
-1.10921
-1.10361
-0.235871
-0.232587
-0.282397
-0.306731
-0.282149
-0.349398
-0.280644
-0.277977
-0.275916
-0.345406
-0.275165
-0.303755
-0.272739
-0.281697
-0.274282
-0.269353
-0.266122
-0.305859
-0.280807
-0.281169
-0.285064
-0.30785
-0.282626
-0.26969
-0.264678
-0.264535
-0.501123
-0.332529
-0.391266
-0.668289
-0.332315
-0.486632
-0.666466
-0.444012
-0.319706
-0.359224
-0.433459
-0.357917
-0.457451
-0.337482
-0.331911
-0.374345
-0.359791
-0.389717
-0.492099
-0.385784
-0.32398
-0.646575
-0.48275
-0.326775
-0.657239
-0.771802
-0.49484
-0.517818
-0.874268
-0.490709
-0.778636
-0.87281
-0.616827
-0.532588
-0.420341
-0.438102
-0.540236
-0.609127
-0.44261
-0.619087
-0.451699
-0.42276
-0.546613
-0.538362
-0.446018
-0.626279
-0.768311
-0.517404
-0.484489
-0.871114
-0.760691
-0.487847
-0.873853
-0.87304
-0.600795
-0.549855
-0.576269
-0.60025
-0.871927
-0.575366
-0.819939
-0.698215
-0.552888
-0.580717
-0.701545
-0.816241
-0.582876
-0.822152
-0.58624
-0.555479
-0.706288
-0.704265
-0.584902
-0.822658
-0.873854
-0.549433
-0.598232
-0.59027
-0.874272
-0.599155
-0.580848
-0.790543
-0.636196
-0.587742
-0.677815
-0.63524
-0.788859
-0.676978
-1.00172
-0.884925
-0.634703
-0.653579
-0.896721
-0.99167
-0.657142
-1.01069
-0.662233
-0.637906
-0.917992
-0.907744
-0.65999
-1.01813
-0.792806
-0.587005
-0.631687
-0.676773
-0.794783
-0.633807
-0.676895
-0.689492
-0.705952
-0.585213
-0.590151
-0.370381
-0.549714
-0.554124
-0.374009
-0.555224
-0.383208
-0.560515
-0.378077
-0.695479
-0.69834
-0.587397
-0.58142
-0.44634
-0.357836
-0.461493
-0.341162
-0.434356
-0.310707
-0.423334
-0.327289
-1.45706
-1.72718
-1.32851
-0.37657
-0.389112
-0.392183
-0.392152
-3.41306
-3.79485
-2.57503
-3.21736
-3.11321
-2.99476
-2.96492
-2.30413
-3.08386
-2.96323
-2.06371
-2.96301
-1.12804
-1.95616
-0.917292
-0.969258
-0.951189
-2.28793
-1.71097
-1.83187
-0.860058
-0.861515
-0.8821
-0.820426
-0.163565
-0.165916
-0.163104
-0.160176
-0.160227
-0.168206
-0.181574
-0.186502
-0.183921
-0.177281
-0.177987
-0.179096
-0.178909
-0.179056
-0.182231
-0.176352
-0.180251
-0.162022
-0.16289
-0.156288
-0.158507
-0.16744
-0.157089
-0.153583
-0.138847
-0.140073
-0.156019
-0.153148
-0.13922
-0.155705
-0.162136
-0.164511
-0.156535
-0.161634
-0.155883
-0.155962
-0.155106
-0.164108
-0.156109
-0.159799
-0.159553
-0.140206
-0.156878
-0.15049
-0.147995
-0.14291
-0.148538
-0.150472
-0.142629
-0.148262
-0.148951
-0.141232
-0.147291
-0.137705
-0.14184
-0.148815
-0.147461
-0.161829
-0.168679
-0.181059
-0.160715
-0.179486
-0.150472
-0.14149
-0.152003
-0.141923
-0.159148
-0.156709
-0.174173
-0.165558
-0.174573
-0.159015
-0.157366
-0.52325
-0.544948
-0.523973
-0.552249
-0.525264
-0.553256
-0.521927
-0.49931
-0.515894
-0.499925
-0.524568
-0.500039
-0.524307
-0.499355
-0.179604
-0.181782
-0.193731
-0.173246
-0.178207
-0.180161
-0.173162
-0.186897
-0.181269
-0.192911
-0.171934
-0.168606
-0.18136
-0.195941
-0.179117
-0.176569
-0.178907
-0.184332
-0.182662
-0.175933
-0.179977
-0.182706
-0.186482
-0.182381
-0.183113
-0.503739
-0.498054
-0.504071
-0.512458
-0.500024
-0.506677
-0.507388
-0.502612
-0.508758
-0.525337
-0.52651
-0.502213
-0.502039
-0.498018
-0.504557
-0.505823
-0.499659
-0.501312
-0.50551
-0.502377
-0.240898
-0.24888
-0.254416
-0.266682
-0.491144
-0.460623
-0.45222
-0.494109
-0.456136
-0.502119
-0.502015
-0.468188
-0.463202
-0.499622
-0.497203
-0.465659
-0.229191
-0.249629
-0.250337
-0.245517
-0.218149
-0.255546
-0.251475
-0.238127
-0.23841
-0.232965
-0.248096
-0.238742
-0.246112
-0.247057
-0.224062
-0.222504
-0.224975
-0.260559
-0.217274
-0.238079
-0.251887
-0.521018
-0.534494
-0.534032
-0.53716
-0.53403
-0.538444
-0.520847
-0.489507
-0.491751
-0.504457
-0.493096
-0.504053
-0.493064
-0.48993
-0.176729
-0.179669
-0.171655
-0.179014
-0.174444
-0.174493
-0.181315
-0.178667
-0.174815
-0.176422
-0.176004
-0.179532
-0.180027
-0.175592
-0.175115
-0.171009
-0.17065
-0.171327
-0.176023
-0.174008
-0.182293
-0.192548
-0.199151
-0.183891
-0.181871
-0.193464
-0.476644
-0.453485
-0.452554
-0.472789
-0.452975
-0.456969
-0.451597
-0.471162
-0.47152
-0.450988
-0.450642
-0.450908
-0.451417
-0.451897
-0.453069
-0.452376
-0.486602
-0.490561
-0.501182
-0.490834
-0.502091
-0.491525
-0.4856
-0.446108
-0.437292
-0.45833
-0.436251
-0.438742
-0.444669
-0.438139
-0.468897
-0.468369
-0.466118
-0.475589
-0.465019
-0.474609
-0.469957
-0.447403
-0.440734
-0.459571
-0.44138
-0.440208
-0.439358
-0.44854
-0.451064
-0.446915
-0.450462
-0.446154
-0.448975
-0.449694
-0.439535
-0.459152
-0.440881
-0.460565
-0.443432
-0.442334
-0.442284
-0.435848
-0.435264
-0.454356
-0.443578
-0.434554
-0.43371
-0.462805
-0.462686
-0.45689
-0.468452
-0.458114
-0.469306
-0.461644
-0.44097
-0.430594
-0.452758
-0.431646
-0.433019
-0.43229
-0.43962
-0.43266
-0.434007
-0.411939
-0.399573
-0.435233
-0.431652
-0.402008
-0.447242
-0.44038
-0.444882
-0.44572
-0.443607
-0.444567
-0.448457
-0.43404
-0.404746
-0.413034
-0.438051
-0.436764
-0.403
-0.435311
-0.43838
-0.454739
-0.437171
-0.452872
-0.434213
-0.43558
-0.405839
-0.407128
-0.428281
-0.432102
-0.397428
-0.406709
-0.429602
-0.430884
-0.395574
-0.440214
-0.431516
-0.434396
-0.436774
-0.435214
-0.437247
-0.439494
-0.426866
-0.392853
-0.405216
-0.428295
-0.429326
-0.394177
-0.425888
-0.39706
-0.389921
-0.36464
-0.377382
-0.392545
-0.397404
-0.376704
-0.408303
-0.395776
-0.402384
-0.407414
-0.401208
-0.405679
-0.409442
-0.397716
-0.377577
-0.36537
-0.394866
-0.393772
-0.376873
-0.398479
-0.400237
-0.398656
-0.36846
-0.368204
-0.400305
-0.397063
-0.38264
-0.386298
-0.398593
-0.399892
-0.383068
-0.405177
-0.385903
-0.397307
-0.394355
-0.398062
-0.395745
-0.40415
-0.400486
-0.381568
-0.386133
-0.399767
-0.400382
-0.382663
-0.39972
-0.385663
-0.39116
-0.368076
-0.362729
-0.39064
-0.385463
-0.363074
-0.393289
-0.365944
-0.393632
-0.380644
-0.394109
-0.378414
-0.394025
-0.38645
-0.364742
-0.368894
-0.390494
-0.390789
-0.364051
-0.38694
-0.3832
-0.390553
-0.361232
-0.367452
-0.383949
-0.390785
-0.360761
-0.385096
-0.350383
-0.379629
-0.366455
-0.38319
-0.36825
-0.382809
-0.382176
-0.359199
-0.367442
-0.390479
-0.390613
-0.360053
-0.380911
-0.34084
-0.339949
-0.336575
-0.328474
-0.341238
-0.339892
-0.329746
-0.346128
-0.328858
-0.342366
-0.340026
-0.341209
-0.339081
-0.347216
-0.342705
-0.333376
-0.33885
-0.344763
-0.343369
-0.331796
-0.344041
-0.335583
-0.337011
-0.325559
-0.330303
-0.337063
-0.335495
-0.32386
-0.33762
-0.31952
-0.329896
-0.329435
-0.331618
-0.33115
-0.33567
-0.333591
-0.319424
-0.327901
-0.331363
-0.333247
-0.321714
-0.331493
-0.288668
-0.285641
-0.275167
-0.269126
-0.287112
-0.287303
-0.270576
-0.299335
-0.296616
-0.295267
-0.304212
-0.293502
-0.302369
-0.30138
-0.289772
-0.27383
-0.276685
-0.290261
-0.288486
-0.271775
-0.291778
-0.284498
-0.284056
-0.26765
-0.270453
-0.285939
-0.282736
-0.266026
-0.293688
-0.292992
-0.286112
-0.297096
-0.28739
-0.29849
-0.29203
-0.283412
-0.262916
-0.268989
-0.280001
-0.281473
-0.264764
-0.281649
-0.24918
-0.243897
-0.230028
-0.229645
-0.244676
-0.24801
-0.230962
-0.264941
-0.281917
-0.259855
-0.282044
-0.259826
-0.280888
-0.266083
-0.250135
-0.233738
-0.231309
-0.246379
-0.245487
-0.232091
-0.251557
0.0781888
0.00803908
-0.00849201
0.151108
0.150994
0.136499
0.145779
-0.0538583
0.078162
-0.0855262
0.167788
0.11858
0.135445
0.126821
0.0753323
0.0356413
-0.000268285
0.126066
0.138304
0.116265
0.138272
0.0695877
-0.0241977
0.223007
0.0866522
0.123979
0.176397
-0.245209
-0.242682
-0.228129
-0.226038
-0.246487
-0.241864
-0.226786
-0.259212
-0.281149
-0.258593
-0.273156
-0.258726
-0.274319
-0.258172
-0.243901
-0.224256
-0.224567
-0.239884
-0.240725
-0.225513
-0.242733
-0.192062
-0.195712
-0.163842
-0.170117
-0.196979
-0.190696
-0.171871
-0.213992
-0.274029
-0.244654
-0.229255
-0.243932
-0.226713
-0.216307
-0.194206
-0.176752
-0.166506
-0.200696
-0.198932
-0.174163
-0.196645
-0.364946
-0.351305
-0.352357
-0.354536
-0.357347
-0.353785
-0.367472
-0.35477
-0.353502
-0.35226
-0.357808
-0.353103
-0.185644
-0.193649
-0.167658
-0.156875
-0.188279
-0.191977
-0.165272
-0.203746
-0.260117
-0.235235
-0.21102
-0.2372
-0.214723
-0.200974
-0.184263
-0.161755
-0.15482
-0.189323
-0.19074
-0.163942
-0.18196
-0.173494
-0.189123
-0.150537
-0.158752
-0.189911
-0.17321
-0.158696
-0.186023
-0.188338
-0.227787
-0.183363
-0.224794
-0.181864
-0.187371
-0.174592
-0.159495
-0.14961
-0.192136
-0.19119
-0.159248
-0.175434
-0.35849
-0.376274
-0.35776
-0.355545
-0.355033
-0.355667
-0.356381
-0.354715
-0.356054
-0.374386
-0.355805
-0.356918
-0.417185
-0.372434
-0.376023
-0.313129
-0.218693
-0.313906
-0.421827
-0.380787
-0.378095
-0.316614
-0.220685
-0.315624
-0.170032
-0.186848
-0.157273
-0.152709
-0.171147
-0.185267
-0.1566
-0.177673
-0.174862
-0.201606
-0.171176
-0.206333
-0.173748
-0.175095
-0.168002
-0.153484
-0.152552
-0.180142
-0.182616
-0.155072
-0.165858
-0.0818189
-0.0777454
-0.0859015
-0.0771546
-0.0805746
-0.0799743
-0.0794238
-0.0876037
-0.0764659
-0.0833143
-0.0936938
-0.0800706
-0.0902644
-0.0910585
-0.084589
-0.0861703
-0.0901111
-0.0878105
-0.0840984
-0.0824203
-0.0881577
-0.366417
-0.374258
-0.373521
-0.239482
-0.311662
-0.310909
-0.304116
-0.252241
-0.307967
-0.403267
-0.380951
-0.37933
-0.298845
-0.263457
-0.269357
-0.246816
-0.263291
-0.299831
-0.269292
-0.334913
-0.348552
-0.308978
-0.291557
-0.348446
-0.333552
-0.292219
-0.335928
-0.292455
-0.347843
-0.308871
-0.347991
-0.337169
-0.292257
-0.298004
-0.247168
-0.26273
-0.268793
-0.296821
-0.263188
-0.269344
-0.625135
-0.61388
-0.623418
-0.583641
-0.584809
-0.582625
-0.586788
-0.585865
-0.587822
-0.583172
-0.584222
-0.585055
-0.586141
-0.59014
-0.582313
-0.585418
-0.586283
-0.591523
-0.584137
-0.600003
-0.604487
-0.568191
-0.568802
-0.592856
-0.568133
-0.569476
-0.560212
-0.558931
-0.575136
-0.569776
-0.557607
-0.560027
-0.564376
-0.55659
-0.572024
-0.577797
-0.575412
-0.564453
-0.556939
-0.563151
-0.579576
-0.57387
-0.567478
-0.592593
-0.564527
-0.559436
-0.569439
-0.273562
-0.259801
-0.242862
-0.234082
-0.223478
-0.251011
-0.248108
-0.210329
-0.258279
-0.240358
-0.234711
-0.249716
-0.262929
-0.226579
-0.215966
-0.267736
-0.223161
-0.238496
-0.233028
-0.204823
-0.245687
-0.55616
-0.559175
-0.589186
-0.560959
-0.554551
-0.549715
-0.573059
-0.561352
-0.557663
-0.571604
-0.552628
-0.554849
-0.552878
-0.568634
-0.570212
-0.551282
-0.548424
-0.551798
-0.560387
-0.568571
-0.570191
-0.553665
-0.546661
-0.557653
-0.588764
-0.563228
-0.558994
-0.561814
-0.570151
-0.555055
-0.550116
-0.548727
-0.570457
-0.554521
-0.549432
-0.527042
-0.523076
-0.523419
-0.526168
-0.570515
-0.548346
-0.554097
-0.549157
-0.570028
-0.554713
-0.549511
-0.571289
-0.549674
-0.553901
-0.548781
-0.554697
-0.570672
-0.549833
-0.528184
-0.52236
-0.522937
-0.527696
-0.571224
-0.548166
-0.554707
-0.549776
-0.57145
-0.554422
-0.549646
-0.525504
-0.523456
-0.544503
-0.54459
-0.526321
-0.522651
-0.543941
-0.533797
-0.521251
-0.520341
-0.534672
-0.523458
-0.522638
-0.524025
-0.524747
-0.525086
-0.544157
-0.521292
-0.54288
-0.524189
-0.522277
-0.543366
-0.523191
-0.541772
-0.519135
-0.542303
-0.51961
-0.522873
-0.541703
-0.530174
-0.515327
-0.516033
-0.529566
-0.522083
-0.522333
-0.521338
-0.521022
-0.523744
-0.542867
-0.520699
-0.542467
-0.523964
-0.5202
-0.542303
-0.507214
-0.499559
-0.533064
-0.530617
-0.507721
-0.499009
-0.532928
-0.505295
-0.488762
-0.48773
-0.506094
-0.501718
-0.500268
-0.501697
-0.502329
-0.507889
-0.530928
-0.497353
-0.533848
-0.506508
-0.498976
-0.533434
-0.508706
-0.538296
-0.492764
-0.530882
-0.494307
-0.507929
-0.538332
-0.502675
-0.482911
-0.483221
-0.502236
-0.499527
-0.499135
-0.499243
-0.499193
-0.510049
-0.533402
-0.496061
-0.534776
-0.507047
-0.495977
-0.53974
-0.496092
-0.467287
-0.473756
-0.478843
-0.497746
-0.465277
-0.472753
-0.483553
-0.459214
-0.457481
-0.485101
-0.48645
-0.471184
-0.484826
-0.471756
-0.487243
-0.473612
-0.488609
-0.472607
-0.496335
-0.477791
-0.462501
-0.470891
-0.493793
-0.464819
-0.471682
-0.492318
-0.468329
-0.45863
-0.474792
-0.459601
-0.491755
-0.468615
-0.477512
-0.447814
-0.449244
-0.476345
-0.483193
-0.469958
-0.484106
-0.469938
-0.482386
-0.469916
-0.481751
-0.46985
-0.493044
-0.475321
-0.461414
-0.469403
-0.494224
-0.460203
-0.469042
-0.475913
-0.436704
-0.464611
-0.452606
-0.477314
-0.434902
-0.46373
-0.449032
-0.42015
-0.41826
-0.451078
-0.462463
-0.45619
-0.461207
-0.456942
-0.463556
-0.45898
-0.464964
-0.457954
-0.475827
-0.451591
-0.432233
-0.462746
-0.474281
-0.434201
-0.463033
-0.473264
-0.45977
-0.425999
-0.44754
-0.427733
-0.472036
-0.46062
-0.441055
-0.409007
-0.410715
-0.43893
-0.459639
-0.454151
-0.460067
-0.453747
-0.457829
-0.451675
-0.456412
-0.452497
-0.474902
-0.448936
-0.430013
-0.461455
-0.474535
-0.429091
-0.462148
-0.369139
-0.308522
-0.3242
-0.323202
-0.370401
-0.407231
-0.436689
-0.406326
-0.435662
-0.408685
-0.435169
-0.41016
-0.435426
-0.362564
-0.298869
-0.314662
-0.31589
-0.361485
-0.403961
-0.436459
-0.404556
-0.437739
-0.40208
-0.43754
-0.400813
-0.437339
-0.37461
-0.311178
-0.311731
-0.310866
-0.374949
-0.367548
-0.332157
-0.366637
-0.332553
-0.367477
-0.330721
-0.368212
-0.331504
-0.443355
-0.446396
-0.359035
-0.32978
-0.3583
-0.445737
-0.447101
-0.35412
-0.328599
-0.357228
-0.377926
-0.312732
-0.31136
-0.311893
-0.37754
-0.366287
-0.335457
-0.368471
-0.332961
-0.36621
-0.332115
-0.364154
-0.333115
-0.319554
-0.325075
-0.303611
-0.301784
-0.321013
-0.326563
-0.314408
-0.325667
-0.315101
-0.327541
-0.317868
-0.328824
-0.316614
-0.400271
-0.50246
-0.399882
-0.32947
-0.358174
-0.344038
-0.363424
-0.334225
-0.360139
-0.495284
-0.440073
-0.394423
-0.50567
-0.437647
-0.43823
-0.377923
-0.333897
-0.379678
-0.506873
-0.437655
-0.438615
-0.381245
-0.336354
-0.380422
-0.31347
-0.307276
-0.290165
-0.291712
-0.313453
-0.323805
-0.313243
-0.324389
-0.313001
-0.323212
-0.313882
-0.324258
-0.312503
-0.260508
-0.205778
-0.22595
-0.22261
-0.263105
-0.276894
-0.273398
-0.274778
-0.275188
-0.278459
-0.278078
-0.280499
-0.27651
-0.597132
-0.186762
-0.245593
-0.239185
-0.275535
-0.32873
-0.279989
-0.180871
-0.225156
-0.232168
-0.288552
-0.332455
-0.284395
-0.43352
-0.509155
-0.430771
-0.331442
-0.376967
-0.377217
-0.383933
-0.337187
-0.377412
-0.510006
-0.432859
-0.432346
-0.487461
-0.447637
-0.444051
-0.489112
-0.492554
-0.481588
-0.404962
-0.50173
-0.484957
-0.479275
-0.484698
-0.439628
-0.440666
-0.476928
-0.478266
-0.471465
-0.402628
-0.478755
-0.463958
-0.478941
-0.250751
-0.188261
-0.206551
-0.209656
-0.248567
-0.270967
-0.271276
-0.272185
-0.270244
-0.270344
-0.268285
-0.268878
-0.269488
-0.226916
-0.154177
-0.178702
-0.177193
-0.228287
-0.249028
-0.250578
-0.247499
-0.251891
-0.249871
-0.253653
-0.251139
-0.25261
-0.640165
-0.647067
-0.648296
-0.614452
-0.582119
-0.609362
-0.606205
-0.633246
-0.681294
-0.634802
-0.578308
-0.59906
-0.60174
-0.639018
-0.682336
-0.637136
-0.288837
-0.264793
-0.26988
-0.264767
-0.234584
-0.257734
-0.292111
-0.279769
-0.274408
-0.245443
-0.223544
-0.251958
-0.440702
-0.532249
-0.520693
-0.515884
-0.466417
-0.52734
-0.497625
-0.416202
-0.481645
-0.506465
-0.509758
-0.486185
-0.466846
-0.450578
-0.415445
-0.50746
-0.489849
-0.46575
-0.483407
-0.488805
-0.439953
-0.456611
-0.605678
-0.603043
-0.583436
-0.539158
-0.609262
-0.601049
-0.543116
-0.61573
-0.637588
-0.538879
-0.531338
-0.619547
-0.634013
-0.535708
-0.610222
-0.584933
-0.621277
-0.548512
-0.614996
-0.61535
-0.545561
-0.612291
-0.52918
-0.628236
-0.528869
-0.631131
-0.608765
-0.533168
-0.219402
-0.139506
-0.166107
-0.168607
-0.217234
-0.244548
-0.249312
-0.246028
-0.248089
-0.242928
-0.245157
-0.240977
-0.246746
-0.0759449
-0.0638152
-0.0873747
-0.0331713
-0.0843103
-0.0330685
-0.0778587
-0.127434
-0.152089
-0.12612
-0.158416
-0.129076
-0.17004
-0.132684
-0.164401
-0.571975
-0.593155
-0.594524
-0.629413
-0.677613
-0.628703
-0.574019
-0.595035
-0.596798
-0.623924
-0.674079
-0.625157
-0.544947
-0.600448
-0.591933
-0.613519
-0.647748
-0.616793
-0.536001
-0.58098
-0.588479
-0.62283
-0.649737
-0.619205
-0.401774
-0.370918
-0.358487
-0.412458
-0.405461
-0.358054
-0.42016
-0.371358
-0.35363
-0.339078
-0.325201
-0.368597
-0.354747
-0.340102
-0.397929
-0.371886
-0.356448
-0.421578
-0.393322
-0.35766
-0.423623
-0.374505
-0.341439
-0.357417
-0.325346
-0.355779
-0.378625
-0.340623
-0.625368
-0.561347
-0.589378
-0.637196
-0.632184
-0.558751
-0.629171
-0.624332
-0.640213
-0.539967
-0.542027
-0.64279
-0.622573
-0.544986
-0.6285
-0.552015
-0.543085
-0.648523
-0.645858
-0.549011
-0.631637
-0.618351
-0.585452
-0.625656
-0.551702
-0.618971
-0.614064
-0.553915
-0.678823
-0.699438
-0.630729
-0.610024
-0.700661
-0.678926
-0.610949
-0.66483
-0.719247
-0.598437
-0.596473
-0.664619
-0.708146
-0.597887
-0.67811
-0.63214
-0.702288
-0.612175
-0.676651
-0.70176
-0.611731
-0.664899
-0.596478
-0.693202
-0.594194
-0.698672
-0.665306
-0.597176
-0.0703106
-0.0551204
-0.0261077
-0.0751811
-0.0265169
-0.0763105
-0.0692641
-0.123348
-0.148175
-0.124486
-0.145546
-0.123058
-0.143404
-0.122354
-0.144594
-0.0787502
-0.0679662
-0.0623413
-0.08118
-0.0627479
-0.082005
-0.0779034
-0.0770208
-0.0409667
-0.137112
-0.0409956
-0.0778775
-0.136318
-0.0773782
-0.136143
-0.0446624
-0.0438797
-0.0769752
-0.136289
-0.430442
-0.45086
-0.502917
-0.461999
-0.513729
-0.603285
-0.641278
-0.59522
-0.486658
-0.564109
-0.543275
-0.56847
-0.635032
-0.580507
-0.452378
-0.422413
-0.381712
-0.401946
-0.420456
-0.453732
-0.397003
-0.50334
-0.558797
-0.409116
-0.435015
-0.503645
-0.556959
-0.415971
-0.453223
-0.379778
-0.418393
-0.389205
-0.451953
-0.420335
-0.394984
-0.500783
-0.423087
-0.551508
-0.437069
-0.552779
-0.500869
-0.417903
-0.31757
-0.311126
-0.328457
-0.297898
-0.318028
-0.29609
-0.32756
-0.312339
-0.321302
-0.275271
-0.258662
-0.314117
-0.319684
-0.277299
-0.317225
-0.309738
-0.293015
-0.32648
-0.317686
-0.294635
-0.326716
-0.312003
-0.280908
-0.317072
-0.261378
-0.31835
-0.311901
-0.278957
-0.672763
-0.614055
-0.636465
-0.70312
-0.703617
-0.613635
-0.671544
-0.664914
-0.730895
-0.604486
-0.599181
-0.7429
-0.664671
-0.599885
-0.665688
-0.601939
-0.607087
-0.766129
-0.754775
-0.600701
-0.668246
-0.673907
-0.635534
-0.702943
-0.612771
-0.675317
-0.703276
-0.613168
-0.793656
-0.764082
-0.664431
-0.658685
-0.768021
-0.790465
-0.660449
-0.85586
-0.959314
-0.674829
-0.685023
-0.859039
-0.955951
-0.671935
-0.797341
-0.667081
-0.775809
-0.665883
-0.800414
-0.772217
-0.663336
-0.852041
-0.666807
-0.947811
-0.681371
-0.951719
-0.848731
-0.668709
-0.0778077
-0.0664993
-0.0607814
-0.0802779
-0.0615803
-0.0811555
-0.0770876
-0.0766456
-0.0410914
-0.136161
-0.0423074
-0.0768709
-0.135496
-0.0760002
-0.133707
-0.0409354
-0.0423842
-0.0751492
-0.134841
0.00467871
0.0308638
0.0237282
0.00981797
0.0257023
0.0136621
0.00124124
0.00704455
0.029788
0.0389056
0.00473772
0.0275881
0.00977973
0.00415205
0.00530118
0.00456106
0.0268811
0.0450389
0.0274033
0.00297438
0.00479653
-0.454833
-0.362406
-0.418655
-0.372007
-0.418077
-0.374915
-0.457053
-0.511514
-0.5658
-0.404946
-0.414202
-0.507835
-0.571546
-0.399295
-0.455242
-0.36754
-0.418968
-0.385929
-0.453693
-0.419376
-0.380666
-0.512387
-0.389845
-0.406399
-0.574298
-0.571754
-0.392769
-0.516522
-0.439246
-0.390221
-0.303098
-0.31468
-0.391103
-0.437025
-0.312632
-0.482288
-0.474218
-0.319512
-0.318305
-0.486193
-0.468407
-0.319403
-0.435073
-0.299818
-0.390482
-0.309666
-0.438803
-0.387027
-0.309482
-0.486791
-0.32439
-0.470961
-0.32075
-0.473974
-0.483424
-0.322289
-0.307272
-0.32229
-0.349153
-0.298997
-0.308865
-0.298062
-0.347776
-0.308594
-0.260026
-0.260141
-0.310653
-0.268594
-0.234505
-0.25818
-0.223357
-0.266537
-0.235811
-0.260719
-0.374187
-0.44448
-0.364962
-0.456302
-0.306541
-0.322426
-0.293505
-0.342652
-0.302769
-0.295964
-0.347231
-0.378801
-0.469702
-0.385985
-0.46132
-0.26835
-0.265428
-0.23388
-0.225603
-0.235014
-0.268535
-0.263255
-0.809969
-0.677057
-0.677252
-0.790805
-0.787152
-0.674352
-0.813119
-0.865615
-0.962751
-0.695682
-0.678197
-0.96635
-0.862319
-0.681353
-0.868872
-0.687051
-0.698876
-0.973514
-0.969997
-0.684241
-0.872124
-0.806799
-0.674762
-0.779629
-0.668876
-0.803619
-0.783392
-0.671715
-0.865197
-0.857636
-0.754706
-0.752809
-0.8543
-0.86937
-0.755695
-0.893645
-0.885358
-0.773796
-0.746154
-0.863885
-0.894593
-0.762829
-0.863821
-0.759164
-0.840678
-0.771151
-0.839876
-0.854499
-0.760475
-0.891911
-0.756602
-0.90102
-0.743367
-0.892587
-0.896365
-0.758423
0.0178797
0.0463463
0.0401235
0.0320205
0.0379313
0.0292362
0.020336
0.0130176
0.0324185
0.0460661
0.00568701
0.033674
0.0114949
0.00678612
0.0149098
0.00941832
0.0365664
0.0458081
0.0353607
0.0167893
0.00814818
0.0210462
0.0438356
0.0447556
0.0361147
0.0397994
0.0312905
0.0256829
0.00800962
0.0238387
0.0335166
-0.000393155
0.0298613
0.000394891
0.0077516
0.0122375
0.0176046
0.040337
0.040658
0.0350682
0.0167336
0.0127576
-0.432861
-0.29125
-0.384741
-0.297772
-0.38323
-0.301728
-0.435673
-0.480919
-0.464627
-0.317339
-0.310392
-0.477166
-0.467125
-0.312166
-0.433765
-0.292674
-0.38376
-0.307253
-0.431229
-0.385095
-0.302748
-0.481086
-0.30724
-0.309732
-0.465696
-0.464616
-0.311534
-0.484961
-0.310903
-0.340088
-0.222116
-0.218864
-0.329608
-0.319322
-0.212398
-0.290765
-0.2834
-0.188693
-0.185519
-0.282459
-0.291725
-0.195462
-0.299401
-0.213266
-0.303106
-0.196365
-0.290334
-0.315503
-0.203602
-0.301305
-0.210497
-0.308915
-0.194073
-0.302118
-0.308677
-0.204214
-0.240375
-0.223348
-0.229192
-0.235107
-0.265109
-0.297038
-0.275948
-0.285887
-0.258164
-0.273772
-0.253077
-0.278478
-0.836257
-0.773336
-0.770781
-0.843662
-0.841356
-0.773944
-0.837378
-0.844886
-0.835445
-0.741759
-0.771279
-0.832768
-0.835931
-0.775384
-1.2851
-1.27932
-0.840143
-0.771139
-0.738644
-0.818336
-0.825032
-0.772858
-0.836959
-0.838181
-0.772139
-0.835644
-0.770631
-0.828265
-0.842513
-0.775702
-0.518527
-0.699027
-0.537941
-0.547688
-0.66607
-0.541864
-0.531725
-0.756429
-0.746818
-0.702095
-0.886404
-0.800218
-0.900383
-0.879627
-0.821369
-0.471057
-0.45521
-0.505418
-0.53027
-0.450277
-0.47534
-0.526058
-0.786781
-0.937373
-0.914557
-0.80769
-0.491864
-0.518477
-0.55326
-0.496786
-0.464712
-0.626109
-0.513944
-0.493179
-0.561928
-0.515216
-0.55102
-0.49687
-0.512636
-0.545628
-2.48718
-2.32569
-2.32028
-2.45412
-2.35309
-2.555
-2.40885
-2.55961
-2.39773
-2.60378
-2.3941
-2.55921
-2.59662
-2.47551
-2.36268
-2.41411
-2.51374
-2.51352
-2.43072
-2.544
-2.36298
-2.37335
-2.60458
-2.53704
-2.40858
-2.45622
-2.50985
-2.65055
-2.488
-2.53937
-2.60164
-2.42633
-2.41642
-2.54032
-2.62976
-2.3907
-2.51935
-2.37304
-2.57566
-2.41644
-2.62408
-2.39179
-2.4763
-2.50947
-2.32772
-2.38058
-2.62402
-2.65468
-2.34712
-2.47693
-0.225493
-0.277395
-0.300239
-0.299854
-0.357236
-0.362963
-0.287912
-0.295676
-0.29913
-0.368676
-0.366276
-0.27927
-0.268156
-0.271251
-0.281638
-0.305781
-0.282152
-0.276823
-0.267262
-0.269537
-0.280459
-0.305239
-0.28258
-0.454029
-0.365646
-0.30893
-0.602422
-0.443479
-0.31264
-0.614303
-0.404803
-0.357033
-0.325098
-0.418729
-0.355762
-0.463449
-0.370662
-0.31978
-0.636239
-0.473151
-0.316178
-0.625095
-0.391387
-0.352102
-0.328511
-0.377363
-0.354386
-0.741227
-0.510774
-0.466898
-0.857538
-0.732591
-0.47176
-0.863811
-0.597629
-0.528446
-0.434123
-0.407779
-0.605251
-0.521535
-0.429189
-0.748121
-0.51372
-0.480748
-0.874157
-0.75734
-0.475653
-0.868046
-0.592129
-0.421222
-0.509886
-0.404653
-0.516347
-0.585164
-0.425658
-0.77044
-0.755814
-0.764178
-0.752278
-0.807914
-0.809946
-0.819466
-0.752768
-0.814385
-0.743461
-0.75431
-0.755392
-0.883237
-0.554042
-0.597994
-0.636235
-0.892849
-0.597856
-0.62154
-0.809705
-0.695432
-0.578474
-0.544705
-0.813602
-0.691427
-0.576196
-0.876957
-0.551221
-0.597313
-0.600662
-0.876401
-0.596823
-0.608021
-0.808858
-0.571694
-0.686311
-0.542288
-0.688797
-0.809154
-0.574786
-0.735511
-0.723462
-0.737937
-0.74899
-0.801925
-0.797972
-0.784771
-0.744674
-0.789759
-0.731569
-0.74793
-0.745889
-0.671079
-0.693253
-0.667291
-0.675536
-0.655508
-0.656788
-0.665618
-0.678957
-0.660649
-0.692949
-0.664551
-0.665023
-0.801222
-0.581089
-0.622885
-0.676752
-0.803577
-0.624998
-0.676518
-0.972123
-0.873353
-0.649884
-0.623686
-0.981814
-0.861925
-0.646267
-0.799118
-0.582563
-0.629376
-0.676646
-0.796871
-0.62716
-0.676661
-0.962565
-0.639309
-0.837008
-0.620222
-0.85013
-0.952964
-0.642773
-0.651038
-0.678983
-0.65238
-0.666128
-0.64864
-0.648486
-0.640941
-0.6601
-0.643064
-0.683047
-0.657315
-0.657612
-0.544832
-0.481774
-0.574881
-0.473138
-0.555285
-0.471881
-0.558989
-0.559863
-0.559978
-0.450817
-0.442289
-0.561459
-0.550389
-0.460187
-0.564474
-0.473316
-0.559884
-0.453633
-0.559397
-0.571292
-0.46471
-0.542044
-0.46936
-0.444476
-0.537275
-0.534238
-0.467417
-0.54949
-0.775797
-0.574381
-0.614978
-0.570935
-0.78299
-0.615226
-0.566436
-0.874468
-1.01701
-0.657127
-0.687427
-0.864054
-1.0173
-0.654386
-0.79055
-0.702024
-0.803467
-0.694978
-0.772444
-0.575706
-0.620125
-0.564643
-0.768626
-0.617742
-0.565502
-0.883908
-0.650262
-1.01593
-0.683693
-1.01649
-0.894777
-0.651245
-0.774348
-0.678001
-0.758765
-0.685513
0.155371
0.322415
-0.182386
-0.277392
-0.104483
-0.26478
0.106587
-2.20667
-1.41328
-2.35116
-1.39746
-1.16166
-1.03197
0.29289
-0.128172
-0.0888982
-0.268569
0.077601
-0.23981
0.0851896
-2.09312
-2.6966
-2.48038
-1.52648
-1.5759
-1.32837
1.49679
1.38791
1.63959
1.48992
1.38632
1.30487
1.30712
1.38571
1.47056
1.63491
1.48524
1.38738
1.30516
1.30647
0.00526297
0.0190374
0.0071068
0.0124926
0.00807546
0.0214402
0.026744
0.00313014
0.0135096
0.00676141
0.0160197
0.0109269
0.0234638
0.0140928
-0.149262
-0.123896
-0.124956
-0.193969
-0.188854
-0.139309
-0.141468
-0.120189
-0.136212
-0.124538
-0.123985
-0.124143
-0.10919
-0.124424
-0.122253
-0.104416
-0.121792
-0.105849
-0.163163
-0.147376
-0.159698
-0.146516
-0.158694
-0.14279
-0.145211
-0.107518
-0.112599
-0.122159
-0.121333
-0.102248
-0.105639
-0.120908
-0.121317
-0.097661
-0.118878
-0.11703
-0.0992162
-0.118795
-0.0982084
-0.0679606
-0.0679323
-0.0726757
-0.0513836
-0.0439712
-0.044022
-0.0534106
-0.0835738
-0.0722921
-0.0783993
-0.0579112
-0.0739246
-0.0634269
-0.062353
-0.036433
-0.0406652
-0.0392427
-0.0139959
-0.0167995
-0.00565321
-0.00317758
-0.0468923
-0.0472107
-0.0429448
-0.0197849
-0.0095758
-0.0153539
-0.00619541
-0.0631833
-0.0754335
-0.0638393
-0.0320459
-0.0338389
-0.0360065
-0.0155721
-0.0815962
-0.0642277
-0.0666304
-0.0361828
-0.0117033
-0.0146437
-0.0347732
-0.0230422
-0.043347
0.0150692
0.0218455
0.0209116
0.0283047
-0.0713403
-0.0632299
0.00563632
0.0302483
0.00160941
0.0306851
-0.0167396
-0.0162672
-0.00208066
0.0261073
0.0193488
0.0206877
0.0225605
0.0751426
0.00717529
0.018293
0.0333534
0.0259944
0.0276013
0.035803
0.0561584
0.0708206
0.065726
0.0337479
0.0270731
0.0384601
0.0217055
-0.309022
-0.309415
-0.305435
-0.318409
-0.306358
-0.312625
-0.314261
-0.308831
-0.304243
-0.322697
-0.326185
-0.308026
-0.305595
-0.30806
-0.305501
-0.308186
-0.30856
-0.30582
-0.305908
-0.311559
-0.342024
-0.329016
-0.334314
-0.333073
-0.325681
-0.336782
-0.314958
-0.316882
-0.323993
-0.314095
-0.335379
-0.33668
-0.343924
-0.343991
-0.336283
-0.343595
-0.333187
-0.339499
-0.322438
-0.31292
-0.318335
-0.313341
-0.320176
-0.320555
-0.31266
-0.333425
-0.329971
-0.338931
-0.342726
-0.340157
-0.332252
-0.330838
-0.197619
-0.194596
-0.187389
-0.178513
-0.177825
-0.179647
-0.178987
-0.179835
-0.173852
-0.181425
-0.172103
-0.19826
-0.192107
-0.19173
-0.184914
-0.191381
-0.19672
-0.19055
-0.24709
-0.228391
-0.233244
-0.246492
-0.233797
-0.231755
-0.246538
-0.222557
-0.224088
-0.247393
-0.223577
-0.221665
-0.236722
-0.23946
-0.227405
-0.231303
-0.318565
-0.304827
-0.31466
-0.304683
-0.317073
-0.296994
-0.297393
-0.298073
-0.317323
-0.320766
-0.301205
-0.293294
-0.319413
-0.295797
-0.18415
-0.187838
-0.198827
-0.19253
-0.186407
-0.185138
-0.197086
-0.184584
-0.201648
-0.202672
-0.186521
-0.18714
-0.200775
-0.185041
-0.182289
-0.179869
-0.181167
-0.17768
-0.181686
-0.179883
-0.178086
-0.163536
-0.172666
-0.17222
-0.163833
-0.164307
-0.167878
-0.165364
-0.174011
-0.173501
-0.168898
-0.163597
-0.193179
-0.17999
-0.182363
-0.182789
-0.192393
-0.182424
-0.180208
-0.216595
-0.20367
-0.216962
-0.202501
-0.21621
-0.191182
-0.191752
-0.170867
-0.170683
-0.170852
-0.137576
-0.14343
-0.159889
-0.140887
-0.163997
-0.149362
-0.150145
-0.148746
-0.147947
-0.149862
-0.14656
-0.152609
-0.174203
-0.164371
-0.174757
-0.193296
-0.190874
-0.187712
-0.186062
-0.192496
-0.190373
-0.188268
-0.201937
-0.206928
-0.203792
-0.210891
-0.200892
-0.208457
-0.20461
-0.196015
-0.193291
-0.190473
-0.197817
-0.195029
-0.190954
-0.198662
-0.141136
-0.140211
-0.152119
-0.152281
-0.141294
-0.140497
-0.15296
-0.132312
-0.122472
-0.133261
-0.130893
-0.123696
-0.142446
-0.151435
-0.143595
-0.141007
-0.153345
-0.224964
-0.210975
-0.211389
-0.19673
-0.208799
-0.195017
-0.201741
-0.196946
-0.201275
-0.179408
-0.178626
-0.171409
-0.172871
-0.178495
-0.180397
-0.172123
-0.122491
-0.117429
-0.125303
-0.125847
-0.121252
-0.118751
-0.127505
-0.12352
-0.112652
-0.110878
-0.13445
-0.137127
-0.112339
-0.122745
-0.116479
-0.112501
-0.107859
-0.105357
-0.108571
-0.116186
-0.112297
-0.126629
-0.127528
-0.128061
-0.131036
-0.130368
-0.126084
-0.128488
-0.253831
-0.274428
-0.266014
-0.260162
-0.263858
-0.278916
-0.24904
-0.103315
-0.103456
-0.11257
-0.10863
-0.111993
-0.104703
-0.100331
-0.0940908
-0.0989507
-0.0926528
-0.0909817
-0.089053
-0.0975272
-0.0951318
-0.184517
-0.181955
-0.179829
-0.183041
-0.182744
-0.181869
-0.184943
-0.190924
-0.196339
-0.193319
-0.19432
-0.193383
-0.194026
-0.191228
-0.186707
-0.184231
-0.186607
-0.188872
-0.188569
-0.184125
-0.187262
-0.188377
-0.186568
-0.1901
-0.191515
-0.191493
-0.186446
-0.18862
-0.226166
-0.253142
-0.237803
-0.258112
-0.223345
-0.252539
-0.242005
-0.228934
-0.257635
-0.237168
-0.245594
-0.246644
-0.249
-0.233458
-0.22144
-0.209139
-0.192187
-0.227239
-0.192128
-0.229262
-0.220552
-0.238066
-0.239553
-0.237137
-0.236598
-0.236467
-0.240257
-0.239501
-0.222226
-0.211668
-0.195576
-0.229038
-0.221502
-0.193921
-0.230236
-0.23781
-0.238444
-0.236492
-0.239078
-0.239866
-0.239598
-0.237066
-0.216794
-0.201743
-0.203596
-0.21773
-0.216971
-0.200968
-0.217531
-0.220209
-0.210999
-0.214538
-0.205464
-0.219691
-0.211415
-0.21507
-0.216086
-0.202725
-0.215502
-0.199573
-0.215418
-0.216179
-0.20023
-0.220801
-0.216437
-0.205914
-0.212329
-0.211873
-0.215727
-0.221447
-0.178331
-0.179618
-0.184369
-0.168184
-0.185705
-0.169847
-0.177723
-0.222627
-0.245176
-0.21792
-0.250046
-0.179982
-0.182137
-0.191711
-0.178775
-0.183169
-0.18798
-0.172763
-0.223113
-0.252878
-0.251302
-0.223573
-0.198881
-0.155958
-0.148846
-0.154836
-0.197778
-0.227151
-0.244202
-0.226828
-0.244606
-0.198569
-0.147418
-0.152076
-0.197737
-0.153453
-0.226891
-0.244547
-0.244514
-0.225367
-0.203422
-0.182682
-0.178333
-0.20353
-0.215589
-0.201044
-0.217119
-0.198031
-0.205978
-0.174397
-0.158278
-0.173492
-0.162267
-0.178755
-0.200432
-0.20647
-0.176572
-0.207894
-0.172171
-0.200031
-0.170165
-0.178161
-0.193725
-0.168775
-0.172316
-0.172268
-0.170224
-0.160782
-0.146268
-0.160579
-0.149193
-0.169161
-0.147009
-0.129284
-0.176045
-0.149826
-0.168073
-0.174417
-0.162778
-0.157169
-0.154691
-0.149405
-0.154334
-0.147364
-0.165599
-0.169438
-0.17167
-0.130456
-0.155618
-0.15144
-0.172982
-0.170219
-0.167501
-0.171925
-0.169079
-0.170783
-0.161111
-0.149521
-0.148256
-0.163068
-0.0954083
-0.103732
-0.102346
-0.0972861
-0.10071
-0.101954
-0.120604
-0.0833696
-0.102702
-0.102075
-0.11737
-0.135041
-0.150304
-0.129518
-0.153575
-0.128465
-0.154658
-0.134206
-0.0964023
-0.106365
-0.0976219
-0.104531
-0.0982534
-0.106511
-0.0954198
-0.106694
-0.104715
-0.107181
-0.0990381
-0.10236
-0.105258
-0.129271
-0.123807
-0.101644
-0.121801
-0.122782
-0.136427
-0.0972958
-0.151021
-0.157156
-0.142745
-0.162089
-0.14225
-0.162292
-0.151478
-0.134002
-0.100894
-0.101737
-0.122805
-0.12303
-0.102013
-0.134415
-0.102479
0.185928
0.130868
0.206839
0.115104
0.151052
0.0934331
0.155333
0.171057
0.29412
0.288117
0.16513
0.168131
0.157879
0.16888
0.278776
0.164643
0.290661
0.157289
0.140874
0.142592
0.15088
0.00274528
-0.109993
-0.092344
-0.0774096
-0.0726826
-0.10565
-0.0945591
-0.0809235
-0.135254
-0.110979
-0.112053
-0.117
-0.109283
-0.117515
-0.135022
-0.114985
-0.0921173
-0.0762976
-0.101311
-0.097142
-0.0862372
-0.12041
0.0200989
-0.00272188
-0.00569945
-0.033379
-0.0553441
-0.0306577
-0.133691
-0.108167
-0.161088
-0.115469
-0.112861
-0.128419
-0.167391
-0.119836
-0.10065
-0.11498
-0.100153
-0.112369
-0.0977433
-0.123066
0.0217334
-0.00627759
-0.00498391
-0.139707
-0.168727
-0.118219
-0.119283
-0.11643
-0.170261
-0.145455
-0.0265964
-0.0557107
-0.0303954
0.0589969
0.07834
0.146909
0.0823911
0.0616412
0.0826194
0.0790482
0.182488
0.0606656
0.0623001
0.0804258
0.0705024
0.0717545
0.0788858
0.132572
0.0399462
0.0425615
0.0631383
0.0796425
0.0835713
0.0604018
0.0548286
0.155828
0.0482684
0.0680975
0.077388
0.0737507
0.0787707
-0.0829217
-0.0443794
-0.06897
-0.0639497
-0.0802912
-0.0709587
-0.0394361
-0.0615222
-0.080228
-0.083747
-0.0788617
-0.0571007
-0.0646383
-0.0746499
-0.0597563
-0.0798926
-0.0574062
-0.0302166
-0.0669625
-0.0350377
-0.0550871
-0.0655689
-0.084514
-0.0850527
-0.0741353
-0.0622266
-0.0657135
-0.073252
-0.0581477
-0.069321
-0.0761304
-0.0407248
-0.0670442
-0.0583466
-0.0404152
-0.0572465
-0.0614926
-0.037549
-0.0729469
-0.0658065
-0.0560332
-0.0391217
0.217412
0.0604323
0.0570971
0.086525
0.0116855
0.0843862
0.0239531
0.0402419
0.22396
0.0555244
0.0909854
0.0182232
0.0848616
0.0204309
-0.171243
-0.225566
-0.223935
-0.170777
-0.282687
-0.227665
-0.203608
-0.281159
-0.248467
-0.246811
-0.201256
-0.299796
-0.303937
-0.243012
-0.238964
-0.222961
-0.165534
-0.169849
-0.219523
-0.252425
-0.242823
-0.14104
-0.163466
-0.107559
-0.0418567
-0.10561
-0.0581041
-0.112402
-0.0667511
-0.128115
-0.0617673
0.0384419
0.137303
0.0399668
0.0557232
0.0802472
0.0789335
0.0555237
-0.0618827
-0.077193
-0.0812658
-0.0687907
-0.0528301
-0.061661
-0.0642958
-0.0543484
-0.0688904
-0.0394867
-0.0794478
-0.0571025
-0.0650486
-0.0364242
-0.0507673
-0.0527592
-0.0263484
-0.0755868
-0.0624926
-0.0457352
-0.0322254
0.0305456
-0.0158241
-0.00921447
0.0121423
0.0353683
0.0454813
0.00523051
0.0401246
0.0752716
0.0810633
0.069632
0.057571
0.0482311
0.0611505
0.0329766
0.0409019
0.0455774
0.0755981
0.0527969
0.0254901
0.053633
-0.190967
-0.199109
-0.134928
-0.136589
-0.115444
-0.0363968
-0.110309
-0.0221099
-0.114887
-0.00613593
-0.107616
-0.0166464
-0.200683
-0.194696
-0.079717
-0.0734821
-0.0637749
-0.0243157
-0.0637878
-0.0235981
-0.0640062
-0.0239804
-0.0649762
-0.0247768
0.0626791
0.0282048
0.0238622
0.0501182
0.112504
0.102634
0.0545181
0.0686205
0.0836527
0.0798976
0.197421
0.0576139
0.113725
0.0928438
0.0773044
0.133176
0.108672
0.223236
0.122822
0.0824391
0.103214
0.0575013
0.0319726
0.0257407
0.0424019
0.0950979
0.0889906
0.0495477
0.0591438
0.0747547
0.0789343
0.146922
0.100922
0.0494099
0.0911788
0.065206
0.110889
0.101442
0.159001
0.105959
0.0697473
0.0970673
-0.162459
-0.164991
-0.117023
-0.121306
-0.0648004
-0.0245797
-0.062795
-0.0282456
-0.0692703
-0.0396705
-0.0739112
-0.0327539
-0.141556
-0.136654
-0.0919863
-0.0959359
-0.0601401
-0.267837
-0.0447963
-0.363905
-0.207157
-0.0693661
-0.0309329
-0.0517214
-0.00519395
-0.184655
-0.2
-0.0460901
-0.0163778
-0.23809
-0.20842
-0.216703
-0.227571
-0.275665
-0.274076
-0.28377
-0.285372
-0.284318
-0.238355
-0.217521
-0.248591
-0.214108
-0.275702
-0.247267
-0.284316
-0.292445
-0.254275
-0.229492
-0.216844
-0.222468
-0.290219
-0.303358
-0.217835
-0.244227
-0.232359
-0.21701
-0.214233
-0.217883
-0.275982
-0.208857
-0.216181
-0.231502
-0.212211
-0.224267
-0.244959
-0.247338
-0.21863
-0.204313
-0.244483
-0.191636
-0.188101
-0.199108
-0.212618
-0.19107
-0.201692
-0.194053
-0.276516
-0.225822
-0.207992
-0.221303
-0.206651
-0.271641
-0.355226
-0.310374
-0.242671
-0.292058
-0.272666
-0.250755
-0.314045
-0.255794
-0.239624
-0.217663
-0.245822
-0.202441
-0.222268
-0.230668
-0.236184
-0.20383
-0.247075
-0.292116
-0.322578
-0.245248
-0.216022
-0.206916
-0.235068
-0.199448
-0.222719
-0.205307
-0.212796
-0.202742
-0.213916
-0.222575
-0.208603
-0.243297
-0.278082
-0.301585
-0.234038
-0.284704
-0.242322
-0.236407
-0.246339
-0.263414
-0.361726
-0.328861
-0.320359
-0.28539
-0.232578
-0.224363
-0.202797
-0.221552
-0.21592
-0.22822
-0.216104
-0.213323
-0.222729
-0.248521
-0.229531
-0.218683
-0.225251
-0.243344
-0.209996
-0.224297
-0.21437
-0.214952
-0.212238
-0.223395
-0.218054
-0.224288
-0.231552
-0.289826
-0.248543
-0.259976
-0.245904
-0.255867
-0.229889
-0.172552
-0.22959
-0.180393
-0.23649
-0.174198
-0.179606
-0.190545
-0.245295
-0.185161
-0.233324
-0.196256
-0.187784
-0.497648
-0.565368
-0.56459
-0.675676
-0.775713
-0.675944
-0.496534
-0.562924
-0.564168
-0.674907
-0.773619
-0.674987
-0.50687
-0.56793
-0.568541
-0.671537
-0.763605
-0.671249
-0.507861
-0.569862
-0.569009
-0.671562
-0.764253
-0.671434
-0.321224
-0.308846
-0.288932
-0.303739
-0.309425
-0.318394
-0.316265
-0.325568
-0.337664
-0.309181
-0.318446
-0.32998
-0.331354
-0.317191
-0.318071
-0.308858
-0.312185
-0.305852
-0.320804
-0.311589
-0.313948
-0.329638
-0.328115
-0.32796
-0.34021
-0.332036
-0.326927
-0.338386
-0.521533
-0.578621
-0.579841
-0.668435
-0.728863
-0.665604
-0.521989
-0.582105
-0.580986
-0.660605
-0.724926
-0.66303
-0.520941
-0.566844
-0.565784
-0.631693
-0.699468
-0.632039
-0.523222
-0.56795
-0.567477
-0.63261
-0.697684
-0.630601
-0.349846
-0.334081
-0.367763
-0.346204
-0.352337
-0.331856
-0.364899
-0.336329
-0.329973
-0.29979
-0.311349
-0.334202
-0.331428
-0.313705
-0.338769
-0.318484
-0.334583
-0.302382
-0.333208
-0.340876
-0.31623
-0.347077
-0.343776
-0.327073
-0.359003
-0.3446
-0.329375
-0.361822
-0.565519
-0.48846
-0.530556
-0.507909
-0.529365
-0.507391
-0.566449
-0.620382
-0.687663
-0.533183
-0.559311
-0.619293
-0.68858
-0.533158
-0.564151
-0.487563
-0.526294
-0.506376
-0.562799
-0.527757
-0.506685
-0.621408
-0.533817
-0.559533
-0.689926
-0.68953
-0.53358
-0.621942
-0.574628
-0.541623
-0.497751
-0.514048
-0.514644
-0.54295
-0.573839
-0.625526
-0.690991
-0.539364
-0.563106
-0.625874
-0.690888
-0.538849
-0.575533
-0.498355
-0.515794
-0.546001
-0.576482
-0.515118
-0.544423
-0.625167
-0.538136
-0.562897
-0.690701
-0.69075
-0.53854
-0.624909
-0.346325
-0.271323
-0.363325
-0.295772
-0.3517
-0.2706
-0.366028
-0.446744
-0.294875
-0.260289
-0.310939
-0.236073
-0.224014
-0.248237
-0.306213
-0.235484
-0.247742
-0.315692
-0.24791
-0.244445
-0.220364
-0.235909
-0.349239
-0.247726
-0.353732
-0.295662
-0.272114
-0.373191
-0.358147
-0.270652
-0.370908
-0.607631
-0.485297
-0.543483
-0.509236
-0.550591
-0.511722
-0.599646
-0.658269
-0.695889
-0.542219
-0.56517
-0.651084
-0.698037
-0.541643
-0.615047
-0.488112
-0.566469
-0.51643
-0.620942
-0.558532
-0.514166
-0.664089
-0.539479
-0.564526
-0.702847
-0.699831
-0.540785
-0.664903
-0.552655
-0.515512
-0.471589
-0.494355
-0.49422
-0.514946
-0.553903
-0.603395
-0.68182
-0.522007
-0.553265
-0.601924
-0.683051
-0.522193
-0.551539
-0.471458
-0.49391
-0.514335
-0.550842
-0.493902
-0.514451
-0.605427
-0.522977
-0.553651
-0.686846
-0.684946
-0.522674
-0.607591
-0.270119
-0.251394
-0.301199
-0.278659
-0.272084
-0.245423
-0.298429
-0.271132
-0.245544
-0.243558
-0.273825
-0.301072
-0.335432
-0.297211
-0.341533
-0.240699
-0.21636
-0.226392
-0.175747
-0.221641
-0.245378
-0.214993
-0.30453
-0.353641
-0.308167
-0.347779
-0.275471
-0.270545
-0.220983
-0.293117
-0.273275
-0.228216
-0.296576
-0.535844
-0.461934
-0.508093
-0.482852
-0.507639
-0.48385
-0.538035
-0.601516
-0.694466
-0.514327
-0.546752
-0.600138
-0.694408
-0.514227
-0.534728
-0.463969
-0.507342
-0.485711
-0.53375
-0.508024
-0.485464
-0.601449
-0.51151
-0.544878
-0.692286
-0.692949
-0.512573
-0.601958
-0.534905
-0.491722
-0.426007
-0.453143
-0.448134
-0.487132
-0.539768
-0.588718
-0.666964
-0.469882
-0.510387
-0.587357
-0.670387
-0.474197
-0.496747
-0.50626
-0.524297
-0.42117
-0.439077
-0.444316
-0.527159
-0.442784
-0.446082
-0.593529
-0.48495
-0.515693
-0.677085
-0.674884
-0.479966
-0.596051
0.052344
-0.0439172
-0.0115794
-0.0289804
-0.0555902
-0.200197
-0.199119
-0.15422
-0.174647
-0.432833
-0.466971
-0.34538
-0.336007
-0.0123801
0.0119566
-0.000428282
0.00521243
0.0185955
-0.0213258
-0.0100192
-0.0153884
-0.0194845
-0.00455861
-0.00341805
-0.0229547
-0.0337676
-0.0316585
-0.0747907
-0.0293074
-0.00267949
-0.0120723
-0.106944
0.380323
0.380381
0.294545
0.392468
0.298543
0.311056
0.398137
0.388575
0.396886
0.308578
-0.0183124
0.0146806
-0.0367923
0.0217818
0.0215695
-0.0147699
-0.0366048
0.0138456
-0.0149202
-0.0369074
0.0561339
-0.0501412
0.030903
0.040034
-0.0283168
-0.0331308
-0.0253701
-0.0251103
-0.0343796
-0.0298972
0.29819
0.296438
0.42787
0.374111
0.402723
0.418855
0.388022
0.295574
0.296255
0.385537
0.400396
0.416454
0.417085
0.386817
-1.24914
-1.31416
-1.30816
-1.22585
-1.24507
-1.30435
-1.22069
-1.31171
-1.2426
-1.30521
-1.24903
-1.30392
-1.22258
-1.22342
-1.58515
-1.63917
-1.63332
-1.656
-1.59986
-1.65278
-1.60574
-1.59132
-1.61707
-1.68204
-1.648
-1.67088
-1.61622
-1.58912
-1.1463
-1.1706
-1.16096
-1.10727
-1.12443
-1.10254
-1.11413
-1.12056
-1.11352
-1.10778
-1.1058
-1.12732
-1.08033
-1.09758
-1.09723
-1.11184
-1.16304
-1.15123
-1.15059
0.178647
0.171542
0.222651
0.172598
0.222645
0.226953
0.227049
0.169421
0.171153
0.225945
0.171621
0.225579
0.227106
0.226942
0.310222
0.30914
0.366361
0.380339
0.348913
0.383417
0.369115
0.377745
0.347169
0.37827
0.378502
0.308258
0.308303
0.364806
0.34461
0.38207
0.376364
0.376817
0.346034
0.362374
0.182501
0.178892
0.220972
0.181691
0.228026
0.232104
0.227196
0.173371
0.181855
0.220303
0.179121
0.226567
0.228489
0.232573
0.228196
0.353667
0.347719
0.345327
0.361389
0.328835
0.370487
0.342734
0.363675
0.331657
0.366306
0.365477
0.227419
0.341642
0.345803
0.346267
0.336134
0.370949
0.365676
0.364398
0.332695
0.349035
-1.40606
-1.41468
-1.51287
-1.40755
-1.50288
-1.5451
-1.62951
-1.54143
-1.45007
-1.42913
-1.43222
-1.4585
-1.45143
-1.42696
-1.45625
-1.57757
-1.60194
-1.56424
-1.13679
-1.0997
-1.08881
-1.14281
-1.08919
-1.13794
-1.1412
-1.15232
-1.15022
-1.21213
-1.15266
-1.14501
-1.22891
-1.15624
-1.24288
-1.15721
-1.1467
-1.16454
-1.2407
-1.57021
-1.51922
-1.59783
-1.50381
-1.46468
-1.55542
-1.45291
-1.15672
-1.18542
-1.18085
-1.18751
-1.19264
-1.15503
-1.18434
-1.16462
-1.20083
-1.1909
-1.19669
-1.20261
-1.19467
-1.16255
0.277985
0.207329
0.259094
0.262267
0.272735
0.370588
0.347079
0.353027
0.349405
0.374625
0.344147
0.349151
0.337845
0.340343
0.282176
0.207023
0.268845
0.288436
0.264469
0.368526
0.344158
0.348195
0.340815
0.342963
0.34729
0.365282
0.227002
0.219662
0.237386
0.236192
0.230036
0.335341
0.313845
0.317616
0.32863
0.329113
0.318094
0.320972
0.314719
0.312921
0.226682
0.219282
0.234694
0.225958
0.235402
0.33893
0.324875
0.331121
0.324363
0.321978
0.322712
0.342135
-1.50472
-1.5595
-1.55502
-1.57283
-1.56649
-1.56363
-1.50707
-1.46928
-1.49092
-1.50138
-1.45834
-1.55434
-1.48983
-1.44706
-1.41672
-1.43539
-1.44373
-1.42714
-1.45016
-1.44436
-1.4663
-1.4427
-1.48053
-1.44316
-1.46105
-1.48074
-1.44463
0.274004
0.184327
0.206579
0.262502
0.207456
0.263671
0.273197
0.246252
0.344034
0.268347
0.329023
0.245791
0.338668
0.26719
0.214481
0.278081
0.290283
0.22219
0.272211
0.183847
0.207628
0.264023
0.272518
0.206581
0.26287
0.248646
0.26583
0.327068
0.320719
0.333188
0.267982
0.245562
0.267701
0.199045
0.17728
0.258013
0.257872
0.198282
0.268147
0.250843
0.315201
0.265207
0.316798
0.249907
0.316526
0.266118
0.24127
0.284713
0.286445
0.239535
0.267756
0.176901
0.25702
0.19708
0.266666
0.257915
0.197952
0.250007
0.265343
0.316884
0.315257
0.315842
0.265742
0.249677
0.203487
0.216481
0.228518
0.21858
0.234692
0.224582
0.200315
0.295754
0.300582
0.316563
0.29094
0.258037
0.220264
0.255245
0.250304
0.280377
0.245164
0.236913
0.211117
0.209047
0.196203
0.226276
0.203114
0.21638
0.216157
0.224172
0.197407
0.201948
0.200661
0.28149
0.292728
0.292087
0.282491
0.204113
0.205361
0.19495
0.202154
0.213819
0.221244
0.193334
0.215388
0.222647
0.172448
0.177711
0.193498
0.193577
0.195731
0.194045
0.172141
0.182096
0.182728
0.259076
0.270263
0.271257
0.258468
0.173488
0.17895
0.199932
0.197281
0.17547
0.197376
0.195025
0.180011
0.180022
0.214434
0.12248
0.143323
0.199887
0.197676
0.121525
0.216469
0.224603
0.141172
0.223881
0.142161
0.240555
0.178227
0.229122
0.232773
0.242617
0.225101
0.144095
0.142599
0.226944
0.213758
0.142493
0.194968
0.119615
0.212287
0.196611
0.121225
-0.278529
-0.196356
-0.280833
-0.20156
-0.288048
-0.287095
0.178234
0.108597
0.0776737
0.162049
0.0804974
0.163769
0.176011
0.195455
0.113115
0.197979
0.110427
0.212961
0.149871
0.208778
0.209681
0.211601
0.180179
0.110399
0.0874002
0.169951
0.18468
0.0831323
0.165765
0.19309
0.1057
0.107687
0.191435
0.156529
0.120941
0.111027
0.152091
0.151225
0.120054
0.158808
0.16821
0.110784
0.165281
0.115522
0.194077
0.128387
0.198147
0.1966
0.196654
0.171406
0.12588
0.120554
0.174994
0.154821
0.110763
0.14873
0.117241
0.152293
0.150375
0.119125
-0.292689
-0.31627
-0.293195
-0.293793
-0.282589
-0.281225
-0.278546
-0.292251
-0.280006
-0.315992
-0.291482
-0.293355
0.149091
0.113058
0.14907
0.113737
0.163616
0.00633945
0.178079
0.173313
0.155275
0.148087
0.118693
0.113447
0.145221
0.140701
0.120576
0.139866
0.121512
0.145905
0.0914719
0.0443248
0.229738
0.0446598
0.229252
0.146543
0.141392
0.123125
0.122466
0.142077
-0.27498
-0.500552
-0.327886
-0.274154
-0.514435
-0.30554
-0.303301
-0.283109
-0.276361
-0.304691
-0.276919
-0.330131
-0.32978
-0.444158
-0.390023
-0.286088
-0.533025
0.128938
0.104698
0.130531
0.102052
0.137365
-0.0596446
0.0392567
0.153077
0.0410003
0.157041
0.139668
0.126982
0.0961561
0.0987804
0.126283
0.110561
-0.0206221
0.120226
-0.0066595
0.109855
0.11312
0.150887
-0.196482
-0.0902213
0.138758
-0.103438
0.133931
0.155356
0.110943
0.100111
0.0208863
0.0071756
0.106374
0.110805
-0.605849
-0.382034
-0.749894
-0.43915
-0.596451
-0.387836
-0.757114
-0.476847
-0.435243
-0.376525
-0.364167
-0.416427
-0.496148
-0.352016
-0.494024
-0.345957
-0.474463
-0.396452
-0.487648
-0.486632
-0.351138
-0.607435
-0.443077
-0.40032
-0.76926
-0.619299
-0.391567
-0.761015
0.000518458
-0.301364
0.0636981
0.00931265
-0.316318
0.05411
0.0124293
0.072793
0.084452
-0.311772
-0.305851
0.0854255
0.00546547
-0.00757782
0.0355261
-0.340893
-0.328262
0.0456339
-0.0166538
-0.125
-0.491569
-0.0969172
-0.479883
-0.134503
-0.0862033
-0.0289342
0.182026
0.0779697
-0.16935
-0.147468
0.078136
-0.0259401
-0.115347
-0.0640466
-0.460772
-0.46857
-0.0759879
-0.103993
-0.835789
-0.539031
-0.808429
-0.546547
-0.830624
-0.544671
-0.799558
-0.709432
-0.61549
-0.481103
-0.515086
-0.609574
-0.717203
-0.509511
-0.701675
-0.497961
-0.596983
-0.476307
-0.603461
-0.693971
-0.504332
-0.841117
-0.548925
-0.554492
-0.782533
-0.846574
-0.54938
-0.791132
-0.235999
-0.300645
-0.327168
-0.231492
-0.273849
-0.342563
-0.0306435
0.245664
0.0949303
0.152621
0.145943
0.0952888
-0.030411
-0.238519
-0.373955
-0.230338
-0.252349
-0.357115
-0.242237
-0.274749
0.0302213
-0.522664
0.00937057
-0.266178
-0.532567
-0.0402001
0.208403
0.0811047
0.151249
0.149481
0.0836093
-0.0430484
-0.27854
-0.520393
-0.036536
-0.0142971
-0.52952
-0.280282
-0.82888
-0.604473
-0.641778
-0.568999
-0.827053
-0.606206
-0.643978
-0.825541
-0.737632
-0.58143
-0.603256
-0.735119
-0.828175
-0.601499
-0.82333
-0.597986
-0.730882
-0.579419
-0.732618
-0.821828
-0.599648
-0.831299
-0.571006
-0.609687
-0.64982
-0.833404
-0.608011
-0.647412
-0.0898559
-0.0677234
-0.353981
-0.262704
-0.0899689
-0.0675868
-0.357074
0.0421066
0.0743538
0.155118
0.00670084
0.0101478
0.152754
0.0435411
-0.0901048
-0.363223
-0.256758
-0.0680837
-0.0672691
-0.360247
-0.0896968
-0.115648
-0.102014
-0.233409
-0.372818
-0.102477
-0.122457
-0.373257
0.0505167
-0.0086388
0.183883
-0.0538948
-0.0675499
0.167859
0.0646099
-0.0817724
-0.353535
-0.276718
-0.105479
-0.115575
-0.354949
-0.0733789
-0.795478
-0.617481
-0.714755
-0.569307
-0.79845
-0.618121
-0.712008
-0.97313
-0.99469
-0.666012
-0.660722
-0.988267
-0.967779
-0.65786
-0.69264
-0.699646
-0.979946
-0.655417
-0.977237
-0.663236
-0.983145
-0.985828
-0.656775
-0.717535
-0.709081
-0.791969
-0.569429
-0.621812
-0.706457
-0.788928
-0.618681
-0.710174
0.00973363
-0.152882
-0.142796
-0.177426
0.0104227
-0.161106
-0.141621
0.143266
0.297419
0.259685
0.0308928
0.00891901
0.254215
0.148322
0.0101345
-0.137911
-0.182808
-0.1709
-0.166377
-0.139905
0.0114434
0.0338873
-0.121401
-0.315442
-0.0956462
-0.174905
0.0551143
-0.110969
0.197534
0.523942
0.334557
0.20497
0.216375
0.339652
0.190572
0.0289884
-0.113628
-0.307386
-0.223062
-0.200875
-0.109673
0.0223388
-0.405945
-0.237947
-0.249604
-0.405365
-0.41162
-0.411997
-0.231652
-0.387824
-0.400848
-0.38093
-0.367424
-0.454175
-0.413917
-0.383841
-0.384069
-0.226027
-0.399882
-0.398066
-0.403603
-0.210479
-0.219242
-0.405435
-0.242343
-0.383133
-0.410743
-0.410574
-0.200314
-0.222055
-0.377898
-0.399588
-0.200939
-0.188166
-0.358654
-0.209057
-0.399803
-0.362299
-0.376189
-0.358835
-0.363567
-0.374954
-0.332193
-0.324984
-0.296974
-0.30847
-0.331875
-0.143681
-0.341299
-0.336279
-0.130985
-0.325154
-0.132427
-0.352693
-0.148023
-0.346203
-0.342689
-0.140669
-0.350658
-0.136716
-0.315904
-0.123092
-0.260605
-0.0879392
-0.326631
-0.118918
-0.245148
-0.288234
-0.181237
-0.278453
-0.198251
-0.292804
-0.218636
-0.303901
-0.203765
-0.306875
-0.114628
-0.0824175
-0.210647
-0.292845
-0.114457
-0.2315
0.176187
0.604154
1.35525
0.221429
0.187234
0.224921
0.583129
1.32987
0.213763
0.205243
0.22818
0.530021
0.229779
0.558989
0.220163
1.06906
0.222015
0.229546
0.512837
0.230151
0.494588
-0.707824
-0.705606
-0.60166
-0.599325
-0.564804
-0.364715
-0.540208
-0.374878
-0.565215
-0.389357
-0.564051
-0.381852
0.0910536
0.328109
0.312406
0.0849738
0.12354
0.116524
0.314387
0.313408
0.0728661
0.0797102
0.110377
0.29422
0.305521
0.103767
-0.287796
-0.29762
-0.263224
-0.247301
-0.265185
-0.196487
-0.285033
-0.169318
-0.261637
-0.121605
-0.2433
-0.16217
-0.216273
-0.199342
-0.176748
-0.194683
-0.163976
-0.0129894
-0.145639
-0.0246168
-0.178686
-0.0651239
-0.200311
-0.0411588
-0.619403
-0.585749
-0.475758
-0.502076
-0.27706
-0.140927
-0.254528
-0.156783
-0.301475
-0.195727
-0.321547
-0.177104
1.53204
1.37293
1.30237
1.5301
1.06266
1.26843
0.893317
0.529411
1.11328
1.26284
0.634458
1.16153
-2.73387
-2.55102
-1.85393
-2.33292
-0.730749
0.178476
-0.81747
-0.707734
-0.0320423
-0.705607
0.0224024
-2.68601
-2.20799
-2.55692
-1.89319
-1.67262
-2.02541
-1.55702
-2.61868
0.277164
-2.2306
-0.732631
0.139518
-0.8699
0.0622426
1.44833
1.33955
1.37091
1.45322
1.36306
1.45074
1.44646
1.44566
1.45213
1.36835
1.35276
1.35355
1.45025
1.44562
1.45622
1.37096
1.36163
1.44812
1.37483
1.45496
1.44708
1.48594
1.52675
1.49301
1.52417
1.47942
1.53104
1.46828
1.53794
1.57912
1.66362
1.63689
1.59546
1.57975
1.62201
1.58745
-2.61053
-1.68128
-2.09206
-1.83159
-2.20578
-1.48162
-1.37485
-0.612372
0.0575675
-0.582699
-0.550611
-0.034899
-0.625191
-0.0588692
1.78595
1.88605
1.82651
1.79103
1.82167
1.65549
1.6462
1.72689
1.67496
1.76351
1.71987
1.71832
1.68486
1.77283
1.77921
1.87887
1.8053
1.77178
1.8147
1.73463
1.78317
1.70005
1.72528
1.6929
1.74082
1.77866
-2.26096
-1.64527
-2.60537
-2.15506
-2.42518
-2.53309
-1.59353
-2.68121
-2.6207
-2.91809
-3.2353
-2.64292
-2.62405
-3.31004
-2.81705
-3.69147
-2.75177
-3.14075
-2.79818
-3.03625
-3.3796
1.94842
2.00853
1.95901
1.8509
1.8568
1.9544
1.8328
1.93603
1.87139
1.89269
1.84581
1.79477
1.80237
1.91024
1.85932
2.01785
2.00232
1.97923
1.5145
1.67331
1.3899
1.52155
1.30783
1.31116
1.38148
1.66916
1.52048
1.52453
1.30288
1.35852
1.37187
1.29514
1.40724
1.46001
1.41939
1.17203
1.14488
1.16
1.16565
1.44201
1.48312
1.42942
1.18277
1.20582
1.19622
1.1841
1.39969
1.39283
1.38414
1.13528
1.13237
1.15142
1.10804
1.36718
1.34833
1.36951
1.12096
1.06627
1.08759
1.10554
-0.185366
-0.160111
-0.184509
-0.162874
-0.157242
-0.18728
-0.160379
-0.163574
-0.182835
-0.183508
-0.163817
-0.185614
-0.161905
-0.162822
-0.0262949
-0.0479491
-0.0480189
-0.0266928
-0.0246128
-0.044423
-0.0289498
-0.065675
-0.0887396
-0.0840764
-0.0858709
-0.05926
-0.0611886
-0.0656631
-0.0859959
-0.0513613
-0.0852653
-0.0868139
-0.0543817
-0.0575483
-0.0578516
-0.154648
-0.158419
-0.158525
-0.160572
-0.160219
-0.16031
-0.152584
-0.0907292
-0.0688546
-0.0906446
-0.0694304
-0.0924199
-0.0656882
-0.0637761
-0.0874368
-0.071499
-0.0885655
-0.07045
-0.0897124
-0.0669905
-0.0685475
-0.090657
-0.0606415
-0.0779831
-0.0869878
-0.0474737
-0.0569491
-0.0844644
-0.0593579
-0.0786448
-0.072507
-0.0819767
-0.0550504
-0.0529376
-0.0326407
-0.00816384
-0.0330683
-0.0196739
-0.00464103
-0.025309
-0.00482789
-0.0481252
-0.0886288
-0.0870415
-0.0467046
-0.0544182
-0.0387744
-0.139418
-0.132417
-0.139213
-0.137091
-0.136145
-0.138825
-0.136629
-0.158197
-0.149633
-0.157861
-0.143414
-0.146094
-0.136602
-0.140978
-0.141714
-0.139442
-0.141795
-0.155742
-0.153643
-0.156373
-0.153829
-0.142793
-0.162797
-0.149167
-0.162009
-0.148093
-0.161037
-0.143957
-0.0737909
-0.0584962
-0.0755638
-0.0705655
-0.0485623
-0.0301394
-0.0407118
-0.074637
-0.0630155
-0.0389019
-0.0683426
-0.0413284
-0.0284808
-0.0238056
-0.139597
-0.119223
-0.117047
-0.140972
-0.117006
-0.145455
-0.146761
-0.128217
-0.11945
-0.131348
-0.141079
-0.115515
-0.130283
-0.0748506
-0.038672
-0.0836517
-0.0417338
-0.0755393
-0.047124
-0.0463789
-0.082742
-0.0525818
-0.0773204
-0.0387212
-0.0764056
-0.0454643
-0.0464257
-0.131765
-0.126265
-0.13416
-0.125731
-0.133437
-0.152323
-0.15046
-0.161894
-0.158274
-0.153563
-0.156604
-0.152955
-0.155973
-0.162528
-0.143646
-0.127685
-0.130478
-0.146774
-0.128433
-0.145419
-0.145325
-0.149007
-0.143765
-0.149371
-0.146274
-0.143726
-0.129145
-0.118379
-0.130411
-0.127513
-0.128438
-0.119252
-0.127969
-0.128958
-0.110672
-0.111645
-0.127811
-0.111962
-0.131262
-0.13646
-0.13766
-0.130889
-0.141849
-0.142197
-0.127192
-0.14347
-0.130233
-0.127501
-0.133992
-0.129313
-0.13641
-0.143991
-0.146548
-0.137325
-0.128564
-0.12961
-0.118977
-0.112291
-0.119528
-0.113532
-0.12139
-0.0167603
-0.0773376
-0.0570761
-0.0289663
-0.0794178
-0.0291662
-0.0124616
-0.0652138
-0.0642582
-0.0941208
-0.0258934
-0.0300977
-0.0353442
-0.0215208
-0.0403967
-0.0644583
-0.0230764
-0.022807
-0.0384464
-0.0547974
-0.0482741
-0.0811892
-0.0314377
-0.00776334
-0.0147482
-0.0235339
-0.0579437
-0.0609347
-0.0387502
-0.0570332
-0.0338208
-0.0235683
-0.0264382
-0.137039
-0.116181
-0.125116
-0.126582
-0.131355
-0.128278
-0.128627
-0.1265
-0.121989
-0.125894
-0.130644
-0.138566
-0.131784
-0.124241
-0.126748
-0.126646
-0.128087
-0.136718
-0.130383
-0.0595588
-0.0603009
-0.0626245
-0.0346792
-0.0395988
-0.0352073
-0.037822
-0.0555979
-0.0588918
-0.0601662
-0.0317987
-0.0313357
-0.0291138
-0.0341762
-0.100866
-0.107035
-0.109661
-0.107472
-0.102274
-0.106282
-0.10516
-0.11638
-0.120411
-0.116969
-0.0988356
-0.105909
-0.100903
-0.106886
-0.10071
-0.0998719
-0.103466
-0.125837
-0.134503
-0.122411
-0.0479626
-0.0455173
-0.0525884
-0.0236951
-0.023133
-0.0248249
-0.0212488
-0.0523121
-0.0489981
-0.0531031
-0.0256501
-0.0288824
-0.0265544
-0.0260824
-0.1278
-0.111936
-0.125774
-0.119037
-0.135461
-0.14156
-0.127368
-0.14033
-0.130173
-0.141017
-0.130616
-0.117755
-0.117081
-0.116375
-0.115953
-0.146046
-0.132644
-0.138448
-0.131492
-0.142469
-0.134461
-0.142568
-0.0670531
-0.0757893
-0.053981
-0.0251989
-0.0286362
-0.026283
-0.0281022
-0.0527423
-0.074763
-0.0538547
-0.0219529
-0.0206904
-0.0241218
-0.015096
-0.120086
-0.1201
-0.111264
-0.112031
-0.120733
-0.119564
-0.111376
-0.130344
-0.141047
-0.140149
-0.131351
-0.120701
-0.111702
-0.111303
-0.121455
-0.031498
-0.0672908
-0.0313594
-0.00560937
-0.0223475
-0.021146
-0.00239856
-0.0372936
-0.0710302
-0.0289926
-0.00356942
-0.0193087
-0.0176397
-0.0102107
-0.128986
-0.11996
-0.119323
-0.127229
-0.120394
-0.127432
-0.129132
-0.129966
-0.129169
-0.137325
-0.1379
-0.129222
-0.127833
-0.119898
-0.126543
-0.120961
-0.125974
-0.132364
-0.133158
-0.139161
-0.138757
-0.138677
-0.132378
-0.133998
-0.51282
-0.530418
-0.513745
-0.540266
-0.513026
-0.538755
-0.513076
-0.511976
-0.526674
-0.512434
-0.534407
-0.513058
-0.535162
-0.511288
-0.315091
-0.313388
-0.303764
-0.299957
-0.315101
-0.306336
-0.320895
-0.307545
-0.31972
-0.318191
-0.307996
-0.309903
-0.307117
-0.306192
-0.30262
-0.318149
-0.309461
-0.327444
-0.322881
-0.318202
-0.302965
-0.319725
-0.300957
-0.322339
-0.298841
-0.296881
-0.23054
-0.245229
-0.242797
-0.246047
-0.229835
-0.225969
-0.227932
-0.248356
-0.247904
-0.224247
-0.250679
-0.220363
-0.226147
-0.223955
-0.289793
-0.29554
-0.174136
-0.171586
-0.201583
-0.174638
-0.174262
-0.177601
-0.173043
-0.16844
-0.169033
-0.166361
-0.164917
-0.169002
-0.17638
-0.174625
-0.169625
-0.16827
-0.167637
-0.164373
-0.177845
-0.170741
-0.17316
-0.182402
-0.185203
-0.174713
-0.175854
-0.232049
-0.221359
-0.249418
-0.236398
-0.236435
-0.225072
-0.230032
-0.236463
-0.227671
-0.215555
-0.223189
-0.223635
-0.230129
-0.239155
-0.237374
-0.222959
-0.219381
-0.221333
-0.225626
-0.226504
-0.246634
-0.241818
-0.236651
-0.251918
-0.250063
-0.244976
-0.235522
-0.251436
-0.245861
-0.24692
-0.23354
-0.257563
-0.24843
-0.23568
-0.256687
-0.240639
-0.241066
-0.236685
-0.513964
-0.512231
-0.518283
-0.493647
-0.490696
-0.516586
-0.496702
-0.500212
-0.517325
-0.499099
-0.500315
-0.501012
-0.499136
-0.51128
-0.358403
-0.372215
-0.359168
-0.375498
-0.362068
-0.257799
-0.274957
-0.249771
-0.281323
-0.279329
-0.27339
-0.254499
-0.238529
-0.256294
-0.279378
-0.259067
-0.26436
-0.250255
-0.237051
-0.233799
-0.244913
-0.230772
-0.235515
-0.240603
-0.251699
-0.229369
-0.237674
-0.25682
-0.223142
-0.223656
-0.233825
-0.264138
-0.23309
-0.228266
-0.241429
-0.224192
-0.239495
-0.228467
-0.233285
-0.515055
-0.515612
-0.516669
-0.486162
-0.488079
-0.515812
-0.487498
-0.486118
-0.5144
-0.485477
-0.515265
-0.486662
-0.222729
-0.23228
-0.229823
-0.232769
-0.231702
-0.231002
-0.212667
-0.242463
-0.246734
-0.237056
-0.235151
-0.239923
-0.245945
-0.236134
-0.224166
-0.239621
-0.236921
-0.212064
-0.223629
-0.207696
-0.218741
-0.217847
-0.222232
-0.209679
-0.216308
-0.241396
-0.210078
-0.211071
-0.237766
-0.22643
-0.20037
-0.194063
-0.224445
-0.231534
-0.223094
-0.208334
-0.235634
-0.224973
-0.189224
-0.18063
-0.188237
-0.187311
-0.192915
-0.174404
-0.177281
-0.177573
-0.176312
-0.177274
-0.188166
-0.186653
-0.199149
-0.197194
-0.18628
-0.194928
-0.184604
-0.196031
-0.182366
-0.189648
-0.196873
-0.187013
-0.203945
-0.190665
-0.193454
-0.238463
-0.214704
-0.218569
-0.217441
-0.221903
-0.24558
-0.223078
-0.215314
-0.207832
-0.217745
-0.236318
-0.211551
-0.216016
-0.239665
-0.205871
-0.224156
-0.199592
-0.217815
-0.226874
-0.222466
-0.187012
-0.226492
-0.228987
-0.20301
-0.229129
-0.509817
-0.516473
-0.525733
-0.523405
-0.523461
-0.521819
-0.511768
-0.500668
-0.501885
-0.513614
-0.501675
-0.51498
-0.503371
-0.49908
-0.18369
-0.18628
-0.175747
-0.175263
-0.18033
-0.175038
-0.174159
-0.176059
-0.174993
-0.183159
-0.18335
-0.191981
-0.187056
-0.180764
-0.188407
-0.194409
-0.184141
-0.183794
-0.183789
-0.190745
-0.181467
-0.187142
-0.192902
-0.183692
-0.168156
-0.167233
-0.170255
-0.179889
-0.180334
-0.187382
-0.189884
-0.187612
-0.186059
-0.167419
-0.176246
-0.182662
-0.185474
-0.17107
-0.176535
-0.183112
-0.186021
-0.182637
-0.193162
-0.180042
-0.194688
-0.179451
-0.184105
-0.19522
-0.180857
-0.161683
-0.166094
-0.163143
-0.180549
-0.180628
-0.184504
-0.181896
-0.19262
-0.181007
-0.191282
-0.185373
-0.178732
-0.194534
-0.181424
-0.182728
-0.189863
-0.197589
-0.196089
-0.193527
-0.188824
-0.198602
-0.195883
-0.174226
-0.176571
-0.165257
-0.169765
-0.167672
-0.172443
-0.172544
-0.187583
-0.204331
-0.191295
-0.175689
-0.188722
-0.192515
-0.179694
-0.178366
-0.171867
-0.172912
-0.466079
-0.446577
-0.447997
-0.466045
-0.449061
-0.450668
-0.466242
-0.447156
-0.465929
-0.449833
-0.466584
-0.443809
-0.447128
-0.465209
-0.44684
-0.446746
-0.460773
-0.443281
-0.464173
-0.446326
-0.228013
-0.2738
-0.257427
-0.259172
-0.233221
-0.248973
-0.249807
-0.243771
-0.274431
-0.243058
-0.250789
-0.246927
-0.262755
-0.240834
-0.223764
-0.230202
-0.227409
-0.222299
-0.222144
-0.228089
-0.223048
-0.245746
-0.245596
-0.251383
-0.267296
-0.266061
-0.24289
-0.242865
-0.298022
-0.304619
-0.479682
-0.479016
-0.478039
-0.48093
-0.477956
-0.481343
-0.479712
-0.455362
-0.449666
-0.443556
-0.460288
-0.454679
-0.450298
-0.444249
-0.4556
-0.444445
-0.450994
-0.460394
-0.450618
-0.455761
-0.444245
-0.480191
-0.479443
-0.479095
-0.484719
-0.479063
-0.484117
-0.480218
-0.455424
-0.450027
-0.443696
-0.459888
-0.455151
-0.450349
-0.443807
-0.455361
-0.443394
-0.451433
-0.459599
-0.451006
-0.455636
-0.443182
-0.198658
-0.189054
-0.189942
-0.20037
-0.188875
-0.200284
-0.198392
-0.204485
-0.247108
-0.206651
-0.216469
-0.20281
-0.216069
-0.206071
-0.194388
-0.188055
-0.189605
-0.194017
-0.19041
-0.187493
-0.195496
-0.208832
-0.209608
-0.221878
-0.217265
-0.218794
-0.209959
-0.208129
-0.168278
-0.169559
-0.167543
-0.145405
-0.152938
-0.153847
-0.158359
-0.145157
-0.156356
-0.172063
-0.192275
-0.165828
-0.166389
-0.21507
-0.205891
-0.250799
-0.140911
-0.166791
-0.16129
-0.138394
-0.159437
-0.140156
-0.138517
-0.158694
-0.162559
-0.162363
-0.158003
-0.139907
-0.139818
-0.156214
-0.195371
-0.195455
-0.187339
-0.204445
-0.189767
-0.202705
-0.196706
-0.195475
-0.215752
-0.194076
-0.206833
-0.207871
-0.239317
-0.209653
-0.224792
-0.20273
-0.224705
-0.21142
-0.217023
-0.229294
-0.22832
-0.217608
-0.192972
-0.200409
-0.211765
-0.198418
-0.19226
-0.207321
-0.19866
-0.205246
-0.193698
-0.195801
-0.205549
-0.146589
-0.145207
-0.146061
-0.147178
-0.153166
-0.156895
-0.164128
-0.164557
-0.154063
-0.156731
-0.16342
-0.150469
-0.163274
-0.152784
-0.16399
-0.161814
-0.15849
-0.165908
-0.167023
-0.16933
-0.160811
-0.16029
-0.151415
-0.165451
-0.157639
-0.154095
-0.157456
-0.153292
-0.151427
-0.153145
-0.15154
-0.149945
-0.145701
-0.148926
-0.152878
-0.152088
-0.163243
-0.170914
-0.181816
-0.163821
-0.164052
-0.173202
-0.163192
-0.206715
-0.215865
-0.209022
-0.21603
-0.20685
-0.214809
-0.207824
-0.197827
-0.195994
-0.189535
-0.190392
-0.196148
-0.199075
-0.190662
-0.199635
-0.193692
-0.201167
-0.192744
-0.200251
-0.200231
-0.192512
-0.450513
-0.458824
-0.451141
-0.451885
-0.459299
-0.451457
-0.268509
-0.229722
-0.255653
-0.240933
-0.226993
-0.248506
-0.24915
-0.27825
-0.23518
-0.229279
-0.251245
-0.228391
-0.267459
-0.252466
-0.253657
-0.226838
-0.231927
-0.227153
-0.247737
-0.234525
-0.237434
-0.228232
-0.231916
-0.241108
-0.238891
-0.264491
-0.254966
-0.243729
-0.255869
-0.232406
-0.237297
-0.21985
-0.228159
-0.248885
-0.220534
-0.26511
-0.225338
-0.257069
-0.253953
-0.254327
-0.214976
-0.257589
-0.296476
-0.312432
-0.248707
-0.275469
-0.251222
-0.297328
-0.273672
-0.282772
-0.29227
-0.28613
-0.262827
-0.223888
-0.22117
-0.226279
-0.215401
-0.215458
-0.23707
-0.209233
-0.271854
-0.256095
-0.255342
-0.276865
-0.259123
-0.262834
-0.266504
-0.262349
-0.270456
-0.251868
-0.220593
-0.229465
-0.232265
-0.270069
-0.219422
-0.250288
-0.243819
-0.24462
-0.239804
-0.264425
-0.244897
-0.241592
-0.234569
-0.235033
-0.246299
-0.246947
-0.234068
-0.258011
-0.282415
-0.267831
-0.266228
-0.265262
-0.267527
-0.25844
-0.245401
-0.239583
-0.235853
-0.249501
-0.247927
-0.235561
-0.246546
-0.311096
-0.319147
-0.323631
-0.313773
-0.319962
-0.308895
-0.327076
-0.312063
-0.314093
-0.32228
-0.329728
-0.312712
-0.320669
-0.328742
-0.451051
-0.457721
-0.45128
-0.452027
-0.457633
-0.451575
-0.251342
-0.246254
-0.243847
-0.243825
-0.247212
-0.251206
-0.244953
-0.269614
-0.270269
-0.264183
-0.291686
-0.260738
-0.289919
-0.271335
-0.255247
-0.26977
-0.24917
-0.255481
-0.251797
-0.246851
-0.254337
-0.248234
-0.227617
-0.263247
-0.245625
-0.27676
-0.302488
-0.299799
-0.276274
-0.272329
-0.283661
-0.254107
-0.275831
-0.240512
-0.226339
-0.235734
-0.243145
-0.232703
-0.245561
-0.239
-0.255916
-0.245458
-0.244246
-0.257647
-0.237334
-0.226838
-0.237928
-0.227215
-0.235383
-0.246389
-0.24027
-0.228176
-0.232562
-0.229353
-0.225681
-0.24013
-0.225385
-0.238942
-0.231706
-0.246224
-0.238667
-0.220212
-0.226805
-0.261354
-0.237731
-0.229093
-0.24735
-0.237652
-0.235736
-0.251329
-0.275755
-0.230994
-0.238519
-0.272066
-0.249905
-0.235135
-0.237352
-0.252886
-0.295082
-0.241876
-0.267423
-0.270877
-0.26
-0.267062
-0.259543
-0.268156
-0.263819
-0.268334
-0.25908
-0.277632
-0.248251
-0.277316
-0.257658
-0.25548
-0.370273
-0.37058
-0.362384
-0.371145
-0.339421
-0.360108
-0.341241
-0.464384
-0.460788
-0.458941
-0.464399
-0.462059
-0.464407
-0.462221
-0.44998
-0.454277
-0.413975
-0.427062
-0.450042
-0.454196
-0.414567
-0.449144
-0.416859
-0.450322
-0.427617
-0.45313
-0.447063
-0.414997
-0.46441
-0.457617
-0.462292
-0.458228
-0.463306
-0.460621
-0.462946
-0.449501
-0.454218
-0.413617
-0.425666
-0.449904
-0.454075
-0.413199
-0.448941
-0.412403
-0.452936
-0.424785
-0.453641
-0.44799
-0.412511
-0.150565
-0.14533
-0.140829
-0.153812
-0.1547
-0.143297
-0.148859
-0.15579
-0.157126
-0.164175
-0.162193
-0.157321
-0.156233
-0.160786
-0.154088
-0.155863
-0.15508
-0.162415
-0.156147
-0.152306
-0.158689
-0.208897
-0.213634
-0.202857
-0.217959
-0.203489
-0.21811
-0.208934
-0.198893
-0.19666
-0.210947
-0.199884
-0.19396
-0.201282
-0.201616
-0.19981
-0.194262
-0.196767
-0.194724
-0.196554
-0.199817
-0.195595
-0.220597
-0.183395
-0.209694
-0.18566
-0.188695
-0.184183
-0.183915
-0.186053
-0.189287
-0.18138
-0.244293
-0.193733
-0.219076
-0.200677
-0.211133
-0.201427
-0.229629
-0.192828
-0.217562
-0.184221
-0.185158
-0.202075
-0.200937
-0.181602
-0.212738
-0.193501
-0.213009
-0.226273
-0.193736
-0.127932
-0.133385
-0.126979
-0.132477
-0.128026
-0.116172
-0.146181
-0.144776
-0.116663
-0.123418
-0.114023
-0.115028
-0.121355
-0.130571
-0.133527
-0.131876
-0.134885
-0.132472
-0.137208
-0.138624
-0.150204
-0.146763
-0.138814
-0.136814
-0.148055
-0.125944
-0.117009
-0.116068
-0.124032
-0.125526
-0.117242
-0.124611
-0.134915
-0.14227
-0.144064
-0.132272
-0.134521
-0.145079
-0.133002
-0.191425
-0.216394
-0.186682
-0.193945
-0.214747
-0.189537
-0.201818
-0.199184
-0.196138
-0.201129
-0.196437
-0.201181
-0.199762
-0.187349
-0.201904
-0.191297
-0.190669
-0.190792
-0.206869
-0.185398
-0.215658
-0.227064
-0.205188
-0.196803
-0.198802
-0.225084
-0.211701
-0.230143
-0.214623
-0.220126
-0.227885
-0.216728
-0.224383
-0.235788
-0.242272
-0.24656
-0.237925
-0.253071
-0.230595
-0.279405
-0.260724
-0.238581
-0.207385
-0.232984
-0.2231
-0.229611
-0.244221
-0.217779
-0.242797
-0.288714
-0.251344
-0.306863
-0.316012
-0.338808
-0.336454
-0.334378
-0.315333
-0.308133
-0.307592
-0.335017
-0.324753
-0.325538
-0.31121
-0.331801
-0.317641
-0.247522
-0.244518
-0.24023
-0.239021
-0.247832
-0.246574
-0.23998
-0.265247
-0.294394
-0.310027
-0.285064
-0.332922
-0.265221
-0.31226
-0.319074
-0.355192
-0.324125
-0.241701
-0.233594
-0.239387
-0.25644
-0.247986
-0.235995
-0.253044
-0.420286
-0.421266
-0.239164
-0.250335
-0.24974
-0.244058
-0.222216
-0.244326
-0.246876
-0.219327
-0.243811
-0.32397
-0.343128
-0.338458
-0.343263
-0.346457
-0.321354
-0.339182
-0.300652
-0.285774
-0.302965
-0.297274
-0.285742
-0.299396
-0.297976
-0.327135
-0.338145
-0.328523
-0.335084
-0.325813
-0.331713
-0.337438
-0.261549
-0.249052
-0.248233
-0.260004
-0.323496
-0.275498
-0.313681
-0.29151
-0.310529
-0.296241
-0.33199
-0.289192
-0.313342
-0.359332
-0.340347
-0.278673
-0.27618
-0.270322
-0.316022
-0.310848
-0.254712
-0.230758
-0.230916
-0.222865
-0.2151
-0.232577
-0.23
-0.223123
-0.245643
-0.237985
-0.243805
-0.235154
-0.227013
-0.252547
-0.238888
-0.228914
-0.221957
-0.219714
-0.213719
-0.223796
-0.21317
-0.224686
-0.221576
-0.240384
-0.244126
-0.222148
-0.229598
-0.263548
-0.235434
-0.225719
-0.231472
-0.21896
-0.21782
-0.231021
-0.251112
-0.223771
-0.266553
-0.231119
-0.230333
-0.225201
-0.230683
-0.229269
-0.232402
-0.228902
-0.223636
-0.305522
-0.30082
-0.304738
-0.296205
-0.299981
-0.306272
-0.303946
-0.293618
-0.266502
-0.275385
-0.294148
-0.267849
-0.292759
-0.295377
-0.294838
-0.297892
-0.270015
-0.276664
-0.268887
-0.295733
-0.296823
-0.304236
-0.294583
-0.297629
-0.30161
-0.303558
-0.298407
-0.302505
-0.419055
-0.418389
-0.258594
-0.241177
-0.283268
-0.304287
-0.273375
-0.256597
-0.26913
-0.243837
-0.248881
-0.226709
-0.237245
-0.241287
-0.251125
-0.228107
-0.244889
-0.267389
-0.22956
-0.24214
-0.240009
-0.234566
-0.254481
-0.246695
-0.247934
-0.241898
-0.257576
-0.252708
-0.231668
-0.256412
-0.320947
-0.328165
-0.319294
-0.328756
-0.321149
-0.319121
-0.329788
-0.2991
-0.286628
-0.309367
-0.297423
-0.287481
-0.299702
-0.296595
-0.297965
-0.292802
-0.308981
-0.285924
-0.286786
-0.294855
-0.296237
-0.322581
-0.330547
-0.325841
-0.333325
-0.324457
-0.323264
-0.331386
-0.232492
-0.238714
-0.244501
-0.262785
-0.232751
-0.239413
-0.244425
-0.213757
-0.204238
-0.206065
-0.207001
-0.208482
-0.210376
-0.210993
-0.217863
-0.216765
-0.235448
-0.212569
-0.215641
-0.219781
-0.215627
-0.230605
-0.264404
-0.236784
-0.243758
-0.228502
-0.23805
-0.243908
-0.252081
-0.261111
-0.243474
-0.249944
-0.260066
-0.256083
-0.245838
-0.258889
-0.270789
-0.263668
-0.282902
-0.264669
-0.267147
-0.264058
-0.255404
-0.275987
-0.304686
-0.277818
-0.286008
-0.285212
-0.253957
-0.254755
-0.257261
-0.278496
-0.260502
-0.263551
-0.261137
-0.250983
-0.431831
-0.427464
-0.42723
-0.433983
-0.426578
-0.433623
-0.432574
-0.415807
-0.41674
-0.379784
-0.391827
-0.414877
-0.417683
-0.380866
-0.416755
-0.38287
-0.41978
-0.393172
-0.41881
-0.417676
-0.381697
-0.427709
-0.41943
-0.423698
-0.423571
-0.42452
-0.426272
-0.426255
-0.413456
-0.41624
-0.379341
-0.389013
-0.414277
-0.416008
-0.378522
-0.412826
-0.377551
-0.41574
-0.388401
-0.415844
-0.412031
-0.377884
-0.213299
-0.227099
-0.199743
-0.2097
-0.20055
-0.211878
-0.210396
-0.233438
-0.237965
-0.22954
-0.237089
-0.233566
-0.240093
-0.232484
-0.213996
-0.226603
-0.197091
-0.20793
-0.215525
-0.200443
-0.209734
-0.234608
-0.238309
-0.247039
-0.247888
-0.245283
-0.233592
-0.237363
-0.221608
-0.253236
-0.235659
-0.259271
-0.221913
-0.253864
-0.234594
-0.220241
-0.229069
-0.253996
-0.249632
-0.251445
-0.230434
-0.219602
-0.300598
-0.295768
-0.292556
-0.295693
-0.295782
-0.296268
-0.292199
-0.29054
-0.265097
-0.271302
-0.292464
-0.26618
-0.291331
-0.29066
-0.289996
-0.29027
-0.260291
-0.278759
-0.27142
-0.284405
-0.290687
-0.301322
-0.291745
-0.295954
-0.299901
-0.302212
-0.29516
-0.298553
-0.235398
-0.223539
-0.223059
-0.238758
-0.237881
-0.222063
-0.235995
-0.384345
-0.38588
-0.222187
-0.23338
-0.271085
-0.239808
-0.222263
-0.232777
-0.24209
-0.203767
-0.200413
-0.194723
-0.20258
-0.197284
-0.206719
-0.198675
-0.201238
-0.194239
-0.193175
-0.191286
-0.194386
-0.201271
-0.195231
-0.223821
-0.269907
-0.234844
-0.24275
-0.22587
-0.233585
-0.242737
-0.270883
-0.267012
-0.318731
-0.266245
-0.27214
-0.317329
-0.272868
-0.269096
-0.268908
-0.271631
-0.267688
-0.273533
-0.270939
-0.271552
-0.269765
-0.261206
-0.265165
-0.26502
-0.2684
-0.272313
-0.270807
-0.267565
-0.312114
-0.270231
-0.267232
-0.31612
-0.264292
-0.28901
-0.28514
-0.268144
-0.254552
-0.2288
-0.228119
-0.231443
-0.259585
-0.231892
-0.230343
-0.248141
-0.243858
-0.237906
-0.234385
-0.230248
-0.272206
-0.284057
-0.277004
-0.285198
-0.38236
-0.382079
-0.289056
-0.315238
-0.290744
-0.312357
-0.264625
-0.26991
-0.2724
-0.272827
-0.269389
-0.274094
-0.271657
-0.257858
-0.249711
-0.261566
-0.259677
-0.26327
-0.255673
-0.253761
-0.268139
-0.269579
-0.309915
-0.271259
-0.268836
-0.304873
-0.398466
-0.380562
-0.391036
-0.388737
-0.391338
-0.389571
-0.397968
-0.392349
-0.391486
-0.372525
-0.375103
-0.392472
-0.39148
-0.372708
-0.392955
-0.373557
-0.392303
-0.375923
-0.392258
-0.392777
-0.373447
-0.398898
-0.385433
-0.391693
-0.393414
-0.391583
-0.393451
-0.398935
-0.391971
-0.390981
-0.371962
-0.374223
-0.391973
-0.390962
-0.371674
-0.391647
-0.370541
-0.390273
-0.373704
-0.390607
-0.391234
-0.371152
-0.199076
-0.193789
-0.197198
-0.195496
-0.196224
-0.200086
-0.194217
-0.196689
-0.235878
-0.190849
-0.192825
-0.239946
-0.191826
-0.199347
-0.195384
-0.197997
-0.194905
-0.189219
-0.197375
-0.195301
-0.195139
-0.18933
-0.239212
-0.239533
-0.195468
-0.189066
-0.213904
-0.200142
-0.199524
-0.212277
-0.213665
-0.198765
-0.214164
-0.21907
-0.210705
-0.214109
-0.204951
-0.219308
-0.210501
-0.213817
-0.214509
-0.200757
-0.214924
-0.199108
-0.21492
-0.214396
-0.198865
-0.218652
-0.213511
-0.205048
-0.211635
-0.210347
-0.213379
-0.218408
-0.28608
-0.281513
-0.281221
-0.287143
-0.263563
-0.229601
-0.223993
-0.230002
-0.261455
-0.26754
-0.225004
-0.230298
-0.230726
-0.268069
-0.28001
-0.281231
-0.27759
-0.280743
-0.293151
-0.286483
-0.279732
-0.263686
-0.26617
-0.286257
-0.294076
-0.274978
-0.257372
-0.27497
-0.258089
-0.273432
-0.251897
-0.252307
-0.273043
-0.283164
-0.254112
-0.265452
-0.260017
-0.254481
-0.283118
-0.25952
-0.273623
-0.252777
-0.252593
-0.273791
-0.283113
-0.258622
-0.25473
-0.265469
-0.254486
-0.283282
-0.258999
-0.275031
-0.259855
-0.275065
-0.258918
-0.254177
-0.256859
-0.250225
-0.252208
-0.268672
-0.26549
-0.253248
-0.246826
-0.26947
-0.266144
-0.238968
-0.255045
-0.272475
-0.252536
-0.273613
-0.266134
-0.264409
-0.263274
-0.265504
-0.263866
-0.252266
-0.273499
-0.269107
-0.254449
-0.254115
-0.270925
-0.25532
-0.264399
-0.264001
-0.26519
-0.263597
-0.251298
-0.249889
-0.275196
-0.26339
-0.275133
-0.262646
-0.272467
-0.251694
-0.251284
-0.272909
-0.283397
-0.254094
-0.264771
-0.260449
-0.253918
-0.283336
-0.260761
-0.283513
-0.261001
-0.25402
-0.264568
-0.253956
-0.283686
-0.260925
-0.272138
-0.25046
-0.250882
-0.271549
-0.275246
-0.260903
-0.275223
-0.261849
-0.375762
-0.361743
-0.377895
-0.358504
-0.37427
-0.36857
-0.377842
-0.369141
-0.373966
-0.357731
-0.377583
-0.367974
-0.375298
-0.358297
-0.369874
-0.356908
-0.37638
-0.375679
-0.375607
-0.372502
-0.357155
-0.363719
-0.345649
-0.358727
-0.352594
-0.361062
-0.354437
-0.361592
-0.363459
-0.371086
-0.355841
-0.369498
-0.365636
-0.36873
-0.353902
-0.361599
-0.35005
-0.36342
-0.365835
-0.365974
-0.359504
-0.352093
-0.210922
-0.181044
-0.179998
-0.211627
-0.222354
-0.190127
-0.17942
-0.20839
-0.177096
-0.20647
-0.224894
-0.223831
-0.202482
-0.22026
-0.204674
-0.21051
-0.178027
-0.209239
-0.179098
-0.226302
-0.209428
-0.206865
-0.228024
-0.19476
-0.143521
-0.149462
-0.14877
-0.195782
-0.225616
-0.243796
-0.226463
-0.242837
-0.195666
-0.144317
-0.150721
-0.196859
-0.149454
-0.224869
-0.24377
-0.242459
-0.226592
-0.246186
-0.243488
-0.242579
-0.250805
-0.263521
-0.264477
-0.244667
-0.249995
-0.26147
-0.265273
-0.266381
-0.267583
-0.264929
-0.262739
-0.237069
-0.275912
-0.243874
-0.275804
-0.248522
-0.252505
-0.26704
-0.271584
-0.269006
-0.267425
-0.245895
-0.24802
-0.242029
-0.255597
-0.263674
-0.249629
-0.250016
-0.25985
-0.2369
-0.218704
-0.246677
-0.249142
-0.216793
-0.223404
-0.216655
-0.255847
-0.226692
-0.253445
-0.224232
-0.226346
-0.245233
-0.237983
-0.252589
-0.252032
-0.239933
-0.243226
-0.253875
-0.221037
-0.251202
-0.250199
-0.224364
-0.247068
-0.257734
-0.243946
-0.254036
-0.24141
-0.249478
-0.25549
-0.223449
-0.221063
-0.229337
-0.224069
-0.222053
-0.221969
-0.225233
-0.213566
-0.191859
-0.211024
-0.18738
-0.209571
-0.18568
-0.21508
-0.182918
-0.1844
-0.225482
-0.228407
-0.231018
-0.225257
-0.223843
-0.227181
-0.226897
-0.187812
-0.186271
-0.213767
-0.243738
-0.240609
-0.215251
-0.214642
-0.209064
-0.217832
-0.229263
-0.218045
-0.243053
-0.209336
-0.239301
-0.236456
-0.247194
-0.250289
-0.234773
-0.241358
-0.248398
-0.237353
-0.243614
-0.232911
-0.245935
-0.234012
-0.232088
-0.246544
-0.214433
-0.234891
-0.238753
-0.211529
-0.319703
-0.30661
-0.31515
-0.317271
-0.313767
-0.31624
-0.321016
-0.312863
-0.310621
-0.297347
-0.304216
-0.3116
-0.311797
-0.298965
-0.314057
-0.302051
-0.314831
-0.305875
-0.313294
-0.315525
-0.300387
-0.314529
-0.303913
-0.307246
-0.31256
-0.308154
-0.313122
-0.31351
-0.308924
-0.308962
-0.295505
-0.299232
-0.310089
-0.307792
-0.293922
-0.307444
-0.290322
-0.304879
-0.29729
-0.30619
-0.306058
-0.2921
-0.105408
-0.121807
-0.11755
-0.108546
-0.107325
-0.104354
-0.124903
-0.0881011
-0.105235
-0.105993
-0.127475
-0.142845
-0.15367
-0.133096
-0.159643
-0.13168
-0.159862
-0.143315
-0.102657
-0.109842
-0.100421
-0.113394
-0.10967
-0.133877
-0.0907259
-0.110316
-0.107788
-0.130991
-0.111882
-0.151269
-0.161842
-0.164459
-0.148854
-0.137924
-0.144765
-0.15685
-0.143252
-0.174366
-0.123988
-0.161328
-0.139847
-0.171542
-0.136835
-0.160848
-0.138987
-0.168193
-0.140635
-0.168842
-0.135135
-0.153818
-0.167409
-0.157038
-0.166567
-0.154335
-0.167155
-0.122195
-0.135265
-0.137416
-0.169828
-0.152111
-0.13524
-0.13322
-0.216581
-0.218925
-0.221405
-0.224496
-0.219424
-0.217577
-0.219408
-0.182307
-0.177932
-0.208992
-0.1913
-0.199565
-0.205402
-0.198417
-0.204986
-0.211194
-0.217571
-0.216314
-0.223116
-0.216607
-0.217286
-0.218118
-0.216945
-0.193072
-0.176241
-0.180616
-0.19403
-0.178585
-0.192493
-0.194957
-0.195733
-0.199211
-0.197005
-0.188125
-0.200111
-0.194336
-0.188777
-0.197487
-0.191742
-0.203295
-0.198204
-0.201506
-0.199366
-0.190148
-0.172645
-0.178438
-0.182382
-0.182778
-0.178168
-0.172974
-0.180755
-0.172713
-0.16923
-0.179255
-0.16981
-0.17786
-0.169024
-0.17408
-0.172687
-0.178039
-0.18148
-0.179246
-0.178209
-0.179289
-0.173469
-0.190933
-0.178436
-0.19106
-0.183685
-0.191457
-0.18382
-0.190673
-0.192898
-0.19821
-0.194664
-0.187123
-0.197852
-0.193488
-0.186984
-0.192199
-0.186842
-0.196805
-0.194062
-0.197248
-0.191888
-0.186653
-0.281867
-0.288625
-0.275705
-0.291408
-0.275041
-0.291364
-0.282493
-0.27
-0.264085
-0.253761
-0.255038
-0.269068
-0.265214
-0.254997
-0.271138
-0.257558
-0.267522
-0.256581
-0.266532
-0.272107
-0.25634
-0.276721
-0.284131
-0.267477
-0.287075
-0.268891
-0.288519
-0.27501
-0.266124
-0.262377
-0.252117
-0.250217
-0.267572
-0.260906
-0.250626
-0.264853
-0.247304
-0.257708
-0.248474
-0.259317
-0.263032
-0.249252
0.0986686
0.00713288
0.0345939
0.12887
0.163803
0.125896
0.16477
0.0371721
-0.0174852
0.167221
0.148212
0.039338
0.108292
0.179611
0.101201
0.187252
0.0544612
0.174054
0.179598
0.00582353
0.157313
0.070087
0.174736
0.0570067
-0.0998415
-0.0911342
-0.07526
-0.0674025
-0.102453
-0.090326
-0.0741131
-0.12381
-0.117382
-0.108136
-0.143661
-0.107059
-0.140386
-0.122679
-0.0982252
-0.0742404
-0.0670988
-0.0907498
-0.090167
-0.0739113
-0.0974813
-0.137542
-0.124085
-0.122283
-0.100717
-0.138271
-0.122668
-0.120552
-0.145516
-0.150538
-0.135912
-0.159486
-0.137663
-0.157915
-0.144285
-0.134369
-0.112428
-0.0974265
-0.117565
-0.120406
-0.116338
-0.131548
-0.174546
-0.179019
-0.184545
-0.184583
-0.173436
-0.180086
-0.187217
-0.170831
-0.166299
-0.16409
-0.177351
-0.165138
-0.176275
-0.171151
-0.175837
-0.195243
-0.185818
-0.182768
-0.181263
-0.190228
-0.178639
-0.179834
-0.166812
-0.171512
-0.170874
-0.173569
-0.169479
-0.177569
-0.156708
-0.156227
-0.187624
-0.160756
-0.149373
-0.164208
-0.169121
-0.190632
-0.16498
-0.170821
-0.138394
-0.158198
-0.139993
-0.0831257
-0.111286
-0.103465
-0.117276
-0.100426
-0.111934
-0.0857439
-0.159761
-0.144233
-0.141684
-0.18111
-0.159799
-0.145735
-0.178878
-0.159076
-0.177188
-0.170114
-0.133322
-0.151481
-0.176506
-0.146937
-0.14083
-0.131008
-0.137536
-0.173081
-0.145127
-0.122056
-0.245121
-0.282365
-0.25669
-0.260197
-0.256806
-0.259147
-0.246295
-0.226162
-0.225178
-0.206219
-0.203272
-0.224676
-0.22636
-0.207631
-0.227973
-0.210507
-0.229449
-0.20589
-0.228201
-0.229502
-0.20916
-0.237329
-0.2837
-0.254248
-0.248912
-0.255323
-0.251357
-0.23505
-0.221042
-0.223472
-0.204356
-0.197196
-0.222714
-0.222221
-0.202521
-0.219163
-0.198085
-0.21854
-0.194785
-0.220444
-0.216769
-0.200543
-0.136985
-0.15402
-0.135897
-0.0771659
-0.105209
-0.103
-0.0972411
-0.101082
-0.0946436
-0.0811566
-0.153078
-0.134904
-0.135259
-0.157568
-0.0812457
-0.115522
-0.112955
-0.0875626
-0.0694178
-0.130067
-0.0682593
-0.126096
-0.136506
-0.140354
-0.140473
-0.115937
-0.0842621
-0.115386
-0.147927
-0.142831
-0.143138
-0.15251
-0.156184
-0.168138
-0.197892
-0.168237
-0.0601954
-0.0670549
-0.0654559
-0.0359603
-0.0684567
-0.0626438
-0.112342
-0.13975
-0.138823
-0.137651
-0.111081
-0.138102
-0.0718305
-0.0761304
-0.0708428
-0.197378
-0.167557
-0.168248
-0.151337
-0.188224
-0.147119
-0.0900834
-0.113082
-0.117296
-0.0652339
-0.0431889
-0.101341
-0.106457
-0.0481356
-0.132999
-0.129652
-0.12889
-0.123115
-0.0916875
-0.118297
-0.120212
-0.125775
-0.124609
-0.193491
-0.148976
-0.149839
-0.191365
-0.221499
-0.232176
-0.196038
-0.233075
-0.195259
-0.191397
-0.174168
-0.188781
-0.154252
-0.135017
-0.174886
-0.187439
-0.153672
-0.174078
-0.153391
-0.185751
-0.135565
-0.186611
-0.173894
-0.153527
-0.0522773
-0.0987033
-0.0899212
-0.0655462
-0.097621
-0.0450297
-0.0698482
-0.192883
-0.2115
-0.24258
-0.192481
-0.240974
-0.192923
-0.193326
-0.176144
-0.190114
-0.154489
-0.133873
-0.175184
-0.191835
-0.155195
-0.176578
-0.156165
-0.194634
-0.133479
-0.193182
-0.17723
-0.155583
-0.165516
-0.193047
-0.166007
-0.0545444
-0.0531951
-0.049652
-0.117908
-0.140716
-0.141818
-0.00173883
-0.0282454
-0.033194
-0.141892
-0.12144
-0.142006
-0.194195
-0.166329
-0.166282
-0.0492533
-0.0405235
-0.0448877
-0.35827
-0.387965
-0.359116
-0.309557
-0.344447
-0.345358
-0.349248
-0.319059
-0.347753
-0.388762
-0.359451
-0.35816
-0.1452
-0.157066
-0.134063
-0.000619003
-0.0159455
-0.0233652
-0.000520609
0.000393713
-0.0763774
-0.00493897
-0.0166201
-0.0207052
-0.0370604
-0.0369598
-0.0316699
-0.116537
-0.0266241
-0.000940527
-0.0895089
-0.023623
-0.0332278
-0.0269787
-0.15097
-0.091096
-0.117839
0.00612327
0.00180063
-0.0146023
-0.0225207
-0.0167502
0.00676906
0.00149911
-0.0879676
-0.0848633
-0.0883502
-0.103802
-0.0946564
-0.0943772
0.0336793
0.0620595
0.0589835
0.0314516
0.034569
0.0608393
0.0305129
0.0313399
0.027626
0.0578863
0.0564567
0.0584801
0.0310418
0.0280802
-0.0837455
-0.0879721
-0.0878951
0.00808534
-0.0209762
-0.0165931
0.00434032
0.00840101
-0.0157926
0.00368914
-0.387017
-0.360684
-0.359079
-0.341898
-0.290325
-0.340633
-0.388516
-0.358734
-0.359821
-0.336155
-0.282787
-0.337664
0.00113851
-0.00338543
-0.0153062
-0.0890624
-0.0134577
-0.00205255
0.00435296
0.00535343
-0.00137899
-0.0110483
0.00448729
0.00845879
0.0017234
-0.0557884
-0.0667033
-0.0587632
-0.043721
-0.0519433
-0.0506131
0.0123901
0.00277126
0.00753561
0.0264057
0.0212867
-0.000690256
0.0126553
-0.0639784
-0.0576015
-0.0578225
-0.00394128
-0.0998576
-0.0780511
-0.0248026
-0.0413733
-0.0993029
-0.0639072
-0.0899873
-0.0436895
-0.0978247
-0.0628115
-0.0400408
-0.0591309
-0.0897865
-0.0935633
-0.0973799
-0.0614556
-0.0373291
-0.14274
-0.126607
-0.139252
-0.140137
-0.130401
-0.138908
-0.145154
-0.140147
-0.14713
-0.132391
-0.163418
-0.134076
-0.154103
-0.136228
-0.141856
-0.138151
-0.162898
-0.159783
-0.157485
-0.14426
-0.136767
0.012554
-0.0408631
-0.0118363
-0.0397863
0.0149719
-0.0426684
-0.015537
0.00761513
-0.0230434
-0.0503536
-0.0436481
-0.0472347
0.00366838
-0.0191907
0.0935873
0.0445973
0.061142
0.0451839
0.0425722
0.0959124
0.0607753
0.0919201
0.0566063
0.0438834
0.0412476
0.0421716
0.0591807
0.0893379
-0.122418
-0.100316
-0.111978
-0.117819
-0.114705
-0.122068
-0.118625
-0.125165
-0.141858
-0.130137
-0.161024
-0.130404
-0.135577
-0.125869
-0.122335
-0.119253
-0.127028
-0.155087
-0.131344
-0.118531
-0.123119
0.021847
-0.0349686
-0.00828112
-0.0286675
0.0200429
-0.0338441
-0.00410537
0.0267227
0.00446921
-0.0220769
-0.023834
-0.0276457
0.0314604
-0.000233205
0.0131912
0.00936327
-0.0192758
-0.0133836
-0.0141262
0.00812498
0.0144824
-0.0867339
-0.0815158
-0.0840793
0.0390714
0.0649539
0.0642613
0.0334683
0.0370322
0.0680814
0.0347676
-0.0960055
-0.0785359
-0.0859926
0.0416326
0.0373398
0.0659176
0.0766477
0.0721943
0.0359654
0.0439918
0.0116312
-0.0197767
-0.0152771
0.00628734
0.0104332
-0.0149555
0.00720081
-0.0800392
-0.0756658
-0.0817844
-0.32397
-0.263494
-0.272355
-0.237526
-0.325054
-0.267844
-0.263905
-0.357815
-0.35536
-0.299059
-0.287694
-0.344662
-0.356943
-0.287155
-0.355454
-0.282845
-0.319739
-0.295803
-0.33195
-0.346489
-0.28577
-0.32147
-0.237058
-0.266593
-0.263548
-0.317943
-0.267058
-0.263766
-0.0196721
-0.0171431
-0.0373505
-0.03991
-0.0188468
-0.0175451
-0.0391169
-0.00417249
0.00913409
0.0278118
0.00187245
-0.00619404
0.01161
0.00143161
-0.00350474
-0.0152139
-0.0111832
-0.0132855
-0.0230092
-0.016265
-0.00180872
0.0035459
0.026689
0.0166313
0.0141431
0.00195221
0.000759618
-0.023758
-0.0266482
-0.0198068
-0.0214427
-0.0410629
-0.0203195
-0.0417312
-0.0228652
-0.0198655
-0.0405703
-0.114497
-0.0607079
-0.0819104
-0.114636
-0.121692
-0.108749
-0.0568583
0.0871509
0.0719946
0.0882534
0.156263
-0.108699
0.126556
0.119211
-0.0768535
-0.1019
-0.0756615
0.0141929
-0.013226
-0.0837297
-0.0677395
-0.0254722
-0.104164
-0.0376543
-0.105638
0.00605951
-0.0898441
-0.099384
-0.0305224
-0.110702
-0.0787342
-0.120071
-0.0435676
-0.097597
-0.123577
-0.0514274
0.0720666
0.0935741
0.0905107
-0.31048
-0.264104
-0.237924
-0.263738
-0.308508
-0.264832
-0.263672
-0.353399
-0.363744
-0.288255
-0.304845
-0.355837
-0.365658
-0.288229
-0.312175
-0.237453
-0.266059
-0.263604
-0.315057
-0.265124
-0.263471
-0.35149
-0.288188
-0.361871
-0.305678
-0.364721
-0.348985
-0.288384
-0.0279981
-0.0246315
-0.0482681
-0.0450397
-0.0223084
-0.0308515
-0.0459983
-0.00969028
0.00770843
0.0389313
0.00331705
-0.00775864
0.0054684
0.00365081
0.010838
0.0138194
0.00612781
-0.00959265
-0.0116894
-0.00567799
-0.0124343
0.000178336
0.0384877
-0.00164088
0.00227431
0.00258492
-0.0159036
0.00626576
-0.00684134
-0.000422284
-0.02576
-0.0436434
-0.0204473
-0.0429119
-0.0242106
-0.0209785
-0.044179
-0.74764
-0.769436
-0.746089
-0.76024
-0.744043
-0.769499
-0.750822
-0.748802
-0.762046
-0.757255
-0.768376
-0.765756
-0.750876
-0.757159
-0.660553
-0.615446
-0.654528
-0.615815
-0.656423
-0.613633
-0.615337
-0.647539
-0.619542
-0.651514
-0.616645
-0.652274
-0.613201
-0.615954
-0.588552
-0.584665
-0.573167
-0.589684
-0.58315
-0.573883
-0.573339
-0.598204
-0.576384
-0.572665
-0.591546
-0.577117
-0.59733
-0.592899
-0.598812
-0.594408
-0.577898
-0.572872
-0.57738
-0.599363
-0.59358
-0.586412
-0.572149
-0.57902
-0.584092
-0.581441
-0.655534
-0.614137
-0.640734
-0.646857
-0.621228
-0.616791
-0.613655
-0.630265
-0.6294
-0.617178
-0.635789
-0.61952
-0.612728
-0.609063
-0.728006
-0.724993
-0.73113
-0.72293
-0.73611
-0.72103
-0.723244
-0.73927
-0.764722
-0.742851
-0.741167
-0.750169
-0.73646
-0.746645
-0.738939
-0.737065
-0.737239
-0.741952
-0.750604
-0.728243
-0.722777
-0.722245
-0.724546
-0.721404
-0.723639
-0.728791
-0.746405
-0.768456
-0.748006
-0.781552
-0.745521
-0.775476
-0.752389
-0.743114
-0.75565
-0.781527
-0.773772
-0.775576
-0.749963
-0.746869
-0.578903
-0.572002
-0.570236
-0.576867
-0.574172
-0.571391
-0.57162
-0.596849
-0.575878
-0.570749
-0.591254
-0.575654
-0.597282
-0.59038
-0.596474
-0.588821
-0.575325
-0.570816
-0.575688
-0.595815
-0.589962
-0.580941
-0.571269
-0.578035
-0.582977
-0.575874
-0.608416
-0.621681
-0.618279
-0.606783
-0.622826
-0.598272
-0.599271
-0.617387
-0.596215
-0.623482
-0.602869
-0.622989
-0.596213
-0.593994
-0.610677
-0.622235
-0.622892
-0.623846
-0.611173
-0.602972
-0.601358
-0.618776
-0.624471
-0.615217
-0.623288
-0.613439
-0.60458
-0.606274
-1.2773
-1.12537
-0.913393
-1.23511
-1.18342
-1.00643
-0.856797
-0.83806
-0.978873
-1.0196
-0.857174
-0.978355
-0.998317
-0.890444
-0.892214
-1.0217
-0.881337
-1.00596
-1.00762
-1.27095
-0.93276
-1.21852
-1.23494
-1.28911
-0.792453
-0.815903
-0.816428
-0.787545
-0.786149
-0.796404
-0.826169
-0.790761
-0.790507
-0.81037
-0.795311
-0.803069
-0.805368
-0.80354
-0.804042
-0.811284
-0.800477
-0.800611
-0.795258
-0.807684
-0.80005
-0.793823
-0.800891
-0.84978
-1.03394
-0.987823
-1.02355
-0.980061
-0.997185
-1.02884
-0.986181
-0.993713
-1.03394
-1.0245
-0.999874
-1.02868
-0.987179
-0.987914
-0.972359
-0.973924
-0.970657
-1.0144
-0.973783
-1.03116
-1.02708
-0.97926
-1.02292
-0.974856
-1.01854
-0.97568
-1.02762
-0.794953
-0.765537
-0.801435
-0.779531
-0.775015
-0.778182
-0.822161
-0.804779
-0.800439
-0.797492
-0.817404
-0.806556
-0.797196
-0.766249
-0.776064
-0.773727
-0.773592
-0.797728
-0.815493
-0.786968
-0.787627
-0.792632
-0.801414
-0.792096
-0.790116
-0.770302
-0.776508
-0.777243
-0.772369
-0.772401
-0.789121
-0.775187
-0.756058
-0.758208
-0.782733
-0.752462
-0.777156
-0.780726
-0.775552
-0.778551
-0.759539
-0.761118
-0.755218
-0.771725
-0.781339
-0.77362
-0.77693
-0.824591
-0.78129
-0.772311
-0.815622
-0.237137
-0.239498
-0.237243
-0.268167
-0.254954
-0.239435
-0.232737
-0.195471
-0.18147
-0.184829
-0.183459
-0.185884
-0.19157
-0.18425
-0.229801
-0.248496
-0.21594
-0.146126
-0.19985
-0.260628
-0.185245
-0.258881
-0.228895
-0.224165
-0.199533
-0.207004
-0.193454
-0.231191
-0.22843
-0.228687
-0.209857
0.00122431
-0.0748537
-0.0300736
-0.0536219
-0.0689482
-0.0731293
-0.0630411
-0.0697307
0.00765732
-0.0493898
-0.047489
-0.023171
-0.0522164
-0.0134757
0.00444538
-0.0166741
-0.0730641
-0.0676508
-0.0527478
-0.0561061
-0.0535607
-0.0830504
-0.0719322
-0.0618409
-0.0631926
-0.154192
-0.154574
-0.147124
-0.0471859
-0.0646537
-0.108744
-0.0382986
-0.075535
-0.0664025
-0.0467554
-0.0813818
0.0187185
-0.0381692
-0.0057206
-0.0564352
-0.142609
-0.160401
-0.152484
-0.15505
-0.14216
-0.136364
-0.136635
-0.0904644
-0.141365
-0.0698951
-0.12614
-0.0531914
-0.0133554
-0.0526839
0.00150839
-0.0607476
-0.0196828
-0.0458753
0.0106156
-0.0892594
-0.0747949
-0.119573
-0.0922285
-0.0712292
-0.118726
-0.013275
-0.0258226
-0.049433
0.0032349
-0.0355707
0.0233777
-0.0414381
-0.0147858
-0.0439881
-0.101053
-0.0897002
-0.0269349
-0.0265979
-0.0792171
-0.060013
-0.00391018
-0.0526795
-0.00402333
0.00513605
-0.0655106
-0.0836012
-0.0345241
-0.021032
-0.068671
-0.0116663
-0.088947
-0.0608046
-0.0155356
-0.103758
-0.148758
-0.138785
-0.125857
-0.144083
-0.128608
-0.170408
-0.179787
-0.185695
-0.114105
-0.162025
-0.139318
-0.172193
-0.179354
-0.119365
-0.134741
-0.166734
-0.113838
-0.174321
-0.166267
-0.148621
-0.148591
-0.155145
-0.143811
-0.159781
-0.171847
-0.125267
-0.120449
-0.135506
-0.113515
-0.0994052
-0.162389
-0.137956
-0.122819
-0.16791
-0.12555
-0.561294
-0.553302
-0.560667
-0.554572
-0.561466
-0.560555
-0.55305
-0.543086
-0.557201
-0.556087
-0.543536
-0.540538
-0.552687
-0.544179
-0.545867
-0.555367
-0.540555
-0.545359
-0.541327
-0.546314
-0.558218
-0.545794
-0.557303
-0.541681
-0.54612
-0.560992
-0.555009
-0.561818
-0.557202
-0.563017
-0.560333
-0.552853
-0.576284
-0.562188
-0.562424
-0.561779
-0.577054
-0.561544
-0.560142
-0.533178
-0.53014
-0.531863
-0.531871
-0.576899
-0.562945
-0.561251
-0.559421
-0.575024
-0.562133
-0.56076
-0.852922
-0.88507
-0.890708
-0.888877
-0.859084
-0.843318
-0.843418
-0.887784
-0.859662
-0.886583
-0.843896
-0.890472
-0.857284
-0.843392
-1.0158
-1.02738
-1.02128
-1.01918
-1.01739
-1.03742
-1.03027
-1.05678
-1.0521
-1.06389
-1.02976
-1.04409
-1.04922
-1.02976
-1.01974
-1.0251
-1.01984
-1.02768
-1.01647
-1.02406
-1.04244
-1.01549
-1.01042
-1.00544
-1.01284
-1.01268
-1.00775
-1.00704
-1.01399
-1.05883
-1.06057
-1.04515
-1.05922
-1.03971
-1.07388
-1.06804
-1.06201
-1.04835
-1.04531
-1.01976
-1.00045
-1.01138
-1.01531
-1.01249
-1.03543
-0.80778
-0.822394
-0.821138
-0.818604
-0.806831
-0.822746
-0.822881
-0.801313
-0.803763
-0.818788
-0.813957
-0.804017
-0.814584
-0.807418
-0.772837
-0.760805
-0.766064
-0.781102
-0.770076
-0.76552
-0.770597
-0.79773
-0.802416
-0.775182
-0.827085
-0.782244
-0.799502
-0.804807
-1.04268
-1.06944
-1.05692
-1.09202
-1.06523
-1.07762
-1.04245
-1.02087
-1.01019
-1.00676
-1.00533
-1.01066
-1.02536
-0.994925
-1.0355
-1.03671
-1.09371
-1.03111
-1.09158
-1.04053
-1.02413
-0.988303
-0.997804
-1.03077
-1.02769
-0.989649
-1.027
-1.00865
-1.00952
-1.00202
-0.998661
-1.01515
-1.00314
-1.00567
-1.0705
-1.05103
-1.07007
-0.981371
-0.993706
-1.03377
-1.04146
-0.988611
-1.00346
-0.993975
-0.263631
-0.220579
-0.268686
-0.268728
-0.224149
-0.226433
-0.254024
-0.131076
-0.268584
-0.172724
-0.261126
-0.154661
-0.268406
-0.232774
-0.202379
-0.210054
-0.230422
-0.204957
-0.217959
-0.233825
-0.194602
-0.212703
-0.232246
-0.207461
-0.247134
-0.245631
-0.187188
-0.188387
-0.249922
-0.20966
-0.212721
-0.199706
-0.152375
-0.248553
-0.159887
-0.254152
-0.145821
-0.207705
-0.258849
-0.222561
-0.222319
-0.250677
-0.174617
-0.185609
-0.217492
-0.166447
-0.148656
-0.185503
-0.179643
-0.213157
-0.258156
-0.299065
-0.197663
-0.286553
-0.210015
-0.277326
-0.202282
-0.302501
-0.268332
-0.257561
-0.206264
-0.269346
-0.261385
-0.220518
-0.190113
-0.224291
-0.183978
-0.200203
-0.250347
-0.202711
-0.194514
-0.180637
-0.215842
-0.191874
-0.219247
-0.251522
-0.19456
-0.200124
-0.202369
-0.219137
-0.187836
-0.184768
-0.191308
-0.195326
-0.188464
-0.195908
-0.196357
-0.246058
-0.250044
-0.211131
-0.223332
-0.244087
-0.267775
-0.205194
-0.284991
-0.288096
-0.245522
-0.253416
-0.238112
-0.255536
-0.263113
-0.275267
-0.233446
-0.236031
-0.221467
-0.218484
-0.279856
-0.232692
-0.240183
-0.224338
-0.236794
-0.256325
-0.226765
-0.238129
-0.216496
-0.267622
-0.210182
-0.23415
-0.250052
-0.244862
-0.246359
-0.221948
-0.245734
-0.25488
-0.219857
-0.223689
-0.24493
-0.211496
-0.21902
-0.214628
-0.201309
-0.188981
-0.199126
-0.164322
-0.174954
-0.158405
-0.148658
-0.167266
-0.145901
-0.183788
-0.163071
-0.173105
-0.067253
-0.043738
-0.143309
-0.151162
-0.0426303
-0.159109
-0.0561646
-0.0290452
-0.0507748
-0.0561749
0.00194796
-0.0467631
-0.0191282
-0.0131171
-0.0551609
-0.0814947
-0.037903
-0.0350826
-0.0406617
-0.0709285
-0.0679755
-0.0791182
-0.0717354
-0.120769
-0.0902239
-0.0628145
-0.111013
-0.0852919
-0.0927955
-0.131181
-0.173978
-0.139866
-0.09475
-0.0805285
-0.0850356
-0.165513
-0.119634
-0.0750174
-0.0817199
-0.136798
-0.0819457
-0.178638
-0.121237
-0.130608
-0.185817
-0.149795
-0.192867
-0.173916
-0.140508
-0.165028
-0.195126
-0.141497
-0.133931
-0.180649
-0.153167
-0.175804
-0.144842
-0.190251
-0.146073
-0.173483
-0.136362
-0.0800128
-0.12528
-0.154989
-0.107166
-0.164569
-0.106535
-0.144234
-0.0783193
-0.147296
-0.156454
-0.0980546
-0.10399
-0.113184
-0.111976
-0.10343
-0.103883
-0.0917687
-0.088226
-0.172171
-0.20742
-0.171546
-0.194938
-0.181316
-0.197909
-0.100055
-0.113022
-0.18366
-0.191809
-0.0966265
-0.170341
-0.100524
-0.148183
-0.110466
-0.181818
-0.123757
-0.0958066
-0.158047
-0.140796
-0.200324
-0.135487
-0.226431
-0.183679
-0.152704
-0.171412
-0.180759
-0.199677
-0.165032
-0.240316
-0.238768
-0.217844
-0.172636
-0.133641
-0.185114
-0.154581
-0.177434
-0.200889
-0.132648
-0.169456
-0.168369
-0.166624
-0.163855
-0.581031
-0.576499
-0.559389
-0.569395
-0.582393
-0.558065
-0.575184
-0.517688
-0.513554
-0.513992
-0.520453
-0.579661
-0.567833
-0.554739
-0.571607
-0.577975
-0.556753
-0.573363
-0.547745
-0.532648
-0.55498
-0.551654
-0.535799
-0.540366
-0.55468
-0.543423
-0.52704
-0.523798
-0.541438
-0.57018
-0.560064
-0.554046
-0.569836
-0.577304
-0.548733
-0.564711
-0.545262
-0.534308
-1.00263
-0.997118
-0.998877
-1.0057
-0.995115
-1.00634
-1.00443
-1.02669
-1.07332
-1.03058
-1.02785
-1.02834
-1.03137
-1.03568
-1.0094
-1.03044
-1.02066
-1.0363
-1.03559
-1.0369
-1.00762
-1.01019
-1.04233
-1.05054
-1.08752
-1.05026
-1.08347
-1.04203
-1.0877
-1.06308
-1.04524
-1.04517
-1.02908
-0.983703
-0.984753
-1.03216
-0.985885
-1.04489
-1.05648
-1.0381
-0.979679
-0.996001
-1.0299
-1.04567
-0.981233
-1.02941
-1.06551
-1.05822
-1.06642
-1.05432
-1.06301
-1.06003
-1.07056
-1.03666
-0.995258
-1.04627
-0.97979
-1.03572
-1.04575
-0.978325
-1.06261
-1.054
-1.06084
-1.09873
-1.06205
-1.07286
-1.04972
-1.04776
-0.985441
-1.0023
-1.00784
-0.990478
-1.00973
-1.07939
-1.05642
-1.07424
-1.08051
-1.08252
-1.04812
-1.07464
-1.05038
-1.07697
-1.07148
-1.04953
-0.980856
-0.984844
-1.03699
-0.988368
-1.07686
-1.06911
-1.07531
-1.05885
-0.228338
-0.269106
-0.250099
-0.239587
-0.240376
-0.222649
-0.240137
-0.236641
-0.266283
-0.253957
-0.264462
-0.242995
-0.269403
-0.238253
-0.225483
-0.276293
-0.246027
-0.232912
-0.27651
-0.261472
-0.286026
-0.267812
-0.276508
-0.27932
-0.300922
-0.260817
-0.31122
-0.269826
-0.268565
-0.239843
-0.221023
-0.210383
-0.254919
-0.227459
-0.224795
-0.251204
-0.300668
-0.251696
-0.306897
-0.241209
-0.312357
-0.289701
-0.302013
-0.236179
-0.324806
-0.208829
-0.315142
-0.209851
-0.321473
-0.261135
-0.219465
-0.257848
-0.220661
-0.262821
-0.250075
-0.188237
-0.204203
-0.196592
-0.259947
-0.233711
-0.276948
-0.26918
-0.228836
-0.299151
-0.251634
-0.267337
-0.281696
-0.243837
-0.282343
-0.251042
-0.235359
-0.294819
-0.257954
-0.197047
-0.227913
-0.262896
-0.266311
-0.211065
-0.288328
-0.197473
-0.248015
-0.218096
-0.289738
-0.276751
-0.238558
-0.236925
-0.259786
-0.235596
-0.244694
-0.235227
-0.285512
-0.255554
-0.274877
-0.282119
-0.27602
-0.253567
-0.228404
-0.279848
-0.307062
-0.261653
-0.271458
-0.293566
-0.237479
-0.204047
-0.209652
-0.228131
-0.226575
-0.214189
-0.237626
-0.249244
-0.21663
-0.23255
-0.197579
-0.234524
-0.213802
-0.26422
-0.255524
-0.216765
-0.231878
-0.295648
-0.259324
-0.221927
-0.294375
-0.260311
-0.30002
-0.23611
-0.210228
-0.219845
-0.253988
-0.300755
-0.180771
-0.178526
-0.18531
-0.201289
-0.182069
-0.176818
-0.193502
-0.180654
-0.197214
-0.196846
-0.167426
-0.204625
-0.184291
-0.1689
-0.178894
-0.191116
-0.273717
-0.209906
-0.229557
-0.193437
-0.169223
-0.185201
-0.261215
-0.176991
-0.226408
-0.193219
-0.175201
-0.215946
-0.195263
-0.209537
-0.217713
-0.196438
-0.220556
-0.181173
-0.233125
-0.227701
-0.191779
-0.263061
-0.195884
-0.175419
-0.188689
-0.264662
-0.237644
-0.192677
-0.224572
-0.277849
-0.181737
-0.161165
-0.168715
-0.169731
-0.177279
-0.223901
-0.248466
-0.183179
-0.187407
-0.253192
-0.222128
-0.194443
-0.194119
-0.187853
-0.181321
-0.164961
-0.192794
-0.183821
-0.183881
-0.198462
-0.201778
-0.175592
-0.19846
-0.1912
-0.185987
-0.208344
-0.221457
-0.213325
-0.185201
-0.223653
-0.197072
-0.250079
-0.206954
-0.521058
-0.546817
-0.514968
-0.542557
-0.522458
-0.513541
-0.545615
-0.526657
-0.511454
-0.510701
-0.528593
-0.515455
-0.51414
-0.516636
-0.518593
-0.519894
-0.541739
-0.51151
-0.543622
-0.518646
-0.512811
-0.544544
-0.515309
-0.507025
-0.537997
-0.539687
-0.514509
-0.507988
-0.540669
-0.517333
-0.500166
-0.502042
-0.515882
-0.511777
-0.51275
-0.516425
-0.538926
-0.510049
-0.542549
-0.517432
-0.508972
-0.541764
-0.510595
-0.509758
-1.01733
-1.02548
-0.98628
-1.01538
-1.01734
-0.987632
-1.0155
-1.06294
-1.06099
-1.0519
-1.07808
-1.05851
-1.07169
-1.06419
-1.02266
-1.02587
-1.0154
-0.9832
-1.02434
-1.02063
-0.989017
-1.06025
-1.06342
-1.07874
-1.08158
-1.07964
-1.06148
-1.05744
-0.269217
-0.274283
-0.265969
-0.268561
-0.266235
-0.274763
-0.269988
-0.240374
-0.238501
-0.243593
-0.268821
-0.247006
-0.222968
-0.250078
-0.244874
-0.274435
-0.232664
-0.29713
-0.242249
-0.272155
-0.236976
-0.23552
-0.228887
-0.227265
-0.218956
-0.231506
-0.237822
-0.22347
-0.247171
-0.244612
-0.292399
-0.267763
-0.269931
-0.237411
-0.251534
-0.513294
-0.487651
-0.487731
-0.495351
-0.515712
-0.485493
-0.486027
-0.509318
-0.486966
-0.486524
-0.512554
-0.505528
-0.484446
-0.503358
-0.485792
-0.507544
-0.489125
-0.510159
-0.48752
-0.511886
-0.493857
-0.482237
-0.482712
-0.509566
-0.484389
-0.484176
-0.505499
-0.477212
-0.489193
-0.478459
-0.504967
-0.478229
-0.478989
-0.498004
-0.472993
-0.474966
-0.496535
-0.50022
-0.483291
-0.501765
-0.482257
-0.506966
-0.490167
-0.481163
-0.481115
-0.50846
-0.479608
-0.479993
-0.498564
-0.48032
-0.49757
-0.481076
-0.488355
-0.461717
-0.449585
-0.462044
-0.489753
-0.448333
-0.460534
-0.477285
-0.442455
-0.443341
-0.476683
-0.479456
-0.477868
-0.488994
-0.463093
-0.480564
-0.458519
-0.482791
-0.458183
-0.489471
-0.462301
-0.450623
-0.467798
-0.494292
-0.448947
-0.461691
-0.574017
-0.574961
-0.488134
-0.447193
-0.463736
-0.473183
-0.48652
-0.448847
-0.474705
-0.468616
-0.43802
-0.441599
-0.466276
-0.480936
-0.474972
-0.483624
-0.472146
-0.489176
-0.464524
-0.451065
-0.477042
-0.491897
-0.449491
-0.475681
-0.478938
-0.468787
-0.476926
-0.47054
-0.563097
-0.60643
-0.563159
-0.607215
-0.571221
-0.563549
-0.580696
-0.577766
-0.445609
-0.44585
-0.408127
-0.431745
-0.45139
-0.409852
-0.442776
-0.395975
-0.340351
-0.354229
-0.353304
-0.395924
-0.420664
-0.432258
-0.416116
-0.434051
-0.430466
-0.437684
-0.43302
-0.435655
-0.620498
-0.597331
-0.59716
-0.556163
-0.557985
-0.62075
-0.594882
-0.598512
-0.553802
-0.554364
-0.613776
-0.609603
-0.608506
-0.580755
-0.553045
-0.581761
-0.611375
-0.604426
-0.606979
-0.583638
-0.55326
-0.582563
-0.374932
-0.320015
-0.333201
-0.33447
-0.373823
-0.412658
-0.433237
-0.414879
-0.432312
-0.412483
-0.432391
-0.412013
-0.432841
-0.603483
-0.591475
-0.60315
-0.573601
-0.590193
-0.591258
-0.591735
-0.573385
-0.591658
-0.589797
-0.600249
-0.602548
-0.594275
-0.601263
-0.599912
-0.582381
-0.552441
-0.582473
-0.59885
-0.60111
-0.600347
-0.583683
-0.553168
-0.582934
-0.548315
-0.547598
-0.361413
-0.297096
-0.308534
-0.308274
-0.360733
-0.398814
-0.405692
-0.39457
-0.413158
-0.396265
-0.419128
-0.397196
-0.412974
-0.564984
-0.596612
-0.597227
-0.595251
-0.585218
-0.591036
-0.560613
-0.600757
-0.595238
-0.591315
-0.58394
-0.591695
-0.544193
-0.584574
-0.581819
-0.571046
-0.568854
-0.573644
-0.54037
-0.568158
-0.577329
-0.577484
-0.570146
-0.575984
-0.367272
-0.301127
-0.310524
-0.310154
-0.368198
-0.388924
-0.401672
-0.392537
-0.393779
-0.386824
-0.378195
-0.384318
-0.386534
-0.532116
-0.464648
-0.463303
-0.468115
-0.520623
-0.547801
-0.530045
-0.525577
-0.549593
-0.551965
-0.540691
-0.485379
-0.464903
-0.464659
-0.483396
-0.48247
-0.472216
-0.482396
-0.487717
-0.553445
-0.484578
-0.554101
-0.486598
-0.565826
-0.568025
-0.566858
-0.492523
-0.552197
-0.49261
-0.555262
-0.492378
-0.566374
-0.567857
-0.566552
-0.549929
-0.57152
-0.551431
-0.543885
-0.568721
-0.546568
-0.547029
-0.544221
-0.570117
-0.558982
-0.559282
-0.561801
-0.571289
-0.560449
-0.543843
-0.54429
-0.550703
-0.539119
-0.551171
-0.556959
-0.561033
-0.557059
-0.558466
-0.558679
-0.558245
-0.545911
-0.565613
-0.553707
-0.539472
-0.539459
-0.569112
-0.557412
-0.557365
-0.557574
-0.569069
-0.55717
-0.540498
-0.540197
-0.377793
-0.37529
-0.304128
-0.387439
-0.394473
-0.311983
-0.395303
-0.359829
-0.32521
-0.31009
-0.310331
-0.362352
-0.349304
-0.327845
-0.347702
-0.328589
-0.350734
-0.330314
-0.352439
-0.32945
-0.473287
-0.453063
-0.465149
-0.471956
-0.455282
-0.474246
-0.471725
-0.526007
-0.548833
-0.525916
-0.475594
-0.467676
-0.459507
-0.47774
-0.475944
-0.457956
-0.476386
-0.52277
-0.547257
-0.524357
-0.461291
-0.451784
-0.449372
-0.461418
-0.457906
-0.44903
-0.465545
-0.454724
-0.457417
-0.511913
-0.452821
-0.458961
-0.4583
-0.447039
-0.453549
-0.443701
-0.45595
-0.455506
-0.44617
-0.457652
-0.466238
-0.512647
-0.461307
-0.462533
-0.346821
-0.321881
-0.30719
-0.308634
-0.342889
-0.344937
-0.327138
-0.346161
-0.32677
-0.345217
-0.327158
-0.342742
-0.328367
-0.442937
-0.438252
-0.420779
-0.417824
-0.418537
-0.445336
-0.436172
-0.450762
-0.419924
-0.439802
-0.439099
-0.419574
-0.449935
-0.440501
-0.452639
-0.44494
-0.423385
-0.442007
-0.420301
-0.454972
-0.443031
-0.44042
-0.415481
-0.413998
-0.432238
-0.438687
-0.416013
-0.433792
-0.447421
-0.438466
-0.446151
-0.433804
-0.447841
-0.435702
-0.444838
-0.448091
-0.455103
-0.508901
-0.449231
-0.454523
-0.450986
-0.440833
-0.451013
-0.440523
-0.452679
-0.450143
-0.438726
-0.443402
-0.451775
-0.506897
-0.452311
-0.440076
-0.555321
-0.558957
-0.560168
-0.555739
-0.555537
-0.555608
-0.556214
-0.562283
-0.56141
-0.553103
-0.554116
-0.554291
-0.557146
-0.560476
-0.556625
-0.540544
-0.549308
-0.549472
-0.550007
-0.540785
-0.54969
-0.559784
-0.55596
-0.556258
-0.549626
-0.558379
-0.552769
-0.503672
-0.53859
-0.538675
-0.536596
-0.505148
-0.53964
-0.557704
-0.552702
-0.552183
-0.554494
-0.557509
-0.552272
-0.538123
-0.547741
-0.547334
-0.54791
-0.536459
-0.54548
-0.558771
-0.554814
-0.554384
-0.41697
-0.472658
-0.419127
-0.333881
-0.376153
-0.374366
-0.374283
-0.334865
-0.37493
-0.472052
-0.420956
-0.418857
-0.484582
-0.425029
-0.425237
-0.375136
-0.334253
-0.376142
-0.470331
-0.419961
-0.420916
-0.377251
-0.334419
-0.377834
-0.294684
-0.271785
-0.269746
-0.267776
-0.296701
-0.305229
-0.296746
-0.303342
-0.298312
-0.307053
-0.301807
-0.309213
-0.299956
-0.434134
-0.409027
-0.408179
-0.431728
-0.407757
-0.429813
-0.437657
-0.448545
-0.418526
-0.437501
-0.435441
-0.448635
-0.418458
-0.436627
-0.435555
-0.409515
-0.411579
-0.430418
-0.43669
-0.409878
-0.429248
-0.450544
-0.444978
-0.435433
-0.444496
-0.425504
-0.439377
-0.461355
-0.415783
-0.387188
-0.383147
-0.410592
-0.409136
-0.384811
-0.417295
-0.441354
-0.428161
-0.427149
-0.430635
-0.439794
-0.425926
-0.426398
-0.414327
-0.380913
-0.406401
-0.380128
-0.411862
-0.407421
-0.382698
-0.441894
-0.428071
-0.431115
-0.425216
-0.425569
-0.42727
-0.442316
-0.284897
-0.254643
-0.252473
-0.255731
-0.282441
-0.299593
-0.295537
-0.301996
-0.29354
-0.297866
-0.290533
-0.295854
-0.292134
-0.377431
-0.371005
-0.338002
-0.330029
-0.335289
-0.380125
-0.368056
-0.411344
-0.416201
-0.416806
-0.392224
-0.418532
-0.409247
-0.395834
-0.410925
-0.397774
-0.417235
-0.414709
-0.415486
-0.413897
-0.395522
-0.377829
-0.32867
-0.331605
-0.364175
-0.374768
-0.335632
-0.367509
-0.406947
-0.369555
-0.394221
-0.369028
-0.397684
-0.373228
-0.403758
-0.438789
-0.439729
-0.428311
-0.436914
-0.442285
-0.435357
-0.422908
-0.40894
-0.372709
-0.405782
-0.380333
-0.412359
-0.400841
-0.376201
-0.437201
-0.41687
-0.433794
-0.431319
-0.433101
-0.419693
-0.434707
-0.56082
-0.545381
-0.5493
-0.536809
-0.497115
-0.532065
-0.559132
-0.551766
-0.550354
-0.507873
-0.490832
-0.433984
-0.524102
-0.548829
-0.56457
-0.545311
-0.415947
-0.432455
-0.493585
-0.411036
-0.501852
-0.507663
-0.434178
-0.410886
-0.410916
-0.504664
-0.564347
-0.531954
-0.541972
-0.511143
-0.551551
-0.499721
-0.440231
-0.42339
-0.430312
-0.440299
-0.427894
-0.436246
-0.430848
-0.427041
-0.432786
-0.417191
-0.424025
-0.418668
-0.422479
-0.429437
-0.456984
-0.54169
-0.460803
-0.460075
-0.46174
-0.52116
-0.566074
-0.522231
-0.431011
-0.434206
-0.443581
-0.454508
-0.433933
-0.422737
-0.452524
-0.428154
-0.445199
-0.440548
-0.428583
-0.430403
-0.447996
-0.426949
-0.564372
-0.518878
-0.52222
-0.285666
-0.490351
-0.558498
-0.559755
-0.675822
-0.777178
-0.675384
-0.491925
-0.562057
-0.560928
-0.67417
-0.777013
-0.674865
-0.51681
-0.603109
-0.425689
-0.511098
-0.425533
-0.405613
-0.414866
-0.405115
-0.391178
-0.399814
-0.36629
-0.362384
-0.372501
-0.51337
-0.429763
-0.4335
-0.560766
-0.459468
-0.558748
-0.457316
-0.551423
-0.558363
-0.491077
-0.425373
-0.488331
-0.656358
-0.563171
-0.56423
-0.565026
-0.654844
-0.564651
-0.423798
-0.482424
-0.485791
-0.501425
-0.415821
-0.420561
-0.41172
-0.403802
-0.427597
-0.42522
-0.400825
-0.50509
-0.428109
-0.424768
-0.391341
-0.450915
-0.428335
-0.437904
-0.396289
-0.495335
-0.44201
-0.49869
-0.597632
-0.606025
-0.591816
-0.601534
-0.444126
-0.504756
-0.502694
-0.236917
-0.167544
-0.192045
-0.191162
-0.237526
-0.25882
-0.260849
-0.259684
-0.259895
-0.258873
-0.260361
-0.259331
-0.260115
-0.366572
-0.319511
-0.319692
-0.354593
-0.322818
-0.357548
-0.363399
-0.404063
-0.414417
-0.388507
-0.405466
-0.407298
-0.411828
-0.385606
-0.368841
-0.319807
-0.328101
-0.360851
-0.372077
-0.324747
-0.358297
-0.401476
-0.381466
-0.404528
-0.407515
-0.41021
-0.384714
-0.3983
-0.335791
-0.281418
-0.293758
-0.339025
-0.335249
-0.273316
-0.339684
-0.379964
-0.403298
-0.363795
-0.391392
-0.379135
-0.402796
-0.365696
-0.332012
-0.288865
-0.327257
-0.249066
-0.327976
-0.331606
-0.26211
-0.38086
-0.36951
-0.391931
-0.403063
-0.402583
-0.367343
-0.38267
-0.235262
-0.163485
-0.187376
-0.188063
-0.234586
-0.257841
-0.259965
-0.258725
-0.259305
-0.257439
-0.258255
-0.256697
-0.258895
-0.291598
-0.312
-0.27173
-0.281133
-0.275015
-0.288839
-0.311184
-0.34733
-0.412779
-0.376095
-0.344526
-0.410409
-0.343051
-0.345855
-0.350121
-0.34791
-0.408256
-0.375636
-0.408504
-0.354393
-0.345973
-0.295728
-0.282104
-0.282236
-0.312115
-0.297261
-0.27948
-0.311981
-0.322067
-0.275036
-0.318263
-0.250509
-0.319965
-0.247763
-0.319107
-0.379275
-0.404351
-0.362455
-0.389689
-0.379385
-0.405782
-0.360874
-0.325819
-0.276506
-0.324612
-0.251265
-0.328047
-0.32183
-0.248146
-0.378034
-0.358526
-0.389023
-0.408434
-0.405848
-0.359755
-0.37852
-0.45414
-0.552281
-0.450892
-0.454164
-0.454433
-0.427085
-0.419895
-0.435896
-0.42126
-0.429873
-0.416979
-0.432532
-0.447563
-0.546442
-0.454512
-0.448466
-0.452117
-0.427154
-0.427253
-0.420366
-0.412606
-0.415548
-0.431942
-0.424637
-0.614868
-0.629582
-0.629192
-0.655789
-0.707446
-0.656219
-0.612951
-0.629355
-0.628508
-0.657658
-0.707512
-0.655046
-0.460308
-0.453562
-0.505558
-0.527236
-0.4546
-0.45866
-0.532889
-0.42982
-0.414145
-0.413049
-0.4343
-0.413312
-0.431363
-0.433483
-0.428936
-0.433033
-0.413079
-0.413089
-0.412917
-0.432965
-0.42879
-0.4624
-0.507675
-0.459052
-0.540399
-0.464871
-0.456731
-0.537268
-0.48026
-0.435785
-0.461131
-0.436098
-0.452735
-0.494012
-0.431194
-0.504032
-0.462665
-0.400609
-0.417213
-0.457916
-0.50224
-0.420118
-0.500337
-0.422498
-0.44918
-0.3999
-0.452738
-0.498095
-0.420432
-0.470802
-0.434979
-0.442813
-0.423802
-0.460532
-0.450791
-0.428871
-0.606314
-0.624001
-0.623579
-0.646386
-0.688612
-0.647494
-0.610016
-0.625212
-0.626683
-0.647684
-0.687285
-0.644943
-0.488972
-0.466584
-0.501122
-0.557497
-0.465881
-0.51502
-0.555048
-0.4392
-0.415606
-0.41307
-0.43483
-0.418151
-0.434052
-0.436164
-0.444896
-0.437618
-0.413129
-0.424678
-0.419493
-0.437893
-0.457889
-0.476844
-0.507238
-0.460809
-0.546555
-0.469238
-0.462978
-0.548449
-0.249269
-0.222241
-0.217292
-0.169348
-0.214715
-0.167516
-0.246174
-0.203914
-0.212326
-0.178062
-0.208163
-0.169962
-0.523582
-0.587194
-0.585896
-0.671443
-0.741954
-0.673977
-0.522941
-0.583373
-0.584415
-0.680254
-0.746742
-0.677151
-0.518979
-0.58354
-0.580768
-0.671785
-0.762386
-0.672454
-0.513276
-0.571137
-0.573273
-0.676995
-0.763172
-0.674093
-0.469635
-0.413553
-0.472403
-0.659702
-0.562502
-0.56194
-0.55904
-0.659783
-0.560294
-0.416403
-0.479717
-0.47652
-0.517982
-0.518866
-0.483893
-0.614044
-0.499995
-0.514034
-0.502629
-0.53993
-0.569013
-0.471055
-0.481014
-0.563727
-0.546012
-0.477239
-0.533636
-0.465018
-0.550476
-0.466688
-0.55823
-0.515816
-0.474543
-0.522573
-0.614223
-0.535329
-0.500141
-0.52992
-0.522014
-0.498275
-0.451748
-0.496203
-0.450107
-0.651893
-0.516575
-0.517983
-0.52291
-0.652165
-0.520136
-0.503638
-0.454278
-0.450427
-0.558295
-0.578407
-0.563976
-0.646116
-0.558531
-0.548829
-0.53145
-0.647428
-0.540686
-0.581962
-0.575171
-0.568869
-0.548278
-0.581905
-0.616844
-0.510976
-0.554564
-0.569057
-0.508585
-0.556282
-0.574233
-0.484455
-0.483595
-0.551628
-0.578613
-0.488511
-0.541754
-0.616478
-0.546775
-0.502729
-0.536374
-0.556685
-0.505935
-0.561866
-0.495253
-0.588583
-0.487032
-0.583882
-0.566961
-0.491891
-0.487771
-0.524939
-0.478253
-0.651307
-0.515145
-0.51527
-0.516504
-0.657627
-0.515915
-0.519823
-0.461142
-0.469758
-0.18001
-0.111598
-0.135436
-0.130766
-0.191084
-0.191155
-0.219574
-0.1924
-0.219634
-0.206658
-0.229096
-0.218359
-0.22456
-0.307714
-0.296732
-0.284221
-0.312211
-0.293781
-0.312248
-0.310517
-0.337062
-0.416467
-0.34319
-0.374536
-0.339745
-0.420313
-0.342174
-0.303357
-0.283746
-0.285613
-0.3119
-0.299872
-0.289504
-0.311818
-0.335189
-0.340472
-0.37459
-0.42713
-0.424043
-0.341663
-0.332846
-0.338175
-0.271544
-0.264528
-0.299103
-0.295737
-0.269634
-0.338779
-0.38088
-0.399798
-0.325055
-0.350973
-0.378169
-0.402698
-0.327557
-0.265388
-0.267785
-0.269538
-0.268964
-0.336676
-0.262549
-0.291625
-0.265909
-0.334444
-0.293999
-0.267903
-0.382905
-0.332843
-0.353131
-0.408028
-0.40507
-0.329481
-0.384132
-0.119433
-0.0961243
-0.112284
-0.089641
-0.117669
-0.0946559
-0.114549
-0.185055
-0.216597
-0.188282
-0.215408
-0.182373
-0.210205
-0.178782
-0.212665
-0.251815
-0.242015
-0.245855
-0.230403
-0.242557
-0.254505
-0.237444
-0.247581
-0.232652
-0.245075
-0.234881
-0.324575
-0.360499
-0.297895
-0.261609
-0.361839
-0.322935
-0.264478
-0.326823
-0.272161
-0.364297
-0.300924
-0.363544
-0.328414
-0.267973
-0.249577
-0.241673
-0.237695
-0.254429
-0.248915
-0.227398
-0.237719
-0.231553
-0.246984
-0.239606
-0.234044
-0.327517
-0.254314
-0.285653
-0.257479
-0.287606
-0.259606
-0.325403
-0.372112
-0.396535
-0.322983
-0.344457
-0.375034
-0.393094
-0.321361
-0.262194
-0.261034
-0.329243
-0.254275
-0.289566
-0.2638
-0.331777
-0.287202
-0.261195
-0.369816
-0.320741
-0.344621
-0.387599
-0.390135
-0.322075
-0.367673
-0.260401
-0.262634
-0.440313
-0.418398
-0.40752
-0.419975
-0.427047
-0.412801
-0.432404
-0.481673
-0.467081
-0.413159
-0.397242
-0.493795
-0.470378
-0.410071
-0.446013
-0.421136
-0.436897
-0.418732
-0.453458
-0.430595
-0.415826
-0.469644
-0.401649
-0.396214
-0.475678
-0.473186
-0.406742
-0.456743
-0.601109
-0.61811
-0.622488
-0.67049
-0.732588
-0.668459
-0.603521
-0.628044
-0.626053
-0.657041
-0.725295
-0.662657
-0.378826
-0.373193
-0.372587
-0.381387
-0.369365
-0.38248
-0.377898
-0.379629
-0.383121
-0.359138
-0.360155
-0.386105
-0.376687
-0.363119
-0.382236
-0.36923
-0.361464
-0.392378
-0.388776
-0.365486
-0.385935
-0.376407
-0.370228
-0.363985
-0.372933
-0.373493
-0.366984
-0.37578
-0.350797
-0.337873
-0.352985
-0.341573
-0.352278
-0.351555
-0.336227
-0.351241
-0.353569
-0.31666
-0.325204
-0.354985
-0.350087
-0.327039
-0.352816
-0.331394
-0.357034
-0.31949
-0.356625
-0.353369
-0.329738
-0.349288
-0.338449
-0.350478
-0.331915
-0.34845
-0.350947
-0.333338
-0.612251
-0.638612
-0.634951
-0.66647
-0.711056
-0.663792
-0.607238
-0.628084
-0.629705
-0.666313
-0.702557
-0.666806
-0.36702
-0.355051
-0.360375
-0.365307
-0.357496
-0.365088
-0.367087
-0.371221
-0.380262
-0.351844
-0.357826
-0.377381
-0.374046
-0.355096
-0.369636
-0.352522
-0.351824
-0.373285
-0.375447
-0.354579
-0.367573
-0.368134
-0.361125
-0.361563
-0.370431
-0.370945
-0.358218
-0.367673
-0.351662
-0.342916
-0.338267
-0.357177
-0.356663
-0.335722
-0.3527
-0.346899
-0.34747
-0.321332
-0.317194
-0.339881
-0.357149
-0.324183
-0.344438
-0.340359
-0.330251
-0.342277
-0.338358
-0.332827
-0.346047
-0.354441
-0.329293
-0.376129
-0.319822
-0.367961
-0.360391
-0.326899
-0.556254
-0.487031
-0.515126
-0.50749
-0.520471
-0.549275
-0.506007
-0.615771
-0.686495
-0.532769
-0.561255
-0.617642
-0.685534
-0.532863
-0.558745
-0.486262
-0.524319
-0.505683
-0.560843
-0.522311
-0.505494
-0.612605
-0.531956
-0.68274
-0.562681
-0.68367
-0.605812
-0.532992
-0.531358
-0.573225
-0.572691
-0.632995
-0.700056
-0.63316
-0.530422
-0.569757
-0.57135
-0.63306
-0.70059
-0.633615
-0.596031
-0.598528
-0.590541
-0.64459
-0.566525
-0.576997
-0.594117
-0.643703
-0.584932
-0.595632
-0.579425
-0.586164
-0.653741
-0.577736
-0.663115
-0.593699
-0.651773
-0.664768
-0.58007
-0.65837
-0.680068
-0.570676
-0.57767
-0.67789
-0.660527
-0.575588
-0.65561
-0.570919
-0.673265
-0.568479
-0.675261
-0.653585
-0.573135
-0.656735
-0.596997
-0.670639
-0.585258
-0.659053
-0.668221
-0.582869
-0.622825
-0.608045
-0.620563
-0.697506
-0.640644
-0.640983
-0.640391
-0.694905
-0.639298
-0.607474
-0.620176
-0.621394
-0.637144
-0.630782
-0.586343
-0.579051
-0.629071
-0.640035
-0.583786
-0.654626
-0.701251
-0.581747
-0.579845
-0.701027
-0.653996
-0.582108
-0.656222
-0.603034
-0.712491
-0.58675
-0.701712
-0.665358
-0.586633
-0.636143
-0.580113
-0.62725
-0.582339
-0.635373
-0.62828
-0.583081
-0.666491
-0.681146
-0.608153
-0.594886
-0.668422
-0.678944
-0.592626
-0.664419
-0.682113
-0.579994
-0.576078
-0.662862
-0.683067
-0.581864
-0.664018
-0.60542
-0.67371
-0.587935
-0.661805
-0.676147
-0.590251
-0.666011
-0.58555
-0.683668
-0.577508
-0.683634
-0.667037
-0.583767
-0.616957
-0.605656
-0.616759
-0.699506
-0.640998
-0.640939
-0.639195
-0.700061
-0.640023
-0.603767
-0.61926
-0.618193
-0.0725319
-0.0605951
-0.0768522
-0.0599101
-0.0566394
-0.0745222
-0.0747103
-0.0703786
-0.0382417
-0.126768
-0.0384659
-0.0702111
-0.126226
-0.070819
-0.125278
-0.042464
-0.03885
-0.0747954
-0.125208
-0.239933
-0.230572
-0.217396
-0.219834
-0.231378
-0.222244
-0.237018
-0.237673
-0.229362
-0.239777
-0.227547
-0.318574
-0.358214
-0.256426
-0.286892
-0.320213
-0.356629
-0.253274
-0.235674
-0.225157
-0.225727
-0.236101
-0.242079
-0.219183
-0.234721
-0.226693
-0.243964
-0.233087
-0.224541
-0.31619
-0.245726
-0.282934
-0.348697
-0.354136
-0.249879
-0.311418
-0.235089
-0.231613
-0.207992
-0.215564
-0.213981
-0.231454
-0.235855
-0.252686
-0.323278
-0.21889
-0.246281
-0.252407
-0.323521
-0.2202
-0.23034
-0.211494
-0.22921
-0.212539
-0.26128
-0.25984
-0.231377
-0.214743
-0.213512
-0.232067
-0.234744
-0.206812
-0.212204
-0.230929
-0.234494
-0.213056
-0.23124
-0.25303
-0.222594
-0.247562
-0.323928
-0.323688
-0.221203
-0.25376
-0.0725156
-0.0611109
-0.0757853
-0.0567349
-0.0564511
-0.0752664
-0.0730163
-0.0706695
-0.0385606
-0.127685
-0.0703915
-0.0389546
-0.128392
-0.0712161
-0.131024
-0.0384144
-0.0386564
-0.0721123
-0.129581
-0.243409
-0.224336
-0.227266
-0.20747
-0.227186
-0.242619
-0.225362
-0.225505
-0.19743
-0.22942
-0.193499
-0.255652
-0.285963
-0.28329
-0.254971
-0.258862
-0.271364
-0.237256
-0.240446
-0.273173
-0.26345
-0.236729
-0.254721
-0.230707
-0.272953
-0.23326
-0.272986
-0.253327
-0.232132
-0.225731
-0.198104
-0.195466
-0.225938
-0.245633
-0.209313
-0.228178
-0.229829
-0.246856
-0.228014
-0.228332
-0.237835
-0.206241
-0.217479
-0.233786
-0.215466
-0.231947
-0.243814
-0.249788
-0.321961
-0.218753
-0.24314
-0.251366
-0.319193
-0.219753
-0.229873
-0.210817
-0.229394
-0.209841
-0.266263
-0.293978
-0.269135
-0.234162
-0.205944
-0.212357
-0.23065
-0.234015
-0.213577
-0.23049
-0.248666
-0.222705
-0.242963
-0.276788
-0.313951
-0.221442
-0.247546
-0.232324
-0.21151
-0.209252
-0.237712
-0.34425
-0.330307
-0.320793
-0.346168
-0.347195
-0.323878
-0.342901
-0.34651
-0.351135
-0.321238
-0.30651
-0.347876
-0.349481
-0.318724
-0.345408
-0.332174
-0.348685
-0.328147
-0.346464
-0.347991
-0.32623
-0.344962
-0.311663
-0.302768
-0.343874
-0.347366
-0.315818
-0.343008
-0.438427
-0.390894
-0.411844
-0.396761
-0.439517
-0.410927
-0.392214
-0.512476
-0.609878
-0.415185
-0.523935
-0.494097
-0.426784
-0.443854
-0.395934
-0.413267
-0.40274
-0.435358
-0.41464
-0.398557
-0.509805
-0.437696
-0.535107
-0.508566
-0.429612
-0.342183
-0.310244
-0.320322
-0.347024
-0.309451
-0.341924
-0.347637
-0.340348
-0.334856
-0.271729
-0.292485
-0.334781
-0.340787
-0.294179
-0.34011
-0.296294
-0.27294
-0.334751
-0.33468
-0.295221
-0.340007
-0.34262
-0.319824
-0.307511
-0.349579
-0.343439
-0.308672
-0.348387
-0.383872
-0.297469
-0.386374
-0.307449
-0.379668
-0.380972
-0.293702
-0.358579
-0.294842
-0.25134
-0.265946
-0.327425
-0.34999
-0.269173
-0.360429
-0.274277
-0.327749
-0.248562
-0.328217
-0.358591
-0.271159
-0.385637
-0.304174
-0.36656
-0.286277
-0.381721
-0.373159
-0.291038
-0.435647
-0.397304
-0.419936
-0.407906
-0.439724
-0.418355
-0.404375
-0.47819
-0.591594
-0.410462
-0.463314
-0.475928
-0.594461
-0.40933
-0.430101
-0.395583
-0.41287
-0.399535
-0.427499
-0.415653
-0.399674
-0.486936
-0.419059
-0.561631
-0.458799
-0.601696
-0.485127
-0.415962
-0.347347
-0.301892
-0.318091
-0.359504
-0.303799
-0.349554
-0.355969
-0.340141
-0.333518
-0.265904
-0.290914
-0.330785
-0.340416
-0.288754
-0.339767
-0.281771
-0.262173
-0.315129
-0.325241
-0.285624
-0.339034
-0.345278
-0.318466
-0.306465
-0.350822
-0.343949
-0.305298
-0.353124
-0.336727
-0.317108
-0.334057
-0.347713
-0.334488
-0.319463
-0.350252
-0.329612
-0.32806
-0.292061
-0.308675
-0.331698
-0.326622
-0.306274
-0.327176
-0.301087
-0.323487
-0.289174
-0.324773
-0.325244
-0.303517
-0.339419
-0.336677
-0.324466
-0.35595
-0.341821
-0.322131
-0.353219
-0.609334
-0.498896
-0.590671
-0.520172
-0.58798
-0.602922
-0.51939
-0.642483
-0.694193
-0.542517
-0.566363
-0.645622
-0.693058
-0.543191
-0.616435
-0.496629
-0.574326
-0.5178
-0.621572
-0.581706
-0.518957
-0.639636
-0.544058
-0.691449
-0.566487
-0.692035
-0.637177
-0.543419
-0.579926
-0.500931
-0.554088
-0.517954
-0.517361
-0.551721
-0.581325
-0.626708
-0.691038
-0.539726
-0.564263
-0.626284
-0.691142
-0.540307
-0.578657
-0.500545
-0.516292
-0.547721
-0.577532
-0.51702
-0.549607
-0.62726
-0.540996
-0.564385
-0.691627
-0.691371
-0.540533
-0.627876
-0.635798
-0.58278
-0.580695
-0.623957
-0.624983
-0.582651
-0.635734
-0.654946
-0.70249
-0.57783
-0.579496
-0.703756
-0.654507
-0.579212
-0.655778
-0.5796
-0.578035
-0.70627
-0.705282
-0.579491
-0.656181
-0.63544
-0.580534
-0.626623
-0.582427
-0.635486
-0.625625
-0.582342
-0.699265
-0.620978
-0.687034
-0.63812
-0.690362
-0.685595
-0.623042
-0.767671
-0.876049
-0.643623
-0.631168
-0.867358
-0.775157
-0.627733
-0.760659
-0.622412
-0.851152
-0.640557
-0.859501
-0.753358
-0.625273
-0.708122
-0.638206
-0.683925
-0.627424
-0.71735
-0.684362
-0.624807
-0.628414
-0.584232
-0.606177
-0.579247
-0.584072
-0.630145
-0.603912
-0.656962
-0.714415
-0.581859
-0.582762
-0.713878
-0.656159
-0.582657
-0.657493
-0.58253
-0.581632
-0.712686
-0.713251
-0.582648
-0.657894
-0.626221
-0.579043
-0.583458
-0.599862
-0.6236
-0.583743
-0.601901
-0.61735
-0.641255
-0.585137
-0.592671
-0.645101
-0.611293
-0.586022
-0.634411
-0.709746
-0.583667
-0.582001
-0.710223
-0.633913
-0.582042
-0.634929
-0.582095
-0.711633
-0.583821
-0.71076
-0.635876
-0.581716
-0.623963
-0.594272
-0.653207
-0.58868
-0.630555
-0.649226
-0.587522
-0.738228
-0.707998
-0.642686
-0.636359
-0.744345
-0.699613
-0.63402
-0.78894
-0.884108
-0.633693
-0.654916
-0.782033
-0.892333
-0.63704
-0.73229
-0.641344
-0.685828
-0.629381
-0.725359
-0.69187
-0.632063
-0.795273
-0.642369
-0.908235
-0.65795
-0.900125
-0.801846
-0.639553
-0.616311
-0.594184
-0.582487
-0.579216
-0.582618
-0.614098
-0.595098
-0.654538
-0.714855
-0.583009
-0.582783
-0.715343
-0.655369
-0.582964
-0.653871
-0.582918
-0.583135
-0.716558
-0.715993
-0.582866
-0.652998
-0.618572
-0.579216
-0.583129
-0.598117
-0.621077
-0.582965
-0.59649
-0.0537814
-0.0388579
-0.0560159
-0.0433046
-0.0423484
-0.0542862
-0.0538653
-0.0479444
-0.0448281
-0.0416712
-0.0624946
-0.0514905
-0.0553691
-0.0646332
-0.0496781
-0.112889
-0.0347469
-0.0376862
-0.0537897
-0.103094
-0.241596
-0.225997
-0.212116
-0.234291
-0.225707
-0.23369
-0.241829
-0.22439
-0.20004
-0.225769
-0.204937
-0.260014
-0.275659
-0.246277
-0.251094
-0.262454
-0.272881
-0.248331
-0.271956
-0.321537
-0.32035
-0.269628
-0.225212
-0.213296
-0.209347
-0.2281
-0.241428
-0.211098
-0.225869
-0.231967
-0.24332
-0.225213
-0.232558
-0.260028
-0.251256
-0.253474
-0.27515
-0.273426
-0.25021
-0.260138
-0.227286
-0.214034
-0.1971
-0.221546
-0.219149
-0.2123
-0.228897
-0.245792
-0.264779
-0.233057
-0.245536
-0.244963
-0.264482
-0.236033
-0.246171
-0.222493
-0.246189
-0.222991
-0.285498
-0.324766
-0.323769
-0.286603
-0.248465
-0.226414
-0.22526
-0.249477
-0.225522
-0.194931
-0.213913
-0.209335
-0.22465
-0.216794
-0.210352
-0.247212
-0.240583
-0.246724
-0.265861
-0.264763
-0.238329
-0.248706
-0.0405511
-0.0158343
-0.0257161
-0.016336
-0.0230642
-0.0318238
-0.034342
-0.0459085
-0.0369819
-0.0547189
-0.0274389
-0.0498591
-0.0324562
-0.0501386
-0.0409001
-0.0405148
-0.0201302
-0.0215456
-0.026318
-0.0348172
-0.0454326
-0.193535
-0.166523
-0.188832
-0.125479
-0.186917
-0.195698
-0.163684
-0.20899
-0.177666
-0.205895
-0.180883
-0.250187
-0.288835
-0.286484
-0.252964
-0.205249
-0.22058
-0.210276
-0.184939
-0.222329
-0.204324
-0.187725
-0.20897
-0.194563
-0.228651
-0.214373
-0.226491
-0.211186
-0.191901
-0.212797
-0.188534
-0.18494
-0.215898
-0.18984
-0.118375
-0.187223
-0.157613
-0.190184
-0.181835
-0.159113
-0.216435
-0.183252
-0.200878
-0.199687
-0.205422
-0.201385
-0.214492
-0.237453
-0.259795
-0.230258
-0.240145
-0.240334
-0.256611
-0.227402
-0.241891
-0.219623
-0.243391
-0.217836
-0.27541
-0.308231
-0.311754
-0.272638
-0.218558
-0.186475
-0.211156
-0.205986
-0.220959
-0.208003
-0.203638
-0.235403
-0.222471
-0.239672
-0.252128
-0.254964
-0.225682
-0.232996
-0.23956
-0.212709
-0.215288
-0.237209
-0.35819
-0.291509
-0.279808
-0.346243
-0.351545
-0.28232
-0.35098
-0.359286
-0.297098
-0.26892
-0.254963
-0.357832
-0.296532
-0.269205
-0.340207
-0.336825
-0.367127
-0.294427
-0.362361
-0.286643
-0.376726
-0.357233
-0.284164
-0.357701
-0.268845
-0.257004
-0.301974
-0.299219
-0.269559
-0.350972
-0.471203
-0.350229
-0.335748
-0.422483
-0.471227
-0.427239
-0.347887
-0.505294
-0.508831
-0.360918
-0.35462
-0.502557
-0.512803
-0.358038
-0.510068
-0.364025
-0.523631
-0.363983
-0.518672
-0.515165
-0.360592
-0.46508
-0.334737
-0.429333
-0.342888
-0.460191
-0.429809
-0.345819
-0.295969
-0.239464
-0.248527
-0.315211
-0.238488
-0.299879
-0.310597
-0.25431
-0.270283
-0.244421
-0.234287
-0.266233
-0.25486
-0.234226
-0.244455
-0.300258
-0.300113
-0.24518
-0.233777
-0.255714
-0.23351
-0.243754
-0.265619
-0.264841
-0.233184
-0.257904
-0.289662
-0.244733
-0.233817
-0.291236
-0.253534
-0.238487
-0.302876
-0.243805
-0.233723
-0.246074
-0.22103
-0.246285
-0.245604
-0.233748
-0.265464
-0.284737
-0.267582
-0.273533
-0.269114
-0.282678
-0.281149
-0.270424
-0.242921
-0.233938
-0.228142
-0.232218
-0.235903
-0.242286
-0.23503
-0.248034
-0.23938
-0.242493
-0.232207
-0.240507
-0.250027
-0.238595
-0.26473
-0.247106
-0.256003
-0.263386
-0.238559
-0.219168
-0.243686
-0.230512
-0.241161
-0.242308
-0.231056
-0.44836
-0.336581
-0.327882
-0.408646
-0.446699
-0.411326
-0.337166
-0.496553
-0.503767
-0.350652
-0.352207
-0.498872
-0.499842
-0.349386
-0.493103
-0.347265
-0.49185
-0.348905
-0.494921
-0.491459
-0.348042
-0.452348
-0.328919
-0.422558
-0.340808
-0.455417
-0.416835
-0.338364
-0.250614
-0.227269
-0.233191
-0.294612
-0.229301
-0.249015
-0.293883
-0.262599
-0.269482
-0.245849
-0.237373
-0.267201
-0.263621
-0.237489
-0.27156
-0.296434
-0.29925
-0.270619
-0.223466
-0.234139
-0.262133
-0.236747
-0.246455
-0.262957
-0.266348
-0.238077
-0.258245
-0.251578
-0.234523
-0.232433
-0.294498
-0.254665
-0.230054
-0.294213
-0.217468
-0.223336
-0.338179
-0.277346
-0.295489
-0.379193
-0.33759
-0.275551
-0.377193
-0.334941
-0.261361
-0.262798
-0.329728
-0.286915
-0.239861
-0.232273
-0.249473
-0.299961
-0.242486
-0.251589
-0.416966
-0.279992
-0.257986
-0.23852
-0.234763
-0.238991
-0.278253
-0.254986
-0.338563
-0.294766
-0.274527
-0.372918
-0.361762
-0.274577
-0.369736
-0.412609
-0.420304
-0.536628
-0.469179
-0.509406
-0.489084
-0.508942
-0.537306
-0.488762
-0.598017
-0.695081
-0.515846
-0.548648
-0.599285
-0.695287
-0.515782
-0.535509
-0.467951
-0.507781
-0.487413
-0.534715
-0.508064
-0.48776
-0.596831
-0.516661
-0.694788
-0.549486
-0.695379
-0.59516
-0.516528
-0.548204
-0.471743
-0.513832
-0.493096
-0.493205
-0.513859
-0.547292
-0.599287
-0.680666
-0.521524
-0.552678
-0.600397
-0.680889
-0.521351
-0.54935
-0.471865
-0.493613
-0.514121
-0.550013
-0.493607
-0.514153
-0.597934
-0.520606
-0.552348
-0.683504
-0.681855
-0.52082
-0.59695
-0.650901
-0.595066
-0.600408
-0.669607
-0.665749
-0.593304
-0.656141
-0.634858
-0.709759
-0.582862
-0.58247
-0.710383
-0.634058
-0.58287
-0.638384
-0.584825
-0.582648
-0.712965
-0.711401
-0.583581
-0.645105
-0.644655
-0.598813
-0.657462
-0.590282
-0.637585
-0.661678
-0.591792
-0.850876
-0.695038
-0.825119
-0.699804
-0.848617
-0.827983
-0.697119
-0.903996
-0.978358
-0.699665
-0.704841
-0.907026
-0.975924
-0.703135
-0.902331
-0.699487
-0.976048
-0.69816
-0.975762
-0.900871
-0.701436
-0.853162
-0.701614
-0.833998
-0.700708
-0.856155
-0.830763
-0.698894
-0.694641
-0.606783
-0.695701
-0.615115
-0.607471
-0.69385
-0.696115
-0.707578
-0.760866
-0.583651
-0.595364
-0.758783
-0.708777
-0.595001
-0.70672
-0.594269
-0.583611
-0.755547
-0.757258
-0.594827
-0.70563
-0.695152
-0.615431
-0.608169
-0.69647
-0.695844
-0.607745
-0.696211
-0.695392
-0.689164
-0.606691
-0.613701
-0.687534
-0.69612
-0.606525
-0.717756
-0.775312
-0.580227
-0.593058
-0.776304
-0.717066
-0.593156
-0.718107
-0.594247
-0.776707
-0.581187
-0.776995
-0.717983
-0.594113
-0.694396
-0.612597
-0.683674
-0.60531
-0.69297
-0.685912
-0.60547
-0.864616
-0.70899
-0.846379
-0.709248
-0.86733
-0.843276
-0.706373
-0.912876
-0.980845
-0.704571
-0.706598
-0.909879
-0.983166
-0.708632
-0.915574
-0.712831
-0.985337
-0.706032
-0.984861
-0.917796
-0.710401
-0.861794
-0.707373
-0.837018
-0.702441
-0.858873
-0.840194
-0.70453
-0.696994
-0.696217
-0.608596
-0.615952
-0.608344
-0.697506
-0.696178
-0.710943
-0.762668
-0.583994
-0.59536
-0.764507
-0.709746
-0.595645
-0.711726
-0.595761
-0.58375
-0.766855
-0.765538
-0.595519
-0.712809
-0.696802
-0.616131
-0.608181
-0.696369
-0.696214
-0.60848
-0.696491
0.0386177
0.0684969
0.0493434
0.0563502
0.0581224
0.050367
0.0375701
0.0372518
0.0563395
0.0591831
0.033462
0.0544412
0.0387427
0.0297789
0.0355147
0.0241659
0.0500039
0.0559114
0.0521415
0.0338006
0.0270169
-0.180549
-0.170751
-0.107241
-0.142419
-0.174644
-0.145291
-0.177367
-0.197945
-0.173345
-0.202027
-0.168999
-0.198196
-0.217683
-0.179714
-0.197257
-0.201476
-0.213913
-0.176035
-0.232607
-0.267301
-0.270438
-0.227998
-0.194045
-0.157221
-0.16419
-0.188338
-0.183742
-0.10963
-0.18199
-0.152016
-0.187017
-0.177887
-0.148517
-0.195105
-0.169249
-0.1933
-0.208017
-0.210595
-0.172414
-0.192235
-0.155
-0.152884
-0.0960415
-0.128869
-0.127043
-0.147886
-0.157708
-0.165698
-0.179303
-0.142729
-0.164393
-0.165162
-0.179875
-0.146255
-0.168031
-0.144077
-0.165568
-0.146228
-0.199931
-0.23599
-0.232622
-0.202755
-0.1711
-0.150711
-0.148819
-0.173419
-0.151993
-0.0961694
-0.125761
-0.140908
-0.148729
-0.125006
-0.144594
-0.168168
-0.152009
-0.167867
-0.184188
-0.182384
-0.149545
-0.170203
0.0439183
0.089362
0.0582576
0.0824521
0.0753184
0.0567054
0.0469351
0.0337742
0.0574912
0.0374821
0.0407217
0.0383834
0.0531628
0.0385241
0.0340768
0.0348003
0.0673936
0.0467794
0.0603307
0.0377107
0.0303267
-0.110845
-0.0801651
-0.10304
-0.0901593
-0.141816
-0.179006
-0.173593
-0.147523
-0.141356
-0.0981971
-0.152262
-0.123427
-0.146781
-0.146611
-0.101892
-0.11641
-0.103215
-0.096322
-0.122695
-0.170363
-0.178518
-0.128899
-0.150198
-0.171046
-0.177672
-0.1236
-0.160476
-0.141613
-0.162681
-0.139616
-0.185172
-0.214023
-0.216906
-0.182283
-0.168222
-0.117876
-0.146747
-0.173738
-0.175464
-0.120484
-0.166326
-0.157831
-0.134957
-0.137243
-0.155191
-0.245562
-0.21639
-0.224085
-0.24288
-0.244021
-0.225101
-0.244746
-0.268968
-0.275533
-0.271056
-0.264842
-0.238445
-0.231196
-0.226505
-0.214031
-0.241866
-0.226788
-0.223576
-0.264468
-0.270096
-0.270978
-0.264262
-0.248381
-0.216634
-0.241381
-0.226312
-0.246254
-0.248509
-0.226634
-0.234933
-0.217609
-0.209923
-0.220967
-0.223093
-0.220225
-0.233531
-0.26973
-0.248777
-0.256426
-0.265355
-0.47333
-0.28303
-0.275197
-0.423041
-0.471242
-0.429932
-0.281438
-0.416595
-0.392963
-0.263171
-0.270179
-0.409607
-0.398729
-0.273059
-0.428056
-0.281589
-0.414721
-0.268984
-0.407455
-0.439951
-0.278427
-0.466252
-0.272155
-0.440947
-0.274727
-0.455951
-0.434589
-0.277135
-0.213605
-0.211067
-0.217883
-0.222597
-0.208137
-0.213851
-0.223086
-0.202275
-0.191588
-0.179942
-0.18943
-0.192136
-0.201966
-0.192171
-0.246292
-0.251054
-0.24852
-0.246002
-0.240179
-0.237816
-0.243472
-0.234946
-0.20431
-0.198324
-0.183424
-0.195966
-0.194546
-0.19553
-0.205109
-0.212306
-0.214618
-0.202124
-0.22321
-0.212649
-0.204677
-0.222488
-0.238599
-0.233982
-0.236488
-0.235166
-0.175659
-0.170205
-0.162899
-0.187676
-0.184671
-0.178083
-0.158856
-0.192744
-0.195361
-0.188655
-0.199193
-0.194886
-0.205727
-0.201783
-0.197938
-0.166238
-0.165929
-0.134046
-0.119743
-0.167289
-0.164151
-0.139381
-0.17206
-0.165458
-0.176559
-0.148377
-0.169244
-0.179927
-0.153509
-0.167692
-0.150232
-0.162466
-0.133491
-0.160746
-0.169641
-0.146178
-0.19755
-0.206575
-0.204091
-0.20035
-0.414492
-0.260641
-0.266263
-0.452932
-0.401988
-0.452306
-0.263365
-0.393093
-0.385199
-0.252058
-0.265199
-0.400447
-0.379429
-0.262336
-0.383527
-0.254693
-0.365638
-0.24737
-0.371549
-0.37601
-0.257757
-0.429529
-0.268521
-0.444922
-0.270161
-0.44206
-0.450172
-0.267581
-0.204832
-0.190111
-0.203726
-0.214018
-0.192668
-0.202841
-0.215566
-0.197046
-0.189148
-0.168433
-0.185362
-0.187935
-0.198687
-0.182386
-0.230372
-0.232484
-0.234592
-0.227263
-0.240595
-0.238301
-0.24205
-0.242258
-0.19456
-0.176453
-0.165029
-0.183945
-0.185654
-0.179208
-0.192651
-0.207224
-0.206223
-0.198241
-0.218918
-0.208998
-0.195591
-0.217256
-0.236826
-0.24218
-0.233224
-0.243313
-0.26257
-0.204704
-0.250769
-0.276499
-0.258991
-0.208053
-0.280826
-0.255824
-0.228561
-0.231385
-0.252044
-0.287723
-0.32905
-0.292593
-0.322892
-0.266283
-0.25514
-0.2164
-0.289067
-0.269912
-0.211975
-0.285081
-0.28292
-0.311168
-0.278335
-0.316902
-0.394285
-0.356808
-0.387
-0.380419
-0.377916
-0.401133
-0.371511
-0.41305
-0.40082
-0.410419
-0.402237
-0.460954
-0.624536
-0.559289
-0.489584
-0.390177
-0.401246
-0.363754
-0.385663
-0.413406
-0.381828
-0.375089
-0.375399
-0.345415
-0.347789
-0.347859
-0.363791
-0.360235
-0.360151
-0.422967
-0.413123
-0.407941
-0.432196
-0.409178
-0.392794
-0.471066
-0.397629
-0.442388
-0.415758
-0.38595
-0.468327
-0.415592
-0.427805
-0.422175
-0.426555
-0.427354
-0.460583
-0.57259
-0.660879
-0.464392
-0.494176
-0.580371
-0.654895
-0.458536
-0.496929
-0.503168
-0.512735
-0.415468
-0.435161
-0.438262
-0.521188
-0.432189
-0.434589
-0.574216
-0.473072
-0.491881
-0.557984
-0.559863
-0.446558
-0.487179
-0.640945
-0.646314
-0.452124
-0.559107
-0.688246
-0.599611
-0.607914
-0.67478
-0.676976
-0.600941
-0.686837
-0.715629
-0.774047
-0.57785
-0.591026
-0.773291
-0.715843
-0.590879
-0.714209
-0.587608
-0.575794
-0.76943
-0.770881
-0.588894
-0.713465
-0.690224
-0.61006
-0.681174
-0.603047
-0.691097
-0.679651
-0.602969
-0.819149
-0.743558
-0.840143
-0.748135
-0.823032
-0.838959
-0.736842
-1.14122
-1.08723
-1.08554
-1.14594
-1.16861
-0.766247
-0.637573
-0.681911
-0.694024
-0.71233
-0.649768
-0.70505
-0.779604
-0.717577
-0.663004
-0.684593
-0.655843
-0.791568
-0.711111
-0.826101
-0.743117
-0.833199
-0.720793
-0.827851
-0.843234
-0.730711
-0.655412
-0.574929
-0.640391
-0.576613
-0.571245
-0.659696
-0.635774
-0.687868
-0.735743
-0.5422
-0.552039
-0.740341
-0.683845
-0.556072
-0.692557
-0.564382
-0.547218
-0.748584
-0.745505
-0.560918
-0.695493
-0.649727
-0.571457
-0.561802
-0.62486
-0.64467
-0.566131
-0.630127
-0.507249
-0.44374
-0.515155
-0.449031
-0.499889
-0.519327
-0.437933
-0.513429
-0.63942
-0.736836
-0.495262
-0.433233
-0.394827
-0.399041
-0.469632
-0.481076
-0.412648
-0.49477
-0.425617
-0.454258
-0.408082
-0.535478
-0.478347
-0.423614
-0.525585
-0.440715
-0.571888
-0.415341
-0.511819
-0.546259
-0.428431
-0.775694
-0.672715
-0.816052
-0.707745
-0.769601
-0.819907
-0.681569
-0.974726
-1.02861
-1.03414
-0.968214
-1.09067
-1.09987
-0.641929
-0.629963
-0.672736
-0.680611
-0.655915
-0.62368
-0.672447
-0.633031
-0.655611
-0.611476
-0.665752
-0.617607
-0.626645
-0.663364
-1.0815
-1.0724
-0.785165
-0.718194
-0.818377
-0.702218
-0.790767
-0.82523
-0.692288
-0.625006
-0.599111
-0.53749
-0.5488
-0.543739
-0.618683
-0.604708
-0.67447
-0.729865
-0.526873
-0.546201
-0.725062
-0.678498
-0.541313
-0.667704
-0.528559
-0.520119
-0.7105
-0.717163
-0.534594
-0.662111
-0.632785
-0.555928
-0.55566
-0.618066
-0.638068
-0.550725
-0.612577
-1.25778
-1.2039
-1.25483
-1.19074
-1.20722
-1.2526
-1.19501
-1.48897
-1.49941
-1.48846
-1.45335
-1.49005
-1.49366
-1.46922
-1.51894
-1.53526
-1.48305
-1.45773
-1.4678
-1.48202
-1.46804
-1.50898
-1.52623
-1.52498
-1.57545
-1.55099
-1.58432
-1.51914
-1.53654
-1.49765
-1.5017
-1.45439
-1.45526
-1.49587
-1.43261
-1.43011
-1.5753
-1.56527
-1.49802
-1.46717
-1.5613
-1.49108
-1.46419
-1.49108
-1.47529
-1.44632
-1.4769
-1.47863
-1.49208
-1.45235
-1.52832
-1.55894
-1.59792
-1.54346
-1.57435
-1.53972
-1.53467
-2.2614
-2.30653
-2.21366
-2.22373
-2.27717
-2.20771
-2.26119
-2.27059
-2.23341
-2.16197
-2.12509
-2.21479
-2.16776
-2.1957
-2.22395
-2.28238
-2.32404
-2.29559
-2.3105
-2.29648
-2.26003
-2.2493
-2.22982
-1.73881
-1.66973
-1.66829
-1.63556
-1.68445
-1.65108
-1.67435
-1.68045
-1.6556
-1.61856
-1.61723
-1.69439
-1.7891
-1.7688
-1.76023
-1.80516
-1.75995
-1.81822
-1.8368
-1.77635
-1.78098
-1.82007
-1.69947
-1.69227
-1.66599
-1.70497
-1.68797
-1.70704
-1.70779
-1.68555
-1.64657
-1.66567
-1.72504
-1.7683
-1.80737
-1.74789
-1.74771
-1.76848
-1.80204
-1.77491
-1.51359
-1.46011
-1.44734
-1.49433
-1.45028
-1.4994
-1.52107
-1.56048
-1.62736
-1.59163
-1.58855
-1.66865
-1.54712
-1.50183
-1.47065
-1.46636
-1.51128
-1.51487
-1.45288
-1.49322
-1.55743
-1.58911
-1.65324
-1.58574
-1.55631
-1.48178
-1.48169
-1.4908
-1.54115
-1.53965
-1.43237
-1.44544
-1.51579
-1.49585
-1.44026
1.30872
1.3102
1.28691
1.31614
1.31506
1.22211
1.31954
0.341935
0.520816
0.543224
0.337252
0.547849
0.565506
0.533967
0.350322
0.350526
0.557448
1.0954
1.09678
1.01917
1.09527
1.10189
1.17278
1.27289
1.2203
1.26361
1.18725
1.26712
1.19776
1.13334
1.12135
1.11799
1.12695
1.11837
1.01268
1.11013
1.04955
1.10757
1.0335
1.11275
0.376791
0.599141
0.562294
0.372898
0.59896
0.595507
0.367799
0.561511
0.371489
0.596575
1.14227
1.11899
1.14778
1.11207
1.23623
1.29329
1.26309
1.2734
1.22248
1.20123
1.29242
1.19404
1.27113
1.20291
1.28389
1.19124
1.15684
1.14357
1.21781
1.19881
1.26651
1.26647
1.27746
1.20695
1.19822
-1.79885
-1.80983
-1.81515
-1.81634
-1.79353
-1.81897
-1.80981
-1.76074
-1.70431
-1.73609
-1.73386
-1.75625
-1.72252
-1.73501
-1.74825
-1.71804
-1.73471
-1.74348
-1.79346
-1.86555
-1.82084
-1.79602
-1.71358
0.417006
0.564111
0.613481
0.413234
0.612723
0.612666
0.565037
0.409851
0.413281
0.613487
1.33948
1.24224
1.30707
1.32968
1.24334
1.33774
1.34614
1.23164
1.28781
1.30173
1.30916
1.23674
0.378469
0.601282
0.564451
0.382029
0.601741
0.603301
0.38586
0.564374
0.382329
0.603491
1.18285
1.17133
1.23444
1.30081
1.19736
1.28656
1.20517
1.28855
1.22085
1.35777
1.30893
1.30657
1.16209
1.16738
1.24379
1.23592
1.29025
1.29167
1.28942
1.2292
1.25107
0.304111
0.303038
0.391333
0.38861
0.364413
0.379263
0.345599
0.387537
0.363929
0.382635
0.346737
0.301726
0.302376
0.363926
0.34915
0.38653
0.389505
0.384323
0.364594
0.347556
0.00858709
-0.0166073
0.0553623
-0.00487022
0.0277542
-0.0151699
0.0325133
-0.0198132
-0.0318953
-0.0102097
-0.00302542
-0.0227914
-0.0428597
-0.0271091
0.279089
0.277813
0.374854
0.476871
0.339942
0.442215
0.3686
0.474849
0.353018
0.272939
0.280345
0.376402
0.355488
0.442088
0.474277
0.473937
0.35413
0.377559
0.452475
0.373137
0.459685
0.370556
0.456129
0.456123
0.458391
0.393693
0.454743
0.396049
0.451798
0.459823
0.452847
0.439352
0.454008
0.437853
0.4521
0.454239
0.458342
0.441928
0.394238
0.444416
0.399357
0.455933
-1.18426
-1.1931
-1.16308
-1.18299
-1.16386
-1.18694
-1.18258
-1.12558
-1.10933
-1.11493
-1.12635
-1.1166
-1.11996
-1.13139
-1.16731
-1.21886
-1.17625
-1.18267
-1.17942
-1.18364
-1.17975
-1.18131
-1.14909
-1.19695
-1.16996
-1.17319
-1.15013
-1.17403
-1.14563
-1.13224
-1.13164
-1.1149
-1.13693
-1.11965
-1.14448
-1.12057
-1.11393
-1.14461
-1.19525
-1.13979
-1.14101
-1.14632
-1.14826
-1.15565
-1.11406
-1.12907
-1.11932
-1.14681
-1.16119
-1.80497
-1.86835
-1.83367
-1.81321
-1.80007
-1.79392
-1.84742
-1.87362
-1.81641
-1.78062
-1.89398
-1.76551
-1.73093
-1.70178
-1.69948
-1.77757
-1.73792
-1.74761
-1.72322
-1.72248
-1.71615
-1.74217
-1.74746
-1.78864
-1.80988
-2.69841
-2.44719
-2.73252
-2.46254
-2.6073
-2.52407
-2.75049
-2.73262
-2.57314
-2.60945
-2.61553
-2.51912
-2.52726
-2.64654
-2.60613
-2.46895
-2.4661
-2.68893
-2.58957
-2.47913
-2.68846
0.425263
0.622052
0.571551
0.431188
0.615777
0.585563
0.561033
0.434466
0.429139
0.588545
1.34926
1.23877
1.31646
1.35108
1.24157
1.25332
1.32066
1.35492
1.35591
1.26116
0.458244
0.591961
0.564151
0.453394
0.593673
0.595531
0.447865
0.56414
0.452268
0.594367
1.35422
1.35101
-2.48924
-2.4098
-2.48294
-2.56802
-2.45912
-2.41372
-2.59477
-2.54772
-2.51475
-2.65142
-2.56609
-2.56464
-2.55722
-2.60702
-2.54571
-2.4727
-2.42118
-2.74039
-2.56774
-2.41206
-2.71449
-2.5021
-2.55412
-2.46125
-2.70011
-2.5329
-2.47129
-2.56404
0.537795
0.597413
0.538191
0.597968
0.536996
0.53841
0.459963
0.59181
0.562566
0.464941
0.590366
0.588093
0.471359
0.562155
0.46656
0.589301
1.35979
1.35386
0.167749
0.161912
0.216716
0.169504
0.220403
0.22319
0.217721
0.171865
0.173334
0.225693
0.172085
0.223458
0.226183
0.227557
0.290336
0.12713
0.269999
0.290883
0.270391
0.349025
0.349003
0.379936
0.347379
0.35362
0.355698
0.374734
0.350686
0.358936
0.304761
0.195541
0.270404
0.29089
0.287664
0.376312
0.354948
0.35001
0.355702
0.350167
0.37639
0.35488
0.219937
0.333114
0.335349
0.340363
0.360648
0.327619
0.36656
0.341996
0.359505
0.325736
0.358444
0.359219
0.223536
0.339411
0.336882
0.339482
0.322971
0.36585
0.357577
0.358783
0.324594
0.338081
0.437209
0.439669
0.421309
0.439929
0.420622
0.437723
0.425526
0.427187
0.402985
0.426254
0.401853
0.4264
0.405816
0.362068
0.405378
0.362888
0.405229
0.404924
0.41873
0.388746
0.419204
0.390341
0.420164
0.417505
-1.09412
-1.18347
-1.17661
-1.18835
-1.10417
-1.16903
-1.09086
-1.16962
-1.09988
-1.18932
-1.20719
-1.20661
-1.48003
-1.45334
-1.41268
-1.4861
-1.44655
-1.49192
-1.46466
-1.51182
-1.51301
-1.62
-1.50653
-1.51328
-1.46869
-1.44731
-1.44601
-1.46964
-1.46813
-1.43232
-1.48234
-1.41258
-1.52751
-1.53543
-1.56775
-1.56514
-1.56287
-1.52462
-1.52557
-1.53211
-1.56391
-1.55602
-1.54941
-1.4308
-1.42116
-1.44001
-1.42492
-1.43145
-1.42323
-1.42038
-1.48353
-1.41283
-1.40728
-1.49197
-1.41199
-1.54976
-1.51341
-1.56758
-1.56526
-1.57184
-1.5683
-1.50451
-1.16239
-1.15357
-1.12254
-1.12027
-1.15458
-1.16642
-1.14856
-1.20372
-1.20526
-1.15125
-1.16697
-1.20811
-1.15638
-1.12102
-1.11275
-1.12172
-1.1707
-1.20399
-1.16854
-1.20541
-1.15451
-1.19962
-1.20719
-1.15772
-1.16001
-1.17452
-1.20078
-1.17207
-1.1531
-1.13025
-1.141
-1.15265
-1.13533
-1.13966
-1.15858
-1.13936
-1.19276
-1.1495
-1.14221
-1.14178
-1.69767
0.539709
0.59684
0.538139
0.59615
0.534667
0.537081
0.512125
0.587177
0.514232
0.517712
0.588248
0.515734
-1.83266
-1.84468
-1.70303
-1.75066
-1.75235
-1.79694
-1.68457
-1.79253
-2.84974
-2.82391
-2.80824
-4.36582
-3.34157
-2.9733
-3.2232
-3.17634
-3.41077
-3.21738
-2.84352
-2.75965
-2.83287
-1.86251
-1.83005
-1.92964
-1.94045
-1.84364
-1.84681
-1.95639
-1.61805
-1.61383
-1.76983
-1.64961
-1.61546
-1.71484
-1.64457
-1.70759
-1.7475
-1.7521
-1.7479
-1.61593
-1.62426
-1.61086
-1.74325
-1.74305
-1.87529
-1.95164
-1.84139
-1.96898
-1.85012
-1.86023
-1.96778
0.489684
0.579231
0.490996
0.579987
0.490071
0.491541
0.512972
0.58766
0.511359
0.508527
0.587316
0.509899
0.269763
0.186116
0.19868
0.279836
0.20149
0.281831
0.268748
0.214737
0.263916
0.330904
0.241506
0.343825
0.266374
0.328448
0.243317
0.342184
0.26756
0.272243
0.18718
0.204859
0.26233
0.269601
0.206975
0.265909
0.235742
0.291876
0.29423
0.322652
0.32831
0.286078
0.269259
0.231178
0.248191
0.23833
0.240249
0.2302
0.320426
0.312229
0.316876
0.322718
0.32567
0.309434
0.314598
0.299648
0.302487
0.227903
0.225341
0.235174
0.227313
0.235927
0.316662
0.311152
0.321679
0.30477
0.307548
0.314086
0.31096
0.404328
0.394944
0.372599
0.397594
0.371077
0.404097
0.401241
0.373686
0.393306
0.372003
0.392261
0.402483
0.481775
0.47316
0.568494
0.540104
0.475998
0.478577
0.539094
0.466241
0.459951
0.565315
0.529464
0.462742
0.46337
0.53296
0.389499
0.389445
0.333386
0.392082
0.358162
0.385245
0.468326
0.535267
0.567079
0.463716
0.464576
0.534947
0.46728
0.395358
0.381693
0.359982
0.379412
0.362697
0.395209
0.477705
0.473778
0.570848
0.540987
0.472876
0.478681
0.540386
0.477115
0.539498
0.471961
0.570546
0.472378
0.47658
0.539941
-1.50848
-1.45466
-1.40287
-1.51766
-1.55598
-1.55082
-1.55173
-1.45094
-1.52539
-1.51661
-1.17888
-1.17167
-1.17083
-1.17016
-1.14661
-1.12583
-1.08291
-1.08672
-1.16545
-1.18742
-1.14978
-1.18187
-1.17559
-1.15026
-1.18286
-1.1724
-1.18623
-1.1809
-1.15168
-1.17985
-1.14903
-1.18256
-1.17174
-1.14763
-1.07879
-1.08567
-1.08455
-1.13966
-1.18048
-1.17524
-1.18581
-1.17118
-1.15291
-1.15677
-1.14654
-1.15078
-1.1603
-1.15214
-1.14788
-1.12143
-1.06227
-1.07791
-1.13105
-1.05955
-1.12261
-1.12484
-1.12295
-1.12374
-1.07061
-1.07884
-1.06051
-1.12537
-1.12647
-1.15371
-1.1559
-1.17311
-1.16035
-1.1605
-1.16149
-1.14855
-1.23664
-1.24467
-1.28268
-1.16816
-1.23508
-1.22467
-1.16277
-1.49954
-1.39397
-1.4142
-1.49635
-1.40514
-1.64275
-1.55934
-1.55312
-1.44103
-1.45029
-1.43233
-1.46072
-1.45042
-1.43794
-1.45226
-1.12471
-1.1702
-1.15488
-1.17015
-1.17733
-1.11754
-1.15918
-1.14859
-1.14866
-1.1773
-1.1874
-1.18311
-1.14437
-1.14675
-1.09745
-1.06063
-1.10489
-1.08908
-1.06278
-1.10417
-1.08774
-1.09484
-1.09363
-1.10274
-1.06338
-1.06151
-1.08493
-1.09661
-1.14916
-1.17496
-1.18139
-1.14217
-1.15276
-1.18008
-1.14584
-1.42815
-1.43471
-1.58124
-1.64748
-1.58454
-1.63829
-1.57684
-1.64496
-1.58596
-1.4885
-1.4874
-1.43147
-1.49647
-1.49424
-1.48937
-1.48412
-1.51884
-1.43345
-1.51418
-1.43866
-1.50741
-1.52137
-1.43825
-1.48276
-1.47986
-1.48778
-1.47738
-1.74827
-1.66629
-1.66435
-1.731
-1.65949
-1.74239
-1.74234
-1.86981
-1.88773
-2.01507
-1.9924
-1.8681
-1.86755
-1.97924
-1.84409
-1.9714
-1.80689
-2.03506
-1.83157
-1.8089
-1.97569
-3.08204
-2.55606
-2.69805
-2.79215
-2.67628
-2.86179
-3.79433
-3.5565
-2.55231
-2.90227
-3.68458
-3.57116
-2.80797
-3.29655
-2.58402
-2.45496
-3.21123
-3.26286
-2.67817
-3.26137
-2.71681
-2.61964
-2.62641
-1.84863
-1.76221
-1.945
-2.01595
-1.84782
-1.77986
-2.01492
-1.73355
-1.59927
-1.62466
-1.7224
-1.72935
-1.68131
-1.62487
-1.71469
-1.6881
-1.7196
-1.70777
-1.82447
-1.81372
-1.94916
-1.84064
-1.99979
-1.86929
-1.80435
-1.99176
-1.84058
-1.84091
-2.72238
-2.5901
-2.6334
-2.62808
-2.9922
-3.39246
-2.5243
-2.39601
-3.1004
-2.88287
-2.71674
-2.7435
-2.8767
0.492799
0.574197
0.492341
0.57229
0.50612
0.493495
0.465164
0.541734
0.467801
0.472695
0.542731
0.470017
-1.72731
-1.73351
-1.64747
-1.76125
-1.64785
-1.74406
-1.72765
-1.84914
-1.89764
-1.99729
-2.06063
-1.86568
-1.88563
-1.98019
-1.84978
-1.95435
-1.84688
-2.0655
-1.90364
-1.82252
-1.97341
-2.48853
-3.35774
-2.53029
-2.85098
-2.64014
-3.00119
-2.5474
-2.42778
-2.46025
-1.75419
-3.12739
-3.14855
-1.87694
-2.33482
-2.40518
-2.33964
-2.61574
-2.87071
-2.84633
-2.43621
-2.35576
-1.71054
-1.77463
-1.74798
-1.86988
0.457612
0.537801
0.459275
0.538579
0.460446
0.460189
-2.85257
-2.79681
-2.96139
-2.10872
-2.84652
-3.10792
-2.74526
-3.09658
-2.86006
-3.14537
-3.12776
0.470046
0.54274
0.467649
0.465806
0.54259
0.46656
-1.80362
-1.71241
-1.68679
-1.77388
-1.71008
-1.77649
-1.77504
-1.90596
-1.8841
-2.03256
-1.87448
-1.92636
-1.94542
-2.05937
-1.94033
-3.20041
0.286275
0.233243
0.257691
0.252241
0.260494
0.281179
0.254187
0.229321
0.301586
0.300262
0.234268
0.28689
0.233144
0.258197
0.251513
0.284061
0.261025
0.253877
0.288314
0.211023
0.251704
0.256224
0.264134
0.259158
0.274113
0.252551
0.31956
0.268876
0.316858
0.253282
0.31823
0.268183
0.255122
0.300332
0.299328
0.254477
0.270784
0.183133
0.260084
0.203546
0.271003
0.259473
0.207972
0.258184
0.268668
0.317359
0.319372
0.320341
0.270902
0.254436
0.463103
0.461427
0.529671
0.559312
0.464238
0.460322
0.526758
0.382509
0.283715
0.442273
0.320859
0.391053
0.412573
0.463259
0.527439
0.558929
0.477777
0.462143
0.525922
0.468272
0.417129
0.251688
0.288552
0.434141
0.288307
0.43313
0.418216
0.448729
0.440296
0.537695
0.508934
0.443907
0.445803
0.511815
0.449575
0.513258
0.446907
0.538715
0.44546
0.450692
0.512641
0.435503
0.420315
0.528029
0.496803
0.425136
0.431381
0.50147
0.402582
0.218753
0.400077
0.282595
0.398862
0.281278
0.403446
0.436496
0.502921
0.529147
0.427367
0.426474
0.502792
0.437119
0.411587
0.247191
0.411956
0.291571
0.414793
0.292237
0.410327
0.444505
0.441428
0.535409
0.51087
0.437823
0.447519
0.507923
0.444027
0.507186
0.435491
0.535023
0.436676
0.443216
0.50748
-1.50507
-1.47206
-1.48829
-1.48764
-1.48978
-1.49548
-1.51312
-1.53922
-1.58258
-1.55108
-1.54673
-1.65264
-1.52436
-1.52966
-1.49771
-1.50349
-1.55791
-1.54485
-1.49702
-1.5334
-1.53864
-1.67557
-1.64928
-1.60659
-1.52038
-1.52301
-1.49204
-1.5464
-1.48239
-1.5822
-1.6379
-1.52146
-1.63654
-1.52123
-1.68701
-1.6056
-1.52344
-1.49005
-1.44444
-1.52792
-1.49932
-1.50792
-1.51313
-1.54224
-1.53474
-1.51504
-1.50898
-1.51202
-1.49572
-1.56651
-1.63199
-1.59426
-1.54292
-1.52264
-1.47877
-1.54803
-1.4916
-1.55716
-1.53397
-1.58106
-1.58554
-1.56162
-1.60297
-1.56542
-1.5894
-1.5785
-1.55187
-1.52579
-1.49889
-1.55786
-1.54576
-1.50119
-1.56335
-1.58011
-1.58086
-1.60647
-1.61215
-1.60497
-1.57778
-1.57987
-1.47803
-1.4099
-1.50706
-1.50854
-1.46908
-1.41816
-1.51982
-1.50161
-1.5583
-1.58172
-1.59271
-1.56082
-1.49551
-1.57909
-1.51067
-1.51415
-1.58539
-1.57418
-1.56567
-1.50603
-1.52902
-1.98403
-2.0242
-1.9768
-2.02451
-1.87067
-1.73255
-1.75578
-1.88135
-1.90368
-1.75058
-1.81183
-1.90699
-1.75911
-1.89268
-1.91815
-1.85692
-1.76003
-1.75628
-1.84779
-1.91328
-1.9277
-1.78515
-1.8236
-1.76219
-1.92263
-1.93631
-1.99529
-2.01622
-2.01018
-2.01235
0.460124
0.537267
0.458458
0.535423
0.457569
0.456355
-2.61499
-2.43286
-3.98201
-2.77743
-2.488
-3.81721
-2.63834
-2.42559
-1.2433
-1.71654
-1.88345
-1.92851
-1.73754
-2.38599
-2.68962
-2.54256
-3.45493
-2.96226
-2.53861
-2.31252
-2.47425
-3.33549
-3.30763
-1.8561
-1.73772
-1.76012
-1.80567
-1.78449
-1.8227
-1.84811
-1.93281
-1.892
-2.0452
-1.96448
-1.91439
-1.904
-2.05972
-1.9677
-2.08759
-1.90716
-1.97122
-1.91441
-1.97383
-2.09545
0.434366
0.5414
0.436385
0.439455
0.543505
0.438403
-2.93272
-3.39596
-3.23364
-3.24732
-2.18162
-0.746583
-0.868362
-3.24558
-2.15425
-0.787178
-3.18073
-2.50133
-1.29281
-0.979772
-1.07845
-2.79083
-3.5829
-2.10822
-2.45885
-2.07568
-1.74562
-1.6872
-2.4022
-2.10656
-2.72987
-3.24807
-2.73278
-3.20046
-2.04097
-1.99301
-2.03187
-2.00435
-1.86576
-1.7368
-1.68226
-1.66545
-1.88447
-1.87837
-1.68101
-1.65937
-1.66284
-1.86773
-2.03912
-2.01125
-2.02696
-2.01395
0.37982
0.478177
0.386153
0.484654
0.39525
0.391849
-1.42317
-2.12608
-2.09121
-2.90137
-2.04816
-2.03619
-1.4904
-1.38671
-2.83049
-1.72037
-1.97339
-1.30992
-1.96359
-2.02689
0.434984
0.537526
0.432959
0.42798
0.534853
0.430725
-1.87893
-2.05258
-1.865
-1.9399
-1.89038
-2.05411
-1.8542
-1.77765
-1.64044
-1.72773
-1.88229
-1.66384
-1.76072
-1.89964
-1.7878
-1.90372
-1.68874
-1.72193
-1.67181
-1.80247
-1.89964
-1.87312
-1.93942
-2.05447
-1.84822
-1.86002
-2.05909
-1.85271
-2.45887
-3.47093
-2.83638
-2.97229
-3.6119
-2.2713
-2.00155
-0.723265
-0.975959
-3.25119
-2.08697
-0.700053
-3.32697
-2.59729
-3.21904
-2.67586
-3.18482
0.179055
0.185619
0.205307
0.201713
0.203918
0.18039
0.200846
0.184633
0.183669
0.265765
0.279023
0.277883
0.266806
0.178139
0.184488
0.199607
0.19751
0.175918
0.20232
0.200046
0.186974
0.187808
0.191181
0.198365
0.2189
0.21086
0.211475
0.220041
0.19048
0.199493
0.200462
0.277113
0.287859
0.288429
0.276495
0.191939
0.199207
0.213919
0.222037
0.193373
0.212348
0.220839
0.198032
0.197639
0.428563
0.420079
0.497848
0.52015
0.431639
0.416671
0.494093
0.396514
0.2064
0.277829
0.387807
0.282245
0.389387
0.394999
0.42757
0.492103
0.51829
0.413751
0.414519
0.492834
0.426777
0.382459
0.189157
0.271367
0.368091
0.27115
0.366791
0.383149
0.417314
0.40053
0.523965
0.485257
0.4022
0.415617
0.487032
0.418162
0.487828
0.403628
0.524912
0.403266
0.418497
0.487763
0.398298
0.381963
0.51073
0.473056
0.384645
0.395291
0.475623
0.360784
0.181139
0.342753
0.259659
0.341185
0.258594
0.362406
0.398992
0.476109
0.510955
0.385628
0.3845
0.475616
0.400215
0.376693
0.185535
0.357205
0.267588
0.358548
0.267999
0.375634
0.413789
0.400529
0.521529
0.48538
0.398785
0.415544
0.483707
0.41278
0.482605
0.397097
0.520571
0.397535
0.412024
0.48298
-1.50148
-1.56284
-1.59018
-1.63662
-1.49307
-1.57862
-1.59807
0.377702
0.459695
0.372065
0.453776
0.362649
0.367015
-1.13585
-2.1036
-1.45653
-1.85978
-1.21588
-1.3568
-1.7484
-1.80611
-1.91186
-1.91821
-1.81756
-1.79254
-1.97964
-1.81316
-1.73009
-1.63022
-1.88756
-1.69151
-1.74492
-1.63945
-1.83114
-1.82883
-1.92707
-2.04334
-1.83353
-1.84056
-2.00535
-1.83308
-1.71784
-1.83291
-1.6276
-1.73157
-1.62291
-1.72237
-1.83385
0.328111
0.415949
0.331859
0.338942
0.417449
0.334707
0.267775
0.396805
0.274193
0.395376
0.28206
0.277952
0.327886
0.414015
0.323875
0.315519
0.410896
0.31847
0.191122
0.121071
0.0986757
0.177471
0.097282
0.192875
0.176018
0.201393
0.114563
0.198679
0.117394
0.222089
0.162195
0.220518
0.21883
0.223854
0.189053
0.118474
0.089274
0.170152
0.185055
0.0937901
0.1736
0.203548
0.121721
0.120502
0.205169
0.208328
0.135801
0.113946
0.189603
0.190219
0.114919
0.207598
0.223092
0.141603
0.224492
0.140118
0.237294
0.175985
0.230127
0.230263
0.236551
0.209947
0.137522
0.19455
0.118978
0.212527
0.191817
0.11669
0.220999
0.13676
0.137737
0.220069
0.392041
0.382287
0.473658
0.507761
0.394995
0.379644
0.471069
0.350843
0.1711
0.250915
0.328106
0.25178
0.329836
0.349283
0.390651
0.469599
0.5067
0.377386
0.378301
0.470261
0.389442
0.338763
0.23821
0.296129
0.319437
0.300411
0.315573
0.339521
0.382096
0.365359
0.503352
0.467286
0.367606
0.380776
0.467764
0.38283
0.468053
0.371062
0.504306
0.369571
0.38367
0.467788
0.359197
0.316849
0.472252
0.448019
0.324422
0.354464
0.45161
0.317834
0.217845
0.278704
0.287909
0.275564
0.286106
0.319988
0.360757
0.454663
0.473423
0.330471
0.327177
0.453099
0.362868
0.332986
0.233513
0.302955
0.297609
0.304164
0.297716
0.332665
0.377773
0.36377
0.499285
0.467552
0.360469
0.38047
0.464711
0.376321
0.464292
0.356597
0.496439
0.357121
0.376303
0.463765
0.260298
0.410733
0.252882
0.42154
0.247705
0.249405
0.218838
0.51821
0.214679
0.212261
0.504889
0.213974
-1.56958
-1.49553
-1.45568
-0.913953
-1.58309
-0.834001
0.392785
-0.0648687
-0.270449
-0.266942
0.0394497
-0.226391
0.0331688
-0.259509
0.0283615
0.410007
-0.331432
-0.298008
-0.296487
0.028832
-1.42662
-1.02036
-1.44016
-1.51074
-0.769192
-0.66083
0.425878
0.575899
0.41979
0.580318
0.395903
0.407831
-0.719984
-1.06971
-2.57593
-0.686929
-1.06663
-0.518009
-0.514516
-2.41569
-0.408671
-1.01169
-0.531545
-1.05686
-0.504713
-0.468514
0.230626
0.550497
0.244028
0.272035
0.558753
0.257292
-0.879402
-2.83924
-1.03286
-1.14175
-0.843701
-0.50531
-0.498284
0.360656
0.06706
0.0642669
-0.197187
0.0445206
-0.203748
0.0315225
0.0245924
0.349531
0.0683887
-0.17395
0.0549097
-0.157286
0.036067
-2.8655
-1.3686
-0.955969
-1.25541
-0.872719
-0.554884
-0.605819
-0.215625
-0.299431
-0.295135
-0.209986
-0.289268
-0.288946
0.146689
0.113339
0.148387
0.112287
0.15598
0.0425388
0.171719
0.170901
0.154495
0.146009
0.111384
0.112556
0.144502
0.146024
0.106328
0.113444
0.143136
0.144283
0.114108
0.143851
0.158132
0.108273
0.16283
0.106545
0.182811
0.106
0.187925
0.18929
0.18038
0.148004
0.107121
0.147991
0.116834
0.151292
0.145628
0.114652
0.153213
0.106841
0.106395
0.148628
0.349862
0.316122
0.449384
0.472599
0.354152
0.309792
0.446159
0.305256
0.202875
0.275823
0.248423
0.276657
0.252674
0.304151
0.348128
0.445961
0.473424
0.302653
0.305502
0.445375
0.347452
0.296843
0.180161
0.267923
0.223703
0.267078
0.219717
0.29754
0.348495
0.280675
0.497829
0.456555
0.283522
0.347695
0.457314
0.349071
0.458083
0.289212
0.497097
0.286269
0.349674
0.457693
0.350604
0.276101
0.500353
0.446209
0.279443
0.347907
0.449061
0.287019
0.0840065
0.118139
0.251832
0.111219
0.250577
0.288051
0.351087
0.451024
0.500927
0.278217
0.278787
0.45025
0.351204
0.293236
0.153912
0.179642
0.261901
0.187539
0.262592
0.293046
0.347289
0.279961
0.499848
0.456639
0.277868
0.348096
0.455011
0.347875
0.454934
0.277238
0.500937
0.277715
0.348595
0.454866
0.442812
0.599859
0.44215
0.601629
0.4397
0.440461
-0.160066
-0.882488
-0.772151
-0.193711
-0.83637
-0.366581
-0.329063
-1.0455
-0.312299
-0.962748
-0.232125
-0.896979
-0.390314
-0.427075
0.422816
0.596081
0.423635
0.431572
0.596589
0.426809
-0.141087
-0.718113
-0.716007
-0.637565
-0.11812
-0.266853
-0.30389
-0.637132
-0.563673
-0.0766742
-0.593493
-0.0974284
-0.247043
-0.22483
0.481578
0.609663
0.475487
0.604857
0.467322
0.471729
-0.0022568
-0.451264
-0.357673
-0.0100227
-0.435229
-0.186775
-0.18855
0.427913
0.596365
0.426564
0.430128
0.594709
0.428641
-0.0147113
-0.455919
-0.474959
-0.496218
-0.0230428
-0.205842
-0.197581
-0.495718
-0.54105
-0.0507877
-0.515893
-0.0305679
-0.204859
-0.210789
-0.284403
-0.2793
-0.280259
-0.281474
-0.271506
-0.275746
-0.281211
-0.282415
-0.276226
-0.283416
-0.288943
-0.282408
0.13454
0.105876
0.131904
0.109177
0.145583
0.0278336
0.0425996
0.209781
0.0417054
0.205765
0.145048
0.13527
0.11188
0.11345
0.134783
0.138246
0.120021
0.139349
0.118996
0.14226
0.0810711
0.0348421
0.22167
0.0375825
0.223474
0.141331
0.137263
0.116747
0.117721
0.13639
0.342794
0.275233
0.444165
0.502222
0.346243
0.271119
0.440799
0.278662
0.0534867
0.245516
0.0735833
0.246324
0.0767342
0.277447
0.341365
0.4379
0.502019
0.267171
0.269023
0.439353
0.339901
0.270548
0.0450252
0.241065
0.052507
0.241057
0.054899
0.270314
0.329808
0.247199
0.487612
0.427497
0.247469
0.329437
0.427955
0.329922
0.427724
0.247692
0.488377
0.24768
0.329732
0.428054
0.347869
0.321745
0.5227
0.455359
0.314423
0.350427
0.454413
0.275806
-0.0838183
0.17621
0.20579
0.187948
0.201248
0.275717
0.346919
0.45022
0.519421
0.301128
0.307999
0.453152
0.34499
0.271037
0.0389137
0.0782302
0.234986
0.0717033
0.236402
0.272173
0.330175
0.2494
0.488759
0.428593
0.249716
0.33031
0.428634
0.331061
0.430797
0.255222
0.488189
0.252039
0.333015
0.429307
0.530195
0.624219
0.540343
0.627806
0.552137
0.545507
0.442394
0.442543
0.589881
0.667112
0.597707
0.601545
0.671897
0.599274
-0.387731
-0.308889
-0.332612
-0.513852
-0.402767
-0.332297
-0.502395
-0.304618
-0.30839
-0.305951
-0.372197
-0.303901
-0.330171
-0.477897
-0.372609
-0.329882
-0.488511
-0.300155
-0.307334
-0.304708
0.0273086
-0.287405
0.0727527
0.017668
-0.272021
0.0851554
0.0498815
-0.0156719
0.0951452
-0.25391
-0.263111
0.0938019
0.0581167
0.0363508
0.110693
-0.245102
-0.259758
0.0971926
0.0464986
0.104454
-0.0297582
0.125501
0.106607
-0.0453357
0.131183
0.124118
-0.186567
0.112294
-0.159241
-0.14875
0.112654
0.119685
0.102105
0.140577
-0.0844818
-0.0649596
0.134685
0.100712
0.240106
-0.0495879
0.155921
0.248143
0.154981
0.241866
0.242653
0.284648
0.0454479
0.191731
0.216184
0.191047
0.22472
0.283479
-0.647462
-0.463076
-0.421199
-0.798058
-0.656448
-0.416279
-0.791175
-0.512518
-0.439877
-0.368117
-0.363831
-0.50399
-0.448272
-0.372734
-0.638396
-0.458861
-0.405878
-0.776407
-0.628502
-0.411476
-0.784254
-0.520091
-0.380835
-0.46298
-0.366423
-0.455642
-0.527497
-0.376671
-0.222253
-0.341427
-0.31608
-0.226288
-0.367736
-0.300101
-0.0343381
0.264456
0.0940634
0.08635
0.0943156
0.0932178
-0.0337198
-0.220218
-0.267966
-0.414602
-0.391285
-0.285385
-0.215851
-0.153205
-0.504613
-0.106856
-0.143964
-0.515357
-0.116974
-0.0407015
0.233128
0.082904
-0.0225699
-0.0459338
0.080887
-0.0413531
-0.163286
-0.136962
-0.535867
-0.526272
-0.126955
-0.171746
-0.780864
-0.779654
-0.864129
-0.556883
-0.572265
-0.746483
-0.86918
-0.568268
-0.75601
-0.732702
-0.621598
-0.520007
-0.49499
-0.725416
-0.626856
-0.525574
-0.85771
-0.555431
-0.559122
-0.774217
-0.852802
-0.564216
-0.763872
-0.7411
-0.534627
-0.638591
-0.4988
-0.633071
-0.748569
-0.530012
-0.0874927
-0.0676171
-0.348821
-0.279687
-0.0874209
-0.0683051
-0.345386
0.0437182
0.0808711
0.153632
0.0296216
0.0163158
0.149158
0.0485752
-0.0846119
-0.336208
-0.292804
-0.0631718
-0.0721076
-0.340792
-0.0816775
-0.181816
0.0659405
-0.495375
-0.518711
-0.242572
-0.000438718
-0.4074
0.00495557
0.191656
0.110662
0.109515
0.121627
0.104464
0.0137645
-0.124066
-0.335786
-0.435896
-0.00103267
0.00998353
-0.348564
-0.109561
-0.710291
-0.702648
-0.704648
-0.750804
-0.722456
-0.726072
-0.743089
-0.751782
-0.733327
-0.69854
-0.69438
-0.69947
-1.50816
-1.72711
-1.45187
-1.32796
-1.82457
-1.19207
-1.07062
-1.18839
-1.01816
-1.17153
-1.19058
-1.24865
-1.03525
-1.21867
-1.07084
-1.18657
-1.18593
-0.684666
-0.687586
-0.688513
-0.738558
-0.74397
-0.735216
-0.713741
-0.728938
-0.726624
-0.689415
-0.694004
-0.691396
-1.25063
-1.1588
-1.29332
1.16254
-1.03043
-1.18701
-1.19989
-1.15569
-1.07065
-1.2186
-1.16436
-1.28391
-1.28565
-1.20167
-1.08709
-1.20818
-1.02272
-1.1573
-1.12986
-1.21859
-1.23275
-1.20249
-1.06669
-1.19341
-1.17854
-0.834159
-0.578388
-0.616403
-0.658788
-0.832506
-0.615398
-0.656178
-0.842281
-0.740551
-0.605763
-0.587153
-0.833081
-0.743627
-0.608303
-0.835156
-0.576928
-0.611931
-0.652085
-0.83505
-0.613711
-0.654074
-0.854617
-0.613828
-0.750151
-0.588946
-0.747029
-0.867028
-0.611167
0.00893113
-0.1461
-0.144492
-0.166127
0.00976204
-0.137979
-0.146791
0.129895
0.254307
0.238891
-0.0841208
-0.0717899
0.246568
0.121838
0.0072659
-0.154907
-0.161332
-0.123612
-0.129414
-0.149439
0.0020248
-0.127829
-0.101234
-0.370671
-0.223516
-0.127021
-0.100616
-0.366324
-0.0117494
0.141051
0.119098
-0.0201588
-0.0254533
0.105054
-0.00337747
-0.126725
-0.355025
-0.214694
-0.0946326
-0.0960676
-0.361464
-0.121235
-0.640725
-0.68591
-0.639934
-0.568386
-0.592106
-0.602094
-0.614004
-0.581418
-0.607936
-0.685655
-0.636412
-0.639258
-1.17163
-1.20036
-1.18775
-0.894234
-1.14184
-1.09404
1.30331
-0.970722
-0.801086
0.1677
-1.02518
-1.21058
-1.25722
-1.23224
-0.758199
-0.958854
-0.723166
-0.116187
0.816405
0.00924626
-0.374502
-0.0962513
0.836506
-0.441236
1.58344
-0.172006
-0.516984
-0.00713747
0.81511
0.826406
-0.483055
-0.229131
-0.934318
-0.645524
-0.560717
-0.684854
-0.618481
-0.668062
-0.626229
-0.530869
-0.587368
-0.578532
-0.556708
-0.629642
-0.520808
-0.569935
-0.676428
-0.634567
-0.630321
-0.2572
-0.0366656
-0.164837
-0.502686
-0.488467
-0.26511
-0.0235974
1.5011
1.96157
1.74584
1.80245
1.93541
0.342256
0.685762
0.325049
0.17843
0.684946
0.359058
0.170608
0.326948
0.15408
0.688052
0.322268
0.686022
0.317378
0.16249
-0.242244
-0.151316
-0.447074
-0.00130296
-0.227025
-0.467424
-0.0120138
-0.476611
-0.473942
-0.771105
-0.524657
-0.441341
0.0460529
0.816642
0.0710598
-0.298984
0.00173141
0.816846
-0.269259
1.58653
1.18143
1.14034
0.0904635
-0.208829
0.0823752
0.828288
0.826288
-0.243344
0.1245
-0.515521
-0.808887
-0.588847
-0.540857
-0.557598
-0.775079
-0.582559
-0.629048
-0.681244
-0.771518
-0.628537
-0.685654
-0.956155
-1.00058
-0.66241
-0.676854
-0.961433
-1.00673
-0.665028
-0.693899
-0.699377
-0.779801
-0.581721
-0.624346
-0.696051
-0.782621
-0.627261
-0.691854
-0.949838
-0.667578
-1.01866
-0.679712
-1.01253
-0.943975
-0.666529
-0.692573
-0.696423
-0.0458915
0.20846
-0.216274
-0.230143
0.194666
-0.0465125
-0.214161
-0.0407781
-0.184192
-0.258269
0.140976
0.182851
-0.205731
-0.0127225
0.0947377
-0.161409
-0.066162
-0.315186
0.0904701
-0.161459
-0.0579627
0.229731
0.569588
0.337137
0.162476
0.150003
0.335831
0.232319
0.105486
-0.0460729
-0.308866
-0.113372
-0.128453
-0.0470385
0.107781
1.3655
1.46512
1.3453
1.4584
1.34115
1.40423
1.39932
1.70544
1.81538
1.74933
1.75937
1.7572
1.6979
1.77188
1.6064
1.54851
1.55715
1.59635
1.68313
1.65441
1.74627
1.68788
1.69266
1.64519
1.73824
1.72867
1.83448
1.78396
1.74056
1.77462
1.66637
1.71696
1.64036
1.68013
1.64143
1.65766
1.73316
1.60578
1.71035
1.64728
1.67582
1.66839
1.63688
1.61439
1.54379
1.53603
1.50799
1.38272
1.48293
1.47685
1.51677
1.59924
1.70223
1.65007
1.6177
1.59071
1.66127
1.62884
1.54767
1.55344
1.51258
1.44249
1.41135
1.51713
1.42153
1.52735
1.50424
1.52852
1.59673
1.42376
1.58884
1.41619
1.53619
1.71731
1.78353
1.79518
1.73626
1.76478
1.72631
1.7227
1.62871
1.69787
1.69979
1.62081
1.57222
1.46695
1.44071
1.55161
1.45152
1.58424
1.54358
1.70784
1.70398
1.78538
1.73998
1.74388
1.71352
1.70413
1.56407
1.53092
1.42997
1.43275
1.43967
1.5566
1.53658
-2.49884
-2.67917
-3.12713
-2.88893
-2.61919
-2.7181
-2.83634
1.96443
1.95088
1.96308
1.94161
1.97516
1.86838
1.94071
1.98555
1.94661
1.98142
2.00549
2.01455
1.86895
1.96684
1.8918
1.88126
1.97355
2.01453
2.01701
1.97819
1.89696
1.89793
1.8891
1.97665
1.74056
1.62191
1.67611
1.77595
1.66322
1.80408
1.79924
1.85442
1.94801
1.88058
1.80581
1.93629
1.87636
1.79968
1.7411
1.64986
1.61679
1.6589
1.73404
1.84845
1.7971
1.93021
1.88064
1.93219
1.84338
1.799
1.74819
1.80486
1.74742
1.82869
1.73751
1.81494
1.75555
1.62417
1.4879
1.46684
1.56206
1.49949
1.60974
1.57214
1.71978
1.72756
1.6332
1.5869
1.46787
1.524
1.50912
1.5772
1.64482
1.75685
1.76481
1.83316
1.83136
1.82338
1.76035
1.76522
1.84565
1.64347
1.70152
1.82536
1.71438
1.91825
1.98092
1.89805
1.81479
1.91085
1.99009
1.81925
1.92145
1.81628
1.99153
1.89902
1.99121
1.92165
1.8189
1.84498
1.73214
1.64942
1.721
1.85238
1.92824
1.9289
1.74336
1.75489
1.93594
1.9287
1.76151
1.92415
1.85995
1.93704
1.84993
1.91282
1.76481
1.76367
1.92434
1.91165
1.75539
1.91781
1.9427
1.83969
1.93729
1.84753
1.87977
1.68963
1.738
1.82944
1.88993
1.73584
1.81745
1.80413
1.56889
1.82136
1.57217
1.80301
1.83719
1.54053
1.9449
1.95353
1.94014
1.95277
1.62602
1.0042
1.08366
1.35093
1.55899
1.10794
1.38139
1.68122
1.44572
1.33597
1.11338
1.18663
1.75328
1.40526
1.94909
1.95143
1.95197
1.95673
1.77885
1.55819
1.78551
1.50269
1.75209
1.79364
1.52229
1.94843
1.72704
1.87241
1.69433
1.73527
1.86964
1.95119
1.96032
1.94306
1.64616
1.74951
1.95474
1.92917
1.73414
1.9783
1.87782
1.96078
1.89004
1.97962
1.69391
1.61438
1.89313
1.93233
1.72044
1.97594
1.92167
1.91446
1.92262
1.69472
1.74027
1.84141
1.90628
1.7386
1.85837
1.70004
1.41572
1.76926
1.51612
1.78371
1.66678
1.44099
1.95832
1.97289
1.9561
1.99008
1.44768
0.956256
0.927325
1.3303
1.52234
0.860181
1.28207
1.43642
1.2011
0.934643
0.808925
0.979511
1.37833
1.23757
1.95528
1.99006
1.99026
1.94181
1.71474
1.5277
1.79126
1.49091
1.74412
1.78583
1.46328
1.23548
1.06436
1.54714
1.28202
1.03028
1.26608
1.52473
0.720859
-0.346898
-0.474716
0.788899
1.37563
1.85279
1.35199
1.86976
1.39318
1.91719
1.44674
1.8915
1.20605
1.26822
1.00362
1.48766
1.19058
0.999816
1.50852
0.383256
-0.1187
0.996305
1.13599
0.0543288
0.345984
1.04766
0.41077
1.13421
1.19638
0.239692
0.124352
1.08518
0.461463
1.33676
1.90974
1.39888
1.86452
0.440493
-2.53719
-0.789673
-0.762413
0.27563
1.29498
1.68529
1.82713
1.13732
-0.217972
-0.208951
-0.217551
-0.228685
-0.226788
-0.221006
-0.204084
-0.219475
-0.200993
-0.205007
-0.194093
-0.212129
-0.213231
-0.216772
-0.197204
-0.197033
-0.208873
-0.194853
-0.20792
-0.212343
-0.210652
-0.198298
-0.209326
-0.209488
-0.206065
-0.219135
-0.180621
-0.187855
-0.179552
-0.189017
-0.169287
-0.18359
-0.19206
-0.191646
-0.191549
-0.177797
-0.17564
-0.1794
-0.182685
-0.183662
-0.182625
-0.180178
-0.195219
-0.177875
-0.187525
-0.185825
-0.185141
-0.195992
-0.181532
-0.19654
-0.188985
-0.193698
-0.201229
-0.17688
-0.230771
-0.213575
-0.220829
-0.211839
-0.211972
-0.232996
-0.213779
-0.220031
-0.208557
-0.221411
-0.212131
-0.153286
-0.139783
-0.156015
-0.151478
-0.155978
-0.156187
-0.144896
-0.163028
-0.160345
-0.202452
-0.163779
-0.159897
-0.20069
-0.160668
-0.155821
-0.151147
-0.159011
-0.155088
-0.162309
-0.157337
-0.13454
-0.160514
-0.148262
-0.142014
-0.143718
-0.13943
-0.15629
-0.132932
-0.13965
-0.152988
-0.137841
-0.131514
-0.141335
-0.154664
-0.124755
-0.13057
-0.148984
-0.144464
-0.145883
-0.136836
-0.121726
-0.12655
-0.139133
-0.132789
-0.150701
-0.140026
-0.129787
-0.143837
-0.16765
-0.162133
-0.204044
-0.165405
-0.164333
-0.205188
-0.167433
-0.168665
-0.155883
-0.156611
-0.159156
-0.172656
-0.163751
-0.165648
-0.15697
-0.160702
-0.157377
-0.163764
-0.15844
-0.162593
-0.143679
-0.138058
-0.12054
-0.136411
-0.131813
-0.124517
-0.141432
-0.117458
-0.119888
-0.153026
-0.149829
-0.152067
-0.155362
-0.153176
-0.152044
-0.150986
-0.139759
-0.124717
-0.128599
-0.144481
-0.118084
-0.124184
-0.139608
-0.127743
-0.141105
-0.142612
-0.15141
-0.151477
-0.150687
-0.155622
-0.145218
-0.152666
-0.151315
-0.0743595
-0.0753605
-0.0802853
-0.0693872
-0.0789685
-0.0740264
-0.0698722
-0.111608
-0.132035
-0.134599
-0.109542
-0.111721
-0.13387
-0.110607
-0.13504
-0.110911
-0.120566
-0.121105
-0.115362
-0.0729598
-0.0815662
-0.0833023
-0.0723037
-0.075252
-0.0762842
-0.0730581
-0.103552
-0.133745
-0.121595
-0.110662
-0.127941
-0.128345
-0.147375
-0.136453
-0.126707
-0.149497
-0.136035
-0.127521
-0.141966
-0.141212
-0.129634
-0.152118
-0.164134
-0.152662
-0.166034
-0.152843
-0.152301
-0.164723
-0.128159
-0.128577
-0.150531
-0.136342
-0.150031
-0.135634
-0.129708
-0.126833
-0.140504
-0.128003
-0.140929
-0.15223
-0.152889
-0.154385
-0.164952
-0.148413
-0.153654
-0.16478
-0.0879099
-0.0913429
-0.120815
-0.086062
-0.12097
-0.0894975
-0.0740396
-0.0896945
-0.12063
-0.105167
-0.105089
-0.128229
-0.135168
-0.131444
-0.0748072
-0.0898002
-0.0898177
-0.0872964
-0.0798181
-0.112955
-0.0829823
-0.11632
-0.138111
-0.147549
-0.138418
-0.0977931
-0.107266
-0.101007
-0.103998
-0.0961064
-0.10511
-0.10904
-0.0564667
-0.0707988
-0.0659185
-0.0427797
-0.0692237
-0.0660713
-0.0559561
-0.0423992
-0.141422
-0.044406
-0.0602889
-0.0554372
-0.0684849
-0.0515557
-0.0681371
-0.084789
-0.105237
-0.0878351
-0.102063
-0.0901992
-0.102772
-0.0857499
-0.0858973
-0.0860811
-0.0436921
-0.100211
-0.0781067
-0.0687034
-0.102488
-0.0551233
-0.0639004
-0.0623978
-0.114767
-0.103909
-0.105795
-0.103583
-0.106116
-0.112963
-0.104032
-0.0426013
-0.0590696
-0.0450852
0.00138008
-0.214197
-0.0360631
-0.227579
-0.0298988
-0.11151
-0.0979437
-0.0536501
-0.0812496
-0.113334
-0.0876608
-0.102609
-0.119176
-0.0910999
-0.127532
-0.0582277
-0.132399
-0.116098
-0.091696
-0.0600753
-0.0493725
-0.0455441
-0.110675
-0.100318
-0.0984443
-0.0951396
-0.103119
-0.100594
-0.104866
-0.0923616
-0.0996079
-0.0930229
-0.119193
-0.106722
-0.0943018
-0.101713
-0.095051
-0.0618779
-0.132508
-0.150038
-0.131126
-0.0935655
-0.107552
-0.104181
-0.0973387
-0.105655
-0.0976835
-0.0923632
-0.0938262
-0.0708076
-0.0956234
-0.135895
-0.147453
-0.126882
-0.0269615
-0.0219971
-0.016422
-0.0379724
-0.0262364
-0.0071407
-0.0231769
-0.0137057
-0.0309906
-0.0189067
-0.062879
-0.069763
-0.0539297
-0.075547
-0.0623627
-0.0521787
-0.0766728
-0.0473481
-0.034607
-0.0119592
-0.036898
-0.0331788
-0.0497686
-0.0339242
-0.0241454
-0.037037
-0.00923148
-0.0128655
-0.0115487
-0.021584
-0.0407066
0.0110047
-0.00747171
0.0120732
0.0787464
-0.00717203
0.0208197
-0.0121477
0.0128248
0.0901441
-0.0471105
-0.0323237
-0.0174449
-0.00106043
-0.0219454
0.0856367
0.0180672
-0.00410937
-0.018809
0.0831861
-0.0408408
-0.0644256
-0.0156376
-0.032483
-0.0226028
-0.0434874
-0.0346748
-0.0603942
-0.0876514
-0.0543956
-0.0851216
-0.0511385
-0.0631221
-0.0855642
-0.0493896
-0.0721246
-0.0349665
-0.0663317
-0.0297259
-0.0616548
-0.0543188
-0.0562799
-0.0572299
-0.0737481
-0.0786686
-0.039191
-0.0568902
-0.0812011
-0.193269
0.0246948
-0.0149559
-0.0100804
0.0456693
-0.0169471
0.0735004
0.0198674
-0.0257982
-0.0162141
0.0711788
-0.00787999
-0.045277
-0.0245141
0.0191237
0.0806536
-0.0208862
-0.0147313
0.0774843
-0.0825712
-0.0140365
-0.0470926
0.0472335
-0.0324241
0.0460192
-0.0660133
-0.0545219
-0.0320404
-0.0496074
-0.0577081
-0.0707106
-0.0542437
-0.0745358
-0.0598982
-0.0539007
-0.0737306
-0.0412345
-0.0334137
-0.0228195
-0.0112206
-0.0279693
-0.0375715
-0.0351404
-0.0544483
-0.0514069
-0.0587847
-0.0592637
-0.0555558
-0.0448305
-0.0355284
-0.037858
-0.0135479
-0.0480219
-0.0330131
-0.0369165
-0.0442781
-0.0244023
-0.00762163
-0.0425752
-0.0231411
-0.0173628
-0.00379128
-0.0285663
-0.0462186
-0.0669108
-0.0424032
-0.0655035
-0.0454344
-0.0438172
-0.0696243
-0.0208199
-0.0374696
-0.0084999
0.00374096
-0.0117919
0.00154995
-0.0182838
-0.0491057
-0.053587
-0.0691608
-0.0759228
-0.0496994
-0.0527815
-0.0725523
0.0784652
0.133922
0.156481
-0.0150742
0.152474
0.0635987
-0.0190833
0.068307
0.0548149
0.0814811
0.0449343
0.0510269
0.0913404
0.0385442
0.101722
0.172748
0.162591
0.120516
0.15737
0.0403793
0.129593
0.0477981
0.0126415
0.0124978
0.0250818
0.0326679
0.0247982
0.0226971
0.0466991
0.0561762
0.10276
0.0376353
0.102977
0.032899
0.0490557
0.0219548
0.0217222
0.0235772
0.0225342
0.0249012
0.0192735
0.0236129
0.0458936
0.056408
0.105258
0.0325399
0.103856
0.0320059
0.0454505
0.0230711
0.0273785
0.0231111
0.021457
0.0256718
0.0241164
0.0230215
0.0386464
-0.0415804
0.115815
0.00423616
0.0515191
0.101973
-0.011133
-0.00308721
-0.0206279
-0.0238457
-0.019569
-0.0250556
-0.0010947
-0.0183303
0.0292147
-0.0601077
0.0803246
-0.0377282
0.0960738
-0.0224966
0.0149768
0.00581532
0.00219103
0.000456643
-0.010113
0.0184786
-0.012497
-0.0106856
0.0571327
0.101444
0.14575
0.0452851
0.0660928
0.111155
0.0525335
0.013366
-0.00669317
-0.0181025
0.00435803
0.00612108
-0.000480586
0.00543906
0.0459005
0.156653
-0.0469008
0.119914
0.00398231
0.11256
0.035383
0.0238903
0.027344
0.017023
0.0178634
0.0284734
0.0242574
0.0147037
-0.0888918
-0.0829594
-0.0931487
-0.0567886
-0.0378757
-0.0394504
-0.0494958
0.0665222
-0.132869
-0.133878
-0.117514
0.0992125
-0.0781481
0.0973142
-0.078054
-0.0699867
-0.0865399
-0.0469744
-0.0312563
-0.0359921
-0.0354098
-0.0159644
0.00890734
0.0709569
0.0293918
0.0266083
0.00586374
-0.0152031
-0.120407
0.0908697
0.169145
0.261532
0.172639
-0.069351
0.129362
-0.0282415
0.00980665
0.0649147
0.0217008
0.00649303
0.00315697
0.000985956
-0.106832
0.136525
0.168314
0.241157
0.156134
-0.0688249
0.131803
-0.0327389
-0.0470259
-0.0344479
-0.0215508
0.00113778
-0.0122402
-0.0057654
0.0360728
-0.121899
-0.0395824
-0.0475617
0.0968638
-0.0785148
0.102089
-0.0543333
-0.0532835
-0.0405633
-0.0294959
-0.0270133
-0.0206313
-0.0301105
0.00975571
0.132079
0.1877
0.180556
0.19046
0.141169
0.0629272
-0.00729017
0.1345
0.177453
0.213561
0.192146
-0.0557767
0.138428
-0.0743999
0.0827266
0.0963473
0.217059
0.115679
0.208592
0.148336
-0.00636734
0.072156
0.0538972
0.183273
0.0922912
0.190262
0.132302
-0.777296
-0.742749
-0.788037
-0.74197
-0.794365
-0.741184
-0.74062
-0.301546
-0.327394
-0.29963
-0.280093
-0.286026
-0.287614
-0.331844
-0.302635
-0.30346
-0.32292
-0.377338
-0.376455
-0.416127
-0.35962
-0.420225
-0.424811
-0.36137
-0.422875
-0.427439
-0.361138
-0.425575
-0.326081
-0.376981
-0.378763
-0.36642
-0.424068
-0.424954
-0.274785
-0.289776
-0.289254
-0.311238
-0.332266
-0.311111
-0.306003
-0.331882
-0.305788
-0.278226
-0.320289
-0.329858
-0.318122
-0.320517
-0.315175
-0.285714
-0.285192
-0.319132
-0.307555
-0.294221
-0.283465
-0.311771
-0.308789
-0.38943
-0.279382
-0.330338
-0.329887
-0.31007
-0.326484
-0.281903
-0.312048
-0.351651
-0.303309
-0.31879
-0.320078
-0.349943
-0.319825
-0.321488
-0.400616
-0.345759
-0.413153
-0.351521
-0.413653
-0.402152
-0.344572
-0.399003
-0.414632
-0.341995
-0.351037
-0.397585
-0.414119
-0.343449
-0.389482
-0.336453
-0.347643
-0.408388
-0.410355
-0.337539
-0.386768
-0.345816
-0.300593
-0.317635
-0.318761
-0.347999
-0.316484
-0.31767
-0.392581
-0.414391
-0.348822
-0.340645
-0.412746
-0.395455
-0.339342
-0.27531
-0.300767
-0.303042
-0.286257
-0.278656
-0.299031
-0.284649
-0.293107
-0.308769
-0.343774
-0.332674
-0.340856
-0.296316
-0.308503
-0.290277
-0.3336
-0.308924
-0.331807
-0.285039
-0.338017
-0.308616
-0.310609
-0.332471
-0.327939
-0.315906
-0.299588
-0.324055
-0.299446
-0.316468
-0.309006
-0.321211
-0.326501
-0.305687
-0.301557
-0.302683
-0.307211
-0.303494
-0.386003
-0.356771
-0.386295
-0.360837
-0.359976
-0.332332
-0.332493
-0.359446
-0.361144
-0.333209
-0.361699
-0.333259
-0.385254
-0.367168
-0.362973
-0.385479
-0.385692
-0.353805
-0.349008
-0.386577
-0.363109
-0.333202
-0.333621
-0.362919
-0.362306
-0.333318
-0.362298
-0.333165
-0.386037
-0.340746
-0.346551
-0.384981
-0.323098
-0.33507
-0.31836
-0.339337
-0.314735
-0.313013
-0.320166
-0.30612
-0.32433
-0.344915
-0.340856
-0.328921
-0.313799
-0.301773
-0.308987
-0.305775
-0.269401
-0.285017
-0.270386
-0.246522
-0.283639
-0.271318
-0.242265
-0.251576
-0.245266
-0.186351
-0.160714
-0.192187
-0.249676
-0.244245
-0.267256
-0.267471
-0.280776
-0.232074
-0.282051
-0.237551
-0.265233
-0.254026
-0.205698
-0.246125
-0.163344
-0.256474
-0.198756
-0.245047
-0.31161
-0.321978
-0.299491
-0.297385
-0.324051
-0.310432
-0.298706
-0.322734
-0.322173
-0.358513
-0.367693
-0.365365
-0.32199
-0.323832
-0.32174
-0.360442
-0.359025
-0.321739
-0.362961
-0.320767
-0.321812
-0.312837
-0.301704
-0.328111
-0.301564
-0.326096
-0.300063
-0.314166
-0.308131
-0.31992
-0.296042
-0.292884
-0.294844
-0.309209
-0.31798
-0.317829
-0.321334
-0.361276
-0.350869
-0.3533
-0.321214
-0.317145
-0.318813
-0.357948
-0.32149
-0.36069
-0.31972
-0.355694
-0.32144
-0.306957
-0.29068
-0.29264
-0.314066
-0.293557
-0.315978
-0.306126
-0.275544
-0.278296
-0.286571
-0.250641
-0.273379
-0.288118
-0.254821
-0.265162
-0.253819
-0.234715
-0.186209
-0.227257
-0.268382
-0.251442
-0.277694
-0.280914
-0.291408
-0.26333
-0.289708
-0.259034
-0.280001
-0.262177
-0.212724
-0.247744
-0.179919
-0.259206
-0.219873
-0.249439
-0.291964
-0.276145
-0.255607
-0.270357
-0.276944
-0.290832
-0.272751
-0.31097
-0.331862
-0.29862
-0.318432
-0.296083
-0.311121
-0.331343
-0.292855
-0.258603
-0.2762
-0.2786
-0.277267
-0.27573
-0.292541
-0.309769
-0.291071
-0.328603
-0.316034
-0.308463
-0.293361
-0.329959
-0.265268
-0.253029
-0.238902
-0.26538
-0.255195
-0.264854
-0.264671
-0.273821
-0.286087
-0.305449
-0.285025
-0.282873
-0.285266
-0.274649
-0.272733
-0.278316
-0.303852
-0.283158
-0.280697
-0.271797
-0.284132
-0.265925
-0.239654
-0.260213
-0.263583
-0.257579
-0.264294
-0.26636
-0.194804
-0.175402
-0.188957
-0.293377
-0.228177
-0.236504
-0.250975
-0.298815
-0.243832
-0.183603
-0.176525
-0.183197
-0.209222
-0.25227
-0.247586
-0.272606
-0.309063
-0.276865
-0.199961
-0.237168
-0.242491
-0.284688
-0.312251
-0.280889
-0.263952
-0.251148
-0.265942
-0.241987
-0.266342
-0.264411
-0.248884
-0.268377
-0.280569
-0.295882
-0.264861
-0.2705
-0.279817
-0.27005
-0.269758
-0.27578
-0.281963
-0.29769
-0.270716
-0.27249
-0.28105
-0.263036
-0.244484
-0.267593
-0.243505
-0.2663
-0.248098
-0.264424
-0.28764
-0.248281
-0.274983
-0.267794
-0.289403
-0.273483
-0.265301
-0.30321
-0.321133
-0.280838
-0.306976
-0.283471
-0.301038
-0.323317
-0.286077
-0.245824
-0.270504
-0.260374
-0.272196
-0.262814
-0.284056
-0.304982
-0.288581
-0.326982
-0.309379
-0.306863
-0.286056
-0.325116
-0.22617
-0.256349
-0.260137
-0.297595
-0.323525
-0.294489
-0.230988
-0.268024
-0.264149
-0.288085
-0.320824
-0.291233
-0.305893
-0.32294
-0.313561
-0.291867
-0.306401
-0.309814
-0.298542
-0.295335
-0.305641
-0.330334
-0.324718
-0.321211
-0.320946
-0.339113
-0.336427
-0.349293
-0.370976
-0.351301
-0.317921
-0.33152
-0.334015
-0.355395
-0.372533
-0.353285
-0.333078
-0.342253
-0.345932
-0.368714
-0.381073
-0.364389
-0.338674
-0.356807
-0.350329
-0.358049
-0.378332
-0.36083
-0.370669
-0.396896
-0.349023
-0.362579
-0.373676
-0.347532
-0.391892
-0.354036
-0.343159
-0.316507
-0.3287
-0.344802
-0.330219
-0.351959
-0.356099
-0.333132
-0.347974
-0.318102
-0.358101
-0.346478
-0.331809
-0.367954
-0.360667
-0.344285
-0.3838
-0.34586
-0.3877
-0.36533
-0.438603
-0.385529
-0.433732
-0.397072
-0.437895
-0.396198
-0.446611
-0.430575
-0.432767
-0.404732
-0.415089
-0.406068
-0.426472
-0.435958
-0.430639
-0.385878
-0.433622
-0.393897
-0.438287
-0.395035
-0.424729
-0.43528
-0.408503
-0.416558
-0.443078
-0.407406
-0.439761
-0.439619
-0.453426
-0.428593
-0.381152
-0.39748
-0.39719
-0.42264
-0.452832
-0.459255
-0.45917
-0.411548
-0.421262
-0.411131
-0.465887
-0.455047
-0.44919
-0.379103
-0.39446
-0.410076
-0.396023
-0.416398
-0.443547
-0.45136
-0.409442
-0.420352
-0.446877
-0.410434
-0.444744
-0.450802
-0.331316
-0.331599
-0.285202
-0.302595
-0.327754
-0.283905
-0.334348
-0.334619
-0.309091
-0.226449
-0.25441
-0.318123
-0.257617
-0.335377
-0.33279
-0.263432
-0.321462
-0.230898
-0.329364
-0.321879
-0.260994
-0.334932
-0.301624
-0.28048
-0.341121
-0.282095
-0.337451
-0.338372
-0.352487
-0.321624
-0.339059
-0.336533
-0.338366
-0.337136
-0.352485
-0.37076
-0.393015
-0.357586
-0.373781
-0.356226
-0.371918
-0.39134
-0.353084
-0.322608
-0.338431
-0.339364
-0.338344
-0.338189
-0.353729
-0.369635
-0.354245
-0.372392
-0.388567
-0.355014
-0.369051
-0.389705
-0.353307
-0.339835
-0.320077
-0.335763
-0.335695
-0.341454
-0.352545
-0.368879
-0.386892
-0.352966
-0.36931
-0.352698
-0.369764
-0.38669
-0.354307
-0.319514
-0.335744
-0.346268
-0.335353
-0.343482
-0.356012
-0.368604
-0.353328
-0.369931
-0.387493
-0.353129
-0.368504
-0.387025
-0.291189
-0.326401
-0.276233
-0.305545
-0.292048
-0.272831
-0.324915
-0.289128
-0.252438
-0.290628
-0.252069
-0.258994
-0.237686
-0.182569
-0.228989
-0.238713
-0.231401
-0.257705
-0.331478
-0.385855
-0.393646
-0.32732
-0.335967
-0.408787
-0.339662
-0.401689
-0.261251
-0.238498
-0.238656
-0.185331
-0.261138
-0.240527
-0.234457
-0.287958
-0.30272
-0.267136
-0.318118
-0.269777
-0.320661
-0.286015
-0.390185
-0.340786
-0.363096
-0.357775
-0.367751
-0.357354
-0.386229
-0.453213
-0.492826
-0.493304
-0.453872
-0.399429
-0.392865
-0.358506
-0.369172
-0.36525
-0.388828
-0.395516
-0.446088
-0.435331
-0.445665
-0.42904
-0.392237
-0.342546
-0.375223
-0.352911
-0.371217
-0.35669
-0.391811
-0.459635
-0.486077
-0.491783
-0.466005
-0.401713
-0.372273
-0.370845
-0.402513
-0.368797
-0.401366
-0.394932
-0.384466
-0.359696
-0.334413
-0.356917
-0.355692
-0.35846
-0.384082
-0.398184
-0.411134
-0.371572
-0.383436
-0.372911
-0.396966
-0.41005
-0.492366
-0.460549
-0.467117
-0.501295
-0.453778
-0.438945
-0.447865
-0.447814
-0.484498
-0.479525
-0.47378
-0.474279
-0.380457
-0.331843
-0.351614
-0.351718
-0.353601
-0.353953
-0.3793
-0.40269
-0.373506
-0.38162
-0.40449
-0.373908
-0.400815
-0.410325
-0.262773
-0.306266
-0.254941
-0.218403
-1.07024
-1.05725
-1.11266
-1.09781
-1.15051
-1.12682
-1.0916
-1.12514
-1.13291
-1.10293
-1.12082
-1.10352
-1.14419
-1.10848
-1.13317
-1.10238
-1.16962
-1.16769
-1.17831
-1.24178
-1.16633
-1.15568
-1.22089
-1.16356
-1.17567
-1.08383
-1.04247
-1.07307
-1.08703
-1.05055
-1.07253
-1.06113
-1.05204
-1.03606
-1.0579
-1.0333
-1.1005
-1.10776
-1.18038
-1.17412
-1.2213
-1.20316
-1.17985
-1.20182
-1.18914
-1.21606
-1.20078
-1.26488
-1.24027
-1.26614
-1.20007
-1.18434
-1.17616
-1.19939
-1.18007
-1.19291
-1.20975
-1.20741
-1.18375
-1.20094
-1.27891
-1.35029
-1.3124
-1.33557
-1.28971
-1.29168
-1.34322
0.137899
0.0786957
0.153328
0.0684018
0.153155
0.207094
0.119042
0.131332
0.0513928
0.0661502
-0.0160508
-0.0247297
-0.0281575
0.067809
0.0483182
0.0753806
0.0723479
0.0884035
0.0616135
0.0995724
0.0755265
0.0546444
0.0556804
0.0560332
0.0492461
-0.0380652
-0.0207957
0.0480936
-0.0338051
0.0534777
0.0625186
0.0637511
0.0594289
0.045384
-0.0182683
-0.0220791
0.0435163
-0.0255755
0.0262969
0.0203561
-0.0277717
0.0182477
-0.0218979
-0.0158272
0.0975094
0.0767379
0.0826069
0.0596337
0.0881862
0.0856825
0.0633949
-0.0194622
0.00279111
0.0347866
-0.0148616
0.00556032
0.0708048
0.069268
-0.0248347
0.0115801
0.0247469
-0.0204167
0.00309498
0.0638811
0.066199
0.0410128
-0.0206151
0.0354671
0.0523776
0.00499703
0.0844701
-0.000171958
0.0758781
-0.00407168
0.00848048
0.0835939
0.0391872
0.0366556
0.037643
0.0369297
-0.00590476
0.0442868
0.0837424
0.0398591
-0.00929325
0.0775646
-0.0425751
-0.041729
-0.0429807
-0.038296
-0.0511251
0.0425556
0.0286667
0.0401701
0.0281331
0.0380361
0.0441267
0.0277697
0.0417079
0.0333231
0.0256993
0.0269177
0.0375794
0.0367255
0.0277081
-0.0374204
0.0384609
0.0101981
-0.00811581
-0.0335177
-0.032407
0.0178317
0.0298074
0.0291895
-0.0869202
-0.0780938
-0.00162408
0.0255305
-0.0747759
0.0102703
0.0407992
0.0365687
-0.00879281
0.0313377
-0.0357906
0.0573442
0.0188248
-0.0351353
-0.0352159
0.0593275
-0.00883878
0.0545229
-0.00741744
0.0672653
0.0510343
-0.00160568
0.0174403
-0.00262138
0.0682729
0.0497129
0.0428867
0.0181467
-0.0212628
0.0412652
0.0216549
0.0605031
-0.00497681
-0.00622177
0.0612457
0.0660265
-0.00227078
0.0440425
0.0163644
0.0603501
-0.00339597
0.0482684
0.0447982
0.0306088
-0.0181831
0.0443781
0.0249826
0.023855
-0.060446
-0.0454314
0.0372864
-0.0600741
0.0254125
0.0399362
0.017657
0.0103316
0.0271338
-0.0136439
0.0294438
0.0146117
0.0123346
0.0199614
-0.0485936
-0.064669
0.034499
-0.0629824
0.0361312
0.0174455
0.0219774
0.0344854
0.0146212
-0.0141349
0.0258067
0.0341053
0.0134988
-0.0310392
-0.0251852
-0.00694864
-0.0287375
-0.110127
-0.111386
-0.113378
-0.0991081
-0.158779
-0.080621
-0.0756482
-0.0970159
-0.0898092
-0.107364
-0.142158
-0.0480429
-0.029095
-0.0243537
-0.0260271
-0.0289343
-0.0291457
-0.0337698
-0.0361764
-0.0245356
-0.0531871
-0.131399
-0.169639
-0.0757977
-0.0570797
-0.172261
-0.0737438
-0.0622992
-0.185546
-0.175401
-0.0678348
-0.0562178
-0.158774
-0.0555239
-0.164189
-0.0345706
-0.0432684
-0.0402806
-0.0390857
0.0341308
-0.045392
-0.0527043
0.040518
0.0314324
-0.0537723
0.0420563
0.0442965
0.0421112
0.0703258
0.0534866
0.0652062
0.0486689
0.0381719
0.0368163
-0.0436515
-0.0510143
0.0493502
-0.0521697
0.0454061
0.0394976
0.0409626
0.0518954
0.0300293
0.0501794
0.0355699
0.0601677
0.0364246
-0.0598006
-0.0589736
-0.1028
-0.0916346
-0.105628
-0.119873
-0.0961726
-0.0968509
-0.128161
-0.0852497
-0.0490934
-0.0676029
-0.0410687
-0.0857141
-0.078418
-0.0439388
-0.116331
-0.107136
-0.106976
-0.154178
-0.104893
-0.169323
-0.115866
-0.0906029
-0.125064
-0.0407707
-0.0429357
-0.0900506
-0.118894
-0.0430663
-0.0957369
-0.106442
-0.0969329
-0.0862883
-0.105863
-0.0956479
-0.0856029
-0.181115
-0.153755
-0.194219
-0.190646
-0.153697
-0.184862
-0.178313
-0.186339
-0.154119
-0.186417
-0.177631
-0.154718
-0.100742
-0.0972168
-0.103775
-0.0772176
-0.107921
-0.0859631
-0.119413
-0.159807
-0.116648
-0.166906
-0.178169
-0.125834
-0.175541
-0.0987365
-0.105867
-0.0880748
-0.0938066
-0.0905069
-0.097222
-0.104197
-0.180592
-0.173003
-0.168207
-0.177156
-0.16163
-0.172982
-0.179285
-0.185938
-0.156923
-0.17913
-0.184583
-0.159118
-0.101626
-0.0855345
-0.0952654
-0.0935233
-0.0946314
-0.0987398
-0.100275
-0.0908305
-0.102966
-0.0892012
-0.117413
-0.0939667
-0.0881037
-0.108886
-0.0845182
-0.0272826
-0.10833
-0.0296767
-0.115923
-0.0789345
-0.0329734
-0.0872876
-0.102941
-0.0832863
-0.0845185
-0.0873851
-0.097478
-0.0812818
-0.0874352
-0.124141
-0.0388018
-0.0349917
-0.0893841
-0.122054
-0.0358661
-0.143287
-0.126924
-0.128404
-0.243008
-0.254453
-0.192821
-0.144612
-0.198044
-0.125007
-0.139619
-0.10394
-0.101429
-0.142413
-0.12278
-0.103355
-0.126746
-0.106039
-0.147311
-0.107368
-0.144633
-0.105088
-0.129051
-0.172851
-0.160407
-0.192576
-0.172501
-0.157682
-0.176004
-0.169988
-0.172434
-0.187158
-0.176562
-0.145881
-0.149534
-0.190347
-0.168459
-0.175209
-0.155698
-0.180085
-0.196004
-0.152515
-0.178668
-0.19292
-0.170293
-0.190768
-0.151329
-0.165134
-0.155159
-0.168156
-0.166086
-0.245634
-0.249494
-0.160429
-0.17926
-0.176012
-0.222775
-0.260211
-0.228098
-0.157005
-0.167063
-0.171996
-0.237175
-0.264567
-0.232845
-0.182914
-0.162977
-0.175024
-0.199668
-0.17798
-0.178889
-0.166794
-0.190861
-0.213911
-0.199734
-0.174802
-0.168703
-0.208976
-0.195934
-0.186877
-0.158036
-0.197543
-0.193211
-0.181543
-0.163518
-0.204736
-0.18618
-0.202332
-0.18293
-0.17506
-0.180406
-0.17066
-0.190243
-0.118981
-0.0978667
-0.137209
-0.10001
-0.120807
-0.134857
-0.0983298
-0.117729
-0.0967877
-0.130967
-0.0936112
-0.133489
-0.0971105
-0.114544
-0.16995
-0.18305
-0.186234
-0.252928
-0.280374
-0.249582
-0.173406
-0.19316
-0.189866
-0.241736
-0.277024
-0.245665
-0.235752
-0.224101
-0.231587
-0.224734
-0.222981
-0.235463
-0.223889
-0.252354
-0.28453
-0.320759
-0.252158
-0.235533
-0.284946
-0.260183
-0.247686
-0.229193
-0.319737
-0.284687
-0.229541
-0.246802
-0.284318
-0.238251
-0.22508
-0.203427
-0.220671
-0.220502
-0.223142
-0.236802
-0.28075
-0.30925
-0.281233
-0.343978
-0.256836
-0.277105
-0.275707
-0.34444
-0.275282
-0.314167
-0.283565
-0.288038
-0.304751
-0.317699
-0.31189
-0.461206
-0.225493
-0.343517
-0.201865
-0.346761
-0.182492
-0.298384
-0.333186
-0.32051
-0.435061
-0.317666
-0.17424
-0.178827
-0.322057
-0.430289
-0.180199
-0.234317
-0.222803
-0.225537
-0.235039
-0.224461
-0.235293
-0.224255
-0.247684
-0.282556
-0.304511
-0.216201
-0.22111
-0.286525
-0.249397
-0.247498
-0.227987
-0.285084
-0.314865
-0.2467
-0.226013
-0.28548
-0.337488
-0.322561
-0.329439
-0.42475
-0.182251
-0.330415
-0.170928
-0.325554
-0.424994
-0.180952
-0.346735
-0.35063
-0.33864
-0.423554
-0.320239
-0.168265
-0.181702
-0.321727
-0.426479
-0.178988
-0.287601
-0.431999
-0.316653
-0.289277
-0.408438
-0.31038
-0.289542
-0.289818
-0.28698
-0.307921
-0.286399
-0.314756
-0.292088
-0.412541
-0.292444
-0.402501
-0.626603
-0.33038
-0.599071
-0.322852
-0.576908
-0.31992
-0.627123
-0.343203
-0.222152
-0.270243
-0.204056
-0.273055
-0.34017
-0.22474
-0.627108
-0.331619
-0.541765
-0.316492
-0.561781
-0.318947
-0.62543
-0.34551
-0.277192
-0.205821
-0.228604
-0.274776
-0.348516
-0.226467
-0.60341
-0.49611
-0.302953
-0.318723
-0.330435
-0.528419
-0.591011
-0.352589
-0.236641
-0.286604
-0.213422
-0.283936
-0.355808
-0.233556
-0.604006
-0.302416
-0.335184
-0.558572
-0.332379
-0.542572
-0.604469
-0.348697
-0.275664
-0.21151
-0.227589
-0.281507
-0.342823
-0.230401
-0.52032
-0.34459
-0.679762
-0.407881
-0.508968
-0.349838
-0.689178
-0.430836
-0.406113
-0.392863
-0.331638
-0.328456
-0.393377
-0.439821
-0.420944
-0.327571
-0.375052
-0.39108
-0.414064
-0.325261
-0.380125
-0.531672
-0.412751
-0.360149
-0.70766
-0.355103
-0.698373
-0.542485
-0.496662
-0.435975
-0.782326
-0.38428
-0.787388
-0.383102
-0.495724
-0.360978
-0.290186
-0.314555
-0.246543
-0.315717
-0.361465
-0.29015
-0.499258
-0.432254
-0.777343
-0.379377
-0.785265
-0.381092
-0.503117
-0.360184
-0.318118
-0.24777
-0.289508
-0.317153
-0.360063
-0.289464
-0.496097
-0.779249
-0.444289
-0.386539
-0.388399
-0.775697
-0.49572
-0.360634
-0.289977
-0.323611
-0.251832
-0.322336
-0.362448
-0.288943
-0.495908
-0.446526
-0.391106
-0.767744
-0.38998
-0.771528
-0.496598
-0.360531
-0.319612
-0.250797
-0.289117
-0.321046
-0.359952
-0.289463
-0.790247
-0.499201
-0.871501
-0.523625
-0.784968
-0.503497
-0.864182
-0.64866
-0.570771
-0.443289
-0.470973
-0.46625
-0.565057
-0.656046
-0.640752
-0.456592
-0.552591
-0.43909
-0.633471
-0.461475
-0.558634
-0.795746
-0.52576
-0.512316
-0.8483
-0.507897
-0.856479
-0.801013
-0.447308
-0.469234
-0.574238
-0.397764
-0.580797
-0.396991
-0.443586
-0.382719
-0.276413
-0.335264
-0.273613
-0.337508
-0.336583
-0.248089
-0.258725
-0.197118
-0.25634
-0.183285
-0.444783
-0.47143
-0.594023
-0.402637
-0.591979
-0.398002
-0.423122
-0.387117
-0.338224
-0.274929
-0.21194
-0.337819
-0.382085
-0.219226
-0.435748
-0.570038
-0.472255
-0.39962
-0.400777
-0.565692
-0.440192
-0.371576
-0.210985
-0.344379
-0.282416
-0.342739
-0.369086
-0.210963
-0.256499
-0.213319
-0.256184
-0.22917
-0.43269
-0.474106
-0.404192
-0.55695
-0.402673
-0.562678
-0.426723
-0.374176
-0.339752
-0.280294
-0.210378
-0.340834
-0.378313
-0.209612
-0.863808
-0.601472
-0.581311
-0.55397
-0.869903
-0.601512
-0.589327
-0.820669
-0.718093
-0.564484
-0.590944
-0.589779
-0.714355
-0.820169
-0.82141
-0.587577
-0.708393
-0.562264
-0.822306
-0.588724
-0.710891
-0.854216
-0.555485
-0.600682
-0.609716
-0.60115
-0.599363
-0.844184
-0.483749
-0.506833
-0.518757
-0.456109
-0.514134
-0.454198
-0.48719
-0.54156
-0.536583
-0.320837
-0.257667
-0.39267
-0.326378
-0.394349
-0.318613
-0.25969
-0.428856
-0.40144
-0.433124
-0.397154
-0.480338
-0.50536
-0.499276
-0.451701
-0.507453
-0.452673
-0.476624
-0.546631
-0.551208
-0.322393
-0.398505
-0.328309
-0.26247
-0.396342
-0.324645
-0.260788
-0.493893
-0.522733
-0.512572
-0.458256
-0.460547
-0.527469
-0.49045
-0.330553
-0.269679
-0.408093
-0.335801
-0.405076
-0.333748
-0.267018
-0.566167
-0.570557
-0.441208
-0.405536
-0.437186
-0.409524
-0.560449
-0.555742
-0.497195
-0.514389
-0.465261
-0.538381
-0.462594
-0.532697
-0.501331
-0.328812
-0.400642
-0.333924
-0.264046
-0.402935
-0.326666
-0.265656
-0.786551
-0.635058
-0.679921
-0.584208
-0.788617
-0.631062
-0.692305
-1.00956
-0.940829
-0.645899
-0.651488
-0.655061
-0.93722
-1.00375
-0.735964
-0.738429
-1.01651
-0.662576
-0.927303
-0.645498
-1.02139
-0.66017
-0.933403
-0.798384
-0.579684
-0.617797
-0.72277
-0.623508
-0.728222
-0.800581
-0.421994
-0.536083
-0.612705
-0.479492
-0.613612
-0.47909
-0.421557
-0.537989
-0.679418
-0.678857
-0.540203
-0.338346
-0.29165
-0.43664
-0.365041
-0.43814
-0.337365
-0.29601
-0.477677
-0.527077
-0.478046
-0.512501
-0.423155
-0.536087
-0.615107
-0.478172
-0.61446
-0.479125
-0.423463
-0.535999
-0.677372
-0.679083
-0.533272
-0.338276
-0.438982
-0.366322
-0.304569
-0.438268
-0.339342
-0.299918
-0.419334
-0.609158
-0.532387
-0.479257
-0.480288
-0.603545
-0.420289
-0.346865
-0.330376
-0.442238
-0.371518
-0.440255
-0.352302
-0.322954
-0.50651
-0.589131
-0.597733
-0.51305
-0.481442
-0.540978
-0.47868
-0.553576
-0.525049
-0.67403
-0.666824
-0.530105
-0.415724
-0.526543
-0.483426
-0.523928
-0.48096
-0.565341
-0.416522
-0.343379
-0.439032
-0.370119
-0.30963
-0.440109
-0.340599
-0.315838
-0.682911
-0.680797
-0.592167
-0.592857
-0.558363
-0.406753
-0.406769
-0.556733
-0.560471
-0.389086
-0.562394
-0.398475
-0.405944
-0.264964
-0.0918394
-0.0919508
-0.266005
-0.409871
0.0876805
0.326367
0.0126851
0.174973
0.177399
0.0856823
-0.0947215
-0.0909199
-0.267875
-0.374292
-0.266449
-0.0911644
-0.404797
-0.0971639
-0.454859
-0.28175
-0.285294
-0.453434
-0.0959796
0.0746404
0.393284
0.0705484
0.175637
0.171915
0.0798301
0.168199
-0.100637
-0.270032
-0.343593
-0.27802
-0.0943752
-0.331483
-0.695489
-0.687866
-0.571657
-0.580104
-0.393293
-0.25113
-0.26484
-0.381548
-0.403061
-0.289104
-0.410827
-0.276157
0.0040282
0.138548
-0.201982
-0.177929
-0.0330685
0.111446
0.0250107
-0.141367
0.203758
-0.158637
0.0341717
0.141814
0.0385912
0.532092
-0.566873
-0.0953347
-0.105472
0.403437
0.0414634
0.0372483
-0.124916
-0.594005
0.251475
-0.113678
0.034995
0.360793
1.84609
1.87287
1.91436
1.87402
1.87634
1.88092
1.8413
1.81157
1.76574
1.81254
1.85961
1.847
1.75892
1.81846
1.80706
1.83022
1.80635
1.75144
1.83976
1.8019
1.754
1.85039
1.92207
1.89502
1.90022
1.88404
1.88701
1.85707
1.85428
1.82359
1.6326
1.72369
1.76699
1.772
1.79896
1.72394
1.77098
1.82333
1.82555
1.92966
1.90831
1.92506
1.95911
1.94274
1.90045
1.94941
1.96321
1.9626
1.94956
1.9471
1.96532
1.95596
1.96141
1.92606
1.92188
1.95201
1.887
1.95399
1.89083
1.92431
1.92486
1.94046
1.90568
1.90345
1.93142
1.92227
1.87806
1.89192
1.92621
1.75428
1.53133
1.74524
1.58044
1.71313
1.77167
1.55414
1.92977
1.93241
1.9093
1.94169
1.92152
1.94729
1.9217
1.90556
1.93659
1.75899
1.82116
1.8117
1.80456
1.75699
1.81335
1.81642
1.87509
1.86741
1.89411
1.82214
1.85892
1.86274
1.81183
1.89226
1.85208
1.8526
1.85662
1.85678
1.80791
0.770757
-0.303703
0.687682
0.307976
0.940401
1.00375
1.03367
1.25285
0.870224
1.18755
1.28206
0.974746
1.07543
1.47716
1.25853
1.22971
1.3471
0.773456
-0.767819
0.392383
0.393075
0.44047
0.662465
0.715019
-3.4217
-3.49583
-2.66889
-3.15355
-3.00378
-2.65268
-2.34968
-1.70421
-2.23588
-2.35987
-2.20577
-2.79107
-2.72258
-2.57944
-2.80527
-1.85073
-3.29341
-2.53313
-2.43867
-3.28848
-3.17768
-0.284586
-0.705715
-1.51577
-0.119321
-1.42271
-0.201919
0.0251738
-0.291983
-0.282208
-2.00598
-1.32279
-1.5925
-0.301364
-0.459539
-0.353442
-1.97174
0.694582
-1.78129
0.512913
-0.29696
-0.0723545
-1.5168
-1.39501
-0.175195
-0.0344846
-1.46934
-0.169863
-0.0660961
-1.2997
0.12354
-1.17634
0.163672
-1.20427
-0.129416
1.08163
0.725476
1.02283
0.764645
1.49057
1.66851
1.51614
1.67139
1.20101
0.983199
0.931739
1.23431
1.35958
1.52291
1.26128
1.60475
-3.58379
-0.953195
0.70237
0.249019
-0.569207
1.88805
1.93725
0.982808
0.489522
1.59169
1.05874
1.19213
1.26148
1.54374
1.07342
1.00622
-3.55012
0.122235
-1.08371
-0.568972
-0.409989
0.295881
0.793544
0.939825
0.764412
0.418058
0.223737
0.73596
1.43825
1.16374
1.49905
1.05327
0.912959
0.822471
0.970642
1.18464
1.00828
1.24769
0.756913
0.698091
0.765401
0.662169
1.88346
1.78112
-0.219801
0.334993
-2.55137
-0.709114
-0.693769
-0.708334
-0.852533
-2.59945
-0.690541
-0.884846
-0.414338
-0.772546
1.04466
1.38524
1.30223
0.842276
0.874344
0.811975
0.781166
-1.25854
0.227238
-1.55325
0.00323599
-0.255806
-0.216412
-3.55342
-1.15684
0.215784
-1.03316
0.152051
-0.229558
-0.229202
-0.162143
-0.165296
-0.160107
-0.161084
-0.163373
-0.164873
-0.164797
-0.176408
-0.177416
-0.175574
-0.159834
-0.163249
-0.167159
-0.165919
-0.165421
-0.16153
-0.172315
-0.168124
-0.123271
-0.122007
-0.12455
-0.11974
-0.123391
-0.125163
-0.119347
-0.130709
-0.131001
-0.141441
-0.131101
-0.143224
-0.131908
-0.129445
-0.145644
-0.132052
-0.140201
-0.128301
-0.133462
-0.144133
-0.174544
-0.184029
-0.188005
-0.178676
-0.176455
-0.19262
-0.173921
-0.174378
-0.1767
-0.190987
-0.185677
-0.175736
-0.175497
-0.190274
-0.108875
-0.10332
-0.107329
-0.105597
-0.110456
-0.114446
-0.110146
-0.112765
-0.119959
-0.121872
-0.114884
-0.115307
-0.126032
-0.128832
-0.132592
-0.140844
-0.13501
-0.121977
-0.114473
-0.11119
-0.116369
-0.120321
-0.126274
-0.131478
-0.126266
-0.121377
-0.120918
-0.123175
-0.128894
-0.128823
-0.128352
-0.120817
-0.122203
-0.112018
-0.10694
-0.112096
-0.110941
-0.111913
-0.111793
-0.107826
-0.122182
-0.129903
-0.123186
-0.120917
-0.130066
-0.130577
-0.119433
-0.130202
-0.120859
-0.119656
-0.171108
-0.168354
-0.15756
-0.157946
-0.157985
-0.149612
-0.144612
-0.148431
-0.150963
-0.149613
-0.142767
-0.14965
-0.15039
-0.10867
-0.111506
-0.109736
-0.123246
-0.109171
-0.118354
-0.128796
-0.116836
-0.112128
-0.110738
-0.109803
-0.117488
-0.114517
-0.114221
-0.114809
-0.12647
-0.123384
-0.107278
-0.112346
-0.135086
-0.126151
-0.149472
-0.106284
-0.106191
-0.121332
-0.122091
-0.125985
-0.124246
-0.141915
-0.135998
-0.12152
-0.140875
-0.121125
-0.110449
-0.0915829
-0.119839
-0.0953906
-0.124237
-0.132758
-0.134506
-0.126313
-0.11027
-0.109253
-0.100546
-0.108812
-0.09921
-0.140102
-0.142033
-0.134202
-0.129353
-0.142733
-0.13018
-0.139225
-0.152439
-0.1573
-0.149881
-0.145051
-0.153953
-0.155398
-0.148448
-0.156254
-0.152689
-0.157922
-0.157033
-0.152138
-0.162861
-0.158552
-0.137496
-0.125008
-0.130233
-0.136114
-0.128464
-0.132206
-0.138602
-0.117846
-0.127841
-0.117852
-0.124028
-0.118039
-0.118571
-0.123718
-0.106795
-0.0980757
-0.0970742
-0.105583
-0.106436
-0.0975465
-0.107198
-0.108823
-0.1088
-0.100085
-0.0999806
-0.108891
-0.109011
-0.100278
-0.119569
-0.120997
-0.121557
-0.121341
-0.123938
-0.122519
-0.119262
-0.109225
-0.107099
-0.157951
-0.14834
-0.156957
-0.15774
-0.164412
-0.126822
-0.137877
-0.134257
-0.520578
-0.542011
-0.522699
-0.55114
-0.521
-0.522131
-0.550297
-0.503956
-0.51845
-0.503558
-0.527022
-0.502536
-0.504732
-0.52727
-0.209803
-0.203829
-0.208333
-0.210916
-0.204897
-0.213431
-0.226798
-0.221847
-0.228614
-0.231867
-0.222385
-0.224079
-0.208943
-0.20636
-0.208006
-0.204089
-0.215771
-0.225358
-0.22412
-0.227607
-0.226808
-0.221289
-0.223686
-0.221742
-0.220685
-0.20978
-0.206359
-0.209925
-0.216438
-0.20848
-0.214463
-0.211709
-0.21038
-0.209737
-0.207988
-0.234696
-0.224656
-0.1841
-0.191517
-0.187346
-0.181724
-0.181295
-0.193944
-0.18497
-0.187455
-0.203608
-0.204626
-0.18994
-0.186504
-0.187019
-0.184712
-0.197972
-0.183168
-0.196168
-0.187614
-0.191321
-0.198185
-0.195626
-0.196423
-0.209948
-0.22194
-0.207779
-0.233789
-0.209204
-0.232947
-0.187896
-0.192377
-0.194758
-0.196056
-0.193572
-0.186575
-0.19739
-0.197819
-0.194165
-0.214967
-0.192832
-0.213068
-0.209841
-0.215411
-0.223902
-0.223625
-0.209407
-0.215913
-0.199557
-0.198106
-0.210513
-0.216765
-0.199516
-0.205773
-0.212503
-0.20915
-0.218536
-0.201613
-0.200553
-0.195841
-0.187151
-0.191032
-0.196027
-0.187896
-0.19357
-0.19817
-0.21062
-0.221499
-0.437817
-0.43676
-0.431689
-0.437112
-0.442184
-0.440624
-0.439316
-0.447808
-0.437541
-0.445033
-0.485623
-0.503762
-0.471049
-0.485
-0.485922
-0.467926
-0.495752
-0.488773
-0.486263
-0.486141
-0.482464
-0.487715
-0.50053
-0.479109
-0.501761
-0.502993
-0.523817
-0.523208
-0.498272
-0.504725
-0.498951
-0.524929
-0.502087
-0.504084
-0.505161
-0.499189
-0.500022
-0.503081
-0.498534
-0.499574
-0.502445
-0.501537
-0.505296
-0.461349
-0.501796
-0.466256
-0.462951
-0.465007
-0.500053
-0.45672
-0.454901
-0.46166
-0.460322
-0.49779
-0.449121
-0.462406
-0.453454
-0.483308
-0.449728
-0.458332
-0.442617
-0.451803
-0.448597
-0.446164
-0.453765
-0.483888
-0.272041
-0.227383
-0.246861
-0.244236
-0.272616
-0.214808
-0.268813
-0.245735
-0.233561
-0.261256
-0.265152
-0.240408
-0.2581
-0.25478
-0.243689
-0.256571
-0.225454
-0.223329
-0.234259
-0.235275
-0.396727
-0.393339
-0.44067
-0.439152
-0.438721
-0.438331
-0.446898
-0.43698
-0.443764
-0.439051
-0.441034
-0.437574
-0.446952
-0.416562
-0.410402
-0.410013
-0.408926
-0.409274
-0.417502
-0.408187
-0.448816
-0.441253
-0.442279
-0.448839
-0.411253
-0.403972
-0.403281
-0.406373
-0.408752
-0.405376
-0.406199
-0.506232
-0.507418
-0.509219
-0.478182
-0.480464
-0.50776
-0.479637
-0.478002
-0.504657
-0.478144
-0.507052
-0.479748
-0.434632
-0.4421
-0.438311
-0.439535
-0.413632
-0.396283
-0.398898
-0.422382
-0.41842
-0.397015
-0.418149
-0.406397
-0.401765
-0.395476
-0.398731
-0.403619
-0.405636
-0.395194
-0.421178
-0.420671
-0.43405
-0.42304
-0.43255
-0.419283
-0.409839
-0.407328
-0.235533
-0.226145
-0.231273
-0.230117
-0.233965
-0.218803
-0.222572
-0.216943
-0.222558
-0.211138
-0.216921
-0.220174
-0.206098
-0.212992
-0.240146
-0.234265
-0.228703
-0.246163
-0.229121
-0.236136
-0.226856
-0.210668
-0.231219
-0.228752
-0.230334
-0.206613
-0.243586
-0.233288
-0.22049
-0.218566
-0.235174
-0.227802
-0.217141
-0.235946
-0.235354
-0.220737
-0.228314
-0.239931
-0.241713
-0.233894
-0.23099
-0.237526
-0.248204
-0.236584
-0.246007
-0.238144
-0.232037
-0.247341
-0.249482
-0.243566
-0.246384
-0.244946
-0.279645
-0.256811
-0.264621
-0.262161
-0.269606
-0.241793
-0.222204
-0.224134
-0.219558
-0.208862
-0.259703
-0.240732
-0.229575
-0.243192
-0.24949
-0.246456
-0.261366
-0.217026
-0.220711
-0.223444
-0.215276
-0.213022
-0.223907
-0.20712
-0.240693
-0.245597
-0.270247
-0.232805
-0.267472
-0.256354
-0.265818
-0.253537
-0.273617
-0.297681
-0.244876
-0.23222
-0.27192
-0.274738
-0.2545
-0.305716
-0.247672
-0.252188
-0.256503
-0.263405
-0.252225
-0.253241
-0.268028
-0.267891
-0.259052
-0.292247
-0.253347
-0.288596
-0.248481
-0.262528
-0.241942
-0.22065
-0.230982
-0.215465
-0.232676
-0.208876
-0.248326
-0.228
-0.222344
-0.215428
-0.221115
-0.215051
-0.24527
-0.227033
-0.245812
-0.244545
-0.24821
-0.245197
-0.210566
-0.221595
-0.230949
-0.222949
-0.211997
-0.218729
-0.225091
-0.246403
-0.24368
-0.258417
-0.221854
-0.240437
-0.243412
-0.210404
-0.214738
-0.252128
-0.23109
-0.229641
-0.202056
-0.233299
-0.252634
-0.199679
-0.204788
-0.195331
-0.230392
-0.179492
-0.213046
-0.23234
-0.519568
-0.530058
-0.533471
-0.535515
-0.520223
-0.533046
-0.534075
-0.490848
-0.492259
-0.505087
-0.493349
-0.49043
-0.505482
-0.493469
-0.191572
-0.191959
-0.198288
-0.200132
-0.202165
-0.196797
-0.214748
-0.20254
-0.194465
-0.212522
-0.210106
-0.192979
-0.202999
-0.190227
-0.209689
-0.20174
-0.200985
-0.221047
-0.202894
-0.222299
-0.181637
-0.17824
-0.180003
-0.171661
-0.177603
-0.18085
-0.182345
-0.173059
-0.166444
-0.163467
-0.163801
-0.1687
-0.166208
-0.170399
-0.186923
-0.19541
-0.181092
-0.189253
-0.183698
-0.194468
-0.180526
-0.194633
-0.203989
-0.191282
-0.199542
-0.195303
-0.191186
-0.202086
-0.19244
-0.183763
-0.192101
-0.202108
-0.186626
-0.204526
-0.190452
-0.199312
-0.20347
-0.203082
-0.193128
-0.203207
-0.20219
-0.201871
-0.185135
-0.176063
-0.18429
-0.172137
-0.18058
-0.176331
-0.166806
-0.173717
-0.184256
-0.199324
-0.183261
-0.1816
-0.190013
-0.20513
-0.203987
-0.208421
-0.447011
-0.445891
-0.434645
-0.448098
-0.439302
-0.440391
-0.44332
-0.440971
-0.448298
-0.439057
-0.423741
-0.413552
-0.413867
-0.432972
-0.420489
-0.42021
-0.423145
-0.449527
-0.443112
-0.443764
-0.449599
-0.444781
-0.457041
-0.444789
-0.433704
-0.443212
-0.437288
-0.437896
-0.42434
-0.419458
-0.435485
-0.42427
-0.422286
-0.420554
-0.424925
-0.469807
-0.453902
-0.45575
-0.470568
-0.456524
-0.456912
-0.470944
-0.454268
-0.470696
-0.456922
-0.430363
-0.431361
-0.420579
-0.424201
-0.43486
-0.420032
-0.420435
-0.424728
-0.4201
-0.433747
-0.430574
-0.453394
-0.456235
-0.43141
-0.457444
-0.432818
-0.434462
-0.457864
-0.432306
-0.453822
-0.431768
-0.435251
-0.457997
-0.420382
-0.419775
-0.434527
-0.424267
-0.419932
-0.420293
-0.424359
-0.429501
-0.428599
-0.224083
-0.229162
-0.219643
-0.208249
-0.220314
-0.228143
-0.211979
-0.260794
-0.275374
-0.227386
-0.265332
-0.25883
-0.253681
-0.266204
-0.205644
-0.199802
-0.207872
-0.202524
-0.213684
-0.207834
-0.195553
-0.21383
-0.208254
-0.21665
-0.21382
-0.217048
-0.225527
-0.204947
-0.214643
-0.250585
-0.249598
-0.255756
-0.241448
-0.2445
-0.200956
-0.452408
-0.435603
-0.429177
-0.427837
-0.429492
-0.438009
-0.449143
-0.415532
-0.420467
-0.413673
-0.418119
-0.454027
-0.431736
-0.430252
-0.440754
-0.430748
-0.439162
-0.456394
-0.415798
-0.416867
-0.415908
-0.417419
-0.455008
-0.45543
-0.454186
-0.453327
-0.454674
-0.453975
-0.405577
-0.400027
-0.402598
-0.398653
-0.413236
-0.455494
-0.436159
-0.434196
-0.43397
-0.440176
-0.435076
-0.44943
-0.456947
-0.432883
-0.441373
-0.433675
-0.44114
-0.457493
-0.434508
-0.411693
-0.415594
-0.414848
-0.413274
-0.483022
-0.486955
-0.500188
-0.489354
-0.484583
-0.497394
-0.487897
-0.458828
-0.453735
-0.460403
-0.445821
-0.445879
-0.454046
-0.457877
-0.472461
-0.471968
-0.467813
-0.47712
-0.471353
-0.468952
-0.478124
-0.45227
-0.44695
-0.465162
-0.44545
-0.444533
-0.445708
-0.453405
-0.451189
-0.442125
-0.443156
-0.463823
-0.45001
-0.44358
-0.444381
-0.434778
-0.435904
-0.424842
-0.423485
-0.42341
-0.437102
-0.434304
-0.417322
-0.430521
-0.417502
-0.431134
-0.414565
-0.419008
-0.419234
-0.430514
-0.420164
-0.413582
-0.431643
-0.43337
-0.421987
-0.42268
-0.432493
-0.422393
-0.433291
-0.432492
-0.416385
-0.428617
-0.415454
-0.429916
-0.454218
-0.45962
-0.453539
-0.448225
-0.448534
-0.449206
-0.411729
-0.421721
-0.423857
-0.410099
-0.41117
-0.415544
-0.418178
-0.428961
-0.417126
-0.412331
-0.427889
-0.430277
-0.430265
-0.429261
-0.42497
-0.431137
-0.425013
-0.428977
-0.430547
-0.42144
-0.431821
-0.423358
-0.431131
-0.431578
-0.421675
-0.412826
-0.426794
-0.414063
-0.425159
-0.406131
-0.41032
-0.44645
-0.412102
-0.404503
-0.412253
-0.39553
-0.412819
-0.397353
-0.412523
-0.412193
-0.397543
-0.397129
-0.394523
-0.408245
-0.447698
-0.415196
-0.413705
-0.409894
-0.393392
-0.393775
-0.448885
-0.466943
-0.447716
-0.445214
-0.465107
-0.446394
-0.395203
-0.39437
-0.413135
-0.395221
-0.413256
-0.39751
-0.413717
-0.412625
-0.397436
-0.411577
-0.417746
-0.454288
-0.417287
-0.411985
-0.41126
-0.416369
-0.453399
-0.416861
-0.41115
-0.393443
-0.392197
-0.459183
-0.459594
-0.455301
-0.467397
-0.460382
-0.454086
-0.466484
-0.435982
-0.426723
-0.44595
-0.42454
-0.425848
-0.427601
-0.435383
-0.436883
-0.428427
-0.429833
-0.447169
-0.438135
-0.426924
-0.428613
-0.451251
-0.444137
-0.446501
-0.447004
-0.449765
-0.447988
-0.448267
-0.439777
-0.444561
-0.420291
-0.410951
-0.40935
-0.442852
-0.441461
-0.438303
-0.40599
-0.439534
-0.418327
-0.436662
-0.407961
-0.441132
-0.174638
-0.171377
-0.163833
-0.180336
-0.162642
-0.174546
-0.170432
-0.193897
-0.199853
-0.189335
-0.190325
-0.191305
-0.191088
-0.196508
-0.17546
-0.156071
-0.173195
-0.180337
-0.159626
-0.178933
-0.168185
-0.188728
-0.182812
-0.188336
-0.186661
-0.189588
-0.187436
-0.185434
-0.175535
-0.174266
-0.151318
-0.156834
-0.174212
-0.150908
-0.17702
-0.177175
-0.153618
-0.180507
-0.158714
-0.178144
-0.152422
-0.179193
-0.405061
-0.408685
-0.441754
-0.403143
-0.40858
-0.402424
-0.419111
-0.407581
-0.412819
-0.426545
-0.415132
-0.416694
-0.430822
-0.403893
-0.440011
-0.404436
-0.407061
-0.401766
-0.429165
-0.44541
-0.430003
-0.432275
-0.446765
-0.431068
-0.404704
-0.397306
-0.407295
-0.403893
-0.403911
-0.408294
-0.399476
-0.392174
-0.394092
-0.431037
-0.39578
-0.390708
-0.394283
-0.400417
-0.432488
-0.397654
-0.39679
-0.395813
-0.409832
-0.398113
-0.363159
-0.374691
-0.365813
-0.37465
-0.365541
-0.362957
-0.374355
-0.411295
-0.401644
-0.40027
-0.415312
-0.412735
-0.363231
-0.37585
-0.36629
-0.375149
-0.366524
-0.363343
-0.375344
-0.402737
-0.418224
-0.402457
-0.402064
-0.417894
-0.402312
-0.437987
-0.429945
-0.433312
-0.43609
-0.438623
-0.432625
-0.435821
-0.422737
-0.424793
-0.40011
-0.388855
-0.388963
-0.424811
-0.422905
-0.423979
-0.391621
-0.427049
-0.401557
-0.424842
-0.390583
-0.426213
-0.356322
-0.389366
-0.382711
-0.366191
-0.371392
-0.39222
-0.352126
-0.356795
-0.374448
-0.384379
-0.393592
-0.373013
-0.35876
-0.391742
-0.412588
-0.400842
-0.403817
-0.408686
-0.410687
-0.405459
-0.410503
-0.403142
-0.402182
-0.373044
-0.383711
-0.382219
-0.399968
-0.405066
-0.401635
-0.378838
-0.396396
-0.370967
-0.399705
-0.380764
-0.39819
-0.360918
-0.395168
-0.389149
-0.379106
-0.378058
-0.394745
-0.361716
-0.360379
-0.375585
-0.393641
-0.388384
-0.359198
-0.377104
-0.394374
-0.151502
-0.141215
-0.139485
-0.154762
-0.142982
-0.142311
-0.153074
-0.171172
-0.146015
-0.167565
-0.143538
-0.157037
-0.172281
-0.148767
-0.144433
-0.135713
-0.149989
-0.150483
-0.142951
-0.169888
-0.167148
-0.148245
-0.142233
-0.171054
-0.0981298
-0.0924729
-0.0925042
-0.0974889
-0.0917501
-0.100033
-0.0963317
-0.0960359
-0.0908206
-0.125741
-0.0913389
-0.132006
-0.0920018
-0.0958268
-0.131479
-0.0936313
-0.0975496
-0.131726
-0.0914601
-0.117789
-0.116291
-0.110841
-0.108625
-0.110595
-0.119117
-0.115626
-0.110682
-0.0998082
-0.0956232
-0.102456
-0.098269
-0.104364
-0.112111
-0.109074
-0.128127
-0.108243
-0.0996053
-0.107714
-0.101321
-0.113046
-0.150684
-0.135741
-0.156554
-0.147235
-0.150591
-0.158112
-0.145483
-0.139094
-0.137559
-0.148354
-0.142529
-0.134564
-0.152382
-0.133122
-0.162693
-0.153202
-0.163896
-0.15106
-0.148339
-0.15688
-0.140981
-0.133751
-0.15181
-0.138849
-0.133587
-0.157212
-0.141522
-0.150333
-0.150642
-0.14933
-0.152189
-0.136996
-0.147529
-0.162807
-0.165075
-0.137669
-0.14849
-0.161114
-0.393333
-0.404096
-0.391114
-0.351552
-0.369849
-0.352816
-0.368325
-0.355258
-0.349129
-0.371305
-0.402461
-0.387076
-0.389121
-0.393225
-0.394966
-0.344531
-0.363089
-0.35058
-0.364195
-0.348104
-0.346783
-0.360405
-0.379308
-0.39595
-0.38109
-0.385087
-0.397521
-0.382872
-0.392864
-0.385593
-0.393172
-0.325567
-0.368656
-0.320993
-0.367982
-0.320251
-0.387278
-0.393297
-0.39284
-0.377652
-0.374812
-0.328413
-0.368751
-0.321563
-0.369607
-0.322198
-0.393081
-0.390301
-0.39302
-0.392896
-0.39044
-0.393056
-0.343302
-0.383295
-0.361947
-0.356887
-0.358374
-0.347699
-0.3781
-0.340993
-0.355013
-0.354417
-0.373522
-0.356557
-0.339896
-0.375194
-0.402476
-0.382967
-0.396724
-0.393671
-0.403519
-0.395833
-0.392653
-0.397088
-0.395973
-0.381464
-0.377652
-0.378769
-0.396912
-0.39608
-0.398003
-0.380932
-0.399027
-0.382695
-0.399116
-0.379772
-0.397969
-0.338269
-0.371086
-0.348674
-0.351467
-0.352572
-0.372273
-0.337052
-0.339297
-0.354489
-0.373263
-0.349951
-0.339545
-0.353513
-0.373278
-0.317357
-0.350807
-0.330168
-0.333656
-0.334258
-0.3524
-0.315955
-0.317712
-0.336046
-0.331488
-0.354379
-0.335238
-0.318849
-0.352945
-0.395661
-0.375268
-0.393473
-0.38268
-0.394866
-0.393065
-0.384843
-0.388545
-0.389752
-0.370664
-0.367602
-0.366847
-0.389976
-0.389129
-0.3881
-0.365498
-0.390409
-0.370282
-0.387515
-0.366269
-0.390172
-0.321077
-0.357405
-0.334843
-0.339319
-0.338463
-0.356417
-0.322115
-0.320583
-0.336917
-0.354716
-0.334184
-0.319355
-0.337808
-0.355919
-0.126718
-0.126321
-0.12616
-0.117109
-0.125488
-0.124348
-0.127763
-0.117975
-0.122769
-0.154855
-0.121301
-0.119696
-0.127958
-0.127774
-0.130578
-0.131097
-0.128579
-0.129325
-0.129497
-0.117871
-0.11698
-0.153789
-0.11544
-0.121034
-0.0945637
-0.109846
-0.0963547
-0.110836
-0.0933744
-0.0980552
-0.108821
-0.0596619
-0.0719936
-0.0663442
-0.0496043
-0.0680964
-0.0751578
-0.0562844
-0.0679816
-0.0851019
-0.0772605
-0.0738141
-0.0895134
-0.106853
-0.0886713
-0.103329
-0.090143
-0.0868631
-0.105168
-0.0668545
-0.0767917
-0.0563113
-0.0897547
-0.0723892
-0.0830283
-0.0732901
-0.0865016
-0.100164
-0.114283
-0.115759
-0.110742
-0.0971466
-0.103047
-0.0947753
-0.0947399
-0.10492
-0.114037
-0.0822465
-0.0979207
-0.113868
-0.0941921
-0.106511
-0.102337
-0.0962337
-0.110381
-0.0843399
-0.0929765
-0.0833192
-0.0773
-0.100613
-0.109996
-0.0883255
-0.0836591
-0.0919241
-0.115448
-0.118708
-0.09838
-0.1163
-0.0982679
-0.0936207
-0.0918181
-0.0996284
-0.113796
-0.113901
-0.10975
-0.10669
-0.110109
-0.105464
-0.134673
-0.155229
-0.135704
-0.0964878
-0.11054
-0.105622
-0.099892
-0.0950449
-0.106856
-0.101683
-0.136021
-0.159303
-0.138265
-0.379692
-0.355593
-0.374174
-0.321323
-0.3524
-0.320493
-0.359234
-0.320393
-0.352552
-0.366131
-0.370285
-0.343872
-0.359828
-0.362289
-0.363119
-0.347035
-0.364371
-0.366528
-0.348323
-0.365625
-0.340178
-0.330924
-0.341351
-0.31551
-0.33971
-0.338228
-0.332003
-0.34465
-0.343192
-0.239679
-0.23746
-0.230016
-0.27184
-0.325622
-0.289509
-0.260038
-0.236383
-0.317858
-0.34041
-0.341475
-0.347849
-0.334234
-0.347019
-0.345439
-0.333777
-0.346397
-0.227002
-0.209515
-0.313874
-0.350798
-0.331969
-0.327463
-0.331377
-0.314828
-0.349856
-0.313271
-0.329719
-0.326809
-0.34831
-0.330625
-0.312283
-0.349198
-0.379168
-0.346607
-0.376435
-0.365387
-0.381255
-0.37331
-0.363575
-0.377421
-0.38461
-0.368281
-0.357203
-0.357545
-0.38731
-0.375944
-0.378843
-0.358937
-0.390447
-0.368069
-0.380237
-0.358169
-0.389519
-0.310505
-0.345541
-0.325746
-0.327907
-0.328137
-0.34648
-0.309487
-0.310926
-0.329426
-0.347823
-0.325767
-0.312117
-0.328657
-0.346745
-0.290051
-0.287591
-0.322089
-0.310663
-0.312111
-0.290093
-0.28844
-0.286222
-0.315397
-0.308995
-0.266124
-0.287641
-0.307882
-0.26419
-0.292339
-0.315968
-0.324537
-0.295618
-0.314268
-0.294105
-0.293143
-0.350482
-0.332986
-0.344362
-0.341894
-0.349069
-0.34569
-0.343202
-0.34925
-0.351791
-0.34643
-0.340759
-0.339031
-0.350272
-0.350715
-0.347512
-0.335331
-0.346771
-0.344309
-0.345905
-0.337163
-0.348303
-0.290861
-0.318306
-0.310139
-0.266765
-0.289353
-0.311177
-0.268641
-0.300194
-0.305662
-0.332807
-0.3237
-0.3219
-0.303487
-0.301766
-0.298344
-0.318082
-0.298471
-0.330568
-0.296395
-0.320011
-0.300906
-0.0940607
-0.0859523
-0.0986772
-0.0418279
-0.0457403
-0.0295876
-0.0257174
-0.0249755
-0.0445248
-0.0418561
-0.0561278
-0.0717168
-0.0535216
-0.0715533
-0.0539425
-0.056229
-0.0727766
-0.09409
-0.0897532
-0.097065
-0.0922353
-0.0932196
-0.0963708
-0.0390911
-0.0174943
-0.0203272
-0.0354285
-0.0209432
-0.0365053
-0.0386361
-0.084456
-0.0894185
-0.0987965
-0.0562075
-0.115842
-0.0603547
-0.273487
0.0254091
0.0504804
-0.000616134
0.00960835
0.0243408
0.00416339
0.0442481
-0.0637463
-0.0430858
-0.0540309
0.0301577
0.00536027
0.0550994
0.00953127
0.0354483
0.00636794
0.0462856
-0.0683797
-0.0912956
-0.0585751
-0.0853335
-0.0517624
-0.0817665
-0.0741311
-0.0708111
-0.0914758
-0.0600378
-0.097692
-0.0675432
-0.064103
-0.0943476
-0.0639791
-0.0870103
-0.041142
-0.0725959
-0.0463583
-0.0598721
-0.0769135
-0.0742464
-0.0738482
-0.101227
-0.0985177
-0.0689553
-0.0763278
-0.0970847
-0.260783
-0.0915889
-0.0878361
-0.0781943
-0.314635
0.0219011
0.0260784
-0.0102036
0.000176903
-0.00596632
0.0134918
0.0434308
-0.00981383
0.0853171
0.0518968
-0.0193805
0.0962398
-0.00144658
-0.0818619
-0.141183
-0.0839449
-0.0408459
-0.0714288
-0.0377396
0.0234238
0.00100787
0.010685
0.0782238
-0.00280309
0.0285118
0.072663
-0.0764746
-0.0805093
-0.0756878
-0.0525751
-0.0693772
-0.0521996
-0.0709258
-0.0529468
-0.0514657
-0.0705922
-0.0336067
-0.0330023
-0.0171666
-0.0122832
-0.0348456
-0.014256
-0.0323404
-0.060933
-0.0649795
-0.073301
-0.0662163
-0.0709672
-0.0337415
-0.0148985
-0.0337151
-0.0131496
-0.0347787
-0.0138016
-0.0326881
-0.0738745
-0.0697258
-0.0754268
-0.0917453
-0.105692
-0.0878211
-0.10559
-0.0755777
-0.0930992
-0.0726224
-0.0889708
-0.0842518
-0.0987691
-0.0963199
-0.0716279
-0.0935705
-0.184726
-0.192602
-0.186081
-0.247912
-0.217384
-0.216956
-0.190052
-0.188642
-0.187464
-0.338536
-0.328754
-0.337552
-0.327554
-0.335376
-0.336312
-0.328512
-0.336091
-0.336786
-0.28937
-0.266163
-0.265174
-0.241315
-0.220052
-0.242335
-0.242878
-0.218674
-0.242068
-0.250157
-0.222779
-0.248606
-0.292722
-0.266896
-0.268282
-0.220698
-0.243614
-0.244632
-0.27425
-0.215823
-0.240298
-0.216094
-0.187436
-0.204694
-0.190194
-0.184672
-0.188711
-0.324555
-0.33477
-0.333693
-0.334001
-0.329308
-0.334494
-0.335672
-0.328989
-0.334957
-0.203575
-0.291925
-0.247353
-0.235968
-0.206681
-0.263321
-0.237911
-0.222824
-0.247526
-0.245236
-0.239063
-0.241812
-0.237308
-0.232135
-0.228288
-0.243528
-0.238496
-0.241955
-0.230351
-0.242945
-0.236544
-0.288341
-0.292356
-0.307558
-0.310587
-0.311067
-0.299926
-0.296468
-0.270815
-0.266183
-0.258076
-0.255497
-0.257538
-0.271108
-0.265916
-0.285643
-0.291101
-0.302325
-0.278768
-0.285628
-0.302166
-0.278791
-0.270686
-0.256932
-0.255388
-0.265555
-0.257201
-0.270485
-0.265913
-0.30697
-0.310235
-0.309773
-0.313546
-0.310648
-0.303803
-0.307199
-0.207164
-0.248191
-0.241547
-0.232975
-0.205849
-0.239914
-0.232379
-0.232266
-0.239436
-0.245634
-0.245431
-0.24472
-0.233592
-0.238651
-0.231274
-0.243685
-0.238406
-0.245186
-0.230762
-0.2441
-0.238556
-0.269842
-0.263641
-0.256944
-0.251967
-0.25586
-0.27022
-0.263766
-0.285686
-0.291486
-0.302691
-0.278997
-0.285773
-0.302774
-0.278744
-0.270148
-0.256783
-0.253531
-0.2654
-0.256418
-0.270429
-0.264573
-0.28289
-0.283873
-0.307483
-0.31502
-0.305617
-0.284893
-0.281329
-0.27584
-0.30992
-0.296101
-0.253397
-0.273262
-0.29891
-0.255594
-0.280553
-0.300932
-0.31244
-0.275822
-0.303376
-0.278018
-0.278405
-0.332145
-0.315722
-0.328212
-0.328158
-0.33415
-0.326419
-0.326394
-0.325862
-0.323594
-0.319394
-0.311168
-0.31332
-0.325487
-0.323922
-0.327651
-0.317656
-0.32948
-0.32162
-0.329828
-0.315272
-0.327493
-0.268466
-0.304359
-0.293174
-0.251874
-0.271261
-0.290118
-0.249467
-0.271125
-0.265073
-0.303129
-0.29205
-0.294395
-0.267752
-0.268641
-0.273357
-0.299054
-0.273228
-0.305574
-0.276062
-0.296478
-0.270495
-0.21855
-0.206971
-0.25236
-0.244625
-0.24626
-0.208811
-0.216769
-0.213247
-0.23898
-0.22681
-0.199094
-0.21568
-0.224518
-0.197456
-0.220166
-0.249943
-0.254056
-0.2127
-0.247676
-0.222591
-0.210623
-0.304154
-0.299582
-0.296492
-0.304916
-0.302441
-0.298046
-0.306227
-0.296363
-0.296787
-0.284007
-0.280968
-0.278899
-0.295134
-0.298153
-0.294873
-0.275192
-0.29174
-0.282087
-0.293018
-0.27721
-0.293479
-0.219886
-0.24593
-0.229334
-0.201508
-0.217505
-0.231828
-0.203169
-0.228592
-0.22202
-0.262245
-0.257884
-0.255559
-0.219448
-0.231106
-0.226521
-0.251445
-0.21468
-0.260045
-0.224177
-0.253667
-0.216978
-0.00774375
0.0374482
0.0449209
-0.0121965
-0.0169688
-0.0197059
-0.00819581
-0.0260339
0.00136454
0.0382642
0.0557484
0.00566831
-0.0255359
-0.0386285
-0.0314069
-0.031968
0.0469749
0.0790814
0.100258
0.0322926
0.108996
0.0407042
0.0399582
0.0144757
0.0143946
0.0131877
0.0132448
0.0139562
0.0192629
0.00193214
0.0473167
0.073135
0.106172
0.0283389
0.108958
0.0445421
0.0371607
0.0148431
0.0149612
0.0125764
-0.00375861
0.0207809
0.00989885
0.000897379
-0.0268229
-0.433603
0.031473
-0.00926474
-0.0306364
-0.0235718
-0.0246674
0.0110172
0.00288203
-0.0358359
-0.00600497
-0.231277
0.070246
-0.0282278
0.0091467
0.0306564
0.00556567
-0.0354215
-0.0422668
-0.0326414
-0.0447018
0.0178913
0.0793112
0.0124553
0.01607
0.00493109
0.0664586
0.0286794
-0.0135256
-0.0304963
-0.0225261
-0.0168376
-0.0141654
-0.0218463
-0.0230566
0.00796059
-0.00577682
-0.0154226
0.0403682
-0.00685518
0.0509373
-0.001278
-0.00580437
0.00491105
-0.00934059
-0.00910906
-0.00476575
0.00302633
-0.0169364
-0.24721
-0.248766
-0.252067
-0.256423
-0.254747
-0.247199
-0.249559
-0.233449
-0.247374
-0.244128
-0.240265
-0.229526
-0.245369
-0.241939
-0.245197
-0.251927
-0.251405
-0.244808
-0.253466
-0.242986
-0.246258
-0.282229
-0.278577
-0.306673
-0.301716
-0.306269
-0.273123
-0.275516
-0.285614
-0.28933
-0.30019
-0.277943
-0.300619
-0.285573
-0.278119
-0.271781
-0.266287
-0.258664
-0.256778
-0.271376
-0.259436
-0.266541
-0.272159
-0.26102
-0.266945
-0.257259
-0.272541
-0.26022
-0.266727
-0.273515
-0.268137
-0.259382
-0.264532
-0.263423
-0.26745
-0.274184
-0.285526
-0.28803
-0.299673
-0.277688
-0.299252
-0.285477
-0.277765
-0.273368
-0.2618
-0.25908
-0.267047
-0.262763
-0.272862
-0.26752
-0.222363
-0.246937
-0.242943
-0.239023
-0.225839
-0.241825
-0.237465
-0.237015
-0.240253
-0.246665
-0.247659
-0.235155
-0.247936
-0.241444
-0.238979
-0.250587
-0.24378
-0.248457
-0.24096
-0.249256
-0.242511
-0.30412
-0.296917
-0.291909
-0.262512
-0.265167
-0.270825
-0.268076
-0.280885
-0.282772
-0.282197
-0.281696
-0.282703
-0.288355
-0.289174
-0.280566
-0.268502
-0.252301
-0.264999
-0.258524
-0.269554
-0.264305
-0.257506
-0.270766
-0.262189
-0.273162
-0.267637
-0.274088
-0.269769
-0.263086
-0.284645
-0.290332
-0.286586
-0.289781
-0.279603
-0.279463
-0.280674
-0.278145
-0.271497
-0.275495
-0.264743
-0.268375
-0.272403
-0.274685
-0.263835
-0.202937
-0.205036
-0.199841
-0.210649
-0.207954
-0.209327
-0.20713
-0.293238
-0.286985
-0.287654
-0.292864
-0.302239
-0.314931
-0.302406
-0.314914
-0.2816
-0.284655
-0.278841
-0.278804
-0.278791
-0.281168
-0.284318
-0.290466
-0.299499
-0.299343
-0.291243
-0.29127
-0.298684
-0.291662
-0.293991
-0.288971
-0.288579
-0.294191
-0.301343
-0.31212
-0.301195
-0.312664
-0.284594
-0.279562
-0.277638
-0.282722
-0.280061
-0.284612
-0.283406
-0.211007
-0.213433
-0.216529
-0.218707
-0.21613
-0.211329
-0.213614
-0.284513
-0.283685
-0.283337
-0.284587
-0.271021
-0.254859
-0.26524
-0.259384
-0.270074
-0.26588
-0.260332
-0.292181
-0.292827
-0.294061
-0.291918
-0.273349
-0.268141
-0.275752
-0.271993
-0.275769
-0.274037
-0.267571
-0.285781
-0.286102
-0.285599
-0.286853
-0.29021
-0.290714
-0.288352
-0.291241
-0.273498
-0.275617
-0.26556
-0.270941
-0.272708
-0.276316
-0.266422
-0.291552
-0.286276
-0.285408
-0.292294
-0.284258
-0.27971
-0.277826
-0.274581
-0.278636
-0.283508
-0.280547
-0.299308
-0.309012
-0.309936
-0.298409
-0.291468
-0.29749
-0.299931
-0.290351
-0.291892
-0.299444
-0.289762
-0.299946
-0.311435
-0.300671
-0.310604
-0.290844
-0.28355
-0.284584
-0.289891
-0.284529
-0.279701
-0.275271
-0.281916
-0.27906
-0.285025
-0.281233
-0.213088
-0.205028
-0.242939
-0.247228
-0.241195
-0.214858
-0.203114
-0.203591
-0.227075
-0.211339
-0.184992
-0.201553
-0.213543
-0.187135
-0.211621
-0.237912
-0.245592
-0.199333
-0.239802
-0.209778
-0.201275
-0.289947
-0.291753
-0.285151
-0.296523
-0.291122
-0.284032
-0.295779
-0.277946
-0.273665
-0.262493
-0.258774
-0.259507
-0.275567
-0.276776
-0.279243
-0.261832
-0.278768
-0.264301
-0.280596
-0.26051
-0.277317
-0.198315
-0.219339
-0.209325
-0.183718
-0.200165
-0.206652
-0.181363
-0.208094
-0.188888
-0.238638
-0.235353
-0.235346
-0.195533
-0.208375
-0.207928
-0.236845
-0.197644
-0.240422
-0.208782
-0.235765
-0.195942
-0.174594
-0.174206
-0.209424
-0.205342
-0.206709
-0.175942
-0.173261
-0.145891
-0.145276
-0.120438
-0.146493
-0.147821
-0.118218
-0.144784
-0.175883
-0.209774
-0.210949
-0.179497
-0.207966
-0.177798
-0.177644
-0.267919
-0.280903
-0.260022
-0.282887
-0.267017
-0.260359
-0.283458
-0.255138
-0.250684
-0.236979
-0.239549
-0.23802
-0.249555
-0.256297
-0.253942
-0.235026
-0.24733
-0.235411
-0.252708
-0.23658
-0.248299
-0.151588
-0.150069
-0.122885
-0.148134
-0.149609
-0.125392
-0.149881
-0.183233
-0.187731
-0.21776
-0.216495
-0.21464
-0.185605
-0.185304
-0.181357
-0.211197
-0.181404
-0.215898
-0.179406
-0.21299
-0.183419
-0.293012
-0.288127
-0.288904
-0.291797
-0.306247
-0.297051
-0.296563
-0.308443
-0.304328
-0.295714
-0.302259
-0.296135
-0.294182
-0.2905
-0.289734
-0.295381
-0.200465
-0.198768
-0.182327
-0.192457
-0.194985
-0.195365
-0.197095
-0.295318
-0.290421
-0.295325
-0.290195
-0.303345
-0.314638
-0.314772
-0.303066
-0.303905
-0.315109
-0.315301
-0.303803
-0.294786
-0.289183
-0.294517
-0.289543
-0.29576
-0.290733
-0.291237
-0.295486
-0.304324
-0.315083
-0.315383
-0.304232
-0.303914
-0.31511
-0.315014
-0.303839
-0.296246
-0.292283
-0.291867
-0.296411
-0.289833
-0.287549
-0.290819
-0.287038
-0.296597
-0.293392
-0.294606
-0.294222
-0.288696
-0.285747
-0.287504
-0.286291
-0.298465
-0.295277
-0.30042
-0.294852
-0.173027
-0.190154
-0.187221
-0.191408
-0.193696
-0.194175
-0.192745
-0.301862
-0.332002
-0.317521
-0.302238
-0.329781
-0.302852
-0.301429
-0.29334
-0.282141
-0.300189
-0.31927
-0.320397
-0.283342
-0.292243
-0.294371
-0.322239
-0.30131
-0.285388
-0.321436
-0.295179
-0.284477
-0.300687
-0.316011
-0.324973
-0.299501
-0.327399
-0.300456
-0.299546
-0.129386
-0.0942215
-0.0913269
-0.306272
-0.318254
-0.317605
-0.305525
-0.318345
-0.306105
-0.305848
-0.309566
-0.313774
-0.323792
-0.334145
-0.323056
-0.309819
-0.313565
-0.306694
-0.319179
-0.319776
-0.307195
-0.319048
-0.306673
-0.307061
-0.309284
-0.321829
-0.333323
-0.313203
-0.322434
-0.309044
-0.313346
-0.131892
-0.0974363
-0.100781
-0.304666
-0.321532
-0.33409
-0.303025
-0.303785
-0.336109
-0.303802
-0.29702
-0.287765
-0.32431
-0.303798
-0.323917
-0.297453
-0.287307
-0.305473
-0.322762
-0.340083
-0.305125
-0.338132
-0.304502
-0.30619
-0.296502
-0.322892
-0.286144
-0.303326
-0.295878
-0.323418
-0.286789
-0.304984
-0.316895
-0.315241
-0.304889
-0.304263
-0.316122
-0.305396
-0.308263
-0.312662
-0.330939
-0.319576
-0.320167
-0.312776
-0.308107
-0.308575
-0.321295
-0.33153
-0.31304
-0.320722
-0.30876
-0.31299
-0.304454
-0.314155
-0.302959
-0.314542
-0.303536
-0.315346
-0.304037
-0.00788942
-0.0400746
-0.0288879
-0.0146759
-0.0304873
-0.0262468
-0.0152159
-0.0577256
-0.0504271
-0.0614751
-0.0478368
-0.0467979
-0.0366784
-0.0623437
-0.170242
-0.171904
-0.203812
-0.204756
-0.202425
-0.171674
-0.169641
-0.139997
-0.14034
-0.112236
-0.138277
-0.139249
-0.112655
-0.139004
-0.168992
-0.199911
-0.203089
-0.165141
-0.201171
-0.167776
-0.167303
-0.256014
-0.281527
-0.258422
-0.271747
-0.256983
-0.258565
-0.270762
-0.238814
-0.236214
-0.218863
-0.218655
-0.219917
-0.236956
-0.2377
-0.240202
-0.222863
-0.238867
-0.220489
-0.241436
-0.221408
-0.238083
-0.137392
-0.138468
-0.111446
-0.137449
-0.138338
-0.11092
-0.136543
-0.163479
-0.155438
-0.196234
-0.194171
-0.195422
-0.157667
-0.16239
-0.164858
-0.198459
-0.162619
-0.198134
-0.166358
-0.196901
-0.16023
-0.130446
-0.1176
-0.127573
-0.149246
-0.151236
-0.119035
-0.128801
-0.110129
-0.0733837
-0.111675
-0.0903433
-0.11265
-0.110036
-0.0875637
-0.132515
-0.156402
-0.13127
-0.122547
-0.153638
-0.135015
-0.12085
-0.22021
-0.274955
-0.245402
-0.23111
-0.218173
-0.245977
-0.23316
-0.203174
-0.208213
-0.176957
-0.186572
-0.183961
-0.206355
-0.205559
-0.201066
-0.179029
-0.202613
-0.174239
-0.198733
-0.181643
-0.204399
-0.117323
-0.0808193
-0.113526
-0.0927693
-0.114763
-0.115359
-0.0955426
-0.141884
-0.130219
-0.145898
-0.166964
-0.164152
-0.128357
-0.144399
-0.139713
-0.158828
-0.124461
-0.142145
-0.137146
-0.16167
-0.126365
0.00113014
-0.0780219
-0.0843292
-0.0402231
-0.0259482
0.00444301
-0.0149179
-0.0837105
-0.0836202
-0.0787582
-0.0371797
-0.0357747
-0.0433143
-0.0328396
-0.0712858
-0.0815486
-0.0735585
-0.0309696
-0.0249092
-0.0260534
-0.0303791
0.0157861
0.0313787
0.0998785
0.0531662
0.0553211
0.0199075
0.0257161
-0.0394379
0.0705733
0.144713
0.124878
0.128248
-0.058438
0.0258956
0.010511
0.0160815
0.0904199
0.0424384
0.0497988
0.00765491
0.0209717
-0.0332692
-0.0155925
0.136398
0.119854
0.128838
0.0157354
-0.00804756
-0.0669043
-0.00255285
-0.0612841
-0.0106321
-0.074913
-0.0139087
-0.00560918
-0.100298
0.178841
0.0590313
0.0590062
0.046372
-0.0748801
0.19783
-0.0624991
-0.077493
-0.0694953
0.0240953
-0.0371792
-0.0686114
-0.00436083
0.0542864
0.0954543
0.0433923
0.0421343
0.142073
0.0518099
0.0916807
-0.0629793
-0.0878342
-0.0804461
-0.0133055
-0.0192101
-0.0127608
-0.0193037
0.033425
0.123059
0.0380778
0.0619864
0.0442653
0.0694989
0.0273046
0.049093
0.0520721
-0.0270257
0.142316
-0.0647235
0.169001
0.00376519
-0.308043
-0.34371
-0.307841
-0.333232
-0.308425
-0.307859
-0.343951
-0.298503
-0.290127
-0.307513
-0.32546
-0.325153
-0.289573
-0.298858
-0.298512
-0.32487
-0.289113
-0.306855
-0.298361
-0.325011
-0.28944
-0.308101
-0.334985
-0.309569
-0.344474
-0.308843
-0.344161
-0.30846
-0.125923
-0.0850197
-0.0849184
-0.308117
-0.322681
-0.322887
-0.309093
-0.321891
-0.308531
-0.308588
-0.310399
-0.31407
-0.337214
-0.324443
-0.325245
-0.314287
-0.310156
-0.31064
-0.326739
-0.338207
-0.314802
-0.325944
-0.314492
-0.310984
-0.307793
-0.321943
-0.320415
-0.307726
-0.321185
-0.307465
-0.308163
-0.309162
-0.323393
-0.309406
-0.325947
-0.309896
-0.308752
-0.324255
-0.31165
-0.315826
-0.342467
-0.32995
-0.315357
-0.329077
-0.31212
-0.311494
-0.327448
-0.314913
-0.341414
-0.315228
-0.311147
-0.328314
-0.309391
-0.326963
-0.310827
-0.32589
-0.310213
-0.325016
-0.309917
-0.307585
-0.328068
-0.34364
-0.307445
-0.307825
-0.343453
-0.306838
-0.298064
-0.288151
-0.324462
-0.304899
-0.297815
-0.324694
-0.288465
-0.307294
-0.326487
-0.341634
-0.305736
-0.30684
-0.342918
-0.306301
-0.298218
-0.324867
-0.289032
-0.305316
-0.298407
-0.32479
-0.2887
-0.123912
-0.0848581
-0.0847121
-0.297718
-0.322244
-0.331167
-0.304836
-0.31339
-0.300266
-0.304609
-0.293587
-0.282166
-0.316591
-0.330226
-0.323311
-0.287392
-0.291702
-0.291906
-0.316507
-0.31175
-0.286177
-0.31436
-0.292703
-0.286026
-0.295766
-0.339656
-0.308997
-0.308622
-0.302347
-0.306749
-0.296197
-0.377942
-0.362397
-0.365839
-0.0597422
-0.367771
-0.37809
-0.363524
-0.379805
-0.37146
-0.368813
-0.353665
-0.369117
-0.358886
-0.351156
-0.359593
-0.356748
-0.361508
-0.339819
-0.334315
-0.351461
-0.359026
-0.349664
-0.354988
-0.401177
-0.368133
-0.305135
-0.332399
-0.329165
-0.308172
-0.328389
-0.307581
-0.306192
-0.302346
-0.295002
-0.325903
-0.322096
-0.325803
-0.30192
-0.295575
-0.304301
-0.332712
-0.328594
-0.307157
-0.328248
-0.307063
-0.304126
-0.30339
-0.326487
-0.322721
-0.297697
-0.326052
-0.304431
-0.296706
-0.35842
-0.379408
-0.352329
-0.343659
-0.337689
-0.346719
-0.0656467
-0.347873
-0.342577
-0.340289
-0.394797
-0.32138
-0.349353
-0.30219
-0.333663
-0.325962
-0.304544
-0.301158
-0.328234
-0.304889
-0.294639
-0.287665
-0.324548
-0.317166
-0.322982
-0.29524
-0.287355
-0.302579
-0.334443
-0.331057
-0.30528
-0.329744
-0.304895
-0.303126
-0.294079
-0.318801
-0.286085
-0.315296
-0.292961
-0.321176
-0.286955
-0.313808
-0.332391
-0.337894
-0.310076
-0.312269
-0.342685
-0.308964
-0.311338
-0.312135
-0.333344
-0.33021
-0.322387
-0.30631
-0.314138
-0.308935
-0.327576
-0.326168
-0.299627
-0.328147
-0.306601
-0.301828
-0.321522
-0.344292
-0.317412
-0.374554
-0.316658
-0.369632
-0.321993
0.0462607
0.0160629
0.0124095
0.0336724
0.056743
0.0501834
0.0392876
0.0491141
0.0180444
0.0182223
0.0440108
0.0626746
0.0662568
0.0427589
-0.0481558
-0.0163633
-0.0185891
0.021796
-0.0426609
0.0227549
-0.0407855
-0.0241666
-0.0132512
-0.00920925
0.0275585
-0.0388455
0.0256187
-0.0267071
-0.124861
-0.116003
-0.146808
-0.119188
-0.144744
-0.126605
-0.115293
-0.101417
-0.0640311
-0.102261
-0.0758028
-0.0998161
-0.103275
-0.0775729
-0.124133
-0.141978
-0.118708
-0.11442
-0.143696
-0.122639
-0.115011
-0.198221
-0.247471
-0.234303
-0.2091
-0.199565
-0.233845
-0.207242
-0.178055
-0.186141
-0.145132
-0.15624
-0.157383
-0.186643
-0.177185
-0.179379
-0.160402
-0.188356
-0.147664
-0.180724
-0.158837
-0.187563
-0.0986839
-0.0611528
-0.101482
-0.0751591
-0.0991759
-0.100664
-0.0747636
-0.120772
-0.11139
-0.115548
-0.138163
-0.138817
-0.11283
-0.120975
-0.121063
-0.140987
-0.113897
-0.116535
-0.121884
-0.139765
-0.113316
-0.140956
-0.146293
-0.145465
-0.149594
-0.149671
-0.146466
-0.140663
-0.126163
-0.119995
-0.139647
-0.104456
-0.12654
-0.139461
-0.104308
-0.14142
-0.150307
-0.144924
-0.146459
-0.150097
-0.141778
-0.146652
-0.189879
-0.193595
-0.230763
-0.18437
-0.188366
-0.233987
-0.185985
-0.177213
-0.195268
-0.143018
-0.159015
-0.159204
-0.194564
-0.177802
-0.176859
-0.159362
-0.192965
-0.144953
-0.175942
-0.159555
-0.193915
-0.126401
-0.119834
-0.139371
-0.104044
-0.126252
-0.13911
-0.10407
-0.14115
-0.143412
-0.139778
-0.149174
-0.149564
-0.144421
-0.140751
-0.141677
-0.150042
-0.1459
-0.14139
-0.141529
-0.150104
-0.145344
-0.103648
0.070769
0.0802471
0.240667
0.032954
0.0242251
0.237674
0.0394566
0.0314682
0.0361076
0.0815877
0.0805584
0.0829632
0.0806711
0.026671
0.0289668
0.0323595
0.0818753
0.0788142
0.0793865
0.081692
0.280638
0.217409
0.170105
0.177328
0.171211
0.2788
0.212468
0.281346
0.208328
0.169966
0.178747
0.17344
0.209751
0.279836
-0.0221508
-0.0103681
-0.00286661
0.0600296
0.0173838
0.0211487
0.0379065
-0.0664095
0.0652407
0.044163
0.211081
0.0357118
0.0452858
0.234713
0.00509683
0.0186121
0.00834649
0.0662546
0.0747721
0.0635643
0.0751165
0.233391
0.133551
0.167238
0.168072
0.0854017
0.220776
0.155382
0.263147
0.215169
0.169423
0.183431
0.221662
0.156332
0.277562
-0.298023
-0.332863
-0.303197
-0.336267
-0.302081
-0.299891
-0.332479
-0.281967
-0.25079
-0.327075
-0.327526
-0.328317
-0.254372
-0.279235
-0.287402
-0.327285
-0.277807
-0.319299
-0.290222
-0.327311
-0.272896
-0.295247
-0.335563
-0.298743
-0.330888
-0.300592
-0.331983
-0.292841
-0.384659
-0.378554
-0.377076
-0.371436
-0.402203
-0.374875
-0.0519528
-0.383873
-0.373572
-0.375533
-0.381346
-0.408615
-0.377855
-0.302903
-0.329171
-0.334949
-0.30603
-0.329203
-0.302562
-0.306324
-0.300811
-0.294096
-0.320667
-0.325829
-0.325871
-0.293545
-0.301145
-0.300082
-0.325522
-0.320064
-0.291882
-0.325756
-0.292624
-0.299588
-0.303455
-0.334586
-0.328787
-0.306787
-0.329093
-0.303568
-0.306798
-0.359111
-0.381212
-0.359501
-0.350526
-0.356238
-0.356503
-0.356656
-0.35185
-0.356665
-0.382456
-0.359743
-0.359672
-0.301158
-0.329028
-0.305167
-0.334921
-0.304406
-0.301732
-0.328605
-0.297322
-0.288941
-0.316518
-0.323399
-0.289176
-0.324098
-0.296477
-0.298176
-0.32526
-0.290847
-0.317375
-0.29017
-0.298714
-0.324634
-0.300299
-0.334416
-0.301902
-0.327372
-0.303363
-0.328041
-0.299134
-0.302104
-0.336815
-0.333148
-0.304242
-0.301347
-0.333085
-0.304659
-0.294619
-0.286975
-0.325658
-0.321662
-0.294975
-0.326561
-0.285811
-0.302858
-0.33654
-0.331937
-0.30507
-0.302931
-0.332685
-0.305156
-0.29341
-0.327365
-0.280947
-0.322948
-0.29219
-0.327185
-0.28317
-0.380154
-0.38662
-0.38173
-0.397073
-0.40355
-0.398355
-0.0510074
-0.386552
-0.40368
-0.392573
-0.386942
-0.383904
-0.383017
-0.401341
-0.342175
-0.325047
-0.140708
-0.170102
-0.134439
-0.224237
-0.178145
-0.140291
-0.390114
-0.272829
-0.304817
-0.263208
-0.140622
-0.234302
-0.142619
-0.371085
-0.397129
-0.368184
-0.234994
-0.326052
-0.324295
-0.319264
-0.230086
-0.321275
-0.393591
-0.365083
-0.367216
-0.352372
-0.41909
-0.360098
-0.239886
-0.310196
-0.303186
-0.280749
-0.224152
-0.295143
-0.420896
-0.373605
-0.367025
-0.0401326
-0.00516894
-0.0113159
0.0279408
-0.0455408
-0.0448521
0.0337529
-0.000567228
0.00480354
0.0143526
0.0586761
-0.00243712
0.0175231
0.0489312
-0.138614
-0.145217
-0.148303
-0.146039
-0.147581
-0.139386
-0.144334
-0.12327
-0.110669
-0.132919
-0.104894
-0.123357
-0.132118
-0.103856
-0.137239
-0.144646
-0.145218
-0.141065
-0.146156
-0.135983
-0.142297
-0.168932
-0.163648
-0.196148
-0.168459
-0.172322
-0.190405
-0.165074
-0.15844
-0.167875
-0.151963
-0.145905
-0.148165
-0.170743
-0.155399
-0.160835
-0.15186
-0.177096
-0.152237
-0.163603
-0.149843
-0.173956
-0.123129
-0.122244
-0.132931
-0.106203
-0.123646
-0.132869
-0.106071
-0.132424
-0.136645
-0.142243
-0.138099
-0.140046
-0.137294
-0.130701
-0.133551
-0.143233
-0.139034
-0.14312
-0.134936
-0.141453
-0.137959
-0.0731099
-0.0977916
-0.0925331
-0.0739749
-0.0765481
-0.0701868
-0.104674
-0.0669649
-0.0761497
-0.103397
-0.0501727
-0.0693652
-0.103455
-0.0488298
-0.076278
-0.0834913
-0.0975166
-0.119244
-0.0796433
-0.079998
-0.112031
-0.0980093
-0.0851691
-0.086194
-0.0959528
-0.0935414
-0.0900701
-0.100392
-0.098922
-0.104578
-0.110241
-0.101292
-0.0975526
-0.100495
-0.102369
-0.0954103
-0.0891921
-0.0914184
-0.104498
-0.0908903
-0.0938138
-0.0959062
-0.0737638
-0.0737154
-0.104087
-0.050405
-0.071042
-0.104408
-0.051924
-0.0899179
-0.130565
-0.126102
-0.0998301
-0.095723
-0.129923
-0.0930961
-0.0867769
-0.0868023
-0.125054
-0.11716
-0.0828983
-0.0916621
-0.127989
0.281515
0.0264736
0.00991963
0.207904
0.220156
0.212019
0.197698
0.0392809
0.0491567
0.0791123
0.172625
0.20687
0.200002
0.171432
-0.210299
-0.258822
-0.278378
-0.195537
-0.299076
-0.191376
-0.202278
-0.175095
-0.137505
-0.162301
-0.144251
-0.177084
-0.156059
-0.138548
-0.223899
-0.316401
-0.258713
-0.203398
-0.169306
-0.170168
-0.148767
-0.137005
-0.170275
-0.162605
-0.137917
-0.344587
-0.37519
-0.284424
-0.33571
-0.345555
-0.228754
-0.281117
-0.276716
-0.27354
-0.228468
-0.294029
-0.282607
-0.282101
-0.386071
-0.265223
-0.283932
-0.318128
-0.301292
-0.3119
-0.390411
-0.191214
-0.252356
-0.198796
-0.226829
-0.195434
-0.195185
-0.240377
-0.170244
-0.147959
-0.146115
-0.167238
-0.170673
-0.145766
-0.173842
-0.165394
-0.17331
-0.14473
-0.140906
-0.169605
-0.164576
-0.142362
-0.197282
-0.226605
-0.191367
-0.242942
-0.197117
-0.240569
-0.20122
-0.2122
-0.235023
-0.224918
-0.204483
-0.2355
-0.205471
-0.211218
-0.192742
-0.176018
-0.187884
-0.169909
-0.193729
-0.187263
-0.174521
-0.213106
-0.22556
-0.236079
-0.206744
-0.235972
-0.213645
-0.206395
-0.191367
-0.184732
-0.168459
-0.170429
-0.186082
-0.189839
-0.172602
-0.30126
-0.26319
-0.268505
-0.244621
-0.300357
-0.263188
-0.268067
-0.340268
-0.348303
-0.307326
-0.290214
-0.290806
-0.347721
-0.341279
-0.33924
-0.291631
-0.34726
-0.307785
-0.337928
-0.291347
-0.347477
-0.301906
-0.243686
-0.262815
-0.266653
-0.262985
-0.267437
-0.302531
-0.208491
-0.234137
-0.202757
-0.221783
-0.20125
-0.209811
-0.233413
-0.183731
-0.159128
-0.15935
-0.176486
-0.178828
-0.162064
-0.181553
-0.185905
-0.182719
-0.161803
-0.16775
-0.18079
-0.187869
-0.165009
-0.206965
-0.220551
-0.197732
-0.231615
-0.199641
-0.232498
-0.205453
-0.605584
-0.610986
-0.615033
-0.60946
-0.607471
-0.643103
-0.675574
-0.635607
-0.638194
-0.641484
-0.604698
-0.613606
-0.606422
-0.60808
-0.602654
-0.604174
-0.619667
-0.608077
-0.611064
-0.61732
-0.607441
-0.612548
-0.600101
-0.629907
-0.601954
-0.624935
-0.606261
-0.623472
-0.596229
-0.617027
-0.606512
-0.614323
-0.582654
-0.582177
-0.579949
-0.582361
-0.579571
-0.583911
-0.58324
-0.583658
-0.580512
-0.580006
-0.585279
-0.58405
-0.579494
-0.581
-0.58349
-0.583666
-0.605776
-0.612649
-0.613871
-0.609266
-0.611285
-0.611353
-0.607645
-0.612977
-0.640973
-0.63994
-0.633393
-0.634086
-0.640384
-0.610933
-0.620629
-0.617848
-0.618191
-0.611641
-0.604707
-0.620015
-0.595277
-0.594444
-0.60799
-0.60248
-0.601514
-0.61384
-0.610257
-0.626325
-0.620378
-0.618211
-0.614988
-0.614942
-0.629639
-0.616697
-0.600945
-0.622945
-0.611826
-0.601421
-0.609746
-0.600497
-0.600948
-0.630516
-0.617496
-0.632127
-0.619045
-0.568729
-0.567791
-0.565459
-0.568903
-0.566179
-0.564614
-0.565423
-0.584055
-0.571554
-0.56408
-0.580637
-0.570586
-0.578494
-0.586499
-0.582002
-0.577234
-0.568364
-0.562502
-0.581952
-0.56879
-0.577204
-0.567711
-0.564108
-0.564678
-0.563829
-0.568755
-0.592949
-0.591043
-0.598979
-0.59105
-0.592684
-0.593269
-0.60027
-0.590526
-0.592119
-0.627588
-0.618334
-0.616822
-0.612874
-0.616096
-0.62892
-0.613263
-0.620192
-0.610884
-0.615251
-0.611407
-0.593575
-0.589249
-0.585366
-0.584936
-0.589091
-0.588244
-0.589105
-0.630656
-0.615523
-0.631838
-0.615323
-1.02369
-1.06115
-1.01793
-1.01523
-1.02872
-1.01322
-0.968375
-0.958765
-0.976614
-0.957297
-0.970316
-1.04168
-1.00804
-1.03511
-1.02272
-1.02655
-1.03203
-1.01346
-0.974459
-0.976419
-0.984664
-0.968557
-0.988826
-0.960074
-0.992319
-0.968411
-0.970692
-0.961686
-0.965273
-0.995642
-0.970775
-1.02792
-1.02021
-1.01218
-1.02212
-1.00736
-1.0398
-1.01879
-1.01794
-1.01479
-1.00841
-0.989311
-0.969471
-0.966242
-0.975916
-0.964372
-0.982653
-0.982363
-0.923674
-0.932473
-0.937324
-0.952886
-0.938945
-0.934328
-0.925799
-0.19402
-0.197645
-0.199289
-0.220267
-0.1973
-0.205217
-0.22852
-0.200748
-0.189843
-0.222476
-0.259764
-0.252833
-0.260613
-0.279457
-0.261424
-0.248413
-0.210142
-0.211741
-0.206385
-0.192846
-0.245801
-0.191105
-0.229803
-0.243714
-0.250061
-0.236257
-0.25637
-0.233872
-0.246064
-0.227075
-0.259041
-0.24943
-0.261225
-0.203776
-0.240407
-0.220255
-0.243379
-0.228343
-0.226262
-0.240142
-0.240419
-0.215065
-0.250059
-0.227516
-0.246955
-0.235107
-0.210453
-0.165766
-0.228993
-0.182761
-0.218546
-0.2155
-0.172103
-0.20185
-0.159633
-0.191261
-0.204407
-0.17637
-0.226108
-0.255025
-0.249948
-0.19538
-0.24808
-0.20833
-0.194034
-0.180435
-0.223018
-0.2067
-0.214518
-0.191469
-0.208134
-0.224476
-0.218856
-0.204737
-0.21546
-0.211216
-0.197376
-0.181057
-0.191111
-0.222268
-0.193825
-0.187952
-0.235384
-0.277146
-0.245899
-0.246956
-0.259686
-0.24382
-0.227131
-0.234697
-0.188988
-0.22821
-0.217102
-0.222229
-0.20309
-0.24447
-0.226964
-0.207378
-0.229773
-0.260572
-0.224655
-0.250223
-0.212308
-0.596804
-0.578877
-0.584546
-0.600884
-0.601442
-0.579566
-0.595897
-0.596495
-0.636917
-0.599504
-0.59563
-0.602014
-0.634304
-0.59723
-0.583837
-0.603187
-0.578801
-0.601628
-0.578522
-0.599554
-0.593073
-0.594369
-0.606888
-0.594691
-0.591569
-0.61323
-0.551534
-0.557489
-0.584939
-0.552477
-0.556502
-0.548512
-0.566681
-0.549401
-0.565563
-0.542577
-0.563147
-0.554814
-0.547224
-0.564201
-0.548225
-0.541702
-0.543979
-0.55031
-0.566747
-0.55594
-0.544929
-0.56567
-0.549347
-0.549452
-0.583571
-0.553914
-0.555018
-0.54863
-0.586363
-0.583796
-0.584373
-0.583051
-0.593158
-0.585196
-0.579254
-0.600868
-0.59589
-0.581096
-0.599746
-0.610545
-0.615345
-0.615381
-0.612458
-0.5866
-0.581404
-0.581078
-0.583538
-0.586346
-0.579431
-0.585415
-0.59429
-0.594206
-0.605903
-0.59128
-0.597901
-0.604654
-0.583872
-0.590635
-0.571473
-0.579844
-0.572359
-0.58087
-0.583816
-0.611391
-0.619201
-0.609313
-0.612426
-0.609836
-0.610675
-0.619957
-0.584014
-0.591438
-0.573365
-0.58081
-0.572943
-0.580865
-0.583763
-0.612003
-0.611912
-0.613556
-0.621471
-0.610622
-0.612407
-0.620729
-0.572042
-0.556025
-0.554593
-0.559753
-0.571481
-0.556825
-0.555829
-0.524898
-0.523032
-0.525473
-0.522899
-0.572212
-0.560565
-0.557667
-0.557125
-0.556954
-0.556487
-0.57281
-0.572905
-0.57271
-0.57202
-0.572638
-0.574261
-0.573256
-0.591409
-0.57926
-0.581197
-0.592506
-0.581488
-0.581415
-0.612225
-0.613936
-0.627995
-0.615159
-0.628269
-0.611255
-0.616683
-0.612212
-0.625824
-0.623108
-0.618465
-0.611476
-0.628126
-0.622755
-0.603939
-0.620715
-0.599025
-0.623026
-0.611883
-0.595493
-0.624335
-0.612607
-0.640137
-0.63352
-0.633532
-0.634283
-0.617606
-0.629924
-0.571369
-0.549905
-0.553544
-0.55073
-0.570577
-0.550722
-0.554603
-0.525705
-0.521036
-0.526436
-0.519844
-0.571845
-0.553891
-0.554121
-0.55593
-0.552507
-0.554939
-0.572917
-0.573818
-0.573395
-0.574907
-0.573588
-0.575493
-0.575527
-0.578906
-0.572957
-0.579038
-0.59708
-0.607937
-0.587811
-0.602212
-0.602116
-0.612634
-0.613002
-0.630291
-0.610806
-0.612115
-0.631422
-0.611814
-0.613356
-0.640374
-0.629217
-0.615142
-0.618777
-0.631961
-0.61674
-0.581568
-0.611453
-0.592701
-0.589888
-0.600031
-0.579915
-0.598838
-0.582804
-0.603208
-0.586534
-0.592464
-0.603976
-0.581709
-0.594907
-0.528156
-0.524616
-0.545568
-0.546451
-0.52739
-0.525634
-0.545944
-0.536776
-0.522469
-0.535834
-0.523426
-0.528395
-0.527536
-0.526724
-0.525977
-0.529612
-0.547742
-0.526334
-0.546288
-0.527166
-0.547297
-0.528379
-0.541826
-0.547617
-0.589106
-0.541505
-0.588584
-0.603488
-0.588481
-0.60325
-0.547357
-0.540843
-0.588697
-0.541061
-0.588604
-0.603745
-0.587875
-0.60309
-0.54289
-0.548903
-0.589905
-0.590293
-0.542714
-0.590452
-0.595768
-0.608176
-0.549946
-0.582027
-0.542433
-0.591431
-0.543821
-0.604917
-0.590656
-0.606205
-0.57937
-0.589886
-0.601894
-0.583565
-0.602084
-0.578441
-0.590293
-0.57927
-0.602543
-0.591067
-0.583173
-0.580392
-0.601757
-0.590346
-0.0369226
-0.11281
-0.0939662
-0.564508
-0.579516
-0.582068
-0.576931
-0.588229
-0.561717
-0.580826
-0.568397
-0.598809
-0.579446
-0.585061
-0.594062
-0.572053
-0.583346
-0.523583
-0.542322
-0.518888
-0.544917
-0.522865
-0.545123
-0.519284
-0.528786
-0.514528
-0.529008
-0.513771
-0.523078
-0.522302
-0.520569
-0.520879
-0.527994
-0.549294
-0.554852
-0.518114
-0.554747
-0.520613
-0.525852
-0.540483
-0.546782
-0.589855
-0.539965
-0.591029
-0.604663
-0.584722
-0.606789
-0.54733
-0.540429
-0.589767
-0.54051
-0.591738
-0.601931
-0.582601
-0.604733
-0.541569
-0.54961
-0.587464
-0.58058
-0.54756
-0.576562
-0.573032
-0.580119
-0.55189
-0.554704
-0.547491
-0.560814
-0.554002
-0.562946
-0.545455
-0.598395
-0.578252
-0.592559
-0.577908
-0.589224
-0.602598
-0.584452
-0.577848
-0.604805
-0.589658
-0.575722
-0.601095
-0.586107
-0.582134
-0.573835
-0.603018
-0.586969
-0.508602
-0.500044
-0.533163
-0.531271
-0.507834
-0.500991
-0.533699
-0.507718
-0.489641
-0.506714
-0.490777
-0.504458
-0.505155
-0.503431
-0.502633
-0.509358
-0.531884
-0.502523
-0.535102
-0.501754
-0.534424
-0.510026
-0.525223
-0.537953
-0.539642
-0.529799
-0.537959
-0.525299
-0.530316
-0.576898
-0.604927
-0.577785
-0.526348
-0.540405
-0.540069
-0.533576
-0.538734
-0.532611
-0.528701
-0.571464
-0.593635
-0.572585
-0.52491
-0.537876
-0.539656
-0.529152
-0.529222
-0.538296
-0.524731
-0.569467
-0.588051
-0.569312
-0.525614
-0.54014
-0.529847
-0.539552
-0.529567
-0.538963
-0.526027
-0.569536
-0.587865
-0.569104
-0.0366562
-0.11389
-0.118874
-0.1878
-0.187785
-0.0655026
-0.0793847
-0.0761435
-0.178713
-0.186755
-0.264432
-0.26933
-0.277176
-0.216633
-0.205931
-0.201123
-0.229479
-0.204992
-0.26916
-0.252399
-0.270182
-0.263375
-0.25825
-0.135672
-0.0850974
-0.0687392
-0.201067
-0.188003
-0.0550862
-0.163847
-0.275414
-0.271381
-0.230817
-0.268582
-0.257074
-0.255484
-0.193008
-0.204373
-0.230713
-0.200039
-0.198344
-0.229774
-0.182415
-0.21511
-0.253513
-0.222205
-0.182127
-0.082429
-0.0711069
-0.207084
-0.188431
-0.0681098
-0.208037
-0.256006
-0.225021
-0.225598
-0.507197
-0.537663
-0.492209
-0.526048
-0.507566
-0.536032
-0.491224
-0.502303
-0.482687
-0.50225
-0.482636
-0.50606
-0.510197
-0.522283
-0.5001
-0.499559
-0.510579
-0.523634
-0.504004
-0.493016
-0.532475
-0.492654
-0.516309
-0.5534
-0.554761
-0.550112
-0.549518
-0.554829
-0.551518
-0.551293
-0.544448
-0.574522
-0.578578
-0.543466
-0.553563
-0.550807
-0.543402
-0.536367
-0.555828
-0.535069
-0.544175
-0.53774
-0.535871
-0.579807
-0.532905
-0.540414
-0.542825
-0.553611
-0.543636
-0.546993
-0.543073
-0.549959
-0.547562
-0.523926
-0.527079
-0.573794
-0.529035
-0.521513
-0.538522
-0.539027
-0.535329
-0.52871
-0.539643
-0.542712
-0.532651
-0.526377
-0.532687
-0.573974
-0.530203
-0.528977
-0.498586
-0.468142
-0.47408
-0.481285
-0.49811
-0.468892
-0.474621
-0.486927
-0.460103
-0.485773
-0.461688
-0.491134
-0.476576
-0.475844
-0.49221
-0.489988
-0.474343
-0.489212
-0.47509
-0.49965
-0.481886
-0.471093
-0.476079
-0.469961
-0.475238
-0.500669
-0.524721
-0.508172
-0.505462
-0.524836
-0.507553
-0.524998
-0.524207
-0.524864
-0.512011
-0.52913
-0.517264
-0.528187
-0.526895
-0.513997
-0.525011
-0.504802
-0.507381
-0.52499
-0.50716
-0.524067
-0.526408
-0.524129
-0.528664
-0.513635
-0.517995
-0.523958
-0.528205
-0.514778
-0.525706
-0.508476
-0.50719
-0.524641
-0.525111
-0.509137
-0.525063
-0.524353
-0.511887
-0.528872
-0.514384
-0.528285
-0.524904
-0.512426
-0.526132
-0.507588
-0.526015
-0.510449
-0.525314
-0.509666
-0.526918
-0.52429
-0.528155
-0.515472
-0.512919
-0.528435
-0.523716
-0.513361
-0.851676
-0.855136
-0.855017
-0.845743
-0.843523
-0.854484
-0.849043
-0.827809
-0.868967
-0.864403
-0.876958
-0.860591
-0.875833
-0.877379
-0.864358
-0.876092
-0.224498
-0.247762
-0.213363
-0.193581
-0.190779
-0.194817
-0.248812
-0.206923
-0.211451
-0.161673
-0.114456
-0.141327
-0.13394
-0.117146
-0.141399
-0.143143
-0.253617
-0.24909
-0.269201
-0.259878
-0.241915
-0.239569
-0.324059
-0.186712
-0.272556
-0.178115
-0.229353
-0.167932
-0.154961
-0.270029
-0.298246
-0.304255
-0.156054
-0.166329
-0.146651
-0.134174
-0.153456
-0.139645
-0.15852
-0.147091
-0.140105
-0.170299
-0.313579
-0.27624
-0.165242
-0.308698
-0.17387
-0.158281
-0.193588
-0.189009
-0.173908
-0.206482
-0.239037
-0.208711
-0.207817
-0.246394
-0.207684
-0.248664
-0.321869
-0.331713
-0.225362
-0.248249
-0.333085
-0.231036
-0.234325
-0.218526
-0.258711
-0.216501
-0.257901
-0.251772
-0.213062
-0.251466
-0.268358
-0.223501
-0.221644
-0.253766
-0.266168
-0.222676
-0.258808
-0.252565
-0.161097
-0.139326
-0.160852
-0.136361
-0.270594
-0.218585
-0.255723
-0.222947
-0.252843
-0.270756
-0.217454
-0.160691
-0.145476
-0.120949
-0.179924
-0.183714
-0.132523
-0.17266
-0.257689
-0.257333
-0.161912
-0.115987
-0.159408
-0.131973
-0.271205
-0.246083
-0.219355
-0.211301
-0.24889
-0.268164
-0.216179
-0.252256
-0.316956
-0.333993
-0.226583
-0.252488
-0.328685
-0.226768
-0.255631
-0.232372
-0.274135
-0.227899
-0.269176
-0.262478
-0.226676
-0.255728
-0.269154
-0.224849
-0.22511
-0.256408
-0.266363
-0.22583
-0.19344
-0.190241
-0.209632
-0.203094
-0.211653
-0.191608
-0.191151
-0.221115
-0.139392
-0.134085
-0.226532
-0.223903
-0.141518
-0.124878
-0.187661
-0.218167
-0.124837
-0.188539
-0.220142
-0.132659
-0.21313
-0.134752
-0.197907
-0.226519
-0.207327
-0.197949
-0.218655
-0.211908
-0.193105
-0.490593
-0.468582
-0.458012
-0.473018
-0.491015
-0.468868
-0.457111
-0.474582
-0.446988
-0.475532
-0.445893
-0.480475
-0.472594
-0.471768
-0.480461
-0.480789
-0.470526
-0.481232
-0.471072
-0.490354
-0.47278
-0.469726
-0.455924
-0.469334
-0.4566
-0.490312
-0.527935
-0.507715
-0.503326
-0.521839
-0.507509
-0.527376
-0.523428
-0.526498
-0.506228
-0.527594
-0.510288
-0.526617
-0.526843
-0.503052
-0.527725
-0.503744
-0.506916
-0.524082
-0.507345
-0.52662
-0.524096
-0.523345
-0.522151
-0.498383
-0.508347
-0.519016
-0.524987
-0.500271
-0.521287
-0.508135
-0.501078
-0.520559
-0.518133
-0.508039
-0.525224
-0.511276
-0.491363
-0.515234
-0.502475
-0.516663
-0.509413
-0.493479
-0.517887
-0.50023
-0.515007
-0.503989
-0.516515
-0.506766
-0.515613
-0.513466
-0.520369
-0.503554
-0.497126
-0.518121
-0.515961
-0.495478
-0.479141
-0.437488
-0.465334
-0.455407
-0.477716
-0.43894
-0.466222
-0.454522
-0.421456
-0.452492
-0.423236
-0.468594
-0.462908
-0.461819
-0.469953
-0.46742
-0.45989
-0.466
-0.460914
-0.47996
-0.45612
-0.441015
-0.467978
-0.439638
-0.467013
-0.481171
-0.48467
-0.445719
-0.457823
-0.485947
-0.445057
-0.484995
-0.485501
-0.445819
-0.446343
-0.505315
-0.510262
-0.509062
-0.514149
-0.50751
-0.506368
-0.5085
-0.447737
-0.446997
-0.484754
-0.457201
-0.444691
-0.486325
-0.444577
-0.485475
-0.485351
-0.504755
-0.507043
-0.507323
-0.513125
-0.504826
-0.506863
-0.507507
-0.48553
-0.446359
-0.459732
-0.486227
-0.486484
-0.446984
-0.485191
-0.50483
-0.5061
-0.507403
-0.512294
-0.506979
-0.505158
-0.506202
-0.450399
-0.449521
-0.448272
-0.448932
-0.485785
-0.460188
-0.487383
-0.448229
-0.486726
-0.44745
-0.486334
-0.504829
-0.506985
-0.512622
-0.506954
-0.506998
-0.504757
-0.506641
-0.781662
-0.778408
-0.841097
-0.77337
-0.839394
-0.878955
-0.902392
-0.880733
-0.873675
-0.886808
-0.872752
-0.878245
-0.878295
-0.824045
-0.778921
-0.842574
-0.858925
-0.878731
-0.885577
-0.893834
-0.881216
-0.885141
-0.886555
-0.908826
-0.915636
-0.912084
-0.896115
-0.834019
-0.793494
-0.79273
-0.822027
-0.829458
-0.794751
-0.829068
-0.841476
-0.835683
-0.811508
-0.824659
-0.819156
-0.83611
-0.840262
-0.856146
-0.84279
-0.845325
-0.833117
-0.853185
-0.839702
-0.847995
-0.857895
-0.853707
-0.840992
-0.831316
-0.844073
-0.901611
-0.973495
-0.948053
-0.945661
-0.827828
-0.836982
-0.905306
-0.826904
-0.903109
-0.820821
-0.776937
-0.789705
-0.817964
-0.826045
-0.785839
-0.81375
-0.746337
-0.842888
-0.839726
-0.868871
-0.851245
-0.850733
-0.844969
-0.83981
-0.847759
-0.843527
-0.843186
-0.847123
-0.850655
-0.846357
-0.84147
-0.927888
-0.876717
-0.9173
-0.97294
-0.946969
-0.947388
-0.831172
-0.840166
-0.905324
-0.826763
-0.903394
-0.291485
-0.298444
-0.298883
-0.333774
-0.393297
-0.323856
-0.309761
-0.346917
-0.305404
-0.413656
-0.355189
-0.41068
-0.317431
-0.392579
-0.381153
-0.354308
-0.390106
-0.407918
-0.288892
-0.299509
-0.29863
-0.313815
-0.330886
-0.31326
-0.311471
-0.32955
-0.311573
-0.448216
-0.392366
-0.411925
-0.291544
-0.268327
-0.266808
-0.320578
-0.316617
-0.262434
-0.300578
-0.28626
-0.262646
-0.302501
-0.250319
-0.275535
-0.308983
-0.256482
-0.284651
-0.307993
-0.262814
-0.251753
-0.312482
-0.278205
-0.257298
-0.258688
-0.311458
-0.202891
-0.161709
-0.144726
-0.141822
-0.16334
-0.269871
-0.219006
-0.256616
-0.231124
-0.273005
-0.258522
-0.219006
-0.168844
-0.138115
-0.140961
-0.147109
-0.256515
-0.260234
-0.267063
-0.318632
-0.212926
-0.23618
-0.226805
-0.264869
-0.220095
-0.205128
-0.324969
-0.323557
-0.206384
-0.19339
-0.20513
-0.263051
-0.320889
-0.324197
-0.203186
-0.19337
-0.172521
-0.163294
-0.153323
-0.174385
-0.168399
-0.14447
-0.148732
-0.163758
-0.193771
-0.323274
-0.261159
-0.206567
-0.323064
-0.201268
-0.202099
-0.207573
-0.323277
-0.324995
-0.206211
-0.267718
-0.25532
-0.300504
-0.24724
-0.272979
-0.289998
-0.242611
-0.27136
-0.23596
-0.276459
-0.240226
-0.266001
-0.283156
-0.23983
-0.275592
-0.308178
-0.248108
-0.245097
-0.27873
-0.29172
-0.244115
-0.365985
-0.386917
-0.367224
-0.388359
-0.334493
-0.391772
-0.391403
-0.33041
-0.276205
-0.314604
-0.349154
-0.286488
-0.274915
-0.351929
-0.287436
-0.292014
-0.286469
-0.29749
-0.275816
-0.301429
-0.282095
-0.288368
-0.332945
-0.387891
-0.33414
-0.388933
-0.364943
-0.38805
-0.389612
-0.351648
-0.290774
-0.301452
-0.288181
-0.276997
-0.291337
-0.300912
-0.287893
-0.334254
-0.341781
-0.34017
-0.309644
-0.335198
-0.212129
-0.322959
-0.207822
-0.31967
-0.332722
-0.216269
-0.334447
-0.333736
-0.334531
-0.332972
-0.333761
-0.198431
-0.262238
-0.312954
-0.284402
-0.231577
-0.36112
-0.38216
-0.365574
-0.377569
-0.270316
-0.304296
-0.342586
-0.28665
-0.273731
-0.309459
-0.285282
-0.32812
-0.316397
-0.331671
-0.318691
-0.292681
-0.289117
-0.304318
-0.28065
-0.300407
-0.297397
-0.288886
-0.363618
-0.376316
-0.374505
-0.368444
-0.31522
-0.381424
-0.332617
-0.316812
-0.288609
-0.299867
-0.288144
-0.278262
-0.290139
-0.298215
-0.286886
-0.283599
-0.343382
-0.342646
-0.296743
-0.25886
-0.259359
-0.249865
-0.262689
-0.253584
-0.264112
-0.252363
-0.265385
-0.271206
-0.265321
-0.27359
-0.336374
-0.340802
-0.264754
-0.468941
-0.458829
-0.425369
-0.443898
-0.470879
-0.457479
-0.42342
-0.434921
-0.408062
-0.437392
-0.406117
-0.451534
-0.446763
-0.448219
-0.449469
-0.453199
-0.450843
-0.455051
-0.449536
-0.467836
-0.442671
-0.454854
-0.420125
-0.45624
-0.422342
-0.465586
-0.486652
-0.443287
-0.454057
-0.482339
-0.443628
-0.486602
-0.483805
-0.442384
-0.441207
-0.513565
-0.513298
-0.510171
-0.528047
-0.506911
-0.512668
-0.527175
-0.441841
-0.441643
-0.488349
-0.455441
-0.443291
-0.485257
-0.445332
-0.484842
-0.485817
-0.511147
-0.508108
-0.523348
-0.527637
-0.511029
-0.50998
-0.523981
-0.485568
-0.442727
-0.451259
-0.482231
-0.481109
-0.441702
-0.486382
-0.510433
-0.526625
-0.506443
-0.525362
-0.50687
-0.510296
-0.525537
-0.440183
-0.440915
-0.442219
-0.441593
-0.484861
-0.450309
-0.479706
-0.439664
-0.480376
-0.440701
-0.484197
-0.510683
-0.508296
-0.525568
-0.524215
-0.507364
-0.511159
-0.524721
-0.373108
-0.311987
-0.32591
-0.371576
-0.327208
-0.414823
-0.439108
-0.437348
-0.4167
-0.413109
-0.43504
-0.411183
-0.436066
-0.450492
-0.469977
-0.421933
-0.445333
-0.467861
-0.453322
-0.442846
-0.453534
-0.453503
-0.452612
-0.448552
-0.478464
-0.492943
-0.465767
-0.488496
-0.466726
-0.477092
-0.493847
-0.4584
-0.451482
-0.451949
-0.462611
-0.447196
-0.420209
-0.465595
-0.438387
-0.467455
-0.439875
-0.444893
-0.481049
-0.471537
-0.498008
-0.490472
-0.483389
-0.46918
-0.496027
-0.456283
-0.469536
-0.427321
-0.447135
-0.448822
-0.470981
-0.455332
-0.49543
-0.508634
-0.481828
-0.499195
-0.479007
-0.499779
-0.506031
-0.465555
-0.453545
-0.452117
-0.465336
-0.465646
-0.45083
-0.451298
-0.465207
-0.457029
-0.428538
-0.452646
-0.473091
-0.450698
-0.471242
-0.457723
-0.490673
-0.473853
-0.496768
-0.500561
-0.476289
-0.486681
-0.502978
-0.757728
-0.729967
-0.766613
-0.771966
-0.758847
-0.776887
-0.763566
-0.754272
-0.747471
-0.750605
-0.751326
-0.813684
-0.801426
-0.846506
-0.852812
-0.855531
-0.804335
-0.811485
-0.758804
-0.762035
-0.759936
-0.755464
-0.816021
-0.86182
-0.816038
-0.849918
-0.816572
-0.858006
-0.808392
-0.83875
-0.858328
-0.85479
-0.862001
-0.843554
-0.855387
-0.855409
-0.984064
-0.923838
-0.933039
-0.835673
-0.864731
-0.863808
-0.858571
-0.858027
-0.845142
-0.857585
-0.79366
-0.744771
-0.738684
-0.781743
-0.786228
-0.736119
-0.787923
-0.742976
-0.739384
-0.837509
-0.833094
-0.866322
-0.857664
-0.840133
-0.864826
-0.829785
-0.740889
-0.737375
-0.832896
-0.858176
-0.819784
-0.857098
-0.823582
-0.862147
-0.826833
-0.872499
-0.882209
-0.874452
-0.881202
-0.882257
-0.879121
-0.876425
-0.870357
-0.960277
-0.881785
-0.866826
-0.883167
-0.873336
-0.884353
-0.876276
-0.866376
-0.883365
-0.870759
-0.880144
-0.725753
-0.731984
-0.735666
-0.715866
-0.723247
-0.712169
-0.71355
-0.719418
-0.764807
-0.70779
-0.750723
-0.739929
-0.749752
-0.763443
-0.705455
-0.723626
-0.711774
-0.727589
-0.712293
-0.722029
-0.716886
-0.711471
-0.717825
-0.766918
-0.761082
-0.703107
-0.738932
-0.769734
-0.751576
-0.705599
-0.739921
-0.723622
-0.726477
-0.759689
-0.742367
-0.767278
-0.762196
-0.754225
-0.757242
-0.738026
-0.770138
-0.83913
-0.896982
-0.91064
-0.842096
-0.845563
-0.905651
-0.833244
-0.724882
-0.741679
-0.734136
-0.716817
-0.746681
-0.754291
-0.754697
-0.784382
-0.754047
-0.757959
-0.774566
-0.741025
-0.732322
-0.737297
-0.738172
-0.729549
-0.692603
-0.729637
-0.692684
-0.769305
-0.709566
-0.766815
-0.742381
-0.765323
-0.763627
-0.703964
-0.745694
-0.750154
-0.745652
-0.746137
-0.725339
-0.702515
-0.726205
-0.686676
-0.765311
-0.760425
-0.702705
-0.740469
-0.766438
-0.760956
-0.700523
-0.730484
-0.733825
-0.772133
-0.823616
-0.82182
-0.748959
-0.760208
-0.744232
-0.827382
-0.815662
-0.864541
-0.913505
-0.91333
-0.848774
-0.845441
-0.920894
-0.859289
-0.752896
-0.741932
-0.811159
-0.739973
-0.755872
-0.79233
-0.736952
-0.764758
-0.807591
-0.277658
-0.277999
-0.293429
-0.257194
-0.275202
-0.293801
-0.253106
-0.314777
-0.314201
-0.349651
-0.336673
-0.349845
-0.315785
-0.314034
-0.313146
-0.349193
-0.312772
-0.336241
-0.310901
-0.349676
-0.313293
-0.405104
-0.346863
-0.412213
-0.352498
-0.40354
-0.411296
-0.3478
-0.35931
-0.307102
-0.324543
-0.32771
-0.323966
-0.360439
-0.326832
-0.406391
-0.408048
-0.352691
-0.349783
-0.409898
-0.407162
-0.348886
-0.269114
-0.284557
-0.292639
-0.262215
-0.272478
-0.292282
-0.266917
-0.302324
-0.309422
-0.345721
-0.334872
-0.299525
-0.346882
-0.310052
-0.30496
-0.348413
-0.31163
-0.335324
-0.308132
-0.347603
-0.310849
-0.411161
-0.354135
-0.402105
-0.352926
-0.404131
-0.411788
-0.352974
-0.363271
-0.308886
-0.32541
-0.328832
-0.325982
-0.362014
-0.329511
-0.410184
-0.407022
-0.35269
-0.350963
-0.405813
-0.408777
-0.351771
-0.380868
-0.379753
-0.376383
-0.383499
-0.291169
-0.291313
-0.276826
-0.29058
-0.290748
-0.276433
-0.290695
-0.346627
-0.322405
-0.31991
-0.348931
-0.34276
-0.318843
-0.344904
-0.314218
-0.38429
-0.380383
-0.37928
-0.386235
-0.326687
-0.338221
-0.33352
-0.333985
-0.333785
-0.214329
-0.217132
-0.332018
-0.339493
-0.21635
-0.333896
-0.332251
-0.351557
-0.221005
-0.21973
-0.346872
-0.217915
-0.326786
-0.328318
-0.332615
-0.331274
-0.331971
-0.363843
-0.393136
-0.351477
-0.35026
-0.370451
-0.383404
-0.266301
-0.236216
-0.246392
-0.295211
-0.232293
-0.296396
-0.265237
-0.27165
-0.293545
-0.218225
-0.235525
-0.229305
-0.294256
-0.298777
-0.360498
-0.352863
-0.372921
-0.352135
-0.376384
-0.359076
-0.384821
-0.379382
-0.383727
-0.380185
-0.286185
-0.291784
-0.274485
-0.289947
-0.288382
-0.273641
-0.289777
-0.336386
-0.318403
-0.339101
-0.298811
-0.380622
-0.376569
-0.378747
-0.377309
-0.342355
-0.315956
-0.342896
-0.314452
-0.46825
-0.542044
-0.391165
-0.354264
-0.55471
-0.455845
-0.380704
-0.404833
-0.377681
-0.381393
-0.395068
-0.409569
-0.376525
-0.402989
-0.378845
-0.435597
-0.459384
-0.426292
-0.417579
-0.42612
-0.296163
-0.334499
-0.29495
-0.321443
-0.297088
-0.322352
-0.294185
-0.282596
-0.275361
-0.271067
-0.251291
-0.27005
-0.284463
-0.272161
-0.29788
-0.336421
-0.297208
-0.322825
-0.298573
-0.323579
-0.298818
-0.280492
-0.264815
-0.246818
-0.267483
-0.267449
-0.278027
-0.270042
-0.44902
-0.393954
-0.539593
-0.348671
-0.453223
-0.538603
-0.347239
-0.422264
-0.421513
-0.534243
-0.4647
-0.404891
-0.444499
-0.396123
-0.457777
-0.343956
-0.538113
-0.347663
-0.409035
-0.410836
-0.384319
-0.407676
-0.392614
-0.288844
-0.292728
-0.312491
-0.321193
-0.315601
-0.287948
-0.292526
-0.272627
-0.258792
-0.242143
-0.261459
-0.262296
-0.262212
-0.270294
-0.273069
-0.263002
-0.241236
-0.26576
-0.260606
-0.276073
-0.263365
-0.290013
-0.330798
-0.322343
-0.29172
-0.320897
-0.292273
-0.288807
-0.360387
-0.298554
-0.313993
-0.361341
-0.312686
-0.3995
-0.43649
-0.437167
-0.399131
-0.399984
-0.438066
-0.400705
-0.437674
-0.434529
-0.460291
-0.409551
-0.424754
-0.46242
-0.431094
-0.428286
-0.433398
-0.453043
-0.4541
-0.439295
-0.4745
-0.489783
-0.461671
-0.484685
-0.473559
-0.460094
-0.49243
-0.428878
-0.454415
-0.454247
-0.424201
-0.439571
-0.412022
-0.465089
-0.433785
-0.465038
-0.440572
-0.431769
-0.470106
-0.452836
-0.485618
-0.480167
-0.46761
-0.456374
-0.487799
-0.424369
-0.458216
-0.402368
-0.422779
-0.419697
-0.454571
-0.427721
-0.458971
-0.474849
-0.442517
-0.469214
-0.445322
-0.456099
-0.477579
-0.414185
-0.435717
-0.441555
-0.411178
-0.41744
-0.452295
-0.447269
-0.420549
-0.42116
-0.399976
-0.414458
-0.447618
-0.417232
-0.451224
-0.417969
-0.461903
-0.450835
-0.471547
-0.483216
-0.447738
-0.464878
-0.480392
-0.374983
-0.310187
-0.311673
-0.374969
-0.312005
-0.372133
-0.340918
-0.334709
-0.374115
-0.370627
-0.330713
-0.369181
-0.331729
-0.369032
-0.387909
-0.340696
-0.359858
-0.386959
-0.371493
-0.357089
-0.346516
-0.329431
-0.335059
-0.34579
-0.348335
-0.352579
-0.351886
-0.39091
-0.359943
-0.389612
-0.361062
-0.350554
-0.397655
-0.34943
-0.345309
-0.340074
-0.353152
-0.367625
-0.338475
-0.382484
-0.355136
-0.384711
-0.355676
-0.36812
-0.353174
-0.366398
-0.403485
-0.392286
-0.356136
-0.362911
-0.399991
-0.377914
-0.391907
-0.348232
-0.362248
-0.365466
-0.395251
-0.374545
-0.365439
-0.415236
-0.377739
-0.404722
-0.37482
-0.36856
-0.412407
-0.36554
-0.369701
-0.364562
-0.369516
-0.358576
-0.355525
-0.361268
-0.35166
-0.358312
-0.357054
-0.381436
-0.350964
-0.371101
-0.402644
-0.368125
-0.399075
-0.384758
-0.362149
-0.368847
-0.402068
-0.406309
-0.372151
-0.358958
-0.40928
-0.746269
-0.762993
-0.742911
-0.765672
-0.707429
-0.635262
-0.619445
-0.636099
-0.708103
-0.706563
-0.638781
-0.625779
-0.701606
-0.639733
-0.748947
-0.768769
-0.768349
-0.750052
-0.763814
-0.774596
-0.771878
-0.766453
-0.734957
-0.75864
-0.763272
-0.786031
-0.738321
-0.742992
-0.801575
-0.764941
-0.762614
-0.860371
-0.846676
-0.791324
-0.765456
-0.85647
-0.79558
-0.755352
-0.751085
-0.722115
-0.772442
-0.736144
-0.737122
-0.783332
-0.806983
-0.740786
-0.772121
-0.804042
-0.788531
-0.771222
-0.744408
-0.760692
-0.744705
-0.757028
-0.730201
-0.689547
-0.726702
-0.691892
-0.747612
-0.750206
-0.74297
-0.758815
-0.724206
-0.678455
-0.715674
-0.686378
-0.775164
-0.777697
-0.779851
-0.771648
-0.798998
-0.77934
-0.742605
-0.814636
-0.81473
-0.776324
-0.804655
-0.775284
-0.843947
-0.83832
-0.791897
-0.770016
-0.837758
-0.791347
-0.768528
-0.781748
-0.758041
-0.74944
-0.795155
-0.809807
-0.741928
-0.774806
-0.811088
-0.792682
-0.774864
-0.780169
-0.783412
-0.782754
-0.786266
-0.667742
-0.645174
-0.753134
-0.646417
-0.666852
-0.753214
-0.663587
-0.663325
-0.64978
-0.650554
-0.647826
-0.660757
-0.666195
-0.664381
-0.647698
-0.650385
-0.661189
-0.648382
-0.663732
-0.661783
-0.667542
-0.649004
-0.753139
-0.646063
-0.75133
-0.673444
-0.834367
-0.80465
-0.802574
-0.832177
-0.8658
-0.907772
-0.872455
-0.898591
-0.877146
-0.846393
-0.893299
-0.784036
-0.878812
-0.895532
-0.793768
-0.839068
-0.78286
-0.798629
-0.840268
-0.859918
-0.881435
-0.857191
-0.88602
-0.667105
-0.646676
-0.753711
-0.667793
-0.646851
-0.751157
-0.671977
-0.671107
-0.670566
-0.653069
-0.655358
-0.681295
-0.666559
-0.670564
-0.675243
-0.702539
-0.656487
-0.74792
-0.675957
-0.666497
-0.649418
-0.662752
-0.6516
-0.665491
-0.650366
-0.663427
-0.828785
-0.804427
-0.803831
-0.830583
-0.849489
-0.875083
-0.872177
-0.84994
-0.878393
-0.839874
-0.891091
-0.782629
-0.879681
-0.888348
-0.783182
-0.853165
-0.87801
-0.855021
-0.875397
-0.825266
-0.801139
-0.801112
-0.824242
-0.343714
-0.355128
-0.342152
-0.356099
-0.330363
-0.327132
-0.337742
-0.329145
-0.33679
-0.331241
-0.327408
-0.336856
-0.333229
-0.337347
-0.332243
-0.344804
-0.358489
-0.357533
-0.345531
-0.327963
-0.332871
-0.325349
-0.330424
-0.326309
-0.333866
-0.327586
-0.336075
-0.327097
-0.334265
-0.329357
-0.381606
-0.37928
-0.37727
-0.380042
-0.357517
-0.333124
-0.359262
-0.332479
-0.322604
-0.309828
-0.309256
-0.318874
-0.31011
-0.32169
-0.318493
-0.384506
-0.370593
-0.385846
-0.373659
-0.353618
-0.327517
-0.328915
-0.35163
-0.33506
-0.338131
-0.32855
-0.328642
-0.337449
-0.334396
-0.328441
-0.336713
-0.35497
-0.338809
-0.353449
-0.325688
-0.315557
-0.322479
-0.319003
-0.334243
-0.347423
-0.331249
-0.350291
-0.328175
-0.324052
-0.330547
-0.321497
-0.37845
-0.380947
-0.382727
-0.379394
-0.337272
-0.32441
-0.343466
-0.327467
-0.342815
-0.336919
-0.324871
-0.347627
-0.32337
-0.324502
-0.346055
-0.322543
-0.307835
-0.309988
-0.317419
-0.309475
-0.322936
-0.316745
-0.348926
-0.3265
-0.325387
-0.350373
-0.377591
-0.386505
-0.384797
-0.376415
-0.336478
-0.339704
-0.328548
-0.326657
-0.340619
-0.336352
-0.325874
-0.386971
-0.467701
-0.360807
-0.410417
-0.364044
-0.385413
-0.473512
-0.380552
-0.393755
-0.467119
-0.475548
-0.451631
-0.417807
-0.390855
-0.385184
-0.461075
-0.466989
-0.554431
-0.391631
-0.465104
-0.455696
-0.38677
-0.410985
-0.371125
-0.480968
-0.365829
-0.472711
-0.393643
-0.306654
-0.30212
-0.343514
-0.334711
-0.300224
-0.308902
-0.3332
-0.288238
-0.281305
-0.273369
-0.271206
-0.267024
-0.282175
-0.287815
-0.290929
-0.273537
-0.277455
-0.286425
-0.270844
-0.284348
-0.293421
-0.303898
-0.339827
-0.298578
-0.328489
-0.296827
-0.302675
-0.330367
-0.315782
-0.305111
-0.338217
-0.350664
-0.341627
-0.311954
-0.308983
-0.303722
-0.305928
-0.292554
-0.304392
-0.294312
-0.287964
-0.310469
-0.300195
-0.276477
-0.288289
-0.283653
-0.290694
-0.296203
-0.281786
-0.31823
-0.350746
-0.347628
-0.310868
-0.343593
-0.309911
-0.322125
-0.384136
-0.403758
-0.449873
-0.356335
-0.378327
-0.467328
-0.356752
-0.458052
-0.426589
-0.524817
-0.462708
-0.519981
-0.436719
-0.383811
-0.399437
-0.463595
-0.353566
-0.391049
-0.463428
-0.354422
-0.454159
-0.45443
-0.48312
-0.414598
-0.519773
-0.450056
-0.439991
-0.622893
-0.493933
-0.421895
-0.61634
-0.441543
-0.420912
-0.402752
-0.377113
-0.413484
-0.481037
-0.479932
-0.377109
-0.402507
-0.403627
-0.47812
-0.412735
-0.378354
-0.479682
-0.404105
-0.377982
-0.438473
-0.491364
-0.602246
-0.419332
-0.610271
-0.42056
-0.436797
-0.44199
-0.44032
-0.319412
-0.399666
-0.394175
-0.353738
-0.30696
-0.347374
-0.389769
-0.458803
-0.465151
-0.407165
-0.467453
-0.410607
-0.387768
-0.343725
-0.315724
-0.35443
-0.323415
-0.351283
-0.345597
-0.313462
-0.390312
-0.462773
-0.469321
-0.414636
-0.468533
-0.412436
-0.390983
-0.343433
-0.348995
-0.321499
-0.310932
-0.350014
-0.342555
-0.31248
-0.447368
-0.502725
-0.634829
-0.424336
-0.444104
-0.646322
-0.427633
-0.408075
-0.380665
-0.496964
-0.407877
-0.48649
-0.411206
-0.379702
-0.45012
-0.507692
-0.666527
-0.433075
-0.656578
-0.430042
-0.453231
-0.406399
-0.47934
-0.378844
-0.408688
-0.404991
-0.480868
-0.379429
-0.383006
-0.466153
-0.444887
-0.404348
-0.401592
-0.458278
-0.387011
-0.353055
-0.306183
-0.308442
-0.410837
-0.407728
-0.30681
-0.353279
-0.3488
-0.356263
-0.306941
-0.310551
-0.376439
-0.345019
-0.307178
-0.37436
-0.42532
-0.396635
-0.39449
-0.398968
-0.407614
-0.371791
-0.377146
-0.316408
-0.311652
-0.378041
-0.31155
-0.359033
-0.330194
-0.330551
-0.357639
-0.360587
-0.331937
-0.362864
-0.33116
-0.3645
-0.366861
-0.329537
-0.349566
-0.369685
-0.361503
-0.352475
-0.345466
-0.32946
-0.320273
-0.353388
-0.345903
-0.345553
-0.341572
-0.349131
-0.362518
-0.357406
-0.358531
-0.371145
-0.353095
-0.360111
-0.355644
-0.340581
-0.310587
-0.314679
-0.335053
-0.368399
-0.33152
-0.381708
-0.35498
-0.373691
-0.371883
-0.354372
-0.359442
-0.354765
-0.346794
-0.366704
-0.356215
-0.358089
-0.350432
-0.354031
-0.364878
-0.321746
-0.347188
-0.343699
-0.361755
-0.35794
-0.344692
-0.332531
-0.341883
-0.352426
-0.344813
-0.341179
-0.335781
-0.313722
-0.304588
-0.305736
-0.306626
-0.332222
-0.342007
-0.336907
-0.338311
-0.321227
-0.308793
-0.307268
-0.328314
-0.349961
-0.319127
-0.337088
-0.356878
-0.340125
-0.359863
-0.346204
-0.348754
-0.352
-0.355893
-0.343178
-0.348432
-0.3525
-0.339677
-0.324195
-0.329226
-0.304795
-0.321882
-0.305551
-0.332838
-0.3234
-0.321362
-0.335201
-0.331386
-0.318608
-0.329525
-0.32019
-0.307739
-0.329612
-0.284052
-0.294408
-0.324673
-0.310399
-0.29712
-0.277767
-0.298736
-0.299482
-0.27762
-0.2491
-0.235026
-0.248714
-0.228589
-0.310327
-0.281698
-0.273561
-0.288922
-0.278009
-0.312394
-0.281972
-0.280086
-0.304107
-0.302665
-0.280462
-0.298473
-0.296628
-0.28358
-0.293782
-0.297715
-0.292761
-0.281444
-0.311724
-0.33019
-0.280368
-0.295382
-0.297085
-0.332228
-0.310808
-0.301273
-0.297562
-0.306076
-0.305839
-0.30367
-0.30321
-0.29352
-0.279186
-0.30778
-0.30644
-0.279269
-0.248881
-0.242278
-0.248683
-0.249572
-0.279571
-0.304793
-0.305781
-0.279979
-0.312489
-0.28088
-0.300669
-0.335703
-0.298599
-0.332725
-0.313939
-0.299877
-0.299096
-0.303205
-0.286771
-0.301542
-0.298513
-0.290202
-0.694855
-0.674222
-0.702684
-0.690851
-0.688667
-0.679619
-0.703835
-0.693647
-0.672952
-0.669851
-0.681184
-0.681198
-0.67514
-0.691505
-0.687285
-0.671263
-0.670884
-0.665086
-0.683583
-0.6731
-0.672005
-0.706157
-0.708837
-0.693378
-0.719646
-0.694975
-0.706056
-0.706698
-0.860498
-0.798695
-0.798329
-0.862316
-0.891061
-0.914729
-0.879189
-0.92828
-0.857186
-0.790543
-0.847014
-0.796389
-0.89665
-0.945776
-0.901488
-0.936775
-0.687285
-0.678804
-0.67148
-0.701268
-0.686919
-0.670703
-0.701548
-0.680948
-0.668622
-0.667713
-0.661451
-0.681676
-0.667893
-0.668347
-0.687787
-0.674946
-0.672312
-0.703425
-0.688442
-0.669811
-0.702167
-0.68168
-0.669361
-0.669692
-0.662699
-0.682031
-0.668814
-0.669297
-0.857593
-0.799926
-0.793777
-0.865154
-0.919566
-0.990512
-0.980185
-0.93132
-0.916199
-0.958158
-0.909722
-0.970307
-0.842065
-0.738231
-0.746905
-0.747756
-0.852723
-0.730924
-0.75351
-0.791213
-0.7633
-0.747298
-0.732624
-0.75993
-0.701813
-0.667473
-0.68901
-0.715623
-0.717821
-0.666833
-0.702485
-0.701742
-0.721295
-0.688505
-0.663617
-0.718584
-0.701139
-0.666084
-0.729584
-0.783848
-0.739211
-0.757284
-0.743899
-0.757014
-0.729978
-0.79334
-0.861257
-0.82982
-0.79115
-0.815544
-0.7885
-0.799226
-0.794012
-0.783012
-0.788826
-0.776055
-0.797202
-0.786895
-0.77895
-0.792066
-0.856147
-0.803846
-0.782759
-0.811953
-0.788366
-0.783918
-0.792669
-0.796027
-0.747932
-0.792741
-0.788453
-0.797517
-0.782197
-0.732621
-0.817186
-0.758077
-0.763169
-0.732439
-0.763649
-0.763619
-0.697437
-0.651532
-0.73333
-0.679917
-0.729008
-0.698376
-0.652245
-0.736019
-0.826639
-0.782076
-0.766437
-0.774101
-0.766727
-0.737807
-0.696267
-0.721086
-0.659802
-0.670621
-0.699064
-0.720579
-0.654123
-0.800571
-0.845826
-0.84714
-0.793436
-0.79037
-0.84534
-0.802339
-0.79787
-0.875094
-0.781282
-0.772507
-0.865063
-0.81088
-0.792801
-0.798675
-0.798069
-0.772164
-0.790442
-0.852949
-0.801453
-0.84084
-0.789418
-0.868587
-0.787285
-0.85749
-0.810268
-0.290545
-0.298072
-0.298928
-0.278533
-0.288674
-0.30064
-0.281482
-0.284221
-0.27623
-0.27137
-0.241386
-0.267316
-0.28648
-0.273058
-0.292008
-0.300324
-0.303668
-0.286784
-0.302007
-0.28405
-0.293797
-0.282249
-0.258704
-0.266868
-0.234246
-0.279817
-0.263274
-0.270246
-0.317541
-0.310234
-0.336568
-0.306955
-0.334007
-0.305487
-0.318821
-0.325617
-0.32221
-0.370261
-0.356695
-0.372165
-0.324698
-0.322298
-0.316476
-0.308217
-0.330036
-0.302803
-0.331953
-0.315239
-0.30426
-0.326204
-0.373269
-0.355941
-0.322391
-0.373121
-0.322315
-0.326774
-0.285388
-0.290831
-0.29757
-0.275973
-0.287218
-0.29591
-0.273031
-0.273515
-0.255949
-0.240608
-0.205756
-0.270939
-0.246033
-0.258661
-0.283817
-0.288575
-0.292841
-0.266804
-0.281849
-0.29449
-0.270272
-0.275549
-0.254722
-0.264235
-0.212447
-0.277889
-0.250275
-0.26114
-0.321222
-0.339196
-0.316876
-0.308165
-0.309713
-0.341857
-0.319885
-0.327852
-0.322379
-0.352727
-0.371721
-0.322322
-0.372263
-0.328243
-0.327632
-0.373137
-0.353652
-0.32236
-0.322425
-0.372763
-0.32713
-0.322239
-0.318965
-0.31232
-0.34683
-0.310886
-0.344357
-0.323486
-0.459301
-0.682525
-0.44107
-0.565431
-0.443379
-0.456505
-0.68992
-0.428476
-0.387112
-0.407364
-0.578052
-0.565885
-0.386257
-0.431743
-0.425493
-0.542876
-0.38473
-0.407329
-0.42235
-0.553991
-0.385541
-0.462097
-0.569207
-0.447586
-0.707027
-0.445506
-0.698651
-0.46493
-0.379386
-0.404718
-0.541075
-0.427647
-0.410152
-0.377884
-0.425911
-0.346142
-0.315967
-0.332037
-0.354738
-0.354693
-0.317539
-0.345351
-0.347344
-0.364386
-0.336972
-0.321554
-0.36228
-0.319103
-0.348688
-0.384696
-0.534806
-0.46687
-0.415536
-0.436589
-0.389775
-0.423891
-0.40406
-0.508795
-0.406041
-0.338466
-0.370347
-0.369224
-0.366409
-0.336519
-0.367027
-0.512655
-0.409573
-0.408601
-0.380555
-0.405303
-0.430091
-0.546784
-0.431508
-0.37922
-0.405216
-0.354094
-0.330551
-0.340566
-0.368608
-0.327536
-0.365577
-0.356621
-0.352496
-0.365265
-0.3242
-0.340021
-0.325993
-0.350838
-0.364612
-0.382017
-0.548172
-0.434296
-0.408849
-0.432936
-0.406533
-0.383943
-0.451202
-0.553822
-0.677628
-0.438021
-0.453544
-0.671171
-0.435157
-0.414591
-0.380995
-0.504674
-0.408385
-0.412814
-0.514345
-0.382202
-0.451521
-0.545549
-0.668796
-0.433125
-0.453048
-0.670512
-0.434039
-0.416106
-0.533236
-0.38382
-0.40738
-0.419219
-0.521973
-0.382671
-0.464581
-0.538838
-0.514377
-0.448485
-0.535984
-0.46649
-0.446232
-0.467952
-0.477623
-0.455477
-0.492488
-0.50397
-0.466701
-0.467146
-0.467463
-0.508836
-0.449063
-0.462004
-0.505461
-0.468838
-0.461862
-0.463466
-0.512422
-0.527795
-0.441738
-0.533891
-0.444106
-0.461897
-0.589997
-0.747127
-0.74954
-0.747537
-0.599614
-0.742417
-0.592158
-0.753977
-0.751503
-0.729982
-0.593836
-0.737317
-0.436585
-0.50224
-0.43804
-0.333611
-0.382171
-0.380906
-0.380677
-0.340215
-0.383246
-0.499867
-0.436502
-0.436388
-0.407281
-0.489938
-0.446613
-0.432436
-0.450056
-0.434857
-0.404584
-0.409521
-0.491577
-0.451845
-0.435893
-0.451943
-0.437131
-0.411457
-0.746529
-0.583866
-0.744575
-0.584528
-0.702108
-0.720498
-0.731123
-0.587442
-0.725015
-0.580939
-0.739304
-0.743895
-0.469904
-0.522195
-0.54074
-0.4502
-0.467811
-0.545308
-0.452263
-0.473147
-0.464767
-0.526783
-0.462299
-0.521337
-0.474366
-0.463705
-0.471969
-0.524207
-0.554724
-0.453473
-0.548336
-0.454508
-0.472658
-0.471489
-0.510386
-0.460892
-0.459814
-0.469316
-0.517386
-0.463285
-0.400081
-0.445451
-0.483936
-0.430629
-0.428139
-0.445325
-0.402631
-0.39752
-0.483362
-0.42257
-0.442828
-0.425567
-0.446024
-0.39406
-0.310221
-0.298083
-0.287786
-0.311533
-0.28608
-0.319428
-0.309363
-0.310322
-0.318174
-0.321411
-0.312405
-0.322433
-0.312003
-0.277965
-0.29787
-0.297842
-0.277431
-0.255737
-0.238894
-0.261927
-0.22862
-0.313223
-0.280911
-0.271473
-0.282557
-0.31244
-0.270021
-0.281624
-0.277713
-0.298748
-0.297326
-0.280211
-0.314778
-0.268429
-0.293266
-0.282811
-0.318367
-0.269237
-0.285114
-0.31141
-0.289721
-0.2637
-0.281994
-0.264571
-0.310803
-0.290552
-0.280046
-0.295537
-0.29625
-0.279981
-0.263607
-0.234648
-0.261246
-0.235326
-0.280706
-0.297405
-0.297675
-0.279252
-0.31218
-0.267455
-0.283528
-0.292457
-0.265878
-0.313981
-0.291345
-0.267726
-0.217997
-0.228701
-0.265168
-0.231633
-0.286603
-0.285001
-0.283177
-0.288815
-0.284729
-0.279646
-0.28238
-0.281539
-0.25854
-0.265876
-0.267124
-0.257637
-0.254127
-0.247579
-0.254909
-0.247426
-0.280353
-0.264873
-0.223924
-0.248829
-0.22752
-0.276155
-0.266416
-0.25915
-0.269409
-0.268106
-0.260151
-0.280059
-0.229797
-0.268052
-0.249528
-0.280821
-0.227878
-0.266946
-0.285696
-0.272344
-0.236195
-0.255249
-0.234928
-0.286989
-0.27163
-0.263143
-0.27506
-0.273543
-0.264325
-0.256744
-0.247575
-0.25574
-0.247775
-0.262281
-0.270844
-0.272275
-0.261257
-0.2844
-0.231292
-0.254412
-0.269041
-0.234127
-0.281878
-0.270465
-0.736577
-0.815975
-0.761683
-0.834749
-0.739712
-0.819843
-0.758437
-0.686882
-0.634964
-0.649749
-0.7554
-0.743277
-0.63674
-0.686312
-0.692185
-0.753267
-0.647738
-0.689173
-0.697459
-0.752256
-0.645023
-0.73234
-0.82324
-0.827186
-0.751449
-0.820157
-0.753248
-0.73251
-0.773677
-0.814723
-0.786618
-0.767568
-0.791151
-0.772873
-0.767702
-0.775657
-0.771052
-0.779942
-0.769906
-0.777498
-0.777038
-0.771458
-0.77363
-0.823433
-0.797064
-0.777081
-0.792547
-0.776173
-0.773896
-0.778329
-0.775651
-0.778326
-0.774547
-0.77983
-0.771609
-0.778019
-0.74254
-0.850011
-0.810645
-0.76359
-0.740566
-0.804777
-0.767008
-0.699546
-0.650858
-0.738237
-0.68696
-0.699143
-0.74256
-0.649824
-0.740497
-0.844913
-0.789904
-0.765527
-0.739152
-0.797118
-0.765704
-0.700702
-0.750701
-0.64799
-0.690278
-0.698575
-0.747928
-0.649813
-0.667318
-0.765394
-0.78499
-0.765998
-0.798769
-0.764089
-0.766521
-0.783849
-0.766432
-0.770996
-0.772922
-0.775055
-0.773792
-0.77261
-0.765266
-0.77136
-0.775575
-0.776405
-0.775746
-0.77154
-0.776364
-0.778448
-0.760823
-0.79352
-0.758522
-0.779876
-0.759646
-0.780246
-0.759834
-0.611327
-0.640188
-0.635222
-0.610733
-0.632435
-0.609783
-0.621748
-0.615796
-0.61677
-0.661446
-0.653323
-0.652006
-0.615983
-0.614756
-0.616527
-0.649661
-0.659168
-0.606366
-0.654647
-0.612893
-0.614075
-0.612882
-0.679763
-0.636581
-0.638123
-0.63278
-0.632907
-0.614293
-0.600711
-0.631522
-0.629221
-0.636325
-0.656636
-0.644575
-0.625547
-0.632194
-0.639933
-0.650975
-0.659719
-0.644129
-0.65367
-0.673295
-0.71795
-0.633343
-0.70714
-0.627023
-0.664939
-0.681796
-0.704647
-0.736424
-0.767484
-0.737359
-0.670773
-0.712628
-0.646872
-0.630712
-0.693768
-0.61027
-0.6928
-0.619334
-0.635276
-0.686747
-0.742999
-0.766254
-0.721282
-0.739765
-0.696167
-0.714828
-0.638035
-0.607645
-0.642767
-0.698803
-0.665293
-0.661007
-0.657092
-0.689475
-0.667963
-0.61299
-0.619876
-0.608879
-0.619399
-0.63619
-0.606618
-0.609416
-0.636166
-0.603439
-0.607877
-0.584991
-0.634238
-0.636589
-0.641761
-0.601768
-0.594499
-0.612349
-0.622137
-0.638732
-0.605795
-0.641531
-0.60458
-0.611467
-0.608527
-0.644541
-0.602486
-0.638502
-0.611168
-0.641944
-0.597545
-0.681541
-0.726032
-0.69149
-0.638235
-0.649593
-0.729343
-0.671324
-0.713
-0.733083
-0.767789
-0.750178
-0.749917
-0.731099
-0.716941
-0.70878
-0.746989
-0.767008
-0.724257
-0.748594
-0.701212
-0.729035
-0.688829
-0.708185
-0.667898
-0.737628
-0.658644
-0.734406
-0.695995
-0.273577
-0.238324
-0.26483
-0.249787
-0.275748
-0.263739
-0.247676
-0.287316
-0.303593
-0.262449
-0.288401
-0.264897
-0.284309
-0.306787
-0.272123
-0.239656
-0.261894
-0.243043
-0.263383
-0.245734
-0.26932
-0.289077
-0.268966
-0.311184
-0.2903
-0.291474
-0.266757
-0.308667
-0.251054
-0.204672
-0.255786
-0.344052
-0.303094
-0.299716
-0.292542
-0.342973
-0.2963
-0.211754
-0.264976
-0.260771
-0.268828
-0.246257
-0.271643
-0.262879
-0.268887
-0.263116
-0.269593
-0.276673
-0.287232
-0.287298
-0.30997
-0.289466
-0.27583
-0.288013
-0.267801
-0.244324
-0.263097
-0.263422
-0.265978
-0.267185
-0.263002
-0.277921
-0.2937
-0.311561
-0.290352
-0.291698
-0.289312
-0.278861
-0.165217
-0.217735
-0.222593
-0.268561
-0.299171
-0.264578
-0.172999
-0.232103
-0.227232
-0.256711
-0.295982
-0.260711
-0.279325
-0.23829
-0.265643
-0.251895
-0.277369
-0.266953
-0.253897
-0.29723
-0.319373
-0.278331
-0.299632
-0.299314
-0.275887
-0.317232
-0.280677
-0.23982
-0.26935
-0.258097
-0.28256
-0.267875
-0.255944
-0.2956
-0.271213
-0.313214
-0.297281
-0.293394
-0.27351
-0.315534
-0.271688
-0.274406
-0.25341
-0.263154
-0.263227
-0.276817
-0.270717
-0.284788
-0.296941
-0.31675
-0.310949
-0.296276
-0.301076
-0.288846
-0.28173
-0.295691
-0.315367
-0.292048
-0.293545
-0.29745
-0.280328
-0.273847
-0.255969
-0.264279
-0.28332
-0.264199
-0.279513
-0.276056
-0.162153
-0.211096
-0.202386
-0.238484
-0.28163
-0.243247
-0.167372
-0.185549
-0.194032
-0.252367
-0.285173
-0.247686
-0.489014
-0.574392
-0.462241
-0.545757
-0.464357
-0.486694
-0.577503
-0.492856
-0.48449
-0.498398
-0.560877
-0.556975
-0.482156
-0.494755
-0.491248
-0.549597
-0.477523
-0.494567
-0.488711
-0.553357
-0.480277
-0.490193
-0.548693
-0.467004
-0.584119
-0.465688
-0.580524
-0.491673
-0.599658
-0.758349
-0.758064
-0.75009
-0.611693
-0.756088
-0.599603
-0.755211
-0.757761
-0.763355
-0.616333
-0.760122
-0.430673
-0.511616
-0.43047
-0.365027
-0.374273
-0.378232
-0.380772
-0.36697
-0.380023
-0.512397
-0.428043
-0.43002
-0.480629
-0.541548
-0.573362
-0.460204
-0.484421
-0.571293
-0.456482
-0.480373
-0.466243
-0.53441
-0.478082
-0.476744
-0.539478
-0.469628
-0.478071
-0.540532
-0.565156
-0.451663
-0.474409
-0.56894
-0.454294
-0.482856
-0.546817
-0.474916
-0.482281
-0.486323
-0.543403
-0.471743
-0.759274
-0.603704
-0.761641
-0.637833
-0.784525
-0.779763
-0.768617
-0.632403
-0.774521
-0.605533
-0.764732
-0.76342
-0.523439
-0.520094
-0.571697
-0.625395
-0.624837
-0.523815
-0.520019
-0.525437
-0.628487
-0.570569
-0.525834
-0.624111
-0.524484
-0.527204
-0.588742
-0.777447
-0.77641
-0.899899
-0.785701
-0.896966
-0.587519
-0.773594
-0.775387
-0.889025
-0.77976
-0.893404
-0.449916
-0.495003
-0.45098
-0.424432
-0.512628
-0.414152
-0.39846
-0.462478
-0.441798
-0.444003
-0.47681
-0.463888
-0.402002
-0.450931
-0.475878
-0.459478
-0.500372
-0.415599
-0.446665
-0.777681
-0.592498
-0.776949
-0.739695
-0.870753
-0.872878
-0.882457
-0.744254
-0.875596
-0.59721
-0.77929
-0.779567
-0.245324
-0.181028
-0.204637
-0.247002
-0.202801
-0.264495
-0.263579
-0.26469
-0.263178
-0.265813
-0.267082
-0.267408
-0.26578
-0.254651
-0.263838
-0.262661
-0.255724
-0.250721
-0.245736
-0.250115
-0.246378
-0.276327
-0.263429
-0.220801
-0.244281
-0.274529
-0.221669
-0.263093
-0.25479
-0.261221
-0.262377
-0.253821
-0.274489
-0.220032
-0.261871
-0.244316
-0.275037
-0.220849
-0.262513
-0.272831
-0.259848
-0.214467
-0.239597
-0.216635
-0.270947
-0.260267
-0.251194
-0.257267
-0.258111
-0.250511
-0.248596
-0.245309
-0.249396
-0.244766
-0.252026
-0.260111
-0.259076
-0.25288
-0.272531
-0.218654
-0.240448
-0.261328
-0.21673
-0.274188
-0.26061
-0.229876
-0.156315
-0.179518
-0.228558
-0.181012
-0.253327
-0.255992
-0.255551
-0.25385
-0.252603
-0.253901
-0.251391
-0.254911
-0.245381
-0.247141
-0.248051
-0.244689
-0.247285
-0.247799
-0.247703
-0.247655
-0.268133
-0.258519
-0.206211
-0.23354
-0.208327
-0.265128
-0.259088
-0.245884
-0.249567
-0.248693
-0.246591
-0.266825
-0.209029
-0.25894
-0.233708
-0.267544
-0.207696
-0.258778
-0.26837
-0.258321
-0.208738
-0.234467
-0.208903
-0.267626
-0.258663
-0.247428
-0.251426
-0.251004
-0.247712
-0.247934
-0.247526
-0.247625
-0.247567
-0.247227
-0.249799
-0.250585
-0.246666
-0.267891
-0.208356
-0.234756
-0.258576
-0.209254
-0.267035
-0.258788
-0.591889
-0.620018
-0.610457
-0.624558
-0.598029
-0.616953
-0.606515
-0.563157
-0.520522
-0.622961
-0.604496
-0.611215
-0.525821
-0.558203
-0.566353
-0.617108
-0.534062
-0.623314
-0.573096
-0.612796
-0.526784
-0.588595
-0.626464
-0.609542
-0.602483
-0.615984
-0.605474
-0.583455
-0.628122
-0.618045
-0.622957
-0.631604
-0.635342
-0.626429
-0.62186
-0.627389
-0.623591
-0.620301
-0.632575
-0.624825
-0.623752
-0.620444
-0.633457
-0.613925
-0.633705
-0.611742
-0.616333
-0.65486
-0.700237
-0.731885
-0.766066
-0.719407
-0.6646
-0.691459
-0.625235
-0.617654
-0.68792
-0.606266
-0.670738
-0.630121
-0.605359
-0.655056
-0.711923
-0.766712
-0.685693
-0.711353
-0.647637
-0.692466
-0.63691
-0.623111
-0.634706
-0.655655
-0.663641
-0.628951
-0.635182
-0.643402
-0.604529
-0.631427
-0.623752
-0.611056
-0.601152
-0.631174
-0.610359
-0.586263
-0.558223
-0.631675
-0.636469
-0.592335
-0.629439
-0.548238
-0.606207
-0.629514
-0.635434
-0.605417
-0.608398
-0.633714
-0.606534
-0.581812
-0.621333
-0.540456
-0.634609
-0.57762
-0.626837
-0.542204
-0.616327
-0.615425
-0.611807
-0.613303
-0.605008
-0.610256
-0.617573
-0.616474
-0.612229
-0.616829
-0.606476
-0.611044
-0.607424
-0.628114
-0.613664
-0.625411
-0.611679
-0.611763
-0.624564
-0.627933
-0.65398
-0.735716
-0.649568
-0.652933
-0.660668
-0.623047
-0.635215
-0.708072
-0.67997
-0.752554
-0.642426
-0.698409
-0.66778
-0.609273
-0.632754
-0.616987
-0.633288
-0.614767
-0.624345
-0.614112
-0.561314
-0.5513
-0.549766
-0.540948
-0.528913
-0.541304
-0.558748
-0.54821
-0.547976
-0.54463
-0.534832
-0.543467
-0.612715
-0.59059
-0.614657
-0.688597
-0.644448
-0.646553
-0.641505
-0.684574
-0.642761
-0.594493
-0.617637
-0.618722
-0.55493
-0.582987
-0.595334
-0.51813
-0.590259
-0.519779
-0.556893
-0.561259
-0.594832
-0.61934
-0.6335
-0.620275
-0.553441
-0.600281
-0.58076
-0.613264
-0.636144
-0.616663
-0.611746
-0.588051
-0.609568
-0.553229
-0.568075
-0.554606
-0.549248
-0.550412
-0.550468
-0.54636
-0.546442
-0.547875
-0.570891
-0.557833
-0.557234
-0.564633
-0.598986
-0.598138
-0.518919
-0.522511
-0.601811
-0.560083
-0.602309
-0.633973
-0.652932
-0.628132
-0.625599
-0.631381
-0.605587
-0.597952
-0.615944
-0.644782
-0.621177
-0.618729
-0.592524
-0.62716
-0.568634
-0.604985
-0.528486
-0.609275
-0.526619
-0.608028
-0.571526
-0.260603
-0.278487
-0.255919
-0.183908
-0.222849
-0.230004
-0.240267
-0.191488
-0.23461
-0.275411
-0.246965
-0.251911
-0.306145
-0.322535
-0.324792
-0.347315
-0.366304
-0.345433
-0.30875
-0.329133
-0.326797
-0.342013
-0.365078
-0.343831
-0.297906
-0.320599
-0.318365
-0.335119
-0.359657
-0.336986
-0.295382
-0.314093
-0.316368
-0.340439
-0.360948
-0.338618
-0.594126
-0.760746
-0.766187
-0.901895
-0.799642
-0.901025
-0.584692
-0.771457
-0.765742
-0.903375
-0.803621
-0.902851
-0.486935
-0.532611
-0.526089
-0.473538
-0.534112
-0.502364
-0.531287
-0.436687
-0.453636
-0.526007
-0.451265
-0.508632
-0.494982
-0.446853
-0.513557
-0.433063
-0.487521
-0.519796
-0.448716
-0.501151
-0.522773
-0.534876
-0.534663
-0.513629
-0.759117
-0.587222
-0.756063
-0.818016
-0.911606
-0.910297
-0.907037
-0.814478
-0.908517
-0.584541
-0.750201
-0.753601
-0.640377
-0.708973
-0.747476
-0.65222
-0.74087
-0.9034
-0.866283
-0.904659
-0.708384
-0.676761
-0.736121
-0.665318
-0.736443
-0.914584
-0.867153
-0.908046
-0.590538
-0.596724
-0.536642
-0.576852
-0.59598
-0.589994
-0.533278
-0.595211
-0.610804
-0.514357
-0.514908
-0.519325
-0.615762
-0.589965
-0.600006
-0.52641
-0.624267
-0.51775
-0.604535
-0.522644
-0.62005
-0.584528
-0.576163
-0.578253
-0.527848
-0.582633
-0.530525
-0.578221
-0.627792
-0.754588
-0.708326
-0.761364
-0.613979
-0.870628
-0.925537
-0.923241
-0.91856
-0.871704
-0.922106
-0.70817
-0.767166
-0.590905
-0.765387
-0.599727
-0.213448
-0.132085
-0.163602
-0.215494
-0.160701
-0.23662
-0.240323
-0.241356
-0.235436
-0.238048
-0.243926
-0.239543
-0.24268
-0.242775
-0.245884
-0.244966
-0.243478
-0.244075
-0.245463
-0.243232
-0.245925
-0.264578
-0.258345
-0.2062
-0.232024
-0.265898
-0.204699
-0.258073
-0.241755
-0.242468
-0.243763
-0.240679
-0.264989
-0.202361
-0.257319
-0.23137
-0.263155
-0.204453
-0.257907
-0.262321
-0.256428
-0.195995
-0.2269
-0.196913
-0.263778
-0.256255
-0.237764
-0.237782
-0.239003
-0.2366
-0.241847
-0.244959
-0.242504
-0.244491
-0.238788
-0.241343
-0.240199
-0.239739
-0.263028
-0.201553
-0.228353
-0.257038
-0.199881
-0.263
-0.256829
-0.0816427
-0.069521
-0.0890007
-0.0305283
-0.078521
-0.0929042
-0.0301906
-0.149557
-0.186569
-0.183533
-0.153378
-0.143635
-0.174281
-0.136921
-0.178648
-0.177818
-0.168842
-0.174064
-0.1737
-0.184199
-0.193343
-0.187661
-0.190318
-0.181722
-0.18256
-0.178425
-0.185481
-0.19678
-0.197525
-0.194669
-0.199463
-0.194075
-0.195989
-0.19082
-0.198582
-0.192574
-0.186355
-0.190151
-0.189069
-0.555766
-0.546379
-0.544972
-0.536325
-0.507538
-0.533939
-0.557296
-0.545608
-0.547154
-0.529405
-0.488379
-0.528016
-0.543392
-0.587839
-0.611892
-0.6255
-0.608413
-0.547733
-0.58336
-0.537777
-0.596692
-0.617396
-0.572596
-0.599848
-0.534438
-0.576579
-0.591081
-0.573047
-0.592367
-0.673958
-0.633772
-0.625677
-0.621486
-0.671222
-0.622092
-0.577094
-0.602196
-0.595693
-0.544793
-0.558518
-0.544624
-0.361503
-0.471046
-0.5023
-0.513595
-0.526329
-0.481338
-0.521694
-0.562925
-0.550454
-0.545585
-0.520637
-0.584742
-0.56441
-0.601448
-0.52877
-0.579919
-0.551485
-0.43598
-0.462102
-0.417613
-0.491555
-0.422758
-0.411775
-0.39562
-0.387384
-0.392626
-0.38465
-0.395287
-0.400889
-0.383195
-0.42327
-0.453287
-0.463316
-0.403625
-0.478024
-0.408658
-0.424678
-0.399974
-0.401399
-0.3829
-0.391457
-0.39704
-0.401067
-0.383729
-0.610266
-0.600743
-0.623397
-0.663775
-0.6482
-0.639489
-0.627025
-0.660119
-0.632631
-0.604993
-0.647762
-0.635908
-0.385423
-0.421385
-0.532921
-0.425826
-0.397072
-0.389797
-0.384306
-0.400872
-0.409449
-0.409086
-0.385074
-0.390012
-0.390436
-0.403142
-0.400003
-0.382898
-0.40753
-0.391212
-0.384875
-0.380608
-0.534718
-0.431402
-0.428201
-0.384303
-0.406121
-0.357276
-0.403057
-0.364437
-0.407408
-0.356371
-0.395272
-0.389177
-0.367785
-0.325087
-0.340093
-0.364414
-0.340706
-0.391496
-0.386066
-0.340986
-0.358747
-0.325213
-0.382125
-0.361367
-0.341156
-0.399311
-0.361872
-0.351943
-0.383261
-0.354289
-0.388833
-0.390304
-0.409682
-0.381079
-0.404334
-0.387274
-0.409608
-0.389144
-0.405378
-0.418471
-0.429425
-0.403122
-0.410743
-0.4223
-0.401563
-0.426347
-0.41464
-0.382929
-0.425445
-0.39248
-0.416925
-0.419527
-0.39101
-0.414521
-0.397994
-0.409223
-0.420094
-0.399751
-0.410982
-0.423148
-0.39688
-0.398608
-0.374299
-0.384258
-0.382382
-0.393708
-0.400745
-0.400515
-0.407861
-0.389055
-0.401702
-0.390922
-0.397306
-0.410981
-0.392752
-0.371509
-0.377357
-0.384234
-0.379611
-0.38872
-0.389051
-0.404058
-0.395135
-0.404421
-0.416814
-0.393678
-0.407165
-0.414207
-0.719458
-0.647747
-0.656774
-0.813491
-0.653357
-0.819425
-0.727699
-0.900679
-0.859227
-0.920055
-0.668697
-0.680011
-0.68609
-0.746951
-0.637699
-0.814541
-0.898271
-0.850011
-0.908945
-0.635476
-0.56367
-0.641802
-0.59036
-0.632819
-0.565328
-0.644763
-0.640001
-0.660465
-0.553011
-0.560349
-0.657397
-0.55858
-0.642283
-0.637344
-0.554567
-0.65141
-0.550806
-0.634778
-0.654205
-0.556714
-0.638257
-0.590414
-0.567907
-0.650523
-0.566808
-0.647993
-0.640456
-0.745569
-0.6623
-0.810706
-0.634246
-0.803226
-0.738275
-0.665449
-0.820689
-0.841713
-0.862197
-0.891388
-0.829863
-0.878228
-0.752965
-0.630944
-0.76941
-0.671051
-0.792395
-0.668939
-0.756838
-0.782319
-0.729755
-0.645236
-0.661595
-0.731617
-0.78014
-0.663432
-0.886964
-0.896473
-0.672883
-0.655658
-0.671162
-0.889017
-0.890799
-0.784768
-0.646965
-0.735296
-0.666914
-0.733678
-0.665263
-0.786801
-0.884606
-0.667353
-0.879071
-0.653404
-0.88253
-0.669267
-0.884822
-0.677324
-0.697679
-0.608963
-0.62562
-0.67826
-0.695732
-0.60734
-0.667307
-0.685534
-0.588591
-0.59297
-0.594529
-0.687169
-0.66798
-0.666317
-0.595827
-0.690595
-0.589149
-0.665791
-0.594714
-0.688504
-0.676527
-0.624219
-0.691437
-0.604337
-0.693762
-0.60649
-0.675333
-0.77495
-0.727508
-0.659673
-0.639472
-0.657221
-0.777567
-0.725186
-0.874295
-0.853023
-0.642971
-0.657286
-0.660631
-0.860284
-0.870349
-0.877466
-0.665267
-0.645408
-0.872895
-0.662629
-0.880019
-0.866823
-0.771995
-0.63788
-0.652306
-0.719984
-0.655411
-0.722714
-0.768781
-0.0664285
-0.0501261
-0.0238297
-0.0732375
-0.0678417
-0.0710189
-0.0228336
-0.120852
-0.14359
-0.144595
-0.119227
-0.121769
-0.143758
-0.122003
-0.144993
-0.164398
-0.163016
-0.155943
-0.169171
-0.164998
-0.169733
-0.160872
-0.173337
-0.160088
-0.145612
-0.150157
-0.154835
-0.139829
-0.144608
-0.144737
-0.137828
-0.15301
-0.165844
-0.15663
-0.16278
-0.144418
-0.144389
-0.14515
-0.149307
-0.0771116
-0.0663994
-0.0618801
-0.0806529
-0.0773757
-0.0802128
-0.0614366
-0.0756527
-0.0418799
-0.133571
-0.134333
-0.0422711
-0.0750818
-0.0762006
-0.135272
-0.0439585
-0.0764278
-0.135059
-0.0433512
-0.168933
-0.163155
-0.16248
-0.169675
-0.16689
-0.164345
-0.166152
-0.165443
-0.168458
-0.162066
-0.162147
-0.168108
-0.165786
-0.159044
-0.159998
-0.164768
-0.16452
-0.163178
-0.165195
-0.162241
-0.166699
-0.161147
-0.160862
-0.167191
-0.450396
-0.40164
-0.436467
-0.393967
-0.452335
-0.400189
-0.444969
-0.411273
-0.38806
-0.386881
-0.377644
-0.403786
-0.389085
-0.391828
-0.438742
-0.416458
-0.447093
-0.395078
-0.448051
-0.427067
-0.39713
-0.420073
-0.386905
-0.378298
-0.400651
-0.391512
-0.424008
-0.397061
-0.432591
-0.490425
-0.397743
-0.430024
-0.47183
-0.607657
-0.521156
-0.522036
-0.554602
-0.613684
-0.537772
-0.489453
-0.390994
-0.423934
-0.419886
-0.440766
-0.426789
-0.470138
-0.432685
-0.428251
-0.393344
-0.393255
-0.395463
-0.440728
-0.425298
-0.440295
-0.424596
-0.378608
-0.386548
-0.391344
-0.420283
-0.436306
-0.436634
-0.38724
-0.376055
-0.407872
-0.388949
-0.431955
-0.413343
-0.425848
-0.397266
-0.391736
-0.411227
-0.398554
-0.422914
-0.417026
-0.380474
-0.400199
-0.366963
-0.360454
-0.397943
-0.382981
-0.356156
-0.365282
-0.352765
-0.339342
-0.335523
-0.343136
-0.362744
-0.355326
-0.379298
-0.365057
-0.395019
-0.350374
-0.397232
-0.354295
-0.376857
-0.366857
-0.349344
-0.3601
-0.337566
-0.369564
-0.345113
-0.3572
-0.453425
-0.422739
-0.404077
-0.39185
-0.453039
-0.424178
-0.407773
-0.494376
-0.544985
-0.45331
-0.430963
-0.431413
-0.545132
-0.493625
-0.497061
-0.42547
-0.547006
-0.45156
-0.498247
-0.429758
-0.546177
-0.451947
-0.393137
-0.425464
-0.410059
-0.42408
-0.409334
-0.45214
-0.386596
-0.401108
-0.362199
-0.376644
-0.365643
-0.384351
-0.403018
-0.375772
-0.370901
-0.34888
-0.358752
-0.35618
-0.367599
-0.378668
-0.373915
-0.351125
-0.347238
-0.362289
-0.354604
-0.371345
-0.365206
-0.387918
-0.378056
-0.369423
-0.405874
-0.367102
-0.403759
-0.390467
-0.320172
-0.329884
-0.299634
-0.316333
-0.319102
-0.301406
-0.331327
-0.314517
-0.317113
-0.271513
-0.288806
-0.316836
-0.287084
-0.315639
-0.313156
-0.282837
-0.3167
-0.268868
-0.312531
-0.316377
-0.284725
-0.321934
-0.31853
-0.305265
-0.33527
-0.303637
-0.333411
-0.323454
-0.357823
-0.327861
-0.342457
-0.345811
-0.341161
-0.343834
-0.359498
-0.375285
-0.395145
-0.359028
-0.378953
-0.373564
-0.360859
-0.397339
-0.356171
-0.326414
-0.339109
-0.340642
-0.339898
-0.35491
-0.342291
-0.377343
-0.36469
-0.380784
-0.40237
-0.362547
-0.379441
-0.399825
-0.363727
-0.34421
-0.333254
-0.347636
-0.349535
-0.345994
-0.361586
-0.387494
-0.414949
-0.372724
-0.389619
-0.370999
-0.390425
-0.41156
-0.366427
-0.335487
-0.353497
-0.350574
-0.351826
-0.348378
-0.368988
-0.384444
-0.366618
-0.387208
-0.405205
-0.36863
-0.381904
-0.408155
-0.792549
-0.652755
-0.740407
-0.672798
-0.739807
-0.671593
-0.793601
-0.892779
-0.901946
-0.674721
-0.661874
-0.891012
-0.676242
-0.907327
-0.790772
-0.651457
-0.737103
-0.668674
-0.738447
-0.78903
-0.670131
-0.894327
-0.679084
-0.663838
-0.91687
-0.677803
-0.89511
-0.912464
-0.669939
-0.614451
-0.70212
-0.637682
-0.670863
-0.614886
-0.699834
-0.697123
-0.8041
-0.61912
-0.610501
-0.796014
-0.608485
-0.707128
-0.685392
-0.603606
-0.776839
-0.616291
-0.675301
-0.786427
-0.606019
-0.670247
-0.638115
-0.615643
-0.69558
-0.615574
-0.698303
-0.669151
-0.795098
-0.740928
-0.674115
-0.65546
-0.675265
-0.794831
-0.740379
-0.89492
-0.93001
-0.671669
-0.684575
-0.683587
-0.927039
-0.894402
-0.895703
-0.680587
-0.669482
-0.921452
-0.681937
-0.89602
-0.924783
-0.795766
-0.656507
-0.677479
-0.739537
-0.676727
-0.74048
-0.795743
-0.757636
-0.753632
-0.669647
-0.682356
-0.759515
-0.755944
-0.68247
-0.839693
-0.963602
-0.694985
-0.701533
-0.695272
-0.835974
-0.965346
-0.763571
-0.671972
-0.768787
-0.685246
-0.764492
-0.683993
-0.770316
-0.843176
-0.695959
-0.967258
-0.701064
-0.847243
-0.695049
-0.966514
-0.781485
-0.758462
-0.65601
-0.657996
-0.785396
-0.753824
-0.653753
-0.835685
-0.929172
-0.671467
-0.655763
-0.659138
-0.93267
-0.830705
-0.839396
-0.66399
-0.941082
-0.673922
-0.843314
-0.66165
-0.936379
-0.777616
-0.655935
-0.743869
-0.648328
-0.749279
-0.651424
-0.772539
-0.758701
-0.745321
-0.681471
-0.664199
-0.681585
-0.75651
-0.737796
-0.860294
-0.967549
-0.699505
-0.696322
-0.696462
-0.967175
-0.865381
-0.855188
-0.695702
-0.7002
-0.9667
-0.696158
-0.850651
-0.9667
-0.761376
-0.662653
-0.681621
-0.722682
-0.681723
-0.730451
-0.763984
-0.0748789
-0.0623772
-0.0592783
-0.0790577
-0.0762117
-0.0772924
-0.0578479
-0.0713402
-0.0380982
-0.129453
-0.0368267
-0.130338
-0.0687119
-0.0730435
-0.132449
-0.0379964
-0.0741389
-0.0367462
-0.131499
-0.168217
-0.162199
-0.161171
-0.169005
-0.166958
-0.167118
-0.166592
-0.167002
-0.167523
-0.159201
-0.160389
-0.166689
-0.163992
-0.156074
-0.155956
-0.164043
-0.16552
-0.166706
-0.165811
-0.166895
-0.164929
-0.15782
-0.156924
-0.1656
-0.00324763
0.0271589
0.0246117
0.00716929
-0.000696974
0.0039098
0.0276164
-0.00386985
0.0147246
0.0174373
-0.016771
-0.0100501
0.0255175
-0.0088554
-0.00032032
0.00274492
0.0290388
0.0294663
0.00206188
-0.00350706
0.0315134
-0.0835629
-0.0586469
-0.0564941
-0.0875899
-0.0995052
-0.114749
-0.107696
-0.107973
-0.0849751
-0.0572711
-0.0540268
-0.0927922
-0.113388
-0.0849212
-0.0783862
-0.119712
-0.120715
-0.120577
-0.11425
-0.126251
-0.107696
-0.0643714
-0.072458
-0.100524
-0.373472
-0.349681
-0.392754
-0.3375
-0.393001
-0.340528
-0.372738
-0.360199
-0.350883
-0.338186
-0.326981
-0.361431
-0.334106
-0.349187
-0.375417
-0.354282
-0.394914
-0.348961
-0.394663
-0.376157
-0.344697
-0.357979
-0.327124
-0.323238
-0.345065
-0.330192
-0.356806
-0.346653
-0.457562
-0.416023
-0.367787
-0.352983
-0.455763
-0.365701
-0.416417
-0.520601
-0.567531
-0.391081
-0.377941
-0.569587
-0.38037
-0.522417
-0.520146
-0.385407
-0.571748
-0.394604
-0.51681
-0.572213
-0.383292
-0.456806
-0.349834
-0.360526
-0.414838
-0.362749
-0.414456
-0.458225
-0.368902
-0.389682
-0.333624
-0.340433
-0.331387
-0.369484
-0.389454
-0.349846
-0.336614
-0.310369
-0.315645
-0.317712
-0.337778
-0.349076
-0.352519
-0.323327
-0.313735
-0.34164
-0.321002
-0.353425
-0.340455
-0.366297
-0.337204
-0.325944
-0.386859
-0.328137
-0.387023
-0.365836
-0.343127
-0.361226
-0.292988
-0.288925
-0.361126
-0.344011
-0.286805
-0.327102
-0.322149
-0.275387
-0.268402
-0.275133
-0.328734
-0.321426
-0.338879
-0.289633
-0.35995
-0.283531
-0.357058
-0.283487
-0.341143
-0.331972
-0.280277
-0.329361
-0.271346
-0.333626
-0.27809
-0.326833
-0.437814
-0.393975
-0.317894
-0.310786
-0.440081
-0.320001
-0.393163
-0.485655
-0.475992
-0.331681
-0.335057
-0.477748
-0.333098
-0.482525
-0.483186
-0.327596
-0.475574
-0.328178
-0.486313
-0.473404
-0.329675
-0.44061
-0.31429
-0.325299
-0.396208
-0.3234
-0.396891
-0.438395
-0.349728
-0.365421
-0.29254
-0.300953
-0.295068
-0.348571
-0.365718
-0.345976
-0.347813
-0.284146
-0.292999
-0.290425
-0.344173
-0.34797
-0.340698
-0.28403
-0.280398
-0.335099
-0.286706
-0.338655
-0.338165
-0.354521
-0.304534
-0.301089
-0.370553
-0.298729
-0.370072
-0.355866
-0.314561
-0.353287
-0.299728
-0.313168
-0.314268
-0.298277
-0.352651
-0.314806
-0.260949
-0.31473
-0.258659
-0.271817
-0.235257
-0.236614
-0.269464
-0.23283
-0.27019
-0.275543
-0.408369
-0.462111
-0.474071
-0.415727
-0.400129
-0.480358
-0.396441
-0.474818
-0.270746
-0.268166
-0.233941
-0.234194
-0.271407
-0.232471
-0.269045
-0.31585
-0.309563
-0.292772
-0.356316
-0.296813
-0.354205
-0.318007
-0.37864
-0.336412
-0.37145
-0.338432
-0.372939
-0.34151
-0.377657
-0.429664
-0.486489
-0.485406
-0.441891
-0.384812
-0.427781
-0.357166
-0.368628
-0.38865
-0.354328
-0.424653
-0.380341
-0.339317
-0.376647
-0.350032
-0.376376
-0.389445
-0.343744
-0.395257
-0.456267
-0.468396
-0.382675
-0.418274
-0.35369
-0.370061
-0.437084
-0.355852
-0.419348
-0.433952
-0.405662
-0.369635
-0.32318
-0.336649
-0.337636
-0.368294
-0.373994
-0.424275
-0.430771
-0.355836
-0.375656
-0.355022
-0.421864
-0.433843
-0.341676
-0.362101
-0.43555
-0.384309
-0.361605
-0.406879
-0.320428
-0.334644
-0.364209
-0.335725
-0.368277
-0.400667
-0.421339
-0.35262
-0.374016
-0.435751
-0.353488
-0.414055
-0.435121
-0.792636
-0.680985
-0.78697
-0.692594
-0.782581
-0.690678
-0.799278
-0.829695
-0.961712
-0.695415
-0.702217
-0.832769
-0.695575
-0.960359
-0.785165
-0.678732
-0.773429
-0.68717
-0.778001
-0.777765
-0.688895
-0.827248
-0.69671
-0.702588
-0.957931
-0.69599
-0.827072
-0.959056
-0.820844
-0.679425
-0.794387
-0.684623
-0.816556
-0.682153
-0.798498
-0.881102
-0.968623
-0.701481
-0.693055
-0.974039
-0.69249
-0.884126
-0.879578
-0.689457
-0.976946
-0.704445
-0.97849
-0.875692
-0.691732
-0.824261
-0.686445
-0.686389
-0.806711
-0.684063
-0.801773
-0.829875
-0.808998
-0.790959
-0.694234
-0.687704
-0.696343
-0.80432
-0.795172
-0.843044
-0.954339
-0.703883
-0.702325
-0.700429
-0.955527
-0.850053
-0.836847
-0.697658
-0.703833
-0.956939
-0.69929
-0.83062
-0.956437
-0.813001
-0.689337
-0.700053
-0.803191
-0.697841
-0.798565
-0.817997
-0.909135
-0.870671
-0.750218
-0.746182
-0.869133
-0.908815
-0.748749
-1.01308
-0.919512
-0.741476
-0.706462
-0.737863
-1.00992
-0.926033
-0.913011
-0.753666
-0.86483
-0.756255
-0.871679
-0.751071
-0.911117
-1.00769
-0.735068
-0.932949
-0.706669
-1.00403
-0.736707
-0.928545
-0.86889
-0.855256
-0.748541
-0.744386
-0.86765
-0.745992
-0.855782
-0.893325
-0.939491
-0.735763
-0.741106
-0.912994
-0.745099
-0.898522
-0.900151
-0.753014
-0.906744
-0.740185
-0.896814
-0.915042
-0.751029
-0.863191
-0.739293
-0.73624
-0.849983
-0.740295
-0.851754
-0.862596
-0.901964
-0.867354
-0.743014
-0.740798
-0.741103
-0.904246
-0.866752
-0.982496
-0.93853
-0.705687
-0.727942
-0.729214
-0.938199
-0.973969
-0.990532
-0.732898
-0.706434
-0.934353
-0.731772
-0.996484
-0.937035
-0.897237
-0.736425
-0.735384
-0.859965
-0.737477
-0.862936
-0.892647
0.0247393
0.0563376
0.043191
0.0353895
0.023559
0.036595
0.045163
0.0348975
0.0570718
0.0427513
-0.0169069
0.0354216
0.0149159
0.0396114
0.0204499
0.0102022
0.03864
0.0409296
0.0191286
0.0375663
0.00859718
-0.0877917
-0.0576024
-0.0565642
-0.0881937
-0.0968267
-0.0988699
-0.0963039
-0.0981687
-0.0869721
-0.0540724
-0.0554527
-0.0858614
-0.0785219
-0.0502883
-0.0437818
-0.0782439
-0.0935904
-0.0989457
-0.0958102
-0.0976092
-0.0824752
-0.0528371
-0.0508388
-0.0850768
0.0337188
0.058384
0.049973
0.0403565
0.0298614
0.0441368
0.0546463
0.028847
0.0627587
0.0662405
0.0367827
0.0312391
0.0561851
0.0327739
0.0250165
0.0221168
0.0458937
0.0600573
0.0209902
0.0265292
0.0507931
-0.0497799
0.0606898
-0.00375277
0.00722832
-0.05736
-0.067426
-0.0606874
-0.0599473
-0.0705244
-0.0424014
0.0207538
0.0731811
0.0145509
-0.0358603
-0.0121389
0.11202
0.0460266
0.040232
-0.0155902
-0.0412653
-0.0510723
-0.0497728
-0.0530156
-0.0192911
0.0268772
0.102299
0.0329949
-0.0278703
-0.334148
-0.280463
-0.353343
-0.269383
-0.352419
-0.272896
-0.334867
-0.325002
-0.318588
-0.27015
-0.257736
-0.324343
-0.265844
-0.318555
-0.336287
-0.282186
-0.353795
-0.279059
-0.35453
-0.335635
-0.274899
-0.32276
-0.260051
-0.255041
-0.315444
-0.263588
-0.323211
-0.315738
-0.441261
-0.384465
-0.297207
-0.284972
-0.436497
-0.29532
-0.387785
-0.487816
-0.45094
-0.298393
-0.301741
-0.45287
-0.304225
-0.491169
-0.488776
-0.306574
-0.462548
-0.29942
-0.485498
-0.46054
-0.304117
-0.443203
-0.285977
-0.294622
-0.395367
-0.296062
-0.388972
-0.450231
-0.335959
-0.352579
-0.268123
-0.274037
-0.266212
-0.33401
-0.354871
-0.323756
-0.313676
-0.244685
-0.254717
-0.255797
-0.312384
-0.32768
-0.323443
-0.258284
-0.245426
-0.313041
-0.255885
-0.321919
-0.313723
-0.336252
-0.274987
-0.266514
-0.359885
-0.266987
-0.355157
-0.340201
-0.368715
-0.375784
-0.225861
-0.226555
-0.358228
-0.223444
-0.370354
-0.283087
-0.23557
-0.205684
-0.207442
-0.27896
-0.208144
-0.233061
-0.387918
-0.305375
-0.378936
-0.307336
-0.360359
-0.217936
-0.317745
-0.213555
-0.336512
-0.345316
-0.219071
-0.285463
-0.212826
-0.209734
-0.240778
-0.210605
-0.286125
-0.236464
-0.335932
-0.350591
-0.226009
-0.24091
-0.327968
-0.231679
-0.360593
-0.330331
-0.333413
-0.219352
-0.234478
-0.327715
-0.229748
-0.337192
-0.323016
-0.217736
-0.315445
-0.213083
-0.316133
-0.321714
-0.223522
-0.34484
-0.24654
-0.242212
-0.386749
-0.237724
-0.373031
-0.353314
-0.376295
-0.392743
-0.230178
-0.242939
-0.233293
-0.368953
-0.409929
-0.322694
-0.253656
-0.210559
-0.220068
-0.219644
-0.253231
-0.322855
-0.313971
-0.370379
-0.298267
-0.318151
-0.215353
-0.21057
-0.24691
-0.218448
-0.28638
-0.250913
-0.379739
-0.247679
-0.237511
-0.423682
-0.236369
-0.4215
-0.378818
-0.232591
-0.220518
-0.233511
-0.218217
-0.25499
-0.284374
-0.279827
-0.258122
-0.252876
-0.274196
-0.252391
-0.276336
-0.260945
-0.187227
-0.253149
-0.236377
-0.246157
-0.224712
-0.268989
-0.328439
-0.313852
-0.337779
-0.302641
-0.272123
-0.283503
-0.221122
-0.267725
-0.262734
-0.241834
-0.295158
-0.371519
-0.441572
-0.379827
-0.43184
-0.250753
-0.175419
-0.230793
-0.183633
-0.246065
-0.235869
-0.210536
-0.327317
-0.297097
-0.298108
-0.330118
-0.283681
-0.265538
-0.278152
-0.317063
-0.254308
-0.292772
-0.307686
-0.285286
-0.261831
-0.213417
-0.245166
-0.253219
-0.267449
-0.278294
-0.320638
-0.352366
-0.298054
-0.310393
-0.289979
-0.32782
-0.345344
-0.35141
-0.315467
-0.309213
-0.360471
-0.402619
-0.453422
-0.390897
-0.465065
-0.343223
-0.299746
-0.303747
-0.336097
-0.294023
-0.22232
-0.270211
-0.280735
-0.261401
-0.276077
-0.300299
-0.311124
-0.274254
-0.303426
-0.327647
-0.282289
-0.303081
-0.335728
-0.922446
-0.762364
-0.870299
-0.755773
-0.867751
-0.756415
-0.927201
-1.00392
-0.914704
-0.739314
-0.706903
-1.00643
-0.740635
-0.911077
-0.920368
-0.76367
-0.862989
-0.75515
-0.868288
-0.913469
-0.758
-0.996809
-0.736131
-0.704102
-0.899002
-0.737958
-0.992375
-0.904065
-0.839053
-0.773712
-0.846594
-0.769448
-0.839903
-0.770364
-0.845007
-1.28823
-1.28626
-0.840042
-0.738594
-0.727046
-0.756148
-0.790284
-0.763737
-0.841892
-0.830107
-0.770708
-0.813694
-0.729849
-0.800572
-0.835419
-0.765865
-0.847708
-0.770227
-0.771474
-0.834782
-0.770242
-0.848666
-0.833884
-0.933526
-0.872985
-0.755704
-0.761226
-0.754078
-0.932059
-0.871379
-0.978535
-0.873542
-0.695457
-0.729695
-0.730343
-0.882448
-0.968925
-0.981694
-0.734724
-0.697695
-0.893907
-0.732121
-0.988269
-0.88689
-0.939033
-0.761604
-0.754378
-0.865611
-0.753672
-0.874144
-0.936284
-0.740957
-0.7689
-0.549801
-0.568817
-0.73791
-0.549363
-0.779064
-0.883807
-0.860968
-0.646842
-0.521531
-0.48415
-0.483674
-0.566705
-0.50528
-0.582941
-0.707266
-0.527758
-0.607723
-0.500598
-0.701981
-0.612588
-0.52459
-0.675288
-0.548883
-0.507484
-0.635743
-0.530237
-0.710211
-0.60679
-0.582346
-0.724427
-0.564556
-0.589789
-0.564058
-0.578893
-0.743338
-0.856391
-0.920353
-0.841861
-0.934846
-0.565756
-0.575055
-0.609623
-0.616049
-0.564118
-0.605776
-0.579296
-0.8558
-0.999403
-0.983411
-0.868751
-0.841552
-0.958895
-0.828138
-0.969718
-0.549073
-0.578598
-0.534126
-0.596522
-0.532716
-0.549152
-0.591753
-0.602423
-0.607536
-0.608742
-0.773431
-0.594765
-0.763243
-0.623801
-0.828544
-0.790742
-0.586308
-0.601731
-0.602025
-0.808439
-0.803638
-0.779663
-0.706742
-0.569502
-0.609069
-0.597005
-0.694853
-0.793263
-0.757746
-0.565656
-0.55437
-0.658279
-0.580716
-0.73756
-0.675577
-0.849868
-0.619073
-0.632331
-0.817094
-0.619222
-0.817181
-0.861325
-1.17939
-1.21211
-1.16605
-1.156
-1.155
-1.17583
-1.19939
-1.24224
-1.26704
-1.23962
-1.28246
-1.25866
-1.23193
-1.2749
-1.24069
-1.26487
-1.24569
-1.285
-1.25836
-1.23592
-1.26795
-2.17863
-2.23256
-2.20547
-2.12845
-2.23705
-2.15531
-2.13358
-2.12461
-2.15104
-2.1703
-2.22321
-2.11999
-2.14094
-2.13836
-2.07654
-2.12537
-2.14229
-2.08316
-2.17708
-2.23222
-2.23576
-2.15728
-2.55961
-2.4059
-2.51121
-2.41537
-2.56867
-2.51398
-2.42241
-2.44029
-2.66657
-2.6353
-2.62272
-2.50413
-2.50769
-2.73474
-2.54322
-2.62234
-2.39951
-2.59463
-2.5743
-2.4055
-2.39952
-2.46277
-2.57562
-2.4105
-2.52513
-2.44222
-2.15561
-2.23484
-2.13439
-2.22021
-2.15859
-2.12103
-2.22345
-2.13237
-2.08937
-2.10423
-2.10394
-2.12093
-2.1161
-2.10704
-2.11286
-2.14117
-2.08865
-2.11761
-2.13852
-2.1146
-2.08435
-2.10916
-2.12953
-2.14088
-2.10252
-2.11887
-2.17794
-2.06578
-2.11251
-2.18807
-2.06105
-1.28667
-1.29933
-1.28074
-1.31276
-1.22913
-1.19913
-1.23035
-1.21494
-1.26011
-1.22719
-1.27565
-1.32157
-1.27054
-1.32045
-1.26903
-1.28073
-1.33252
-1.22286
-1.19218
-1.21688
-1.20881
-1.22364
-1.20178
-1.21508
-1.27321
-1.26854
-1.33525
-1.2709
-1.2629
-1.34451
-1.22519
-1.19333
-1.24174
-1.21315
-1.23494
-1.19539
-1.21933
0.813788
0.77433
0.765027
0.809599
0.817222
0.761213
0.806001
0.820641
0.784974
0.773955
0.814012
0.821431
0.773559
0.81315
0.76495
0.756593
0.780789
0.784617
0.766766
0.746255
0.783594
0.771271
0.790837
0.839497
0.92389
0.82987
0.914745
0.836519
0.926487
0.819871
0.751388
0.755496
0.767585
0.727328
0.78156
0.728519
0.78361
0.764896
0.730213
0.838365
0.838598
0.936524
0.936397
0.935637
0.837978
0.837943
0.768132
0.785652
0.749924
0.728004
0.772251
0.782871
0.731513
0.83759
0.92814
0.835989
0.932723
0.837622
0.933708
0.836461
-0.0121841
0.0152484
-0.00267849
0.0217348
-0.0060124
0.0320757
0.0268394
0.147147
0.151787
-2.16916
-2.17266
-2.20772
-2.22822
-2.22269
-2.17256
-2.1788
-2.17247
-2.19217
-2.16529
-2.21804
-2.19065
-2.15772
-2.23477
-2.36024
-2.45187
-2.53418
-2.35969
-2.39752
-2.35906
-2.4926
-2.1461
-2.16717
-2.1444
-2.18117
-2.2236
-2.23048
-2.45869
-2.62946
-2.60467
-2.54316
-2.34099
-2.35676
-2.62669
-2.35305
-2.64045
-2.66155
-2.39742
-2.66248
-2.15983
-2.1218
-2.14672
-2.08289
-2.15385
-2.13105
-2.19093
-2.21252
-2.25687
-2.27658
-2.17847
-2.26231
-2.2169
-2.14124
-2.18435
-2.22977
-2.12843
0.743327
0.744936
0.759447
0.711047
0.7198
0.778344
0.781545
0.70877
0.75291
0.84813
0.855539
0.970784
0.951475
0.959893
0.856457
0.8377
0.762889
0.782809
0.712983
0.720032
0.763527
0.782652
0.71041
0.849616
0.955556
0.853159
0.967921
0.848147
0.960041
0.855649
0.74839
0.74797
0.766144
0.726558
0.783932
0.723817
0.767665
0.783
0.722333
0.845265
0.846072
0.944232
0.952109
0.844115
0.94823
0.847631
0.765337
0.784089
0.717349
0.723188
0.766295
0.78324
0.71994
0.846706
0.955055
0.853375
0.954061
0.848947
0.949895
0.851253
-2.2019
-2.17715
-2.23458
-2.2938
-2.15853
-2.24344
-2.259
-2.18866
-2.11072
-2.11727
-2.15757
-2.15036
-2.13285
-2.1765
-2.19556
-2.15876
-2.19627
-2.16842
-2.19545
-2.16059
-2.26939
-2.20904
-2.3208
-2.1744
-2.31008
-2.2263
-2.22411
-2.32467
-2.24413
-2.32819
-2.65774
-2.39794
-2.5181
-2.53655
-2.47849
-2.51265
-2.70459
-2.84929
-2.70318
-2.70112
-2.78867
-2.74194
-2.89534
-2.8795
-2.71771
-2.95388
-2.64978
-2.68827
-2.95708
-2.16668
-2.09959
-2.12987
-2.17938
-2.08561
-2.19666
-2.26787
-2.3786
-2.40717
-2.24907
-2.23316
-2.22023
-2.34136
-2.2291
-2.38056
-2.84407
-2.55955
-2.43413
-2.58399
-2.57251
-2.57705
-2.77735
-2.56398
-2.70231
-2.57832
-2.55245
-2.66928
-2.54653
-2.61793
-2.95089
-3.20158
-2.69833
-2.58164
-2.51636
-2.55072
-2.66346
-2.81522
-2.52743
-2.58526
-2.88428
-2.46375
-2.56347
-2.64552
-2.58352
-2.6224
-2.90314
-2.64236
-2.98279
0.670721
0.689556
0.746713
0.745323
0.674151
0.933706
1.0184
1.09507
1.02408
0.916252
0.669823
0.751076
0.687977
0.745964
0.680906
0.941376
1.03141
1.09835
0.945245
1.02725
0.716643
0.772025
0.66479
0.765901
0.732225
0.954524
1.04579
1.11141
1.04098
0.957861
0.705666
0.753999
0.669515
0.690038
0.76192
0.951656
1.03394
1.10957
0.948631
1.03871
0.0883761
0.14451
0.0632318
0.167169
0.083212
0.0694475
0.172538
0.0566003
-0.0691765
0.0458028
0.0330102
0.000802922
0.0582296
-0.0380327
-0.0511139
0.135252
0.122887
0.0641325
0.160545
0.0835038
0.0973185
0.155425
-0.00511299
0.0021072
-0.00688186
-0.0099008
0.00193082
0.0704093
0.0728337
-0.0139005
0.0207036
-0.0145697
-0.00793868
-0.049571
-2.18948
-2.19776
-2.13451
-2.19968
-2.17504
-2.12128
-2.23478
-2.27443
-2.34918
-2.41998
-2.32279
-2.35672
-2.26827
-2.32081
-2.55051
-2.77774
-2.62746
-2.59554
-2.62414
-2.58962
-2.57117
-2.62712
-2.88567
-2.68637
-2.77648
-2.7154
-2.60452
-2.85482
-2.61328
-2.57467
-2.74076
-2.77969
-2.60119
-2.59553
-2.79913
-2.44412
-2.61936
-2.61569
-2.43011
-2.45081
-2.58938
-2.44108
-2.48324
-2.6433
-2.4981
-2.6848
-2.4004
-2.55414
-2.60953
-2.50428
-2.52675
-2.69906
-2.7247
-2.51681
-2.55838
-2.67584
-2.182
-2.11408
-2.13301
-2.15551
-2.1627
-2.13211
-2.19456
-2.27151
-2.29334
-2.39379
-2.46198
-2.29197
-2.39433
-2.30146
-2.2652
-2.38973
-2.29343
-2.47694
-2.26475
-2.39931
-2.29239
0.978987
0.898949
1.03596
1.01429
0.97013
0.90828
1.04402
0.589942
0.826624
0.812057
1.1
1.09569
0.786087
0.58904
0.801539
1.08524
1.09148
0.983811
1.0185
0.922139
1.05295
0.914448
1.04805
0.989908
0.919292
0.998222
0.898353
1.03109
0.967323
0.8918
1.02077
0.773664
0.781014
0.64081
0.754703
0.786116
0.973481
1.05361
1.12874
0.969053
1.05934
0.769383
0.780147
0.639914
0.767241
0.977115
1.08026
1.10813
1.05829
1.21744
1.25824
1.21263
1.16206
1.15766
1.25471
1.22086
1.21297
1.14609
1.20779
1.24367
1.15298
1.207
1.25061
1.10169
1.02988
1.09278
1.12781
1.02643
1.10448
1.12629
0.935189
0.939673
1.16489
1.16163
0.95065
0.943924
1.09832
1.09046
1.01946
1.12188
1.02364
1.12807
1.09185
1.15019
1.15237
0.871082
0.739891
0.890872
0.778116
0.9001
0.870958
0.768016
0.865816
0.875156
0.778151
0.769189
0.862141
0.884458
0.779177
1.28941
1.35204
1.24338
1.24043
1.29051
1.35335
1.29062
1.2121
1.38171
1.23528
1.30691
1.36621
0.855725
0.767577
0.721064
0.855132
0.860086
0.769796
0.853723
0.85769
0.871306
0.73211
0.776842
0.864483
0.861756
0.772189
1.09816
1.10204
1.03009
1.12675
1.09901
1.03528
1.1349
0.973796
0.977552
1.16795
1.16659
1.0948
1.10532
1.03815
1.13515
1.03928
1.13538
1.08961
0.955646
0.965225
1.1482
1.16597
1.29881
1.3111
1.21205
1.28688
1.21783
1.27672
1.37027
1.3044
1.21546
1.27759
1.3849
1.21462
1.30847
1.37883
-0.0292302
-0.0222337
-0.00493034
0.017666
0.0672493
0.0434823
0.0652163
-0.00396307
0.0165415
0.0262367
0.0230269
0.0250615
0.024952
-0.0283052
-0.0289298
-0.0040466
0.0638405
0.0200214
0.0437218
0.00115628
0.0646824
0.0172175
0.0240497
0.0200489
0.0206014
0.0262763
0.0433337
0.027892
0.0405329
0.035034
0.0433023
0.0457476
0.0242686
-0.0481859
-0.0294794
-0.0213616
-0.0613207
0.0424752
0.0614372
0.0455788
-0.0222722
0.0583459
-0.0111722
0.0116002
0.0583359
-0.0151265
0.00162725
0.0595289
0.0482558
-0.00292294
0.0202372
0.0649189
-0.0025672
0.0447487
0.035261
0.00800159
-0.0273016
0.0363055
0.0050808
0.0555909
-0.0048044
0.058817
-0.00648894
0.0435149
0.0534834
0.0208996
0.0255614
0.00230345
0.00236125
0.0369212
0.0456784
-0.0154054
-0.0288136
0.0121496
0.00326368
-0.0223681
-0.0338651
0.0726274
0.0515731
0.070683
-0.0214364
-0.0344414
-0.0133262
-0.0127245
-0.0111961
-0.0223205
0.066139
0.0510089
-0.0301905
0.0692803
-0.020567
-0.0339705
1.121
1.05854
1.20553
1.14643
1.11842
1.05993
1.20919
0.976251
0.979567
0.983812
0.981636
1.12126
1.14848
1.06106
1.21234
1.06116
1.20962
1.12219
0.876249
0.740995
0.898744
0.759863
0.874583
0.902426
0.739779
0.879753
0.913846
0.772074
0.744538
0.908351
0.882657
0.741692
1.3101
1.35788
1.24978
1.29699
1.25626
1.36452
1.3015
1.22324
1.35192
1.2275
1.30247
1.35148
1.1108
1.12804
1.05694
1.20024
1.11567
1.05408
1.18082
0.985455
0.989388
1.17449
1.18447
1.09831
1.11453
1.04395
1.13985
1.09174
1.04713
1.14436
0.987574
0.990136
0.889068
0.757619
0.836319
0.928632
0.92527
0.754691
0.890703
0.887191
0.916633
0.820347
0.747353
0.921525
0.88389
0.751537
1.31112
1.35699
1.23248
1.22914
1.35271
1.31536
1.30932
1.22558
1.35063
1.228
1.3053
1.35408
1.15851
1.18298
1.24236
1.15205
1.24786
1.05544
1.05693
1.07265
1.06719
1.17891
1.14192
1.28356
1.14153
1.27743
0.974674
0.903502
1.07877
0.965757
1.02175
0.992155
0.886537
0.976013
1.01223
0.874752
0.958148
0.97012
1.01928
0.88347
1.47299
1.27779
1.36269
1.2933
1.37266
1.30059
1.4614
1.57593
1.35751
1.35498
1.58088
1.62253
1.79241
1.66492
1.73296
1.67447
1.60971
1.7445
1.48063
1.28512
1.38633
1.29823
1.38045
1.30774
1.47252
1.5647
1.32239
1.33711
1.55323
0.957185
0.850157
0.933184
0.999301
0.999465
0.857523
0.954957
0.962049
1.00962
0.940637
0.870805
1.00448
0.967176
0.864391
1.1909
1.16056
1.23792
1.16394
1.23491
1.08383
1.20026
1.14967
1.22384
1.16688
1.23477
1.07527
1.07992
1.44506
1.35714
1.27073
1.28846
1.2916
1.35393
1.45448
1.50501
1.6304
1.24846
1.2898
1.47214
1.58731
1.76408
1.65986
1.7234
1.64621
1.60058
1.7121
1.52908
1.30713
1.30216
1.54376
-0.0110888
0.00302965
-0.00111469
-0.0120883
0.00600646
-0.0002269
0.0624189
0.0586498
0.0832231
0.0730934
0.0820924
0.0636231
0.0568824
-0.00831833
0.00807639
0.00252112
0.0117201
0.00226114
-0.00850867
0.0604676
0.078497
0.0530852
0.0711074
0.058844
0.080057
0.0550886
-0.020633
0.0100625
-0.0021539
-0.015865
-0.112551
-0.107392
-0.104344
-0.0754008
-0.0574501
-0.0762489
-0.0546182
-0.103951
-0.0787205
-0.0307835
-0.0223719
-0.0260812
-0.0232445
-0.102914
-0.103435
-0.00450695
5.0646e-05
-0.000908983
-0.0105968
-0.0136454
0.00496366
0.0604416
0.0436543
0.0732531
0.0665243
0.0501532
0.0901317
0.0489371
0.0237269
-0.0441714
-0.0524679
0.0495814
0.0367503
-0.0560233
0.0571592
0.0572
0.0762455
0.0507577
0.0652507
0.057485
0.0755306
0.0492135
0.00212541
0.0150774
0.0202263
-0.00110079
-0.0163313
-0.0335951
0.027944
0.00221347
0.030964
-0.0472305
-0.0269194
-0.0839059
-0.0992822
-0.0665386
-0.0635432
-0.0701238
-0.0608572
-0.0995189
-0.0664726
-0.0916481
-0.0918738
0.00758645
0.0205294
0.0369726
-0.0463737
0.00143182
0.0149329
-0.00225157
-0.0195963
0.0191791
0.00252642
-0.0213393
1.18088
1.22097
1.22217
1.2168
1.18524
1.22228
1.21108
1.19242
1.21505
1.18884
1.00557
0.905213
1.10705
1.02001
1.00207
1.11522
0.908953
1.00922
1.12321
1.02358
0.92136
1.11763
1.01453
0.914681
1.48875
1.31903
1.42514
1.31361
1.41445
1.50431
1.2955
1.74324
1.87222
1.75523
1.93154
1.74876
1.76188
1.90011
1.65886
1.63452
1.47875
1.31308
1.39938
1.29688
1.40727
1.47304
1.29085
1.67694
1.69193
1.53181
1.43268
1.33438
1.34335
1.3559
1.51753
1.44147
1.72988
1.73847
1.7895
1.89548
1.75894
1.9633
1.76369
1.77733
1.97895
1.71987
1.70828
1.54308
1.34929
1.39832
1.45332
1.37779
1.44667
1.55475
1.21949
1.17477
1.22362
1.17002
1.22696
1.21607
1.16178
1.23291
1.16657
1.22869
1.02374
0.936012
1.0397
1.13612
1.13226
0.932255
1.02696
1.0217
1.12694
1.03815
0.925796
1.1311
1.01782
0.929561
1.08472
1.30202
1.08362
1.28107
1.0877
1.08057
1.10884
1.02516
1.22474
1.16378
1.23373
1.10709
1.02527
1.11065
1.25173
1.03028
1.17354
1.10964
1.24528
1.03338
1.77349
1.50464
1.58316
1.7334
1.5916
1.76449
1.7431
1.91725
1.78678
1.73649
2.06994
1.72505
1.91919
2.06379
1.98091
1.9984
1.78411
1.51749
1.60619
1.75925
1.59807
1.7511
1.79519
1.96148
1.94839
1.74568
1.57553
1.4601
1.71856
1.70751
1.56778
1.75367
1.91576
1.90978
1.92185
1.84747
1.74624
2.07936
1.75468
1.92085
2.08075
1.73822
1.44777
1.68578
1.55745
1.69591
1.56289
1.73271
1.92363
1.9294
1.10086
1.00248
1.15855
1.2589
1.26159
1.0052
1.09854
1.10281
1.25449
1.15828
1.01464
1.25894
1.10542
1.00845
1.37264
1.09319
1.09358
1.39146
1.0944
1.09623
-0.058846
-0.0528417
-0.0716318
-0.052553
-0.0635873
-0.0671342
-0.0464236
-0.0558669
-0.0178639
-0.0748511
0.000804644
-0.0770106
-0.0509064
-0.0105191
-0.0532788
-0.0430421
-0.0531643
-0.0300667
-0.0623599
-0.0377453
-0.0459679
-0.058494
-0.0835045
-0.0115149
0.00238564
-0.0617277
-0.0794397
-0.00991873
-0.162638
-0.112171
-0.186683
-0.0861846
-0.182905
-0.0856506
-0.164305
-0.13441
-0.135491
-0.145245
-0.125527
-0.158369
-0.109568
-0.168516
-0.0827095
-0.177166
-0.15164
-0.0839825
-0.133184
-0.114629
-0.12041
-0.131595
-0.152247
-0.0961764
-0.146726
-0.136413
-0.0896983
-0.140588
-0.0712652
-0.0827222
-0.0753363
-0.0583389
-0.0671998
-0.079169
-0.0641077
-0.071395
-0.0247278
-0.102835
-0.0121822
-0.0762504
-0.0970045
-0.0198432
-0.0742616
-0.0927476
-0.084411
-0.0773268
-0.0787954
-0.0816749
-0.0700757
-0.0685402
-0.0878579
-0.0140506
-0.0081386
-0.0648007
-0.0924148
-0.0172906
-0.170582
-0.190828
-0.111632
-0.0862281
-0.0858677
-0.196212
-0.166463
-0.135573
-0.125825
-0.117839
-0.145557
-0.135439
-0.117828
-0.119284
-0.133133
-0.176609
-0.102483
-0.105337
-0.214898
-0.0874454
-0.203065
-0.193251
-0.122303
-0.0692422
-0.124037
-0.131126
-0.0738005
-0.126993
-0.995339
-0.999218
-1.00525
-1.04087
-1.03867
-0.991173
-0.998789
-0.995107
1.21672
1.48946
1.26142
1.46324
1.71187
1.22882
1.71915
1.22522
1.10925
1.03167
1.22613
1.17071
1.11143
1.21706
1.03167
1.10906
1.19701
1.15468
1.03332
1.20409
1.10794
1.03276
1.82892
1.56725
1.63178
1.80241
1.62567
1.8318
1.79899
1.94814
1.74237
1.69524
2.06252
1.70663
1.93974
2.08263
2.05576
2.03582
1.82198
1.55931
1.61617
1.78594
1.62237
1.81297
1.79293
2.07356
2.0802
1.81165
1.63904
1.79527
1.58613
1.80291
1.82407
1.63512
2.00632
2.13646
2.14995
2.00853
1.89054
1.68863
1.68652
2.03103
1.66485
1.92386
1.99194
1.99873
2.21487
2.0337
2.15934
1.81652
1.60516
1.80902
1.63232
1.80612
1.63492
1.81392
1.4687
1.18628
1.14855
1.4578
1.10633
1.12403
1.11036
1.0373
1.1145
1.17212
1.17781
1.03701
1.10926
1.11009
1.18936
1.12717
1.03441
1.18602
1.10879
1.03645
1.60375
1.6613
1.98951
1.96139
1.60868
1.65445
1.92838
1.60863
1.94229
1.60783
1.16765
1.00495
1.46063
1.43392
1.17365
1.00877
1.16551
1.38368
1.02987
1.16401
1.41014
1.01889
1.89998
1.44618
2.22727
2.22637
1.85668
1.51698
1.88206
2.14475
1.68482
1.90085
2.12547
1.53111
1.93278
1.87129
2.20366
2.21401
1.94309
1.81876
1.92158
2.17084
1.71333
2.20465
1.90176
1.77346
1.14383
1.05448
1.26866
1.2951
1.04928
1.1434
1.14839
1.3575
1.03637
1.32117
1.15882
1.04194
1.69182
1.60429
2.00898
1.59784
2.03815
1.70456
1.60549
2.10974
1.60822
2.0766
-0.103677
-0.152694
-0.143763
-0.077728
-0.106031
-0.142039
-0.0749527
-0.102429
-0.15107
-0.139227
-0.0695453
-0.141127
-0.0724017
-0.100235
-0.148709
-0.136288
-0.121155
-0.143462
-0.127595
-0.148268
-0.14438
-0.161191
-0.183802
-0.141702
-0.16699
-0.142364
-0.16451
-0.181565
-0.15694
-0.187558
-0.146629
-0.163757
-0.144535
-0.161848
-0.1603
-0.155265
-0.139406
-0.15092
-0.174328
-0.13775
-0.172129
-0.153485
-0.215509
-0.163454
-0.16594
-0.218778
-0.250356
-0.211752
-0.144235
-0.162728
-0.144991
-0.218168
-0.261386
-0.218994
-0.108112
-0.15011
-0.143319
-0.0788678
-0.107131
-0.143669
-0.0806892
-0.108431
-0.117861
-0.133216
-0.0924828
-0.113854
-0.137928
-0.0787947
-0.137492
-0.115602
-0.116249
-0.141669
-0.138841
-0.111187
-0.141046
-0.145203
-0.165868
-0.160535
-0.126676
-0.168696
-0.1293
-0.142513
-0.147501
-0.135722
-0.163153
-0.172726
-0.170997
-0.132182
-0.150541
-0.135332
-0.113795
-0.135009
-0.10565
-0.137221
-0.108228
-0.132785
-0.216037
-0.163604
-0.161328
-0.207029
-0.243772
-0.209498
-0.21333
-0.155609
-0.157705
-0.21715
-0.245811
-0.213836
-1.01994
-1.03484
-1.04045
-1.04176
-1.05074
-1.05811
-1.09973
-1.06043
-1.0875
-1.12145
-1.07583
-1.0104
-1.03425
-1.03818
-1.11131
-1.06369
-1.06889
-1.19336
-1.25844
-1.19316
-1.18339
-1.1854
-1.18892
-1.26359
-1.19561
-1.1978
-0.986408
-0.948785
-0.959487
-0.974935
-0.958022
-0.978368
-0.980124
-1.03756
-1.02712
-1.13157
-1.09771
-1.13364
-1.03105
-1.01529
-1.03994
-1.01257
-1.15139
-1.03197
-1.01035
-1.03192
-1.07097
-1.15806
-1.01706
-0.975853
-0.952342
-0.958926
-0.973039
-0.957952
-0.975431
-0.975053
-1.03254
-1.16948
-1.01217
-1.03155
-1.01815
-1.18182
-1.18896
-1.18748
-1.19311
-1.21566
-1.18911
-1.19748
-1.24012
-1.19241
1.6504
2.22395
1.76972
2.23949
1.63888
1.76988
2.24162
1.64504
2.238
1.64139
1.14438
0.972855
1.45134
1.16663
1.4475
0.944951
1.14853
1.53551
0.94089
1.46917
1.17787
0.936976
1.74317
1.46363
2.1715
1.66221
1.83467
2.13843
1.37994
1.70234
2.05684
1.26005
1.55704
1.65979
2.10868
1.32809
1.57072
1.05724
1.53164
1.94914
1.98019
1.09503
1.54968
1.58629
2.03694
1.56867
1.17852
1.99922
1.6187
1.13062
1.85243
1.68983
2.18204
1.83051
1.83434
1.65232
2.11484
1.80691
1.20584
0.935416
1.68384
1.65977
0.936582
1.21313
1.20063
1.60645
0.944004
1.6455
1.19329
0.938465
2.07089
1.85789
2.01203
2.02652
2.06948
-1.09459
1.80237
0.00101638
-1.14773
1.79194
1.85828
2.03464
2.0655
2.03207
2.06758
1.73039
-0.0284004
-1.32766
-1.22121
1.77538
1.42461
1.32373
1.85374
1.83905
1.43779
1.31004
1.41494
1.82204
1.28886
1.40612
1.8314
1.29871
1.38458
1.25219
1.78695
1.79417
1.26195
1.37746
1.39045
1.80789
1.27721
1.8001
1.39753
1.26931
1.85952
2.08189
2.00569
2.08422
1.98405
-2.33222
-2.26022
-1.24623
1.53257
-0.20228
-1.28247
1.60055
1.85819
2.08746
1.93827
2.08707
1.96805
1.69979
-1.35476
-0.18367
-1.30342
1.63924
-0.29685
-0.250699
-0.289244
-0.379159
-0.37418
-0.370161
-0.372305
-0.243416
-0.270716
-0.278963
-0.237551
-0.195747
-0.207045
-0.212536
-0.20734
-0.215266
-0.235964
-0.268578
-0.275717
-0.28604
-0.258341
-0.291688
-0.267647
-0.272759
-0.237565
-0.198675
-0.206248
-0.219673
-0.205825
-0.238997
-0.216872
-0.270152
-0.297771
-0.256323
-0.270623
-0.296324
-0.272258
-0.269695
-0.285631
-0.307996
-0.314278
-0.236107
-0.343217
-0.254698
-0.34371
-0.239923
-0.293429
-0.325443
-0.320506
-0.335355
-0.254057
-0.244627
-0.340157
-0.242367
-0.232304
-0.207146
-0.184934
-0.210179
-0.206761
-0.204877
-0.234701
-0.267471
-0.2627
-0.256017
-0.306046
-0.266608
-0.302677
-0.266056
-0.268028
-0.299287
-0.254895
-0.269594
-0.267834
-0.300363
-0.269238
-0.231521
-0.182446
-0.202862
-0.208497
-0.204742
-0.204499
-0.232686
-0.264194
-0.301024
-0.29414
-0.250181
-0.31046
-0.244111
-0.316797
-0.248664
-0.257384
-0.280637
-0.287521
-0.329219
-0.247068
-0.245866
-0.322995
-0.247531
-1.02385
-1.07088
-1.09724
-1.17108
-1.17105
-1.07413
-1.01872
-1.17973
-1.17099
-1.15629
-1.13742
-1.10472
-1.14204
-1.14823
-1.12723
-0.998017
-0.928169
-0.931564
-0.987674
-0.934606
-1.0013
-0.98824
-1.03261
-1.02414
-1.12254
-1.09337
-1.02835
-1.12382
-1.02923
-1.0405
-1.11393
-1.03852
-1.08944
-1.05621
-1.12742
-1.03415
-1.05997
-1.01726
-1.07334
-1.13305
-1.13431
-1.02488
-1.05335
-0.98417
-0.906384
-0.919879
-0.979608
-0.904317
-0.993924
-0.971194
-1.05239
-1.10643
-1.07226
-1.03274
-1.10865
-1.05451
-1.02636
-1.17575
-1.17154
-1.17705
-1.18519
-1.20074
-1.18119
-1.15394
-1.13925
-1.18292
-1.16249
-1.02088
-1.0144
-1.00953
-0.995781
-1.00064
-1.02755
-1.00894
-1.02994
-1.04315
-1.02266
-1.04683
-1.02669
-1.02523
-1.04836
-1.01519
-0.990806
-0.992992
-1.00251
-0.994959
-1.00931
-1.00702
-1.01908
-0.970569
-0.962681
-1.02061
-0.968805
-0.870886
-0.919797
-0.89818
-0.931746
-0.966798
-0.897495
-0.979588
-0.910748
-1.01802
-0.951464
-1.02253
-0.972743
-0.921553
-1.027
-0.922624
-0.934916
-1.01196
-0.975805
-0.95882
-1.02263
-1.05051
-0.943142
-0.961111
-1.04092
-1.03898
-0.936023
-1.07923
-0.966713
-1.07607
-0.989497
-1.06962
-1.07751
-0.961485
-0.98902
-0.908624
-0.907696
-0.974553
-0.958758
-0.869112
-0.91406
-0.897964
-0.909051
-0.963175
-0.901788
-0.995089
-0.915702
-0.91141
-0.999888
-1.06866
-1.05964
-0.98612
-0.948955
-1.06482
-1.05612
-0.957856
-1.02202
-1.03995
-1.01859
-1.04503
-1.0227
-1.01742
-1.04616
-0.995284
-0.980612
-0.968469
-0.965155
-0.973997
-0.992069
-0.988787
-0.99854
-0.983549
-0.997117
-0.972559
-1.00203
-0.978676
-0.993185
1.97851
2.04471
1.63763
1.66169
1.5973
2.01319
2.03477
-2.88835
-1.92723
-1.90234
0.722335
0.994281
0.192729
-0.745101
-0.737595
0.977291
0.741225
1.95723
1.64792
1.54403
2.03091
1.57396
2.0364
1.92408
1.47049
1.34618
1.88476
1.45455
1.90651
1.36134
1.48199
1.97969
1.37572
1.93268
1.49343
1.37163
2.46563
1.79265
2.06432
1.72766
2.08143
2.1068
1.76772
-3.79497
-1.93788
-2.13252
1.31607
-1.15855
1.49929
0.0405232
-0.867235
1.12413
1.8265
2.11794
1.9244
2.10851
1.81582
0.805979
1.01085
-0.779611
0.182866
-0.847309
0.681406
1.06545
1.51959
1.40142
2.10358
2.07382
1.39698
1.52725
1.51322
2.02173
1.38757
2.05406
1.5046
1.39296
1.21161
1.58003
1.28219
1.03418
1.01383
1.57568
1.21449
1.36164
1.97719
1.95766
1.39498
-0.280319
-0.813163
-1.48995
-0.264532
-0.260866
-0.293562
-1.50003
1.34177
1.96688
1.94381
1.33827
1.22122
1.29046
1.05349
1.6136
1.02028
1.58832
1.25209
1.28933
2.04016
2.05795
1.24316
1.31949
2.06354
1.3567
2.06921
-0.271462
-0.278076
-0.278552
-0.30093
-0.290996
-0.289446
-0.28135
-0.29883
-0.285378
-0.272753
-0.280405
-0.278774
-0.595977
-0.32492
-0.493459
-0.30936
-0.491853
-0.307411
-0.587382
-0.342824
-0.222473
-0.268501
-0.196527
-0.341584
-0.2658
-0.220272
-0.608052
-0.324735
-0.523209
-0.313604
-0.505099
-0.620692
-0.309618
-0.347453
-0.264666
-0.196055
-0.216621
-0.264971
-0.346028
-0.222556
-0.276874
-0.286971
-0.291497
-0.283654
-0.28782
-0.287371
-0.274002
-0.694261
-0.51982
-0.301962
-0.326999
-0.35782
-0.568688
-0.351527
-0.209776
-0.264208
-0.19412
-0.263492
-0.352558
-0.211447
-0.666177
-0.292812
-0.365076
-0.360528
-0.651321
-0.356087
-0.258313
-0.196032
-0.211436
-0.26515
-0.329688
-0.215231
-0.830494
-0.838539
-0.895705
-0.882129
-0.890732
-0.906348
-0.919937
-0.920286
-0.896143
-0.875481
-0.978678
-0.998446
-0.970588
-1.05338
-1.00283
-0.94929
-1.04751
-0.890166
-0.903718
-0.901022
-0.931765
-0.906019
-0.942693
-0.906204
-0.827411
-0.895911
-0.899401
-0.824122
-0.974138
-0.951766
-0.976427
-0.934243
-1.01842
-0.976499
-0.987822
-1.01551
-0.967323
-0.840711
-0.964502
-0.896704
-0.966437
-0.961612
-0.895897
-0.96148
-0.907544
-1.00341
-0.912865
-0.965579
-0.953341
-0.90042
-1.00717
-1.0011
-0.994307
-0.996355
-0.96939
-0.940455
-0.915625
-0.96364
-0.94413
-0.912469
-0.910244
-0.959455
-0.950479
-0.909494
-1.00749
-0.991844
-1.01944
-1.00282
-0.95745
-0.914632
-0.919923
-0.957654
-0.959889
-0.917844
-0.954374
-0.954476
-0.833523
-0.966419
-0.897863
-0.959906
-0.959773
-0.893358
-0.983256
-1.00707
-1.01264
-0.982029
-0.989538
-1.01077
-1.01394
-0.996129
-0.965481
-0.942976
-0.913978
-0.916548
-0.961334
-0.962462
-0.918945
-0.999257
-1.00674
-1.00878
-0.998966
-1.02815
-1.033
-0.986083
-1.05493
-1.01915
-0.998982
-1.05657
-0.984471
-0.97455
-0.956102
-0.92683
-0.987694
-0.938865
-0.960408
-0.983255
-0.936359
-0.943112
-0.924417
-0.965311
-0.942425
-0.95615
-0.801558
-0.862504
-0.860213
-0.804637
-0.826521
-0.897002
-0.835687
-0.89355
-0.898315
-0.880178
-0.827188
-0.909275
-0.890172
-0.832824
-0.916022
-0.803743
-0.863225
-0.861612
-0.810032
-0.819113
-0.884349
-0.815322
-0.888797
-0.971632
-0.931655
-0.972887
-0.93421
-0.900298
-0.7988
-0.746498
-0.80392
-0.908126
-0.919907
-0.872734
-0.858108
-0.933258
-0.967429
-0.94324
-0.933733
-0.974742
-0.974983
-0.934251
-0.934815
-0.974703
-0.94846
-0.921202
-0.912445
-0.950397
-0.943854
-0.873924
-0.897687
-0.9378
-0.976017
-0.937923
-0.93766
-0.974288
-0.810242
-0.860752
-0.802193
-0.866717
-0.813353
-0.908506
-0.824887
-0.89043
-0.815695
-0.88316
-0.869557
-0.8299
-0.807804
-0.873145
-0.802273
-0.882294
0.963757
0.911363
2.02221
1.04204
1.98308
0.896069
0.94808
1.91838
0.950735
0.93025
1.96077
0.93369
0.476195
0.428751
-1.23454
-1.00832
-1.11401
-1.22757
-1.28146
-1.15545
-1.13157
1.6861
-0.247445
1.52148
-1.00315
0.622462
1.13758
1.95468
2.04274
0.621407
0.627033
2.10928
1.13262
2.04963
0.62063
-0.830419
-0.213777
1.32196
1.49288
-0.97241
-1.23264
-1.25867
-1.30217
0.491107
0.548638
0.696079
2.41363
1.12148
2.35738
0.637245
-1.23459
-1.30742
-1.32571
-1.17841
-0.36841
-1.22519
-1.17189
-0.3972
1.84161
-1.25678
2.92524
0.628261
1.12502
2.1688
2.35663
0.637627
-0.410426
-0.310329
-0.591115
-0.340475
-0.436638
-0.318859
-0.568517
-0.304054
-0.287924
-0.301861
-0.374021
-0.352101
-0.32665
-0.373013
-0.346853
-0.492707
-0.339226
-0.336569
-0.575502
-0.338446
-0.586841
-0.476959
-0.515668
-0.413723
-0.742365
-0.370522
-0.751808
-0.372825
-0.519366
-0.3633
-0.291181
-0.312883
-0.243067
-0.362714
-0.311498
-0.291226
-0.511376
-0.418441
-0.76948
-0.377057
-0.760327
-0.507498
-0.375008
-0.364233
-0.308377
-0.241666
-0.291554
-0.309931
-0.36458
-0.291691
-0.526142
-0.733281
-0.394219
-0.367809
-0.364103
-0.721938
-0.52313
-0.366315
-0.290703
-0.30154
-0.236483
-0.303246
-0.366396
-0.291361
-0.532756
-0.391328
-0.360019
-0.712499
-0.36251
-0.72205
-0.536442
-0.365066
-0.306681
-0.237676
-0.291584
-0.304531
-0.365079
-0.291192
0.204833
0.276602
0.272219
0.434352
0.559158
0.568989
0.434554
0.145843
0.281341
0.286281
0.434772
0.547406
0.536332
0.435305
-0.846918
-0.89162
-0.88203
-0.846156
-0.823237
-0.898737
-0.834244
-0.895313
-0.846949
-0.871312
-0.876757
-0.851521
-0.81946
-0.894172
-0.815979
-0.895289
-0.930419
-0.924889
-0.926421
-0.933274
-0.888164
-0.784531
-0.774786
-0.780757
-0.899765
-0.8296
-0.814615
-0.789255
-0.78232
-0.824825
-0.777541
-0.818676
-0.956226
-0.942285
-0.967993
-0.941235
-0.849723
-0.908243
-0.874544
-0.912348
-0.856429
-0.804423
-0.784007
-0.780047
-0.795784
-0.785737
-0.798291
-0.801521
-0.801691
-0.808293
-0.785351
-0.786666
-0.789723
-0.811049
-0.811064
-0.840671
-0.858926
-0.82003
-0.866377
-0.83774
-0.831653
-0.839523
-0.895223
-0.843493
-0.894868
-0.821828
-0.913839
-0.825468
-0.908075
-0.837877
-0.88747
-0.833756
-0.893617
-0.8148
-0.893823
-0.813636
-0.898094
-0.793813
-0.801756
-0.790158
-0.780476
-0.792759
-0.779025
-0.791956
-0.785666
-0.77044
-0.725368
-0.715713
-0.738985
-0.776969
-0.785118
-0.786501
-0.801961
-0.785784
-0.768987
-0.788157
-0.777141
-0.781604
-0.798662
-0.750376
-0.722402
-0.808973
-0.745269
-0.798719
-0.806389
-0.783898
-0.87787
-0.822667
-0.785802
-0.874701
-0.787927
-0.782316
-0.769164
-0.737659
-0.80623
-0.861018
-0.85897
-0.742921
-0.764885
-0.767854
-0.858074
-0.804219
-0.747465
-0.857914
-0.74279
-0.771732
-0.785839
-0.822414
-0.87079
-0.779524
-0.8726
-0.784625
-0.781312
-0.791231
-0.881336
-0.826707
-0.785441
-0.788314
-0.882497
-0.788074
-0.774796
-0.753449
-0.803177
-0.857478
-0.752395
-0.858287
-0.775244
-0.775191
-0.858653
-0.802543
-0.748681
-0.751962
-0.857355
-0.772252
-0.790138
-0.828076
-0.784821
-0.887002
-0.785799
-0.886006
-0.79029
-0.792346
-0.801144
-0.791396
-0.781652
-0.794276
-0.788543
-0.784405
-0.807273
-0.815798
-0.766311
-0.749939
-0.763689
-0.799737
-0.824607
-0.795397
-0.801498
-0.785455
-0.785576
-0.791306
-0.785326
-0.788613
-0.803209
-0.755065
-0.816573
-0.745935
-0.803484
-0.761314
-0.819415
-1.17104
-0.928592
-0.86211
0.372554
0.340623
-1.16269
-0.689618
-0.843445
-0.424952
-0.0815258
0.927544
0.918604
-0.472872
0.623894
1.90456
1.15369
1.80168
0.62753
-0.582086
-0.115964
1.05334
0.93031
-0.524296
0.662653
1.7168
1.15193
1.78268
0.632887
-0.777659
-0.560986
-0.568893
0.396003
0.473291
-0.838935
-0.677975
-0.604746
-0.386682
0.00615425
0.43374
-0.312568
0.450826
0.820506
1.40978
1.17021
1.49059
0.741231
-0.261708
0.0249759
0.420751
-0.276367
0.455426
-1.14567
0.674499
1.60595
1.17739
1.50697
0.712254
0.160813
0.672411
0.696052
-1.72345
-0.750865
-1.99188
-1.42567
-0.411929
-0.448484
-1.25999
-0.785464
-1.49512
-0.500495
-1.66115
-0.47855
0.969639
1.09259
1.12931
1.16843
0.960966
0.947123
1.2477
1.09512
1.17966
0.957252
-0.802279
-1.91149
-0.553712
-0.584527
0.661013
0.668829
-0.799597
-1.89316
-0.543907
-0.571822
-1.82406
0.832956
1.39711
1.14176
1.3446
0.871168
0.94174
1.27644
1.12692
1.33576
0.904602
-0.715088
-0.462158
-0.850972
-0.497746
-0.723966
-0.456427
-0.843999
-0.562369
-0.496727
-0.383911
-0.401545
-0.478964
-0.404878
-0.562501
-0.571401
-0.417139
-0.503311
-0.394242
-0.578335
-0.496734
-0.412066
-0.70576
-0.492786
-0.445295
-0.830642
-0.450208
-0.836943
-0.699361
-0.440714
-0.478411
-0.633819
-0.401831
-0.626679
-0.403082
-0.444381
-0.334942
-0.28074
-0.335557
-0.27196
-0.332638
-0.334486
-0.283784
-0.170539
-0.170372
-0.436327
-0.479133
-0.61043
-0.404659
-0.61793
-0.433571
-0.403878
-0.339636
-0.331998
-0.270659
-0.292976
-0.333408
-0.343546
-0.288838
-0.452478
-0.641098
-0.47264
-0.400493
-0.399002
-0.647744
-0.448773
-0.35741
-0.313714
-0.327138
-0.265374
-0.328331
-0.361575
-0.308178
-0.172102
-0.173823
-0.456541
-0.47027
-0.396003
-0.661014
-0.397413
-0.654503
-0.459959
-0.352642
-0.330864
-0.266571
-0.298046
-0.329619
-0.348385
-0.302737
0.301182
0.253217
0.253921
0.429058
0.614564
0.612928
0.42888
0.342356
0.25344
0.255018
0.428704
0.614032
0.612025
0.42824
0.29784
0.271818
0.275546
0.436995
0.621499
0.621653
0.437286
0.392311
0.266625
0.263125
0.434043
0.620096
0.616832
0.436344
-0.766367
-0.771088
-0.80743
-0.800894
-0.801207
-0.766157
-0.770994
-0.77303
-0.773716
-0.798898
-0.790209
-0.796282
-0.770837
-0.7763
-0.76656
-0.807718
-0.803537
-0.762619
-0.802059
-0.765713
-0.764001
-0.772473
-0.792628
-0.788806
-0.780866
-0.794399
-0.776891
-0.775977
-0.777473
-0.863053
-0.827094
-0.76698
-0.870051
-0.769575
-0.775337
-0.759655
-0.736407
-0.814583
-0.865459
-0.865464
-0.730096
-0.765328
-0.762034
-0.864188
-0.817539
-0.726856
-0.867832
-0.733062
-0.755426
-0.776158
-0.819806
-0.871433
-0.780678
-0.86767
-0.782706
-0.773014
-0.762893
-0.862662
-0.766441
-0.822134
-0.761315
-0.768801
-0.861458
-0.743573
-0.701102
-0.813612
-0.873108
-0.707179
-0.870697
-0.739153
-0.746597
-0.867023
-0.722879
-0.816386
-0.71268
-0.753709
-0.868738
-0.761233
-0.822285
-0.757124
-0.861318
-0.760428
-0.861345
-0.757554
-0.780838
-0.810635
-0.771326
-0.79855
-0.771042
-0.780432
-0.801208
-0.783985
-0.811932
-0.776187
-0.764759
-0.798566
-0.774536
-0.791143
-0.777251
-0.801746
-0.786361
-0.792238
-0.788669
-0.777351
-0.789903
-0.787522
-0.788889
-0.781563
-0.782216
-0.776928
-0.789434
-0.793473
-0.692465
-0.753888
-0.676069
-0.773034
-0.679084
-0.782368
-0.686715
-0.717108
-0.726494
-0.807447
-0.820256
-0.810143
-0.71796
-0.727117
-0.6979
-0.757858
-0.686377
-0.792555
-0.682831
-0.790805
-0.700326
-0.711218
-0.800841
-0.816873
-0.71762
-0.803848
-0.705065
-0.722029
-0.770415
-0.728018
-0.774962
-0.761352
-0.83137
-0.836576
-0.823359
-0.755205
-0.826682
-0.725255
-0.75461
-0.780528
-0.668542
-0.712147
-0.708095
-0.663933
-0.708645
-0.67065
-0.668118
-0.64752
-0.624667
-0.662594
-0.686976
-0.688828
-0.629939
-0.642212
-0.655424
-0.706672
-0.669193
-0.645862
-0.699287
-0.638335
-0.662091
-0.662704
-0.702973
-0.695904
-0.666926
-0.697645
-0.667962
-0.658228
-0.7501
-0.777763
-0.872382
-0.753249
-0.779377
-0.792732
-0.670909
-0.710951
-0.704873
-0.661219
-0.663828
-0.712937
-0.669337
-0.668569
-0.660101
-0.690194
-0.723772
-0.65976
-0.720415
-0.665982
-0.668614
-0.708753
-0.680874
-0.650459
-0.656443
-0.71233
-0.664627
-0.669579
-0.708929
-0.67384
-0.724833
-0.667529
-0.716623
-0.669754
-0.675572
-0.699699
-0.673428
-0.751609
-0.683772
-0.672593
-0.713126
-0.689267
-0.696887
-0.728992
-0.805023
-0.766104
-0.684907
-0.70043
-0.673407
-0.70204
-0.678172
-0.699435
-0.675087
-0.705591
-0.675541
-0.692637
-0.786248
-0.712176
-0.813171
-0.6993
-0.773804
-0.70571
-1.71461
-0.593081
-1.74028
-1.11973
-0.380824
-1.1324
-0.269148
0.134367
0.883305
0.835311
-0.569257
-1.65768
-1.73258
-1.08981
-0.214806
-0.241073
-0.927077
1.58939
0.966928
1.31308
1.05866
1.24377
0.997884
1.62232
1.27627
1.19147
1.04708
1.20261
1.36897
1.01213
-1.54077
-0.508109
-1.61752
-0.446426
-0.162315
-0.175701
-0.403174
0.108573
0.699479
0.91048
0.968833
-0.519097
-1.63197
-1.65015
-0.515313
-0.197992
-0.183063
-0.840873
1.01949
1.29355
1.01438
1.0163
1.04416
0.97872
1.28413
1.02957
1.26366
1.14073
1.02099
1.35572
1.07965
1.27167
0.589824
0.415262
1.13613
0.308899
1.18674
-0.884655
-0.336758
-1.02887
-0.00736765
-0.0848377
-0.111168
0.0346571
-1.08374
-0.328438
-1.05945
-0.0669697
-0.101085
0.0829238
-0.101281
1.06962
1.20434
0.937478
0.820295
0.845268
1.21411
1.03008
1.08214
1.2275
0.884223
0.946192
0.866542
0.778909
1.21831
-1.5029
-0.43044
-1.40725
-0.205475
-0.148921
-0.386268
-0.138732
0.212627
0.533506
1.08978
0.199047
1.04465
-0.397317
-1.15266
-1.36449
-0.0846504
-0.119895
-0.130899
0.00151934
0.81899
1.3066
0.990093
1.01392
0.969858
0.952556
1.31044
0.799316
1.28723
0.901234
1.00754
0.717003
0.921734
1.3171
-0.897545
-0.597426
-0.650734
-0.558887
-0.897328
-0.595729
-0.663147
-0.794352
-0.666166
-0.526842
-0.555955
-0.672159
-0.561113
-0.78616
-0.800463
-0.568699
-0.681953
-0.530431
-0.80577
-0.677081
-0.564834
-0.89578
-0.559293
-0.589145
-0.688028
-0.593331
-0.676652
-0.890716
-0.469999
-0.503503
-0.456835
-0.450677
-0.473592
-0.453472
-0.429055
-0.527391
-0.530539
-0.323291
-0.256531
-0.392103
-0.323625
-0.31798
-0.393398
-0.25671
-0.410555
-0.38207
-0.476919
-0.366946
-0.469466
-0.502565
-0.490775
-0.451112
-0.480002
-0.472647
-0.451674
-0.531962
-0.352232
-0.398903
-0.320785
-0.259391
-0.39495
-0.382252
-0.253138
-0.406264
-0.447265
-0.499278
-0.448277
-0.445291
-0.438995
-0.414032
-0.390435
-0.269269
-0.380282
-0.321503
-0.386744
-0.388963
-0.268095
-0.477079
-0.38296
-0.47767
-0.381397
-0.403086
-0.498359
-0.436388
-0.446395
-0.440938
-0.441577
-0.394532
-0.385156
-0.397547
-0.319557
-0.261998
-0.393885
-0.385578
-0.261543
0.261007
0.28246
0.282131
0.428541
0.628527
0.615857
0.431681
0.253427
0.258489
0.261549
0.403983
0.653496
0.664299
0.403929
0.219405
0.278424
0.283137
0.394165
0.682788
0.667795
0.39556
0.25423
0.271249
0.264184
0.395306
0.682973
0.67998
0.39642
-0.659182
-0.64603
-0.684354
-0.709104
-0.704711
-0.646605
-0.657878
-0.674795
-0.70604
-0.705699
-0.744468
-0.71409
-0.686095
-0.690763
-0.655821
-0.669846
-0.684637
-0.648874
-0.688969
-0.642506
-0.664837
-0.677615
-0.732579
-0.757342
-0.683812
-0.7303
-0.67473
-0.691602
-0.633337
-0.673417
-0.686455
-0.637578
-0.675793
-0.629139
-0.641973
-0.628257
-0.616883
-0.654111
-0.678187
-0.677264
-0.611995
-0.633721
-0.620244
-0.665369
-0.645636
-0.600293
-0.667841
-0.604476
-0.61613
-0.642417
-0.696666
-0.68642
-0.658322
-0.685724
-0.64874
-0.651811
-0.731186
-0.715224
-0.726895
-0.735635
-0.761384
-0.765463
-0.779449
-0.738361
-0.773057
-0.712317
-0.721393
-0.721799
-0.723713
-0.736673
-0.738909
-0.826924
-0.855534
-0.790699
-0.733157
-0.761113
-0.753571
-0.765773
-0.812679
-0.770167
-0.717508
-0.733849
-0.731101
-0.76586
-0.801449
-0.759676
-0.717111
-0.738169
-0.733787
-0.761231
-0.799776
-0.755267
-0.62075
-0.663047
-0.631528
-0.669726
-0.631422
-0.622593
-0.659701
-0.595523
-0.557226
-0.624069
-0.636655
-0.565272
-0.639548
-0.593367
-0.605144
-0.655029
-0.592256
-0.630664
-0.584066
-0.609161
-0.65158
-0.6138
-0.656198
-0.630673
-0.645484
-0.62645
-0.646975
-0.614959
-0.666743
-0.702002
-0.652591
-0.720801
-0.664053
-0.657329
-0.720073
-0.679567
-0.690112
-0.722221
-0.757474
-0.679575
-0.72384
-0.685553
-0.673376
-0.710303
-0.672246
-0.705768
-0.673215
-0.667508
-0.720545
-0.677123
-0.740615
-0.683719
-0.751216
-0.678812
-0.734237
-0.680753
-0.612983
-0.661563
-0.58563
-0.599642
-0.57558
-0.631279
-0.649761
-0.55937
-0.529233
-0.543108
-0.561717
-0.519954
-0.550977
-0.590513
-0.589287
-0.562946
-0.58933
-0.631892
-0.565829
-0.577599
-0.638376
-0.673378
-0.705723
-0.681837
-0.69168
-0.683391
-0.6798
-0.668943
-0.689513
-0.674345
-0.717547
-0.697784
-0.693276
-0.747435
-0.813008
-0.816336
-0.857179
-0.902968
-0.852372
-0.750522
-0.823911
-0.824475
-0.840311
-0.900662
-0.843579
-0.745065
-0.80737
-0.79721
-0.79781
-0.893864
-0.803769
-0.713613
-0.740673
-0.749529
-0.830121
-0.901795
-0.821289
-0.561986
-0.586469
-0.525854
-0.542288
-0.538145
-0.54281
-0.609042
-0.565886
-0.551721
-0.625576
-0.556397
-0.57149
-0.544599
-0.619086
-0.821926
-0.247913
-0.522273
0.0817354
-0.0661379
0.0628406
-0.0515967
0.519416
-1.03944
-0.95439
0.477615
1.12775
0.559739
1.13245
-0.218546
-0.380352
-0.496576
0.101352
-0.0137019
-0.035452
0.138934
0.97371
1.20971
0.805528
0.923621
0.78279
1.00673
1.20978
0.947175
1.18561
0.74814
0.916505
0.767466
0.919277
1.20798
-0.0511246
-0.120313
-0.0784004
0.180259
0.0371142
0.0273345
0.194966
0.880861
-1.03512
-1.00071
0.541318
1.12661
0.549254
1.1375
-0.134242
-0.354675
-0.108533
0.169109
0.00244906
0.0188798
0.163602
0.843839
1.1023
0.684153
0.851567
0.697442
0.82675
1.11335
0.861057
1.14337
0.730478
0.862619
0.890986
0.709744
1.12356
1.31365
-0.654071
-0.381569
0.828709
1.33519
0.847355
1.31958
-0.0260474
-0.0578097
0.0499406
0.285646
0.0461476
0.212599
0.0710286
1.2256
-0.801729
-1.23166
0.906954
1.3607
0.870852
1.14734
-0.807276
-0.620633
-0.67684
-0.575831
-0.805769
-0.617742
-0.676558
-0.921943
-0.778907
-0.606857
-0.624108
-0.793843
-0.628956
-0.909316
-0.932421
-0.635798
-0.822667
-0.609385
-0.943019
-0.807956
-0.631584
-0.808978
-0.57536
-0.612526
-0.674163
-0.616441
-0.677111
-0.80784
-0.425899
-0.533365
-0.617172
-0.477204
-0.616422
-0.477629
-0.426816
-0.540792
-0.677586
-0.676693
-0.540591
-0.338816
-0.290053
-0.436931
-0.361828
-0.338596
-0.43653
-0.288542
-0.475723
-0.458211
-0.476111
-0.461956
-0.425236
-0.533997
-0.61552
-0.478268
-0.616026
-0.424741
-0.477718
-0.539346
-0.672127
-0.673854
-0.538816
-0.339361
-0.436697
-0.361774
-0.286703
-0.436924
-0.340346
-0.286968
-0.430193
-0.617711
-0.53075
-0.476846
-0.476509
-0.618776
-0.427989
-0.348431
-0.287208
-0.430879
-0.363253
-0.437903
-0.345166
-0.291576
-0.533715
-0.652762
-0.659492
-0.528939
-0.475972
-0.454973
-0.476008
-0.452985
-0.53552
-0.669122
-0.664797
-0.537409
-0.43436
-0.531558
-0.473501
-0.62242
-0.477601
-0.622418
-0.434419
-0.345141
-0.436803
-0.363051
-0.287073
-0.437247
-0.341902
-0.290248
0.275335
0.285371
0.28127
0.375106
0.626131
0.631193
0.37342
0.260395
0.289619
0.295238
0.37198
0.626735
0.622452
0.37191
0.464026
0.297101
0.299559
0.347091
0.614829
0.612369
0.34931
0.426246
0.303019
0.315274
0.369214
0.632126
0.601855
0.358041
-0.647486
-0.679221
-0.647184
-0.644111
-0.633123
-0.634061
-0.637237
-0.648102
-0.635934
-0.680328
-0.646545
-0.646483
-0.726052
-0.795512
-0.792876
-0.886977
-0.963694
-0.880215
-0.728693
-0.805217
-0.797823
-0.853629
-0.950632
-0.861098
-0.732319
-0.794698
-0.795034
-0.836658
-0.955766
-0.840233
-0.7334
-0.782116
-0.78933
-0.84695
-0.956874
-0.844688
-0.591059
-0.488402
-0.579021
-0.518325
-0.572997
-0.501767
-0.57898
-0.591465
-0.568414
-0.471933
-0.502802
-0.565913
-0.491844
-0.59839
-0.589351
-0.479358
-0.557873
-0.471276
-0.577245
-0.562265
-0.486799
-0.602629
-0.557471
-0.559705
-0.519201
-0.742752
-0.644306
-0.491217
-0.615725
-0.619912
-0.559205
-0.922644
-1.05117
-0.536617
-0.726996
-0.787186
-0.648293
-0.696143
-0.480544
-0.560272
-0.454482
-0.590349
-0.626044
-0.532048
-0.717171
-0.757553
-0.686481
-0.655387
-0.57661
-0.627021
-0.647485
-0.786766
-0.892086
-0.779112
-0.599658
-0.681659
-0.668956
-0.738805
-0.860463
-0.756465
1.70222
0.166482
0.00893695
0.73986
1.27591
0.719136
1.28604
1.4479
0.592108
0.605296
0.667559
1.23352
0.678616
1.2012
1.43803
0.5986
0.565984
0.584958
1.09728
0.606295
1.06747
1.4593
0.591351
0.594967
0.625788
1.07167
0.613676
1.08787
-0.796275
-0.613041
-0.570729
-0.574035
-0.788122
-0.612592
-0.575224
-0.919314
-1.00974
-0.674819
-0.646138
-1.00851
-0.645781
-0.924683
-0.734338
-0.632214
-0.642275
-0.741213
-0.910767
-0.647943
-1.01142
-0.676816
-0.901658
-1.00921
-0.646817
-0.733074
-0.665808
-0.741109
-0.654492
-0.80197
-0.573442
-0.613601
-0.58776
-0.61212
-0.578855
-0.804149
-0.439165
-0.545662
-0.485653
-0.484908
-0.482316
-0.481631
-0.441713
-0.66523
-0.666161
-0.672269
-0.659724
-0.741245
-0.848014
-0.730365
-0.863624
-0.440368
-0.546339
-0.48386
-0.483103
-0.442727
-0.482776
-0.481521
-0.656132
-0.644902
-0.651192
-0.649175
-0.435683
-0.482039
-0.546827
-0.48595
-0.484475
-0.483554
-0.436173
-0.621949
-0.610409
-0.618185
-0.614327
-0.704507
-0.829337
-0.715727
-0.813388
-0.629142
-0.633588
-0.625891
-0.636722
-0.433931
-0.545292
-0.481343
-0.483367
-0.482691
-0.483751
-0.430178
0.488288
0.308515
0.305982
0.341736
0.620631
0.615344
0.342206
0.545651
0.308014
0.309619
0.340215
0.616661
0.615123
0.340901
0.537634
0.270949
0.25291
0.281312
0.564339
0.549011
0.299644
0.526343
0.284218
0.293024
0.317183
0.565
0.572616
0.308333
1.70931
1.326
1.45623
1.62368
1.84943
1.867
1.9611
1.8738
1.8548
1.76967
1.64639
1.55783
1.82738
1.81582
1.80408
1.96088
1.76685
1.83364
0.448406
0.992755
0.692481
0.86309
-0.459897
-0.343332
-2.20083
-1.95395
-2.13509
-0.296312
-0.59142
0.26464
0.754449
-0.067164
0.830979
-0.367559
-2.04992
-0.490082
-2.06109
-0.456405
-0.121903
0.806682
1.01848
1.1087
0.719971
0.613593
-0.0476996
-0.344442
0.721233
0.40532
-0.580434
-0.416705
0.0425379
0.925875
1.34626
1.22029
1.00781
1.46265
1.24745
1.57257
1.11574
1.61068
1.66406
1.92467
1.53364
1.70799
1.37902
0.99522
1.26945
1.06829
1.66584
1.78342
1.9353
1.73645
1.7411
-3.58758
0.98365
-2.83695
0.840912
-0.548708
-0.507514
-1.33899
-1.92357
-1.68933
-0.443298
-0.481166
-0.451717
-0.45722
1.1374
0.862994
1.06929
0.563585
0.618652
0.639165
0.561385
-1.82431
-2.91878
-0.655331
-0.63663
-0.768227
-0.591943
-3.73045
1.05039
1.21497
-0.0310804
-0.1202
-1.68478
-2.76121
-2.73022
-0.454769
-0.530663
-0.546562
-0.460757
0.823044
0.885919
0.974974
0.525074
0.490952
0.533178
0.449123
-0.675866
-0.65227
0.00734636
-0.693011
-0.00317694
-0.224787
-0.213225
-0.106057
-0.08383
-0.0853796
-0.0848411
-0.106176
-0.0809245
-0.0785907
-0.0686646
-0.0818191
-0.0614106
-0.0304581
-0.0580668
-0.0317124
-0.0334378
-0.0696597
-0.0716044
-0.0813787
-0.110914
-0.0828159
-0.0875181
-0.18128
-0.193082
-0.17736
-0.146873
-0.139824
-0.139417
-0.180483
-0.165146
-0.172479
-0.14397
-0.145212
-0.14111
-0.144929
-0.125421
-0.131166
-0.107512
-0.096991
-0.118995
-0.12686
-0.105308
-0.129908
-0.102915
-0.102196
-0.134305
-0.109256
-0.133492
-0.108601
-0.129233
-0.165273
-0.160365
-0.159087
-0.140627
-0.144972
-0.144326
-0.147211
-0.169166
-0.167324
-0.141978
-0.142025
-0.146628
-0.13221
-0.130253
-0.113596
-0.128746
-0.129799
-0.107604
-0.124838
-0.10936
-0.106003
-0.127145
-0.125514
-0.073218
-0.0964606
-0.0772102
-0.0957918
-0.0804761
-0.0834425
-0.0987585
-0.0814654
-0.078209
-0.0803057
-0.0697049
-0.0894526
-0.0808637
-0.0698762
-0.0950834
-0.0937518
-0.071281
-0.0966515
-0.0723212
-0.0795526
-0.0721726
-0.0697759
-0.0933553
-0.0969545
-0.0740834
-0.0918145
-0.0692768
-0.0668365
-0.0998547
-0.0839085
-0.0955312
-0.0901447
-0.0759696
-0.0623372
-0.0863896
-0.0626595
-0.0607052
-0.0830649
-0.0844108
-0.0598098
-0.0136608
-0.0369099
-0.0296735
-0.0331247
-0.0127202
-0.0092553
-0.0337312
-0.0842392
-0.0700921
-0.0673028
-0.0634363
-0.0843118
-0.0850403
-0.0629727
-0.141543
-0.161489
-0.161275
-0.147134
-0.145768
-0.129816
-0.106097
-0.139045
-0.106374
-0.127879
-0.126109
-0.108238
-0.124242
-0.111227
-0.0669237
-0.0665271
-0.0605574
-0.0975874
-0.0794863
-0.0949289
-0.0700812
-0.0668465
-0.0604975
-0.087472
-0.0643304
-0.0937786
-0.0692473
-0.0924411
-0.088645
-0.0706444
-0.0745597
-0.0914946
-0.0661797
-0.0654585
-0.0826005
-0.0620165
-0.0528772
-0.0789812
-0.079705
-0.0549987
-0.11959
-0.126019
-0.110934
-0.135259
-0.108197
-0.107619
-0.109405
-0.0845836
-0.100574
-0.092593
-0.0797915
-0.0923285
-0.100323
-0.0954148
-0.128213
-0.134357
-0.136648
-0.107924
-0.105391
-0.108279
-0.104566
-0.0885997
-0.0962477
-0.054802
-0.064705
-0.076006
-0.117126
-0.105632
-0.0972511
-0.101476
-0.0947835
-0.123177
-0.111789
-0.0958788
-0.0990163
-0.102407
-0.0925477
-0.132236
-0.123557
-0.111737
-0.102356
-0.103015
-0.104351
-0.102449
-0.0889307
-0.0802106
-0.0324056
-0.0380287
-0.0464823
-0.0888593
-0.0918571
-0.0952099
-0.0909339
-0.0544603
-0.0316709
-0.0812404
-0.0507558
-0.0893497
-0.0822511
-0.0825771
-0.0546409
-0.0622476
-0.0833256
-0.0622592
-0.0866193
-0.101231
-0.0623503
-0.0919555
-0.0888867
-0.0622813
-0.0976009
-0.0569903
-0.1299
-0.115792
-0.121143
-0.105307
-0.0996701
-0.104814
-0.100712
-0.0886764
-0.0660348
-0.0967652
-0.05684
-0.0979959
-0.056873
-0.0854626
-0.112143
-0.111429
-0.108161
-0.0915496
-0.0958829
-0.0961102
-0.0951532
-0.0672469
-0.0720022
-0.0555957
-0.017355
-0.0758327
-0.0269855
-0.061985
-0.0706041
-0.0901684
-0.0469353
-0.0400216
-0.0759046
-0.0766701
-0.0396727
-0.123538
-0.0781345
-0.100738
-0.10044
-0.100669
-0.0798237
-0.0827635
-0.1193
-0.0799375
-0.100559
-0.10156
-0.0820584
-0.0821482
-0.0738504
-0.0398964
-0.0324231
-0.0715846
-0.0837731
-0.0357536
-0.0442559
-0.0132834
0.00954472
0.0086676
-0.0415649
-0.0650822
-0.00920051
-0.0164242
0.00615303
-0.0563918
-0.0776577
-0.0612797
-0.0278694
-0.0226875
-0.065977
-0.0308454
-0.0564287
-0.128046
-0.0951237
-0.0984819
-0.0940876
-0.0968052
-0.106326
-0.0811316
-0.0827611
-0.129624
-0.0868776
-0.0929541
-0.0922268
-0.0887694
-0.0729789
-0.0724748
-0.0457279
-0.048473
-0.073503
-0.0847455
-0.0577603
-0.0766202
-0.0764808
-0.0359192
-0.0116415
-0.0927992
-0.0376935
-0.0747312
-0.076863
-0.0806596
-0.0510906
-0.0677303
-0.084531
-0.0767516
-0.0649313
-0.0748619
-0.067912
-0.0115047
-0.0120007
-0.0342104
-0.0741217
-0.121506
-0.0953468
-0.0889539
-0.0865057
-0.093817
-0.0948159
-0.0734879
-0.0605631
-0.0728671
-0.0665996
-0.115315
-0.0776
-0.0881331
-0.0984123
-0.100473
-0.101147
-0.0753828
-0.0661186
-0.0721824
-0.0708229
-0.103995
-0.101242
-0.102983
-0.0779518
-0.0798047
-0.0807644
-0.0739856
-0.0819439
-0.0930593
-0.0900173
-0.0737809
-0.0585281
-0.0742146
-0.0577909
-0.0824898
-0.114662
-0.0859303
-0.0696107
-0.0659749
-0.072964
-0.0588125
-0.115933
-0.0885543
-0.0745473
-0.0670916
-0.0707125
-0.0847108
-0.0516188
0.00600314
-0.0159294
-0.0446156
0.000730082
-0.0666796
-0.0496196
-0.00930721
0.0138367
-0.0503215
0.000571447
-0.0368811
-0.0953008
-0.0942004
-0.0912344
-0.061873
-0.0614895
-0.066833
-0.0608319
-0.0856712
-0.0951005
-0.0885959
-0.0519519
-0.0827648
-0.0550431
-0.0714305
-0.0650301
-0.0705964
-0.0622111
0.00741962
-0.0337224
-0.0554499
0.00622954
-0.0458462
-0.0607953
-0.0545792
-0.0352628
-0.0113193
-0.00147347
-0.045552
-0.0733017
-0.068727
-0.0628629
0.00727981
-0.0793583
-0.0587662
-0.01345
0.0248627
0.0112999
0.0181714
0.0244019
-0.025639
0.029317
0.0226506
-0.0803134
-0.0985564
-0.0801528
-0.0494774
-0.0624857
-0.0587224
-0.0561014
-0.0618031
-0.0657549
-0.0674995
-0.039933
-0.0306237
-0.0364222
-0.0416996
-0.096801
-0.0713374
-0.0785154
-0.0461671
-0.0768107
-0.0528562
-0.0245067
-0.0205535
0.00981937
0.021843
0.0201019
-0.00700009
0.018239
0.0244301
-0.034936
-0.0461682
0.015827
0.016362
-0.0344288
-0.0335765
0.0224965
-0.0679346
-0.0609952
0.0243144
-0.0301017
0.014302
0.00202177
-0.032357
-0.0516545
0.0270527
0.0221351
0.0179977
0.039844
-0.0379632
-0.0495875
-0.0464116
-0.0134767
0.0363588
0.00120995
-0.00588191
-0.0610756
-0.0539158
-0.0556217
-0.0199083
-0.0143155
-0.0270235
-0.00516378
-0.0376862
-0.0213844
0.0195441
0.0455538
-0.0164652
0.0114252
-0.0216432
-0.0193461
0.0201939
-0.0169942
0.0188699
-0.0223247
-0.0411539
-0.0800336
-0.059959
-0.00197818
0.0228565
0.00305979
0.0123059
-0.0743568
-0.0741731
-0.0037081
0.028724
-0.000981993
0.0235744
0.00667925
-0.0266957
0.0118861
0.0612581
0.024005
0.0283355
0.0604222
-0.0336435
0.0125477
0.0132019
0.0689413
0.0354311
0.0331651
0.0693044
-0.0379761
-0.0479007
-0.0157648
0.0507118
0.0210204
0.0322615
0.0253962
-0.0401016
0.00970797
0.00153015
0.060818
0.0366724
0.0313753
0.0705898
0.00670146
0.0213718
0.013071
0.0647756
0.0216913
0.0195249
0.0588243
0.0632651
0.0281323
0.0290492
0.0685899
0.0217361
0.0147785
0.0749405
0.0570999
0.0629364
0.0440745
0.048018
0.0583084
0.0526011
0.0507477
0.0209627
0.0613652
0.0297801
0.0426486
0.0240941
0.0359208
0.0425238
0.0784239
0.0978751
0.0725299
0.0503007
0.0603689
0.0531447
0.0570803
0.0564047
0.0883798
0.0637721
0.0422519
0.0341874
0.0402279
0.0408071
-0.288908
-0.280317
-0.291424
-0.305843
-0.293265
-0.295998
-0.276904
-0.284838
-0.291827
-0.286905
-0.280807
-0.291169
-0.280089
-0.288223
-0.323912
-0.338301
-0.322585
-0.349705
-0.327379
-0.320532
-0.347456
-0.326
-0.337998
-0.352993
-0.340557
-0.330569
-0.329986
-0.349906
-0.316086
-0.313724
-0.314332
-0.323569
-0.326233
-0.320609
-0.316613
-0.308581
-0.303865
-0.310281
-0.31221
-0.309407
-0.328334
-0.323458
-0.329994
-0.323303
-0.328639
-0.316353
-0.312587
-0.323413
-0.322235
-0.3309
-0.330388
-0.330275
-0.323404
-0.285825
-0.289862
-0.294899
-0.305465
-0.303663
-0.286886
-0.288943
-0.283035
-0.294311
-0.282324
-0.294426
-0.28104
-0.299417
-0.28495
-0.33571
-0.329849
-0.315524
-0.305405
-0.311787
-0.311116
-0.307543
-0.346542
-0.326872
-0.345021
-0.333219
-0.337608
-0.342596
-0.319865
-0.312805
-0.314795
-0.322176
-0.318002
-0.314447
-0.317998
-0.336444
-0.328061
-0.336507
-0.339398
-0.329713
-0.332066
-0.335688
-0.177572
-0.175165
-0.179532
-0.183289
-0.174295
-0.176912
-0.182072
-0.190684
-0.200369
-0.175712
-0.186499
-0.188393
-0.180231
-0.201156
-0.185709
-0.186513
-0.186375
-0.173237
-0.185978
-0.18737
-0.182798
-0.208474
-0.18561
-0.188877
-0.196751
-0.212353
-0.192391
-0.187711
-0.206276
-0.180793
-0.194727
-0.205722
-0.189721
-0.207445
-0.208527
-0.208984
-0.204411
-0.213332
-0.227994
-0.215889
-0.206837
-0.222663
-0.198374
-0.200131
-0.209919
-0.202261
-0.204357
-0.201579
-0.193946
-0.199345
-0.176308
-0.166034
-0.178846
-0.175665
-0.168756
-0.17754
-0.17454
-0.203707
-0.207665
-0.209726
-0.210869
-0.204302
-0.205399
-0.213689
-0.208782
-0.218584
-0.207616
-0.204024
-0.223846
-0.217409
-0.22537
-0.217174
-0.21116
-0.226834
-0.218455
-0.208586
-0.194549
-0.2025
-0.18921
-0.199586
-0.200584
-0.196815
-0.196388
-0.181183
-0.177864
-0.198393
-0.188926
-0.182194
-0.179721
-0.192914
-0.197575
-0.197252
-0.183705
-0.189177
-0.197816
-0.186279
-0.188764
-0.192888
-0.182428
-0.188872
-0.185513
-0.189153
-0.180426
-0.183116
-0.176602
-0.183211
-0.187539
-0.181403
-0.208218
-0.218218
-0.229708
-0.212431
-0.22339
-0.223512
-0.237649
-0.215477
-0.218566
-0.237588
-0.217909
-0.22538
-0.220859
-0.22827
-0.241098
-0.20857
-0.238787
-0.217763
-0.214558
-0.223623
-0.240701
-0.231727
-0.21925
-0.224926
-0.20457
-0.21532
-0.230319
-0.219625
-0.209751
-0.218151
-0.246071
-0.226053
-0.228612
-0.236853
-0.226283
-0.210629
-0.212913
-0.232378
-0.235725
-0.224372
-0.222425
-0.234933
-0.234493
-0.229916
-0.218969
-0.259664
-0.242214
-0.230573
-0.203779
-0.209066
-0.213027
-0.205762
-0.225423
-0.199491
-0.222269
-0.220363
-0.24448
-0.227132
-0.224205
-0.244383
-0.231485
-0.210009
-0.214495
-0.233654
-0.20869
-0.220351
-0.201587
-0.216509
-0.214698
-0.2214
-0.227265
-0.208883
-0.220583
-0.204443
-0.219661
-0.228961
-0.195244
-0.230008
-0.228188
-0.231717
-0.206238
-0.230645
-0.220458
-0.227302
-0.228833
-0.208554
-0.214454
-0.203597
-0.213464
-0.210804
-0.208847
-0.214123
-0.209737
-0.217708
-0.216178
-0.22856
-0.211021
-0.214822
-0.191495
-0.219591
-0.223489
-0.219849
-0.224443
-0.219437
-0.201804
-0.227738
-0.213461
-0.216005
-0.226738
-0.222348
-0.223503
-0.226595
-0.241768
-0.221668
-0.234107
-0.23957
-0.236138
-0.212464
-0.238842
-0.247437
-0.250547
-0.230294
-0.240635
-0.217543
-0.225089
-0.221345
-0.225949
-0.223715
-0.223037
-0.21936
-0.21709
-0.214288
-0.227762
-0.217704
-0.215156
-0.210671
-0.221177
-0.245215
-0.24525
-0.236267
-0.209531
-0.229259
-0.219321
-0.234981
-0.241471
-0.22304
-0.214828
-0.229612
-0.213085
-0.226961
-0.21783
-0.205822
-0.215703
-0.219742
-0.216065
-0.215648
-0.212127
-0.210981
-0.224292
-0.245516
-0.235377
-0.237183
-0.245234
-0.228016
-0.242847
-0.22387
-0.228755
-0.210484
-0.217623
-0.227496
-0.221358
-0.209204
-0.23728
-0.229207
-0.220992
-0.210737
-0.23661
-0.226167
-0.218057
-0.218476
-0.237191
-0.22844
-0.225496
-0.221579
-0.242538
-0.22817
-0.224874
-0.225032
-0.227658
-0.219059
-0.25536
-0.269493
-0.263368
-0.271571
-0.257111
-0.261404
-0.270731
-0.257093
-0.266463
-0.261835
-0.276514
-0.257552
-0.270672
-0.25956
-0.24564
-0.240496
-0.238613
-0.233465
-0.239688
-0.23597
-0.288964
-0.284311
-0.304237
-0.300019
-0.286927
-0.288044
-0.289488
-0.301689
-0.302642
-0.306232
-0.330112
-0.309336
-0.307982
-0.305912
-0.305407
-0.292912
-0.287069
-0.303599
-0.289618
-0.306234
-0.302787
-0.285201
-0.286229
-0.257299
-0.235048
-0.233602
-0.25815
-0.254116
-0.230068
-0.230157
-0.232376
-0.231304
-0.251397
-0.231846
-0.261052
-0.2576
-0.258201
-0.269767
-0.269179
-0.264919
-0.261685
-0.26516
-0.268237
-0.240122
-0.233922
-0.244052
-0.238142
-0.237228
-0.235754
-0.240714
-0.251883
-0.242864
-0.278645
-0.246997
-0.278313
-0.248699
-0.293296
-0.298871
-0.299128
-0.295726
-0.30477
-0.33455
-0.306633
-0.302307
-0.307992
-0.289991
-0.280852
-0.292753
-0.28387
-0.292163
-0.297512
-0.29162
-0.29726
-0.29871
-0.293994
-0.295868
-0.225034
-0.23338
-0.244697
-0.215465
-0.213421
-0.236527
-0.230892
-0.207712
-0.202671
-0.201248
-0.201129
-0.196868
-0.204965
-0.211103
-0.211289
-0.242891
-0.207495
-0.210435
-0.21949
-0.211472
-0.207952
-0.197651
-0.199385
-0.202646
-0.195161
-0.203215
-0.211258
-0.20262
-0.200077
-0.209642
-0.198821
-0.205244
-0.222081
-0.217826
-0.232255
-0.224178
-0.225098
-0.224937
-0.222577
-0.223276
-0.234139
-0.222252
-0.216264
-0.219434
-0.221168
-0.217709
-0.217337
-0.219269
-0.215989
-0.20452
-0.202573
-0.202484
-0.219574
-0.22661
-0.224505
-0.227208
-0.222067
-0.225119
-0.228157
-0.22036
-0.217473
-0.219655
-0.212489
-0.208291
-0.207894
-0.219278
-0.210438
-0.211347
-0.211088
-0.220889
-0.217763
-0.230776
-0.230006
-0.23308
-0.218696
-0.219909
-0.211455
-0.204334
-0.217731
-0.220908
-0.210948
-0.211635
-0.269983
-0.27679
-0.279855
-0.279097
-0.273092
-0.277355
-0.2791
-0.26671
-0.285174
-0.265458
-0.28121
-0.263058
-0.270033
-0.282658
-0.267741
-0.27708
-0.267959
-0.265944
-0.269546
-0.263177
-0.256309
-0.261461
-0.25907
-0.266875
-0.25919
-0.256071
-0.253657
-0.26752
-0.260276
-0.255928
-0.25751
-0.257427
-0.265064
-0.257873
-0.266805
-0.269116
-0.263071
-0.265235
-0.261868
-0.301429
-0.292389
-0.309415
-0.301769
-0.30155
-0.312715
-0.313229
-0.312409
-0.310807
-0.322501
-0.310724
-0.319008
-0.309869
-0.31242
-0.321255
-0.302091
-0.312115
-0.299172
-0.300739
-0.301339
-0.30311
-0.300396
-0.308901
-0.313125
-0.278164
-0.281545
-0.279931
-0.257739
-0.261496
-0.254954
-0.260645
-0.255068
-0.269069
-0.25813
-0.257018
-0.262312
-0.267921
-0.259528
-0.260462
-0.261135
-0.257825
-0.269449
-0.261363
-0.255529
-0.306326
-0.282792
-0.289539
-0.285666
-0.310525
-0.317379
-0.32307
-0.309662
-0.318434
-0.313339
-0.311494
-0.318854
-0.292652
-0.284369
-0.282472
-0.287072
-0.284039
-0.316807
-0.312164
-0.232687
-0.239661
-0.23998
-0.242052
-0.253292
-0.234724
-0.236614
-0.253604
-0.240462
-0.248304
-0.248731
-0.264885
-0.248433
-0.247615
-0.255082
-0.268501
-0.260125
-0.232222
-0.235426
-0.237084
-0.23161
-0.232326
-0.235018
-0.232259
-0.259001
-0.248709
-0.260098
-0.251562
-0.240256
-0.251878
-0.264291
-0.267218
-0.200749
-0.186854
-0.191391
-0.188856
-0.18528
-0.194441
-0.202656
-0.203423
-0.230347
-0.201429
-0.200773
-0.203531
-0.231619
-0.200567
-0.188215
-0.183856
-0.202494
-0.183342
-0.202902
-0.200233
-0.204329
-0.198167
-0.23141
-0.204396
-0.200861
-0.2327
-0.166833
-0.187253
-0.175263
-0.176321
-0.175714
-0.168199
-0.169414
-0.163771
-0.161579
-0.169414
-0.15961
-0.165566
-0.158688
-0.168648
-0.167227
-0.160731
-0.163798
-0.18641
-0.16238
-0.165324
-0.161756
-0.169627
-0.167822
-0.169364
-0.160272
-0.162471
-0.169783
-0.163503
-0.196356
-0.202377
-0.196033
-0.197722
-0.197913
-0.195365
-0.199288
-0.190459
-0.195224
-0.201791
-0.197595
-0.190836
-0.196587
-0.218077
-0.219922
-0.218467
-0.226417
-0.228522
-0.220401
-0.216124
-0.217721
-0.213508
-0.223015
-0.218563
-0.212346
-0.217601
-0.223347
-0.19044
-0.192483
-0.187258
-0.282066
-0.279904
-0.290922
-0.276466
-0.276119
-0.27922
-0.283288
-0.298729
-0.296936
-0.293937
-0.303057
-0.297101
-0.29706
-0.302632
-0.280634
-0.268538
-0.288275
-0.278032
-0.273105
-0.280869
-0.278598
-0.280285
-0.281024
-0.269168
-0.261689
-0.263258
-0.283097
-0.2783
-0.283853
-0.297086
-0.302362
-0.295587
-0.280611
-0.312682
-0.282275
-0.268371
-0.27085
-0.291733
-0.264514
-0.287278
-0.285027
-0.186166
-0.188173
-0.199976
-0.188634
-0.186694
-0.186901
-0.187679
-0.212765
-0.226053
-0.19982
-0.230731
-0.201129
-0.208834
-0.212624
-0.216434
-0.209944
-0.189265
-0.198377
-0.182726
-0.197864
-0.195275
-0.186424
-0.188926
-0.165799
-0.163217
-0.163094
-0.149304
-0.151993
-0.156241
-0.15081
-0.158881
-0.149217
-0.159791
-0.166491
-0.155801
-0.156159
-0.164456
-0.144643
-0.144984
-0.150346
-0.152044
-0.143443
-0.145602
-0.152412
-0.164007
-0.175141
-0.172404
-0.171449
-0.173674
-0.16301
-0.176241
-0.163915
-0.173479
-0.166722
-0.180737
-0.172934
-0.178279
-0.161921
-0.196075
-0.190787
-0.192822
-0.191431
-0.193434
-0.192558
-0.193362
-0.221046
-0.219099
-0.214549
-0.209114
-0.20984
-0.21444
-0.219034
-0.217205
-0.218045
-0.214492
-0.222327
-0.21922
-0.213904
-0.214809
-0.217224
-0.19665
-0.189978
-0.186973
-0.194016
-0.191022
-0.212078
-0.252884
-0.236611
-0.242509
-0.251018
-0.240092
-0.251057
-0.252197
-0.235948
-0.236571
-0.249138
-0.249385
-0.273404
-0.248807
-0.250129
-0.239611
-0.237706
-0.249404
-0.253637
-0.273799
-0.250765
-0.251715
-0.279891
-0.293363
-0.279803
-0.290631
-0.277966
-0.278932
-0.243443
-0.240596
-0.247878
-0.247583
-0.250195
-0.247578
-0.242713
-0.239602
-0.240899
-0.242103
-0.239105
-0.275788
-0.264643
-0.267802
-0.26605
-0.26407
-0.265634
-0.27751
-0.242641
-0.247931
-0.248894
-0.243616
-0.263818
-0.261363
-0.257787
-0.265793
-0.26343
-0.25875
-0.262331
-0.26806
-0.269409
-0.260148
-0.257206
-0.268895
-0.26651
-0.258479
-0.267844
-0.256909
-0.290428
-0.276004
-0.301508
-0.276605
-0.307895
-0.264788
-0.270801
-0.280213
-0.281687
-0.263824
-0.266088
-0.274985
-0.244922
-0.260321
-0.248784
-0.253029
-0.258597
-0.253349
-0.246118
-0.276683
-0.279128
-0.266179
-0.260264
-0.278734
-0.276811
-0.261367
-0.27521
-0.275359
-0.304269
-0.272081
-0.277032
-0.305241
-0.276673
-0.270927
-0.268404
-0.284353
-0.277488
-0.261933
-0.279378
-0.180132
-0.177956
-0.183355
-0.182095
-0.183998
-0.179973
-0.178332
-0.178211
-0.174593
-0.169638
-0.18209
-0.180853
-0.173992
-0.177876
-0.182143
-0.188456
-0.185708
-0.184091
-0.186359
-0.18337
-0.182109
-0.210146
-0.21674
-0.207237
-0.214491
-0.207884
-0.210395
-0.217822
-0.218252
-0.230825
-0.199643
-0.197664
-0.232602
-0.22045
-0.205733
-0.195717
-0.200998
-0.194314
-0.201844
-0.191988
-0.206707
-0.202198
-0.173395
-0.173327
-0.19349
-0.191355
-0.200673
-0.182024
-0.21458
-0.216594
-0.185287
-0.184209
-0.192379
-0.182124
-0.207221
-0.180237
-0.203859
-0.186888
-0.182376
-0.183028
-0.184911
-0.185316
-0.183695
-0.181031
-0.184723
-0.222429
-0.217169
-0.213014
-0.183568
-0.186222
-0.185109
-0.188411
-0.185367
-0.183413
-0.185898
-0.153588
-0.159562
-0.154805
-0.164093
-0.133786
-0.139452
-0.136918
-0.136476
-0.132137
-0.137925
-0.139009
-0.131936
-0.135616
-0.13503
-0.141
-0.131383
-0.137809
-0.135602
-0.159002
-0.17905
-0.180344
-0.162295
-0.138905
-0.150155
-0.15774
-0.160062
-0.157526
-0.156229
-0.15705
-0.169497
-0.15976
-0.163495
-0.161094
-0.167756
-0.155318
-0.170877
-0.176859
-0.157648
-0.163538
-0.161722
-0.160032
-0.13229
-0.130993
-0.133965
-0.154323
-0.171006
-0.162164
-0.169587
-0.157769
-0.15886
-0.163494
-0.166972
-0.158988
-0.141881
-0.140841
-0.132996
-0.135182
-0.142281
-0.170645
-0.165114
-0.158464
-0.208692
-0.22163
-0.22037
-0.205961
-0.204787
-0.204758
-0.191985
-0.191279
-0.205065
-0.197404
-0.204975
-0.208423
-0.205506
-0.195465
-0.196358
-0.202607
-0.195364
-0.212083
-0.187949
-0.193573
-0.158952
-0.166524
-0.161563
-0.159743
-0.146716
-0.14851
-0.163567
-0.176356
-0.172379
-0.19482
-0.199885
-0.211494
-0.203103
-0.19429
-0.213044
-0.204285
-0.190833
-0.197022
-0.210703
-0.203479
-0.193925
-0.204917
-0.204665
-0.232894
-0.221145
-0.216684
-0.236633
-0.21632
-0.235593
-0.233777
-0.232834
-0.228843
-0.266493
-0.267599
-0.228326
-0.232072
-0.234947
-0.267769
-0.235967
-0.239035
-0.268367
-0.230926
-0.266824
-0.279941
-0.266481
-0.270128
-0.272058
-0.278716
-0.264723
-0.300445
-0.288745
-0.277188
-0.291277
-0.284157
-0.281423
-0.294405
-0.26503
-0.271119
-0.265779
-0.286045
-0.264915
-0.272581
-0.273212
-0.263647
-0.290376
-0.286703
-0.29128
-0.291738
-0.287575
-0.287933
-0.292857
-0.242765
-0.2263
-0.219014
-0.244478
-0.218925
-0.240495
-0.24681
-0.25199
-0.252138
-0.242109
-0.244771
-0.243015
-0.252557
-0.252047
-0.252968
-0.250365
-0.250299
-0.246864
-0.245927
-0.249032
-0.253535
-0.262727
-0.282445
-0.268549
-0.271528
-0.282605
-0.265469
-0.270647
-0.265277
-0.28148
-0.281309
-0.266544
-0.277054
-0.267782
-0.279758
-0.273648
-0.28004
-0.276471
-0.268707
-0.265006
-0.280043
-0.280979
-0.265775
-0.262448
-0.26869
-0.28225
-0.271506
-0.282704
-0.270625
-0.263208
-0.279084
-0.286149
-0.289217
-0.276433
-0.286499
-0.281819
-0.273054
-0.187238
-0.187065
-0.176986
-0.188961
-0.204852
-0.175426
-0.200126
-0.212429
-0.213589
-0.172181
-0.175634
-0.203872
-0.206038
-0.173122
-0.166395
-0.16441
-0.164145
-0.165714
-0.166595
-0.167462
-0.165742
-0.161737
-0.17257
-0.181172
-0.165241
-0.172051
-0.161991
-0.163763
-0.174037
-0.163493
-0.18236
-0.166336
-0.181467
-0.176729
-0.126882
-0.135699
-0.138022
-0.156863
-0.16802
-0.154456
-0.147043
-0.164024
-0.150786
-0.138397
-0.150408
-0.141557
-0.142339
-0.167113
-0.164727
-0.173186
-0.170606
-0.165338
-0.173994
-0.164875
-0.13671
-0.134183
-0.134486
-0.141353
-0.180325
-0.176208
-0.161475
-0.174851
-0.16318
-0.178466
-0.177613
-0.155019
-0.160598
-0.156174
-0.153957
-0.177896
-0.172125
-0.159586
-0.153092
-0.17182
-0.149725
-0.131771
-0.130979
-0.130643
-0.153053
-0.15409
-0.139959
-0.142083
-0.155839
-0.152622
-0.155303
-0.157447
-0.170713
-0.171706
-0.157173
-0.153603
-0.171207
-0.16317
-0.165587
-0.190774
-0.161804
-0.157447
-0.158801
-0.169822
-0.158573
-0.160626
-0.166763
-0.158207
-0.201417
-0.212057
-0.210224
-0.187139
-0.171604
-0.172091
-0.191755
-0.171883
-0.173499
-0.202152
-0.173908
-0.199573
-0.173347
-0.219736
-0.221984
-0.210918
-0.211646
-0.205462
-0.194446
-0.202232
-0.202579
-0.196501
-0.202752
-0.182417
-0.202073
-0.18334
-0.166208
-0.166523
-0.180046
-0.18154
-0.19309
-0.222036
-0.180209
-0.187089
-0.179674
-0.166995
-0.171182
-0.172208
-0.188576
-0.179602
-0.179128
-0.22334
-0.223032
-0.213611
-0.217983
-0.228717
-0.222351
-0.215971
-0.227228
-0.226599
-0.26471
-0.225204
-0.230212
-0.255888
-0.226059
-0.25906
-0.226759
-0.244386
-0.252345
-0.279746
-0.263796
-0.258753
-0.279522
-0.277831
-0.262481
-0.281408
-0.28253
-0.273771
-0.274526
-0.274343
-0.282214
-0.279327
-0.272289
-0.25542
-0.255988
-0.259371
-0.258101
-0.277939
-0.256486
-0.273547
-0.259836
-0.276163
-0.260704
-0.275663
-0.282231
-0.282752
-0.267111
-0.266452
-0.281886
-0.283106
-0.267328
-0.21132
-0.211129
-0.209107
-0.216337
-0.207317
-0.215501
-0.212815
-0.244104
-0.258311
-0.259252
-0.243217
-0.244712
-0.260326
-0.245338
-0.259965
-0.282023
-0.265074
-0.261335
-0.279968
-0.265937
-0.282034
-0.280168
-0.279736
-0.267692
-0.265206
-0.281251
-0.266214
-0.279096
-0.271528
-0.274365
-0.281873
-0.267991
-0.260464
-0.260236
-0.280451
-0.26252
-0.275543
-0.271933
-0.262521
-0.269368
-0.279165
-0.283038
-0.282912
-0.266505
-0.270418
-0.283296
-0.283043
-0.267367
-0.177751
-0.16753
-0.189155
-0.167492
-0.198799
-0.16645
-0.169068
-0.200811
-0.173444
-0.172314
-0.174407
-0.170972
-0.174697
-0.173927
-0.171445
-0.170879
-0.170807
-0.173239
-0.169806
-0.170208
-0.170763
-0.170404
-0.1709
-0.172072
-0.173833
-0.174921
-0.17136
-0.172137
-0.171094
-0.173922
-0.168365
-0.174227
-0.167709
-0.175119
-0.168152
-0.173746
-0.179208
-0.180337
-0.177503
-0.17878
-0.179196
-0.179355
-0.17826
-0.186027
-0.186274
-0.205367
-0.184907
-0.187341
-0.192664
-0.187241
-0.178489
-0.198222
-0.184085
-0.175822
-0.185397
-0.172708
-0.180877
-0.183784
-0.182036
-0.184704
-0.183926
-0.182542
-0.182818
-0.18637
-0.178
-0.181797
-0.181181
-0.178263
-0.178037
-0.179435
-0.178974
-0.177429
-0.178668
-0.183321
-0.179344
-0.182341
-0.18077
-0.177711
-0.167132
-0.173688
-0.193607
-0.175168
-0.172351
-0.169017
-0.168165
-0.16725
-0.166679
-0.167741
-0.167543
-0.168226
-0.171908
-0.167083
-0.197466
-0.179736
-0.168442
-0.170561
-0.177252
-0.180206
-0.171348
-0.167717
-0.171902
-0.200004
-0.174913
-0.16896
-0.175708
-0.175929
-0.17528
-0.179885
-0.175751
-0.176042
-0.17534
-0.17937
-0.175939
-0.177551
-0.174578
-0.175286
-0.180444
-0.180358
-0.179699
-0.200519
-0.185223
-0.186949
-0.193375
-0.173676
-0.172468
-0.183147
-0.184587
-0.183918
-0.121377
-0.143335
-0.121591
-0.146414
-0.121141
-0.159449
-0.141618
-0.154274
-0.151684
-0.137247
-0.153515
-0.113407
-0.114026
-0.116638
-0.123524
-0.115755
-0.111672
-0.121348
-0.106653
-0.100833
-0.100586
-0.106895
-0.100278
-0.106596
-0.106658
-0.107524
-0.109381
-0.102568
-0.101218
-0.109291
-0.100838
-0.107682
-0.111791
-0.113617
-0.109072
-0.116964
-0.109693
-0.119043
-0.111064
-0.163347
-0.171787
-0.142466
-0.143019
-0.142767
-0.170725
-0.16411
-0.17252
-0.170386
-0.173106
-0.175028
-0.178766
-0.172793
-0.168601
-0.174544
-0.187221
-0.175126
-0.17323
-0.183329
-0.176236
-0.172781
-0.1619
-0.13917
-0.126226
-0.173315
-0.139003
-0.16879
-0.162633
-0.126367
-0.13141
-0.134466
-0.138833
-0.121212
-0.143779
-0.13458
-0.149035
-0.147644
-0.161985
-0.139141
-0.171327
-0.141625
-0.170168
-0.139478
-0.163432
-0.174602
-0.169402
-0.190725
-0.175682
-0.191563
-0.171694
-0.170764
-0.159044
-0.136286
-0.163134
-0.132464
-0.167315
-0.136474
-0.154267
-0.176213
-0.189498
-0.17677
-0.172737
-0.191288
-0.176553
-0.172197
-0.136397
-0.132785
-0.148362
-0.145244
-0.138762
-0.14672
-0.130937
-0.17185
-0.189678
-0.17081
-0.191432
-0.134491
-0.146559
-0.142824
-0.130568
-0.145542
-0.134805
-0.129522
-0.113056
-0.124176
-0.103309
-0.111069
-0.102476
-0.113575
-0.109933
-0.131604
-0.129541
-0.138014
-0.137799
-0.140744
-0.130453
-0.130738
-0.133506
-0.146271
-0.134103
-0.146145
-0.132712
-0.14549
-0.13412
-0.121305
-0.12764
-0.143169
-0.143417
-0.12045
-0.142342
-0.126406
-0.118482
-0.130252
-0.105099
-0.114257
-0.108628
-0.114822
-0.12107
-0.125852
-0.143545
-0.138425
-0.13292
-0.141839
-0.131105
-0.116998
-0.167764
-0.186067
-0.169708
-0.182287
-0.160492
-0.132607
-0.132496
-0.135701
-0.163422
-0.183844
-0.181251
-0.176629
-0.162981
-0.164909
-0.181842
-0.185733
-0.137872
-0.149003
-0.134059
-0.144729
-0.137314
-0.140973
-0.136239
-0.228743
-0.22977
-0.232606
-0.230285
-0.231682
-0.227662
-0.230056
-0.20895
-0.219504
-0.218236
-0.209596
-0.205275
-0.214338
-0.203344
-0.211212
-0.22185
-0.211581
-0.202588
-0.206018
-0.213341
-0.224412
-0.204828
-0.223388
-0.20717
-0.212172
-0.225793
-0.228346
-0.224001
-0.224887
-0.226006
-0.22771
-0.221459
-0.221554
-0.230201
-0.258007
-0.261487
-0.224289
-0.261192
-0.275048
-0.270898
-0.232996
-0.234495
-0.246468
-0.256558
-0.229523
-0.233906
-0.270998
-0.273452
-0.278616
-0.24121
-0.250133
-0.262866
-0.247134
-0.264952
-0.239215
-0.252138
-0.243263
-0.270084
-0.256407
-0.249709
-0.245747
-0.26749
-0.254266
-0.234487
-0.231404
-0.235343
-0.237897
-0.233498
-0.233186
-0.238672
-0.212084
-0.220952
-0.221924
-0.210606
-0.21378
-0.230413
-0.210387
-0.222303
-0.227955
-0.218616
-0.221251
-0.222633
-0.210304
-0.214645
-0.225933
-0.209039
-0.227195
-0.20847
-0.21648
-0.232979
-0.239903
-0.228836
-0.24283
-0.233893
-0.239863
-0.218413
-0.220048
-0.222265
-0.25636
-0.218259
-0.254238
-0.260645
-0.247011
-0.262862
-0.220133
-0.214552
-0.249663
-0.216334
-0.252012
-0.267647
-0.249396
-0.265475
-0.1412
-0.114895
-0.137696
-0.188375
-0.111407
-0.143857
-0.141248
-0.125631
-0.127383
-0.126179
-0.140035
-0.148108
-0.160945
-0.167495
-0.176147
-0.173166
-0.166889
-0.171897
-0.161904
-0.160258
-0.168664
-0.166567
-0.175721
-0.166616
-0.158392
-0.17104
-0.144133
-0.139505
-0.117623
-0.152636
-0.117424
-0.151006
-0.14448
-0.111946
-0.10957
-0.118464
-0.116117
-0.108535
-0.114505
-0.11743
-0.108083
-0.101887
-0.121318
-0.107807
-0.107223
-0.107097
-0.110374
-0.104882
-0.104425
-0.0984968
-0.113345
-0.101904
-0.10562
-0.105445
-0.113199
-0.113028
-0.110079
-0.11571
-0.111356
-0.11443
-0.116404
-0.10101
-0.104515
-0.0967213
-0.0891641
-0.0881402
-0.0903835
-0.121648
-0.11053
-0.109185
-0.0982192
-0.0905205
-0.0942008
-0.102148
-0.0902415
-0.0924611
-0.105968
-0.110864
-0.110632
-0.124099
-0.124394
-0.123244
-0.109341
-0.129781
-0.113986
-0.128015
-0.103095
-0.111049
-0.104341
-0.107331
-0.112945
-0.120815
-0.130401
-0.128202
-0.111544
-0.125646
-0.123157
-0.134737
-0.11948
-0.159316
-0.167496
-0.168365
-0.186876
-0.16522
-0.167165
-0.177594
-0.154231
-0.16889
-0.167991
-0.167761
-0.165013
-0.165628
-0.157714
-0.138997
-0.104513
-0.155649
-0.12716
-0.147122
-0.144791
-0.119777
-0.148938
-0.128567
-0.155625
-0.190046
-0.189938
-0.189183
-0.18359
-0.186478
-0.187211
-0.130154
-0.159004
-0.158075
-0.180102
-0.176217
-0.177714
-0.181053
-0.180978
-0.176485
-0.179123
-0.181755
-0.189813
-0.213261
-0.181632
-0.193118
-0.179021
-0.187065
-0.178389
-0.173199
-0.174408
-0.176131
-0.178827
-0.175022
-0.17527
-0.183313
-0.184582
-0.188764
-0.181445
-0.184832
-0.180536
-0.187154
-0.177549
-0.176227
-0.179201
-0.177055
-0.178588
-0.177557
-0.175834
-0.176866
-0.192737
-0.179396
-0.170839
-0.180263
-0.176982
-0.172307
-0.175332
-0.175217
-0.17619
-0.174859
-0.176148
-0.175891
-0.174247
-0.179563
-0.180973
-0.181239
-0.181885
-0.180238
-0.17943
-0.183697
-0.17222
-0.174167
-0.174288
-0.175066
-0.172787
-0.173825
-0.173833
-0.170045
-0.16974
-0.170176
-0.172623
-0.16963
-0.170695
-0.171176
-0.171056
-0.172703
-0.168938
-0.171756
-0.170074
-0.171377
-0.172893
-0.171323
-0.173698
-0.174001
-0.173481
-0.17223
-0.172506
-0.17262
-0.214313
-0.215003
-0.197039
-0.211903
-0.207126
-0.216713
-0.210788
-0.203399
-0.21802
-0.206767
-0.192157
-0.214416
-0.202342
-0.218113
-0.214333
-0.188174
-0.191803
-0.212355
-0.207349
-0.189288
-0.192566
-0.196708
-0.211083
-0.209214
-0.226005
-0.21525
-0.224157
-0.225132
-0.225627
-0.223293
-0.22156
-0.229221
-0.250284
-0.249011
-0.2299
-0.235316
-0.223654
-0.234389
-0.238225
-0.254103
-0.240388
-0.252715
-0.236275
-0.248183
-0.260648
-0.241058
-0.237162
-0.259343
-0.246812
-0.235721
-0.258867
-0.245577
-0.239839
-0.235214
-0.259166
-0.245972
-0.202298
-0.191947
-0.20743
-0.195215
-0.205777
-0.189097
-0.204165
-0.180429
-0.176433
-0.194534
-0.168314
-0.178752
-0.194384
-0.170045
-0.196363
-0.191977
-0.199591
-0.202061
-0.184643
-0.174975
-0.179538
-0.203694
-0.198468
-0.198576
-0.191261
-0.184729
-0.198986
-0.186203
-0.201398
-0.196246
-0.232685
-0.251622
-0.249761
-0.258061
-0.241078
-0.255065
-0.214226
-0.214767
-0.247661
-0.213781
-0.243558
-0.254687
-0.240266
-0.255355
-0.17128
-0.175156
-0.172326
-0.166094
-0.174341
-0.172337
-0.165498
-0.178018
-0.182267
-0.168025
-0.168819
-0.169747
-0.184538
-0.176181
-0.193873
-0.213081
-0.196913
-0.212413
-0.180813
-0.173109
-0.17408
-0.179344
-0.178368
-0.172168
-0.161581
-0.192139
-0.170569
-0.180281
-0.191337
-0.173352
-0.170861
-0.171573
-0.167756
-0.172147
-0.16802
-0.172934
-0.181966
-0.175812
-0.183148
-0.175502
-0.162648
-0.167495
-0.167731
-0.164065
-0.153067
-0.14585
-0.152581
-0.147234
-0.161203
-0.167718
-0.167286
-0.161065
-0.199661
-0.212016
-0.196855
-0.212319
-0.183379
-0.171838
-0.172593
-0.183286
-0.18338
-0.173119
-0.182553
-0.172775
-0.165313
-0.168924
-0.169526
-0.165829
-0.1557
-0.14787
-0.15445
-0.14884
-0.158318
-0.171531
-0.162724
-0.168812
-0.163361
-0.168354
-0.158274
-0.163029
-0.170354
-0.170535
-0.162422
-0.117967
-0.0992562
-0.10112
-0.109537
-0.101468
-0.105385
-0.116366
-0.121536
-0.104145
-0.103217
-0.12311
-0.142171
-0.157122
-0.147736
-0.159543
-0.137467
-0.161618
-0.136649
-0.148553
-0.134854
-0.139591
-0.154652
-0.118082
-0.0980518
-0.100501
-0.114509
-0.118824
-0.101231
-0.103953
-0.118742
-0.101989
-0.117227
-0.12061
-0.14052
-0.132681
-0.139425
-0.143009
-0.142555
-0.134566
-0.141617
-0.0601958
-0.0915354
-0.0761833
-0.0857583
-0.0711585
-0.0745582
-0.085935
-0.0667934
-0.0695413
-0.0725412
-0.0700958
-0.0700927
-0.0749344
-0.0657831
-0.0628482
-0.0631054
-0.0670341
-0.0611338
-0.0491234
-0.0601403
-0.0887308
-0.070238
-0.0880357
-0.0691888
-0.0677484
-0.070233
-0.0662896
-0.0697862
-0.0713259
-0.0666754
-0.0504487
-0.0850195
-0.0736601
-0.0855369
-0.0693342
-0.082731
-0.0677095
-0.0728533
-0.0902244
-0.0759162
-0.0872105
-0.0876727
-0.0749883
-0.0740776
-0.0681819
-0.0848062
-0.0859025
-0.0670938
-0.0539395
-0.0560432
-0.0496703
-0.057845
-0.0556349
-0.0453299
-0.0479294
-0.0563855
-0.047534
-0.0580586
-0.0535952
-0.0696936
-0.0867799
-0.0862908
-0.0710827
-0.0589612
-0.0641574
-0.0588397
-0.0522371
-0.0521613
-0.0629312
-0.0608723
-0.0708461
-0.085852
-0.0856538
-0.0725312
-0.0863861
-0.072351
-0.0698458
-0.112425
-0.0848525
-0.106468
-0.0923069
-0.095775
-0.0767456
-0.111724
-0.15135
-0.188443
-0.164417
-0.146374
-0.139687
-0.184692
-0.154784
-0.0887825
-0.108791
-0.0837297
-0.145825
-0.13203
-0.171335
-0.158677
-0.141986
-0.133453
-0.179518
-0.120985
-0.0986154
-0.104389
-0.123443
-0.0996667
-0.116238
-0.12549
-0.130452
-0.116943
-0.10181
-0.133814
-0.105482
-0.13527
-0.127146
-0.109079
-0.107709
-0.148435
-0.149729
-0.151001
-0.142419
-0.149834
-0.148852
-0.147446
-0.135317
-0.117343
-0.110795
-0.137643
-0.137207
-0.108179
-0.137115
-0.10878
-0.108418
-0.13806
-0.139381
-0.136358
-0.127398
-0.14306
-0.134348
-0.132663
-0.111298
-0.0891744
-0.0990242
-0.100767
-0.0875923
-0.113108
-0.0956039
-0.0935632
-0.0524346
-0.0719355
-0.0870102
-0.102114
-0.0936686
-0.0940602
-0.102147
-0.103272
-0.100346
-0.103993
-0.0957813
-0.110634
-0.100197
-0.0872863
-0.094529
-0.0868451
-0.0946333
-0.11105
-0.12083
-0.110461
-0.0925666
-0.10682
-0.117026
-0.0949053
-0.119268
-0.118021
-0.118742
-0.118799
-0.11811
-0.0954905
-0.0549447
-0.0579717
-0.0587116
-0.0944644
-0.122805
-0.112055
-0.121106
-0.0997223
-0.123823
-0.119973
-0.0961817
-0.115796
-0.114695
-0.116357
-0.115355
-0.135164
-0.120383
-0.134845
-0.120684
-0.133293
-0.121732
-0.135868
-0.136167
-0.129581
-0.132328
-0.140397
-0.139995
-0.128472
-0.136417
-0.136034
-0.13918
-0.126652
-0.131869
-0.135604
-0.1395
-0.127018
-0.135701
-0.120805
-0.122162
-0.136587
-0.122004
-0.13635
-0.135959
-0.207509
-0.208915
-0.210323
-0.142984
-0.14952
-0.187969
-0.144305
-0.188534
-0.18664
-0.145581
-0.150119
-0.144935
-0.188288
-0.207254
-0.210833
-0.210962
-0.203284
-0.207102
-0.219175
-0.192387
-0.198532
-0.223023
-0.220268
-0.198456
-0.220911
-0.233729
-0.235744
-0.232112
-0.232303
-0.233222
-0.233499
-0.23636
-0.21788
-0.190531
-0.198127
-0.217462
-0.197752
-0.218884
-0.217974
-0.235294
-0.236505
-0.238552
-0.233611
-0.236413
-0.235005
-0.237704
-0.19833
-0.203419
-0.186368
-0.156022
-0.164704
-0.168783
-0.157684
-0.165732
-0.158339
-0.153764
-0.155623
-0.181161
-0.150361
-0.159985
-0.164702
-0.155586
-0.205616
-0.191022
-0.189967
-0.179252
-0.210377
-0.207418
-0.196093
-0.212583
-0.180929
-0.194849
-0.178391
-0.205967
-0.211682
-0.192553
-0.212168
-0.193915
-0.177318
-0.1927
-0.190829
-0.126412
-0.106365
-0.124969
-0.10714
-0.144105
-0.164068
-0.156708
-0.138592
-0.166482
-0.141428
-0.141493
-0.148822
-0.179948
-0.17877
-0.149864
-0.125046
-0.0895808
-0.118715
-0.119267
-0.123355
-0.11848
-0.120633
-0.126933
-0.108143
-0.107394
-0.127794
-0.0646685
-0.0595192
-0.06417
-0.0612074
-0.0702513
-0.0429873
-0.0797537
-0.0865469
-0.0464911
-0.0756871
-0.090244
-0.0749346
-0.089864
-0.0678005
-0.0835769
-0.0662034
-0.0846678
-0.0538697
-0.0558251
-0.0530557
-0.0575325
-0.070961
-0.0898058
-0.0881086
-0.0731995
-0.15129
-0.182639
-0.182983
-0.151202
-0.128536
-0.107534
-0.109041
-0.131113
-0.128007
-0.107843
-0.127783
-0.107821
-0.199493
-0.170831
-0.180169
-0.193856
-0.204297
-0.181489
-0.169757
-0.170852
-0.199322
-0.175355
-0.180597
-0.167618
-0.163666
-0.176576
-0.176851
-0.168247
-0.181415
-0.172698
-0.178426
-0.173472
-0.18212
-0.169865
-0.17097
-0.171107
-0.176062
-0.175302
-0.172137
-0.169389
-0.164978
-0.167912
-0.16134
-0.174039
-0.1632
-0.168247
-0.192111
-0.188083
-0.202845
-0.170143
-0.195525
-0.164666
-0.165877
-0.176027
-0.174927
-0.161996
-0.190024
-0.162015
-0.16527
-0.169547
-0.180236
-0.167367
-0.165004
-0.202139
-0.158819
-0.163528
-0.156948
-0.183644
-0.195889
-0.160912
-0.183624
-0.160874
-0.165796
-0.168237
-0.166055
-0.165371
-0.161282
-0.164408
-0.162304
-0.168723
-0.179497
-0.170061
-0.169939
-0.159779
-0.190731
-0.167584
-0.170392
-0.199507
-0.165802
-0.171918
-0.168837
-0.163908
-0.175718
-0.1933
-0.173499
-0.172081
-0.192408
-0.170495
-0.177286
-0.171291
-0.165295
-0.179938
-0.169435
-0.188341
-0.163434
-0.168423
-0.199961
-0.170499
-0.166698
-0.170186
-0.167979
-0.169348
-0.164945
-0.1716
-0.166719
-0.168146
-0.161961
-0.170029
-0.166531
-0.166901
-0.171503
-0.166072
-0.168678
-0.165165
-0.169218
-0.164346
-0.161269
-0.166355
-0.170182
-0.163491
-0.167623
-0.162355
-0.161561
-0.157061
-0.162907
-0.154125
-0.166474
-0.168377
-0.167958
-0.165721
-0.165508
-0.168276
-0.166409
-0.166445
-0.160503
-0.167528
-0.1699
-0.164445
-0.169015
-0.170313
-0.164417
-0.167932
-0.165103
-0.162704
-0.192442
-0.179707
-0.194761
-0.145112
-0.14473
-0.189122
-0.144566
-0.181616
-0.191156
-0.167558
-0.189623
-0.185344
-0.210719
-0.196663
-0.166664
-0.197133
-0.179855
-0.175131
-0.178963
-0.167548
-0.196062
-0.165839
-0.174198
-0.177553
-0.194259
-0.178189
-0.195018
-0.165239
-0.218619
-0.206066
-0.202735
-0.218691
-0.218426
-0.203244
-0.218715
-0.226586
-0.224717
-0.230365
-0.215206
-0.231802
-0.221553
-0.218069
-0.218576
-0.204035
-0.198965
-0.214577
-0.218704
-0.20341
-0.216963
-0.22354
-0.217728
-0.213203
-0.209041
-0.222486
-0.218943
-0.214117
-0.169915
-0.198484
-0.180188
-0.181116
-0.199981
-0.168823
-0.182492
-0.171236
-0.184758
-0.21077
-0.188631
-0.175791
-0.202174
-0.184878
-0.190615
-0.174159
-0.189273
-0.168713
-0.18491
-0.186149
-0.189615
-0.17041
-0.187516
-0.173225
-0.187202
-0.1881
-0.14609
-0.139657
-0.132622
-0.160655
-0.145913
-0.131679
-0.160564
-0.156083
-0.175866
-0.155014
-0.16875
-0.154629
-0.155953
-0.176694
-0.15552
-0.153787
-0.176573
-0.168798
-0.154125
-0.154213
-0.176348
-0.149328
-0.154346
-0.150297
-0.13847
-0.152814
-0.151338
-0.137619
-0.146284
-0.153911
-0.1812
-0.166193
-0.146229
-0.153582
-0.179416
-0.150554
-0.150535
-0.155099
-0.16011
-0.153854
-0.151594
-0.14901
-0.152607
-0.156086
-0.143676
-0.160893
-0.152379
-0.143526
-0.161698
-0.149652
-0.152518
-0.159155
-0.146813
-0.152999
-0.149252
-0.148031
-0.0840392
-0.0886948
-0.0740071
-0.0633962
-0.0888063
-0.067196
-0.0826714
-0.102853
-0.123351
-0.106216
-0.117884
-0.10623
-0.102724
-0.118146
-0.0860544
-0.072739
-0.0749439
-0.0908761
-0.0900355
-0.0704925
-0.0877536
-0.0341895
-0.0409839
-0.044289
0.0226784
-0.0551146
0.00752323
-0.0237893
-0.0607244
-0.0708368
-0.0539042
-0.0652351
-0.0730549
-0.0612594
-0.06244
-0.0555456
-0.061172
-0.0575572
-0.065957
-0.0660099
-0.0482132
-0.0630138
-0.013096
-0.0577528
-0.0608843
-0.0465972
-0.0636326
-0.0482281
-0.00701871
-0.00579005
0.00300196
-0.0332951
0.0398728
-0.0250901
0.0467627
-0.012383
-0.0330453
-0.0574459
-0.0606272
-0.0515269
-0.0486249
-0.0536362
-0.0408633
-0.100533
-0.125224
-0.0949304
-0.118183
-0.0866672
-0.0999684
-0.120919
-0.0914573
-0.100402
-0.0577511
-0.0783225
-0.0950041
-0.0706465
-0.0948085
-0.0898804
-0.0740679
-0.0943145
-0.0646914
-0.0941296
-0.0891597
-0.0711568
-0.0699485
-0.0617722
-0.0974022
-0.0667741
-0.104564
-0.0899912
-0.0752433
-0.0896403
-0.124231
-0.124156
-0.121645
-0.125147
-0.108804
-0.108344
-0.0727108
-0.074721
-0.108735
-0.0694523
-0.105044
-0.0742206
-0.0892274
-0.0880798
-0.118649
-0.121494
-0.123096
-0.0478913
-0.0559705
-0.047766
-0.0431772
-0.0480018
-0.0556073
-0.0392694
-0.0403616
-0.0240312
0.010407
-0.02755
-0.0323337
-0.0276025
-0.0379112
0.00654587
-0.0448753
-0.0444585
-0.0533775
-0.0740771
-0.0611824
-0.0453073
-0.0435588
0.00392057
-0.0406083
-0.037256
-0.0350751
-0.0506126
-0.0634379
-0.0726433
-0.0639901
-0.0417247
-0.0380028
-0.0387547
-0.0276867
-0.0431256
-0.0333228
-0.0372363
-0.0856048
-0.101667
-0.113709
-0.119828
-0.121107
-0.104086
-0.0835325
-0.0888409
-0.12615
-0.108865
-0.116734
-0.0908125
-0.124517
-0.1066
-0.0787739
-0.0765572
-0.0668907
-0.0673582
-0.0755715
-0.0737661
-0.0726366
-0.0427707
-0.058568
-0.0501162
-0.0802877
-0.116418
-0.0753349
-0.025022
-0.0981872
-0.0764059
-0.0635573
0.00882632
-0.0426347
-0.0406331
-0.0876331
-0.0825321
-0.0919032
-0.0892798
-0.0988092
-0.0827143
-0.0801057
-0.0697384
-0.0512965
-0.0149698
-0.0528749
-0.0611048
-0.0567659
-0.0627875
-0.0626365
-0.0604046
-0.0561803
-0.0985777
-0.128168
-0.125531
-0.110974
-0.130184
-0.0932661
-0.115654
-0.101938
-0.0794002
-0.102301
-0.124146
-0.107343
-0.107633
-0.0974225
-0.0833232
-0.0932349
-0.109238
-0.108844
-0.111405
-0.0908762
-0.0809445
-0.0924106
-0.117244
-0.11235
-0.114773
-0.0758679
-0.095662
-0.0995877
-0.136182
-0.162878
-0.165464
-0.13213
-0.203444
-0.17157
-0.19925
-0.138159
-0.148596
-0.137038
-0.165553
-0.204053
-0.16534
-0.165689
-0.180876
-0.180925
-0.182365
-0.167195
-0.164241
-0.143674
-0.130913
-0.161382
-0.142067
-0.129558
-0.140454
-0.144725
-0.142502
-0.137313
-0.159553
-0.12752
-0.128427
-0.138497
-0.141784
-0.166731
-0.182874
-0.185638
-0.16992
-0.184123
-0.169206
-0.167391
-0.180604
-0.149646
-0.190895
-0.173649
-0.174916
-0.182615
-0.167771
-0.175169
-0.181058
-0.167373
-0.217783
-0.245315
-0.216472
-0.246191
-0.171924
-0.17407
-0.178801
-0.16578
-0.179754
-0.166303
-0.170711
-0.219416
-0.24758
-0.220482
-0.247094
-0.152794
-0.140256
-0.13948
-0.136942
-0.150477
-0.137779
-0.162914
-0.164361
-0.175493
-0.179474
-0.160448
-0.163549
-0.17824
-0.14657
-0.11604
-0.140455
-0.157991
-0.118829
-0.156294
-0.146376
-0.142117
-0.137165
-0.146592
-0.126292
-0.121766
-0.133459
-0.14186
-0.16412
-0.176802
-0.16992
-0.17797
-0.167498
-0.178107
-0.165033
-0.144216
-0.16827
-0.148791
-0.15258
-0.139256
-0.138262
-0.181556
-0.172486
-0.149837
-0.0794164
-0.0912039
-0.0467693
-0.0897143
-0.0790709
-0.0905823
-0.0452608
-0.0809549
-0.123486
-0.112644
-0.123422
-0.112476
-0.122242
-0.0805822
-0.136989
-0.133713
-0.124575
-0.141125
-0.129094
-0.139591
-0.137035
-0.154744
-0.174433
-0.156518
-0.169833
-0.155948
-0.172255
-0.158752
-0.15415
-0.159563
-0.170869
-0.166592
-0.173243
-0.153099
-0.160296
-0.161245
-0.151816
-0.164365
-0.164949
-0.153034
-0.166221
-0.15864
-0.16231
-0.198944
-0.163913
-0.172651
-0.160937
-0.165055
-0.172354
-0.161735
-0.165932
-0.164416
-0.196055
-0.159688
-0.1663
-0.169569
-0.156448
-0.150554
-0.127528
-0.168376
-0.137941
-0.183715
-0.147086
-0.172901
-0.197497
-0.174415
-0.169588
-0.196412
-0.169052
-0.176119
-0.167183
-0.162551
-0.182944
-0.171739
-0.193117
-0.158931
-0.166979
-0.157173
-0.153256
-0.158065
-0.173744
-0.153913
-0.157334
-0.164027
-0.157861
-0.158948
-0.152982
-0.165356
-0.151456
-0.160047
-0.162589
-0.159983
-0.172054
-0.193885
-0.186194
-0.15825
-0.171751
-0.168296
-0.119611
-0.146917
-0.178144
-0.179525
-0.20814
-0.179689
-0.209979
-0.208634
-0.181799
-0.209732
-0.112518
-0.132426
-0.155837
-0.133467
-0.151722
-0.125852
-0.126538
-0.157921
-0.138041
-0.136834
-0.154531
-0.155059
-0.162242
-0.153742
-0.159738
-0.157077
-0.152247
-0.134576
-0.110622
-0.101022
-0.131658
-0.111301
-0.133576
-0.133432
-0.136548
-0.13933
-0.115219
-0.103599
-0.113096
-0.138911
-0.136298
-0.152362
-0.15141
-0.156008
-0.147742
-0.157724
-0.14968
-0.150747
-0.166938
-0.171452
-0.159173
-0.194751
-0.166291
-0.16611
-0.214753
-0.244791
-0.215556
-0.243882
-0.170872
-0.172245
-0.177715
-0.165319
-0.169875
-0.177173
-0.167467
-0.210186
-0.243933
-0.220918
-0.241686
-0.163979
-0.15798
-0.173938
-0.166747
-0.165489
-0.160139
-0.174697
-0.14366
-0.113044
-0.128888
-0.15656
-0.112417
-0.144814
-0.153516
-0.143774
-0.142448
-0.116066
-0.117158
-0.119102
-0.148436
-0.141128
-0.163796
-0.174395
-0.169333
-0.176846
-0.164264
-0.16738
-0.176516
-0.14427
-0.174022
-0.173037
-0.201263
-0.183835
-0.202374
-0.102899
-0.206698
-0.185888
-0.205045
-0.105333
-0.141193
-0.160533
-0.139687
-0.14895
-0.123676
-0.123661
-0.160212
-0.137916
-0.138664
-0.0456604
-0.0226024
-0.0260711
-0.00927518
-0.0442812
-0.00787135
-0.033205
-0.0487437
-0.027913
-0.0426478
-0.0124486
-0.0297453
-0.0415213
-0.0320413
-0.0290357
-0.0236345
-0.0260788
-0.0487034
-0.0430274
-0.0395558
-0.0462863
-0.0462815
-0.0421816
-0.0311549
-0.0498623
-0.022046
-0.0583804
-0.00742425
-0.0362234
-0.056113
-0.00656376
-0.0466862
-0.0173959
-0.00694396
-0.0246398
-0.031752
-0.0365403
-0.031214
-0.0423585
-0.0441482
-0.0413342
-0.0298115
-0.0297162
-0.0272797
0.000214526
0.000963038
-0.00151754
-0.0268976
-0.0317683
-0.0523482
-0.0677442
-0.0615685
-0.0537572
-0.0521216
-0.0675902
-0.0532107
-0.050421
-0.0448394
-0.068284
-0.0600619
-0.0476513
-0.04807
-0.0678267
-0.0323124
-0.00728125
-0.00493395
-0.0396293
-0.00437917
-0.0374598
-0.0332917
-0.0161728
-0.0284976
-0.00257864
0.0102226
-0.00522336
0.00915981
-0.0185565
-0.0412697
-0.0652939
-0.040078
-0.0596137
-0.0423541
-0.0386598
-0.0639008
-0.0156319
-0.0303146
-0.00601095
0.00673828
-0.0165684
-0.00478314
0.00806395
-0.0414181
-0.0348931
-0.0589009
-0.0646769
-0.0380728
-0.0429043
-0.0634444
-0.00909087
-0.00733087
-0.000744879
-0.0206185
0.010667
-0.0305725
-0.041191
-0.0344963
-0.045088
-0.0379908
-0.0282659
-0.0419829
-0.00530369
0.00528446
0.032663
0.0346379
0.0278694
-0.00219486
-6.94505e-05
-0.0197886
-0.033808
-0.037138
-0.0155665
-0.0144235
-0.0012774
-0.0177607
0.0223305
-0.024983
0.014548
-0.00966256
-0.0264575
-0.0432155
-0.0337183
-0.0407201
0.00130594
-0.0127908
0.0329489
0.026081
0.0066697
-0.106851
-0.0847676
-0.0902833
-0.102309
-0.0901573
-0.107465
-0.101254
-0.125582
-0.112852
-0.133111
-0.148504
-0.151293
-0.11595
-0.123564
-0.127982
-0.156291
-0.119943
-0.135074
-0.130041
-0.154059
-0.118237
-0.107263
-0.100465
-0.150588
-0.147107
-0.107296
-0.10163
-0.120626
-0.108668
-0.10542
-0.119383
-0.107252
-0.118129
-0.124149
-0.110655
-0.0969743
-0.0943835
-0.0965366
-0.100946
-0.102741
-0.103398
-0.115837
-0.122065
-0.128098
-0.122236
-0.123419
-0.121163
-0.129029
-0.122145
-0.133857
-0.141393
-0.151155
-0.152752
-0.134442
-0.121186
-0.141436
-0.153111
-0.144948
-0.153029
-0.142367
-0.144403
-0.152479
-0.123643
-0.155983
-0.141515
-0.135752
-0.154323
-0.125343
-0.134938
-0.197922
-0.182612
-0.201419
-0.181791
-0.193715
-0.165846
-0.155365
-0.170704
-0.196629
-0.15288
-0.168171
-0.181147
-0.159049
-0.178378
-0.161271
-0.193828
-0.178676
-0.18023
-0.189344
-0.184438
-0.166599
-0.188439
-0.163791
-0.108556
-0.0870131
-0.0905396
-0.103361
-0.0901847
-0.108134
-0.103896
-0.135542
-0.12522
-0.139854
-0.163811
-0.16217
-0.124097
-0.137077
-0.133799
-0.158469
-0.121562
-0.138784
-0.132096
-0.160308
-0.122827
-0.0949858
-0.0960026
-0.149677
-0.0931501
-0.0980262
-0.148366
-0.091425
-0.0821365
-0.0772379
-0.0791559
-0.0852403
-0.0829896
-0.0881855
-0.0947085
-0.0914661
-0.0822587
-0.0926856
-0.0886647
-0.0870167
-0.0987954
-0.0922491
-0.0881816
-0.144998
-0.0902469
-0.146609
-0.0897187
-0.130159
-0.137565
-0.14116
-0.161092
-0.160029
-0.137072
-0.131894
-0.144079
-0.153992
-0.145193
-0.153389
-0.143139
-0.145691
-0.153938
-0.128672
-0.157429
-0.141688
-0.136174
-0.158932
-0.126921
-0.136889
-0.073789
-0.0808852
-0.0539687
-0.0726921
-0.0449958
-0.0762601
-0.0387001
-0.0773746
-0.115571
-0.108579
-0.122218
-0.145343
-0.101945
-0.121177
-0.141319
-0.102916
-0.116473
-0.0834298
-0.113243
-0.0940537
-0.0691399
-0.130975
-0.0524611
-0.0429512
-0.0771415
-0.131047
-0.124343
-0.176704
-0.147719
-0.144979
-0.130517
-0.111399
-0.123027
-0.128956
-0.114246
-0.144697
-0.151619
-0.152812
-0.144751
-0.163976
-0.14189
-0.156259
-0.161799
-0.141235
-0.135991
-0.111169
-0.130225
-0.129776
-0.111955
-0.142644
-0.155825
-0.133533
-0.13588
-0.162533
-0.113875
-0.0852439
-0.137017
-0.147347
-0.0847016
-0.0690437
-0.0703061
-0.0627234
-0.063334
-0.0706641
-0.0638727
-0.0697082
-0.0708274
-0.0791473
-0.0790798
-0.0646154
-0.073743
-0.0743222
-0.0686126
-0.118489
-0.154896
-0.152101
-0.121131
-0.176945
-0.173447
-0.173087
-0.174302
-0.180777
-0.15762
-0.145275
-0.153659
-0.177113
-0.144366
-0.15624
-0.172924
-0.156232
-0.175246
-0.154184
-0.181084
-0.177035
-0.185195
-0.175676
-0.169852
-0.151959
-0.167459
-0.152896
-0.0851947
-0.0847569
-0.140629
-0.0827048
-0.0867793
-0.141376
-0.0844459
-0.0804026
-0.0713384
-0.0763338
-0.0788481
-0.0862047
-0.0751577
-0.0835804
-0.076796
-0.0709035
-0.078786
-0.0779793
-0.0752117
-0.0836994
-0.0861682
-0.0862168
-0.143663
-0.0879722
-0.0842477
-0.142409
-0.0861455
-0.0989104
-0.0763889
-0.0999266
-0.0757792
-0.0566033
-0.0730504
-0.0577049
-0.0729116
-0.0569194
-0.0795795
-0.0872936
-0.0833345
-0.097464
-0.100978
-0.085414
-0.101703
-0.0836687
-0.0685914
-0.0509813
-0.0533197
-0.0673984
-0.0880403
-0.0895504
-0.0803391
-0.0940418
-0.0848209
-0.0730071
-0.091417
-0.0716303
-0.0569878
-0.0550818
-0.077888
-0.0845728
-0.103154
-0.106568
-0.0831518
-0.137155
-0.137374
-0.135974
-0.160904
-0.137863
-0.133613
-0.159632
-0.152329
-0.156045
-0.146855
-0.162057
-0.146865
-0.156083
-0.158867
-0.141991
-0.147925
-0.130389
-0.134272
-0.136803
-0.156045
-0.144983
0.132624
0.0705893
0.103095
0.0910517
0.110597
0.11794
0.0858649
0.162641
0.204921
0.16781
0.143328
0.146022
0.177742
0.155921
0.169403
0.128183
0.0980967
0.111097
0.123174
0.181864
0.102101
-0.045223
-0.0754838
-0.490569
-0.0439124
-0.439106
-0.0891839
-0.0526032
-0.430724
-0.0964044
-0.0688476
-0.448651
-0.0929789
-0.0389036
-0.0141979
-0.0497204
-0.00925489
-0.183626
-0.0616361
0.0635434
0.199309
-0.0429285
0.124516
0.0385137
0.0461278
0.132425
-0.0415538
-0.387335
-0.088669
-0.33127
-0.0564337
-0.0758809
0.175352
0.1122
0.0984803
0.120252
0.17603
0.112737
0.112209
0.176052
0.115692
0.111042
0.0994711
0.174779
0.115167
0.112434
0.00679624
0.0336252
-0.00861833
-0.00191024
0.00871871
0.0275662
-0.00162104
0.0167514
0.0337628
0.0414593
0.0467447
0.0224819
0.041311
0.021941
0.010133
0.0316329
0.00561328
0.0268806
0.0109194
0.00818238
0.033024
0.00789472
0.0022903
0.0270525
-0.0127323
0.0298153
-0.00940383
0.00790379
-0.0892612
-0.10923
-0.107355
-0.0912132
-0.0593753
-0.0187957
-0.0239143
-0.0536366
-0.0631135
-0.0293957
-0.0269371
-0.0653153
-0.0855402
-0.106795
-0.106065
-0.0841096
-0.101304
-0.109325
-0.0905211
-0.059829
-0.106774
-0.104925
-0.0637915
-0.165036
-0.0937187
-0.112494
-0.162312
-0.205624
-0.233304
-0.204559
-0.2404
-0.162658
-0.119306
-0.121965
-0.15832
-0.208516
-0.248973
-0.211717
-0.244196
-0.106441
-0.0954805
-0.0950909
-0.138349
-0.15405
-0.131859
-0.153119
-0.131649
-0.134851
-0.153241
-0.126028
-0.119181
-0.0945491
-0.0948868
-0.0932689
-0.128752
-0.117449
-0.0929021
-0.0922591
-0.120541
-0.0976482
-0.109268
-0.0947566
-0.0958623
-0.0936983
-0.11556
0.0142167
0.033601
-0.0151822
0.0164232
0.0395143
-0.0575952
0.022273
0.0110772
0.0228529
0.00965586
0.0424268
-0.0126361
0.0216012
0.022547
-0.00239931
0.00550367
-0.00545877
0.00532256
0.0346837
-0.0181693
-0.0854252
-0.0765623
-0.0382809
-0.0947862
-0.113812
-0.0958707
-0.106879
-0.07585
-0.050966
-0.0431023
-0.0810362
-0.111202
-0.064773
-0.106722
-0.086567
-0.105747
-0.112282
-0.0637961
-0.0701479
-0.0337485
-0.0360776
-0.0695273
-0.0997321
-0.110225
-0.10839
-0.103268
-0.108023
-0.110891
-0.0614156
-0.0864513
-0.110166
-0.106371
-0.060885
-0.129954
-0.0892109
-0.0390451
-0.0400397
-0.153525
-0.189513
-0.240132
-0.162396
-0.250259
-0.123409
-0.033028
-0.0268835
-0.0735092
-0.0326622
-0.0708175
-0.202653
-0.251545
-0.211369
-0.253187
0.0134573
-0.0132225
0.0287468
-0.0032766
0.0271558
0.0165572
-0.0152563
0.0365614
0.046454
0.0771198
0.0564395
0.0576177
0.030291
0.0621229
0.0422771
0.0691026
0.0839488
0.075793
0.0679685
0.066117
0.0474822
0.0122427
-0.000661387
0.0287503
-0.0122682
0.0114964
0.0275583
-0.0150355
-0.0747812
-0.0449195
-0.038908
-0.0667319
-0.0680683
-0.0450367
-0.0757234
-0.109487
-0.142084
-0.110603
-0.148569
-0.105949
-0.110073
-0.142687
-0.0786905
-0.043192
-0.078174
-0.0495705
-0.0744324
-0.0486638
-0.0798933
-0.104748
-0.10044
-0.142872
-0.133019
-0.0981743
-0.106104
-0.137845
-0.12204
-0.120645
-0.121873
-0.121546
-0.123366
-0.0647362
-0.0870106
-0.0977592
-0.103325
-0.0690405
-0.115529
-0.109121
-0.0876299
-0.0989751
-0.0989938
-0.109447
-0.103423
-0.101434
-0.110475
-0.124426
-0.114269
-0.0915618
-0.0731877
-0.114223
-0.123972
-0.0719319
-0.123709
-0.10474
-0.121015
-0.109365
-0.100906
-0.0990027
-0.1508
-0.158396
-0.142859
-0.16145
-0.15139
-0.142816
-0.160367
-0.132369
-0.120335
-0.0962326
-0.0984238
-0.130822
-0.097872
-0.121395
-0.0946699
-0.0967277
-0.13361
-0.100414
-0.12259
-0.0995708
-0.134309
-0.0993867
-0.122177
-0.116617
-0.119855
-0.119731
-0.118021
-0.0960305
-0.0559555
-0.0776398
-0.0859393
-0.118394
-0.0679501
-0.108927
-0.0904212
-0.116348
-0.110835
-0.0694791
-0.102515
-0.0987891
-0.0895516
-0.107764
-0.112537
-0.112677
-0.1075
-0.115526
-0.121944
-0.113976
-0.0727592
-0.0918829
-0.122973
-0.112893
-0.0722016
0.0179084
-0.0152219
0.0274949
-0.0067312
0.0164063
-0.0145119
0.0276103
0.0487971
0.0789418
0.0897943
0.0584879
0.0793812
0.0624541
0.0475244
0.0500298
0.0673922
0.0777404
0.0907613
0.0797727
0.0485841
0.0663993
0.0163516
-0.00983973
-0.0177171
0.0221887
-0.0168357
0.0247715
0.0153756
-0.0717394
-0.0412616
-0.0327053
-0.0624207
-0.0435337
-0.0717908
-0.0671489
-0.10461
-0.225284
-0.153441
-0.116274
-0.196775
-0.0580849
-0.0299892
-0.0344477
-0.068613
-0.0629073
-0.0402442
-0.0661801
-0.0961647
-0.100268
-0.141085
-0.164257
-0.101935
-0.104942
-0.150331
0.0333268
0.00968322
8.63917e-05
0.0103224
0.0199825
0.0242239
0.00690967
0.0892002
0.167937
0.100821
0.0852543
0.154554
0.0689135
0.101871
0.0728907
0.0294511
0.109657
0.0698673
0.131193
0.0554189
0.0486998
0.0449761
0.0178905
0.049464
0.021993
0.0366414
0.0136425
0.0556653
-0.0266254
0.012698
0.00893594
-9.85086e-05
-0.0325005
-0.00610693
-0.0142027
-0.0470365
-0.0473126
-0.0501148
-0.00294933
-0.0172489
-0.00369246
0.024741
0.000845457
-0.0233302
0.0219604
-0.00789845
2.36228e-06
-0.0146873
0.0451657
-0.00719549
-0.000290318
-0.000137071
-0.0127539
0.00169418
-0.0113698
0.017348
0.0102601
0.00433294
0.0166852
-0.00072423
-0.0291638
-0.0200452
0.00580459
-0.00683399
-0.00161518
-0.0173851
-0.0127899
-0.0590883
-0.0514882
-0.0282185
-0.0554586
-0.017419
-0.0217447
-0.0506229
-0.011994
0.000827035
-0.0512
-0.0578114
-0.0208837
-0.0403367
-0.0985741
-0.137581
-0.120488
-0.143302
-0.116011
-0.108232
-0.131926
-0.0629449
-0.0408389
-0.0906997
-0.043986
-0.0792749
-0.033962
-0.0763022
-0.0873269
-0.0943922
-0.139045
-0.114497
-0.105591
-0.0738756
-0.124252
0.0134899
-0.00968533
-0.00660566
-0.132294
-0.108546
-0.11572
-0.119742
-0.136221
-0.115576
-0.108335
-0.14598
-0.118544
-0.140549
-0.103277
-0.129619
-0.15333
-0.114802
-0.0262117
-0.0291571
0.0144458
0.000438255
-0.00443708
-0.136131
-0.105355
-0.10697
-0.0961697
-0.129351
-0.116299
-0.110587
0.00171254
0.00115386
-0.00431953
0.00654714
0.00968652
-0.00830135
-0.00688722
0.017889
0.0397439
0.0267398
-0.0087977
0.0493705
-0.00154804
0.0128177
0.0250719
0.0203281
0.0759341
0.03675
0.0590365
0.038391
0.00690071
-0.00200542
0.00561857
-0.00214408
-0.0207857
-0.0101187
-0.011903
-0.00419009
0.0215156
0.024801
0.0383622
-0.111848
-0.364456
0.127848
0.0977504
-0.271847
0.0790195
-0.15024
-0.0483495
0.0362584
-0.0146436
-0.00492088
-0.0437155
-0.0223307
-0.0139111
-0.104354
-0.0698237
-0.126872
-0.0851749
-0.113209
-0.12278
-0.0604099
-0.0645204
0.0318155
0.0840009
-0.00494111
-0.123515
0.0569229
-0.0334713
0.0313063
0.0660373
0.0521029
-0.0810355
-0.0794867
-0.039413
-0.0759659
-0.0587349
-0.0959163
-0.0500287
-0.0180206
-0.00605706
0.00390197
-0.00958649
-0.00467907
-0.0265951
-0.00424915
-0.0388928
-0.0702433
-0.0219863
-0.0943829
-0.0264926
-0.0325065
-0.0785741
-0.0135786
0.00480042
0.000128726
-0.00715991
-0.00297238
0.000916531
-0.0148571
-0.0515863
-0.0737902
-0.103091
-0.114292
-0.0609644
-0.068365
-0.0902544
0.0747563
0.0416091
0.0626255
0.0386473
0.0655024
0.0779891
0.0382348
0.116583
0.174571
0.137261
0.0948265
0.181434
0.109882
0.102603
0.121624
0.107507
0.142487
0.177695
0.186749
0.106336
0.115051
0.0694613
0.0371833
0.0569783
0.028
0.0629201
0.0635412
0.0336786
-0.0111929
0.0113516
0.0171018
-0.00919498
-0.0119374
0.0188906
-0.0124989
-0.039711
-0.0692975
-0.0400401
-0.0651959
-0.0372916
-0.0388544
-0.0696948
-0.00917917
0.0113747
-0.014553
0.0239192
-0.0117762
-0.00791488
0.0214701
-0.0411578
-0.0355517
-0.0668632
-0.067426
-0.0379829
-0.0414825
-0.0697584
0.0474877
0.0791682
0.0792904
-0.15647
-0.0847741
-0.167541
-0.106111
-0.164278
-0.1654
-0.0851101
-0.150233
0.0300561
-0.112909
-0.043787
-0.120307
-0.145673
-0.0450538
-0.205857
-0.578782
0.114142
0.182301
-0.474293
0.115581
0.050073
0.0868775
0.0835036
-0.20124
0.116761
-0.420626
0.179127
-0.445255
-0.191689
0.114291
-0.155846
-0.16011
-0.107192
-0.0846505
-0.162939
-0.153674
-0.0848815
0.0239632
-0.00211493
0.000333269
-0.127643
-0.106417
-0.116651
-0.102293
-0.125734
-0.117917
-0.103998
-0.15702
-0.120933
-0.149604
-0.117198
-0.157216
-0.156618
-0.122106
-0.0254813
-0.0524715
-0.0225445
0.0248266
-0.000634622
0.00261708
-0.154346
-0.165805
-0.12097
-0.119068
-0.150405
-0.161866
-0.122109
-0.0277926
-0.0536516
-0.0254617
0.0844719
0.051094
0.0845944
-0.174609
-0.383369
0.173512
0.107749
-0.395994
-0.165134
0.11733
-0.137087
0.0307171
-0.108707
-0.0425271
-0.107254
-0.140994
-0.0414675
-0.142286
-0.0756679
-0.137403
-0.102835
-0.134526
-0.145484
-0.079911
-0.178509
0.12441
0.178527
-0.401262
-0.395089
0.122122
-0.18353
0.049627
0.0738175
0.0815398
-0.147052
-0.156282
-0.0835739
-0.105429
-0.150571
-0.151567
-0.0821925
0.101437
0.0288058
0.048131
0.035086
0.097243
0.0504945
0.0296224
0.100916
0.0291328
0.0470549
0.0340249
0.0925316
0.0521972
0.029784
-0.0171994
0.0131214
0.0149918
-0.010821
0.0101196
-0.0156977
-0.011074
-0.0348022
-0.059073
-0.0184105
-0.0455849
-0.0303873
-0.0283832
-0.0545056
-0.017495
0.0146562
0.00292429
-0.010305
-0.0162723
0.006728
-0.00918966
-0.0388916
-0.0381381
-0.0632809
-0.045561
-0.0421726
-0.0349111
-0.0555735
0.0496936
-0.00953525
0.0220377
0.024564
-0.0455738
-0.00616161
0.0562078
0.0479441
0.113583
0.0837208
0.0723838
0.0786346
0.0532791
0.0615434
0.0273264
-0.0454428
0.000798039
0.0626173
-0.00298292
0.0311517
0.0575446
-0.0593132
-0.0793785
-0.078266
-0.0687801
-0.0551683
-0.0723465
-0.0526202
-0.047061
-0.0489311
-0.0235531
-0.0431805
-0.0231619
-0.046846
-0.0491574
-0.0487259
-0.0548494
-0.0273897
-0.0459191
-0.0523078
-0.0241794
-0.050377
0.0582571
0.16363
0.0864705
0.0749907
0.0883155
0.0560926
0.0767334
0.0345467
0.0515248
0.00390119
-0.0437713
0.00518052
0.032346
0.0633336
0.03505
0.0026599
0.0641682
-0.0469255
0.033045
0.00495887
0.0651513
-0.0603912
-0.0835368
-0.0825155
-0.0704388
-0.0609353
-0.071909
-0.0568236
-0.0499278
-0.0495806
-0.0254529
-0.0495855
-0.0479296
-0.0288109
-0.0532088
-0.0522477
-0.0599173
-0.0353888
-0.0530409
-0.0543065
-0.0324455
-0.0548753
0.0108761
-0.127843
-0.0830274
-0.0198084
-0.018972
-0.0811546
0.00940858
0.0426997
0.0705852
0.0884073
-0.0435137
0.0937893
0.0414668
-0.0673322
0.0128363
-0.0155448
-0.0785386
-0.0446851
-0.0172097
0.0136753
-0.0674708
0.0242341
0.0446134
0.000948584
-0.0494069
0.0292206
-0.00429202
0.0231677
0.0406475
0.131016
0.0683302
-0.0305172
0.0673686
0.0376576
0.00950099
0.0184507
-0.013361
-0.0546534
-0.0342911
-0.00954236
0.0144373
0.00500456
0.0625379
-0.154266
-0.09348
-0.0788789
-0.152994
0.0699131
-0.049695
0.152201
0.0892979
0.0914839
0.0725773
0.0830656
-0.0555327
-0.0750594
-0.144747
0.0788484
-0.15163
0.073048
-0.0723972
-0.297969
-0.29168
-0.230043
-0.237023
-0.207394
-0.11384
-0.140814
-0.195064
-0.210595
-0.162765
-0.217699
-0.148404
-0.0655677
0.221591
0.0965743
0.0923481
0.112033
0.0918959
-0.0614678
-0.0792175
0.0587504
-0.095836
0.0744036
-0.115261
-0.0678549
-0.0792998
-0.141044
0.0791001
0.0772814
-0.0729051
-0.123201
-0.255728
-0.264734
-0.191545
-0.171872
-0.16984
-0.104347
-0.189649
-0.0816983
-0.162203
-0.068316
-0.137305
-0.0752552
0.0741523
-0.137421
-0.00786025
-0.0294943
-0.0990444
0.131891
0.108208
0.297326
-0.0811408
0.167214
0.176066
-0.112768
0.0822556
0.0640343
-0.053426
-0.0748397
-0.0357869
-0.0856739
0.0369824
-0.0246847
0.0473593
-0.0877146
-0.00647809
-0.0604279
-0.0713108
0.0285246
0.298852
-0.0720236
0.156804
0.158697
-0.0279812
0.0730618
-0.0110291
-0.0584789
-0.0657545
-0.0268898
-0.0693432
0.0276128
-0.0427201
-0.0724096
-0.0663801
-0.0523103
-0.0497747
-0.0591509
-0.0372097
-0.0254302
-0.00796134
0.00492215
-0.0306416
-0.00503101
-0.0155669
-0.0295248
-0.0331853
-0.049221
-0.0207801
-0.0386947
-0.0404598
-0.0130579
-0.0353301
0.0138487
-0.132882
-0.018855
-0.0904109
-0.0154764
0.0100375
-0.118699
0.0193445
-0.00360654
-0.0856774
-0.0728668
-0.0106394
0.0277661
-0.107836
0.048712
-0.0358808
0.027702
-0.0357507
0.0184495
0.0555739
-0.0408467
0.0426365
0.00254033
-0.044668
-0.0703426
0.0106791
0.0346604
-0.0457298
0.00549106
-0.0219788
-0.0300085
-0.00848514
0.0323179
-0.000752519
0.029749
0.00387799
0.00148838
0.0138116
0.0298792
-0.00633816
0.0231106
0.0294287
0.0114729
0.0371411
0.0383993
0.0367912
0.0190307
0.0303822
0.0304022
0.0659119
-0.03445
0.0345745
0.0308868
0.0593
0.0425013
0.0320955
0.0763895
0.0591742
0.0392417
0.061616
0.0503629
0.0858664
0.0457335
-0.188854
-0.194647
-0.125149
-0.134296
-0.0891843
0.0235884
0.0331356
-0.0807873
-0.0924027
-0.00258378
-0.103774
0.0297267
0.13824
-0.133823
-0.0025246
0.0118831
0.139647
-0.106049
0.0906999
0.0308039
-0.0688473
0.0206519
-0.0935504
0.0918313
0.0953651
-0.033216
0.0391249
-0.0221425
0.0390905
0.0936256
0.0931972
0.0327627
-0.0753752
-0.033426
0.0340901
0.0960601
-0.20236
-0.205308
-0.101067
-0.0766174
-0.0691843
-0.0161471
-0.0739921
-0.018683
-0.0685985
-0.0254708
-0.0709887
-0.0220422
0.0915886
-0.0431506
0.035788
0.0935935
0.033056
0.08572
0.0243772
0.0285166
0.0826446
0.0750174
0.0313344
0.0340523
0.0602539
0.112157
0.0574121
0.111087
0.0854654
0.137123
0.111531
0.173749
0.111506
0.0849539
0.1294
0.0850792
0.130973
0.109422
0.180754
0.0841785
0.110435
0.126889
0.0911792
0.0368502
0.0411373
0.0596312
0.0967136
0.0548431
0.103035
0.0799412
0.129723
0.110057
0.127869
0.0832224
0.107865
0.116632
0.0765527
0.111633
0.104342
0.129433
0.0730112
0.105877
0.114455
-0.16016
-0.157939
-0.121603
-0.122355
-0.0637475
-0.0295571
-0.000252368
-0.010478
-0.0547094
-0.0702129
-0.0349706
-0.0738364
-0.0222767
-0.141419
-0.144437
-0.0988775
-0.096167
-0.0409954
-0.0336289
0.00518226
-0.0481822
0.00529241
-0.039663
0.00211787
-0.0224068
-0.0401329
0.00302539
-0.245032
-0.222801
-0.20812
-0.229168
-0.209656
-0.202481
-0.201074
-0.189359
-0.17952
-0.21205
-0.187808
-0.161128
-0.166643
-0.153915
-0.171048
-0.150128
-0.144847
-0.182927
-0.221243
-0.235687
-0.235635
-0.220887
-0.206279
-0.204584
-0.191646
-0.219046
-0.218595
-0.20641
-0.201554
-0.191973
-0.197947
-0.235873
-0.225307
-0.221278
-0.271278
-0.238464
-0.244852
-0.199585
-0.230229
-0.255391
-0.274774
-0.229158
-0.227178
-0.220106
-0.244509
-0.215806
-0.239424
-0.264225
-0.29292
-0.212479
-0.226035
-0.212956
-0.234184
-0.20071
-0.256232
-0.220122
-0.247285
-0.245074
-0.249692
-0.223852
-0.247064
-0.156522
-0.187608
-0.157179
-0.168197
-0.150371
-0.177447
-0.170412
-0.149787
-0.170108
-0.162698
-0.189616
-0.179811
-0.15277
-0.167498
-0.148442
-0.238065
-0.183161
-0.196988
-0.168527
-0.184676
-0.171374
-0.258329
-0.2375
-0.221591
-0.264737
-0.18087
-0.252259
-0.212591
-0.246898
-0.251958
-0.221346
-0.23221
-0.265684
-0.258527
-0.204485
-0.196572
-0.169831
-0.177744
-0.254317
-0.154694
-0.24646
-0.216268
-0.251995
-0.22856
-0.224305
-0.261599
-0.254568
-0.282497
-0.234594
-0.265932
-0.245947
-0.193092
-0.26096
-0.238366
-0.250477
-0.217371
-0.203181
-0.221162
-0.194133
-0.220973
-0.201679
-0.199765
-0.283777
-0.235211
-0.223983
-0.278702
-0.229129
-0.249978
-0.239547
-0.214016
-0.240502
-0.1911
-0.186456
-0.27197
-0.175384
-0.216952
-0.309259
-0.203613
-0.252769
-0.221659
-0.287509
-0.20637
-0.168955
-0.196767
-0.185239
-0.194023
-0.177704
-0.208666
-0.301651
-0.290129
-0.237307
-0.18794
-0.208723
-0.184239
-0.202912
-0.186389
-0.184704
-0.229715
-0.240365
-0.209965
-0.232501
-0.201246
-0.178783
-0.172073
-0.160454
-0.16685
-0.154845
-0.150415
-0.203049
-0.188781
-0.202685
-0.20797
-0.230866
-0.178026
-0.178197
-0.242674
-0.16741
-0.23361
-0.239456
-0.216556
-0.21703
-0.215481
-0.282046
-0.235466
-0.224727
-0.216856
-0.237535
-0.209192
-0.219605
-0.204836
-0.216592
-0.216155
-0.200638
-0.216842
-0.204906
-0.214904
-0.204841
-0.21706
-0.33304
-0.268068
-0.318726
-0.309433
-0.337474
-0.25357
-0.214153
-0.241086
-0.213497
-0.236237
-0.264944
-0.211564
-0.268416
-0.309634
-0.244557
-0.315389
-0.270019
-0.319088
-0.262716
-0.274706
-0.276796
-0.216165
-0.204113
-0.250813
-0.278874
-0.216829
-0.22256
-0.239305
-0.281345
-0.243549
-0.21426
-0.247614
-0.235331
-0.214843
-0.204126
-0.243465
-0.224998
-0.196236
-0.21708
-0.237241
-0.217104
-0.207686
-0.193818
-0.217027
-0.204088
-0.219493
-0.215744
-0.218507
-0.231056
-0.216126
-0.216372
-0.212026
-0.215015
-0.214421
-0.214676
-0.213495
-0.25063
-0.226237
-0.222256
-0.229232
-0.280313
-0.269813
-0.350576
-0.292387
-0.296389
-0.252823
-0.340011
-0.236985
-0.231695
-0.261146
-0.274905
-0.348467
-0.316055
-0.227924
-0.223852
-0.327431
-0.345254
-0.227922
-0.228832
-0.228347
-0.228577
-0.238152
-0.242186
-0.263899
-0.269491
-0.249466
-0.239179
-0.267969
-0.250174
-0.253158
-0.303024
-0.257506
-0.302727
-0.250126
-0.260096
-0.274705
-0.277764
-0.262359
-0.246026
-0.297466
-0.248775
-0.296385
-0.260611
-0.257751
-0.22324
-0.21102
-0.254987
-0.261219
-0.261133
-0.230879
-0.20484
-0.260253
-0.261765
-0.204619
-0.259691
-0.233027
-0.205136
-0.188941
-0.197883
-0.21636
-0.206785
-0.192886
-0.213412
-0.190687
-0.188463
-0.20106
-0.209749
-0.258536
-0.217488
-0.268165
-0.207977
-0.269984
-0.234418
-0.198592
-0.204319
-0.192022
-0.189156
-0.19423
-0.200904
-0.199195
-0.19945
-0.220074
-0.200064
-0.215848
-0.194185
-0.241703
-0.204521
-0.20066
-0.191343
-0.190018
-0.195977
-0.196934
-0.196913
-0.197961
-0.270849
-0.229485
-0.210541
-0.210579
-0.197565
-0.214505
-0.218467
-0.222136
-0.243735
-0.220176
-0.200533
-0.220879
-0.217882
-0.25254
-0.232532
-0.250586
-0.277153
-0.236861
-0.216476
-0.223801
-0.242385
-0.284911
-0.250062
-0.212807
-0.231809
-0.294833
-0.222738
-0.283175
-0.259326
-0.267324
-0.199065
-0.218706
-0.214319
-0.234045
-0.236074
-0.209331
-0.288681
-0.30997
-0.277215
-0.315487
-0.29969
-0.21031
-0.280946
-0.245848
-0.301751
-0.278388
-0.219419
-0.329401
-0.30644
-0.337693
-0.321462
-0.30794
-0.333965
-0.205005
-0.194361
-0.200817
-0.209043
-0.19383
-0.210344
-0.206618
-0.205647
-0.211803
-0.214727
-0.191436
-0.222021
-0.201811
-0.190092
-0.212572
-0.217487
-0.270803
-0.246436
-0.239492
-0.20462
-0.223839
-0.204186
-0.203454
-0.19756
-0.205769
-0.202419
-0.194786
-0.208932
-0.21416
-0.232035
-0.245445
-0.274407
-0.225457
-0.283354
-0.294485
-0.280511
-0.22659
-0.277062
-0.28309
-0.283125
-0.272286
-0.211234
-0.224806
-0.236124
-0.226099
-0.210972
-0.221305
-0.216198
-0.224309
-0.222225
-0.221629
-0.211564
-0.216759
-0.275054
-0.248364
-0.243008
-0.204738
-0.2221
-0.198329
-0.196558
-0.195845
-0.193598
-0.19908
-0.19053
-0.197199
-0.198697
-0.189046
-0.19171
-0.197465
-0.195722
-0.188918
-0.203213
-0.20467
-0.21929
-0.215784
-0.191749
-0.225692
-0.190379
-0.201255
-0.247587
-0.24491
-0.235002
-0.24004
-0.223449
-0.253966
-0.29932
-0.260956
-0.251461
-0.259421
-0.22049
-0.254686
-0.280788
-0.247372
-0.214551
-0.275523
-0.237266
-0.279999
-0.223129
-0.240581
-0.23953
-0.22135
-0.278878
-0.202612
-0.246597
-0.210189
-0.270303
-0.23712
-0.195923
-0.209824
-0.218913
-0.224627
-0.240646
-0.216583
-0.221354
-0.204462
-0.188306
-0.198607
-0.202755
-0.2149
-0.211123
-0.226582
-0.243626
-0.245212
-0.294988
-0.292631
-0.262466
-0.273978
-0.227561
-0.256867
-0.24784
-0.26462
-0.254291
-0.264717
-0.25277
-0.322379
-0.293288
-0.273299
-0.262754
-0.331926
-0.283065
-0.249071
-0.277201
-0.259433
-0.285271
-0.251121
-0.242907
-0.247017
-0.238309
-0.235502
-0.260112
-0.287462
-0.263199
-0.257999
-0.244077
-0.294397
-0.237607
-0.24688
-0.252152
-0.228118
-0.253005
-0.233822
-0.22812
-0.250183
-0.245012
-0.252501
-0.245193
-0.29335
-0.348283
-0.28188
-0.261051
-0.341242
-0.338659
-0.263503
-0.353052
-0.282181
-0.344312
-0.352678
-0.254352
-0.282176
-0.250926
-0.249187
-0.283201
-0.25674
-0.274623
-0.261537
-0.259557
-0.246953
-0.261598
-0.269724
-0.261882
-0.259492
-0.255736
-0.252793
-0.253158
-0.254929
-0.249508
-0.255179
-0.243695
-0.258814
-0.254019
-0.269317
-0.243808
-0.258106
-0.24842
-0.251229
-0.247535
-0.254956
-0.244901
-0.255806
-0.244819
-0.24672
-0.250475
-0.287648
-0.33948
-0.318291
-0.299735
-0.330169
-0.255426
-0.246986
-0.245537
-0.265662
-0.267867
-0.285058
-0.28047
-0.260924
-0.29472
-0.264559
-0.263665
-0.253762
-0.240875
-0.260813
-0.249609
-0.257176
-0.252871
-0.238265
-0.273691
-0.281547
-0.294356
-0.269952
-0.297493
-0.26702
-0.276628
-0.250865
-0.250694
-0.233485
-0.245635
-0.249267
-0.253656
-0.23577
-0.377718
-0.327738
-0.36858
-0.320149
-0.379906
-0.29651
-0.307214
-0.306457
-0.315204
-0.300806
-0.312888
-0.328119
-0.300724
-0.302746
-0.320906
-0.317944
-0.287185
-0.361867
-0.292326
-0.362426
-0.327864
-0.31125
-0.308215
-0.294606
-0.319118
-0.293373
-0.322055
-0.33465
-0.304036
-0.285659
-0.293067
-0.290055
-0.296464
-0.29969
-0.299002
-0.330291
-0.329626
-0.345121
-0.311743
-0.383024
-0.255085
-0.300162
-0.263875
-0.320572
-0.267849
-0.304816
-0.257223
-0.25205
-0.235353
-0.238154
-0.246503
-0.251044
-0.238745
-0.241019
-0.246636
-0.250125
-0.235622
-0.237201
-0.250771
-0.246851
-0.234362
-0.273425
-0.356406
-0.343792
-0.297759
-0.353655
-0.270388
-0.279762
-0.282351
-0.279846
-0.278029
-0.281769
-0.284936
-0.276637
-0.27882
-0.258192
-0.261949
-0.277558
-0.265113
-0.275334
-0.257188
-0.270225
-0.350388
-0.334876
-0.279477
-0.287769
-0.297427
-0.351233
-0.339279
-0.279163
-0.288982
-0.281981
-0.278227
-0.292974
-0.272994
-0.282535
-0.287206
-0.274893
-0.295276
-0.285747
-0.286496
-0.282638
-0.28739
-0.296579
-0.28326
-0.331705
-0.301239
-0.272865
-0.294261
-0.293585
-0.302237
-0.332139
-0.331216
-0.292726
-0.273888
-0.305378
-0.293131
-0.330966
-0.303587
-0.293564
-0.284356
-0.290176
-0.27816
-0.288547
-0.278812
-0.290301
-0.29716
-0.278773
-0.28597
-0.286207
-0.287417
-0.286225
-0.296549
-0.325496
-0.309234
-0.293834
-0.280241
-0.324324
-0.293064
-0.307986
-0.296615
-0.278933
-0.291546
-0.287968
-0.298331
-0.287709
-0.286458
-0.327124
-0.292851
-0.278691
-0.305933
-0.293025
-0.3288
-0.306826
-0.305925
-0.284705
-0.282388
-0.286187
-0.284247
-0.296287
-0.283616
-0.36764
-0.348511
-0.302825
-0.330727
-0.277261
-0.282588
-0.297704
-0.275207
-0.307947
-0.297926
-0.372715
-0.378483
-0.356147
-0.294317
-0.349819
-0.295306
-0.31251
-0.304306
-0.31151
-0.360703
-0.292313
-0.319859
-0.301462
-0.313386
-0.291285
-0.366067
-0.313432
-0.245081
-0.279415
-0.241945
-0.319333
-0.278801
-0.230306
-0.313437
-0.260419
-0.282714
-0.254754
-0.318826
-0.247264
-0.277021
-0.267644
-0.246335
-0.256985
-0.238314
-0.274398
-0.242711
-0.258796
-0.230144
-0.242319
-0.26995
-0.220494
-0.255511
-0.253101
-0.221069
-0.246673
-0.229299
-0.241968
-0.260963
-0.314375
-0.256074
-0.322795
-0.248404
-0.229223
-0.219336
-0.253926
-0.242883
-0.245619
-0.23512
-0.225807
-0.23209
-0.234544
-0.246532
-0.246389
-0.244114
-0.232757
-0.237883
-0.239552
-0.319112
-0.262344
-0.261194
-0.263377
-0.258957
-0.260527
-0.25899
-0.253247
-0.232503
-0.254613
-0.247077
-0.225701
-0.263731
-0.250686
-0.308588
-0.242704
-0.270277
-0.240863
-0.24688
-0.273092
-0.271064
-0.273804
-0.310658
-0.251209
-0.307475
-0.222172
-0.227069
-0.233628
-0.228742
-0.229003
-0.232879
-0.219239
-0.308327
-0.220572
-0.246498
-0.224118
-0.234471
-0.223768
-0.239648
-0.236845
-0.261659
-0.31048
-0.316127
-0.237636
-0.268658
-0.23335
-0.244731
-0.242888
-0.304332
-0.217601
-0.232757
-0.241807
-0.227452
-0.243216
-0.227183
-0.243267
-0.229991
-0.249696
-0.245282
-0.24746
-0.24558
-0.258422
-0.262592
-0.263274
-0.264394
-0.24815
-0.245263
-0.243062
-0.251614
-0.288286
-0.270555
-0.285304
-0.290067
-0.295606
-0.282831
-0.271522
-0.297995
-0.279461
-0.30693
-0.370608
-0.321101
-0.290401
-0.294935
-0.302329
-0.309694
-0.361005
-0.368566
-0.316993
-0.321724
-0.303087
-0.286648
-0.292312
-0.284659
-0.288446
-0.289734
-0.292094
-0.286685
-0.281139
-0.275426
-0.284008
-0.270513
-0.280767
-0.287269
-0.272722
-0.286688
-0.292761
-0.286682
-0.292541
-0.289572
-0.286826
-0.293551
-0.314446
-0.289887
-0.28746
-0.298935
-0.300257
-0.294671
-0.357511
-0.298275
-0.275497
-0.280318
-0.285552
-0.288748
-0.290772
-0.289719
-0.308834
-0.29752
-0.36246
-0.27824
-0.31881
-0.288899
-0.324556
-0.288315
-0.295845
-0.325675
-0.34005
-0.31555
-0.295544
-0.282375
-0.27956
-0.265931
-0.281561
-0.268934
-0.280195
-0.279017
-0.266785
-0.288611
-0.294143
-0.304965
-0.289112
-0.303447
-0.28671
-0.289838
-0.289585
-0.297013
-0.301931
-0.305363
-0.295362
-0.300972
-0.291813
-0.285506
-0.285612
-0.289952
-0.27862
-0.29129
-0.284687
-0.279195
-0.294035
-0.350242
-0.320701
-0.291193
-0.300774
-0.316796
-0.290086
-0.372686
-0.327535
-0.37021
-0.329131
-0.342763
-0.308195
-0.321581
-0.338813
-0.345944
-0.350224
-0.350439
-0.338011
-0.353027
-0.344724
-0.341223
-0.323209
-0.365287
-0.354201
-0.330294
-0.373622
-0.329419
-0.371415
-0.326875
-0.371633
-0.394879
-0.389548
-0.392343
-0.370567
-0.296035
-0.288017
-0.295948
-0.280761
-0.288991
-0.290963
-0.281307
-0.361696
-0.302226
-0.362585
-0.333693
-0.321031
-0.33699
-0.386388
-0.311202
-0.38068
-0.321579
-0.304504
-0.383443
-0.28893
-0.371307
-0.360686
-0.324879
-0.37616
-0.262777
-0.368046
-0.311688
-0.368125
-0.292131
-0.295655
-0.304101
-0.309672
-0.291228
-0.296108
-0.30436
-0.284885
-0.276832
-0.282708
-0.28496
-0.281039
-0.284462
-0.286027
-0.291041
-0.303486
-0.308361
-0.294839
-0.29424
-0.30301
-0.291841
-0.326177
-0.32521
-0.375812
-0.299679
-0.375645
-0.326529
-0.298866
-0.330514
-0.374714
-0.328384
-0.315001
-0.372463
-0.3138
-0.331392
-0.330921
-0.31327
-0.368324
-0.329025
-0.370854
-0.330289
-0.314174
-0.332578
-0.361196
-0.316481
-0.327722
-0.334617
-0.363416
-0.315101
-0.329013
-0.327481
-0.376346
-0.301188
-0.376977
-0.327943
-0.302105
-0.330866
-0.313976
-0.327073
-0.366812
-0.364631
-0.313529
-0.330966
-0.287279
-0.272987
-0.283103
-0.28068
-0.286018
-0.280699
-0.285674
-0.291818
-0.287794
-0.30629
-0.30433
-0.288356
-0.30309
-0.2928
-0.292354
-0.302639
-0.292095
-0.308452
-0.292766
-0.291138
-0.30353
-0.280057
-0.284021
-0.278722
-0.28802
-0.278869
-0.286179
-0.280096
-0.285284
-0.283793
-0.301504
-0.298834
-0.287955
-0.286553
-0.293278
-0.285428
-0.289722
-0.297426
-0.302194
-0.293723
-0.285756
-0.29135
-0.274395
-0.264574
-0.270515
-0.273064
-0.265748
-0.275719
-0.26918
-0.299655
-0.301796
-0.36034
-0.271122
-0.353979
-0.30669
-0.282675
-0.283646
-0.284011
-0.272717
-0.289225
-0.285593
-0.279506
-0.2909
-0.282543
-0.289011
-0.279982
-0.291391
-0.280628
-0.295559
-0.281193
-0.287272
-0.311613
-0.290087
-0.278621
-0.308065
-0.280811
-0.28858
-0.28722
-0.28703
-0.301476
-0.295744
-0.306003
-0.286343
-0.283859
-0.315529
-0.328625
-0.32217
-0.32165
-0.305882
-0.367573
-0.304251
-0.297178
-0.252073
-0.35716
-0.266611
-0.317989
-0.307107
-0.263351
-0.312284
-0.289758
-0.307733
-0.303698
-0.364627
-0.297554
-0.297279
-0.392429
-0.370636
-0.390458
-0.332409
-0.313728
-0.333379
-0.288098
-0.309117
-0.314492
-0.3149
-0.329531
-0.332102
-0.362875
-0.287982
-0.301983
-0.30787
-0.373311
-0.294014
-0.31571
-0.320417
-0.349845
-0.303248
-0.281235
-0.30645
-0.304172
-0.340548
-0.322459
-0.320564
-0.313979
-0.299821
-0.329785
-0.29836
-0.329647
-0.314887
-0.297581
-0.321963
-0.349959
-0.33454
-0.313954
-0.351323
-0.314723
-0.320955
-0.322966
-0.314621
-0.351101
-0.333411
-0.350709
-0.324076
-0.314005
-0.313737
-0.301336
-0.328222
-0.29899
-0.329677
-0.315202
-0.299321
-0.321846
-0.314357
-0.331653
-0.349476
-0.349099
-0.312464
-0.32429
-0.294483
-0.301419
-0.31811
-0.308266
-0.300519
-0.307706
-0.294797
-0.299539
-0.328859
-0.30728
-0.368433
-0.386355
-0.308851
-0.373654
-0.328468
-0.359464
-0.325762
-0.334783
-0.309939
-0.328952
-0.379648
-0.378329
-0.414655
-0.380576
-0.420994
-0.422233
-0.372196
-0.421478
-0.426454
-0.365807
-0.426422
-0.330507
-0.381061
-0.381547
-0.363558
-0.423106
-0.423476
-0.372364
-0.293036
-0.391734
-0.304145
-0.381573
-0.386913
-0.296672
-0.385082
-0.401419
-0.364325
-0.399174
-0.387683
-0.337994
-0.340063
-0.351739
-0.338368
-0.295946
-0.300249
-0.348277
-0.266631
-0.263957
-0.270842
-0.267562
-0.267975
-0.283101
-0.243195
-0.275162
-0.267004
-0.346815
-0.26565
-0.328797
-0.253891
-0.309566
-0.325452
-0.310995
-0.315935
-0.356637
-0.302245
-0.298162
-0.344732
-0.37532
-0.325508
-0.323858
-0.361622
-0.374889
-0.323948
-0.3612
-0.337299
-0.286962
-0.295506
-0.301411
-0.304315
-0.333689
-0.303988
-0.266399
-0.292141
-0.268527
-0.258968
-0.335406
-0.326078
-0.283286
-0.268075
-0.34484
-0.338561
-0.331394
-0.321887
-0.292738
-0.337376
-0.306927
-0.284991
-0.299705
-0.29979
-0.305984
-0.338167
-0.375377
-0.328086
-0.3251
-0.361948
-0.375877
-0.326149
-0.362037
-0.335754
-0.299144
-0.282469
-0.303572
-0.296303
-0.336517
-0.304407
-0.258681
-0.297353
-0.263991
-0.266803
-0.268771
-0.289313
-0.250889
-0.244653
-0.265932
-0.271721
-0.273959
-0.261398
-0.249767
-0.276156
-0.250107
-0.28122
-0.26452
-0.274162
-0.263943
-0.25292
-0.279683
-0.346092
-0.317435
-0.295754
-0.312709
-0.316158
-0.311457
-0.346948
-0.382621
-0.338107
-0.333172
-0.369537
-0.334393
-0.38196
-0.369842
-0.345109
-0.30837
-0.294187
-0.313232
-0.314526
-0.309823
-0.344126
-0.245748
-0.275318
-0.26404
-0.273295
-0.26253
-0.268492
-0.249622
-0.267395
-0.271258
-0.280705
-0.289913
-0.269465
-0.288063
-0.270794
-0.262849
-0.283764
-0.266595
-0.27914
-0.268128
-0.258314
-0.285846
-0.340713
-0.308096
-0.288098
-0.302071
-0.309312
-0.339814
-0.303227
-0.380129
-0.333467
-0.331898
-0.367953
-0.330836
-0.380484
-0.36763
-0.341883
-0.306476
-0.289915
-0.311984
-0.310749
-0.305269
-0.342604
-0.396934
-0.317736
-0.324662
-0.31109
-0.33304
-0.290834
-0.312296
-0.332458
-0.392478
-0.398112
-0.348287
-0.39862
-0.329592
-0.342429
-0.317257
-0.367706
-0.349137
-0.331486
-0.33491
-0.334315
-0.334255
-0.348343
-0.310225
-0.398382
-0.337704
-0.401807
-0.328131
-0.352885
-0.34575
-0.375006
-0.330554
-0.332028
-0.300788
-0.313285
-0.310114
-0.331746
-0.31405
-0.310536
-0.39521
-0.336004
-0.33673
-0.342446
-0.365404
-0.338344
-0.369868
-0.362922
-0.374426
-0.32861
-0.335837
-0.359311
-0.379978
-0.328034
-0.440656
-0.379773
-0.407907
-0.383795
-0.379155
-0.334372
-0.403393
-0.345085
-0.382112
-0.400458
-0.333627
-0.333649
-0.296745
-0.31295
-0.311299
-0.334429
-0.312019
-0.309949
-0.372485
-0.385532
-0.343141
-0.330649
-0.391756
-0.368515
-0.331646
-0.359126
-0.406895
-0.38799
-0.322468
-0.32234
-0.334178
-0.32183
-0.336983
-0.327702
-0.320148
-0.339349
-0.329506
-0.345299
-0.352489
-0.386235
-0.333078
-0.337691
-0.338751
-0.337588
-0.336315
-0.341294
-0.376434
-0.348217
-0.350872
-0.3474
-0.408452
-0.404355
-0.342507
-0.332342
-0.33879
-0.349406
-0.334682
-0.341211
-0.364288
-0.371416
-0.348967
-0.330943
-0.338806
-0.354566
-0.344691
-0.355825
-0.336118
-0.319317
-0.337685
-0.378311
-0.374164
-0.334944
-0.344245
-0.346959
-0.397741
-0.327145
-0.323792
-0.326327
-0.330037
-0.328549
-0.327551
-0.328906
-0.32046
-0.347844
-0.390739
-0.387647
-0.325612
-0.319924
-0.342379
-0.330148
-0.36026
-0.324628
-0.331634
-0.342095
-0.347781
-0.348269
-0.338599
-0.384668
-0.36347
-0.352915
-0.387621
-0.416679
-0.408395
-0.421187
-0.408681
-0.341122
-0.351776
-0.35501
-0.407931
-0.373226
-0.345071
-0.356276
-0.360934
-0.349191
-0.350702
-0.367329
-0.364235
-0.350523
-0.363971
-0.344587
-0.335422
-0.344334
-0.343847
-0.337106
-0.347542
-0.344607
-0.378772
-0.439196
-0.377436
-0.399355
-0.418359
-0.412982
-0.419722
-0.411009
-0.406027
-0.357795
-0.410619
-0.363051
-0.312391
-0.307227
-0.290742
-0.326423
-0.28751
-0.321629
-0.320558
-0.328654
-0.31967
-0.348414
-0.334384
-0.385817
-0.329136
-0.301147
-0.384861
-0.334247
-0.347738
-0.344634
-0.393294
-0.363705
-0.34186
-0.410161
-0.387921
-0.359245
-0.360513
-0.386958
-0.353365
-0.345029
-0.337908
-0.339838
-0.338101
-0.344466
-0.355048
-0.367791
-0.350061
-0.350377
-0.369548
-0.365982
-0.350754
-0.371311
-0.423242
-0.421952
-0.424659
-0.419303
-0.350871
-0.33192
-0.337238
-0.343003
-0.33498
-0.348411
-0.343473
-0.389421
-0.362798
-0.362373
-0.390193
-0.421665
-0.415069
-0.420513
-0.416877
-0.342941
-0.352354
-0.343161
-0.351698
-0.33491
-0.344296
-0.326485
-0.338788
-0.321271
-0.324731
-0.323572
-0.317898
-0.323362
-0.319809
-0.322443
-0.32462
-0.326659
-0.331756
-0.331026
-0.327145
-0.323493
-0.332658
-0.327468
-0.335959
-0.329086
-0.333012
-0.328376
-0.328947
-0.334712
-0.338028
-0.333664
-0.337727
-0.33708
-0.341233
-0.349721
-0.341929
-0.350244
-0.399062
-0.368894
-0.369975
-0.396917
-0.439951
-0.438202
-0.442235
-0.434637
-0.363382
-0.349335
-0.342164
-0.346907
-0.348794
-0.345627
-0.364208
-0.380717
-0.356697
-0.357523
-0.384332
-0.357658
-0.377775
-0.386455
-0.362448
-0.346117
-0.343178
-0.350656
-0.350145
-0.347218
-0.36033
-0.404394
-0.373822
-0.372573
-0.405838
-0.435752
-0.435101
-0.433422
-0.436622
-0.344769
-0.353452
-0.344243
-0.3541
-0.326544
-0.323905
-0.324731
-0.321242
-0.32558
-0.322601
-0.324854
-0.331614
-0.332959
-0.33573
-0.336932
-0.33192
-0.336509
-0.331966
-0.339641
-0.337305
-0.336474
-0.34018
-0.331768
-0.336788
-0.330214
-0.335476
-0.331047
-0.330374
-0.337862
-0.33862
-0.336387
-0.33538
-0.338457
-0.345845
-0.356292
-0.355408
-0.346333
-0.394685
-0.367646
-0.366792
-0.395528
-0.357744
-0.345387
-0.340374
-0.341514
-0.347493
-0.35628
-0.342975
-0.377176
-0.355177
-0.356719
-0.38415
-0.35633
-0.377643
-0.38387
-0.429618
-0.427384
-0.427904
-0.43012
-0.359273
-0.345642
-0.34159
-0.349538
-0.348828
-0.344622
-0.360073
-0.393193
-0.364422
-0.392075
-0.365327
-0.431269
-0.433351
-0.432011
-0.432509
-0.332841
-0.342533
-0.370525
-0.31601
-0.377237
-0.381514
-0.367433
-0.325612
-0.325654
-0.378346
-0.346159
-0.326124
-0.31935
-0.311868
-0.315824
-0.38789
-0.330066
-0.31815
-0.298512
-0.381423
-0.353103
-0.316658
-0.375771
-0.357678
-0.401875
-0.370967
-0.406933
-0.342781
-0.380648
-0.363782
-0.340338
-0.333677
-0.346319
-0.331161
-0.353941
-0.332127
-0.370585
-0.403151
-0.367268
-0.369578
-0.407108
-0.352406
-0.377817
-0.339496
-0.332621
-0.375363
-0.362703
-0.333102
-0.362922
-0.333264
-0.380962
-0.337624
-0.383733
-0.334488
-0.361719
-0.333149
-0.360514
-0.332858
-0.317484
-0.388978
-0.335594
-0.348232
-0.356831
-0.368674
-0.310732
-0.30328
-0.295231
-0.291701
-0.299201
-0.303668
-0.296168
-0.300823
-0.30644
-0.304736
-0.298777
-0.294719
-0.317061
-0.304873
-0.297042
-0.311765
-0.338072
-0.316724
-0.31037
-0.336103
-0.317286
-0.305537
-0.34505
-0.342741
-0.340195
-0.256058
-0.364792
-0.305033
-0.303731
-0.346027
-0.382749
-0.374061
-0.30948
-0.375511
-0.321204
-0.313107
-0.364492
-0.302088
-0.32287
-0.317475
-0.356736
-0.311388
-0.25406
-0.27566
-0.29571
-0.274731
-0.299021
-0.301002
-0.359513
-0.326517
-0.310108
-0.420257
-0.392773
-0.352912
-0.366463
-0.475154
-0.581197
-0.647857
-0.559203
-0.506374
-0.527931
-0.379476
-0.327385
-0.308196
-0.405596
-0.367082
-0.390642
-0.435865
-0.55471
-0.608101
-0.467901
-0.540331
-0.430178
-0.481569
-0.312244
-0.375211
-0.354724
-0.321033
-0.374161
-0.295049
-0.309211
-0.2996
-0.308426
-0.294096
-0.295361
-0.298572
-0.293975
-0.296914
-0.303055
-0.317166
-0.30839
-0.369499
-0.315341
-0.297675
-0.42114
-0.31854
-0.365696
-0.425904
-0.433964
-0.472585
-0.571393
-0.625029
-0.567151
-0.436719
-0.469674
-0.37394
-0.308255
-0.325546
-0.435912
-0.322468
-0.431234
-0.377245
-0.430659
-0.558308
-0.465987
-0.619128
-0.428994
-0.562214
-0.466659
-0.289759
-0.297338
-0.240692
-0.240396
-0.248867
-0.287319
-0.295196
-0.296303
-0.351313
-0.297598
-0.287826
-0.312013
-0.297687
-0.286044
-0.294196
-0.27113
-0.30183
-0.296445
-0.304947
-0.281152
-0.29019
-0.29107
-0.237457
-0.263357
-0.293601
-0.293381
-0.255507
-0.293786
-0.392991
-0.338776
-0.358286
-0.457552
-0.461533
-0.341414
-0.390379
-0.453638
-0.49483
-0.601319
-0.666859
-0.598179
-0.45657
-0.491582
-0.394843
-0.363532
-0.469368
-0.346533
-0.465425
-0.343336
-0.397978
-0.451954
-0.591142
-0.662165
-0.486901
-0.594849
-0.449536
-0.489619
-0.283871
-0.299482
-0.233471
-0.265693
-0.28557
-0.302265
-0.226595
-0.283386
-0.291139
-0.276269
-0.239778
-0.29254
-0.246816
-0.281337
-0.285983
-0.262712
-0.295403
-0.281092
-0.294133
-0.28818
-0.254416
-0.281919
-0.275543
-0.307512
-0.215211
-0.30427
-0.220518
-0.280858
-0.385527
-0.336601
-0.343669
-0.453469
-0.334013
-0.388186
-0.449692
-0.442216
-0.475792
-0.576249
-0.641856
-0.439581
-0.580223
-0.478716
-0.382826
-0.336584
-0.328186
-0.440894
-0.380018
-0.331219
-0.445458
-0.444885
-0.58703
-0.484401
-0.646211
-0.447385
-0.583468
-0.481628
-0.260258
-0.255033
-0.277686
-0.212551
-0.27768
-0.214493
-0.260835
-0.246885
-0.246658
-0.180301
-0.181969
-0.247845
-0.174905
-0.249354
-0.261403
-0.257805
-0.279344
-0.22564
-0.26301
-0.278456
-0.219542
-0.246439
-0.171353
-0.19231
-0.256248
-0.171052
-0.248129
-0.251906
-0.299675
-0.289008
-0.30258
-0.272413
-0.297899
-0.300857
-0.28891
-0.307502
-0.315008
-0.361984
-0.325178
-0.32819
-0.316775
-0.305406
-0.310524
-0.336998
-0.363116
-0.319779
-0.332819
-0.311936
-0.318973
-0.29634
-0.266323
-0.290969
-0.282094
-0.29305
-0.285212
-0.294277
-0.216462
-0.215799
-0.197801
-0.238028
-0.303485
-0.282508
-0.289834
-0.305476
-0.290316
-0.308147
-0.302459
-0.315638
-0.321222
-0.348377
-0.363024
-0.316315
-0.345943
-0.321301
-0.304472
-0.284457
-0.291651
-0.312078
-0.30519
-0.291037
-0.310151
-0.314657
-0.340178
-0.363461
-0.320758
-0.343358
-0.313624
-0.321015
-0.267831
-0.2782
-0.215245
-0.249662
-0.263043
-0.28001
-0.220275
-0.272457
-0.283631
-0.238315
-0.282846
-0.272636
-0.277097
-0.277747
-0.260339
-0.17715
-0.260907
-0.232351
-0.251678
-0.197144
-0.269324
-0.267255
-0.247711
-0.273485
-0.304354
-0.276112
-0.246443
-0.274422
-0.324712
-0.332245
-0.357217
-0.388221
-0.32207
-0.336319
-0.359488
-0.293937
-0.267196
-0.232586
-0.292772
-0.264596
-0.288218
-0.296686
-0.292056
-0.278219
-0.260173
-0.223585
-0.262709
-0.28942
-0.283407
-0.32654
-0.390883
-0.343466
-0.363299
-0.339935
-0.36096
-0.329167
-0.433622
-0.391914
-0.436556
-0.519886
-0.518464
-0.389564
-0.435564
-0.486228
-0.526035
-0.642526
-0.742471
-0.644845
-0.485112
-0.527225
-0.432295
-0.433839
-0.51428
-0.385921
-0.51638
-0.38783
-0.430896
-0.48733
-0.647604
-0.746355
-0.529937
-0.647055
-0.488929
-0.528482
-0.31705
-0.32829
-0.355382
-0.378814
-0.319935
-0.324075
-0.352688
-0.2826
-0.252939
-0.185258
-0.257466
-0.254339
-0.262452
-0.280394
-0.284665
-0.273073
-0.258265
-0.19439
-0.255985
-0.28736
-0.26769
-0.314766
-0.375414
-0.315723
-0.348384
-0.319817
-0.350625
-0.312321
-0.438046
-0.393391
-0.44375
-0.521355
-0.395282
-0.43663
-0.523627
-0.491383
-0.533131
-0.654189
-0.756436
-0.653185
-0.492763
-0.532293
-0.438797
-0.445709
-0.398359
-0.52656
-0.396385
-0.525043
-0.440493
-0.490845
-0.64896
-0.530805
-0.75478
-0.489722
-0.651908
-0.531907
-0.3336
-0.368045
-0.351499
-0.398609
-0.350302
-0.334991
-0.366698
-0.300841
-0.268973
-0.24938
-0.296321
-0.271593
-0.298434
-0.30002
-0.302221
-0.305059
-0.254094
-0.276319
-0.273512
-0.302819
-0.304096
-0.332657
-0.397608
-0.345986
-0.36446
-0.330668
-0.348695
-0.366079
-0.443912
-0.402216
-0.452586
-0.530316
-0.530786
-0.40272
-0.443431
-0.492681
-0.524846
-0.649583
-0.750742
-0.653821
-0.491346
-0.528341
-0.444159
-0.453587
-0.53099
-0.402206
-0.530849
-0.402433
-0.444438
-0.493154
-0.654871
-0.752037
-0.529875
-0.655165
-0.493346
-0.529338
-0.251393
-0.321992
-0.334113
-0.368452
-0.350351
-0.39971
-0.335291
-0.368519
-0.350693
-0.306544
-0.292293
-0.223933
-0.269723
-0.284287
-0.291431
-0.30864
-0.30415
-0.304059
-0.278684
-0.258927
-0.282623
-0.304675
-0.30081
-0.333617
-0.399484
-0.367593
-0.340686
-0.367562
-0.346459
-0.336897
-0.442413
-0.401971
-0.451678
-0.530721
-0.400937
-0.443318
-0.529785
-0.493998
-0.533452
-0.655006
-0.761555
-0.493204
-0.657383
-0.533967
-0.442196
-0.450997
-0.399213
-0.527412
-0.44111
-0.400547
-0.529388
-0.493745
-0.656233
-0.531142
-0.759076
-0.493797
-0.656818
-0.532889
-0.309408
-0.332471
-0.302574
-0.325681
-0.310754
-0.305611
-0.331752
-0.291325
-0.278606
-0.266281
-0.284658
-0.290447
-0.266794
-0.286244
-0.300987
-0.317655
-0.329545
-0.329947
-0.315943
-0.301396
-0.329877
-0.217621
-0.166562
-0.162989
-0.218665
-0.274893
-0.211376
-0.210664
-0.169921
-0.164682
-0.197925
-0.268482
-0.204299
-0.287006
-0.259457
-0.289435
-0.344665
-0.319467
-0.317588
-0.313371
-0.342869
-0.315526
-0.26271
-0.294476
-0.291966
-0.269688
-0.284623
-0.253547
-0.282874
-0.274032
-0.251254
-0.280287
-0.268242
-0.244838
-0.279061
-0.275465
-0.247811
-0.266582
-0.278232
-0.249185
-0.2841
-0.280624
-0.301046
-0.331206
-0.304028
-0.245856
-0.272517
-0.276119
-0.309985
-0.333924
-0.307335
-0.40109
-0.390881
-0.425134
-0.419421
-0.399989
-0.392075
-0.426095
-0.377007
-0.354392
-0.342106
-0.368552
-0.353721
-0.367227
-0.377703
-0.375571
-0.36397
-0.350955
-0.340033
-0.352276
-0.374344
-0.365453
-0.402469
-0.420693
-0.394586
-0.427974
-0.393589
-0.42739
-0.40313
-0.414763
-0.452251
-0.412847
-0.341003
-0.37204
-0.374562
-0.378977
-0.343617
-0.376749
-0.450764
-0.408804
-0.411021
-0.476054
-0.451711
-0.445786
-0.481912
-0.481275
-0.450564
-0.477002
-0.498315
-0.505144
-0.526589
-0.563433
-0.527197
-0.496742
-0.507031
-0.47445
-0.445086
-0.480068
-0.447329
-0.481171
-0.448949
-0.472914
-0.500093
-0.526581
-0.561853
-0.510106
-0.526445
-0.500928
-0.509237
-0.500837
-0.565955
-0.566302
-0.673633
-0.771284
-0.67419
-0.501714
-0.566803
-0.566676
-0.674947
-0.772264
-0.674577
-0.397036
-0.389552
-0.423807
-0.416192
-0.398533
-0.387973
-0.422488
-0.369435
-0.343612
-0.332066
-0.356559
-0.345725
-0.358671
-0.367442
-0.371171
-0.362323
-0.349339
-0.334194
-0.347545
-0.372817
-0.360482
-0.395334
-0.415073
-0.384617
-0.419126
-0.386493
-0.42086
-0.393468
-0.416462
-0.456445
-0.417971
-0.353067
-0.386368
-0.384702
-0.380999
-0.350822
-0.382839
-0.457645
-0.420809
-0.419495
-0.478823
-0.452945
-0.448066
-0.482069
-0.453764
-0.478137
-0.482348
-0.503755
-0.514488
-0.526217
-0.560856
-0.526575
-0.504468
-0.512944
-0.479931
-0.449114
-0.455465
-0.483131
-0.454961
-0.483154
-0.480395
-0.502668
-0.526161
-0.51129
-0.560495
-0.502055
-0.526033
-0.511839
-0.405373
-0.430692
-0.399369
-0.423998
-0.398163
-0.404956
-0.430629
-0.378963
-0.355432
-0.347787
-0.370263
-0.355086
-0.378996
-0.371669
-0.379352
-0.374865
-0.350288
-0.352968
-0.354574
-0.373319
-0.378465
-0.404655
-0.423259
-0.39597
-0.429578
-0.40459
-0.397033
-0.429645
-0.484828
-0.458958
-0.452654
-0.484152
-0.484488
-0.458318
-0.484858
-0.510572
-0.523024
-0.524985
-0.556061
-0.52482
-0.509141
-0.524181
-0.484238
-0.452977
-0.484699
-0.453714
-0.484253
-0.45676
-0.482237
-0.510833
-0.525675
-0.55738
-0.523234
-0.525617
-0.510443
-0.524168
-0.427803
-0.465328
-0.429502
-0.372042
-0.403922
-0.402111
-0.395213
-0.36817
-0.397288
-0.466863
-0.433408
-0.431728
-0.50415
-0.567831
-0.5673
-0.673033
-0.767847
-0.672857
-0.503521
-0.566868
-0.56713
-0.672447
-0.767351
-0.672574
-0.42627
-0.46157
-0.424753
-0.359279
-0.388072
-0.389679
-0.393227
-0.361461
-0.391411
-0.460581
-0.422146
-0.423425
-0.401791
-0.430544
-0.400643
-0.426406
-0.403911
-0.429289
-0.401869
-0.375038
-0.377022
-0.344619
-0.360955
-0.344723
-0.376072
-0.37756
-0.393544
-0.427343
-0.423555
-0.407158
-0.426404
-0.406846
-0.391745
-0.483608
-0.458713
-0.451198
-0.484562
-0.458344
-0.484275
-0.484061
-0.507206
-0.519089
-0.526866
-0.560683
-0.507437
-0.526957
-0.518907
-0.482365
-0.450824
-0.457298
-0.483816
-0.482557
-0.457254
-0.484058
-0.508606
-0.526817
-0.521937
-0.559829
-0.50959
-0.526558
-0.520418
-0.266053
-0.327171
-0.290166
-0.266937
-0.295125
-0.284846
-0.252838
-0.242759
-0.300024
-0.269479
-0.271835
-0.276398
-0.336008
-0.321617
-0.310704
-0.286116
-0.302435
-0.311518
-0.293724
-0.313379
-0.278996
-0.305805
-0.37387
-0.314491
-0.303536
-0.359339
-0.400733
-0.342496
-0.374147
-0.341916
-0.392319
-0.40615
-0.384242
-0.322528
-0.320912
-0.351774
-0.333304
-0.332841
-0.330433
-0.346385
-0.354749
-0.376259
-0.377032
-0.374413
-0.392855
-0.381329
-0.357056
-0.364498
-0.37178
-0.391623
-0.398603
-0.38833
-0.448179
-0.481116
-0.447794
-0.392785
-0.417365
-0.418279
-0.419883
-0.39398
-0.4191
-0.481086
-0.446791
-0.447345
-0.520472
-0.578159
-0.576566
-0.648436
-0.712445
-0.653562
-0.520644
-0.572894
-0.575678
-0.659052
-0.714693
-0.656078
-0.449165
-0.481503
-0.449537
-0.400567
-0.424644
-0.423728
-0.421236
-0.39837
-0.422115
-0.482188
-0.450923
-0.45071
-0.459534
-0.487676
-0.461592
-0.423408
-0.443856
-0.444506
-0.437827
-0.423685
-0.441304
-0.490866
-0.468471
-0.465365
-0.520096
-0.565469
-0.568794
-0.645552
-0.703008
-0.639775
-0.51877
-0.572132
-0.568789
-0.632083
-0.703047
-0.63795
-0.456326
-0.484337
-0.455501
-0.40835
-0.427077
-0.428397
-0.433572
-0.412396
-0.431374
-0.482527
-0.452824
-0.453134
-0.357519
-0.35278
-0.336389
-0.370807
-0.355007
-0.338475
-0.373795
-0.347625
-0.34129
-0.326845
-0.311287
-0.349731
-0.339553
-0.325033
-0.360165
-0.354898
-0.342405
-0.38016
-0.362685
-0.340575
-0.376919
-0.345322
-0.320825
-0.336186
-0.309145
-0.343199
-0.337655
-0.322922
-0.407467
-0.382455
-0.387132
-0.363291
-0.383693
-0.412337
-0.379971
-0.432806
-0.464121
-0.417722
-0.395035
-0.397694
-0.470989
-0.426628
-0.43983
-0.403224
-0.4825
-0.420022
-0.44686
-0.400549
-0.477327
-0.402801
-0.360861
-0.37699
-0.374996
-0.380201
-0.37738
-0.398671
-0.424321
-0.370176
-0.38506
-0.39094
-0.387682
-0.395077
-0.417908
-0.465203
-0.464917
-0.411083
-0.423289
-0.46824
-0.409843
-0.472328
-0.43093
-0.372487
-0.392468
-0.404346
-0.437426
-0.390209
-0.399486
-0.459868
-0.405733
-0.423435
-0.483685
-0.407984
-0.453574
-0.479551
-0.480427
-0.456439
-0.469855
-0.503887
-0.502454
-0.455345
-0.482156
-0.46006
-0.443464
-0.427317
-0.437682
-0.446019
-0.438741
-0.457948
-0.46247
-0.44132
-0.428783
-0.451578
-0.448934
-0.440079
-0.464576
-0.478373
-0.468803
-0.499045
-0.4533
-0.500642
-0.454138
-0.476577
-0.568251
-0.491113
-0.53194
-0.508671
-0.56751
-0.533044
-0.509443
-0.623012
-0.689857
-0.536104
-0.56087
-0.535559
-0.623171
-0.69005
-0.569031
-0.492099
-0.535341
-0.511043
-0.534234
-0.510272
-0.569735
-0.622839
-0.534362
-0.690455
-0.560356
-0.622602
-0.534907
-0.690361
-0.485918
-0.457663
-0.472996
-0.505541
-0.45894
-0.48414
-0.50696
-0.471716
-0.463976
-0.434082
-0.446527
-0.460764
-0.445247
-0.474153
-0.469242
-0.442631
-0.432885
-0.454552
-0.457514
-0.44401
-0.466981
-0.487865
-0.474096
-0.461391
-0.509964
-0.460152
-0.508505
-0.489745
-0.503924
-0.466076
-0.518467
-0.480474
-0.520386
-0.501191
-0.466846
-0.497408
-0.501435
-0.437884
-0.451537
-0.500764
-0.451234
-0.503398
-0.493494
-0.450658
-0.48718
-0.4383
-0.494687
-0.489709
-0.451131
-0.506852
-0.481079
-0.524819
-0.467935
-0.522487
-0.467332
-0.510203
-0.572167
-0.495535
-0.540202
-0.513499
-0.5729
-0.539007
-0.512956
-0.623776
-0.690036
-0.536621
-0.561857
-0.623536
-0.537004
-0.69008
-0.57127
-0.494765
-0.536573
-0.511744
-0.570567
-0.537692
-0.51236
-0.624235
-0.537753
-0.690431
-0.562163
-0.624471
-0.537425
-0.690396
-0.496184
-0.465344
-0.478032
-0.516534
-0.464448
-0.498519
-0.514852
-0.479719
-0.46761
-0.436967
-0.447557
-0.471479
-0.476878
-0.448614
-0.48282
-0.450171
-0.437472
-0.480369
-0.475563
-0.449417
-0.48603
-0.493868
-0.477162
-0.462449
-0.51157
-0.491806
-0.463528
-0.513097
-0.348541
-0.298635
-0.273161
-0.359864
-0.352831
-0.274074
-0.354984
-0.304661
-0.314908
-0.342587
-0.311799
-0.251991
-0.219078
-0.339587
-0.303688
-0.248977
-0.346289
-0.299617
-0.278588
-0.345431
-0.342477
-0.276319
-0.350567
-0.339561
-0.246648
-0.251299
-0.215288
-0.34857
-0.258169
-0.246472
-0.376465
-0.33768
-0.368102
-0.31947
-0.372762
-0.372121
-0.338547
-0.386577
-0.400024
-0.373351
-0.358421
-0.357288
-0.397175
-0.390491
-0.383178
-0.355455
-0.392732
-0.37248
-0.379907
-0.356517
-0.394894
-0.38079
-0.319647
-0.381427
-0.339876
-0.377377
-0.339034
-0.385368
-0.364169
-0.319275
-0.337396
-0.363066
-0.336629
-0.358082
-0.367989
-0.372589
-0.387252
-0.352936
-0.3697
-0.370843
-0.353618
-0.388207
-0.361042
-0.319465
-0.335755
-0.349628
-0.358116
-0.336385
-0.353851
-0.374539
-0.354943
-0.369938
-0.390969
-0.354004
-0.377063
-0.389342
-0.4697
-0.434333
-0.45858
-0.501063
-0.505461
-0.435969
-0.466709
-0.442016
-0.417166
-0.39439
-0.416433
-0.414979
-0.414484
-0.444746
-0.439326
-0.411288
-0.392778
-0.411115
-0.412819
-0.412701
-0.437044
-0.473101
-0.460921
-0.515916
-0.440161
-0.510473
-0.437964
-0.476706
-0.583341
-0.478675
-0.537556
-0.50657
-0.591442
-0.532563
-0.504339
-0.643147
-0.710115
-0.530808
-0.561321
-0.53281
-0.6344
-0.714318
-0.575833
-0.47675
-0.52452
-0.500205
-0.528124
-0.501875
-0.569646
-0.651732
-0.537376
-0.707789
-0.562585
-0.659632
-0.535343
-0.712611
-0.461612
-0.43258
-0.453262
-0.497259
-0.431486
-0.463915
-0.494086
-0.431653
-0.407088
-0.388744
-0.407346
-0.407504
-0.407778
-0.430641
-0.433165
-0.409761
-0.389602
-0.409498
-0.408424
-0.408887
-0.434856
-0.459478
-0.451691
-0.429453
-0.488824
-0.43013
-0.491205
-0.457802
-0.454764
-0.427595
-0.482975
-0.44814
-0.482843
-0.454482
-0.428076
-0.431737
-0.41431
-0.390995
-0.408892
-0.412402
-0.407981
-0.432996
-0.43087
-0.406786
-0.409539
-0.390298
-0.410923
-0.430095
-0.40751
-0.455125
-0.448195
-0.483074
-0.428988
-0.482776
-0.42833
-0.455862
-0.557688
-0.472448
-0.516498
-0.495075
-0.555619
-0.517645
-0.495833
-0.618797
-0.702486
-0.528471
-0.556626
-0.626113
-0.526673
-0.695614
-0.560747
-0.473418
-0.521629
-0.498396
-0.56476
-0.519353
-0.497174
-0.613467
-0.523869
-0.688835
-0.555177
-0.610195
-0.524905
-0.691165
-0.454759
-0.427703
-0.448386
-0.4835
-0.42767
-0.454575
-0.484136
-0.42944
-0.406837
-0.388368
-0.406653
-0.407114
-0.429786
-0.406618
-0.429339
-0.406659
-0.388384
-0.408519
-0.40759
-0.406358
-0.429679
-0.455393
-0.44913
-0.42849
-0.486789
-0.456344
-0.428188
-0.485253
-0.27781
-0.291696
-0.255833
-0.305626
-0.275729
-0.258984
-0.308119
-0.27898
-0.247476
-0.276765
-0.2486
-0.253435
-0.237067
-0.22674
-0.176878
-0.256142
-0.233532
-0.224425
-0.319257
-0.378037
-0.323101
-0.371329
-0.280668
-0.294816
-0.264508
-0.315414
-0.283796
-0.261892
-0.311572
-0.251108
-0.219676
-0.230352
-0.175805
-0.249198
-0.232063
-0.222108
-0.315555
-0.359887
-0.312188
-0.365386
-0.361226
-0.337595
-0.33348
-0.309456
-0.330015
-0.364316
-0.33386
-0.472551
-0.38949
-0.399314
-0.463367
-0.502545
-0.458351
-0.494174
-0.462071
-0.382455
-0.393437
-0.367601
-0.347295
-0.351262
-0.397467
-0.378809
-0.384431
-0.358587
-0.401012
-0.37139
-0.385945
-0.35511
-0.399257
-0.482534
-0.41933
-0.409849
-0.490508
-0.357623
-0.303714
-0.321783
-0.325271
-0.326397
-0.329576
-0.352864
-0.371536
-0.321381
-0.341242
-0.338742
-0.344041
-0.341521
-0.369465
-0.39255
-0.412671
-0.369787
-0.382715
-0.39644
-0.367474
-0.40844
-0.510271
-0.453194
-0.508586
-0.445806
-0.477449
-0.457096
-0.486716
-0.452567
-0.374725
-0.324492
-0.349445
-0.349444
-0.378409
-0.346981
-0.3453
-0.390469
-0.362156
-0.380647
-0.406201
-0.364685
-0.390089
-0.406294
-0.505572
-0.429002
-0.437684
-0.498556
-0.476011
-0.415617
-0.439656
-0.493289
-0.493155
-0.417298
-0.476356
-0.456937
-0.433945
-0.382817
-0.400399
-0.435457
-0.398002
-0.45866
-0.412697
-0.398191
-0.44858
-0.395386
-0.380245
-0.402821
-0.400742
-0.395533
-0.45249
-0.477399
-0.442026
-0.491877
-0.422603
-0.493523
-0.420209
-0.476525
-0.541159
-0.454728
-0.507817
-0.480957
-0.539464
-0.507365
-0.479088
-0.601304
-0.686877
-0.503609
-0.538075
-0.505985
-0.601324
-0.688464
-0.542583
-0.451253
-0.505041
-0.473494
-0.506473
-0.476486
-0.544596
-0.601727
-0.509779
-0.690891
-0.540182
-0.601641
-0.508166
-0.690029
-0.462528
-0.412594
-0.430736
-0.491417
-0.409341
-0.471538
-0.489098
-0.412443
-0.414146
-0.389028
-0.393233
-0.410104
-0.392438
-0.410993
-0.430133
-0.420846
-0.441677
-0.412428
-0.395565
-0.385041
-0.400912
-0.401947
-0.392475
-0.448369
-0.464494
-0.427562
-0.407401
-0.482242
-0.407975
-0.487372
-0.460603
-0.424893
-0.407999
-0.42424
-0.409967
-0.42059
-0.421721
-0.408815
-0.444841
-0.446763
-0.459911
-0.434211
-0.443813
-0.445582
-0.447131
-0.444688
-0.426306
-0.407701
-0.385553
-0.395755
-0.412622
-0.399154
-0.42108
-0.425219
-0.4025
-0.415386
-0.389087
-0.413815
-0.424568
-0.401156
-0.450018
-0.456143
-0.454792
-0.451305
-0.43002
-0.410412
-0.425882
-0.4088
-0.418699
-0.40964
-0.428637
-0.543977
-0.434878
-0.488955
-0.457558
-0.541911
-0.496124
-0.461904
-0.600779
-0.685221
-0.500508
-0.531159
-0.600774
-0.497788
-0.684287
-0.54591
-0.439234
-0.50181
-0.469784
-0.545162
-0.500978
-0.466514
-0.599566
-0.489823
-0.680354
-0.527431
-0.598442
-0.493694
-0.682104
-0.416681
-0.405737
-0.416463
-0.427453
-0.404202
-0.415428
-0.46575
-0.418655
-0.41982
-0.39583
-0.394605
-0.419459
-0.410969
-0.398653
-0.44763
-0.448422
-0.445392
-0.451934
-0.441004
-0.434039
-0.42046
-0.402561
-0.395619
-0.420842
-0.419044
-0.400464
-0.426022
-0.421091
-0.417848
-0.403968
-0.471088
-0.42252
-0.403937
-0.472491
-0.4458
-0.460354
-0.457988
-0.0670925
-0.0845855
-0.0888514
-0.0754136
-0.195946
-0.166491
-0.145613
-0.166793
-0.41676
-0.385777
-0.312733
-0.3259
-1.12788
-1.14421
-1.13096
-1.15167
-1.12162
-1.14586
-1.1415
-1.11646
-1.06979
-1.0745
-1.08302
-1.07415
-1.11868
-1.11277
-1.12729
-1.12499
-1.15518
-1.11683
-1.16924
-1.12021
-1.15916
-1.11961
-1.20073
-1.22099
-1.1793
-1.19589
-1.17911
-1.21574
-1.19909
-1.23813
-1.30172
-1.28203
-1.24243
-1.31617
-1.26722
-1.23358
-1.2433
-1.25847
-1.24368
-1.22719
-1.31313
-1.12009
-1.12795
-1.11778
-1.11193
-1.12529
-1.11236
-1.09821
-1.08867
-1.08464
-1.08675
-1.10572
-1.09042
-1.09941
-1.0715
-1.07764
-1.0933
-1.11558
-1.12414
-1.12965
-1.11272
-1.21523
-1.21301
-1.20522
-1.18461
-1.21063
-1.19791
-1.21551
-1.25261
-1.25372
-1.28185
-1.2667
-1.24722
-1.24384
-1.2632
-1.28837
-1.2365
-1.1938
-1.18078
-1.19371
-1.18526
-1.24831
-1.26726
-1.26862
-1.20106
-1.19976
-1.17226
-1.17343
-1.19564
-1.17346
-1.1826
-1.34941
-1.34947
-1.37767
-1.35445
-1.33898
-1.32067
-1.3255
-1.34655
-1.32523
-1.33799
-1.32102
-1.33308
-1.35373
-1.34197
-1.3295
-1.34018
-1.40245
-1.3541
-1.38321
-1.29975
-1.29514
-1.32702
-1.30403
-1.27215
-1.34062
0.106334
0.0198918
0.0981053
0.100575
0.104479
0.098628
0.200842
0.149188
0.184512
0.119406
0.0255077
0.115554
0.108787
0.129689
-0.0168027
0.0466115
0.0435034
-0.0296595
-0.0257516
-0.0257888
0.0494772
-0.030414
0.00156049
-0.0163329
0.021919
-0.0258353
-0.0211784
0.0180035
0.0136207
-0.0401756
0.0111281
-0.0342118
-0.000423215
0.0377606
-0.0154694
0.00250438
-0.0127765
0.0467008
-0.0131539
-0.0405127
-0.0397411
0.097106
0.0370341
0.0868073
0.0825568
0.0452821
0.11236
0.0843886
0.100362
0.0964313
0.00969317
0.108316
0.0885791
0.146679
0.157943
0.149918
0.136431
0.146183
0.11544
0.140534
0.14509
0.12391
0.190088
0.16193
0.142373
0.151809
0.187624
0.156631
0.158779
0.0472373
0.0842005
0.126974
0.195215
0.19256
0.216641
0.203994
0.195364
0.222048
0.207373
0.215089
0.207045
0.183157
0.182678
0.171315
0.185786
0.211454
0.209291
0.223894
0.201698
0.208958
0.210257
0.202054
0.403737
0.315882
0.394009
0.314713
0.403977
0.308371
0.400007
0.390171
0.309196
0.400755
0.32959
0.269649
0.31789
0.331175
0.311432
0.252125
0.312817
0.306375
0.184791
0.313159
0.195441
0.30597
0.313635
0.269808
0.319736
0.267536
0.319478
0.313666
0.313923
0.215153
0.387775
0.259532
0.322181
0.357187
0.198792
0.195187
0.177344
0.176476
0.21899
0.187618
0.264455
0.29859
0.284197
0.208472
0.197823
0.214808
0.211405
0.200271
0.234855
0.207762
0.209408
0.206561
0.175829
0.126851
0.0443001
0.0603696
0.0662858
0.146697
0.150072
0.0854656
0.167779
0.166793
0.1603
0.100961
0.184336
0.0419623
0.112861
0.135914
0.0719
0.148125
0.018879
0.00222523
-0.0310434
0.026826
0.0139274
0.0363808
-0.0043746
-0.037542
-0.0594597
0.00796464
-0.0295943
-0.0882736
0.0117867
-0.0215492
-0.013326
0.00581744
-0.0151341
0.0352726
0.00102179
-0.0294471
-0.0162875
-0.0380944
-0.0214015
-0.0241392
-0.1041
-0.0474542
0.00459423
-0.0484157
0.0162154
-0.0763041
-0.0618114
-0.0693925
-0.0541363
0.0777893
0.0970736
0.0578371
0.026109
0.083813
0.085304
0.0323718
0.163361
0.190521
0.186469
0.17232
0.15058
0.0785881
0.054853
0.0846375
0.0894595
0.0736241
0.0251108
0.0764471
0.0289388
0.0835151
0.0286168
0.0609009
0.179375
0.182383
0.169856
0.227797
0.244414
0.221401
0.221863
0.215266
0.200775
0.210463
0.231441
0.199143
0.221765
0.195589
0.210931
0.216596
0.209823
0.223488
0.204287
0.178017
0.177002
0.303527
0.229785
0.203084
0.288076
0.286783
0.224539
0.304562
0.302386
0.199667
0.286937
0.222191
0.285859
0.222377
0.301877
0.297855
0.405532
0.314869
0.392339
0.317254
0.404731
0.380375
0.420078
0.397944
0.322754
0.408734
0.200285
0.191401
0.212841
0.113808
0.188829
0.198686
0.204225
0.2712
0.247184
0.212916
0.206074
0.249996
0.203861
0.267582
0.270758
0.215968
0.238048
0.211833
0.247518
0.272389
0.203635
0.192157
0.190392
0.347837
0.227538
0.22383
0.282635
0.232936
0.300514
0.364714
0.355613
0.226377
0.232169
0.389689
0.361027
0.233122
0.381781
0.19431
0.199066
0.19077
0.187925
0.184834
0.187226
0.194246
0.191484
0.185224
0.174829
0.182107
0.176521
0.182332
0.191788
-1.38839
-1.35982
-1.39873
-1.39823
-1.41564
-1.42169
-1.4933
-1.37471
-1.37529
-1.36607
-1.42047
-1.37981
-1.38008
-1.40776
-1.46302
-1.43334
-1.4066
-1.44721
-1.4368
-1.43255
-1.22323
-1.22079
-1.26026
-1.2432
-1.21544
-1.22846
-1.2563
-1.22571
-1.23207
-1.27446
-1.31776
-1.3006
-1.26804
-1.25872
-1.22536
-1.2163
-1.24057
-1.25147
-1.2245
-1.23345
-1.2271
-1.22119
-1.23707
-1.13649
-1.15795
-1.12731
-1.16152
-1.10026
-1.07361
-1.09335
-1.09506
-1.09257
-1.11895
-1.14612
-1.13308
-1.16096
-1.18046
-1.13491
-1.15223
-1.14192
-1.09392
-1.07922
-1.10715
-1.07353
-1.0901
-1.08739
-1.09219
-1.14601
-1.1567
-1.13943
-1.09545
-1.09109
-1.08854
-1.08046
-1.11894
-1.17866
-1.10865
-1.18576
-1.11318
-1.11116
-1.09302
-1.08073
-1.09575
-1.08916
-1.08461
-1.10021
-1.07371
-1.11623
-1.16146
-1.13757
-1.1824
-1.10374
-1.13836
-1.1047
-1.10294
-1.0744
-1.08287
-1.09762
-1.10883
-1.07315
-1.31722
-1.28337
-1.25256
-1.19602
-1.19393
-1.25967
-1.18864
-1.23174
-1.2413
-1.24961
-1.20935
-1.23381
-1.24132
-1.22862
-1.39072
-1.41546
-1.37601
-1.37595
-1.37795
-1.37296
-1.40257
-1.39953
-1.43085
-1.44724
-1.46627
-1.39666
-1.42899
-1.39311
-1.42496
-1.41937
-1.46757
-1.39418
-1.48561
-1.46045
-1.53032
-1.55769
-1.4525
-1.51875
-1.60354
-1.44205
-1.51582
-1.55091
-1.43631
-1.6203
-1.61026
-1.41437
-1.41087
-1.43126
-1.44241
-1.42929
-1.40247
-1.44571
-1.39857
-1.36411
-1.3788
-1.37236
-1.36392
-1.37772
-1.40861
-1.40946
-1.42771
-1.42887
-1.4121
-1.43047
-1.41336
-1.40973
-1.402
-1.43489
-1.43324
-1.55054
-1.53185
-1.50538
-1.54125
-1.51193
-1.54012
-1.55129
-1.51602
-1.49885
-1.52821
-1.60029
-1.64258
-1.61291
-1.69368
-1.60215
-1.61406
-1.50243
-1.55385
-1.50061
-1.52033
-1.54704
-1.50873
-1.55648
-1.5351
-1.5928
-1.62211
-1.6773
-1.58872
-1.26366
-1.19014
-1.20009
-1.19512
-1.26862
-1.29643
-1.33442
-1.35279
-1.28869
-1.28949
-1.32878
-1.30033
-1.29474
-1.29735
-1.25468
-1.22325
-1.25304
-1.21473
-1.13849
-1.14363
-1.09146
-1.08448
-1.09654
-1.12372
-1.07555
-1.07168
-1.11654
-1.07121
-1.14627
-1.1861
-1.1497
-1.17332
-1.16182
-1.13985
-1.18208
-1.14152
-1.17475
-1.18316
-1.14246
-1.17363
-1.14934
-1.1355
-1.14536
-1.15833
-1.16177
-1.16458
-1.14693
-1.16349
-1.16255
-1.24469
-1.20466
-1.21776
-1.26979
-1.23545
-1.22079
-1.31586
-1.33733
-1.35766
-1.29056
-1.29494
-1.33626
-1.30632
-1.30549
-1.33979
-1.34007
-1.30023
-1.31493
-1.33891
-1.30433
-1.23688
-1.24141
-1.22985
-1.21822
-1.23263
-1.22403
-1.23444
-1.4404
-1.42245
-1.46133
-1.43748
-1.44615
-1.42813
-1.45766
-1.41678
-1.45914
-1.42026
-1.45392
-1.42892
-1.40903
-1.4566
-1.53508
-1.55077
-1.50078
-1.47718
-1.53675
-1.48793
-1.55019
-1.61853
-1.66333
-1.60784
-1.70304
-1.52241
-1.48245
-1.49803
-1.5068
-1.51378
-1.497
-1.51491
-1.41592
-1.44947
-1.44172
-1.43828
-1.43754
-1.41564
-1.4485
-1.55479
-1.46886
-1.49813
-1.52083
-1.47142
-1.61935
-1.65614
-1.63604
-1.62334
-1.65556
-1.61773
-1.67045
-1.65082
-1.60386
-1.6743
-1.55208
-1.48197
-1.46276
-1.46984
-1.56787
-1.62093
-1.60519
-1.65448
-1.67507
-1.63308
-1.60203
-1.67886
0.119086
0.123878
0.00890719
0.0196974
0.153307
0.0154717
0.0988464
0.121157
0.0166471
0.0155383
0.15904
0.159331
0.0176528
0.121288
-0.0246825
0.0277289
-0.0189202
0.0107119
-0.00811997
-0.0313554
0.0131807
-0.00900361
-0.0334201
-0.024599
-0.0160458
-0.0157652
-0.0619973
-0.0601334
-0.0359778
0.0079297
-0.0404803
0.00334691
0.0229255
0.0090793
-0.0592979
-0.0439225
0.00182822
0.0196441
-0.0472809
0.0244826
-0.00527335
0.0183951
-0.0285818
0.0100776
-0.0181844
0.0372631
-0.0286962
0.0314808
0.0228234
-0.019429
0.0311115
-0.0317618
-0.0156673
-0.0676703
0.00253294
0.0132231
-0.0634324
0.0400043
0.0488452
0.0150846
-0.0277838
0.0215686
0.0437195
-0.018821
-0.0403468
0.00966377
0.0109769
-0.0410846
0.0224828
0.0105547
-0.0426783
-0.0500769
0.0195477
0.0141464
-0.0393816
0.0848522
0.0993334
0.0112692
0.114321
0.00194713
0.0733485
0.120818
0.0148542
0.160189
0.0143175
0.163083
0.125898
0.00922026
0.0836026
0.0666666
0.139043
0.128223
0.149571
0.13546
0.151808
0.0563199
0.0613807
0.128676
0.124958
0.144378
0.123554
0.139024
0.04889
0.0490538
0.0535544
0.0536992
0.215819
0.212719
0.186859
0.21426
0.211624
0.169105
0.203272
0.228649
0.186296
0.178181
0.223997
0.180402
0.164352
0.165648
0.167695
0.173937
0.212599
0.173883
0.200152
0.200556
0.214483
0.30189
0.293773
0.289028
0.293673
0.293703
0.294552
0.301721
0.302976
0.288972
0.294945
0.295986
0.293864
0.294401
0.303498
0.311485
0.319043
0.376192
0.376434
0.371145
0.373039
0.347572
0.380222
0.358724
0.361955
0.376864
0.239329
0.359682
0.359342
0.358892
0.343261
0.374623
0.380173
0.359453
0.344807
0.374882
0.208332
0.211824
0.193881
0.209516
0.212324
0.165104
0.170332
0.179623
0.180791
0.18108
0.177173
0.165133
0.163344
0.164413
0.159736
0.159776
0.207978
0.193945
0.224654
0.211748
0.192598
0.306808
0.293498
0.27393
0.295118
0.284032
0.30283
0.301311
0.315661
0.227744
0.255474
0.344519
0.258883
0.329856
0.324811
0.0605925
0.0714648
0.0513399
0.0363584
0.0817887
0.0484173
0.0491134
0.0570398
0.0448629
0.0295792
0.0361959
0.0418614
0.0475655
0.0535853
-0.00675768
-0.0613525
-0.0360433
-0.0104051
-0.0186349
-0.0566073
0.00640396
-0.0424165
-0.0525327
0.0111915
-0.0292959
-0.00475156
-0.0113347
-0.010169
-0.00670868
-0.0173151
-0.0341259
-0.0114813
-0.016106
-0.0347152
-0.0350519
-0.00166669
0.0184951
-0.0275603
-0.047294
0.0216486
-0.015913
-0.0190596
-0.0357749
-0.027484
-0.0215
-0.0439363
0.0381045
-0.0208916
0.00683913
-0.039319
-0.0340438
0.0278968
-0.0522336
-0.052456
-0.013113
-0.0172191
-0.0331681
-0.0174201
-0.0121158
-0.0470562
-0.0363303
0.00474006
0.0213264
-0.0353784
-0.0480261
0.0246536
0.0473599
0.0301934
0.0255568
0.0448713
0.0293655
0.0452027
0.0455861
0.0507421
0.044367
0.0350549
0.0239058
0.0339453
0.0522815
0.0443266
0.2056
0.244318
0.154609
0.175289
0.152813
0.206258
0.164332
0.165592
0.162695
0.200752
0.162238
0.215814
0.170208
0.219824
0.149505
0.159603
0.139099
0.214054
0.174373
0.199992
0.214466
0.203336
0.238812
0.359486
0.359774
0.368424
0.369213
0.355685
0.371365
0.346264
0.373758
0.359199
0.343979
0.369364
0.240229
0.361584
0.361507
0.354206
0.341185
0.367386
0.373326
0.352686
0.342797
0.368538
0.187156
0.253988
0.168453
0.253039
0.177232
0.260166
0.17563
0.161816
0.179427
0.164798
0.211316
0.169414
0.194354
0.155058
0.207634
0.137897
0.138068
0.203104
0.151215
0.146244
0.208195
0.257663
0.258871
0.185944
0.26301
0.194586
0.197291
0.325686
0.27
0.233805
0.344493
0.257143
0.321562
0.34647
0.327604
0.234598
0.256286
0.348122
0.327109
0.257906
0.348292
-1.38924
-1.40223
-1.39714
-1.4104
-1.40536
-1.40299
-1.39526
-1.3694
-1.35362
-1.35784
-1.38275
-1.36243
-1.39725
-1.3577
-1.37134
-1.36827
-1.3954
-1.37503
-1.35193
-1.38502
-1.36746
-1.34824
-1.38972
-1.36479
-1.37832
-1.40136
-1.42284
-1.4101
-1.3842
-1.42067
-1.40175
-1.36883
-1.44395
-1.50851
-1.51683
-1.46774
-1.49052
-1.48486
-1.55138
-1.56514
-1.53782
-1.5793
-1.60323
-1.62096
-1.57429
-1.53776
-1.61068
-1.37651
-1.38844
-1.36335
-1.36055
-1.36923
-1.3858
-1.3512
-1.36596
-1.3553
-1.3563
-1.35674
-1.36482
-1.36152
-1.35822
-1.34026
-1.38797
-1.37645
-1.35346
-1.34774
-1.37851
-1.37552
-1.3891
-1.34035
-1.40705
-1.34036
-1.34803
-1.32956
-1.57587
-1.63313
-1.58193
-1.64089
-1.5814
-1.58401
-1.64447
-1.49837
-1.4783
-1.45171
-1.49278
-1.44444
-1.48814
-1.50465
-1.55308
-1.55988
-1.65087
-1.63884
-1.5784
-1.53451
-1.64665
-1.13805
-1.12548
-1.09727
-1.15762
-1.15103
-1.09946
-1.1278
-1.18481
-1.19767
-1.21901
-1.20312
-1.20564
-1.19254
-1.18114
-1.18278
-1.19821
-1.17994
-1.1949
-1.17482
-1.20092
-1.17378
-1.28093
-1.28725
-1.25595
-1.29011
-1.28385
-1.28957
-1.28303
-1.25214
-1.26871
-1.33189
-1.31512
-1.30544
-1.32324
-1.32147
-1.31005
-1.31893
-1.32957
-1.31951
-1.35269
-1.32316
-1.33945
-1.32298
-1.3212
-1.2566
-1.25663
-1.29594
-1.27419
-1.30806
-1.30331
-1.28843
-1.28867
-1.29014
-1.28277
-1.31635
-1.37241
-1.2972
-1.35301
-1.29777
-1.32106
-1.3711
-1.29778
-1.23577
-1.27239
-1.28586
-1.32039
-1.32461
-1.32183
-1.35635
-1.36866
-1.30419
-1.35912
-1.37269
-1.30783
-1.25873
-1.27174
-1.27128
-1.26678
-1.2731
-1.24211
-1.23753
-1.23739
-1.26905
-1.27171
-1.28821
-1.37029
-1.36609
-1.32087
-1.28744
-1.26162
-1.23797
-1.24543
-1.24291
-1.24263
-1.24537
-1.26999
-1.16824
-1.22336
-1.22927
-1.22766
-1.1882
-1.2251
-1.185
-1.1707
-1.22409
-1.18885
-1.24082
-1.1667
-1.23003
-1.18772
-1.33191
-1.33268
-1.32319
-1.29577
-1.32551
-1.33344
-1.29731
-1.30073
-1.36168
-1.31661
-1.3163
-1.29359
-1.23893
-1.23318
-1.3026
-1.23577
-1.24535
-1.25016
-1.24644
-1.25109
-1.24788
-1.24268
-1.24598
-1.45915
-1.46281
-1.49146
-1.39947
-1.3829
-1.3354
-1.30713
-1.36468
-1.36388
-1.34408
-1.31773
-1.36202
-1.38963
-1.51089
-1.49186
-1.49365
-1.52469
-1.50822
-1.49747
-1.5191
-1.59343
-1.64886
-1.62099
-1.63681
-1.50981
-1.49304
-1.47863
-1.50657
-1.48925
-1.56812
-1.59242
-1.54754
-1.65233
-1.54803
-1.66627
-1.38256
-1.40278
-1.43063
-1.45403
-1.38129
-1.39475
-1.45341
-1.38645
-1.45984
-1.44418
-1.45963
-1.40201
-1.45961
-1.41142
-1.43069
-1.36705
-1.35711
-1.31987
-1.37006
-1.34654
-1.3565
-1.35484
-1.35897
-1.32383
-1.42377
-1.34161
-1.33349
-1.36781
-1.30994
-1.34815
-1.34413
-1.32165
-1.35309
-1.31296
-1.51982
-1.463
-1.47743
-1.53288
-1.44584
-1.51577
-1.52888
-1.56691
-1.62541
-1.56259
-1.6121
-1.57624
-1.57067
-1.6176
-1.52706
-1.47132
-1.44884
-1.48802
-1.50739
-1.45126
-1.53139
-1.55909
-1.55552
-1.6859
-1.55507
-1.56174
-1.67823
0.00950731
-0.0487618
0.0164163
-0.057202
0.0170291
0.00736652
-0.0641001
-0.00457892
0.0403881
0.0276021
0.00164607
-0.0259514
0.0175203
0.0238598
-0.00765331
0.0291247
-0.0261749
0.0450623
-0.0287538
-0.00809127
0.0266593
0.00209028
0.0133801
0.033442
-0.0259741
0.01913
0.0122006
-0.0073327
-0.00691822
0.0280426
0.0304732
-0.024338
-0.0228498
0.0219989
-0.0066324
0.029795
0.0620979
-0.0227647
-0.0105641
0.0414665
-0.0190549
0.0505914
-0.0176873
0.0599885
0.112745
-0.00906901
0.0907214
0.0286379
0.108572
-0.00900616
0.030312
0.106763
0.0359957
0.0013838
-0.00536864
0.0464258
-0.00767772
0.0376957
0.0485483
-0.0275527
0.105606
-0.0331582
0.109069
-0.0607399
-0.0509512
0.0105814
-0.0228358
-0.0113382
-0.0152275
-0.014703
-0.020846
-0.0139788
-0.0260938
-0.0188025
-0.0156051
0.0303501
0.0245199
0.0274226
-0.049758
-0.0495983
0.0257416
0.0128462
0.0253165
-0.00895871
0.0867824
0.0317228
0.104756
-0.00267409
0.0262268
0.0921523
0.0532038
0.0444706
0.0528888
0.0690234
0.0683963
0.0448791
0.0531646
-0.0450066
0.0543542
0.0632971
-0.0454548
0.0510496
0.0654067
0.0533506
0.0473994
0.060882
0.0645698
0.0430826
-0.04656
0.0952118
-0.0353726
0.0674256
0.19846
0.216545
0.184009
0.161157
0.199852
0.214644
0.183702
0.132825
0.116572
0.146273
0.11765
0.148513
0.13101
0.134881
0.152833
0.122498
0.120263
0.136667
0.150712
0.197553
0.160908
0.210824
0.181889
0.213072
0.18302
0.195973
0.131393
0.131
0.262412
0.209377
0.25614
0.267156
0.253567
0.333989
0.331969
0.357248
0.333094
0.334995
0.342217
0.337837
0.354297
0.3353
0.257609
0.209584
0.24831
0.251036
0.252647
0.359743
0.342336
0.338399
0.343681
0.362244
0.339979
0.336952
0.202455
0.21782
0.184803
0.162466
0.200771
0.22003
0.185626
0.140923
0.127168
0.159691
0.126456
0.157727
0.142449
0.139543
0.154358
0.123557
0.124813
0.137993
0.156432
0.20332
0.162721
0.225125
0.187596
0.221504
0.18625
0.206096
0.134506
0.135151
-0.035947
0.0132633
-0.0560051
-0.0127102
-0.0495257
-0.0397288
-0.0133522
-0.036106
0.0251593
-0.0536386
-0.0134972
-0.0534102
-0.0375789
-0.00518036
0.194713
0.180619
0.206522
0.160357
0.208003
0.194219
0.180987
0.133413
0.116384
0.145723
0.138247
0.130111
0.147103
0.128429
0.143091
0.119468
0.12407
0.143042
0.129203
0.196412
0.160783
0.210637
0.181926
0.195941
0.210182
0.181841
0.149831
0.147717
0.239608
0.215
0.23981
0.235066
0.241995
0.318467
0.320552
0.350091
0.331957
0.333797
0.337653
0.352807
0.331268
0.330105
0.244153
0.214357
0.246636
0.248918
0.244215
0.347867
0.32713
0.327166
0.336447
0.345439
0.329405
0.328642
0.142093
0.141164
0.199833
0.179944
0.205335
0.164929
0.193185
0.18284
0.222552
0.172964
0.0622695
0.0813335
0.190417
0.062601
0.193819
0.17327
0.165712
0.146656
0.108884
0.0835673
0.0566627
0.132244
0.203552
0.190198
0.16098
0.179195
0.201116
0.180303
0.2062
0.186757
-1.51495
-1.57883
-1.50797
-1.5842
-1.51392
-1.49729
-1.58613
-1.47032
-1.45788
-1.41272
-1.48491
-1.42564
-1.46781
-1.46894
-1.47252
-1.43606
-1.50377
-1.5005
-1.48583
-1.43277
-1.48494
-1.52864
-1.53734
-1.50572
-1.51692
-1.51413
-1.52675
-1.53403
-1.48304
-1.50242
-1.41271
-1.42895
-1.48727
-1.40933
-1.48955
-1.48413
-1.43986
-1.48053
-1.40854
-1.48344
-1.4242
-1.47806
-1.36341
-1.37982
-1.41394
-1.40767
-1.41193
-1.37798
-1.34934
-1.35117
-1.39169
-1.41145
-1.39528
-1.40642
-1.35438
-1.37411
-1.37162
-1.3908
-1.40266
-1.41221
-1.3964
-1.36321
-1.42121
0.0373214
0.0371815
0.0370882
0.0370802
0.00959
0.0844292
0.00269444
0.0786685
0.00959418
0.00394302
0.0838341
0.0372809
0.0370843
0.0373873
0.0370615
0.00976311
0.00709273
0.0811083
0.0840637
0.00567513
0.00979662
0.0839561
-0.032936
-0.0268225
0.0144446
-0.0296547
0.00846914
-0.0103203
0.036237
-0.00560366
-0.0133512
-0.049953
-0.0297138
0.00166424
0.0306577
0.0107279
-0.0213759
-0.0539968
0.00940224
-0.0293404
0.00633774
-0.00772637
0.0260023
-0.0225424
-0.00361617
-0.0457445
0.0282202
0.030221
-0.0525429
-0.0343866
-0.0351418
0.0272638
0.00916729
-0.0335865
-0.0127942
0.0286741
-0.0339347
0.00759912
0.0267237
-0.0800134
0.0070147
-0.0629399
0.0244759
0.00855358
-0.0667958
-0.0347217
-0.0348709
0.0266276
-0.0326791
-0.0128115
0.00619281
-0.033863
0.0253695
0.0071552
0.0364374
0.0371387
0.036556
0.0396337
0.012868
0.0855465
0.0919362
0.0168885
0.0140389
0.0856892
0.0148304
0.0105163
0.00857185
0.0839845
0.0884986
0.00986055
0.0105505
0.0844654
0.0385554
0.0430459
0.0585626
0.0341355
0.0783196
0.0729935
0.059196
0.0301126
0.0785817
0.0343129
0.0742147
0.0812801
0.1041
0.0860091
0.0685756
0.0884717
0.105641
0.0367051
0.0675728
0.186772
0.0646474
0.186795
0.07185
0.0662919
0.274013
0.188591
0.206911
0.264057
0.274223
0.2083
0.264099
0.23
0.278232
0.229105
0.27602
0.250571
0.315694
0.265961
0.319429
0.26692
0.249785
0.316665
0.272449
0.184911
0.203222
0.260269
0.205256
0.261717
0.270947
0.250603
0.267841
0.318475
0.320587
0.249623
0.267928
0.316989
0.118823
0.0959425
0.0729207
0.140457
0.0933603
0.139637
0.120533
0.116742
0.122489
0.0862173
0.0638674
0.0911875
0.109929
0.135266
0.0721894
0.200715
0.134604
0.00826512
0.0168558
0.0315272
0.188102
0.12747
0.130678
0.0701457
0.0716717
0.0572869
0.0270757
0.0704841
0.0723946
0.0236777
0.0685259
0.0187177
0.0598806
0.0700965
0.0702208
0.0211277
0.0669825
0.115723
0.174864
0.113328
-0.0540103
-0.0452029
-0.0298247
-0.0366756
0.173266
0.105823
0.110282
0.26964
0.180037
0.200552
0.258734
0.269205
0.20132
0.258923
0.237052
0.283984
0.238809
0.282393
0.249674
0.316051
0.265787
0.317105
0.250006
0.265422
0.315572
0.269923
0.180734
0.202969
0.259797
0.270723
0.201862
0.259104
0.249822
0.265957
0.315906
0.317323
0.250007
0.265729
0.315799
0.118685
0.179887
0.120862
0.000815559
-0.00671898
-0.0214204
-0.0145096
0.181069
0.125514
0.123049
0.0625
0.0690966
0.0713493
0.00789221
0.0704277
0.0118428
0.0589001
0.0639858
0.0161005
0.0697319
0.0680858
0.069938
0.0652241
0.0140675
0.0146039
-0.0425681
-0.0285753
0.0554721
-0.0600482
0.038465
0.0168657
0.0107629
0.00863498
0.0262308
-0.0195073
0.0128304
0.0268725
0.00549804
0.0144702
-0.0494219
-0.066345
0.0336755
0.015721
-0.0654049
0.0336669
0.0102266
0.0395453
-0.0231466
-0.000858991
0.0351686
0.0102622
0.00182842
-0.100377
-0.103648
-0.0929159
-0.0899854
-0.104285
-0.122542
-0.135147
-0.136439
-0.13249
-0.0911881
-0.121256
-0.0913717
-0.135351
-0.0752074
-0.0969038
-0.112023
-0.111027
-0.141236
-0.0850113
-0.141008
-0.1069
-0.096836
-0.113111
-0.108421
-0.113892
-0.109374
-0.104558
-0.0657204
-0.108529
-0.0624527
-0.091266
-0.0808025
-0.195469
-0.0740261
-0.20506
-0.0720963
-0.141145
-0.0911513
-0.176208
-0.0778147
-0.088055
-0.179058
-0.0530539
-0.046763
-0.0447618
-0.0510767
-0.0866075
-0.214755
-0.100113
-0.21038
-0.0728242
-0.0894773
0.00294666
-0.0178275
0.0378994
0.00143502
0.00627451
-0.0151962
0.0330804
-0.00152861
-0.0116002
-0.0335581
0.0214985
0.0252467
-0.00834625
-0.00535689
0.00130031
0.0329718
-0.00438696
-0.0305301
0.00468352
0.0290833
-0.00624612
-0.000137331
-0.00266965
-0.0219415
0.0251971
-0.0181063
0.0288358
-0.00393739
0.0744193
0.048147
0.0599277
0.0657708
0.0494436
0.067375
0.0730812
0.0748277
0.0809933
0.0391692
0.0567629
0.0471691
0.0791301
0.0685725
0.0800317
0.122218
0.15151
0.151607
0.0793476
-0.0721459
-0.0146087
-0.0169977
-0.0115383
-0.0713528
-0.0140097
0.123909
0.150155
0.0768434
0.148351
0.0776435
0.198487
0.206051
0.224859
0.217183
0.197434
0.223453
0.217198
0.288153
0.29765
0.289618
0.297138
0.208157
0.208076
0.197484
0.204734
0.221443
0.215906
0.222238
0.216598
0.196833
0.209196
0.208528
0.0786449
0.0330352
0.00505973
0.0769624
0.029996
0.0734256
0.0815511
0.0781335
0.0737623
0.0309703
0.0061858
0.0307589
0.0775495
0.0735942
0.0856603
0.11868
0.151344
0.0814211
0.149923
-0.00724947
-0.00254326
-0.00238516
0.0137567
-0.004301
-0.00109005
0.116989
0.0785251
0.148028
0.0795175
0.148696
0.0731938
0.0468387
0.0485902
0.0647904
0.0456757
0.0722502
0.0632405
0.0765244
0.0290626
0.198037
0.171079
0.198312
0.0726862
0.0326361
-0.071287
-0.0244712
-0.0267297
-0.0282857
-0.067562
-0.0276522
0.076712
0.17057
0.196036
0.0334133
0.196959
0.0329818
0.0769613
0.197364
0.204827
0.241144
0.218542
0.201879
0.224166
0.216283
0.284288
0.294019
0.284467
0.294179
0.207804
0.207914
0.196926
0.204333
0.221784
0.215739
0.196837
0.222531
0.215932
0.207315
0.209315
0.023373
0.123484
0.207691
0.0662234
0.0734854
0.158459
-0.0271562
-0.00267186
-0.00412206
-0.0274602
-0.0500307
-0.0048313
0.118747
0.0776255
0.148801
0.0756616
0.151441
-0.11637
-0.0980747
-0.112878
-0.142657
-0.111997
-0.143163
-0.117001
-0.0781783
-0.0500109
-0.0646142
-0.0625686
-0.0763594
-0.0680031
-0.0528413
-0.116076
-0.0988561
-0.108858
-0.14789
-0.115367
-0.111308
-0.145267
-0.0796015
-0.0724329
-0.0661121
-0.0571312
-0.0704879
-0.081228
-0.0549073
-0.108929
-0.103429
-0.0947957
-0.0829289
-0.0957952
-0.107555
-0.104662
-0.123078
-0.215254
-0.205889
-0.120786
-0.120252
-0.215306
-0.124298
-0.122265
-0.118848
-0.205677
-0.213592
-0.119823
-0.120944
-0.214697
-0.110085
-0.083865
-0.0981781
-0.108194
-0.0966811
-0.105795
-0.112303
-0.225464
-0.222642
-0.21685
-0.185169
-0.182219
-0.182548
-0.205097
-0.182314
-0.215166
-0.219935
-0.104968
-0.0810064
-0.102528
-0.093935
-0.101117
-0.0923347
-0.106485
-0.12321
-0.216145
-0.112091
-0.206922
-0.141612
-0.116889
-0.212986
-0.104198
-0.0801069
-0.0959044
-0.07538
-0.0959893
-0.0998801
-0.0900247
-0.11916
-0.117916
-0.203785
-0.21269
-0.116313
-0.119904
-0.211612
-0.228206
-0.231868
-0.15519
-0.163713
-0.168634
-0.237736
-0.234896
-0.182395
-0.171449
-0.178693
-0.117194
-0.113249
-0.141109
-0.0975517
-0.117092
-0.113934
-0.139856
-0.08293
-0.0585109
-0.0806245
-0.0745322
-0.0713485
-0.0616526
-0.0813171
-0.0831688
-0.0720505
-0.0588679
-0.0780503
-0.0821075
-0.072397
-0.0609241
-0.11645
-0.0970705
-0.115197
-0.131409
-0.114228
-0.137425
-0.115238
0.068196
0.0300779
0.147127
0.170989
0.173546
0.0268898
0.0713908
-0.129272
-0.00652241
-0.00786189
-0.02477
-0.133507
-0.0108614
0.0683645
0.14834
0.177738
0.0275906
0.175319
0.0262715
0.0702653
0.178522
0.167558
0.19291
0.19483
0.174315
0.176615
0.194706
0.25931
0.268586
0.257197
0.268417
0.236812
0.136774
0.139883
0.230057
0.205616
0.153957
0.123906
0.204048
0.126756
0.199533
0.221921
0.185631
0.180229
0.109111
0.0586994
0.134637
0.181972
0.0767918
0.115737
0.160373
-0.010007
-0.157805
-0.0591502
-0.0593553
-0.00709479
-0.0102776
-0.0645207
-0.162627
-0.0599948
-0.0110946
0.105185
0.128878
0.0779092
0.136468
0.0789195
0.139561
0.107223
0.0957838
0.067227
0.12935
0.113126
0.126701
0.0988449
0.0644733
-0.0226676
-0.171949
-0.0789512
-0.0751067
-0.0259413
-0.0202621
-0.0701181
-0.169658
-0.0168867
-0.0729319
0.094063
0.111906
0.123456
0.0600112
0.125477
0.0628227
0.0915889
0.222035
0.146678
0.11996
0.200777
0.216107
0.125388
0.203111
0.246835
0.21798
0.238883
0.252379
0.226607
0.138054
0.228983
0.138076
0.224403
0.146829
0.124666
0.205452
0.225414
0.124592
0.204931
0.223872
0.14042
0.222551
0.138386
0.101632
0.0682604
0.117686
0.129499
0.0707404
0.100013
0.13128
-0.0105515
-0.163862
-0.0615672
-0.00867039
-0.0633819
-0.0126603
-0.0684292
-0.164585
-0.0651351
-0.015022
0.103064
0.11869
0.0749446
0.133649
0.105094
0.0723893
0.131749
-0.13381
-0.11047
-0.156561
-0.118983
-0.152641
-0.11275
-0.136499
-0.132504
-0.111569
-0.14904
-0.109113
-0.130579
-0.151686
-0.111337
-0.185468
-0.277421
-0.274885
-0.25153
-0.221109
-0.173045
-0.24898
-0.143313
-0.250029
-0.216656
-0.175934
-0.230034
-0.240163
-0.247718
-0.230384
-0.224535
-0.238396
-0.232708
-0.226355
-0.218222
-0.240419
-0.230393
-0.223289
-0.221204
-0.235291
-0.224899
-0.139148
-0.24956
-0.178374
-0.245941
-0.176189
-0.227633
-0.213049
-0.19222
-0.221236
-0.265238
-0.290373
-0.281657
-0.268818
-0.268956
-0.274428
-0.208357
-0.244277
-0.238463
-0.211374
-0.170055
-0.174696
-0.248389
-0.179945
-0.24853
-0.214663
-0.205786
-0.218024
-0.182064
-0.216054
-0.200345
-0.191599
-0.22155
-0.199149
-0.200531
-0.183703
-0.180054
-0.193303
-0.184766
-0.195464
-0.212983
-0.21218
-0.220466
-0.227021
-0.209802
-0.217027
-0.224913
-0.162776
-0.205459
-0.19816
-0.256185
-0.276814
-0.257905
-0.180579
-0.196895
-0.199668
-0.262394
-0.273925
-0.257868
-0.137135
-0.157229
-0.123078
-0.129654
-0.137801
-0.157222
-0.129782
0.0324397
0.0309727
0.0764495
0.0706759
0.075277
0.0318288
0.0312215
-0.0213279
-0.159835
-0.180603
-0.019929
-0.156489
-0.0205816
-0.0214764
-0.0201718
-0.0214795
-0.181807
-0.149656
-0.152832
-0.0210471
-0.0189078
0.0358696
0.0782577
0.0835578
0.0358006
0.0789401
0.0331571
0.0418435
0.171617
0.104025
0.0745373
0.160581
0.17361
0.0720882
0.159285
0.208395
0.14344
0.207246
0.209642
0.206675
0.185324
0.0970509
0.0988182
0.18366
0.16972
0.102869
0.0679922
0.156618
0.0697723
0.158012
0.167785
0.187368
0.102982
0.18901
0.101168
0.0318782
0.0304768
0.0716163
0.0655262
0.0303399
0.0311982
0.0610909
-0.0150888
-0.139352
-0.187191
-0.0237247
-0.141345
-0.0229011
-0.0145311
-0.0162262
-0.0221024
-0.186061
-0.146983
-0.143992
-0.0223617
-0.0177559
0.0322661
0.0703168
0.0288849
0.0528497
0.0299487
0.0566764
0.0318863
0.0216472
0.017298
0.0144769
0.0521082
0.0159631
0.0206269
0.0168466
0.0200753
0.0185802
-0.00351533
-0.108951
-0.17813
-0.0263282
-0.118296
-0.0287878
-0.00182105
-0.00492099
-0.0302307
-0.124719
-0.182832
-0.121924
-0.00628154
-0.0299733
0.0150399
0.017031
0.0228619
0.0523147
0.0182791
0.0178332
0.01748
0.0172567
0.0235567
0.168905
0.105
0.116947
0.152059
0.160322
0.0996623
0.154344
0.204824
0.137136
0.200086
0.199535
0.201874
0.18164
0.0955354
0.182854
0.0966196
0.166749
0.101169
0.0695292
0.155911
0.167522
0.0725174
0.154626
0.194944
0.129891
0.179497
0.137882
0.0169843
0.0191239
0.0540698
0.0111764
0.0208628
0.0206403
0.0056619
-0.0131236
-0.138226
-0.185969
-0.0251205
-0.134431
-0.0146695
-0.026311
-0.0123887
-0.0285196
-0.187917
-0.125564
-0.132108
-0.0281694
-0.00637379
0.0273203
0.063861
0.0272543
0.051377
0.0304768
0.024608
0.0434401
0.0107609
0.00826403
-0.315222
-0.290998
-0.290104
-0.270489
-0.284067
-0.272984
-0.315096
-0.287275
-0.288832
-0.276614
-0.286435
-0.275017
-0.260885
-0.281102
-0.248788
-0.240189
-0.234343
-0.281678
-0.261043
-0.260728
-0.227752
-0.24649
-0.279618
-0.23151
-0.257837
-0.281972
-0.389618
-0.355983
-0.386329
-0.440481
-0.19513
-0.185609
-0.330369
-0.342001
-0.194295
-0.442497
-0.435617
-0.349535
-0.190712
-0.186264
-0.431355
-0.347829
-0.192634
-0.354724
-0.37847
-0.380764
-0.253388
-0.277793
-0.222958
-0.240388
-0.252538
-0.223787
-0.276106
-0.25442
-0.225933
-0.240052
-0.278485
-0.22412
-0.256323
-0.276752
-0.356631
-0.389335
-0.384002
-0.424433
-0.183199
-0.33548
-0.179487
-0.424186
-0.341235
-0.184882
-0.355492
-0.361913
-0.374354
-0.423887
-0.348335
-0.181984
-0.18839
-0.345441
-0.426506
-0.186413
0.00882541
-0.00162511
0.0388309
0.0113626
0.00769977
0.0013368
-0.00409048
0.0285154
0.0305424
-0.015063
-0.0802071
-0.101289
-0.0401728
-0.0702472
-0.0406683
-0.0132486
-0.0242735
-0.0457847
-0.104488
-0.0902856
-0.0873766
-0.0437035
-0.0314473
0.0143201
0.0387198
0.00772815
0.00444563
0.00701288
0.00283381
0.0168191
0.042993
0.0312047
0.143942
0.082592
0.0135502
0.206347
0.131406
0.0315722
0.223722
0.144966
0.125387
0.126707
0.143769
0.148771
0.140023
0.146692
0.131438
-0.0520056
-0.00934641
0.0468541
0.0306409
-0.0116958
-0.0506827
0.0522648
-0.0554104
-0.0967872
-0.10681
-0.0550784
-0.0952
-0.0527578
-0.0570526
-0.0102931
0.0842004
0.084788
-0.0104074
-0.0526702
-0.0476917
-0.104045
-0.0952077
-0.0926407
-0.0498651
-0.0505116
-0.0510316
0.0483712
-0.0140295
0.0566387
-0.0126488
0.0566723
-0.0516063
-0.0107321
0.0891493
-0.00624676
0.0858658
-0.0577744
-0.019486
0.0528511
0.0428698
0.0520385
-0.0567375
-0.0202736
-0.0151122
0.0787827
0.0797108
-0.0160364
-0.0660189
-0.109035
-0.119969
-0.0657031
-0.107489
-0.0645247
-0.0674549
-0.0646222
-0.0625331
-0.104044
-0.119419
-0.105674
-0.0633091
-0.0636046
-0.013853
0.0814983
0.0807954
-0.0131849
-0.0586506
0.0419869
0.0496051
-0.022467
0.0511154
-0.02111
-0.0598996
0.147245
0.0875612
0.0430142
0.230028
0.147137
0.0424426
0.229565
0.143383
0.125414
0.143906
0.124777
0.143081
0.123633
0.142615
0.124226
-0.054362
-0.0186836
0.0449764
0.0538773
-0.0176242
-0.0554394
0.0547632
-0.0590898
-0.0975925
-0.113347
-0.0564897
-0.0991387
-0.0576947
-0.05836
-0.0107089
0.0843319
-0.0100641
0.0836266
-0.0603809
-0.0613514
-0.115248
-0.102244
-0.100631
-0.059946
-0.0617593
-0.0534289
0.0462182
-0.0147961
0.0566721
-0.0520877
-0.0162679
0.0554914
-0.0116123
0.0822347
-0.0124546
0.0829651
-0.324058
-0.276785
-0.482096
-0.281036
-0.464139
-0.287342
-0.30837
-0.283541
-0.321531
-0.288991
-0.428356
-0.284667
-0.445865
-0.277158
-0.307388
-0.280751
-0.588356
-0.344912
-0.615264
-0.331547
-0.626
-0.5913
-0.346598
-0.36308
-0.247321
-0.227971
-0.299623
-0.299134
-0.247009
-0.361094
-0.362188
-0.294456
-0.243671
-0.224344
-0.361081
-0.296138
-0.245606
-0.585331
-0.3382
-0.613219
-0.349275
-0.636209
-0.350055
-0.573258
-0.596868
-0.319807
-0.342924
-0.603674
-0.34115
-0.592509
-0.594088
-0.358252
-0.23787
-0.288259
-0.218506
-0.357008
-0.290015
-0.239457
-0.599359
-0.315775
-0.337215
-0.569818
-0.601818
-0.339274
-0.581117
-0.359312
-0.29305
-0.219831
-0.242409
-0.291531
-0.360268
-0.24092
-0.0189009
-0.0303665
0.0227394
0.0319864
0.0334717
-0.0294136
-0.0200295
0.00935004
0.0657147
0.0631987
0.0115564
-0.144107
-0.162111
-0.147348
-0.0936695
-0.164254
-0.0964096
-0.142721
-0.095802
-0.0960722
-0.144931
-0.0987295
-0.148938
-0.167272
-0.165581
-0.0976463
-0.145642
-0.0182792
0.0244138
0.037382
-0.0247549
0.0346038
-0.0281445
-0.0158989
0.00769965
0.0593135
0.060626
0.00750561
0.157706
-0.084293
0.0312481
0.146823
0.138476
0.0838704
0.145863
0.100402
0.0567037
0.0861923
0.0860522
0.104444
0.0518051
0.0925424
0.0907646
0.117212
0.0839437
0.0336927
-0.024521
-0.0309832
0.0183626
0.0292685
-0.0322418
-0.0213659
0.0250064
-0.149422
-0.17456
-0.154991
-0.103122
-0.17191
-0.101788
-0.15071
-0.0945539
-0.0956214
0.00857763
0.0570701
0.0580455
0.00782889
-0.150335
-0.0994174
-0.153685
-0.167682
-0.169987
-0.101232
-0.146409
-0.0248865
0.0172663
-0.0342666
0.0218408
-0.0327984
0.0242543
-0.0271618
0.00732384
0.0572754
0.00757608
0.0561139
-0.0400621
-0.039244
0.0111883
0.00637977
0.0112234
-0.0378981
-0.0404404
0.0229986
0.0889254
0.0815353
0.0275612
-0.0892802
-0.090365
-0.16748
-0.18875
-0.169181
-0.116588
-0.187236
-0.114457
-0.170008
-0.163457
-0.107509
-0.182697
-0.164435
-0.185647
-0.159496
-0.110113
0.0162424
0.066207
0.0715939
0.0134169
0.164838
-0.167326
-0.0748863
0.143537
0.159915
-0.0537281
0.147948
0.109852
0.0394545
0.0885955
0.10682
0.0911346
0.0272447
0.11088
0.0963229
0.0266119
0.110785
0.0937002
0.0280907
-0.0341276
-0.0387645
0.0101659
0.0125525
-0.0379015
-0.0359629
0.0141746
-0.154978
-0.175968
-0.159116
-0.103946
-0.17777
-0.152944
-0.105396
-0.0924995
-0.0914528
0.00936682
0.058419
0.00916427
0.0592639
-0.156567
-0.107282
-0.160217
-0.181168
-0.179427
-0.106429
-0.158101
-0.0321624
0.0117481
-0.0349246
0.0192827
-0.0292976
-0.0367822
0.0160725
0.0104752
0.0630764
0.0116455
0.0610939
-0.576073
-0.42707
-0.377716
-0.741593
-0.586309
-0.373104
-0.733576
-0.458615
-0.419601
-0.334937
-0.393932
-0.449375
-0.337478
-0.433849
-0.564582
-0.424724
-0.364879
-0.7177
-0.553973
-0.369234
-0.72561
-0.469778
-0.343283
-0.464576
-0.396009
-0.478448
-0.340331
-0.451709
-0.490433
-0.383047
-0.737819
-0.448246
-0.731885
-0.491925
-0.384281
-0.223844
-0.222638
-0.386251
-0.340844
-0.258271
-0.320903
-0.319946
-0.342158
-0.385104
-0.388836
-0.317731
-0.345077
-0.257584
-0.389562
-0.319036
-0.344497
-0.487171
-0.449714
-0.718868
-0.386716
-0.724114
-0.385325
-0.485588
-0.497388
-0.445973
-0.38284
-0.743327
-0.384188
-0.750301
-0.493998
-0.36579
-0.29034
-0.324049
-0.252084
-0.364309
-0.322277
-0.29991
-0.226597
-0.21512
-0.493855
-0.448348
-0.391487
-0.764126
-0.496888
-0.389236
-0.756658
-0.386933
-0.317361
-0.254663
-0.348952
-0.317508
-0.391381
-0.343591
0.0720137
0.110037
0.0969968
0.070435
-0.121931
-0.266431
-0.191865
-0.115759
-0.266245
-0.116874
-0.122592
-0.0152522
-0.139337
-0.140673
-0.0120198
-0.120164
-0.118762
-0.192863
-0.264789
-0.265099
-0.118164
-0.119012
0.0734627
0.0708384
0.0850417
0.0742919
-0.00494286
0.117325
0.082833
-0.307711
-0.000487512
0.0821204
-0.293542
-0.0461055
-0.391318
-0.00969384
0.00244324
-0.056897
-0.377598
-0.0363421
0.0256837
-0.35185
-0.0258664
0.0135745
-0.364585
-0.113669
-0.259923
-0.195583
-0.122593
-0.261124
-0.121522
-0.112327
-0.0063854
-0.137918
-0.137195
-0.00868891
0.0727599
0.0141691
0.0278588
0.0650894
-0.116036
-0.119593
-0.194876
-0.263668
-0.26319
-0.120411
-0.117229
0.0742066
0.0576741
0.0747725
0.0419128
-0.0377006
-0.073609
-0.0628879
-0.0503303
-0.00072619
-0.0864108
-0.0846044
0.000789228
-0.0975838
-0.176345
-0.186383
-0.129041
-0.177797
-0.127397
-0.0983596
-0.0995394
-0.124634
-0.184389
-0.185522
-0.181601
-0.10052
-0.125495
-0.0242335
-0.0411333
-0.0530336
-0.00821586
-0.0211584
0.156572
0.0773788
-0.18784
-0.0240009
0.0775411
-0.206276
-0.0763218
-0.405697
-0.0195262
-0.066183
-0.0310214
-0.419584
-0.0851646
-0.0533901
-0.446894
-0.0952337
-0.0412127
-0.433754
-0.105582
-0.255257
-0.194046
-0.122407
-0.250047
-0.108089
-0.123432
0.0143821
-0.0905656
-0.0904949
0.00203668
0.039263
0.00478914
0.0539271
-0.00685236
-0.100556
-0.124681
-0.189163
-0.194617
-0.220215
-0.1233
-0.10345
0.0262457
-0.0301749
0.00683732
-0.0167323
-0.82017
-0.537419
-0.534082
-0.817415
-0.825625
-0.528294
-0.826002
-0.672229
-0.576893
-0.476365
-0.455723
-0.664408
-0.481635
-0.58252
-0.814521
-0.534489
-0.517972
-0.841854
-0.808112
-0.523248
-0.83451
-0.679753
-0.4928
-0.593404
-0.459958
-0.687194
-0.486735
-0.588041
-0.382698
-0.418588
-0.521578
-0.492158
-0.515058
-0.389372
-0.421866
-0.369588
-0.301878
-0.350989
-0.311836
-0.359465
-0.224083
-0.305472
-0.368159
-0.366081
-0.220639
-0.357981
-0.360561
-0.360281
-0.21623
-0.303813
-0.362366
-0.363878
-0.218029
-0.377208
-0.494173
-0.503179
-0.426145
-0.50952
-0.424143
-0.371092
-0.403801
-0.483963
-0.415924
-0.52858
-0.412451
-0.535537
-0.396615
-0.367631
-0.212777
-0.348147
-0.290806
-0.368826
-0.350918
-0.214247
-0.314758
-0.291708
-0.332575
-0.281656
-0.41178
-0.481478
-0.407453
-0.550156
-0.419413
-0.409917
-0.543092
-0.36575
-0.357429
-0.293315
-0.215618
-0.353602
-0.364202
-0.214233
-0.251474
-0.295715
-0.309884
-0.241603
-0.109666
-0.145862
-0.225456
-0.166876
-0.144526
-0.170292
-0.108797
-0.209675
-0.205107
-0.194776
-0.219519
-0.111891
-0.177959
-0.231027
-0.149392
-0.148413
-0.173953
-0.114411
-0.262572
-0.340761
-0.324036
-0.275516
-0.0324617
0.220604
0.0928282
0.155535
-0.031632
0.0899616
0.157033
-0.251678
-0.161244
-0.441753
-0.424101
-0.25731
-0.182934
-0.25011
-0.390551
-0.211896
-0.246881
-0.407732
-0.193745
-0.121177
-0.154535
-0.2429
-0.184549
-0.153951
-0.18322
-0.121998
-0.240217
-0.215742
-0.226152
-0.229734
-0.316057
-0.40851
-0.391552
-0.328936
-0.117469
-0.180675
-0.240949
-0.150084
-0.150924
-0.182509
-0.115871
-0.302055
-0.356863
-0.288265
-0.374512
-0.403628
-0.498949
-0.5009
-0.406494
-0.311632
-0.286609
-0.29467
-0.303923
-0.138742
-0.175636
-0.269129
-0.208089
-0.170268
-0.206074
-0.144633
-0.134446
-0.199468
-0.162568
-0.267742
-0.166232
-0.130077
-0.204621
-0.395134
-0.483447
-0.494168
-0.385767
-0.0455196
0.212324
0.0799365
0.154545
-0.0439464
0.0769945
0.15684
-0.276048
-0.117888
-0.459671
-0.268995
-0.478541
-0.0989115
-0.278009
-0.508069
-0.0571963
-0.279245
-0.493519
-0.0783502
-0.125345
-0.156549
-0.252497
-0.189083
-0.158346
-0.123992
-0.190973
-0.287063
-0.278218
-0.269766
-0.29565
-0.352545
-0.423036
-0.339474
-0.44069
-0.125706
-0.196597
-0.255223
-0.161106
-0.158733
-0.192535
-0.128093
-0.363585
-0.47056
-0.375332
-0.455348
-0.822063
-0.562494
-0.602227
-0.639182
-0.824268
-0.601043
-0.636318
-0.820194
-0.722092
-0.592287
-0.571691
-0.820084
-0.593509
-0.725743
-0.825385
-0.56063
-0.600505
-0.61968
-0.834252
-0.600313
-0.629779
-0.820313
-0.595983
-0.729188
-0.573777
-0.820514
-0.594859
-0.728186
-0.517506
-0.47694
-0.557709
-0.529764
-0.559545
-0.516823
-0.47914
-0.605354
-0.612744
-0.471425
-0.437204
-0.466637
-0.44195
-0.342848
-0.277038
-0.352926
-0.42494
-0.423622
-0.27886
-0.34098
-0.343464
-0.42061
-0.278493
-0.353032
-0.343689
-0.422969
-0.278626
-0.594454
-0.587771
-0.517881
-0.531759
-0.564063
-0.48213
-0.562379
-0.48061
-0.517296
-0.511717
-0.522558
-0.473996
-0.555278
-0.472053
-0.552741
-0.514371
-0.338536
-0.270606
-0.410251
-0.343514
-0.33524
-0.413174
-0.273629
-0.578409
-0.575076
-0.459634
-0.432914
-0.462718
-0.429034
-0.508384
-0.520497
-0.467289
-0.543464
-0.504676
-0.469775
-0.548733
-0.340969
-0.417395
-0.345868
-0.277605
-0.415535
-0.342744
-0.276122
-0.581438
-0.583707
-0.544254
-0.553883
-0.561474
-0.536788
-0.47478
-0.430368
-0.425328
-0.480999
-0.551522
-0.576527
-0.568955
-0.55904
0.0490654
0.0624546
0.158475
0.00466805
0.0459953
0.16275
-0.00109721
-0.0829693
-0.0735738
-0.367805
-0.242823
-0.366565
-0.0802701
-0.0728803
-0.0864033
-0.364925
-0.0675582
-0.243335
-0.0883589
-0.366454
-0.0700748
-0.492418
-0.434963
-0.439784
-0.486392
-0.580191
-0.602192
-0.596446
-0.586462
-0.573061
-0.582912
-0.565652
-0.589928
-0.639085
-0.584772
-0.588621
-0.64904
-0.552109
-0.477169
-0.484082
-0.542668
-0.629175
-0.585963
-0.584858
-0.620959
0.0683318
0.0127837
0.185726
-0.0466441
0.0678447
0.185309
-0.0390465
-0.073988
-0.078796
-0.367287
-0.246905
-0.077302
-0.36361
-0.0859507
-0.071463
-0.355835
-0.100578
-0.257425
-0.0712367
-0.358998
-0.0937096
-0.526019
-0.471078
-0.465238
-0.53448
-0.600435
-0.606966
-0.593463
-0.602512
-0.606674
-0.588181
-0.613654
-0.593628
-0.801792
-0.570024
-0.616722
-0.716052
-0.799789
-0.616741
-0.71857
-0.998633
-0.94906
-0.651917
-0.651551
-1.00273
-0.652132
-0.955948
-0.731596
-0.729267
-0.802222
-0.570457
-0.616973
-0.722307
-0.803375
-0.616375
-0.719809
-0.995255
-0.654
-0.97043
-0.654428
-0.990365
-0.653277
-0.963852
-0.72288
-0.727783
-0.419354
-0.482263
-0.509586
-0.518904
-0.507635
-0.419214
-0.480031
-0.543398
-0.556416
-0.561726
-0.551055
-0.556375
-0.624372
-0.549498
-0.632771
-0.37605
-0.378344
-0.372986
-0.425286
-0.434319
-0.369155
-0.383163
-0.373457
-0.441912
-0.359498
-0.375607
-0.371451
-0.438435
-0.363301
-0.532493
-0.570895
-0.565526
-0.524474
-0.41819
-0.518507
-0.500992
-0.481197
-0.50531
-0.477565
-0.41634
-0.416757
-0.520465
-0.482913
-0.509856
-0.483412
-0.511417
-0.417193
-0.359854
-0.336874
-0.443299
-0.377065
-0.356881
-0.443654
-0.341838
-0.510641
-0.583443
-0.511825
-0.579977
-0.531473
-0.613036
-0.53994
-0.604465
-0.415714
-0.521156
-0.48399
-0.515388
-0.416325
-0.48389
-0.512095
-0.363976
-0.443093
-0.377736
-0.353692
-0.443148
-0.36735
-0.348025
-0.511733
-0.573462
-0.577779
-0.514794
-0.701417
-0.433565
-0.316527
-0.428919
-0.712025
-0.769376
-0.676099
-0.661019
-0.778148
-0.69057
-0.417187
-0.314334
-0.42367
-0.677154
0.157075
0.34342
0.264499
0.0519468
0.152244
0.273544
0.063405
0.0152023
-0.227536
-0.124874
-0.240239
-0.127607
0.0142045
-0.204159
0.0127495
-0.135682
-0.175682
-0.223359
0.0123163
-0.133315
-0.191901
-0.791984
-0.689315
-0.702634
-0.78503
-0.631107
-0.381893
-0.316147
-0.390198
-0.614848
-0.648065
-0.410091
-0.312066
-0.662983
-0.402337
-0.511071
-0.360842
-0.324815
-0.340302
-0.499174
-0.825513
-0.781631
-0.790289
-0.825342
-0.51899
-0.346207
-0.344687
-0.338232
-0.537735
0.182039
0.491805
0.33185
0.190603
0.187473
0.327232
0.169592
0.017418
-0.225504
-0.1245
-0.285155
0.0128475
-0.119688
-0.228441
0.0170611
-0.114154
-0.231779
-0.295106
0.0207396
-0.118735
-0.233327
-0.816311
-0.769322
-0.759285
-0.819337
-0.582684
-0.376082
-0.319067
-0.599162
-0.366563
-0.569357
-0.350617
-0.32248
-0.55103
-0.36037
-0.383702
-0.370306
-0.350471
-0.363377
-0.374327
-0.19669
-0.376615
-0.377804
-0.182818
-0.19065
-0.374894
-0.389738
-0.20378
-0.386111
-0.388683
-0.203782
-0.392592
-0.197888
-0.37626
-0.194169
-0.333437
-0.169054
-0.382001
-0.188546
-0.324735
-0.346585
-0.305616
-0.329395
-0.336131
-0.348988
-0.353909
-0.359865
-0.334814
-0.362075
-0.172085
-0.160463
-0.296176
-0.180757
-0.306006
-0.356409
-0.415244
-0.218937
-0.183458
-0.343576
-0.309087
-0.117079
-0.182183
-0.166578
-0.163217
-0.298838
-0.10349
-0.142784
-0.152218
-0.269646
-0.0848389
-0.278841
-0.0928935
-0.123948
-0.0865522
1.60887
0.317619
0.339562
-0.0753934
-0.17589
-0.3187
-0.334316
-0.169026
-0.0488004
-0.233374
-0.131902
-0.0715603
-0.221711
-0.0667038
-0.063353
-0.151061
-0.263064
-0.289383
-0.117263
-0.0720545
1.32091
0.374169
0.353277
-0.0889598
-0.157612
-0.314198
-0.295021
-0.171947
-0.0258642
-0.122145
-0.187214
-0.0409687
-0.199992
-0.0526719
-0.0119819
-0.336056
-0.346305
-0.326463
-0.312776
-0.368247
-0.173513
-0.365568
-0.365581
-0.174406
-0.368392
-0.164877
-0.355466
-0.16593
-0.359343
-0.359329
-0.147411
-0.354548
-0.155825
-0.338967
-0.130333
-0.11343
-0.271282
-0.332976
-0.140139
-0.27852
-0.32521
-0.297573
-0.333565
-0.265702
-0.344336
-0.162491
-0.12639
-0.284855
-0.347809
-0.151156
-0.281386
-0.323964
-0.22341
-0.30779
-0.254071
0.100415
-0.125037
-0.142101
0.101835
0.0978074
-0.161747
-0.147039
0.0761829
-0.0310951
-0.253721
-0.104114
-0.215005
0.00288509
-0.0846586
-0.17454
-0.029642
0.000635055
-0.172142
-0.0160678
0.00768263
-0.166139
-0.199878
0.0717337
-0.702897
-0.691722
-0.594174
-0.597439
-0.559621
-0.401876
-0.556858
-0.402812
-0.560201
-0.39411
-0.562041
-0.399899
-0.0595946
0.0691193
-0.21784
-0.230303
-0.0475831
0.00585319
-0.0654861
-0.249076
-0.127512
-0.238938
-0.0276239
-0.0730415
-0.0865641
-0.433295
-0.271347
-0.0893654
-0.365672
-0.269019
-0.0825184
-0.255441
-0.181931
-0.32766
-0.263977
-0.076336
-0.282269
-0.269263
-0.2279
-0.240775
-0.220419
-0.091212
-0.0901008
-0.216937
-0.224801
-0.111155
-0.23646
-0.0962429
0.0450644
-0.146829
-0.117614
0.00575849
0.0611972
-0.0594453
-0.109319
0.185535
0.255658
-0.0120897
-0.0119793
0.216233
0.263169
-0.048745
-0.025727
0.222558
-0.221214
-0.231154
-0.203172
-0.198513
-0.211658
-0.089256
-0.214327
-0.0858729
-0.20897
-0.0677908
-0.203993
-0.0842442
-0.628374
-0.651069
-0.531885
-0.509699
-0.358079
-0.236279
-0.368182
-0.226735
-0.350028
-0.212416
-0.339477
-0.220879
-2.94539
-2.31046
-2.53437
-2.46199
-2.38143
-1.75994
-1.94446
-2.13497
-2.53457
-2.5472
-2.29651
-2.13608
-2.7936
0.010601
0.213467
-1.28988
0.121479
-2.31856
0.48454
0.0288373
0.162468
-2.24019
-2.78558
1.17801
0.56856
0.762841
1.23841
1.03815
0.816616
-3.32364
0.880445
-2.98352
0.263045
-2.41973
0.656016
-1.04833
0.358165
0.192012
-2.20482
0.521582
-3.18481
-2.31358
-2.56089
-2.39255
-1.95568
-2.21491
-2.4665
-1.78084
-2.53507
-2.59167
-2.57604
-2.17724
-3.16444
-2.38519
-2.81566
-2.70254
-2.99251
-2.41516
-2.7486
-2.71393
-2.10739
-2.25358
0.807651
-2.40233
0.593289
0.444714
-2.65914
-2.56052
-2.67015
-2.58009
-1.82637
-2.36553
-1.95399
0.662856
-2.09512
0.226039
-1.57163
0.341174
1.56987
1.65288
1.57146
1.61737
1.57045
1.57388
1.64796
1.52911
1.46122
1.46745
1.49313
1.60677
1.60684
1.69115
1.66531
1.63393
1.66662
1.58758
1.59062
1.67842
1.62886
1.69208
1.62333
1.59488
1.67433
1.51952
1.47702
1.47126
1.52318
1.44408
1.36714
1.48412
1.4725
1.45256
1.35255
1.45139
1.45134
1.34991
1.35494
1.44367
1.47791
1.33914
1.57638
1.6635
1.63762
1.57137
1.67105
1.58382
1.56862
1.62585
1.72694
1.69649
1.6902
1.63787
1.5276
1.51965
1.60107
1.69124
1.72392
1.64143
1.63963
1.69428
1.60583
1.59267
1.64058
1.67593
1.58098
1.6712
1.57398
1.60042
1.48104
1.5248
1.52088
1.88824
1.97581
1.9567
1.9317
1.91753
1.9378
1.8971
1.83805
1.77483
1.88286
1.84641
1.82845
1.89322
1.78368
1.87629
1.96979
1.90721
1.9205
1.86777
1.91303
1.9311
1.84572
1.91261
1.85436
1.79483
1.90036
1.85033
1.79052
1.88379
1.9422
1.91443
1.93007
1.66477
1.2456
1.38559
1.57346
1.45273
1.21013
1.3692
1.35355
1.29795
1.51789
1.31047
1.74316
1.59121
1.49732
1.81149
1.8446
1.88568
1.90966
1.78972
1.93376
1.94468
1.9338
1.92468
1.92348
1.88064
1.93878
1.84566
1.61308
1.37166
1.40041
1.38257
1.48092
1.54657
1.4302
1.94523
1.93404
1.94807
1.93708
1.90128
1.67507
1.80266
1.85003
1.82524
1.82949
1.90546
1.96053
1.93617
1.90286
1.96623
1.93372
1.86647
1.83049
1.90297
1.94291
1.93693
1.82641
1.86832
1.86116
1.92196
1.79949
1.89931
1.8556
1.93516
1.80808
1.90352
1.96644
1.91525
1.96405
1.9249
1.90096
1.44603
1.33617
1.35777
1.44435
1.44699
1.33898
1.43893
1.45913
1.35854
1.48684
1.45134
1.49722
1.36467
1.45843
1.54227
1.47235
1.49939
1.35137
1.66502
1.70107
1.61833
1.67797
1.62027
1.66033
1.71385
1.83017
1.78382
1.77187
1.73954
1.85385
1.76415
1.66913
1.69972
1.62733
1.74816
1.61471
1.73247
1.68224
1.62288
1.66818
1.7006
1.62535
1.69896
1.59984
1.65701
1.65892
1.70817
1.77203
1.64906
1.72081
1.53076
1.53752
1.61765
1.66129
1.68558
1.58855
1.60946
1.6955
1.5969
1.66588
1.73904
1.7779
1.73054
1.53761
1.74329
1.79334
1.85733
1.82886
1.78719
1.81757
1.74823
-2.21003
-1.60422
-1.99316
-1.45968
-1.86336
-1.23686
-1.33139
1.72982
1.94588
1.9205
1.73382
1.94987
1.75143
1.72436
1.65597
1.47936
1.85865
1.89166
1.50126
1.93921
1.61288
1.68118
1.95887
1.87859
1.62523
1.54279
1.94746
1.72532
1.7196
1.92107
1.92745
1.7155
1.94451
1.72402
1.6946
1.93529
1.93185
1.80332
1.94825
1.8318
1.78967
1.85577
1.66316
1.67318
1.77982
1.75646
1.8131
1.75184
1.80299
1.79303
1.73777
1.95236
1.8755
1.86688
1.75603
1.78726
1.70681
1.74822
1.74468
1.79966
1.7193
1.77039
1.94663
1.73211
1.90349
1.75652
1.95341
1.73806
1.78763
1.76862
1.97097
1.98114
1.75077
1.98175
1.79389
1.76791
1.96193
1.65818
1.95056
1.71136
1.74055
1.97386
1.78029
1.9031
1.95169
1.74133
1.95621
1.74121
1.78242
0.51847
-0.726348
-0.705772
0.0793713
0.16733
-0.417598
0.418959
0.894437
1.22548
0.851801
1.15297
0.955933
0.836622
1.16446
0.567618
-0.611893
0.24196
0.39427
0.650202
0.167577
0.0242788
0.84788
0.542671
1.07889
1.04126
0.77298
0.752094
1.11856
-2.81102
-3.08042
-2.0254
-2.9381
-2.6971
-2.28046
-3.85187
-3.02191
-3.16781
-2.58119
-3.2192
-2.30592
-3.3856
-2.87789
-3.12372
-2.9396
-3.41365
-2.44481
-3.06364
-2.89299
-3.10145
-3.04452
0.283018
-0.648066
0.0873139
-1.0096
0.388988
-0.74533
-0.00187582
0.367872
0.731768
0.889697
-0.280904
-0.184649
0.814653
0.278332
0.580501
0.36925
1.00175
0.838631
0.705064
-0.0748599
0.915328
1.66667
1.70942
1.96343
1.94494
1.96163
1.7195
1.63893
1.5698
1.43876
1.91169
1.59447
1.61036
1.37786
1.88159
1.67638
1.95036
1.95534
1.72563
1.69915
1.95365
1.71567
1.53685
1.80355
1.47879
1.26679
1.3313
1.86408
1.48834
1.70554
1.72333
1.88732
1.93545
1.89283
1.70573
1.71544
1.7143
1.93946
1.9237
1.70342
1.90822
1.71361
1.71473
1.98269
1.91956
1.91209
1.83073
1.77975
1.83091
1.78625
1.82433
1.84254
1.78719
2.0084
1.899
1.91015
1.82984
1.86404
1.79123
1.79459
1.83429
1.85565
1.78863
1.70499
1.72265
1.91895
1.87303
1.72582
1.6994
1.86261
1.5811
1.70174
1.93042
1.95551
1.61887
1.68169
1.89519
1.35896
1.03665
1.13663
1.3915
1.10692
1.52668
1.29797
1.40463
1.73799
1.23239
1.16766
1.16754
1.458
1.63314
1.5517
1.94576
1.64362
1.81769
1.66895
1.86146
1.50582
1.67214
1.83933
1.41647
1.50877
1.24623
1.20847
1.4005
-0.312972
0.0432795
0.64946
0.682406
0.137143
0.155488
0.625998
1.83369
1.15925
1.46345
1.17663
1.36006
1.38591
1.1252
1.48466
1.61065
1.49444
1.26367
1.29438
1.31179
1.25138
1.51534
1.63029
1.50529
1.27557
1.3488
1.28761
1.33024
-0.225608
0.111713
0.218637
0.552013
0.151584
0.12555
0.59253
1.08967
1.62559
1.15869
0.994781
1.2239
1.25696
0.953067
1.28032
1.72224
0.976304
1.03413
1.33957
1.08326
1.30077
1.47755
1.55326
1.46549
1.22772
1.28086
1.24182
1.2573
1.44937
1.5346
1.45862
1.21701
1.22079
1.20587
1.23925
0.674501
1.31328
0.747867
0.665175
0.98868
1.0244
0.629318
1.37079
0.829597
0.775104
0.68633
1.09098
1.0545
0.731263
1.04591
1.5192
0.99319
0.881299
1.2039
0.924147
1.17257
1.4824
0.828425
0.913448
0.839336
1.11618
1.14597
0.788307
0.646453
1.16119
0.580168
0.575796
0.970394
0.936593
0.615512
1.12093
0.467559
0.51966
0.546082
0.881498
0.909597
0.514728
1.33091
1.27927
1.29994
1.07355
1.05119
1.09248
1.02368
0.352095
0.929261
0.370393
0.455443
0.799883
0.82267
0.438052
0.436485
0.987784
0.390344
0.467866
0.861189
0.498331
0.828703
0.343133
0.803477
0.330479
0.422036
0.774452
0.428217
0.74194
-0.157883
-0.162091
-0.15479
-0.158095
-0.166209
-0.13532
-0.130932
-0.13752
-0.13477
-0.13256
-0.12515
-0.120067
-0.117265
-0.123269
-0.1195
-0.132312
-0.118006
-0.119792
-0.122292
-0.13056
-0.121228
-0.121076
-0.133785
-0.138637
-0.13156
-0.134291
-0.159532
-0.160726
-0.159062
-0.164618
-0.155122
-0.166736
-0.184936
-0.187805
-0.176015
-0.182177
-0.178054
-0.178813
-0.185202
-0.156964
-0.150187
-0.156948
-0.15241
-0.162294
-0.178302
-0.135385
-0.142605
-0.139226
-0.132266
-0.134149
-0.140072
-0.135459
-0.136806
-0.134384
-0.140464
-0.136057
-0.127582
-0.12312
-0.119466
-0.126142
-0.131896
-0.121252
-0.136858
-0.1428
-0.135213
-0.141886
-0.136412
-0.134932
-0.141795
-0.134562
-0.135478
-0.165697
-0.158463
-0.158103
-0.160521
-0.157019
-0.163501
-0.163416
-0.175433
-0.178197
-0.173262
-0.170646
-0.176209
-0.181191
-0.177723
-0.19351
-0.174302
-0.18334
-0.175603
-0.175595
-0.195822
-0.177738
-0.175201
-0.0813514
-0.0846407
-0.0922803
-0.0938223
-0.0959386
-0.0824581
-0.0817185
-0.0621939
-0.0553091
-0.0536683
-0.0571001
-0.0606423
-0.0750443
-0.071704
-0.0638091
-0.0626586
-0.072331
-0.0735813
-0.0736489
-0.0828607
-0.0914133
-0.0830592
-0.0913876
-0.0827131
-0.0749419
-0.0680361
-0.0747108
-0.0792492
-0.074602
-0.0657149
-0.0661185
-0.0286471
-0.0283837
-0.0495097
-0.0548028
-0.0275887
-0.0500019
-0.0314098
-0.025333
-0.0448702
-0.021491
-0.0404076
-0.02327
-0.0241761
-0.0433742
-0.0659952
-0.0679588
-0.0654722
-0.0610461
-0.0687781
-0.066182
-0.0633504
-0.0929718
-0.0821889
-0.0865932
-0.0819082
-0.0923522
-0.0816375
-0.0822301
-0.0662584
-0.064302
-0.0835404
-0.0816502
-0.0745592
-0.0845258
-0.0734175
-0.0648678
-0.0685646
-0.0623606
-0.0758249
-0.0661792
-0.0697595
-0.0643033
-0.0782456
-0.0734556
-0.084534
-0.0784051
-0.0884346
-0.0717382
-0.0791076
-0.0738866
-0.0870924
-0.0928837
-0.0990361
-0.0823409
-0.0767606
-0.0655845
-0.0627726
-0.0736141
-0.0589954
-0.0658856
-0.0566946
-0.0713995
-0.12786
-0.119834
-0.123163
-0.119925
-0.132853
-0.111091
-0.106594
-0.111247
-0.107972
-0.113208
-0.10831
-0.10525
-0.124377
-0.124845
-0.128936
-0.133911
-0.12858
-0.13157
-0.122747
-0.123378
-0.127372
-0.110073
-0.117488
-0.104108
-0.102471
-0.108557
-0.114655
-0.103135
-0.108589
-0.113895
-0.101371
-0.112479
-0.116493
-0.105166
-0.122271
-0.123417
-0.10796
-0.101236
-0.0983605
-0.105988
-0.0966077
-0.15354
-0.157555
-0.167815
-0.154278
-0.150752
-0.16943
-0.152091
-0.160521
-0.175084
-0.170354
-0.153434
-0.150017
-0.155466
-0.150953
-0.15139
-0.164475
-0.154501
-0.157716
-0.107714
-0.102569
-0.117141
-0.120253
-0.125732
-0.117321
-0.120575
-0.143945
-0.121195
-0.131579
-0.123352
-0.137808
-0.122509
-0.123994
-0.135613
-0.15401
-0.151316
-0.143772
-0.140857
-0.150138
-0.14392
-0.145483
-0.154097
-0.147309
-0.168149
-0.151097
-0.150345
-0.13559
-0.13771
-0.144653
-0.137399
-0.146373
-0.157707
-0.138568
-0.138469
-0.138974
-0.138842
-0.15528
-0.164389
-0.154386
-0.159496
-0.156946
-0.15708
-0.157093
-0.158492
-0.121763
-0.126712
-0.135341
-0.126566
-0.124777
-0.13385
-0.12222
-0.122915
-0.133259
-0.13216
-0.13917
-0.126879
-0.125957
-0.136924
-0.147495
-0.146927
-0.149788
-0.143148
-0.144714
-0.145955
-0.150116
-0.154649
-0.156697
-0.158529
-0.163507
-0.158882
-0.16823
-0.155183
-0.164626
-0.171604
-0.149669
-0.14127
-0.155388
-0.149174
-0.149159
-0.158016
-0.156582
-0.154806
-0.157968
-0.165408
-0.156283
-0.154563
-0.168143
-0.0743588
-0.0732268
-0.0671412
-0.0662609
-0.0650794
-0.0733003
-0.0737858
-0.0851903
-0.0836867
-0.0886729
-0.0841828
-0.0787288
-0.0643172
-0.0674176
-0.0724605
-0.0654563
-0.0791473
-0.0743399
-0.084834
-0.0813988
-0.100101
-0.0842257
-0.0812182
-0.0687539
-0.0608677
-0.0734569
-0.0729245
-0.0598289
-0.0837338
-0.080575
-0.0761352
-0.0634239
-0.0629164
-0.0703745
-0.0599827
-0.072219
-0.0852553
-0.0811262
-0.0923595
-0.0888547
-0.0896665
-0.082466
-0.0820093
-0.168492
-0.178673
-0.174681
-0.178491
-0.171162
-0.169456
-0.183533
-0.148394
-0.156572
-0.150479
-0.142574
-0.149476
-0.152993
-0.142408
-0.155649
-0.176224
-0.176535
-0.159501
-0.169533
-0.181298
-0.0724626
-0.0603487
-0.0658688
-0.0661214
-0.0850565
-0.0829549
-0.0957092
-0.0909563
-0.0851951
-0.0799328
-0.0896511
-0.0785259
-0.074429
-0.0623406
-0.0664472
-0.0758061
-0.0755279
-0.0648553
-0.0726301
-0.0660814
-0.0639847
-0.0751058
-0.0596342
-0.06023
-0.0737546
-0.0773571
-0.0752759
-0.0516288
-0.0650014
-0.0598105
-0.0745563
-0.07919
-0.0803522
-0.084064
-0.0878345
-0.0794319
-0.084592
-0.0987321
-0.0923414
-0.0850355
-0.0791922
-0.0799347
-0.06344
-0.0810021
-0.072778
-0.0752058
-0.0646623
-0.0679555
-0.0748959
-0.0745708
-0.058002
-0.0830154
-0.0898349
-0.090637
-0.0840831
-0.0832789
-0.0904061
-0.0834054
-0.0844895
-0.0849585
-0.0934025
-0.0977436
-0.0934797
-0.084621
-0.0846302
-0.072772
-0.0698885
-0.0745345
-0.0602692
-0.072716
-0.0745441
-0.0598097
-0.0715734
-0.0689721
-0.0588735
-0.0742831
-0.0701109
-0.0647697
-0.0816298
-0.0919246
-0.0872712
-0.0823947
-0.0802514
-0.0892811
-0.0854454
-0.0824119
-0.0884571
-0.0871799
-0.0798114
-0.083623
-0.0725061
-0.0735135
-0.0694905
-0.0622603
-0.0720794
-0.0703661
-0.0664628
-0.108113
-0.107953
-0.111684
-0.101576
-0.104931
-0.106235
-0.110209
-0.121912
-0.121043
-0.114443
-0.119951
-0.114091
-0.112706
-0.111931
-0.11896
-0.120808
-0.121781
-0.11463
-0.125149
-0.116476
-0.120837
-0.116439
-0.141885
-0.152765
-0.140239
-0.145949
-0.145891
-0.143102
-0.144727
-0.151802
-0.149706
-0.151311
-0.151457
-0.150417
-0.137808
-0.138838
-0.142243
-0.149668
-0.140296
-0.150663
-0.140548
-0.148037
-0.154496
-0.141613
-0.160111
-0.158476
-0.161988
-0.148546
-0.162904
-0.162157
-0.154869
-0.151018
-0.154828
-0.160371
-0.148986
-0.151674
-0.162529
-0.156016
-0.149743
-0.150273
-0.159142
-0.107001
-0.106986
-0.113237
-0.0994431
-0.101079
-0.106734
-0.110382
-0.118996
-0.129416
-0.125311
-0.127153
-0.124318
-0.122825
-0.1278
-0.112551
-0.116364
-0.112223
-0.11078
-0.111688
-0.133664
-0.144738
-0.13003
-0.141912
-0.133029
-0.141447
-0.147763
-0.151301
-0.1275
-0.128842
-0.129121
-0.1257
-0.145456
-0.149411
-0.150157
-0.114229
-0.12214
-0.113009
-0.122823
-0.11414
-0.113174
-0.122186
-0.106926
-0.100225
-0.107154
-0.123127
-0.116357
-0.114782
-0.106378
-0.104192
-0.106037
-0.102712
-0.107484
-0.107073
-0.104125
-0.137291
-0.132218
-0.135096
-0.138586
-0.138417
-0.140597
-0.138389
-0.136933
-0.128351
-0.135678
-0.136788
-0.145696
-0.154551
-0.137622
-0.142157
-0.129524
-0.132522
-0.137887
-0.125125
-0.136141
-0.132748
-0.131523
-0.143547
-0.144769
-0.155505
-0.152531
-0.146039
-0.142962
-0.152941
-0.106897
-0.111194
-0.120751
-0.118623
-0.110442
-0.107573
-0.118101
-0.097896
-0.0916101
-0.0935329
-0.0993549
-0.0926821
-0.0990867
-0.0986256
-0.104284
-0.116207
-0.11295
-0.107024
-0.100784
-0.103218
-0.0967802
-0.0941609
-0.0944592
-0.10293
-0.100395
-0.102618
-0.116564
-0.107711
-0.114496
-0.106178
-0.110948
-0.105705
-0.149121
-0.13343
-0.133343
-0.142512
-0.133595
-0.149538
-0.1422
-0.149327
-0.148782
-0.156402
-0.149449
-0.157159
-0.153829
-0.134991
-0.142582
-0.152583
-0.147185
-0.148043
-0.156869
-0.156446
-0.147954
-0.147362
-0.1565
-0.125364
-0.117828
-0.120888
-0.121654
-0.118878
-0.123397
-0.119745
-0.103268
-0.0989099
-0.105413
-0.0993501
-0.105652
-0.117892
-0.114466
-0.118607
-0.117627
-0.113372
-0.117153
-0.114723
-0.115623
-0.115522
-0.144123
-0.130779
-0.133247
-0.144028
-0.14117
-0.1306
-0.148295
-0.146814
-0.16125
-0.159226
-0.153861
-0.14854
-0.170594
-0.14721
-0.147854
-0.151591
-0.146721
-0.146822
-0.169846
-0.137886
-0.112144
-0.11366
-0.126203
-0.111223
-0.112319
-0.107909
-0.101109
-0.107284
-0.109738
-0.10508
-0.101713
-0.103416
-0.103914
-0.108304
-0.101688
-0.112241
-0.10876
-0.107782
-0.102248
-0.104334
-0.106935
-0.110626
-0.111849
-0.115926
-0.117229
-0.111066
-0.131437
-0.135491
-0.131908
-0.141816
-0.149707
-0.158617
-0.157166
-0.160627
-0.14761
-0.15896
-0.160547
-0.05175
-0.0859844
-0.0488046
-0.0385341
-0.0447897
-0.0492049
-0.0697304
-0.068313
-0.0762884
-0.070505
-0.0686189
-0.073374
-0.0686667
-0.0759697
-0.0707428
-0.0618857
-0.0460368
-0.0503384
-0.046645
-0.0653187
-0.0699151
-0.0659695
-0.0777113
-0.0714246
-0.0689993
-0.06638
-0.0687391
-0.0769119
-0.068694
-0.0756411
-0.0594429
-0.0628671
-0.0477485
-0.0511705
-0.0606774
-0.0571182
-0.0478826
-0.0655946
-0.0444824
-0.0710276
-0.0475304
-0.0666825
-0.0648349
-0.0467537
-0.0750533
-0.0670641
-0.0810186
-0.0771152
-0.0706043
-0.0696009
-0.0757118
-0.100438
-0.0912407
-0.0943174
-0.100991
-0.0915712
-0.101048
-0.100415
-0.112161
-0.11633
-0.113546
-0.113221
-0.112835
-0.114364
-0.117769
-0.108668
-0.115804
-0.108514
-0.114363
-0.108572
-0.113854
-0.109399
-0.136588
-0.129605
-0.140619
-0.136968
-0.138574
-0.136791
-0.143347
-0.150747
-0.143352
-0.149629
-0.143101
-0.143386
-0.151103
-0.134998
-0.129118
-0.135931
-0.136082
-0.135944
-0.136095
-0.135018
-0.101492
-0.102518
-0.0977644
-0.100381
-0.100685
-0.100236
-0.101153
-0.108095
-0.118862
-0.108126
-0.120672
-0.108368
-0.118085
-0.109133
-0.118433
-0.109068
-0.118742
-0.108551
-0.129725
-0.128603
-0.121402
-0.117352
-0.129647
-0.120235
-0.126002
-0.1466
-0.146378
-0.142361
-0.146126
-0.141099
-0.154793
-0.147398
-0.130747
-0.124459
-0.119676
-0.132598
-0.120584
-0.132938
-0.130096
-0.0809976
-0.093732
-0.104042
-0.102752
-0.114154
-0.116156
-0.111617
-0.115812
-0.120321
-0.116556
-0.11186
-0.121824
-0.0831186
-0.16219
-0.128195
-0.126691
-0.122369
-0.122522
-0.128993
-0.122086
-0.125596
-0.14024
-0.14679
-0.143099
-0.147693
-0.140288
-0.142339
-0.147262
-0.130931
-0.12294
-0.123344
-0.131585
-0.130973
-0.123333
-0.131124
-0.108459
-0.109202
-0.108597
-0.109864
-0.102843
-0.0995192
-0.113991
-0.116287
-0.116006
-0.0994162
-0.102702
-0.089052
-0.0837029
-0.0874189
-0.0881843
-0.0874055
-0.0991022
-0.10756
-0.110205
-0.110615
-0.103063
-0.107568
-0.100933
-0.110048
-0.0915852
-0.089477
-0.0877844
-0.096319
-0.0913181
-0.090085
-0.0886801
-0.0986055
-0.100776
-0.158151
-0.159073
-0.160312
-0.13301
-0.140117
-0.131924
-0.133283
-0.136182
-0.135213
-0.142621
-0.13588
-0.144192
-0.138155
-0.135172
-0.13621
-0.139083
-0.14417
-0.131393
-0.133368
-0.0917159
-0.105799
-0.0929552
-0.103603
-0.10328
-0.0916918
-0.0786007
-0.0827163
-0.094595
-0.0944508
-0.078657
-0.0922433
-0.0893177
-0.0877753
-0.0841298
-0.084884
-0.091666
-0.0877959
-0.079401
-0.0939237
-0.0946507
-0.122064
-0.0932189
-0.117443
-0.0971098
-0.10224
-0.0950772
-0.102538
-0.0961551
-0.102294
-0.102115
-0.0966367
-0.108458
-0.106501
-0.115697
-0.114587
-0.108867
-0.115568
-0.10611
-0.111704
-0.115274
-0.118138
-0.116874
-0.111823
-0.117962
-0.116881
-0.131141
-0.122554
-0.132231
-0.1553
-0.149109
-0.1491
-0.147108
-0.153023
-0.149633
-0.148609
-0.122332
-0.12207
-0.130638
-0.133298
-0.131324
-0.082396
-0.0450702
-0.0390816
-0.0767405
-0.0539797
-0.0407115
-0.0594387
-0.0668928
-0.0655204
-0.0770405
-0.0662636
-0.0603291
-0.0883043
-0.0763036
-0.0777881
-0.0573997
-0.057807
-0.0762136
-0.0575181
-0.0641347
-0.0624564
-0.0784041
-0.0744061
-0.0658198
-0.0756641
-0.0703419
-0.0605955
-0.0848018
-0.0837881
-0.0810506
-0.0902044
-0.0678205
-0.0871681
-0.105258
-0.073475
-0.0638021
-0.0731386
-0.0638597
-0.067675
-0.0685365
-0.0579406
-0.0308151
-0.0235196
-0.0535595
-0.025611
-0.056968
-0.0562865
-0.0912137
-0.0887628
-0.0896458
-0.116935
-0.113507
-0.120084
-0.0840992
-0.0797582
-0.0860026
-0.085175
-0.105857
-0.121269
-0.115814
-0.109282
-0.120233
-0.108419
-0.106193
-0.106807
-0.124002
-0.12081
-0.114953
-0.122841
-0.110076
-0.109656
-0.136918
-0.139915
-0.136955
-0.138338
-0.141934
-0.16503
-0.151124
-0.153925
-0.15255
-0.145103
-0.144474
-0.142716
-0.131045
-0.133342
-0.142626
-0.144896
-0.133662
-0.135609
-0.140118
-0.139351
-0.131991
-0.137159
-0.138672
-0.13783
-0.130833
-0.129164
-0.108276
-0.107116
-0.0958076
-0.10241
-0.101022
-0.0900958
-0.099079
-0.0958615
-0.0970235
-0.116284
-0.106689
-0.0971322
-0.0819019
-0.0849129
-0.0820551
-0.101866
-0.108108
-0.118068
-0.115664
-0.114048
-0.11543
-0.10808
-0.117269
-0.0913115
-0.080592
-0.0903357
-0.0876617
-0.0828721
-0.0897735
-0.090035
-0.105682
-0.111631
-0.094611
-0.123261
-0.0985637
-0.105907
-0.114213
-0.129423
-0.118828
-0.127308
-0.14636
-0.156736
-0.132847
-0.147057
-0.139965
-0.139989
-0.155269
-0.131205
-0.130204
-0.132935
-0.115516
-0.119777
-0.113864
-0.129381
-0.133987
-0.130426
-0.116681
-0.126679
-0.121586
-0.128403
-0.114565
-0.133701
-0.0925534
-0.101975
-0.11202
-0.110648
-0.110529
-0.0969815
-0.0958601
-0.0933702
-0.108588
-0.11139
-0.102365
-0.110363
-0.094929
-0.0982546
-0.142042
-0.136408
-0.141672
-0.136301
-0.122483
-0.128428
-0.117096
-0.131173
-0.125736
-0.121833
-0.122569
-0.142398
-0.133033
-0.135874
-0.140506
-0.142461
-0.136271
-0.133791
-0.122947
-0.122507
-0.11994
-0.124865
-0.122511
-0.123941
-0.120632
-0.0967232
-0.108021
-0.105529
-0.105634
-0.0962962
-0.10852
-0.105388
-0.106396
-0.11267
-0.105296
-0.112111
-0.0988314
-0.0884871
-0.0912142
-0.0987994
-0.099184
-0.0906732
-0.0981593
-0.0987701
-0.0915874
-0.0987274
-0.0905868
-0.107343
-0.113039
-0.108867
-0.114792
-0.108594
-0.112607
-0.1078
-0.130618
-0.125287
-0.128685
-0.13092
-0.135113
-0.155019
-0.133709
-0.145713
-0.125145
-0.127962
-0.127953
-0.132998
-0.127616
-0.124826
-0.13183
-0.126107
-0.135616
-0.125455
-0.132252
-0.136786
-0.142744
-0.13606
-0.14452
-0.101893
-0.0994588
-0.113711
-0.106416
-0.103109
-0.101996
-0.0996091
-0.0941655
-0.0820737
-0.0809007
-0.0985402
-0.0810634
-0.101076
-0.101055
-0.112955
-0.107164
-0.109733
-0.105124
-0.106532
-0.103792
-0.114306
-0.0866697
-0.0869764
-0.0862156
-0.0865048
-0.11926
-0.128109
-0.120686
-0.103031
-0.113755
-0.103831
-0.115552
-0.0948799
-0.0866879
-0.0952462
-0.0862924
-0.0955298
-0.0945061
-0.0876815
-0.101767
-0.103294
-0.114161
-0.111941
-0.104014
-0.102154
-0.11155
-0.0995142
-0.0937079
-0.0988451
-0.107741
-0.104479
-0.114634
-0.104028
-0.0991981
-0.10894
-0.102394
-0.11275
-0.0985097
-0.0904881
-0.0984817
-0.0909942
-0.0835448
-0.0812081
-0.0948514
-0.0806807
-0.0924344
-0.0891578
-0.0941897
-0.0890657
-0.0838844
-0.0939316
-0.0941658
-0.115695
-0.0953152
-0.0932054
-0.0949258
-0.104994
-0.102491
-0.115328
-0.0965768
-0.102784
-0.0899021
-0.0888371
-0.0788983
-0.14296
-0.123994
-0.123639
-0.132146
-0.144638
-0.134821
-0.141775
-0.135866
-0.141864
-0.134517
-0.135904
-0.141929
-0.13946
-0.122693
-0.123506
-0.131513
-0.12252
-0.139012
-0.131635
-0.136668
-0.142115
-0.142117
-0.136009
-0.136625
-0.141004
-0.0621071
-0.0777972
-0.0634641
-0.0785413
-0.0589552
-0.0758612
-0.0674926
-0.0630199
-0.0709869
-0.0690991
-0.0686068
-0.071626
-0.0749921
-0.0606873
-0.0281529
-0.0212865
-0.0154449
-0.0398222
-0.0304261
-0.0197209
-0.0344308
-0.060797
-0.0720679
-0.0453343
-0.0725022
-0.0486852
-0.0750681
-0.0562258
-0.0836876
-0.0617176
-0.0850508
-0.0685452
-0.0358761
-0.0237574
-0.0210113
-0.0483462
-0.0501471
-0.0221411
-0.0364057
-0.0676604
-0.078901
-0.0798141
-0.063589
-0.0896049
-0.104768
-0.101449
-0.117016
-0.11362
-0.104801
-0.101956
-0.115099
-0.095993
-0.0869098
-0.0874218
-0.097355
-0.0854959
-0.0968456
-0.096489
-0.0946602
-0.0941462
-0.0875251
-0.0839854
-0.08494
-0.0950695
-0.0931369
-0.106483
-0.117547
-0.107878
-0.114767
-0.107091
-0.107242
-0.115834
-0.101888
-0.114511
-0.103973
-0.0989031
-0.0953466
-0.0721678
-0.0840272
-0.0773235
-0.0707802
-0.0905631
-0.0811951
-0.0872585
-0.0962473
-0.0969436
-0.102466
-0.096796
-0.0953281
-0.0871977
-0.096123
-0.114793
-0.104802
-0.105515
-0.124487
-0.127185
-0.123792
-0.126498
-0.124324
-0.119913
-0.123696
-0.121731
-0.122655
-0.129797
-0.125917
-0.133444
-0.135896
-0.127947
-0.12831
-0.135868
-0.0813293
-0.0817877
-0.0807232
-0.08468
-0.0794635
-0.0811406
-0.084938
-0.0811779
-0.0923348
-0.103913
-0.101075
-0.0923834
-0.105225
-0.105376
-0.105459
-0.102583
-0.100153
-0.113049
-0.113306
-0.102043
-0.103001
-0.111962
-0.0914414
-0.0931537
-0.0829467
-0.0833025
-0.0803424
-0.0929386
-0.093816
-0.12346
-0.123266
-0.127575
-0.124831
-0.121203
-0.123968
-0.125398
-0.130989
-0.139988
-0.13326
-0.138449
-0.133551
-0.130433
-0.138321
-0.12569
-0.122171
-0.121771
-0.127645
-0.127687
-0.121638
-0.126036
-0.127358
-0.125895
-0.134292
-0.137093
-0.125365
-0.129012
-0.136195
-0.0970804
-0.0961024
-0.0882491
-0.0926381
-0.0918086
-0.0870572
-0.0968692
-0.0952935
-0.0928802
-0.0863887
-0.0797516
-0.0777728
-0.0702669
-0.0776762
-0.067647
-0.0781402
-0.0792559
-0.0934124
-0.0964088
-0.102275
-0.0836614
-0.0914295
-0.0890283
-0.0850127
-0.0943188
-0.0914428
-0.0918252
-0.0950274
-0.120442
-0.111026
-0.126402
-0.116414
-0.120782
-0.11463
-0.120732
-0.110381
-0.11117
-0.118002
-0.124256
-0.139714
-0.119993
-0.122122
-0.122353
-0.11125
-0.1138
-0.12441
-0.113461
-0.121769
-0.124736
-0.113464
-0.117601
-0.118707
-0.138449
-0.118578
-0.119423
-0.0744039
-0.0818636
-0.0702193
-0.0751943
-0.0702719
-0.0738975
-0.0751188
-0.0955723
-0.084833
-0.105146
-0.108515
-0.0856789
-0.0943428
-0.092496
-0.0912015
-0.109736
-0.0981112
-0.111355
-0.109152
-0.102806
-0.10285
-0.0996458
-0.108083
-0.0843189
-0.0838869
-0.0745361
-0.0825967
-0.0738646
-0.0847414
-0.0820176
-0.0994062
-0.100437
-0.0987666
-0.0986985
-0.0998851
-0.0989311
-0.100142
-0.120334
-0.116672
-0.124554
-0.123947
-0.118696
-0.123911
-0.125039
-0.113545
-0.115843
-0.134794
-0.131138
-0.129841
-0.13205
-0.132495
-0.134532
-0.129958
-0.130175
-0.114383
-0.116788
-0.127541
-0.129363
-0.11894
-0.128288
-0.121551
-0.120826
-0.117939
-0.1251
-0.131191
-0.133416
-0.127205
-0.12788
-0.133339
-0.133122
-0.126462
-0.0855112
-0.0763621
-0.0723467
-0.0824042
-0.0696381
-0.0846613
-0.0872645
-0.0883027
-0.0862615
-0.108665
-0.0875051
-0.110535
-0.086727
-0.0911594
-0.102574
-0.0957032
-0.0957302
-0.11412
-0.0894671
-0.0958484
-0.0963648
-0.10245
-0.103187
-0.102862
-0.0951872
-0.0969919
-0.0857657
-0.0679969
-0.0671479
-0.0840328
-0.0946505
-0.102356
-0.102387
-0.0935386
-0.133475
-0.142065
-0.132656
-0.141787
-0.123047
-0.113982
-0.113295
-0.123906
-0.131229
-0.136016
-0.130158
-0.134935
-0.129983
-0.13165
-0.137134
-0.122838
-0.112365
-0.122301
-0.112989
-0.121447
-0.112112
-0.112833
-0.12123
-0.11231
-0.119842
-0.122337
-0.0869468
-0.0810763
-0.0592116
-0.085983
-0.0770286
-0.0833853
-0.0889738
-0.0847332
-0.0713386
-0.0755085
-0.0836943
-0.0956734
-0.104834
-0.103941
-0.0969563
-0.0941739
-0.102774
-0.0932494
-0.103355
-0.0953359
-0.101481
-0.0955658
-0.103819
-0.0942223
-0.102924
-0.0963952
-0.10073
-0.109958
-0.108891
-0.0989272
-0.110161
-0.100846
-0.0991515
-0.0934986
-0.0957653
-0.0853534
-0.0865774
-0.0931681
-0.084557
-0.0828573
-0.0815487
-0.1022
-0.110469
-0.10352
-0.110976
-0.101831
-0.0912664
-0.0881435
-0.0792594
-0.0784213
-0.0814456
-0.0906948
-0.0892668
-0.127352
-0.117901
-0.116024
-0.126484
-0.128246
-0.116675
-0.125415
-0.114999
-0.125183
-0.134586
-0.134765
-0.131079
-0.133408
-0.133012
-0.131063
-0.134211
-0.125587
-0.114291
-0.113647
-0.122573
-0.123633
-0.115045
-0.123485
-0.135279
-0.133007
-0.137412
-0.135422
-0.134571
-0.132559
-0.136106
-0.0970665
-0.107558
-0.0978276
-0.10627
-0.0967451
-0.0979087
-0.106629
-0.0871291
-0.0771437
-0.0714146
-0.0857385
-0.0770567
-0.0875988
-0.0852963
-0.0756694
-0.083337
-0.105547
-0.0971173
-0.0877878
-0.0870036
-0.0721086
-0.0780813
-0.0772447
-0.0859749
-0.0884455
-0.0962203
-0.10495
-0.0959475
-0.104471
-0.0962875
-0.0958834
-0.105419
-0.514919
-0.534703
-0.515196
-0.541893
-0.514353
-0.515702
-0.543028
-0.509873
-0.524337
-0.511743
-0.533703
-0.510636
-0.511054
-0.532854
-0.268586
-0.275314
-0.286981
-0.282079
-0.275127
-0.273065
-0.280406
-0.287733
-0.277137
-0.274244
-0.273296
-0.273025
-0.274374
-0.281982
-0.275846
-0.272363
-0.274218
-0.291538
-0.289086
-0.29099
-0.282968
-0.285159
-0.280245
-0.272417
-0.25225
-0.255906
-0.243524
-0.245848
-0.247721
-0.24926
-0.24687
-0.245872
-0.243673
-0.243365
-0.244411
-0.248491
-0.245987
-0.24157
-0.259421
-0.254525
-0.261651
-0.260621
-0.253143
-0.253342
-0.261187
-0.251754
-0.27613
-0.255789
-0.24968
-0.273046
-0.218508
-0.221623
-0.227287
-0.230435
-0.22014
-0.230706
-0.21763
-0.221202
-0.235252
-0.23036
-0.231142
-0.223643
-0.233725
-0.225898
-0.251749
-0.248683
-0.255025
-0.247063
-0.250443
-0.24853
-0.251366
-0.265556
-0.268099
-0.272226
-0.260505
-0.261976
-0.269774
-0.262088
-0.248797
-0.245767
-0.24863
-0.247209
-0.24463
-0.266458
-0.261003
-0.281321
-0.265723
-0.261302
-0.207934
-0.201661
-0.200627
-0.202079
-0.226708
-0.232024
-0.23482
-0.233259
-0.235842
-0.247792
-0.253672
-0.244317
-0.235271
-0.240616
-0.244176
-0.239172
-0.24751
-0.239238
-0.237183
-0.252494
-0.239525
-0.237996
-0.246564
-0.236322
-0.239679
-0.249342
-0.243367
-0.236093
-0.240065
-0.234463
-0.226134
-0.220516
-0.224847
-0.222715
-0.239501
-0.225194
-0.21067
-0.211294
-0.228558
-0.214506
-0.209053
-0.213217
-0.213389
-0.205389
-0.208703
-0.19999
-0.203883
-0.204722
-0.204021
-0.205016
-0.209111
-0.215429
-0.210662
-0.211985
-0.209587
-0.213731
-0.211749
-0.209707
-0.208577
-0.211405
-0.215675
-0.250869
-0.259481
-0.253135
-0.248514
-0.257596
-0.247467
-0.254322
-0.254323
-0.244439
-0.256599
-0.266446
-0.259021
-0.260921
-0.240281
-0.211911
-0.216723
-0.238317
-0.212833
-0.215863
-0.216506
-0.20106
-0.200749
-0.197313
-0.202481
-0.197582
-0.201443
-0.201656
-0.20863
-0.22311
-0.209232
-0.212047
-0.220411
-0.22313
-0.228362
-0.233891
-0.234824
-0.225874
-0.293948
-0.299141
-0.295697
-0.29395
-0.301615
-0.3015
-0.299267
-0.293949
-0.296407
-0.287264
-0.282937
-0.28465
-0.285858
-0.283155
-0.285318
-0.287716
-0.294525
-0.300383
-0.301031
-0.295068
-0.298536
-0.293408
-0.299404
-0.287361
-0.280656
-0.287737
-0.284661
-0.295105
-0.286194
-0.296165
-0.297068
-0.274841
-0.286414
-0.279787
-0.288777
-0.280232
-0.290853
-0.28793
-0.289535
-0.286117
-0.29182
-0.29301
-0.290051
-0.290596
-0.288526
-0.295204
-0.275015
-0.278545
-0.275012
-0.275539
-0.280416
-0.283805
-0.287744
-0.267894
-0.27448
-0.301481
-0.276268
-0.271235
-0.271911
-0.270419
-0.258671
-0.256474
-0.272732
-0.255048
-0.268479
-0.276317
-0.26836
-0.271602
-0.272283
-0.275023
-0.270445
-0.269971
-0.318312
-0.336162
-0.319599
-0.329926
-0.318775
-0.318597
-0.33525
-0.319946
-0.327202
-0.330704
-0.334051
-0.321434
-0.323758
-0.336026
-0.284129
-0.290907
-0.296597
-0.289231
-0.290401
-0.286251
-0.288906
-0.286783
-0.288134
-0.289605
-0.262026
-0.260854
-0.258488
-0.26264
-0.26
-0.264453
-0.260531
-0.272998
-0.274305
-0.275256
-0.288395
-0.273095
-0.2892
-0.273407
-0.293722
-0.27526
-0.282126
-0.27445
-0.280678
-0.287098
-0.316977
-0.346276
-0.313159
-0.320365
-0.309376
-0.348716
-0.324971
-0.335976
-0.336301
-0.334815
-0.326832
-0.333846
-0.337462
-0.224878
-0.24689
-0.248331
-0.228173
-0.226619
-0.244875
-0.227244
-0.288064
-0.297182
-0.287842
-0.301119
-0.287753
-0.281805
-0.281733
-0.280309
-0.281
-0.278861
-0.291399
-0.253619
-0.253745
-0.252647
-0.253033
-0.255837
-0.276378
-0.292034
-0.266405
-0.270374
-0.272638
-0.299253
-0.291667
-0.291053
-0.30733
-0.295459
-0.291526
-0.304643
-0.326416
-0.314447
-0.322758
-0.300791
-0.294972
-0.292475
-0.29567
-0.296007
-0.296984
-0.293232
-0.322034
-0.309361
-0.313553
-0.308008
-0.320406
-0.274028
-0.273668
-0.280684
-0.277101
-0.271137
-0.270183
-0.290705
-0.274209
-0.269263
-0.276602
-0.259141
-0.251113
-0.255088
-0.257011
-0.272672
-0.273214
-0.27
-0.2743
-0.270559
-0.270951
-0.271201
-0.276015
-0.30356
-0.290257
-0.287426
-0.308879
-0.286811
-0.30933
-0.304849
-0.302258
-0.327195
-0.309369
-0.304576
-0.307541
-0.320176
-0.304045
-0.307163
-0.317374
-0.305722
-0.305373
-0.319665
-0.257633
-0.259646
-0.184472
-0.197839
-0.205138
-0.187095
-0.215326
-0.222826
-0.20834
-0.216644
-0.168994
-0.171272
-0.166004
-0.190147
-0.180854
-0.205262
-0.193134
-0.178296
-0.196834
-0.195432
-0.193398
-0.195321
-0.18916
-0.19786
-0.200862
-0.198403
-0.187654
-0.209924
-0.209324
-0.219345
-0.212297
-0.203388
-0.219626
-0.21033
-0.225471
-0.225698
-0.211631
-0.210354
-0.214434
-0.211123
-0.222552
-0.213115
-0.207229
-0.169831
-0.168359
-0.186667
-0.169664
-0.165847
-0.169077
-0.16636
-0.167848
-0.16376
-0.189555
-0.21162
-0.208851
-0.228626
-0.229256
-0.214024
-0.216876
-0.225541
-0.216285
-0.233873
-0.233654
-0.23677
-0.236818
-0.214646
-0.211875
-0.210883
-0.212444
-0.217558
-0.211683
-0.210357
-0.214034
-0.214155
-0.241152
-0.251879
-0.241402
-0.230047
-0.231391
-0.25032
-0.239826
-0.220151
-0.215706
-0.229019
-0.216183
-0.232013
-0.217698
-0.21818
-0.226917
-0.222857
-0.239113
-0.237581
-0.228643
-0.226319
-0.2273
-0.226899
-0.229634
-0.217954
-0.228074
-0.22493
-0.221356
-0.233719
-0.231291
-0.256949
-0.232876
-0.235278
-0.238938
-0.236266
-0.256273
-0.234933
-0.255234
-0.223359
-0.240194
-0.239675
-0.239427
-0.239472
-0.240526
-0.232708
-0.226324
-0.24393
-0.239336
-0.242725
-0.254752
-0.23741
-0.221918
-0.236295
-0.241253
-0.254659
-0.241894
-0.221449
-0.224416
-0.238527
-0.221609
-0.246908
-0.247606
-0.253049
-0.250147
-0.244978
-0.238226
-0.236541
-0.214499
-0.219129
-0.222582
-0.224787
-0.220858
-0.21583
-0.22288
-0.249366
-0.228358
-0.224264
-0.235876
-0.233796
-0.227822
-0.240058
-0.224763
-0.22414
-0.227324
-0.219586
-0.252301
-0.236683
-0.228989
-0.236226
-0.219303
-0.229487
-0.228561
-0.236082
-0.237099
-0.237888
-0.236515
-0.242859
-0.240625
-0.240569
-0.235542
-0.23987
-0.244817
-0.22751
-0.230981
-0.222555
-0.224609
-0.227333
-0.226955
-0.22512
-0.235477
-0.24371
-0.199368
-0.204606
-0.20614
-0.200495
-0.204694
-0.198466
-0.195183
-0.204981
-0.19749
-0.201111
-0.197859
-0.196997
-0.198526
-0.203076
-0.203552
-0.207655
-0.219997
-0.213645
-0.213076
-0.203225
-0.220407
-0.198155
-0.209228
-0.210297
-0.21762
-0.203208
-0.201348
-0.215129
-0.195212
-0.212869
-0.192449
-0.201975
-0.191656
-0.197424
-0.21126
-0.212373
-0.199996
-0.189816
-0.1949
-0.189361
-0.196712
-0.195673
-0.186193
-0.204035
-0.186519
-0.189772
-0.18657
-0.195502
-0.192373
-0.192659
-0.196623
-0.192132
-0.189491
-0.191474
-0.196498
-0.229837
-0.218508
-0.216557
-0.218779
-0.222867
-0.218262
-0.251636
-0.248968
-0.245681
-0.246037
-0.243456
-0.2475
-0.2543
-0.215718
-0.21757
-0.225171
-0.228301
-0.217514
-0.245674
-0.24781
-0.232074
-0.213957
-0.219974
-0.207298
-0.239148
-0.231394
-0.213344
-0.22024
-0.236764
-0.222078
-0.235763
-0.224007
-0.220105
-0.238966
-0.221742
-0.222542
-0.246292
-0.214836
-0.225241
-0.248717
-0.233581
-0.252085
-0.236031
-0.250296
-0.231413
-0.238584
-0.215262
-0.244947
-0.234138
-0.237029
-0.230577
-0.228771
-0.242223
-0.22852
-0.239541
-0.238255
-0.238749
-0.252388
-0.253438
-0.241674
-0.384273
-0.383189
-0.352414
-0.367962
-0.355344
-0.35488
-0.37018
-0.373058
-0.364721
-0.365411
-0.365342
-0.372611
-0.354109
-0.355024
-0.349769
-0.354383
-0.354476
-0.37518
-0.371803
-0.36777
-0.377677
-0.368474
-0.395998
-0.371924
-0.38168
-0.374794
-0.383086
-0.385099
-0.375747
-0.355421
-0.356556
-0.356699
-0.351678
-0.376628
-0.354947
-0.349904
-0.355261
-0.349849
-0.354479
-0.394893
-0.382707
-0.374199
-0.384953
-0.379548
-0.385096
-0.376915
-0.387651
-0.377305
-0.375267
-0.382066
-0.375349
-0.379449
-0.39339
-0.3869
-0.405817
-0.380265
-0.402586
-0.38285
-0.387586
-0.3903
-0.380781
-0.384066
-0.378448
-0.376113
-0.377925
-0.396687
-0.390159
-0.407983
-0.390874
-0.412015
-0.38599
-0.394662
-0.411565
-0.420806
-0.407697
-0.415282
-0.407
-0.412088
-0.409281
-0.409374
-0.41489
-0.411059
-0.515507
-0.515953
-0.500647
-0.500862
-0.521577
-0.507092
-0.500756
-0.500506
-0.521384
-0.500199
-0.519616
-0.499767
-0.506535
-0.499881
-0.500109
-0.520318
-0.426742
-0.447427
-0.433313
-0.44574
-0.428392
-0.431974
-0.424947
-0.442366
-0.429045
-0.444143
-0.430387
-0.423363
-0.432224
-0.448403
-0.435938
-0.43741
-0.450099
-0.430339
-0.434317
-0.44273
-0.45485
-0.438347
-0.439696
-0.451148
-0.415901
-0.413762
-0.412229
-0.410018
-0.407751
-0.406133
-0.408122
-0.408065
-0.385655
-0.380209
-0.383766
-0.379968
-0.381715
-0.38449
-0.381944
-0.405127
-0.39897
-0.399725
-0.40251
-0.407669
-0.40031
-0.396601
-0.393151
-0.390129
-0.383487
-0.385759
-0.383186
-0.380833
-0.380355
-0.382891
-0.383269
-0.396071
-0.389847
-0.409505
-0.412312
-0.413338
-0.39328
-0.392456
-0.389361
-0.387966
-0.383978
-0.386199
-0.408647
-0.397618
-0.385389
-0.397566
-0.384572
-0.386551
-0.384243
-0.392082
-0.384791
-0.388127
-0.385709
-0.386024
-0.385627
-0.385943
-0.379788
-0.407644
-0.386483
-0.382514
-0.3974
-0.390377
-0.388504
-0.409586
-0.401206
-0.404531
-0.390359
-0.388522
-0.38235
-0.383834
-0.381006
-0.360152
-0.356112
-0.388227
-0.375039
-0.378229
-0.368511
-0.359618
-0.361593
-0.354525
-0.366118
-0.358457
-0.362079
-0.38293
-0.391252
-0.369711
-0.375346
-0.373247
-0.375232
-0.376338
-0.371024
-0.373516
-0.371972
-0.374818
-0.370595
-0.368063
-0.367213
-0.369674
-0.366932
-0.367387
-0.372217
-0.374948
-0.368077
-0.365369
-0.373599
-0.358561
-0.364694
-0.359477
-0.36458
-0.355791
-0.364915
-0.355985
-0.357784
-0.35728
-0.355703
-0.353029
-0.353845
-0.355909
-0.359378
-0.367745
-0.367812
-0.366073
-0.378181
-0.37405
-0.365947
-0.363995
-0.372145
-0.369264
-0.372856
-0.379606
-0.390207
-0.370506
-0.388264
-0.388253
-0.36857
-0.377213
-0.368619
-0.378766
-0.260411
-0.241481
-0.265826
-0.255642
-0.271261
-0.237038
-0.238571
-0.232433
-0.233952
-0.227381
-0.26
-0.262261
-0.246459
-0.272598
-0.239273
-0.278264
-0.261201
-0.285356
-0.239155
-0.256176
-0.286078
-0.259654
-0.222392
-0.230592
-0.243979
-0.234359
-0.216613
-0.218463
-0.227816
-0.217889
-0.235902
-0.204047
-0.192218
-0.215744
-0.213349
-0.18811
-0.232995
-0.23507
-0.227457
-0.222339
-0.257676
-0.239077
-0.249563
-0.256021
-0.249811
-0.288357
-0.268956
-0.232458
-0.239496
-0.223775
-0.232087
-0.216032
-0.236425
-0.224332
-0.216429
-0.238659
-0.219932
-0.216169
-0.226697
-0.214716
-0.204548
-0.227565
-0.199291
-0.230282
-0.226137
-0.221825
-0.22488
-0.219266
-0.215432
-0.21493
-0.206399
-0.218972
-0.240985
-0.239713
-0.197491
-0.221911
-0.228915
-0.216418
-0.196544
-0.200227
-0.231684
-0.186684
-0.231664
-0.222314
-0.240924
-0.229377
-0.223499
-0.241695
-0.220992
-0.215472
-0.223116
-0.226227
-0.234712
-0.357428
-0.3561
-0.374042
-0.355496
-0.355457
-0.362425
-0.359197
-0.360119
-0.369556
-0.371437
-0.367108
-0.357401
-0.371296
-0.367202
-0.354078
-0.357013
-0.371901
-0.382112
-0.356222
-0.367613
-0.363709
-0.368254
-0.356849
-0.351939
-0.354519
-0.362535
-0.353261
-0.358137
-0.360435
-0.361888
-0.355671
-0.353487
-0.35133
-0.370257
-0.388513
-0.383972
-0.408879
-0.388804
-0.389916
-0.397406
-0.390328
-0.397799
-0.408775
-0.364031
-0.369102
-0.372248
-0.37036
-0.364848
-0.407373
-0.385877
-0.389846
-0.391343
-0.397201
-0.389205
-0.370664
-0.386311
-0.382326
-0.374517
-0.358392
-0.370157
-0.35913
-0.358914
-0.363565
-0.369103
-0.359013
-0.353559
-0.3623
-0.352117
-0.353937
-0.350753
-0.36194
-0.35753
-0.357812
-0.362029
-0.376243
-0.37531
-0.371207
-0.358663
-0.360535
-0.35428
-0.360782
-0.358908
-0.355576
-0.363142
-0.354064
-0.354992
-0.375406
-0.378283
-0.391185
-0.382525
-0.374631
-0.378396
-0.391986
-0.379304
-0.40841
-0.385866
-0.384273
-0.383838
-0.380191
-0.37677
-0.390947
-0.380638
-0.385488
-0.408661
-0.381349
-0.384807
-0.378347
-0.393238
-0.377304
-0.393494
-0.377925
-0.380244
-0.387672
-0.380916
-0.379966
-0.388412
-0.390997
-0.397637
-0.398821
-0.514247
-0.51364
-0.51108
-0.483101
-0.48256
-0.512097
-0.483838
-0.484966
-0.5135
-0.483063
-0.512608
-0.484407
-0.418266
-0.43779
-0.422671
-0.438701
-0.421411
-0.416404
-0.410448
-0.409632
-0.40855
-0.420247
-0.410711
-0.408835
-0.409289
-0.419749
-0.441304
-0.419916
-0.439713
-0.421307
-0.418739
-0.411027
-0.425512
-0.400657
-0.415498
-0.42014
-0.41039
-0.406081
-0.420552
-0.437557
-0.422513
-0.422205
-0.436708
-0.421072
-0.420297
-0.397393
-0.424582
-0.400986
-0.419708
-0.425361
-0.397966
-0.420189
-0.421731
-0.435837
-0.420091
-0.421793
-0.436417
-0.420632
-0.426093
-0.401897
-0.398973
-0.425891
-0.420702
-0.398164
-0.412139
-0.42356
-0.412775
-0.419313
-0.413967
-0.408774
-0.389307
-0.398321
-0.388479
-0.409891
-0.388568
-0.397131
-0.367934
-0.3725
-0.36996
-0.366296
-0.370665
-0.390514
-0.369346
-0.37477
-0.36861
-0.370375
-0.39397
-0.406656
-0.38501
-0.388031
-0.380718
-0.387581
-0.395907
-0.387995
-0.363884
-0.365267
-0.381572
-0.37805
-0.369453
-0.360717
-0.3771
-0.366752
-0.36973
-0.367352
-0.382451
-0.377969
-0.369614
-0.371122
-0.389413
-0.388593
-0.398791
-0.386086
-0.394331
-0.385573
-0.38436
-0.382111
-0.386353
-0.384217
-0.383471
-0.390483
-0.384434
-0.38419
-0.384502
-0.399196
-0.378281
-0.383222
-0.397141
-0.380575
-0.38683
-0.384764
-0.381015
-0.389995
-0.384762
-0.385838
-0.385186
-0.333456
-0.34379
-0.364106
-0.338933
-0.354652
-0.354354
-0.357949
-0.360078
-0.359734
-0.360019
-0.363005
-0.356172
-0.369494
-0.373927
-0.356347
-0.358095
-0.354092
-0.229698
-0.211531
-0.21357
-0.224726
-0.227707
-0.220946
-0.216394
-0.210826
-0.209935
-0.232254
-0.223519
-0.211181
-0.203509
-0.195562
-0.196512
-0.232087
-0.198365
-0.219077
-0.223961
-0.211056
-0.221706
-0.225848
-0.223762
-0.216131
-0.226572
-0.226287
-0.223777
-0.215803
-0.253608
-0.235588
-0.22775
-0.241983
-0.208343
-0.235652
-0.214647
-0.239673
-0.220662
-0.213293
-0.231561
-0.221756
-0.208182
-0.211205
-0.23012
-0.202576
-0.205622
-0.205351
-0.222922
-0.212252
-0.218077
-0.237355
-0.223698
-0.236753
-0.230241
-0.247809
-0.227027
-0.245999
-0.233136
-0.232414
-0.215926
-0.240167
-0.22371
-0.230423
-0.199875
-0.241854
-0.216285
-0.223439
-0.223728
-0.224408
-0.229542
-0.239872
-0.231342
-0.213181
-0.220505
-0.221366
-0.21521
-0.204992
-0.22106
-0.220288
-0.188979
-0.214212
-0.233762
-0.221905
-0.201337
-0.198735
-0.214384
-0.217529
-0.224302
-0.216322
-0.225589
-0.203471
-0.213093
-0.217683
-0.204354
-0.218255
-0.215287
-0.212782
-0.217683
-0.198088
-0.219577
-0.216245
-0.217819
-0.185247
-0.213933
-0.185798
-0.201199
-0.213119
-0.195274
-0.197996
-0.189163
-0.217042
-0.259882
-0.223907
-0.232716
-0.26071
-0.242994
-0.238711
-0.232286
-0.218598
-0.229916
-0.241757
-0.22807
-0.243979
-0.222436
-0.223261
-0.217707
-0.231388
-0.238519
-0.225768
-0.222978
-0.225509
-0.223888
-0.242503
-0.231046
-0.232508
-0.240342
-0.22729
-0.232027
-0.213942
-0.207112
-0.219828
-0.225181
-0.226464
-0.202938
-0.23184
-0.212632
-0.248288
-0.218735
-0.216124
-0.240578
-0.226898
-0.204359
-0.202052
-0.231721
-0.198197
-0.198336
-0.19052
-0.226448
-0.2135
-0.246896
-0.279856
-0.2588
-0.285064
-0.283648
-0.275009
-0.274125
-0.269485
-0.248681
-0.25066
-0.244959
-0.289176
-0.266114
-0.244196
-0.2111
-0.286309
-0.263679
-0.230106
-0.246905
-0.230716
-0.236234
-0.254075
-0.234193
-0.232438
-0.254061
-0.272543
-0.257078
-0.247239
-0.238577
-0.253296
-0.285046
-0.279339
-0.239906
-0.267122
-0.260973
-0.272479
-0.263899
-0.261556
-0.280538
-0.239163
-0.235122
-0.232232
-0.263534
-0.276208
-0.227027
-0.242311
-0.244586
-0.244724
-0.265927
-0.223375
-0.248743
-0.241332
-0.274869
-0.207381
-0.210217
-0.209337
-0.22809
-0.214774
-0.232132
-0.240881
-0.218105
-0.243934
-0.24154
-0.233273
-0.235919
-0.203043
-0.230597
-0.233251
-0.241061
-0.236925
-0.230445
-0.23789
-0.247981
-0.244411
-0.249886
-0.233879
-0.245424
-0.24456
-0.245969
-0.220835
-0.226403
-0.207866
-0.233479
-0.243986
-0.227639
-0.211374
-0.213946
-0.231393
-0.222196
-0.220582
-0.218062
-0.192899
-0.224284
-0.22819
-0.22146
-0.223238
-0.211638
-0.211429
-0.222564
-0.217278
-0.221233
-0.23137
-0.232899
-0.216916
-0.232517
-0.22192
-0.206672
-0.227882
-0.236043
-0.211437
-0.212053
-0.227884
-0.218764
-0.201187
-0.217721
-0.23022
-0.204184
-0.209933
-0.210659
-0.208132
-0.213751
-0.211511
-0.206873
-0.202476
-0.196072
-0.226676
-0.20558
-0.218736
-0.196578
-0.20456
-0.187545
-0.183427
-0.208809
-0.18669
-0.211125
-0.169211
-0.202815
-0.190132
-0.182481
-0.181926
-0.19725
-0.196103
-0.180621
-0.189971
-0.182935
-0.183127
-0.19387
-0.195402
-0.186152
-0.180859
-0.192126
-0.183995
-0.198192
-0.187617
-0.187067
-0.189339
-0.182338
-0.188597
-0.200005
-0.182622
-0.187623
-0.199428
-0.215202
-0.223664
-0.205204
-0.214084
-0.213552
-0.207744
-0.225792
-0.195967
-0.193185
-0.179225
-0.197979
-0.185851
-0.188837
-0.203268
-0.215462
-0.200312
-0.210094
-0.197729
-0.21788
-0.210718
-0.208417
-0.199805
-0.194911
-0.184462
-0.204199
-0.210179
-0.192527
-0.211058
-0.222215
-0.202086
-0.217332
-0.207242
-0.204961
-0.219005
-0.208909
-0.193184
-0.190555
-0.199141
-0.214504
-0.192622
-0.200764
-0.240143
-0.255244
-0.237388
-0.215685
-0.221837
-0.253311
-0.238408
-0.221605
-0.212461
-0.241613
-0.21729
-0.219272
-0.216254
-0.235297
-0.226261
-0.238403
-0.237957
-0.227835
-0.234479
-0.219282
-0.233747
-0.229537
-0.212438
-0.238588
-0.216993
-0.226872
-0.219887
-0.234129
-0.236449
-0.22413
-0.238868
-0.236175
-0.217676
-0.235949
-0.249954
-0.248669
-0.242201
-0.247135
-0.22586
-0.216497
-0.218725
-0.248069
-0.228816
-0.223594
-0.211516
-0.222119
-0.233526
-0.24001
-0.225577
-0.209891
-0.213063
-0.223961
-0.212099
-0.214937
-0.203667
-0.211793
-0.21816
-0.239761
-0.214034
-0.237883
-0.219684
-0.204747
-0.220882
-0.232973
-0.235305
-0.23432
-0.223188
-0.227422
-0.234695
-0.194509
-0.221264
-0.22981
-0.22155
-0.20589
-0.222459
-0.232042
-0.213125
-0.217118
-0.212997
-0.1976
-0.213466
-0.219576
-0.207888
-0.21544
-0.228383
-0.240995
-0.211792
-0.242263
-0.223166
-0.205705
-0.236606
-0.220154
-0.216848
-0.199527
-0.227869
-0.22994
-0.213435
-0.189665
-0.231512
-0.203254
-0.205229
-0.200618
-0.23516
-0.230726
-0.207066
-0.199777
-0.202164
-0.229874
-0.191258
-0.188647
-0.237402
-0.237596
-0.238107
-0.255449
-0.217596
-0.211261
-0.220848
-0.218631
-0.236389
-0.227433
-0.229226
-0.231865
-0.197142
-0.223832
-0.225748
-0.229351
-0.221651
-0.227395
-0.240023
-0.241139
-0.233967
-0.22492
-0.193676
-0.230242
-0.225174
-0.233864
-0.226927
-0.229174
-0.227519
-0.241031
-0.221364
-0.241668
-0.241735
-0.238938
-0.210873
-0.21346
-0.208866
-0.222916
-0.236842
-0.219047
-0.201222
-0.204076
-0.214857
-0.232911
-0.190035
-0.208227
-0.222125
-0.220114
-0.229262
-0.193045
-0.224563
-0.222472
-0.206564
-0.228148
-0.514852
-0.521448
-0.527644
-0.525453
-0.513349
-0.529281
-0.526798
-0.495953
-0.497252
-0.51143
-0.499672
-0.497151
-0.510314
-0.498388
-0.22064
-0.259007
-0.179045
-0.177659
-0.198154
-0.181461
-0.175464
-0.174508
-0.182185
-0.182814
-0.17655
-0.193254
-0.18917
-0.188447
-0.18898
-0.196627
-0.18632
-0.188065
-0.171256
-0.167045
-0.168527
-0.177247
-0.214998
-0.192956
-0.190792
-0.193684
-0.194289
-0.192589
-0.199558
-0.193858
-0.193373
-0.200782
-0.196764
-0.203809
-0.196018
-0.181263
-0.182507
-0.193071
-0.191588
-0.17776
-0.195963
-0.188232
-0.19622
-0.194071
-0.207136
-0.191649
-0.190556
-0.215636
-0.183692
-0.198296
-0.184267
-0.213307
-0.184271
-0.184353
-0.191416
-0.181797
-0.188971
-0.186197
-0.182667
-0.198756
-0.183118
-0.195989
-0.181085
-0.191551
-0.206589
-0.193702
-0.191115
-0.18191
-0.209353
-0.169338
-0.173899
-0.191685
-0.18369
-0.175572
-0.164981
-0.178231
-0.169387
-0.180631
-0.175725
-0.169024
-0.178507
-0.196831
-0.182908
-0.181932
-0.165839
-0.169327
-0.170401
-0.176999
-0.16855
-0.174507
-0.165952
-0.172633
-0.195943
-0.168713
-0.18266
-0.174397
-0.178125
-0.173144
-0.194788
-0.176965
-0.176274
-0.171469
-0.187229
-0.192912
-0.169445
-0.195109
-0.170143
-0.18678
-0.175674
-0.183053
-0.191323
-0.182959
-0.180007
-0.181703
-0.178029
-0.176402
-0.169464
-0.16705
-0.16676
-0.166494
-0.176095
-0.170462
-0.196877
-0.195271
-0.214382
-0.198687
-0.192515
-0.213347
-0.204045
-0.194979
-0.186783
-0.18864
-0.204542
-0.19664
-0.190654
-0.18622
-0.189017
-0.18685
-0.217416
-0.227824
-0.238483
-0.22732
-0.220255
-0.224987
-0.226075
-0.212901
-0.204569
-0.206974
-0.209129
-0.204149
-0.21479
-0.207587
-0.247613
-0.226791
-0.237357
-0.215618
-0.21403
-0.228212
-0.237889
-0.215806
-0.221777
-0.215084
-0.244445
-0.217803
-0.221128
-0.212957
-0.218555
-0.207308
-0.229854
-0.203868
-0.220436
-0.210194
-0.213448
-0.227757
-0.217798
-0.226528
-0.22958
-0.226871
-0.224135
-0.229324
-0.268106
-0.245902
-0.242907
-0.251894
-0.268177
-0.250524
-0.25566
-0.229437
-0.229015
-0.257445
-0.227264
-0.245752
-0.237424
-0.253339
-0.241004
-0.226658
-0.218836
-0.216688
-0.247474
-0.222541
-0.215154
-0.228904
-0.231468
-0.25285
-0.226083
-0.231437
-0.214185
-0.223664
-0.229513
-0.215712
-0.223036
-0.236755
-0.231228
-0.232234
-0.229008
-0.230023
-0.235443
-0.22967
-0.236534
-0.230429
-0.256198
-0.232039
-0.247487
-0.252474
-0.220935
-0.227753
-0.231086
-0.238363
-0.229396
-0.222373
-0.241694
-0.251326
-0.227113
-0.230903
-0.239391
-0.225053
-0.239232
-0.246465
-0.221079
-0.22427
-0.216776
-0.239005
-0.218969
-0.22484
-0.250576
-0.174572
-0.175629
-0.176922
-0.189497
-0.177267
-0.176701
-0.178801
-0.182837
-0.179652
-0.182206
-0.181567
-0.180461
-0.172799
-0.177396
-0.191962
-0.186509
-0.189184
-0.178681
-0.218864
-0.198551
-0.206637
-0.214941
-0.202753
-0.220885
-0.214492
-0.209538
-0.204555
-0.204238
-0.21084
-0.208661
-0.244135
-0.210546
-0.22651
-0.217058
-0.242948
-0.21937
-0.226238
-0.205974
-0.226608
-0.216609
-0.239574
-0.206742
-0.21558
-0.221263
-0.217202
-0.219323
-0.209857
-0.226615
-0.209223
-0.212971
-0.225615
-0.226757
-0.254475
-0.229171
-0.21992
-0.22703
-0.22832
-0.238941
-0.219021
-0.217677
-0.215204
-0.225573
-0.215969
-0.217113
-0.227342
-0.215859
-0.201984
-0.225868
-0.205841
-0.21408
-0.203921
-0.22514
-0.203245
-0.196068
-0.205842
-0.207
-0.200964
-0.207777
-0.19918
-0.206519
-0.229165
-0.211689
-0.214045
-0.203732
-0.215005
-0.214781
-0.241217
-0.23309
-0.23796
-0.233584
-0.241651
-0.23664
-0.231365
-0.224778
-0.241
-0.231019
-0.242449
-0.258519
-0.231916
-0.243098
-0.259872
-0.234859
-0.244484
-0.263053
-0.255926
-0.257813
-0.259698
-0.249977
-0.248782
-0.259434
-0.248621
-0.247814
-0.248854
-0.249836
-0.270617
-0.25875
-0.268476
-0.262897
-0.26619
-0.261318
-0.267196
-0.245461
-0.239174
-0.237622
-0.256388
-0.242197
-0.244157
-0.246741
-0.271237
-0.265282
-0.266064
-0.269675
-0.235448
-0.236814
-0.287304
-0.296867
-0.288939
-0.288715
-0.299775
-0.291824
-0.291004
-0.312039
-0.313214
-0.312855
-0.286814
-0.290186
-0.290076
-0.307429
-0.294015
-0.291615
-0.304662
-0.290585
-0.291398
-0.244852
-0.24907
-0.25269
-0.245885
-0.246168
-0.259326
-0.246705
-0.232484
-0.249319
-0.236617
-0.246152
-0.250334
-0.232135
-0.246488
-0.247128
-0.279073
-0.24999
-0.245638
-0.274942
-0.247228
-0.249276
-0.236585
-0.237162
-0.244813
-0.250744
-0.233491
-0.286318
-0.299966
-0.284248
-0.271692
-0.286144
-0.286362
-0.312558
-0.318861
-0.315489
-0.289613
-0.301239
-0.287023
-0.293308
-0.297876
-0.290494
-0.291412
-0.217211
-0.230293
-0.229811
-0.223533
-0.225758
-0.22063
-0.228502
-0.214293
-0.218113
-0.233631
-0.234503
-0.213653
-0.218713
-0.233042
-0.191878
-0.180931
-0.189745
-0.183179
-0.187723
-0.183771
-0.187066
-0.17367
-0.175613
-0.170475
-0.171126
-0.173067
-0.175556
-0.171443
-0.185748
-0.181545
-0.183278
-0.182776
-0.191836
-0.185424
-0.18859
-0.187308
-0.193067
-0.214367
-0.191521
-0.191555
-0.213348
-0.213805
-0.214166
-0.192323
-0.19033
-0.206638
-0.191407
-0.211901
-0.215725
-0.214708
-0.211926
-0.219553
-0.21338
-0.229253
-0.211454
-0.214545
-0.226238
-0.212916
-0.217163
-0.233113
-0.23304
-0.213557
-0.215842
-0.231268
-0.202078
-0.201621
-0.2142
-0.188819
-0.202303
-0.203383
-0.231198
-0.22576
-0.228448
-0.205886
-0.205046
-0.209147
-0.218031
-0.207419
-0.215407
-0.206567
-0.216051
-0.214049
-0.303779
-0.316266
-0.301121
-0.316189
-0.297001
-0.316985
-0.311144
-0.296359
-0.319311
-0.300265
-0.31805
-0.297113
-0.299488
-0.31882
-0.220065
-0.207564
-0.219016
-0.210363
-0.210285
-0.217965
-0.221203
-0.210873
-0.217819
-0.216649
-0.210787
-0.212459
-0.22208
-0.223126
-0.235234
-0.224807
-0.216562
-0.208493
-0.208762
-0.217428
-0.212707
-0.215151
-0.210243
-0.212486
-0.216119
-0.217314
-0.236928
-0.217795
-0.216125
-0.208061
-0.205572
-0.177304
-0.167842
-0.163218
-0.179286
-0.176532
-0.163471
-0.179957
-0.176424
-0.17633
-0.181375
-0.173354
-0.202589
-0.176874
-0.178588
-0.204888
-0.177705
-0.179863
-0.204167
-0.177222
-0.217731
-0.219211
-0.208368
-0.210656
-0.213994
-0.221495
-0.210511
-0.22042
-0.226301
-0.223036
-0.209321
-0.21712
-0.217049
-0.217734
-0.214491
-0.217597
-0.205563
-0.206382
-0.208883
-0.222164
-0.20796
-0.208547
-0.208521
-0.208968
-0.209834
-0.303051
-0.310545
-0.317263
-0.31871
-0.312436
-0.307446
-0.315867
-0.258347
-0.258626
-0.257923
-0.245261
-0.244657
-0.23243
-0.244575
-0.237475
-0.260321
-0.256025
-0.274434
-0.27313
-0.260574
-0.255722
-0.275791
-0.257973
-0.255614
-0.258713
-0.236874
-0.234796
-0.237667
-0.258271
-0.260084
-0.275465
-0.256534
-0.273378
-0.25599
-0.260285
-0.27588
-0.273966
-0.280161
-0.273119
-0.298974
-0.272576
-0.267669
-0.296456
-0.270529
-0.271877
-0.263186
-0.258915
-0.237729
-0.239418
-0.230723
-0.238594
-0.228215
-0.274598
-0.264764
-0.26398
-0.264536
-0.277799
-0.262897
-0.265574
-0.254591
-0.235813
-0.233357
-0.233513
-0.25713
-0.264763
-0.275138
-0.256898
-0.267662
-0.259647
-0.260535
-0.272195
-0.300056
-0.273512
-0.275365
-0.299487
-0.273561
-0.298129
-0.297371
-0.272897
-0.27524
-0.298401
-0.299225
-0.273801
-0.215308
-0.193422
-0.195346
-0.214293
-0.193536
-0.196935
-0.206535
-0.199733
-0.204171
-0.197007
-0.194641
-0.202131
-0.231894
-0.204404
-0.219892
-0.216861
-0.20459
-0.222078
-0.220014
-0.22759
-0.254122
-0.239025
-0.239546
-0.226782
-0.23745
-0.253158
-0.238138
-0.239651
-0.218256
-0.222752
-0.221046
-0.227853
-0.199176
-0.193239
-0.189585
-0.215623
-0.20097
-0.210014
-0.202585
-0.209233
-0.205754
-0.205984
-0.207937
-0.206763
-0.201691
-0.204537
-0.208352
-0.20397
-0.214137
-0.21791
-0.223091
-0.223677
-0.221158
-0.215833
-0.215293
-0.220922
-0.237465
-0.211792
-0.225215
-0.210106
-0.213273
-0.207785
-0.210272
-0.212758
-0.178272
-0.18005
-0.170443
-0.166068
-0.175054
-0.175076
-0.171413
-0.173296
-0.161496
-0.158955
-0.169104
-0.162343
-0.167342
-0.173907
-0.17361
-0.176666
-0.188383
-0.175986
-0.179344
-0.17692
-0.171972
-0.172287
-0.169789
-0.169228
-0.170137
-0.169219
-0.171353
-0.171892
-0.164552
-0.152011
-0.153567
-0.163121
-0.154675
-0.163208
-0.163095
-0.175297
-0.169293
-0.162228
-0.184062
-0.168175
-0.174297
-0.182567
-0.184935
-0.175307
-0.191901
-0.18145
-0.187024
-0.1928
-0.182332
-0.177228
-0.179638
-0.176455
-0.175135
-0.182013
-0.176782
-0.175743
-0.174547
-0.18213
-0.175122
-0.171194
-0.178868
-0.172634
-0.17154
-0.175466
-0.192661
-0.187889
-0.196484
-0.177206
-0.185663
-0.189244
-0.17203
-0.175218
-0.172288
-0.169232
-0.174265
-0.169263
-0.170934
-0.173725
-0.17101
-0.177124
-0.171789
-0.174766
-0.175174
-0.17016
-0.150507
-0.156054
-0.159194
-0.15276
-0.163251
-0.155181
-0.158556
-0.153051
-0.163735
-0.159661
-0.165509
-0.175458
-0.180528
-0.16192
-0.182637
-0.16249
-0.165284
-0.167554
-0.169141
-0.168808
-0.164723
-0.170454
-0.167402
-0.180624
-0.185366
-0.166321
-0.172202
-0.170746
-0.171453
-0.171981
-0.171128
-0.178407
-0.159912
-0.168606
-0.157924
-0.178801
-0.159921
-0.169068
-0.169882
-0.170313
-0.171111
-0.171678
-0.169807
-0.169903
-0.173092
-0.170762
-0.18858
-0.186732
-0.177123
-0.180506
-0.16981
-0.18236
-0.187472
-0.169638
-0.164068
-0.176155
-0.18002
-0.166499
-0.173952
-0.18191
-0.167595
-0.180563
-0.178459
-0.177649
-0.178355
-0.170825
-0.168356
-0.17095
-0.179057
-0.174807
-0.167571
-0.187686
-0.18618
-0.170882
-0.189661
-0.171284
-0.170977
-0.170238
-0.182927
-0.173742
-0.197294
-0.177475
-0.18076
-0.198228
-0.188176
-0.185805
-0.183673
-0.174366
-0.174168
-0.177651
-0.166605
-0.172772
-0.171271
-0.176981
-0.153542
-0.165984
-0.163747
-0.187262
-0.183139
-0.176201
-0.191435
-0.194822
-0.174774
-0.191662
-0.197361
-0.187453
-0.189313
-0.181733
-0.194442
-0.195185
-0.20627
-0.208347
-0.205582
-0.195064
-0.203035
-0.207714
-0.206356
-0.185324
-0.203292
-0.219033
-0.186482
-0.185232
-0.192393
-0.198449
-0.212686
-0.187525
-0.190818
-0.222965
-0.199309
-0.182407
-0.200942
-0.196462
-0.178632
-0.193821
-0.199588
-0.225583
-0.202747
-0.203121
-0.199198
-0.182041
-0.197615
-0.212085
-0.195078
-0.193997
-0.21574
-0.183521
-0.232053
-0.208891
-0.233561
-0.212329
-0.213176
-0.210735
-0.222236
-0.228913
-0.205675
-0.205286
-0.22794
-0.209188
-0.218621
-0.240487
-0.253039
-0.21533
-0.219566
-0.240776
-0.224457
-0.230721
-0.202215
-0.218191
-0.219675
-0.230143
-0.205385
-0.20898
-0.208519
-0.21081
-0.209539
-0.20162
-0.210272
-0.222253
-0.216059
-0.203442
-0.208112
-0.221924
-0.216844
-0.223378
-0.230387
-0.226917
-0.203385
-0.225579
-0.205175
-0.220476
-0.216047
-0.233215
-0.216696
-0.227342
-0.195247
-0.201494
-0.195735
-0.200755
-0.182414
-0.185699
-0.193321
-0.19129
-0.179565
-0.19064
-0.181626
-0.189428
-0.182981
-0.183232
-0.196091
-0.189189
-0.194797
-0.183554
-0.189105
-0.195292
-0.216932
-0.200635
-0.203101
-0.215793
-0.337701
-0.331666
-0.375531
-0.384928
-0.379646
-0.376122
-0.376622
-0.388266
-0.378297
-0.382605
-0.377095
-0.392293
-0.399035
-0.396843
-0.383446
-0.39069
-0.386055
-0.395279
-0.378783
-0.376504
-0.373559
-0.376075
-0.383675
-0.378085
-0.37701
-0.377026
-0.373708
-0.359633
-0.36951
-0.360742
-0.359239
-0.359442
-0.361158
-0.369179
-0.358926
-0.375848
-0.349792
-0.361212
-0.347112
-0.362357
-0.367433
-0.345301
-0.340234
-0.367316
-0.371947
-0.343442
-0.340039
-0.338637
-0.344387
-0.335821
-0.335156
-0.333591
-0.337358
-0.336816
-0.344121
-0.375015
-0.340905
-0.372537
-0.345291
-0.339031
-0.391632
-0.388545
-0.376773
-0.380638
-0.391824
-0.388451
-0.378579
-0.385633
-0.386589
-0.386082
-0.386461
-0.384043
-0.375996
-0.37491
-0.384904
-0.383468
-0.38626
-0.385954
-0.382587
-0.392028
-0.375998
-0.389813
-0.37987
-0.393595
-0.388444
-0.378481
-0.378802
-0.374111
-0.468544
-0.454148
-0.450324
-0.467637
-0.453059
-0.452123
-0.467204
-0.450131
-0.467685
-0.452851
-0.431325
-0.431494
-0.432652
-0.429493
-0.445797
-0.447572
-0.447845
-0.43011
-0.432036
-0.434528
-0.41283
-0.409992
-0.413018
-0.433894
-0.432577
-0.448577
-0.446059
-0.430176
-0.447952
-0.430016
-0.432795
-0.434179
-0.41121
-0.404827
-0.434832
-0.410744
-0.431518
-0.430973
-0.431331
-0.432062
-0.420206
-0.423848
-0.417763
-0.421174
-0.418711
-0.419836
-0.419739
-0.431052
-0.429272
-0.454198
-0.449168
-0.431522
-0.429177
-0.452216
-0.426017
-0.427191
-0.433363
-0.450209
-0.449
-0.430953
-0.430598
-0.451631
-0.433508
-0.433496
-0.410896
-0.412166
-0.435417
-0.414827
-0.341565
-0.335432
-0.333127
-0.348946
-0.337874
-0.339621
-0.381207
-0.395852
-0.386511
-0.382452
-0.397627
-0.384241
-0.379705
-0.407366
-0.400247
-0.408813
-0.381302
-0.387135
-0.394815
-0.383682
-0.379721
-0.398411
-0.38487
-0.406174
-0.397441
-0.407412
-0.334307
-0.337417
-0.329292
-0.329022
-0.334303
-0.33035
-0.33172
-0.361798
-0.352713
-0.352603
-0.362747
-0.352712
-0.345119
-0.349761
-0.346703
-0.360843
-0.355593
-0.350875
-0.352371
-0.350592
-0.353094
-0.361701
-0.385085
-0.407621
-0.4083
-0.38715
-0.406333
-0.389839
-0.382988
-0.388224
-0.401262
-0.398172
-0.395558
-0.400106
-0.392034
-0.397344
-0.33413
-0.336604
-0.348029
-0.336689
-0.33525
-0.341328
-0.335748
-0.330689
-0.326389
-0.328864
-0.326684
-0.340733
-0.330438
-0.333644
-0.345626
-0.337085
-0.339297
-0.347981
-0.396143
-0.403044
-0.405427
-0.399662
-0.39492
-0.402258
-0.406968
-0.395679
-0.404355
-0.395819
-0.398589
-0.399958
-0.405646
-0.394525
-0.373087
-0.388267
-0.378336
-0.374047
-0.375369
-0.384664
-0.375342
-0.382949
-0.386012
-0.403084
-0.397475
-0.400228
-0.367792
-0.37319
-0.372424
-0.368783
-0.374233
-0.369955
-0.367232
-0.227894
-0.215334
-0.207661
-0.253449
-0.254727
-0.23415
-0.253945
-0.226668
-0.252289
-0.21067
-0.226431
-0.214178
-0.217339
-0.257877
-0.231667
-0.246544
-0.244119
-0.225364
-0.243118
-0.217113
-0.242816
-0.212807
-0.221957
-0.204763
-0.213548
-0.240028
-0.21628
-0.214243
-0.218243
-0.211329
-0.215924
-0.238811
-0.211474
-0.22987
-0.217717
-0.209867
-0.208167
-0.212206
-0.235885
-0.208641
-0.227534
-0.214406
-0.205703
-0.250227
-0.227677
-0.247353
-0.249464
-0.24564
-0.248095
-0.234221
-0.203999
-0.236911
-0.206212
-0.189773
-0.226922
-0.200622
-0.195883
-0.199204
-0.228215
-0.1797
-0.196889
-0.194427
-0.188941
-0.220638
-0.197962
-0.222528
-0.204965
-0.201298
-0.213351
-0.213489
-0.188522
-0.226975
-0.221062
-0.224882
-0.200595
-0.220543
-0.221801
-0.224879
-0.201879
-0.249959
-0.230991
-0.236231
-0.209827
-0.222672
-0.230999
-0.232068
-0.239639
-0.202725
-0.220758
-0.207245
-0.196396
-0.208158
-0.197835
-0.231864
-0.204369
-0.230157
-0.219559
-0.215285
-0.211344
-0.213188
-0.239836
-0.229985
-0.202464
-0.221541
-0.222206
-0.234793
-0.218954
-0.207714
-0.216483
-0.225506
-0.223202
-0.236877
-0.187506
-0.211932
-0.202651
-0.204234
-0.18907
-0.21249
-0.210333
-0.211477
-0.205592
-0.20446
-0.209904
-0.200588
-0.202274
-0.227719
-0.227842
-0.194959
-0.240814
-0.217588
-0.202179
-0.193028
-0.214825
-0.237594
-0.226432
-0.214631
-0.243236
-0.234696
-0.231555
-0.210531
-0.230227
-0.239249
-0.234842
-0.236196
-0.231232
-0.22106
-0.223205
-0.213179
-0.227649
-0.232688
-0.216494
-0.229775
-0.221003
-0.216129
-0.272217
-0.276232
-0.249703
-0.24433
-0.275523
-0.27208
-0.252807
-0.257508
-0.239087
-0.296408
-0.272422
-0.270764
-0.266658
-0.278707
-0.289211
-0.263403
-0.268458
-0.259306
-0.247628
-0.25588
-0.273551
-0.237503
-0.240116
-0.264338
-0.233458
-0.239695
-0.257853
-0.239382
-0.26659
-0.234278
-0.296777
-0.243427
-0.268182
-0.302648
-0.225725
-0.252151
-0.279094
-0.261204
-0.252746
-0.279144
-0.24061
-0.231964
-0.212816
-0.224542
-0.215738
-0.208911
-0.202266
-0.221756
-0.216538
-0.231492
-0.216419
-0.216664
-0.256475
-0.227422
-0.233754
-0.239123
-0.200966
-0.188998
-0.215393
-0.191154
-0.192913
-0.202215
-0.211743
-0.208703
-0.209354
-0.216939
-0.241904
-0.218227
-0.201309
-0.230281
-0.213625
-0.211063
-0.215457
-0.219075
-0.217945
-0.216541
-0.220707
-0.217122
-0.245237
-0.219756
-0.221395
-0.237126
-0.222219
-0.217936
-0.224801
-0.254112
-0.225497
-0.228493
-0.245775
-0.229455
-0.225019
-0.217845
-0.221472
-0.220532
-0.221688
-0.222225
-0.213055
-0.213002
-0.264651
-0.270582
-0.248937
-0.252549
-0.304802
-0.241547
-0.277489
-0.266024
-0.309876
-0.279993
-0.271465
-0.270762
-0.297692
-0.261945
-0.252824
-0.295156
-0.284366
-0.305027
-0.282196
-0.272251
-0.301988
-0.225378
-0.275564
-0.252544
-0.248093
-0.220374
-0.214682
-0.217091
-0.21568
-0.237086
-0.212444
-0.248759
-0.23999
-0.248863
-0.226568
-0.251947
-0.22194
-0.258152
-0.221686
-0.252874
-0.235557
-0.205839
-0.25086
-0.231827
-0.243342
-0.241727
-0.235362
-0.2975
-0.275882
-0.269952
-0.239482
-0.237411
-0.23
-0.23112
-0.233679
-0.246347
-0.22449
-0.306172
-0.307845
-0.275139
-0.276302
-0.267274
-0.232337
-0.26627
-0.26285
-0.219819
-0.265608
-0.297768
-0.284472
-0.272406
-0.265079
-0.375319
-0.357806
-0.356777
-0.378788
-0.357089
-0.381523
-0.381577
-0.382671
-0.377744
-0.3589
-0.381908
-0.35761
-0.381648
-0.357622
-0.390761
-0.393419
-0.390676
-0.403124
-0.392046
-0.404345
-0.390722
-0.390456
-0.398708
-0.389877
-0.389426
-0.3911
-0.386526
-0.404129
-0.359622
-0.338623
-0.339703
-0.343919
-0.347419
-0.339883
-0.343756
-0.323021
-0.317598
-0.318343
-0.314185
-0.343415
-0.34278
-0.362023
-0.343926
-0.349775
-0.344627
-0.348676
-0.343946
-0.363078
-0.379063
-0.400741
-0.400265
-0.382442
-0.395577
-0.381328
-0.379613
-0.37594
-0.381348
-0.384693
-0.38703
-0.389079
-0.375999
-0.379354
-0.344422
-0.341815
-0.358019
-0.357126
-0.36045
-0.341615
-0.344602
-0.343964
-0.344491
-0.345873
-0.321708
-0.322118
-0.323552
-0.345754
-0.345346
-0.359234
-0.362086
-0.34251
-0.361661
-0.342025
-0.345991
-0.343264
-0.344826
-0.364294
-0.364679
-0.361888
-0.364051
-0.361979
-0.360791
-0.456836
-0.459588
-0.459733
-0.446077
-0.456272
-0.458502
-0.460837
-0.431502
-0.431009
-0.431979
-0.429296
-0.445212
-0.447814
-0.448133
-0.429083
-0.432154
-0.434243
-0.412696
-0.410957
-0.434309
-0.412777
-0.432089
-0.448558
-0.445236
-0.428823
-0.448413
-0.429209
-0.431499
-0.431301
-0.43137
-0.434232
-0.41201
-0.410787
-0.433919
-0.412515
-0.428493
-0.431495
-0.431566
-0.406085
-0.407949
-0.430912
-0.409354
-0.42698
-0.430131
-0.42899
-0.433095
-0.432931
-0.426342
-0.429421
-0.429454
-0.435349
-0.426635
-0.446932
-0.435146
-0.428973
-0.426652
-0.432545
-0.431437
-0.432183
-0.409289
-0.411726
-0.434239
-0.410711
-0.358896
-0.360957
-0.384878
-0.384163
-0.359132
-0.383866
-0.385452
-0.360798
-0.383117
-0.358887
-0.384069
-0.35916
-0.386492
-0.385779
-0.357358
-0.34512
-0.352777
-0.363272
-0.348686
-0.350295
-0.349339
-0.341086
-0.35339
-0.338956
-0.335984
-0.342191
-0.340104
-0.33575
-0.362654
-0.353583
-0.364162
-0.351409
-0.361142
-0.352507
-0.351887
-0.352189
-0.351214
-0.362833
-0.34876
-0.360704
-0.346791
-0.352942
-0.384346
-0.408081
-0.386372
-0.410348
-0.382624
-0.408808
-0.388898
-0.384505
-0.388705
-0.408092
-0.409971
-0.408631
-0.384547
-0.38876
-0.383263
-0.403672
-0.384941
-0.407252
-0.381304
-0.405905
-0.386924
-0.383575
-0.388216
-0.408078
-0.40765
-0.406798
-0.387403
-0.384169
-0.347865
-0.34268
-0.363352
-0.361244
-0.363952
-0.346142
-0.343731
-0.346091
-0.345692
-0.347795
-0.321928
-0.335542
-0.33442
-0.326717
-0.333214
-0.345709
-0.34097
-0.347599
-0.361124
-0.363151
-0.343679
-0.347127
-0.363606
-0.34387
-0.359344
-0.358828
-0.385557
-0.353664
-0.385312
-0.380953
-0.386507
-0.36131
-0.370815
-0.368531
-0.368462
-0.357538
-0.385095
-0.387003
-0.386909
-0.226266
-0.225974
-0.225101
-0.222406
-0.260259
-0.221427
-0.238036
-0.236918
-0.258708
-0.245539
-0.244698
-0.235935
-0.237847
-0.258921
-0.228435
-0.260187
-0.236724
-0.23655
-0.260156
-0.22682
-0.260792
-0.246207
-0.207706
-0.247807
-0.230013
-0.216992
-0.242563
-0.20945
-0.215834
-0.208479
-0.23471
-0.205722
-0.210996
-0.225576
-0.204191
-0.214937
-0.205398
-0.243443
-0.217406
-0.213425
-0.210032
-0.205263
-0.213241
-0.239082
-0.243299
-0.22197
-0.244964
-0.251718
-0.225786
-0.222318
-0.218998
-0.224702
-0.211458
-0.239403
-0.249943
-0.254265
-0.263277
-0.228102
-0.253532
-0.240624
-0.241745
-0.229041
-0.232835
-0.217494
-0.23945
-0.239306
-0.230826
-0.228363
-0.225478
-0.229369
-0.24056
-0.23439
-0.219749
-0.240812
-0.242273
-0.212384
-0.202776
-0.213209
-0.204517
-0.206345
-0.232135
-0.236205
-0.245338
-0.244005
-0.223033
-0.245553
-0.239026
-0.23545
-0.225922
-0.228244
-0.214918
-0.234909
-0.235797
-0.227133
-0.229744
-0.225875
-0.226494
-0.240264
-0.216427
-0.21283
-0.212542
-0.254652
-0.219456
-0.220442
-0.241249
-0.217916
-0.244582
-0.237399
-0.24723
-0.228835
-0.233877
-0.24129
-0.222453
-0.249707
-0.246033
-0.245299
-0.232847
-0.237933
-0.231534
-0.270594
-0.27028
-0.242301
-0.228694
-0.265561
-0.23908
-0.263836
-0.225457
-0.226046
-0.228849
-0.26575
-0.251542
-0.222828
-0.252121
-0.243211
-0.267357
-0.243776
-0.238869
-0.281019
-0.281402
-0.254453
-0.257242
-0.30921
-0.270037
-0.319014
-0.237298
-0.241575
-0.245901
-0.296996
-0.271491
-0.264792
-0.280854
-0.265691
-0.293278
-0.283079
-0.22955
-0.230251
-0.230916
-0.256771
-0.223926
-0.250344
-0.24831
-0.228911
-0.256254
-0.243568
-0.216173
-0.216161
-0.218225
-0.206053
-0.222618
-0.212016
-0.21317
-0.217222
-0.216818
-0.215413
-0.207362
-0.221749
-0.214004
-0.213176
-0.220576
-0.237839
-0.260272
-0.235749
-0.243979
-0.245667
-0.215776
-0.213661
-0.209018
-0.208429
-0.235723
-0.216602
-0.2054
-0.216181
-0.224743
-0.221223
-0.218207
-0.209251
-0.221115
-0.227071
-0.215883
-0.22923
-0.232945
-0.244241
-0.2249
-0.22984
-0.236625
-0.226074
-0.235485
-0.248695
-0.242264
-0.249194
-0.235811
-0.237722
-0.253765
-0.221166
-0.210643
-0.217921
-0.237159
-0.21364
-0.218349
-0.223518
-0.248085
-0.223011
-0.22423
-0.22549
-0.24542
-0.220898
-0.235944
-0.245796
-0.22014
-0.242975
-0.264418
-0.242284
-0.236758
-0.222468
-0.244854
-0.261149
-0.250133
-0.237254
-0.249456
-0.248529
-0.232515
-0.246341
-0.269649
-0.251794
-0.24955
-0.270389
-0.241431
-0.258546
-0.236194
-0.231136
-0.260083
-0.233891
-0.214327
-0.205959
-0.209857
-0.214874
-0.217189
-0.246638
-0.233725
-0.239724
-0.236269
-0.214301
-0.224675
-0.229426
-0.237288
-0.236113
-0.241138
-0.235972
-0.214399
-0.231412
-0.241657
-0.225605
-0.224239
-0.220701
-0.224256
-0.216537
-0.227911
-0.220171
-0.223656
-0.22084
-0.220362
-0.218334
-0.211653
-0.224687
-0.218425
-0.216955
-0.225214
-0.240841
-0.264122
-0.241083
-0.248846
-0.249471
-0.220371
-0.220871
-0.219316
-0.217796
-0.247416
-0.224437
-0.21295
-0.226714
-0.233183
-0.223496
-0.22868
-0.228962
-0.226881
-0.232449
-0.238081
-0.244318
-0.235891
-0.247509
-0.25459
-0.249465
-0.248455
-0.244881
-0.240401
-0.253984
-0.259703
-0.282405
-0.237243
-0.266946
-0.261821
-0.243652
-0.288738
-0.290221
-0.260805
-0.242227
-0.267733
-0.261636
-0.283155
-0.256718
-0.258785
-0.25656
-0.26692
-0.241136
-0.265415
-0.30789
-0.253995
-0.273682
-0.269535
-0.242219
-0.245356
-0.228708
-0.253567
-0.268114
-0.251212
-0.234295
-0.230265
-0.229
-0.229536
-0.247652
-0.27562
-0.249873
-0.236577
-0.274797
-0.244157
-0.268317
-0.242709
-0.233284
-0.269197
-0.260944
-0.22646
-0.225468
-0.232082
-0.233301
-0.241515
-0.27827
-0.257676
-0.259211
-0.250585
-0.232603
-0.243144
-0.24741
-0.263476
-0.263108
-0.296857
-0.248961
-0.237953
-0.271601
-0.272501
-0.243917
-0.480738
-0.479544
-0.478743
-0.48171
-0.480281
-0.479196
-0.482097
-0.456929
-0.452872
-0.445675
-0.462127
-0.457328
-0.44551
-0.452476
-0.456875
-0.445098
-0.451873
-0.461942
-0.456425
-0.44552
-0.452339
-0.477957
-0.477484
-0.47792
-0.484604
-0.479455
-0.475765
-0.483576
-0.455074
-0.448864
-0.445935
-0.464269
-0.454512
-0.445195
-0.450149
-0.454894
-0.443157
-0.451287
-0.46106
-0.455403
-0.443677
-0.450266
-0.177707
-0.174525
-0.165877
-0.169148
-0.170156
-0.173411
-0.177432
-0.181359
-0.180913
-0.19822
-0.183534
-0.18045
-0.193309
-0.183695
-0.174212
-0.171996
-0.175313
-0.174483
-0.175456
-0.172312
-0.173077
-0.173793
-0.181069
-0.195679
-0.191126
-0.177939
-0.176049
-0.187441
-0.175755
-0.180632
-0.175953
-0.175786
-0.177241
-0.178228
-0.172529
-0.217002
-0.188714
-0.196122
-0.206162
-0.205715
-0.19248
-0.219397
-0.221015
-0.263407
-0.222245
-0.245344
-0.221939
-0.245468
-0.229885
-0.193807
-0.205225
-0.22694
-0.211602
-0.21368
-0.22596
-0.230079
-0.213623
-0.213613
-0.230994
-0.197493
-0.207927
-0.20757
-0.188024
-0.207609
-0.207613
-0.170448
-0.17787
-0.177081
-0.180173
-0.171147
-0.176474
-0.187516
-0.184329
-0.183822
-0.169352
-0.185638
-0.171048
-0.169353
-0.16818
-0.172172
-0.171408
-0.164416
-0.18072
-0.158505
-0.166675
-0.159458
-0.163414
-0.169558
-0.164232
-0.16589
-0.159388
-0.163535
-0.162283
-0.166621
-0.162269
-0.169191
-0.170949
-0.168755
-0.173151
-0.167587
-0.172006
-0.170273
-0.168282
-0.173547
-0.167888
-0.170607
-0.158715
-0.147062
-0.150851
-0.156731
-0.161893
-0.165721
-0.171622
-0.168775
-0.166019
-0.162
-0.165389
-0.160478
-0.152715
-0.152547
-0.163764
-0.168502
-0.175159
-0.168198
-0.171356
-0.164583
-0.170441
-0.169247
-0.168278
-0.167929
-0.169149
-0.165831
-0.162121
-0.149761
-0.150521
-0.158165
-0.151398
-0.161902
-0.157429
-0.171279
-0.180556
-0.15442
-0.152552
-0.151979
-0.178448
-0.171453
-0.165974
-0.167731
-0.16449
-0.166863
-0.166323
-0.168091
-0.164153
-0.195614
-0.196853
-0.18566
-0.188431
-0.179394
-0.195771
-0.180633
-0.179681
-0.200094
-0.177473
-0.199285
-0.177714
-0.175494
-0.173805
-0.175342
-0.181206
-0.172339
-0.178866
-0.189192
-0.174783
-0.178142
-0.19215
-0.168762
-0.159895
-0.154035
-0.165183
-0.163094
-0.163638
-0.167099
-0.166723
-0.177747
-0.168284
-0.159626
-0.17115
-0.166458
-0.159948
-0.172269
-0.162206
-0.180714
-0.161537
-0.170558
-0.178975
-0.165953
-0.164528
-0.16587
-0.167371
-0.168424
-0.171422
-0.186635
-0.166969
-0.182255
-0.171902
-0.16421
-0.168189
-0.195608
-0.19515
-0.1707
-0.186005
-0.170583
-0.167926
-0.17996
-0.186208
-0.177692
-0.162901
-0.180474
-0.159848
-0.150371
-0.164671
-0.149321
-0.187732
-0.152778
-0.149322
-0.139843
-0.146793
-0.148293
-0.144666
-0.153124
-0.166088
-0.158641
-0.169962
-0.17017
-0.159332
-0.160799
-0.16887
-0.170204
-0.170075
-0.160765
-0.181505
-0.177375
-0.158819
-0.159393
-0.179052
-0.164789
-0.170004
-0.156283
-0.159707
-0.149573
-0.146799
-0.146992
-0.153392
-0.145958
-0.153045
-0.149017
-0.151487
-0.148057
-0.161871
-0.151733
-0.151859
-0.148027
-0.151244
-0.158004
-0.185452
-0.161475
-0.1626
-0.160399
-0.171158
-0.15944
-0.193978
-0.204316
-0.18111
-0.195437
-0.206337
-0.182803
-0.197218
-0.17816
-0.183476
-0.169246
-0.189156
-0.177651
-0.180191
-0.16925
-0.192334
-0.180513
-0.179397
-0.189207
-0.185296
-0.196098
-0.19032
-0.174979
-0.171224
-0.167947
-0.173828
-0.171314
-0.169831
-0.17556
-0.184738
-0.208515
-0.197743
-0.21803
-0.231178
-0.215383
-0.193391
-0.201515
-0.200375
-0.205693
-0.233182
-0.212012
-0.193645
-0.186583
-0.189472
-0.215088
-0.187153
-0.190805
-0.206877
-0.203587
-0.217064
-0.201903
-0.216386
-0.199485
-0.205146
-0.216427
-0.196669
-0.193689
-0.197696
-0.201945
-0.192821
-0.200402
-0.195368
-0.204207
-0.203985
-0.242991
-0.231677
-0.195959
-0.211692
-0.229683
-0.201818
-0.206868
-0.170819
-0.19116
-0.169998
-0.188783
-0.183562
-0.197087
-0.187271
-0.186415
-0.182371
-0.186097
-0.184172
-0.1859
-0.18816
-0.20025
-0.185448
-0.211398
-0.184031
-0.211722
-0.186596
-0.197273
-0.189281
-0.191005
-0.204393
-0.192516
-0.208958
-0.187368
-0.191936
-0.187057
-0.179387
-0.178816
-0.176113
-0.179204
-0.181046
-0.184815
-0.201137
-0.185025
-0.193059
-0.210217
-0.193087
-0.196742
-0.206456
-0.211435
-0.199098
-0.221535
-0.226765
-0.205303
-0.208868
-0.223788
-0.229775
-0.228406
-0.251224
-0.229487
-0.24848
-0.249908
-0.247396
-0.249958
-0.247886
-0.228797
-0.227693
-0.252242
-0.22716
-0.254338
-0.266451
-0.258953
-0.266609
-0.250085
-0.253346
-0.19733
-0.203727
-0.200648
-0.198839
-0.215344
-0.2133
-0.216811
-0.215075
-0.216499
-0.213945
-0.214511
-0.196187
-0.202941
-0.194607
-0.202974
-0.201824
-0.204291
-0.197022
-0.196755
-0.202381
-0.204962
-0.194882
-0.202827
-0.198478
-0.204261
-0.19689
-0.198668
-0.20003
-0.196334
-0.152061
-0.182916
-0.149899
-0.148547
-0.179764
-0.153736
-0.151621
-0.140719
-0.152272
-0.154959
-0.154503
-0.146956
-0.139706
-0.152694
-0.151039
-0.17577
-0.150381
-0.15221
-0.178903
-0.150983
-0.152372
-0.143623
-0.134967
-0.150963
-0.137116
-0.15156
-0.14329
-0.150431
-0.140587
-0.193938
-0.189848
-0.209466
-0.23727
-0.216665
-0.221004
-0.210959
-0.219569
-0.20684
-0.205427
-0.189697
-0.191459
-0.206375
-0.205622
-0.192628
-0.207911
-0.19795
-0.2099
-0.190105
-0.207317
-0.212333
-0.193405
-0.187398
-0.189206
-0.166036
-0.187635
-0.15468
-0.170614
-0.173889
-0.157956
-0.167374
-0.158192
-0.140316
-0.146455
-0.14992
-0.138758
-0.160924
-0.153289
-0.157979
-0.154917
-0.135996
-0.143859
-0.137639
-0.153615
-0.16057
-0.169497
-0.169452
-0.171922
-0.164099
-0.173772
-0.168153
-0.167782
-0.254875
-0.253269
-0.264953
-0.269524
-0.26653
-0.2482
-0.27195
-0.254964
-0.265857
-0.271184
-0.270633
-0.254544
-0.267021
-0.273311
-0.278292
-0.289538
-0.276653
-0.290511
-0.275814
-0.279349
-0.290446
-0.284917
-0.274071
-0.285084
-0.276309
-0.276108
-0.276635
-0.283176
-0.260123
-0.275661
-0.277983
-0.278256
-0.276374
-0.292039
-0.299266
-0.275699
-0.281078
-0.292261
-0.235982
-0.243704
-0.227128
-0.232256
-0.22844
-0.236338
-0.231101
-0.250271
-0.245632
-0.244704
-0.243827
-0.249227
-0.24734
-0.248183
-0.251988
-0.25893
-0.257944
-0.24859
-0.255757
-0.250891
-0.250482
-0.284214
-0.264364
-0.261488
-0.262526
-0.291657
-0.286937
-0.283267
-0.283322
-0.297412
-0.280134
-0.294059
-0.299624
-0.280049
-0.27805
-0.282154
-0.261466
-0.261256
-0.26174
-0.280284
-0.283536
-0.276204
-0.297467
-0.300205
-0.277159
-0.281852
-0.300935
-0.208758
-0.185883
-0.204438
-0.19511
-0.218622
-0.227147
-0.227478
-0.208517
-0.227733
-0.212757
-0.21221
-0.215855
-0.209493
-0.197387
-0.191804
-0.194531
-0.191357
-0.161682
-0.181093
-0.170329
-0.181738
-0.164468
-0.181146
-0.165475
-0.161992
-0.181467
-0.164793
-0.181136
-0.164754
-0.161642
-0.181269
-0.15084
-0.148016
-0.146869
-0.14559
-0.144483
-0.143339
-0.206993
-0.183341
-0.185968
-0.20669
-0.185295
-0.211659
-0.225472
-0.227295
-0.208249
-0.227217
-0.207741
-0.21193
-0.210465
-0.212096
-0.20772
-0.183439
-0.18559
-0.208468
-0.18558
-0.209766
-0.20997
-0.166971
-0.18103
-0.179913
-0.17148
-0.172969
-0.169469
-0.176588
-0.152211
-0.142779
-0.152508
-0.148427
-0.142787
-0.152522
-0.147793
-0.167818
-0.166331
-0.168524
-0.165137
-0.167513
-0.168816
-0.166612
-0.246344
-0.251479
-0.265729
-0.264889
-0.249775
-0.24772
-0.265305
-0.246239
-0.27024
-0.252943
-0.267211
-0.250097
-0.246864
-0.266553
-0.263085
-0.260291
-0.270585
-0.269441
-0.260149
-0.261968
-0.272954
-0.290364
-0.282684
-0.292034
-0.281789
-0.270017
-0.278969
-0.277493
-0.271003
-0.268772
-0.277476
-0.272422
-0.292789
-0.282719
-0.289774
-0.282597
-0.282351
-0.294559
-0.28332
-0.250223
-0.264108
-0.258524
-0.256428
-0.250578
-0.261972
-0.262612
-0.247643
-0.269863
-0.253003
-0.272026
-0.255735
-0.246091
-0.268772
-0.292654
-0.263316
-0.265193
-0.292584
-0.266292
-0.298437
-0.282197
-0.291604
-0.2839
-0.299574
-0.282426
-0.28629
-0.288618
-0.299899
-0.286305
-0.281476
-0.291298
-0.275692
-0.266669
-0.274115
-0.268532
-0.273744
-0.297952
-0.283426
-0.281604
-0.288064
-0.295085
-0.285032
-0.281757
-0.231211
-0.224686
-0.225297
-0.252093
-0.244241
-0.229827
-0.232243
-0.189946
-0.182588
-0.179161
-0.180358
-0.173883
-0.185964
-0.173275
-0.192514
-0.177517
-0.169129
-0.167272
-0.171681
-0.165871
-0.168939
-0.172241
-0.161588
-0.191137
-0.187515
-0.184215
-0.192579
-0.184331
-0.173815
-0.17325
-0.177942
-0.16899
-0.184033
-0.186575
-0.18294
-0.176636
-0.172887
-0.190694
-0.182452
-0.165103
-0.187535
-0.180949
-0.187902
-0.160224
-0.215232
-0.228653
-0.215562
-0.230023
-0.206715
-0.195193
-0.195528
-0.209682
-0.205707
-0.19531
-0.205213
-0.195685
-0.17124
-0.180872
-0.172767
-0.168643
-0.179224
-0.194009
-0.189327
-0.181078
-0.178732
-0.187048
-0.178667
-0.188107
-0.165167
-0.177452
-0.172189
-0.180411
-0.175595
-0.165395
-0.164608
-0.148906
-0.144942
-0.148295
-0.144014
-0.146134
-0.139022
-0.141378
-0.14729
-0.140609
-0.146561
-0.146067
-0.157392
-0.164846
-0.164528
-0.160869
-0.156581
-0.163693
-0.154878
-0.164451
-0.153812
-0.158456
-0.157377
-0.157879
-0.154979
-0.157561
-0.157794
-0.16645
-0.165571
-0.181652
-0.172524
-0.18387
-0.164726
-0.16607
-0.164913
-0.166434
-0.164706
-0.181956
-0.162051
-0.168498
-0.168438
-0.180991
-0.173337
-0.194381
-0.185927
-0.192366
-0.177795
-0.186344
-0.162598
-0.162916
-0.163308
-0.164513
-0.164021
-0.191013
-0.166897
-0.171636
-0.161777
-0.166927
-0.16502
-0.165363
-0.156088
-0.162103
-0.164368
-0.15603
-0.164148
-0.156249
-0.15652
-0.16099
-0.163359
-0.160217
-0.159887
-0.163035
-0.161325
-0.158365
-0.16179
-0.16555
-0.165774
-0.163236
-0.16438
-0.160901
-0.162965
-0.163744
-0.166214
-0.162465
-0.168167
-0.165654
-0.16669
-0.163843
-0.15701
-0.158564
-0.159187
-0.153273
-0.153316
-0.159674
-0.154884
-0.158532
-0.155775
-0.161853
-0.155221
-0.158096
-0.155257
-0.156586
-0.144174
-0.135983
-0.137554
-0.147707
-0.134814
-0.144097
-0.146613
-0.179586
-0.159403
-0.170953
-0.159396
-0.148302
-0.149627
-0.14312
-0.140603
-0.150421
-0.139906
-0.148006
-0.175891
-0.157782
-0.161974
-0.154908
-0.170528
-0.162162
-0.156114
-0.182364
-0.153128
-0.16019
-0.156142
-0.170856
-0.157094
-0.151983
-0.156455
-0.158006
-0.167103
-0.166636
-0.156925
-0.158425
-0.167022
-0.175278
-0.155286
-0.15755
-0.178823
-0.175229
-0.159653
-0.164829
-0.154915
-0.182489
-0.177416
-0.168195
-0.165223
-0.154291
-0.155315
-0.17253
-0.177041
-0.176326
-0.159065
-0.165305
-0.15721
-0.162304
-0.170409
-0.153056
-0.212747
-0.222385
-0.211082
-0.217835
-0.209861
-0.213248
-0.220052
-0.205204
-0.20588
-0.193634
-0.197986
-0.204881
-0.206523
-0.194872
-0.203443
-0.195807
-0.203108
-0.196446
-0.202034
-0.20404
-0.196492
-0.176838
-0.174238
-0.183725
-0.182817
-0.184019
-0.176401
-0.175656
-0.171559
-0.163738
-0.170457
-0.169132
-0.170344
-0.166983
-0.172271
-0.178729
-0.18701
-0.185639
-0.180419
-0.185527
-0.178484
-0.181069
-0.207802
-0.205926
-0.215576
-0.210382
-0.186222
-0.207396
-0.174132
-0.188104
-0.168544
-0.184882
-0.170103
-0.188285
-0.171856
-0.199641
-0.190114
-0.18987
-0.185172
-0.195618
-0.190878
-0.186373
-0.37078
-0.37391
-0.372656
-0.36394
-0.371019
-0.368748
-0.376961
-0.361564
-0.361641
-0.368478
-0.371485
-0.393043
-0.398423
-0.394495
-0.393731
-0.399141
-0.393288
-0.392501
-0.393132
-0.392566
-0.394421
-0.397558
-0.398908
-0.392502
-0.393169
-0.370862
-0.377225
-0.361626
-0.36846
-0.361838
-0.371397
-0.368403
-0.349319
-0.349014
-0.349767
-0.344775
-0.349304
-0.348145
-0.345388
-0.32776
-0.335656
-0.334101
-0.329689
-0.328227
-0.334476
-0.327906
-0.338868
-0.333932
-0.337158
-0.329317
-0.361114
-0.351065
-0.349584
-0.348184
-0.348806
-0.363012
-0.347998
-0.348774
-0.347933
-0.343376
-0.34865
-0.345946
-0.345413
-0.345354
-0.332959
-0.326035
-0.330155
-0.339755
-0.324925
-0.323527
-0.33732
-0.32613
-0.339382
-0.338233
-0.344651
-0.335124
-0.333888
-0.325
-0.330567
-0.329374
-0.342384
-0.33587
-0.358836
-0.33398
-0.337948
-0.331623
-0.369657
-0.377358
-0.369252
-0.377715
-0.368246
-0.368985
-0.375437
-0.37004
-0.361015
-0.372876
-0.37188
-0.372618
-0.358435
-0.396319
-0.396998
-0.392012
-0.394461
-0.395995
-0.396677
-0.390936
-0.393366
-0.392721
-0.389288
-0.395927
-0.39454
-0.390843
-0.393296
-0.383051
-0.368057
-0.38849
-0.357144
-0.388936
-0.357577
-0.383228
-0.45368
-0.461708
-0.453419
-0.452802
-0.46151
-0.453261
-0.43532
-0.436572
-0.429596
-0.426429
-0.426362
-0.434918
-0.437417
-0.412828
-0.41043
-0.417036
-0.429587
-0.41999
-0.41074
-0.423561
-0.405834
-0.410506
-0.427741
-0.424483
-0.428697
-0.430484
-0.423923
-0.43134
-0.428337
-0.415993
-0.429477
-0.413147
-0.427216
-0.411802
-0.428219
-0.411464
-0.430469
-0.428286
-0.430137
-0.424887
-0.43005
-0.428638
-0.430088
-0.424863
-0.409449
-0.415537
-0.416472
-0.431005
-0.415987
-0.409724
-0.431143
-0.428207
-0.424872
-0.430148
-0.430285
-0.430185
-0.425045
-0.428158
-0.412128
-0.430618
-0.412391
-0.430816
-0.356113
-0.358974
-0.325005
-0.327309
-0.347394
-0.325691
-0.325956
-0.32889
-0.341315
-0.316409
-0.330084
-0.329113
-0.320191
-0.335393
-0.313375
-0.315734
-0.33055
-0.330429
-0.316852
-0.317135
-0.329838
-0.318654
-0.330908
-0.322532
-0.344783
-0.322642
-0.323381
-0.323454
-0.364569
-0.346441
-0.368596
-0.34978
-0.344003
-0.367166
-0.366227
-0.364775
-0.396889
-0.35701
-0.400516
-0.359185
-0.361793
-0.368861
-0.364594
-0.411328
-0.4086
-0.371363
-0.362438
-0.361829
-0.346885
-0.339086
-0.36044
-0.341723
-0.363263
-0.358656
-0.328104
-0.328887
-0.355885
-0.327291
-0.330206
-0.316256
-0.31744
-0.335133
-0.322869
-0.31961
-0.335363
-0.321793
-0.336138
-0.334344
-0.333988
-0.331767
-0.319255
-0.31862
-0.320462
-0.332605
-0.333296
-0.328586
-0.356649
-0.331662
-0.329148
-0.330868
-0.37237
-0.348933
-0.358222
-0.371739
-0.374202
-0.351406
-0.369875
-0.377958
-0.413654
-0.377855
-0.38231
-0.415566
-0.372341
-0.374598
-0.360797
-0.380304
-0.355031
-0.377991
-0.376794
-0.35343
-0.376241
-0.368144
-0.413754
-0.414949
-0.370131
-0.374266
-0.347571
-0.344958
-0.227103
-0.227314
-0.220563
-0.219707
-0.22276
-0.22998
-0.213495
-0.246178
-0.246981
-0.236568
-0.247026
-0.239881
-0.241009
-0.24923
-0.246361
-0.236968
-0.241926
-0.237686
-0.245278
-0.243673
-0.238642
-0.234025
-0.223328
-0.254598
-0.219038
-0.236062
-0.220193
-0.247304
-0.211923
-0.242945
-0.225395
-0.228319
-0.216289
-0.212257
-0.223488
-0.220355
-0.224825
-0.22476
-0.224658
-0.219313
-0.216324
-0.219481
-0.22044
-0.218849
-0.240214
-0.218996
-0.218961
-0.24664
-0.25407
-0.218899
-0.233817
-0.232554
-0.213154
-0.240304
-0.248457
-0.243805
-0.213759
-0.230067
-0.232844
-0.207776
-0.236833
-0.234556
-0.214844
-0.213617
-0.214879
-0.247115
-0.252333
-0.235401
-0.211898
-0.216683
-0.21247
-0.213945
-0.217767
-0.209966
-0.205237
-0.23704
-0.222767
-0.220733
-0.208218
-0.233002
-0.211034
-0.208284
-0.212796
-0.216656
-0.214883
-0.21435
-0.207752
-0.217374
-0.207826
-0.219313
-0.261431
-0.249429
-0.249792
-0.240921
-0.223564
-0.24175
-0.218618
-0.219264
-0.219427
-0.226789
-0.214409
-0.220822
-0.22152
-0.216379
-0.215379
-0.224831
-0.218429
-0.218759
-0.212549
-0.21875
-0.2333
-0.241462
-0.231383
-0.245414
-0.231223
-0.213871
-0.245237
-0.277031
-0.295804
-0.275145
-0.302842
-0.252565
-0.229112
-0.226303
-0.255005
-0.245116
-0.238597
-0.243932
-0.21458
-0.251126
-0.24926
-0.215953
-0.234447
-0.235032
-0.210197
-0.238005
-0.246218
-0.248262
-0.213435
-0.230944
-0.231405
-0.208153
-0.23741
-0.233374
-0.214152
-0.213538
-0.210918
-0.250165
-0.250532
-0.231718
-0.211663
-0.211157
-0.211072
-0.209479
-0.216564
-0.204498
-0.205072
-0.235933
-0.225742
-0.222728
-0.210627
-0.233885
-0.207929
-0.209137
-0.230095
-0.239992
-0.231357
-0.244316
-0.252094
-0.243505
-0.242433
-0.248656
-0.242315
-0.265253
-0.272308
-0.239
-0.26769
-0.242005
-0.261453
-0.246533
-0.227111
-0.224512
-0.229164
-0.267251
-0.226223
-0.227311
-0.24034
-0.213726
-0.247803
-0.237293
-0.246041
-0.235772
-0.224854
-0.246528
-0.235145
-0.230323
-0.232858
-0.260269
-0.233655
-0.236154
-0.219361
-0.238459
-0.231161
-0.225135
-0.262786
-0.26099
-0.236813
-0.220265
-0.22043
-0.222962
-0.265437
-0.273766
-0.249435
-0.225617
-0.241126
-0.267117
-0.27079
-0.235637
-0.26683
-0.264987
-0.244011
-0.263228
-0.260657
-0.210014
-0.209505
-0.211532
-0.210192
-0.204976
-0.203302
-0.214776
-0.213498
-0.248933
-0.216091
-0.216781
-0.212035
-0.219461
-0.238392
-0.214025
-0.248658
-0.213894
-0.210098
-0.210231
-0.21972
-0.236575
-0.217445
-0.208727
-0.223589
-0.224234
-0.224019
-0.207198
-0.214695
-0.256192
-0.218066
-0.252174
-0.230548
-0.226814
-0.241307
-0.250557
-0.222072
-0.253695
-0.225499
-0.228699
-0.258385
-0.26693
-0.290821
-0.269601
-0.268904
-0.261577
-0.270328
-0.271685
-0.298915
-0.236452
-0.305464
-0.267067
-0.251659
-0.277562
-0.264785
-0.248313
-0.288721
-0.249423
-0.272454
-0.283387
-0.207721
-0.235602
-0.219893
-0.221404
-0.208319
-0.208222
-0.218937
-0.212801
-0.214688
-0.215345
-0.215539
-0.214957
-0.216886
-0.216649
-0.220805
-0.216735
-0.265982
-0.228848
-0.232568
-0.335113
-0.331091
-0.336616
-0.333658
-0.33579
-0.336153
-0.329663
-0.373822
-0.393437
-0.393418
-0.3708
-0.374655
-0.392612
-0.393462
-0.374219
-0.334105
-0.332948
-0.335487
-0.327506
-0.335388
-0.328735
-0.332212
-0.308158
-0.319351
-0.322941
-0.316357
-0.308224
-0.320734
-0.32199
-0.319507
-0.315669
-0.327245
-0.282075
-0.288582
-0.319063
-0.319134
-0.28383
-0.298279
-0.29123
-0.303222
-0.317833
-0.288097
-0.298072
-0.316453
-0.331285
-0.329894
-0.34821
-0.336203
-0.339006
-0.346701
-0.353452
-0.339566
-0.343773
-0.353484
-0.384709
-0.350785
-0.384194
-0.351928
-0.352382
-0.353079
-0.390089
-0.381803
-0.352771
-0.372477
-0.355223
-0.360991
-0.360991
-0.342712
-0.359791
-0.341869
-0.356199
-0.320336
-0.312865
-0.319113
-0.289738
-0.294868
-0.301197
-0.287522
-0.301198
-0.2895
-0.287441
-0.294255
-0.29767
-0.303485
-0.304505
-0.304113
-0.296059
-0.295838
-0.306032
-0.306229
-0.308103
-0.450776
-0.46511
-0.452046
-0.452164
-0.457165
-0.451062
-0.438373
-0.437372
-0.429498
-0.42705
-0.427162
-0.437406
-0.438403
-0.431399
-0.402147
-0.427172
-0.407722
-0.428144
-0.430372
-0.408769
-0.404131
-0.403278
-0.438064
-0.427455
-0.429742
-0.436975
-0.427153
-0.437268
-0.437673
-0.401078
-0.402147
-0.396268
-0.396831
-0.41837
-0.418805
-0.451226
-0.413409
-0.422471
-0.426698
-0.399987
-0.42596
-0.405977
-0.424216
-0.428651
-0.405204
-0.43398
-0.428447
-0.432549
-0.436502
-0.429809
-0.430578
-0.437015
-0.399183
-0.398591
-0.253823
-0.236156
-0.240103
-0.238517
-0.237426
-0.26292
-0.232819
-0.214575
-0.223685
-0.238299
-0.280669
-0.286328
-0.264964
-0.242837
-0.259197
-0.279355
-0.299296
-0.282129
-0.270228
-0.296186
-0.273525
-0.302976
-0.295095
-0.264534
-0.248945
-0.277907
-0.311655
-0.301528
-0.282605
-0.262055
-0.278017
-0.306548
-0.208477
-0.218738
-0.218187
-0.22777
-0.235388
-0.227336
-0.230155
-0.240208
-0.22786
-0.340206
-0.329054
-0.341646
-0.331688
-0.307591
-0.333296
-0.307024
-0.320309
-0.308776
-0.321386
-0.327665
-0.298487
-0.298463
-0.306012
-0.301843
-0.302384
-0.306514
-0.29468
-0.341852
-0.318792
-0.333096
-0.319791
-0.352105
-0.332673
-0.337015
-0.35191
-0.333264
-0.350872
-0.353104
-0.357361
-0.394985
-0.354451
-0.359421
-0.393286
-0.352685
-0.35378
-0.339003
-0.33618
-0.357233
-0.334914
-0.355981
-0.355089
-0.355755
-0.349822
-0.390459
-0.3919
-0.354315
-0.350986
-0.351422
-0.331532
-0.342865
-0.350958
-0.351454
-0.33567
-0.350167
-0.352554
-0.385328
-0.350681
-0.352585
-0.386377
-0.35006
-0.354036
-0.360046
-0.360869
-0.34336
-0.356141
-0.357934
-0.340824
-0.35251
-0.348593
-0.389024
-0.387835
-0.348304
-0.35309
-0.324968
-0.334425
-0.31955
-0.288153
-0.296149
-0.298552
-0.287958
-0.296429
-0.288085
-0.289306
-0.289938
-0.295527
-0.298887
-0.299197
-0.297562
-0.291603
-0.292334
-0.314607
-0.307496
-0.311017
-0.335615
-0.337722
-0.206118
-0.219206
-0.208038
-0.200291
-0.205379
-0.202414
-0.216674
-0.212299
-0.210186
-0.199446
-0.20433
-0.228847
-0.231308
-0.242826
-0.305126
-0.278792
-0.281723
-0.261788
-0.246573
-0.259604
-0.258344
-0.244002
-0.259821
-0.244636
-0.224586
-0.235382
-0.222189
-0.258978
-0.232097
-0.242816
-0.262977
-0.244201
-0.257819
-0.249486
-0.264288
-0.242984
-0.222535
-0.224401
-0.257039
-0.226594
-0.242011
-0.282839
-0.271232
-0.242903
-0.25075
-0.2788
-0.251286
-0.271055
-0.228435
-0.235857
-0.236916
-0.267168
-0.228115
-0.212386
-0.209755
-0.209047
-0.224254
-0.213894
-0.214231
-0.275344
-0.274328
-0.236294
-0.241264
-0.269858
-0.247587
-0.212372
-0.202074
-0.215994
-0.215627
-0.207864
-0.219321
-0.209702
-0.210036
-0.194936
-0.209055
-0.206595
-0.204755
-0.212444
-0.20493
-0.216703
-0.254295
-0.218739
-0.214908
-0.213104
-0.224696
-0.221386
-0.2399
-0.238136
-0.228841
-0.248738
-0.236112
-0.231843
-0.253952
-0.233925
-0.238819
-0.215056
-0.220134
-0.237243
-0.23581
-0.219434
-0.232031
-0.223464
-0.230363
-0.211933
-0.229221
-0.234872
-0.218482
-0.216509
-0.235735
-0.214077
-0.206713
-0.225164
-0.203863
-0.220763
-0.216034
-0.200538
-0.197863
-0.211137
-0.206224
-0.20943
-0.211377
-0.229334
-0.191906
-0.202804
-0.210838
-0.235151
-0.211239
-0.216127
-0.229685
-0.234535
-0.209314
-0.23868
-0.246775
-0.215963
-0.229941
-0.21428
-0.207681
-0.223609
-0.21754
-0.225207
-0.213126
-0.207474
-0.206
-0.202824
-0.191596
-0.205485
-0.1951
-0.208241
-0.206228
-0.215039
-0.249349
-0.225359
-0.214315
-0.230767
-0.205683
-0.221014
-0.252496
-0.246443
-0.243385
-0.233286
-0.253388
-0.244097
-0.243622
-0.230719
-0.197529
-0.198997
-0.204164
-0.244113
-0.20823
-0.211544
-0.230042
-0.216655
-0.222969
-0.235042
-0.215907
-0.228164
-0.235442
-0.240113
-0.247422
-0.253456
-0.227745
-0.247086
-0.236632
-0.23659
-0.458371
-0.458223
-0.450302
-0.463734
-0.458723
-0.452092
-0.464477
-0.435233
-0.425703
-0.423745
-0.443714
-0.43468
-0.423333
-0.425871
-0.436445
-0.419203
-0.427952
-0.443291
-0.439001
-0.422817
-0.42744
-0.459348
-0.451166
-0.460263
-0.456609
-0.461506
-0.457356
-0.454906
-0.444908
-0.446628
-0.41168
-0.424131
-0.442807
-0.412552
-0.449351
-0.446341
-0.413047
-0.452547
-0.424707
-0.447585
-0.413211
-0.451481
-0.144777
-0.137305
-0.137673
-0.151153
-0.145857
-0.136171
-0.147741
-0.150114
-0.152278
-0.156402
-0.155475
-0.152876
-0.154351
-0.14981
-0.151056
-0.152186
-0.153881
-0.15423
-0.149983
-0.153692
-0.153871
-0.159075
-0.16166
-0.16742
-0.166408
-0.163747
-0.158689
-0.161735
-0.153933
-0.153018
-0.147304
-0.169266
-0.147207
-0.153355
-0.158093
-0.15588
-0.159098
-0.165926
-0.152166
-0.161519
-0.154203
-0.154348
-0.160841
-0.155636
-0.161555
-0.159938
-0.159515
-0.159702
-0.158686
-0.15815
-0.160704
-0.149488
-0.168683
-0.149622
-0.157434
-0.163902
-0.165292
-0.157322
-0.160573
-0.177253
-0.175673
-0.159639
-0.163371
-0.14843
-0.147821
-0.154722
-0.155963
-0.146137
-0.149493
-0.15482
-0.186108
-0.172119
-0.182925
-0.182622
-0.186813
-0.199646
-0.173983
-0.172295
-0.181478
-0.165693
-0.17494
-0.166605
-0.170828
-0.171289
-0.186513
-0.186146
-0.178183
-0.180292
-0.183991
-0.194831
-0.18081
-0.172936
-0.164514
-0.166881
-0.168443
-0.168081
-0.168541
-0.172354
-0.180357
-0.187574
-0.179317
-0.17289
-0.172471
-0.187038
-0.180297
-0.209539
-0.17528
-0.175844
-0.180244
-0.17931
-0.178012
-0.176309
-0.175496
-0.169862
-0.168068
-0.165736
-0.17082
-0.169434
-0.168097
-0.17094
-0.172725
-0.207468
-0.179337
-0.175487
-0.177703
-0.172991
-0.174906
-0.195414
-0.181673
-0.19775
-0.188157
-0.197676
-0.205652
-0.201474
-0.203853
-0.197348
-0.200763
-0.20205
-0.18721
-0.195232
-0.181618
-0.190339
-0.181661
-0.186466
-0.195932
-0.203162
-0.207252
-0.201896
-0.207477
-0.196673
-0.1883
-0.188665
-0.195462
-0.192169
-0.180307
-0.196539
-0.188971
-0.196
-0.185673
-0.194344
-0.201443
-0.209146
-0.200892
-0.207701
-0.172773
-0.198231
-0.173204
-0.186545
-0.178797
-0.17267
-0.165944
-0.177131
-0.192417
-0.172204
-0.165386
-0.180803
-0.196581
-0.167819
-0.18201
-0.176252
-0.180215
-0.179338
-0.183981
-0.17974
-0.177339
-0.179952
-0.189421
-0.198667
-0.166656
-0.17943
-0.183862
-0.184203
-0.180529
-0.172176
-0.201008
-0.179265
-0.18504
-0.17396
-0.185528
-0.178451
-0.177395
-0.173085
-0.164921
-0.181382
-0.175381
-0.165524
-0.174647
-0.194529
-0.210471
-0.193719
-0.208608
-0.188133
-0.211332
-0.208753
-0.188244
-0.215621
-0.19611
-0.212608
-0.189838
-0.194775
-0.213677
-0.170415
-0.178195
-0.170006
-0.174474
-0.169124
-0.129114
-0.133256
-0.13023
-0.131749
-0.129292
-0.13297
-0.129624
-0.148516
-0.158161
-0.150761
-0.154199
-0.159318
-0.152169
-0.127634
-0.134974
-0.127421
-0.135399
-0.120159
-0.112649
-0.112637
-0.120414
-0.126187
-0.127442
-0.133971
-0.135387
-0.133941
-0.126391
-0.127379
-0.120395
-0.113495
-0.120823
-0.113024
-0.127516
-0.134835
-0.134528
-0.127911
-0.174532
-0.148119
-0.145861
-0.177407
-0.171344
-0.170743
-0.166759
-0.168898
-0.16804
-0.12147
-0.140957
-0.159985
-0.174267
-0.16991
-0.174842
-0.16931
-0.143658
-0.146382
-0.166631
-0.144726
-0.144928
-0.143352
-0.136252
-0.132408
-0.127969
-0.139276
-0.135781
-0.131331
-0.143388
-0.163508
-0.154031
-0.142294
-0.151465
-0.153118
-0.179833
-0.150382
-0.150514
-0.179615
-0.172618
-0.171384
-0.17014
-0.171212
-0.16747
-0.160233
-0.147004
-0.150256
-0.148305
-0.166307
-0.160774
-0.180864
-0.148313
-0.149002
-0.179016
-0.174015
-0.170849
-0.175307
-0.170918
-0.233941
-0.224574
-0.24605
-0.249561
-0.231276
-0.226117
-0.248001
-0.224592
-0.201687
-0.217174
-0.200124
-0.229482
-0.244172
-0.235622
-0.23519
-0.247327
-0.239665
-0.240557
-0.231774
-0.234796
-0.22751
-0.230443
-0.248443
-0.230237
-0.227913
-0.239128
-0.252192
-0.252976
-0.242457
-0.240704
-0.253189
-0.240941
-0.265087
-0.276573
-0.266425
-0.236921
-0.251358
-0.238478
-0.252349
-0.238958
-0.236764
-0.252719
-0.269289
-0.277721
-0.267765
-0.229393
-0.223648
-0.246274
-0.249646
-0.230223
-0.223208
-0.249514
-0.230315
-0.217787
-0.217621
-0.230385
-0.225547
-0.22643
-0.228614
-0.245475
-0.223952
-0.247874
-0.227921
-0.222739
-0.24872
-0.226009
-0.226644
-0.243929
-0.252445
-0.252763
-0.244256
-0.251539
-0.245843
-0.242848
-0.257494
-0.282236
-0.27267
-0.257799
-0.245844
-0.251842
-0.255671
-0.256052
-0.246656
-0.248126
-0.260908
-0.271255
-0.28186
-0.273399
-0.171697
-0.177439
-0.17208
-0.192849
-0.164317
-0.190436
-0.16924
-0.168
-0.163514
-0.162968
-0.157317
-0.160575
-0.166616
-0.163466
-0.164984
-0.165274
-0.164301
-0.163055
-0.166038
-0.16447
-0.163571
-0.1689
-0.154516
-0.15459
-0.162091
-0.157606
-0.169807
-0.162689
-0.146595
-0.152357
-0.152654
-0.143896
-0.157402
-0.138737
-0.14231
-0.156424
-0.145126
-0.155807
-0.158271
-0.156445
-0.161834
-0.157914
-0.156966
-0.159138
-0.160395
-0.154248
-0.136686
-0.140857
-0.161559
-0.154532
-0.162951
-0.156743
-0.162107
-0.163004
-0.155144
-0.121634
-0.112828
-0.114518
-0.122178
-0.122797
-0.113659
-0.120593
-0.121274
-0.113215
-0.113326
-0.121048
-0.127046
-0.12769
-0.135344
-0.136338
-0.127601
-0.13468
-0.127937
-0.129105
-0.135903
-0.128688
-0.136673
-0.129127
-0.139001
-0.12982
-0.136078
-0.130683
-0.136709
-0.128126
-0.150288
-0.148749
-0.171271
-0.151623
-0.147871
-0.156962
-0.137931
-0.141601
-0.156848
-0.142015
-0.154735
-0.15839
-0.138203
-0.136562
-0.137482
-0.161272
-0.155247
-0.1525
-0.163683
-0.156055
-0.155448
-0.164198
-0.192501
-0.190949
-0.192525
-0.182491
-0.193525
-0.192196
-0.180393
-0.192787
-0.160611
-0.174116
-0.183867
-0.166914
-0.16068
-0.174114
-0.163495
-0.161678
-0.190393
-0.161486
-0.161084
-0.162929
-0.159664
-0.147838
-0.147384
-0.166201
-0.145942
-0.15853
-0.191871
-0.171725
-0.148302
-0.175248
-0.147228
-0.163659
-0.150423
-0.159869
-0.14601
-0.167747
-0.147214
-0.157096
-0.249797
-0.23597
-0.231145
-0.239678
-0.248367
-0.231806
-0.235407
-0.238054
-0.207111
-0.21168
-0.209358
-0.236172
-0.247786
-0.234012
-0.24711
-0.234855
-0.247769
-0.235431
-0.245868
-0.235227
-0.249595
-0.239416
-0.23133
-0.233884
-0.248806
-0.231574
-0.234812
-0.26455
-0.258877
-0.259684
-0.264584
-0.264814
-0.260887
-0.264477
-0.25794
-0.267275
-0.295357
-0.263136
-0.263267
-0.250047
-0.255195
-0.262509
-0.250634
-0.266954
-0.252529
-0.264305
-0.266039
-0.255931
-0.257865
-0.261056
-0.295115
-0.262358
-0.256894
-0.246832
-0.243295
-0.236007
-0.23081
-0.246917
-0.239352
-0.232552
-0.218556
-0.22359
-0.219803
-0.217796
-0.217181
-0.224346
-0.219651
-0.238827
-0.253427
-0.240251
-0.251145
-0.241049
-0.234117
-0.239737
-0.237046
-0.263645
-0.259233
-0.257778
-0.264379
-0.258341
-0.264293
-0.263632
-0.256349
-0.259419
-0.291442
-0.257124
-0.259305
-0.26313
-0.257077
-0.256228
-0.261999
-0.262605
-0.257435
-0.263009
-0.256225
-0.260254
-0.292253
-0.25656
-0.259524
-0.191096
-0.184454
-0.18964
-0.18638
-0.195872
-0.206153
-0.198302
-0.204336
-0.191278
-0.187609
-0.19274
-0.186756
-0.194885
-0.206583
-0.196772
-0.203344
-0.178648
-0.181119
-0.184833
-0.176104
-0.17729
-0.197807
-0.173517
-0.175436
-0.172314
-0.204495
-0.181235
-0.178452
-0.19267
-0.184215
-0.196249
-0.205749
-0.17296
-0.171117
-0.169911
-0.173554
-0.178828
-0.181704
-0.18267
-0.177525
-0.177089
-0.172967
-0.178389
-0.172498
-0.181469
-0.184015
-0.182603
-0.183434
-0.174995
-0.171847
-0.172215
-0.174221
-0.24305
-0.225277
-0.224136
-0.231039
-0.239675
-0.227889
-0.234386
-0.251097
-0.242679
-0.223598
-0.22106
-0.219912
-0.252105
-0.239604
-0.249454
-0.212755
-0.234872
-0.219115
-0.247764
-0.216386
-0.236863
-0.239986
-0.250453
-0.254613
-0.218325
-0.225539
-0.238521
-0.222735
-0.248493
-0.226934
-0.218277
-0.219328
-0.225439
-0.219388
-0.238389
-0.247548
-0.217532
-0.227881
-0.223437
-0.224529
-0.225624
-0.223308
-0.220925
-0.222832
-0.242028
-0.223596
-0.246654
-0.207049
-0.236462
-0.234625
-0.254668
-0.25326
-0.235785
-0.221515
-0.224077
-0.241289
-0.223891
-0.201936
-0.207584
-0.2059
-0.210418
-0.202264
-0.202192
-0.208759
-0.211477
-0.237509
-0.248834
-0.236437
-0.256302
-0.257588
-0.216928
-0.242812
-0.25703
-0.259588
-0.200453
-0.197078
-0.210229
-0.218063
-0.19876
-0.211166
-0.21032
-0.32899
-0.334232
-0.34349
-0.345257
-0.342086
-0.331347
-0.332975
-0.356558
-0.395626
-0.366737
-0.36599
-0.354888
-0.363355
-0.364493
-0.358217
-0.327289
-0.339189
-0.336395
-0.327004
-0.338418
-0.330381
-0.328575
-0.3119
-0.312019
-0.281707
-0.284189
-0.319182
-0.310564
-0.282176
-0.307781
-0.283243
-0.281787
-0.308775
-0.281605
-0.331658
-0.315657
-0.310307
-0.316752
-0.338622
-0.341912
-0.308884
-0.317592
-0.339524
-0.311988
-0.342239
-0.31449
-0.33563
-0.318612
-0.339986
-0.310713
-0.311398
-0.312949
-0.303028
-0.315254
-0.316303
-0.305784
-0.283314
-0.301359
-0.31358
-0.311558
-0.313961
-0.34845
-0.342044
-0.350159
-0.351713
-0.346178
-0.343487
-0.352157
-0.374497
-0.367291
-0.365486
-0.382103
-0.379552
-0.372602
-0.371329
-0.360852
-0.360722
-0.37013
-0.376626
-0.375254
-0.367083
-0.367352
-0.371224
-0.349951
-0.352864
-0.342264
-0.350496
-0.34881
-0.372547
-0.229774
-0.231643
-0.23481
-0.232412
-0.233894
-0.231419
-0.229119
-0.224204
-0.224063
-0.218533
-0.221065
-0.221299
-0.223722
-0.223423
-0.227072
-0.228998
-0.231614
-0.226126
-0.231274
-0.225075
-0.226935
-0.275687
-0.303528
-0.291468
-0.259815
-0.267132
-0.274041
-0.281582
-0.293702
-0.270176
-0.266043
-0.269755
-0.293406
-0.2951
-0.268522
-0.247272
-0.252655
-0.241183
-0.263555
-0.273235
-0.244723
-0.256477
-0.266763
-0.292666
-0.293933
-0.292476
-0.252931
-0.243544
-0.26853
-0.253593
-0.279915
-0.242772
-0.272053
-0.264524
-0.29651
-0.287927
-0.268425
-0.217338
-0.216297
-0.216453
-0.220281
-0.219395
-0.214924
-0.220567
-0.228691
-0.250965
-0.265765
-0.25568
-0.278563
-0.273304
-0.231874
-0.259995
-0.282163
-0.275065
-0.220317
-0.226092
-0.226152
-0.239731
-0.222481
-0.236855
-0.226638
-0.428424
-0.443151
-0.428631
-0.432746
-0.443355
-0.430399
-0.377667
-0.378884
-0.411705
-0.379862
-0.376845
-0.390468
-0.385632
-0.391563
-0.387959
-0.389735
-0.391877
-0.386574
-0.379244
-0.41298
-0.382992
-0.381271
-0.380113
-0.387231
-0.39219
-0.427265
-0.388645
-0.390648
-0.395579
-0.390353
-0.393892
-0.389636
-0.395487
-0.394214
-0.390833
-0.3848
-0.425856
-0.387193
-0.388688
-0.38324
-0.236555
-0.248636
-0.254492
-0.254912
-0.241534
-0.229225
-0.254064
-0.24592
-0.244697
-0.254459
-0.249383
-0.270636
-0.262448
-0.257677
-0.207751
-0.211229
-0.219194
-0.25864
-0.226281
-0.21301
-0.242185
-0.225681
-0.228171
-0.266926
-0.210939
-0.256303
-0.245997
-0.224188
-0.202707
-0.208143
-0.210655
-0.220302
-0.202695
-0.211399
-0.209067
-0.20995
-0.213075
-0.214045
-0.21742
-0.212341
-0.209676
-0.212298
-0.202784
-0.253332
-0.246879
-0.24002
-0.233172
-0.224041
-0.212451
-0.297762
-0.294891
-0.294244
-0.294471
-0.287032
-0.289062
-0.311
-0.32326
-0.335928
-0.33346
-0.315487
-0.315862
-0.33453
-0.310952
-0.333043
-0.314586
-0.334244
-0.310663
-0.314795
-0.334177
-0.367988
-0.337973
-0.332885
-0.335992
-0.370062
-0.38006
-0.365806
-0.360645
-0.362249
-0.359153
-0.360837
-0.381581
-0.377036
-0.359184
-0.36044
-0.375459
-0.378823
-0.363192
-0.361904
-0.380487
-0.366161
-0.330084
-0.331416
-0.333647
-0.364204
-0.320966
-0.313753
-0.301482
-0.315273
-0.314959
-0.313363
-0.298554
-0.313491
-0.312174
-0.31256
-0.373075
-0.338679
-0.33555
-0.340029
-0.371359
-0.383957
-0.366793
-0.383705
-0.366398
-0.384014
-0.369953
-0.361551
-0.363899
-0.362684
-0.365085
-0.382807
-0.374292
-0.335864
-0.34051
-0.374712
-0.340521
-0.383238
-0.364555
-0.365586
-0.38197
-0.236247
-0.241914
-0.240963
-0.237942
-0.220455
-0.227538
-0.218383
-0.232442
-0.217215
-0.220646
-0.230163
-0.229807
-0.225885
-0.227714
-0.228161
-0.230316
-0.22708
-0.225542
-0.232295
-0.236609
-0.248691
-0.243972
-0.236401
-0.257266
-0.246886
-0.256728
-0.248516
-0.270835
-0.29715
-0.295573
-0.274085
-0.240131
-0.252948
-0.234516
-0.245323
-0.240697
-0.232978
-0.251719
-0.273896
-0.304667
-0.273908
-0.302375
-0.253809
-0.245992
-0.256635
-0.244034
-0.234583
-0.238733
-0.233352
-0.240426
-0.250032
-0.264236
-0.268755
-0.225289
-0.243465
-0.223391
-0.232905
-0.252672
-0.223669
-0.235425
-0.230655
-0.251798
-0.233762
-0.240466
-0.261269
-0.231246
-0.240166
-0.229199
-0.224935
-0.247437
-0.229933
-0.232507
-0.238344
-0.256227
-0.238628
-0.22489
-0.227248
-0.237216
-0.240635
-0.224367
-0.226563
-0.238603
-0.240855
-0.238644
-0.243626
-0.240927
-0.216093
-0.21443
-0.208687
-0.223091
-0.217968
-0.207256
-0.220697
-0.22514
-0.214642
-0.214789
-0.22334
-0.228745
-0.217459
-0.231338
-0.215855
-0.237317
-0.245028
-0.24336
-0.234919
-0.224712
-0.231116
-0.230344
-0.225268
-0.216767
-0.224565
-0.218218
-0.228063
-0.220318
-0.214878
-0.224335
-0.22512
-0.222786
-0.22489
-0.223019
-0.22595
-0.22588
-0.227964
-0.225167
-0.223678
-0.226194
-0.22464
-0.223284
-0.226897
-0.23016
-0.230807
-0.225872
-0.242506
-0.259245
-0.278593
-0.277498
-0.281299
-0.278393
-0.231959
-0.236006
-0.23339
-0.248081
-0.228661
-0.229846
-0.22588
-0.245837
-0.348744
-0.336326
-0.335537
-0.349605
-0.34843
-0.367312
-0.370822
-0.342299
-0.370305
-0.341236
-0.349516
-0.343383
-0.342247
-0.343793
-0.344711
-0.347954
-0.333654
-0.334344
-0.347076
-0.307429
-0.301846
-0.305717
-0.298728
-0.307073
-0.302821
-0.305939
-0.297334
-0.277307
-0.285014
-0.281084
-0.274852
-0.298969
-0.29148
-0.297223
-0.299052
-0.271294
-0.280969
-0.296743
-0.272562
-0.299522
-0.307543
-0.300379
-0.307082
-0.300899
-0.304219
-0.305394
-0.307542
-0.270396
-0.271626
-0.35065
-0.336964
-0.350084
-0.337605
-0.346663
-0.347383
-0.350644
-0.368849
-0.371269
-0.342778
-0.371646
-0.343398
-0.349889
-0.345842
-0.345152
-0.350933
-0.336258
-0.338164
-0.348894
-0.280956
-0.284635
-0.276049
-0.419097
-0.419281
-0.376116
-0.378108
-0.409736
-0.37806
-0.376166
-0.385747
-0.379511
-0.376997
-0.378685
-0.384816
-0.383629
-0.379719
-0.377951
-0.40955
-0.378927
-0.379464
-0.379197
-0.40286
-0.418506
-0.402949
-0.362082
-0.372308
-0.370688
-0.369942
-0.367687
-0.36669
-0.368002
-0.418181
-0.40006
-0.402956
-0.28109
-0.304696
-0.262807
-0.234193
-0.249894
-0.2379
-0.259045
-0.236117
-0.237783
-0.2548
-0.24815
-0.235614
-0.224991
-0.215325
-0.227078
-0.230128
-0.23438
-0.22385
-0.216317
-0.22331
-0.222826
-0.217571
-0.225422
-0.21449
-0.222644
-0.229117
-0.223193
-0.219366
-0.222431
-0.2208
-0.222458
-0.218495
-0.222653
-0.228957
-0.274617
-0.247513
-0.273032
-0.248219
-0.22557
-0.246241
-0.246435
-0.225803
-0.236904
-0.295449
-0.263831
-0.234622
-0.244521
-0.252703
-0.262525
-0.237696
-0.304894
-0.248542
-0.24771
-0.277775
-0.241326
-0.229971
-0.235156
-0.235597
-0.235037
-0.232989
-0.240611
-0.266405
-0.278683
-0.260492
-0.287043
-0.266176
-0.293491
-0.273844
-0.224083
-0.219409
-0.22147
-0.225913
-0.221969
-0.223436
-0.227134
-0.225826
-0.231002
-0.228512
-0.229105
-0.22666
-0.227861
-0.22818
-0.223399
-0.22232
-0.225825
-0.223671
-0.223714
-0.222694
-0.225097
-0.226329
-0.227009
-0.228994
-0.230188
-0.225893
-0.229038
-0.228584
-0.27516
-0.272069
-0.296023
-0.310904
-0.269362
-0.280651
-0.294607
-0.307798
-0.297279
-0.296986
-0.292747
-0.308023
-0.295088
-0.315606
-0.326726
-0.317411
-0.32386
-0.317575
-0.325025
-0.315376
-0.292312
-0.281139
-0.303159
-0.286382
-0.28274
-0.292345
-0.287117
-0.293012
-0.290711
-0.284849
-0.305068
-0.294764
-0.283586
-0.288715
-0.314545
-0.323165
-0.314138
-0.311241
-0.312418
-0.324139
-0.313636
-0.359768
-0.325361
-0.323373
-0.326606
-0.358667
-0.372625
-0.359933
-0.352567
-0.353825
-0.352698
-0.353951
-0.371964
-0.372589
-0.357763
-0.373887
-0.356512
-0.361186
-0.324812
-0.329617
-0.327964
-0.362717
-0.370943
-0.354526
-0.354734
-0.370376
-0.355471
-0.323759
-0.319461
-0.322593
-0.356501
-0.366425
-0.349943
-0.355332
-0.368494
-0.359623
-0.351646
-0.350119
-0.351021
-0.351018
-0.369071
-0.354737
-0.320322
-0.3183
-0.343453
-0.323247
-0.368262
-0.352733
-0.354779
-0.368008
-0.302236
-0.286672
-0.286677
-0.290334
-0.304492
-0.288318
-0.235806
-0.233158
-0.256953
-0.246269
-0.230672
-0.235615
-0.250351
-0.22863
-0.214782
-0.216214
-0.222189
-0.259292
-0.239988
-0.251001
-0.243624
-0.223175
-0.261009
-0.232841
-0.246659
-0.232135
-0.255017
-0.231211
-0.234864
-0.241203
-0.242659
-0.238913
-0.232906
-0.233676
-0.225302
-0.222826
-0.221118
-0.224201
-0.222485
-0.225454
-0.225473
-0.226611
-0.228917
-0.223489
-0.223133
-0.222958
-0.228126
-0.22741
-0.229483
-0.241565
-0.23633
-0.231049
-0.23713
-0.232018
-0.229158
-0.236949
-0.259822
-0.237543
-0.248363
-0.234045
-0.268357
-0.23656
-0.235423
-0.233178
-0.252623
-0.230119
-0.264707
-0.229611
-0.231186
-0.260952
-0.279302
-0.276425
-0.247938
-0.279477
-0.252281
-0.283582
-0.23209
-0.231509
-0.227981
-0.225282
-0.226531
-0.231849
-0.230644
-0.255813
-0.306726
-0.294324
-0.271547
-0.304496
-0.296056
-0.228185
-0.223291
-0.227571
-0.223388
-0.249757
-0.30552
-0.262744
-0.303937
-0.24005
-0.231075
-0.231608
-0.224736
-0.253668
-0.241963
-0.242231
-0.24217
-0.246911
-0.243065
-0.239947
-0.245421
-0.246485
-0.257295
-0.245812
-0.257722
-0.247802
-0.248305
-0.254808
-0.240189
-0.238749
-0.23626
-0.24104
-0.241003
-0.237029
-0.242319
-0.247417
-0.253483
-0.257511
-0.263731
-0.248306
-0.251912
-0.255613
-0.240971
-0.260654
-0.239914
-0.243146
-0.236687
-0.273297
-0.238713
-0.236556
-0.236025
-0.254589
-0.232618
-0.266251
-0.23261
-0.232196
-0.263387
-0.284521
-0.283263
-0.2446
-0.284139
-0.25494
-0.284766
-0.235488
-0.236305
-0.2329
-0.232501
-0.232029
-0.235406
-0.234328
-0.434515
-0.428564
-0.428456
-0.435013
-0.433668
-0.429109
-0.435529
-0.420801
-0.423457
-0.387233
-0.397865
-0.42153
-0.386128
-0.422848
-0.419819
-0.384026
-0.420973
-0.39696
-0.41885
-0.385317
-0.421821
-0.421774
-0.41031
-0.420973
-0.421309
-0.424359
-0.417184
-0.419267
-0.40869
-0.405144
-0.384284
-0.377114
-0.406631
-0.384353
-0.408798
-0.409786
-0.377216
-0.41501
-0.386665
-0.41115
-0.37777
-0.413644
-0.364697
-0.395435
-0.379401
-0.389829
-0.362125
-0.381032
-0.394444
-0.168687
-0.174641
-0.172874
-0.170968
-0.205984
-0.179347
-0.205416
-0.171358
-0.173526
-0.171835
-0.204245
-0.175296
-0.196847
-0.168465
-0.20352
-0.171363
-0.191047
-0.16935
-0.171319
-0.173877
-0.178446
-0.17817
-0.177754
-0.171174
-0.176326
-0.174459
-0.188043
-0.184716
-0.219152
-0.18069
-0.168995
-0.169569
-0.169794
-0.174099
-0.179862
-0.173471
-0.170748
-0.172821
-0.171516
-0.171782
-0.178371
-0.171917
-0.171178
-0.202182
-0.175019
-0.202993
-0.174612
-0.182364
-0.173733
-0.179649
-0.181516
-0.186882
-0.177499
-0.177663
-0.169357
-0.196296
-0.178077
-0.176055
-0.189474
-0.172315
-0.175401
-0.195
-0.21543
-0.200827
-0.183018
-0.214135
-0.203042
-0.178676
-0.16437
-0.14559
-0.16376
-0.146893
-0.167519
-0.156451
-0.167581
-0.156187
-0.171869
-0.15305
-0.14862
-0.162406
-0.163838
-0.152314
-0.154864
-0.165059
-0.14653
-0.148313
-0.162819
-0.173428
-0.154083
-0.155683
-0.16267
-0.173353
-0.154028
-0.155023
-0.116835
-0.102953
-0.0914141
-0.122011
-0.0912331
-0.117558
-0.122068
-0.130966
-0.12689
-0.136959
-0.13433
-0.130236
-0.136231
-0.131657
-0.131846
-0.127827
-0.132979
-0.134984
-0.131296
-0.13631
-0.133156
-0.120735
-0.117517
-0.113297
-0.110156
-0.120081
-0.114828
-0.117499
-0.114891
-0.0992897
-0.0912402
-0.117938
-0.0931919
-0.115797
-0.116614
-0.122927
-0.12104
-0.113414
-0.124167
-0.117233
-0.126053
-0.121253
-0.170721
-0.157598
-0.168127
-0.15956
-0.161022
-0.132313
-0.127393
-0.164758
-0.1305
-0.17932
-0.171948
-0.161069
-0.166887
-0.184929
-0.157474
-0.163946
-0.160514
-0.129451
-0.129472
-0.157534
-0.131454
-0.176124
-0.154774
-0.158403
-0.164478
-0.174937
-0.155266
-0.159692
-0.13515
-0.115024
-0.115695
-0.133982
-0.115605
-0.136034
-0.13249
-0.156735
-0.195915
-0.138324
-0.173244
-0.148763
-0.151648
-0.189757
-0.131721
-0.11513
-0.113744
-0.126469
-0.115258
-0.129161
-0.126816
-0.162741
-0.157091
-0.194007
-0.174552
-0.164778
-0.154787
-0.191964
-0.0742288
-0.0957123
-0.0801555
-0.0957641
-0.0789203
-0.075313
-0.0944019
-0.066073
-0.0670154
-0.066481
-0.0693929
-0.0697162
-0.0661208
-0.0653964
-0.0674066
-0.0713217
-0.0663721
-0.0669126
-0.0704411
-0.0662848
-0.0687186
-0.0727503
-0.0937761
-0.0758781
-0.0897942
-0.0775149
-0.0713442
-0.0923253
-0.0779684
-0.0969282
-0.0814933
-0.0991506
-0.0980394
-0.0765749
-0.082991
-0.0746022
-0.0743457
-0.0720344
-0.0787753
-0.0719149
-0.076196
-0.0770143
-0.0724197
-0.0727117
-0.0682275
-0.0699593
-0.0698882
-0.0704948
-0.0742811
-0.0795813
-0.0998666
-0.0985443
-0.0862178
-0.098811
-0.0844733
-0.0810216
-0.134819
-0.114145
-0.112986
-0.13387
-0.135798
-0.11285
-0.133003
-0.161899
-0.191708
-0.150687
-0.174515
-0.159068
-0.153985
-0.193282
-0.132661
-0.110739
-0.107829
-0.12782
-0.129789
-0.110596
-0.130898
-0.16394
-0.1572
-0.194335
-0.175907
-0.164822
-0.156169
-0.194232
-0.17335
-0.173852
-0.208606
-0.173498
-0.175903
-0.181066
-0.180421
-0.180352
-0.182719
-0.182031
-0.182634
-0.180971
-0.181101
-0.173246
-0.180988
-0.180265
-0.181677
-0.179185
-0.182196
-0.171883
-0.209295
-0.175713
-0.175341
-0.171717
-0.212341
-0.19905
-0.225825
-0.209785
-0.211646
-0.199703
-0.210639
-0.234378
-0.248593
-0.236519
-0.252617
-0.238767
-0.233911
-0.249492
-0.212947
-0.226814
-0.202778
-0.214728
-0.200352
-0.211412
-0.215342
-0.234557
-0.239498
-0.247732
-0.252462
-0.233821
-0.23979
-0.249241
-0.221677
-0.210311
-0.211048
-0.22259
-0.214984
-0.213455
-0.193419
-0.216056
-0.196264
-0.155278
-0.165199
-0.168817
-0.160323
-0.163821
-0.154762
-0.16084
-0.158347
-0.166671
-0.170213
-0.170789
-0.167065
-0.163692
-0.16318
-0.216182
-0.195227
-0.195455
-0.221586
-0.210015
-0.210958
-0.222925
-0.21592
-0.211625
-0.144922
-0.111269
-0.138206
-0.183602
-0.135446
-0.149546
-0.157992
-0.173902
-0.189468
-0.168759
-0.118134
-0.113649
-0.114707
-0.116097
-0.120065
-0.116595
-0.112649
-0.0835689
-0.101042
-0.0851008
-0.0823966
-0.0856265
-0.0841224
-0.0967181
-0.0819334
-0.0815285
-0.0825541
-0.103226
-0.0890992
-0.0874182
-0.076287
-0.0818912
-0.0746423
-0.0762222
-0.0819463
-0.0969499
-0.081541
-0.0768372
-0.0807266
-0.0810424
-0.0793783
-0.079028
-0.0845088
-0.0819047
-0.0816554
-0.0807103
-0.0803562
-0.083522
-0.080068
-0.0839997
-0.0957042
-0.0859326
-0.0806296
-0.0863175
-0.0862548
-0.124789
-0.150258
-0.153872
-0.188361
-0.193579
-0.187412
-0.128211
-0.158779
-0.157641
-0.179996
-0.19296
-0.183942
-0.173971
-0.181553
-0.208605
-0.179136
-0.178249
-0.1813
-0.174292
-0.17883
-0.182466
-0.176978
-0.1794
-0.183601
-0.183249
-0.188686
-0.179624
-0.180109
-0.178486
-0.186101
-0.185401
-0.17207
-0.211739
-0.176919
-0.170762
-0.17763
-0.215112
-0.225675
-0.228102
-0.227347
-0.226343
-0.216423
-0.232063
-0.230326
-0.223544
-0.224259
-0.226632
-0.246745
-0.216178
-0.246237
-0.2281
-0.21865
-0.247241
-0.222021
-0.233436
-0.205225
-0.221618
-0.21744
-0.20808
-0.229243
-0.220114
-0.227547
-0.248368
-0.24926
-0.219091
-0.226037
-0.247281
-0.195159
-0.185342
-0.183605
-0.187785
-0.193209
-0.183427
-0.197187
-0.193748
-0.164917
-0.193006
-0.182377
-0.18807
-0.18279
-0.193919
-0.194621
-0.185132
-0.182573
-0.197099
-0.193564
-0.182238
-0.196987
-0.195334
-0.193831
-0.183684
-0.182381
-0.183455
-0.195584
-0.194897
-0.225061
-0.226989
-0.227851
-0.222344
-0.22106
-0.230875
-0.229903
-0.229794
-0.222807
-0.222735
-0.175657
-0.172462
-0.174469
-0.172363
-0.175178
-0.175623
-0.173056
-0.182075
-0.173486
-0.19804
-0.178015
-0.191503
-0.179407
-0.182533
-0.177294
-0.173629
-0.177552
-0.173456
-0.174893
-0.177875
-0.174264
-0.178517
-0.175268
-0.18623
-0.17781
-0.182891
-0.178611
-0.176583
-0.168209
-0.169387
-0.169805
-0.169282
-0.168934
-0.169112
-0.168726
-0.165415
-0.159772
-0.169386
-0.165205
-0.167826
-0.167155
-0.157335
-0.167254
-0.168374
-0.168891
-0.167222
-0.168317
-0.167299
-0.167875
-0.165879
-0.168639
-0.165567
-0.159493
-0.168103
-0.166461
-0.158353
-0.174184
-0.170144
-0.173455
-0.171336
-0.174437
-0.172926
-0.170838
-0.178763
-0.193222
-0.173362
-0.179086
-0.178418
-0.191901
-0.174028
-0.173424
-0.169216
-0.171121
-0.168964
-0.172629
-0.172004
-0.169784
-0.178927
-0.174612
-0.188245
-0.179439
-0.19033
-0.178537
-0.174615
-0.17114
-0.172598
-0.171073
-0.170458
-0.172062
-0.17153
-0.170028
-0.171901
-0.169937
-0.176316
-0.171992
-0.174246
-0.173808
-0.166871
-0.172794
-0.174027
-0.174551
-0.174389
-0.174057
-0.173557
-0.172979
-0.169647
-0.170111
-0.169684
-0.161747
-0.17174
-0.168071
-0.163977
-0.267289
-0.24326
-0.243634
-0.237577
-0.225828
-0.235922
-0.263165
-0.247093
-0.246732
-0.23202
-0.223889
-0.232701
-0.224223
-0.222563
-0.24934
-0.236618
-0.22464
-0.222224
-0.237735
-0.204361
-0.196681
-0.187186
-0.19458
-0.194052
-0.19401
-0.204761
-0.203905
-0.190711
-0.191753
-0.184418
-0.20274
-0.192934
-0.191292
-0.224386
-0.250975
-0.226865
-0.237957
-0.2255
-0.238249
-0.225138
-0.238629
-0.281325
-0.238168
-0.17511
-0.188411
-0.186685
-0.18628
-0.176336
-0.187165
-0.277983
-0.233264
-0.235254
-0.238781
-0.286307
-0.238254
-0.183784
-0.188557
-0.187039
-0.184128
-0.18155
-0.185265
-0.283928
-0.238658
-0.237963
-0.234987
-0.244406
-0.23456
-0.241116
-0.233904
-0.240905
-0.236304
-0.241682
-0.270034
-0.243137
-0.287
-0.249098
-0.259331
-0.240396
-0.231467
-0.232944
-0.23491
-0.270501
-0.248251
-0.244659
-0.345203
-0.32991
-0.331732
-0.344068
-0.34106
-0.341771
-0.343807
-0.363547
-0.366459
-0.337285
-0.367813
-0.336411
-0.342374
-0.340773
-0.340557
-0.345623
-0.332867
-0.331938
-0.346544
-0.268325
-0.263423
-0.28222
-0.280423
-0.321519
-0.28561
-0.275038
-0.325537
-0.280536
-0.271003
-0.272339
-0.276325
-0.272907
-0.27786
-0.278809
-0.282737
-0.282057
-0.276344
-0.274321
-0.285583
-0.274899
-0.279913
-0.279799
-0.272737
-0.322513
-0.273594
-0.322779
-0.278692
-0.348603
-0.344732
-0.347484
-0.350866
-0.333218
-0.36105
-0.363101
-0.343823
-0.358473
-0.345411
-0.335576
-0.332439
-0.332269
-0.326076
-0.348285
-0.334661
-0.350627
-0.329368
-0.341276
-0.339632
-0.339614
-0.35132
-0.341285
-0.328557
-0.336944
-0.346902
-0.354938
-0.335004
-0.342069
-0.343395
-0.331018
-0.229569
-0.223629
-0.226715
-0.230449
-0.223809
-0.225763
-0.230555
-0.229585
-0.228828
-0.223243
-0.222528
-0.22395
-0.225734
-0.233137
-0.229733
-0.240262
-0.233571
-0.228528
-0.222854
-0.240846
-0.226573
-0.232173
-0.235021
-0.231444
-0.233602
-0.221004
-0.219898
-0.229516
-0.23265
-0.221418
-0.230702
-0.244174
-0.226308
-0.270046
-0.272048
-0.243622
-0.259409
-0.24483
-0.236201
-0.225424
-0.237307
-0.260937
-0.234466
-0.246915
-0.227304
-0.234243
-0.222855
-0.260056
-0.235097
-0.224849
-0.231299
-0.245753
-0.227053
-0.222959
-0.220966
-0.263553
-0.296574
-0.283807
-0.298731
-0.239095
-0.27555
-0.227008
-0.255701
-0.22174
-0.224205
-0.244895
-0.225717
-0.232576
-0.228171
-0.230467
-0.269685
-0.26996
-0.251402
-0.231687
-0.253725
-0.228685
-0.229075
-0.252508
-0.228393
-0.227028
-0.219431
-0.221466
-0.232403
-0.219522
-0.229769
-0.229701
-0.390591
-0.389584
-0.38084
-0.3862
-0.369848
-0.338418
-0.35655
-0.339382
-0.354656
-0.340416
-0.336643
-0.354829
-0.388118
-0.373766
-0.373301
-0.377676
-0.392374
-0.37658
-0.338339
-0.359195
-0.340432
-0.356031
-0.341158
-0.337832
-0.356862
-0.391499
-0.374754
-0.375612
-0.238224
-0.274323
-0.260645
-0.237242
-0.234581
-0.238503
-0.247672
-0.245485
-0.248277
-0.255805
-0.232086
-0.233694
-0.238249
-0.237868
-0.259529
-0.23692
-0.22319
-0.272252
-0.24006
-0.207129
-0.203895
-0.217109
-0.190806
-0.202561
-0.204787
-0.191923
-0.204567
-0.191738
-0.191738
-0.181787
-0.200979
-0.191923
-0.190916
-0.235766
-0.245451
-0.233739
-0.237886
-0.227943
-0.253969
-0.235604
-0.228857
-0.236359
-0.233672
-0.23299
-0.235083
-0.222582
-0.234198
-0.22533
-0.222344
-0.220457
-0.22513
-0.225074
-0.228511
-0.217375
-0.229007
-0.239279
-0.235217
-0.228967
-0.235553
-0.228539
-0.2268
-0.229405
-0.276339
-0.271793
-0.24409
-0.243792
-0.226793
-0.247278
-0.281725
-0.284384
-0.217957
-0.184096
-0.185921
-0.272131
-0.242963
-0.258669
-0.272823
-0.270012
-0.247535
-0.240271
-0.278209
-0.234029
-0.268848
-0.238668
-0.248125
-0.236527
-0.228466
-0.229487
-0.224297
-0.234098
-0.230686
-0.231017
-0.240489
-0.241945
-0.238461
-0.240144
-0.237363
-0.244572
-0.238361
-0.237254
-0.263727
-0.225768
-0.234089
-0.231199
-0.231548
-0.247689
-0.274511
-0.267959
-0.319394
-0.273341
-0.268732
-0.320148
-0.275538
-0.269046
-0.266912
-0.274418
-0.267568
-0.276974
-0.273089
-0.274281
-0.270814
-0.265601
-0.265518
-0.273215
-0.266401
-0.271811
-0.275797
-0.270939
-0.321639
-0.277082
-0.269877
-0.320771
-0.315662
-0.337886
-0.334625
-0.31865
-0.315462
-0.31905
-0.313332
-0.333312
-0.337571
-0.321127
-0.311234
-0.345337
-0.356482
-0.344521
-0.359291
-0.343295
-0.358076
-0.347376
-0.317018
-0.342084
-0.314398
-0.323759
-0.339438
-0.322026
-0.319544
-0.313613
-0.327538
-0.331644
-0.31143
-0.325492
-0.339493
-0.340212
-0.322226
-0.327104
-0.33114
-0.321095
-0.347476
-0.329709
-0.328554
-0.346305
-0.351296
-0.360383
-0.346624
-0.361147
-0.348264
-0.362381
-0.349632
-0.32481
-0.34361
-0.319864
-0.325971
-0.327991
-0.345247
-0.32236
-0.328559
-0.341287
-0.330242
-0.340654
-0.292448
-0.283264
-0.253256
-0.281502
-0.243183
-0.289281
-0.222087
-0.223122
-0.222394
-0.240002
-0.221423
-0.22707
-0.245054
-0.223662
-0.226278
-0.211899
-0.221857
-0.230343
-0.224701
-0.217674
-0.216925
-0.223524
-0.199143
-0.2395
-0.238872
-0.212401
-0.215206
-0.239966
-0.194541
-0.202444
-0.221115
-0.239954
-0.240361
-0.217785
-0.239883
-0.206689
-0.208527
-0.222708
-0.212706
-0.218058
-0.215274
-0.221003
-0.204551
-0.22119
-0.225832
-0.268223
-0.22792
-0.253492
-0.230953
-0.220369
-0.216432
-0.241072
-0.246665
-0.266928
-0.242262
-0.244403
-0.232942
-0.215477
-0.224392
-0.244462
-0.241
-0.24184
-0.228655
-0.211148
-0.245577
-0.284641
-0.281538
-0.276926
-0.281267
-0.259228
-0.251508
-0.297632
-0.241517
-0.226012
-0.294249
-0.266553
-0.224923
-0.253142
-0.258327
-0.287127
-0.235506
-0.2839
-0.266917
-0.230725
-0.280727
-0.246191
-0.247355
-0.285036
-0.229638
-0.226369
-0.230564
-0.224096
-0.237549
-0.226371
-0.229138
-0.261482
-0.285205
-0.265636
-0.262587
-0.290479
-0.264928
-0.254637
-0.247178
-0.234279
-0.243054
-0.23317
-0.244189
-0.246699
-0.235246
-0.261128
-0.265619
-0.297146
-0.25196
-0.293873
-0.252526
-0.261629
-0.24843
-0.249647
-0.238594
-0.235292
-0.249963
-0.246423
-0.236968
-0.230164
-0.224907
-0.217691
-0.238801
-0.233999
-0.227506
-0.237449
-0.180591
-0.191864
-0.204403
-0.24312
-0.232225
-0.19174
-0.188023
-0.246193
-0.225128
-0.254438
-0.231249
-0.233243
-0.230489
-0.225575
-0.261407
-0.248479
-0.269881
-0.232143
-0.223652
-0.191807
-0.170469
-0.184482
-0.195337
-0.174629
-0.197573
-0.189522
-0.194861
-0.210222
-0.178632
-0.186955
-0.177924
-0.204198
-0.200288
-0.229441
-0.249913
-0.272154
-0.221637
-0.271797
-0.223168
-0.227972
-0.292552
-0.260157
-0.284205
-0.283434
-0.277094
-0.296743
-0.305886
-0.262995
-0.304115
-0.248139
-0.298962
-0.310656
-0.251214
-0.259889
-0.259425
-0.265049
-0.266632
-0.250584
-0.239252
-0.236016
-0.247012
-0.281936
-0.236146
-0.293853
-0.290985
-0.321863
-0.314055
-0.287991
-0.295597
-0.299396
-0.316348
-0.31949
-0.335093
-0.334328
-0.33233
-0.333924
-0.331659
-0.333259
-0.335663
-0.323837
-0.304127
-0.290355
-0.319627
-0.301643
-0.318483
-0.324981
-0.285497
-0.288781
-0.272119
-0.291232
-0.269582
-0.295474
-0.238804
-0.251736
-0.24819
-0.233386
-0.250798
-0.231292
-0.240932
-0.235768
-0.229426
-0.248689
-0.246894
-0.234298
-0.249872
-0.22982
-0.277989
-0.30827
-0.306804
-0.280462
-0.295652
-0.300881
-0.332095
-0.335048
-0.332559
-0.333601
-0.332163
-0.33201
-0.334953
-0.300028
-0.311195
-0.297867
-0.324058
-0.312612
-0.315148
-0.301593
-0.322494
-0.305456
-0.319802
-0.29595
-0.319012
-0.324719
-0.309096
-0.304268
-0.316865
-0.316763
-0.303155
-0.379658
-0.382863
-0.38445
-0.387632
-0.385785
-0.332168
-0.367047
-0.324881
-0.367362
-0.325726
-0.387371
-0.385608
-0.38584
-0.392975
-0.389298
-0.392157
-0.330546
-0.366846
-0.324189
-0.367388
-0.323389
-0.387571
-0.385517
-0.386738
-0.219946
-0.250462
-0.238458
-0.234848
-0.222188
-0.267188
-0.262357
-0.214776
-0.222883
-0.225137
-0.21895
-0.220497
-0.222939
-0.214474
-0.235481
-0.261496
-0.25514
-0.213201
-0.228006
-0.226571
-0.220676
-0.22201
-0.226431
-0.221394
-0.207323
-0.220573
-0.215368
-0.194437
-0.217376
-0.215279
-0.204336
-0.204155
-0.210387
-0.220693
-0.224924
-0.223864
-0.207302
-0.206344
-0.188756
-0.196629
-0.198932
-0.187178
-0.220164
-0.263059
-0.217505
-0.265627
-0.188948
-0.203181
-0.200828
-0.19095
-0.196404
-0.220768
-0.224285
-0.198143
-0.225139
-0.199248
-0.196681
-0.223747
-0.238842
-0.259613
-0.249968
-0.239413
-0.221991
-0.252212
-0.226346
-0.219462
-0.24036
-0.223303
-0.256294
-0.216612
-0.231739
-0.251532
-0.26759
-0.282449
-0.227385
-0.212775
-0.215315
-0.22316
-0.234456
-0.274182
-0.259527
-0.232294
-0.237113
-0.301437
-0.22162
-0.222338
-0.21377
-0.243039
-0.215557
-0.264
-0.242581
-0.234713
-0.251761
-0.273026
-0.24414
-0.288392
-0.22194
-0.222702
-0.209548
-0.228615
-0.211676
-0.230138
-0.217744
-0.211357
-0.214063
-0.236643
-0.225801
-0.246188
-0.207735
-0.2297
-0.216704
-0.243894
-0.253153
-0.213633
-0.261639
-0.215037
-0.261282
-0.214434
-0.249204
-0.242222
-0.256926
-0.237654
-0.224866
-0.247298
-0.192886
-0.20216
-0.22561
-0.192392
-0.244332
-0.236258
-0.210137
-0.245535
-0.258659
-0.239402
-0.272006
-0.219106
-0.237849
-0.24989
-0.257447
-0.220798
-0.238124
-0.248681
-0.288234
-0.314685
-0.289859
-0.313675
-0.246107
-0.252299
-0.253402
-0.235287
-0.25441
-0.243023
-0.238558
-0.248829
-0.245636
-0.257691
-0.255369
-0.251437
-0.255911
-0.242305
-0.28595
-0.310166
-0.28319
-0.312059
-0.306627
-0.321255
-0.321938
-0.305338
-0.306659
-0.31746
-0.308194
-0.33142
-0.32971
-0.31567
-0.309104
-0.332282
-0.339664
-0.332828
-0.335236
-0.334287
-0.336642
-0.330692
-0.305282
-0.329512
-0.307728
-0.313644
-0.329454
-0.314747
-0.303953
-0.307627
-0.325204
-0.321612
-0.310006
-0.30298
-0.319786
-0.318852
-0.303889
-0.300953
-0.310467
-0.303909
-0.32516
-0.310736
-0.300521
-0.32595
-0.328092
-0.336329
-0.331664
-0.334117
-0.330499
-0.332975
-0.329288
-0.301792
-0.327957
-0.305299
-0.312562
-0.311613
-0.327305
-0.302684
-0.301872
-0.316779
-0.301477
-0.317571
-0.26111
-0.264245
-0.306329
-0.248902
-0.305294
-0.249566
-0.259912
-0.244819
-0.23246
-0.241661
-0.230965
-0.245467
-0.231992
-0.240999
-0.261739
-0.26526
-0.300671
-0.250991
-0.261556
-0.303633
-0.250566
-0.243629
-0.240489
-0.231545
-0.229159
-0.231031
-0.240464
-0.241677
-0.215848
-0.209735
-0.264652
-0.238479
-0.208056
-0.217138
-0.262707
-0.181656
-0.151479
-0.166084
-0.186137
-0.184608
-0.150093
-0.184025
-0.181675
-0.185992
-0.166909
-0.15398
-0.185322
-0.152202
-0.181752
-0.214901
-0.236196
-0.206915
-0.258271
-0.206463
-0.260861
-0.215636
-0.22154
-0.212331
-0.245197
-0.267233
-0.269231
-0.214633
-0.219414
-0.185516
-0.166205
-0.174887
-0.1931
-0.162636
-0.187221
-0.191247
-0.183914
-0.187757
-0.172308
-0.156684
-0.159359
-0.189251
-0.182866
-0.223965
-0.247286
-0.271915
-0.219445
-0.226017
-0.271069
-0.217187
-0.258022
-0.305651
-0.247914
-0.25961
-0.258178
-0.304293
-0.247963
-0.230073
-0.291329
-0.243739
-0.24783
-0.240042
-0.241885
-0.250595
-0.233253
-0.240147
-0.226585
-0.238382
-0.234194
-0.237424
-0.239998
-0.256418
-0.257643
-0.294446
-0.247775
-0.301973
-0.248366
-0.257219
-0.213789
-0.21888
-0.213914
-0.215644
-0.217644
-0.216969
-0.209041
-0.217885
-0.224997
-0.226064
-0.218622
-0.22625
-0.216758
-0.219185
-0.220462
-0.22294
-0.23044
-0.228252
-0.228363
-0.223137
-0.221203
-0.209808
-0.213702
-0.214291
-0.197589
-0.20751
-0.214929
-0.2027
-0.196684
-0.215426
-0.209271
-0.208813
-0.208184
-0.211856
-0.194421
-0.187057
-0.240506
-0.21022
-0.237429
-0.208394
-0.191383
-0.240842
-0.19779
-0.216445
-0.210597
-0.215764
-0.208673
-0.201568
-0.213041
-0.186958
-0.21112
-0.239382
-0.247039
-0.208763
-0.186386
-0.244756
-0.222366
-0.218937
-0.220634
-0.215603
-0.219756
-0.222784
-0.218214
-0.230199
-0.236118
-0.232062
-0.238568
-0.231543
-0.239061
-0.22904
-0.224597
-0.220243
-0.227362
-0.221977
-0.226824
-0.224916
-0.219689
-0.227007
-0.224369
-0.231936
-0.232646
-0.23333
-0.22491
-0.226057
-0.195101
-0.208937
-0.21624
-0.211722
-0.204287
-0.196314
-0.216766
-0.248627
-0.249988
-0.245726
-0.247608
-0.2603
-0.248688
-0.242332
-0.248554
-0.209072
-0.215926
-0.205139
-0.239058
-0.261165
-0.199033
-0.22319
-0.19732
-0.215813
-0.251063
-0.255771
-0.191211
-0.224692
-0.249335
-0.398756
-0.379773
-0.391717
-0.389333
-0.3985
-0.391894
-0.389305
-0.394723
-0.395056
-0.376741
-0.378645
-0.395313
-0.376002
-0.39441
-0.393845
-0.374424
-0.393082
-0.377646
-0.393431
-0.375021
-0.393489
-0.329836
-0.364287
-0.345194
-0.341209
-0.345589
-0.329346
-0.364517
-0.330969
-0.34682
-0.342009
-0.366232
-0.34648
-0.331773
-0.36549
-0.33493
-0.370363
-0.35049
-0.34545
-0.336165
-0.349637
-0.369075
-0.33405
-0.347858
-0.344354
-0.366938
-0.348616
-0.332751
-0.36822
-0.398635
-0.387012
-0.39168
-0.393494
-0.399027
-0.391502
-0.392966
-0.389881
-0.389442
-0.368016
-0.371703
-0.389361
-0.36875
-0.389328
-0.390282
-0.370084
-0.389904
-0.372149
-0.390934
-0.369299
-0.38946
-0.327559
-0.363542
-0.344542
-0.339898
-0.344061
-0.328571
-0.362597
-0.326919
-0.342736
-0.339243
-0.361169
-0.343423
-0.326056
-0.361947
-0.323692
-0.357819
-0.33982
-0.336833
-0.322539
-0.340672
-0.358865
-0.324442
-0.342163
-0.33745
-0.360379
-0.341326
-0.325336
-0.359621
-0.184984
-0.187158
-0.185227
-0.207558
-0.191725
-0.172169
-0.204068
-0.180151
-0.185773
-0.175731
-0.172448
-0.174345
-0.184103
-0.179641
-0.181846
-0.197738
-0.177333
-0.17963
-0.181524
-0.180474
-0.182114
-0.176285
-0.166265
-0.166026
-0.162441
-0.19647
-0.155598
-0.158535
-0.164999
-0.167411
-0.183948
-0.166477
-0.205281
-0.168582
-0.18122
-0.165949
-0.191792
-0.199732
-0.205247
-0.190772
-0.198722
-0.2029
-0.182915
-0.169957
-0.182096
-0.167486
-0.180755
-0.202639
-0.183439
-0.168688
-0.163929
-0.158429
-0.168589
-0.168599
-0.170273
-0.160704
-0.161703
-0.161775
-0.144636
-0.156634
-0.163022
-0.16584
-0.152254
-0.160592
-0.167064
-0.167212
-0.169618
-0.168556
-0.172119
-0.174558
-0.163709
-0.130624
-0.130165
-0.128322
-0.132795
-0.131459
-0.1299
-0.133046
-0.121896
-0.123278
-0.152994
-0.120765
-0.124239
-0.130783
-0.130712
-0.132298
-0.132296
-0.130492
-0.132544
-0.132908
-0.122791
-0.125674
-0.153377
-0.1229
-0.125068
-0.116832
-0.0912729
-0.106056
-0.0968382
-0.0930144
-0.108975
-0.09994
-0.106422
-0.096555
-0.090262
-0.109668
-0.105648
-0.0944104
-0.103503
-0.0953825
-0.113593
-0.102688
-0.0882073
-0.0953029
-0.090001
-0.112076
-0.0963954
-0.110282
-0.100894
-0.112214
-0.0993859
-0.104619
-0.116501
-0.0927566
-0.119192
-0.122371
-0.0922907
-0.106794
-0.0989969
-0.098786
-0.107029
-0.103815
-0.109461
-0.106372
-0.104196
-0.116915
-0.122292
-0.0930613
-0.102532
-0.123139
-0.0922927
-0.0994004
-0.102734
-0.138276
-0.125479
-0.120322
-0.133467
-0.128615
-0.124949
-0.137748
-0.138495
-0.1299
-0.140679
-0.133809
-0.136961
-0.141257
-0.131389
-0.136961
-0.122729
-0.122554
-0.136624
-0.136298
-0.122953
-0.137587
-0.138853
-0.128211
-0.130922
-0.125371
-0.133695
-0.130473
-0.110375
-0.111583
-0.0949671
-0.0948063
-0.111599
-0.0945655
-0.110287
-0.127673
-0.151756
-0.128718
-0.145738
-0.12939
-0.126878
-0.146633
-0.110028
-0.0940394
-0.0948612
-0.110963
-0.111316
-0.0942643
-0.109611
-0.0513804
-0.0442173
-0.0598187
-0.0335101
-0.0598639
-0.0324321
-0.0529243
-0.0652237
-0.0677745
-0.0821431
-0.0733296
-0.0708603
-0.06411
-0.0779442
-0.0661943
-0.0793992
-0.0698543
-0.0829353
-0.072533
-0.0661187
-0.0796505
-0.0639942
-0.0641351
-0.0793294
-0.0788963
-0.0644819
-0.0788836
-0.0639399
-0.0509927
-0.0386801
-0.0567615
-0.034888
-0.0530814
-0.0360839
-0.0526726
-0.0644557
-0.0794558
-0.0796244
-0.0672287
-0.0654006
-0.0789016
-0.0656213
-0.123687
-0.1472
-0.127387
-0.144108
-0.125895
-0.125439
-0.142222
-0.104464
-0.106253
-0.092841
-0.0839719
-0.107388
-0.100356
-0.0891727
-0.107149
-0.0933021
-0.110016
-0.0941846
-0.109017
-0.108499
-0.0923085
-0.154321
-0.155398
-0.172952
-0.16895
-0.168717
-0.165796
-0.171772
-0.167485
-0.157666
-0.156699
-0.162553
-0.153344
-0.178006
-0.182295
-0.182172
-0.149718
-0.161958
-0.148869
-0.132763
-0.170608
-0.145937
-0.135854
-0.146803
-0.14954
-0.151337
-0.166823
-0.176392
-0.140746
-0.138744
-0.156807
-0.155521
-0.167486
-0.184376
-0.187781
-0.172606
-0.184399
-0.168645
-0.170295
-0.20203
-0.198318
-0.198226
-0.19648
-0.201176
-0.199173
-0.197432
-0.196216
-0.235755
-0.191162
-0.190445
-0.197018
-0.235104
-0.20287
-0.199517
-0.201279
-0.199697
-0.200145
-0.198473
-0.203984
-0.195641
-0.189243
-0.235695
-0.195261
-0.189734
-0.234893
-0.154958
-0.153766
-0.160302
-0.142546
-0.148322
-0.165707
-0.171002
-0.164452
-0.162413
-0.15324
-0.182831
-0.184049
-0.154315
-0.161997
-0.183501
-0.158812
-0.147471
-0.177381
-0.170429
-0.144363
-0.170266
-0.161089
-0.157849
-0.167682
-0.176398
-0.141847
-0.14291
-0.169025
-0.156858
-0.163123
-0.185555
-0.15806
-0.185473
-0.15586
-0.184457
-0.163286
-0.110281
-0.111406
-0.0961159
-0.0953214
-0.111462
-0.110284
-0.0964693
-0.120773
-0.147344
-0.133316
-0.119438
-0.139195
-0.12268
-0.12017
-0.108099
-0.096516
-0.0957972
-0.10552
-0.108688
-0.0962547
-0.108316
-0.0658841
-0.0615974
-0.0525987
-0.0572289
-0.06434
-0.0619746
-0.0610647
-0.0682233
-0.0501112
-0.0613984
-0.074816
-0.0525166
-0.0667366
-0.0688403
-0.0709179
-0.0829708
-0.0699123
-0.0809164
-0.0696287
-0.0714343
-0.0814964
-0.0661578
-0.0644309
-0.0805229
-0.0795301
-0.0654164
-0.0646697
-0.0807551
-0.0531376
-0.0395983
-0.045779
-0.0539973
-0.04039
-0.0517094
-0.0568299
-0.0676064
-0.0827584
-0.0812546
-0.0685336
-0.0666832
-0.0815419
-0.07009
-0.106218
-0.134418
-0.116612
-0.162928
-0.113536
-0.109732
-0.0880428
-0.10037
-0.0992195
-0.122452
-0.0899244
-0.0982206
-0.091277
-0.0968213
-0.104488
-0.0977144
-0.0943631
-0.105988
-0.0997435
-0.16859
-0.163628
-0.167879
-0.168335
-0.16895
-0.172841
-0.168132
-0.169581
-0.16152
-0.163195
-0.163054
-0.173243
-0.179406
-0.183431
-0.177793
-0.191818
-0.159898
-0.16436
-0.172574
-0.177196
-0.193512
-0.17724
-0.16474
-0.192917
-0.209118
-0.203545
-0.203653
-0.215261
-0.21473
-0.203499
-0.204698
-0.199879
-0.235523
-0.191185
-0.197389
-0.192604
-0.237683
-0.206986
-0.20447
-0.201875
-0.200797
-0.204718
-0.203438
-0.202855
-0.202087
-0.213508
-0.208771
-0.209348
-0.197425
-0.234727
-0.172936
-0.18504
-0.185248
-0.184138
-0.164942
-0.182941
-0.171838
-0.186468
-0.185708
-0.182539
-0.160597
-0.180704
-0.15697
-0.186282
-0.178408
-0.192947
-0.172689
-0.159148
-0.186378
-0.157112
-0.193366
-0.16777
-0.185375
-0.15636
-0.171708
-0.186673
-0.184528
-0.18351
-0.167878
-0.211401
-0.169243
-0.212442
-0.183703
-0.179693
-0.18681
-0.171334
-0.175309
-0.179235
-0.188867
-0.171322
-0.179895
-0.171207
-0.192705
-0.175502
-0.190755
-0.180196
-0.171124
-0.15608
-0.150635
-0.164637
-0.164099
-0.157057
-0.15028
-0.164529
-0.149963
-0.13849
-0.136728
-0.153629
-0.135972
-0.150287
-0.153697
-0.15581
-0.164641
-0.164137
-0.151092
-0.150531
-0.164462
-0.156011
-0.180516
-0.177172
-0.165903
-0.20952
-0.163513
-0.207444
-0.182224
-0.179238
-0.197661
-0.170379
-0.176423
-0.178123
-0.196807
-0.170677
-0.179737
-0.170855
-0.19416
-0.176301
-0.195634
-0.179964
-0.1708
-0.158662
-0.156248
-0.167064
-0.165667
-0.159766
-0.154785
-0.166345
-0.152181
-0.138059
-0.138123
-0.154247
-0.139607
-0.151247
-0.154643
-0.157558
-0.165225
-0.165
-0.152194
-0.153273
-0.16561
-0.156846
-0.304604
-0.306922
-0.308461
-0.300627
-0.263735
-0.237957
-0.264921
-0.238057
-0.305554
-0.305367
-0.306513
-0.308748
-0.193439
-0.160404
-0.1628
-0.193441
-0.215361
-0.247527
-0.251853
-0.210599
-0.21949
-0.260816
-0.221307
-0.257371
-0.225843
-0.265759
-0.267109
-0.224786
-0.194819
-0.161047
-0.160481
-0.194947
-0.224375
-0.26373
-0.265044
-0.223777
-0.268113
-0.238328
-0.265118
-0.248946
-0.309687
-0.284742
-0.292863
-0.303596
-0.312444
-0.303328
-0.310751
-0.299518
-0.271117
-0.271996
-0.312108
-0.309482
-0.289776
-0.275346
-0.285134
-0.315655
-0.306614
-0.32329
-0.326267
-0.323443
-0.321303
-0.324593
-0.322877
-0.322672
-0.280188
-0.277706
-0.306529
-0.272038
-0.281925
-0.305986
-0.273545
-0.305962
-0.305266
-0.2859
-0.280282
-0.286372
-0.280039
-0.266141
-0.230005
-0.22326
-0.228632
-0.266892
-0.291038
-0.259833
-0.275568
-0.271554
-0.261757
-0.282334
-0.29066
-0.267034
-0.2299
-0.224178
-0.267626
-0.22943
-0.291214
-0.284369
-0.263244
-0.276347
-0.292433
-0.262195
-0.283282
-0.285506
-0.280031
-0.280429
-0.286815
-0.270398
-0.270621
-0.306965
-0.306148
-0.307431
-0.314809
-0.302353
-0.311115
-0.310322
-0.297082
-0.3014
-0.281682
-0.264133
-0.301681
-0.267909
-0.294026
-0.298065
-0.268492
-0.303678
-0.281171
-0.302045
-0.299419
-0.267713
-0.271487
-0.271762
-0.210329
-0.194502
-0.200369
-0.206325
-0.224
-0.240231
-0.22712
-0.238585
-0.213029
-0.204537
-0.201705
-0.217079
-0.233422
-0.279402
-0.279591
-0.233894
-0.185305
-0.195062
-0.186055
-0.19284
-0.186513
-0.188241
-0.187363
-0.19104
-0.219536
-0.278617
-0.20609
-0.197912
-0.281067
-0.238881
-0.281794
-0.277997
-0.237202
-0.199863
-0.189763
-0.191081
-0.192749
-0.230753
-0.239474
-0.229346
-0.24004
-0.221621
-0.211102
-0.222123
-0.20986
-0.224319
-0.236696
-0.233732
-0.241812
-0.223342
-0.234161
-0.234179
-0.222499
-0.205518
-0.220193
-0.208361
-0.216613
-0.22376
-0.20518
-0.231728
-0.215332
-0.206155
-0.231388
-0.222347
-0.234975
-0.233452
-0.243752
-0.223194
-0.236018
-0.232422
-0.355183
-0.339588
-0.355636
-0.33152
-0.354547
-0.353596
-0.340597
-0.357421
-0.356658
-0.362028
-0.344106
-0.36076
-0.335287
-0.355618
-0.35691
-0.342954
-0.358492
-0.359611
-0.267403
-0.252021
-0.267983
-0.254702
-0.267732
-0.26686
-0.254293
-0.300577
-0.307148
-0.302732
-0.30692
-0.267593
-0.252371
-0.251576
-0.267287
-0.254173
-0.237764
-0.248704
-0.243216
-0.25235
-0.240903
-0.252506
-0.267928
-0.252152
-0.267505
-0.252337
-0.268201
-0.267188
-0.253869
-0.297433
-0.305525
-0.306652
-0.293819
-0.254012
-0.255415
-0.242755
-0.245938
-0.241557
-0.254694
-0.254005
-0.213488
-0.214968
-0.234138
-0.242803
-0.212992
-0.213751
-0.243671
-0.188886
-0.154832
-0.177369
-0.187713
-0.19256
-0.162861
-0.18622
-0.190533
-0.159725
-0.156002
-0.191332
-0.220529
-0.257523
-0.188276
-0.195044
-0.17658
-0.168744
-0.192703
-0.161229
-0.190244
-0.215708
-0.234829
-0.207469
-0.253185
-0.212496
-0.215583
-0.2488
-0.218727
-0.260208
-0.219969
-0.25742
-0.213526
-0.215973
-0.235936
-0.242036
-0.24193
-0.216492
-0.21332
-0.221553
-0.26329
-0.222561
-0.262517
-0.190772
-0.169968
-0.180974
-0.197298
-0.1695
-0.191359
-0.197585
-0.190647
-0.157971
-0.157401
-0.190731
-0.190365
-0.196016
-0.180367
-0.168803
-0.168974
-0.196741
-0.190091
-0.213619
-0.236467
-0.242625
-0.218143
-0.215029
-0.241497
-0.217385
-0.220953
-0.261682
-0.262302
-0.220484
-0.267076
-0.250391
-0.26875
-0.253511
-0.267441
-0.269246
-0.25335
-0.269198
-0.251565
-0.25194
-0.266468
-0.269534
-0.296207
-0.290462
-0.278954
-0.260986
-0.247711
-0.29793
-0.244778
-0.263222
-0.265597
-0.250623
-0.281187
-0.24874
-0.261937
-0.273598
-0.253213
-0.280608
-0.30286
-0.288605
-0.297874
-0.265124
-0.25426
-0.245101
-0.247726
-0.245483
-0.258098
-0.257056
-0.275286
-0.257146
-0.275017
-0.257371
-0.269535
-0.224508
-0.249661
-0.260032
-0.283434
-0.257234
-0.266436
-0.263643
-0.255548
-0.285182
-0.259953
-0.272595
-0.252824
-0.27365
-0.251885
-0.283541
-0.258715
-0.254936
-0.265967
-0.283234
-0.255291
-0.259078
-0.275529
-0.263564
-0.275202
-0.258637
-0.305372
-0.301587
-0.288547
-0.2917
-0.292708
-0.303396
-0.302603
-0.300659
-0.290973
-0.306109
-0.284924
-0.304645
-0.283769
-0.302913
-0.308265
-0.292574
-0.289016
-0.305904
-0.292852
-0.304833
-0.309706
-0.30681
-0.303687
-0.288797
-0.287851
-0.305605
-0.302899
-0.290638
-0.30785
-0.295424
-0.307718
-0.286741
-0.308794
-0.288319
-0.305973
-0.30872
-0.2923
-0.289241
-0.306502
-0.306369
-0.29175
-0.309737
-0.212927
-0.193052
-0.203342
-0.222249
-0.222897
-0.224665
-0.225754
-0.2371
-0.232143
-0.249814
-0.249422
-0.273683
-0.264632
-0.285204
-0.245663
-0.280729
-0.26988
-0.249521
-0.269576
-0.248633
-0.246435
-0.223692
-0.218596
-0.182612
-0.205637
-0.217628
-0.206756
-0.223955
-0.224063
-0.214851
-0.218259
-0.185902
-0.21727
-0.225602
-0.208154
-0.25504
-0.285319
-0.211128
-0.234817
-0.28726
-0.236614
-0.259869
-0.246505
-0.281693
-0.270494
-0.249872
-0.269968
-0.25017
-0.246856
-0.230325
-0.218354
-0.214284
-0.217411
-0.216055
-0.249189
-0.227119
-0.286295
-0.226746
-0.253394
-0.27578
-0.243778
-0.232363
-0.218662
-0.198704
-0.209599
-0.218433
-0.211419
-0.225524
-0.263288
-0.22577
-0.281177
-0.198343
-0.241472
-0.293389
-0.211068
-0.282119
-0.327155
-0.288182
-0.26192
-0.263277
-0.327739
-0.281188
-0.272427
-0.261534
-0.285838
-0.255708
-0.2725
-0.288741
-0.255104
-0.282654
-0.265012
-0.28889
-0.327675
-0.264127
-0.283364
-0.328064
-0.185079
-0.183037
-0.179818
-0.194476
-0.186784
-0.192587
-0.188697
-0.207335
-0.243721
-0.250111
-0.201895
-0.239716
-0.222451
-0.211527
-0.236239
-0.217164
-0.244305
-0.213687
-0.237455
-0.215647
-0.213859
-0.216544
-0.245554
-0.234906
-0.235784
-0.217218
-0.212981
-0.194418
-0.172951
-0.178767
-0.195158
-0.177401
-0.194297
-0.194845
-0.214301
-0.236349
-0.245902
-0.217662
-0.23619
-0.214478
-0.217636
-0.276934
-0.266171
-0.282086
-0.257963
-0.273209
-0.277777
-0.268381
-0.293733
-0.279323
-0.288256
-0.298462
-0.274797
-0.324006
-0.28768
-0.265441
-0.32619
-0.285799
-0.283951
-0.268254
-0.322529
-0.283071
-0.279598
-0.281438
-0.270306
-0.277008
-0.28719
-0.269018
-0.281142
-0.276167
-0.269432
-0.287497
-0.271575
-0.287033
-0.280708
-0.284008
-0.27965
-0.281417
-0.289935
-0.277757
-0.289424
-0.285532
-0.26242
-0.261936
-0.269191
-0.247774
-0.272051
-0.282946
-0.247233
-0.282508
-0.269392
-0.261744
-0.256742
-0.256062
-0.262382
-0.268909
-0.278185
-0.247244
-0.271339
-0.266268
-0.247132
-0.280776
-0.261487
-0.257667
-0.26224
-0.25594
-0.262245
-0.262216
-0.282932
-0.276403
-0.270098
-0.288573
-0.270551
-0.289335
-0.282075
-0.290768
-0.293932
-0.28461
-0.283449
-0.293468
-0.284096
-0.291598
-0.289422
-0.282113
-0.291568
-0.284106
-0.292654
-0.287887
-0.283423
-0.354268
-0.338234
-0.35344
-0.326409
-0.347953
-0.348964
-0.337597
-0.35182
-0.352632
-0.348427
-0.335224
-0.349351
-0.323048
-0.347039
-0.345986
-0.33579
-0.350989
-0.350169
-0.227011
-0.241876
-0.219124
-0.241411
-0.221175
-0.227307
-0.241959
-0.213371
-0.199341
-0.173515
-0.201947
-0.197173
-0.202534
-0.213586
-0.213503
-0.207838
-0.194415
-0.17339
-0.196005
-0.215176
-0.203933
-0.242836
-0.235151
-0.245132
-0.233586
-0.229007
-0.239289
-0.244008
-0.269955
-0.2648
-0.308053
-0.276245
-0.288515
-0.270364
-0.274383
-0.245029
-0.2217
-0.250574
-0.233888
-0.233295
-0.237003
-0.241834
-0.227933
-0.235034
-0.21646
-0.240573
-0.211825
-0.227457
-0.240405
-0.219147
-0.254212
-0.238419
-0.23057
-0.203041
-0.228965
-0.231787
-0.218057
-0.211614
-0.192073
-0.188357
-0.187833
-0.21687
-0.21828
-0.229068
-0.22498
-0.191923
-0.207464
-0.227175
-0.209679
-0.226551
-0.250271
-0.279535
-0.263339
-0.273317
-0.257054
-0.257095
-0.270032
-0.232645
-0.217594
-0.19666
-0.232328
-0.232269
-0.212871
-0.237571
-0.276907
-0.263057
-0.27477
-0.264369
-0.275174
-0.249174
-0.265604
-0.281215
-0.250226
-0.271558
-0.258258
-0.275034
-0.256816
-0.260962
-0.263657
-0.283747
-0.260571
-0.253839
-0.264983
-0.283293
-0.253656
-0.26119
-0.272973
-0.246759
-0.270225
-0.256653
-0.278279
-0.265485
-0.264399
-0.298851
-0.300254
-0.285212
-0.289556
-0.28691
-0.298921
-0.300513
-0.292802
-0.285397
-0.296739
-0.277034
-0.298075
-0.278003
-0.291428
-0.297141
-0.281528
-0.283991
-0.296287
-0.284191
-0.297683
-0.295503
-0.290414
-0.293701
-0.280939
-0.280608
-0.293337
-0.291869
-0.273583
-0.288562
-0.281863
-0.295563
-0.27594
-0.294137
-0.274871
-0.290026
-0.292524
-0.279247
-0.281265
-0.295206
-0.29413
-0.27774
-0.293925
-0.278538
-0.326102
-0.260165
-0.283549
-0.279929
-0.325086
-0.258231
-0.272696
-0.264092
-0.302603
-0.254262
-0.301318
-0.25485
-0.271917
-0.276637
-0.253271
-0.28123
-0.321078
-0.323432
-0.255846
-0.274448
-0.185999
-0.165692
-0.169572
-0.188116
-0.168834
-0.187196
-0.187252
-0.201414
-0.204855
-0.231435
-0.217519
-0.206747
-0.220565
-0.199179
-0.203466
-0.225911
-0.210099
-0.234004
-0.208509
-0.205422
-0.223315
-0.210528
-0.215459
-0.23352
-0.24233
-0.211701
-0.214495
-0.232144
-0.18986
-0.167557
-0.170718
-0.189338
-0.171609
-0.190276
-0.188766
-0.208946
-0.228356
-0.240603
-0.211758
-0.213112
-0.23029
-0.207409
-0.268459
-0.25954
-0.303226
-0.253023
-0.302709
-0.251935
-0.270368
-0.264853
-0.305948
-0.26788
-0.238721
-0.310545
-0.24303
-0.260612
-0.268312
-0.250172
-0.317977
-0.271578
-0.314057
-0.271636
-0.246698
-0.228627
-0.242829
-0.243934
-0.226435
-0.243225
-0.225152
-0.229511
-0.214986
-0.200659
-0.179224
-0.201963
-0.202829
-0.214065
-0.20245
-0.21573
-0.203893
-0.206854
-0.180719
-0.204444
-0.217097
-0.202863
-0.223505
-0.218925
-0.204497
-0.177307
-0.223563
-0.218997
-0.203923
-0.243575
-0.278882
-0.247738
-0.266279
-0.247875
-0.243295
-0.266839
-0.223573
-0.204083
-0.178605
-0.219649
-0.219481
-0.204029
-0.223553
-0.231404
-0.245685
-0.245026
-0.22765
-0.246948
-0.229463
-0.230463
-0.220014
-0.217055
-0.207951
-0.189701
-0.222878
-0.213175
-0.206398
-0.219551
-0.204635
-0.208849
-0.187654
-0.211423
-0.21819
-0.205702
-0.22465
-0.222753
-0.184862
-0.206178
-0.222103
-0.22527
-0.205438
-0.243227
-0.27776
-0.248323
-0.266306
-0.248152
-0.243504
-0.265664
-0.223956
-0.204527
-0.182543
-0.22049
-0.220732
-0.204677
-0.223921
-0.371886
-0.339228
-0.366188
-0.355115
-0.37354
-0.364743
-0.354826
-0.372826
-0.381549
-0.356735
-0.369568
-0.374431
-0.356386
-0.37876
-0.371833
-0.356615
-0.373763
-0.370205
-0.371702
-0.356351
-0.376197
-0.299084
-0.33068
-0.337659
-0.36488
-0.33772
-0.297907
-0.331203
-0.300178
-0.330377
-0.359327
-0.337611
-0.33659
-0.302587
-0.333165
-0.308481
-0.345557
-0.327661
-0.327154
-0.309191
-0.32765
-0.345226
-0.308046
-0.329426
-0.328338
-0.346079
-0.327983
-0.307282
-0.345344
-0.358217
-0.340034
-0.356109
-0.350859
-0.359661
-0.354315
-0.350053
-0.354059
-0.353925
-0.342695
-0.352879
-0.352499
-0.344686
-0.355693
-0.356158
-0.348604
-0.360468
-0.355993
-0.35771
-0.346934
-0.358323
-0.296286
-0.33005
-0.336652
-0.365693
-0.335618
-0.296812
-0.329933
-0.295465
-0.332472
-0.362942
-0.3263
-0.334238
-0.296245
-0.328702
-0.304456
-0.307681
-0.325689
-0.341303
-0.303284
-0.327853
-0.308802
-0.295046
-0.316829
-0.2747
-0.313444
-0.297613
-0.271301
-0.314241
-0.305595
-0.331915
-0.345854
-0.312878
-0.330136
-0.305571
-0.310668
-0.0659613
-0.07912
-0.082913
-0.0526369
-0.0499464
-0.0359782
-0.0469601
-0.0478705
-0.0444316
-0.0563588
-0.0452901
-0.0596184
-0.0484438
-0.0393511
-0.048764
-0.0579521
-0.0910732
-0.0830972
-0.0901139
-0.0743906
-0.0893525
-0.086582
-0.0571792
-0.0465624
-0.0520533
-0.0633304
-0.0510355
-0.0552231
-0.0610143
-0.0878132
-0.0822658
-0.0883941
-0.0267054
-0.0231516
-0.0184244
-0.018209
-0.0275505
-0.0237082
-0.0172503
-0.0306387
-0.0138342
0.03018
-0.0228478
-0.0178941
-0.00961703
-0.0343606
-0.0604584
0.0304807
0.00982002
-0.0173225
-0.093297
-0.0821243
-0.0251513
-0.0180931
-0.0453177
-0.0542724
-0.0220632
-0.0249818
-0.00613805
0.029922
0.00985101
-0.0137608
-0.00675205
-0.0117072
-0.0295229
-0.0206169
-0.0355553
-0.0227978
-0.0309584
-0.0332603
-0.0189744
-0.0430689
-0.0425561
-0.0399498
-0.0312521
-0.0588554
-0.0259721
-0.0291133
-0.0757319
-0.0964763
-0.116541
-0.0919395
-0.0797013
-0.109151
-0.0931753
-0.0723918
-0.103374
-0.0881799
-0.0893394
-0.104616
-0.0713188
-0.0904492
-0.00702402
-0.0455791
-0.0120242
-0.0187872
-0.00896521
-0.0218927
-0.0200598
0.0123437
-0.018953
-0.0321754
0.00182291
-0.0333495
-0.00536925
-0.0370478
0.0820927
-0.0208157
0.0423617
-0.0849857
0.0751606
-0.00811107
-0.0719965
0.0831793
0.0583257
-0.00885234
0.078836
-0.0920256
0.00663103
-0.0150467
-0.055215
-0.0301928
-0.027806
-0.0178258
0.0152504
0.00148492
0.0414365
0.0533428
0.072068
0.00414949
0.00801487
-0.0410572
-0.0568558
-0.042501
-0.0347749
-0.0476917
-0.0565911
-0.0204993
-0.0569514
-0.0806798
-0.0824253
-0.120696
-0.087502
-0.104861
-0.0995734
-0.0779065
-0.0981702
-0.107529
-0.0914993
-0.0952689
-0.059268
-0.0930777
-0.0848338
-0.0342076
-0.0713899
-0.0630586
-0.0865337
-0.0892753
-0.0857475
-0.0913137
-0.0731827
-0.0904968
-0.103117
-0.0873901
-0.0730225
-0.104681
-0.0901339
-0.0709352
-0.102407
-0.0863621
-0.0889326
-0.102541
-0.0706371
-0.0889143
-0.114783
-0.0889371
-0.0905155
-0.108846
-0.0906879
-0.113997
-0.108805
-0.157823
-0.161211
-0.200582
-0.158181
-0.183028
-0.183362
-0.141781
-0.149807
-0.172882
-0.133064
-0.150953
-0.146443
-0.175842
-0.136139
-0.134618
-0.12918
-0.12859
-0.1331
-0.131713
-0.127762
-0.135883
-0.128954
-0.111814
-0.115729
-0.122755
-0.114349
-0.126753
-0.125133
-0.130951
-0.128797
-0.118341
-0.117224
-0.116546
-0.127459
-0.131904
-0.132764
-0.127122
-0.12895
-0.12403
-0.129963
-0.131309
-0.125677
-0.211422
-0.181577
-0.211384
-0.182216
-0.226881
-0.195182
-0.180266
-0.21039
-0.225147
-0.182113
-0.212228
-0.227574
-0.221059
-0.227113
-0.21826
-0.210511
-0.180595
-0.182139
-0.208427
-0.228147
-0.212622
-0.228033
-0.2155
-0.121241
-0.1339
-0.149918
-0.1415
-0.120917
-0.148705
-0.133933
-0.136729
-0.152512
-0.14397
-0.150693
-0.136597
-0.143276
-0.150557
-0.122058
-0.147157
-0.142102
-0.135562
-0.147826
-0.123316
-0.13462
-0.111909
-0.0881765
-0.0900085
-0.107994
-0.0895809
-0.112806
-0.107209
-0.140446
-0.126497
-0.165738
-0.142839
-0.138843
-0.167292
-0.127747
-0.142263
-0.170565
-0.130979
-0.144164
-0.144021
-0.16899
-0.129289
-0.138513
-0.131366
-0.134697
-0.131291
-0.132102
-0.137513
-0.135842
-0.133651
-0.115243
-0.116473
-0.132498
-0.115566
-0.131428
-0.134479
-0.132531
-0.130231
-0.112585
-0.116813
-0.115269
-0.129026
-0.132685
-0.140216
-0.13272
-0.135807
-0.137873
-0.134244
-0.137151
-0.141772
-0.130677
-0.146234
-0.145843
-0.150317
-0.147663
-0.128945
-0.146282
-0.13984
-0.15324
-0.145895
-0.151287
-0.137554
-0.149638
-0.151371
-0.127895
-0.147337
-0.146565
-0.137766
-0.147276
-0.125581
-0.140872
-0.109352
-0.166292
-0.156231
-0.172341
-0.201892
-0.186611
-0.196528
-0.203469
-0.196201
-0.131321
-0.155267
-0.130846
-0.15056
-0.128534
-0.126822
-0.155145
-0.131414
-0.130463
-0.1499
-0.146213
-0.153207
-0.146971
-0.153009
-0.146748
-0.150249
-0.133885
-0.110074
-0.126866
-0.117255
-0.132591
-0.114249
-0.133815
-0.149525
-0.146968
-0.15458
-0.145088
-0.153487
-0.149504
-0.146454
-0.13509
-0.137456
-0.118801
-0.113786
-0.113925
-0.136518
-0.135749
-0.196776
-0.150119
-0.14982
-0.195684
-0.152386
-0.227805
-0.202211
-0.189937
-0.225393
-0.227509
-0.185204
-0.221985
-0.223788
-0.223453
-0.225541
-0.22588
-0.193707
-0.150476
-0.175809
-0.203086
-0.149215
-0.225318
-0.231184
-0.224503
-0.228908
-0.139907
-0.168728
-0.166567
-0.198813
-0.18893
-0.197169
-0.195384
-0.190321
-0.194961
-0.151244
-0.153618
-0.147234
-0.148749
-0.14739
-0.150413
-0.154112
-0.137868
-0.114922
-0.119248
-0.133218
-0.115041
-0.135705
-0.137973
-0.136369
-0.137647
-0.118586
-0.113739
-0.113852
-0.137176
-0.135831
-0.150914
-0.150281
-0.13862
-0.140156
-0.145149
-0.148787
-0.144704
-0.146708
-0.157905
-0.138333
-0.151792
-0.130769
-0.13634
-0.160759
-0.132882
-0.137008
-0.248198
-0.264368
-0.23353
-0.238616
-0.233835
-0.248036
-0.264637
-0.255845
-0.261618
-0.28003
-0.250264
-0.256638
-0.280341
-0.249561
-0.248024
-0.232346
-0.238239
-0.263439
-0.233435
-0.247968
-0.263721
-0.202162
-0.200696
-0.216161
-0.217812
-0.216683
-0.201769
-0.201126
-0.187328
-0.169935
-0.174741
-0.18608
-0.174134
-0.187611
-0.18534
-0.202045
-0.216333
-0.217767
-0.2017
-0.216349
-0.202942
-0.201139
-0.257117
-0.259777
-0.278348
-0.249899
-0.258341
-0.278007
-0.24869
-0.247041
-0.22496
-0.262771
-0.247366
-0.247688
-0.225204
-0.263532
-0.300127
-0.251189
-0.29734
-0.279527
-0.32267
-0.320798
-0.241748
-0.299865
-0.293176
-0.259624
-0.274281
-0.267609
-0.27376
-0.26545
-0.262949
-0.271626
-0.251094
-0.303647
-0.258529
-0.260426
-0.24939
-0.256558
-0.26077
-0.272068
-0.267134
-0.263383
-0.269436
-0.253617
-0.133419
-0.194938
-0.212269
-0.24345
-0.229782
-0.270645
-0.242362
-0.247423
-0.266852
-0.239521
-0.243732
-0.255879
-0.256714
-0.24066
-0.260473
-0.252644
-0.265029
-0.265868
-0.253765
-0.266342
-0.259397
-0.246983
-0.259821
-0.25415
-0.257655
-0.260611
-0.263155
-0.254841
-0.265075
-0.259108
-0.254426
-0.265801
-0.205775
-0.223866
-0.206048
-0.168983
-0.189733
-0.188263
-0.219444
-0.208105
-0.205823
-0.247078
-0.299912
-0.257192
-0.255473
-0.248494
-0.247886
-0.261641
-0.269476
-0.260741
-0.262987
-0.261451
-0.246146
-0.250005
-0.262239
-0.265942
-0.270073
-0.264359
-0.252161
-0.262039
-0.22371
-0.20822
-0.207542
-0.226411
-0.20882
-0.225773
-0.224292
-0.229408
-0.25029
-0.227121
-0.246045
-0.227557
-0.230492
-0.242973
-0.223001
-0.223389
-0.209619
-0.208977
-0.210289
-0.224639
-0.222425
-0.261785
-0.276432
-0.258278
-0.279184
-0.257358
-0.278226
-0.262735
-0.245122
-0.236843
-0.221441
-0.232379
-0.238559
-0.244111
-0.232259
-0.245529
-0.233024
-0.239883
-0.2209
-0.238727
-0.246682
-0.231951
-0.248194
-0.236017
-0.217808
-0.237305
-0.234414
-0.235482
-0.249289
-0.263695
-0.278274
-0.258405
-0.27995
-0.259513
-0.279526
-0.263552
-0.247777
-0.234077
-0.223548
-0.240378
-0.240329
-0.234716
-0.247713
-0.244049
-0.296061
-0.230758
-0.254257
-0.268011
-0.233687
-0.253969
-0.22811
-0.247914
-0.207128
-0.224663
-0.22003
-0.233933
-0.223273
-0.223192
-0.222435
-0.208475
-0.203811
-0.205801
-0.222664
-0.221528
-0.183742
-0.202789
-0.182815
-0.244325
-0.206225
-0.207583
-0.205235
-0.180283
-0.181491
-0.32156
-0.321992
-0.307113
-0.331083
-0.317716
-0.339376
-0.325364
-0.298952
-0.274812
-0.275352
-0.257633
-0.234928
-0.256995
-0.254584
-0.233334
-0.255576
-0.250334
-0.227811
-0.251965
-0.29846
-0.274652
-0.273551
-0.22886
-0.2539
-0.252352
-0.333793
-0.331993
-0.333738
-0.3187
-0.3292
-0.329725
-0.333219
-0.335738
-0.334059
-0.244385
-0.203526
-0.201885
-0.178881
-0.215054
-0.177525
-0.17793
-0.213054
-0.176517
-0.246206
-0.265585
-0.232732
-0.235454
-0.247344
-0.264628
-0.230429
-0.256557
-0.276086
-0.290331
-0.261377
-0.285024
-0.253098
-0.258213
-0.245328
-0.219733
-0.226945
-0.265713
-0.263102
-0.226859
-0.243781
-0.179332
-0.126614
-0.163628
-0.182942
-0.162955
-0.173985
-0.18305
-0.195372
-0.202643
-0.214546
-0.220771
-0.197075
-0.200968
-0.211865
-0.196284
-0.212079
-0.20817
-0.219704
-0.201848
-0.201025
-0.210974
-0.201123
-0.201265
-0.215603
-0.21578
-0.201687
-0.201564
-0.214061
-0.18522
-0.168978
-0.168897
-0.188084
-0.171823
-0.186153
-0.185098
-0.200673
-0.214377
-0.214863
-0.210372
-0.203035
-0.212974
-0.203134
-0.256331
-0.264671
-0.291521
-0.260991
-0.290587
-0.249327
-0.255281
-0.251635
-0.300369
-0.234486
-0.250957
-0.256562
-0.292359
-0.229717
-0.245218
-0.216284
-0.262369
-0.240094
-0.278145
-0.24045
-0.224468
-0.300908
-0.255432
-0.301122
-0.281221
-0.337075
-0.338033
-0.254899
-0.299065
-0.300003
-0.169332
-0.187527
-0.187837
-0.205866
-0.227093
-0.205964
-0.204472
-0.224389
-0.204851
-0.231412
-0.221186
-0.257177
-0.228248
-0.228794
-0.258415
-0.230329
-0.234361
-0.255238
-0.254315
-0.237592
-0.255861
-0.251198
-0.261534
-0.26465
-0.249345
-0.257784
-0.26312
-0.230715
-0.252106
-0.227528
-0.252531
-0.253689
-0.259387
-0.245518
-0.259999
-0.251468
-0.247607
-0.261338
-0.23597
-0.248815
-0.257938
-0.24919
-0.25072
-0.250693
-0.234618
-0.230667
-0.283842
-0.244428
-0.240224
-0.232263
-0.236881
-0.253935
-0.259158
-0.254501
-0.25195
-0.251816
-0.238791
-0.205765
-0.226594
-0.206102
-0.168268
-0.187577
-0.187118
-0.226377
-0.206013
-0.205957
-0.242868
-0.260162
-0.265902
-0.259505
-0.258586
-0.24427
-0.258213
-0.237899
-0.293161
-0.245227
-0.247417
-0.234662
-0.241436
-0.255113
-0.264502
-0.255329
-0.257209
-0.256754
-0.239751
-0.287018
-0.335435
-0.334591
-0.296867
-0.255305
-0.297421
-0.297713
-0.254278
-0.297454
-0.231003
-0.239204
-0.242175
-0.214186
-0.243534
-0.214238
-0.229784
-0.249678
-0.255086
-0.231728
-0.244256
-0.246235
-0.268202
-0.280591
-0.305749
-0.249222
-0.316403
-0.280109
-0.233908
-0.24961
-0.225529
-0.22718
-0.232971
-0.233008
-0.246507
-0.239795
-0.190563
-0.20467
-0.222624
-0.212018
-0.212842
-0.205663
-0.189952
-0.287288
-0.252304
-0.250169
-0.192052
-0.215633
-0.224144
-0.20838
-0.214662
-0.207162
-0.192729
-0.218542
-0.196669
-0.212877
-0.189556
-0.217011
-0.214358
-0.191291
-0.232149
-0.232008
-0.237058
-0.235506
-0.230239
-0.233654
-0.234036
-0.195115
-0.193489
-0.230236
-0.230296
-0.227038
-0.235259
-0.228785
-0.228487
-0.231627
-0.19005
-0.191668
-0.177111
-0.164354
-0.164025
-0.175781
-0.163796
-0.177294
-0.17569
-0.191728
-0.189335
-0.202142
-0.206642
-0.206844
-0.189452
-0.191598
-0.191601
-0.207137
-0.189435
-0.202157
-0.191641
-0.206836
-0.18949
-0.289518
-0.253826
-0.25535
-0.196774
-0.213259
-0.2295
-0.22277
-0.212093
-0.220688
-0.198472
-0.195137
-0.21749
-0.209892
-0.22778
-0.210865
-0.194459
-0.218589
-0.189516
-0.187073
-0.185634
-0.1803
-0.197308
-0.184311
-0.189379
-0.176361
-0.163041
-0.164268
-0.175656
-0.162679
-0.177289
-0.176195
-0.186963
-0.205406
-0.196511
-0.187823
-0.202578
-0.190218
-0.186753
-0.289889
-0.266398
-0.306916
-0.256044
-0.309098
-0.288062
-0.257596
-0.249538
-0.234733
-0.217752
-0.223805
-0.224278
-0.234978
-0.248577
-0.249944
-0.225419
-0.234056
-0.217928
-0.249593
-0.224561
-0.234834
-0.227564
-0.205681
-0.220258
-0.286777
-0.269617
-0.235272
-0.235723
-0.243796
-0.241142
-0.295002
-0.273667
-0.21302
-0.228427
-0.231229
-0.278426
-0.321065
-0.321373
-0.29841
-0.310222
-0.310081
-0.321228
-0.320885
-0.260031
-0.24025
-0.260863
-0.307787
-0.272451
-0.27932
-0.245995
-0.269761
-0.264656
-0.315356
-0.315391
-0.305692
-0.310117
-0.310467
-0.316235
-0.316192
-0.239983
-0.201102
-0.19849
-0.181807
-0.220348
-0.183717
-0.196085
-0.224874
-0.189685
-0.277013
-0.263987
-0.25386
-0.252998
-0.270079
-0.254219
-0.273272
-0.269159
-0.293466
-0.271572
-0.298551
-0.27676
-0.267927
-0.299463
-0.292122
-0.247397
-0.313081
-0.244983
-0.33103
-0.292626
-0.260849
-0.228824
-0.262475
-0.281635
-0.313074
-0.305276
-0.235715
-0.277326
-0.271243
-0.166244
-0.182938
-0.184122
-0.204721
-0.224784
-0.203758
-0.199834
-0.22233
-0.201695
-0.228251
-0.204262
-0.221887
-0.210115
-0.228965
-0.220894
-0.203543
-0.239307
-0.233372
-0.245056
-0.236916
-0.235352
-0.235312
-0.242663
-0.19611
-0.197148
-0.23902
-0.243795
-0.233603
-0.243984
-0.237862
-0.234474
-0.242609
-0.209241
-0.200867
-0.231892
-0.247283
-0.252687
-0.247704
-0.246093
-0.245479
-0.23324
-0.221701
-0.275571
-0.229698
-0.231318
-0.219987
-0.230747
-0.242263
-0.251152
-0.241921
-0.244477
-0.244104
-0.229123
-0.226147
-0.217164
-0.24392
-0.226498
-0.224659
-0.205535
-0.239168
-0.220941
-0.278537
-0.229587
-0.230045
-0.219649
-0.228081
-0.240595
-0.245894
-0.239826
-0.238202
-0.239119
-0.228027
-0.191893
-0.209142
-0.192428
-0.161822
-0.180132
-0.177878
-0.213534
-0.196416
-0.19436
-0.291676
-0.320302
-0.325271
-0.294655
-0.251588
-0.292003
-0.283905
-0.248459
-0.288559
-0.323778
-0.309604
-0.316242
-0.317645
-0.321785
-0.318007
-0.319381
-0.320077
-0.321749
-0.309487
-0.313084
-0.322366
-0.307085
-0.31972
-0.318664
-0.303292
-0.31618
-0.311212
-0.316564
-0.305567
-0.318074
-0.253948
-0.245979
-0.276611
-0.286058
-0.278436
-0.251979
-0.248287
-0.250858
-0.284226
-0.236425
-0.270424
-0.252984
-0.234471
-0.267974
-0.255943
-0.282028
-0.287936
-0.25279
-0.280129
-0.258027
-0.250544
-0.264003
-0.262559
-0.290278
-0.296095
-0.266766
-0.28766
-0.259875
-0.257141
-0.291675
-0.237983
-0.272842
-0.254615
-0.239684
-0.275575
-0.262245
-0.283501
-0.293991
-0.254983
-0.285988
-0.259639
-0.257576
-0.310848
-0.302481
-0.305763
-0.311521
-0.312114
-0.304667
-0.310706
-0.301344
-0.298426
-0.282688
-0.289784
-0.299617
-0.284739
-0.300018
-0.30287
-0.288412
-0.303129
-0.291779
-0.304423
-0.286537
-0.301686
-0.247458
-0.243241
-0.274436
-0.280162
-0.272631
-0.249421
-0.24086
-0.239679
-0.271729
-0.220442
-0.25238
-0.237216
-0.223507
-0.255234
-0.245158
-0.268521
-0.277882
-0.235549
-0.270567
-0.242896
-0.238087
-0.235753
-0.224684
-0.259818
-0.26897
-0.233237
-0.26214
-0.227333
-0.232092
-0.261941
-0.218176
-0.249339
-0.23461
-0.215416
-0.246475
-0.238036
-0.266326
-0.271298
-0.232659
-0.264186
-0.24039
-0.230093
0.0122582
0.0286884
0.0301275
0.0104669
-0.00182151
-0.0178487
-0.00318295
-0.0172079
0.0127873
0.0320599
0.011123
0.0300796
-0.00244167
-0.0205326
-0.00488938
-0.018044
-0.0261946
-0.0195828
0.016896
-0.0393554
0.0133955
-0.0411233
-0.023169
-0.0508558
-0.0664494
-0.0539057
-0.0612147
-0.0522861
-0.0536639
-0.0652981
-0.0307045
-0.0122528
-0.00360309
-0.0404858
-0.000234613
-0.032502
-0.0408699
-0.0477655
-0.0500138
-0.0593998
-0.0601874
-0.0522182
-0.0448101
-0.0628808
0.00932964
-0.0231914
0.0293667
0.00970583
0.029017
-0.0363512
-0.016733
0.0268465
-0.0272112
-0.031587
0.0218684
-0.0316862
0.0020595
0.0139707
0.0190571
0.0681329
-0.00184939
0.0199242
0.0160612
-0.0128782
-0.031556
-0.0142182
-0.0296516
0.00814004
-0.0159048
0.0274349
0.00637701
0.0275852
-0.0136288
-0.0251245
-0.0106114
-0.0286132
-0.0172417
-0.0385802
0.0208623
-0.0322096
-0.0334891
0.0191648
-0.0195934
-0.0370569
-0.0385917
-0.0298792
-0.0481721
-0.0292059
-0.0401871
-0.0499831
-0.0155232
-0.0371965
-0.0236329
0.0290062
-0.00882852
-0.0317607
0.0219834
-0.0388007
-0.0452524
-0.0503556
-0.0566795
-0.0430069
-0.0411895
-0.0540582
-0.0532895
-0.0722149
-0.0533844
-0.0703064
-0.045071
-0.0324493
-0.0353655
-0.044732
-0.0452504
-0.0421521
-0.0378555
-0.0465131
-0.0533873
-0.0705313
-0.0693333
-0.054833
-0.0926246
-0.121468
-0.117052
-0.0978452
-0.0514334
0.00716152
0.00196829
0.002283
-0.0449401
-0.0555726
0.000184789
-0.00585448
0.000136409
-0.0616378
-0.0883916
-0.109188
-0.113149
-0.0835565
-0.132419
-0.127016
-0.11562
-0.140802
-0.118178
-0.152393
-0.134169
-0.157268
-0.142395
-0.130449
-0.150373
-0.137284
-0.124957
-0.105594
-0.154051
-0.122177
-0.151346
-0.140367
-0.124491
-0.122215
-0.123605
-0.140147
-0.113737
-0.102083
-0.116423
-0.117046
-0.148439
-0.133971
-0.144199
-0.140864
-0.135098
-0.121884
-0.159081
-0.111747
-0.112505
-0.15983
-0.207284
-0.227589
-0.206204
-0.220538
-0.191642
-0.160011
-0.123091
-0.187243
-0.192473
-0.127526
-0.189082
-0.159449
-0.116363
-0.159064
-0.114056
-0.209568
-0.210273
-0.210729
-0.216548
-0.053027
-0.0728593
-0.0524463
-0.0754688
-0.0455995
-0.0261569
-0.0424485
-0.0331557
-0.0491517
-0.0454976
-0.0485817
-0.0472652
-0.0530588
-0.0839672
-0.0512052
-0.0785965
-0.109665
-0.124694
-0.102231
-0.132616
-0.0778718
-0.029541
-0.021276
-0.0242004
-0.0806854
-0.0746335
-0.0157979
-0.0115635
-0.0194479
-0.0669581
-0.111777
-0.137497
-0.133727
-0.114039
-0.164097
-0.112853
-0.113571
-0.162242
-0.149639
-0.125993
-0.136863
-0.0863867
-0.136696
-0.150476
-0.12777
-0.207748
-0.188579
-0.201645
-0.192625
-0.190679
-0.155509
-0.122379
-0.18533
-0.193202
-0.125416
-0.182243
-0.167749
-0.119303
-0.117621
-0.170078
-0.212133
-0.204181
-0.212446
-0.198022
-0.0668681
-0.0861033
-0.0701085
-0.08276
-0.0575703
-0.00770531
-0.0482022
-0.0616762
-0.0479249
-0.0575596
-0.061503
-0.0482386
-0.0323477
-0.0329903
-0.0464967
-0.0912712
-0.0429525
-0.0824341
-0.0892079
-0.0437201
-0.0881841
-0.092778
-0.0743689
-0.0919764
-0.0696453
-0.0883075
-0.0645981
-0.0749533
-0.0907004
-0.0522982
-0.0407102
-0.0372393
-0.0560724
-0.0648263
-0.075513
-0.0609252
-0.0799624
-0.171247
-0.123151
-0.124521
-0.172828
-0.159109
-0.172896
-0.155796
-0.166018
-0.141724
-0.130621
-0.120404
-0.115906
-0.141005
-0.130954
-0.119829
-0.152886
-0.153078
-0.144423
-0.162959
-0.143489
-0.154657
-0.161694
-0.166224
-0.127606
-0.160056
-0.126158
-0.144025
-0.118355
-0.115229
-0.131689
-0.131142
-0.119361
-0.144775
-0.163719
-0.170292
-0.168366
-0.167556
-0.117541
-0.149444
-0.151442
-0.115609
-0.066906
-0.0687181
-0.0635567
-0.0612062
-0.0677774
-0.0678383
-0.0638769
-0.119261
-0.153064
-0.152886
-0.119819
-0.0648925
-0.0611265
-0.0594405
-0.0635584
-0.0657205
-0.0623274
-0.0629755
-0.143655
-0.158931
-0.146278
-0.155582
-0.131305
-0.157196
-0.137161
-0.166905
-0.133191
-0.135441
-0.165477
-0.145174
-0.12696
-0.112623
-0.157384
-0.129034
-0.142832
-0.159275
-0.126714
-0.124155
-0.147673
-0.164955
-0.133143
-0.115438
-0.149852
-0.131084
-0.162542
-0.14056
-0.148211
-0.137869
-0.151225
-0.129035
-0.131059
-0.0760907
-0.0893159
-0.0728405
-0.0932642
-0.06148
-0.0379265
-0.0540591
-0.0447628
-0.0577964
-0.0455903
-0.0597881
-0.0800725
-0.0807671
-0.0987332
-0.0965806
-0.0816714
-0.0790955
-0.0977342
-0.0629126
-0.0484377
-0.0653849
-0.0461555
-0.0795002
-0.100796
-0.0821317
-0.0976818
-0.077771
-0.0933817
-0.0735096
-0.0948928
-0.076478
-0.0755513
-0.0956351
-0.0604947
-0.0420173
-0.0443815
-0.0580123
-0.110798
-0.147289
-0.113402
-0.144374
-0.0545461
-0.0354761
-0.0509006
-0.0446275
-0.0803782
-0.0560139
-0.0602141
-0.0589842
-0.0531878
-0.060742
-0.0580645
-0.0596348
-0.0608585
-0.103791
-0.139663
-0.112078
-0.139819
-0.172057
-0.122289
-0.121352
-0.172626
-0.145852
-0.130028
-0.108904
-0.118853
-0.131229
-0.146562
-0.118001
-0.159015
-0.155831
-0.145234
-0.164679
-0.146185
-0.15676
-0.166504
-0.187703
-0.18453
-0.194553
-0.180672
-0.145148
-0.117719
-0.111895
-0.13183
-0.131851
-0.117098
-0.145075
-0.171568
-0.119578
-0.170664
-0.120749
-0.180814
-0.173397
-0.174367
-0.17682
-0.239093
-0.225949
-0.211757
-0.216763
-0.217787
-0.227192
-0.237512
-0.274361
-0.257956
-0.300385
-0.249537
-0.297302
-0.277017
-0.247826
-0.240747
-0.219879
-0.212908
-0.229803
-0.218932
-0.242242
-0.22864
-0.185508
-0.202109
-0.209162
-0.217997
-0.207667
-0.186438
-0.200605
-0.281481
-0.239592
-0.240843
-0.184844
-0.204683
-0.216427
-0.197839
-0.206226
-0.199328
-0.184169
-0.177115
-0.164053
-0.16468
-0.175344
-0.164468
-0.177071
-0.175414
-0.191195
-0.189041
-0.206275
-0.201521
-0.191374
-0.205934
-0.188794
-0.19083
-0.204823
-0.188026
-0.20099
-0.190513
-0.205357
-0.188391
-0.21028
-0.186964
-0.198934
-0.205045
-0.21133
-0.197383
-0.203813
-0.213694
-0.211739
-0.217764
-0.211081
-0.213515
-0.212648
-0.211982
-0.214921
-0.21498
-0.215919
-0.2188
-0.216128
-0.214622
-0.213668
-0.188999
-0.185964
-0.198303
-0.201884
-0.202567
-0.186378
-0.188611
-0.176738
-0.164104
-0.164698
-0.175012
-0.164886
-0.17682
-0.174918
-0.189594
-0.204069
-0.199176
-0.18745
-0.203427
-0.189979
-0.18705
-0.281841
-0.26245
-0.30327
-0.251265
-0.30585
-0.279565
-0.252889
-0.246297
-0.234017
-0.223155
-0.216368
-0.247354
-0.222555
-0.233199
-0.245021
-0.220906
-0.231086
-0.215578
-0.243733
-0.221722
-0.232168
-0.278059
-0.23911
-0.238333
-0.184396
-0.196025
-0.211583
-0.201429
-0.196006
-0.202206
-0.18502
-0.184075
-0.203665
-0.19708
-0.212226
-0.196271
-0.184166
-0.202702
-0.253919
-0.249506
-0.257566
-0.255428
-0.251463
-0.25937
-0.25116
-0.252962
-0.247391
-0.255574
-0.250192
-0.256329
-0.251811
-0.248545
-0.255778
-0.262366
-0.256039
-0.25356
-0.260495
-0.258087
-0.25197
-0.243223
-0.245399
-0.270668
-0.264405
-0.261437
-0.250387
-0.248014
-0.285708
-0.290076
-0.295962
-0.278128
-0.297611
-0.284482
-0.280093
-0.277176
-0.276822
-0.267981
-0.271191
-0.27229
-0.273892
-0.283849
-0.277684
-0.268616
-0.270207
-0.265843
-0.275663
-0.271046
-0.272281
-0.27501
-0.267881
-0.265023
-0.261669
-0.274115
-0.266305
-0.268834
-0.284622
-0.286083
-0.296958
-0.277962
-0.296011
-0.285472
-0.277072
-0.274918
-0.268301
-0.26194
-0.269971
-0.266795
-0.276064
-0.268792
-0.260022
-0.25726
-0.284906
-0.267448
-0.270976
-0.252377
-0.254874
-0.261044
-0.249532
-0.260209
-0.250875
-0.258425
-0.265407
-0.252496
-0.262484
-0.259235
-0.261656
-0.261738
-0.265246
-0.257006
-0.263905
-0.261318
-0.263128
-0.254222
-0.260242
-0.259378
-0.264993
-0.255835
-0.233943
-0.22429
-0.208535
-0.215443
-0.223056
-0.235658
-0.214348
-0.259699
-0.249528
-0.235747
-0.277999
-0.238001
-0.281421
-0.255985
-0.231852
-0.21177
-0.207162
-0.219813
-0.221326
-0.212964
-0.229746
-0.164535
-0.147806
-0.178627
-0.164708
-0.170773
-0.174527
-0.172233
-0.173831
-0.177882
-0.184761
-0.180842
-0.19168
-0.199058
-0.179146
-0.198234
-0.184142
-0.187284
-0.197802
-0.183196
-0.193475
-0.182125
-0.186701
-0.198037
-0.199087
-0.179311
-0.1837
-0.195441
-0.19749
-0.185788
-0.197206
-0.210332
-0.211506
-0.213626
-0.210582
-0.211857
-0.210333
-0.211165
-0.20325
-0.193875
-0.205133
-0.20629
-0.201674
-0.207925
-0.197398
-0.234364
-0.188097
-0.178111
-0.177576
-0.233391
-0.269198
-0.254993
-0.256293
-0.17835
-0.188543
-0.231537
-0.177968
-0.232489
-0.187672
-0.185166
-0.196148
-0.20091
-0.184866
-0.187945
-0.200258
-0.176453
-0.164473
-0.168504
-0.174491
-0.166795
-0.17399
-0.177174
-0.187199
-0.19877
-0.195198
-0.184008
-0.184222
-0.199342
-0.18714
-0.187283
-0.198394
-0.197226
-0.202984
-0.194953
-0.189233
-0.201731
-0.271503
-0.252027
-0.245586
-0.179283
-0.192213
-0.229408
-0.224481
-0.184861
-0.246837
-0.244105
-0.232892
-0.274038
-0.230131
-0.270019
-0.251433
-0.22115
-0.208145
-0.201346
-0.202055
-0.212401
-0.207342
-0.21654
-0.224386
-0.210088
-0.217641
-0.203563
-0.21576
-0.227008
-0.20881
-0.231292
-0.221409
-0.219935
-0.232566
-0.245455
-0.266749
-0.267602
-0.244209
-0.223875
-0.218007
-0.21215
-0.209615
-0.21365
-0.22247
-0.219393
-0.237214
-0.242428
-0.252211
-0.233186
-0.251486
-0.23817
-0.232178
-0.246481
-0.268787
-0.268222
-0.247463
-0.229992
-0.216793
-0.218437
-0.228499
-0.225065
-0.216372
-0.210571
-0.221469
-0.215019
-0.226252
-0.220326
-0.227395
-0.235562
-0.231897
-0.200299
-0.224105
-0.221414
-0.236358
-0.243261
-0.237271
-0.177361
-0.17064
-0.180368
-0.170247
-0.175715
-0.18237
-0.169563
-0.179745
-0.194262
-0.179843
-0.191867
-0.186553
-0.179966
-0.191663
-0.176246
-0.17689
-0.180107
-0.178826
-0.174497
-0.182141
-0.176169
-0.208793
-0.213812
-0.206997
-0.21538
-0.203615
-0.211656
-0.207479
-0.206564
-0.196462
-0.174667
-0.190575
-0.182011
-0.19201
-0.195726
-0.183491
-0.218082
-0.179384
-0.200427
-0.215079
-0.21373
-0.179219
-0.220147
-0.204284
-0.202454
-0.205501
-0.202722
-0.204606
-0.209004
-0.192207
-0.201768
-0.202018
-0.210784
-0.191058
-0.210536
-0.218216
-0.216961
-0.212374
-0.206965
-0.226358
-0.228594
-0.239144
-0.226763
-0.19552
-0.250431
-0.248331
-0.232299
-0.251523
-0.203028
-0.212239
-0.210511
-0.205103
-0.196488
-0.188782
-0.20279
-0.198916
-0.20445
-0.194657
-0.19013
-0.19521
-0.189117
-0.192369
-0.192621
-0.191703
-0.170393
-0.188777
-0.181582
-0.186418
-0.193793
-0.180606
-0.197867
-0.199354
-0.195914
-0.200465
-0.200934
-0.206933
-0.208774
-0.198803
-0.198339
-0.207606
-0.199884
-0.191971
-0.206031
-0.200168
-0.191003
-0.234847
-0.222723
-0.233675
-0.224092
-0.239652
-0.245009
-0.252521
-0.233946
-0.253188
-0.238746
-0.234778
-0.250082
-0.27107
-0.270282
-0.251091
-0.228909
-0.224524
-0.213404
-0.221789
-0.220128
-0.224077
-0.230361
-0.249189
-0.269193
-0.269707
-0.248289
-0.228256
-0.217448
-0.222291
-0.212997
-0.227099
-0.218843
-0.223123
-0.235974
-0.226631
-0.225441
-0.237016
-0.274597
-0.274993
-0.274482
-0.276243
-0.276261
-0.287434
-0.278509
-0.286023
-0.264242
-0.24852
-0.259148
-0.254827
-0.264715
-0.260289
-0.25422
-0.268256
-0.261705
-0.272478
-0.265497
-0.269018
-0.271616
-0.26117
-0.275482
-0.278448
-0.276866
-0.277256
-0.27446
-0.280703
-0.272174
-0.284039
-0.268313
-0.270264
-0.262485
-0.265261
-0.269901
-0.271075
-0.261315
-0.240176
-0.237813
-0.250915
-0.241836
-0.245439
-0.23241
-0.235055
-0.291166
-0.277775
-0.271835
-0.286361
-0.273456
-0.28751
-0.278402
-0.295048
-0.312356
-0.286396
-0.272031
-0.272254
-0.328678
-0.268623
-0.285509
-0.284402
-0.293276
-0.285916
-0.296123
-0.287198
-0.285295
-0.294746
-0.308144
-0.347898
-0.2641
-0.28887
-0.274571
-0.271779
-0.278104
-0.272254
-0.282158
-0.280612
-0.290251
-0.304195
-0.293318
-0.301371
-0.221336
-0.223964
-0.235855
-0.238038
-0.234532
-0.229285
-0.2267
-0.298523
-0.27292
-0.280912
-0.256807
-0.264089
-0.247672
-0.259273
-0.256973
-0.267639
-0.256611
-0.259216
-0.31579
-0.261352
-0.256076
-0.263458
-0.269498
-0.255493
-0.272247
-0.331722
-0.259821
-0.261962
-0.279517
-0.270111
-0.280433
-0.302502
-0.268657
-0.26612
-0.263063
-0.278962
-0.25627
-0.272215
-0.287434
-0.279828
-0.280838
-0.28666
-0.282263
-0.279221
-0.277276
-0.272691
-0.283052
-0.276474
-0.278471
-0.2968
-0.308358
-0.297752
-0.307373
-0.289111
-0.294296
-0.286349
-0.296656
-0.288223
-0.286796
-0.297422
-0.288207
-0.282719
-0.289167
-0.281686
-0.281812
-0.275345
-0.272403
-0.27779
-0.275987
-0.281351
-0.278077
-0.295955
-0.305475
-0.294822
-0.306545
-0.223119
-0.209838
-0.211511
-0.220387
-0.241171
-0.265775
-0.242884
-0.26439
-0.219108
-0.216892
-0.205635
-0.210604
-0.215184
-0.220982
-0.208885
-0.229938
-0.237378
-0.223907
-0.244398
-0.226163
-0.246297
-0.225983
-0.216908
-0.205615
-0.204343
-0.211902
-0.213657
-0.20711
-0.214171
-0.225096
-0.215174
-0.226967
-0.213341
-0.239357
-0.261568
-0.263045
-0.23615
-0.18908
-0.196507
-0.18962
-0.195757
-0.177113
-0.173391
-0.169586
-0.167745
-0.176411
-0.163266
-0.170458
-0.172365
-0.168434
-0.171522
-0.178225
-0.195079
-0.18279
-0.197203
-0.192664
-0.193602
-0.184906
-0.202216
-0.17837
-0.174743
-0.171331
-0.181492
-0.197427
-0.191611
-0.201386
-0.201299
-0.189516
-0.195346
-0.183166
-0.192685
-0.183871
-0.187421
-0.198318
-0.189196
-0.176026
-0.190241
-0.182796
-0.189917
-0.189414
-0.181776
-0.190007
-0.194969
-0.193374
-0.18953
-0.194571
-0.189639
-0.18763
-0.190883
-0.186848
-0.196126
-0.193512
-0.191264
-0.195516
-0.18735
-0.235921
-0.187325
-0.178059
-0.179116
-0.237319
-0.239218
-0.260225
-0.260749
-0.181824
-0.187432
-0.24024
-0.180235
-0.239053
-0.242557
-0.192074
-0.194539
-0.242568
-0.189127
-0.224486
-0.257519
-0.251682
-0.183569
-0.190282
-0.241449
-0.241998
-0.1862
-0.192834
-0.200389
-0.201526
-0.191782
-0.191169
-0.187732
-0.194819
-0.201144
-0.186301
-0.192856
-0.199486
-0.181389
-0.166548
-0.17248
-0.173622
-0.174116
-0.174888
-0.180132
-0.187786
-0.185972
-0.182953
-0.190163
-0.185421
-0.177413
-0.179928
-0.18376
-0.18955
-0.196871
-0.193659
-0.184158
-0.185203
-0.197894
-0.188692
-0.194788
-0.205179
-0.196788
-0.203327
-0.218233
-0.204349
-0.214443
-0.203482
-0.199943
-0.234283
-0.220238
-0.243001
-0.21533
-0.247929
-0.216731
-0.215044
-0.207627
-0.172414
-0.195755
-0.211974
-0.20715
-0.186666
-0.211606
-0.218012
-0.180426
-0.195683
-0.216312
-0.203793
-0.210534
-0.201896
-0.210835
-0.211359
-0.204888
-0.227855
-0.266233
-0.282079
-0.230973
-0.284227
-0.288726
-0.276586
-0.291757
-0.28326
-0.277413
-0.292311
-0.274926
-0.272334
-0.259038
-0.260367
-0.275713
-0.259533
-0.270882
-0.274043
-0.258486
-0.2686
-0.259744
-0.273027
-0.259322
-0.269578
-0.204887
-0.207372
-0.232398
-0.238517
-0.233889
-0.203189
-0.209361
-0.178978
-0.175737
-0.177988
-0.161279
-0.180927
-0.176089
-0.15876
-0.206708
-0.236938
-0.240322
-0.213378
-0.235454
-0.208433
-0.21151
-0.212175
-0.214831
-0.236815
-0.243281
-0.212933
-0.238601
-0.216666
-0.184931
-0.182073
-0.17994
-0.163964
-0.182838
-0.182244
-0.16663
-0.211245
-0.238009
-0.243749
-0.215078
-0.238796
-0.209874
-0.216339
-0.159558
-0.193548
-0.179241
-0.211767
-0.17727
-0.162055
-0.209241
-0.166493
-0.199396
-0.181103
-0.213089
-0.183482
-0.163517
-0.215571
-0.127555
-0.163913
-0.148305
-0.17777
-0.146673
-0.129416
-0.176062
-0.133103
-0.168292
-0.14986
-0.179005
-0.151577
-0.130833
-0.181231
-0.272819
-0.282241
-0.266492
-0.28691
-0.274311
-0.265156
-0.285863
-0.259054
-0.252
-0.240905
-0.241601
-0.257497
-0.242694
-0.253408
-0.260233
-0.245936
-0.256339
-0.24321
-0.261947
-0.244055
-0.254761
-0.199158
-0.204962
-0.230544
-0.233027
-0.228937
-0.201029
-0.202933
-0.168582
-0.165768
-0.163408
-0.143735
-0.166078
-0.165812
-0.146277
-0.197425
-0.225311
-0.231089
-0.198546
-0.227413
-0.195091
-0.20077
-0.189389
-0.189831
-0.218055
-0.223241
-0.187136
-0.220088
-0.192015
-0.162001
-0.159705
-0.161751
-0.141377
-0.164372
-0.159513
-0.138783
-0.191144
-0.22371
-0.225111
-0.196366
-0.221647
-0.193394
-0.194142
-0.148385
-0.18355
-0.164781
-0.196458
-0.167029
-0.146812
-0.198108
-0.14305
-0.177431
-0.16306
-0.193494
-0.160933
-0.1448
-0.191499
-0.040398
-0.0587463
-0.0740778
-0.062612
-0.0365657
-0.0606262
-0.0636765
-0.0167061
0.0162795
-0.0291376
-0.0324783
0.0110537
-0.0421333
-0.0134938
-0.0146481
-0.0324974
0.0253602
-0.0318364
0.0120821
-0.0080372
-0.0435187
-0.0399421
-0.0685883
-0.0456728
-0.0579282
-0.0549496
-0.0619712
-0.035943
-0.0140102
-0.015352
-0.000513853
-0.0126588
-0.045157
-0.0412357
-0.0443874
-0.00107834
-0.0118095
0.00462842
0.027871
-0.0199915
-0.0170472
0.0285815
0.00306464
0.0005224
-0.00635587
0.0473267
-0.00150821
0.00364274
0.00495429
0.00608563
-0.00910808
0.00667137
-0.0209197
0.0248715
0.0314451
0.0070596
0.00592421
-0.0146356
-0.00349769
-0.0155254
-0.000916293
-0.0457294
-0.0407885
-0.0130727
-0.0446013
-0.0118536
-0.00289779
-0.122738
-0.124733
-0.109431
-0.144759
-0.122384
-0.111339
-0.145313
-0.0992065
-0.0974528
-0.0695882
-0.0787797
-0.0940962
-0.0698858
-0.104129
-0.0986267
-0.0745055
-0.0914414
-0.0684871
-0.0978055
-0.0925647
-0.0735987
-0.100904
-0.0889588
-0.0815505
-0.108716
-0.107533
-0.0765337
-0.103741
-0.120505
-0.142085
-0.124052
-0.151413
-0.126311
-0.115266
-0.145555
-0.0954506
-0.0823004
-0.100205
-0.0560177
-0.104969
-0.0869373
-0.0686721
-0.124512
-0.130702
-0.154489
-0.150757
-0.128732
-0.126908
-0.148607
-0.022603
-0.0539799
-0.0684609
-0.0588132
-0.0309281
-0.0386066
-0.0512539
0.0112904
0.0365802
0.00172198
0.000912378
0.0342965
0.0140714
0.00283377
0.0070125
-0.033324
0.0298983
0.0023497
0.035435
-0.00437911
0.000677468
-0.0179022
-0.0572911
-0.00290367
-0.0329675
-0.00882946
-0.0344608
-0.0430382
-0.0222956
-0.0169757
-0.00672041
0.0124006
0.0262705
-0.0146599
-0.0163896
0.0354501
-0.00558624
0.00103243
-0.0100757
-0.00346888
-0.011552
-0.0201901
-0.0321755
-0.0440363
-0.0379489
-0.0238676
-0.0280178
-0.0373114
0.0070764
0.0270853
0.0340168
0.00737757
-0.0107237
-0.0468875
-0.014845
-0.0448479
-0.0188136
-0.00549912
-0.0473133
-0.0298594
-0.0469135
-0.0403671
-0.0361022
-0.10526
-0.0885658
-0.0836509
-0.109152
-0.0839837
-0.1086
-0.105224
-0.128795
-0.153165
-0.130919
-0.160071
-0.131982
-0.127768
-0.153536
-0.104572
-0.0855887
-0.0797561
-0.105009
-0.0827013
-0.107215
-0.102674
-0.128953
-0.132049
-0.159701
-0.152455
-0.132399
-0.128481
-0.153238
-0.0192959
-0.0382262
-0.0129395
-0.0439995
-0.0116543
-0.0214175
-0.0440731
-0.00193585
0.0212014
0.00240977
-0.0233273
0.0282506
-0.00874854
-0.0139226
0.00535114
0.00780008
0.0455665
0.0143567
0.036068
0.0146028
-0.00371418
-0.0255037
-0.0502353
-0.037392
-0.0539672
-0.0312934
-0.0295123
-0.0490001
-0.086213
-0.0552954
-0.0606925
-0.0892997
-0.0865034
-0.0570029
-0.0888018
-0.113943
-0.14259
-0.11464
-0.154691
-0.116633
-0.112052
-0.143939
-0.0834893
-0.0511312
-0.0813798
-0.0512588
-0.0834011
-0.0816008
-0.0535607
-0.116452
-0.120759
-0.156615
-0.14778
-0.119083
-0.118195
-0.146613
-0.0882419
-0.0773194
-0.083301
-0.0805727
-0.104599
-0.059498
-0.0922622
-0.0761629
-0.0883054
-0.108747
-0.0556606
-0.0841935
-0.0776477
-0.0663929
-0.0927519
-0.0956569
-0.0953397
-0.0900899
-0.1023
-0.0974816
-0.0774976
-0.0718111
-0.0456346
-0.0826304
-0.0498053
-0.0920539
-0.0772494
-0.0472476
-0.0612367
-0.0665493
-0.135459
-0.141226
-0.131741
-0.153539
-0.137963
-0.127838
-0.153107
-0.113695
-0.100993
-0.0814231
-0.0850168
-0.10534
-0.108849
-0.09136
-0.119572
-0.104775
-0.113357
-0.0852768
-0.124074
-0.109261
-0.0989123
0.00308914
-0.0249585
-0.0326845
-0.00350463
-0.00414948
-0.027418
0.00506032
0.0401572
0.0775811
0.0529686
0.0802471
0.0735544
0.0450373
0.0455081
0.00888607
-0.019287
-0.0197307
0.0180936
0.0129925
-0.0229703
0.0128097
0.0331374
0.0216587
0.056339
0.0651757
0.0660933
0.0239854
0.0342626
-0.0638362
-0.0712089
-0.0716656
-0.0658587
-0.0369501
-0.00392699
-0.0158537
-0.0267619
-0.0542671
-0.0381199
-0.0559891
-0.0441623
-0.0435912
-0.0454503
-0.0517255
-0.0733662
-0.0690918
-0.0395721
-0.0586338
-0.0371618
-0.0821868
-0.061732
-0.0462211
-0.0364815
-0.0250503
-0.0562902
-0.0539032
-0.0520091
-0.0449884
-0.0584975
-0.0950946
-0.0648562
-0.0688645
-0.0928429
-0.0691981
-0.0919163
-0.0960308
-0.124724
-0.152597
-0.129329
-0.159154
-0.126488
-0.127594
-0.151728
-0.0979392
-0.0735559
-0.076757
-0.10234
-0.100637
-0.0730409
-0.0994687
-0.12268
-0.123211
-0.149279
-0.158254
-0.120482
-0.125237
-0.150539
-0.242497
-0.232321
-0.23425
-0.241271
-0.256025
-0.274361
-0.273954
-0.257021
-0.255339
-0.273392
-0.273674
-0.254581
-0.243613
-0.238883
-0.236029
-0.245329
-0.224453
-0.221427
-0.221129
-0.190347
-0.206751
-0.209614
-0.216432
-0.215051
-0.218511
-0.218277
-0.223552
-0.221536
-0.221533
-0.214179
-0.215816
-0.221348
-0.210313
-0.217562
-0.237633
-0.227728
-0.222449
-0.215899
-0.218396
-0.213353
-0.219993
-0.16694
-0.167358
-0.164974
-0.178129
-0.174767
-0.16129
-0.172985
-0.177406
-0.177296
-0.213591
-0.174756
-0.180131
-0.179283
-0.198153
-0.176265
-0.213311
-0.184833
-0.174713
-0.22889
-0.22534
-0.228153
-0.224369
-0.237738
-0.272813
-0.265842
-0.244539
-0.232298
-0.24596
-0.257093
-0.226299
-0.233279
-0.235261
-0.230725
-0.239672
-0.239532
-0.231027
-0.240423
-0.229668
-0.252815
-0.271858
-0.272538
-0.25197
-0.253486
-0.273166
-0.272933
-0.254046
-0.238676
-0.227272
-0.237679
-0.228489
-0.18335
-0.204118
-0.20162
-0.20909
-0.216433
-0.210424
-0.211624
-0.213193
-0.211757
-0.298938
-0.294483
-0.293098
-0.300524
-0.312398
-0.297267
-0.31017
-0.297788
-0.297782
-0.291119
-0.296327
-0.292236
-0.314273
-0.298517
-0.31614
-0.298118
-0.149135
-0.14896
-0.145682
-0.301633
-0.295934
-0.299579
-0.297291
-0.309698
-0.32596
-0.323071
-0.312075
-0.309314
-0.316984
-0.320998
-0.306711
-0.303316
-0.297095
-0.299401
-0.30068
-0.297763
-0.29533
-0.294181
-0.299001
-0.304689
-0.314978
-0.304237
-0.315253
-0.297324
-0.29266
-0.296619
-0.293548
-0.304869
-0.316398
-0.315186
-0.306044
-0.153772
-0.152255
-0.155853
-0.303421
-0.29528
-0.301779
-0.296517
-0.317798
-0.299912
-0.298835
-0.319233
-0.316873
-0.298283
-0.316599
-0.298327
-0.305707
-0.298486
-0.298582
-0.30711
-0.251513
-0.255497
-0.25011
-0.255419
-0.259294
-0.274476
-0.257721
-0.275131
-0.249368
-0.241411
-0.246654
-0.24611
-0.260457
-0.276412
-0.275509
-0.262458
-0.251106
-0.259408
-0.25783
-0.257141
-0.214647
-0.177169
-0.206557
-0.27112
-0.254442
-0.174442
-0.210274
-0.242365
-0.218351
-0.188175
-0.181051
-0.242073
-0.242382
-0.235983
-0.209476
-0.247746
-0.235182
-0.172285
-0.167722
-0.169245
-0.171813
-0.175161
-0.166591
-0.172425
-0.185656
-0.177777
-0.201907
-0.177697
-0.184286
-0.182365
-0.172571
-0.199009
-0.177004
-0.17578
-0.192152
-0.199171
-0.194658
-0.171768
-0.190444
-0.188465
-0.201763
-0.199318
-0.196909
-0.257565
-0.257999
-0.251811
-0.261439
-0.254663
-0.273677
-0.264017
-0.249067
-0.25563
-0.235641
-0.242978
-0.255633
-0.253363
-0.239557
-0.245594
-0.2465
-0.206866
-0.211312
-0.205201
-0.176132
-0.192161
-0.193973
-0.209117
-0.201112
-0.203286
-0.261889
-0.258664
-0.258148
-0.260307
-0.265557
-0.274003
-0.277654
-0.257675
-0.265722
-0.27662
-0.277553
-0.263558
-0.261907
-0.24842
-0.255013
-0.258412
-0.260962
-0.27817
-0.277958
-0.258764
-0.27552
-0.257137
-0.262645
-0.265997
-0.270461
-0.284536
-0.273799
-0.272174
-0.276184
-0.264029
-0.267745
-0.280494
-0.286282
-0.274868
-0.273644
-0.278522
-0.269266
-0.259049
-0.273988
-0.269378
-0.252978
-0.272459
-0.255211
-0.256821
-0.153732
-0.160139
-0.155051
-0.148947
-0.15567
-0.154365
-0.161609
-0.158067
-0.156386
-0.0928823
-0.122408
-0.106769
-0.124931
-0.0893527
-0.110684
-0.132948
-0.156341
-0.169175
-0.152857
-0.146697
-0.166714
-0.149881
-0.23364
-0.282917
-0.252877
-0.311437
-0.278407
-0.235692
-0.253746
-0.200053
-0.168481
-0.181177
-0.215134
-0.22028
-0.171875
-0.196619
-0.203299
-0.231079
-0.185059
-0.177404
-0.225859
-0.17496
-0.206106
-0.231152
-0.316069
-0.267888
-0.253018
-0.273341
-0.253845
-0.228137
-0.151611
-0.157109
-0.158706
-0.16595
-0.169986
-0.163695
-0.159731
-0.167763
-0.161734
-0.238348
-0.28676
-0.292413
-0.251732
-0.250005
-0.289995
-0.237233
-0.211557
-0.181966
-0.194976
-0.246085
-0.181613
-0.243181
-0.212317
-0.210328
-0.235802
-0.193447
-0.179431
-0.180781
-0.239896
-0.20848
-0.238767
-0.284967
-0.24529
-0.293949
-0.247877
-0.292346
-0.23871
-0.265119
-0.2806
-0.259911
-0.287397
-0.263922
-0.282759
-0.260864
-0.272485
-0.278209
-0.291078
-0.286986
-0.277544
-0.285429
-0.273298
-0.271632
-0.282311
-0.275869
-0.290063
-0.276827
-0.270489
-0.28391
-0.265924
-0.290078
-0.287099
-0.261933
-0.284836
-0.261379
-0.266673
-0.296664
-0.309765
-0.313942
-0.299375
-0.317105
-0.29679
-0.298084
-0.28969
-0.28071
-0.317924
-0.295841
-0.291026
-0.316427
-0.279003
-0.297358
-0.311257
-0.322432
-0.298668
-0.298389
-0.319746
-0.29804
-0.288391
-0.314717
-0.29388
-0.273527
-0.315135
-0.287465
-0.276842
-0.142345
-0.124766
-0.127906
-0.296108
-0.325269
-0.315204
-0.311193
-0.295935
-0.335689
-0.304775
-0.336325
-0.316133
-0.377932
-0.312353
-0.33353
-0.352093
-0.304007
-0.300928
-0.362306
-0.300223
-0.303531
-0.307119
-0.342585
-0.31578
-0.31869
-0.325101
-0.312353
-0.320468
-0.310297
-0.310874
-0.138437
-0.121745
-0.118447
-0.298291
-0.296973
-0.31395
-0.303775
-0.299015
-0.31306
-0.303034
-0.306628
-0.292861
-0.264826
-0.314869
-0.256136
-0.301642
-0.297452
-0.305759
-0.303731
-0.301298
-0.322201
-0.26647
-0.2868
-0.289417
-0.344113
-0.25441
-0.30371
-0.310446
-0.305707
-0.312133
-0.302932
-0.312688
-0.304121
-0.307978
-0.312586
-0.319102
-0.329096
-0.307984
-0.3186
-0.312494
-0.303484
-0.311018
-0.302471
-0.313848
-0.303716
-0.302281
-0.313113
-0.308281
-0.318244
-0.328689
-0.312296
-0.318401
-0.30876
-0.312581
-0.249548
-0.243491
-0.257787
-0.25658
-0.259311
-0.245576
-0.24744
-0.259631
-0.268611
-0.271083
-0.278226
-0.261931
-0.26639
-0.268371
-0.252043
-0.261952
-0.26602
-0.25062
-0.254536
-0.26287
-0.248122
-0.257152
-0.262182
-0.275368
-0.260961
-0.263807
-0.265182
-0.254976
-0.223145
-0.263421
-0.244428
-0.232086
-0.253811
-0.226667
-0.229803
-0.208278
-0.177984
-0.205501
-0.265481
-0.255894
-0.177806
-0.212718
-0.208849
-0.254092
-0.205922
-0.180998
-0.255463
-0.180484
-0.209774
-0.221797
-0.241688
-0.249663
-0.212442
-0.245761
-0.228983
-0.226503
-0.124728
-0.143757
-0.139452
-0.164363
-0.138757
-0.133283
-0.161567
-0.15938
-0.17651
-0.162359
-0.162652
-0.176986
-0.163833
-0.189256
-0.189599
-0.186512
-0.163886
-0.174239
-0.177039
-0.186022
-0.179375
-0.183259
-0.168052
-0.177061
-0.170547
-0.158591
-0.171506
-0.168763
-0.178942
-0.176593
-0.173142
-0.233029
-0.272202
-0.234954
-0.260013
-0.237417
-0.230276
-0.279618
-0.212397
-0.182075
-0.19913
-0.248258
-0.182121
-0.212528
-0.250335
-0.211654
-0.253086
-0.181653
-0.200471
-0.181792
-0.211008
-0.25143
-0.235791
-0.265098
-0.2427
-0.29251
-0.2377
-0.240098
-0.287479
-0.248182
-0.248232
-0.241223
-0.250383
-0.244987
-0.243392
-0.249209
-0.237411
-0.268924
-0.222921
-0.267144
-0.225556
-0.266685
-0.245299
-0.252059
-0.256549
-0.252382
-0.240043
-0.250434
-0.249586
-0.253518
-0.254491
-0.255415
-0.258075
-0.270479
-0.265098
-0.25255
-0.254882
-0.121316
-0.1585
-0.139626
-0.169562
-0.140515
-0.120332
-0.170642
-0.118442
-0.155784
-0.13869
-0.168651
-0.137611
-0.119618
-0.167325
-0.249625
-0.281071
-0.257108
-0.261645
-0.24778
-0.257461
-0.263664
-0.234693
-0.23494
-0.217064
-0.214343
-0.236173
-0.215557
-0.233949
-0.233175
-0.212141
-0.231184
-0.212445
-0.231202
-0.214061
-0.232592
-0.160432
-0.143218
-0.186764
-0.180815
-0.18752
-0.160376
-0.142967
-0.140542
-0.113998
-0.126239
-0.104232
-0.136054
-0.123989
-0.130802
-0.159462
-0.187672
-0.182528
-0.136946
-0.187725
-0.158285
-0.141355
-0.160108
-0.15288
-0.192674
-0.190977
-0.161117
-0.191317
-0.150584
-0.134947
-0.135711
-0.13117
-0.110879
-0.13572
-0.132808
-0.109411
-0.15932
-0.188707
-0.188846
-0.144973
-0.190082
-0.158783
-0.14781
-0.108385
-0.140228
-0.126953
-0.163952
-0.122928
-0.111705
-0.15928
-0.114528
-0.150887
-0.130562
-0.162333
-0.13249
-0.112618
-0.162667
-0.0680476
-0.0838664
-0.0907786
-0.0371123
-0.0408887
-0.0870956
-0.0650579
-0.082196
-0.0855615
-0.0874701
-0.0951438
-0.0844144
-0.0855437
-0.0919693
-0.0714976
-0.0485371
-0.0947818
-0.0942556
-0.0445872
-0.0751175
-0.0907744
-0.0919834
-0.0944911
-0.0901723
-0.0985544
-0.0932236
-0.0886065
-0.101873
-0.0857001
-0.109276
-0.0636106
-0.11143
-0.0600062
-0.0892884
-0.105612
-0.082224
-0.0523187
-0.0980625
-0.10702
-0.0785702
-0.0562089
-0.101676
-0.230153
-0.278689
-0.252962
-0.246985
-0.233277
-0.25091
-0.243404
-0.2101
-0.210326
-0.188982
-0.184888
-0.207765
-0.191507
-0.212205
-0.211968
-0.196179
-0.216591
-0.187345
-0.214918
-0.193432
-0.214242
-0.157925
-0.142363
-0.185202
-0.173179
-0.183304
-0.159329
-0.141251
-0.133922
-0.102702
-0.111325
-0.128324
-0.131998
-0.113087
-0.130042
-0.156311
-0.178786
-0.169837
-0.138257
-0.181276
-0.154293
-0.139707
-0.149084
-0.132319
-0.169547
-0.156848
-0.146718
-0.172235
-0.13413
-0.128367
-0.0938393
-0.11031
-0.126379
-0.130583
-0.10788
-0.124625
-0.150652
-0.176813
-0.160047
-0.136826
-0.174211
-0.152773
-0.1355
-0.0960854
-0.124833
-0.108671
-0.140895
-0.10978
-0.0972846
-0.145548
-0.0965311
-0.113299
-0.0676203
-0.123611
-0.0929081
-0.0716373
-0.116908
-0.107087
-0.110499
-0.109297
-0.124543
-0.106929
-0.108809
-0.119829
-0.0999075
-0.0842423
-0.127891
-0.122064
-0.0764258
-0.106934
-0.120815
-0.267196
-0.298088
-0.261447
-0.326145
-0.260746
-0.267272
-0.300323
-0.275579
-0.281456
-0.298907
-0.300447
-0.280751
-0.297916
-0.276141
-0.275541
-0.294463
-0.280141
-0.297711
-0.280568
-0.275226
-0.296085
-0.266879
-0.328089
-0.257229
-0.30919
-0.25919
-0.303613
-0.26732
-0.152344
-0.156011
-0.151134
-0.144445
-0.147331
-0.148568
-0.154878
-0.148458
-0.149977
-0.216508
-0.242174
-0.302245
-0.242509
-0.248746
-0.21215
-0.245552
-0.188919
-0.164579
-0.169915
-0.210168
-0.205592
-0.160177
-0.192865
-0.18446
-0.196433
-0.166544
-0.148482
-0.200639
-0.154641
-0.180198
-0.220759
-0.30776
-0.261681
-0.251053
-0.255507
-0.224696
-0.248486
-0.0939214
-0.102648
-0.093865
-0.0769824
-0.0810137
-0.124969
-0.150596
-0.152038
-0.14762
-0.130668
-0.151413
-0.141858
-0.202438
-0.235384
-0.238981
-0.285015
-0.235516
-0.207357
-0.229345
-0.161386
-0.108294
-0.146777
-0.181277
-0.120327
-0.185336
-0.152183
-0.168966
-0.19255
-0.140676
-0.156088
-0.131182
-0.174862
-0.189554
-0.1968
-0.279056
-0.227943
-0.220795
-0.231587
-0.224253
-0.19082
-0.267529
-0.296154
-0.311069
-0.26218
-0.267649
-0.293989
-0.262358
-0.274481
-0.278735
-0.293938
-0.288562
-0.279249
-0.273912
-0.290185
-0.274799
-0.293121
-0.280024
-0.294821
-0.279579
-0.275201
-0.291633
-0.267492
-0.305622
-0.289432
-0.262298
-0.267108
-0.291828
-0.262525
-0.141273
-0.145925
-0.144614
-0.142608
-0.148736
-0.143794
-0.146828
-0.150121
-0.145257
-0.30939
-0.342719
-0.346377
-0.312146
-0.311366
-0.34583
-0.309921
-0.299526
-0.290464
-0.325813
-0.310764
-0.299001
-0.326384
-0.291268
-0.30912
-0.340711
-0.31006
-0.344816
-0.308644
-0.310835
-0.345321
-0.299824
-0.327787
-0.312172
-0.2928
-0.327016
-0.300495
-0.291812
-0.0976418
-0.0839347
-0.311075
-0.329603
-0.312784
-0.334638
-0.330127
-0.311086
-0.313064
-0.311355
-0.313183
-0.348268
-0.333617
-0.333519
-0.314265
-0.310641
-0.312379
-0.333214
-0.348421
-0.316127
-0.333475
-0.315704
-0.312661
-0.310561
-0.335759
-0.331134
-0.313162
-0.330619
-0.312961
-0.310357
-0.310893
-0.331457
-0.32902
-0.312716
-0.312177
-0.328321
-0.311268
-0.312743
-0.316023
-0.33073
-0.345758
-0.312336
-0.316414
-0.331539
-0.310677
-0.330314
-0.311205
-0.326678
-0.310188
-0.311825
-0.327517
-0.312845
-0.332812
-0.34676
-0.316666
-0.316487
-0.332282
-0.31307
-0.12157
-0.0891945
-0.0854757
-0.31056
-0.347012
-0.312474
-0.348912
-0.310099
-0.347894
-0.313062
-0.302004
-0.296903
-0.321286
-0.333195
-0.331475
-0.295344
-0.303362
-0.301507
-0.328686
-0.293399
-0.318243
-0.300779
-0.329921
-0.294511
-0.310799
-0.351178
-0.349885
-0.314101
-0.348911
-0.31337
-0.31154
-0.268634
-0.241194
-0.316053
-0.339244
-0.246975
-0.330539
-0.268797
-0.277251
-0.281865
-0.303206
-0.304594
-0.276405
-0.282854
-0.306485
-0.268164
-0.318841
-0.254361
-0.315669
-0.26743
-0.251086
-0.322955
-0.277808
-0.313993
-0.306965
-0.284767
-0.283535
-0.309942
-0.278752
-0.134745
-0.177913
-0.187358
-0.219463
-0.136274
-0.144113
-0.17766
-0.112779
-0.0974648
-0.0932266
-0.121067
-0.113518
-0.0956259
-0.118354
-0.106704
-0.103084
-0.0921125
-0.0871882
-0.101503
-0.0919992
-0.106634
-0.132912
-0.214715
-0.132036
-0.164481
-0.13342
-0.173022
-0.13502
-0.0936954
-0.0709935
-0.131141
-0.0725919
-0.132769
-0.151345
-0.151789
-0.151256
-0.116725
-0.0880407
-0.149039
-0.150982
-0.150765
-0.128114
-0.134924
-0.131031
-0.122384
-0.138137
-0.131958
-0.137011
-0.136449
-0.132095
-0.160714
-0.180641
-0.197249
-0.258961
-0.207554
-0.149706
-0.197116
-0.130971
-0.0975304
-0.115455
-0.172039
-0.0917106
-0.14187
-0.161569
-0.122092
-0.106003
-0.0829132
-0.0791139
-0.0843734
-0.110433
-0.14245
-0.172952
-0.264667
-0.222877
-0.216107
-0.183086
-0.216321
-0.210022
-0.141556
-0.146104
-0.140575
-0.136653
-0.137523
-0.139087
-0.145021
-0.137034
-0.139298
-0.265
-0.23423
-0.347561
-0.298304
-0.26767
-0.225525
-0.352392
-0.278984
-0.288603
-0.321649
-0.337741
-0.287498
-0.331074
-0.27795
-0.279397
-0.318597
-0.285395
-0.317095
-0.28671
-0.279055
-0.323961
-0.260366
-0.287086
-0.209019
-0.34192
-0.217132
-0.351177
-0.253955
-0.234131
-0.249134
-0.218384
-0.207548
-0.249267
-0.20821
-0.234092
-0.260418
-0.274371
-0.311107
-0.289043
-0.276083
-0.286389
-0.258851
-0.258302
-0.282268
-0.306021
-0.274105
-0.274005
-0.282438
-0.258528
-0.236088
-0.219177
-0.251999
-0.210577
-0.251191
-0.209869
-0.235693
-0.273446
-0.23028
-0.271382
-0.0709127
-0.0706009
-0.0744641
-0.0749248
-0.0837651
-0.0804275
-0.384023
-0.321036
-0.325564
-0.333298
-0.386777
-0.329697
-0.0749591
-0.0821113
-0.0783469
-0.229339
-0.266849
-0.269209
-0.167222
-0.197311
-0.166792
-0.053855
-0.0737814
-0.0782524
-0.0945207
-0.0913195
-0.0903307
-0.110238
-0.136217
-0.13774
-0.137818
-0.111228
-0.138164
-0.0811552
-0.0862616
-0.085924
-0.197292
-0.165273
-0.166587
-0.123031
-0.186561
-0.173098
-0.196525
-0.188441
-0.12752
-0.171005
-0.124137
-0.197063
-0.185848
-0.172739
-0.189493
-0.170076
-0.129815
-0.276636
-0.232364
-0.279015
-0.368762
-0.353144
-0.341381
-0.0836072
-0.0873252
-0.090858
-0.0985993
-0.0928905
-0.0943366
-0.337239
-0.372674
-0.338592
-0.0861063
-0.0880412
-0.0900935
-0.232623
-0.282912
-0.280702
-0.150087
-0.168818
-0.191172
-0.178334
-0.179749
-0.166893
-0.14738
-0.119075
-0.0753199
-0.137581
-0.142089
-0.069483
-0.144355
-0.120907
-0.118526
-0.14282
-0.14001
-0.0766281
-0.0712349
-0.145416
-0.122403
-0.151895
-0.19137
-0.182141
-0.164728
-0.181304
-0.166247
-0.153065
-0.23176
-0.247736
-0.204991
-0.219215
-0.232787
-0.246958
-0.203337
-0.25602
-0.273294
-0.305348
-0.276286
-0.273969
-0.277613
-0.253911
-0.257282
-0.28037
-0.273871
-0.306018
-0.274247
-0.257817
-0.279041
-0.230105
-0.219477
-0.245746
-0.198091
-0.246253
-0.201375
-0.227353
-0.312738
-0.366778
-0.356895
-0.317314
-0.356461
-0.313651
-0.318122
-0.298417
-0.284418
-0.332796
-0.330439
-0.296177
-0.337106
-0.289816
-0.309631
-0.366916
-0.344914
-0.313036
-0.305144
-0.354312
-0.316628
-0.302656
-0.343624
-0.334318
-0.294646
-0.341648
-0.304824
-0.292331
-0.0815355
-0.308762
-0.34013
-0.313566
-0.331863
-0.332235
-0.312908
-0.309278
-0.308348
-0.311508
-0.333029
-0.346831
-0.332943
-0.309335
-0.309987
-0.309205
-0.338854
-0.331183
-0.312823
-0.331584
-0.309562
-0.313
-0.307465
-0.331664
-0.346194
-0.308275
-0.333089
-0.307594
-0.308714
-0.0760375
-0.313091
-0.360706
-0.355365
-0.316717
-0.31382
-0.353959
-0.315406
-0.305285
-0.297625
-0.335192
-0.33166
-0.303988
-0.337533
-0.298598
-0.312582
-0.358144
-0.351049
-0.314238
-0.311744
-0.35251
-0.314987
-0.305779
-0.341882
-0.296798
-0.335265
-0.305858
-0.34
-0.298236
-0.312475
-0.342701
-0.313928
-0.334036
-0.315767
-0.33416
-0.309796
-0.311337
-0.314478
-0.33489
-0.340071
-0.315101
-0.333559
-0.30637
-0.313653
-0.343923
-0.317803
-0.334165
-0.31664
-0.316416
-0.334252
-0.310527
-0.333843
-0.335383
-0.30728
-0.333014
-0.307906
-0.3077
-0.22817
-0.201172
-0.221351
-0.259391
-0.252777
-0.206935
-0.22632
-0.255165
-0.275347
-0.292566
-0.330705
-0.255827
-0.276929
-0.300184
-0.231576
-0.220389
-0.254674
-0.211787
-0.234585
-0.254887
-0.209626
-0.256483
-0.339612
-0.323154
-0.278736
-0.276437
-0.305152
-0.261255
-0.151319
-0.15924
-0.177366
-0.176011
-0.154382
-0.1543
-0.169904
-0.124869
-0.0971773
-0.0975328
-0.122956
-0.127106
-0.0971959
-0.12208
-0.125196
-0.129334
-0.0972658
-0.0968171
-0.125988
-0.0963996
-0.126112
-0.147567
-0.166292
-0.144075
-0.162488
-0.15237
-0.141234
-0.16432
-0.152538
-0.188105
-0.157829
-0.0475335
-0.0376807
-0.0959722
-0.0328805
-0.0904552
-0.0975715
-0.108507
-0.104807
-0.102473
-0.1346
-0.130708
-0.125169
-0.101164
-0.129584
-0.115346
-0.113664
-0.110373
-0.188456
-0.164177
-0.159385
-0.256137
-0.331132
-0.125153
-0.124988
-0.122085
-0.108036
-0.116897
-0.119821
-0.121513
-0.116058
-0.118966
-0.265529
-0.229475
-0.317167
-0.293991
-0.371307
-0.382183
-0.103005
-0.107894
-0.107119
-0.0989493
-0.112614
-0.109335
-0.112364
-0.113654
-0.110952
-0.223947
-0.288465
-0.283324
-0.39107
-0.155378
-0.157974
-0.17936
-0.191366
-0.182591
-0.154493
-0.161151
-0.125392
-0.0943123
-0.109195
-0.137323
-0.0954748
-0.125401
-0.133722
-0.126077
-0.129318
-0.0955141
-0.107247
-0.0962452
-0.125395
-0.132923
-0.154607
-0.189442
-0.18381
-0.16334
-0.155142
-0.182764
-0.160457
-0.23568
-0.211376
-0.196209
-0.263696
-0.227878
-0.194093
-0.308209
-0.271622
-0.288332
-0.343197
-0.333134
-0.275293
-0.287688
-0.344282
-0.23975
-0.216303
-0.204338
-0.332387
-0.246908
-0.196145
-0.31263
-0.267462
-0.335479
-0.281982
-0.33547
-0.285542
-0.262852
-0.346332
-0.0582034
-0.0801104
-0.0323183
-0.0806992
-0.0302125
-0.0611861
-0.077541
-0.0681579
-0.0729419
-0.0701484
-0.0751462
-0.0723462
-0.0656347
-0.077396
-0.0555821
-0.0243604
-0.0764987
-0.0721765
-0.0266399
-0.052939
-0.0745163
-0.0615702
-0.0681652
-0.0689552
-0.0733272
-0.067342
-0.0638916
-0.0711761
-0.0471783
-0.0689222
-0.017305
-0.0686597
-0.0183017
-0.0463436
-0.0676046
-0.0485721
-0.0221799
-0.0700576
-0.069297
-0.050925
-0.0195066
-0.067897
-0.192393
-0.229599
-0.231559
-0.196887
-0.191601
-0.231448
-0.198441
-0.174863
-0.185377
-0.155084
-0.138995
-0.176005
-0.154103
-0.184914
-0.17437
-0.153313
-0.185137
-0.137784
-0.173857
-0.153737
-0.184895
-0.129554
-0.126806
-0.141315
-0.120433
-0.140365
-0.13082
-0.124753
-0.111269
-0.0977506
-0.0847024
-0.116763
-0.11018
-0.0859196
-0.118385
-0.128448
-0.139138
-0.118977
-0.12099
-0.1397
-0.127499
-0.122802
-0.123871
-0.113712
-0.137859
-0.114546
-0.122217
-0.137834
-0.115503
-0.107483
-0.0929287
-0.0833834
-0.11496
-0.108827
-0.0823688
-0.113038
-0.125368
-0.138514
-0.115303
-0.119146
-0.138262
-0.126361
-0.117408
-0.0485467
-0.0730022
-0.02563
-0.0754293
-0.0238376
-0.0509899
-0.0705561
-0.0533995
-0.0537964
-0.0601958
-0.0600552
-0.0614364
-0.0521078
-0.0615832
-0.0464023
-0.0192284
-0.071513
-0.0663367
-0.0203672
-0.0450551
-0.0679088
-0.0437184
-0.0660539
-0.0166344
-0.0675497
-0.044849
-0.0164075
-0.0647013
-0.0509465
-0.0501775
-0.059109
-0.0588139
-0.0586015
-0.0510971
-0.0585095
-0.0436287
-0.0172103
-0.0677993
-0.064873
-0.0168554
-0.0438526
-0.0645603
-0.0810523
-0.0929639
-0.0939801
-0.075657
-0.0742661
-0.0940706
-0.0820223
-0.0801145
-0.0771752
-0.0831553
-0.0886195
-0.083389
-0.0792118
-0.0878373
-0.0781388
-0.0579525
-0.105778
-0.0992605
-0.0608283
-0.0763855
-0.0977547
-0.0779778
-0.0779187
-0.0826221
-0.0887493
-0.0824736
-0.0783571
-0.0887196
-0.0736387
-0.0974589
-0.0527101
-0.107176
-0.0538885
-0.0726
-0.0983511
-0.0746148
-0.0558635
-0.0992517
-0.108377
-0.0751796
-0.0552636
-0.0991422
-0.193748
-0.204528
-0.243828
-0.191853
-0.193486
-0.244803
-0.191356
-0.178174
-0.195733
-0.158395
-0.136628
-0.177895
-0.157967
-0.196081
-0.178032
-0.156666
-0.195633
-0.134861
-0.17761
-0.157343
-0.196135
-0.133249
-0.128832
-0.142047
-0.12515
-0.143069
-0.131961
-0.130989
-0.118238
-0.108085
-0.09595
-0.130151
-0.119667
-0.0941783
-0.128182
-0.134504
-0.144918
-0.126827
-0.135351
-0.143938
-0.135765
-0.133172
-0.13915
-0.142073
-0.148361
-0.134192
-0.139914
-0.147677
-0.140701
-0.122376
-0.114028
-0.0975707
-0.132075
-0.121062
-0.0992169
-0.133725
-0.138117
-0.145829
-0.132321
-0.137376
-0.146781
-0.136982
-0.139134
-0.056622
-0.0765324
-0.0302224
-0.0847012
-0.0325162
-0.053788
-0.0794734
-0.0648461
-0.0649157
-0.0732512
-0.0773045
-0.0710642
-0.0674047
-0.0745941
-0.0597643
-0.0399951
-0.0900813
-0.0861331
-0.0374469
-0.0625381
-0.08322
-0.0696467
-0.0959854
-0.0509161
-0.102455
-0.07115
-0.0490007
-0.0942634
-0.0718263
-0.0716974
-0.0750888
-0.0799987
-0.0770418
-0.0696222
-0.0823019
-0.0676364
-0.0440039
-0.0995549
-0.0894152
-0.0463573
-0.0652527
-0.0918836
-0.217249
-0.281396
-0.255384
-0.292936
-0.253535
-0.215333
-0.276318
-0.253361
-0.222074
-0.25679
-0.0670409
-0.0586388
-0.063906
-0.371566
-0.315997
-0.31033
-0.0626094
-0.0628877
-0.0652508
-0.298624
-0.3663
-0.304684
-0.225044
-0.264386
-0.260669
-0.0551668
-0.0581963
-0.0609593
-0.163759
-0.186544
-0.162038
0.0139244
-0.0238727
-0.0197304
-0.143299
-0.147018
-0.143871
-0.0266887
-0.0355506
-0.0295421
-0.140597
-0.139477
-0.142288
-0.0366807
-0.0388101
-0.0329711
-0.183045
-0.155636
-0.158414
-0.244293
-0.271362
-0.303037
-0.275813
-0.268558
-0.249667
-0.27501
-0.224128
-0.285669
-0.258995
-0.303923
-0.262505
-0.218574
-0.286733
-0.219491
-0.232714
-0.24766
-0.179348
-0.220867
-0.244593
-0.179041
-0.249564
-0.213795
-0.245929
-0.336746
-0.275001
-0.281034
-0.0586343
-0.0610913
-0.0590966
-0.051392
-0.043318
-0.0509924
-0.292717
-0.344763
-0.287054
-0.0558509
-0.0463008
-0.053379
-0.210447
-0.237579
-0.242156
-0.280148
-0.327138
-0.321212
-0.289336
-0.292119
-0.32287
-0.276109
-0.275474
-0.25216
-0.323292
-0.308024
-0.277833
-0.32091
-0.253904
-0.287707
-0.330304
-0.297606
-0.327551
-0.291186
-0.294676
-0.325215
-0.385665
-0.359081
-0.358812
-0.355348
-0.344034
-0.354807
-0.38543
-0.3594
-0.359424
-0.352072
-0.339104
-0.353222
-0.390691
-0.386969
-0.397234
-0.330472
-0.386015
-0.393131
-0.405207
-0.339845
-0.398844
-0.387656
-0.41242
-0.405706
-0.29251
-0.319874
-0.295333
-0.325143
-0.319541
-0.295435
-0.292278
-0.291618
-0.31536
-0.294944
-0.28402
-0.31335
-0.280841
-0.294834
-0.295972
-0.328634
-0.321716
-0.295312
-0.297422
-0.32266
-0.2946
-0.294635
-0.291112
-0.32096
-0.310982
-0.297421
-0.287611
-0.320608
-0.296771
-0.330683
-0.301406
-0.325028
-0.299288
-0.298807
-0.324456
-0.293807
-0.317358
-0.30788
-0.284791
-0.286169
-0.318561
-0.293049
-0.385323
-0.386344
-0.383428
-0.408151
-0.37395
-0.412516
-0.386524
-0.384339
-0.384565
-0.411782
-0.366862
-0.413043
-0.271528
-0.316727
-0.288521
-0.321351
-0.274122
-0.3181
-0.28479
-0.150972
-0.164866
-0.152441
0.0101555
-0.0130844
-0.0106907
-0.131219
-0.147879
-0.146686
-0.0221409
-0.0287731
-0.0209957
-0.131881
-0.116844
-0.14199
-0.0210911
-0.0280923
-0.0202246
-0.170293
-0.153134
-0.153275
-0.207951
-0.174454
-0.203294
-0.055794
-0.0461698
-0.0527861
-0.0438285
-0.0486017
-0.0503232
-0.272503
-0.224314
-0.229682
-0.042969
-0.0482384
-0.0501147
-0.242797
-0.280862
-0.236898
-0.16947
-0.193019
-0.197363
-0.19062
-0.214754
-0.220376
-0.26814
-0.310627
-0.261744
-0.0465725
-0.0389374
-0.0467392
-0.0397743
-0.0472953
-0.0470212
-0.0386471
-0.0468679
-0.0465203
-0.196546
-0.231865
-0.226375
-0.250058
-0.304399
-0.256216
-0.058509
-0.0691891
-0.0341988
-0.0456906
-0.037313
-0.0555698
-0.0707663
-0.0848671
-0.0844711
-0.0846588
-0.0720052
-0.0800673
-0.0802591
-0.080564
-0.110169
-0.112387
-0.0949265
-0.108473
-0.0934017
-0.0833986
-0.0838966
-0.0880683
-0.110332
-0.10287
-0.111931
-0.0814163
-0.0921767
-0.0849092
-0.0845282
-0.0849208
-0.0579885
-0.0444564
-0.0398411
-0.0700585
-0.0374249
-0.0690571
-0.0612813
0.00692916
0.00011211
-0.015034
-0.023297
0.00525287
-0.0122695
0.000640894
-0.0995098
-0.0940471
-0.0938355
-0.0845869
-0.0804595
-0.0858798
0.0260934
0.0501043
0.0451414
0.0198979
0.0512503
0.0211505
0.0264873
0.0286152
0.0250555
0.0552422
0.0497325
0.0285827
0.0545325
0.0243473
-0.0874249
-0.081857
-0.0871812
0.005984
-0.0251963
-0.0110089
-0.0013264
-0.0133974
-0.00112974
0.0080543
-0.0568709
-0.0684957
-0.0352171
-0.046323
-0.0650487
-0.0593581
-0.0325449
-0.0829508
-0.173016
-0.140699
-0.0913676
-0.0710341
-0.0800677
-0.0801482
-0.0823548
-0.0814744
-0.0829797
-0.0822104
-0.0792659
-0.167179
-0.112434
-0.0857894
-0.0851308
-0.0838275
-0.082815
-0.0834314
-0.0603842
-0.0459416
-0.0648123
-0.0335161
-0.0565828
-0.036192
-0.0564179
-0.389136
-0.360342
-0.362176
-0.328144
-0.253016
-0.32942
-0.389003
-0.364463
-0.362577
-0.333114
-0.26018
-0.331679
-0.389943
-0.41521
-0.419464
-0.377164
-0.301213
-0.369499
-0.389778
-0.415848
-0.42066
-0.351359
-0.291332
-0.359662
-0.403998
-0.40648
-0.398678
-0.31747
-0.267137
-0.323991
-0.40763
-0.382191
-0.389825
-0.341125
-0.272647
-0.3328
0.00280765
-0.00821894
-0.0128894
-0.0173975
0.00375836
-0.017305
-0.00777089
-0.0832787
-0.0744959
-0.0804787
-0.0820772
-0.0740687
-0.0787946
0.0245724
0.0459665
0.0339732
0.0164256
0.0439298
0.0241152
0.0139819
0.020738
0.0062152
0.035041
0.0285294
0.0199756
0.0380327
0.00909115
-0.0696656
-0.0711117
-0.0744865
0.0073286
-0.0241581
-0.015356
-0.00386442
0.00593225
-0.0134156
-0.00539882
-0.135361
-0.165502
-0.175163
-0.0593367
-0.0581719
-0.0629891
-0.0563236
-0.0678789
-0.0647891
-0.217795
-0.25041
-0.213849
-0.0629405
-0.0704594
-0.0669103
-0.150347
-0.186872
-0.182137
-0.202112
-0.24374
-0.207809
-0.0502466
-0.152226
-0.128537
-0.0320178
-0.147412
-0.221763
-0.170709
-0.0809671
-0.0770954
-0.0791741
-0.0637242
-0.0708076
-0.0733417
-0.074346
-0.0738653
-0.0767113
-0.0431979
-0.0710249
-0.0370102
-0.0560239
-0.121328
-0.0320361
-0.194146
-0.23026
-0.183551
-0.079075
-0.0908496
-0.0743994
-0.0904253
-0.0736923
-0.0802514
-0.0907383
-0.0745255
-0.0712047
-0.0878877
-0.0654391
-0.084887
-0.0713551
-0.0700485
-0.0753182
-0.0690562
-0.0906451
-0.0794879
-0.0719209
-0.0707585
-0.0874517
-0.0259396
-0.077023
-0.0446298
-0.0744489
-0.0489399
-0.0218839
-0.0809777
-0.0307351
-0.0562337
-0.0896464
-0.079036
-0.0338522
-0.0528489
-0.0863724
-0.0652344
-0.102579
-0.0866897
-0.0623781
-0.0852286
-0.0680534
-0.0604055
-0.059844
-0.062643
-0.0545043
-0.073828
-0.0586188
-0.0561321
-0.066272
-0.0630521
-0.0657941
-0.0736498
-0.0780232
-0.0666845
-0.0622308
-0.0699426
-0.151322
-0.139759
-0.148561
-0.142865
-0.147835
-0.156948
-0.146835
-0.150217
-0.166
-0.144234
-0.151099
-0.153111
-0.142061
-0.164503
-0.148135
-0.139076
-0.163984
-0.151944
-0.146018
-0.140595
-0.163576
-0.119125
-0.130843
-0.125728
-0.147285
-0.128619
-0.116356
-0.131977
-0.108675
-0.109131
-0.0930009
-0.123895
-0.111286
-0.0899297
-0.122455
-0.120112
-0.130472
-0.144491
-0.132174
-0.129017
-0.12221
-0.131561
-0.127358
-0.135803
-0.13667
-0.141283
-0.129348
-0.134681
-0.134802
-0.115557
-0.114853
-0.0951596
-0.125216
-0.113112
-0.0979357
-0.126896
-0.125812
-0.131534
-0.141095
-0.132641
-0.133257
-0.123695
-0.133665
-0.0108454
-0.0701105
-0.0399421
-0.0604145
-0.0155161
-0.0354331
-0.0654268
-0.00576723
-0.0268166
-0.0549334
-0.0556631
-0.000828846
-0.0311757
-0.0598244
-0.0332995
-0.0347414
-0.0248369
-0.0423867
-0.0287233
-0.0296287
-0.0383563
-0.0419717
-0.0854167
-0.0692447
-0.0402459
-0.0658413
-0.0454761
-0.0373307
-0.0362327
-0.0356072
-0.0459309
-0.0449271
-0.0319255
-0.0397739
-0.0415204
-0.0492736
-0.0589038
-0.0506215
-0.061202
-0.0529207
-0.0464825
-0.055222
-0.0514173
-0.092608
-0.0716635
-0.0431005
-0.0746756
-0.0481695
-0.0462149
-0.0461771
-0.0388694
-0.057109
-0.0481896
-0.042821
-0.0426372
-0.0516726
0.0355432
0.0464512
0.048418
0.0461247
0.0481293
0.0363811
0.0442638
0.00638106
-0.0471756
-0.0256316
-0.0138863
-0.02448
0.00388784
-0.0137988
0.0336661
0.0431667
0.0440504
0.0400255
0.0463756
0.0305415
0.0419375
0.075984
0.024849
0.037731
0.0266014
0.0436368
0.0701234
0.0303776
0.0832274
0.0536941
0.0389211
0.0313004
0.086161
0.0491074
0.0364019
0.00182753
-0.0381052
-0.0250371
-0.0125082
-0.0258368
0.00194767
0.0137908
0.0141986
0.00845591
0.0199321
0.0170886
0.025979
0.00892008
0.0138394
0.0213778
0.0393404
0.0369129
0.0243216
0.0271877
0.0325718
0.0305476
-0.113661
-0.0943557
-0.10915
-0.114832
-0.115646
-0.106921
-0.113251
-0.109035
-0.110113
-0.106013
-0.126899
-0.107001
-0.108578
-0.113668
-0.112888
-0.11574
-0.122606
-0.134248
-0.115338
-0.112692
-0.118817
-0.112152
-0.130466
-0.124173
-0.149056
-0.121064
-0.114786
-0.129884
-0.09826
-0.0980586
-0.0755625
-0.113198
-0.0955503
-0.0786087
-0.1147
-0.110595
-0.116398
-0.149152
-0.130348
-0.119223
-0.108138
-0.130018
-0.0996379
-0.131579
-0.10467
-0.147434
-0.0971439
-0.10748
-0.131025
-0.0892843
-0.0894317
-0.0722119
-0.111313
-0.0925873
-0.0683784
-0.1098
-0.102897
-0.113636
-0.14971
-0.130466
-0.111077
-0.105544
-0.131073
0.0517698
0.0131517
0.0293139
0.00295225
0.0597502
0.0228087
0.00305452
0.0444623
0.00965472
-0.0155812
-0.0052933
0.03646
0.0157818
-0.00570811
-0.0222698
-0.0314697
-0.0217332
-0.0307633
-0.0169838
-0.0270147
-0.0273142
-0.0273247
-0.072245
-0.0496745
-0.0189264
-0.0529903
-0.023681
-0.0226797
-0.0193694
-0.00915653
-0.0264715
-0.0191329
-0.0135818
-0.0153122
-0.0234762
-0.00155556
0.0018511
0.0123895
-0.00336516
0.0026296
0.00695884
-0.0034187
-0.0159085
-0.0621452
-0.046144
-0.0145626
-0.0422141
-0.0198645
-0.0100899
-0.00687239
-0.00442566
-0.010388
-0.0143015
0.000731251
-0.0111624
-0.00936343
-0.0653877
-0.0692935
-0.0455403
-0.0399236
-0.040356
-0.0704447
-0.0655568
-0.0835606
-0.0811592
-0.0832058
-0.0864183
-0.10689
-0.121185
-0.0935637
-0.10967
-0.0832994
-0.0946182
-0.0685242
-0.0641724
-0.0818696
-0.0889768
-0.0943108
-0.121828
-0.113804
-0.112203
-0.095504
-0.0902561
-0.0642836
-0.0456578
-0.0396568
-0.0689113
-0.040443
-0.0620519
-0.0699237
-0.0811469
-0.0729033
-0.0851682
0.0132442
0.00858505
-0.0140449
-0.019288
0.0142057
0.00809199
-0.0147912
-0.0645301
-0.0717421
-0.0632419
0.0390657
0.0618211
0.0628192
0.0276474
0.0722738
0.0326245
0.0322042
-0.0523996
-0.0607318
-0.0584095
0.0433732
0.0367476
0.0782658
0.0666681
0.0443874
0.0776956
0.03593
-0.0706642
-0.0659226
-0.0644361
0.00986504
-0.0215943
0.00180386
-0.0207281
0.00529692
-0.0174681
0.0052023
-0.067212
-0.0708537
-0.0408619
-0.0449434
-0.0701526
-0.0669663
-0.04132
-0.0945521
-0.121592
-0.120879
-0.0963148
-0.120222
-0.0966474
-0.0958721
-0.0571863
-0.0543694
-0.0562781
-0.0627781
-0.0600587
-0.0927369
-0.0965209
-0.119663
-0.117274
-0.117976
-0.0954129
-0.0925308
-0.0680983
-0.0673915
-0.0640529
-0.069082
-0.0468187
-0.0722253
-0.0458264
-0.071683
-0.0434979
-0.0707928
-0.332986
-0.241818
-0.265063
-0.280118
-0.327484
-0.267055
-0.287706
-0.304512
-0.262476
-0.28649
-0.2826
-0.291438
-0.299287
-0.283459
-0.345048
-0.243518
-0.280567
-0.306501
-0.372152
-0.271268
-0.294006
-0.316311
-0.281859
-0.312535
-0.289809
-0.332062
-0.306999
-0.281786
-0.197296
-0.230664
-0.188854
-0.211243
-0.226224
-0.199985
-0.188582
-0.169848
-0.14508
-0.144223
-0.165271
-0.165523
-0.146294
-0.167415
-0.171714
-0.165712
-0.147834
-0.144183
-0.173143
-0.165776
-0.147147
-0.194221
-0.210688
-0.224032
-0.187634
-0.223598
-0.188011
-0.191464
-0.20363
-0.21373
-0.235268
-0.189732
-0.189919
-0.238754
-0.202111
-0.175411
-0.148821
-0.167011
-0.144067
-0.175342
-0.166314
-0.148831
-0.203581
-0.213874
-0.190304
-0.240839
-0.202913
-0.189818
-0.239501
-0.175202
-0.166141
-0.143984
-0.148415
-0.166184
-0.174288
-0.148823
-0.0109612
-0.0147913
-0.0350339
-0.0336264
-0.0146677
-0.0114869
-0.0321852
-0.0205263
-0.0201732
-0.0262231
0.0155213
0.0476738
0.0394187
0.0211555
0.0359244
0.0233436
0.0149444
-0.0454985
-0.0446504
-0.0395179
0.00889274
0.00609471
0.0204804
0.0337313
0.00416152
0.0265344
0.0100315
-0.0284668
-0.0396008
-0.0337078
-0.00609664
-0.0306168
-0.00299617
-0.024829
-0.000705104
-0.00753079
-0.0286127
-0.0800069
-0.0577896
-0.0795923
-0.060135
-0.0591611
-0.0790845
-0.080736
-0.0281398
-0.028902
-0.0312905
-0.0373147
-0.0340851
-0.101695
-0.123164
-0.122776
-0.102689
-0.123544
-0.102087
-0.101825
-0.0325035
-0.0382236
-0.0346083
-0.101411
-0.100657
-0.123852
-0.122426
-0.123755
-0.100966
-0.101476
-0.0807377
-0.0611943
-0.0611554
-0.0824301
-0.0602728
-0.0816122
-0.0812959
-0.0764026
-0.0560369
-0.0551173
-0.0784288
-0.0769341
-0.0539359
-0.0778775
-0.0983541
-0.122525
-0.0974827
-0.120575
-0.097262
-0.123046
-0.0980155
-0.0524794
-0.0489088
-0.0487649
-0.039748
-0.0420899
-0.0445298
-0.0416645
-0.0451831
-0.0746139
-0.0528798
-0.0740528
-0.0487161
-0.0728336
-0.0753585
-0.05135
-0.0994874
-0.0999367
-0.121031
-0.123818
-0.123589
-0.0989778
-0.100327
-0.132814
-0.116766
-0.10157
-0.11903
-0.126439
-0.119108
-0.126887
0.0409701
0.0595559
0.0397051
-0.146153
-0.161086
-0.152782
-0.13708
-0.158922
-0.149357
-0.136666
-0.142566
-0.132758
-0.151178
-0.153293
-0.156306
-0.135173
-0.138436
-0.137641
-0.101009
-0.133422
-0.119427
-0.131429
-0.141464
-0.120071
0.0577019
0.0367455
0.0382835
-0.0733045
-0.0604551
-0.101673
-0.0760017
-0.0922807
-0.085813
-0.057503
0.197058
0.137143
0.138143
0.0715581
0.0605289
0.0861449
-0.0511302
-0.0519223
-0.0098975
-0.0295239
-0.017431
-0.0346033
-0.0536623
-0.0610749
-0.0407602
-0.0829021
-0.0209889
-0.0849929
-0.0174568
-0.0398836
0.0975189
0.0663375
0.0947937
-0.0631317
-0.0712275
-0.0681877
-0.0478113
-0.0741928
-0.0530079
-0.0592309
-0.112547
-0.113145
-0.109012
-0.0922353
-0.108773
-0.119782
-0.0982566
-0.123234
-0.1382
-0.140285
-0.118261
-0.142036
-0.122223
-0.118296
0.00531957
0.0171008
0.0394913
0.0211673
-0.128371
-0.12943
-0.143191
-0.149687
-0.145936
-0.125728
-0.133502
0.0330106
0.041824
0.0214771
-0.105742
-0.0876801
-0.100213
-0.0811492
-0.10476
-0.088868
-0.0993659
-0.305374
-0.240028
-0.263687
-0.264231
-0.306998
-0.26306
-0.264927
-0.344191
-0.349342
-0.290045
-0.306452
-0.342459
-0.289367
-0.351796
-0.304239
-0.240716
-0.262647
-0.266288
-0.303157
-0.262807
-0.265379
-0.345534
-0.288575
-0.358883
-0.306493
-0.347207
-0.289082
-0.354949
-0.196405
-0.228087
-0.212398
-0.19023
-0.227588
-0.197917
-0.189186
-0.164914
-0.143545
-0.165211
-0.144382
-0.165316
-0.165403
-0.141622
-0.194174
-0.211683
-0.22589
-0.187833
-0.226613
-0.191834
-0.188342
-0.167423
-0.16744
-0.143166
-0.144846
-0.170224
-0.166214
-0.141048
-0.200963
-0.21549
-0.228808
-0.191458
-0.193103
-0.229309
-0.199552
-0.177186
-0.156191
-0.174761
-0.151639
-0.179367
-0.17244
-0.153224
-0.202484
-0.216505
-0.196384
-0.230734
-0.203935
-0.194452
-0.230023
-0.17492
-0.168844
-0.149673
-0.146966
-0.170776
-0.172692
-0.150133
-0.0397418
-0.0274951
-0.0513164
-0.053251
-0.0347851
-0.0549265
-0.0318145
0.0464721
0.0233629
0.0372787
0.0547174
0.0259315
0.0390409
-0.0352038
-0.0369573
0.019691
-0.0217958
-0.025419
-0.0440383
-0.0138193
-0.027121
-0.00300194
-0.0073088
0.0269727
-0.0207629
-0.015071
-0.00817628
0.0147542
0.0153278
0.0257275
-0.0458175
-0.0567552
-0.0634027
-0.0423534
-0.05235
-0.0591095
-0.0362793
-0.0833107
-0.0660365
-0.0652384
-0.0867415
-0.0644155
-0.0841184
-0.0852368
-0.0250766
-0.0175189
-0.0213106
-0.0200567
-0.023051
-0.10199
-0.1227
-0.103341
-0.123891
-0.102022
-0.1217
-0.103985
-0.0131742
-0.0134916
-0.0177498
-0.0824589
-0.0639504
-0.0620925
-0.0832568
-0.0630391
-0.0819102
-0.0841441
-0.102002
-0.105877
-0.119916
-0.124389
-0.120648
-0.101672
-0.104786
-0.0859495
-0.0681202
-0.0720426
-0.0883135
-0.0906523
-0.0703039
-0.0850112
-0.1082
-0.134383
-0.115251
-0.131253
-0.113444
-0.130514
-0.111742
0.00983464
0.0138645
0.00359839
-0.0163245
-0.0127573
0.0053631
-0.00847997
-0.00306244
-0.0880596
-0.0748136
-0.0967564
-0.0758151
-0.0928353
-0.0930016
-0.0727706
-0.10363
-0.107152
-0.129013
-0.121949
-0.126221
-0.109344
-0.101801
-0.676422
-0.666836
-0.661387
-0.672205
-0.665126
-0.674866
-0.671774
-0.715936
-0.704401
-0.698459
-0.70772
-0.691226
-0.69915
-0.699246
-0.710126
-0.702679
-0.69444
-0.724495
-0.69828
-0.701721
-0.701051
-0.726867
-0.728056
-0.751383
-0.757327
-0.730533
-0.745246
-0.753772
-0.728586
-0.73421
-0.755732
-0.757213
-0.731763
-0.735495
-0.763035
-0.754676
-0.756671
-0.767002
-0.758737
-0.763479
-0.752084
-0.803434
-0.766321
-0.779478
-0.772542
-0.773657
-0.765717
-0.779458
-0.778167
-0.674304
-0.656427
-0.655869
-0.683033
-0.649837
-0.676699
-0.681112
-0.667699
-0.659369
-0.681623
-0.681038
-0.670253
-0.660576
-0.670185
-0.681827
-0.680572
-0.678241
-0.682159
-0.673101
-0.71954
-0.710696
-0.727751
-0.718489
-0.721523
-0.709494
-0.720765
-0.723145
-0.709019
-0.721873
-0.629119
-0.610671
-0.610433
-0.607025
-0.634486
-0.641728
-0.642372
-0.6278
-0.634019
-0.637203
-0.628819
-0.63747
-0.605215
-0.607807
-0.60223
-0.598954
-0.602698
-0.641045
-0.631178
-0.593454
-0.5825
-0.587286
-0.592138
-0.589418
-0.575384
-0.575649
-0.598737
-0.578632
-0.584396
-0.576438
-0.581231
-0.581404
-0.593507
-0.59479
-0.582676
-0.609249
-0.590779
-0.601091
-0.595565
-0.57936
-0.575328
-0.600638
-0.57961
-0.596198
-0.631251
-0.608417
-0.609658
-0.632981
-0.607658
-0.619392
-0.629744
-0.623324
-0.629369
-0.619291
-0.623407
-0.625226
-0.618992
-0.619637
-0.622285
-0.625802
-0.629915
-0.608585
-0.606263
-0.606755
-0.629691
-0.687036
-0.666235
-0.654241
-0.697766
-0.709193
-0.695054
-0.70362
-0.69558
-0.70433
-0.697212
-0.698996
-0.701026
-0.684711
-0.686058
-0.69614
-0.690123
-0.681617
-0.681003
-0.68972
-0.699139
-0.710487
-0.697906
-0.726249
-0.702903
-0.695772
-0.70739
-0.697987
-0.69784
-0.756668
-0.729722
-0.736299
-0.754092
-0.750022
-0.732965
-0.762544
-0.759492
-0.772688
-0.76514
-0.758339
-0.765924
-0.768816
-0.75657
-0.7556
-0.749955
-0.75339
-0.757747
-0.759259
-0.723275
-0.722923
-0.733785
-0.748039
-0.732415
-0.729302
-0.752884
-0.699168
-0.693053
-0.699115
-0.702774
-0.694011
-0.696937
-0.698687
-0.710161
-0.687545
-0.696554
-0.691027
-0.682651
-0.689693
-0.704418
-0.701924
-0.693691
-0.701622
-0.702877
-0.711017
-0.708764
-0.697681
-0.697935
-0.72364
-0.684172
-0.699793
-0.692757
-0.694434
-0.695043
-0.696239
-0.686721
-0.677175
-0.718971
-0.675255
-0.673279
-0.715458
-0.681157
-0.722714
-0.726924
-0.721352
-0.727996
-0.727357
-0.73179
-0.722503
-0.747681
-0.750355
-0.733801
-0.739182
-0.733471
-0.760439
-0.733984
-0.734777
-0.754116
-0.722839
-0.73155
-0.752712
-0.746878
-0.750516
-0.764398
-0.761529
-0.754847
-0.748658
-0.764787
-0.757423
-0.664277
-0.670591
-0.684575
-0.662619
-0.692168
-0.671107
-0.666531
-0.717369
-0.674183
-0.672098
-0.71411
-0.67023
-0.724581
-0.720852
-0.718118
-0.731499
-0.720167
-0.724299
-0.732203
-0.718071
-0.713052
-0.736404
-0.749174
-0.758781
-0.741024
-0.722278
-0.720864
-0.726064
-0.716743
-0.722161
-0.737606
-0.717033
-0.730193
-0.743909
-0.770764
-0.75877
-0.77069
-0.603852
-0.627647
-0.615937
-0.60534
-0.614807
-0.604528
-0.604626
-0.614813
-0.634575
-0.611782
-0.639709
-0.612128
-0.614086
-0.639188
-0.611174
-0.610989
-0.603641
-0.626987
-0.61332
-0.603451
-0.602774
-0.614434
-0.604261
-0.611074
-0.610479
-0.572972
-0.566964
-0.570171
-0.574551
-0.568563
-0.570627
-0.570327
-0.591371
-0.573309
-0.583131
-0.568404
-0.589393
-0.573817
-0.584911
-0.572207
-0.566899
-0.567033
-0.571305
-0.568064
-0.593272
-0.587794
-0.574539
-0.568691
-0.594785
-0.574047
-0.586158
-0.606075
-0.631279
-0.618048
-0.607673
-0.60658
-0.618979
-0.607609
-0.610953
-0.625611
-0.612634
-0.638227
-0.611237
-0.614778
-0.622617
-0.608722
-0.61645
-0.60822
-0.63074
-0.606642
-0.628343
-0.619495
-0.610735
-0.609373
-0.612016
-0.630361
-0.629805
-0.668808
-0.627085
-0.664759
-0.671688
-0.676315
-0.637308
-0.630189
-0.669975
-0.632231
-0.671383
-0.670454
-0.671895
-0.669736
-0.670411
-0.631453
-0.641127
-0.636454
-0.641422
-0.634815
-0.654545
-0.640297
-0.639024
-0.650858
-0.680223
-0.700102
-0.692184
-0.686518
-0.686045
-0.693314
-0.69068
-0.671291
-0.6921
-0.678698
-0.669495
-0.674659
-0.687395
-0.667723
-0.765566
-0.742352
-0.742664
-0.752737
-0.749658
-0.742581
-0.769435
-0.720311
-0.705301
-0.723881
-0.711293
-0.721822
-0.728606
-0.725638
-0.725845
-0.74993
-0.740023
-0.762549
-0.74315
-0.74472
-0.74594
-0.719278
-0.734052
-0.730047
-0.726747
-0.740263
-0.72699
-0.717669
-0.718956
-0.738808
-0.735527
-0.741319
-0.740465
-0.735104
-0.747213
-0.718549
-0.722738
-0.741134
-0.747584
-0.723966
-0.740711
-0.737938
-0.722477
-0.730737
-0.740917
-0.739363
-0.763512
-0.739869
-0.73485
-0.669384
-0.674531
-0.686342
-0.699617
-0.670652
-0.691209
-0.671612
-0.667049
-0.686337
-0.667186
-0.680558
-0.667895
-0.666395
-0.687263
-0.845345
-0.839911
-0.844415
-0.829577
-0.84029
-0.839841
-0.845602
-0.860758
-0.870198
-0.870201
-0.871306
-0.888543
-0.865902
-0.863771
-0.893463
-0.877216
-0.863092
-0.86492
-0.873258
-0.883094
-0.86826
-0.86083
-0.874652
-0.849315
-0.840326
-0.863685
-0.852076
-0.874856
-0.849509
-0.820083
-0.824801
-0.840472
-0.854518
-0.847767
-0.824683
-0.822497
-0.878102
-0.906729
-0.862216
-0.870592
-0.870482
-0.8781
-0.841381
-0.873905
-0.850996
-0.848943
-0.865763
-0.895829
-0.870511
-0.885677
-0.87449
-0.882441
-0.875322
-0.883069
-0.846349
-0.843915
-0.850401
-0.877799
-0.844547
-0.928331
-0.919162
-0.93172
-0.92577
-0.924521
-0.924217
-0.921266
-0.927696
-0.911582
-0.9091
-0.938789
-0.902091
-0.939671
-0.934092
-0.906701
-0.930137
-0.931353
-0.911251
-0.927696
-0.923205
-0.903366
-0.885401
-0.890199
-0.894082
-0.889213
-0.970474
-0.967853
-0.963023
-0.911081
-0.880982
-0.896402
-0.898506
-0.906403
-0.895493
-0.886675
-0.935126
-0.935782
-0.93978
-0.857995
-0.870348
-0.912488
-0.90097
-0.923404
-0.914669
-0.897741
-0.901138
-0.898815
-0.882719
-1.01522
-1.03849
-1.05286
-1.01409
-1.04181
-1.00625
-1.02839
-1.00836
-1.03084
-1.04961
-1.00902
-1.0393
-1.00375
-1.01532
-0.93415
-0.911591
-0.907073
-0.913692
-0.910052
-0.932418
-0.917912
-0.937558
-0.9191
-0.922153
-0.920109
-0.914628
-0.919055
-0.922651
-0.916992
-0.923087
-0.910617
-0.921501
-0.91493
-0.914964
-0.929587
-0.909182
-0.905921
-0.906698
-0.912274
-0.921175
-0.937852
-0.917303
-0.916683
-0.892012
-0.898464
-0.906647
-0.899899
-0.893059
-0.914529
-0.927525
-0.911616
-0.964657
-0.964507
-1.03638
-1.01056
-1.03372
-0.9901
-0.980413
-0.967147
-0.984389
-0.988207
-0.970692
-0.975099
-0.975592
-0.968615
-0.975015
-0.964675
-0.984735
-0.96736
-0.966602
-0.986729
-0.96315
-0.974405
-0.956324
-0.949166
-0.933443
-0.964362
-0.930411
-1.00347
-1.01342
-0.973984
-0.940134
-0.974509
-0.989989
-0.946355
-0.971414
-0.918517
-0.907113
-0.916405
-0.900825
-0.938592
-0.905308
-0.910301
-0.954702
-0.906091
-0.908042
-0.901379
-0.920964
-0.904525
-0.906378
-0.906698
-0.930328
-0.934286
-0.955633
-0.949472
-0.942335
-0.939386
-0.94125
-0.845415
-0.814917
-0.859358
-0.861834
-0.862678
-0.851622
-0.819237
-0.956852
-1.04089
-0.878987
-0.852353
-1.1184
-0.915584
-0.885526
-0.895222
-0.831526
-0.839479
-0.94987
-0.965249
-0.833361
-0.89461
-0.88833
-0.840078
-0.847363
-0.864504
-0.839838
-0.866197
-0.892677
-0.976798
-1.1641
-0.896651
-0.980179
-0.810646
-0.840675
-0.790778
-0.783475
-0.764997
-0.818697
-0.831298
-0.853507
-0.805377
-0.832336
-0.838917
-0.862738
-0.863891
-0.859205
-0.868221
-0.858539
-0.858461
-0.859836
-0.863221
-0.852465
-0.872981
-0.860515
-0.883285
-0.857584
-0.861499
-0.811453
-0.858963
-0.852199
-0.795972
-0.855153
-0.808985
-0.837014
-0.810771
-0.841282
-0.791775
-0.786374
-0.829634
-0.823185
-0.762554
-0.82741
-0.777284
-0.76879
-0.786396
-0.783775
-0.845366
-0.818987
-0.830293
-0.80123
-0.767391
-0.794921
-0.822591
-0.85964
-0.786493
-0.837171
-0.784593
-0.790055
-0.843942
-0.791819
-0.800072
-0.801123
-0.797501
-0.79371
-0.802917
-0.795941
-0.815784
-0.823518
-0.81921
-0.799643
-0.800243
-0.819898
-0.8397
-0.830016
-0.829542
-0.853683
-0.825357
-0.889376
-0.837859
-0.886721
-0.845064
-0.838112
-0.819769
-0.82502
-0.816778
-0.840167
-0.853865
-0.854282
-0.918959
-0.846679
-0.851892
-0.875527
-0.855813
-0.844207
-0.819723
-0.824474
-0.830934
-0.814013
-0.832509
-0.851647
-0.877722
-0.890966
-0.916754
-0.860654
-0.856285
-0.895566
-0.890211
-1.0242
-1.06145
-1.03459
-1.05983
-1.0295
-1.02811
-1.05801
-1.0225
-1.04619
-1.05161
-1.04239
-1.02953
-1.03102
-1.05056
-0.955327
-0.951816
-0.971266
-0.973784
-0.978315
-0.955939
-0.950588
-0.948751
-0.959568
-0.96947
-0.96405
-0.926559
-0.933273
-0.968146
-0.932894
-0.953478
-0.956669
-0.956048
-0.973711
-0.957059
-0.954333
-0.9775
-0.949553
-0.965821
-0.989669
-0.977952
-0.983691
-0.996378
-0.986395
-0.980219
-0.948949
-0.958694
-0.949419
-0.965275
-0.952636
-0.956838
-0.935537
-0.929055
-0.930735
-0.963853
-0.926852
-0.981099
-0.965468
-0.948374
-0.967154
-0.963465
-0.951509
-0.954955
-1.00667
-1.04788
-0.998656
-0.997616
-1.00056
-1.05726
-0.98851
-0.993487
-0.97832
-1.00389
-0.980541
-0.983101
-0.998721
-1.02137
-1.04623
-1.04678
-1.03349
-1.03178
-1.03312
-1.03974
-0.876562
-0.895854
-0.913116
-0.880182
-0.900811
-0.871452
-0.889692
-0.86559
-0.90924
-0.912545
-0.873032
-0.905699
-0.867226
-0.869234
-0.972072
-0.949134
-0.946235
-0.938429
-0.949003
-0.952541
-0.968049
-0.942309
-0.943672
-0.950243
-0.943155
-0.942663
-0.944802
-0.950729
-0.943522
-0.966756
-0.941939
-0.938497
-0.99996
-0.97656
-0.981164
-0.977117
-1.00922
-1.01846
-1.03158
-1.00963
-1.04445
-1.0147
-1.01329
-1.02683
-0.972024
-0.970567
-0.985478
-0.974695
-0.968986
-1.01538
-1.0103
-0.991892
-0.94529
-0.976105
-0.966298
-0.962398
-0.953782
-0.952348
-0.971804
-0.941701
-0.968087
-0.950558
-0.95004
-0.943228
-0.94655
-0.964366
-0.946954
-0.965369
-0.94496
-0.943931
-0.966933
-0.942325
-0.934638
-0.961231
-0.940428
-0.971025
-0.958773
-0.936962
-0.932792
-0.960667
-0.942235
-0.934229
-0.938403
-0.93959
-0.952641
-0.939222
-0.949981
-0.972101
-0.952723
-0.950788
-0.94905
-0.998828
-0.992954
-1.01294
-0.991388
-0.998998
-0.992432
-0.995518
-1.02606
-1.03067
-1.00724
-1.04531
-1.01571
-1.01077
-1.0254
-1.01924
-1.0109
-0.999606
-0.997809
-1.01978
-0.991598
-0.993831
-0.983259
-1.00191
-0.997979
-0.989443
-0.985494
-1.02877
-1.00294
-1.02587
-0.790068
-0.78833
-0.796488
-0.784348
-0.775026
-0.776395
-0.771121
-0.774541
-0.788777
-0.783331
-0.8049
-0.80948
-0.785009
-0.809549
-0.786778
-0.79896
-0.770694
-0.766335
-0.796533
-0.771978
-0.789313
-0.785567
-0.784844
-0.800874
-0.786162
-0.785655
-0.805616
-0.787605
-0.781273
-0.823023
-0.822353
-0.834991
-0.82534
-0.800689
-0.802055
-0.817352
-0.803692
-0.80225
-0.82799
-0.815221
-0.80517
-0.797788
-0.784936
-0.791688
-0.792152
-0.777957
-0.784774
-0.79567
-0.773741
-0.781501
-0.773992
-0.775607
-0.80234
-0.7854
-0.798193
-0.811631
-0.790969
-0.792461
-0.79373
-0.769085
-0.764037
-0.762004
-0.775486
-0.767812
-0.770795
-0.763593
-0.806562
-0.788426
-0.796165
-0.752718
-0.76014
-0.837626
-0.853111
-0.839286
-0.840393
-0.844378
-0.845181
-0.855835
-0.897016
-0.87568
-0.894199
-0.845174
-0.860035
-0.847314
-0.843657
-0.861384
-0.850941
-0.840605
-0.837155
-0.840956
-0.775212
-0.850911
-0.813637
-0.806989
-0.852462
-0.806424
-0.867847
-0.864097
-0.83799
-0.849569
-0.827489
-0.841111
-0.839985
-0.839028
-0.83921
-0.203304
-0.194311
-0.243017
-0.216309
-0.180458
-0.188578
-0.226988
-0.185345
-0.226435
-0.181114
-0.183297
-0.163038
-0.200685
-0.194127
-0.142228
-0.180203
-0.175144
-0.212325
-0.193297
-0.238974
-0.229391
-0.238384
-0.236923
-0.200021
-0.217982
-0.187617
-0.188622
-0.215373
-0.191087
-0.18108
-0.19608
-0.20076
-0.243771
-0.213
-0.207461
-0.228073
-0.174801
-0.228708
-0.1586
-0.231729
-0.229245
-0.160878
-0.2116
-0.20938
-0.200871
-0.210166
-0.214215
-0.233612
-0.19932
-0.21966
-0.187274
-0.171641
-0.161262
-0.216962
-0.17888
-0.20693
-0.190896
-0.153458
-0.187992
-0.208361
-0.212944
-0.226943
-0.242189
-0.213088
-0.231492
-0.164357
-0.202041
-0.198832
-0.190577
-0.179944
-0.204631
-0.201709
-0.21903
-0.236397
-0.241588
-0.256844
-0.244876
-0.260505
-0.203792
-0.2017
-0.252986
-0.202685
-0.199423
-0.217245
-0.239546
-0.181908
-0.209465
-0.248043
-0.218139
-0.213584
-0.243067
-0.230878
-0.191339
-0.264815
-0.239198
-0.241425
-0.219949
-0.268711
-0.207255
-0.258055
-0.263066
-0.23702
-0.260845
-0.243662
-0.268457
-0.242021
-0.259738
-0.208529
-0.232808
-0.201254
-0.263106
-0.204179
-0.220787
-0.228992
-0.249224
-0.254629
-0.264558
-0.258428
-0.211406
-0.180125
-0.180363
-0.188308
-0.157586
-0.168898
-0.209524
-0.212049
-0.206876
-0.194512
-0.235855
-0.212039
-0.194827
-0.238964
-0.220257
-0.20016
-0.219444
-0.196683
-0.210961
-0.238228
-0.202623
-0.219224
-0.203511
-0.193177
-0.192592
-0.168353
-0.195797
-0.206554
-0.190094
-0.191241
-0.154007
-0.136858
-0.148229
-0.171195
-0.198325
-0.151671
-0.158647
-0.202559
-0.219587
-0.201748
-0.186537
-0.206043
-0.164414
-0.198214
-0.209481
-0.204122
-0.176431
-0.189083
-0.196842
-0.211501
-0.190362
-0.211087
-0.165824
-0.150928
-0.213196
-0.173356
-0.21712
-0.205605
-0.221144
-0.162634
-0.21433
-0.16514
-0.212471
-0.221611
-0.174796
-0.216644
-0.204558
-0.193648
-0.185786
-0.187759
-0.201255
-0.209498
-0.16425
-0.189599
-0.135172
-0.202722
-0.146125
-0.194785
-0.182404
-0.176269
-0.184797
-0.211749
-0.217626
-0.184268
-0.18054
-0.168382
-0.194011
-0.160707
-0.173012
-0.177198
-0.156925
-0.185254
-0.185322
-0.189871
-0.210554
-0.214409
-0.213592
-0.211025
-0.17854
-0.187347
-0.174829
-0.188789
-0.167792
-0.157418
-0.195794
-0.151301
-0.226288
-0.22084
-0.207924
-0.224485
-0.202264
-0.196561
-0.196488
-0.193494
-0.218853
-0.174317
-0.195146
-0.186653
-0.19262
-0.182626
-0.186642
-0.184542
-0.211107
-0.195018
-0.201505
-0.195365
-0.154351
-0.172562
-0.190042
-0.201559
-0.168363
-0.165827
-0.200272
-0.143024
-0.183495
-0.138913
-0.163041
-0.178711
-0.162653
-0.160611
-0.156282
-0.207819
-0.142753
-0.179317
-0.17417
-0.192267
-0.19205
-0.176406
-0.185125
-0.201591
-0.173899
-0.187395
-0.201106
-0.220715
-0.204721
-0.168133
-0.202193
-0.204728
-0.198128
-0.200258
-0.21777
-0.241976
-0.208938
-0.155518
-0.172426
-0.186824
-0.163673
-0.152345
-0.154955
-0.167983
-0.216702
-0.216713
-0.209994
-0.233999
-0.179937
-0.213591
-0.166037
-0.211134
-0.20363
-0.212851
-0.215619
-0.189243
-0.199183
-0.22094
-0.207488
-0.223463
-0.212457
-0.226485
-0.169023
-0.195698
-0.232068
-0.208235
-0.241622
-0.210973
-0.157096
-0.187588
-0.229638
-0.172205
-0.224715
-0.25975
-0.253409
-0.214352
-0.208704
-0.203722
-0.200844
-0.213227
-0.198689
-0.211945
-0.215194
-0.247375
-0.187307
-0.168361
-0.248852
-0.200274
-0.209659
-0.223329
-0.197599
-0.184457
-0.195679
-0.181984
-0.173026
-0.202395
-0.212139
-0.210952
-0.175282
-0.173327
-0.211585
-0.162072
-0.215304
-0.179466
-0.217585
-0.174861
-0.175704
-0.166342
-0.168193
-0.194053
-0.246688
-0.213869
-0.211979
-0.219329
-0.251142
-0.185633
-0.202343
-0.17379
-0.207012
-0.180339
-0.180848
-0.19085
-0.236728
-0.248763
-0.193795
-0.213158
-0.242536
-0.203375
-0.20234
-0.243145
-0.162005
-0.152025
-0.242289
-0.192105
-0.165096
-0.211293
-0.176425
-0.152323
-0.19889
-0.177285
-0.193847
-0.221293
-0.215465
-0.260664
-0.245028
-0.234931
-0.225753
-0.231341
-0.22237
-0.269792
-0.281258
-0.26027
-0.251089
-0.222862
-0.254451
-0.261559
-0.219214
-0.211134
-0.243904
-0.19866
-0.275387
-0.25357
-0.232444
-0.216627
-0.238331
-0.243781
-0.203546
-0.225676
-0.260964
-0.248967
-0.252162
-0.220119
-0.226913
-0.195353
-0.226378
-0.16787
-0.208375
-0.190874
-0.209216
-0.25047
-0.269221
-0.261697
-0.24185
-0.26484
-0.230563
-0.177694
-0.199136
-0.234135
-0.260855
-0.15787
-0.201668
-0.194182
-0.191673
-0.190906
-0.137142
-0.195348
-0.213196
-0.203385
-0.235856
-0.207925
-0.21368
-0.202309
-0.184952
-0.206011
-0.159883
-0.221131
-0.177058
-0.231425
-0.16248
-0.200932
-0.216548
-0.204142
-0.209613
-0.208058
-0.128991
-0.179749
-0.182262
-0.17723
-0.152795
-0.183649
-0.180664
-0.159397
-0.217276
-0.230015
-0.171228
-0.181581
-0.219827
-0.159607
-0.175891
-0.181707
-0.194091
-0.27709
-0.25027
-0.236446
-0.243616
-0.252594
-0.204015
-0.183205
-0.254061
-0.182481
-0.244755
-0.22933
-0.23148
-0.235764
-0.237663
-0.227789
-0.212823
-0.245562
-0.26804
-0.217259
-0.238454
-0.266983
-0.198229
-0.184968
-0.186808
-0.189583
-0.172086
-0.190838
-0.19603
-0.174748
-0.206534
-0.198503
-0.176627
-0.209469
-0.201533
-0.158922
-0.191723
-0.182488
-0.223501
-0.193339
-0.187599
-0.203077
-0.179338
-0.168724
-0.18473
-0.195577
-0.155931
-0.175987
-0.177722
-0.180934
-0.195036
-0.181717
-0.204723
-0.206815
-0.18377
-0.197524
-0.212552
-0.185461
-0.200785
-0.193196
-0.191147
-0.190338
-0.207832
-0.223158
-0.206887
-0.195312
-0.22943
-0.176904
-0.221498
-0.179556
-0.227486
-0.193577
-0.225595
-0.180456
-0.194734
-0.19411
-0.205872
-0.208604
-0.229583
-0.234567
-0.199491
-0.229015
-0.185275
-0.174023
-0.193459
-0.19765
-0.261407
-0.264349
-0.178855
-0.24359
-0.217105
-0.171022
-0.230654
-0.244221
-0.203171
-0.212951
-0.221924
-0.241114
-0.199284
-0.216879
-0.222725
-0.217934
-0.159161
-0.195034
-0.246675
-0.177306
-0.244827
-0.227372
-0.211036
-0.200122
-0.187346
-0.18584
-0.185958
-0.237011
-0.184835
-0.199489
-0.184183
-0.216409
-0.177818
-0.183466
-0.189812
-0.19949
-0.173583
-0.184094
-0.177963
-0.180168
-0.201565
-0.157988
-0.192362
-0.172053
-0.194794
-0.217561
-0.151646
-0.220888
-0.160858
-0.167652
-0.194916
-0.220791
-0.195592
-0.224825
-0.226195
-0.223672
-0.184435
-0.174585
-0.228497
-0.166415
-0.221901
-0.157039
-0.211749
-0.183532
-0.0411717
-0.0427162
-0.100919
-0.0367671
-0.0963694
-0.0597124
-0.0718821
-0.118111
-0.104842
-0.0360213
-0.0032352
-0.0595483
-0.0443531
-0.0313597
0.0152132
-0.044523
-0.0911352
-0.0780094
-0.0420941
-0.0669577
-0.0385598
-0.085045
-0.0265307
-0.126899
-0.137979
-0.107574
-0.132157
-0.125292
-0.124071
-0.117269
-0.133305
-0.0905406
-0.104949
-0.128406
-0.107326
-0.137231
-0.118922
-0.111189
-0.128874
-0.101078
-0.142109
-0.081984
-0.143726
-0.132752
-0.162794
-0.197106
-0.124924
-0.148716
-0.177911
-0.141526
-0.167648
-0.204276
-0.155288
-0.184221
-0.141006
-0.111813
-0.147855
-0.144503
-0.133164
-0.0956735
-0.13883
-0.138539
-0.123235
-0.111198
-0.139975
-0.134478
-0.15839
-0.0731671
-0.123803
-0.141678
-0.120689
-0.0939561
-0.150405
-0.122223
-0.063897
-0.126002
-0.0847512
-0.135995
-0.110682
-0.0948775
-0.143811
-0.110452
-0.12837
-0.132885
-0.0975329
-0.123812
-0.0815172
-0.168332
-0.15739
-0.11435
-0.111107
-0.127478
-0.165728
-0.161008
-0.155602
-0.163543
-0.189392
-0.152557
-0.158934
-0.170187
-0.142126
-0.171545
-0.169149
-0.155551
-0.185694
-0.171797
-0.144478
-0.153096
-0.135384
-0.144468
-0.144806
-0.164273
-0.11057
-0.135286
-0.124445
-0.109186
-0.120246
-0.133818
-0.123117
-0.109957
-0.132833
-0.138119
-0.105175
-0.087196
-0.140647
-0.12821
-0.0891501
-0.141366
-0.142008
-0.160209
-0.17572
-0.181461
-0.138208
-0.169045
-0.149622
-0.154836
-0.051082
-0.0565644
-0.0507707
-0.0469903
-0.065028
-0.066059
-0.0579841
-0.0176177
-0.068626
0.0265632
-0.0365377
-0.00172593
0.00876775
-0.0476447
-0.0992886
-0.0975622
-0.084051
-0.0905708
-0.100739
-0.0610957
-0.108982
-0.108577
-0.130103
-0.123095
-0.10884
-0.108472
-0.103296
-0.14523
-0.163898
-0.149868
-0.111646
-0.0850634
-0.0927943
-0.0708417
-0.0999745
-0.103534
-0.0965402
-0.09229
-0.112665
-0.10202
-0.082177
-0.0806999
-0.105538
-0.070575
-0.0650467
-0.0842127
-0.118881
-0.0951573
-0.126768
-0.0884919
-0.0923588
-0.125305
-0.15064
-0.108744
-0.0678553
-0.174952
-0.113245
-0.110589
-0.0611616
-0.10712
-0.138982
-0.14832
-0.107019
-0.148359
-0.147659
-0.10553
-0.0935721
-0.12175
-0.122508
-0.105473
-0.113382
-0.114189
-0.0907585
-0.100997
-0.118379
-0.112048
-0.101931
-0.0902693
-0.0973246
-0.155391
-0.188392
-0.154839
-0.150311
-0.124462
-0.0891922
-0.0459398
-0.0997505
-0.120699
-0.0904086
-0.0720933
-0.122008
-0.0464765
-0.0761663
-0.0784689
-0.0297682
-0.0449891
-0.0618468
-0.0677141
-0.148358
-0.0671386
-0.0981919
-0.113082
-0.0836883
-0.137337
-0.131375
-0.121643
-0.159024
-0.144712
-0.126876
-0.110908
-0.092964
-0.0744705
-0.137254
-0.0980547
-0.0965611
-0.0422229
-0.133237
-0.0686812
-0.136204
-0.0835513
-0.116075
-0.111478
-0.119912
-0.14981
-0.131948
-0.117302
-0.109835
-0.138717
-0.153683
-0.116148
-0.133816
-0.135527
-0.123877
-0.100017
-0.13026
-0.133642
-0.080579
-0.100631
-0.138547
-0.078158
-0.124714
-0.0713045
-0.12088
-0.122683
-0.118982
-0.13412
-0.0862562
-0.177929
-0.142936
-0.153246
-0.149279
-0.147342
-0.150807
-0.145335
-0.144508
-0.13816
-0.090082
-0.142032
-0.111341
-0.148039
-0.131976
-0.0882167
-0.152795
-0.163232
-0.151137
-0.168705
-0.158594
-0.158637
-0.152753
-0.159444
-0.133635
-0.182059
-0.137282
-0.105858
-0.140291
-0.159693
-0.122841
-0.125583
-0.162495
-0.0964292
-0.147234
-0.100738
-0.138371
-0.120271
-0.135949
-0.111837
-0.180582
-0.135567
-0.143907
-0.164173
-0.118031
-0.106855
-0.135865
-0.105203
-0.123002
-0.147691
-0.0997297
-0.142622
-0.139329
-0.0898848
-0.09942
-0.135424
-0.149665
-0.121429
-0.0685775
-0.120654
-0.0711849
-0.0863497
-0.0932323
-0.111276
-0.118344
-0.15185
-0.0829185
-0.0665523
-0.0595606
-0.206994
-0.0958788
-0.110518
-0.154846
-0.180545
-0.182205
-0.109573
-0.0895422
-0.147771
-0.12695
-0.160053
-0.167058
-0.149902
-0.098234
-0.13002
-0.153025
-0.11287
-0.188992
-0.110826
-0.107466
-0.208411
-0.204178
-0.0487845
-0.117564
-0.0478958
-0.1151
-0.0647735
-0.0833676
-0.0389988
-0.100693
-0.113553
-0.0965559
-0.0683653
-0.0587733
-0.0152256
-0.0759019
0.0124705
-0.0498141
-0.0916656
0.00104009
-0.0555903
-0.10463
-0.109255
-0.046152
-0.120954
-0.058098
-0.10503
-0.0442351
-0.121986
-0.0589632
-0.0533856
-0.0404897
0.00618546
0.029747
-0.0489399
-0.0431424
0.0062534
-0.144358
-0.172415
-0.17403
-0.125894
-0.186308
-0.186267
-0.085246
-0.100751
-0.106084
-0.19074
-0.177552
-0.17636
-0.114075
-0.125935
-0.0989629
-0.119096
-0.114835
-0.163447
-0.119676
-0.147073
-0.164842
-0.0981699
-0.175142
-0.0863983
-0.189604
-0.185796
-0.0783736
-0.0862084
-0.089827
-0.0818505
-0.0392383
-0.0570521
-0.0905925
-0.0360528
-0.0792889
-0.0469619
-0.0345798
-0.0296197
-0.0563755
-0.0400296
-0.0932657
-0.0947157
-0.0728784
-0.0593408
-0.0583811
-0.060966
-0.0770455
-0.0326134
-0.0690497
-0.0464914
-0.0340272
-0.0319561
-0.0672269
-0.0430731
-0.183691
-0.18802
-0.144647
-0.12944
-0.132218
-0.127417
-0.157393
-0.157453
-0.134219
-0.122863
-0.157774
-0.158861
-0.174554
-0.118572
-0.107795
-0.165091
-0.14688
-0.126535
-0.168589
-0.175536
-0.118953
-0.144368
-0.180889
-0.14094
-0.1683
-0.153296
-0.164195
-0.0875734
-0.101962
-0.154079
-0.162707
-0.090635
-0.171921
-0.173314
-0.133664
-0.161933
-0.156982
-0.188255
-0.146588
-0.124732
-0.0928633
-0.108438
-0.0701656
-0.139372
-0.0671688
-0.0778181
-0.115044
-0.0924196
-0.0714737
-0.134889
-0.0612913
-0.109749
-0.140844
-0.131085
-0.156733
-0.133433
-0.118086
-0.0644854
-0.115008
-0.110239
-0.0818875
-0.100269
-0.0542343
-0.090271
-0.126934
-0.146165
-0.150126
-0.157088
-0.170486
-0.192473
-0.179092
-0.159887
-0.140721
-0.117599
-0.071224
-0.126381
-0.135792
-0.127805
-0.131342
-0.139343
-0.125797
-0.158026
-0.15535
-0.134581
-0.123865
-0.129724
-0.145393
-0.130842
-0.136956
-0.111768
-0.131898
-0.144691
-0.146024
-0.154406
-0.12218
-0.137668
-0.166159
-0.137505
-0.12741
-0.147931
-0.164549
-0.167257
-0.154292
-0.158932
-0.154027
-0.152962
-0.1237
-0.133207
-0.179381
-0.192638
-0.122115
-0.181825
-0.141047
-0.146736
-0.12953
-0.164835
-0.119546
-0.100292
-0.149036
-0.106562
-0.142426
-0.0801631
-0.119248
-0.150336
-0.0977111
-0.101255
-0.0980511
-0.10299
-0.122422
-0.0830067
-0.116187
-0.129624
-0.124453
-0.087746
-0.143967
-0.145788
-0.124512
-0.102195
-0.0988773
-0.158923
-0.142159
-0.0789774
-0.149379
-0.0906269
-0.0954523
-0.15771
-0.15236
-0.151725
-0.15173
-0.156504
-0.133812
-0.0931427
-0.152772
-0.0712144
-0.146975
-0.0748061
-0.136125
-0.0941724
-0.139747
-0.167979
-0.0874838
-0.132297
-0.11992
-0.110068
-0.138487
-0.0957997
-0.113694
-0.102118
-0.0979063
-0.0964108
-0.164942
-0.110611
-0.147677
-0.102553
-0.118533
-0.105172
-0.154927
-0.115434
-0.141495
-0.0849542
-0.0783767
-0.165549
-0.0862232
-0.168866
-0.138096
-0.153234
-0.0863564
-0.164169
-0.10434
-0.172824
-0.105104
-0.141865
-0.700953
-0.715923
-0.705293
-0.695364
-0.698423
-0.697664
-0.709106
-0.732459
-0.735174
-0.737882
-0.732763
-0.704143
-0.716936
-0.727313
-0.708786
-0.708484
-0.709448
-0.704233
-0.728907
-0.725767
-0.729937
-0.746238
-0.729831
-0.725559
-0.727325
-0.751524
-0.761376
-0.735863
-0.747797
-0.739446
-0.74301
-0.74331
-0.756366
-0.743838
-0.752425
-0.747092
-0.726535
-0.722321
-0.742204
-0.719393
-0.72622
-0.722422
-0.722709
-0.755181
-0.739127
-0.749743
-0.746188
-0.74123
-0.752058
-0.747076
-0.599988
-0.580714
-0.573784
-0.603611
-0.603943
-0.574935
-0.599548
-0.604008
-0.639069
-0.601395
-0.60388
-0.601357
-0.638792
-0.599772
-0.580351
-0.604264
-0.577857
-0.600468
-0.603442
-0.575141
-0.60457
-0.601342
-0.639204
-0.601642
-0.604292
-0.639982
-0.563972
-0.559135
-0.555508
-0.562224
-0.563134
-0.557476
-0.563072
-0.545441
-0.559078
-0.545368
-0.559805
-0.544561
-0.561402
-0.546454
-0.551123
-0.540544
-0.562162
-0.548725
-0.56416
-0.560474
-0.554051
-0.549789
-0.560364
-0.561803
-0.543608
-0.547755
-0.559947
-0.54952
-0.543447
-0.560487
-0.548099
-0.573716
-0.576512
-0.583322
-0.576314
-0.574886
-0.596958
-0.572301
-0.60211
-0.578277
-0.598195
-0.571992
-0.600978
-0.600853
-0.637379
-0.586978
-0.595847
-0.637907
-0.595794
-0.60181
-0.598852
-0.637672
-0.602299
-0.598003
-0.638069
-0.594758
-0.580355
-0.574765
-0.578867
-0.572734
-0.598248
-0.582786
-0.646307
-0.655185
-0.661905
-0.663092
-0.679527
-0.668438
-0.674682
-0.664815
-0.666877
-0.686055
-0.691683
-0.690326
-0.702346
-0.696486
-0.701807
-0.6622
-0.665756
-0.67827
-0.664745
-0.677611
-0.663165
-0.66256
-0.677823
-0.679855
-0.686989
-0.681199
-0.688102
-0.702111
-0.698095
-0.694103
-0.699248
-0.685727
-0.699235
-0.770948
-0.747417
-0.755422
-0.750088
-0.753761
-0.77307
-0.747039
-0.720041
-0.708315
-0.712209
-0.717393
-0.708815
-0.744601
-0.723312
-0.719383
-0.715327
-0.712752
-0.749805
-0.766952
-0.737211
-0.743625
-0.736835
-0.75157
-0.741283
-0.742414
-0.678208
-0.680893
-0.707036
-0.713229
-0.676411
-0.68327
-0.708764
-0.678847
-0.711357
-0.690378
-0.713958
-0.684562
-0.683892
-0.709632
-0.747928
-0.729032
-0.730322
-0.725735
-0.726389
-0.719456
-0.742283
-0.761167
-0.734379
-0.758981
-0.738858
-0.737295
-0.762618
-0.741765
-0.744348
-0.750181
-0.718867
-0.715644
-0.720083
-0.750542
-0.742651
-0.739331
-0.758209
-0.756603
-0.738521
-0.743459
-0.762015
-0.646799
-0.645441
-0.663492
-0.648406
-0.6624
-0.649193
-0.659424
-0.64993
-0.664381
-0.685329
-0.684904
-0.679971
-0.667978
-0.660992
-0.676868
-0.664025
-0.664334
-0.646752
-0.647989
-0.708633
-0.664009
-0.646621
-0.660811
-0.647674
-0.662548
-0.648624
-0.66272
-0.663502
-0.666691
-0.699056
-0.663629
-0.664786
-0.645706
-0.645723
-0.661111
-0.657123
-0.682646
-0.658934
-0.660578
-0.645114
-0.645946
-0.718358
-0.721723
-0.694662
-0.702161
-0.716114
-0.693794
-0.722818
-0.721969
-0.71833
-0.767125
-0.722033
-0.718303
-0.767824
-0.7178
-0.690391
-0.700053
-0.721396
-0.691935
-0.717547
-0.721758
-0.71462
-0.703415
-0.69908
-0.691253
-0.688391
-0.716752
-0.708317
-0.721327
-0.716667
-0.766285
-0.720724
-0.717266
-0.765994
-0.716256
-0.689096
-0.697094
-0.720214
-0.688528
-0.716548
-0.720092
-0.584883
-0.593428
-0.574424
-0.578857
-0.575995
-0.582151
-0.581873
-0.610462
-0.620334
-0.60975
-0.610677
-0.610881
-0.609208
-0.617439
-0.584401
-0.592152
-0.574396
-0.58169
-0.58443
-0.574858
-0.581246
-0.611047
-0.607764
-0.611178
-0.611927
-0.608192
-0.610336
-0.618141
-0.575276
-0.563778
-0.560439
-0.55955
-0.575228
-0.560377
-0.560284
-0.528698
-0.528211
-0.52987
-0.526862
-0.573968
-0.562746
-0.558599
-0.558556
-0.573276
-0.559443
-0.558907
-0.592335
-0.582163
-0.577369
-0.59319
-0.580167
-0.578619
-0.578482
-0.589938
-0.576684
-0.579931
-0.58296
-0.575817
-0.57293
-0.595107
-0.6399
-0.58743
-0.595681
-0.587106
-0.639216
-0.578263
-0.590381
-0.576793
-0.57503
-0.580073
-0.576202
-0.573143
-0.595665
-0.60852
-0.610907
-0.606094
-0.589278
-0.636987
-0.594811
-0.580607
-0.583089
-0.593512
-0.582346
-0.582168
-0.675839
-0.674816
-0.670811
-0.674282
-0.668464
-0.675752
-0.675089
-0.649219
-0.659348
-0.660635
-0.646739
-0.648914
-0.647113
-0.664245
-0.653443
-0.663507
-0.649082
-0.653057
-0.651133
-0.662608
-0.661707
-0.651323
-0.674763
-0.666492
-0.673242
-0.674
-0.667923
-0.673819
-0.674684
-0.695165
-0.690585
-0.689677
-0.692523
-0.690164
-0.690317
-0.701933
-0.712247
-0.701737
-0.711238
-0.699897
-0.701845
-0.646905
-0.648284
-0.665151
-0.653732
-0.662637
-0.648339
-0.653573
-0.640175
-0.641977
-0.647696
-0.637751
-0.686675
-0.671057
-0.663081
-0.663922
-0.663592
-0.670635
-0.688735
-0.647302
-0.663657
-0.661614
-0.650212
-0.673695
-0.661528
-0.672863
-0.661814
-0.67284
-0.661276
-0.672437
-0.640256
-0.643769
-0.660528
-0.646966
-0.648333
-0.654758
-0.66263
-0.656601
-0.673373
-0.696059
-0.675761
-0.662203
-0.675969
-0.643624
-0.660268
-0.657684
-0.647364
-0.651969
-0.664251
-0.699771
-0.660284
-0.660373
-0.647105
-0.641205
-0.659101
-0.702097
-0.699323
-0.666333
-0.642342
-0.662291
-0.643248
-0.664241
-0.64766
-0.664466
-0.666039
-0.668413
-0.704869
-0.666866
-0.667707
-0.647352
-0.645916
-0.663907
-0.66535
-0.703746
-0.666143
-0.662684
-0.634436
-0.643424
-0.704216
-0.69692
-0.695574
-0.734302
-0.736589
-0.749193
-0.737243
-0.752184
-0.733122
-0.738556
-0.704213
-0.701116
-0.691384
-0.711467
-0.704666
-0.700802
-0.691039
-0.735383
-0.733688
-0.735171
-0.736244
-0.733894
-0.735194
-0.737743
-0.705192
-0.691057
-0.711258
-0.699853
-0.700805
-0.692099
-0.704995
-1.04496
-1.05427
-1.05647
-1.05001
-1.06165
-1.06084
-1.03616
-0.956846
-0.964155
-0.957865
-0.966689
-0.937475
-0.924324
-0.914562
-0.954752
-0.945331
-0.915397
-0.949219
-0.93595
-0.995496
-0.940647
-0.945708
-0.941161
-0.94079
-1.03204
-1.03086
-1.00828
-1.01351
-1.03347
-1.03014
-1.01504
-1.04182
-1.0474
-1.05054
-1.04893
-1.04485
-1.04134
-1.0497
-1.01596
-1.02459
-1.02354
-1.01356
-1.03257
-1.0314
-1.06841
-1.02907
-1.03553
-1.01572
-1.00939
-1.02
-1.02482
-1.02228
-1.0237
-1.01451
-1.00942
-1.0105
-0.932788
-0.932816
-0.912742
-0.952706
-0.944185
-0.917257
-0.929495
-0.963123
-0.982996
-0.980791
-0.974211
-0.981137
-0.967858
-0.975913
-0.948789
-0.995313
-0.940854
-0.945289
-0.993753
-0.938475
-0.966986
-0.982284
-0.978134
-0.982922
-0.984033
-0.984551
-0.966123
-0.962762
-0.990137
-0.97991
-0.965434
-0.985978
-0.956535
-0.978605
-1.04869
-1.04122
-1.06624
-1.04874
-1.05274
-1.05098
-1.05276
-1.06894
-1.04882
-1.00381
-1.01089
-0.987601
-1.00856
-0.983892
-1.05221
-1.03789
-1.07309
-1.06228
-1.04439
-1.06707
-1.04405
-1.03142
-0.997148
-0.992055
-1.03469
-0.99252
-0.957491
-0.983766
-0.976539
-0.984808
-0.968056
-0.981396
-0.964361
-0.956877
-0.990121
-0.962305
-0.990598
-0.956201
-0.988177
-0.96206
-0.799198
-0.819414
-0.820839
-0.809663
-0.805401
-0.811074
-0.816935
-0.796941
-0.827916
-0.800613
-0.826952
-0.803925
-0.825728
-0.795248
-0.8236
-0.817142
-0.823804
-0.783327
-0.8059
-0.792543
-0.787735
-0.784576
-0.80839
-0.785895
-0.785491
-0.788844
-0.791404
-0.802424
-0.790218
-0.806371
-0.783715
-0.810335
-0.811125
-0.812825
-0.855364
-0.851136
-0.849104
-0.852571
-0.852856
-0.853533
-0.849912
-0.892069
-0.894984
-0.872603
-0.883316
-0.878347
-0.88534
-0.8903
-0.878053
-0.878289
-0.877831
-0.876699
-0.892264
-0.884856
-0.887979
-0.888181
-0.84843
-0.865769
-0.845544
-0.845221
-0.851527
-0.847098
-0.846416
-0.82094
-0.81197
-0.813015
-0.758647
-0.762532
-0.794274
-0.755424
-0.793322
-0.777541
-0.78517
-0.772055
-0.780067
-0.773774
-0.782092
-0.778934
-0.798794
-0.801616
-0.86865
-0.846269
-0.827459
-0.847651
-0.834354
-0.84806
-0.873077
-0.873955
-0.875967
-0.903239
-0.870095
-0.903534
-0.870464
-0.875652
-0.905756
-0.870942
-0.833458
-0.835916
-0.83707
-0.870267
-0.872143
-0.867691
-0.925156
-0.938455
-0.936526
-0.787942
-0.815017
-0.808357
-0.798525
-0.801206
-0.790713
-0.805881
-0.792472
-0.819279
-0.797026
-0.82387
-0.793329
-0.795746
-0.815641
-0.770674
-0.783992
-0.772324
-0.759368
-0.7706
-0.763854
-0.854657
-0.837142
-0.844546
-0.862445
-0.857534
-0.839844
-0.835861
-0.839044
-0.86038
-0.85999
-0.86398
-0.912787
-0.867079
-0.867244
-0.858939
-0.836075
-0.830475
-0.862253
-0.851728
-0.837316
-0.849037
-0.843333
-0.860146
-0.841583
-0.792733
-0.757522
-0.759429
-0.791504
-0.757685
-0.790167
-0.754413
-0.755725
-0.754593
-0.75632
-0.786926
-0.794998
-0.795357
-0.837425
-0.84539
-0.838133
-0.842827
-0.868399
-0.89825
-0.896057
-0.876708
-0.889806
-0.883903
-0.893511
-0.890029
-0.831492
-0.827304
-0.830202
-0.863618
-0.82476
-0.984849
-0.978301
-0.985951
-0.944089
-0.931939
-0.95984
-0.911943
-0.946808
-0.933925
-0.979648
-0.962847
-0.98028
-0.918211
-0.961801
-0.917613
-0.960972
-0.917066
-0.964234
-0.96065
-0.960604
-1.03929
-1.08349
-1.04762
-1.08737
-1.03907
-1.04619
-1.08378
-1.05494
-1.05959
-1.05516
-1.07427
-1.05239
-1.04879
-1.0684
-1.01776
-1.0087
-0.996377
-1.02009
-1.01662
-0.997695
-1.01119
-1.01958
-0.991635
-1.03951
-1.01735
-1.03236
-0.993877
-1.01458
-0.83326
-0.836082
-0.847567
-0.794855
-0.796078
-0.830401
-0.796728
-0.794115
-0.804325
-0.799382
-0.783451
-0.795884
-0.802647
-0.787624
-0.800359
-0.780356
-0.781976
-0.803139
-0.800723
-0.781669
-0.78362
-0.801513
-0.785303
-0.802339
-0.797341
-0.831092
-0.796445
-0.798183
-0.797773
-0.856434
-0.833722
-0.8263
-0.860863
-0.827088
-0.86021
-0.857616
-0.858108
-0.883175
-0.87568
-0.858996
-0.912825
-0.851838
-0.835454
-0.829971
-0.835749
-0.828919
-0.839794
-0.858782
-0.862793
-0.859717
-0.914227
-0.859055
-0.864088
-0.914712
-0.791855
-0.794242
-0.829201
-0.79172
-0.79461
-0.778691
-0.778562
-0.796425
-0.792435
-0.777608
-0.790485
-0.78386
-0.797044
-0.78224
-0.800124
-0.799436
-0.782239
-0.777836
-0.78207
-0.800795
-0.798755
-0.793212
-0.827713
-0.807184
-0.806809
-0.796359
-0.807012
-0.832434
-0.835188
-0.858712
-0.826038
-0.835442
-0.861382
-0.8619
-0.826565
-0.858298
-0.871883
-0.899865
-0.879596
-0.864496
-0.881754
-0.928866
-0.859221
-0.839423
-0.847402
-0.830971
-0.861171
-0.82786
-0.85331
-0.866204
-0.860018
-0.915713
-0.860408
-0.864787
-0.919784
-0.956028
-0.955034
-0.967705
-0.956397
-0.989421
-0.970446
-0.994507
-0.955892
-0.976122
-0.956115
-0.9185
-0.911252
-0.915791
-0.965379
-0.959976
-0.983933
-0.985384
-0.952955
-0.986917
-0.952822
-0.959126
-0.954059
-0.921485
-0.913005
-0.951694
-0.916765
-0.962474
-0.971901
-0.982237
-1.04351
-1.04162
-1.00562
-1.0083
-1.03827
-0.981739
-1.03053
-0.987515
-1.02602
-0.98576
-0.961653
-0.940492
-0.954564
-0.953349
-0.944119
-0.973863
-0.970358
-0.969178
-0.959624
-0.973665
-0.965542
-0.96997
-0.996831
-0.982098
-0.955746
-0.980042
-0.973588
-0.96468
-0.98904
-0.933931
-0.942683
-0.96263
-0.940602
-0.840426
-0.839557
-0.841111
-0.853428
-0.847368
-0.846096
-0.839624
-0.813047
-0.813844
-0.823938
-0.817035
-0.832744
-0.833109
-0.783875
-0.774551
-0.775814
-0.778515
-0.810939
-0.799446
-0.815378
-0.825276
-0.798178
-0.826769
-0.806243
-0.826255
-0.803104
-0.874514
-0.909047
-0.909458
-0.880394
-0.908818
-0.88277
-0.871976
-0.876147
-0.918237
-0.911865
-0.909791
-0.910567
-0.893504
-0.886583
-0.829211
-0.812575
-0.807733
-0.808845
-0.807778
-0.812322
-0.831782
-0.780914
-0.796655
-0.780378
-0.787813
-0.794519
-0.78081
-0.78891
-0.780167
-0.774611
-0.777679
-0.77982
-0.812703
-0.812298
-0.806739
-0.810507
-0.809677
-0.806933
-0.812639
-0.888781
-0.902457
-0.885344
-0.894456
-0.887939
-0.901186
-0.888068
-0.851363
-0.853228
-0.846965
-0.833313
-0.85155
-0.846447
-0.833267
-0.886761
-0.91173
-0.89447
-0.903983
-0.896196
-0.904769
-0.891375
-0.840827
-0.822865
-0.824397
-0.865975
-0.877786
-0.87985
-0.882496
-0.825694
-0.825376
-0.868565
-0.823245
-0.866643
-0.975551
-0.998844
-0.976285
-0.930389
-0.961613
-0.930496
-0.958018
-0.932879
-0.952677
-0.935744
-0.96496
-0.951508
-0.985647
-0.953227
-0.954217
-0.950151
-0.928612
-0.932299
-1.00803
-1.01581
-1.01153
-1.0231
-1.01571
-0.94943
-0.947132
-0.958154
-0.941874
-0.962949
-0.932594
-0.957429
-0.934791
-0.958098
-0.941969
-0.964145
-0.96461
-0.970175
-0.973756
-0.96407
-0.96412
-0.968721
-0.966415
-0.952404
-0.951687
-1.00035
-0.959064
-0.946853
-0.930704
-0.938192
-0.245857
-0.22239
-0.218556
-0.21024
-0.198681
-0.235513
-0.227282
-0.23062
-0.225043
-0.204088
-0.212861
-0.232108
-0.16797
-0.177014
-0.224378
-0.214273
-0.157956
-0.238634
-0.248052
-0.221385
-0.203962
-0.242546
-0.182636
-0.187014
-0.177071
-0.172852
-0.178282
-0.19379
-0.156993
-0.191399
-0.192298
-0.213179
-0.204268
-0.200041
-0.211059
-0.202643
-0.241142
-0.203712
-0.207463
-0.248624
-0.21549
-0.230744
-0.241903
-0.276932
-0.2076
-0.199749
-0.222583
-0.210456
-0.223472
-0.219751
-0.180197
-0.234229
-0.232128
-0.218511
-0.257039
-0.185566
-0.243162
-0.197575
-0.215478
-0.191271
-0.190042
-0.235099
-0.196295
-0.245225
-0.232265
-0.207359
-0.239551
-0.228852
-0.246415
-0.239069
-0.181873
-0.179212
-0.2408
-0.193291
-0.188554
-0.166443
-0.236245
-0.172291
-0.19416
-0.209314
-0.158272
-0.184338
-0.184283
-0.192165
-0.175444
-0.220936
-0.217796
-0.17989
-0.167416
-0.226681
-0.195013
-0.175871
-0.205198
-0.213415
-0.233253
-0.16042
-0.203383
-0.214074
-0.163779
-0.177475
-0.169292
-0.175509
-0.145861
-0.19651
-0.182133
-0.174227
-0.149407
-0.22006
-0.177037
-0.16611
-0.164862
-0.20371
-0.194796
-0.222407
-0.230904
-0.201022
-0.281317
-0.214586
-0.23273
-0.210753
-0.275537
-0.207393
-0.166643
-0.211511
-0.219976
-0.155481
-0.192151
-0.182043
-0.223794
-0.179649
-0.205084
-0.220579
-0.222962
-0.196974
-0.228391
-0.230519
-0.222611
-0.215966
-0.240211
-0.219488
-0.203064
-0.190301
-0.202673
-0.221169
-0.258235
-0.232724
-0.235786
-0.202771
-0.245802
-0.220668
-0.250235
-0.232859
-0.285502
-0.273555
-0.217434
-0.25773
-0.256875
-0.206812
-0.210097
-0.218162
-0.222992
-0.216265
-0.218895
-0.192321
-0.215769
-0.219898
-0.199275
-0.214703
-0.223676
-0.221232
-0.176287
-0.189456
-0.220386
-0.187977
-0.190271
-0.212802
-0.171105
-0.195047
-0.196866
-0.166166
-0.17427
-0.149676
-0.174638
-0.183036
-0.16412
-0.207393
-0.187701
-0.209608
-0.214359
-0.205809
-0.19858
-0.199571
-0.214638
-0.159592
-0.212817
-0.163365
-0.20101
-0.227317
-0.180226
-0.186294
-0.190595
-0.209628
-0.229376
-0.154662
-0.176515
-0.202725
-0.164072
-0.235288
-0.18541
-0.238664
-0.207004
-0.231351
-0.199473
-0.185111
-0.245317
-0.198181
-0.236783
-0.211065
-0.231471
-0.211003
-0.1566
-0.2045
-0.205497
-0.217797
-0.18176
-0.209006
-0.204588
-0.222843
-0.203512
-0.244248
-0.188824
-0.221898
-0.231857
-0.195949
-0.172396
-0.228161
-0.282376
-0.173743
-0.246606
-0.196018
-0.219739
-0.187635
-0.21923
-0.202074
-0.233565
-0.202201
-0.219226
-0.194083
-0.214186
-0.203648
-0.208804
-0.214862
-0.199779
-0.206366
-0.207563
-0.233252
-0.189774
-0.227623
-0.233328
-0.204828
-0.151086
-0.155117
-0.18792
-0.171816
-0.176151
-0.17863
-0.233258
-0.268216
-0.245042
-0.221998
-0.254448
-0.204292
-0.295364
-0.260309
-0.23871
-0.224785
-0.232388
-0.15246
-0.184622
-0.219028
-0.235806
-0.17285
-0.213022
-0.188287
-0.181075
-0.198644
-0.203955
-0.197914
-0.174458
-0.192337
-0.198565
-0.200527
-0.192795
-0.179409
-0.177001
-0.187731
-0.198157
-0.257546
-0.223502
-0.18006
-0.267908
-0.250876
-0.166179
-0.216014
-0.181707
-0.223132
-0.225562
-0.167111
-0.203708
-0.184722
-0.189937
-0.230841
-0.257187
-0.172879
-0.203792
-0.249889
-0.191014
-0.218629
-0.192269
-0.194322
-0.222815
-0.188697
-0.201112
-0.190224
-0.215853
-0.202349
-0.221641
-0.235314
-0.195436
-0.226263
-0.245856
-0.241853
-0.211712
-0.216097
-0.241137
-0.205766
-0.197356
-0.198895
-0.241332
-0.209535
-0.243056
-0.182275
-0.240701
-0.244072
-0.195447
-0.190477
-0.1934
-0.179827
-0.183585
-0.176558
-0.163015
-0.14873
-0.173156
-0.164098
-0.170026
-0.214717
-0.194353
-0.215468
-0.210781
-0.200938
-0.232769
-0.201171
-0.202335
-0.198226
-0.199704
-0.157064
-0.17084
-0.201423
-0.212878
-0.164654
-0.267805
-0.223278
-0.282306
-0.289652
-0.270947
-0.256351
-0.254515
-0.253077
-0.247542
-0.249152
-0.233071
-0.257444
-0.215489
-0.212435
-0.224315
-0.206782
-0.178376
-0.185133
-0.201922
-0.237115
-0.175675
-0.243687
-0.204184
-0.244811
-0.232137
-0.220734
-0.221954
-0.255717
-0.257217
-0.199367
-0.194048
-0.219864
-0.213449
-0.21956
-0.209427
-0.205173
-0.238829
-0.191831
-0.207447
-0.218763
-0.218081
-0.219531
-0.212883
-0.247015
-0.256694
-0.247001
-0.262527
-0.213926
-0.163478
-0.254045
-0.185038
-0.223505
-0.22293
-0.181254
-0.241379
-0.266277
-0.181302
-0.206905
-0.271552
-0.198998
-0.239842
-0.232595
-0.190603
-0.204948
-0.189533
-0.205038
-0.262822
-0.19548
-0.254175
-0.197224
-0.249919
-0.21817
-0.215782
-0.194766
-0.168353
-0.167069
-0.184498
-0.184912
-0.182711
-0.180577
-0.217745
-0.191047
-0.24625
-0.16965
-0.202378
-0.250636
-0.180986
-0.205142
-0.243338
-0.23445
-0.242792
-0.258898
-0.218642
-0.261118
-0.202611
-0.286605
-0.262491
-0.221675
-0.247772
-0.21347
-0.213588
-0.253013
-0.200584
-0.22418
-0.224596
-0.234254
-0.214381
-0.220744
-0.215093
-0.229093
-0.258057
-0.264327
-0.204351
-0.235226
-0.207592
-0.202112
-0.212367
-0.255331
-0.194534
-0.256374
-0.208184
-0.275227
-0.234243
-0.250749
-0.223938
-0.223591
-0.170903
-0.249792
-0.193634
-0.207361
-0.255833
-0.182696
-0.26323
-0.213968
-0.228236
-0.25748
-0.227235
-0.194077
-0.248687
-0.218157
-0.201761
-0.224015
-0.244965
-0.258286
-0.214906
-0.265375
-0.247684
-0.203268
-0.204011
-0.214448
-0.221539
-0.188679
-0.223979
-0.210784
-0.247267
-0.206691
-0.224828
-0.195495
-0.15892
-0.216338
-0.1881
-0.184791
-0.199537
-0.173962
-0.169572
-0.166541
-0.170597
-0.181252
-0.192908
-0.166752
-0.180886
-0.180337
-0.245789
-0.237842
-0.180316
-0.246427
-0.241959
-0.213995
-0.241812
-0.200498
-0.187825
-0.15872
-0.191334
-0.211165
-0.238259
-0.22583
-0.178244
-0.172572
-0.233512
-0.223294
-0.258114
-0.25809
-0.230013
-0.24518
-0.240982
-0.225291
-0.260511
-0.206757
-0.197915
-0.25316
-0.239346
-0.185574
-0.265025
-0.289127
-0.255277
-0.243637
-0.22879
-0.271889
-0.267973
-0.240003
-0.246845
-0.273935
-0.203679
-0.196746
-0.203265
-0.191371
-0.190671
-0.214865
-0.181799
-0.236831
-0.177028
-0.191934
-0.19492
-0.219154
-0.184706
-0.186413
-0.211653
-0.209267
-0.194275
-0.223968
-0.252659
-0.239591
-0.216186
-0.237934
-0.215889
-0.209722
-0.20638
-0.213962
-0.191289
-0.215649
-0.219656
-0.247299
-0.200721
-0.220501
-0.238242
-0.220062
-0.229279
-0.186475
-0.20738
-0.230736
-0.252998
-0.222973
-0.199396
-0.224897
-0.228192
-0.216776
-0.17925
-0.185247
-0.185516
-0.239991
-0.187414
-0.194098
-0.207799
-0.198982
-0.173965
-0.240644
-0.190923
-0.212409
-0.217523
-0.182281
-0.173429
-0.188446
-0.190175
-0.168693
-0.183887
-0.198795
-0.182285
-0.18566
-0.174639
-0.181501
-0.169947
-0.194728
-0.186661
-0.187443
-0.210299
-0.231787
-0.229924
-0.174617
-0.214016
-0.212189
-0.184584
-0.161066
-0.127248
-0.169271
-0.148956
-0.146077
-0.19266
-0.0975848
-0.119757
-0.110014
-0.0901625
-0.0937439
-0.108836
-0.108504
-0.14847
-0.132124
-0.162828
-0.108129
-0.091388
-0.124733
-0.134294
-0.160199
-0.114634
-0.110084
-0.161012
-0.149574
-0.174769
-0.116669
-0.086006
-0.153106
-0.128076
-0.0935677
-0.106551
-0.0793203
-0.0986608
-0.145558
-0.161571
-0.146287
-0.154454
-0.15157
-0.0621515
-0.128028
-0.15542
-0.100027
-0.0799386
-0.147375
-0.0847636
-0.160322
-0.157484
-0.0882663
-0.162937
-0.177088
-0.0956459
-0.16637
-0.0805372
-0.112348
-0.062311
-0.0755736
-0.0344924
-0.0679649
-0.178235
-0.144087
-0.152684
-0.176823
-0.165638
-0.116189
-0.176664
-0.129563
-0.132816
-0.103241
-0.145809
-0.0829832
-0.118319
-0.0809124
-0.115538
-0.102408
-0.0920768
-0.0986599
-0.178659
-0.213252
-0.143757
-0.163208
-0.117703
-0.122207
-0.146277
-0.121999
-0.164172
-0.14572
-0.0521052
-0.0230418
-0.140069
-0.13064
-0.0475056
-0.0289472
-0.128839
-0.0527005
-0.0750995
-0.12683
-0.0896349
-0.0262536
-0.0937997
-0.106234
-0.0483062
-0.0264084
-0.0722811
-0.104271
-0.0942354
-0.0322749
-0.104174
-0.125228
-0.135825
-0.120858
-0.141447
-0.141407
-0.169115
-0.145474
-0.109662
-0.155043
-0.0988387
-0.0627138
-0.133781
-0.154068
-0.0796004
-0.143001
-0.16863
-0.172316
-0.146864
-0.190134
-0.155614
-0.17262
-0.123084
-0.172942
-0.167897
-0.156943
-0.16078
-0.160171
-0.140752
-0.128852
-0.152268
-0.141114
-0.125743
-0.176461
-0.170423
-0.132614
-0.161294
-0.133858
-0.154914
-0.0895005
-0.0839897
-0.166836
-0.0754442
-0.157815
-0.162476
-0.137407
-0.136102
-0.128659
-0.100435
-0.0980912
-0.0944996
-0.101329
-0.109494
-0.120386
-0.0858451
-0.159642
-0.140992
-0.147555
-0.132728
-0.154402
-0.151146
-0.163057
-0.165187
-0.145702
-0.126559
-0.172072
-0.157891
-0.100488
-0.112527
-0.141791
-0.101879
-0.115635
-0.0875547
-0.105221
-0.109268
-0.128014
-0.110036
-0.110957
-0.10791
-0.131614
-0.099961
-0.108607
-0.0940452
-0.131015
-0.0937792
-0.109419
-0.129102
-0.0911897
-0.0815356
-0.199267
-0.0976107
-0.0964542
-0.0159827
-0.0242838
-0.101691
-0.111655
-0.0160421
-0.0858944
-0.0905816
-0.0553409
-0.0189798
-0.039259
-0.112809
0.0110038
-0.193576
-0.0898621
-0.102137
-0.13291
-0.131745
-0.041947
-0.0568728
-0.0698571
-0.0421474
-0.0699209
-0.0673777
-0.0559247
-0.0416221
-0.0409189
-0.0688987
-0.128114
-0.127444
-0.159096
-0.154502
-0.0935562
-0.0925158
-0.163103
-0.149225
-0.0918544
-0.123878
-0.151698
-0.155918
-0.107789
-0.106516
-0.11993
-0.12313
-0.130175
-0.178411
-0.096114
-0.14883
-0.131799
-0.175668
-0.107243
-0.139948
-0.10974
-0.137404
-0.18475
-0.174693
-0.140163
-0.109551
-0.155474
-0.159912
-0.122184
-0.146936
-0.167616
-0.137518
-0.146488
-0.165185
-0.17701
-0.157155
-0.171149
-0.161759
-0.146212
-0.108869
-0.0899669
-0.167625
-0.156266
-0.0846603
-0.117396
-0.154171
-0.106417
-0.104836
-0.0800833
-0.161799
-0.115004
-0.0798789
-0.150214
-0.143509
-0.148537
-0.0913583
-0.066951
-0.0929314
-0.131958
-0.156281
-0.149779
-0.13737
-0.0874923
-0.129696
-0.106816
-0.165321
-0.136294
-0.189077
-0.190332
-0.204278
-0.194059
-0.19543
-0.0937909
-0.130145
-0.186456
-0.134973
-0.11386
-0.106887
-0.118685
-0.189352
-0.112186
-0.111144
-0.130414
-0.130704
-0.112245
-0.118231
-0.126325
-0.167342
-0.160755
-0.126558
-0.16385
-0.138772
-0.0726759
-0.113876
-0.092593
-0.157977
-0.150371
-0.120214
-0.119966
-0.134668
-0.12891
-0.167705
-0.167313
-0.127293
-0.172134
-0.130359
-0.134349
-0.161045
-0.160975
-0.119201
-0.136515
-0.104903
-0.132715
-0.149643
-0.114367
-0.170119
-0.17165
-0.114745
-0.140082
-0.11396
-0.172113
-0.143661
-0.185214
-0.150107
-0.12098
-0.14279
-0.182606
-0.138073
-0.13788
-0.156087
-0.167851
-0.136488
-0.162296
-0.109064
-0.169795
-0.151302
-0.127441
-0.169974
-0.110403
-0.127694
-0.0936582
-0.115392
-0.104938
-0.176952
-0.167742
-0.107096
-0.162515
-0.114995
-0.108833
-0.102
-0.132431
-0.108544
-0.0989879
-0.092557
-0.104448
-0.107307
-0.116705
-0.133974
-0.0478701
-0.104258
-0.0544543
-0.10718
-0.129726
-0.0415973
-0.123294
-0.0339563
-0.122309
-0.039693
-0.131006
-0.0944739
-0.105998
-0.10927
-0.104623
-0.10378
-0.134548
-0.132462
-0.103085
-0.0511839
-0.0348423
-0.105794
-0.131027
-0.0332285
-0.105933
-0.125197
-0.151731
-0.0903783
-0.0900476
-0.133218
-0.10841
-0.106291
-0.0989946
-0.13571
-0.15724
-0.112758
-0.0898582
-0.134481
-0.140893
-0.0981898
-0.0836434
-0.171277
-0.165548
-0.101929
-0.141107
-0.136887
-0.11993
-0.091697
-0.130203
-0.157602
-0.120916
-0.103565
-0.171473
-0.124674
-0.16216
-0.171201
-0.126544
-0.154196
-0.094393
-0.100372
-0.107239
-0.157833
-0.097738
-0.15652
-0.162074
-0.130552
-0.164917
-0.12705
-0.112174
-0.177856
-0.161081
-0.097297
-0.183074
-0.131139
-0.0900925
-0.0355252
-0.118461
-0.0958245
-0.0565917
-0.103803
-0.0626506
-0.0863821
-0.0738743
-0.0382134
-0.0997218
-0.108262
-0.169756
-0.190139
-0.106982
-0.18919
-0.0930491
-0.10167
-0.071823
-0.103426
-0.0558517
-0.0817707
-0.134362
-0.0772389
-0.0934429
-0.191383
-0.139089
-0.199467
-0.151201
-0.134422
-0.192099
-0.157811
-0.162796
-0.150712
-0.164921
-0.147117
-0.134309
-0.136206
-0.190639
-0.175559
-0.113742
-0.186465
-0.152228
-0.19457
-0.189425
-0.191014
-0.136629
-0.183143
-0.167514
-0.201558
-0.159305
-0.171874
-0.172003
-0.172612
-0.16006
-0.165893
-0.182007
-0.165281
-0.103361
-0.143754
-0.110891
-0.110593
-0.116781
-0.0853872
-0.11656
-0.104246
-0.0877889
-0.105756
-0.100277
-0.110894
-0.103459
-0.0908895
-0.141469
-0.194737
-0.206882
-0.111824
-0.205758
-0.116778
-0.12236
-0.185703
-0.177676
-0.157789
-0.17634
-0.150237
-0.18501
-0.16277
-0.0939405
-0.162844
-0.075385
-0.172524
-0.0902253
-0.155757
-0.149173
-0.136677
-0.137422
-0.141915
-0.129016
-0.0944348
-0.0656992
-0.100664
-0.085182
-0.102024
-0.106891
-0.162186
-0.105262
-0.158012
-0.155339
-0.101055
-0.0980696
-0.149991
-0.106681
-0.154518
-0.152631
-0.119512
-0.136839
-0.0938939
-0.129962
-0.093632
-0.170302
-0.0797426
-0.157205
-0.109578
-0.164786
-0.0758218
-0.104568
-0.167252
-0.143724
-0.0708587
-0.141712
-0.09382
-0.0844789
-0.0895291
-0.07984
-0.144415
-0.1177
-0.152773
-0.0751651
-0.0934589
-0.154385
-0.154658
-0.123377
-0.155984
-0.0855371
-0.017982
-0.105299
-0.0255852
-0.10354
-0.0857097
-0.0159163
-0.1425
-0.102312
-0.112343
-0.0684954
-0.0518898
-0.0231813
0.012605
-0.0878222
-0.0163836
0.00140948
-0.183724
-0.158131
-0.189075
-0.12723
-0.153372
-0.0862532
-0.105608
-0.151608
-0.130153
-0.0960727
-0.107598
-0.0930787
-0.0826669
-0.158767
-0.0948874
-0.130976
-0.102301
-0.103208
-0.0878686
-0.080078
-0.0998737
-0.0948692
-0.0919175
-0.100048
-0.122904
-0.0818464
-0.109312
-0.0942164
-0.111478
-0.142501
-0.0927691
-0.159717
-0.143563
-0.150872
-0.164708
-0.151084
-0.0962044
-0.047108
-0.106568
-0.0681233
-0.0853357
-0.054359
-0.0623548
-0.106786
-0.160267
-0.135762
-0.140246
-0.165367
-0.146211
-0.0411247
-0.052853
-0.0194449
-0.084146
-0.0294453
-0.0602393
-0.104176
-0.708814
-0.725506
-0.730206
-0.728572
-0.709638
-0.728965
-0.728668
-0.715492
-0.724221
-0.732913
-0.730534
-0.71294
-0.734747
-0.731617
-0.591981
-0.61948
-0.597529
-0.617954
-0.594603
-0.595491
-0.618015
-0.589836
-0.593535
-0.617064
-0.617143
-0.593649
-0.588735
-0.617098
-0.584974
-0.567702
-0.57824
-0.560449
-0.58366
-0.577245
-0.562103
-0.522405
-0.514366
-0.521804
-0.514879
-0.577308
-0.559883
-0.555787
-0.556349
-0.574358
-0.55947
-0.558105
-0.5599
-0.586466
-0.558279
-0.55841
-0.586178
-0.590179
-0.590309
-0.59025
-0.591452
-0.556661
-0.555183
-0.58426
-0.556331
-0.584878
-0.567339
-0.563667
-0.588489
-0.588363
-0.567679
-0.596174
-0.594239
-0.587931
-0.602933
-0.598129
-0.591513
-0.591055
-0.587825
-0.618418
-0.617845
-0.593551
-0.593541
-0.618118
-0.58749
-0.588898
-0.592705
-0.616616
-0.618215
-0.587637
-0.594404
-0.618659
-0.657383
-0.658233
-0.6546
-0.623466
-0.621586
-0.624288
-0.654568
-0.659367
-0.653648
-0.678365
-0.680844
-0.680516
-0.653835
-0.659282
-0.655613
-0.62638
-0.629808
-0.627181
-0.656266
-0.659536
-0.680844
-0.655783
-0.678284
-0.660508
-0.680531
-0.654332
-0.656896
-0.65674
-0.71901
-0.68327
-0.683272
-0.711556
-0.723477
-0.723811
-0.67813
-0.68178
-0.715658
-0.679171
-0.715157
-0.669569
-0.657696
-0.64317
-0.641359
-0.641094
-0.637389
-0.697101
-0.672525
-0.669607
-0.681624
-0.691279
-0.689611
-0.675367
-0.66299
-0.630847
-0.647398
-0.653624
-0.673806
-0.681439
-0.656446
-0.681787
-0.661011
-0.682565
-0.665029
-0.718955
-0.680457
-0.676246
-0.676333
-0.71817
-0.722457
-0.724182
-0.676486
-0.67979
-0.715025
-0.676271
-0.716609
-0.720804
-0.754942
-0.725908
-0.754852
-0.726368
-0.719561
-0.754724
-0.720401
-0.758956
-0.725105
-0.75404
-0.727949
-0.718247
-0.758724
-0.658465
-0.658269
-0.654889
-0.622771
-0.61887
-0.622135
-0.654937
-0.660368
-0.653642
-0.682995
-0.682475
-0.653672
-0.660179
-0.684667
-0.664061
-0.692696
-0.653199
-0.688022
-0.654876
-0.663434
-0.693184
-0.656113
-0.618311
-0.622555
-0.622255
-0.656136
-0.656692
-0.657365
-0.678938
-0.679472
-0.687431
-0.684013
-0.679834
-0.684628
-0.678473
-0.722211
-0.727965
-0.726701
-0.683701
-0.696209
-0.69017
-0.690521
-0.688351
-0.685754
-0.687135
-0.683432
-0.663541
-0.670698
-0.681868
-0.661845
-0.670758
-0.660151
-0.662345
-0.662138
-0.681191
-0.667687
-0.626403
-0.619642
-0.625852
-0.66747
-0.676501
-0.689918
-0.654718
-0.6734
-0.658268
-0.667292
-0.666411
-0.667859
-0.622285
-0.619368
-0.626119
-0.657649
-0.683382
-0.664467
-0.666266
-0.682125
-0.727563
-0.686963
-0.677927
-0.722849
-0.683791
-0.726265
-0.730705
-0.730135
-0.696754
-0.701836
-0.695796
-0.695043
-0.698809
-0.702033
-0.692318
-0.58496
-0.617729
-0.592153
-0.625732
-0.581986
-0.594567
-0.622023
-0.584652
-0.596459
-0.624883
-0.628008
-0.585599
-0.595484
-0.623647
-0.53194
-0.548425
-0.531517
-0.550072
-0.533846
-0.52969
-0.548825
-0.540956
-0.528794
-0.542177
-0.528142
-0.530409
-0.529431
-0.531272
-0.548072
-0.528256
-0.548034
-0.530159
-0.529318
-0.548366
-0.530956
-0.532755
-0.551502
-0.583776
-0.546828
-0.548164
-0.584473
-0.591066
-0.590659
-0.553518
-0.554412
-0.584584
-0.552511
-0.584404
-0.590621
-0.591265
-0.58814
-0.619458
-0.594321
-0.621942
-0.587973
-0.594763
-0.621731
-0.588135
-0.596389
-0.625693
-0.629608
-0.586007
-0.597395
-0.625848
-0.548814
-0.583462
-0.545594
-0.582703
-0.544883
-0.588194
-0.589853
-0.548734
-0.581993
-0.54515
-0.582782
-0.545104
-0.590619
-0.589988
-0.65044
-0.68047
-0.68098
-0.655837
-0.606393
-0.621338
-0.610158
-0.612595
-0.614415
-0.607201
-0.609084
-0.608031
-0.604751
-0.609668
-0.611498
-0.612438
-0.605264
-0.6096
-0.642241
-0.645236
-0.653718
-0.641557
-0.682269
-0.680664
-0.705472
-0.747852
-0.706026
-0.699044
-0.71006
-0.714674
-0.712301
-0.683774
-0.687601
-0.689693
-0.711756
-0.714883
-0.705518
-0.686966
-0.704547
-0.683765
-0.702972
-0.68656
-0.70706
-0.679677
-0.681306
-0.682882
-0.693465
-0.714856
-0.713267
-0.730785
-0.70115
-0.725414
-0.717922
-0.711682
-0.698679
-0.750635
-0.705889
-0.698558
-0.705378
-0.704633
-0.687767
-0.691832
-0.704762
-0.700034
-0.702905
-0.707375
-0.658047
-0.681862
-0.658475
-0.681187
-0.607498
-0.608848
-0.606532
-0.600196
-0.609205
-0.599997
-0.607042
-0.607987
-0.602959
-0.610675
-0.608032
-0.609755
-0.609218
-0.601108
-0.657308
-0.67818
-0.681239
-0.655196
-0.661125
-0.659863
-0.664932
-0.657575
-0.619405
-0.629088
-0.63418
-0.61721
-0.634343
-0.614269
-0.620481
-0.665889
-0.661809
-0.650311
-0.663865
-0.648787
-0.669641
-0.66022
-0.629028
-0.630408
-0.640615
-0.638254
-0.638341
-0.632851
-0.627595
-0.646292
-0.643592
-0.641395
-0.649711
-0.67968
-0.681822
-0.683869
-0.686495
-0.679109
-0.683389
-0.684408
-0.741353
-0.721121
-0.725194
-0.680165
-0.689424
-0.687028
-0.686872
-0.684087
-0.685804
-0.684227
-0.665877
-0.659386
-0.66577
-0.659506
-0.676792
-0.660628
-0.659571
-0.666692
-0.680205
-0.657769
-0.659119
-0.663469
-0.627452
-0.627852
-0.667554
-0.630672
-0.676681
-0.663671
-0.68068
-0.662716
-0.671961
-0.658451
-0.651936
-0.665029
-0.654262
-0.669914
-0.657733
-0.639499
-0.633582
-0.642465
-0.642697
-0.637306
-0.635195
-0.639024
-0.711526
-0.708679
-0.692259
-0.720827
-0.706437
-0.713736
-0.71621
-0.695365
-0.730887
-0.698094
-0.697018
-0.697483
-0.706522
-0.698535
-0.694775
-0.695491
-0.703797
-0.699792
-0.703427
-0.856849
-0.842162
-0.837304
-0.856348
-0.850091
-0.858417
-0.855214
-0.853479
-0.854011
-0.892629
-0.854881
-0.853966
-0.866869
-0.851231
-0.880083
-0.854109
-0.876362
-0.861928
-0.864714
-0.833109
-0.844631
-0.850203
-0.854634
-0.895544
-0.854239
-0.849468
-0.767369
-0.76677
-0.758399
-0.754023
-0.761578
-0.757511
-0.775322
-0.773251
-0.76781
-0.817582
-0.817641
-0.770095
-0.771218
-0.773731
-0.826922
-0.802348
-0.81386
-0.773266
-0.79101
-0.796641
-0.805433
-0.794509
-0.753171
-0.757209
-0.757856
-0.750246
-0.757855
-0.754605
-0.750418
-0.798525
-0.829448
-0.832227
-0.802988
-0.858676
-0.836914
-0.857183
-0.832091
-0.856235
-0.83552
-0.859685
-0.831022
-0.831365
-0.878761
-0.869524
-0.879293
-0.878855
-0.872929
-0.874594
-0.879328
-0.832164
-0.828196
-0.857832
-0.858447
-0.905329
-0.851038
-0.863008
-0.868891
-0.832613
-0.839155
-0.865005
-0.840307
-0.865413
-0.868996
-0.947486
-0.955238
-0.948883
-0.944856
-0.972389
-0.958134
-0.963893
-0.971074
-0.959783
-0.980429
-0.954974
-0.929969
-0.91767
-0.932858
-0.963609
-0.929204
-0.928813
-0.965115
-0.966114
-0.958432
-0.980634
-0.915371
-0.910075
-0.917222
-0.919893
-0.913631
-0.910331
-0.92384
-1.01289
-1.00285
-1.03978
-1.09873
-1.03313
-1.02922
-1.04522
-1.04823
-1.04421
-1.00564
-1.01741
-1.04403
-1.01518
-1.04962
-1.03764
-1.02018
-1.03267
-1.00527
-1.03129
-1.03873
-1.01091
-1.00916
-1.00568
-0.930512
-0.988101
-0.929308
-0.953304
-0.979568
-0.931921
-0.895543
-0.939205
-0.927402
-0.938553
-0.91183
-0.9278
-0.924992
-0.910844
-0.92358
-0.915291
-0.933835
-0.911947
-0.917942
-0.933922
-0.92563
-0.989068
-0.929644
-0.986124
-0.932603
-0.833926
-0.842478
-0.850823
-0.842969
-0.838727
-0.838131
-0.83937
-0.872139
-0.863756
-0.864941
-0.82726
-0.839275
-0.842718
-0.838581
-0.834465
-0.837184
-0.829285
-0.882797
-0.873076
-0.880652
-0.806024
-0.83214
-0.800993
-0.845649
-0.799343
-0.834523
-0.811405
-0.802368
-0.80184
-0.799987
-0.760202
-0.763908
-0.763172
-0.802304
-0.80479
-0.828601
-0.798473
-0.828763
-0.798563
-0.804051
-0.830878
-0.802692
-0.805965
-0.872425
-0.908272
-0.878629
-0.918811
-0.870096
-0.912865
-0.885952
-0.872879
-0.889736
-0.888555
-0.89039
-0.898477
-0.892389
-0.870752
-0.838488
-0.85632
-0.84863
-0.846441
-0.836563
-0.880418
-0.875532
-0.881007
-0.832444
-0.827284
-0.870772
-0.829503
-0.874101
-0.885194
-0.891213
-0.898543
-0.821081
-0.799852
-0.821155
-0.842807
-0.815655
-0.801154
-0.81287
-0.815126
-0.803848
-0.81307
-0.809344
-0.809405
-0.766229
-0.762147
-0.769839
-0.801712
-0.820313
-0.815969
-0.805372
-0.800284
-0.81614
-0.808411
-0.801583
-0.827184
-0.819177
-0.808584
-0.863049
-0.885476
-0.877568
-0.882831
-0.882741
-0.883819
-0.864217
-0.900997
-0.906076
-0.956339
-0.954062
-0.946897
-0.955259
-0.961418
-0.954375
-0.951306
-0.921119
-0.896671
-0.925492
-0.915128
-0.899834
-0.916458
-0.919156
-0.923741
-0.919163
-0.901332
-0.928677
-0.903387
-0.927766
-0.916211
-0.961143
-0.977553
-0.980265
-0.963158
-0.972201
-0.961089
-0.959591
-1.00607
-0.99769
-1.01431
-0.99562
-1.09264
-1.07991
-1.05989
-1.09254
-1.08954
-1.06534
-1.09061
-1.01684
-1.03175
-1.01438
-1.02994
-1.03062
-1.01969
-1.03268
-1.01691
-1.03455
-1.02412
-1.02777
-0.953344
-0.95438
-0.958746
-0.956282
-0.95982
-0.959679
-0.958182
-0.933746
-0.895634
-0.904849
-0.932742
-0.894387
-0.930381
-0.936726
-0.941938
-0.947121
-0.912278
-0.899002
-0.899035
-0.949042
-0.940118
-0.944508
-0.930824
-1.00279
-0.938921
-0.939346
-0.998349
-0.918184
-0.910923
-0.913378
-0.923668
-0.929141
-0.918224
-0.834619
-0.851708
-0.828829
-0.843662
-0.846487
-0.835203
-0.843163
-0.830345
-0.832339
-0.824133
-0.862087
-0.893749
-0.878611
-0.853202
-0.886859
-0.868018
-0.861531
-0.889935
-0.830894
-0.839906
-0.837286
-0.832617
-0.877611
-0.874423
-0.885397
-0.886345
-0.875999
-0.873585
-0.887901
-0.765517
-0.741193
-0.734323
-0.769424
-0.735211
-0.768857
-0.765864
-0.774374
-0.764036
-0.820818
-0.769852
-0.833454
-0.76661
-0.774255
-0.827657
-0.774874
-0.779503
-0.832072
-0.766905
-0.791738
-0.788613
-0.781761
-0.786136
-0.783817
-0.79084
-0.79067
-0.774817
-0.744201
-0.734158
-0.779041
-0.73192
-0.774162
-0.780397
-0.795192
-0.800206
-0.790498
-0.794054
-0.794585
-0.788597
-0.794708
-0.836347
-0.838792
-0.855258
-0.844932
-0.833509
-0.85966
-0.847689
-0.84599
-0.840118
-0.861576
-0.863509
-0.861517
-0.87434
-0.862395
-0.873909
-0.869991
-0.857482
-0.840165
-0.838217
-0.845186
-0.864094
-0.866725
-0.855711
-0.852756
-0.840062
-0.851645
-0.835765
-0.85793
-0.863137
-0.869116
-0.863626
-0.862414
-0.865236
-0.867399
-0.856835
-0.765787
-0.753723
-0.753836
-0.770323
-0.754131
-0.753505
-0.940612
-0.942706
-0.92748
-0.881304
-0.890543
-0.938538
-0.932245
-0.886802
-0.890063
-0.893027
-0.895509
-0.906021
-0.891035
-0.888632
-0.904389
-0.948282
-0.963073
-0.954689
-0.988585
-0.988825
-1.026
-0.976341
-1.02376
-1.02002
-1.02347
-0.991924
-1.02928
-1.04461
-1.10097
-1.03558
-1.03805
-1.03759
-1.1236
-1.0269
-1.0054
-1.00054
-1.02236
-1.0003
-1.02749
-1.01401
-1.04346
-1.04074
-1.11396
-1.04495
-1.03843
-1.1212
-0.932728
-0.952194
-0.965432
-0.959417
-0.959439
-0.958683
-0.934424
-0.946098
-0.97977
-0.948953
-0.890687
-0.903469
-0.898756
-0.908902
-0.896036
-0.889637
-0.91455
-0.888561
-0.89214
-0.902804
-0.901319
-0.88763
-0.893848
-0.899068
-0.975085
-0.918155
-0.946317
-0.917295
-0.738427
-0.737839
-0.859097
-0.837252
-0.86061
-0.839285
-0.858542
-0.883113
-0.853945
-0.886366
-0.859855
-0.887471
-0.852289
-0.858548
-0.857726
-0.857116
-0.809142
-0.837617
-0.84552
-0.864216
-0.853203
-0.892632
-0.899751
-0.899893
-0.854327
-0.864163
-0.757504
-0.768132
-0.742815
-0.75329
-0.740534
-0.753959
-0.757917
-0.792678
-0.797202
-0.808444
-0.809164
-0.794416
-0.809852
-0.791999
-0.793639
-0.809221
-0.793633
-0.80916
-0.794789
-0.793129
-0.810018
-0.785409
-0.777017
-0.784989
-0.781432
-0.785111
-0.779981
-0.787611
-0.759617
-0.770165
-0.74478
-0.754071
-0.745165
-0.750407
-0.759967
-0.787627
-0.801336
-0.788242
-0.792375
-0.782768
-0.792123
-0.792523
-0.867539
-0.86257
-0.865211
-0.807813
-0.81411
-0.812412
-0.865953
-0.877931
-0.866936
-0.877371
-0.858276
-0.864414
-0.85453
-0.885849
-0.854888
-0.809922
-0.807545
-0.850812
-0.809485
-0.870461
-0.85337
-0.897621
-0.889133
-0.893933
-0.867113
-0.854093
-0.93248
-0.942997
-0.878546
-0.887013
-0.937752
-0.881623
-0.940186
-0.921817
-0.884687
-0.884491
-0.881873
-0.929854
-0.955684
-0.963525
-0.965782
-0.937527
-0.975794
-0.984432
-0.945914
-0.978313
-0.943529
-0.934633
-0.940793
-0.97356
-0.980736
-0.980076
-0.978654
-0.953713
-0.949713
-0.995086
-1.00062
-0.996509
-0.995642
-0.995558
-0.99812
-0.991415
-1.06433
-1.10886
-1.06682
-1.11309
-0.994687
-0.983133
-0.994057
-0.997944
-1.00264
-0.991207
-0.987794
-1.05763
-1.07407
-1.049
-1.11633
-0.938749
-0.938749
-0.909392
-0.909481
-0.94436
-0.94799
-0.936394
-0.913011
-0.939194
-0.93082
-0.978691
-0.939794
-0.981908
-0.947433
-0.928052
-0.976693
-0.932258
-0.950355
-0.96315
-0.959934
-0.935172
-0.957506
-0.963196
-0.29766
-0.288115
-0.282446
-0.297512
-0.291313
-0.297271
-0.212736
-0.203024
-0.181578
-0.209388
-0.197982
-0.200971
-0.21486
-0.226892
-0.205022
-0.236201
-0.195181
-0.255218
-0.220689
-0.205538
-0.190391
-0.191776
-0.216186
-0.266246
-0.233519
-0.177053
-0.201679
-0.198117
-0.253555
-0.238633
-0.214598
-0.182247
-0.221676
-0.228003
-0.192354
-0.194486
-0.19617
-0.183703
-0.208992
-0.173509
-0.197632
-0.237166
-0.226356
-0.190029
-0.231761
-0.260088
-0.207604
-0.225324
-0.2178
-0.175585
-0.250317
-0.202783
-0.220672
-0.227254
-0.195345
-0.229621
-0.196777
-0.193417
-0.192767
-0.251634
-0.20336
-0.204865
-0.237521
-0.253808
-0.243161
-0.256603
-0.250127
-0.229109
-0.254623
-0.227753
-0.20155
-0.260011
-0.215801
-0.221789
-0.216376
-0.238747
-0.247189
-0.226609
-0.285704
-0.240674
-0.260772
-0.268382
-0.237242
-0.207871
-0.195858
-0.229645
-0.235282
-0.187237
-0.21345
-0.227834
-0.19933
-0.212765
-0.209381
-0.192056
-0.201166
-0.24783
-0.207519
-0.179812
-0.207045
-0.193633
-0.188427
-0.165234
-0.22327
-0.19603
-0.187602
-0.203044
-0.198617
-0.20722
-0.194022
-0.182166
-0.172777
-0.22136
-0.228771
-0.292114
-0.290773
-0.249885
-0.2545
-0.283507
-0.240725
-0.221022
-0.213626
-0.235092
-0.194347
-0.235188
-0.220961
-0.205824
-0.213508
-0.233769
-0.219662
-0.228601
-0.245701
-0.219841
-0.218285
-0.225508
-0.231629
-0.200492
-0.195304
-0.220301
-0.240244
-0.204665
-0.202109
-0.229588
-0.199836
-0.237484
-0.191721
-0.177603
-0.180003
-0.196891
-0.177415
-0.183159
-0.16929
-0.191366
-0.173543
-0.160433
-0.193924
-0.181726
-0.175825
-0.184717
-0.162315
-0.221434
-0.278203
-0.269849
-0.27472
-0.232721
-0.258732
-0.237262
-0.2726
-0.285496
-0.242221
-0.237985
-0.285141
-0.242068
-0.215727
-0.22384
-0.194386
-0.21572
-0.209735
-0.214429
-0.22389
-0.210797
-0.268941
-0.231525
-0.223071
-0.225823
-0.214028
-0.225708
-0.17182
-0.200526
-0.181145
-0.178117
-0.205841
-0.258156
-0.260473
-0.217917
-0.260893
-0.180235
-0.184377
-0.192605
-0.182153
-0.183842
-0.21175
-0.179109
-0.221618
-0.177181
-0.196299
-0.206155
-0.199916
-0.183334
-0.175695
-0.20013
-0.19063
-0.214244
-0.256005
-0.169082
-0.159354
-0.173634
-0.177852
-0.17375
-0.217732
-0.223327
-0.20253
-0.229227
-0.255696
-0.249582
-0.213281
-0.200967
-0.245518
-0.242031
-0.173155
-0.192923
-0.168007
-0.186881
-0.185151
-0.227558
-0.235637
-0.198061
-0.259634
-0.170151
-0.205496
-0.174958
-0.196842
-0.259862
-0.235379
-0.216505
-0.18972
-0.184865
-0.158822
-0.182897
-0.221535
-0.181238
-0.167358
-0.171826
-0.176787
-0.211479
-0.177138
-0.187387
-0.211243
-0.18395
-0.202725
-0.173735
-0.186973
-0.308378
-0.3141
-0.28157
-0.322166
-0.23001
-0.224102
-0.197319
-0.209252
-0.215245
-0.200551
-0.238758
-0.246744
-0.214413
-0.299966
-0.208296
-0.288941
-0.200361
-0.266088
-0.231115
-0.157694
-0.173336
-0.19007
-0.232796
-0.197975
-0.229314
-0.188634
-0.19794
-0.181154
-0.209354
-0.189007
-0.218213
-0.194038
-0.196677
-0.242192
-0.181285
-0.199034
-0.221524
-0.219922
-0.179652
-0.232424
-0.185207
-0.188971
-0.186074
-0.194831
-0.17187
-0.185921
-0.192254
-0.215128
-0.209006
-0.208057
-0.222603
-0.219217
-0.205478
-0.222911
-0.224847
-0.217884
-0.230679
-0.228323
-0.220792
-0.238242
-0.22579
-0.216042
-0.21244
-0.205966
-0.22242
-0.214534
-0.209181
-0.224047
-0.228651
-0.255758
-0.245283
-0.284877
-0.236731
-0.250834
-0.241235
-0.20236
-0.198562
-0.195262
-0.201642
-0.203622
-0.200425
-0.199358
-0.196428
-0.208107
-0.197973
-0.218597
-0.200439
-0.234484
-0.192792
-0.199941
-0.1965
-0.209263
-0.194268
-0.204928
-0.20136
-0.196642
-0.207104
-0.219064
-0.263811
-0.265948
-0.262971
-0.207583
-0.23265
-0.260159
-0.207706
-0.272883
-0.313637
-0.31011
-0.317703
-0.221829
-0.324567
-0.23716
-0.197741
-0.211089
-0.203256
-0.222871
-0.197754
-0.210167
-0.226042
-0.18791
-0.215429
-0.191941
-0.267894
-0.213616
-0.272842
-0.235878
-0.271546
-0.271639
-0.20971
-0.266914
-0.26521
-0.225977
-0.213804
-0.267376
-0.262522
-0.276633
-0.211136
-0.145257
-0.155238
-0.142954
-0.145291
-0.13622
-0.213664
-0.205402
-0.141195
-0.143698
-0.122724
-0.185125
-0.16801
-0.168627
-0.17837
-0.174096
-0.189104
-0.171271
-0.267703
-0.240553
-0.280005
-0.236909
-0.273006
-0.279412
-0.260011
-0.199475
-0.286264
-0.214484
-0.241736
-0.264494
-0.189279
-0.144954
-0.190937
-0.146697
-0.188927
-0.162423
-0.212202
-0.274347
-0.162167
-0.140786
-0.201226
-0.228482
-0.198591
-0.159807
-0.14336
-0.172176
-0.217079
-0.142509
-0.199531
-0.169264
-0.188958
-0.160313
-0.1832
-0.149924
-0.208555
-0.153297
-0.204535
-0.166704
-0.184088
-0.154202
-0.224474
-0.1516
-0.178721
-0.192889
-0.184383
-0.16866
-0.187749
-0.167666
-0.192464
-0.196304
-0.169286
-0.190773
-0.194932
-0.16749
-0.143484
-0.0907023
-0.071676
-0.119698
-0.106351
-0.100073
-0.0943151
-0.102419
-0.161396
-0.137763
-0.158861
-0.166335
-0.15555
-0.170276
-0.178047
-0.142199
-0.171739
-0.175224
-0.0839839
-0.111166
-0.108011
-0.100244
-0.10229
-0.0980516
-0.0876165
-0.176307
-0.105865
-0.134402
-0.102493
-0.134904
-0.170839
-0.0995643
-0.0759751
-0.0607673
-0.0468632
-0.0837961
-0.197017
-0.1963
-0.195468
-0.184667
-0.0984407
-0.104314
-0.0881397
-0.134309
-0.125036
-0.0995518
-0.119549
-0.109253
-0.132952
-0.13934
-0.174385
-0.166781
-0.113859
-0.120542
-0.204734
-0.206121
-0.11945
-0.0827175
-0.0800669
-0.10439
-0.0919588
-0.109763
-0.124162
-0.196331
-0.202874
-0.093669
-0.141886
-0.172583
-0.0946285
-0.173111
-0.101062
-0.0881299
-0.159065
-0.0831879
-0.0842993
-0.151506
-0.152768
-0.0776339
-0.160947
-0.11976
-0.116031
-0.124643
-0.166571
-0.0885673
-0.092937
-0.166945
-0.170636
-0.0831446
-0.167006
-0.133266
-0.119041
-0.125303
-0.137143
-0.105417
-0.144731
-0.205858
-0.196872
-0.185687
-0.11745
-0.179607
-0.257078
-0.146963
-0.210784
-0.205056
-0.240002
-0.171892
-0.234096
-0.222501
-0.219317
-0.242488
-0.232778
-0.229312
-0.204299
-0.211929
-0.248844
-0.135222
-0.240139
-0.149819
-0.24367
-0.242428
-0.15063
-0.111203
-0.129568
-0.119366
-0.137842
-0.158871
-0.0883855
-0.129894
-0.121285
-0.153147
-0.0966617
-0.180671
-0.116055
-0.155738
-0.101724
-0.115042
-0.182365
-0.1985
-0.0945114
-0.191062
-0.113091
-0.0982631
-0.123307
-0.175427
-0.174058
-0.137606
-0.152852
-0.109153
-0.152322
-0.182669
-0.171839
-0.179355
-0.143159
-0.108102
-0.122614
-0.135077
-0.130916
-0.130812
-0.135449
-0.167473
-0.121321
-0.204279
-0.151171
-0.182416
-0.193197
-0.141215
-0.155628
-0.182339
-0.109606
-0.13087
-0.127722
-0.180427
-0.157467
-0.0933424
-0.11844
-0.154635
-0.182129
-0.186675
-0.114096
-0.0969449
-0.193474
-0.0968423
-0.182137
-0.189328
-0.124986
-0.182415
-0.0997065
-0.10797
-0.0809722
-0.100191
-0.178498
-0.164422
-0.169052
-0.0990018
-0.0836887
-0.105094
-0.146991
-0.115425
-0.0972201
-0.0776005
-0.17982
-0.113437
-0.209636
-0.215619
-0.136574
0.0007808
-0.0194759
-0.112557
-0.0212137
-0.112743
-0.13762
-0.148403
-0.154706
-0.142155
-0.148661
-0.152038
-0.163947
-0.151418
-0.162556
-0.110646
-0.203496
-0.120598
-0.138115
-0.142306
0.00438211
-0.0227985
-0.116325
-0.038028
-0.113882
-0.139312
-0.0826348
-0.12541
-0.164451
-0.0923304
-0.0854918
-0.128125
-0.0916737
-0.14304
-0.160065
-0.161657
-0.14776
-0.114636
-0.121495
-0.180586
-0.155962
-0.097461
-0.133419
-0.173378
-0.111113
-0.101158
-0.117125
-0.12749
-0.105399
-0.120741
-0.114616
-0.189617
-0.137808
-0.139617
-0.19737
-0.092708
-0.09782
-0.110728
-0.120363
-0.10705
-0.0721275
-0.112625
-0.210806
-0.206015
-0.178645
-0.142605
-0.161447
-0.114304
-0.153071
-0.135863
-0.184092
-0.255842
-0.224348
-0.21367
-0.258465
-0.152383
-0.128535
-0.157673
-0.139274
-0.164173
-0.151332
-0.11997
-0.260777
-0.219499
-0.238431
-0.251064
-0.254487
-0.152297
-0.216094
-0.112256
-0.128341
-0.202636
-0.180349
-0.102093
-0.255924
-0.201565
-0.262218
-0.211169
-0.253475
-0.197803
-0.207823
-0.177706
-0.183701
-0.209068
-0.184963
-0.188139
-0.232611
-0.236234
-0.204486
-0.219999
-0.214097
-0.261693
-0.217895
-0.232688
-0.26117
-0.203211
-0.201846
-0.225867
-0.210187
-0.266694
-0.198857
-0.193253
-0.194661
-0.20881
-0.267285
-0.257052
-0.267022
-0.188978
-0.177174
-0.198223
-0.19785
-0.203387
-0.194442
-0.216986
-0.126742
-0.228753
-0.135638
-0.214956
-0.22617
-0.125655
-0.18038
-0.188181
-0.186691
-0.214822
-0.225411
-0.125125
-0.131829
-0.216146
-0.224254
-0.123913
-0.136288
-0.202267
-0.184632
-0.162839
-0.152071
-0.213276
-0.16002
-0.141383
-0.20699
-0.141749
-0.215613
-0.136784
-0.160824
-0.164627
-0.124677
-0.142312
-0.178117
-0.152392
-0.166993
-0.13061
-0.149641
-0.184989
-0.205274
-0.14907
-0.130685
-0.212577
-0.108433
-0.12606
-0.155819
-0.131265
-0.119062
-0.13151
-0.113033
-0.101897
-0.0582933
-0.0691662
-0.0760811
-0.132118
-0.0783965
-0.0648246
-0.106118
-0.158382
-0.161391
-0.0825968
-0.113949
-0.138462
-0.0911545
-0.145507
-0.15935
-0.133648
-0.158066
-0.172467
-0.225276
-0.195639
-0.203191
-0.186423
-0.17089
-0.217003
-0.232844
-0.166674
-0.211614
-0.144712
-0.151725
-0.174326
-0.165746
-0.130637
-0.156951
-0.154066
-0.0923696
-0.0872807
-0.238946
-0.212171
-0.0875673
-0.208246
-0.0959879
-0.0744472
-0.103985
-0.0614151
-0.0786011
-0.0575036
-0.0769976
-0.0802238
-0.0924366
-0.195564
-0.238989
-0.0952034
-0.0897468
-0.204985
-0.0947252
-0.182917
-0.244517
-0.18477
-0.16321
-0.25045
-0.172056
-0.162632
-0.160077
-0.145976
-0.153761
-0.162248
-0.143832
-0.155977
-0.16439
-0.188304
-0.256324
-0.269966
-0.205114
-0.196715
-0.263432
-0.179712
-0.172001
-0.171944
-0.16818
-0.181347
-0.164811
-0.169344
-0.180114
-0.200738
-0.240336
-0.266721
-0.192241
-0.238109
-0.206947
-0.181864
-0.197005
-0.187421
-0.212246
-0.227202
-0.20079
-0.22492
-0.174891
-0.213589
-0.254544
-0.241467
-0.225481
-0.242403
-0.205018
-0.221449
-0.220356
-0.190553
-0.201663
-0.201448
-0.25905
-0.205265
-0.260774
-0.178213
-0.265407
-0.185864
-0.258422
-0.214697
-0.216505
-0.256009
-0.193797
-0.264946
-0.202827
-0.192011
-0.194651
-0.213342
-0.17853
-0.209344
-0.191027
-0.187611
-0.162306
-0.179704
-0.168073
-0.171685
-0.169622
-0.170509
-0.167731
-0.237961
-0.251545
-0.178885
-0.245289
-0.209525
-0.193683
-0.250031
-0.184458
-0.188845
-0.188298
-0.178919
-0.243626
-0.204492
-0.247233
-0.194826
-0.182448
-0.155507
-0.163803
-0.162208
-0.172928
-0.152552
-0.167065
-0.16157
-0.213157
-0.215435
-0.197264
-0.140254
-0.147523
-0.175113
-0.126538
-0.196838
-0.176186
-0.154126
-0.169703
-0.14814
-0.157709
-0.199587
-0.173696
-0.119367
-0.142118
-0.119534
-0.202569
-0.175175
-0.148839
-0.140113
-0.145057
-0.148037
-0.187775
-0.165773
-0.154561
-0.180376
-0.181355
-0.0660199
-0.0277837
-0.0434213
-0.0417111
-0.0446256
-0.061588
-0.0398725
-0.17871
-0.175933
-0.177211
-0.180704
-0.179813
-0.174539
-0.173635
-0.130059
-0.146734
-0.108555
-0.140388
-0.158231
-0.113479
-0.197574
-0.121756
-0.0883219
-0.12889
-0.124625
-0.114416
-0.105736
-0.135366
-0.196276
-0.137037
-0.195225
-0.143181
-0.181233
-0.128692
-0.159549
-0.107742
-0.179218
-0.160594
-0.112423
-0.135521
-0.165499
-0.131877
-0.129059
-0.11456
-0.198201
-0.141325
-0.188974
-0.124801
-0.13207
-0.140934
-0.151881
-0.0884512
-0.227979
-0.158781
-0.11178
-0.184375
-0.0641611
-0.0407362
-0.0453106
-0.0417076
-0.0475431
-0.0619297
-0.049718
-0.166965
-0.178486
-0.176548
-0.171732
-0.179791
-0.172685
-0.525395
-0.545532
-0.549293
-0.518101
-0.525682
-0.549549
-0.517452
-0.529132
-0.512222
-0.52973
-0.512899
-0.525366
-0.524715
-0.526969
-0.547959
-0.554673
-0.519567
-0.527085
-0.552917
-0.519141
-0.523731
-0.522774
-0.531032
-0.549225
-0.533455
-0.548718
-0.548432
-0.530571
-0.534448
-0.590886
-0.574132
-0.573946
-0.571657
-0.592307
-0.574012
-0.531517
-0.548276
-0.547185
-0.534696
-0.547827
-0.53466
-0.531383
-0.531212
-0.550226
-0.551373
-0.533867
-0.529484
-0.551123
-0.531482
-0.559056
-0.558198
-0.555928
-0.534846
-0.553116
-0.535268
-0.556206
-0.536698
-0.532098
-0.554394
-0.56838
-0.562269
-0.557286
-0.624662
-0.618608
-0.677762
-0.619138
-0.624668
-0.67717
-0.625341
-0.61172
-0.615011
-0.625642
-0.612884
-0.625048
-0.625182
-0.625249
-0.625225
-0.615299
-0.61428
-0.613704
-0.624962
-0.62539
-0.625592
-0.619598
-0.677807
-0.619513
-0.678075
-0.625647
-0.68541
-0.680879
-0.715886
-0.713393
-0.689366
-0.680951
-0.716177
-0.688337
-0.713127
-0.719133
-0.708838
-0.716468
-0.703644
-0.715089
-0.719851
-0.704609
-0.681416
-0.678995
-0.714369
-0.691265
-0.680256
-0.70811
-0.688951
-0.711473
-0.711406
-0.622696
-0.617614
-0.667611
-0.62151
-0.619472
-0.665278
-0.618076
-0.610332
-0.616233
-0.60557
-0.614841
-0.609456
-0.625719
-0.624041
-0.624963
-0.614301
-0.615677
-0.6143
-0.624441
-0.625464
-0.624593
-0.67523
-0.652834
-0.623942
-0.662666
-0.684477
-0.704409
-0.70182
-0.690044
-0.682774
-0.689906
-0.682554
-0.704757
-0.705628
-0.692194
-0.681507
-0.708072
-0.710206
-0.711368
-0.699479
-0.703497
-0.713394
-0.706687
-0.681285
-0.698766
-0.684366
-0.697037
-0.704625
-0.683939
-0.693953
-0.682886
-0.700437
-0.701397
-0.681942
-0.624497
-0.675388
-0.614459
-0.618102
-0.622186
-0.677622
-0.623954
-0.606299
-0.63469
-0.629366
-0.603361
-0.625461
-0.628308
-0.621126
-0.612523
-0.63093
-0.587274
-0.601063
-0.624465
-0.615662
-0.625599
-0.620249
-0.678624
-0.625958
-0.619677
-0.6783
-0.675795
-0.691981
-0.67685
-0.679893
-0.707101
-0.721656
-0.724469
-0.715954
-0.727293
-0.714951
-0.719351
-0.726592
-0.679321
-0.698877
-0.672162
-0.685954
-0.687097
-0.69111
-0.679727
-0.679328
-0.677094
-0.669139
-0.709448
-0.587764
-0.589027
-0.634008
-0.672605
-0.620412
-0.638653
-0.62475
-0.63898
-0.640678
-0.621508
-0.584766
-0.593225
-0.626646
-0.583872
-0.625222
-0.622839
-0.621829
-0.616005
-0.586096
-0.596055
-0.585552
-0.616631
-0.626816
-0.638203
-0.630045
-0.632368
-0.637455
-0.631277
-0.637202
-0.639379
-0.680646
-0.696506
-0.69916
-0.680259
-0.680586
-0.6886
-0.678182
-0.705931
-0.687992
-0.680993
-0.704885
-0.71695
-0.726115
-0.716056
-0.727372
-0.715834
-0.717986
-0.726432
-0.679866
-0.701515
-0.67738
-0.686752
-0.687241
-0.704108
-0.679673
-0.68137
-0.700978
-0.681732
-0.700224
-0.512492
-0.534936
-0.505915
-0.538595
-0.513273
-0.50502
-0.537627
-0.513217
-0.49865
-0.51453
-0.497082
-0.506539
-0.505848
-0.511466
-0.534097
-0.503227
-0.535771
-0.510779
-0.504072
-0.536613
-0.507692
-0.508496
-0.529259
-0.545363
-0.532153
-0.543527
-0.544468
-0.532842
-0.528644
-0.573479
-0.590458
-0.573306
-0.529939
-0.546142
-0.54603
-0.533635
-0.545412
-0.530227
-0.533345
-0.572077
-0.590009
-0.57279
-0.527402
-0.542703
-0.531639
-0.542649
-0.531027
-0.541752
-0.527997
-0.569625
-0.587827
-0.570101
-0.526642
-0.541977
-0.530042
-0.540073
-0.526153
-0.530534
-0.540859
-0.571398
-0.588369
-0.570726
-0.63234
-0.631367
-0.619672
-0.628848
-0.6266
-0.630387
-0.633439
-0.619709
-0.58034
-0.595095
-0.625448
-0.581228
-0.625916
-0.619312
-0.618447
-0.621907
-0.595339
-0.579249
-0.580518
-0.624247
-0.617082
-0.633563
-0.619835
-0.626101
-0.633242
-0.627893
-0.631933
-0.633693
-0.609132
-0.589332
-0.594572
-0.591192
-0.683446
-0.64263
-0.636577
-0.682066
-0.639704
-0.701252
-0.685785
-0.686541
-0.700884
-0.70496
-0.692641
-0.67966
-0.684948
-0.706792
-0.677234
-0.684819
-0.700324
-0.686003
-0.699897
-0.686009
-0.682728
-0.63164
-0.635068
-0.635966
-0.682504
-0.700403
-0.669262
-0.67394
-0.693647
-0.709306
-0.690451
-0.694546
-0.712034
-0.698417
-0.681722
-0.686627
-0.709071
-0.684417
-0.689343
-0.704057
-0.672691
-0.676356
-0.692693
-0.706865
-0.687818
-0.703679
-0.690484
-0.589471
-0.589756
-0.632962
-0.639985
-0.635472
-0.639916
-0.637536
-0.633689
-0.641559
-0.60132
-0.579159
-0.605074
-0.588392
-0.579379
-0.592858
-0.596057
-0.611544
-0.624246
-0.579593
-0.597693
-0.577768
-0.617106
-0.619255
-0.627359
-0.634438
-0.622568
-0.636833
-0.622298
-0.638119
-0.624986
-0.636463
-0.63331
-0.635491
-0.628569
-0.637056
-0.631622
-0.635621
-0.619639
-0.580696
-0.592902
-0.625423
-0.580805
-0.619591
-0.624831
-0.619865
-0.624672
-0.581588
-0.593163
-0.581198
-0.620335
-0.624747
-0.635737
-0.62499
-0.62803
-0.635484
-0.635144
-0.629525
-0.6356
-0.698522
-0.681216
-0.683389
-0.695409
-0.692443
-0.696913
-0.695826
-0.721546
-0.685132
-0.723437
-0.686602
-0.694658
-0.724761
-0.701731
-0.680397
-0.704402
-0.683339
-0.690224
-0.688838
-0.588138
-0.587746
-0.63733
-0.630256
-0.633433
-0.63541
-0.636989
-0.633337
-0.635608
-0.621454
-0.582962
-0.625554
-0.593872
-0.621467
-0.582511
-0.625592
-0.63746
-0.629409
-0.631148
-0.63559
-0.63739
-0.632774
-0.635763
-0.621027
-0.624816
-0.581704
-0.59352
-0.582148
-0.620434
-0.625167
-0.692667
-0.678531
-0.67611
-0.693775
-0.693811
-0.718913
-0.683954
-0.722728
-0.683365
-0.69355
-0.722176
-0.684898
-0.68589
-0.691236
-0.673911
-0.692252
-0.674412
-0.687209
-0.687514
-0.587118
-0.587384
-0.827139
-0.826201
-0.81369
-0.8113
-0.810703
-0.819497
-0.826645
-0.83082
-0.823738
-0.894489
-0.830323
-0.823785
-0.895512
-0.826625
-0.810241
-0.81147
-0.82569
-0.810291
-0.826749
-0.825588
-0.753436
-0.773299
-0.786349
-0.767542
-0.753394
-0.774592
-0.781321
-0.75872
-0.793504
-0.782607
-0.770079
-0.776644
-0.762668
-0.79042
-0.757312
-0.774213
-0.769383
-0.787805
-0.775122
-0.755067
-0.789814
-0.836036
-0.824653
-0.892998
-0.83053
-0.832502
-0.887273
-0.837997
-0.833167
-0.838759
-0.786884
-0.804687
-0.845426
-0.833725
-0.831236
-0.810166
-0.826329
-0.814362
-0.827164
-0.810018
-0.830354
-0.784648
-0.772727
-0.754897
-0.774689
-0.775911
-0.775234
-0.77577
-0.792592
-0.772929
-0.750062
-0.772737
-0.768642
-0.773831
-0.772741
-0.95747
-0.95119
-0.942611
-0.954732
-0.952593
-0.958585
-0.9533
-0.898531
-0.897093
-0.939499
-0.910311
-0.897682
-0.938298
-0.938594
-0.905542
-0.93859
-0.940498
-0.936282
-0.907187
-0.900419
-0.938422
-0.94083
-0.905999
-0.955107
-0.954796
-0.956766
-0.956495
-0.956666
-0.953187
-0.953661
-1.02261
-1.01474
-1.0208
-1.02398
-1.02372
-1.02343
-1.02378
-1.07096
-1.04254
-1.07724
-1.04016
-1.0232
-1.07313
-1.02611
-1.08704
-1.08551
-1.07832
-1.0487
-1.04506
-1.0779
-0.921604
-0.989801
-0.931722
-0.928353
-0.926588
-0.889491
-0.91804
-0.903664
-0.918981
-0.90406
-0.917206
-0.920208
-0.906579
-0.917635
-0.988864
-0.923762
-0.917691
-0.924046
-0.921826
-0.922771
-0.893112
-0.897681
-0.91637
-0.921296
-0.92461
-1.01138
-1.00443
-1.03987
-1.03547
-1.0323
-1.01691
-1.03452
-1.03469
-1.03757
-0.862104
-0.893868
-0.892696
-0.861328
-0.805123
-0.802072
-0.808133
-0.809386
-0.807834
-0.799853
-0.811246
-0.806445
-0.820278
-0.80415
-0.815261
-0.801981
-0.808379
-0.815337
-0.769413
-0.787496
-0.806415
-0.806817
-0.77752
-0.775855
-0.808104
-0.771653
-0.81333
-0.818668
-0.779714
-0.780947
-0.812913
-0.769124
-0.843273
-0.888635
-0.850723
-0.855096
-0.856314
-0.814121
-0.816867
-0.863746
-0.817879
-0.877128
-0.863189
-0.855058
-0.870577
-0.88359
-0.863443
-0.852794
-0.813809
-0.828094
-0.810127
-0.829491
-0.814758
-0.813124
-0.820112
-0.760076
-0.783886
-0.784158
-0.801912
-0.759836
-0.777158
-0.797754
-0.7614
-0.807025
-0.808176
-0.778436
-0.776557
-0.802398
-0.764995
-0.7164
-0.711228
-0.763564
-0.71164
-0.759268
-0.75645
-0.758424
-0.760462
-0.782937
-0.763001
-0.777253
-0.793111
-0.77
-0.789263
-0.721559
-0.714463
-0.765774
-0.717316
-0.76813
-0.769197
-0.785377
-0.787696
-0.968135
-0.965634
-0.983139
-0.989905
-0.965144
-0.971078
-0.989681
-0.915638
-0.922175
-0.908711
-0.928629
-0.935881
-0.907888
-0.928634
-0.914744
-0.926501
-0.927079
-0.917039
-0.913377
-0.9251
-0.907516
-0.935282
-0.935248
-0.92543
-0.915313
-0.966032
-0.973718
-0.956617
-0.961326
-0.945932
-0.964539
-0.985735
-1.02214
-1.05827
-1.05688
-1.04036
-1.02335
-1.05924
-1.0495
-1.02182
-1.05666
-1.05176
-1.03917
-1.02381
-1.0592
-1.04736
-0.976358
-0.971602
-0.986996
-1.01709
-0.978343
-0.995017
-1.03571
-1.06323
-1.03431
-0.973209
-0.992266
-0.976244
-0.988268
-0.978448
-0.990462
-0.969297
-1.04284
-1.0604
-1.02795
-0.983232
-0.967958
-0.989418
-0.990362
-0.973534
-0.968518
-0.998703
-0.920913
-0.924278
-0.917685
-0.918239
-0.965188
-0.950889
-0.924754
-0.926074
-0.934712
-0.908079
-0.931367
-0.916789
-0.931435
-0.967211
-0.982829
-0.933817
-0.982556
-0.945516
-0.984591
-0.952497
-0.97801
-0.968338
-1.02528
-0.973172
-1.02994
-1.06155
-1.03989
-1.05459
-0.979701
-1.04505
-0.978442
-1.02671
-1.05034
-1.03822
-1.05473
-0.814351
-0.802457
-0.811304
-0.782799
-0.78139
-0.804692
-0.809368
-0.856823
-0.871147
-0.849747
-0.856629
-0.853418
-0.857685
-0.864383
-0.828109
-0.78002
-0.80497
-0.833154
-0.782074
-0.828877
-0.83607
-0.85081
-0.84422
-0.847473
-0.849498
-0.850299
-0.847939
-0.849369
-0.829828
-0.835694
-0.786112
-0.795987
-0.832382
-0.782002
-0.834135
-0.82952
-0.780487
-0.833453
-0.795731
-0.828546
-0.78118
-0.834076
-0.802326
-0.811567
-0.803217
-0.810577
-0.802803
-0.802059
-0.731779
-0.722561
-0.721253
-0.73307
-0.721849
-0.730939
-0.733974
-0.726045
-0.735886
-0.779739
-0.731393
-0.733207
-0.725408
-0.730667
-0.781978
-0.724943
-0.730551
-0.727444
-0.734779
-0.785705
-0.730285
-0.73233
-0.732057
-0.724814
-0.721761
-0.733585
-0.722931
-0.731482
-0.734366
-0.726153
-0.785028
-0.731859
-0.725807
-0.731759
-0.812248
-0.806904
-0.818042
-0.80127
-0.807401
-0.801914
-0.910608
-0.864568
-0.868478
-0.874575
-0.870809
-0.8676
-0.959528
-0.940014
-0.958609
-0.951513
-0.938533
-0.950349
-0.919371
-0.953453
-0.962696
-0.945123
-0.919708
-0.938529
-0.925662
-0.947892
-0.958739
-1.01162
-0.976286
-0.961541
-1.00487
-1.00397
-0.98281
-1.01126
-1.0194
-1.04606
-1.02913
-1.0439
-1.02734
-1.02453
-1.03837
-0.982306
-0.989959
-0.992531
-0.978669
-0.963714
-0.97139
-0.978429
-0.962945
-0.989603
-0.999173
-0.99238
-0.991913
-0.976896
-1.03145
-1.03223
-1.04449
-1.03975
-1.03086
-1.03385
-1.04072
-0.864327
-0.872637
-0.864358
-0.878345
-0.859608
-0.868523
-0.87467
-0.927774
-0.963955
-0.97225
-0.924625
-0.922963
-0.955421
-0.923574
-0.95949
-1.00123
-0.968813
-0.952802
-1.00405
-0.962343
-1.0095
-1.00131
-0.951598
-1.0108
-1.00121
-1.01684
-1.01274
-1.0181
-1.01137
-1.00293
-0.955016
-0.954956
-0.9939
-0.964893
-0.977886
-1.00405
-0.948236
-1.00194
-1.00328
-1.01747
-1.03134
-1.03729
-1.01842
-1.03399
-1.02215
-1.01234
-0.803367
-0.81471
-0.806477
-0.79461
-0.712812
-0.731059
-0.728339
-0.71695
-0.729669
-0.717479
-0.712122
-0.763152
-0.787967
-0.765158
-0.764715
-0.787368
-0.765116
-0.735211
-0.796192
-0.765434
-0.732713
-0.711923
-0.729479
-0.728005
-0.717443
-0.727691
-0.717727
-0.712345
-0.789497
-0.764814
-0.764074
-0.789402
-0.788583
-0.806468
-0.800447
-0.782151
-0.816163
-0.806995
-0.801686
-0.781285
-0.848505
-0.866049
-0.85225
-0.873004
-0.849426
-0.869355
-0.846875
-0.805691
-0.779156
-0.815187
-0.804414
-0.801253
-0.780165
-0.804845
-0.836028
-0.865666
-0.846226
-0.867486
-0.846694
-0.862675
-0.840035
-0.804789
-0.777477
-0.801704
-0.811815
-0.803985
-0.801502
-0.779969
-0.959369
-0.924244
-0.941224
-0.946901
-0.955713
-0.924561
-0.937761
-0.931326
-0.882076
-0.916134
-0.880264
-0.952481
-0.954767
-0.93555
-0.952268
-0.936206
-0.953632
-0.943902
-0.961025
-0.938149
-0.960925
-0.944631
-0.920789
-0.936201
-0.958043
-0.924252
-0.938237
-1.00001
-0.99816
-0.993545
-1.00065
-0.991795
-1.0017
-0.999085
-1.0408
-1.07402
-1.03324
-0.975883
-0.991745
-0.977912
-0.987568
-0.981081
-0.968012
-0.988985
-0.994783
-0.9985
-1.06014
-0.998913
-0.992615
-0.948419
-0.975161
-0.924265
-0.974692
-0.947692
-0.927775
-0.982485
-0.94737
-0.912972
-0.914275
-0.946165
-0.940895
-0.948271
-0.946802
-0.975012
-0.933103
-0.981738
-0.951654
-0.928774
-0.978924
-0.93788
-0.93887
-0.999174
-0.980647
-0.984439
-0.99921
-0.982326
-0.994919
-1.00271
-1.01462
-1.00777
-1.02052
-1.01307
-1.01586
-1.00774
-1.00917
-1.013
-0.985221
-0.983266
-1.00894
-1.00971
-0.986815
-1.01002
-0.996676
-0.996977
-1.05753
-0.988428
-0.999727
-0.249807
-0.302956
-0.240493
-0.220457
-0.306238
-0.264372
-0.220909
-0.307745
-0.252525
-0.294476
-0.30435
-0.297621
-0.30452
-0.258176
-0.249239
-0.30529
-0.242664
-0.224966
-0.228732
-0.228404
-0.241306
-0.230465
-0.234989
-0.252367
-0.233313
-0.225002
-0.230796
-0.235398
-0.243445
-0.24637
-0.259388
-0.210685
-0.235493
-0.218095
-0.238085
-0.258048
-0.209151
-0.252688
-0.242654
-0.231616
-0.25671
-0.237496
-0.24326
-0.249549
-0.262361
-0.238474
-0.222896
-0.220476
-0.239909
-0.26042
-0.214541
-0.29606
-0.308107
-0.244631
-0.307926
-0.259693
-0.30264
-0.218401
-0.211855
-0.217407
-0.303176
-0.247599
-0.309191
-0.2502
-0.310029
-0.249999
-0.21592
-0.227624
-0.241943
-0.235063
-0.223528
-0.231308
-0.230271
-0.24585
-0.230241
-0.254696
-0.27073
-0.244875
-0.246706
-0.241616
-0.26012
-0.252769
-0.242627
-0.225261
-0.230059
-0.232327
-0.23215
-0.231796
-0.240757
-0.251717
-0.238257
-0.233977
-0.241189
-0.255945
-0.238611
-0.241126
-0.248571
-0.249245
-0.242919
-0.232406
-0.265242
-0.237134
-0.241892
-0.233081
-0.232541
-0.273972
-0.304654
-0.308367
-0.260167
-0.305811
-0.267203
-0.295512
-0.295444
-0.304579
-0.297128
-0.306575
-0.281098
-0.295465
-0.298457
-0.307573
-0.293121
-0.306065
-0.265454
-0.266096
-0.246006
-0.256371
-0.265561
-0.262515
-0.253465
-0.275541
-0.290497
-0.310659
-0.31802
-0.288524
-0.279187
-0.290364
-0.272203
-0.276624
-0.269918
-0.27509
-0.270437
-0.275272
-0.277359
-0.266051
-0.243452
-0.259851
-0.251168
-0.260407
-0.25189
-0.269737
-0.262581
-0.271237
-0.283486
-0.26707
-0.241028
-0.260413
-0.234361
-0.259874
-0.287199
-0.230626
-0.322806
-0.287662
-0.330085
-0.326665
-0.327305
-0.317006
-0.319378
-0.256758
-0.247097
-0.314711
-0.319934
-0.248661
-0.285632
-0.259679
-0.281022
-0.319553
-0.32394
-0.298568
-0.303757
-0.293203
-0.303838
-0.254253
-0.26678
-0.273553
-0.230564
-0.231512
-0.228317
-0.223845
-0.225635
-0.223357
-0.222412
-0.223104
-0.222824
-0.239224
-0.229171
-0.229428
-0.239414
-0.298187
-0.212452
-0.259867
-0.266929
-0.227116
-0.232499
-0.223772
-0.218499
-0.210489
-0.203933
-0.227619
-0.218244
-0.204418
-0.249185
-0.293326
-0.239234
-0.294338
-0.260714
-0.259782
-0.260036
-0.281881
-0.258336
-0.282564
-0.27477
-0.259176
-0.322965
-0.26625
-0.274555
-0.274384
-0.270983
-0.341325
-0.26491
-0.293515
-0.290998
-0.266363
-0.249917
-0.265697
-0.274897
-0.256225
-0.26373
-0.27493
-0.287705
-0.250231
-0.299375
-0.249726
-0.281033
-0.332103
-0.255341
-0.300889
-0.22421
-0.241746
-0.228352
-0.21399
-0.213232
-0.288158
-0.294005
-0.249319
-0.222555
-0.21583
-0.225213
-0.270892
-0.31413
-0.356461
-0.258901
-0.288695
-0.326211
-0.231986
-0.217426
-0.222801
-0.249629
-0.216122
-0.23328
-0.242322
-0.232434
-0.228512
-0.222528
-0.240469
-0.234623
-0.218724
-0.241863
-0.222674
-0.222987
-0.223199
-0.216332
-0.220859
-0.222383
-0.220795
-0.238114
-0.306631
-0.262476
-0.304301
-0.246679
-0.304006
-0.235398
-0.226572
-0.2222
-0.221428
-0.224542
-0.220054
-0.225123
-0.222973
-0.221077
-0.227625
-0.242835
-0.271845
-0.252948
-0.228134
-0.223671
-0.316394
-0.246901
-0.234618
-0.27374
-0.277812
-0.236184
-0.313026
-0.235456
-0.233679
-0.247415
-0.24562
-0.252588
-0.226986
-0.235904
-0.32526
-0.31274
-0.267607
-0.276477
-0.259728
-0.286252
-0.267982
-0.308839
-0.253256
-0.262699
-0.305367
-0.276099
-0.270415
-0.248881
-0.332445
-0.326887
-0.248664
-0.271766
-0.245544
-0.230567
-0.258295
-0.279627
-0.238699
-0.216985
-0.228421
-0.223059
-0.213867
-0.218863
-0.224745
-0.211222
-0.223067
-0.231604
-0.227981
-0.229699
-0.224112
-0.229058
-0.22589
-0.217348
-0.233979
-0.230045
-0.236725
-0.21921
-0.227257
-0.21837
-0.224844
-0.224642
-0.226031
-0.23341
-0.233433
-0.224836
-0.22588
-0.247589
-0.230574
-0.221436
-0.256248
-0.222429
-0.247465
-0.256225
-0.271449
-0.32389
-0.250098
-0.272848
-0.267638
-0.258856
-0.322237
-0.347509
-0.277838
-0.346105
-0.28865
-0.235046
-0.227401
-0.227575
-0.233633
-0.23682
-0.22393
-0.238544
-0.324026
-0.279696
-0.26134
-0.248824
-0.275252
-0.319871
-0.282061
-0.165811
-0.189004
-0.166714
-0.181606
-0.173091
-0.181288
-0.167994
-0.157086
-0.245142
-0.18594
-0.179688
-0.17812
-0.216307
-0.187223
-0.206879
-0.154727
-0.199117
-0.23803
-0.181936
-0.198679
-0.177835
-0.163329
-0.172458
-0.177932
-0.181817
-0.173802
-0.253145
-0.204889
-0.251806
-0.209729
-0.225104
-0.192626
-0.208958
-0.196368
-0.196968
-0.20307
-0.216887
-0.207129
-0.188441
-0.213041
-0.263471
-0.185188
-0.193455
-0.255373
-0.192509
-0.19237
-0.200656
-0.188614
-0.200842
-0.190803
-0.174867
-0.251573
-0.261748
-0.198376
-0.258538
-0.199386
-0.229224
-0.170699
-0.229623
-0.181506
-0.252351
-0.188097
-0.199875
-0.219893
-0.251519
-0.256037
-0.195442
-0.190444
-0.246031
-0.175136
-0.206125
-0.197731
-0.188358
-0.187289
-0.184845
-0.179433
-0.172635
-0.190847
-0.201949
-0.1955
-0.194212
-0.187238
-0.175904
-0.186405
-0.214528
-0.1904
-0.184531
-0.250537
-0.189699
-0.170472
-0.252384
-0.255942
-0.202325
-0.256873
-0.256645
-0.204299
-0.247745
-0.178899
-0.178756
-0.178952
-0.189177
-0.17083
-0.191096
-0.177525
-0.165092
-0.162371
-0.168376
-0.151978
-0.148235
-0.166033
-0.143236
-0.157939
-0.261223
-0.219709
-0.264656
-0.211334
-0.235042
-0.178029
-0.135285
-0.135605
-0.225404
-0.162022
-0.133365
-0.213715
-0.106659
-0.0327498
-0.132607
-0.0593906
-0.134851
-0.0551295
-0.105747
-0.115278
-0.120964
-0.159792
-0.122954
-0.127811
-0.110173
-0.135025
-0.116768
-0.141399
-0.14182
-0.165643
-0.130771
-0.12432
-0.137062
-0.151201
-0.196682
-0.173863
-0.154947
-0.195415
-0.149982
-0.152936
-0.149858
-0.143578
-0.167031
-0.191281
-0.194124
-0.14464
-0.143085
-0.193848
-0.20371
-0.198413
-0.19487
-0.227189
-0.234606
-0.15964
-0.159115
-0.237549
-0.228792
-0.142047
-0.225127
-0.137813
-0.233138
-0.160221
-0.235718
-0.220868
-0.13819
-0.123203
-0.112389
-0.114487
-0.111536
-0.116724
-0.128803
-0.281994
-0.126632
-0.125564
-0.280521
-0.122316
-0.18691
-0.179458
-0.0677296
-0.0869888
-0.0647645
-0.276269
-0.116175
-0.123044
-0.239394
-0.192851
-0.178073
-0.212641
-0.188217
-0.24382
-0.210157
-0.193993
-0.248531
-0.181752
-0.244324
-0.183944
-0.194633
-0.198789
-0.18429
-0.200145
-0.208234
-0.241697
-0.186055
-0.169538
-0.238581
-0.199563
-0.247769
-0.252589
-0.166499
-0.188929
-0.174603
-0.187175
-0.179212
-0.169704
-0.184079
-0.185195
-0.182797
-0.172934
-0.16481
-0.192399
-0.180387
-0.164598
-0.266017
-0.236262
-0.229861
-0.274546
-0.265154
-0.260471
-0.236317
-0.268627
-0.257543
-0.193339
-0.166055
-0.255735
-0.172258
-0.215089
-0.25115
-0.154124
-0.170837
-0.174321
-0.177848
-0.157815
-0.164546
-0.180889
-0.160691
-0.188295
-0.214877
-0.280527
-0.182234
-0.272958
-0.169755
-0.189835
-0.193664
-0.224116
-0.288738
-0.281311
-0.281366
-0.198054
-0.201299
-0.168422
-0.18323
-0.177466
-0.178838
-0.162957
-0.175656
-0.179405
-0.186545
-0.174525
-0.179518
-0.211358
-0.247384
-0.161421
-0.191557
-0.257516
-0.182204
-0.202625
-0.192179
-0.246841
-0.212434
-0.211929
-0.190971
-0.246109
-0.18278
-0.217802
-0.172686
-0.167707
-0.157622
-0.178629
-0.171178
-0.152267
-0.184063
-0.250737
-0.238991
-0.201219
-0.165416
-0.187383
-0.174417
-0.198243
-0.215869
-0.165905
-0.154848
-0.149843
-0.177075
-0.1528
-0.17661
-0.160882
-0.176994
-0.272662
-0.241927
-0.193628
-0.254906
-0.201418
-0.172459
-0.169995
-0.178755
-0.189663
-0.183837
-0.181018
-0.171575
-0.173214
-0.130321
-0.119686
-0.247506
-0.19514
-0.117203
-0.194854
-0.13391
-0.129552
-0.197125
-0.115903
-0.248682
-0.115717
-0.130089
-0.195992
-0.149865
-0.193673
-0.156294
-0.196166
-0.151313
-0.185946
-0.167346
-0.141247
-0.19588
-0.252588
-0.11805
-0.147243
-0.188304
-0.13027
-0.172463
-0.185244
-0.204412
-0.171336
-0.179347
-0.18208
-0.164989
-0.180129
-0.199077
-0.2117
-0.198762
-0.194849
-0.189687
-0.183516
-0.179015
-0.182973
-0.186495
-0.202538
-0.193638
-0.174452
-0.186695
-0.2508
-0.241441
-0.228349
-0.216085
-0.249299
-0.241807
-0.180846
-0.15592
-0.180283
-0.157424
-0.205021
-0.176586
-0.164875
-0.255479
-0.211069
-0.254862
-0.212256
-0.261052
-0.253937
-0.182405
-0.202356
-0.195956
-0.179458
-0.203891
-0.18168
-0.17677
-0.278621
-0.212032
-0.221627
-0.233618
-0.240723
-0.215569
-0.273995
-0.274869
-0.266606
-0.197422
-0.170564
-0.20583
-0.178914
-0.277462
-0.238205
-0.226902
-0.233981
-0.240927
-0.221956
-0.268947
-0.190598
-0.195246
-0.21875
-0.162489
-0.208549
-0.218057
-0.174823
-0.194754
-0.184319
-0.192604
-0.18293
-0.197481
-0.203484
-0.192857
-0.197928
-0.213337
-0.284256
-0.293898
-0.224539
-0.196008
-0.290383
-0.2608
-0.215775
-0.297339
-0.21626
-0.193037
-0.203242
-0.231549
-0.288845
-0.260489
-0.297133
-0.235517
-0.219896
-0.192532
-0.187264
-0.186275
-0.186926
-0.248271
-0.169792
-0.236317
-0.162926
-0.237266
-0.247172
-0.16711
-0.203141
-0.177499
-0.204563
-0.175632
-0.206439
-0.192285
-0.218126
-0.182135
-0.285226
-0.246864
-0.28923
-0.293229
-0.25411
-0.294925
-0.111392
-0.218807
-0.132044
-0.127386
-0.13405
-0.108533
-0.128888
-0.108914
-0.224653
-0.150978
-0.140516
-0.337578
-0.337788
-0.207304
-0.264531
-0.195078
-0.170001
-0.0882026
-0.143246
-0.104729
-0.198616
-0.0522703
-0.261845
-0.154602
-0.18823
-0.212758
-0.174984
-0.241346
-0.190711
-0.24677
-0.210563
-0.185715
-0.197681
-0.233158
-0.164673
-0.177524
-0.195272
-0.175196
-0.21038
-0.186353
-0.177972
-0.16069
-0.173852
-0.168945
-0.180384
-0.177338
-0.194318
-0.251079
-0.231952
-0.194546
-0.196255
-0.206996
-0.212304
-0.174721
-0.178655
-0.157303
-0.180179
-0.155627
-0.177929
-0.177814
-0.186146
-0.184406
-0.271676
-0.268863
-0.206723
-0.185047
-0.272219
-0.169816
-0.151448
-0.163871
-0.173472
-0.161723
-0.168453
-0.171532
-0.178978
-0.258231
-0.261988
-0.179062
-0.180002
-0.265979
-0.176915
-0.228953
-0.250915
-0.25968
-0.226344
-0.249986
-0.273786
-0.272308
-0.277959
-0.266143
-0.245251
-0.281559
-0.280008
-0.239859
-0.283325
-0.19966
-0.221549
-0.200078
-0.223046
-0.20204
-0.253731
-0.238389
-0.215103
-0.225044
-0.189134
-0.219852
-0.210834
-0.241443
-0.222754
-0.219044
-0.204063
-0.224989
-0.231499
-0.225313
-0.213326
-0.220402
-0.214275
-0.205626
-0.238857
-0.225793
-0.218972
-0.172964
-0.179108
-0.15931
-0.176135
-0.160898
-0.184018
-0.169831
-0.178708
-0.172909
-0.192987
-0.193588
-0.170084
-0.195209
-0.181285
-0.17948
-0.223941
-0.160576
-0.198811
-0.173269
-0.17056
-0.202564
-0.187446
-0.146568
-0.1643
-0.171524
-0.166979
-0.171643
-0.183204
-0.217916
-0.243601
-0.18103
-0.179237
-0.249373
-0.214354
-0.182238
-0.22006
-0.201931
-0.254363
-0.190741
-0.255692
-0.216423
-0.186547
-0.138063
-0.112415
-0.18455
-0.177874
-0.131515
-0.128018
-0.174815
-0.139683
-0.171309
-0.17305
-0.139008
-0.132022
-0.171522
-0.142429
-0.174733
-0.160184
-0.166523
-0.164449
-0.167306
-0.160674
-0.178171
-0.195107
-0.20172
-0.215639
-0.279674
-0.189064
-0.196094
-0.220572
-0.19776
-0.214941
-0.204334
-0.272846
-0.195997
-0.203044
-0.218785
-0.520241
-0.501254
-0.490658
-0.490153
-0.518068
-0.492515
-0.492162
-0.514405
-0.487341
-0.514127
-0.487437
-0.51902
-0.50428
-0.520275
-0.499026
-0.522203
-0.5041
-0.500291
-0.495753
-0.523566
-0.495963
-0.494101
-0.516802
-0.492141
-0.513898
-0.494512
-0.522428
-0.517529
-0.526708
-0.518427
-0.516414
-0.523114
-0.525973
-0.511361
-0.568726
-0.518704
-0.520085
-0.510463
-0.512612
-0.52197
-0.570079
-0.512524
-0.5214
-0.520977
-0.517062
-0.513789
-0.523762
-0.514822
-0.524688
-0.520079
-0.526353
-0.523191
-0.520076
-0.529084
-0.529329
-0.521477
-0.525613
-0.518853
-0.526016
-0.571228
-0.519912
-0.525297
-0.529118
-0.525789
-0.53322
-0.52714
-0.530883
-0.531494
-0.52445
-0.515288
-0.525016
-0.569892
-0.523459
-0.514723
-0.613012
-0.613454
-0.627181
-0.625662
-0.612404
-0.614333
-0.62858
-0.579647
-0.559637
-0.595883
-0.574184
-0.562131
-0.576251
-0.577154
-0.58066
-0.576232
-0.595341
-0.565426
-0.563363
-0.574849
-0.58242
-0.613077
-0.636627
-0.613237
-0.631972
-0.615852
-0.633078
-0.609435
-0.596227
-0.584466
-0.581754
-0.578336
-0.596194
-0.579878
-0.685063
-0.620411
-0.627177
-0.630998
-0.678789
-0.704304
-0.68514
-0.703063
-0.691938
-0.717234
-0.695879
-0.681577
-0.709912
-0.713228
-0.678088
-0.700993
-0.681727
-0.623597
-0.632877
-0.683381
-0.630941
-0.716017
-0.709704
-0.709259
-0.712003
-0.591034
-0.572295
-0.572919
-0.576654
-0.591065
-0.574242
-0.618167
-0.615005
-0.627092
-0.62915
-0.616067
-0.616344
-0.631632
-0.588176
-0.576338
-0.602267
-0.58338
-0.572358
-0.590941
-0.581078
-0.58633
-0.578038
-0.566972
-0.600657
-0.570436
-0.584157
-0.579644
-0.619634
-0.628786
-0.619545
-0.63411
-0.621453
-0.617955
-0.632599
-0.660987
-0.622769
-0.621396
-0.623541
-0.670681
-0.67289
-0.706392
-0.676401
-0.701569
-0.626941
-0.63615
-0.637867
-0.621817
-0.628804
-0.62471
-0.625814
-0.68817
-0.707547
-0.698678
-0.705386
-0.602711
-0.619057
-0.57679
-0.622361
-0.604795
-0.593309
-0.622945
-0.575582
-0.558783
-0.593957
-0.573441
-0.558369
-0.575889
-0.573438
-0.576421
-0.584755
-0.595607
-0.561971
-0.558902
-0.57584
-0.578972
-0.605738
-0.628656
-0.611816
-0.629419
-0.60739
-0.609911
-0.627266
-0.628615
-0.628772
-0.624225
-0.619466
-0.62208
-0.629096
-0.626885
-0.685806
-0.714267
-0.682027
-0.717974
-0.628784
-0.625157
-0.620066
-0.629881
-0.621734
-0.62941
-0.626945
-0.688099
-0.721904
-0.688918
-0.719126
-0.579784
-0.577409
-0.594945
-0.587958
-0.590596
-0.593907
-0.596643
-0.592021
-0.57601
-0.576556
-0.582992
-0.58934
-0.57227
-0.573002
-0.596431
-0.590772
-0.578301
-0.58703
-0.616711
-0.575621
-0.611948
-0.589581
-0.61552
-0.573477
-0.579799
-0.561412
-0.597658
-0.588892
-0.560187
-0.59117
-0.579662
-0.580719
-0.592632
-0.561609
-0.59836
-0.56039
-0.58135
-0.591957
-0.585641
-0.612437
-0.615383
-0.57391
-0.615184
-0.57303
-0.583639
-0.62198
-0.629793
-0.625825
-0.617374
-0.630618
-0.626494
-0.61591
-0.678146
-0.706677
-0.675669
-0.709745
-0.622413
-0.629143
-0.635014
-0.617663
-0.622042
-0.633541
-0.617725
-0.679926
-0.72575
-0.688311
-0.712128
-0.504808
-0.486228
-0.475224
-0.477471
-0.503297
-0.474837
-0.479226
-0.494459
-0.470898
-0.494697
-0.46957
-0.494271
-0.47692
-0.493297
-0.476903
-0.502715
-0.484332
-0.471821
-0.476842
-0.501693
-0.473093
-0.47725
-0.49613
-0.47814
-0.495827
-0.477466
-0.517036
-0.513482
-0.520833
-0.510505
-0.510958
-0.521002
-0.517083
-0.507643
-0.516243
-0.557841
-0.50851
-0.514721
-0.51784
-0.514199
-0.512718
-0.522759
-0.511798
-0.518715
-0.521675
-0.506166
-0.512483
-0.555939
-0.513578
-0.506339
-0.530989
-0.512382
-0.523132
-0.509929
-0.527974
-0.513571
-0.519447
-0.527138
-0.511172
-0.529162
-0.516017
-0.525364
-0.530152
-0.512884
-0.52834
-0.509888
-0.5261
-0.51089
-0.527406
-0.527347
-0.511221
-0.529025
-0.514676
-0.51493
-0.521755
-0.512264
-0.51428
-0.561874
-0.585273
-0.611008
-0.597861
-0.602001
-0.583195
-0.561359
-0.562626
-0.613657
-0.606709
-0.586763
-0.604113
-0.584019
-0.564944
-0.596333
-0.576051
-0.594176
-0.560939
-0.585139
-0.586731
-0.590158
-0.561992
-0.587994
-0.572249
-0.588958
-0.591142
-0.635221
-0.616419
-0.623441
-0.616134
-0.637046
-0.629048
-0.615554
-0.643453
-0.635196
-0.62839
-0.635866
-0.637027
-0.637551
-0.643254
-0.634309
-0.622738
-0.631166
-0.668272
-0.63951
-0.625039
-0.634814
-0.63425
-0.612693
-0.633918
-0.610513
-0.634032
-0.611324
-0.633948
-0.629874
-0.626121
-0.619987
-0.62392
-0.624358
-0.625685
-0.627874
-0.62423
-0.680112
-0.618492
-0.617487
-0.626027
-0.676789
-0.631531
-0.629345
-0.629355
-0.629101
-0.62683
-0.627371
-0.633445
-0.623011
-0.616441
-0.671484
-0.616341
-0.622021
-0.674649
-0.578005
-0.573175
-0.560653
-0.582425
-0.581394
-0.579369
-0.56206
-0.579681
-0.576859
-0.573841
-0.564601
-0.591559
-0.588221
-0.578383
-0.561443
-0.600927
-0.584634
-0.563621
-0.573847
-0.597255
-0.578724
-0.600139
-0.580192
-0.56048
-0.568233
-0.613629
-0.592263
-0.621898
-0.569673
-0.610974
-0.592045
-0.567981
-0.620062
-0.607803
-0.588635
-0.565395
-0.609957
-0.591771
-0.631958
-0.647115
-0.637328
-0.638846
-0.641145
-0.640074
-0.641035
-0.672114
-0.711879
-0.679676
-0.70308
-0.626072
-0.635161
-0.618085
-0.630865
-0.622032
-0.625333
-0.634127
-0.637593
-0.629403
-0.69095
-0.633442
-0.635966
-0.688324
-0.581001
-0.579968
-0.584798
-0.580135
-0.582895
-0.579775
-0.578801
-0.581267
-0.578335
-0.582936
-0.571787
-0.629612
-0.614857
-0.590502
-0.569818
-0.618332
-0.591021
-0.572353
-0.622522
-0.61541
-0.584462
-0.574567
-0.616574
-0.586316
-0.636801
-0.635999
-0.636949
-0.636169
-0.633241
-0.640116
-0.633413
-0.630522
-0.686313
-0.620249
-0.628467
-0.621629
-0.690257
-0.635855
-0.635447
-0.630254
-0.630583
-0.63425
-0.632192
-0.632233
-0.630763
-0.624254
-0.694572
-0.634607
-0.622404
-0.690593
-0.583082
-0.582976
-0.557726
-0.581075
-0.580017
-0.580531
-0.553969
-0.577551
-0.57901
-0.582395
-0.802672
-0.845251
-0.846983
-0.831636
-0.805583
-0.848593
-0.831036
-0.820293
-0.837212
-0.836586
-0.805741
-0.791359
-0.753663
-0.819924
-0.827868
-0.795852
-0.826755
-0.750829
-0.741886
-0.742965
-0.74338
-0.748844
-0.741223
-0.753579
-0.733212
-0.712746
-0.699202
-0.741896
-0.695048
-0.739733
-0.73996
-0.701752
-0.701267
-0.746979
-0.73252
-0.740062
-0.753429
-0.734109
-0.751245
-0.751109
-0.838801
-0.816054
-0.80982
-0.789578
-0.810217
-0.830083
-0.789534
-0.813787
-0.755517
-0.764993
-0.746438
-0.763682
-0.740907
-0.757884
-0.769529
-0.751145
-0.709391
-0.715195
-0.744609
-0.719632
-0.746982
-0.746314
-0.715444
-0.712156
-0.71015
-0.712468
-0.753841
-0.732691
-0.743366
-0.754187
-0.734486
-0.753644
-0.755117
-0.895855
-0.873197
-0.884203
-0.869306
-0.89963
-0.887763
-0.868928
-0.906727
-0.899734
-0.895293
-0.903722
-0.900892
-0.901292
-0.906703
-0.897765
-0.944344
-0.88294
-0.898423
-0.903614
-0.886498
-0.90092
-0.992835
-1.00846
-0.965623
-0.993765
-0.988427
-1.01259
-1.00491
-1.02532
-1.06157
-1.02892
-1.05754
-1.02396
-1.03014
-1.0576
-0.983208
-0.988337
-0.974315
-0.992049
-0.997671
-0.997953
-1.00478
-0.998668
-1.00651
-1.0028
-0.980083
-0.96245
-0.985694
-1.00316
-0.985902
-0.976852
-1.00436
-0.990615
-1.00761
-1.0547
-1.05934
-1.01231
-0.99872
-1.0468
-0.885896
-0.877356
-0.878391
-0.868158
-0.882408
-0.882918
-0.874761
-0.886523
-0.883348
-0.951218
-0.878688
-0.889865
-0.954631
-0.88569
-0.954045
-0.873621
-0.873824
-0.883509
-0.959397
-1.00355
-0.976533
-0.966723
-1.02536
-1.00888
-1.00617
-1.02261
-1.01747
-0.992482
-1.04192
-0.990359
-1.0341
-1.05095
-0.99711
-0.981294
-0.960827
-1.00044
-1.01699
-0.993441
-1.06201
-1.04537
-1.01349
-0.988704
-1.05902
-0.837012
-0.842009
-0.804748
-0.822262
-0.84347
-0.830058
-0.845294
-0.827259
-0.805166
-0.799469
-0.855991
-0.833845
-0.832342
-0.825623
-0.846807
-0.800098
-0.807897
-0.754936
-0.747555
-0.813872
-0.744741
-0.844563
-0.842159
-0.844443
-0.740449
-0.751311
-0.808426
-0.809344
-0.740978
-0.704163
-0.722615
-0.725783
-0.702469
-0.705268
-0.706665
-0.739727
-0.7214
-0.737852
-0.717977
-0.708906
-0.747669
-0.743275
-0.765696
-0.765572
-0.747259
-0.768578
-0.744422
-0.705999
-0.730912
-0.727045
-0.711013
-0.742984
-0.75112
-0.74799
-0.759598
-0.746943
-0.743912
-0.754702
-0.762639
-0.762225
-0.762901
-0.760754
-0.760142
-0.765007
-0.759001
-0.743147
-0.705134
-0.730416
-0.724518
-0.725715
-0.737516
-0.710473
-0.714193
-0.713295
-0.73386
-0.715686
-0.713685
-0.755288
-0.750668
-0.75903
-0.749214
-0.755198
-0.75471
-0.742322
-0.83619
-0.828752
-0.819244
-0.752775
-0.756468
-0.758891
-0.765058
-0.756901
-0.765976
-0.750045
-0.739678
-0.799538
-0.752085
-0.792355
-0.747677
-0.884333
-0.833833
-0.843001
-0.886945
-0.846634
-0.879576
-0.885805
-0.904057
-0.896714
-0.901588
-0.89746
-0.903689
-0.895455
-0.904949
-0.907992
-0.920432
-0.917524
-0.904537
-0.900735
-0.91685
-0.908946
-0.974596
-0.904949
-0.91755
-0.91421
-0.970884
-1.02679
-1.03188
-1.03131
-1.0289
-0.987029
-0.927629
-0.914627
-0.922297
-0.99118
-1.03423
-0.988022
-1.01929
-1.03458
-0.989448
-1.0398
-1.0328
-0.881501
-0.851938
-0.829697
-0.89066
-0.825796
-0.893945
-0.881946
-0.913946
-0.914516
-0.921045
-0.924569
-0.919681
-0.924037
-0.910925
-0.916029
-0.928385
-0.918636
-0.926855
-0.921439
-0.915944
-0.927908
-1.01665
-0.975819
-1.02188
-0.976918
-1.03748
-1.0125
-0.993435
-1.01602
-1.03987
-0.990927
-1.01032
-1.02486
-1.03333
-1.0358
-1.01352
-1.00458
-0.932479
-0.969353
-0.99369
-1.0374
-0.989692
-1.01496
-1.02463
-0.989176
-1.04419
-1.01252
-0.780173
-0.782301
-0.776567
-0.774575
-0.778181
-0.778744
-0.782085
-0.765923
-0.821907
-0.768298
-0.761347
-0.771855
-0.782128
-0.781111
-0.775905
-0.782397
-0.780121
-0.783168
-0.782761
-0.718819
-0.713135
-0.728959
-0.692653
-0.693063
-0.727099
-0.737704
-0.705941
-0.734459
-0.728385
-0.728489
-0.703762
-0.745799
-0.713549
-0.696376
-0.683604
-0.712151
-0.73028
-0.758856
-0.702397
-0.746417
-0.723914
-0.761533
-0.70283
-0.740149
-0.733155
-0.7326
-0.738784
-0.710385
-0.71147
-0.720084
-0.705056
-0.755395
-0.748122
-0.756776
-0.7187
-0.702532
-0.712837
-0.710721
-0.70645
-0.715075
-0.712082
-0.700747
-0.704208
-0.711612
-0.709248
-0.709367
-0.720844
-0.758692
-0.748813
-0.702335
-0.757944
-0.721909
-0.702962
-0.783583
-0.775317
-0.770652
-0.769613
-0.764538
-0.777127
-0.783445
-0.782192
-0.765383
-0.766999
-0.766236
-0.783472
-0.783075
-0.79306
-0.780633
-0.784296
-0.773774
-0.783602
-0.782266
-0.787873
-0.869342
-0.842192
-0.847018
-0.849423
-0.85065
-0.872263
-0.847515
-0.852539
-0.853277
-0.845648
-0.897489
-0.896364
-0.847105
-0.895146
-0.856764
-0.840735
-0.886597
-0.868081
-0.904038
-0.864957
-0.836558
-0.893038
-0.945499
-0.950908
-0.913531
-0.911337
-0.943349
-0.910453
-0.949554
-0.959781
-0.950658
-0.947917
-0.9577
-0.950589
-0.957386
-0.961085
-0.945199
-0.914398
-0.915048
-0.940839
-0.943373
-0.912967
-0.944006
-0.841915
-0.890532
-0.862229
-0.868184
-0.889109
-0.867654
-0.840513
-0.8416
-0.875586
-0.87719
-0.865488
-0.887027
-0.838171
-0.871361
-0.942492
-0.928574
-0.925369
-0.926603
-0.933311
-0.92763
-0.936704
-0.945866
-0.951377
-0.950234
-0.960238
-0.949376
-0.95853
-0.960043
-0.948751
-0.919759
-0.930921
-0.944525
-0.947462
-0.927902
-0.946495
-0.778272
-0.781703
-0.774608
-0.774015
-0.771093
-0.77829
-0.774827
-0.851786
-0.817804
-0.811334
-0.757498
-0.755549
-0.766993
-0.756688
-0.760968
-0.76027
-0.749629
-0.700675
-0.721343
-0.718588
-0.701374
-0.699654
-0.693
-0.730038
-0.708524
-0.727836
-0.707194
-0.703245
-0.742265
-0.741367
-0.763851
-0.762498
-0.743498
-0.740067
-0.762331
-0.699543
-0.718767
-0.714579
-0.706679
-0.739556
-0.753832
-0.735133
-0.760097
-0.737724
-0.73548
-0.759005
-0.707445
-0.710934
-0.706685
-0.715505
-0.752689
-0.750195
-0.719591
-0.706173
-0.750653
-0.72319
-0.695642
-0.735456
-0.710262
-0.734561
-0.713485
-0.712506
-0.721161
-0.72062
-0.725542
-0.71768
-0.722378
-0.731213
-0.726647
-0.725071
-0.70469
-0.742242
-0.751627
-0.725188
-0.721356
-0.744971
-0.703605
-0.70499
-0.704163
-0.857899
-0.818434
-0.818004
-0.746279
-0.755716
-0.761764
-0.767198
-0.745292
-0.754649
-0.760657
-0.747115
-0.757883
-0.755476
-0.765711
-0.754977
-0.74823
-0.759061
-0.846007
-0.877755
-0.824113
-0.843882
-0.824174
-0.848802
-0.846481
-0.866118
-0.848594
-0.895111
-0.898102
-0.848188
-0.860625
-0.901828
-0.879657
-0.914134
-0.887077
-0.910208
-0.884522
-0.884328
-0.910163
-0.9223
-0.915259
-0.918223
-0.92335
-0.924872
-0.913615
-0.92967
-0.9902
-1.0363
-0.987373
-1.03803
-0.91595
-0.92471
-0.918213
-0.904511
-0.905998
-0.925655
-0.914673
-0.852691
-0.877241
-0.827124
-0.847261
-0.828633
-0.850381
-0.849495
-0.895572
-0.902346
-0.924907
-0.922096
-0.903895
-0.898607
-0.921757
-0.890707
-0.916103
-0.892002
-0.918112
-0.894484
-0.887854
-0.917736
-0.936115
-0.929345
-0.924501
-0.926303
-0.929916
-0.935849
-0.928085
-0.936954
-1.03429
-0.930361
-0.983905
-1.01244
-0.923785
-0.92687
-0.929723
-0.908478
-0.929441
-0.930853
-0.918274
-0.280565
-0.294571
-0.277849
-0.298618
-0.313193
-0.361882
-0.342507
-0.304703
-0.342221
-0.36881
-0.300717
-0.346528
-0.349224
-0.295215
-0.346369
-0.326889
-0.346919
-0.282109
-0.336856
-0.295421
-0.336769
-0.246585
-0.244706
-0.264198
-0.242373
-0.252667
-0.25269
-0.239769
-0.289627
-0.337252
-0.342359
-0.273807
-0.339331
-0.264069
-0.27704
-0.268844
-0.286148
-0.2684
-0.285311
-0.257605
-0.253771
-0.253592
-0.265793
-0.26583
-0.298895
-0.271286
-0.286714
-0.255481
-0.26052
-0.274118
-0.256933
-0.266242
-0.265372
-0.252817
-0.251583
-0.243186
-0.259172
-0.241942
-0.249144
-0.261656
-0.243239
-0.257291
-0.302018
-0.278388
-0.253248
-0.274512
-0.251211
-0.265079
-0.292672
-0.301363
-0.291518
-0.299967
-0.290969
-0.299184
-0.299129
-0.291771
-0.292619
-0.297134
-0.289826
-0.300247
-0.33526
-0.308654
-0.339171
-0.305383
-0.374501
-0.319892
-0.321938
-0.373995
-0.335903
-0.307357
-0.306666
-0.333714
-0.315328
-0.295946
-0.283965
-0.284919
-0.295179
-0.287028
-0.314637
-0.31248
-0.376114
-0.322969
-0.300283
-0.367353
-0.296195
-0.299545
-0.316937
-0.29492
-0.292721
-0.296772
-0.292265
-0.295521
-0.303978
-0.293913
-0.299348
-0.294933
-0.293477
-0.304812
-0.300892
-0.324498
-0.308551
-0.308972
-0.323362
-0.370866
-0.318759
-0.318619
-0.371627
-0.314528
-0.287953
-0.281216
-0.29611
-0.286057
-0.295861
-0.314314
-0.326902
-0.308768
-0.310304
-0.328524
-0.314601
-0.29613
-0.286277
-0.281513
-0.28611
-0.314738
-0.296364
-0.303361
-0.294706
-0.292271
-0.300259
-0.293272
-0.300485
-0.302686
-0.278858
-0.285617
-0.280166
-0.290584
-0.277638
-0.284248
-0.284698
-0.29565
-0.307422
-0.304396
-0.298237
-0.292709
-0.297539
-0.293521
-0.296107
-0.27953
-0.287183
-0.280304
-0.283801
-0.281879
-0.278521
-0.285771
-0.291743
-0.290307
-0.292572
-0.294717
-0.276927
-0.291188
-0.284628
-0.285828
-0.278994
-0.282636
-0.285681
-0.309658
-0.319299
-0.306213
-0.372062
-0.300534
-0.367582
-0.319933
-0.332946
-0.301399
-0.295027
-0.271312
-0.295396
-0.333753
-0.300025
-0.291016
-0.304514
-0.291914
-0.295228
-0.294752
-0.290966
-0.307801
-0.333801
-0.296475
-0.272369
-0.298245
-0.296357
-0.300499
-0.331991
-0.371248
-0.364456
-0.277006
-0.314212
-0.289021
-0.296026
-0.281606
-0.290104
-0.330078
-0.302976
-0.307325
-0.307671
-0.300909
-0.284812
-0.272851
-0.2916
-0.283033
-0.277968
-0.279477
-0.292946
-0.312479
-0.362196
-0.324673
-0.369976
-0.294067
-0.323396
-0.310026
-0.359946
-0.328039
-0.297755
-0.366131
-0.279516
-0.289381
-0.281158
-0.283999
-0.279451
-0.28067
-0.290354
-0.291258
-0.30865
-0.297492
-0.319926
-0.346098
-0.317976
-0.334765
-0.297053
-0.296721
-0.369125
-0.314521
-0.323507
-0.307119
-0.32257
-0.305853
-0.364027
-0.377987
-0.308075
-0.29626
-0.294502
-0.296813
-0.318604
-0.31605
-0.295827
-0.329396
-0.299411
-0.305447
-0.296459
-0.343764
-0.338658
-0.3029
-0.339507
-0.323816
-0.299935
-0.366467
-0.312477
-0.294351
-0.294358
-0.30001
-0.306456
-0.294356
-0.30336
-0.380689
-0.331783
-0.397457
-0.328882
-0.395951
-0.37218
-0.360824
-0.365465
-0.280612
-0.280599
-0.368344
-0.356653
-0.270557
-0.32622
-0.27072
-0.302007
-0.267147
-0.308659
-0.295027
-0.264683
-0.26272
-0.262868
-0.270463
-0.26983
-0.266254
-0.260621
-0.267902
-0.259194
-0.264368
-0.256617
-0.257034
-0.256496
-0.257908
-0.264153
-0.260245
-0.262637
-0.268955
-0.261362
-0.261719
-0.26534
-0.258546
-0.297805
-0.329033
-0.36666
-0.335104
-0.335885
-0.308535
-0.332984
-0.287441
-0.309114
-0.276132
-0.28178
-0.287491
-0.305588
-0.274054
-0.285295
-0.268503
-0.285646
-0.279133
-0.298059
-0.281593
-0.271521
-0.255121
-0.263199
-0.262553
-0.267438
-0.254919
-0.262382
-0.260915
-0.253945
-0.239034
-0.256652
-0.252721
-0.257911
-0.2561
-0.249155
-0.255176
-0.262064
-0.264967
-0.262027
-0.262018
-0.259175
-0.257337
-0.229952
-0.212806
-0.219006
-0.212494
-0.224913
-0.222991
-0.227948
-0.226464
-0.173335
-0.205209
-0.199235
-0.218181
-0.230414
-0.19372
-0.247163
-0.240032
-0.235621
-0.301413
-0.232889
-0.255222
-0.29301
-0.235648
-0.247598
-0.23678
-0.243953
-0.241341
-0.234904
-0.24407
-0.238238
-0.242482
-0.254416
-0.247301
-0.244271
-0.245905
-0.237885
-0.238028
-0.239754
-0.24928
-0.253442
-0.237768
-0.242586
-0.247681
-0.240241
-0.269317
-0.226748
-0.232861
-0.22939
-0.244971
-0.261746
-0.241781
-0.264307
-0.245333
-0.250572
-0.257577
-0.238351
-0.255752
-0.241003
-0.236287
-0.241014
-0.253255
-0.232854
-0.238914
-0.260341
-0.216259
-0.190735
-0.199016
-0.201245
-0.215867
-0.199384
-0.203516
-0.259209
-0.303507
-0.266656
-0.258904
-0.252592
-0.308744
-0.257765
-0.259496
-0.245305
-0.304658
-0.257326
-0.257993
-0.249856
-0.306753
-0.262375
-0.262848
-0.186594
-0.170973
-0.171947
-0.187451
-0.176826
-0.184917
-0.188216
-0.179117
-0.195978
-0.167788
-0.192405
-0.151265
-0.183924
-0.202797
-0.237597
-0.344704
-0.288451
-0.339878
-0.233271
-0.189679
-0.199942
-0.196501
-0.333845
-0.284631
-0.236091
-0.336087
-0.234562
-0.210175
-0.212644
-0.155285
-0.161612
-0.205759
-0.154643
-0.20122
-0.15644
-0.157374
-0.151775
-0.165336
-0.182593
-0.205942
-0.189698
-0.161219
-0.156662
-0.220859
-0.219119
-0.155005
-0.213569
-0.162322
-0.189542
-0.159493
-0.209715
-0.162139
-0.160789
-0.148942
-0.221256
-0.200108
-0.144551
-0.221884
-0.160117
-0.13905
-0.142544
-0.154076
-0.149837
-0.145884
-0.142398
-0.146099
-0.162128
-0.215901
-0.194599
-0.162224
-0.218679
-0.160922
-0.160867
-0.201134
-0.204209
-0.215003
-0.325179
-0.28784
-0.234604
-0.256108
-0.251131
-0.293735
-0.322418
-0.330495
-0.237098
-0.271626
-0.325699
-0.24887
-0.209119
-0.20591
-0.212877
-0.194799
-0.217476
-0.201318
-0.207218
-0.210708
-0.252789
-0.195108
-0.22069
-0.207568
-0.219611
-0.203243
-0.201203
-0.199057
-0.194608
-0.176184
-0.185401
-0.204963
-0.193957
-0.298809
-0.277956
-0.272085
-0.306812
-0.317732
-0.302762
-0.239048
-0.214721
-0.313852
-0.309328
-0.21613
-0.317445
-0.21122
-0.307774
-0.215859
-0.310474
-0.310765
-0.212112
-0.236948
-0.265178
-0.222395
-0.215926
-0.245061
-0.245812
-0.21665
-0.326327
-0.290536
-0.366406
-0.296638
-0.354996
-0.342755
-0.246773
-0.207528
-0.21615
-0.256468
-0.257171
-0.217207
-0.274291
-0.193857
-0.255867
-0.190397
-0.221985
-0.189334
-0.216602
-0.199482
-0.185254
-0.169798
-0.187109
-0.189196
-0.180344
-0.174375
-0.195609
-0.186906
-0.197766
-0.171617
-0.191591
-0.175423
-0.189751
-0.19637
-0.184202
-0.216775
-0.21721
-0.299011
-0.287069
-0.203233
-0.216465
-0.217276
-0.299842
-0.305835
-0.301492
-0.303555
-0.235794
-0.241992
-0.228005
-0.243944
-0.24287
-0.236452
-0.238185
-0.236667
-0.255567
-0.238374
-0.234364
-0.248463
-0.236842
-0.236836
-0.238584
-0.236869
-0.240006
-0.228278
-0.238454
-0.240361
-0.230537
-0.242582
-0.237997
-0.253856
-0.263626
-0.239411
-0.259258
-0.232299
-0.246417
-0.27952
-0.249658
-0.270439
-0.253083
-0.264562
-0.235133
-0.275918
-0.324959
-0.275124
-0.251076
-0.26371
-0.320973
-0.28095
-0.246596
-0.231467
-0.240547
-0.223457
-0.242086
-0.24195
-0.230744
-0.262137
-0.280331
-0.315734
-0.247876
-0.276222
-0.256082
-0.261147
-0.238526
-0.266485
-0.274391
-0.335324
-0.248249
-0.279883
-0.237615
-0.235434
-0.267318
-0.223822
-0.324512
-0.233901
-0.279096
-0.228557
-0.277914
-0.26064
-0.276115
-0.279578
-0.287729
-0.280696
-0.256003
-0.269449
-0.269482
-0.327604
-0.323313
-0.266937
-0.245956
-0.246746
-0.247252
-0.253936
-0.243317
-0.234787
-0.328671
-0.256984
-0.323079
-0.330786
-0.323268
-0.240122
-0.259642
-0.265961
-0.313361
-0.289674
-0.294831
-0.259411
-0.25117
-0.265728
-0.268585
-0.250575
-0.26574
-0.314197
-0.248904
-0.29777
-0.317264
-0.292042
-0.249351
-0.217973
-0.257113
-0.214384
-0.25082
-0.254693
-0.219007
-0.248494
-0.237245
-0.241946
-0.212392
-0.243573
-0.250054
-0.222709
-0.208052
-0.207513
-0.159009
-0.16579
-0.207106
-0.193262
-0.157018
-0.209603
-0.168134
-0.149378
-0.161665
-0.168855
-0.185849
-0.161174
-0.163226
-0.193107
-0.158147
-0.209708
-0.194306
-0.173442
-0.210242
-0.16415
-0.169753
-0.208196
-0.215852
-0.213975
-0.251882
-0.237833
-0.319655
-0.284897
-0.255011
-0.209269
-0.318801
-0.257722
-0.284361
-0.318025
-0.257651
-0.271915
-0.208671
-0.311958
-0.258669
-0.279872
-0.18858
-0.189535
-0.20894
-0.199241
-0.190015
-0.207743
-0.188223
-0.228868
-0.137862
-0.226464
-0.139917
-0.22397
-0.142134
-0.183512
-0.148882
-0.219396
-0.189474
-0.123435
-0.183708
-0.20415
-0.195794
-0.178716
-0.203884
-0.180552
-0.183964
-0.22878
-0.141283
-0.223605
-0.140522
-0.280913
-0.255741
-0.276538
-0.22443
-0.237469
-0.238547
-0.278111
-0.267936
-0.273797
-0.333892
-0.269829
-0.326841
-0.334213
-0.213806
-0.229194
-0.230588
-0.252685
-0.36449
-0.251022
-0.24523
-0.365466
-0.257148
-0.239827
-0.240842
-0.24172
-0.232905
-0.239553
-0.242624
-0.240372
-0.267828
-0.328774
-0.267761
-0.316578
-0.283988
-0.278644
-0.279592
-0.244083
-0.230012
-0.227749
-0.238486
-0.228986
-0.238605
-0.241753
-0.244194
-0.240793
-0.227875
-0.223166
-0.220032
-0.249313
-0.238565
-0.27699
-0.319728
-0.244896
-0.229295
-0.27918
-0.315122
-0.242423
-0.277368
-0.251154
-0.262373
-0.322935
-0.256695
-0.319314
-0.281268
-0.265854
-0.24192
-0.218339
-0.239225
-0.271162
-0.23896
-0.254603
-0.490183
-0.467924
-0.465247
-0.451193
-0.490825
-0.465589
-0.452496
-0.474408
-0.442553
-0.476112
-0.442342
-0.481455
-0.472319
-0.480959
-0.470124
-0.490144
-0.469935
-0.469424
-0.455405
-0.490901
-0.468052
-0.453632
-0.482194
-0.461154
-0.483534
-0.465502
-0.508811
-0.494703
-0.509118
-0.486241
-0.49233
-0.512002
-0.505435
-0.462034
-0.513313
-0.50608
-0.514298
-0.51163
-0.515098
-0.508144
-0.508551
-0.51632
-0.520332
-0.512054
-0.515502
-0.518669
-0.517503
-0.509763
-0.502447
-0.483552
-0.457435
-0.496037
-0.487083
-0.501479
-0.490411
-0.512212
-0.494243
-0.498401
-0.51393
-0.513214
-0.497275
-0.516484
-0.50804
-0.489321
-0.514555
-0.500024
-0.508048
-0.514159
-0.49042
-0.513025
-0.495834
-0.514176
-0.501104
-0.514076
-0.51319
-0.499159
-0.510677
-0.522616
-0.502257
-0.514466
-0.517106
-0.522983
-0.497298
-0.553201
-0.592862
-0.572323
-0.567946
-0.593929
-0.553278
-0.571891
-0.551846
-0.567235
-0.598212
-0.572801
-0.593621
-0.570782
-0.553485
-0.583781
-0.566526
-0.584536
-0.556971
-0.58391
-0.582555
-0.579925
-0.555424
-0.581145
-0.567767
-0.587266
-0.585957
-0.63119
-0.609574
-0.605793
-0.629938
-0.630605
-0.606828
-0.630359
-0.640899
-0.633667
-0.633596
-0.625622
-0.633056
-0.641549
-0.633506
-0.632168
-0.610717
-0.632357
-0.608603
-0.631767
-0.632679
-0.607875
-0.639751
-0.631484
-0.624843
-0.632934
-0.631944
-0.639019
-0.632659
-0.582787
-0.566151
-0.583095
-0.55056
-0.577386
-0.577408
-0.578787
-0.551575
-0.578442
-0.564998
-0.584965
-0.582363
-0.555373
-0.593923
-0.568127
-0.572795
-0.554432
-0.594324
-0.573787
-0.556642
-0.569237
-0.597142
-0.575869
-0.55849
-0.595594
-0.574884
-0.629789
-0.605381
-0.60796
-0.629314
-0.604583
-0.630078
-0.628804
-0.64204
-0.645073
-0.647544
-0.633784
-0.634474
-0.64847
-0.637481
-0.628676
-0.605698
-0.601851
-0.627985
-0.602708
-0.626566
-0.628172
-0.639767
-0.631202
-0.632962
-0.626764
-0.63883
-0.631932
-0.635628
-0.552856
-0.572931
-0.593936
-0.587716
-0.597646
-0.549637
-0.57442
-0.553366
-0.588929
-0.604283
-0.572096
-0.554492
-0.600027
-0.575339
-0.61318
-0.579512
-0.569667
-0.617603
-0.619006
-0.578979
-0.613578
-0.636332
-0.639559
-0.635313
-0.632867
-0.639691
-0.634267
-0.638531
-0.612865
-0.570744
-0.61901
-0.577676
-0.62004
-0.578747
-0.611034
-0.637826
-0.64435
-0.635403
-0.643998
-0.643286
-0.639626
-0.640039
-0.585622
-0.582714
-0.585084
-0.495407
-0.503792
-0.556006
-0.496874
-0.556251
-0.557308
-0.501942
-0.504831
-0.498773
-0.556453
-0.582798
-0.584955
-0.585071
-0.574323
-0.576435
-0.584497
-0.584347
-0.588751
-0.546577
-0.581471
-0.574907
-0.554263
-0.542317
-0.504646
-0.568828
-0.586077
-0.596681
-0.591094
-0.545663
-0.570954
-0.593445
-0.584833
-0.548108
-0.569984
-0.591498
-0.54479
-0.584861
-0.568333
-0.591565
-0.569344
-0.591305
-0.543876
-0.616017
-0.581641
-0.570966
-0.617746
-0.583308
-0.615108
-0.617121
-0.643482
-0.653666
-0.641457
-0.650526
-0.644843
-0.643805
-0.652997
-0.617434
-0.573967
-0.589902
-0.613563
-0.620234
-0.586019
-0.617697
-0.64321
-0.645327
-0.648975
-0.650333
-0.642279
-0.644443
-0.651883
-0.484437
-0.460086
-0.445809
-0.471984
-0.485164
-0.444832
-0.470902
-0.462812
-0.435115
-0.464594
-0.431672
-0.472592
-0.463872
-0.471079
-0.465015
-0.483378
-0.458971
-0.441792
-0.468732
-0.481836
-0.443477
-0.469774
-0.473963
-0.467443
-0.475302
-0.466216
-0.489893
-0.466593
-0.48975
-0.452008
-0.453393
-0.491021
-0.488872
-0.460142
-0.456945
-0.507717
-0.505776
-0.510449
-0.511756
-0.508481
-0.509494
-0.505568
-0.490606
-0.467829
-0.457511
-0.493957
-0.454626
-0.492019
-0.491904
-0.507315
-0.508525
-0.511919
-0.505273
-0.509326
-0.506632
-0.505488
-0.454448
-0.455907
-0.48754
-0.463266
-0.489232
-0.451107
-0.488686
-0.450289
-0.488275
-0.505486
-0.505377
-0.507358
-0.512216
-0.505075
-0.507864
-0.505236
-0.450829
-0.451508
-0.48706
-0.462405
-0.487615
-0.448868
-0.486494
-0.48823
-0.449682
-0.505734
-0.508345
-0.511875
-0.505433
-0.50808
-0.506319
-0.505001
-0.453529
-0.452505
-0.607943
-0.612431
-0.608406
-0.508676
-0.511102
-0.571022
-0.507107
-0.572179
-0.569756
-0.505098
-0.509692
-0.505633
-0.570478
-0.610958
-0.603674
-0.60894
-0.607964
-0.561714
-0.560518
-0.608801
-0.556083
-0.558895
-0.565704
-0.556586
-0.569712
-0.608469
-0.57023
-0.566478
-0.555645
-0.587135
-0.599053
-0.603826
-0.595034
-0.596434
-0.602942
-0.585599
-0.587812
-0.593357
-0.600202
-0.604016
-0.594495
-0.588734
-0.60338
-0.565555
-0.610765
-0.574995
-0.55577
-0.572046
-0.556369
-0.566788
-0.567579
-0.608939
-0.55661
-0.56885
-0.558757
-0.568604
-0.566581
-0.589378
-0.613836
-0.584807
-0.598603
-0.586806
-0.591481
-0.608069
-0.567877
-0.609364
-0.560422
-0.56547
-0.559222
-0.567446
-0.569423
-0.589236
-0.591014
-0.59545
-0.604265
-0.588992
-0.588567
-0.606092
-0.606442
-0.620968
-0.605204
-0.501061
-0.507306
-0.563131
-0.50181
-0.564762
-0.5681
-0.508314
-0.503926
-0.502945
-0.566596
-0.623162
-0.601476
-0.603548
-0.601123
-0.588856
-0.559569
-0.608395
-0.614263
-0.562098
-0.597059
-0.62905
-0.644494
-0.63844
-0.640735
-0.633802
-0.634576
-0.642264
-0.605609
-0.576863
-0.619657
-0.577525
-0.615177
-0.610076
-0.574564
-0.624956
-0.627117
-0.636646
-0.635588
-0.631093
-0.621395
-0.638229
-0.584949
-0.579205
-0.578384
-0.49474
-0.556504
-0.502778
-0.494548
-0.554821
-0.583301
-0.585444
-0.583416
-0.550842
-0.502037
-0.494904
-0.494504
-0.551044
-0.591684
-0.613026
-0.55593
-0.552341
-0.546689
-0.585687
-0.568326
-0.592429
-0.543936
-0.569265
-0.588581
-0.587533
-0.559425
-0.596232
-0.599031
-0.558835
-0.592751
-0.592549
-0.600218
-0.620876
-0.588674
-0.61494
-0.595984
-0.587323
-0.622241
-0.576431
-0.60055
-0.560625
-0.567387
-0.572522
-0.557848
-0.563049
-0.60841
-0.619442
-0.631252
-0.622611
-0.616153
-0.606961
-0.62647
-0.582773
-0.600709
-0.586388
-0.498535
-0.505842
-0.560704
-0.496685
-0.559923
-0.552642
-0.50351
-0.496018
-0.495473
-0.554476
-0.620403
-0.598354
-0.596663
-0.719778
-0.781331
-0.789446
-0.785033
-0.789474
-0.781561
-0.786771
-0.784817
-0.760004
-0.75947
-0.73004
-0.713763
-0.716619
-0.76148
-0.759247
-0.757158
-0.750033
-0.770334
-0.733454
-0.770677
-0.715825
-0.763039
-0.714656
-0.718449
-0.741367
-0.71344
-0.717583
-0.74237
-0.730708
-0.694132
-0.728618
-0.695026
-0.748779
-0.705392
-0.724114
-0.724512
-0.748086
-0.722478
-0.70458
-0.740996
-0.728633
-0.738896
-0.724776
-0.731354
-0.695786
-0.694789
-0.733579
-0.747716
-0.718274
-0.720984
-0.70124
-0.718082
-0.749923
-0.701964
-0.777509
-0.771805
-0.785512
-0.791828
-0.765048
-0.791444
-0.785975
-0.779458
-0.779253
-0.762113
-0.757384
-0.779623
-0.760999
-0.780031
-0.776529
-0.757313
-0.77752
-0.754028
-0.779775
-0.757049
-0.778426
-0.749191
-0.718826
-0.735933
-0.740532
-0.748866
-0.696165
-0.720229
-0.732639
-0.73484
-0.700848
-0.742696
-0.72336
-0.655991
-0.69169
-0.703883
-0.735113
-0.695309
-0.697438
-0.732303
-0.75389
-0.718154
-0.717663
-0.701018
-0.72527
-0.749512
-0.701684
-0.740651
-0.729175
-0.733192
-0.733573
-0.934955
-0.941629
-0.874476
-0.905044
-0.929013
-0.941084
-0.892182
-0.972085
-0.986788
-0.982447
-0.994953
-0.973322
-0.973092
-0.988603
-0.934264
-0.88366
-0.876438
-0.941773
-0.935608
-0.888744
-0.932407
-0.840897
-0.894468
-0.875774
-0.865495
-0.901827
-0.839756
-0.867183
-0.841183
-0.87281
-0.893688
-0.889147
-0.897503
-0.844857
-0.871617
-0.91277
-0.911295
-0.91623
-0.874055
-0.907954
-0.869115
-0.908509
-0.961078
-0.986821
-0.981077
-0.99326
-0.973123
-0.969177
-0.986706
-0.924491
-0.869951
-0.906658
-0.947225
-0.945357
-0.867782
-0.929754
-0.792158
-0.805481
-0.798717
-0.801293
-0.790125
-0.799191
-0.799611
-0.873514
-0.904942
-0.858595
-0.87311
-0.909739
-0.865665
-0.916558
-0.922468
-0.916924
-0.906922
-0.904162
-0.92582
-0.920467
-0.917499
-0.79651
-0.807967
-0.798148
-0.800738
-0.791437
-0.801412
-0.804045
-0.859693
-0.903622
-0.87252
-0.873381
-0.910573
-0.874967
-0.903067
-0.922529
-0.89989
-0.907647
-0.925774
-0.923426
-0.90353
-0.723306
-0.716163
-0.763403
-0.758006
-0.721231
-0.712483
-0.757801
-0.758763
-0.716692
-0.78625
-0.802107
-0.778813
-0.799409
-0.782228
-0.800142
-0.782479
-0.764152
-0.736081
-0.708059
-0.75126
-0.753056
-0.72956
-0.763815
-0.712026
-0.710544
-0.718535
-0.739744
-0.722897
-0.735697
-0.679951
-0.626509
-0.61714
-0.626535
-0.670154
-0.683772
-0.618858
-0.633795
-0.628926
-0.688712
-0.71438
-0.730587
-0.733142
-0.704374
-0.718712
-0.72376
-0.721883
-0.715532
-0.737759
-0.693313
-0.716051
-0.731294
-0.695326
-0.741011
-0.730253
-0.700183
-0.653809
-0.643992
-0.648637
-0.703361
-0.691747
-0.637844
-0.634807
-0.642658
-0.687546
-0.729403
-0.727152
-0.732305
-0.725073
-0.730201
-0.744487
-0.731196
-0.741951
-0.774108
-0.799898
-0.774571
-0.795637
-0.773753
-0.798149
-0.769611
-0.7275
-0.735341
-0.717917
-0.758145
-0.737161
-0.757594
-0.727042
-0.729581
-0.746509
-0.742503
-0.718357
-0.739676
-0.729431
-0.75761
-0.727414
-0.738995
-0.73954
-0.725179
-0.902405
-0.924803
-0.935566
-0.876606
-0.924097
-0.872174
-0.906429
-0.915705
-0.966331
-0.908971
-0.964519
-0.905872
-0.920186
-0.960721
-0.902686
-0.87513
-0.937037
-0.924884
-0.923762
-0.872273
-0.903846
-0.899704
-0.904742
-0.873336
-0.931597
-0.902577
-0.902958
-0.870746
-0.93851
-0.975605
-0.910208
-0.969542
-0.945367
-0.926119
-0.974387
-0.89934
-0.874458
-0.936072
-0.914443
-0.904562
-0.871951
-0.900494
-0.742074
-0.714173
-0.720044
-0.73522
-0.737722
-0.73309
-0.755489
-0.75309
-0.740529
-0.713848
-0.743834
-0.759916
-0.715332
-0.752394
-0.740732
-0.74274
-0.744589
-0.730295
-0.719563
-0.715278
-0.730102
-0.607126
-0.601559
-0.671195
-0.604431
-0.608994
-0.660446
-0.61748
-0.610636
-0.600598
-0.593867
-0.599188
-0.613923
-0.616097
-0.615031
-0.600323
-0.593485
-0.613902
-0.595427
-0.613071
-0.615495
-0.609158
-0.612092
-0.60133
-0.620328
-0.609458
-0.620499
-0.619612
-0.618453
-0.604327
-0.67563
-0.681522
-0.607059
-0.612612
-0.626552
-0.630538
-0.61755
-0.62277
-0.624722
-0.616247
-0.63167
-0.623173
-0.606003
-0.610287
-0.616372
-0.621248
-0.611163
-0.618229
-0.621028
-0.68636
-0.621379
-0.681219
-0.613227
-0.628495
-0.726776
-0.709073
-0.731303
-0.697831
-0.757498
-0.736578
-0.736258
-0.712449
-0.734354
-0.758721
-0.709532
-0.7379
-0.749899
-0.736843
-0.750631
-0.738608
-0.736772
-0.734993
-0.740377
-0.719894
-0.68463
-0.679552
-0.726775
-0.845913
-0.817801
-0.820064
-0.829025
-0.831023
-0.824722
-0.836736
-0.831204
-0.834311
-0.8106
-0.824628
-0.832501
-0.812337
-0.834444
-0.829513
-0.813563
-0.823505
-0.806311
-0.809967
-0.823811
-0.929687
-0.909675
-0.926933
-0.924772
-0.934975
-0.934504
-0.909352
-0.926395
-0.927188
-0.825158
-0.820055
-0.821027
-0.82527
-0.826438
-0.825337
-0.824632
-0.805339
-0.819732
-0.873325
-0.807472
-0.816686
-0.798942
-0.810949
-0.871701
-0.799278
-0.812017
-0.93171
-0.888788
-0.930945
-0.954109
-0.940711
-0.956956
-0.885966
-0.926143
-0.93138
-0.740339
-0.74669
-0.743819
-0.743463
-0.744258
-0.728329
-0.706653
-0.746355
-0.729554
-0.740062
-0.755798
-0.733013
-0.782832
-0.748113
-0.785799
-0.743876
-0.787483
-0.733587
-0.730222
-0.728872
-0.74772
-0.762832
-0.710565
-0.73518
-0.733334
-0.761371
-0.748357
-0.737009
-0.72911
-0.732604
-0.738018
-0.731735
-0.737124
-0.687207
-0.730623
-0.688963
-0.725245
-0.632019
-0.631447
-0.634722
-0.626546
-0.624686
-0.64171
-0.633487
-0.625906
-0.613061
-0.628584
-0.63465
-0.615872
-0.637152
-0.625358
-0.691011
-0.727764
-0.689477
-0.727393
-0.680356
-0.724308
-0.720187
-0.68403
-0.618461
-0.633997
-0.618863
-0.62798
-0.628857
-0.622829
-0.612925
-0.619368
-0.609965
-0.630666
-0.619632
-0.628352
-0.62127
-0.6097
-0.671743
-0.689465
-0.626926
-0.631837
-0.708921
-0.73329
-0.754085
-0.747815
-0.741714
-0.769107
-0.79438
-0.752702
-0.784427
-0.764176
-0.798053
-0.73385
-0.727887
-0.734462
-0.759821
-0.712475
-0.729695
-0.732135
-0.757506
-0.726258
-0.739561
-0.724778
-0.739538
-0.730418
-0.766974
-0.732933
-0.71284
-0.732473
-0.737758
-0.760384
-0.740404
-0.89803
-0.930944
-0.95591
-0.930306
-0.95548
-0.896582
-0.931671
-0.901215
-0.946488
-0.963191
-0.93291
-0.97225
-0.899183
-0.934017
-0.283865
-0.278115
-0.290599
-0.269753
-0.283535
-0.290399
-0.271296
-0.280936
-0.27957
-0.266861
-0.266464
-0.282299
-0.27735
-0.2678
-0.2849
-0.290411
-0.286884
-0.281831
-0.286193
-0.285358
-0.290643
-0.286038
-0.325549
-0.298719
-0.274009
-0.286705
-0.310474
-0.268242
-0.28573
-0.278624
-0.284175
-0.27586
-0.288124
-0.283167
-0.275531
-0.284133
-0.281151
-0.268643
-0.270072
-0.284059
-0.28194
-0.267184
-0.308466
-0.362812
-0.372744
-0.383232
-0.372137
-0.359639
-0.294692
-0.278254
-0.287303
-0.282741
-0.284581
-0.2927
-0.285364
-0.310435
-0.349042
-0.401479
-0.336879
-0.312886
-0.34052
-0.322225
-0.303202
-0.317797
-0.299161
-0.362383
-0.294557
-0.301219
-0.331258
-0.322173
-0.350569
-0.333811
-0.314394
-0.350434
-0.321493
-0.314735
-0.319511
-0.302715
-0.369097
-0.300746
-0.34398
-0.298888
-0.328367
-0.324187
-0.321788
-0.335903
-0.344405
-0.351954
-0.316212
-0.324999
-0.288087
-0.282594
-0.29088
-0.280677
-0.291762
-0.290779
-0.278497
-0.295838
-0.303796
-0.318861
-0.308823
-0.303832
-0.295821
-0.308732
-0.29666
-0.312511
-0.302275
-0.319086
-0.303579
-0.298966
-0.309077
-0.330061
-0.382087
-0.355069
-0.326168
-0.378025
-0.329332
-0.332417
-0.318347
-0.317714
-0.397612
-0.30077
-0.365081
-0.294744
-0.332653
-0.329855
-0.33329
-0.402809
-0.368717
-0.384935
-0.337532
-0.332456
-0.284501
-0.273813
-0.277452
-0.278951
-0.269303
-0.275425
-0.268052
-0.266297
-0.272808
-0.411778
-0.332137
-0.349527
-0.282843
-0.346549
-0.359189
-0.47562
-0.334884
-0.407644
-0.382104
-0.489659
-0.397074
-0.376053
-0.256887
-0.312719
-0.317388
-0.277649
-0.272785
-0.267876
-0.258557
-0.260535
-0.26048
-0.266935
-0.253964
-0.261768
-0.292363
-0.267196
-0.293425
-0.423374
-0.37299
-0.458473
-0.373056
-0.471849
-0.264364
-0.302378
-0.297069
-0.326029
-0.295685
-0.309736
-0.367054
-0.298651
-0.375079
-0.320353
-0.328219
-0.387016
-0.321978
-0.325631
-0.378048
-0.332388
-0.319359
-0.315285
-0.311025
-0.305016
-0.301925
-0.317758
-0.308172
-0.313957
-0.332236
-0.376719
-0.315205
-0.329936
-0.331465
-0.37956
-0.316314
-0.32322
-0.321307
-0.293096
-0.372869
-0.294126
-0.374176
-0.322405
-0.332907
-0.318017
-0.331046
-0.382189
-0.381723
-0.317307
-0.33313
-0.300669
-0.36127
-0.31969
-0.306932
-0.316431
-0.295129
-0.307542
-0.296653
-0.283886
-0.304803
-0.305132
-0.293659
-0.284705
-0.306378
-0.298593
-0.309056
-0.285317
-0.305153
-0.285814
-0.302175
-0.307649
-0.334716
-0.382064
-0.326994
-0.322937
-0.385305
-0.333627
-0.321383
-0.321436
-0.318097
-0.292804
-0.372568
-0.291711
-0.370917
-0.322419
-0.334085
-0.319282
-0.325073
-0.384374
-0.383725
-0.32002
-0.334154
-0.292851
-0.285532
-0.286058
-0.281354
-0.280185
-0.282399
-0.284101
-0.283617
-0.283431
-0.328742
-0.304404
-0.327049
-0.310335
-0.340101
-0.340783
-0.301619
-0.316708
-0.321618
-0.313516
-0.292073
-0.283194
-0.296011
-0.294184
-0.293993
-0.288112
-0.290968
-0.287202
-0.296474
-0.281408
-0.300328
-0.35182
-0.341254
-0.348878
-0.287674
-0.310394
-0.305792
-0.342701
-0.313277
-0.277022
-0.321653
-0.335666
-0.281555
-0.255007
-0.277609
-0.286659
-0.288058
-0.283754
-0.260999
-0.350068
-0.274394
-0.33211
-0.353013
-0.328288
-0.248269
-0.251321
-0.24974
-0.243872
-0.239351
-0.246303
-0.243217
-0.238103
-0.244286
-0.245158
-0.246967
-0.243374
-0.257023
-0.25184
-0.2487
-0.241677
-0.243825
-0.240417
-0.373323
-0.265971
-0.302762
-0.325073
-0.30998
-0.358547
-0.334976
-0.264411
-0.24438
-0.279625
-0.288617
-0.243267
-0.275896
-0.429028
-0.42705
-0.325852
-0.273599
-0.331521
-0.293479
-0.310904
-0.381012
-0.284818
-0.309277
-0.260736
-0.282385
-0.277248
-0.309015
-0.284724
-0.275152
-0.423742
-0.330973
-0.380606
-0.297471
-0.295804
-0.37836
-0.343744
-0.290087
-0.214879
-0.264728
-0.211505
-0.268044
-0.187732
-0.193167
-0.190958
-0.190753
-0.212328
-0.218915
-0.25054
-0.246002
-0.248483
-0.217499
-0.214261
-0.185006
-0.187507
-0.189317
-0.182482
-0.210281
-0.246048
-0.213802
-0.249533
-0.207003
-0.247765
-0.216056
-0.218343
-0.255921
-0.271668
-0.218141
-0.204571
-0.261341
-0.260789
-0.208168
-0.190922
-0.205514
-0.316273
-0.257221
-0.193049
-0.277107
-0.207748
-0.170655
-0.182658
-0.179546
-0.180167
-0.187192
-0.320812
-0.208527
-0.26137
-0.1774
-0.186058
-0.183818
-0.180142
-0.201864
-0.245166
-0.250135
-0.212812
-0.249599
-0.205011
-0.211411
-0.432489
-0.438971
-0.307804
-0.263694
-0.280361
-0.278262
-0.307801
-0.279289
-0.280981
-0.362098
-0.323378
-0.300376
-0.335343
-0.37551
-0.306481
-0.405795
-0.355858
-0.383136
-0.298638
-0.300827
-0.353027
-0.381718
-0.301448
-0.378952
-0.448795
-0.505835
-0.24623
-0.239238
-0.257525
-0.239144
-0.25759
-0.235706
-0.246552
-0.246756
-0.244328
-0.255863
-0.238931
-0.253736
-0.240362
-0.246585
-0.269645
-0.276916
-0.333374
-0.34757
-0.25512
-0.26895
-0.344566
-0.260939
-0.248671
-0.243845
-0.26586
-0.245636
-0.267492
-0.256859
-0.264356
-0.272415
-0.325504
-0.240306
-0.246754
-0.333754
-0.245903
-0.270736
-0.258205
-0.266156
-0.356368
-0.326898
-0.27453
-0.302124
-0.332904
-0.352672
-0.346237
-0.284842
-0.332667
-0.290926
-0.341294
-0.249514
-0.277996
-0.249032
-0.264466
-0.259021
-0.253362
-0.344566
-0.288597
-0.282745
-0.260107
-0.259592
-0.252207
-0.246652
-0.265937
-0.248043
-0.265342
-0.259498
-0.259008
-0.248059
-0.254223
-0.248812
-0.247089
-0.266636
-0.254262
-0.259402
-0.272746
-0.247363
-0.256878
-0.247271
-0.258664
-0.268956
-0.257857
-0.265723
-0.268704
-0.270995
-0.269178
-0.2594
-0.26772
-0.256462
-0.294217
-0.289766
-0.281708
-0.285433
-0.262438
-0.277145
-0.261183
-0.273915
-0.273962
-0.275109
-0.271789
-0.264513
-0.271324
-0.334441
-0.328744
-0.354096
-0.30712
-0.364905
-0.324327
-0.312501
-0.311024
-0.308276
-0.291528
-0.296259
-0.29201
-0.303717
-0.316102
-0.30816
-0.287006
-0.295902
-0.288681
-0.302963
-0.290443
-0.300897
-0.295632
-0.288511
-0.27857
-0.27565
-0.279969
-0.293158
-0.288783
-0.306732
-0.371225
-0.373166
-0.307972
-0.373205
-0.322556
-0.300749
-0.295097
-0.284844
-0.277981
-0.293738
-0.281829
-0.300496
-0.289046
-0.287842
-0.313088
-0.302878
-0.285875
-0.357863
-0.270971
-0.293058
-0.380493
-0.384401
-0.264087
-0.29095
-0.285783
-0.28016
-0.275171
-0.284733
-0.271427
-0.383136
-0.266377
-0.274805
-0.27809
-0.283022
-0.266222
-0.275697
-0.281738
-0.380408
-0.398472
-0.385097
-0.398374
-0.411237
-0.405503
-0.354299
-0.294273
-0.280079
-0.316629
-0.357628
-0.284692
-0.315016
-0.28974
-0.290045
-0.300685
-0.275808
-0.289077
-0.300543
-0.29051
-0.378654
-0.395569
-0.375772
-0.397376
-0.413843
-0.419391
-0.293657
-0.301741
-0.298312
-0.275126
-0.302317
-0.302021
-0.292082
-0.238539
-0.291175
-0.293551
-0.237486
-0.208551
-0.194934
-0.19715
-0.208717
-0.225297
-0.220429
-0.255705
-0.249589
-0.219804
-0.258584
-0.221834
-0.231754
-0.275764
-0.226211
-0.281768
-0.230205
-0.23955
-0.249263
-0.233363
-0.250393
-0.475195
-0.381298
-0.382456
-0.40422
-0.31003
-0.281716
-0.281602
-0.317064
-0.362333
-0.267852
-0.306107
-0.380395
-0.322871
-0.305667
-0.276566
-0.389856
-0.299621
-0.321898
-0.48084
-0.386286
-0.491727
-0.393346
-0.42362
-0.370915
-0.291326
-0.308983
-0.27542
-0.328109
-0.298009
-0.32096
-0.250306
-0.304453
-0.314373
-0.244701
-0.245833
-0.256276
-0.241736
-0.249748
-0.253366
-0.254873
-0.331421
-0.259878
-0.322926
-0.242457
-0.239491
-0.248736
-0.238287
-0.25082
-0.259791
-0.262864
-0.26377
-0.265626
-0.26141
-0.259135
-0.266149
-0.253022
-0.27197
-0.259786
-0.24797
-0.26268
-0.25275
-0.249934
-0.258718
-0.26273
-0.262006
-0.256887
-0.259396
-0.264854
-0.256434
-0.301154
-0.373491
-0.3196
-0.367756
-0.351087
-0.355447
-0.276185
-0.264538
-0.354325
-0.352477
-0.274146
-0.343721
-0.258239
-0.31524
-0.262281
-0.347111
-0.290935
-0.272707
-0.292336
-0.280568
-0.269065
-0.272921
-0.285707
-0.27715
-0.275561
-0.370838
-0.347525
-0.376133
-0.374484
-0.373076
-0.291815
-0.271323
-0.268008
-0.294457
-0.286554
-0.273819
-0.293398
-0.253653
-0.264406
-0.258895
-0.25197
-0.256835
-0.254392
-0.25194
-0.257108
-0.250349
-0.260272
-0.256333
-0.25582
-0.252585
-0.26201
-0.25616
-0.259455
-0.254995
-0.255914
-0.25292
-0.255883
-0.261784
-0.460252
-0.436099
-0.447872
-0.410595
-0.455477
-0.449879
-0.414348
-0.419474
-0.386316
-0.409639
-0.393741
-0.445055
-0.445006
-0.447447
-0.443336
-0.462315
-0.438013
-0.453268
-0.418359
-0.464286
-0.451699
-0.416243
-0.442224
-0.439835
-0.438258
-0.441523
-0.484177
-0.435564
-0.475862
-0.44063
-0.43733
-0.482612
-0.475292
-0.441816
-0.440915
-0.516419
-0.537007
-0.523697
-0.504793
-0.504386
-0.535112
-0.518825
-0.435883
-0.435741
-0.513317
-0.504394
-0.531595
-0.523616
-0.511482
-0.504182
-0.533059
-0.489104
-0.430139
-0.453826
-0.474416
-0.450645
-0.474234
-0.491514
-0.482299
-0.445524
-0.435762
-0.476408
-0.477176
-0.436573
-0.48211
-0.50988
-0.527385
-0.505888
-0.524581
-0.510039
-0.505218
-0.528022
-0.438965
-0.437906
-0.482788
-0.446789
-0.478759
-0.438354
-0.483409
-0.477852
-0.437413
-0.436194
-0.43664
-0.509859
-0.504444
-0.524476
-0.530007
-0.504936
-0.510278
-0.528671
-0.575553
-0.605175
-0.579022
-0.535126
-0.513088
-0.522529
-0.570195
-0.529258
-0.532631
-0.536685
-0.530387
-0.526037
-0.533077
-0.527633
-0.533129
-0.533991
-0.604237
-0.598315
-0.577883
-0.569544
-0.616432
-0.556587
-0.593931
-0.593119
-0.556694
-0.568983
-0.57186
-0.593062
-0.562731
-0.593451
-0.563751
-0.574079
-0.592371
-0.570113
-0.61717
-0.580698
-0.55689
-0.593611
-0.564893
-0.557314
-0.568851
-0.563108
-0.593559
-0.58971
-0.561413
-0.567277
-0.590596
-0.619093
-0.597546
-0.597656
-0.557495
-0.556925
-0.618738
-0.598693
-0.59805
-0.555801
-0.556443
-0.574188
-0.602537
-0.57225
-0.523783
-0.530423
-0.52981
-0.521783
-0.529028
-0.524043
-0.520094
-0.527729
-0.528914
-0.530425
-0.527206
-0.527999
-0.526228
-0.531518
-0.601724
-0.569375
-0.571012
-0.56707
-0.556046
-0.615799
-0.593305
-0.55379
-0.568623
-0.592838
-0.564908
-0.58581
-0.562339
-0.596577
-0.56241
-0.564595
-0.586875
-0.566718
-0.61573
-0.55212
-0.592779
-0.553719
-0.592692
-0.56651
-0.565195
-0.562671
-0.588915
-0.596916
-0.566661
-0.562542
-0.587262
-0.570667
-0.547808
-0.60858
-0.600506
-0.599805
-0.547012
-0.571674
-0.566954
-0.561829
-0.582645
-0.556655
-0.582298
-0.563516
-0.563388
-0.569687
-0.606391
-0.595642
-0.550251
-0.598574
-0.546353
-0.570476
-0.568259
-0.583681
-0.55668
-0.566355
-0.582921
-0.569709
-0.564223
-0.564106
-0.594829
-0.561935
-0.49673
-0.521102
-0.521585
-0.505593
-0.524236
-0.507435
-0.495403
-0.49787
-0.510707
-0.530916
-0.522841
-0.527425
-0.499392
-0.508562
-0.592736
-0.557426
-0.560341
-0.621179
-0.610365
-0.614679
-0.5581
-0.565251
-0.616766
-0.599621
-0.601916
-0.58565
-0.555611
-0.586378
-0.564803
-0.601649
-0.568159
-0.509151
-0.531123
-0.527515
-0.519319
-0.531312
-0.515148
-0.516229
-0.5031
-0.512143
-0.526896
-0.532176
-0.53139
-0.515449
-0.500814
-0.598356
-0.56824
-0.566425
-0.571225
-0.548261
-0.618615
-0.60172
-0.551503
-0.572128
-0.603931
-0.565575
-0.58432
-0.562483
-0.588976
-0.564084
-0.565559
-0.581963
-0.568647
-0.615894
-0.551411
-0.593733
-0.566403
-0.551402
-0.597375
-0.566321
-0.584059
-0.568911
-0.558635
-0.570123
-0.573261
-0.572996
-0.37819
-0.316429
-0.33234
-0.374079
-0.333716
-0.418525
-0.440431
-0.417823
-0.442561
-0.420207
-0.435522
-0.413621
-0.446709
-0.499925
-0.433626
-0.473577
-0.461371
-0.463523
-0.476932
-0.497241
-0.445897
-0.445787
-0.522863
-0.539074
-0.506323
-0.524843
-0.521939
-0.50613
-0.537633
-0.496356
-0.434101
-0.458853
-0.476851
-0.460689
-0.494984
-0.476781
-0.526546
-0.501227
-0.525836
-0.53175
-0.506484
-0.522562
-0.539217
-0.446904
-0.446157
-0.461084
-0.431423
-0.47184
-0.46381
-0.461796
-0.466186
-0.493656
-0.506995
-0.511406
-0.484656
-0.506759
-0.50373
-0.488159
-0.514683
-0.466468
-0.454726
-0.464815
-0.458167
-0.461104
-0.433988
-0.454626
-0.472582
-0.458491
-0.458338
-0.475069
-0.505949
-0.497219
-0.509591
-0.52655
-0.491335
-0.518168
-0.51823
-0.467438
-0.453532
-0.464277
-0.484237
-0.493918
-0.553331
-0.48568
-0.492058
-0.491359
-0.498417
-0.501254
-0.49934
-0.498798
-0.498396
-0.491504
-0.492874
-0.501469
-0.50221
-0.502697
-0.500536
-0.494379
-0.49971
-0.482678
-0.55162
-0.489533
-0.490283
-0.481553
-0.595341
-0.604126
-0.604529
-0.595222
-0.577094
-0.594402
-0.596331
-0.605545
-0.605182
-0.592649
-0.575565
-0.593311
-0.540156
-0.557232
-0.578787
-0.601043
-0.603075
-0.554522
-0.538147
-0.539702
-0.602551
-0.579127
-0.555454
-0.602676
-0.540725
-0.555122
-0.54496
-0.560597
-0.605058
-0.581515
-0.603722
-0.546552
-0.559806
-0.544064
-0.602499
-0.580262
-0.557173
-0.603431
-0.542175
-0.558211
-0.489468
-0.496067
-0.558246
-0.49766
-0.488125
-0.500684
-0.511184
-0.510631
-0.508787
-0.509147
-0.507225
-0.502213
-0.498346
-0.503572
-0.508433
-0.504564
-0.506534
-0.505244
-0.496702
-0.491768
-0.5595
-0.501001
-0.499482
-0.492794
-0.54478
-0.55926
-0.593752
-0.560133
-0.595256
-0.548856
-0.557494
-0.543458
-0.596477
-0.561173
-0.555999
-0.595434
-0.542448
-0.55725
-0.505306
-0.559597
-0.509808
-0.510128
-0.505168
-0.501112
-0.518936
-0.504438
-0.522248
-0.495331
-0.519051
-0.504501
-0.573594
-0.553466
-0.5447
-0.517417
-0.517457
-0.527424
-0.524223
-0.530147
-0.508362
-0.514363
-0.595421
-0.602733
-0.601888
-0.596154
-0.581588
-0.600984
-0.599003
-0.604936
-0.607345
-0.585309
-0.560764
-0.587384
-0.546263
-0.561242
-0.6051
-0.571823
-0.546157
-0.608988
-0.55748
-0.543164
-0.599135
-0.556448
-0.565299
-0.542717
-0.601455
-0.556548
-0.497189
-0.506726
-0.560556
-0.504423
-0.500565
-0.505517
-0.513556
-0.516437
-0.510354
-0.515586
-0.504169
-0.512136
-0.507985
-0.515687
-0.518238
-0.521525
-0.517996
-0.513438
-0.510916
-0.493723
-0.562867
-0.502385
-0.493986
-0.504516
-0.668826
-0.607829
-0.577675
-0.678388
-0.593481
-0.710024
-0.731813
-0.735934
-0.703925
-0.714119
-0.747314
-0.74012
-0.721697
-0.663469
-0.563567
-0.57806
-0.585184
-0.655833
-0.610321
-0.586127
-0.596706
-0.597612
-0.581018
-0.598384
-0.616264
-0.613335
-0.606577
-0.590788
-0.603903
-0.595335
-0.611667
-0.607835
-0.609103
-0.591713
-0.5855
-0.608907
-0.579449
-0.611271
-0.603303
-0.614843
-0.608662
-0.605606
-0.608227
-0.59889
-0.607772
-0.61787
-0.699424
-0.611051
-0.677266
-0.657402
-0.749687
-0.727962
-0.743656
-0.695226
-0.745826
-0.742006
-0.69419
-0.736868
-0.743432
-0.73953
-0.741869
-0.730949
-0.733426
-0.736649
-0.720778
-0.711317
-0.675897
-0.718302
-0.669147
-0.61194
-0.59696
-0.607126
-0.578385
-0.601443
-0.61517
-0.599079
-0.613134
-0.603006
-0.611072
-0.612329
-0.60445
-0.611913
-0.612563
-0.613074
-0.609761
-0.606894
-0.611465
-0.604857
-0.615591
-0.611179
-0.6124
-0.581019
-0.599298
-0.605753
-0.599938
-0.602275
-0.612959
-0.763478
-0.762524
-0.750962
-0.71432
-0.769718
-0.747512
-0.762303
-0.776041
-0.74507
-0.748464
-0.74263
-0.745823
-0.74324
-0.80307
-0.794839
-0.844956
-0.834588
-0.804649
-0.840927
-0.791846
-0.757164
-0.744716
-0.752787
-0.752255
-0.758777
-0.823177
-0.770657
-0.823505
-0.758074
-0.819975
-0.776347
-0.89741
-0.882726
-0.849928
-0.846086
-0.858372
-0.891879
-0.890199
-0.902844
-0.904916
-0.902692
-0.892168
-0.896509
-0.907181
-0.901276
-0.895975
-0.866286
-0.853455
-0.892612
-0.86049
-0.899712
-0.891643
-0.749415
-0.755537
-0.755076
-0.705467
-0.76515
-0.744088
-0.758254
-0.762987
-0.740067
-0.736351
-0.714997
-0.727077
-0.731173
-0.746
-0.748965
-0.803172
-0.803896
-0.812492
-0.754418
-0.745145
-0.740908
-0.738635
-0.746247
-0.732769
-0.746575
-0.818756
-0.764076
-0.806995
-0.75094
-0.813968
-0.757903
-0.744577
-0.745999
-0.902649
-0.885178
-0.877191
-0.874474
-0.881831
-0.881622
-0.896855
-0.892234
-0.908504
-0.901899
-0.889684
-0.892864
-0.901997
-0.891461
-0.899515
-0.870202
-0.865603
-0.893418
-0.870675
-0.900802
-0.894658
-0.58773
-0.608235
-0.587706
-0.560997
-0.589565
-0.588742
-0.554357
-0.679461
-0.725552
-0.694562
-0.720292
-0.627973
-0.559235
-0.574546
-0.644655
-0.579131
-0.660904
-0.713195
-0.718956
-0.654272
-0.616786
-0.616164
-0.618604
-0.612335
-0.616715
-0.616763
-0.618938
-0.606295
-0.586649
-0.595758
-0.613275
-0.613169
-0.587443
-0.606132
-0.606086
-0.612459
-0.59542
-0.589175
-0.612608
-0.587693
-0.606714
-0.617432
-0.613135
-0.617676
-0.619958
-0.617446
-0.619681
-0.617581
-0.619166
-0.614997
-0.618447
-0.610793
-0.615752
-0.616932
-0.615803
-0.610556
-0.601013
-0.601775
-0.612024
-0.597349
-0.611857
-0.610397
-0.609964
-0.611576
-0.590682
-0.593288
-0.593638
-0.607343
-0.61182
-0.615865
-0.592822
-0.600441
-0.607808
-0.613914
-0.606509
-0.608844
-0.588097
-0.608982
-0.559704
-0.594391
-0.586928
-0.609156
-0.562984
-0.646669
-0.679164
-0.686977
-0.648652
-0.643032
-0.706483
-0.695591
-0.646007
-0.592132
-0.596078
-0.610933
-0.569893
-0.610432
-0.568116
-0.594252
-0.623088
-0.613495
-0.6234
-0.63077
-0.629388
-0.61178
-0.625249
-0.614045
-0.677581
-0.596196
-0.678367
-0.59695
-0.613529
-0.6127
-0.595815
-0.67662
-0.676991
-0.595268
-0.613999
-0.623467
-0.623499
-0.628567
-0.611132
-0.629518
-0.612108
-0.622522
-0.554269
-0.552149
-0.608423
-0.617095
-0.624829
-0.627791
-0.619265
-0.608976
-0.625679
-0.581416
-0.55834
-0.553217
-0.592014
-0.594462
-0.555619
-0.58086
-0.584116
-0.596722
-0.555036
-0.557707
-0.598125
-0.556936
-0.585157
-0.60428
-0.624248
-0.608499
-0.619907
-0.614147
-0.621477
-0.601365
-0.610517
-0.618074
-0.624771
-0.625201
-0.62467
-0.617878
-0.610315
-0.589252
-0.564419
-0.557564
-0.59928
-0.562786
-0.599061
-0.590264
-0.587795
-0.597934
-0.555962
-0.559786
-0.560821
-0.598049
-0.587104
-0.611438
-0.625147
-0.624569
-0.618495
-0.625111
-0.618593
-0.6117
-0.637088
-0.616998
-0.632178
-0.630737
-0.628749
-0.63233
-0.635183
-0.633655
-0.627149
-0.616503
-0.622146
-0.629616
-0.623042
-0.634751
-0.621528
-0.604107
-0.669845
-0.614685
-0.62859
-0.614479
-0.624027
-0.63647
-0.627821
-0.62987
-0.63159
-0.628822
-0.631406
-0.637491
-0.718326
-0.743415
-0.726553
-0.745398
-0.714266
-0.710324
-0.715907
-0.709068
-0.770419
-0.709919
-0.756616
-0.746632
-0.7636
-0.748583
-0.713089
-0.724216
-0.73309
-0.716761
-0.748963
-0.702457
-0.69256
-0.700571
-0.698689
-0.764041
-0.751102
-0.714747
-0.746668
-0.767942
-0.745673
-0.709403
-0.879921
-0.875526
-0.828998
-0.822128
-0.882218
-0.830385
-0.871584
-0.91178
-0.920497
-0.903576
-0.922102
-0.907244
-0.905457
-0.917697
-0.876038
-0.821566
-0.817417
-0.863107
-0.826725
-0.869926
-0.868268
-0.740024
-0.751525
-0.734197
-0.758593
-0.723213
-0.702704
-0.735802
-0.690638
-0.775533
-0.7292
-0.765684
-0.769619
-0.76313
-0.763942
-0.72788
-0.746998
-0.767144
-0.755708
-0.763786
-0.714066
-0.691181
-0.704211
-0.689411
-0.77182
-0.753266
-0.719508
-0.764028
-0.769208
-0.757955
-0.724472
-0.835518
-0.830599
-0.759919
-0.783666
-0.835271
-0.764351
-0.837558
-0.899453
-0.926684
-0.903722
-0.934439
-0.908158
-0.892332
-0.93133
-0.765647
-0.772148
-0.852369
-0.818823
-0.795623
-0.85914
-0.806188
-0.867044
-0.845593
-0.62226
-0.628204
-0.621074
-0.611391
-0.627495
-0.608828
-0.61197
-0.6154
-0.676663
-0.598061
-0.614231
-0.676816
-0.596757
-0.622115
-0.621395
-0.628361
-0.611755
-0.622509
-0.627146
-0.610773
-0.616349
-0.598519
-0.665673
-0.67156
-0.615191
-0.599262
-0.61912
-0.619174
-0.616784
-0.624213
-0.619984
-0.618648
-0.622607
-0.605803
-0.586044
-0.597303
-0.614019
-0.614131
-0.58496
-0.606388
-0.606257
-0.614048
-0.598317
-0.583325
-0.615161
-0.585086
-0.604779
-0.618041
-0.614851
-0.618379
-0.62098
-0.618642
-0.618314
-0.620875
-0.559739
-0.61586
-0.623082
-0.628577
-0.622753
-0.624997
-0.620287
-0.620102
-0.594861
-0.567883
-0.561498
-0.600364
-0.571253
-0.592488
-0.597403
-0.598996
-0.61583
-0.583117
-0.593666
-0.579868
-0.604783
-0.608587
-0.613616
-0.623433
-0.62467
-0.619027
-0.612803
-0.624049
-0.61789
-0.599352
-0.602728
-0.619132
-0.589515
-0.601666
-0.614879
-0.580235
-0.653739
-0.680473
-0.653555
-0.679321
-0.597172
-0.599139
-0.612519
-0.570456
-0.597411
-0.612262
-0.574359
-0.654592
-0.675369
-0.680092
-0.649001
-0.291379
-0.278296
-0.298711
-0.264722
-0.293846
-0.298234
-0.261858
-0.317829
-0.314849
-0.349658
-0.337604
-0.316898
-0.34965
-0.315149
-0.318861
-0.350235
-0.316252
-0.338892
-0.319826
-0.349758
-0.315787
-0.412978
-0.413856
-0.403715
-0.339907
-0.40293
-0.343904
-0.364745
-0.361423
-0.411702
-0.437497
-0.38208
-0.471159
-0.422247
-0.402511
-0.296315
-0.278957
-0.298029
-0.266761
-0.294687
-0.298089
-0.27007
-0.331602
-0.366082
-0.409089
-0.430154
-0.339512
-0.412144
-0.330342
-0.314761
-0.341946
-0.315432
-0.388856
-0.318149
-0.37036
-0.315344
-0.413956
-0.355536
-0.400497
-0.354135
-0.412667
-0.399403
-0.357394
-0.366096
-0.322394
-0.352626
-0.327363
-0.335502
-0.350475
-0.334318
-0.41401
-0.401934
-0.356685
-0.365062
-0.398435
-0.412351
-0.359691
-0.286641
-0.279523
-0.277331
-0.28905
-0.27378
-0.289272
-0.285451
-0.296785
-0.288363
-0.30816
-0.302254
-0.311039
-0.293826
-0.291399
-0.29872
-0.313194
-0.297947
-0.304893
-0.300805
-0.312282
-0.293777
-0.438066
-0.404135
-0.410818
-0.396496
-0.413
-0.361026
-0.403399
-0.34597
-0.386966
-0.351175
-0.367428
-0.442512
-0.357458
-0.375074
-0.408775
-0.447147
-0.379275
-0.371688
-0.463414
-0.436106
-0.403675
-0.366349
-0.323429
-0.336407
-0.351453
-0.326275
-0.36169
-0.357545
-0.514133
-0.422815
-0.515089
-0.416641
-0.291493
-0.287845
-0.279676
-0.292084
-0.281699
-0.290622
-0.29568
-0.30127
-0.315136
-0.326709
-0.326761
-0.298656
-0.316993
-0.3113
-0.301375
-0.311374
-0.302035
-0.320376
-0.301218
-0.312143
-0.306515
-0.35277
-0.328726
-0.325469
-0.315799
-0.328929
-0.348391
-0.332799
-0.38604
-0.366062
-0.362447
-0.445097
-0.403477
-0.35375
-0.410654
-0.355866
-0.329513
-0.319068
-0.343236
-0.330089
-0.359208
-0.336542
-0.479588
-0.271199
-0.269246
-0.271975
-0.244397
-0.274199
-0.246713
-0.267597
-0.289012
-0.286584
-0.294528
-0.306659
-0.284075
-0.291863
-0.304016
-0.286465
-0.300263
-0.280188
-0.292748
-0.282225
-0.284207
-0.301882
-0.349098
-0.318454
-0.314218
-0.300078
-0.348206
-0.320226
-0.315662
-0.384486
-0.346449
-0.342192
-0.369557
-0.341271
-0.384463
-0.368252
-0.349827
-0.318531
-0.301319
-0.322495
-0.321289
-0.316993
-0.350739
-0.256567
-0.267798
-0.269727
-0.244225
-0.267452
-0.246908
-0.261959
-0.275754
-0.272484
-0.29182
-0.285717
-0.27306
-0.27461
-0.293879
-0.278382
-0.297919
-0.278199
-0.287181
-0.276223
-0.281119
-0.29584
-0.350646
-0.327255
-0.307768
-0.324553
-0.326193
-0.349856
-0.322491
-0.38104
-0.351625
-0.343121
-0.369271
-0.344235
-0.382717
-0.368309
-0.35094
-0.320222
-0.306155
-0.323873
-0.32513
-0.321065
-0.351319
-0.392986
-0.390542
-0.34169
-0.327763
-0.335389
-0.327331
-0.339303
-0.392317
-0.330849
-0.293696
-0.278331
-0.328011
-0.273867
-0.366827
-0.320332
-0.326853
-0.316444
-0.313511
-0.326287
-0.32445
-0.316832
-0.29784
-0.384049
-0.384128
-0.301311
-0.322427
-0.320681
-0.323004
-0.324404
-0.334589
-0.401532
-0.402014
-0.360312
-0.328001
-0.354411
-0.328135
-0.355761
-0.359842
-0.327092
-0.326813
-0.311404
-0.297657
-0.303265
-0.31979
-0.300891
-0.316229
-0.333483
-0.30868
-0.323985
-0.306851
-0.3423
-0.302274
-0.319822
-0.352665
-0.332209
-0.322526
-0.327448
-0.316377
-0.330405
-0.3537
-0.354879
-0.328244
-0.35214
-0.328171
-0.350367
-0.357161
-0.328625
-0.352679
-0.311932
-0.319374
-0.326568
-0.315281
-0.347864
-0.329032
-0.370139
-0.298643
-0.277883
-0.327087
-0.286147
-0.367947
-0.326562
-0.384339
-0.380124
-0.315606
-0.300056
-0.295562
-0.281843
-0.298768
-0.279552
-0.284404
-0.304853
-0.390439
-0.315027
-0.317606
-0.386861
-0.302889
-0.291545
-0.315337
-0.302794
-0.30947
-0.283482
-0.310251
-0.394739
-0.394163
-0.386247
-0.395821
-0.354809
-0.324968
-0.351731
-0.327655
-0.392023
-0.382001
-0.389063
-0.383869
-0.359413
-0.336112
-0.360341
-0.333405
-0.288901
-0.292963
-0.410241
-0.398757
-0.295765
-0.313537
-0.408628
-0.259003
-0.244432
-0.262255
-0.270623
-0.271191
-0.244316
-0.258817
-0.259823
-0.259871
-0.263004
-0.241046
-0.271571
-0.243723
-0.254696
-0.282952
-0.39552
-0.294277
-0.406373
-0.29389
-0.406443
-0.282185
-0.354793
-0.351784
-0.367795
-0.35571
-0.360925
-0.347204
-0.26355
-0.239288
-0.293247
-0.269417
-0.264811
-0.241376
-0.289583
-0.356017
-0.353408
-0.369719
-0.358018
-0.354058
-0.365612
-0.263189
-0.280417
-0.270564
-0.241911
-0.242815
-0.286624
-0.260263
-0.395699
-0.412411
-0.39834
-0.414946
-0.366072
-0.347542
-0.344713
-0.368932
-0.36234
-0.340274
-0.363056
-0.341282
-0.399391
-0.420032
-0.418481
-0.402096
-0.346907
-0.439377
-0.423619
-0.349752
-0.389576
-0.34206
-0.342503
-0.342306
-0.342305
-0.392463
-0.358419
-0.328094
-0.319036
-0.328125
-0.320449
-0.288037
-0.302138
-0.318182
-0.290607
-0.313619
-0.285121
-0.297771
-0.354095
-0.424295
-0.355602
-0.329766
-0.336614
-0.418852
-0.324756
-0.398855
-0.402991
-0.313349
-0.324903
-0.320306
-0.328164
-0.336151
-0.336845
-0.347361
-0.333415
-0.345859
-0.336152
-0.337464
-0.355928
-0.355513
-0.368746
-0.425676
-0.351776
-0.431091
-0.353937
-0.344292
-0.371866
-0.339593
-0.357114
-0.344338
-0.339637
-0.380283
-0.470935
-0.476235
-0.349955
-0.33334
-0.337133
-0.338982
-0.333609
-0.353399
-0.351806
-0.340949
-0.331612
-0.346701
-0.330678
-0.347889
-0.329263
-0.336877
-0.345305
-0.371518
-0.342879
-0.335737
-0.333917
-0.371491
-0.338399
-0.353861
-0.446473
-0.352071
-0.450314
-0.30253
-0.311296
-0.320344
-0.293677
-0.322602
-0.297125
-0.299644
-0.312623
-0.331132
-0.357059
-0.348374
-0.327911
-0.379569
-0.322561
-0.334558
-0.336762
-0.333013
-0.340724
-0.31672
-0.423074
-0.327595
-0.364101
-0.32839
-0.317235
-0.41783
-0.335859
-0.329403
-0.330989
-0.333463
-0.338648
-0.398413
-0.394018
-0.355714
-0.393366
-0.366883
-0.36898
-0.39032
-0.405641
-0.374558
-0.378049
-0.39776
-0.345012
-0.336534
-0.335397
-0.338415
-0.335904
-0.343829
-0.336372
-0.410728
-0.383393
-0.37988
-0.410514
-0.394078
-0.372608
-0.370273
-0.395476
-0.348687
-0.339212
-0.337793
-0.33624
-0.337778
-0.350384
-0.337334
-0.358426
-0.359682
-0.356943
-0.360404
-0.363368
-0.376979
-0.374825
-0.364808
-0.342012
-0.351106
-0.356891
-0.34176
-0.353561
-0.338945
-0.342121
-0.338613
-0.342232
-0.337662
-0.340331
-0.338235
-0.341693
-0.341143
-0.363781
-0.365675
-0.378484
-0.359949
-0.337466
-0.334742
-0.338964
-0.336487
-0.333806
-0.337777
-0.340949
-0.358717
-0.361163
-0.360521
-0.359801
-0.360201
-0.356496
-0.358754
-0.354869
-0.333826
-0.343047
-0.330708
-0.336149
-0.331253
-0.335229
-0.340838
-0.37265
-0.452815
-0.448937
-0.376705
-0.342657
-0.375551
-0.398274
-0.341663
-0.440024
-0.336344
-0.344269
-0.370279
-0.390976
-0.440151
-0.3534
-0.360545
-0.360148
-0.359203
-0.360677
-0.333921
-0.333159
-0.335776
-0.338379
-0.332703
-0.332856
-0.340006
-0.384579
-0.369041
-0.388514
-0.368156
-0.405318
-0.416098
-0.412999
-0.399101
-0.40753
-0.393776
-0.403728
-0.410731
-0.382119
-0.366477
-0.367623
-0.377936
-0.422909
-0.47827
-0.446627
-0.428437
-0.433103
-0.387547
-0.372904
-0.390677
-0.368795
-0.424884
-0.474105
-0.431159
-0.426143
-0.429895
-0.383225
-0.362314
-0.385119
-0.36336
-0.281937
-0.392031
-0.393103
-0.292933
-0.294095
-0.402812
-0.280392
-0.258946
-0.244395
-0.269813
-0.257291
-0.269224
-0.259
-0.24392
-0.282566
-0.394089
-0.294356
-0.407065
-0.294121
-0.282695
-0.406212
-0.259046
-0.268963
-0.256166
-0.244353
-0.269355
-0.259081
-0.243947
-0.41275
-0.426156
-0.421388
-0.421687
-0.376175
-0.351003
-0.372158
-0.354313
-0.40798
-0.420926
-0.404501
-0.421443
-0.381012
-0.35976
-0.3838
-0.358477
-0.284612
-0.336496
-0.355296
-0.278231
-0.327946
-0.292508
-0.277559
-0.265553
-0.257615
-0.265509
-0.254152
-0.269588
-0.268985
-0.25245
-0.285204
-0.334887
-0.324044
-0.293717
-0.288637
-0.322417
-0.29397
-0.263619
-0.266252
-0.255045
-0.245788
-0.269562
-0.259144
-0.249677
-0.395209
-0.380804
-0.37997
-0.389699
-0.381231
-0.370056
-0.389648
-0.365521
-0.341745
-0.336992
-0.339934
-0.335454
-0.334822
-0.344203
-0.334424
-0.34082
-0.332276
-0.340122
-0.333325
-0.333484
-0.335166
-0.336641
-0.397688
-0.374328
-0.396732
-0.377763
-0.372784
-0.357059
-0.359829
-0.367409
-0.446639
-0.378079
-0.435649
-0.386589
-0.356831
-0.348346
-0.348698
-0.360466
-0.340365
-0.356233
-0.37147
-0.42282
-0.359377
-0.417654
-0.358135
-0.366679
-0.371246
-0.379135
-0.446103
-0.459703
-0.38971
-0.422004
-0.335093
-0.370032
-0.347616
-0.371682
-0.415627
-0.346882
-0.372203
-0.357209
-0.365664
-0.374981
-0.336044
-0.343357
-0.338805
-0.328571
-0.346657
-0.329552
-0.329425
-0.431021
-0.360385
-0.367395
-0.37087
-0.370271
-0.372286
-0.428966
-0.433789
-0.444813
-0.377972
-0.441825
-0.438266
-0.34762
-0.326069
-0.340138
-0.362202
-0.351445
-0.331862
-0.379535
-0.366896
-0.358633
-0.349086
-0.363952
-0.37499
-0.387836
-0.382054
-0.391149
-0.321556
-0.321957
-0.330322
-0.319949
-0.330581
-0.315387
-0.325644
-0.325617
-0.330874
-0.338997
-0.340539
-0.323868
-0.331671
-0.332251
-0.347787
-0.340404
-0.344764
-0.343687
-0.363896
-0.399479
-0.361495
-0.380151
-0.331147
-0.336113
-0.333968
-0.341175
-0.333132
-0.334007
-0.338357
-0.353611
-0.351116
-0.348082
-0.358119
-0.35917
-0.29707
-0.308037
-0.35925
-0.308939
-0.39821
-0.435364
-0.398729
-0.432834
-0.397794
-0.423418
-0.396952
-0.428854
-0.403835
-0.434499
-0.402607
-0.385247
-0.434538
-0.404405
-0.400801
-0.414654
-0.414009
-0.422312
-0.408694
-0.401081
-0.439303
-0.440483
-0.409929
-0.414631
-0.437774
-0.399913
-0.402968
-0.415141
-0.413781
-0.399397
-0.434458
-0.428696
-0.458249
-0.446132
-0.440401
-0.424439
-0.450693
-0.406366
-0.384486
-0.433313
-0.400103
-0.438273
-0.398786
-0.415506
-0.409689
-0.390515
-0.436306
-0.40433
-0.407504
-0.438551
-0.406883
-0.450409
-0.472128
-0.440223
-0.461463
-0.453235
-0.437154
-0.469327
-0.40514
-0.429576
-0.407999
-0.424625
-0.412047
-0.392508
-0.411998
-0.443748
-0.414807
-0.409112
-0.441732
-0.402676
-0.417674
-0.420736
-0.400587
-0.447757
-0.431474
-0.459521
-0.462967
-0.435275
-0.444352
-0.466647
-0.495044
-0.498253
-0.488523
-0.500818
-0.493983
-0.490329
-0.502483
-0.504285
-0.495684
-0.501897
-0.500276
-0.500921
-0.490925
-0.506708
-0.498306
-0.4997
-0.49348
-0.496725
-0.495798
-0.494893
-0.504314
-0.498187
-0.501499
-0.489005
-0.49366
-0.480859
-0.492967
-0.533982
-0.556447
-0.603672
-0.587265
-0.596607
-0.536211
-0.559002
-0.532525
-0.594581
-0.585343
-0.556709
-0.594925
-0.530741
-0.557956
-0.559913
-0.596712
-0.594967
-0.584848
-0.579249
-0.587364
-0.55816
-0.591744
-0.593654
-0.590972
-0.580585
-0.589058
-0.485552
-0.496263
-0.487119
-0.490541
-0.493397
-0.488216
-0.484946
-0.487413
-0.483252
-0.485577
-0.490949
-0.485856
-0.493282
-0.484955
-0.490023
-0.498181
-0.487863
-0.491308
-0.488555
-0.495477
-0.492752
-0.482975
-0.488533
-0.489034
-0.480082
-0.491196
-0.482251
-0.480657
-0.526505
-0.554084
-0.585878
-0.58175
-0.590363
-0.531507
-0.552545
-0.527117
-0.594673
-0.556317
-0.582763
-0.529761
-0.592083
-0.553918
-0.468074
-0.468867
-0.478108
-0.475263
-0.467869
-0.469065
-0.476262
-0.469494
-0.46012
-0.462111
-0.476696
-0.460555
-0.475615
-0.469669
-0.471112
-0.479329
-0.469006
-0.465702
-0.465482
-0.472607
-0.477036
-0.46787
-0.473446
-0.472783
-0.479827
-0.467862
-0.475887
-0.471091
-0.551909
-0.585603
-0.58793
-0.580928
-0.570594
-0.578449
-0.551962
-0.58868
-0.587032
-0.578181
-0.57422
-0.580215
-0.472447
-0.469249
-0.479444
-0.481896
-0.48267
-0.470258
-0.469685
-0.479508
-0.48066
-0.477997
-0.489118
-0.477795
-0.482485
-0.486024
-0.477109
-0.481033
-0.476047
-0.472096
-0.475243
-0.484214
-0.474448
-0.474967
-0.482308
-0.48743
-0.477093
-0.478202
-0.484337
-0.473418
-0.37032
-0.304391
-0.310592
-0.369225
-0.310925
-0.377928
-0.347515
-0.375763
-0.355387
-0.380086
-0.370864
-0.38231
-0.362876
-0.40611
-0.373309
-0.387019
-0.41966
-0.423985
-0.390318
-0.402569
-0.398968
-0.409724
-0.404404
-0.403119
-0.392175
-0.43925
-0.404497
-0.428312
-0.396491
-0.400248
-0.435809
-0.385104
-0.381778
-0.40963
-0.375819
-0.431983
-0.397191
-0.426735
-0.413291
-0.393814
-0.388752
-0.393426
-0.425024
-0.430526
-0.39661
-0.385441
-0.433285
-0.394609
-0.394238
-0.399377
-0.390448
-0.395503
-0.363249
-0.38337
-0.416581
-0.380565
-0.413299
-0.398688
-0.374974
-0.418391
-0.380578
-0.413373
-0.371929
-0.383794
-0.421117
-0.377535
-0.374509
-0.373623
-0.379293
-0.374443
-0.377424
-0.391644
-0.359883
-0.373944
-0.406081
-0.388318
-0.377216
-0.409546
-0.378685
-0.389648
-0.416477
-0.426954
-0.387035
-0.381525
-0.424525
-0.381986
-0.389194
-0.384462
-0.385861
-0.447315
-0.457472
-0.453089
-0.463375
-0.45407
-0.449385
-0.456851
-0.438791
-0.413559
-0.416573
-0.434368
-0.422426
-0.440302
-0.433997
-0.43915
-0.444817
-0.428217
-0.41967
-0.424692
-0.442262
-0.442215
-0.44968
-0.467546
-0.455835
-0.452111
-0.461353
-0.457358
-0.446224
-0.470061
-0.537658
-0.465189
-0.541701
-0.4668
-0.563344
-0.56154
-0.561264
-0.472483
-0.546582
-0.470369
-0.544318
-0.469069
-0.555125
-0.559426
-0.558826
-0.453451
-0.458697
-0.464245
-0.454041
-0.461039
-0.45128
-0.455832
-0.44993
-0.439442
-0.431609
-0.454452
-0.436789
-0.451987
-0.452359
-0.447197
-0.446913
-0.429004
-0.430957
-0.433792
-0.449575
-0.444665
-0.45589
-0.466393
-0.465521
-0.459907
-0.463253
-0.45805
-0.458067
-0.473456
-0.482174
-0.478143
-0.473561
-0.475327
-0.47948
-0.471687
-0.470192
-0.462027
-0.477886
-0.453793
-0.47415
-0.458406
-0.472734
-0.476375
-0.484984
-0.483014
-0.485433
-0.479615
-0.481683
-0.482767
-0.468177
-0.467315
-0.450549
-0.453853
-0.456284
-0.46921
-0.466147
-0.482311
-0.551476
-0.47873
-0.552914
-0.475777
-0.565423
-0.565378
-0.565408
-0.478908
-0.548962
-0.472594
-0.549979
-0.473724
-0.565062
-0.568572
-0.568233
-0.466143
-0.475101
-0.47635
-0.46938
-0.473494
-0.468132
-0.46728
-0.457606
-0.442451
-0.439865
-0.457025
-0.445013
-0.455194
-0.459659
-0.460717
-0.464261
-0.442852
-0.450445
-0.448267
-0.462508
-0.462765
-0.463042
-0.47328
-0.468004
-0.462345
-0.460731
-0.470561
-0.464326
-0.638241
-0.63609
-0.631571
-0.629662
-0.642917
-0.627779
-0.632907
-0.641706
-0.639889
-0.627001
-0.632867
-0.639908
-0.633296
-0.641938
-0.643541
-0.638679
-0.62805
-0.630455
-0.641428
-0.645522
-0.63469
-0.636267
-0.629305
-0.624851
-0.631978
-0.626162
-0.632617
-0.635917
-0.5899
-0.61906
-0.596135
-0.612041
-0.596778
-0.613553
-0.58715
-0.565844
-0.555366
-0.554096
-0.573858
-0.555277
-0.568276
-0.561094
-0.592598
-0.619404
-0.592809
-0.61493
-0.597709
-0.593862
-0.614977
-0.562263
-0.550384
-0.572819
-0.558247
-0.551855
-0.560065
-0.559068
-0.56408
-0.541105
-0.541874
-0.543021
-0.564657
-0.542271
-0.637343
-0.628961
-0.628169
-0.629458
-0.638872
-0.628851
-0.629875
-0.633026
-0.622267
-0.601067
-0.617364
-0.62401
-0.631376
-0.618338
-0.632943
-0.622634
-0.622762
-0.600704
-0.621613
-0.636998
-0.618657
-0.637331
-0.628209
-0.627256
-0.628993
-0.63537
-0.628807
-0.630359
-0.583817
-0.598758
-0.612999
-0.620225
-0.609802
-0.586805
-0.596306
-0.554117
-0.549617
-0.569165
-0.548517
-0.553162
-0.548701
-0.552186
-0.555451
-0.551252
-0.557628
-0.569472
-0.555003
-0.558161
-0.548924
-0.582446
-0.619531
-0.606428
-0.594241
-0.608367
-0.595754
-0.580447
-0.754576
-0.774384
-0.749864
-0.775181
-0.709923
-0.635108
-0.610305
-0.710732
-0.632799
-0.755041
-0.773629
-0.754583
-0.77477
-0.709776
-0.632276
-0.613572
-0.70562
-0.633746
-0.803065
-0.794774
-0.793145
-0.803955
-0.818169
-0.83498
-0.82235
-0.830007
-0.823738
-0.822043
-0.804097
-0.824147
-0.820397
-0.799719
-0.825724
-0.816754
-0.821835
-0.745537
-0.787926
-0.814479
-0.819694
-0.790815
-0.803749
-0.792275
-0.792049
-0.804086
-0.811219
-0.819425
-0.809138
-0.823921
-0.722905
-0.77444
-0.742021
-0.769791
-0.656447
-0.650408
-0.639849
-0.63428
-0.641587
-0.651994
-0.651743
-0.655237
-0.634674
-0.641085
-0.700544
-0.639808
-0.639306
-0.729055
-0.772431
-0.771728
-0.728531
-0.801531
-0.793127
-0.791969
-0.802715
-0.817209
-0.781607
-0.81924
-0.740658
-0.814898
-0.821193
-0.785584
-0.805191
-0.799023
-0.803009
-0.808587
-0.816695
-0.827658
-0.804557
-0.820006
-0.817977
-0.805238
-0.817769
-0.801211
-0.790925
-0.802975
-0.79092
-0.816435
-0.820617
-0.739253
-0.787446
-0.818821
-0.818064
-0.787096
-0.805615
-0.817913
-0.807416
-0.813798
-0.633199
-0.615986
-0.620582
-0.631158
-0.61754
-0.632844
-0.630355
-0.638942
-0.638792
-0.631292
-0.621781
-0.640879
-0.636139
-0.630321
-0.633005
-0.623474
-0.622814
-0.630758
-0.634854
-0.619325
-0.630128
-0.639904
-0.631935
-0.637291
-0.623504
-0.637072
-0.640077
-0.631332
-0.55486
-0.551506
-0.588629
-0.600448
-0.551716
-0.55762
-0.586763
-0.546453
-0.526468
-0.591527
-0.568131
-0.568717
-0.529016
-0.545793
-0.54777
-0.570363
-0.592358
-0.530775
-0.570285
-0.529568
-0.549339
-0.55313
-0.598862
-0.549297
-0.584842
-0.549619
-0.585076
-0.552708
-0.55172
-0.550501
-0.567443
-0.541936
-0.54994
-0.565309
-0.578999
-0.568091
-0.565179
-0.55454
-0.590545
-0.59569
-0.593877
-0.560822
-0.552402
-0.547252
-0.532565
-0.590279
-0.550923
-0.531114
-0.548406
-0.554053
-0.547359
-0.571624
-0.532005
-0.594936
-0.531254
-0.54997
-0.559808
-0.573843
-0.60726
-0.603488
-0.592349
-0.577548
-0.597905
-0.586576
-0.635217
-0.615701
-0.631901
-0.625703
-0.633997
-0.615388
-0.635863
-0.643666
-0.649669
-0.640908
-0.638569
-0.650891
-0.638031
-0.642683
-0.646314
-0.633325
-0.642508
-0.643593
-0.650638
-0.643096
-0.639718
-0.632817
-0.624085
-0.613266
-0.634818
-0.613618
-0.634397
-0.632221
-0.614939
-0.622876
-0.596438
-0.582089
-0.584113
-0.624541
-0.613012
-0.637314
-0.653337
-0.645297
-0.638499
-0.651187
-0.638579
-0.638854
-0.637109
-0.636968
-0.645622
-0.650674
-0.651626
-0.638274
-0.635547
-0.615635
-0.59743
-0.586653
-0.625797
-0.585108
-0.625386
-0.617034
-0.550533
-0.538384
-0.551534
-0.563158
-0.563381
-0.561702
-0.558975
-0.561355
-0.560261
-0.5393
-0.553996
-0.552675
-0.544129
-0.55754
-0.549981
-0.54195
-0.558305
-0.54479
-0.549001
-0.5376
-0.511088
-0.571343
-0.567665
-0.567612
-0.504883
-0.540756
-0.538319
-0.567115
-0.573734
-0.50782
-0.567195
-0.507117
-0.539288
-0.544773
-0.544628
-0.57107
-0.548616
-0.562427
-0.549418
-0.544166
-0.546576
-0.557506
-0.54334
-0.550119
-0.551831
-0.558629
-0.544887
-0.543177
-0.515481
-0.578235
-0.571667
-0.513283
-0.570262
-0.544731
-0.54181
-0.567678
-0.576529
-0.509605
-0.511701
-0.568881
-0.53998
-0.547789
-0.544413
-0.554592
-0.561051
-0.55292
-0.559815
-0.54932
-0.609462
-0.621535
-0.581382
-0.591366
-0.612244
-0.618374
-0.579379
-0.632259
-0.654438
-0.646302
-0.635399
-0.652221
-0.634255
-0.631306
-0.63387
-0.636587
-0.651559
-0.645596
-0.651398
-0.635462
-0.635513
-0.60549
-0.585936
-0.604184
-0.568254
-0.61252
-0.577309
-0.601236
-0.722095
-0.773114
-0.72544
-0.768581
-0.647484
-0.663142
-0.651505
-0.638374
-0.651609
-0.632074
-0.655129
-0.714044
-0.646121
-0.742632
-0.66855
-0.759537
-0.646663
-0.622149
-0.647066
-0.633961
-0.646185
-0.623699
-0.650035
-0.810687
-0.797652
-0.797948
-0.811215
-0.83158
-0.849103
-0.83668
-0.847625
-0.868552
-0.823584
-0.779831
-0.860447
-0.868682
-0.780965
-0.859413
-0.808826
-0.796659
-0.810153
-0.795997
-0.832025
-0.847893
-0.832741
-0.846402
-0.728757
-0.77499
-0.727366
-0.776117
-0.647971
-0.648324
-0.625606
-0.632109
-0.649913
-0.626308
-0.647377
-0.728259
-0.776514
-0.730197
-0.774837
-0.647588
-0.62508
-0.646689
-0.631212
-0.646889
-0.62591
-0.646652
-0.812302
-0.796138
-0.795165
-0.810638
-0.837839
-0.862912
-0.84122
-0.855338
-0.870594
-0.821546
-0.779541
-0.861069
-0.870306
-0.778354
-0.863586
-0.814251
-0.791578
-0.816177
-0.794093
-0.835138
-0.848091
-0.833165
-0.850719
-0.621013
-0.599669
-0.594074
-0.625708
-0.594969
-0.623266
-0.622353
-0.639891
-0.656393
-0.639694
-0.639998
-0.641062
-0.652927
-0.6353
-0.619456
-0.59777
-0.588649
-0.627106
-0.618896
-0.591519
-0.623472
-0.639457
-0.634585
-0.648166
-0.639185
-0.650483
-0.63888
-0.634906
-0.548195
-0.544534
-0.593848
-0.577567
-0.545287
-0.547481
-0.579743
-0.542814
-0.525168
-0.587225
-0.566669
-0.566088
-0.522856
-0.543444
-0.542098
-0.56592
-0.587913
-0.521295
-0.565669
-0.523159
-0.541837
-0.549443
-0.595915
-0.547345
-0.582744
-0.54651
-0.550187
-0.581593
-0.544781
-0.546483
-0.561993
-0.567237
-0.56494
-0.566721
-0.559502
-0.571983
-0.572805
-0.546281
-0.555354
-0.558812
-0.54848
-0.545444
-0.574793
-0.548863
-0.565323
-0.547465
-0.55087
-0.546286
-0.517289
-0.583173
-0.572929
-0.518127
-0.545777
-0.574408
-0.545373
-0.569084
-0.521155
-0.588699
-0.520234
-0.542709
-0.576207
-0.55145
-0.549707
-0.556898
-0.562595
-0.55059
-0.561148
-0.563352
-0.62824
-0.618512
-0.604659
-0.628458
-0.626179
-0.607903
-0.630439
-0.641169
-0.648551
-0.637061
-0.637956
-0.641547
-0.64837
-0.636606
-0.629913
-0.621082
-0.611497
-0.633248
-0.630847
-0.610129
-0.632356
-0.640178
-0.634977
-0.647914
-0.636997
-0.647707
-0.639634
-0.635376
-0.348221
-0.36178
-0.348789
-0.361202
-0.32932
-0.325336
-0.32708
-0.326215
-0.330482
-0.327029
-0.324776
-0.332701
-0.327562
-0.338939
-0.329169
-0.332406
-0.339228
-0.327345
-0.339284
-0.335262
-0.338875
-0.335718
-0.347346
-0.359863
-0.346914
-0.36036
-0.334808
-0.341101
-0.326647
-0.328753
-0.335474
-0.340671
-0.326563
-0.340103
-0.336653
-0.340755
-0.336054
-0.368605
-0.393688
-0.394444
-0.369947
-0.334305
-0.332947
-0.31991
-0.321158
-0.336937
-0.329098
-0.347363
-0.328631
-0.342928
-0.347532
-0.325719
-0.318856
-0.305321
-0.30696
-0.313364
-0.307675
-0.319509
-0.313658
-0.367771
-0.392632
-0.370147
-0.394282
-0.336609
-0.318154
-0.317315
-0.338318
-0.335979
-0.347089
-0.327896
-0.323928
-0.347266
-0.336208
-0.324502
-0.34969
-0.362362
-0.349332
-0.362874
-0.332068
-0.32519
-0.326654
-0.328372
-0.331905
-0.326786
-0.328707
-0.336943
-0.327772
-0.344516
-0.33026
-0.336678
-0.343004
-0.326993
-0.342132
-0.338236
-0.342046
-0.338335
-0.350142
-0.364836
-0.35011
-0.363879
-0.336665
-0.341997
-0.326365
-0.329451
-0.336522
-0.342259
-0.326595
-0.341735
-0.337434
-0.341377
-0.337889
-0.372678
-0.392467
-0.391065
-0.371334
-0.336551
-0.324418
-0.34455
-0.327377
-0.337081
-0.34483
-0.324112
-0.343066
-0.322553
-0.344793
-0.321352
-0.320633
-0.304882
-0.306996
-0.313539
-0.307635
-0.319858
-0.313807
-0.373941
-0.388419
-0.375474
-0.389576
-0.341567
-0.319196
-0.320342
-0.339931
-0.336676
-0.346303
-0.327176
-0.323909
-0.345949
-0.336209
-0.32385
-0.323755
-0.31186
-0.320506
-0.317289
-0.327414
-0.331106
-0.329493
-0.329351
-0.324718
-0.323972
-0.326366
-0.322245
-0.327316
-0.327719
-0.322644
-0.330092
-0.354069
-0.294306
-0.288354
-0.34368
-0.521107
-0.595541
-0.512848
-0.584555
-0.365224
-0.291729
-0.376017
-0.287189
-0.518867
-0.568848
-0.514137
-0.575299
-0.314197
-0.307028
-0.317451
-0.30096
-0.315229
-0.312415
-0.316164
-0.3122
-0.317282
-0.321297
-0.318695
-0.319822
-0.312559
-0.299882
-0.311166
-0.298648
-0.339231
-0.29915
-0.30663
-0.337562
-0.483363
-0.538827
-0.469147
-0.545922
-0.344583
-0.322888
-0.314765
-0.349204
-0.495181
-0.56083
-0.507399
-0.551554
-0.341788
-0.349817
-0.343758
-0.345472
-0.323154
-0.326408
-0.327807
-0.323495
-0.325695
-0.322751
-0.323883
-0.334604
-0.333733
-0.334654
-0.332709
-0.337846
-0.335916
-0.335385
-0.338769
-0.33757
-0.334365
-0.334649
-0.339825
-0.390161
-0.365004
-0.369482
-0.382604
-0.4347
-0.444679
-0.439831
-0.458673
-0.397126
-0.374951
-0.402984
-0.373334
-0.429514
-0.491371
-0.424818
-0.47288
-0.346031
-0.354516
-0.345122
-0.35674
-0.327158
-0.327563
-0.328663
-0.326677
-0.328903
-0.327397
-0.326434
-0.329537
-0.333265
-0.33635
-0.336793
-0.329482
-0.333558
-0.336514
-0.340599
-0.337861
-0.340617
-0.337928
-0.347245
-0.358547
-0.347199
-0.358795
-0.328811
-0.334319
-0.332417
-0.336344
-0.333534
-0.328695
-0.335033
-0.339786
-0.336721
-0.337328
-0.339182
-0.368743
-0.358168
-0.350655
-0.375347
-0.441926
-0.532291
-0.457011
-0.521079
-0.361727
-0.332441
-0.355689
-0.341581
-0.431324
-0.50393
-0.423775
-0.514164
-0.365967
-0.361259
-0.359514
-0.365724
-0.395538
-0.448031
-0.536279
-0.456592
-0.393003
-0.38653
-0.414621
-0.422022
-0.379402
-0.363343
-0.354603
-0.357113
-0.359918
-0.364074
-0.359735
-0.364531
-0.360988
-0.367449
-0.379268
-0.380243
-0.366342
-0.349753
-0.348694
-0.360479
-0.343039
-0.356709
-0.35405
-0.342798
-0.344209
-0.34246
-0.341197
-0.338838
-0.342669
-0.342509
-0.342345
-0.370177
-0.384485
-0.382358
-0.372507
-0.361463
-0.361463
-0.360754
-0.361106
-0.365507
-0.359608
-0.358684
-0.365501
-0.358286
-0.348437
-0.363033
-0.341956
-0.364765
-0.35662
-0.34169
-0.377103
-0.391587
-0.389956
-0.376903
-0.375489
-0.386602
-0.38783
-0.374689
-0.36616
-0.356676
-0.35824
-0.365175
-0.373192
-0.362225
-0.367924
-0.364647
-0.393162
-0.414054
-0.416798
-0.394493
-0.392226
-0.42501
-0.422558
-0.384053
-0.374061
-0.365748
-0.375437
-0.364907
-0.401924
-0.424194
-0.507578
-0.384068
-0.380233
-0.49756
-0.406229
-0.393501
-0.383952
-0.485255
-0.456121
-0.391569
-0.494154
-0.379745
-0.399871
-0.421226
-0.373749
-0.486063
-0.396248
-0.377634
-0.492439
-0.392493
-0.494776
-0.430823
-0.37597
-0.492203
-0.395187
-0.37212
-0.367039
-0.369423
-0.340163
-0.320723
-0.362716
-0.369936
-0.324961
-0.336893
-0.366095
-0.330117
-0.316303
-0.35215
-0.32952
-0.325036
-0.317411
-0.33112
-0.328322
-0.316819
-0.350942
-0.315132
-0.320346
-0.317128
-0.325628
-0.343069
-0.375617
-0.33765
-0.372427
-0.331065
-0.369212
-0.346052
-0.330884
-0.357521
-0.317163
-0.359618
-0.356079
-0.313978
-0.334154
-0.317976
-0.308174
-0.304405
-0.343801
-0.313482
-0.310132
-0.308867
-0.328138
-0.354888
-0.349617
-0.30745
-0.323926
-0.353432
-0.311411
-0.320703
-0.314027
-0.345213
-0.313749
-0.311794
-0.311455
-0.323506
-0.412092
-0.517207
-0.38732
-0.43823
-0.409417
-0.525819
-0.390535
-0.396406
-0.373194
-0.431052
-0.487183
-0.488973
-0.373229
-0.396626
-0.395201
-0.493369
-0.374074
-0.430339
-0.395685
-0.489653
-0.371127
-0.414865
-0.443584
-0.539985
-0.396267
-0.535012
-0.393473
-0.416505
-0.387837
-0.358273
-0.359215
-0.386707
-0.406164
-0.438854
-0.493181
-0.394601
-0.430269
-0.373337
-0.356847
-0.364145
-0.358069
-0.446702
-0.483164
-0.414753
-0.369726
-0.394489
-0.494634
-0.439648
-0.362808
-0.357936
-0.363794
-0.358954
-0.375317
-0.402089
-0.399531
-0.37767
-0.375662
-0.399295
-0.400163
-0.375394
-0.361796
-0.364351
-0.357466
-0.365672
-0.365188
-0.355277
-0.356955
-0.363515
-0.374163
-0.394743
-0.396274
-0.374586
-0.375629
-0.398037
-0.39814
-0.37464
-0.363877
-0.357412
-0.364702
-0.356382
-0.442756
-0.36814
-0.397963
-0.385164
-0.479077
-0.37617
-0.360694
-0.403936
-0.401905
-0.361809
-0.405152
-0.366448
-0.397367
-0.472127
-0.361974
-0.391213
-0.355688
-0.432963
-0.40202
-0.440054
-0.391211
-0.467057
-0.385885
-0.47361
-0.434813
-0.372784
-0.398722
-0.402377
-0.3808
-0.398006
-0.381309
-0.374583
-0.370831
-0.369513
-0.40018
-0.398304
-0.370177
-0.397107
-0.370086
-0.373731
-0.399726
-0.401077
-0.373089
-0.37196
-0.399304
-0.37548
-0.368684
-0.388489
-0.398027
-0.381169
-0.393822
-0.375249
-0.369241
-0.429344
-0.440384
-0.387021
-0.414441
-0.440019
-0.459887
-0.392672
-0.522027
-0.576332
-0.466559
-0.519009
-0.531759
-0.481935
-0.52643
-0.523104
-0.507974
-0.526113
-0.517732
-0.524202
-0.42088
-0.416228
-0.422235
-0.392492
-0.437084
-0.392698
-0.412468
-0.495437
-0.494583
-0.418833
-0.391613
-0.400198
-0.501624
-0.492185
-0.451942
-0.456547
-0.464528
-0.426728
-0.45756
-0.482688
-0.468874
-0.47499
-0.493052
-0.415402
-0.458601
-0.424379
-0.499966
-0.439668
-0.379132
-0.398914
-0.380717
-0.404593
-0.376154
-0.400821
-0.384502
-0.380417
-0.376851
-0.400622
-0.403348
-0.375984
-0.402671
-0.382065
-0.379019
-0.400701
-0.374193
-0.401132
-0.375385
-0.377004
-0.401772
-0.381166
-0.406118
-0.403389
-0.388086
-0.402323
-0.386344
-0.383308
-0.427537
-0.476037
-0.559874
-0.407596
-0.570044
-0.424393
-0.410598
-0.400804
-0.376619
-0.480901
-0.419176
-0.401571
-0.481348
-0.376331
-0.430719
-0.480176
-0.591338
-0.416538
-0.433857
-0.580831
-0.413439
-0.399807
-0.481868
-0.420415
-0.375686
-0.481186
-0.399158
-0.375587
-0.400062
-0.31822
-0.399818
-0.397287
-0.316173
-0.397967
-0.355814
-0.388242
-0.381546
-0.375467
-0.370302
-0.377956
-0.359838
-0.34193
-0.316182
-0.343714
-0.324411
-0.395145
-0.332931
-0.308735
-0.352789
-0.38852
-0.345995
-0.374542
-0.366366
-0.348589
-0.376164
-0.344468
-0.401163
-0.302634
-0.300859
-0.400382
-0.346522
-0.302811
-0.419088
-0.463574
-0.549936
-0.404883
-0.421607
-0.540992
-0.401877
-0.397324
-0.373561
-0.484992
-0.426018
-0.396864
-0.482745
-0.373901
-0.417842
-0.460373
-0.539259
-0.398211
-0.417126
-0.537865
-0.400096
-0.397902
-0.482341
-0.375491
-0.426078
-0.398505
-0.482242
-0.375155
-0.365371
-0.401113
-0.384507
-0.379573
-0.38754
-0.38261
-0.362749
-0.35147
-0.305159
-0.411011
-0.303252
-0.352951
-0.409073
-0.303629
-0.367494
-0.405399
-0.393538
-0.389862
-0.36996
-0.390258
-0.386102
-0.35008
-0.40405
-0.300614
-0.30119
-0.406448
-0.34825
-0.302599
-0.361179
-0.44675
-0.404182
-0.399037
-0.3812
-0.412767
-0.365501
-0.367179
-0.368255
-0.397286
-0.401088
-0.36855
-0.367033
-0.396506
-0.368582
-0.407838
-0.39676
-0.382369
-0.368326
-0.395271
-0.391514
-0.363138
-0.397158
-0.399954
-0.364303
-0.364726
-0.392508
-0.363958
-0.369595
-0.400089
-0.379227
-0.394075
-0.381147
-0.404857
-0.411476
-0.378664
-0.383078
-0.426312
-0.417057
-0.391282
-0.369575
-0.373103
-0.367845
-0.392676
-0.413322
-0.412598
-0.480524
-0.46177
-0.39068
-0.405452
-0.450667
-0.441273
-0.415818
-0.403688
-0.431563
-0.437842
-0.396696
-0.418015
-0.481012
-0.461094
-0.425941
-0.463796
-0.375643
-0.475194
-0.44961
-0.399459
-0.366548
-0.4532
-0.401614
-0.35935
-0.360806
-0.400722
-0.399206
-0.364772
-0.359988
-0.382529
-0.39741
-0.476107
-0.402979
-0.460739
-0.430586
-0.453458
-0.397273
-0.364843
-0.39652
-0.363437
-0.402066
-0.36277
-0.363546
-0.395393
-0.366638
-0.320035
-0.310004
-0.364027
-0.31018
-0.355385
-0.330188
-0.356781
-0.330032
-0.354442
-0.330425
-0.353257
-0.330156
-0.326067
-0.348616
-0.321942
-0.300931
-0.346062
-0.32853
-0.319157
-0.268448
-0.301248
-0.300718
-0.268567
-0.291289
-0.311186
-0.297601
-0.308369
-0.314937
-0.30351
-0.326716
-0.317385
-0.319493
-0.307026
-0.312019
-0.269744
-0.301345
-0.30089
-0.272576
-0.31903
-0.32551
-0.314798
-0.329954
-0.322514
-0.322488
-0.31138
-0.323915
-0.299463
-0.343823
-0.314929
-0.345145
-0.316661
-0.322808
-0.334947
-0.308131
-0.3498
-0.324427
-0.327543
-0.351551
-0.331842
-0.333802
-0.328677
-0.338237
-0.343183
-0.337141
-0.335126
-0.325495
-0.292034
-0.303589
-0.299129
-0.302741
-0.307456
-0.31342
-0.303004
-0.317523
-0.338743
-0.310424
-0.333803
-0.355756
-0.342329
-0.330618
-0.352986
-0.284758
-0.302
-0.302105
-0.278512
-0.329825
-0.328511
-0.339779
-0.319563
-0.331876
-0.326715
-0.321644
-0.439908
-0.441237
-0.446072
-0.457955
-0.448392
-0.437578
-0.44404
-0.427757
-0.400297
-0.399527
-0.429359
-0.401717
-0.428709
-0.426216
-0.425016
-0.419918
-0.395791
-0.395622
-0.398562
-0.422531
-0.423141
-0.442437
-0.460286
-0.452633
-0.448425
-0.451044
-0.443761
-0.446521
-0.468494
-0.451048
-0.458079
-0.470427
-0.470421
-0.448891
-0.468323
-0.517519
-0.543292
-0.519407
-0.465416
-0.455959
-0.444398
-0.464669
-0.446231
-0.466577
-0.462847
-0.521883
-0.5437
-0.520233
-0.432767
-0.439106
-0.443801
-0.450942
-0.436547
-0.435158
-0.441564
-0.414298
-0.383815
-0.382563
-0.409909
-0.386524
-0.412053
-0.411961
-0.417239
-0.417557
-0.385683
-0.39282
-0.38985
-0.414701
-0.419879
-0.430079
-0.448759
-0.432329
-0.437304
-0.43416
-0.439026
-0.428071
-0.417368
-0.433956
-0.419969
-0.434926
-0.432211
-0.419376
-0.416552
-0.394549
-0.359205
-0.357204
-0.385243
-0.363072
-0.388937
-0.39051
-0.398474
-0.395559
-0.370084
-0.360625
-0.36718
-0.401076
-0.392285
-0.413963
-0.432256
-0.426625
-0.410191
-0.429304
-0.413459
-0.41063
-0.465767
-0.456808
-0.453353
-0.455507
-0.471005
-0.444552
-0.458277
-0.517056
-0.53488
-0.510988
-0.459411
-0.451071
-0.441983
-0.463154
-0.458569
-0.441733
-0.459631
-0.467137
-0.52669
-0.462718
-0.504341
-0.421803
-0.437804
-0.424616
-0.443812
-0.426316
-0.423335
-0.432969
-0.407219
-0.380625
-0.374041
-0.407379
-0.378148
-0.409256
-0.404761
-0.404753
-0.399559
-0.370778
-0.374426
-0.375118
-0.402133
-0.405378
-0.424037
-0.443757
-0.430142
-0.435164
-0.425685
-0.42799
-0.433997
-0.337021
-0.32371
-0.307162
-0.340384
-0.306337
-0.337904
-0.323892
-0.335944
-0.325225
-0.339314
-0.327045
-0.341388
-0.326039
-0.323459
-0.292157
-0.308292
-0.340065
-0.342528
-0.310708
-0.319373
-0.27006
-0.301766
-0.302707
-0.268574
-0.311027
-0.299348
-0.315001
-0.320331
-0.309435
-0.315117
-0.298042
-0.274165
-0.293806
-0.265258
-0.303356
-0.322364
-0.294165
-0.34283
-0.312612
-0.342945
-0.321614
-0.311765
-0.315459
-0.314936
-0.319677
-0.312306
-0.315746
-0.313206
-0.30119
-0.276684
-0.306383
-0.306414
-0.275798
-0.316374
-0.288015
-0.30672
-0.337947
-0.304847
-0.337366
-0.317277
-0.306364
-0.300675
-0.307781
-0.314426
-0.304499
-0.309993
-0.304458
-0.278275
-0.307964
-0.278586
-0.308515
-0.254262
-0.288479
-0.259727
-0.284164
-0.315414
-0.286602
-0.301792
-0.335356
-0.314414
-0.30354
-0.336342
-0.308243
-0.313682
-0.316548
-0.31007
-0.311556
-0.310227
-0.307453
-0.277792
-0.307927
-0.308416
-0.277335
-0.374114
-0.371716
-0.399908
-0.397132
-0.397756
-0.37633
-0.369298
-0.277702
-0.274417
-0.336393
-0.271353
-0.297624
-0.3302
-0.27397
-0.332806
-0.333851
-0.338956
-0.338442
-0.279119
-0.301183
-0.27641
-0.341335
-0.335695
-0.371483
-0.39475
-0.392957
-0.364215
-0.395223
-0.366706
-0.368933
-0.450025
-0.424398
-0.440815
-0.423659
-0.448371
-0.442372
-0.425551
-0.463919
-0.433868
-0.44495
-0.451591
-0.453233
-0.464351
-0.436832
-0.452985
-0.427648
-0.44778
-0.431814
-0.445804
-0.427535
-0.457287
-0.459666
-0.447749
-0.427977
-0.446884
-0.458135
-0.449641
-0.430504
-0.381789
-0.374323
-0.404102
-0.402674
-0.376915
-0.379144
-0.404926
-0.349859
-0.294088
-0.313147
-0.349673
-0.289493
-0.346418
-0.353942
-0.281478
-0.285122
-0.347284
-0.341218
-0.310511
-0.282647
-0.286189
-0.344016
-0.344334
-0.384056
-0.406947
-0.383042
-0.410783
-0.379402
-0.406833
-0.38811
-0.395971
-0.421646
-0.39459
-0.416444
-0.417864
-0.397592
-0.395242
-0.376082
-0.353425
-0.380372
-0.346713
-0.384224
-0.345953
-0.374785
-0.311927
-0.315422
-0.401988
-0.424458
-0.423227
-0.406007
-0.421183
-0.406061
-0.402029
-0.362704
-0.364639
-0.338042
-0.310836
-0.311127
-0.368991
-0.36429
-0.442277
-0.433328
-0.444444
-0.43209
-0.443197
-0.442948
-0.430694
-0.439001
-0.445006
-0.498115
-0.447368
-0.44592
-0.442188
-0.43239
-0.443764
-0.427687
-0.444203
-0.442224
-0.429619
-0.438119
-0.449446
-0.501844
-0.438534
-0.447742
-0.390714
-0.391889
-0.415572
-0.414506
-0.389203
-0.392812
-0.41275
-0.356892
-0.296168
-0.322736
-0.352042
-0.299882
-0.3541
-0.355448
-0.305908
-0.302378
-0.358918
-0.36114
-0.325302
-0.306105
-0.302836
-0.357747
-0.361336
-0.389129
-0.414036
-0.384538
-0.40897
-0.386817
-0.387336
-0.411398
-0.590591
-0.608754
-0.554592
-0.552166
-0.593016
-0.552671
-0.607125
-0.623973
-0.649597
-0.657574
-0.629358
-0.653644
-0.63751
-0.618118
-0.625857
-0.639041
-0.653815
-0.654997
-0.653191
-0.628006
-0.637487
-0.58885
-0.55256
-0.552204
-0.601305
-0.551569
-0.606954
-0.586021
-0.547089
-0.547304
-0.520602
-0.567263
-0.585424
-0.542738
-0.585743
-0.544329
-0.519209
-0.522908
-0.56764
-0.584439
-0.547702
-0.586395
-0.526941
-0.54586
-0.558341
-0.552652
-0.557437
-0.550726
-0.548726
-0.551105
-0.552499
-0.551062
-0.551547
-0.552537
-0.555385
-0.557184
-0.594482
-0.608376
-0.554141
-0.555168
-0.593253
-0.608655
-0.556983
-0.628632
-0.652359
-0.653084
-0.63628
-0.652604
-0.62884
-0.637837
-0.628408
-0.638372
-0.653078
-0.654089
-0.653028
-0.627817
-0.638391
-0.595673
-0.554863
-0.607525
-0.562624
-0.597354
-0.608416
-0.559092
-0.516496
-0.585453
-0.542247
-0.565705
-0.540923
-0.518577
-0.584773
-0.516327
-0.566909
-0.542004
-0.584938
-0.540619
-0.586762
-0.514168
-0.543684
-0.541645
-0.70896
-0.710889
-0.698822
-0.721186
-0.709805
-0.697605
-0.720471
-0.692515
-0.67237
-0.683264
-0.67312
-0.691049
-0.685313
-0.672914
-0.707912
-0.70904
-0.69423
-0.719025
-0.706263
-0.696225
-0.719603
-0.693379
-0.687736
-0.673433
-0.674332
-0.694099
-0.686697
-0.673321
-0.877347
-0.749752
-0.757353
-0.75062
-0.87698
-0.963077
-0.959268
-0.944875
-0.978589
-0.875918
-0.766894
-0.847476
-0.757814
-0.753625
-0.826197
-0.966871
-1.00366
-0.96821
-0.99023
-0.714413
-0.7014
-0.723132
-0.720244
-0.711841
-0.703714
-0.726131
-0.699253
-0.677287
-0.678243
-0.697323
-0.692844
-0.67537
-0.703183
-0.697059
-0.689616
-0.674308
-0.677091
-0.695634
-0.691059
-0.674664
-0.719588
-0.727442
-0.714197
-0.745272
-0.707197
-0.733957
-0.726353
-0.867507
-0.742666
-0.747524
-0.745961
-0.872044
-0.949203
-0.9992
-0.942323
-1.00546
-0.861845
-0.738144
-0.744323
-0.858589
-0.743962
-0.957694
-1.01046
-0.96373
-1.0119
-0.569969
-0.555642
-0.56883
-0.560712
-0.556545
-0.567791
-0.56182
-0.610074
-0.64688
-0.616373
-0.654357
-0.61289
-0.645736
-0.620993
-0.573138
-0.569689
-0.552181
-0.564625
-0.576966
-0.556693
-0.565332
-0.607991
-0.620748
-0.644356
-0.654993
-0.645052
-0.606322
-0.620819
-0.507659
-0.579157
-0.54478
-0.573176
-0.577133
-0.510369
-0.543742
-0.506685
-0.572846
-0.577857
-0.542852
-0.577707
-0.542808
-0.505584
-0.556971
-0.561794
-0.557241
-0.546379
-0.550704
-0.548766
-0.549247
-0.544631
-0.549747
-0.562605
-0.560031
-0.556572
-0.555715
-0.558188
-0.554877
-0.556889
-0.549239
-0.552287
-0.512488
-0.57873
-0.545171
-0.574296
-0.545853
-0.510318
-0.580556
-0.512669
-0.575757
-0.543919
-0.588838
-0.514719
-0.545953
-0.581504
-0.565942
-0.555083
-0.559953
-0.567506
-0.566927
-0.554221
-0.559453
-0.603423
-0.644041
-0.656984
-0.622563
-0.643689
-0.620936
-0.602716
-0.604752
-0.620931
-0.644542
-0.656246
-0.644122
-0.605757
-0.620904
-0.564477
-0.566889
-0.553188
-0.559639
-0.553152
-0.558666
-0.563997
-0.560196
-0.55577
-0.556975
-0.56264
-0.558884
-0.560619
-0.559439
-0.587868
-0.599624
-0.526871
-0.528095
-0.586047
-0.55949
-0.577941
-0.623312
-0.647741
-0.579278
-0.622949
-0.58006
-0.578221
-0.577959
-0.581573
-0.647382
-0.62074
-0.622451
-0.580273
-0.577465
-0.559043
-0.597986
-0.52954
-0.584687
-0.527315
-0.585165
-0.559629
-0.577924
-0.573548
-0.589052
-0.610824
-0.593834
-0.595077
-0.586024
-0.608138
-0.598648
-0.571281
-0.584154
-0.584428
-0.549855
-0.555547
-0.549058
-0.506495
-0.535012
-0.536326
-0.536801
-0.505381
-0.536418
-0.554953
-0.547247
-0.548473
-0.573751
-0.568179
-0.572552
-0.575692
-0.57788
-0.577447
-0.5778
-0.567324
-0.570465
-0.571651
-0.564049
-0.592887
-0.528178
-0.605222
-0.562169
-0.600828
-0.526579
-0.583878
-0.605551
-0.608439
-0.600849
-0.607329
-0.601149
-0.58592
-0.579853
-0.58259
-0.619826
-0.604782
-0.610473
-0.579337
-0.587874
-0.566191
-0.602244
-0.600361
-0.52611
-0.600904
-0.52533
-0.568263
-0.728581
-0.749291
-0.724064
-0.752058
-0.728055
-0.727063
-0.753445
-0.702911
-0.66779
-0.715381
-0.683549
-0.703516
-0.709829
-0.66776
-0.730607
-0.756182
-0.737727
-0.759311
-0.731468
-0.730424
-0.757006
-0.701815
-0.704782
-0.668296
-0.681024
-0.70172
-0.707135
-0.667384
-0.829065
-0.77354
-0.776829
-0.857936
-0.856233
-0.773539
-0.830719
-0.943062
-0.949972
-0.950464
-0.9421
-0.827067
-0.77022
-0.850377
-0.768332
-0.850474
-0.827363
-0.7702
-0.930629
-0.929282
-0.915595
-0.935486
-0.725096
-0.738291
-0.720772
-0.748997
-0.726007
-0.718988
-0.747121
-0.700483
-0.674444
-0.697193
-0.6803
-0.700202
-0.699572
-0.673588
-0.723546
-0.735956
-0.71384
-0.744142
-0.723126
-0.716875
-0.744714
-0.70064
-0.701956
-0.668404
-0.678753
-0.700515
-0.701018
-0.671193
-0.82856
-0.784882
-0.781031
-0.854311
-0.782862
-0.851603
-0.831716
-0.867808
-0.873198
-0.787474
-0.817437
-0.895567
-0.823104
-0.79823
-0.790845
-0.870699
-0.812077
-0.787407
-0.863031
-0.883422
-0.919656
-0.898971
-0.910774
-0.56645
-0.55755
-0.579104
-0.578791
-0.554084
-0.568271
-0.579165
-0.580447
-0.623515
-0.579756
-0.64363
-0.578687
-0.624354
-0.577905
-0.562769
-0.595467
-0.530283
-0.584761
-0.560401
-0.535646
-0.583342
-0.582783
-0.578726
-0.627778
-0.641519
-0.625247
-0.586828
-0.576748
-0.501063
-0.576198
-0.573325
-0.540462
-0.574149
-0.501447
-0.540976
-0.50307
-0.572671
-0.576692
-0.541372
-0.575915
-0.503867
-0.541453
-0.551116
-0.55665
-0.55003
-0.527344
-0.538491
-0.54083
-0.544731
-0.532237
-0.543561
-0.554487
-0.547497
-0.547529
-0.559721
-0.573322
-0.558749
-0.557123
-0.549705
-0.55178
-0.569773
-0.50807
-0.569567
-0.539488
-0.565773
-0.542352
-0.50057
-0.564139
-0.56416
-0.571648
-0.556181
-0.564696
-0.564008
-0.554648
-0.559355
-0.599942
-0.640953
-0.620104
-0.654407
-0.600236
-0.639192
-0.618243
-0.563179
-0.567775
-0.552011
-0.557826
-0.562304
-0.553085
-0.558165
-0.598246
-0.575181
-0.62932
-0.647135
-0.634632
-0.58917
-0.612104
-0.565787
-0.570598
-0.568188
-0.571378
-0.569598
-0.566709
-0.569418
-0.569069
-0.57144
-0.567483
-0.298631
-0.309294
-0.309861
-0.296423
-0.300136
-0.308262
-0.294097
-0.290057
-0.278622
-0.274621
-0.258099
-0.288268
-0.27768
-0.280954
-0.29688
-0.307028
-0.305076
-0.289216
-0.295302
-0.30656
-0.291643
-0.291993
-0.283344
-0.285453
-0.26243
-0.293624
-0.280582
-0.283355
-0.331344
-0.33346
-0.359023
-0.319642
-0.361031
-0.321516
-0.33
-0.328107
-0.355794
-0.346916
-0.349555
-0.364644
-0.321085
-0.328804
-0.333911
-0.336494
-0.360019
-0.339382
-0.362128
-0.339046
-0.326035
-0.329189
-0.369119
-0.346596
-0.323001
-0.367607
-0.323364
-0.329901
-0.303564
-0.316506
-0.312165
-0.29923
-0.30235
-0.313766
-0.301811
-0.299743
-0.293935
-0.296284
-0.280546
-0.300318
-0.293107
-0.292965
-0.305904
-0.319849
-0.319561
-0.30854
-0.306393
-0.316783
-0.305249
-0.297245
-0.286535
-0.288265
-0.275698
-0.295955
-0.289462
-0.290022
-0.327029
-0.327029
-0.356346
-0.317549
-0.316252
-0.353965
-0.3282
-0.328837
-0.322382
-0.371256
-0.349912
-0.328547
-0.322382
-0.370531
-0.325727
-0.324988
-0.313537
-0.349277
-0.324559
-0.314824
-0.351506
-0.329267
-0.369539
-0.349147
-0.322546
-0.322579
-0.370092
-0.329374
-0.2979
-0.290034
-0.347614
-0.336113
-0.30008
-0.285076
-0.333859
-0.265747
-0.265578
-0.203359
-0.190179
-0.262768
-0.195509
-0.265039
-0.267392
-0.212914
-0.258155
-0.196923
-0.260629
-0.269226
-0.203997
-0.295702
-0.34315
-0.274223
-0.329367
-0.279768
-0.331499
-0.293722
-0.425662
-0.421854
-0.377567
-0.505254
-0.507293
-0.379391
-0.424433
-0.482097
-0.524187
-0.641724
-0.733214
-0.639517
-0.483188
-0.523058
-0.427305
-0.425396
-0.512445
-0.383405
-0.510307
-0.428717
-0.381481
-0.480625
-0.633849
-0.727198
-0.520445
-0.635928
-0.479777
-0.521327
-0.304895
-0.29576
-0.360097
-0.33884
-0.302682
-0.300753
-0.341037
-0.275805
-0.252238
-0.174134
-0.250722
-0.25309
-0.278026
-0.242322
-0.273576
-0.223116
-0.25651
-0.179122
-0.254429
-0.271536
-0.232498
-0.307259
-0.364519
-0.310971
-0.345691
-0.309617
-0.306193
-0.343398
-0.420927
-0.41233
-0.374992
-0.502605
-0.373074
-0.500425
-0.422259
-0.47534
-0.514628
-0.623624
-0.711152
-0.626411
-0.474219
-0.515857
-0.419149
-0.408663
-0.368936
-0.49482
-0.370862
-0.497396
-0.417742
-0.476964
-0.631781
-0.716622
-0.518509
-0.62977
-0.477858
-0.5177
-0.287542
-0.319831
-0.236991
-0.323562
-0.284782
-0.246785
-0.322973
-0.266515
-0.26803
-0.223622
-0.190025
-0.270828
-0.265277
-0.195073
-0.268466
-0.20658
-0.276738
-0.230758
-0.273889
-0.269891
-0.200973
-0.289175
-0.328723
-0.26596
-0.327053
-0.291542
-0.256303
-0.324612
-0.405011
-0.381913
-0.357917
-0.480807
-0.478281
-0.353915
-0.408854
-0.462116
-0.496748
-0.603813
-0.677989
-0.606118
-0.458285
-0.500886
-0.403974
-0.378337
-0.472783
-0.348617
-0.47585
-0.400002
-0.352572
-0.462729
-0.609999
-0.681295
-0.50568
-0.608147
-0.466451
-0.501544
-0.280562
-0.308146
-0.318319
-0.22787
-0.283469
-0.314643
-0.218876
-0.276951
-0.28886
-0.232962
-0.260617
-0.278616
-0.286924
-0.226318
-0.280371
-0.30333
-0.309676
-0.21116
-0.279419
-0.313419
-0.212378
-0.273743
-0.212884
-0.280362
-0.252948
-0.283001
-0.272373
-0.219158
-0.41284
-0.359396
-0.393384
-0.483246
-0.362684
-0.409828
-0.485861
-0.470595
-0.512616
-0.621268
-0.696848
-0.472393
-0.617548
-0.510469
-0.413849
-0.397352
-0.366623
-0.492099
-0.415796
-0.364234
-0.488808
-0.469855
-0.612155
-0.506248
-0.691502
-0.466957
-0.61426
-0.509568
-0.396742
-0.41197
-0.402872
-0.419062
-0.405052
-0.394827
-0.413476
-0.391872
-0.381196
-0.390774
-0.407451
-0.380813
-0.407328
-0.392919
-0.390686
-0.406245
-0.379924
-0.392117
-0.380402
-0.389365
-0.406708
-0.39845
-0.421198
-0.408849
-0.416289
-0.407041
-0.415204
-0.399981
-0.420992
-0.443064
-0.422609
-0.407774
-0.440709
-0.424008
-0.404332
-0.43305
-0.565859
-0.524536
-0.464687
-0.455547
-0.515568
-0.447208
-0.438471
-0.470428
-0.515024
-0.461673
-0.467949
-0.47539
-0.438837
-0.415744
-0.419373
-0.435502
-0.396583
-0.435719
-0.416169
-0.39993
-0.429089
-0.445746
-0.410421
-0.429475
-0.412879
-0.426635
-0.448122
-0.445639
-0.466715
-0.524082
-0.482818
-0.463973
-0.479897
-0.448263
-0.442978
-0.473546
-0.46036
-0.519766
-0.461332
-0.44075
-0.476354
-0.431544
-0.431968
-0.417191
-0.45334
-0.415109
-0.451048
-0.433889
-0.390451
-0.410408
-0.413009
-0.400541
-0.392856
-0.408486
-0.397626
-0.385159
-0.377149
-0.397903
-0.403525
-0.37816
-0.383299
-0.404779
-0.386368
-0.405898
-0.37932
-0.396059
-0.3785
-0.38802
-0.404968
-0.388299
-0.41068
-0.404854
-0.391271
-0.385533
-0.406907
-0.394552
-0.461172
-0.639023
-0.721722
-0.455463
-0.45336
-0.726029
-0.461387
-0.43448
-0.388444
-0.589981
-0.408735
-0.434484
-0.594583
-0.3894
-0.464775
-0.590467
-0.448346
-0.713808
-0.466536
-0.449083
-0.718539
-0.433257
-0.598387
-0.417634
-0.394908
-0.597874
-0.43493
-0.391149
-0.464399
-0.413487
-0.396597
-0.37137
-0.339984
-0.371823
-0.505472
-0.410094
-0.409302
-0.374473
-0.339631
-0.369924
-0.60449
-0.602251
-0.386412
-0.420109
-0.422413
-0.478657
-0.421916
-0.385457
-0.423198
-0.387553
-0.477432
-0.42088
-0.425734
-0.421547
-0.424021
-0.389835
-0.385024
-0.512045
-0.417382
-0.422626
-0.427238
-0.409083
-0.385856
-0.358589
-0.33217
-0.370497
-0.349851
-0.357472
-0.333622
-0.373465
-0.385528
-0.546671
-0.43396
-0.409871
-0.384568
-0.433274
-0.41137
-0.358669
-0.380545
-0.352537
-0.3374
-0.334795
-0.375062
-0.358929
-0.592717
-0.46507
-0.723969
-0.457086
-0.640206
-0.463236
-0.726134
-0.45827
-0.443955
-0.414116
-0.45469
-0.613965
-0.612515
-0.406723
-0.450271
-0.440454
-0.603155
-0.398236
-0.444656
-0.437424
-0.608301
-0.402219
-0.466977
-0.637633
-0.716634
-0.460504
-0.724666
-0.459003
-0.470944
-0.403928
-0.415728
-0.427881
-0.419228
-0.414005
-0.419697
-0.405158
-0.394813
-0.38212
-0.408449
-0.386517
-0.394216
-0.382595
-0.407161
-0.402817
-0.425732
-0.410821
-0.418146
-0.401711
-0.41238
-0.418161
-0.395379
-0.405598
-0.388709
-0.385222
-0.383524
-0.407829
-0.396131
-0.447298
-0.465255
-0.427075
-0.444756
-0.467047
-0.444951
-0.429263
-0.465108
-0.488175
-0.552959
-0.504796
-0.502592
-0.484848
-0.46839
-0.463278
-0.497641
-0.549703
-0.480288
-0.500108
-0.482933
-0.460738
-0.449051
-0.446364
-0.470474
-0.434215
-0.468986
-0.430958
-0.452262
-0.440819
-0.462952
-0.425258
-0.440244
-0.423295
-0.442976
-0.461124
-0.453596
-0.469728
-0.535636
-0.48639
-0.472468
-0.451055
-0.489053
-0.456114
-0.494744
-0.477891
-0.53939
-0.47524
-0.458532
-0.492295
-0.438599
-0.437797
-0.419436
-0.45632
-0.436383
-0.421348
-0.458331
-0.407882
-0.41733
-0.419568
-0.430841
-0.406327
-0.419351
-0.419231
-0.39903
-0.395091
-0.385884
-0.3964
-0.390448
-0.399945
-0.402187
-0.397772
-0.404061
-0.386547
-0.38629
-0.388279
-0.396766
-0.401762
-0.409352
-0.43204
-0.424369
-0.417947
-0.421072
-0.419318
-0.41255
-0.442214
-0.387747
-0.409245
-0.447101
-0.381172
-0.44673
-0.443306
-0.450297
-0.469654
-0.469607
-0.384054
-0.466753
-0.38642
-0.451144
-0.450865
-0.40539
-0.468735
-0.463575
-0.464479
-0.391256
-0.451607
-0.440681
-0.407537
-0.382235
-0.446689
-0.37694
-0.445542
-0.442183
-0.485939
-0.417061
-0.427075
-0.438856
-0.481776
-0.437737
-0.474546
-0.479316
-0.455455
-0.439988
-0.478721
-0.474319
-0.455248
-0.493982
-0.516392
-0.592345
-0.528026
-0.528057
-0.51537
-0.494812
-0.492511
-0.524828
-0.588645
-0.512949
-0.525308
-0.513721
-0.49195
-0.475906
-0.442893
-0.479529
-0.458057
-0.480912
-0.456864
-0.476571
-0.51804
-0.518435
-0.473234
-0.4764
-0.44227
-0.455389
-0.455489
-0.477241
-0.47337
-0.48831
-0.507584
-0.578451
-0.517436
-0.508667
-0.518268
-0.487508
-0.48986
-0.521445
-0.582024
-0.511125
-0.510417
-0.520998
-0.490367
-0.471975
-0.441046
-0.454782
-0.475649
-0.45444
-0.475331
-0.471604
-0.444247
-0.413143
-0.446627
-0.411386
-0.444112
-0.418934
-0.446223
-0.453152
-0.447595
-0.42071
-0.46639
-0.44723
-0.467783
-0.452628
-0.454798
-0.460731
-0.456119
-0.426723
-0.450259
-0.454941
-0.469972
-0.444811
-0.416378
-0.434699
-0.449583
-0.423263
-0.447897
-0.445829
-0.468946
-0.497149
-0.532651
-0.446998
-0.518995
-0.477292
-0.443066
-0.477155
-0.488466
-0.495587
-0.491889
-0.47089
-0.499773
-0.491924
-0.465545
-0.502392
-0.528041
-0.441541
-0.463371
-0.526353
-0.441867
-0.492737
-0.561133
-0.50409
-0.48762
-0.523097
-0.503574
-0.498935
-0.489615
-0.429037
-0.430309
-0.381233
-0.330841
-0.380568
-0.494267
-0.435228
-0.433429
-0.378921
-0.33061
-0.378924
-0.570024
-0.763507
-0.890575
-0.583409
-0.942748
-0.915993
-0.392505
-0.464555
-0.424989
-0.423821
-0.421973
-0.427888
-0.391226
-0.392369
-0.464277
-0.41798
-0.426841
-0.41891
-0.390797
-0.428865
-0.565613
-0.758045
-0.724636
-0.729426
-0.681965
-0.730142
-0.57386
-0.746319
-0.743866
-0.870113
-0.713284
-0.721156
-0.497353
-0.510173
-0.569554
-0.449605
-0.491837
-0.621377
-0.453891
-0.484309
-0.424341
-0.621216
-0.460779
-0.460553
-0.592278
-0.445813
-0.496383
-0.55547
-0.703895
-0.461687
-0.478697
-0.670095
-0.461211
-0.493746
-0.593625
-0.484138
-0.46771
-0.509233
-0.575849
-0.459031
-0.391342
-0.468648
-0.423681
-0.428422
-0.422011
-0.432606
-0.391468
-0.391675
-0.473407
-0.421852
-0.44076
-0.392491
-0.421454
-0.43668
-0.442684
-0.442057
-0.420201
-0.396215
-0.391168
-0.447383
-0.435686
-0.446693
-0.466952
-0.362356
-0.366905
-0.44964
-0.465364
-0.352846
-0.440902
-0.415581
-0.383996
-0.447219
-0.442703
-0.384249
-0.446073
-0.448041
-0.361914
-0.368073
-0.450533
-0.467234
-0.358369
-0.436844
-0.458889
-0.472816
-0.447603
-0.44846
-0.472822
-0.463792
-0.442511
-0.474448
-0.48997
-0.560333
-0.506868
-0.50778
-0.494126
-0.470182
-0.474542
-0.509785
-0.561822
-0.498736
-0.508828
-0.494445
-0.479021
-0.458703
-0.447284
-0.47219
-0.436361
-0.472074
-0.45409
-0.441874
-0.468222
-0.472591
-0.448526
-0.444671
-0.453308
-0.463979
-0.473651
-0.483733
-0.505716
-0.570258
-0.515351
-0.503527
-0.485897
-0.51338
-0.483195
-0.510472
-0.499163
-0.567818
-0.502738
-0.479304
-0.512398
-0.468444
-0.442492
-0.454323
-0.474285
-0.470426
-0.452773
-0.473186
-0.425893
-0.429604
-0.441991
-0.401687
-0.435071
-0.434838
-0.409677
-0.416334
-0.401458
-0.39491
-0.370444
-0.406131
-0.41671
-0.384051
-0.423564
-0.430031
-0.426926
-0.418222
-0.415596
-0.433446
-0.411756
-0.421037
-0.367838
-0.445313
-0.369171
-0.425759
-0.433811
-0.380057
-0.300394
-0.279288
-0.271795
-0.298023
-0.274576
-0.314376
-0.30744
-0.315922
-0.306187
-0.312511
-0.302906
-0.310435
-0.304564
-0.273298
-0.284948
-0.286216
-0.27237
-0.263635
-0.240075
-0.264329
-0.240742
-0.301705
-0.279973
-0.268992
-0.250293
-0.253025
-0.281177
-0.299454
-0.274546
-0.289244
-0.287765
-0.275679
-0.3017
-0.25703
-0.283539
-0.270783
-0.304856
-0.254012
-0.282112
-0.308484
-0.288134
-0.261881
-0.277448
-0.309196
-0.260891
-0.287168
-0.278395
-0.293954
-0.27899
-0.292937
-0.265008
-0.239168
-0.264605
-0.23827
-0.277422
-0.290281
-0.291604
-0.276455
-0.307015
-0.257267
-0.275799
-0.284475
-0.259439
-0.305239
-0.285789
-0.352493
-0.345646
-0.381359
-0.38304
-0.383135
-0.342221
-0.351382
-0.252184
-0.251976
-0.287899
-0.325757
-0.267771
-0.289637
-0.327083
-0.264522
-0.33019
-0.323691
-0.318047
-0.311946
-0.267731
-0.288614
-0.26273
-0.284726
-0.320529
-0.360504
-0.386655
-0.389941
-0.361034
-0.387041
-0.365255
-0.356831
-0.433195
-0.406513
-0.401062
-0.427282
-0.434421
-0.405366
-0.424119
-0.452396
-0.433513
-0.437098
-0.440814
-0.438181
-0.45114
-0.434768
-0.430917
-0.398828
-0.400699
-0.420854
-0.402848
-0.42227
-0.429075
-0.454419
-0.44313
-0.442438
-0.442321
-0.456729
-0.439654
-0.437836
-0.340188
-0.340851
-0.379343
-0.372568
-0.336768
-0.342574
-0.377615
-0.272613
-0.272101
-0.286431
-0.295753
-0.274957
-0.298379
-0.269134
-0.27746
-0.237497
-0.229025
-0.283791
-0.276751
-0.307076
-0.288976
-0.279778
-0.27798
-0.302131
-0.281941
-0.336973
-0.369859
-0.330926
-0.372371
-0.333396
-0.374787
-0.334211
-0.312965
-0.357258
-0.31644
-0.352099
-0.354173
-0.316719
-0.313358
-0.224317
-0.212664
-0.212698
-0.232445
-0.237699
-0.255426
-0.267992
-0.270534
-0.257418
-0.274145
-0.232637
-0.242881
-0.280624
-0.261363
-0.270553
-0.259397
-0.247803
-0.277609
-0.309323
-0.349417
-0.348448
-0.306326
-0.351409
-0.310096
-0.305488
-0.421451
-0.389662
-0.390136
-0.412288
-0.419164
-0.392325
-0.414754
-0.447045
-0.431021
-0.435233
-0.436684
-0.448857
-0.433447
-0.429286
-0.423973
-0.392327
-0.397691
-0.41871
-0.426291
-0.395167
-0.416729
-0.44512
-0.429446
-0.425845
-0.435215
-0.443406
-0.431759
-0.427462
-0.323868
-0.360227
-0.319042
-0.360192
-0.322512
-0.320283
-0.363262
-0.26127
-0.269183
-0.279555
-0.292568
-0.267264
-0.265151
-0.289726
-0.247337
-0.212301
-0.211769
-0.239844
-0.256968
-0.283277
-0.277338
-0.263224
-0.265243
-0.28689
-0.25247
-0.327482
-0.362628
-0.327844
-0.36913
-0.330625
-0.32517
-0.366412
-0.278325
-0.239328
-0.249696
-0.280652
-0.245591
-0.293554
-0.286594
-0.290832
-0.288807
-0.293387
-0.289603
-0.294552
-0.288585
-0.270264
-0.283722
-0.282164
-0.271411
-0.296384
-0.27917
-0.249222
-0.264011
-0.29984
-0.246344
-0.277639
-0.26194
-0.247958
-0.261729
-0.246296
-0.295863
-0.244418
-0.263176
-0.276557
-0.246162
-0.294594
-0.277187
-0.269647
-0.279804
-0.281116
-0.268679
-0.294099
-0.274878
-0.238145
-0.259946
-0.289043
-0.240925
-0.279653
-0.266666
-0.276259
-0.265056
-0.278034
-0.260144
-0.249654
-0.261666
-0.249082
-0.293932
-0.242376
-0.259843
-0.276598
-0.241966
-0.293184
-0.277351
-0.266186
-0.279097
-0.277644
-0.268149
-0.203507
-0.253832
-0.288497
-0.288372
-0.285041
-0.208028
-0.24948
-0.15537
-0.147225
-0.207345
-0.234404
-0.235776
-0.206578
-0.235256
-0.258192
-0.254284
-0.24717
-0.258747
-0.247976
-0.2343
-0.235922
-0.252415
-0.260078
-0.254935
-0.259039
-0.237759
-0.249375
-0.162729
-0.172235
-0.201127
-0.286191
-0.279704
-0.245179
-0.284181
-0.247121
-0.196384
-0.384894
-0.33988
-0.373109
-0.340711
-0.382304
-0.375927
-0.34397
-0.41928
-0.421454
-0.405303
-0.418854
-0.40305
-0.421535
-0.419808
-0.387217
-0.3421
-0.380326
-0.349371
-0.377801
-0.346639
-0.389689
-0.417341
-0.399347
-0.417908
-0.417682
-0.415551
-0.401531
-0.418717
-0.217362
-0.256975
-0.299577
-0.291848
-0.261084
-0.212405
-0.295745
-0.242292
-0.262153
-0.260892
-0.260432
-0.262328
-0.258941
-0.243078
-0.20464
-0.232728
-0.231308
-0.205509
-0.19842
-0.206207
-0.24072
-0.254462
-0.260151
-0.260671
-0.261608
-0.257375
-0.238999
-0.221852
-0.302195
-0.267731
-0.302222
-0.263926
-0.299006
-0.226504
-0.190856
-0.181854
-0.293997
-0.336282
-0.291263
-0.334116
-0.339252
-0.295579
-0.288973
-0.222477
-0.253653
-0.266586
-0.260755
-0.228705
-0.251364
-0.263125
-0.179763
-0.217043
-0.215067
-0.172791
-0.298075
-0.339425
-0.348081
-0.302666
-0.343062
-0.303487
-0.298484
-0.217894
-0.257358
-0.259437
-0.24918
-0.250247
-0.260749
-0.213409
-0.397296
-0.356279
-0.391313
-0.364555
-0.4005
-0.387758
-0.359503
-0.42574
-0.422995
-0.407268
-0.424812
-0.423684
-0.409667
-0.424604
-0.394111
-0.352454
-0.382728
-0.352441
-0.392176
-0.385557
-0.353679
-0.428514
-0.414495
-0.429111
-0.426119
-0.431839
-0.411283
-0.426309
-0.274483
-0.288212
-0.32072
-0.327843
-0.285009
-0.283313
-0.318768
-0.224249
-0.263654
-0.261061
-0.26161
-0.262742
-0.243771
-0.258635
-0.172269
-0.220013
-0.222805
-0.169102
-0.221059
-0.217565
-0.21186
-0.255832
-0.257607
-0.249801
-0.253282
-0.255741
-0.210544
-0.233291
-0.315512
-0.272831
-0.30619
-0.233512
-0.277918
-0.304787
-0.567994
-0.605343
-0.521946
-0.605832
-0.568765
-0.519771
-0.608327
-0.590977
-0.609423
-0.616468
-0.621998
-0.603619
-0.621448
-0.59436
-0.588034
-0.606223
-0.602647
-0.612982
-0.602566
-0.587014
-0.612361
-0.568022
-0.607485
-0.519067
-0.608738
-0.518832
-0.612347
-0.568256
-0.586627
-0.574444
-0.585391
-0.613835
-0.59412
-0.594161
-0.597023
-0.613934
-0.594974
-0.57299
-0.584036
-0.584326
-0.548795
-0.565449
-0.550045
-0.420356
-0.444032
-0.51296
-0.420949
-0.513722
-0.513182
-0.435488
-0.445291
-0.427505
-0.512713
-0.568034
-0.551945
-0.552488
-0.568
-0.603096
-0.605054
-0.520748
-0.567706
-0.602679
-0.523719
-0.584556
-0.603665
-0.607246
-0.600988
-0.602265
-0.585128
-0.601209
-0.584945
-0.603325
-0.601597
-0.609181
-0.602134
-0.585238
-0.602459
-0.567569
-0.603142
-0.60076
-0.524169
-0.567624
-0.601377
-0.523559
-0.588583
-0.578116
-0.589883
-0.634239
-0.609926
-0.613896
-0.599746
-0.624974
-0.603698
-0.58129
-0.593633
-0.595183
-0.723598
-0.791096
-0.806748
-0.737113
-0.719202
-0.816267
-0.740315
-0.68254
-0.629882
-0.758875
-0.655722
-0.682485
-0.765623
-0.628935
-0.727762
-0.797305
-0.827988
-0.746069
-0.728638
-0.826549
-0.744431
-0.680438
-0.773648
-0.623685
-0.660286
-0.67821
-0.769171
-0.625971
-0.705078
-0.696695
-0.74305
-0.74318
-0.769864
-0.772227
-0.768536
-0.738543
-0.746796
-0.747696
-0.750472
-0.769231
-0.78383
-0.772196
-0.743968
-0.753181
-0.740886
-0.766498
-0.763285
-0.727987
-0.766799
-0.734811
-0.736124
-0.749136
-0.775242
-0.782296
-0.756895
-0.772623
-0.752536
-0.753741
-0.708759
-0.795895
-0.733412
-0.775445
-0.714754
-0.782943
-0.727818
-0.672781
-0.625316
-0.679311
-0.763681
-0.775828
-0.625282
-0.666085
-0.675256
-0.77695
-0.623556
-0.675009
-0.677022
-0.778782
-0.624362
-0.702309
-0.769102
-0.753892
-0.712669
-0.770003
-0.722487
-0.69073
-0.670312
-0.675764
-0.750988
-0.780272
-0.746329
-0.773881
-0.748856
-0.774508
-0.74919
-0.7603
-0.767131
-0.772077
-0.779113
-0.761292
-0.776075
-0.765605
-0.754814
-0.784879
-0.753905
-0.775925
-0.755632
-0.752776
-0.777822
-0.75624
-0.774978
-0.77759
-0.758625
-0.773903
-0.754501
-0.760662
-0.590167
-0.607576
-0.621354
-0.632667
-0.592483
-0.606752
-0.625318
-0.572258
-0.598159
-0.517817
-0.606979
-0.566458
-0.528867
-0.605606
-0.56628
-0.648386
-0.596739
-0.637619
-0.600607
-0.55962
-0.643284
-0.549796
-0.566949
-0.550524
-0.416374
-0.440244
-0.511582
-0.414597
-0.511241
-0.508703
-0.411125
-0.43901
-0.412594
-0.510119
-0.567954
-0.551057
-0.551296
-0.58851
-0.57628
-0.588865
-0.644341
-0.618445
-0.614976
-0.611255
-0.639592
-0.612361
-0.577719
-0.592745
-0.590693
-0.560704
-0.599989
-0.647955
-0.650051
-0.598515
-0.651761
-0.557378
-0.557069
-0.650197
-0.596324
-0.644223
-0.596756
-0.55934
-0.647705
-0.577141
-0.588386
-0.589196
-0.609502
-0.630523
-0.609939
-0.580016
-0.593778
-0.592815
-0.610489
-0.631903
-0.610251
-0.543338
-0.595694
-0.654539
-0.643537
-0.593778
-0.643489
-0.545406
-0.543011
-0.638766
-0.654227
-0.583307
-0.591222
-0.646126
-0.535599
-0.637168
-0.598047
-0.643123
-0.690133
-0.702984
-0.697859
-0.686932
-0.699668
-0.69071
-0.601759
-0.660866
-0.652782
-0.515746
-0.570651
-0.520554
-0.42245
-0.419743
-0.425375
-0.439416
-0.418148
-0.43775
-0.423347
-0.422875
-0.434726
-0.417077
-0.424494
-0.42327
-0.417398
-0.437864
-0.568427
-0.520402
-0.51925
-0.631313
-0.598368
-0.627289
-0.717346
-0.663558
-0.66845
-0.680363
-0.721446
-0.675688
-0.59544
-0.621198
-0.622458
-0.534422
-0.570421
-0.634646
-0.625154
-0.572812
-0.63876
-0.533075
-0.53172
-0.637589
-0.579534
-0.636954
-0.57478
-0.534267
-0.636253
-0.643342
-0.714035
-0.707881
-0.674998
-0.649926
-0.693557
-0.665089
-0.620238
-0.620084
-0.661693
-0.678405
-0.618558
-0.659168
-0.62185
-0.632006
-0.69777
-0.646966
-0.646642
-0.622245
-0.649507
-0.656396
-0.623589
-0.67179
-0.621696
-0.678272
-0.627106
-0.663845
-0.62156
-0.739688
-0.717254
-0.71755
-0.673887
-0.724202
-0.696116
-0.724702
-0.749457
-0.705066
-0.750551
-0.754015
-0.712144
-0.71976
-0.73771
-0.749605
-0.767514
-0.778366
-0.764391
-0.741922
-0.746253
-0.727681
-0.753786
-0.760907
-0.722808
-0.757308
-0.732871
-0.716135
-0.735679
-0.758814
-0.776764
-0.743037
-0.761873
-0.732135
-0.74522
-0.665964
-0.74255
-0.717669
-0.682546
-0.65634
-0.724973
-0.691359
-0.646039
-0.624745
-0.713733
-0.682672
-0.654587
-0.702531
-0.626889
-0.671471
-0.748056
-0.73341
-0.704813
-0.680763
-0.731268
-0.6964
-0.640691
-0.68161
-0.623262
-0.681305
-0.631893
-0.691281
-0.627234
-0.675241
-0.747227
-0.681239
-0.619891
-0.618895
-0.658698
-0.743551
-0.656641
-0.711152
-0.733413
-0.698601
-0.747285
-0.691137
-0.744819
-0.715473
-0.723969
-0.735961
-0.751745
-0.769885
-0.721025
-0.752863
-0.737391
-0.707377
-0.72772
-0.67677
-0.741033
-0.702476
-0.684612
-0.742567
-0.726245
-0.756505
-0.770824
-0.740699
-0.754316
-0.729072
-0.738722
-0.552754
-0.59958
-0.645324
-0.664616
-0.549577
-0.603182
-0.647999
-0.555279
-0.646234
-0.604486
-0.664233
-0.604367
-0.555402
-0.647821
-0.520838
-0.567512
-0.520478
-0.424566
-0.421201
-0.431274
-0.440411
-0.42255
-0.424813
-0.442551
-0.424256
-0.443722
-0.426493
-0.432232
-0.425627
-0.423742
-0.44168
-0.570809
-0.520962
-0.522886
-0.588709
-0.608124
-0.605765
-0.62854
-0.674035
-0.631049
-0.585652
-0.598101
-0.601378
-0.640357
-0.683339
-0.636988
-0.557882
-0.603006
-0.65675
-0.662341
-0.560122
-0.605042
-0.647993
-0.559614
-0.647734
-0.605047
-0.662777
-0.606745
-0.557483
-0.648187
-0.592001
-0.610038
-0.610865
-0.656855
-0.708677
-0.652384
-0.595683
-0.618538
-0.615797
-0.643648
-0.701738
-0.645697
-0.263737
-0.249281
-0.263721
-0.24039
-0.262998
-0.261951
-0.238979
-0.278702
-0.301431
-0.260953
-0.282376
-0.28226
-0.258472
-0.297586
-0.264141
-0.241035
-0.261259
-0.240833
-0.267471
-0.259542
-0.237979
-0.277401
-0.257043
-0.292759
-0.2818
-0.275244
-0.258051
-0.295748
-0.245037
-0.303655
-0.313388
-0.316505
-0.323567
-0.227646
-0.264101
-0.284048
-0.287961
-0.336185
-0.308065
-0.285106
-0.301692
-0.282428
-0.28852
-0.300482
-0.312865
-0.31936
-0.357157
-0.315427
-0.30324
-0.310612
-0.289842
-0.284474
-0.286525
-0.279438
-0.290003
-0.292488
-0.277337
-0.297608
-0.303793
-0.353984
-0.307333
-0.310157
-0.308568
-0.296583
-0.215881
-0.166319
-0.162233
-0.202486
-0.250617
-0.192762
-0.228356
-0.216098
-0.180715
-0.21521
-0.25696
-0.205427
-0.268208
-0.298239
-0.269108
-0.24786
-0.265538
-0.274283
-0.256504
-0.274425
-0.288029
-0.263206
-0.272538
-0.276519
-0.253292
-0.288631
-0.273564
-0.306779
-0.271418
-0.309435
-0.277191
-0.275604
-0.283423
-0.274344
-0.257079
-0.291484
-0.276125
-0.275172
-0.256421
-0.28909
-0.294946
-0.285058
-0.357142
-0.279262
-0.271812
-0.366351
-0.292594
-0.298225
-0.301909
-0.347216
-0.339573
-0.296872
-0.300463
-0.363969
-0.287696
-0.263254
-0.26549
-0.291102
-0.280306
-0.265583
-0.332828
-0.295483
-0.317974
-0.33257
-0.304653
-0.303291
-0.322183
-0.295118
-0.194228
-0.16117
-0.165648
-0.234687
-0.270679
-0.230406
-0.184732
-0.178086
-0.170432
-0.221804
-0.268182
-0.227632
-0.382305
-0.376055
-0.404493
-0.410971
-0.384524
-0.374276
-0.40893
-0.353779
-0.326135
-0.314918
-0.341238
-0.329272
-0.343342
-0.350652
-0.355639
-0.346781
-0.333687
-0.316604
-0.331192
-0.358017
-0.344779
-0.380512
-0.403429
-0.37119
-0.404371
-0.373077
-0.407254
-0.377518
-0.40058
-0.443517
-0.402753
-0.332666
-0.369755
-0.367391
-0.362576
-0.32996
-0.365048
-0.445321
-0.406853
-0.4048
-0.484156
-0.556292
-0.554363
-0.667301
-0.77236
-0.669159
-0.481607
-0.548256
-0.551825
-0.672159
-0.772984
-0.670754
-0.469228
-0.440123
-0.441518
-0.476949
-0.477665
-0.44316
-0.467817
-0.494145
-0.503878
-0.526648
-0.563461
-0.526012
-0.495557
-0.502403
-0.470229
-0.441272
-0.479481
-0.445984
-0.478434
-0.471713
-0.444355
-0.493281
-0.525496
-0.563403
-0.500362
-0.525709
-0.492064
-0.501533
-0.388458
-0.37778
-0.409026
-0.412707
-0.386442
-0.379457
-0.414561
-0.363769
-0.34184
-0.325297
-0.354635
-0.339728
-0.365777
-0.352599
-0.362159
-0.348731
-0.335762
-0.323121
-0.338018
-0.360002
-0.350653
-0.389974
-0.410465
-0.382962
-0.417677
-0.391863
-0.381148
-0.415925
-0.397986
-0.43687
-0.395577
-0.318004
-0.351302
-0.354592
-0.359784
-0.320874
-0.357088
-0.434554
-0.390095
-0.393282
-0.465047
-0.436336
-0.43993
-0.476185
-0.438098
-0.475043
-0.466534
-0.489202
-0.498367
-0.524667
-0.564139
-0.52486
-0.48801
-0.498386
-0.463818
-0.435313
-0.433878
-0.472617
-0.436554
-0.474282
-0.461614
-0.489935
-0.525338
-0.563316
-0.499502
-0.524758
-0.491003
-0.498722
-0.370423
-0.394906
-0.373296
-0.405719
-0.368248
-0.372064
-0.398135
-0.344537
-0.323991
-0.309795
-0.341247
-0.320102
-0.348561
-0.339091
-0.342764
-0.339401
-0.315262
-0.309633
-0.318213
-0.340323
-0.339735
-0.3717
-0.400979
-0.371853
-0.402646
-0.375583
-0.369843
-0.399
-0.442423
-0.418858
-0.412693
-0.485306
-0.518779
-0.404876
-0.441094
-0.486895
-0.51995
-0.64416
-0.720211
-0.635646
-0.488888
-0.517216
-0.442402
-0.446264
-0.531084
-0.402297
-0.526825
-0.443542
-0.404309
-0.484438
-0.610249
-0.708021
-0.512129
-0.626548
-0.48194
-0.515067
-0.425372
-0.373486
-0.374022
-0.317048
-0.287036
-0.327118
-0.446383
-0.384821
-0.370838
-0.334485
-0.29321
-0.330394
-0.464069
-0.561491
-0.532921
-0.664205
-0.786456
-0.651739
-0.466747
-0.544472
-0.530341
-0.726886
-0.856784
-0.663893
-0.360252
-0.374268
-0.390418
-0.370154
-0.36704
-0.379216
-0.358898
-0.330057
-0.303328
-0.287351
-0.297263
-0.31724
-0.30959
-0.31952
-0.349038
-0.366941
-0.370262
-0.318687
-0.339298
-0.371945
-0.330266
-0.336545
-0.33718
-0.314058
-0.302809
-0.311735
-0.339659
-0.332849
-0.37641
-0.418876
-0.379747
-0.308418
-0.34933
-0.345503
-0.339263
-0.306017
-0.342604
-0.423977
-0.388536
-0.38404
-0.452803
-0.421083
-0.439169
-0.484118
-0.426867
-0.445136
-0.476114
-0.48336
-0.499722
-0.526463
-0.583214
-0.487577
-0.521373
-0.500884
-0.455466
-0.432186
-0.432298
-0.473187
-0.460315
-0.428347
-0.467723
-0.482221
-0.572144
-0.509963
-0.6389
-0.478571
-0.541226
-0.508758
-0.441965
-0.428318
-0.465946
-0.516033
-0.465725
-0.444193
-0.418852
-0.448392
-0.46431
-0.447252
-0.418994
-0.461946
-0.416636
-0.450146
-0.447317
-0.413538
-0.457822
-0.443794
-0.460232
-0.446109
-0.414545
-0.441758
-0.511418
-0.458937
-0.411747
-0.4645
-0.415991
-0.442354
-0.396797
-0.438294
-0.492941
-0.378375
-0.391053
-0.391645
-0.497478
-0.395016
-0.45163
-0.451688
-0.480303
-0.479219
-0.450357
-0.465859
-0.478206
-0.481043
-0.46269
-0.497539
-0.518114
-0.597473
-0.530122
-0.529655
-0.519314
-0.496285
-0.498553
-0.528903
-0.598709
-0.521746
-0.528906
-0.520481
-0.499428
-0.478984
-0.444572
-0.480492
-0.458916
-0.478685
-0.477555
-0.460621
-0.48531
-0.476468
-0.468432
-0.479365
-0.470598
-0.482375
-0.482095
-0.503244
-0.524432
-0.602093
-0.53145
-0.524213
-0.529674
-0.503446
-0.502551
-0.52666
-0.522653
-0.602981
-0.523989
-0.500393
-0.529923
-0.486551
-0.491032
-0.476974
-0.50955
-0.471167
-0.488332
-0.488328
-0.452285
-0.455521
-0.460407
-0.463485
-0.448085
-0.485786
-0.45538
-0.444631
-0.448319
-0.430994
-0.438436
-0.451952
-0.448036
-0.417884
-0.442837
-0.407633
-0.455359
-0.432648
-0.453072
-0.443579
-0.410317
-0.453092
-0.448594
-0.485555
-0.451597
-0.45151
-0.491178
-0.453611
-0.397267
-0.48698
-0.392647
-0.51692
-0.429139
-0.426094
-0.410607
-0.51213
-0.418932
-0.475893
-0.371422
-0.388026
-0.49506
-0.562626
-0.59715
-0.471437
-0.470679
-0.594602
-0.496096
-0.498158
-0.486584
-0.56499
-0.511114
-0.496335
-0.568974
-0.48883
-0.494103
-0.559382
-0.468109
-0.587499
-0.492619
-0.469582
-0.591233
-0.499697
-0.57616
-0.515331
-0.492967
-0.572946
-0.501328
-0.490764
-0.513458
-0.424419
-0.424855
-0.371284
-0.35205
-0.367281
-0.512736
-0.427228
-0.425319
-0.36415
-0.349567
-0.365155
-0.770696
-0.611859
-0.769706
-0.678834
-0.818973
-0.814675
-0.808678
-0.674456
-0.812158
-0.612355
-0.767708
-0.768661
-0.611739
-0.769245
-0.768833
-0.790165
-0.654009
-0.79484
-0.610042
-0.766829
-0.767897
-0.803275
-0.659307
-0.799187
-0.501136
-0.598647
-0.473271
-0.568044
-0.497783
-0.600657
-0.47682
-0.509271
-0.503717
-0.527842
-0.584984
-0.582588
-0.501167
-0.511937
-0.506413
-0.578761
-0.495344
-0.52565
-0.50337
-0.581742
-0.498343
-0.504132
-0.565066
-0.599719
-0.482224
-0.59904
-0.479302
-0.507091
-0.445481
-0.449226
-0.437369
-0.415828
-0.449776
-0.415402
-0.446576
-0.454246
-0.466666
-0.424765
-0.460096
-0.452424
-0.469007
-0.428059
-0.444891
-0.440625
-0.454178
-0.41649
-0.444552
-0.450733
-0.415157
-0.455891
-0.434895
-0.464125
-0.473352
-0.470987
-0.431612
-0.458029
-0.49729
-0.592181
-0.46353
-0.471825
-0.591893
-0.497544
-0.460125
-0.508224
-0.519591
-0.611156
-0.584777
-0.573015
-0.522023
-0.506685
-0.50853
-0.565344
-0.606057
-0.521488
-0.569256
-0.522085
-0.507191
-0.49559
-0.467435
-0.585054
-0.45838
-0.590008
-0.458647
-0.493069
-0.552253
-0.512282
-0.52087
-0.381335
-0.40565
-0.388783
-0.55636
-0.482624
-0.477712
-0.467225
-0.551554
-0.472421
-0.404816
-0.404561
-0.397283
-0.491563
-0.585121
-0.469064
-0.545105
-0.475609
-0.496448
-0.530614
-0.50618
-0.524647
-0.60385
-0.528905
-0.525683
-0.504147
-0.534254
-0.506373
-0.561241
-0.52246
-0.603136
-0.524787
-0.506431
-0.539523
-0.491562
-0.548469
-0.478399
-0.513531
-0.49006
-0.477277
-0.518422
-0.413001
-0.374693
-0.378561
-0.439344
-0.531704
-0.446976
-0.417544
-0.381347
-0.379951
-0.460338
-0.536971
-0.454661
-0.450371
-0.45064
-0.420033
-0.433591
-0.448522
-0.450702
-0.422564
-0.465498
-0.484009
-0.477569
-0.448696
-0.481485
-0.445318
-0.46789
-0.463116
-0.439213
-0.475863
-0.474915
-0.478796
-0.460496
-0.442663
-0.452087
-0.432183
-0.452021
-0.427687
-0.451042
-0.424683
-0.454145
-0.48245
-0.468212
-0.456167
-0.476314
-0.466436
-0.474313
-0.483639
-0.494441
-0.505807
-0.516407
-0.481632
-0.509182
-0.484664
-0.491584
-0.497353
-0.486738
-0.515698
-0.51088
-0.512778
-0.484714
-0.496885
-0.479905
-0.455223
-0.462791
-0.469683
-0.465844
-0.471988
-0.477321
-0.494802
-0.43798
-0.498837
-0.649993
-0.568106
-0.562224
-0.552203
-0.643422
-0.556307
-0.445831
-0.508683
-0.504378
-0.49274
-0.430582
-0.495154
-0.646051
-0.563842
-0.564233
-0.56427
-0.647956
-0.5643
-0.432113
-0.498536
-0.497259
-0.482353
-0.497767
-0.47314
-0.468023
-0.497009
-0.480763
-0.475322
-0.49107
-0.503712
-0.554872
-0.528645
-0.528973
-0.502092
-0.49269
-0.490124
-0.529454
-0.554699
-0.499883
-0.52936
-0.501151
-0.488768
-0.483387
-0.466994
-0.494478
-0.477833
-0.495825
-0.476571
-0.484966
-0.488775
-0.416017
-0.484603
-0.611695
-0.529991
-0.535531
-0.544331
-0.616369
-0.540113
-0.408531
-0.473594
-0.47959
-0.479055
-0.499052
-0.469242
-0.47233
-0.470688
-0.498953
-0.4801
-0.486725
-0.498197
-0.554155
-0.530023
-0.497972
-0.529881
-0.486545
-0.48728
-0.529928
-0.553745
-0.499056
-0.498292
-0.529422
-0.488082
-0.478084
-0.4699
-0.467344
-0.499842
-0.469008
-0.499891
-0.477269
-0.485135
-0.464484
-0.476882
-0.458483
-0.482313
-0.46474
-0.479636
-0.495495
-0.505886
-0.532073
-0.490658
-0.508183
-0.485589
-0.493806
-0.49456
-0.483493
-0.503951
-0.528993
-0.506773
-0.491807
-0.483771
-0.486436
-0.459173
-0.465735
-0.481496
-0.465716
-0.481058
-0.485475
-0.514979
-0.516843
-0.624941
-0.565107
-0.517329
-0.621481
-0.513924
-0.513422
-0.614905
-0.560971
-0.510513
-0.617961
-0.513066
-0.511847
-0.494935
-0.412564
-0.409193
-0.501182
-0.383794
-0.43216
-0.38207
-0.490806
-0.494782
-0.411229
-0.408734
-0.387386
-0.46414
-0.431012
-0.383528
-0.477393
-0.600006
-0.782371
-0.780417
-0.82485
-0.696041
-0.832214
-0.608025
-0.768829
-0.771698
-0.850841
-0.704679
-0.844765
-0.596855
-0.783103
-0.78219
-0.869499
-0.72667
-0.864982
-0.597087
-0.782216
-0.78231
-0.856523
-0.721365
-0.860488
-0.513084
-0.506721
-0.585127
-0.539758
-0.515213
-0.59426
-0.506743
-0.507889
-0.563611
-0.598922
-0.484543
-0.510173
-0.603599
-0.485688
-0.507149
-0.610778
-0.508423
-0.548868
-0.511104
-0.607309
-0.503998
-0.468646
-0.459532
-0.443817
-0.447129
-0.45146
-0.462327
-0.465658
-0.485445
-0.502612
-0.478884
-0.507738
-0.488554
-0.499536
-0.475172
-0.471482
-0.44747
-0.459961
-0.467289
-0.474515
-0.456148
-0.464726
-0.482577
-0.466932
-0.503476
-0.494707
-0.496901
-0.470806
-0.479844
-0.47618
-0.499567
-0.459285
-0.45962
-0.504715
-0.475848
-0.458568
-0.508382
-0.516106
-0.647366
-0.638689
-0.643232
-0.515437
-0.508511
-0.506337
-0.627947
-0.646808
-0.515551
-0.638037
-0.515155
-0.505368
-0.479957
-0.46134
-0.550161
-0.457754
-0.51618
-0.485846
-0.45937
-0.48583
-0.434442
-0.495117
-0.646693
-0.563648
-0.561993
-0.561432
-0.658688
-0.548503
-0.434511
-0.499622
-0.499407
-0.395252
-0.43476
-0.427128
-0.487203
-0.570822
-0.49213
-0.396526
-0.41061
-0.418707
-0.502817
-0.57682
-0.497965
-0.391256
-0.443034
-0.451359
-0.525339
-0.597178
-0.519772
-0.391721
-0.467766
-0.460058
-0.508727
-0.591984
-0.514071
-0.476854
-0.494191
-0.460406
-0.463246
-0.462629
-0.475477
-0.497438
-0.489148
-0.499922
-0.575088
-0.53172
-0.503824
-0.487218
-0.535914
-0.493446
-0.584574
-0.517903
-0.629111
-0.514313
-0.499436
-0.543976
-0.476475
-0.466854
-0.465762
-0.500211
-0.476767
-0.464068
-0.499596
-0.459987
-0.436327
-0.457717
-0.442401
-0.46332
-0.45539
-0.439171
-0.472652
-0.486817
-0.451034
-0.487956
-0.470451
-0.488271
-0.455436
-0.458703
-0.434752
-0.452824
-0.430095
-0.456224
-0.454799
-0.435025
-0.473728
-0.462164
-0.492437
-0.492076
-0.488311
-0.477467
-0.459258
-0.239072
-0.170912
-0.192938
-0.237978
-0.194393
-0.261358
-0.262629
-0.262053
-0.262109
-0.260612
-0.260717
-0.259744
-0.261401
-0.248047
-0.255055
-0.253976
-0.249625
-0.246559
-0.243506
-0.246209
-0.244021
-0.270957
-0.260529
-0.235793
-0.209723
-0.211011
-0.259803
-0.270673
-0.248604
-0.254463
-0.254416
-0.248439
-0.270326
-0.211782
-0.259542
-0.235904
-0.271261
-0.210532
-0.259562
-0.272047
-0.25942
-0.212974
-0.237432
-0.270893
-0.212769
-0.259666
-0.249261
-0.256326
-0.249623
-0.255822
-0.246281
-0.243241
-0.246201
-0.243142
-0.24898
-0.254789
-0.255331
-0.24863
-0.271252
-0.211739
-0.237226
-0.259345
-0.212314
-0.271056
-0.259385
-0.198056
-0.241243
-0.260593
-0.277855
-0.265904
-0.199158
-0.242876
-0.144506
-0.140449
-0.213895
-0.239049
-0.239625
-0.214359
-0.233499
-0.257234
-0.250029
-0.244509
-0.256462
-0.233619
-0.24345
-0.234467
-0.242971
-0.255318
-0.250539
-0.256154
-0.234464
-0.244738
-0.154236
-0.15746
-0.194798
-0.277737
-0.274783
-0.242031
-0.269404
-0.194097
-0.241055
-0.358127
-0.316345
-0.312932
-0.353022
-0.360776
-0.313062
-0.351076
-0.39261
-0.404496
-0.376426
-0.397804
-0.377208
-0.391563
-0.404471
-0.355655
-0.311127
-0.306794
-0.348003
-0.309815
-0.349514
-0.35358
-0.394274
-0.380057
-0.406252
-0.398571
-0.396234
-0.378429
-0.405195
-0.201345
-0.240903
-0.255257
-0.271045
-0.240552
-0.200399
-0.249709
-0.237225
-0.255331
-0.246344
-0.242667
-0.255001
-0.242198
-0.238632
-0.215849
-0.239029
-0.238909
-0.215178
-0.162122
-0.163473
-0.23635
-0.242714
-0.24705
-0.255209
-0.25506
-0.24247
-0.235428
-0.160677
-0.15902
-0.202169
-0.269247
-0.240307
-0.238972
-0.240194
-0.244057
-0.203397
-0.213446
-0.23997
-0.239271
-0.261288
-0.239544
-0.211702
-0.239757
-0.190185
-0.167006
-0.220264
-0.222649
-0.239286
-0.240124
-0.220576
-0.245724
-0.25955
-0.245472
-0.248114
-0.257176
-0.244794
-0.253419
-0.178327
-0.174599
-0.242157
-0.241668
-0.255352
-0.244575
-0.25597
-0.240755
-0.242334
-0.2173
-0.261502
-0.209624
-0.243859
-0.238323
-0.242099
-0.225043
-0.346398
-0.288346
-0.302877
-0.341332
-0.34344
-0.293944
-0.343216
-0.388819
-0.40363
-0.375381
-0.399065
-0.389626
-0.375364
-0.40438
-0.35
-0.304684
-0.302922
-0.346169
-0.351066
-0.300049
-0.345392
-0.386469
-0.37105
-0.403661
-0.395837
-0.384834
-0.372834
-0.403544
-0.208123
-0.240013
-0.238871
-0.263625
-0.238824
-0.210105
-0.23897
-0.239588
-0.255053
-0.244901
-0.241736
-0.255153
-0.238985
-0.241159
-0.217789
-0.238578
-0.238225
-0.218978
-0.163565
-0.162456
-0.168287
-0.171635
-0.239521
-0.24119
-0.244927
-0.254937
-0.254894
-0.241449
-0.239958
-0.206886
-0.263789
-0.238967
-0.23624
-0.204272
-0.23829
-0.238513
-0.233379
-0.161441
-0.186561
-0.234056
-0.185845
-0.254749
-0.25642
-0.254358
-0.256676
-0.255433
-0.257823
-0.256183
-0.257204
-0.249233
-0.254201
-0.254008
-0.248935
-0.267956
-0.258501
-0.210399
-0.234384
-0.270071
-0.208914
-0.257426
-0.248033
-0.245897
-0.247955
-0.245769
-0.268922
-0.208803
-0.234571
-0.257623
-0.209398
-0.268249
-0.257777
-0.249068
-0.253146
-0.253659
-0.248713
-0.26722
-0.258286
-0.209481
-0.234491
-0.268116
-0.209017
-0.257779
-0.247964
-0.251753
-0.247916
-0.25195
-0.247865
-0.24613
-0.247947
-0.246372
-0.267438
-0.209437
-0.234653
-0.257725
-0.20911
-0.268363
-0.257761
-0.248225
-0.25277
-0.252353
-0.248454
-0.254542
-0.256139
-0.238719
-0.258231
-0.240065
-0.254218
-0.255835
-0.242795
-0.22581
-0.222845
-0.244325
-0.249303
-0.248474
-0.248566
-0.24896
-0.262195
-0.260513
-0.248153
-0.257428
-0.26023
-0.256323
-0.262978
-0.261702
-0.256441
-0.259815
-0.248153
-0.259892
-0.261509
-0.256195
-0.241671
-0.218059
-0.220278
-0.240785
-0.255319
-0.258723
-0.243836
-0.257501
-0.242264
-0.256146
-0.256394
-0.286591
-0.279763
-0.311214
-0.268347
-0.286607
-0.311876
-0.265646
-0.366466
-0.405832
-0.35206
-0.380121
-0.351508
-0.366998
-0.40726
-0.290492
-0.278414
-0.312888
-0.259742
-0.31222
-0.263913
-0.292507
-0.362772
-0.348451
-0.407606
-0.378751
-0.358675
-0.350257
-0.407006
-0.252464
-0.255208
-0.25724
-0.236755
-0.255643
-0.25323
-0.234729
-0.259939
-0.258462
-0.248405
-0.255911
-0.258791
-0.255919
-0.259566
-0.247541
-0.247969
-0.247728
-0.248137
-0.23544
-0.200777
-0.204835
-0.233877
-0.260512
-0.255772
-0.248812
-0.259293
-0.259214
-0.256525
-0.26081
-0.251523
-0.255619
-0.254385
-0.229015
-0.254581
-0.232631
-0.250533
-0.237566
-0.21439
-0.239145
-0.210554
-0.245391
-0.250051
-0.252
-0.215768
-0.213331
-0.251706
-0.245772
-0.223385
-0.175172
-0.173815
-0.224687
-0.256182
-0.257188
-0.251406
-0.246893
-0.256241
-0.256165
-0.253178
-0.242016
-0.244518
-0.244241
-0.242417
-0.244417
-0.250742
-0.213946
-0.248876
-0.212384
-0.243084
-0.250755
-0.257277
-0.255043
-0.247663
-0.256941
-0.256815
-0.254463
-0.257509
-0.224457
-0.180891
-0.176586
-0.225762
-0.306611
-0.275913
-0.316937
-0.250359
-0.312017
-0.315879
-0.252145
-0.370912
-0.406721
-0.353063
-0.382292
-0.36922
-0.354166
-0.40682
-0.300942
-0.276594
-0.313967
-0.256808
-0.296615
-0.314836
-0.253873
-0.373507
-0.356762
-0.407112
-0.383534
-0.37525
-0.355359
-0.407573
-0.247435
-0.252551
-0.252205
-0.217015
-0.253223
-0.246075
-0.219945
-0.258688
-0.258272
-0.248195
-0.25566
-0.257763
-0.25931
-0.255507
-0.243996
-0.244948
-0.245495
-0.243053
-0.230889
-0.197367
-0.232583
-0.19361
-0.258381
-0.255302
-0.248317
-0.257178
-0.257594
-0.255562
-0.257702
-0.248403
-0.253155
-0.253971
-0.226018
-0.24973
-0.253528
-0.222643
-0.229452
-0.185827
-0.227408
-0.190348
-0.678056
-0.620817
-0.676347
-0.650075
-0.709743
-0.704429
-0.680701
-0.645684
-0.694675
-0.612461
-0.667507
-0.671912
-0.453177
-0.450594
-0.554337
-0.453447
-0.449973
-0.423745
-0.411198
-0.413943
-0.426873
-0.410521
-0.425587
-0.42613
-0.42366
-0.426401
-0.411608
-0.414193
-0.423995
-0.410896
-0.425664
-0.453386
-0.556263
-0.449051
-0.450288
-0.457889
-0.680391
-0.631205
-0.681406
-0.619627
-0.63606
-0.646044
-0.66925
-0.623981
-0.656063
-0.634692
-0.674978
-0.682541
-0.546072
-0.619723
-0.628055
-0.581102
-0.538296
-0.622045
-0.586687
-0.556755
-0.519167
-0.600586
-0.599839
-0.554515
-0.593545
-0.525359
-0.571515
-0.61666
-0.606582
-0.598986
-0.578464
-0.605829
-0.594242
-0.616597
-0.636108
-0.632644
-0.644278
-0.6468
-0.618005
-0.630487
-0.629768
-0.669473
-0.660366
-0.595031
-0.603787
-0.593301
-0.576364
-0.573359
-0.576384
-0.582774
-0.580685
-0.580277
-0.601075
-0.587827
-0.589959
-0.62142
-0.60699
-0.623012
-0.63511
-0.634351
-0.603403
-0.621574
-0.631036
-0.634664
-0.652171
-0.66234
-0.64425
-0.635065
-0.631154
-0.62071
-0.620964
-0.638799
-0.596751
-0.635588
-0.600145
-0.619856
-0.628853
-0.640094
-0.666623
-0.633596
-0.640037
-0.627221
-0.630295
-0.527844
-0.622623
-0.576518
-0.61292
-0.533164
-0.618756
-0.57173
-0.525778
-0.609796
-0.614323
-0.564681
-0.61622
-0.568189
-0.522368
-0.606663
-0.598295
-0.599175
-0.601502
-0.597678
-0.596332
-0.60831
-0.604307
-0.601149
-0.586777
-0.593012
-0.5905
-0.615628
-0.630164
-0.609571
-0.638453
-0.611974
-0.633113
-0.618828
-0.616017
-0.648871
-0.643061
-0.731077
-0.618661
-0.639447
-0.645007
-0.613426
-0.628983
-0.616111
-0.6316
-0.614145
-0.613955
-0.630847
-0.61851
-0.636399
-0.720192
-0.638558
-0.637167
-0.622227
-0.645365
-0.460082
-0.453611
-0.505664
-0.522279
-0.457589
-0.456359
-0.525355
-0.43479
-0.411558
-0.420348
-0.431239
-0.414141
-0.429554
-0.43791
-0.429687
-0.433242
-0.413245
-0.416696
-0.428849
-0.412792
-0.436289
-0.467794
-0.504478
-0.448079
-0.46282
-0.449124
-0.523724
-0.610447
-0.60182
-0.601594
-0.58145
-0.588422
-0.593564
-0.605417
-0.586165
-0.599102
-0.591071
-0.588468
-0.595288
-0.615681
-0.621466
-0.633315
-0.629556
-0.603577
-0.621725
-0.609607
-0.662162
-0.643663
-0.612371
-0.599947
-0.617206
-0.403058
-0.429084
-0.436674
-0.43324
-0.433502
-0.39816
-0.422639
-0.404298
-0.492404
-0.429945
-0.433682
-0.404079
-0.491661
-0.510268
-0.478714
-0.425992
-0.435889
-0.433964
-0.428865
-0.441636
-0.419767
-0.423258
-0.516939
-0.439169
-0.451446
-0.467538
-0.505468
-0.445979
-0.476193
-0.486008
-0.432085
-0.403843
-0.43017
-0.436635
-0.429787
-0.480203
-0.489474
-0.423388
-0.444514
-0.402283
-0.493903
-0.439882
-0.426461
-0.527607
-0.456569
-0.454657
-0.4881
-0.452613
-0.488516
-0.528533
-0.413043
-0.435027
-0.449456
-0.441735
-0.445854
-0.402938
-0.451117
-0.53924
-0.523844
-0.506113
-0.498263
-0.536369
-0.505385
-0.40826
-0.446707
-0.496442
-0.427054
-0.450607
-0.455315
-0.600306
-0.622558
-0.622325
-0.648979
-0.684622
-0.646832
-0.597788
-0.621844
-0.621006
-0.647347
-0.68237
-0.646784
-0.590365
-0.573143
-0.576504
-0.56886
-0.56549
-0.56658
-0.594922
-0.583298
-0.581185
-0.560574
-0.562148
-0.562755
-0.60911
-0.607668
-0.575528
-0.626467
-0.625951
-0.582556
-0.603308
-0.635563
-0.637592
-0.646739
-0.660609
-0.646008
-0.635377
-0.639475
-0.61323
-0.611294
-0.630749
-0.591244
-0.629019
-0.615761
-0.587585
-0.633252
-0.647597
-0.659409
-0.640321
-0.644216
-0.629935
-0.639274
-0.516654
-0.594743
-0.589006
-0.553194
-0.520266
-0.597839
-0.553286
-0.517006
-0.599195
-0.607798
-0.559908
-0.519581
-0.602775
-0.556754
-0.576472
-0.566654
-0.564809
-0.553443
-0.553215
-0.553481
-0.573586
-0.561306
-0.561073
-0.558589
-0.557322
-0.557268
-0.58716
-0.61777
-0.553577
-0.62935
-0.545483
-0.623742
-0.593964
-0.614993
-0.637695
-0.636351
-0.665346
-0.610898
-0.639719
-0.639909
-0.581361
-0.613093
-0.535513
-0.61668
-0.577052
-0.539065
-0.619607
-0.619939
-0.650544
-0.666386
-0.641272
-0.643498
-0.624767
-0.641934
-0.522705
-0.463415
-0.47508
-0.550383
-0.518497
-0.459463
-0.535798
-0.472304
-0.43103
-0.405484
-0.430472
-0.429073
-0.477408
-0.431301
-0.466786
-0.433984
-0.424705
-0.406477
-0.460606
-0.427476
-0.431772
-0.526773
-0.468805
-0.455845
-0.503256
-0.529637
-0.457872
-0.519599
-0.536545
-0.532772
-0.460146
-0.552773
-0.581119
-0.568617
-0.573959
-0.550462
-0.579371
-0.567521
-0.560045
-0.565172
-0.567057
-0.47357
-0.532813
-0.451653
-0.526002
-0.440827
-0.538994
-0.552806
-0.546612
-0.465296
-0.510642
-0.42409
-0.518839
-0.430358
-0.558787
-0.558061
-0.553742
-0.260373
-0.225993
-0.23144
-0.214305
-0.187426
-0.204153
-0.26396
-0.242188
-0.236361
-0.185579
-0.192114
-0.195307
-0.275054
-0.303419
-0.300849
-0.321183
-0.348841
-0.323261
-0.272673
-0.296514
-0.299141
-0.326608
-0.34983
-0.324536
-0.283763
-0.305007
-0.307491
-0.333483
-0.355284
-0.331524
-0.286549
-0.312055
-0.309621
-0.327785
-0.353906
-0.329789
-0.445067
-0.480799
-0.44551
-0.389114
-0.416476
-0.41562
-0.414254
-0.388194
-0.415035
-0.480635
-0.446273
-0.445746
-0.524465
-0.588304
-0.588891
-0.686025
-0.76122
-0.685703
-0.524561
-0.589319
-0.589364
-0.682777
-0.75932
-0.684496
-0.444739
-0.480438
-0.444082
-0.38391
-0.410909
-0.411934
-0.413618
-0.384947
-0.412697
-0.480189
-0.442786
-0.44359
-0.504033
-0.52156
-0.524194
-0.554426
-0.524905
-0.506983
-0.5191
-0.474559
-0.457447
-0.484721
-0.445288
-0.485919
-0.47865
-0.441834
-0.495661
-0.532848
-0.55672
-0.506374
-0.528155
-0.490904
-0.51276
-0.476415
-0.439334
-0.438989
-0.404708
-0.375354
-0.405292
-0.476403
-0.438007
-0.439118
-0.406746
-0.376137
-0.405827
-0.522757
-0.587438
-0.588653
-0.687096
-0.765693
-0.687713
-0.523521
-0.589681
-0.589329
-0.685745
-0.767215
-0.687834
-0.439955
-0.477831
-0.44064
-0.380369
-0.41015
-0.409071
-0.407276
-0.379272
-0.40819
-0.478516
-0.442261
-0.441355
-0.536871
-0.476467
-0.531932
-0.672093
-0.57882
-0.584546
-0.595068
-0.6773
-0.590929
-0.467045
-0.515725
-0.521772
-0.497041
-0.478967
-0.447578
-0.487116
-0.479974
-0.498915
-0.485797
-0.498003
-0.505254
-0.55472
-0.526739
-0.52629
-0.507809
-0.494393
-0.502332
-0.521895
-0.552593
-0.512004
-0.522196
-0.510884
-0.503829
-0.491604
-0.456689
-0.490892
-0.479241
-0.488275
-0.486823
-0.483872
-0.467263
-0.426999
-0.464985
-0.660466
-0.545426
-0.550666
-0.55669
-0.660831
-0.553574
-0.435608
-0.460771
-0.463629
-0.500011
-0.477458
-0.488593
-0.450422
-0.489019
-0.500154
-0.477257
-0.505064
-0.516975
-0.551465
-0.515405
-0.514495
-0.518894
-0.506398
-0.504901
-0.520271
-0.513269
-0.551236
-0.513604
-0.505029
-0.51916
-0.499569
-0.453886
-0.486223
-0.476939
-0.489305
-0.478194
-0.496804
-0.484257
-0.455918
-0.466592
-0.481333
-0.483347
-0.473042
-0.483235
-0.541622
-0.492082
-0.545709
-0.692048
-0.610758
-0.607263
-0.599591
-0.688301
-0.603099
-0.497802
-0.554668
-0.550402
-0.545784
-0.514545
-0.538642
-0.556492
-0.536309
-0.520538
-0.53676
-0.456272
-0.44714
-0.514829
-0.541778
-0.458672
-0.536483
-0.513014
-0.53571
-0.525424
-0.536438
-0.525986
-0.465158
-0.55136
-0.450761
-0.530642
-0.546713
-0.461008
-0.75205
-0.627379
-0.747911
-0.848479
-0.926547
-0.925874
-0.926363
-0.844874
-0.924572
-0.625229
-0.74069
-0.744742
-0.579443
-0.743853
-0.747502
-0.915415
-0.829915
-0.918722
-0.577324
-0.748875
-0.747371
-0.922447
-0.835436
-0.923155
-0.514948
-0.528711
-0.541201
-0.502757
-0.502773
-0.529758
-0.514511
-0.514247
-0.505105
-0.542857
-0.527897
-0.504105
-0.529607
-0.511718
-0.452583
-0.472142
-0.454824
-0.654265
-0.537908
-0.532844
-0.526213
-0.653701
-0.529437
-0.464081
-0.460121
-0.456557
-0.578144
-0.536644
-0.581658
-0.722409
-0.64128
-0.638374
-0.631756
-0.718671
-0.634577
-0.54168
-0.589295
-0.585824
-0.505165
-0.523049
-0.54799
-0.511989
-0.522291
-0.507657
-0.510341
-0.506175
-0.508421
-0.525923
-0.546517
-0.523581
-0.509256
-0.508601
-0.521055
-0.573109
-0.56924
-0.615415
-0.703006
-0.618975
-0.515322
-0.560028
-0.564261
-0.626824
-0.707925
-0.623708
-0.631935
-0.602306
-0.633735
-0.758296
-0.685122
-0.681523
-0.679416
-0.757811
-0.680131
-0.605097
-0.639795
-0.635751
-0.553198
-0.565969
-0.546958
-0.652958
-0.515574
-0.515611
-0.523805
-0.651758
-0.517511
-0.561646
-0.530911
-0.539948
-0.629596
-0.592778
-0.627243
-0.755535
-0.670099
-0.67393
-0.677763
-0.757395
-0.676261
-0.589262
-0.620479
-0.62451
-0.568216
-0.617239
-0.596028
-0.513287
-0.561725
-0.608071
-0.515555
-0.583056
-0.605625
-0.50889
-0.501125
-0.582443
-0.505591
-0.602944
-0.573721
-0.619673
-0.562057
-0.519689
-0.560143
-0.619217
-0.518975
-0.578007
-0.498371
-0.59371
-0.497481
-0.572712
-0.501773
-0.598369
-0.607446
-0.71835
-0.723399
-0.926605
-0.855645
-0.926215
-0.611953
-0.73497
-0.728432
-0.926974
-0.858275
-0.926897
-0.604017
-0.716241
-0.717548
-0.930895
-0.864973
-0.924954
-0.619205
-0.755362
-0.560004
-0.716276
-0.928346
-0.866925
-0.930702
-0.508879
-0.526922
-0.540862
-0.501568
-0.503294
-0.521549
-0.513565
-0.495883
-0.541224
-0.505657
-0.656436
-0.516952
-0.515776
-0.51598
-0.657932
-0.516435
-0.545298
-0.523766
-0.513444
-0.558785
-0.602513
-0.599142
-0.644046
-0.729951
-0.646686
-0.554522
-0.592534
-0.595774
-0.652363
-0.732617
-0.649626
-0.572419
-0.605598
-0.610234
-0.668484
-0.74275
-0.661281
-0.575511
-0.618635
-0.612377
-0.6551
-0.741952
-0.659629
-0.202392
-0.11458
-0.139837
-0.19675
-0.144782
-0.231989
-0.239087
-0.234056
-0.237259
-0.230317
-0.232248
-0.224675
-0.236072
-0.226644
-0.226829
-0.227153
-0.225821
-0.228921
-0.234287
-0.230896
-0.232076
-0.228316
-0.230216
-0.229038
-0.229553
-0.261344
-0.255493
-0.19307
-0.222074
-0.262434
-0.191664
-0.254611
-0.233188
-0.236553
-0.235424
-0.234534
-0.237089
-0.237351
-0.233912
-0.240949
-0.232712
-0.231486
-0.23379
-0.230815
-0.260425
-0.19634
-0.220375
-0.24671
-0.191342
-0.250581
-0.254129
-0.258566
-0.25635
-0.250783
-0.260084
-0.249593
-0.258933
-0.256534
-0.24574
-0.225828
-0.226847
-0.244873
-0.251267
-0.248397
-0.248491
-0.251568
-0.263785
-0.26047
-0.247706
-0.256454
-0.260656
-0.263242
-0.256604
-0.263991
-0.25589
-0.260524
-0.247221
-0.260626
-0.264172
-0.256283
-0.246345
-0.231613
-0.228062
-0.247532
-0.258022
-0.260032
-0.245603
-0.256663
-0.247544
-0.257119
-0.256794
-0.319384
-0.299628
-0.285049
-0.313142
-0.314186
-0.302365
-0.313387
-0.349
-0.425391
-0.342422
-0.370241
-0.341417
-0.358509
-0.426204
-0.325239
-0.284741
-0.30788
-0.314463
-0.304846
-0.313976
-0.331937
-0.340902
-0.340575
-0.428279
-0.371511
-0.334353
-0.340747
-0.428115
-0.259605
-0.25641
-0.252095
-0.25993
-0.255774
-0.259391
-0.253194
-0.263794
-0.259756
-0.244558
-0.254928
-0.259775
-0.254754
-0.263809
-0.251545
-0.248134
-0.24784
-0.251606
-0.249074
-0.240525
-0.237681
-0.249996
-0.264287
-0.255706
-0.245261
-0.260447
-0.260286
-0.2551
-0.264326
-0.248924
-0.234382
-0.248383
-0.236034
-0.259182
-0.259239
-0.255616
-0.25492
-0.255392
-0.253719
-0.259302
-0.269714
-0.267835
-0.255808
-0.256908
-0.266858
-0.269891
-0.25278
-0.25391
-0.258113
-0.260336
-0.251653
-0.247993
-0.242427
-0.240464
-0.249462
-0.264273
-0.265402
-0.200539
-0.230989
-0.266998
-0.23413
-0.262417
-0.25592
-0.263452
-0.262182
-0.257259
-0.265638
-0.242157
-0.269707
-0.203777
-0.268694
-0.265793
-0.23708
-0.26842
-0.255089
-0.263389
-0.247633
-0.26535
-0.250555
-0.266457
-0.327478
-0.273915
-0.277012
-0.30202
-0.336368
-0.272323
-0.306038
-0.370871
-0.423289
-0.341497
-0.365134
-0.364719
-0.339857
-0.422375
-0.274915
-0.273982
-0.333561
-0.283046
-0.307509
-0.313138
-0.334087
-0.305167
-0.309965
-0.37478
-0.334905
-0.413196
-0.362636
-0.381643
-0.337545
-0.418894
-0.269531
-0.268297
-0.258138
-0.259482
-0.258186
-0.269749
-0.258059
-0.2647
-0.259063
-0.240567
-0.254058
-0.258822
-0.26345
-0.253276
-0.252705
-0.242826
-0.245614
-0.249521
-0.254679
-0.245543
-0.251219
-0.25606
-0.263576
-0.266717
-0.258473
-0.27177
-0.266951
-0.248495
-0.237872
-0.25684
-0.2594
-0.252194
-0.263689
-0.262866
-0.259087
-0.255348
-0.254266
-0.259215
-0.25647
-0.25542
-0.105508
-0.0795605
-0.108385
-0.0825236
-0.10992
-0.106155
-0.0756169
-0.164191
-0.192022
-0.159739
-0.196828
-0.169588
-0.206239
-0.174376
-0.201427
-0.222106
-0.224529
-0.223523
-0.2237
-0.219126
-0.219855
-0.21679
-0.222006
-0.219852
-0.218959
-0.221174
-0.217584
-0.207423
-0.202676
-0.204235
-0.206939
-0.211322
-0.217205
-0.213961
-0.214744
-0.211175
-0.215392
-0.211233
-0.214449
-0.234141
-0.216689
-0.244866
-0.227105
-0.241917
-0.23681
-0.213857
-0.215939
-0.223229
-0.225549
-0.213356
-0.209857
-0.203547
-0.200988
-0.212533
-0.224216
-0.22239
-0.156656
-0.187012
-0.227658
-0.18964
-0.221349
-0.226754
-0.19545
-0.230544
-0.159217
-0.229746
-0.229025
-0.192507
-0.218701
-0.231781
-0.22836
-0.221702
-0.231602
-0.224492
-0.237373
-0.209136
-0.239275
-0.211243
-0.2294
-0.263855
-0.23895
-0.245881
-0.24896
-0.257733
-0.251855
-0.253003
-0.330077
-0.372702
-0.293362
-0.314173
-0.28612
-0.343378
-0.367789
-0.258284
-0.241158
-0.256596
-0.266074
-0.237608
-0.265197
-0.244929
-0.25677
-0.245557
-0.30323
-0.332411
-0.275622
-0.36541
-0.310092
-0.330043
-0.280858
-0.367105
-0.261805
-0.245051
-0.257055
-0.250462
-0.243494
-0.218771
-0.233984
-0.247414
-0.22194
-0.239482
-0.251547
-0.240615
-0.24307
-0.172524
-0.208479
-0.240296
-0.205438
-0.242202
-0.216831
-0.206215
-0.207929
-0.215117
-0.232102
-0.239708
-0.246682
-0.230963
-0.23484
-0.198475
-0.168561
-0.234267
-0.234506
-0.201743
-0.231978
-0.24948
-0.233713
-0.226521
-0.248615
-0.224543
-0.253723
-0.249019
-0.226731
-0.234896
-0.22443
-0.238876
-0.258287
-0.245127
-0.237162
-0.252041
-0.254904
-0.239763
-0.255889
-0.24606
-0.255481
-0.252528
-0.249034
-0.258309
-0.260353
-0.227688
-0.19269
-0.259495
-0.264515
-0.224832
-0.237087
-0.228524
-0.23028
-0.23505
-0.260985
-0.24585
-0.261054
-0.244916
-0.257601
-0.263887
-0.240983
-0.255507
-0.221012
-0.18768
-0.260283
-0.258825
-0.223058
-0.254094
-0.243864
-0.248203
-0.250765
-0.241511
-0.321077
-0.246125
-0.282382
-0.255211
-0.322959
-0.278951
-0.253498
-0.359448
-0.378522
-0.303384
-0.332513
-0.354324
-0.308085
-0.381281
-0.245083
-0.24895
-0.316967
-0.242515
-0.271635
-0.248688
-0.312815
-0.274017
-0.250261
-0.363621
-0.317729
-0.385296
-0.337863
-0.365355
-0.314037
-0.384065
-0.25619
-0.252719
-0.252199
-0.23466
-0.237833
-0.249663
-0.233158
-0.253635
-0.248414
-0.247748
-0.24545
-0.181572
-0.212559
-0.25299
-0.245175
-0.214129
-0.230583
-0.226024
-0.223359
-0.232747
-0.235691
-0.241264
-0.234591
-0.241764
-0.249417
-0.218414
-0.180312
-0.258222
-0.252534
-0.216315
-0.251849
-0.250669
-0.235222
-0.230339
-0.247604
-0.250293
-0.230708
-0.246745
-0.237671
-0.245613
-0.239329
-0.243769
-0.421634
-0.425493
-0.426271
-0.414735
-0.422153
-0.427398
-0.413888
-0.387345
-0.474354
-0.419788
-0.387476
-0.415942
-0.409349
-0.424602
-0.428482
-0.380338
-0.3779
-0.414775
-0.406219
-0.412782
-0.4273
-0.427692
-0.423438
-0.422652
-0.414672
-0.424122
-0.418008
-0.40313
-0.403182
-0.414149
-0.424877
-0.398865
-0.408859
-0.422846
-0.441645
-0.385553
-0.386276
-0.454803
-0.389095
-0.416304
-0.432644
-0.39736
-0.475778
-0.389033
-0.443499
-0.469125
-0.39321
-0.410029
-0.39871
-0.391339
-0.399627
-0.394417
-0.401852
-0.405999
-0.403699
-0.420748
-0.410764
-0.409472
-0.417798
-0.407856
-0.404986
-0.389863
-0.395874
-0.407853
-0.416891
-0.362554
-0.415373
-0.400756
-0.393378
-0.41962
-0.411332
-0.368143
-0.359307
-0.416522
-0.398024
-0.396523
-0.406617
-0.411767
-0.396551
-0.414716
-0.397856
-0.397009
-0.591148
-0.615895
-0.610937
-0.639673
-0.705794
-0.648188
-0.591094
-0.604725
-0.61015
-0.654546
-0.707887
-0.649584
-0.519291
-0.577706
-0.522251
-0.389223
-0.382703
-0.40427
-0.419962
-0.423367
-0.386838
-0.380626
-0.401823
-0.437954
-0.408366
-0.40172
-0.431071
-0.407808
-0.394016
-0.578216
-0.518045
-0.519986
-0.57968
-0.540262
-0.552699
-0.375012
-0.507705
-0.415047
-0.506883
-0.378849
-0.581708
-0.556937
-0.55936
-0.489223
-0.408915
-0.382948
-0.500641
-0.380345
-0.389844
-0.375089
-0.381704
-0.383173
-0.385154
-0.378783
-0.387205
-0.401339
-0.427787
-0.374941
-0.381653
-0.415942
-0.407802
-0.378299
-0.394766
-0.371384
-0.396322
-0.371425
-0.389257
-0.404336
-0.375031
-0.394727
-0.385164
-0.385994
-0.393898
-0.399254
-0.382151
-0.390721
-0.37856
-0.390679
-0.378601
-0.381215
-0.377974
-0.385343
-0.381824
-0.379735
-0.381271
-0.400282
-0.38951
-0.383765
-0.391533
-0.377402
-0.381147
-0.400351
-0.403201
-0.393082
-0.386823
-0.394493
-0.385234
-0.377269
-0.376124
-0.373572
-0.380014
-0.376288
-0.382564
-0.374751
-0.385094
-0.387619
-0.391007
-0.381961
-0.394088
-0.385654
-0.381448
-0.387972
-0.39064
-0.410108
-0.402927
-0.392676
-0.385127
-0.403073
-0.387424
-0.390958
-0.403031
-0.390839
-0.390236
-0.397216
-0.388317
-0.385633
-0.398358
-0.398916
-0.384472
-0.383838
-0.400082
-0.382779
-0.36253
-0.358009
-0.357039
-0.348916
-0.356601
-0.362493
-0.356273
-0.368848
-0.378338
-0.37257
-0.361129
-0.37565
-0.362336
-0.370404
-0.369041
-0.368904
-0.374677
-0.378274
-0.375529
-0.36843
-0.366757
-0.361789
-0.345541
-0.35546
-0.351312
-0.355492
-0.352426
-0.36242
-0.353713
-0.339306
-0.346893
-0.353948
-0.352595
-0.341233
-0.355126
-0.356331
-0.361661
-0.328834
-0.339265
-0.359673
-0.337071
-0.35765
-0.355074
-0.33284
-0.357639
-0.325915
-0.354142
-0.358559
-0.334859
-0.355033
-0.348611
-0.344754
-0.35728
-0.343144
-0.356379
-0.356095
-0.363064
-0.360011
-0.35448
-0.357519
-0.362477
-0.362341
-0.358492
-0.368786
-0.375338
-0.387556
-0.375251
-0.375722
-0.374854
-0.368923
-0.368561
-0.37113
-0.386659
-0.374452
-0.375659
-0.373755
-0.367885
-0.363659
-0.356071
-0.364631
-0.360231
-0.363909
-0.359478
-0.364166
-0.613707
-0.643372
-0.648377
-0.659175
-0.674279
-0.664361
-0.617066
-0.656004
-0.653708
-0.667633
-0.677926
-0.667844
-0.580744
-0.512153
-0.516349
-0.365558
-0.377509
-0.416438
-0.393071
-0.37027
-0.412113
-0.371511
-0.577107
-0.51456
-0.513483
-0.3754
-0.406328
-0.390187
-0.369056
-0.411729
-0.376295
-0.371706
-0.437628
-0.544778
-0.502219
-0.450026
-0.396492
-0.384919
-0.409644
-0.395735
-0.395054
-0.405754
-0.380961
-0.4258
-0.547641
-0.436938
-0.408677
-0.441471
-0.403627
-0.402842
-0.395642
-0.372578
-0.399415
-0.384221
-0.384073
-0.362363
-0.35294
-0.356263
-0.363461
-0.36302
-0.352616
-0.363294
-0.36193
-0.365386
-0.34135
-0.344463
-0.367085
-0.3609
-0.345643
-0.364482
-0.350341
-0.371055
-0.34592
-0.365418
-0.369851
-0.349338
-0.359844
-0.35287
-0.349252
-0.360448
-0.359174
-0.349268
-0.360841
-0.369148
-0.366042
-0.368458
-0.366699
-0.368275
-0.37181
-0.367574
-0.370492
-0.377723
-0.386871
-0.390245
-0.37447
-0.372494
-0.381501
-0.369032
-0.366615
-0.371073
-0.377477
-0.368301
-0.37214
-0.372711
-0.370055
-0.375787
-0.387823
-0.368065
-0.371253
-0.379976
-0.367895
-0.368367
-0.362888
-0.367057
-0.365242
-0.369048
-0.365853
-0.366589
-0.369343
-0.376723
-0.37745
-0.385292
-0.37141
-0.373041
-0.374953
-0.366573
-0.35955
-0.367574
-0.363574
-0.367328
-0.365776
-0.36358
-0.370546
-0.37489
-0.388524
-0.368134
-0.374153
-0.378085
-0.367202
-0.368604
-0.351625
-0.341689
-0.363259
-0.363223
-0.344539
-0.36774
-0.386693
-0.370949
-0.339327
-0.324682
-0.391284
-0.374375
-0.337266
-0.374534
-0.354151
-0.349812
-0.377853
-0.38145
-0.346937
-0.372805
-0.378215
-0.332386
-0.379705
-0.324328
-0.369251
-0.377318
-0.335125
-0.365331
-0.353344
-0.360958
-0.364026
-0.357161
-0.363688
-0.366951
-0.379231
-0.366624
-0.3475
-0.361496
-0.363978
-0.369841
-0.381346
-0.36441
-0.35175
-0.35307
-0.354704
-0.352515
-0.365268
-0.362299
-0.379237
-0.377093
-0.381497
-0.388884
-0.37704
-0.376131
-0.394842
-0.377231
-0.361497
-0.367205
-0.368031
-0.37067
-0.37123
-0.373205
-0.389812
-0.404364
-0.387358
-0.396978
-0.393999
-0.384674
-0.399813
-0.381528
-0.363883
-0.375414
-0.379913
-0.385459
-0.372468
-0.375659
-0.38521
-0.381511
-0.396765
-0.392784
-0.383635
-0.38137
-0.395627
-0.470449
-0.451513
-0.467474
-0.489598
-0.493301
-0.451673
-0.467522
-0.453247
-0.44068
-0.423468
-0.436481
-0.438088
-0.455553
-0.435606
-0.451011
-0.434264
-0.422346
-0.432685
-0.435448
-0.434958
-0.448294
-0.472339
-0.467076
-0.497035
-0.452312
-0.495002
-0.474446
-0.451778
-0.550131
-0.511655
-0.500387
-0.514583
-0.547478
-0.510489
-0.522377
-0.637557
-0.562897
-0.651673
-0.557952
-0.647091
-0.555783
-0.494842
-0.515022
-0.50567
-0.509235
-0.516011
-0.556643
-0.619315
-0.538525
-0.698228
-0.606455
-0.6094
-0.548964
-0.7438
-0.461991
-0.451874
-0.486091
-0.47484
-0.453947
-0.464502
-0.483594
-0.439833
-0.420834
-0.416378
-0.431251
-0.42428
-0.43137
-0.436259
-0.44331
-0.433358
-0.419235
-0.429763
-0.427488
-0.434123
-0.445519
-0.458366
-0.471307
-0.451954
-0.481565
-0.451008
-0.480385
-0.455963
-0.498162
-0.457573
-0.455499
-0.4388
-0.374483
-0.389876
-0.42698
-0.499716
-0.469113
-0.464932
-0.416549
-0.394002
-0.375277
-0.405968
-0.400303
-0.391412
-0.425293
-0.511027
-0.569927
-0.563641
-0.609837
-0.686503
-0.619937
-0.476931
-0.520961
-0.51671
-0.576302
-0.532236
-0.550932
-0.63171
-0.695179
-0.629302
-0.459055
-0.422528
-0.448475
-0.424268
-0.46526
-0.492451
-0.433539
-0.41724
-0.413112
-0.431292
-0.413551
-0.434008
-0.428551
-0.435407
-0.397263
-0.411672
-0.410435
-0.411864
-0.419946
-0.431866
-0.460363
-0.446815
-0.451575
-0.487372
-0.457416
-0.443204
-0.485867
-0.650744
-0.618788
-0.648591
-0.762666
-0.684489
-0.692597
-0.695309
-0.760999
-0.693831
-0.616803
-0.640398
-0.647111
-0.60161
-0.608928
-0.60603
-0.648173
-0.622203
-0.61815
-0.603156
-0.643285
-0.611373
-0.611695
-0.613
-0.610478
-0.652881
-0.625783
-0.652579
-0.750627
-0.688434
-0.693408
-0.696623
-0.754835
-0.694992
-0.627345
-0.650327
-0.652632
-0.647998
-0.588699
-0.575016
-0.659664
-0.649061
-0.573476
-0.659948
-0.647147
-0.663754
-0.562316
-0.559911
-0.644732
-0.666765
-0.564352
-0.645525
-0.587726
-0.569538
-0.652566
-0.642714
-0.571356
-0.657061
-0.649483
-0.568383
-0.670945
-0.562141
-0.65106
-0.669316
-0.566533
-0.735486
-0.689574
-0.625355
-0.604038
-0.690258
-0.738685
-0.620473
-0.853227
-0.799743
-0.636506
-0.628943
-0.632293
-0.831316
-0.849348
-0.835713
-0.646603
-0.972144
-0.670502
-0.860008
-0.629963
-0.8375
-0.742986
-0.607879
-0.697156
-0.625086
-0.694853
-0.623824
-0.74422
-0.739068
-0.605413
-0.683464
-0.62734
-0.642139
-0.687577
-0.721221
-0.956719
-0.813341
-0.757596
-1.00651
-0.76375
-0.737235
-0.607808
-0.710065
-0.670272
-0.748768
-0.654842
-0.683155
-0.962877
-0.688429
-0.756168
-1.03334
-0.74552
-0.86327
-0.619165
-0.61648
-0.62248
-0.672519
-0.62785
-0.629854
-0.635718
-0.683579
-0.636487
-0.612199
-0.617063
-0.616965
-0.623873
-0.609407
-0.617018
-0.741432
-0.67986
-0.680843
-0.853254
-0.647715
-0.819104
-0.645811
-0.701276
-0.895557
-0.64804
-0.608007
-0.62656
-0.617274
-0.625894
-0.625033
-0.642105
-0.680106
-0.711204
-0.67128
-0.622654
-0.647057
-0.640532
-0.647385
-0.713294
-0.671846
-0.62601
-0.578643
-0.628954
-0.58115
-0.627324
-0.628422
-0.580109
-0.647902
-0.771433
-0.618698
-0.59219
-0.764082
-0.59117
-0.650333
-0.647719
-0.58867
-0.747108
-0.616421
-0.755477
-0.648465
-0.590066
-0.624158
-0.582263
-0.624237
-0.581168
-0.626157
-0.580918
-0.6221
-0.642883
-0.629125
-0.584215
-0.573915
-0.63144
-0.633004
-0.60233
-0.72112
-0.677646
-0.652079
-0.691601
-0.71488
-0.644226
-0.749409
-0.661888
-0.67478
-0.680855
-0.646154
-0.573449
-0.640249
-0.680434
-0.621331
-0.639906
-0.711352
-0.633315
-0.576369
-0.629309
-0.573262
-0.574043
-0.630332
-0.631825
-0.651048
-0.715164
-0.60537
-0.581136
-0.721811
-0.583058
-0.653491
-0.650147
-0.58695
-0.607953
-0.738418
-0.730095
-0.584868
-0.64896
-0.634975
-0.570578
-0.570618
-0.637146
-0.571449
-0.630133
-0.639656
-0.672237
-0.615753
-0.683597
-0.596981
-0.670552
-0.685637
-0.599402
-0.669654
-0.685142
-0.59273
-0.583908
-0.669409
-0.591013
-0.684743
-0.673619
-0.617982
-0.689766
-0.603605
-0.674841
-0.687644
-0.601404
-0.669237
-0.58723
-0.684111
-0.582213
-0.668312
-0.58935
-0.684581
-0.754477
-0.708541
-0.620155
-0.638591
-0.706272
-0.7567
-0.635605
-0.857075
-0.809798
-0.633129
-0.615461
-0.856404
-0.634836
-0.804544
-0.751111
-0.617057
-0.70074
-0.629163
-0.703245
-0.748812
-0.63201
-0.860114
-0.641937
-0.817367
-0.619397
-0.860889
-0.639061
-0.81309
-0.761453
-0.62848
-0.711138
-0.641612
-0.644718
-0.713258
-0.759437
-0.863546
-0.84446
-0.65517
-0.633001
-0.866265
-0.651764
-0.836638
-0.763383
-0.630916
-0.650633
-0.717852
-0.766107
-0.647493
-0.715376
-0.863342
-0.645382
-0.629008
-0.825039
-0.648663
-0.862784
-0.830667
-0.6181
-0.669265
-0.73121
-0.633773
-0.686858
-0.650191
-0.635067
-0.636795
-0.694219
-0.637212
-0.664182
-0.642541
-0.685972
-0.721657
-0.712852
-0.641189
-0.749757
-0.750556
-0.626662
-0.616637
-0.66288
-0.656074
-0.689948
-0.739326
-0.668373
-0.590097
-0.787431
-0.712684
-0.628156
-0.773667
-0.62014
-0.629629
-0.665901
-0.685594
-0.579889
-0.714191
-0.592112
-0.722606
-0.659674
-0.598582
-0.63766
-0.731222
-0.625013
-0.586437
-0.570941
-0.651167
-0.659642
-0.659253
-0.711654
-0.579682
-0.596958
-0.655007
-0.711955
-0.578912
-0.646942
-0.596939
-0.569228
-0.627426
-0.639428
-0.572964
-0.648103
-0.659384
-0.579825
-0.59319
-0.715526
-0.712283
-0.57579
-0.668215
-0.0606678
-0.0526846
-0.0755982
-0.059233
-0.0629739
-0.0700125
-0.0338557
-0.113199
-0.141703
-0.117164
-0.137501
-0.107192
-0.119259
-0.0335771
-0.071942
-0.130898
-0.152429
-0.150699
-0.149798
-0.154151
-0.142386
-0.140898
-0.139646
-0.138284
-0.150248
-0.146872
-0.148294
-0.147377
-0.138254
-0.144165
-0.137405
-0.143649
-0.134883
-0.144128
-0.136382
-0.148399
-0.140567
-0.142476
-0.143417
-0.143223
-0.222488
-0.197935
-0.229909
-0.214943
-0.231119
-0.220413
-0.201032
-0.207794
-0.220197
-0.218229
-0.21014
-0.195243
-0.181912
-0.185142
-0.192547
-0.216071
-0.221212
-0.146511
-0.183399
-0.216901
-0.218625
-0.18113
-0.21393
-0.175389
-0.210459
-0.14602
-0.21595
-0.21097
-0.178829
-0.205259
-0.214291
-0.216084
-0.202947
-0.224518
-0.216959
-0.234467
-0.205222
-0.232834
-0.226501
-0.203375
-0.234944
-0.233055
-0.217871
-0.219788
-0.234637
-0.238159
-0.220341
-0.269044
-0.24261
-0.222013
-0.224094
-0.238786
-0.264316
-0.327236
-0.230939
-0.261877
-0.235255
-0.259432
-0.329682
-0.250208
-0.225965
-0.239841
-0.230643
-0.242933
-0.219792
-0.234245
-0.222075
-0.236945
-0.223619
-0.24041
-0.26466
-0.243533
-0.34048
-0.264683
-0.303342
-0.237401
-0.326903
-0.217667
-0.195384
-0.230055
-0.210186
-0.193037
-0.218767
-0.230652
-0.203784
-0.20158
-0.135878
-0.165757
-0.204103
-0.168269
-0.201351
-0.188346
-0.178509
-0.176653
-0.189443
-0.196841
-0.208061
-0.20908
-0.195753
-0.20759
-0.172753
-0.137898
-0.20857
-0.207973
-0.170446
-0.208752
-0.19944
-0.212015
-0.199958
-0.212665
-0.213133
-0.209034
-0.188083
-0.22266
-0.190896
-0.225741
-0.210357
-0.219017
-0.221803
-0.162594
-0.190148
-0.222474
-0.217452
-0.156744
-0.182251
-0.195999
-0.197454
-0.180268
-0.16714
-0.155857
-0.152192
-0.170099
-0.183994
-0.200137
-0.198722
-0.185953
-0.219082
-0.188408
-0.221874
-0.152477
-0.222405
-0.15472
-0.218022
-0.237681
-0.231055
-0.214839
-0.2166
-0.236591
-0.231803
-0.218348
-0.256739
-0.255749
-0.23524
-0.220688
-0.237263
-0.2188
-0.256416
-0.326043
-0.229238
-0.253327
-0.258026
-0.22658
-0.324838
-0.233722
-0.215647
-0.23216
-0.21736
-0.238523
-0.21603
-0.233852
-0.22158
-0.239879
-0.23255
-0.219464
-0.255516
-0.223319
-0.324119
-0.251826
-0.254674
-0.225202
-0.324292
-0.205813
-0.218787
-0.179025
-0.201878
-0.18247
-0.205351
-0.219241
-0.19687
-0.199457
-0.131587
-0.164571
-0.1959
-0.199341
-0.162504
-0.176727
-0.159799
-0.163306
-0.173334
-0.191525
-0.206474
-0.193776
-0.204447
-0.189598
-0.201007
-0.187269
-0.202848
-0.19503
-0.16524
-0.131483
-0.187385
-0.193827
-0.161542
-0.189357
-0.206763
-0.203422
-0.186769
-0.221606
-0.208705
-0.184363
-0.220026
-0.0743012
-0.0631401
-0.0762864
-0.0575384
-0.0733317
-0.0772229
-0.0586065
-0.0736301
-0.0420489
-0.133036
-0.0744646
-0.132303
-0.0417186
-0.0731412
-0.13126
-0.0401568
-0.0722592
-0.131952
-0.041574
-0.157363
-0.151968
-0.152976
-0.155882
-0.154303
-0.149611
-0.156593
-0.146275
-0.159015
-0.156446
-0.154593
-0.160978
-0.162934
-0.158402
-0.163948
-0.157631
-0.159041
-0.151623
-0.157602
-0.154192
-0.162346
-0.156678
-0.157257
-0.161497
-0.212977
-0.149398
-0.214273
-0.18221
-0.214418
-0.213934
-0.148064
-0.180372
-0.189699
-0.184293
-0.184244
-0.171413
-0.165744
-0.16735
-0.168911
-0.177359
-0.178304
-0.181271
-0.173976
-0.216029
-0.184098
-0.215903
-0.150776
-0.215786
-0.151776
-0.213973
-0.241558
-0.206039
-0.222635
-0.226557
-0.241482
-0.222678
-0.226725
-0.254316
-0.284901
-0.254034
-0.283368
-0.252262
-0.271725
-0.228681
-0.232287
-0.228268
-0.252625
-0.271781
-0.227787
-0.205444
-0.203759
-0.229134
-0.241497
-0.205515
-0.222124
-0.226904
-0.222015
-0.226628
-0.241825
-0.252183
-0.228717
-0.272048
-0.232479
-0.252016
-0.228913
-0.27203
-0.226931
-0.200352
-0.225898
-0.202487
-0.211247
-0.147256
-0.181373
-0.213046
-0.147819
-0.21158
-0.213054
-0.163559
-0.163994
-0.162488
-0.16618
-0.164448
-0.183262
-0.179833
-0.162242
-0.210261
-0.181111
-0.147782
-0.213097
-0.147742
-0.212931
-0.209032
-0.16743
-0.176186
-0.170333
-0.177159
-0.215827
-0.185069
-0.149192
-0.220335
-0.220419
-0.15063
-0.215464
-0.176596
-0.194837
-0.193392
-0.178572
-0.152794
-0.144272
-0.141245
-0.150078
-0.216154
-0.185783
-0.221444
-0.152077
-0.220651
-0.217666
-0.150985
-0.174403
-0.192006
-0.191712
-0.173537
-0.242039
-0.20553
-0.220268
-0.22971
-0.243106
-0.221242
-0.228005
-0.258844
-0.291685
-0.261249
-0.287767
-0.25307
-0.271487
-0.228691
-0.234413
-0.25265
-0.228996
-0.271843
-0.231302
-0.206878
-0.23019
-0.20825
-0.242277
-0.2058
-0.22198
-0.227134
-0.241932
-0.222056
-0.22768
-0.252995
-0.227138
-0.275236
-0.234981
-0.253903
-0.228289
-0.272172
-0.232292
-0.2094
-0.232933
-0.209474
-0.210536
-0.149418
-0.182028
-0.216559
-0.148407
-0.212593
-0.214879
-0.14953
-0.146417
-0.149855
-0.148086
-0.164785
-0.185992
-0.162297
-0.187899
-0.210017
-0.181856
-0.147983
-0.213462
-0.209121
-0.148434
-0.214198
-0.168344
-0.190181
-0.170797
-0.189683
-0.361893
-0.342671
-0.337491
-0.352475
-0.353253
-0.344842
-0.361469
-0.370794
-0.378002
-0.365523
-0.356454
-0.3802
-0.369579
-0.355813
-0.372193
-0.352748
-0.365169
-0.384575
-0.383147
-0.355089
-0.372323
-0.361541
-0.339085
-0.353854
-0.346967
-0.353603
-0.361166
-0.346042
-0.341891
-0.318965
-0.324962
-0.345885
-0.342418
-0.316681
-0.345385
-0.342352
-0.337308
-0.285577
-0.30274
-0.338698
-0.305004
-0.341575
-0.34116
-0.308844
-0.340444
-0.287286
-0.3421
-0.336689
-0.305651
-0.3427
-0.325211
-0.314913
-0.345818
-0.316696
-0.346082
-0.342215
-0.36193
-0.342123
-0.332937
-0.35247
-0.340892
-0.362031
-0.352062
-0.376769
-0.398734
-0.364233
-0.351748
-0.395174
-0.353198
-0.378053
-0.37441
-0.352382
-0.362157
-0.388177
-0.39061
-0.351553
-0.373821
-0.363273
-0.333541
-0.340504
-0.352887
-0.341934
-0.352954
-0.363548
-0.43697
-0.391218
-0.417417
-0.396238
-0.445746
-0.417411
-0.403381
-0.514012
-0.584074
-0.501996
-0.437633
-0.385232
-0.417928
-0.413501
-0.447222
-0.415362
-0.406655
-0.441426
-0.568532
-0.501499
-0.48947
-0.404703
-0.38744
-0.38953
-0.405192
-0.404872
-0.385019
-0.405967
-0.403928
-0.402254
-0.370862
-0.375479
-0.376606
-0.407107
-0.400307
-0.4065
-0.37995
-0.372249
-0.42003
-0.377778
-0.409602
-0.41273
-0.404242
-0.39099
-0.405564
-0.384069
-0.406518
-0.384726
-0.401912
-0.409065
-0.393301
-0.39039
-0.406824
-0.389966
-0.407675
-0.407267
-0.422722
-0.430144
-0.385532
-0.376568
-0.431065
-0.383294
-0.433218
-0.411477
-0.389845
-0.390694
-0.410167
-0.415445
-0.388964
-0.407943
-0.416517
-0.382488
-0.376722
-0.426832
-0.382836
-0.412456
-0.43262
-0.341413
-0.310524
-0.321844
-0.346573
-0.341772
-0.311531
-0.346094
-0.339806
-0.336059
-0.278143
-0.301469
-0.334862
-0.340723
-0.299328
-0.339585
-0.296836
-0.334833
-0.276756
-0.339962
-0.334508
-0.298242
-0.34143
-0.322281
-0.313996
-0.345976
-0.341932
-0.312281
-0.345847
-0.374879
-0.340663
-0.330288
-0.356181
-0.357619
-0.340782
-0.371703
-0.405356
-0.412743
-0.363558
-0.354393
-0.420447
-0.354062
-0.409134
-0.401039
-0.353557
-0.36445
-0.42228
-0.424021
-0.353816
-0.396154
-0.378755
-0.330193
-0.361624
-0.341742
-0.359354
-0.341118
-0.38329
-0.36699
-0.331195
-0.340537
-0.355021
-0.340385
-0.354174
-0.369024
-0.38301
-0.404191
-0.352295
-0.363864
-0.380659
-0.408804
-0.351955
-0.365457
-0.331334
-0.340764
-0.353377
-0.364641
-0.340169
-0.353569
-0.386595
-0.353286
-0.364676
-0.417882
-0.413635
-0.352581
-0.390984
-0.353027
-0.324008
-0.365554
-0.314797
-0.361431
-0.356526
-0.319267
-0.347624
-0.346742
-0.327527
-0.318767
-0.349389
-0.322506
-0.344766
-0.349808
-0.329541
-0.354455
-0.329857
-0.351411
-0.352992
-0.324991
-0.350352
-0.31213
-0.354397
-0.312654
-0.358168
-0.316613
-0.347109
-0.373119
-0.29787
-0.316367
-0.389709
-0.377124
-0.299537
-0.388945
-0.350187
-0.322584
-0.250475
-0.277007
-0.32367
-0.27599
-0.347608
-0.352881
-0.274348
-0.326026
-0.250488
-0.355413
-0.324991
-0.276112
-0.368523
-0.316538
-0.299724
-0.38205
-0.299098
-0.385835
-0.36401
-0.365041
-0.326246
-0.325496
-0.371143
-0.329966
-0.360331
-0.378962
-0.363825
-0.367212
-0.341595
-0.340116
-0.363389
-0.33714
-0.368355
-0.360047
-0.331634
-0.339833
-0.357063
-0.36039
-0.335362
-0.356122
-0.369718
-0.327131
-0.334584
-0.393353
-0.331745
-0.386824
-0.375336
-0.446512
-0.395713
-0.42122
-0.406761
-0.441648
-0.424048
-0.408489
-0.489732
-0.539376
-0.428597
-0.447054
-0.488144
-0.430608
-0.547394
-0.448723
-0.397191
-0.423833
-0.409249
-0.44842
-0.424876
-0.411978
-0.487413
-0.419171
-0.544087
-0.440042
-0.481643
-0.423457
-0.549318
-0.399644
-0.386739
-0.376809
-0.408127
-0.408359
-0.377905
-0.398315
-0.395415
-0.397925
-0.37236
-0.365187
-0.397523
-0.370674
-0.394245
-0.400498
-0.387105
-0.405989
-0.380675
-0.407555
-0.400795
-0.379138
-0.392979
-0.367422
-0.363228
-0.38705
-0.368879
-0.390673
-0.390424
-0.395644
-0.382813
-0.374699
-0.407709
-0.373363
-0.408368
-0.396555
-0.383543
-0.373639
-0.359961
-0.356028
-0.3806
-0.362742
-0.377139
-0.394033
-0.383144
-0.37031
-0.405859
-0.39156
-0.373088
-0.407767
-0.385946
-0.365337
-0.357285
-0.383308
-0.363609
-0.387934
-0.380311
-0.355087
-0.30125
-0.317413
-0.363358
-0.352226
-0.300202
-0.368169
-0.344851
-0.321796
-0.253016
-0.277201
-0.321498
-0.345836
-0.278009
-0.343298
-0.280329
-0.319777
-0.253658
-0.341692
-0.320521
-0.278484
-0.357837
-0.317743
-0.2996
-0.377762
-0.360449
-0.300158
-0.373073
-0.397361
-0.330616
-0.341885
-0.378412
-0.373085
-0.342058
-0.401185
-0.411675
-0.404681
-0.353626
-0.358307
-0.412355
-0.398049
-0.353037
-0.393228
-0.330366
-0.364352
-0.341739
-0.368455
-0.388139
-0.342139
-0.405369
-0.349875
-0.356382
-0.388126
-0.392654
-0.351571
-0.397549
-0.399106
-0.331076
-0.34141
-0.383481
-0.340049
-0.388408
-0.402566
-0.378313
-0.370849
-0.341845
-0.349004
-0.373081
-0.375107
-0.34448
-0.391404
-0.331212
-0.336278
-0.395123
-0.382783
-0.338748
-0.392364
-0.383416
-0.348054
-0.350496
-0.38327
-0.379191
-0.345927
-0.389516
-0.329872
-0.326934
-0.314427
-0.34489
-0.331915
-0.312228
-0.342535
-0.319059
-0.318352
-0.29143
-0.278413
-0.317584
-0.319169
-0.293374
-0.327502
-0.324427
-0.307813
-0.337814
-0.325711
-0.309674
-0.33991
-0.321179
-0.298313
-0.321782
-0.281238
-0.322927
-0.320692
-0.296026
-0.387692
-0.351182
-0.364504
-0.365249
-0.367372
-0.36757
-0.384465
-0.4165
-0.456851
-0.392299
-0.409676
-0.421292
-0.389827
-0.449624
-0.391274
-0.353794
-0.373652
-0.37245
-0.370599
-0.394789
-0.37016
-0.411897
-0.384678
-0.406658
-0.437098
-0.387095
-0.407941
-0.442807
-0.378072
-0.344029
-0.361405
-0.36263
-0.360432
-0.358724
-0.381091
-0.39705
-0.418926
-0.375333
-0.395952
-0.393913
-0.377222
-0.422714
-0.374886
-0.341502
-0.356041
-0.353398
-0.372129
-0.357906
-0.355818
-0.400586
-0.382011
-0.39862
-0.431849
-0.379775
-0.404076
-0.427137
-0.491092
-0.450655
-0.472171
-0.545765
-0.538021
-0.447532
-0.497208
-0.451227
-0.419781
-0.400128
-0.418357
-0.422489
-0.447897
-0.420714
-0.45485
-0.425547
-0.402107
-0.428459
-0.425424
-0.422841
-0.458866
-0.485815
-0.469353
-0.522578
-0.442361
-0.530192
-0.481003
-0.445051
-0.595263
-0.587463
-0.502596
-0.520334
-0.598351
-0.580926
-0.520468
-0.631975
-0.690549
-0.542969
-0.567125
-0.543849
-0.630941
-0.690413
-0.592406
-0.502991
-0.568663
-0.519931
-0.573873
-0.52066
-0.589935
-0.633277
-0.543964
-0.690732
-0.56713
-0.634871
-0.543865
-0.690524
-0.512013
-0.453409
-0.553048
-0.480346
-0.456334
-0.504292
-0.559824
-0.474393
-0.443996
-0.411451
-0.435635
-0.439508
-0.43333
-0.481208
-0.468511
-0.427936
-0.408906
-0.431791
-0.435367
-0.430493
-0.463434
-0.519922
-0.482415
-0.461474
-0.56394
-0.459316
-0.56475
-0.52748
-0.522919
-0.483304
-0.536877
-0.468524
-0.533326
-0.468416
-0.530103
-0.517792
-0.496544
-0.451514
-0.432737
-0.511034
-0.490227
-0.451426
-0.517716
-0.483092
-0.527416
-0.468168
-0.530203
-0.513883
-0.468524
-0.520444
-0.448806
-0.430021
-0.475958
-0.48323
-0.450382
-0.517539
-0.584431
-0.556606
-0.502284
-0.518191
-0.582837
-0.559327
-0.518826
-0.629855
-0.691239
-0.542909
-0.56535
-0.630489
-0.541939
-0.691763
-0.586218
-0.502316
-0.565693
-0.519963
-0.588187
-0.562398
-0.519042
-0.629196
-0.541162
-0.691874
-0.565258
-0.628546
-0.541734
-0.69192
-0.542024
-0.540542
-0.468057
-0.483766
-0.467504
-0.537356
-0.544825
-0.496957
-0.449322
-0.418431
-0.438772
-0.454722
-0.489174
-0.441196
-0.504556
-0.446426
-0.421388
-0.468395
-0.461178
-0.444059
-0.511537
-0.540823
-0.483519
-0.464195
-0.558364
-0.534923
-0.465867
-0.551066
-0.617261
-0.581559
-0.581986
-0.614493
-0.617139
-0.581513
-0.615627
-0.663008
-0.777735
-0.624621
-0.593598
-0.783689
-0.656204
-0.59491
-0.670405
-0.597929
-0.626515
-0.794978
-0.789597
-0.596451
-0.677491
-0.618628
-0.582156
-0.622164
-0.581433
-0.619474
-0.620508
-0.581341
-0.635674
-0.583174
-0.62326
-0.580893
-0.635948
-0.58345
-0.622077
-0.657233
-0.708697
-0.579413
-0.581242
-0.708285
-0.580932
-0.657254
-0.656977
-0.58004
-0.707448
-0.57887
-0.65682
-0.707962
-0.580386
-0.635414
-0.58109
-0.584019
-0.618345
-0.583897
-0.620686
-0.634603
-0.613975
-0.581911
-0.612333
-0.581412
-0.582338
-0.614573
-0.610094
-0.698162
-0.814012
-0.634611
-0.605032
-0.809715
-0.603411
-0.702909
-0.692099
-0.59961
-0.632315
-0.80062
-0.805515
-0.601364
-0.684988
-0.616363
-0.581611
-0.584466
-0.606406
-0.583408
-0.60839
-0.621359
-0.6739
-0.637949
-0.619184
-0.68838
-0.681406
-0.617857
-0.690341
-0.728806
-0.814677
-0.613129
-0.627658
-0.718721
-0.823785
-0.615113
-0.669399
-0.637691
-0.616377
-0.694052
-0.669488
-0.616612
-0.691636
-0.738417
-0.619853
-0.8422
-0.630819
-0.745711
-0.833629
-0.617612
-0.793695
-0.731767
-0.681223
-0.657762
-0.728922
-0.794782
-0.681824
-0.892255
-0.955898
-0.684641
-0.693088
-0.691945
-0.953005
-0.891372
-0.893014
-0.690054
-0.94721
-0.683215
-0.893719
-0.691108
-0.950152
-0.792575
-0.65759
-0.723812
-0.682906
-0.726244
-0.682205
-0.791332
-0.796341
-0.657966
-0.734293
-0.680537
-0.680091
-0.737028
-0.795403
-0.8943
-0.93373
-0.685944
-0.676644
-0.894688
-0.686813
-0.937001
-0.796145
-0.657544
-0.678609
-0.73943
-0.796421
-0.679173
-0.73817
-0.89451
-0.688916
-0.678388
-0.94376
-0.688036
-0.893901
-0.940727
-0.632152
-0.584217
-0.608277
-0.580025
-0.631062
-0.584297
-0.610872
-0.657518
-0.709539
-0.580453
-0.581643
-0.710194
-0.657539
-0.581828
-0.657852
-0.582291
-0.71179
-0.580819
-0.657769
-0.711172
-0.582157
-0.632837
-0.580219
-0.584213
-0.615957
-0.633911
-0.584168
-0.61316
-0.658787
-0.598998
-0.591139
-0.582146
-0.600532
-0.65347
-0.592602
-0.733096
-0.847196
-0.648852
-0.618094
-0.843494
-0.616241
-0.736739
-0.729314
-0.613035
-0.835864
-0.647254
-0.839767
-0.725363
-0.614724
-0.663043
-0.582954
-0.610961
-0.595491
-0.605201
-0.593877
-0.667015
-0.640468
-0.599665
-0.581423
-0.589728
-0.588445
-0.601301
-0.646814
-0.71181
-0.8186
-0.606779
-0.640103
-0.707581
-0.822768
-0.60825
-0.633756
-0.581326
-0.585851
-0.604705
-0.62764
-0.587043
-0.602699
-0.716551
-0.611415
-0.641961
-0.831475
-0.827409
-0.609907
-0.720812
-0.711213
-0.616766
-0.670807
-0.605102
-0.673757
-0.708988
-0.617605
-0.775895
-0.88217
-0.672931
-0.643047
-0.881181
-0.642015
-0.777744
-0.773844
-0.639961
-0.878598
-0.67182
-0.879862
-0.772053
-0.640593
-0.713668
-0.606738
-0.679893
-0.620318
-0.67693
-0.619152
-0.715909
-0.604061
-0.63686
-0.583668
-0.588317
-0.606035
-0.631674
-0.582967
-0.639769
-0.713777
-0.584943
-0.581884
-0.713054
-0.582212
-0.642042
-0.637933
-0.581848
-0.712028
-0.58488
-0.636531
-0.712583
-0.581978
-0.604532
-0.587004
-0.619078
-0.582237
-0.625442
-0.582775
-0.605627
-0.703564
-0.615098
-0.667263
-0.600744
-0.613637
-0.706094
-0.663913
-0.765584
-0.87145
-0.667977
-0.633355
-0.873257
-0.635641
-0.763292
-0.767533
-0.638394
-0.669228
-0.876375
-0.874744
-0.637062
-0.769529
-0.70097
-0.599297
-0.6099
-0.656585
-0.612173
-0.660314
-0.698147
-0.757078
-0.647885
-0.716333
-0.638433
-0.750288
-0.725324
-0.64097
-0.820586
-0.930689
-0.653071
-0.667284
-0.828138
-0.650378
-0.9268
-0.762189
-0.649558
-0.740169
-0.645961
-0.769333
-0.73258
-0.643198
-0.815527
-0.644899
-0.916013
-0.666362
-0.808211
-0.647876
-0.923853
-0.783564
-0.71539
-0.6581
-0.683069
-0.717267
-0.780353
-0.683237
-0.888232
-0.958395
-0.693861
-0.689665
-0.889949
-0.694812
-0.960769
-0.786747
-0.658208
-0.721407
-0.683154
-0.719398
-0.789357
-0.683491
-0.886371
-0.695708
-0.965897
-0.69088
-0.884472
-0.695205
-0.963346
-0.774088
-0.658461
-0.713492
-0.682755
-0.682561
-0.712441
-0.776997
-0.876156
-0.969265
-0.696788
-0.695621
-0.871739
-0.696314
-0.970244
-0.770394
-0.658754
-0.682317
-0.717038
-0.768121
-0.682153
-0.711934
-0.879973
-0.696012
-0.694745
-0.968062
-0.69636
-0.88225
-0.969986
-0.610168
-0.595856
-0.582197
-0.581182
-0.612094
-0.600548
-0.582263
-0.647192
-0.71513
-0.583689
-0.582431
-0.716209
-0.644776
-0.582195
-0.649599
-0.582672
-0.716926
-0.583765
-0.651672
-0.716794
-0.582603
-0.608431
-0.582223
-0.61302
-0.582625
-0.607139
-0.60651
-0.582102
-0.678978
-0.636015
-0.588084
-0.601534
-0.629777
-0.68284
-0.599945
-0.743825
-0.850692
-0.619717
-0.654517
-0.740296
-0.854102
-0.62166
-0.674999
-0.58693
-0.617135
-0.596919
-0.623428
-0.670993
-0.598664
-0.747348
-0.62476
-0.861075
-0.655956
-0.857624
-0.750748
-0.623068
-0.689653
-0.641321
-0.592381
-0.602848
-0.604608
-0.645407
-0.68642
-0.759209
-0.870509
-0.631859
-0.662081
-0.76155
-0.869069
-0.629384
-0.69269
-0.593684
-0.608452
-0.653196
-0.695731
-0.606033
-0.649245
-0.756713
-0.626145
-0.660739
-0.864177
-0.867075
-0.627927
-0.753843
-0.0582041
-0.0485286
-0.058407
-0.0458497
-0.056014
-0.0607403
-0.0478437
-0.0634752
-0.0439917
-0.128116
-0.06692
-0.0433833
-0.125496
-0.0609254
-0.118802
-0.038293
-0.0579611
-0.0409398
-0.122709
-0.145167
-0.118918
-0.11625
-0.146307
-0.155505
-0.159647
-0.156028
-0.159148
-0.14881
-0.13955
-0.12979
-0.152319
-0.160972
-0.154706
-0.162472
-0.152883
-0.159483
-0.161211
-0.157897
-0.162172
-0.158541
-0.145867
-0.150013
-0.155779
-0.212587
-0.159044
-0.21468
-0.1882
-0.214785
-0.21154
-0.158729
-0.188756
-0.193036
-0.197633
-0.186181
-0.177916
-0.171425
-0.170884
-0.178915
-0.190655
-0.203747
-0.201153
-0.192097
-0.211991
-0.186942
-0.214768
-0.155165
-0.214374
-0.213681
-0.156583
-0.242123
-0.226306
-0.211234
-0.234205
-0.242214
-0.226078
-0.232396
-0.268791
-0.322482
-0.267811
-0.324529
-0.239158
-0.226815
-0.222473
-0.245613
-0.261505
-0.279925
-0.248802
-0.254324
-0.24866
-0.260721
-0.279895
-0.23643
-0.216945
-0.231882
-0.220799
-0.241752
-0.2099
-0.224569
-0.23065
-0.2253
-0.231186
-0.240529
-0.260775
-0.251267
-0.277217
-0.254302
-0.260513
-0.249371
-0.278567
-0.209993
-0.159499
-0.214642
-0.187575
-0.15801
-0.211246
-0.214123
-0.180687
-0.171338
-0.172111
-0.179288
-0.194469
-0.211708
-0.208637
-0.196544
-0.194396
-0.205681
-0.192967
-0.207973
-0.207943
-0.186003
-0.155371
-0.213172
-0.155368
-0.213006
-0.210654
-0.199212
-0.204092
-0.140776
-0.172002
-0.202005
-0.20251
-0.138158
-0.189716
-0.204627
-0.205599
-0.188567
-0.177341
-0.167139
-0.166223
-0.178506
-0.191982
-0.209285
-0.207935
-0.193406
-0.197163
-0.17012
-0.198404
-0.134399
-0.199829
-0.13709
-0.194933
-0.232256
-0.215715
-0.203675
-0.223008
-0.230396
-0.217682
-0.225488
-0.288473
-0.325672
-0.287588
-0.327211
-0.250738
-0.227412
-0.247698
-0.228924
-0.253261
-0.275285
-0.246559
-0.252906
-0.256036
-0.245258
-0.270797
-0.251415
-0.227621
-0.250533
-0.228627
-0.233916
-0.205336
-0.221153
-0.228087
-0.23625
-0.219503
-0.226689
-0.251834
-0.241895
-0.267024
-0.25185
-0.250049
-0.244343
-0.268902
-0.207433
-0.205947
-0.141516
-0.178738
-0.145404
-0.204105
-0.208157
-0.180672
-0.168848
-0.169568
-0.180131
-0.196917
-0.211594
-0.196264
-0.212489
-0.195962
-0.210664
-0.194908
-0.211754
-0.209787
-0.18102
-0.149429
-0.210423
-0.206804
-0.14914
-0.210063
-0.0228643
0.0055972
-0.0206285
-0.00977182
-0.0291672
-0.0145726
-0.0024907
-0.0183927
0.00560257
-0.0219883
-0.00528366
-0.0137451
-0.0268857
-0.00139605
-0.0233138
-0.0364914
-0.0145066
-0.0108573
-0.0296815
-0.0314692
-0.00799724
-0.13982
-0.114321
-0.110912
-0.142818
-0.146772
-0.149093
-0.145078
-0.151036
-0.136403
-0.103772
-0.106955
-0.134451
-0.127481
-0.0896019
-0.123549
-0.0941288
-0.141773
-0.147105
-0.143282
-0.145159
-0.13064
-0.101035
-0.0979218
-0.132293
-0.138817
-0.152926
-0.157781
-0.133363
-0.128169
-0.122213
-0.116101
-0.133611
-0.143233
-0.166487
-0.161875
-0.148271
-0.202313
-0.134102
-0.169792
-0.192503
-0.199431
-0.172567
-0.196152
-0.258341
-0.291557
-0.256065
-0.293152
-0.220941
-0.242745
-0.207034
-0.225051
-0.203545
-0.225014
-0.2382
-0.224364
-0.201284
-0.198091
-0.227326
-0.205637
-0.135765
-0.178465
-0.205653
-0.175183
-0.199317
-0.209863
-0.217528
-0.1978
-0.232262
-0.222171
-0.214923
-0.200623
-0.23451
-0.222085
-0.192169
-0.21928
-0.195391
-0.142638
-0.127455
-0.132519
-0.138211
-0.159859
-0.179511
-0.176831
-0.162874
-0.156429
-0.170261
-0.152421
-0.173906
-0.183557
-0.160062
-0.134313
-0.182473
-0.188858
-0.128295
-0.179276
-0.183996
-0.20175
-0.199744
-0.185872
-0.168567
-0.155302
-0.157801
-0.165508
-0.187198
-0.162511
-0.194954
-0.133137
-0.192093
-0.191372
-0.130296
-0.181271
-0.19371
-0.196908
-0.178243
-0.215678
-0.1506
-0.193192
-0.208396
-0.215196
-0.188733
-0.213212
-0.267983
-0.304552
-0.270243
-0.301468
-0.228214
-0.24347
-0.210125
-0.234657
-0.22628
-0.21393
-0.244635
-0.231858
-0.20335
-0.228913
-0.206496
-0.21397
-0.145889
-0.181109
-0.206747
-0.211409
-0.185335
-0.211276
-0.230156
-0.219061
-0.24921
-0.235908
-0.231473
-0.216285
-0.246736
-0.233698
-0.210928
-0.235575
-0.20875
-0.159041
-0.152669
-0.150169
-0.162153
-0.168809
-0.182038
-0.165898
-0.184836
-0.171583
-0.191106
-0.17518
-0.187467
-0.337585
-0.300109
-0.299108
-0.339095
-0.343097
-0.303634
-0.334527
-0.339591
-0.344462
-0.319032
-0.317798
-0.342185
-0.342347
-0.313872
-0.336304
-0.3069
-0.315391
-0.337316
-0.339309
-0.310358
-0.33388
-0.341399
-0.302386
-0.351404
-0.311235
-0.34763
-0.344505
-0.307134
-0.333627
-0.276026
-0.278853
-0.339428
-0.342486
-0.270623
-0.333689
-0.338645
-0.3338
-0.315241
-0.287375
-0.255773
-0.254253
-0.295008
-0.259539
-0.278713
-0.329122
-0.266589
-0.303279
-0.256927
-0.339902
-0.301477
-0.262572
-0.321908
-0.27336
-0.26055
-0.32355
-0.264968
-0.32718
-0.309744
-0.327992
-0.295855
-0.287135
-0.333869
-0.292482
-0.330302
-0.330502
-0.325698
-0.328445
-0.301873
-0.294702
-0.329797
-0.296212
-0.324453
-0.328543
-0.302661
-0.305277
-0.333914
-0.332503
-0.299649
-0.330287
-0.325008
-0.282789
-0.287183
-0.32587
-0.288787
-0.327012
-0.324026
-0.464524
-0.340328
-0.35171
-0.419778
-0.468994
-0.353729
-0.416758
-0.52366
-0.561946
-0.375067
-0.379308
-0.523576
-0.551591
-0.371805
-0.462292
-0.342015
-0.357904
-0.416052
-0.460435
-0.355182
-0.41646
-0.523723
-0.366717
-0.531557
-0.375888
-0.522458
-0.539842
-0.369797
-0.365042
-0.314613
-0.322489
-0.387603
-0.39099
-0.31299
-0.363472
-0.346127
-0.332641
-0.29365
-0.300031
-0.301333
-0.331455
-0.348002
-0.345877
-0.304229
-0.295023
-0.331215
-0.302515
-0.345119
-0.331608
-0.366434
-0.321743
-0.398822
-0.310962
-0.394253
-0.312046
-0.369969
-0.363893
-0.327376
-0.316164
-0.387004
-0.318271
-0.385958
-0.364081
-0.348146
-0.336274
-0.312841
-0.302967
-0.349141
-0.310064
-0.335043
-0.365381
-0.329273
-0.323137
-0.387467
-0.366176
-0.320285
-0.386973
-0.346406
-0.305874
-0.300762
-0.332577
-0.307974
-0.346208
-0.333084
-0.306169
-0.241577
-0.259217
-0.319146
-0.303417
-0.246367
-0.321393
-0.257602
-0.301561
-0.250358
-0.305058
-0.267209
-0.280955
-0.250806
-0.24827
-0.272773
-0.275158
-0.242972
-0.263066
-0.234754
-0.266808
-0.248551
-0.260138
-0.26911
-0.238994
-0.308886
-0.262927
-0.255222
-0.32419
-0.311285
-0.250684
-0.323291
-0.316277
-0.273688
-0.261391
-0.318342
-0.31605
-0.270768
-0.316863
-0.316922
-0.322787
-0.28477
-0.275368
-0.321744
-0.277614
-0.317837
-0.317098
-0.282156
-0.28649
-0.321732
-0.321938
-0.279743
-0.317072
-0.315745
-0.257547
-0.310684
-0.265039
-0.313049
-0.26797
-0.316029
-0.319789
-0.272251
-0.276757
-0.321283
-0.280111
-0.322905
-0.318763
-0.321411
-0.327531
-0.292541
-0.295128
-0.323076
-0.326081
-0.28998
-0.321632
-0.275485
-0.285168
-0.325635
-0.323061
-0.282986
-0.324696
-0.319406
-0.284624
-0.292832
-0.323264
-0.323995
-0.287366
-0.318608
-0.328406
-0.239431
-0.30366
-0.226096
-0.304217
-0.332535
-0.238103
-0.321026
-0.320897
-0.257836
-0.245706
-0.32079
-0.247627
-0.318412
-0.32935
-0.254671
-0.330439
-0.261343
-0.326625
-0.336364
-0.252111
-0.315566
-0.224164
-0.291107
-0.23131
-0.298268
-0.233953
-0.306813
-0.249603
-0.23485
-0.223166
-0.247883
-0.248664
-0.235315
-0.248544
-0.272499
-0.284683
-0.272194
-0.285305
-0.257177
-0.25527
-0.240274
-0.239056
-0.251163
-0.241823
-0.256289
-0.266177
-0.242309
-0.243593
-0.268422
-0.254112
-0.240933
-0.245801
-0.238176
-0.253162
-0.247399
-0.241779
-0.25245
-0.224736
-0.228764
-0.252339
-0.234224
-0.253356
-0.243384
-0.263189
-0.244013
-0.263707
-0.241607
-0.331996
-0.241666
-0.228775
-0.304142
-0.243254
-0.33426
-0.302453
-0.346313
-0.349308
-0.274311
-0.265065
-0.350018
-0.263038
-0.341169
-0.346731
-0.258196
-0.270742
-0.337462
-0.342904
-0.260477
-0.3451
-0.33134
-0.230886
-0.248024
-0.29727
-0.245522
-0.30308
-0.326724
-0.444007
-0.325286
-0.337227
-0.405508
-0.44406
-0.334202
-0.404864
-0.484727
-0.481961
-0.338777
-0.340541
-0.486373
-0.481721
-0.341156
-0.44135
-0.322363
-0.328881
-0.401024
-0.442314
-0.331129
-0.401442
-0.487497
-0.347868
-0.487722
-0.344326
-0.488113
-0.486215
-0.344502
-0.379669
-0.317819
-0.310884
-0.387909
-0.392947
-0.310383
-0.379337
-0.353131
-0.333086
-0.299312
-0.290141
-0.349417
-0.298817
-0.335414
-0.377597
-0.318626
-0.40099
-0.310548
-0.400061
-0.373104
-0.310119
-0.356514
-0.300588
-0.290154
-0.342046
-0.299223
-0.361562
-0.337522
-0.369353
-0.315608
-0.311859
-0.383558
-0.309647
-0.381808
-0.373354
-0.358271
-0.353899
-0.297107
-0.293246
-0.354114
-0.299313
-0.353326
-0.364195
-0.312864
-0.304969
-0.375989
-0.361723
-0.307227
-0.377534
-0.364368
-0.302575
-0.294221
-0.345979
-0.30137
-0.364215
-0.351148
-0.245473
-0.226916
-0.230484
-0.295176
-0.246758
-0.22619
-0.296006
-0.272144
-0.293404
-0.271279
-0.2911
-0.245935
-0.253652
-0.245415
-0.237476
-0.252759
-0.249726
-0.236915
-0.253795
-0.251409
-0.247593
-0.236673
-0.258384
-0.245616
-0.252188
-0.254729
-0.236357
-0.243815
-0.230179
-0.227608
-0.289044
-0.243792
-0.226635
-0.293313
-0.251393
-0.239116
-0.318347
-0.246518
-0.259428
-0.314501
-0.312278
-0.259619
-0.321466
-0.319885
-0.323191
-0.273477
-0.28013
-0.318365
-0.324997
-0.271924
-0.317651
-0.2478
-0.311607
-0.262681
-0.312061
-0.316521
-0.260658
-0.320883
-0.271717
-0.279676
-0.329816
-0.326313
-0.271304
-0.32418
-0.32752
-0.245672
-0.261028
-0.316599
-0.260851
-0.318767
-0.324299
-0.333097
-0.346845
-0.269552
-0.283023
-0.338371
-0.340951
-0.272769
-0.328063
-0.243673
-0.253809
-0.310924
-0.328882
-0.258558
-0.316439
-0.330473
-0.273967
-0.283952
-0.332611
-0.337223
-0.274275
-0.326858
-0.325198
-0.299675
-0.280099
-0.378759
-0.335899
-0.282325
-0.355773
-0.338111
-0.258346
-0.330719
-0.262404
-0.276244
-0.236269
-0.268833
-0.239407
-0.276903
-0.236011
-0.266572
-0.408424
-0.43053
-0.405199
-0.409104
-0.316777
-0.300871
-0.29016
-0.357719
-0.317451
-0.285922
-0.356616
-0.280502
-0.261018
-0.239975
-0.239685
-0.280422
-0.240087
-0.26421
-0.423061
-0.437369
-0.397213
-0.399773
-0.318918
-0.39514
-0.341324
-0.393807
-0.341244
-0.403138
-0.398991
-0.402984
-0.359135
-0.376724
-0.394658
-0.360199
-0.406239
-0.395351
-0.318587
-0.385156
-0.340145
-0.388923
-0.390431
-0.340791
-0.40305
-0.36144
-0.377537
-0.412769
-0.360875
-0.407168
-0.40936
-0.408126
-0.318246
-0.393278
-0.340304
-0.339587
-0.389141
-0.405598
-0.418936
-0.428122
-0.358534
-0.379188
-0.421334
-0.360488
-0.423966
-0.410755
-0.319238
-0.336911
-0.394991
-0.408805
-0.338956
-0.394842
-0.415443
-0.361313
-0.379461
-0.416306
-0.361294
-0.411374
-0.420183
-0.472172
-0.431498
-0.449296
-0.488198
-0.489006
-0.430736
-0.470138
-0.460781
-0.444602
-0.38727
-0.404518
-0.446465
-0.461451
-0.407546
-0.45988
-0.411628
-0.390304
-0.448018
-0.448527
-0.410246
-0.457427
-0.473882
-0.447754
-0.491082
-0.426271
-0.489676
-0.476176
-0.428611
-0.539098
-0.510342
-0.470743
-0.489875
-0.538381
-0.510858
-0.49041
-0.591287
-0.690817
-0.518626
-0.551433
-0.518281
-0.590974
-0.69257
-0.540279
-0.471315
-0.511957
-0.491448
-0.511695
-0.491097
-0.541056
-0.592139
-0.517276
-0.69434
-0.550897
-0.593796
-0.517702
-0.693335
-0.467101
-0.432238
-0.487992
-0.450319
-0.432388
-0.468717
-0.487391
-0.450712
-0.437548
-0.395634
-0.413572
-0.440973
-0.413497
-0.448135
-0.452858
-0.412752
-0.394772
-0.446204
-0.4438
-0.413055
-0.455239
-0.46593
-0.450676
-0.4326
-0.486572
-0.432709
-0.487189
-0.464467
-0.458313
-0.449403
-0.484778
-0.431182
-0.484156
-0.430472
-0.459427
-0.435731
-0.416224
-0.409473
-0.394116
-0.434211
-0.418452
-0.410464
-0.457497
-0.449254
-0.483305
-0.429335
-0.483832
-0.456535
-0.430074
-0.437117
-0.412029
-0.394922
-0.422964
-0.420565
-0.411087
-0.438794
-0.545217
-0.513458
-0.471962
-0.492564
-0.545993
-0.513553
-0.492536
-0.593555
-0.690272
-0.519389
-0.551724
-0.592795
-0.519222
-0.68823
-0.543917
-0.471723
-0.513114
-0.492227
-0.543032
-0.513171
-0.492022
-0.594893
-0.519962
-0.684811
-0.552109
-0.59561
-0.519841
-0.686865
-0.461612
-0.485095
-0.431452
-0.450458
-0.432206
-0.460298
-0.485857
-0.444055
-0.434706
-0.397463
-0.414404
-0.431231
-0.446333
-0.413774
-0.442306
-0.412488
-0.397327
-0.425419
-0.428369
-0.413437
-0.440317
-0.462594
-0.450477
-0.433104
-0.486891
-0.463945
-0.432408
-0.486216
-0.72288
-0.626398
-0.612855
-0.692062
-0.689181
-0.624796
-0.725002
-0.781595
-0.883074
-0.675641
-0.64456
-0.88421
-0.779651
-0.645831
-0.783303
-0.648424
-0.676548
-0.88541
-0.885071
-0.64709
-0.784731
-0.720645
-0.611289
-0.683072
-0.621937
-0.686165
-0.718308
-0.623364
-0.666719
-0.596481
-0.673432
-0.605856
-0.661338
-0.598487
-0.677344
-0.671193
-0.727486
-0.582202
-0.590542
-0.721457
-0.588777
-0.680765
-0.662043
-0.585918
-0.715149
-0.582469
-0.653291
-0.717762
-0.587643
-0.672259
-0.607279
-0.601929
-0.685117
-0.599883
-0.681243
-0.677934
-0.728912
-0.627654
-0.694807
-0.618038
-0.629386
-0.726931
-0.697631
-0.787036
-0.880972
-0.678676
-0.652707
-0.882693
-0.651374
-0.787276
-0.786528
-0.649387
-0.678613
-0.884885
-0.884041
-0.650731
-0.785701
-0.730714
-0.619349
-0.632169
-0.702971
-0.630436
-0.700356
-0.732337
-0.842151
-0.693507
-0.69395
-0.821802
-0.845609
-0.691531
-0.818187
-0.891031
-0.964678
-0.69427
-0.693575
-0.968909
-0.885733
-0.695395
-0.894654
-0.698142
-0.974617
-0.694468
-0.898142
-0.972074
-0.696424
-0.838682
-0.692503
-0.687932
-0.809982
-0.833431
-0.69019
-0.814726
-0.846687
-0.823288
-0.707884
-0.702299
-0.826903
-0.842142
-0.709746
-0.901994
-0.950396
-0.704448
-0.7121
-0.710893
-0.950879
-0.909673
-0.894856
-0.708377
-0.953595
-0.704641
-0.887661
-0.709781
-0.95222
-0.85118
-0.704068
-0.834335
-0.712974
-0.830443
-0.711301
-0.856017
-0.832157
-0.696465
-0.819344
-0.706379
-0.704483
-0.815145
-0.83728
-0.864222
-0.953856
-0.703227
-0.704809
-0.856506
-0.704772
-0.954238
-0.827314
-0.695031
-0.701235
-0.806493
-0.822025
-0.703152
-0.811239
-0.872035
-0.707251
-0.704615
-0.954637
-0.705774
-0.880108
-0.954551
-0.690695
-0.606312
-0.694963
-0.612819
-0.69267
-0.605343
-0.69357
-0.697317
-0.735235
-0.582942
-0.591476
-0.74375
-0.690031
-0.592724
-0.701619
-0.593963
-0.753419
-0.582949
-0.704117
-0.750101
-0.593241
-0.687604
-0.612021
-0.60307
-0.688534
-0.683173
-0.604564
-0.691479
-0.733812
-0.709516
-0.635575
-0.626607
-0.709524
-0.734589
-0.636159
-0.776666
-0.854667
-0.677165
-0.653676
-0.858828
-0.653881
-0.774103
-0.779562
-0.653928
-0.868072
-0.677787
-0.863539
-0.782142
-0.654099
-0.732684
-0.6269
-0.709021
-0.636528
-0.709177
-0.636318
-0.731802
-0.735131
-0.709255
-0.624395
-0.63522
-0.634462
-0.708426
-0.735143
-0.787232
-0.87957
-0.653024
-0.679365
-0.787371
-0.878193
-0.653686
-0.734685
-0.62369
-0.632902
-0.705173
-0.733616
-0.63401
-0.707111
-0.78619
-0.653988
-0.678884
-0.872386
-0.875748
-0.653694
-0.784515
-0.702514
-0.632632
-0.693021
-0.624045
-0.690306
-0.705596
-0.632381
-0.738268
-0.808082
-0.670947
-0.64917
-0.813044
-0.64795
-0.736088
-0.738829
-0.648629
-0.820616
-0.671574
-0.815899
-0.740681
-0.648598
-0.700183
-0.622884
-0.6846
-0.631957
-0.687911
-0.631406
-0.696573
-0.696723
-0.690219
-0.607143
-0.614974
-0.696497
-0.691266
-0.60755
-0.716695
-0.772087
-0.5829
-0.595499
-0.773922
-0.595231
-0.715662
-0.717143
-0.594699
-0.776246
-0.582502
-0.717745
-0.775038
-0.595031
-0.697023
-0.615173
-0.692553
-0.608134
-0.692225
-0.607739
-0.696748
-0.710102
-0.633004
-0.694881
-0.62564
-0.633817
-0.707565
-0.696891
-0.745136
-0.830231
-0.672712
-0.6505
-0.828935
-0.649634
-0.747443
-0.742833
-0.648742
-0.672768
-0.823139
-0.826647
-0.649526
-0.741088
-0.712428
-0.625872
-0.634785
-0.699555
-0.634017
-0.698589
-0.714173
-0.873328
-0.718604
-0.711521
-0.848824
-0.86967
-0.716087
-0.852685
-0.919682
-0.976079
-0.730503
-0.715648
-0.920496
-0.976095
-0.722889
-0.872286
-0.722105
-0.727206
-0.857019
-0.87512
-0.719693
-0.852546
-0.922263
-0.715388
-0.984496
-0.713533
-0.919595
-0.982866
-0.719766
-0.87022
-0.84946
-0.711467
-0.719945
-0.845614
-0.87508
-0.717736
-0.9251
-0.949871
-0.713065
-0.703792
-0.917235
-0.714388
-0.949632
-0.865582
-0.709692
-0.838019
-0.714402
-0.841902
-0.860675
-0.716231
-0.93256
-0.716975
-0.947654
-0.703372
-0.940284
-0.715363
-0.948656
-0.884655
-0.719973
-0.852472
-0.721629
-0.724886
-0.856977
-0.879095
-0.961643
-0.943256
-0.725079
-0.703645
-0.970777
-0.721946
-0.943077
-0.887069
-0.722914
-0.731406
-0.863359
-0.893362
-0.727219
-0.857944
-0.955777
-0.718028
-0.703747
-0.945865
-0.720438
-0.947217
-0.945665
-0.698079
-0.695551
-0.608275
-0.616147
-0.697386
-0.695751
-0.608639
-0.715104
-0.772164
-0.583295
-0.596104
-0.770484
-0.716282
-0.595603
-0.71469
-0.59548
-0.767786
-0.583652
-0.713362
-0.769513
-0.595827
-0.697714
-0.615817
-0.694709
-0.608823
-0.698199
-0.694724
-0.608369
-0.727745
-0.706704
-0.627144
-0.635859
-0.707269
-0.726252
-0.635904
-0.768762
-0.850469
-0.653113
-0.675015
-0.77129
-0.846682
-0.652797
-0.729458
-0.627427
-0.708457
-0.636322
-0.708133
-0.730516
-0.636359
-0.765863
-0.651799
-0.841639
-0.67412
-0.84348
-0.763426
-0.652059
-0.722597
-0.705352
-0.627056
-0.635178
-0.635333
-0.704952
-0.723906
-0.754446
-0.834809
-0.650719
-0.672528
-0.752524
-0.83545
-0.650276
-0.719684
-0.626617
-0.635172
-0.70255
-0.718281
-0.634751
-0.703142
-0.758241
-0.650928
-0.673127
-0.839327
-0.838431
-0.650985
-0.760245
0.0354887
0.0649619
0.0486045
0.054961
0.0370361
0.0468628
0.0535879
0.0392856
0.0576034
-0.0156498
0.0453695
0.0408807
0.0402615
0.0170186
0.0308162
0.0214805
0.0477192
0.0422705
0.0325396
0.0440788
0.0166657
-0.066808
-0.0285763
-0.033991
-0.0615251
-0.0832964
-0.0909911
-0.0860403
-0.0892249
-0.0703181
-0.0407484
-0.0373972
-0.0737979
-0.0762546
-0.0490666
-0.0775211
-0.0403607
-0.0897294
-0.092921
-0.0883855
-0.0939191
-0.0780794
-0.0431615
-0.0451292
-0.0762659
-0.122137
-0.1486
-0.144763
-0.127893
-0.101752
-0.101037
-0.0984571
-0.104847
-0.11506
-0.130427
-0.139107
-0.112165
-0.170917
-0.169031
-0.100778
-0.140582
-0.174876
-0.163642
-0.137566
-0.218751
-0.266009
-0.22432
-0.263576
-0.171145
-0.15364
-0.150145
-0.175172
-0.18322
-0.197158
-0.160856
-0.183054
-0.162629
-0.181379
-0.199439
-0.174316
-0.149834
-0.182995
-0.146077
-0.168661
-0.100501
-0.164163
-0.135334
-0.162992
-0.136469
-0.167968
-0.186166
-0.167079
-0.205832
-0.184634
-0.18975
-0.164036
-0.202402
-0.10897
-0.10227
-0.101831
-0.108038
-0.120844
-0.134687
-0.134762
-0.12007
-0.119112
-0.128041
-0.116047
-0.131285
-0.113544
-0.126299
-0.128246
-0.111993
-0.103681
-0.0963056
-0.0950957
-0.104655
-0.115415
-0.131158
-0.13031
-0.11623
-0.162991
-0.155352
-0.0979394
-0.130308
-0.160427
-0.159711
-0.131841
-0.20875
-0.240079
-0.205998
-0.243804
-0.178857
-0.155038
-0.178413
-0.154947
-0.177541
-0.194622
-0.159471
-0.176966
-0.179679
-0.15766
-0.191777
-0.177605
-0.152735
-0.175858
-0.154073
-0.165033
-0.0977516
-0.163496
-0.134238
-0.166851
-0.161342
-0.132858
-0.175243
-0.154218
-0.186964
-0.17513
-0.172951
-0.156128
-0.189214
-0.10726
-0.0981202
-0.098993
-0.106464
-0.119411
-0.13469
-0.119918
-0.134287
-0.118706
-0.132897
-0.117978
-0.133651
0.0470318
0.0854938
0.0574248
0.0890961
0.047202
0.056319
0.0881777
0.0391077
0.0723833
0.040947
0.0825741
0.0361752
0.0425969
0.0827982
0.0401629
0.0376894
0.0755007
0.0733431
0.0388552
0.0411838
0.0840668
-0.0390114
-0.0200954
0.0454435
0.0181073
-0.0525577
-0.0711853
-0.0822487
-0.0692327
-0.0835077
-0.0418405
0.0264702
0.0417902
0.0191713
-0.0387174
-0.0285153
0.0457483
0.0787279
-0.0238811
0.0412662
-0.0652879
-0.0803332
-0.0671338
-0.0788274
-0.0329935
0.0309734
0.0647887
0.0359278
-0.0360478
-0.0606538
-0.0687679
-0.0704526
-0.0712456
-0.055766
-0.0534239
-0.063041
-0.0577681
-0.0615266
-0.0865469
-0.0789809
-0.0713067
-0.15753
-0.184151
-0.15275
-0.188556
-0.155033
-0.163292
-0.103766
-0.127825
-0.101617
-0.157219
-0.161255
-0.137134
-0.121069
-0.117633
-0.140632
-0.152786
-0.0990262
-0.156122
-0.125742
-0.150232
-0.10058
-0.158388
-0.132983
-0.108166
-0.127547
-0.113609
-0.0726015
-0.0540305
-0.0629898
-0.0659277
-0.0879309
-0.10493
-0.101407
-0.091819
-0.0835001
-0.0917874
-0.0773408
-0.0973534
-0.108865
-0.124279
-0.122535
-0.110296
-0.0964041
-0.0877268
-0.0890494
-0.0949258
-0.107014
-0.118404
-0.120406
-0.105258
-0.175566
-0.210218
-0.17859
-0.206998
-0.159927
-0.166209
-0.107188
-0.135165
-0.160451
-0.108405
-0.167247
-0.146029
-0.124831
-0.144432
-0.126653
-0.163446
-0.114619
-0.171078
-0.138349
-0.163286
-0.112526
-0.170198
-0.14899
-0.132073
-0.151878
-0.129564
-0.0909804
-0.0857497
-0.0841331
-0.0927772
-0.0980307
-0.108665
-0.0956907
-0.110777
-0.100911
-0.115863
-0.102928
-0.113656
-0.280073
-0.213273
-0.209336
-0.231632
-0.236495
-0.214596
-0.272416
-0.238505
-0.211264
-0.308284
-0.316595
-0.24608
-0.236375
-0.315162
-0.310691
-0.231846
-0.300477
-0.223216
-0.242684
-0.306989
-0.310401
-0.228343
-0.291272
-0.28795
-0.21151
-0.250114
-0.221165
-0.246386
-0.289558
-0.216942
-0.204575
-0.201565
-0.236883
-0.223382
-0.221201
-0.244902
-0.2432
-0.221678
-0.242742
-0.263275
-0.272264
-0.266646
-0.272525
-0.221572
-0.209322
-0.199379
-0.209088
-0.211988
-0.21101
-0.218177
-0.245107
-0.238477
-0.241023
-0.241061
-0.226619
-0.215511
-0.219191
-0.201052
-0.231748
-0.215496
-0.212366
-0.230619
-0.223488
-0.220719
-0.233219
-0.221578
-0.235982
-0.227353
-0.251626
-0.254497
-0.261565
-0.247224
-0.232956
-0.209448
-0.214698
-0.230629
-0.208056
-0.233454
-0.23782
-0.272387
-0.291849
-0.229233
-0.217203
-0.296223
-0.216511
-0.266115
-0.213598
-0.240724
-0.235703
-0.239392
-0.277756
-0.219057
-0.230053
-0.301212
-0.301154
-0.215855
-0.275466
-0.224714
-0.218381
-0.210863
-0.228254
-0.209219
-0.230481
-0.221072
-0.201239
-0.23621
-0.186224
-0.238193
-0.460967
-0.279665
-0.28637
-0.417818
-0.467752
-0.287487
-0.409888
-0.476689
-0.441456
-0.297601
-0.28619
-0.483187
-0.438375
-0.294586
-0.457663
-0.282118
-0.291877
-0.397214
-0.450985
-0.290547
-0.405037
-0.463833
-0.286808
-0.424205
-0.28104
-0.453855
-0.429802
-0.289731
-0.346281
-0.253696
-0.261882
-0.372909
-0.377433
-0.251343
-0.344948
-0.322734
-0.289251
-0.224268
-0.233904
-0.23511
-0.297444
-0.321662
-0.32618
-0.241154
-0.227308
-0.308727
-0.23884
-0.327983
-0.304652
-0.346803
-0.258866
-0.388822
-0.247239
-0.38163
-0.24795
-0.349702
-0.34414
-0.268467
-0.257595
-0.371087
-0.259449
-0.366951
-0.345795
-0.331857
-0.311733
-0.251872
-0.235061
-0.328175
-0.249555
-0.31549
-0.34416
-0.271342
-0.26433
-0.360327
-0.340468
-0.262632
-0.365314
-0.331103
-0.244759
-0.232165
-0.313147
-0.246369
-0.331117
-0.313955
-0.216198
-0.213799
-0.224367
-0.223112
-0.215201
-0.215766
-0.223178
-0.24264
-0.253934
-0.244485
-0.255833
-0.210728
-0.206342
-0.192904
-0.207472
-0.202804
-0.214905
-0.205081
-0.23549
-0.23561
-0.237681
-0.232677
-0.208158
-0.200912
-0.198397
-0.190902
-0.206848
-0.200268
-0.203036
-0.218998
-0.225365
-0.219778
-0.230918
-0.224053
-0.217702
-0.225731
-0.23574
-0.233822
-0.236225
-0.233185
-0.225008
-0.218645
-0.224943
-0.227387
-0.229468
-0.218591
-0.221461
-0.245013
-0.240182
-0.237982
-0.250105
-0.224371
-0.237641
-0.215793
-0.216042
-0.269981
-0.213272
-0.224133
-0.240389
-0.247726
-0.22663
-0.211316
-0.215955
-0.280593
-0.27743
-0.212244
-0.226386
-0.228456
-0.222764
-0.233134
-0.221076
-0.230789
-0.218819
-0.234276
-0.243742
-0.237081
-0.238422
-0.243364
-0.217702
-0.228638
-0.219187
-0.22652
-0.218266
-0.225156
-0.21968
-0.230698
-0.281291
-0.215323
-0.219055
-0.230574
-0.285737
-0.212857
-0.248638
-0.241695
-0.256892
-0.23604
-0.263778
-0.258232
-0.219114
-0.228
-0.214004
-0.228744
-0.216477
-0.217187
-0.226678
-0.227324
-0.21166
-0.216649
-0.283931
-0.284204
-0.211276
-0.22734
-0.245332
-0.236662
-0.235753
-0.244855
-0.209097
-0.198027
-0.182827
-0.199416
-0.195781
-0.194285
-0.213361
-0.223732
-0.205752
-0.209475
-0.21958
-0.216315
-0.22352
-0.20689
-0.196554
-0.224945
-0.212378
-0.202006
-0.249962
-0.271312
-0.273289
-0.252602
-0.222537
-0.209336
-0.210121
-0.234685
-0.23018
-0.206227
-0.227216
-0.202955
-0.17816
-0.18635
-0.18429
-0.190209
-0.19871
-0.189752
-0.229852
-0.217054
-0.214648
-0.232731
-0.184704
-0.166602
-0.181105
-0.192965
-0.182612
-0.16975
-0.19516
-0.204989
-0.209748
-0.201949
-0.212965
-0.178733
-0.173003
-0.145677
-0.162227
-0.170967
-0.159663
-0.180916
-0.21092
-0.221331
-0.217878
-0.213724
-0.175588
-0.153772
-0.165977
-0.143068
-0.173569
-0.167975
-0.156753
-0.187958
-0.18431
-0.17556
-0.201032
-0.172857
-0.198476
-0.19031
-0.20727
-0.210836
-0.204382
-0.21382
-0.222989
-0.201735
-0.193996
-0.205662
-0.204842
-0.220824
-0.207995
-0.236598
-0.238583
-0.212481
-0.217425
-0.238525
-0.215947
-0.237367
-0.260945
-0.278045
-0.276877
-0.259716
-0.246911
-0.234493
-0.230387
-0.249294
-0.236201
-0.21221
-0.212301
-0.242025
-0.240187
-0.214037
-0.235546
-0.225534
-0.197288
-0.210039
-0.213879
-0.207762
-0.211262
-0.227548
-0.242619
-0.221999
-0.238872
-0.225523
-0.382477
-0.260341
-0.256439
-0.44482
-0.390348
-0.253943
-0.43275
-0.352335
-0.34009
-0.239543
-0.232845
-0.345311
-0.345714
-0.243143
-0.372185
-0.257241
-0.247027
-0.402399
-0.363325
-0.250161
-0.4169
-0.360867
-0.250135
-0.358236
-0.236891
-0.367231
-0.353072
-0.247298
-0.356108
-0.255417
-0.242552
-0.4121
-0.406253
-0.242943
-0.359069
-0.322922
-0.292145
-0.231606
-0.220768
-0.322121
-0.23099
-0.292919
-0.35495
-0.256974
-0.394571
-0.24504
-0.401666
-0.351691
-0.244695
-0.321785
-0.228935
-0.219679
-0.290464
-0.229301
-0.321091
-0.291948
-0.366009
-0.253363
-0.240183
-0.415767
-0.23948
-0.420235
-0.361046
-0.319652
-0.253901
-0.221377
-0.213629
-0.322538
-0.222006
-0.253536
-0.321176
-0.371799
-0.252277
-0.238796
-0.424139
-0.376896
-0.238492
-0.422054
-0.314307
-0.225971
-0.215668
-0.283241
-0.224044
-0.317652
-0.251458
-0.19908
-0.186982
-0.195615
-0.211879
-0.200279
-0.184172
-0.210872
-0.220831
-0.229486
-0.223569
-0.227084
-0.185667
-0.175899
-0.153406
-0.16511
-0.177399
-0.183889
-0.167663
-0.220472
-0.226173
-0.21771
-0.229532
-0.188947
-0.173343
-0.181442
-0.156394
-0.190101
-0.180404
-0.170588
-0.19535
-0.192632
-0.178543
-0.204185
-0.193352
-0.181183
-0.206514
-0.225135
-0.238368
-0.228669
-0.234952
-0.231369
-0.21537
-0.219454
-0.224952
-0.225618
-0.220002
-0.231808
-0.245365
-0.237649
-0.239871
-0.244513
-0.228342
-0.238742
-0.218121
-0.213203
-0.229424
-0.236817
-0.219028
-0.2579
-0.276014
-0.273674
-0.259404
-0.231557
-0.217299
-0.228517
-0.221066
-0.226618
-0.232976
-0.220855
-0.228274
-0.219586
-0.212648
-0.236155
-0.23607
-0.218883
-0.229644
-0.246108
-0.24295
-0.241021
-0.246809
-0.235102
-0.20805
-0.217633
-0.224115
-0.21596
-0.224042
-0.233054
-0.237547
-0.238193
-0.218798
-0.214312
-0.237662
-0.23666
-0.219508
-0.246426
-0.239355
-0.249909
-0.241648
-0.261252
-0.280877
-0.286768
-0.261699
-0.230849
-0.205108
-0.212104
-0.216786
-0.229297
-0.213831
-0.219209
-0.238277
-0.219335
-0.213841
-0.234136
-0.232029
-0.219884
-0.233068
-0.248021
-0.244438
-0.245371
-0.247128
-0.25119
-0.236358
-0.200197
-0.271621
-0.254297
-0.19676
-0.267326
-0.244958
-0.225732
-0.248239
-0.223536
-0.264774
-0.288267
-0.260764
-0.293658
-0.246154
-0.230634
-0.191943
-0.255049
-0.239176
-0.193328
-0.26191
-0.269086
-0.30517
-0.273526
-0.299356
-0.337775
-0.284365
-0.302314
-0.306906
-0.307521
-0.311924
-0.331741
-0.442291
-0.379959
-0.371278
-0.453312
-0.370934
-0.390014
-0.343377
-0.35553
-0.374978
-0.339124
-0.387312
-0.497514
-0.485354
-0.487407
-0.479773
-0.343131
-0.289023
-0.316991
-0.321084
-0.312386
-0.347982
-0.316475
-0.430513
-0.3549
-0.362927
-0.418959
-0.366068
-0.330121
-0.351273
-0.379327
-0.334833
-0.360168
-0.383974
-0.319579
-0.26815
-0.296811
-0.301785
-0.295771
-0.291708
-0.325515
-0.342167
-0.359364
-0.30641
-0.330862
-0.335139
-0.313614
-0.365647
-0.38168
-0.322189
-0.370315
-0.329892
-0.463919
-0.49005
-0.476081
-0.493354
-0.313172
-0.261262
-0.280835
-0.280674
-0.306473
-0.289178
-0.286092
-0.393958
-0.346446
-0.338042
-0.406578
-0.348459
-0.325319
-0.33655
-0.374851
-0.31971
-0.354209
-0.37059
-0.347543
-0.339473
-0.334055
-0.37058
-0.36147
-0.32513
-0.356071
-0.393221
-0.395587
-0.395656
-0.395864
-0.323103
-0.302472
-0.289487
-0.287178
-0.311912
-0.314028
-0.301262
-0.408309
-0.458722
-0.461929
-0.409762
-0.333805
-0.329133
-0.334143
-0.304127
-0.345978
-0.322501
-0.315728
-0.336043
-0.318901
-0.296614
-0.334792
-0.326354
-0.310186
-0.344633
-0.394052
-0.403137
-0.399401
-0.395168
-0.415809
-0.396457
-0.382663
-0.388228
-0.407562
-0.405016
-0.39463
-0.507036
-0.641908
-0.498355
-0.650074
-0.464532
-0.438202
-0.430318
-0.483987
-0.44661
-0.577365
-0.415024
-0.430502
-0.41069
-0.463272
-0.524422
-0.445139
-0.41823
-0.438425
-0.422029
-0.429465
-0.390368
-0.421966
-0.404764
-0.418326
-0.400969
-0.43177
-0.430344
-0.39943
-0.489759
-0.422096
-0.42071
-0.405254
-0.504729
-0.373224
-0.342341
-0.380765
-0.36502
-0.349554
-0.365921
-0.388841
-0.371205
-0.36605
-0.327125
-0.34762
-0.360103
-0.340624
-0.377392
-0.414279
-0.456775
-0.453874
-0.412505
-0.401074
-0.416413
-0.412822
-0.405403
-0.361691
-0.326665
-0.320337
-0.344465
-0.351377
-0.333555
-0.354565
-0.397999
-0.407129
-0.397141
-0.409166
-0.383693
-0.372862
-0.364378
-0.406443
-0.357105
-0.400756
-0.389963
-0.424961
-0.410067
-0.424713
-0.395756
-0.428906
-0.400802
-0.417637
-0.429015
-0.442318
-0.442642
-0.430563
-0.415368
-0.403853
-0.392268
-0.373217
-0.416947
-0.401425
-0.388355
-0.433926
-0.449622
-0.449338
-0.432023
-0.4261
-0.41042
-0.423333
-0.406644
-0.426327
-0.425355
-0.404125
-0.425104
-0.425432
-0.434646
-0.420372
-0.412228
-0.378437
-0.368665
-0.392648
-0.39804
-0.383893
-0.405539
-0.446683
-0.425114
-0.410066
-0.418148
-0.45273
-0.42843
-0.414609
-0.514189
-0.439448
-0.487756
-0.453566
-0.489533
-0.595775
-0.421182
-0.457528
-0.476854
-0.427346
-0.602313
-0.541924
-0.468691
-0.549553
-0.467021
-0.435498
-0.407479
-0.424813
-0.408972
-0.432711
-0.430323
-0.411933
-0.538301
-0.441233
-0.630066
-0.466208
-0.550029
-0.435453
-0.619139
-0.409444
-0.421317
-0.390907
-0.3993
-0.385035
-0.412389
-0.421943
-0.39128
-0.372373
-0.346966
-0.354414
-0.378814
-0.38397
-0.361092
-0.428041
-0.449759
-0.44873
-0.43059
-0.411694
-0.415894
-0.407061
-0.420812
-0.415265
-0.4242
-0.418075
-0.423972
-0.396223
-0.373292
-0.352886
-0.387935
-0.383714
-0.367266
-0.400307
-0.405094
-0.394164
-0.3716
-0.41222
-0.39668
-0.378733
-0.420627
-0.688475
-0.6261
-0.618041
-0.673338
-0.675847
-0.627436
-0.687421
-0.73477
-0.804823
-0.67094
-0.646916
-0.803027
-0.734734
-0.647569
-0.732992
-0.644181
-0.668555
-0.796206
-0.798958
-0.645433
-0.731872
-0.691244
-0.620359
-0.681251
-0.629486
-0.679082
-0.693216
-0.629692
-0.682528
-0.59771
-0.671839
-0.602407
-0.684695
-0.595913
-0.668623
-0.709147
-0.761204
-0.568559
-0.579962
-0.763719
-0.581887
-0.707185
-0.710888
-0.585772
-0.767413
-0.570787
-0.712053
-0.765939
-0.584131
-0.679966
-0.599866
-0.591456
-0.661349
-0.593515
-0.665274
-0.677064
-0.684961
-0.624415
-0.670308
-0.612411
-0.622522
-0.686509
-0.66682
-0.725315
-0.779761
-0.661011
-0.637274
-0.785651
-0.638551
-0.72141
-0.7271
-0.642612
-0.663154
-0.793101
-0.788466
-0.640655
-0.730052
-0.684054
-0.60988
-0.618832
-0.659419
-0.620335
-0.663563
-0.681742
-0.825299
-0.747973
-0.760821
-0.840022
-0.82491
-0.752267
-0.838135
-1.15373
-1.09089
-1.15268
-1.09144
-0.807463
-0.686832
-0.699786
-0.740706
-0.677609
-0.808486
-0.734137
-0.801082
-0.722257
-0.667538
-0.694434
-0.796427
-0.672124
-0.727096
-0.82695
-0.765749
-0.761632
-0.828436
-0.817406
-0.758412
-0.838298
-0.953475
-0.87274
-0.738307
-0.742727
-0.870785
-0.953648
-0.733976
-0.927987
-0.813907
-0.66415
-0.696329
-0.699877
-0.825435
-0.915073
-0.934599
-0.709485
-0.841455
-0.669208
-0.942727
-0.704723
-0.832875
-0.954901
-0.738382
-0.859222
-0.726877
-0.871162
-0.729773
-0.947313
-0.947334
-0.753741
-0.872425
-0.74176
-0.744844
-0.870027
-0.951652
-0.960835
-0.867145
-0.725012
-0.68734
-0.96323
-0.722849
-0.862739
-0.94539
-0.758109
-0.750233
-0.863318
-0.938089
-0.749215
-0.87022
-0.954154
-0.713795
-0.682252
-0.849144
-0.71773
-0.949493
-0.85505
-0.667901
-0.579245
-0.645641
-0.58799
-0.664705
-0.582322
-0.649409
-0.703941
-0.759078
-0.561558
-0.577038
-0.757761
-0.705191
-0.574947
-0.701346
-0.568478
-0.752771
-0.557966
-0.69934
-0.755039
-0.571369
-0.671677
-0.592001
-0.588297
-0.657393
-0.674044
-0.586108
-0.654085
-0.665438
-0.641384
-0.602201
-0.586917
-0.638603
-0.669407
-0.598479
-0.694547
-0.735835
-0.632358
-0.607855
-0.744206
-0.611556
-0.688218
-0.699403
-0.620252
-0.756421
-0.637272
-0.750033
-0.704265
-0.616404
-0.661041
-0.581986
-0.631488
-0.589826
-0.635097
-0.593605
-0.655928
-0.675713
-0.644707
-0.597937
-0.606301
-0.609393
-0.647427
-0.673468
-0.71622
-0.775358
-0.63368
-0.653733
-0.718392
-0.772226
-0.631702
-0.678661
-0.602036
-0.615413
-0.655383
-0.679854
-0.61341
-0.652031
-0.711991
-0.624334
-0.649157
-0.762267
-0.766504
-0.627514
-0.708922
-0.510987
-0.472527
-0.45148
-0.517217
-0.500667
-0.459122
-0.52938
-0.498027
-0.500731
-0.510609
-0.492751
-0.46412
-0.431402
-0.539055
-0.474419
-0.450555
-0.530126
-0.485916
-0.486305
-0.584261
-0.559999
-0.471622
-0.551026
-0.491885
-0.432029
-0.454981
-0.419534
-0.481573
-0.461825
-0.438991
-0.546314
-0.529481
-0.462278
-0.479165
-0.534075
-0.540227
-0.473059
-0.596978
-0.649391
-0.46039
-0.485708
-0.629797
-0.475628
-0.61102
-0.581209
-0.454254
-0.598631
-0.450617
-0.565522
-0.615638
-0.464978
-0.560544
-0.490642
-0.561135
-0.494081
-0.552668
-0.484336
-0.571338
-0.558625
-0.486565
-0.532547
-0.488727
-0.498161
-0.545731
-0.544523
-0.598475
-0.64692
-0.543727
-0.536337
-0.635999
-0.52621
-0.609024
-0.58252
-0.500506
-0.529626
-0.60361
-0.618762
-0.512834
-0.568597
-0.573469
-0.500779
-0.520583
-0.567755
-0.510814
-0.558317
-0.58351
-0.751436
-0.676601
-0.663206
-0.810012
-0.761721
-0.65202
-0.802984
-0.949798
-1.01786
-0.956838
-1.01013
-0.606603
-0.582676
-0.624657
-0.636135
-0.590125
-0.593353
-0.631736
-1.02111
-1.0705
-0.898155
-0.738741
-0.664549
-0.625658
-0.807342
-0.680941
-0.641907
-0.804307
-0.611734
-0.647135
-0.606318
-0.643005
-0.620751
-0.597619
-0.638389
-1.04647
-1.0575
-0.948936
-0.854905
-0.709905
-0.695382
-0.857324
-0.947812
-0.703482
-0.900444
-0.803768
-0.687564
-0.646348
-0.905383
-0.68173
-0.796543
-0.951658
-0.719519
-0.853265
-0.71787
-0.861168
-0.94546
-0.712685
-0.889012
-0.663969
-0.774462
-0.637234
-0.879779
-0.672271
-0.784341
-0.931464
-0.679831
-0.850019
-0.685837
-0.674599
-0.843518
-0.942589
-0.836651
-0.723128
-0.624061
-0.602393
-0.814859
-0.63421
-0.737598
-0.915041
-0.667314
-0.650031
-0.833312
-0.887323
-0.662468
-0.840177
-0.852721
-0.65453
-0.611598
-0.762212
-0.644572
-0.867397
-0.749851
-0.602581
-0.592033
-0.52978
-0.527935
-0.609943
-0.586497
-0.522582
-0.635158
-0.665387
-0.489778
-0.496669
-0.675827
-0.625827
-0.50503
-0.646031
-0.521082
-0.700004
-0.498829
-0.653505
-0.689488
-0.513933
-0.592357
-0.518995
-0.571602
-0.505057
-0.583772
-0.578306
-0.513442
-0.637966
-0.611786
-0.559703
-0.564398
-0.616832
-0.631968
-0.570868
-0.676545
-0.72783
-0.600891
-0.615833
-0.68157
-0.721845
-0.595892
-0.645529
-0.566885
-0.626651
-0.583195
-0.623127
-0.650022
-0.578316
-0.668057
-0.581348
-0.703847
-0.607465
-0.71181
-0.661349
-0.588087
-0.615666
-0.603962
-0.538538
-0.556541
-0.549161
-0.597098
-0.623451
-0.633042
-0.661293
-0.548268
-0.574796
-0.622613
-0.67286
-0.556526
-0.605616
-0.529594
-0.532031
-0.579511
-0.596259
-0.540169
-0.5877
-0.643508
-0.573282
-0.583789
-0.693588
-0.683638
-0.565585
-0.652213
-1.35729
-1.34565
-1.36971
-1.33848
-1.36201
-1.34359
-1.32352
-1.31092
-1.31593
-1.32895
-1.31798
-1.35608
-1.32918
-1.32243
-1.33444
-1.31694
-1.33649
-1.31845
-1.3301
-1.31033
-1.33159
-1.35968
-1.35671
-1.45904
-1.46452
-1.51148
-1.42341
-1.41712
-1.49578
-1.42322
-1.44281
-1.49981
-1.43473
-1.47042
-1.44003
-1.47706
-1.43006
-1.52196
-1.52637
-1.49623
-1.50657
-1.5026
-1.51674
-1.53063
-1.51694
-1.50614
-1.52299
-1.46281
-1.43235
-1.47671
-1.4282
-1.49206
-1.35106
-1.36138
-1.37864
-1.38735
-1.34418
-1.37814
-1.37448
-1.33022
-1.29575
-1.30894
-1.29963
-1.28419
-1.34423
-1.37104
-1.36842
-1.35099
-1.35251
-1.39089
-1.34915
-1.37165
-1.34452
-1.39559
-1.3641
-1.45769
-1.4518
-1.42855
-1.48789
-1.42914
-1.45946
-1.47845
-1.5055
-1.56145
-1.51535
-1.53201
-1.52268
-1.50605
-1.54303
-1.48787
-1.50068
-1.49051
-1.48025
-1.49911
-1.57258
-1.35508
-1.41612
-1.35467
-1.38954
-1.36034
-1.40516
-1.35125
-1.36691
-1.41356
-1.40907
-1.36163
-1.4109
-1.38118
-1.35792
-1.47136
-1.51072
-1.53157
-1.52486
-1.50639
-1.4943
-1.46125
-1.48326
-1.4684
-1.50698
-1.46442
-1.48626
-1.49209
-1.49273
-1.47747
-1.49892
-1.51455
-1.53762
-1.55094
-1.57381
-1.55517
-1.50649
-1.33469
-1.33625
-1.36501
-1.32463
-1.33796
-1.42615
-1.35304
-1.39132
-1.34267
-1.38299
-1.36578
-1.3415
-1.39273
-1.87456
-1.81567
-1.8025
-1.56676
-1.5507
-1.63608
-1.56121
-1.5828
-1.67087
-1.7087
-1.68254
-1.72772
-1.73054
-1.72285
-1.68911
-1.69282
-1.63298
-1.60116
-1.62208
-1.66029
-1.66036
-1.61379
-1.63446
-1.6399
-1.62741
-1.63788
-1.65492
-1.62039
-1.68896
-1.67688
-1.74816
-1.69996
-1.6794
-2.0922
-2.10825
-2.066
-2.10648
-2.08589
-2.12974
-2.11496
-1.94789
-2.14943
-2.15397
-2.13488
-2.07265
-2.16134
-2.11257
-2.11914
-1.99011
-1.95943
-1.96564
-1.97802
-1.99388
-1.94967
-1.94896
-2.25709
-2.32557
-2.20639
-2.23972
-2.26578
-2.32738
-2.18039
-2.28214
-2.33808
-2.2578
-2.33037
-2.27627
-2.28305
-2.34337
-2.0404
-2.10332
-2.08686
-2.14405
-2.14315
-2.04243
-2.06982
-1.95736
-1.94651
-1.97513
-1.93516
-1.96594
-1.9717
-1.93262
-1.98249
-2.0839
-2.11983
-1.97894
-2.00014
-2.26717
-2.36127
-2.42301
-2.38455
-2.37438
-2.37641
-2.40492
-2.35337
-2.37371
-2.25737
-2.29028
-2.34923
-2.27149
-2.34992
-2.38413
-2.08497
-1.9966
-1.97169
-1.94311
-2.06876
-2.01599
-2.00015
-2.06466
-2.43289
-2.54045
-2.48618
-2.37364
-2.36936
-2.48825
-2.35166
-2.50337
-2.04243
-2.0259
-1.99297
-2.02109
-2.0301
-2.0441
-2.07964
-2.02514
-2.11243
-2.13026
-2.19077
-2.21856
-2.19045
-2.1097
-2.13186
-2.06482
-2.10497
-2.20117
-2.06585
-1.83666
-1.85106
-1.86758
-1.89466
-1.84278
-1.82928
-1.87818
-1.848
-1.94259
-2.02617
-1.96569
-1.943
-1.96328
-1.89246
-1.83567
-1.83544
-1.90106
-1.889
-1.85867
-1.9144
-1.72991
-1.75304
-1.78721
-1.79923
-1.74396
-1.73101
-1.79595
-1.73563
-1.79068
-1.76129
-1.794
-1.76069
-1.79291
-1.7384
-1.64095
-1.63439
-1.70248
-1.68605
-1.79116
-1.77703
-1.69683
-1.69589
-1.72948
-1.6996
-1.76246
-1.76874
-1.70634
-1.71175
-1.76041
-1.66669
-1.60775
-1.65301
-1.63423
-1.68376
-1.65904
-1.66674
-1.63764
-1.61319
-1.64413
-1.62483
-1.64707
-1.66822
-1.73279
-1.70984
-1.7547
-1.90143
-1.86582
-1.83811
-1.87398
-1.83506
-1.9858
-2.05229
-1.99037
-2.10518
-1.96284
-2.08652
-2.02238
-1.99568
-2.0842
-2.0489
-2.02091
-1.9781
-1.88012
-1.85679
-1.87003
-1.89389
-1.85086
-1.87489
-1.90086
-2.10273
-2.15741
-2.1278
-2.08148
-2.10361
-2.13321
-2.01927
-2.07326
-2.00617
-2.0157
-2.025
-2.00587
-2.01096
-2.11123
-2.18424
-2.17117
-2.06641
-2.11154
-2.16538
-2.07651
-2.40417
-2.41749
-2.35717
-2.5041
-2.36856
-2.4976
-2.411
-2.37273
-2.28203
-2.45495
-2.3247
-2.46293
-2.37745
-2.26417
-2.42247
-2.30659
-2.30273
-2.40989
-2.38518
-2.36135
-2.35095
-2.40127
-2.38938
-2.35503
-2.44745
-2.41183
-2.5005
-2.44994
-2.45261
-2.38828
-2.22218
-2.30125
-2.32268
-2.37792
-2.28187
-2.31367
-2.40777
-2.30545
-2.30472
-2.45199
-2.28713
-2.41096
-1.88611
-1.88087
-1.81171
-1.82319
-1.87812
-1.89742
-1.80545
-1.97444
-2.04875
-1.97003
-1.86828
-1.78531
-1.80583
-1.8597
-1.79569
-1.90512
-1.96733
-1.9377
-1.98937
-2.02165
-2.03197
-1.92638
-1.97371
-1.6557
-1.70403
-1.65572
-1.74467
-1.67651
-1.66961
-1.72389
-1.67377
-1.70455
-1.68866
-1.66267
-1.71411
-1.89793
-1.98189
-1.97212
-1.93474
-1.94399
-1.9448
-1.89621
-1.79545
-1.9811
-1.93163
-1.96218
-1.85102
-1.76202
-1.8353
-1.80783
-1.92185
-1.92742
-1.96922
-1.9861
-1.95452
-1.9075
-1.85187
-1.78839
-1.84419
-1.84996
-1.79618
-1.86053
-1.8564
-2.05684
-2.12845
-2.10658
-2.0496
-2.11173
-2.04123
-2.07031
-1.95434
-1.89922
-1.92155
-1.9679
-1.89264
-1.97158
-1.94257
-1.76588
-1.80182
-1.83194
-1.83607
-1.83202
-1.77658
-1.78609
-1.76856
-1.83268
-1.79896
-1.85942
-1.76884
-1.84762
-1.79375
-2.04667
-2.13339
-2.08572
-2.0295
-2.12473
-2.00505
-2.07011
-2.06461
-2.10431
-2.03112
-2.12009
-2.02948
-1.95385
-1.90534
-1.87221
-1.8727
-1.96591
-1.93752
-1.9159
-1.96469
-1.90391
-1.96338
-1.89659
-1.93517
-2.10523
-2.23549
-2.13281
-2.21628
-2.22307
-2.14335
-2.07446
-2.08645
-2.11779
-2.07375
-2.08959
-2.11355
-2.10619
-2.05187
-2.58743
-2.3838
-2.57016
-2.37257
-2.57782
-2.43856
-2.46913
-2.39729
-2.53999
-2.50112
-2.44816
-2.52879
-2.4972
-2.37921
-2.31025
-2.5428
-2.3343
-2.43585
-2.64942
-2.53377
-2.58273
-2.61988
-2.3692
-2.52198
-2.3451
-2.37909
-2.2872
-2.4741
-2.34015
-2.41141
-2.56887
-2.40804
-2.37567
-2.3853
-2.62683
-2.5628
-2.55705
-2.43408
-2.62897
-2.47791
-2.50733
-2.41845
-2.69083
-2.52989
-2.46409
-2.32424
-2.60255
-2.48166
-2.371
-2.64607
-2.60002
-2.49112
-2.48373
-2.44664
-2.68107
-2.59721
-2.07792
-2.10984
-2.18001
-2.11294
-2.06938
-2.2241
-2.08927
-2.07535
-2.04897
-2.07487
-2.11765
-2.1175
-2.24734
-2.19968
-2.13481
-2.24049
-2.08643
-2.11602
-2.10882
-2.24526
-2.09581
-2.12278
-2.10588
-2.10092
-2.11736
-2.09721
-2.10137
-2.06994
-2.05604
-2.09294
-2.11134
-2.10862
-2.19523
-2.09664
-2.11462
-2.09486
-2.1067
-1.79227
-1.76411
-1.81728
-1.81933
-1.79426
-1.76284
-1.82091
-1.71162
-1.69227
-1.66823
-1.70164
-1.71149
-1.66817
-1.70343
-1.75637
-1.74727
-1.86411
-1.75891
-1.83361
-1.75345
-1.79731
-1.82101
-1.79407
-1.81564
-1.90014
-1.94065
-1.85942
-1.9507
-1.88751
-1.90665
-2.01787
-2.02542
-2.00548
-2.08462
-2.00245
-2.04371
-2.00121
-2.04146
-2.01012
-1.91794
-1.88286
-1.86716
-1.92458
-1.92124
-1.85403
-1.91008
-1.99933
-2.0197
-2.07479
-2.08627
-2.06317
-1.98283
-2.03101
-1.95231
-1.89748
-1.91848
-1.8768
-1.94748
-1.91179
-1.91516
-2.04222
-2.13884
-2.05193
-2.11532
-2.0669
-2.03364
-1.91133
-1.93176
-1.89363
-1.95573
-1.87876
-1.94532
-1.9037
-1.93731
-1.95592
-1.90105
-2.01737
-2.04725
-2.10524
-2.01546
-1.22383
-1.20944
-1.21361
-1.24376
-1.24934
-1.22372
-1.22943
-1.20935
-1.18957
-1.19521
-1.2499
-1.19732
-1.29142
-1.29099
-1.26055
-1.30655
-1.26754
-1.27529
-1.29996
-1.22516
-1.20814
-1.22819
-1.25501
-1.26061
-1.32141
-1.26056
-1.26251
-1.11239
-1.16113
-1.13852
-1.14344
-1.11527
-1.11273
-1.15797
-1.15016
-1.17817
-1.13708
-1.11917
-1.26305
-1.30047
-1.27564
-1.32339
-1.26352
-1.27008
-1.3146
-1.21652
-1.20577
-1.20677
-1.23558
-1.24054
-1.21523
-1.22288
-1.27388
-1.26315
-1.22159
-1.21695
-1.19914
-1.23978
-1.23304
-1.22399
-1.19776
-1.21073
-1.25172
-1.29536
-1.25488
-1.27936
-1.12959
-1.1464
-1.16018
-1.17297
-1.1339
-1.17113
-1.13651
-1.12739
-1.16186
-1.15509
-1.15583
-1.1685
-1.13932
-1.13401
-1.20743
-1.11004
-1.07223
-1.06336
-1.11447
-1.06594
-1.14158
-1.13131
-1.16179
-1.17457
-1.13547
-1.13765
-1.15608
-1.1651
-1.16375
-1.17049
-1.14446
-1.14728
-1.16591
-1.16025
-1.14023
-1.1351
-1.08734
-1.05995
-1.08313
-1.06019
-1.09805
-1.21411
-1.2073
-1.18677
-1.22079
-1.21891
-1.22292
-1.13029
-1.14838
-1.15276
-1.12579
-1.11814
-1.08195
-1.10366
-1.09438
-1.11479
-1.08643
-1.09678
-1.09141
-1.08372
-1.12932
-1.17928
-1.13233
-1.12988
-1.1255
-1.0943
-1.07636
-1.09934
-1.40338
-1.39684
-1.39704
-1.33372
-1.33724
-1.34615
-1.33667
-1.36603
-1.34543
-1.35714
-1.37543
-1.34676
-1.36578
-1.34909
-1.35267
-1.37896
-1.37523
-1.49672
-1.46937
-1.45523
-1.49953
-1.51088
-1.45875
-1.48877
-1.5692
-1.61318
-1.56086
-1.60419
-1.55257
-1.58766
-1.61859
-1.57443
-1.53496
-1.45115
-1.45231
-1.45452
-1.49103
-1.5586
-1.59812
-1.59315
-1.45365
-1.4683
-1.50967
-1.49677
-1.38212
-1.37472
-1.42692
-1.37272
-1.38476
-1.37644
-1.36368
-1.39854
-1.38506
-1.3556
-1.37976
-1.3716
-1.37332
-1.39139
-1.38868
-1.36914
-1.38088
-1.35519
-1.36783
-1.37302
-1.38568
-1.40582
-1.41005
-1.41049
-1.40469
-1.40818
-1.40089
-1.40149
-1.37727
-1.39931
-1.41128
-1.40173
-1.39623
-1.38189
-1.41092
-1.37196
-1.42014
-1.38655
-1.4095
-1.38025
-1.42065
-1.37677
-1.08091
-1.05672
-1.07245
-1.09573
-1.15084
-1.1311
-1.05884
-1.05789
-1.07915
-1.05467
-1.11401
-1.13535
-1.35252
-1.33111
-1.33354
-1.33776
-1.36194
-1.37679
-1.37719
-1.35976
-1.36979
-1.39626
-1.40128
-1.38417
-1.38214
-1.35752
-1.35332
-1.35536
-1.33496
-1.32091
-1.33311
-1.35733
-1.36732
-1.37852
-1.4039
-1.36441
-1.40497
-1.36192
-1.37664
-1.35927
-1.33303
-1.33247
-1.34104
-1.32432
-1.33943
-1.47076
-1.57067
-1.56491
-1.56414
-1.52304
-1.51771
-1.46819
-1.49122
-1.5169
-1.51694
-1.47543
-1.49789
-1.49967
-1.50744
-1.46787
-1.50551
-1.50478
-1.4762
-1.49155
-1.50987
-1.46344
-1.35607
-1.38011
-1.35192
-1.37245
-1.41933
-1.33542
-1.32336
-1.34673
-1.33587
-1.31997
-1.33895
-1.33448
-1.3411
-1.31621
-1.33724
-1.32188
-1.31973
-1.3483
-1.32353
-1.36432
-1.37728
-1.38278
-1.408
-1.3812
-1.36313
-1.39142
1.27986
1.31723
1.3176
1.30533
0.746989
0.694164
0.643323
0.694098
0.655634
0.720105
0.720933
0.644862
0.699156
0.70017
0.701631
0.654116
0.624751
0.637082
0.598111
0.593454
0.640717
0.623317
0.597551
0.574826
0.595755
0.58604
0.589221
0.597855
0.35315
0.583991
0.55184
0.582219
0.349734
0.575014
0.352928
0.549181
0.579141
0.349353
0.652791
0.653224
0.609628
0.65464
0.650463
0.613629
0.655038
0.65674
0.615284
0.656645
0.615981
0.655308
0.730838
0.722948
0.684109
0.726778
0.721616
0.666735
0.723926
0.662194
0.682435
0.669215
0.624174
0.716909
0.708901
0.712051
0.650886
0.643282
0.606074
0.598983
0.950168
0.971287
0.941189
0.871409
0.874674
0.956082
0.964142
0.873663
0.95472
0.87322
0.8042
0.801257
0.868742
0.936675
0.947328
0.870196
0.870627
0.932113
0.863541
0.982416
0.973572
1.11018
1.05905
1.09001
1.10001
1.09769
1.20841
1.26668
1.22592
1.26413
1.20161
1.26441
1.23504
1.13324
1.12517
1.13801
1.0444
1.12376
1.11336
1.14983
1.10291
1.03195
1.04643
1.09842
1.02977
1.09327
1.10786
1.10739
1.02721
1.02358
1.12327
1.02102
1.11465
1.11525
0.960724
1.00216
0.96298
0.807544
0.808448
0.829534
0.854484
0.96776
0.97722
0.844704
0.969341
0.844713
0.847568
0.946127
0.871943
0.95954
0.862999
0.86009
0.950405
0.849789
1.01371
0.978488
0.982831
0.859912
0.818132
0.755661
0.824964
0.831089
0.757735
0.811667
0.831956
0.755503
0.832374
0.832318
0.754157
0.832639
0.759275
0.646029
0.739484
0.762064
0.64132
0.634243
0.761858
0.7428
0.762915
0.640045
0.35747
0.589943
0.557377
0.590302
0.361922
0.593732
0.367021
0.559014
0.592891
0.363388
0.662061
0.666597
0.615414
0.613108
0.667242
0.661788
0.662123
0.609853
0.667225
0.612749
0.668616
0.660571
0.752136
0.73804
0.619913
0.757527
0.621731
0.630893
0.758848
0.739387
0.758473
0.624962
0.660691
0.664242
0.615329
0.663772
0.617425
0.660933
0.659394
0.66114
0.618701
0.659165
0.661321
0.617124
0.990785
0.984199
0.88242
0.881245
0.969465
0.96683
0.881798
0.869869
0.968735
0.988503
0.987191
0.864691
0.966507
0.820262
0.956837
0.844291
0.852178
0.960791
1.16508
1.128
1.167
1.12631
1.20042
1.27427
1.26629
1.20983
1.26172
1.17216
1.05212
1.13229
1.15971
1.14314
1.10977
1.04846
1.07277
1.10626
1.10353
1.04833
1.11125
1.11666
1.07655
1.13731
1.06041
1.12417
1.05134
1.12676
0.97945
0.97981
0.840745
0.940282
0.950589
0.832447
0.951302
0.952196
0.821104
0.939826
0.832333
0.952928
0.977095
0.976589
1.11733
1.05746
1.05497
1.11455
1.04438
1.11483
1.11607
1.12233
1.02775
1.02784
1.12905
1.1202
1.02485
1.12861
-2.01435
-1.89864
-1.94637
-1.92342
-1.94009
-1.65072
-1.71736
-1.67574
-1.70713
-1.73904
-1.64735
-1.78253
-1.80345
-1.78907
0.696427
0.697699
0.624187
0.692364
0.623698
0.629944
0.694923
0.697485
0.620601
0.634751
0.628942
0.562663
0.552307
0.626257
0.64456
0.700091
0.698875
0.691931
0.729121
0.695104
0.721901
0.694699
0.694327
0.651856
0.701227
0.691874
0.694775
0.662014
0.708129
0.63198
0.55541
0.6404
0.549297
0.644174
0.624017
0.398668
0.607301
0.564678
0.609553
0.402967
0.611921
0.408737
0.566602
0.612266
0.404864
0.641548
0.643813
0.57227
0.649251
0.6362
0.577544
0.643524
0.654654
0.584647
0.654157
0.580255
0.644511
0.681869
0.654266
0.680306
0.809446
0.732103
0.807598
0.811387
0.730249
0.805825
0.816605
0.73537
0.81129
0.813937
0.737746
0.813864
0.834814
0.988703
0.988027
0.857461
1.01128
0.969406
0.9293
0.974594
1.13804
1.06501
1.1907
1.19233
1.06944
1.13595
1.12539
1.10969
1.01376
1.03377
1.10509
1.03693
1.12641
1.12064
1.03043
1.01119
1.09495
1.09988
1.03457
1.11673
1.14395
1.20814
1.07073
1.19782
1.07227
1.15594
1.33665
1.34261
1.2494
1.30753
1.22323
1.29332
1.22007
1.25072
1.30964
1.24164
1.22933
1.30282
1.29391
1.21427
1.31468
0.955462
0.948786
1.14374
1.06418
1.19519
1.06517
1.14557
1.19326
1.14455
1.07649
1.17964
1.06962
1.1909
1.13681
0.714983
0.626472
0.712203
0.717867
0.624163
0.621704
0.726146
0.714395
0.720384
0.623986
0.396694
0.608067
0.565081
0.607166
0.392512
0.604927
0.387585
0.565024
0.605219
0.391404
0.658168
0.665082
0.601171
0.604318
0.666631
0.656448
0.659223
0.608795
0.668617
0.605767
0.660597
0.667467
0.74866
0.620183
0.728247
0.741705
0.621952
0.62195
0.730957
0.72488
0.737374
0.62021
0.65476
0.666011
0.599925
0.665121
0.596826
0.655964
0.653734
0.66334
0.591179
0.652058
0.664665
0.595411
0.847029
0.973698
1.00296
0.847234
1.00254
1.00556
0.844337
0.974901
0.846678
1.00594
1.1299
1.09879
1.05461
1.15622
1.14491
1.05862
1.13265
1.12765
1.09763
1.13724
1.0556
1.14101
1.12481
1.05738
1.17418
1.17926
1.30087
1.33084
1.24851
1.31213
1.23498
1.29506
1.25697
1.2297
1.30644
1.18009
1.17442
1.25235
1.22827
1.28494
1.29386
1.2484
1.23128
1.30453
0.843262
0.989367
0.973095
0.841775
1.00073
1.00111
0.843593
0.972794
0.84136
0.998961
1.12701
1.07342
1.14201
1.08613
1.12496
1.14779
1.12513
1.08571
1.14848
1.12502
1.08511
1.14396
0.150925
0.141969
0.151743
0.181212
0.146523
0.181693
0.154455
0.152572
0.103763
0.0024989
-0.0203457
0.12523
0.0589447
-0.0691624
0.0852344
0.0822761
0.066226
-0.0572711
0.0397609
-0.0478552
-0.00971358
-0.0183311
0.0117147
-0.0238726
-0.0101258
-0.0203155
-0.0284875
-0.0295612
-0.0298947
-0.0192708
-0.0631375
-0.0643315
-0.075995
-0.0537807
0.0338997
-0.0207591
0.0149375
-0.0374062
0.0131136
0.0341948
-0.0401442
-0.022858
0.000352441
-0.0325258
-0.0323063
-0.00358801
-0.0156556
-0.0388589
-0.0113634
-0.0274047
0.00353192
-0.0139579
0.148655
0.151663
0.186169
0.149558
0.169312
0.160861
0.152464
0.0614431
0.0710146
0.00828611
0.0713407
0.0611987
0.00941262
0.0699025
-0.0149489
0.101525
0.0905753
0.0837541
0.0104258
-0.0263511
0.0176691
-0.021977
0.0345011
0.0390346
-0.0251586
-0.0235282
-0.0390011
-0.00543239
-0.00101871
-0.000457764
-0.0587832
0.000370184
-0.0316565
0.0392859
0.0336002
-0.0204122
0.0389024
-0.023689
-0.0292927
0.150462
0.189162
0.13914
0.237344
0.273715
0.190962
0.210414
0.246711
0.209943
0.271772
0.247478
0.165644
0.248844
0.247449
0.171
0.313673
0.29707
0.393182
0.394048
0.368218
0.455113
0.354846
0.390185
0.348638
0.377151
0.382228
0.289489
0.289219
0.364354
0.352603
0.387995
0.394206
0.365544
0.349878
0.387839
0.300679
0.278645
0.281852
0.292534
0.290916
0.285166
0.301662
0.300119
0.278559
0.289065
0.286493
0.290374
0.299138
0.285641
0.127521
0.184152
0.201046
0.131947
0.203584
0.27258
0.19561
0.211763
0.246877
0.21061
0.273161
0.245658
0.124909
0.183249
0.204189
0.139405
0.203003
0.304039
0.212581
0.274329
0.306265
0.236537
0.288862
0.308698
0.301107
0.21015
0.228418
0.287802
0.231854
0.282366
0.302061
0.104021
0.0793224
0.0754052
0.0351392
0.0753494
0.0132103
0.0933952
0.133715
0.146008
0.162798
0.140723
0.153158
0.142592
0.12642
0.126371
0.0301008
0.127473
0.018458
0.125879
0.0793659
0.0263609
0.116937
0.034456
0.0314951
0.0979819
0.117535
0.0137075
0.0990916
-0.0133408
-0.0165654
-0.0393457
-0.0433956
-0.030392
-0.0343748
-0.101394
-0.0545081
-0.0957703
-0.0492378
-0.040155
-0.0551504
-0.031091
-0.000389022
0.0302485
-0.0480812
0.0104566
-0.0342143
-0.0404035
-0.0321466
-0.0423676
0.00883536
0.030424
-0.0324991
0.0102304
-0.0439303
0.0723705
0.0793905
0.0798881
0.0880979
0.0717297
0.0798148
0.0953649
0.137817
0.247659
0.193087
0.156462
0.213445
0.158999
0.135941
0.0674667
0.075268
0.069486
0.0717683
0.0852364
0.0860041
0.0805926
0.0775183
0.0906496
0.0695842
0.0714131
-0.0122717
-0.0362711
-0.023099
-0.048458
-0.00834094
-0.06168
-0.0458276
-0.0472154
-0.046773
-0.017567
0.0200635
-0.0586319
-0.0580807
-0.0452384
-0.0101702
0.19615
0.254304
0.199617
0.249847
0.197324
0.209219
0.203605
0.194439
0.203941
0.200526
0.25936
0.211809
0.243599
0.209959
0.202668
0.253011
0.171362
0.243928
0.164649
0.246607
0.298064
0.207763
0.230702
0.280664
0.280083
0.23174
0.298466
0.301499
0.219635
0.275009
0.220938
0.283613
0.297424
0.244208
0.279824
0.279588
0.377664
0.468192
0.351602
0.439892
0.37462
0.353908
0.474374
0.279604
0.27965
0.378919
0.356265
0.476406
0.442224
0.379535
0.355511
0.475678
0.195428
0.254819
0.196735
0.252816
0.189756
0.131779
0.186631
0.187301
0.187213
0.19166
0.243535
0.210619
0.238671
0.257649
0.205237
0.244893
0.192729
0.196055
0.255807
0.196868
0.259128
0.207702
0.246355
0.207025
0.198073
0.25491
0.298277
0.230111
0.201286
0.28099
0.227409
0.2988
0.280094
0.298629
0.198958
0.222772
0.279477
0.29807
0.22418
0.280369
0.460725
0.376587
0.464963
0.459633
0.377953
0.466037
0.462368
0.39299
0.458082
0.460448
0.390171
0.46166
0.456619
0.439976
0.454628
0.454533
0.442303
0.454958
0.455043
0.441061
0.393488
0.456157
0.439826
0.389786
-1.42968
-1.40821
-1.36428
-1.36034
-1.36142
-1.41915
-1.44204
-1.42315
-1.48273
-1.44986
-1.48912
-1.42592
-1.44528
-1.42044
-1.3919
-1.37996
-1.39114
-1.43552
-1.4701
-1.44333
-1.47336
-1.47602
-1.47121
-1.42195
-1.43148
-1.44746
-1.44818
-1.50934
-1.52202
-1.60256
-1.49903
-1.56467
-1.5175
-1.39439
-1.38301
-1.40751
-1.40056
-1.38799
-1.41207
-1.40413
-1.40083
-1.39887
-1.44107
-1.41208
-1.44342
-1.41088
-1.43826
-1.4363
-1.39678
-1.40342
-1.3867
-1.42039
-1.42877
-1.43625
-1.43851
-1.43186
-1.43824
-1.42835
-1.43348
-1.5252
-1.53772
-1.50744
-1.50971
-1.51209
-1.53319
-1.52887
-1.6516
-1.60036
-1.62915
-1.47893
-1.49428
-1.5518
-1.48678
-1.57462
-1.28361
-1.35372
-1.30532
-1.37006
-1.30926
-1.28566
-1.34961
-1.28234
-1.32436
-1.32893
-1.32611
-1.29302
-1.31615
-1.32707
-1.17509
-1.16015
-1.20946
-1.18394
-1.18363
-1.16007
-1.21544
-1.15293
-1.09353
-1.10625
-1.16102
-1.09779
-1.15935
-1.17038
-1.16319
-1.20213
-1.1628
-1.19791
-1.15408
-1.20338
-1.17721
-1.16908
-1.18607
-1.18909
-1.26005
-1.2409
-1.2521
-1.23423
-1.24147
-1.26225
-1.249
-1.24103
-1.30618
-1.3032
-1.35777
-1.30127
-1.30564
-1.28987
-1.24705
-1.24472
-1.28405
-1.27768
-1.28497
-1.27902
-1.33112
-1.35716
-1.33191
-1.24296
-1.22948
-1.25006
-1.22632
-1.24966
-1.23479
-1.24187
-1.29988
-1.30546
-1.21483
-1.27099
-1.20567
-1.2712
-1.21352
-1.32544
-1.33394
-1.31911
-1.29453
-1.3474
-1.34546
-1.29377
-1.34041
-1.2825
-1.30711
-1.30376
-1.32402
-1.341
-1.34312
-1.34201
-1.30444
-1.32536
-1.21629
-1.23716
-1.20988
-1.17084
-1.16768
-1.16789
-1.16362
-1.16316
-1.17081
-1.16709
-1.12691
-1.13059
-1.1322
-1.12921
-1.12683
-1.14089
-1.13307
-1.12009
-1.13069
-1.13523
-1.13837
-1.1935
-1.17903
-1.17668
-1.20434
-1.20618
-1.17206
-1.17815
-1.25657
-1.22066
-1.24021
-1.21018
-1.24865
-1.25891
-1.20574
-1.28535
-1.36304
-1.27822
-1.28006
-1.37788
-1.27966
-1.25434
-1.21379
-1.24702
-1.21251
-1.24422
-1.25619
-1.2021
-1.28978
-1.29575
-1.34475
-1.38894
-1.30011
-1.28093
-1.23522
-1.2183
-1.24304
-1.28797
-1.30004
-1.2301
-1.25986
-1.20653
-1.27162
-1.54042
-1.56851
-1.48554
-1.51101
-1.56163
-1.52735
-1.48553
-1.61618
-1.68813
-1.6165
-1.6847
-1.64894
-1.59256
-1.67456
-1.58972
-1.65429
-1.60911
-1.6737
-1.62397
-1.58438
-1.65351
-1.42888
-1.3906
-1.48421
-1.39835
-1.48477
-1.35812
-1.36023
-1.36073
-1.36379
-1.36239
-1.36484
-1.35526
-1.42998
-1.4417
-1.41728
-1.49182
-1.35445
-1.3756
-1.3556
-1.33923
-1.35091
-1.3716
-1.34725
-1.33927
-1.36495
-1.34246
-1.33533
-1.52731
-1.5386
-1.51166
-1.53814
-1.6081
-1.59268
-1.62178
-1.66201
-1.61729
-1.66191
-1.60973
-1.62345
-1.67201
-1.56031
-1.46909
-1.54458
-1.50649
-1.53
-1.54493
-1.49958
-1.54715
-1.5396
-1.52691
-1.53802
-1.41331
-1.43326
-1.39396
-1.49048
-1.40151
-1.41479
-1.43899
-1.36342
-1.33822
-1.34716
-1.35871
-1.36007
-1.33315
-1.34469
-1.41536
-1.42837
-1.42143
-1.44767
-1.42039
-1.40441
-1.43565
-1.37937
-1.37062
-1.33367
-1.34375
-1.32885
-1.37587
-1.38274
-1.53508
-1.51731
-1.53493
-1.56033
-1.55967
-1.57027
-1.50648
-1.56742
-1.56486
-1.52063
-1.61074
-1.62714
-1.60774
-1.62915
-1.60418
-1.60027
-1.62684
-1.51401
-1.57801
-1.53276
-1.51132
-1.54882
-1.57295
-1.5277
-1.53162
-1.91193
-1.98634
-2.02846
-1.89967
-1.93651
-1.94286
-1.99688
-2.09549
-2.11944
-2.09309
-2.08367
-2.11033
-2.01807
-1.91875
-1.95045
-2.01528
-1.98762
-2.01202
-2.00964
-1.79134
-1.78217
-1.87238
-1.78628
-1.78302
-1.8907
-1.75727
-1.70703
-1.74614
-1.75532
-1.70946
-1.75244
-1.75872
-1.77126
-1.78628
-1.73342
-1.73507
-1.76873
-1.70551
-1.77976
-1.79953
-1.83539
-1.84107
-1.86821
-1.80009
-1.8447
-1.82815
-1.7516
-1.74851
-1.7561
-1.73272
-1.99898
-1.93681
-1.9586
-2.13728
-2.07907
-2.12185
-2.14436
-2.13214
-2.15603
-2.1135
-2.15986
-2.1033
-2.14619
-2.00186
-1.9437
-2.03112
-1.91499
-1.99897
-2.04882
-1.95265
-2.03212
-1.92411
-1.94491
-2.04073
-2.39774
-2.76595
-2.38322
-2.59782
-2.47229
-2.52768
-2.46532
-2.57387
-2.62259
-2.4787
-2.68615
-2.53158
-2.37228
-2.32289
-2.65234
-2.50413
-2.35975
-2.63512
-2.69021
-2.73871
-2.65277
-2.38341
-2.46578
-2.29268
-2.64034
-2.46562
-2.35114
-2.23895
-2.28596
-2.26273
-2.23874
-2.21221
-2.24782
-2.19977
-2.15904
-2.17898
-2.21149
-2.21142
-2.16782
-2.19005
-2.16537
-2.13169
-2.16719
-2.18363
-2.13062
-2.17833
-2.17046
-2.25708
-2.2973
-2.31076
-2.25397
-2.28545
-2.26085
-2.24051
-2.21469
-2.26277
-2.23366
-2.20688
-2.16534
-2.20054
-2.1345
-2.19064
-2.20304
-2.19479
-2.25107
-2.19068
-2.20162
-2.1785
-2.17223
-2.21089
-2.19248
-2.18383
-2.15368
-2.17358
-2.16627
-1.79066
-1.79217
-1.89188
-1.7941
-1.78544
-1.78849
-1.75093
-1.72064
-1.77092
-1.78233
-1.74344
-1.76171
-1.74068
-1.77268
-1.76821
-1.71913
-1.80359
-1.77403
-1.74426
-1.77814
-1.81784
-1.84862
-1.83227
-1.8692
-1.81162
-1.84205
-1.83875
-1.79277
-1.83502
-1.84104
-1.88287
-1.81002
-1.82388
-1.85135
-1.99567
-1.92708
-2.0147
-1.96568
-1.91997
-2.01531
-2.00683
-2.07059
-2.08289
-2.1404
-2.11459
-2.11591
-2.14606
-2.03687
-2.09984
-2.15117
-2.10483
-2.14619
-2.12281
-2.11531
-2.1586
-1.80593
-1.83285
-1.82175
-1.71415
-1.78036
-1.71348
-1.78836
-1.73929
-1.736
-1.71696
-1.7211
-1.73351
-1.78127
-1.83394
-1.82554
-1.82994
-2.02588
-1.92236
-1.99594
-2.05527
-2.03753
-1.95228
-2.03634
-2.13733
-2.11031
-2.11178
-2.13911
-1.99932
-1.93165
-1.98189
-1.92794
-1.98815
-1.9957
-1.93711
-2.1024
-2.13596
-2.07341
-2.11484
-2.12373
-2.10338
-2.0151
-1.96494
-2.00739
-2.14387
-2.1494
-1.94283
-1.90989
-2.05091
-2.04236
0.695024
0.691736
0.685313
0.615631
0.61416
0.688532
0.674753
0.69816
0.689919
0.690357
0.697618
0.677213
0.686019
0.676586
0.688586
0.691123
0.697977
0.697109
0.687137
0.678447
0.684019
0.586498
0.601114
0.66775
0.671886
0.60402
0.604914
0.652188
0.604637
0.677238
0.647022
0.437394
0.597794
0.554413
0.576731
0.440895
0.582802
0.43572
0.557534
0.581375
0.440432
0.683025
0.685473
0.68907
0.615928
0.68957
0.615197
0.691033
0.698728
0.697564
0.682475
0.70202
0.698521
0.672406
0.665852
0.632571
0.653696
0.602714
0.597955
0.640487
0.644373
0.680972
0.689305
0.694693
0.697927
0.69938
0.690985
0.679254
0.692853
0.614763
0.646271
0.675184
0.604023
0.652951
0.604371
0.677855
0.603282
0.65018
1.0071
1.00251
1.13394
1.17346
1.1684
1.11843
1.11168
1.05494
1.07597
1.11262
1.11827
1.09002
1.11514
1.10314
1.05768
1.12291
1.11316
1.09447
1.1387
1.1407
1.19315
1.19305
1.14051
1.21914
1.22491
1.31112
1.29127
1.23993
1.20712
1.28884
1.29516
1.32057
1.2503
1.3555
1.30514
1.34832
0.981201
0.986398
1.18351
1.173
1.15326
1.13949
1.07579
1.11333
1.13605
1.10963
1.15791
1.23482
1.29658
1.27085
1.28782
1.26652
1.24035
1.2883
1.15285
1.10283
1.07312
1.12506
1.13349
1.10825
1.14267
1.18298
1.18583
1.23164
1.22204
1.29335
1.29311
1.20531
1.25987
1.28997
0.799152
0.713823
0.776763
0.725082
0.746624
0.810221
0.709169
0.811331
0.941344
0.970735
0.847466
0.938055
0.801266
0.811939
0.704643
0.723776
0.796976
0.813477
0.704768
0.809963
0.962999
0.967872
0.811604
0.930115
0.724549
0.740624
0.760752
0.772275
0.713091
0.827151
1.05625
0.984611
0.982677
0.836959
0.794433
0.812012
0.700857
0.707685
0.793418
0.802148
0.696263
0.828155
0.973153
1.05507
0.819996
0.983384
0.692227
0.687523
0.436918
0.598501
0.566094
0.598659
0.440921
0.596837
0.446844
0.566103
0.598168
0.442345
0.639
0.639569
0.633329
0.62692
0.663539
0.638269
0.665029
0.632037
0.627972
0.669989
0.704798
0.696827
0.678976
0.703968
0.680387
0.669346
0.667851
0.679057
0.685934
0.699256
0.699238
0.678191
0.669238
0.639805
0.638858
0.632458
0.665605
0.638207
0.627581
0.665132
0.633319
0.627475
0.690989
0.681412
0.640198
0.639403
0.671706
0.698342
0.68207
0.695453
0.671467
0.701511
0.681508
0.635707
0.631077
0.665617
0.63948
0.636979
0.666573
0.629069
0.641589
0.642821
0.669848
0.678379
0.691427
0.699063
0.700602
0.679243
0.668775
0.634483
0.665837
0.639814
0.627846
0.666693
0.633295
0.628742
1.01374
1.01291
1.33292
1.3352
1.1994
1.20241
1.25805
1.33136
1.30087
1.34038
1.29165
1.26687
1.32582
1.16092
1.13651
1.09666
1.13384
1.16967
1.1606
1.11219
1.09136
1.13996
1.13227
1.16911
1.19992
1.20934
1.25783
1.28967
1.33745
1.31965
1.29125
1.25746
1.32411
1.19234
1.19143
1.16112
1.1395
1.11246
1.0787
1.15802
1.14162
1.11404
1.24595
1.3
1.27368
1.31934
1.2422
1.27727
1.30587
1.19009
1.18737
1.16297
1.11449
1.08168
1.13948
1.14188
1.11777
1.16049
1.24865
1.28084
1.32279
1.31302
1.27915
1.25018
1.31007
-2.14963
-2.15654
-2.087
-2.05526
-2.14431
-2.04606
-2.15666
-2.09457
-1.91181
-1.92838
-1.92763
-2.07489
-2.15865
-2.11466
-2.1333
-2.16576
-2.04267
-1.97261
-1.96139
-2.07782
-1.95287
-2.06128
-2.04846
-1.78335
-1.86233
-1.82815
-1.85995
-1.77812
-1.86028
-1.82985
-1.80109
-1.8009
-1.8447
-1.86912
-1.86754
-1.80338
-1.81082
-1.7841
-1.87461
-1.88607
-1.79349
-1.88141
-1.76361
-1.81218
-2.15283
-2.07706
-2.04888
-2.20342
-2.06647
-2.16652
-2.20641
-2.08795
-2.08413
-2.02262
-1.95057
-1.96251
-2.13953
-2.05076
-2.0966
-1.98296
-2.12059
-2.01502
-2.08631
-1.98239
-2.14389
-2.26429
-2.26592
-2.23574
-2.25361
-2.30243
-2.21535
-2.17642
-2.18801
-2.17481
-2.20312
-2.20276
-2.18855
-2.27821
-2.30496
-2.25048
-2.33595
-2.26153
-2.27232
-2.3236
-2.18058
-2.13791
-2.16947
-2.16907
-2.16417
-2.14142
-2.18344
-2.20311
-2.26822
-2.27989
-2.24191
-2.25691
-2.18675
-2.26619
-2.14624
-2.13714
-2.15235
-2.18428
-2.15114
-2.16951
-2.11311
-2.21263
-2.24556
-2.27276
-2.22698
-2.24733
-2.21188
-2.25121
-2.4994
-2.69605
-2.73315
-2.70118
-2.96787
-2.30973
-2.25362
-2.27209
-2.15837
-2.19182
-2.18532
-2.28022
-2.26128
-2.19549
-2.16654
-2.20417
-2.52177
-2.78146
-2.76147
-2.78078
-2.6093
-2.66371
-2.70509
-2.62124
-2.95249
-2.47681
-2.52219
-2.71948
-2.91145
-2.52073
-2.72567
-2.68272
-2.62001
-2.61391
-2.015
-1.95317
-1.912
-2.05053
-2.00469
-1.95961
-2.08304
-2.20776
-2.15853
-2.05759
-2.13082
-2.14566
-2.16033
-2.10052
-2.02788
-1.93987
-2.06702
-1.9487
-2.01523
-1.94561
-1.96116
-2.16387
-2.13917
-2.12548
-2.11609
-2.14508
-2.11164
-2.19272
-1.83037
-1.79576
-1.86471
-1.86834
-1.79007
-1.84027
-1.85976
-1.77433
-1.69881
-1.7155
-1.722
-1.70341
-1.73505
-1.80038
-1.80439
-1.80994
-1.87777
-1.7994
-1.86589
-1.78679
-1.81674
-1.88865
-1.83048
-1.87395
-1.83048
-1.85628
-1.76038
-1.79317
-1.82672
-1.7595
-1.78909
-1.86503
-1.72966
-1.71273
-1.71123
-1.70986
-1.70706
-1.73372
-1.71789
-1.76238
-1.88329
-1.75514
-1.8737
-1.81319
-2.03137
-1.95651
-1.91587
-2.03922
-2.05089
-1.95362
-2.02502
-2.15929
-2.12365
-2.13674
-2.01181
-1.94043
-1.91565
-2.06154
-1.94714
-2.01075
-1.91533
-2.11862
-2.10767
-2.05917
-2.10682
-2.14489
-2.09668
-1.67819
-1.66616
-1.76412
-1.67812
-1.76137
-1.83323
-1.91042
-1.80953
-1.83063
-1.85683
-1.82574
-1.69163
-1.75122
-1.74832
-1.7848
-1.79581
-2.097
-2.01026
0.628636
0.628103
0.627851
0.626684
0.592016
0.606783
0.607948
0.629328
0.624358
0.684774
0.747373
0.773951
0.698493
0.749131
0.702464
0.679634
0.686719
0.703958
0.748654
0.774419
0.749659
0.686637
0.704404
0.629255
0.608766
0.592643
0.630023
0.608647
0.628695
0.630381
0.626715
0.623941
0.483644
0.575562
0.545629
0.569081
0.492809
0.536579
0.584612
0.522721
0.629296
0.629456
0.691777
0.744416
0.775665
0.703857
0.749413
0.708648
0.687232
0.645795
0.628366
0.65568
0.621426
0.662416
0.633673
0.635506
0.688614
0.706461
0.775745
0.749282
0.74956
0.706858
0.688099
0.642836
0.635235
0.630642
0.611953
0.631251
0.598739
0.630105
0.616489
0.631387
0.699468
0.750181
0.754504
0.681954
0.765409
0.885915
1.01358
1.07782
0.904326
1.00834
0.699929
0.755463
0.75405
0.698152
0.757437
0.875694
0.998157
1.07413
0.8629
1.00438
0.704726
0.759311
0.755505
0.708553
0.757167
0.852691
0.989954
1.06482
0.844935
0.993299
0.702098
0.756769
0.75524
0.701863
0.756675
0.854638
0.996347
1.06518
0.859107
0.994343
1.32658
1.38031
1.37436
1.33111
1.37393
1.27673
1.22967
1.15697
1.22371
1.28327
1.27632
1.15339
1.21547
1.22093
1.27075
1.32532
1.3815
1.37238
1.31979
1.374
1.26025
1.20076
1.13766
1.20484
1.2559
1.3061
1.36818
1.39988
1.30067
1.36991
1.26244
1.14198
1.2123
1.2081
1.26672
1.30885
1.37039
1.39128
1.31447
1.36991
0.692786
0.698066
0.482874
0.579979
0.558595
0.582134
0.477131
0.585933
0.472668
0.560904
0.585332
0.477006
0.640333
0.640358
0.632672
0.627652
0.664488
0.636945
0.663659
0.633022
0.627456
0.670919
0.706362
0.681308
0.698389
0.671
0.706415
0.681066
0.640213
0.640439
0.671295
0.681946
0.698924
0.707005
0.706749
0.68169
0.671592
0.63267
0.662748
0.636726
0.627515
0.663331
0.632586
0.627542
0.697622
0.697857
0.640819
0.63939
0.677267
0.738385
0.698701
0.692381
0.685955
0.707173
0.692211
0.62955
0.629243
0.658163
0.633413
0.635776
0.658926
0.627498
0.636036
0.637816
0.675608
0.681732
0.700035
0.707204
0.709273
0.686475
0.671759
0.633439
0.661238
0.635831
0.627069
0.662003
0.63163
0.628928
1.27912
1.3272
1.29592
1.33892
1.26034
1.31916
1.2323
1.1605
1.11035
1.2129
1.17598
1.23504
1.1124
1.18168
1.18045
1.2357
1.28153
1.33104
1.33893
1.28082
1.31447
1.24497
1.19545
1.12371
1.19294
1.24761
1.2907
1.36309
1.39565
1.29326
1.3606
1.24282
1.11946
1.18424
1.18953
1.23716
1.28736
1.34682
1.3922
1.28399
1.35645
0.0880983
0.152826
0.0747854
0.162117
0.088939
0.0736726
0.163049
0.06176
-0.0494722
0.0709785
0.0808112
-0.047616
0.0748955
0.0967526
0.157183
0.0758634
0.163731
0.0899205
0.085707
0.167078
0.0254768
0.0310892
0.08288
-0.0480486
0.0817755
0.0317636
0.0478988
-0.0228536
-0.00496627
0.0619088
0.0235053
-0.0068983
-0.0261866
-0.0178595
-0.033624
-0.00743084
-0.0464558
-0.0350335
0.0259797
-0.00867679
-0.0323853
0.0447996
0.0466944
-0.00916335
0.0240869
0.0299856
0.0543299
0.0402254
0.0436299
0.049382
0.0214379
0.0208771
-0.0412148
-0.0213225
-0.0259128
-0.02765
-0.0498488
-0.0366411
0.0305807
-0.00775625
-0.0302842
0.0447171
0.0497405
0.00132371
0.0244625
0.18635
0.185345
0.253197
0.245108
0.185199
0.186643
0.246379
0.190442
0.10545
0.104097
0.19207
0.18903
0.0988056
0.100968
0.187573
0.187256
0.251986
0.187462
0.247847
0.1864
0.246615
0.188489
0.138815
0.295617
0.133842
0.273727
0.294083
0.275701
0.352254
0.354005
0.382062
0.359278
0.35753
0.359543
0.359085
0.382925
0.356443
0.295863
0.13705
0.274682
0.275522
0.294761
0.380798
0.357345
0.352443
0.359843
0.378865
0.3593
0.354665
0.187254
0.18162
0.224691
0.239847
0.183501
0.188128
0.223874
0.146929
0.12435
0.15601
0.122809
0.139698
0.161977
0.170714
0.0933347
0.0974849
0.185361
0.210378
0.176867
0.227137
0.188985
0.206328
0.24526
0.205923
0.0710329
0.0754657
-0.0227709
0.00994177
0.0821839
0.0652462
0.00506377
0.0711998
0.00266282
0.0822312
-0.0256074
0.0816048
0.0703852
0.00438329
-0.00645554
-0.0657632
-0.0107582
-0.0469926
-0.0178661
0.000150332
-0.0609135
-0.0452525
-0.0499916
0.0248122
0.0312315
-0.0549278
-0.0467095
0.0321836
-0.0183289
-0.0835273
-0.0781966
-0.0178767
-0.0461099
0.0257278
0.0237531
-0.0328041
-0.0401614
0.0275677
-0.0424853
0.0451692
0.0244229
0.0502583
0.0221143
0.0447215
0.0277759
0.0316928
0.0554765
0.00167834
0.0784211
-0.0331447
0.0596529
0.067283
0.00750757
-0.0322891
-0.0184434
0.0308293
0.0296682
-0.0228466
-0.0258303
0.0265053
-0.00446492
-0.0811762
-0.0245151
-0.0151073
-0.0347129
0.0255716
0.0298162
-0.0300314
-0.0250729
0.0269586
-0.0404773
0.190306
0.250925
0.180651
0.246826
0.191749
0.179737
0.250361
0.198118
0.144667
0.189733
0.134401
0.183152
0.134434
0.20428
0.195732
0.106852
0.114029
0.19289
0.196603
0.13815
0.135718
0.200118
0.189116
0.24958
0.182968
0.248161
0.187788
0.183783
0.249428
0.202771
0.330248
0.326471
0.356329
0.356813
0.340779
0.371745
0.353291
0.364409
0.391206
0.323233
0.356042
0.190427
0.267192
0.292408
0.314483
0.3371
0.321168
0.355879
0.364046
0.336218
0.321746
0.356278
0.195475
0.249579
0.252385
0.181211
0.193241
0.254798
0.183534
0.209745
0.149525
0.192114
0.137043
0.194814
0.140163
0.206859
0.2064
0.154208
0.209519
0.144687
0.196416
0.250212
0.257653
0.186322
0.198504
0.255902
0.184136
0.205374
0.141198
0.144104
0.202698
0.436605
0.438142
0.419422
0.436614
0.437715
0.419342
0.429207
0.428885
0.405738
0.427947
0.43008
0.407269
0.409853
0.366643
0.408167
0.407108
0.370242
0.41101
0.416844
0.385899
0.417655
0.416154
0.386368
0.418226
-1.13078
-1.13008
-1.09292
-1.15609
-1.0926
-1.14844
-1.0918
-1.18219
-1.18678
-1.18075
-1.42759
-1.40827
-1.38932
-1.41324
-1.40064
-1.38633
-1.43115
-1.40979
-1.38775
-1.38189
-1.39569
-1.32271
-1.38152
-1.36045
-1.40705
-1.40446
-1.42538
-1.37688
-1.38913
-1.39336
-1.37541
-1.42007
-1.42064
-1.39763
-1.42612
-1.44722
-1.43891
-1.44443
-1.48937
-1.47418
-1.46676
-1.47445
-1.44599
-1.46406
-1.47037
-1.44636
-1.52966
-1.61253
-1.54231
-1.60409
-1.53981
-1.54346
-1.59801
-1.44948
-1.44593
-1.47798
-1.47808
-1.48111
-1.47111
-1.45906
-1.44229
-1.4343
-1.46487
-1.52415
-1.53747
-1.57026
-1.58403
-1.52509
-1.5373
-1.58756
-1.32402
-1.3404
-1.31719
-1.36788
-1.33296
-1.31824
-1.39019
-1.34696
-1.4195
-1.43864
-1.35077
-1.3912
-1.42928
-1.40806
-1.44476
-1.27097
-1.30326
-1.29887
-1.3139
-1.27005
-1.29941
-1.32106
-1.27365
-1.27998
-1.22
-1.22588
-1.20509
-1.276
-1.28156
-1.3055
-1.30658
-1.32133
-1.31156
-1.30877
-1.30765
-1.30761
-1.26882
-1.2105
-1.2298
-1.24859
-1.20594
-1.2557
-1.27592
-1.30156
-1.35241
-1.32904
-1.31379
-1.3353
-1.30407
-1.32187
-1.24923
-1.21231
-1.24296
-1.24911
-1.24719
-1.21429
-1.24836
-1.53254
-1.54668
-1.53427
-1.54844
-1.4853
-1.45689
-1.47357
-1.45304
-1.51137
-1.59529
-1.50718
-1.59117
-1.52202
-1.49524
-1.58963
-1.50453
-1.44631
-1.49694
-1.45024
-1.53972
-1.50832
-1.55038
-1.57799
-1.55101
-1.50706
-1.5528
-1.38933
-1.38786
-1.42225
-1.42117
-1.41952
-1.38635
-1.38552
-1.35632
-1.33158
-1.31682
-1.37026
-1.30368
-1.36633
-1.36505
-1.39016
-1.39307
-1.40708
-1.39586
-1.40991
-1.39466
-1.39101
-1.35189
-1.33777
-1.41499
-1.34647
-1.40756
-1.34582
-1.36715
-1.34812
-1.3359
-1.3687
-1.34302
-1.36551
-1.37127
-1.36851
-1.37815
-1.36523
-1.38114
-1.37502
-1.38445
-1.37317
-1.12838
-1.11963
-1.14533
-1.13592
-1.12557
-1.15299
-1.1381
-1.13265
-1.12943
-1.15528
-1.17605
-1.17735
-1.18504
-1.16723
-1.17977
-1.19144
-1.17444
-1.12783
-1.14019
-1.1226
-1.14952
-1.17743
-1.19587
-1.17459
-1.19454
-1.17909
-1.17736
-1.19467
-1.23377
-1.24125
-1.22892
-1.22822
-1.22904
-1.23737
-1.2398
-1.33564
-1.31731
-1.3042
-1.22951
-1.20599
-1.21978
-1.27158
-1.22696
-1.23059
-1.26897
-1.19738
-1.27217
-1.19274
-1.30367
-1.31845
-1.32418
-1.19429
-1.19965
-1.27431
-1.27802
-1.19322
-1.21627
-1.22103
-1.24851
-1.15327
-1.12223
-1.1735
-1.15573
-1.16337
-1.13894
-1.1557
-1.12754
-1.1334
-1.17481
-1.17891
-1.16812
-1.16358
-1.16715
-1.17793
-1.16222
-1.13857
-1.15083
-1.1497
-1.20942
-1.14402
-1.15615
-1.26819
-1.22286
-1.26592
-1.24418
-1.24313
-1.24365
-1.3206
-2.08428
-2.06064
-2.20671
-2.19522
-2.14682
-2.07057
-1.99301
-2.01125
-2.22652
-2.11741
-2.1543
-2.12555
-2.0991
-2.12804
-2.13253
-2.12295
-2.13985
-2.01989
-2.21323
-2.07724
-1.98458
-2.07969
-2.06079
-2.15738
-2.11282
-1.81462
-1.795
-1.9583
-1.81118
-1.80609
-1.9667
-1.77912
-1.65591
-1.71105
-1.80162
-1.78789
-1.67511
-1.77803
-1.77152
-1.75983
-1.71762
-1.71004
-1.77705
-1.70097
-1.75241
-1.83288
-1.90641
-1.86426
-1.92671
-1.84128
-1.91505
-1.85933
-1.84859
-1.96283
-1.95083
-1.8582
-1.89057
-1.81899
-1.90321
-1.89276
-1.92219
-1.88513
-1.81844
-1.79926
-1.69225
-1.69523
-1.69557
-1.79082
-1.73552
-1.73616
-1.70882
-1.71093
-1.69838
-1.72832
-1.74339
-1.88401
-1.90912
-1.93472
-1.87726
-2.24499
-2.1252
-2.22087
-2.1206
-2.10479
-2.07948
-2.07258
-2.10927
-2.08419
-2.06373
-2.1272
-2.15021
-2.13724
-2.14191
-2.14053
-2.16079
-2.10212
-2.06804
-1.98654
-2.15142
-2.09015
-2.06387
-2.13152
-2.09306
-2.12565
-2.21512
-2.03051
-2.08756
-2.17921
-2.06655
-2.14927
-2.09875
-2.16394
-2.10122
-2.06665
-2.1562
-2.0393
-2.10036
-1.96765
-2.04968
-2.04813
-1.96449
-2.10504
-2.32342
-2.51567
-2.32174
-2.20218
-2.23092
-2.2478
-2.45692
-2.34367
-2.33007
-2.78484
-2.85211
-2.8317
-3.04313
-2.89182
-2.74865
-2.84146
-2.84201
-2.13565
-2.18708
-2.17237
-2.14231
-2.05044
-2.03486
-2.20909
-2.12807
-2.03415
-2.13471
-2.17827
-2.1331
-2.12534
-2.01064
-2.02178
-2.16907
-2.09952
-2.02897
-1.78865
-1.69523
-1.72088
-1.78744
-1.72686
-1.78416
-1.80489
-1.80079
-1.7889
-1.94034
-1.78001
-1.80591
-1.70796
-1.71681
-1.84112
-1.91972
-1.86234
-1.89718
-1.83168
-1.86905
-1.8923
-1.86416
-1.81218
-1.89174
-1.9298
-1.86712
-1.82396
-1.93094
-1.78578
-1.74159
-1.72675
-1.81052
-1.75975
-1.70244
-1.74796
-1.76389
-1.75276
-1.76384
-1.75479
-1.75006
-1.75726
-1.75409
-1.75343
-1.85177
-1.89633
-1.87187
-1.87545
-1.92826
-1.93977
-1.85454
-1.85587
-1.94569
-1.85041
-2.14259
-2.20169
-2.19552
-2.12455
-2.06163
-2.14513
-1.99548
-2.16106
-2.04872
-2.18122
-2.31287
-2.31634
-2.57223
-2.26745
-2.21262
-2.17715
-2.16736
-2.18948
-2.17556
-2.2089
-2.2157
-2.29489
-2.58793
-2.55077
-2.2875
-2.27963
-2.58969
-2.31918
-3.13675
-3.39073
-3.45387
-2.96563
-2.67547
-2.63877
-2.97397
-2.56879
-3.01962
-2.63224
-2.69367
-2.61264
-2.54462
-2.60803
-2.79489
-2.55712
-2.84899
-2.70348
-3.84072
-2.59908
-2.97059
-2.52988
-2.64151
-2.55233
-2.66026
-2.92035
-2.93682
-2.68365
-2.84683
-2.69052
-2.76791
-2.59542
-3.14542
-2.53665
-3.07177
-2.58945
-2.78221
-2.7623
-2.96727
-2.77766
-2.5299
-2.61679
-2.97467
-2.72086
-2.19238
-2.10204
-2.13888
-2.17398
-2.08334
-2.16548
-2.20148
-2.22732
-2.16468
-2.1333
-2.2436
-2.23354
-2.25564
-2.41661
-2.47704
-2.23872
-2.53391
-2.29048
-2.10117
-2.30605
-2.60076
-2.27853
-2.44694
-2.26432
-2.32079
-2.58371
-2.29004
-2.551
-2.31672
0.644711
0.644055
0.633266
0.627652
0.609581
0.592561
0.608889
0.624902
0.63167
0.703287
0.751517
0.746956
0.69873
0.722728
0.671862
0.711702
0.750681
0.719286
0.721397
0.710898
0.63996
0.624186
0.633686
0.607976
0.591922
0.630551
0.608856
0.632409
0.631493
0.525196
0.592153
0.527459
0.531685
0.592772
0.529094
0.642154
0.641874
0.706347
0.708767
0.734822
0.7137
0.705846
0.629535
0.627748
0.603994
0.589108
0.604749
0.627846
0.628918
0.708223
0.743268
0.71836
0.716885
0.708596
0.640822
0.641114
0.63046
0.605954
0.629904
0.589586
0.631022
0.605266
0.629528
1.32978
1.38415
1.3458
1.40551
1.313
1.23857
1.17559
1.25051
1.30048
1.38989
1.38134
1.32795
1.4004
1.3471
1.36548
1.39863
1.32597
1.20005
1.27667
1.27104
1.36272
1.36207
1.29993
1.29923
1.3566
1.39923
1.32966
1.405
1.33187
1.36199
1.41438
1.43437
1.41483
1.28793
1.29478
1.37642
1.39419
1.01175
1.0368
0.952617
1.07549
1.01855
0.94435
1.06965
0.831422
0.629534
0.843722
1.11
1.11476
1.00608
1.03259
0.930131
1.06026
0.99988
0.937495
1.06552
0.868559
0.625965
0.855694
1.12435
1.11937
0.828834
0.758534
0.693842
0.817879
0.820688
0.74962
0.830654
0.829956
0.861619
0.666285
0.730201
0.844403
0.835714
0.728781
1.24389
1.27715
1.25584
1.19283
1.19159
1.27616
1.24552
1.24154
1.18647
1.25714
1.27265
1.18992
1.23858
1.2751
1.03316
0.958646
1.07978
1.05131
1.0237
0.973319
1.08611
0.847429
0.841727
1.14423
1.13912
0.879568
0.615447
0.881498
1.12958
1.1353
1.02643
1.05296
0.967002
1.09026
0.963878
1.087
1.02997
0.831769
0.740279
0.846616
0.700312
0.826609
0.853623
0.734147
0.834224
0.861619
0.696172
0.730516
0.857534
0.835889
0.732733
1.22922
1.26311
1.16933
1.23598
1.22608
1.1738
1.26628
1.23242
1.18256
1.24223
1.27131
1.1779
1.23592
1.26817
0.524953
0.590967
0.522833
0.519753
0.590927
0.522023
0.641564
0.642786
0.62154
0.62189
0.602451
0.588197
0.603681
0.620443
0.623443
0.698141
0.694548
0.642812
0.693516
0.695725
0.699939
0.670777
0.693518
0.689285
0.704286
0.641179
0.640861
0.620381
0.60361
0.586479
0.624461
0.603211
0.62315
0.623298
0.642044
0.642509
0.705439
0.701941
0.703543
0.704251
0.699252
0.624401
0.627071
0.604922
0.588577
0.625115
0.60451
0.626554
0.641713
0.640776
0.705184
0.696999
0.693751
0.696752
0.704853
0.624029
0.604169
0.588596
0.625888
0.604702
0.62343
0.626402
1.58968
1.57351
1.29668
1.29626
1.3359
1.4559
1.34424
1.48226
1.34549
1.33808
1.49215
1.29672
1.29592
1.54038
1.55758
1.30292
1.30147
1.46089
1.48245
1.34041
1.43547
1.34298
1.47284
1.34168
1.33814
1.46246
1.29782
1.29949
1.51811
1.50019
-2.11504
-2.05264
-2.12093
-2.21625
-2.03546
-2.13544
-2.2034
-2.11714
-2.11117
-2.14413
-2.15329
-2.15037
-2.10056
-2.12765
-2.10092
-2.1121
-1.97039
-2.18317
-2.0011
-2.18786
-2.07826
-2.12105
-2.14387
-2.12667
-2.15149
-2.12355
-2.14847
-2.13107
-1.81464
-1.84392
-1.97757
-1.93786
-1.86184
-1.78976
-1.95463
-1.74974
-1.65379
-1.71276
-1.74844
-1.75415
-1.66348
-1.74915
-1.85196
-1.96993
-1.84383
-1.94181
-1.87189
-1.84938
-1.95877
-1.86759
-1.91758
-1.85754
-1.67084
-1.65234
-1.72231
-1.6556
-1.77818
-1.72607
-1.80888
-1.64454
-1.64575
-1.77755
-1.96678
-1.83907
-1.85506
-1.79793
-1.86526
-1.9068
-1.92007
-1.89652
-1.79254
-1.86444
-2.12408
-2.12979
-2.07353
-2.23317
-2.14539
-2.08104
-2.2067
-2.09607
-2.11872
-2.11907
-2.10715
-2.11823
-2.08642
-2.04081
-2.18024
-2.06271
-2.17215
-2.05708
-2.10553
-2.10989
-2.08479
-2.04762
-2.10054
-2.11135
-2.31064
-2.47219
-2.34658
-2.70346
-2.39808
-2.28889
-2.49754
-2.18403
-2.13891
-2.13894
-2.23271
-2.20927
-2.12971
-2.19668
-2.16178
-2.1877
-2.15941
-2.13562
-2.146
-2.16887
-2.13057
-2.32962
-2.75591
-2.44555
-2.51442
-2.42715
-2.51895
-2.33234
-2.3571
-2.51031
-2.62416
-2.52282
-2.47906
-2.41689
-2.46737
-2.33284
-2.52
-2.60512
-2.40105
-2.49828
-2.38686
-2.37533
-2.4113
-2.8334
-2.45575
-2.14443
-2.2452
-2.24054
-2.20825
-2.1512
-2.21504
-2.89968
-2.54069
-2.51637
-2.98661
-4.342
-3.19341
-3.72745
-3.42798
-2.4131
-2.2058
-2.1612
-2.18189
-2.29396
-2.44577
-2.34528
-2.53288
-2.29245
-2.38853
-2.33758
-2.17076
-2.20633
-2.11191
-2.14375
-2.17609
-2.18313
-2.09322
-2.27559
-2.52977
-2.36088
-2.39506
-2.36705
-2.36754
-2.26984
-2.57487
-2.58164
-2.69599
-2.73549
-2.60236
-2.56196
-2.58313
-2.62756
-2.53526
-3.18019
-2.9853
-2.52531
-2.78256
-2.58261
-2.62248
-2.71789
-2.27562
-2.87605
-2.40745
-2.52441
-2.82962
-2.54399
-2.81346
-2.61384
-2.72068
-2.61304
-2.56868
-2.50961
-2.07593
-2.09162
-2.13056
-2.07172
-2.08811
-2.065
-2.13973
-2.0455
-2.10893
-1.97913
-2.13391
-2.0564
-1.98623
-2.13105
-2.05472
-2.13269
-2.09747
-2.07494
-2.06575
-2.14448
-2.04275
-1.81666
-1.82232
-1.98864
-1.82819
-1.81869
-1.73186
-1.6618
-1.66488
-1.72805
-1.65728
-1.7268
-1.72928
-1.74188
-1.74364
-1.65413
-1.66648
-1.74306
-1.65653
-1.73599
-2.00319
-1.8662
-1.86578
-2.15978
-2.14033
-2.1566
-2.11843
-2.10561
-2.12693
-2.1313
-2.12754
-2.14012
-2.08624
-2.1762
-2.118
-2.14591
-2.12457
-2.15126
-2.17353
-2.18622
-2.08782
-2.14005
-2.16156
-2.18657
-2.19915
-2.14454
-2.11722
-2.15305
-2.38789
-2.39093
-2.68853
-2.71516
-2.34942
-2.40884
-2.60664
-2.25712
-2.1589
-2.1797
-2.2435
-2.18148
-2.21778
-2.25857
-2.27383
-2.26383
-2.1344
-2.18324
-2.18483
-2.26108
-2.27781
-2.38882
-2.67624
-2.42893
-2.52647
-2.34801
-2.41092
-2.57658
-2.74567
-2.96879
-3.07635
-2.61275
-2.93151
-3.42167
-3.18629
-2.99871
-2.56574
-2.48643
-2.74637
-2.4881
-2.61277
-2.44849
-2.66765
-2.95045
-3.02796
-3.11288
-2.77177
-2.72542
-3.07842
-2.79883
-3.01871
-2.41485
-2.7285
-2.40782
-2.76006
-2.23301
-2.15803
-2.22619
-2.15244
-2.30737
-2.25985
-2.47727
-2.37655
-2.33543
-2.25412
-2.47392
-2.35848
-2.55427
-2.3381
-2.64659
-2.23791
-2.08672
-2.14306
-2.23323
-2.6638
-2.90395
-2.84106
-2.60346
-2.83715
-2.56572
-2.57924
-3.19142
-2.90667
-2.63237
-2.578
-2.82188
-2.62394
-3.14404
-2.75563
-3.32866
-2.65104
-2.74983
-2.93583
-2.59154
-3.01077
-2.65172
-2.7039
-2.53164
-2.76722
-2.68912
0.677002
0.64287
0.595469
0.614017
0.618888
0.645029
0.675324
0.603637
0.659874
0.574868
0.639611
0.55731
0.608623
0.66565
0.586638
0.660595
0.611354
0.676781
0.623806
0.598119
0.647189
0.621304
0.677544
0.646484
0.49205
0.579348
0.491037
0.490921
0.579709
0.490281
0.623311
0.677636
0.597807
0.674213
0.629351
0.68207
0.647438
0.63146
0.601897
0.631995
0.679298
0.649395
0.62019
0.594778
0.669433
0.671656
0.615855
0.682124
0.628717
0.649434
0.60213
0.681081
0.630788
0.649966
1.0711
1.07831
0.999791
1.11376
1.06363
1.0061
1.11724
0.929121
0.924615
1.16977
1.1724
1.07739
1.08143
1.01593
1.12091
1.08438
1.01113
1.11831
0.909628
0.918775
1.17689
1.17627
0.835116
0.760463
0.821164
0.689274
0.832929
0.824186
0.760086
0.837398
0.832123
0.684242
0.760434
0.827342
0.840926
0.759956
1.25275
1.2818
1.19859
1.25553
1.25054
1.20023
1.28329
1.25541
1.20472
1.25377
1.28713
1.2022
1.25901
1.28415
1.05226
1.06841
0.995158
1.1119
1.05857
0.987821
1.10676
0.863668
0.875008
1.15707
1.16312
1.0465
1.06493
0.975293
1.09838
1.04127
0.981587
1.10272
0.899253
0.886961
1.17573
1.16966
0.849711
0.765977
0.85058
0.692112
0.852223
0.845733
0.766281
0.846273
0.834598
0.681758
0.76018
0.840365
0.84221
0.762576
1.27148
1.30499
1.21013
1.25979
1.27557
1.20723
1.29973
1.26721
1.20482
1.25789
1.2861
1.20666
1.26078
1.29549
1.56954
1.3771
1.74732
1.40395
1.75709
1.3002
1.51445
1.35976
1.73371
1.33523
1.6577
1.72192
1.72921
1.74507
0.495599
0.581146
0.499156
0.505415
0.585899
0.504624
0.640324
0.638356
0.62053
0.622186
0.605411
0.587889
0.605497
0.621619
0.621175
0.694964
0.694983
0.632057
0.69595
0.694035
0.642817
0.643721
0.693822
0.627015
0.69242
0.693071
0.693034
0.619319
0.607512
0.587903
0.619874
0.606433
0.618439
0.620558
0.632102
0.634696
0.688122
0.68263
0.618673
0.636546
0.695982
0.608933
0.643669
0.627516
0.592603
0.666783
0.617742
0.618463
0.623393
0.689169
0.616537
0.69095
0.690262
0.691199
0.616413
0.607502
0.591013
0.618668
0.612618
0.616799
0.619783
1.61437
1.63009
1.30374
1.30493
1.3349
1.49052
1.3627
1.55221
1.35891
1.3436
1.53937
1.30638
1.30567
1.66089
1.64704
1.28596
1.28322
1.47977
1.3497
1.56101
1.35692
1.34375
1.57941
1.6998
1.69046
1.29779
1.2854
1.66997
1.67881
-0.0290176
-0.0351234
-0.00187888
0.0168513
0.0676737
0.0460364
-0.00447685
0.070019
0.0177287
0.0214129
0.0213048
0.0237553
0.0212487
-0.0300842
-0.0297386
0.000352506
0.071798
0.0184946
0.0547971
-0.00641574
0.0838325
0.0202574
0.0211596
0.0332679
0.0174904
0.0244316
0.00255331
-0.0112603
-0.0166728
-0.0110993
0.00353178
-0.0533991
0.0166437
0.023557
0.011202
-0.00424098
0.00554692
-0.00681525
0.00814677
-0.038856
0.0541232
0.0454694
0.0703301
0.0532743
0.0552542
0.0670923
0.0446086
-0.04082
0.0480835
-0.0433418
0.0418506
0.0541571
0.0717429
0.016293
0.0570633
-0.0129628
0.0690896
0.0431969
-0.0673221
0.0506525
0.0172039
0.0420509
-0.0223786
-0.0337212
0.0734283
0.0505588
-0.0214557
0.0731376
-0.0334871
-0.0568536
0.00881001
-0.0147895
-0.0290923
0.0219069
0.0392629
0.000612439
0.0769464
-0.0479314
0.133824
0.108572
0.201019
0.192484
0.133069
0.109847
0.19377
0.131384
0.0385628
0.0484533
0.140568
0.0367222
0.136803
0.133934
0.130822
0.133268
0.0449312
0.0437339
0.037922
0.130066
0.134851
0.134726
0.201823
0.1135
0.196748
0.111173
0.194899
0.136946
0.103453
0.186012
0.100022
0.186152
0.0916942
0.0966652
0.291524
0.197993
0.189272
0.28427
0.288371
0.19824
0.287585
0.265022
0.267455
0.299294
0.294534
0.3037
0.311816
0.301934
0.300868
0.29133
0.293324
0.189705
0.195035
0.286753
0.19848
0.289432
0.292899
0.298542
0.29764
0.291031
0.310718
0.297604
0.300108
0.289437
0.130928
0.11322
0.198494
0.191602
0.134728
0.106693
0.189321
0.122868
0.0936896
0.0916703
0.12482
0.0965738
0.119923
0.129257
0.124044
0.149168
0.0769816
0.097889
0.0948072
0.133452
0.133471
0.129322
0.197177
0.102757
0.178617
0.128052
0.105107
0.186647
0.10126
0.185574
0.102648
0.185511
0.107145
0.104094
-0.00144379
-0.0612196
-0.0455334
0.0229413
-0.0446609
0.0264566
-0.00202012
-0.00750376
-0.0633949
-0.0435044
0.0200968
-0.0447916
0.00784868
-0.00208527
0.142937
0.204913
0.119025
0.222779
0.144662
0.117953
0.204876
0.138726
0.0393622
0.0683258
0.141932
0.0445419
0.134008
0.145389
0.14031
0.149358
0.0517625
0.0723874
0.047229
0.143958
0.146645
0.141776
0.217876
0.112151
0.197405
0.13693
0.117418
0.203218
0.221485
0.115854
0.121811
0.156899
0.232594
0.234395
0.237109
0.229227
0.240808
0.295249
0.293046
0.296995
0.300313
0.312168
0.315825
0.314478
0.306423
0.296597
0.237429
0.225221
0.19271
0.278515
0.3008
0.245123
0.300906
0.308716
0.30121
0.317416
0.304795
0.308178
0.299488
0.153864
0.202362
0.2038
0.12076
0.147337
0.193838
0.12162
0.163353
0.0599233
0.185462
0.0770195
0.17043
0.0581665
0.176039
0.175123
0.168973
0.181224
0.197961
0.184988
0.183907
0.182797
0.154435
0.154893
0.0582033
0.073453
0.0533292
0.150034
0.15581
0.113174
0.216738
0.111093
0.208201
0.102852
0.109438
0.403524
0.392009
0.372929
0.403247
0.389663
0.375038
0.403982
0.377085
0.392574
0.404394
0.379379
0.389903
0.388163
0.391038
0.335064
0.387127
0.39146
0.33694
0.470281
0.466905
0.569644
0.538305
0.466486
0.538023
0.471007
0.469196
0.536914
0.465093
0.5692
0.468711
0.46544
0.537399
0.394252
0.382853
0.356669
0.393821
0.386091
0.354535
0.472882
0.469366
0.568086
0.538681
0.467271
0.472859
0.538727
0.475224
0.538339
0.470204
0.570186
0.474922
0.470681
0.539473
-1.38392
-1.40354
-1.3787
-1.40204
-1.37431
-1.38874
-1.40469
-1.37609
-1.34811
-1.361
-1.35364
-1.37269
-1.35772
-1.34795
-1.37278
-1.37033
-1.34985
-1.36384
-1.36721
-1.34192
-1.50759
-1.49726
-1.45402
-1.47279
-1.46198
-1.50102
-1.492
-1.49219
-1.34375
-1.35321
-1.35329
-1.3552
-1.33679
-1.3513
-1.35799
-1.38134
-1.43434
-1.38229
-1.33292
-1.34411
-1.42828
-1.3451
-1.33364
-1.16065
-1.20147
-1.15065
-1.20796
-1.08858
-1.09492
-1.09066
-1.08876
-1.09313
-1.08139
-1.09761
-1.09292
-1.08908
-1.09073
-1.09536
-1.09351
-1.09809
-1.08703
-1.16149
-1.22034
-1.2097
-1.16734
-1.26519
-1.24924
-1.23402
-1.22907
-1.23365
-1.2666
-1.25727
-1.29219
-1.32435
-1.30071
-1.28682
-1.28421
-1.31542
-1.27067
-1.25395
-1.23619
-1.28488
-1.23687
-1.27168
-1.29312
-1.23725
-1.22977
-1.29559
-1.26393
-1.22071
-1.25542
-1.28112
-1.2454
-1.25551
-1.34106
-1.31057
-1.31271
-1.29513
-1.32266
-1.32295
-1.32533
-1.3
-1.24916
-1.22108
-1.28589
-1.2875
-1.24281
-1.29001
-1.25826
-1.23584
-1.26204
-1.3138
-1.23809
-1.24818
-1.2905
-1.33044
-1.306
-1.27555
-1.33611
-1.27509
-1.30282
-1.32151
-1.34816
-1.30434
-1.30228
-1.34896
-1.34536
-1.30517
-1.3264
-1.30651
-1.19776
-1.24174
-1.29019
-1.12964
-1.15271
-1.14855
-1.14388
-1.19672
-1.12319
-1.11801
-1.09663
-1.09315
-1.11012
-1.09402
-1.10504
-1.11563
-1.12264
-1.13398
-1.09602
-1.09436
-1.13126
-1.09508
-1.11846
-1.12845
-1.20519
-1.12166
-1.12979
-1.20451
-1.12132
-1.06842
-1.06986
-1.2871
-1.22498
-1.27799
-1.24224
-1.32875
-1.33353
-1.26949
-1.33724
-1.28619
-1.3433
-1.31109
-1.25962
-1.26173
-1.2261
-1.26807
-1.26208
-1.25994
-1.26056
-1.32556
-1.31076
-1.26078
-1.25627
-1.26148
-1.25051
-1.41657
-1.40739
-1.34727
-1.35216
-1.38212
-1.3646
-1.39665
-1.36424
-1.3926
-1.41299
-1.40031
-1.30359
-1.37656
-1.3679
-1.29611
-1.41133
-1.40402
-1.41606
-1.40054
-1.4001
-1.4032
-1.42029
-1.41193
-1.39779
-1.40158
-1.30591
-1.30685
-1.37478
-1.30602
-1.34339
-1.35147
-1.3633
-1.33124
-1.33586
-1.40854
-1.43337
-1.43472
-1.39434
-1.43606
-1.40527
-1.39082
-1.35495
-1.33202
-1.32413
-1.50554
-1.63323
-1.507
-1.50093
-1.50892
-1.49474
-1.5209
-1.47529
-1.47754
-1.50429
-1.46983
-1.51895
-1.48797
-1.47314
-1.4722
-1.47476
-1.47736
-1.49506
-1.47291
-1.37196
-1.37474
-1.38504
-1.37759
-1.34452
-1.32458
-1.34602
-1.37977
-1.34621
-1.34189
-1.38214
-1.3577
-1.3771
-1.42818
-1.43277
-1.37681
-1.42249
-1.37092
-1.39902
-1.44602
-1.39651
-1.43446
-1.39109
-1.40384
-1.43811
-1.34678
-1.36808
-1.34036
-1.36853
-1.36355
-1.37065
-1.16297
-1.18102
-1.17683
-1.05128
-1.04568
-1.11678
-1.11854
-1.04021
-1.11781
-1.04726
-1.03903
-1.12559
-1.0389
-1.17794
-1.15099
-1.16212
-1.11707
-1.1642
-1.15367
-1.15778
-1.11489
-1.16568
-1.15948
-1.11042
-1.15181
-1.13974
-1.17777
-1.15222
-1.16161
-1.10801
-1.24923
-1.20563
-1.25989
-1.18279
-1.19157
-1.25191
-1.25463
-1.28389
-1.3032
-1.29002
-1.2994
-1.29641
-1.29241
-1.28295
-1.28361
-1.28414
-1.26249
-1.28007
-1.2771
-1.2963
-1.27374
-1.24336
-1.20032
-1.16903
-1.26739
-1.17577
-1.26125
-1.24035
-1.15446
-1.15859
-1.15689
-1.08111
-1.11437
-1.13046
-1.11107
-1.03919
-1.07894
-1.12549
-1.15615
-1.13054
-1.15551
-1.25804
-1.20916
-1.2244
-1.26479
-1.26845
-1.21694
-1.25498
-1.25969
-1.32042
-1.25749
-1.26251
-1.26258
-1.30587
-1.25229
-1.21749
-1.2564
-1.22604
-1.25207
-1.21767
-1.25452
-1.26644
-1.28412
-1.24812
-1.26209
-1.28273
-1.27615
-1.26105
-1.18376
-1.19288
-1.28441
-1.19988
-1.20973
-1.23505
-1.19828
-1.23573
-1.36445
-1.33503
-1.37264
-1.33722
-1.29614
-1.19142
-1.19961
-1.19506
-1.30288
-1.34633
-1.34802
-1.33292
-1.3276
-1.09805
-1.09083
-1.08918
-1.09295
-1.09393
-1.08646
-1.12301
-1.10867
-1.17967
-1.17613
-1.12914
-1.11123
-1.17817
-1.10162
-1.10315
-1.06488
-1.10563
-1.09647
-1.06525
-1.11243
-1.10888
-1.18265
-1.135
-1.18265
-1.1081
-1.12455
-1.17932
-1.11407
-1.11422
-1.0719
-1.11263
-1.10692
-1.11348
-1.09796
-1.11151
-1.12212
-1.11722
-1.23611
-1.21438
-1.23896
-1.21156
-1.23982
-1.23894
-1.21433
-1.31968
-1.32332
-1.27056
-1.34748
-1.26758
-1.32662
-1.35449
-1.34884
-1.33487
-1.24235
-1.21922
-1.26193
-1.22995
-1.2482
-1.24672
-1.22082
-1.42658
-1.57259
-1.60108
-1.57758
-1.61782
-1.57205
-1.57864
-1.60371
-1.5165
-1.51861
-1.46313
-1.45867
-1.51998
-1.51333
-1.46533
-1.52389
-1.42587
-1.51395
-1.46512
-1.50707
-1.52546
-1.47039
-1.41056
-1.4287
-1.42686
-1.42344
-1.35711
-1.29732
-1.28014
-1.29195
-1.28836
-1.30035
-1.42544
-1.43535
-1.41403
-1.36967
-1.43355
-1.36675
-1.43852
-1.35621
-1.33157
-1.27492
-1.28386
-1.38147
-1.40625
-1.44256
-1.45041
-1.37699
-1.40985
-1.42324
-1.40049
-1.42607
-1.38829
-1.36772
-1.39022
-1.35356
-1.41989
-1.35838
-1.40028
-1.38907
-1.36461
-1.39839
-1.39269
-1.42837
-1.41619
-1.40407
-1.36879
-1.36812
-1.40291
-1.43873
-1.40468
-1.38958
-1.39782
-1.39145
-1.38559
-1.33976
-1.33564
-1.39203
-1.70271
-1.64424
-1.65658
-1.70962
-1.71835
-1.65354
-1.6895
-1.77021
-2.04115
-2.0128
-1.84707
-1.76851
-1.77929
-2.04014
-1.79314
-1.78593
-2.03672
-1.78047
-2.03161
-1.98351
-2.15365
-2.0631
-2.06858
-1.9841
-2.07325
-2.08581
-2.06911
-2.09733
-2.04957
-2.12928
-2.12264
-2.05501
-2.07399
-2.02283
-2.01014
-2.01282
-2.00249
-2.07366
-2.05318
-2.08486
-2.20288
-2.18449
-2.06958
-2.08763
-2.10503
-2.08477
-2.10818
-2.04957
-1.92117
-1.96434
-2.1032
-1.96523
-2.07339
-2.03437
-2.07817
-1.95731
-2.02101
-2.08205
-1.98017
-2.06073
-2.08977
-2.06214
-2.16715
-2.175
-2.06727
-2.51786
-2.78196
-2.42408
-2.99156
-2.45406
-2.47586
-2.25375
-2.07699
-2.25153
-2.11635
-2.8532
-2.55099
-2.54346
-2.27383
-2.24073
-2.12339
-2.15872
-2.27464
-2.2456
-2.14988
-2.83015
-2.48381
-2.48922
-2.70783
-2.83246
-2.48793
-2.70096
-3.02201
-2.51104
-2.21429
-2.54947
-2.87436
-2.57945
-2.97811
-3.22983
-2.55212
-3.12911
-2.27031
-3.23687
-3.07385
-2.56016
-2.71658
-2.49843
-2.55904
-2.56099
-2.51211
-2.62308
-2.66484
-2.56466
-2.36715
-2.55207
-2.93501
-2.37728
-2.51373
-2.97628
-2.24236
-2.138
-2.10374
-2.18947
-2.18194
-2.13788
-2.25223
-2.25549
-2.19011
-2.12209
-2.15004
-2.19222
-2.23716
-2.15437
-2.5533
-2.5483
-2.38086
-2.88942
-2.37091
-2.94293
-2.54781
-1.85086
-1.76677
-1.89516
-1.95665
-1.8583
-1.77176
-1.96453
-1.69407
-1.55447
-1.61765
-1.72871
-1.56399
-1.84743
-2.03223
-1.83835
-2.01032
-1.85257
-1.9776
-1.86154
-1.99694
-2.13953
-2.07606
-2.07133
-2.16316
-2.16968
-2.09027
-2.1281
-2.08655
-2.05153
-2.09812
-2.04055
-2.10861
-2.06256
-2.15439
-2.08392
-2.17927
-2.12513
-2.17277
-2.15629
-2.09819
-2.11567
-2.08969
-2.11029
-2.12377
-2.12976
-2.09797
-2.11388
-2.10498
-2.02103
-2.04941
-2.14565
-2.03411
-2.1668
-2.11173
-2.08051
-2.09254
-2.02595
-2.05387
-2.07579
-2.10085
-2.03591
-2.16953
-2.02657
-2.19036
-2.07366
-1.96918
-1.97395
-2.091
-2.0285
-2.00517
-2.13546
-2.10574
-2.07236
-2.07529
-2.11433
-2.11669
-2.06333
-2.10615
-2.38072
-2.29318
-2.5526
-2.30596
-2.50024
-2.37613
-2.28011
-2.6939
-2.75495
-2.79434
-2.72923
-2.34136
-2.16091
-2.17355
-2.29675
-2.20657
-2.16589
-2.11931
-2.06252
-2.11375
-2.19882
-2.15873
-2.65496
-2.88872
-2.88055
-2.58371
-2.55474
-2.2305
-2.43624
-2.52536
-2.46046
-2.31271
-2.62242
-3.35082
-2.60795
-3.3246
-2.69381
-2.60136
-2.33171
-1.85339
-2.4035
-2.22446
-2.73702
-2.2531
-3.21838
-3.11571
-2.64729
-2.47328
-2.49947
-2.53379
-2.68527
-2.41164
-2.5652
-3.00832
-2.75804
-2.95501
-2.95038
-2.41481
-2.30436
-2.43207
-2.64317
-2.28925
-2.40742
-2.71166
-2.16934
-2.12172
-2.08834
-2.16671
-2.14984
-2.23127
-2.13764
-2.24359
-2.16303
-2.17319
-2.26305
-2.20599
-2.17415
-2.09373
-2.14818
-2.15863
-2.14597
-2.23777
-2.48545
-2.46344
-2.34851
-2.81195
-2.50931
-2.31179
-2.78666
-2.53723
-3.02115
-2.50709
0.679558
0.644908
0.616039
0.586509
0.61228
0.681468
0.642374
0.553652
0.663724
0.655886
0.56076
0.548242
0.644759
0.650528
0.539496
0.680303
0.612323
0.585457
0.642457
0.612282
0.681067
0.642336
0.488935
0.560659
0.492721
0.498348
0.56367
0.496378
0.524414
0.63007
0.634526
0.51753
0.68071
0.638188
0.606419
0.577904
0.608321
0.679453
0.639828
0.528278
0.64187
0.637733
0.536206
0.681077
0.610316
0.640827
0.580065
0.680488
0.609639
0.64073
1.62179
1.53997
1.80026
1.5171
1.79602
1.6461
1.55475
1.80449
1.57102
1.8108
1.1433
1.10629
1.21955
1.09196
1.21946
0.977273
0.978176
1.13512
1.15217
1.06399
1.22221
1.13016
1.06364
1.23032
1.01001
1.00414
0.913855
0.79075
0.888298
0.965775
0.963935
0.786909
0.915921
0.910621
0.957606
0.889796
0.775837
0.961077
0.906613
0.781647
1.37899
1.50772
1.22387
1.22626
1.48699
1.38964
1.37228
1.23348
1.45206
1.22804
1.36149
1.47459
1.10791
1.22043
1.15289
1.1117
1.22434
1.01943
1.01801
1.01162
1.01486
1.15698
1.11842
1.22985
1.11522
1.2237
0.896495
0.762077
0.934194
0.880566
0.893298
0.938901
0.765128
0.900654
0.957
0.888277
0.772886
0.950876
0.905097
0.768833
1.33361
1.3714
1.24336
1.32495
1.24248
1.38748
1.33967
1.2335
1.43361
1.2394
1.35321
1.40583
0.485825
0.5533
0.482975
0.477411
0.548723
0.479574
0.644508
0.623559
0.576725
0.553615
0.578972
0.641368
0.625048
0.560276
0.676385
0.663672
0.55879
0.63996
0.727416
0.725389
0.653143
0.730019
0.641
0.653881
0.559976
0.63486
0.649417
0.559287
0.646252
0.582782
0.553827
0.625511
0.580676
0.648577
0.624989
0.52311
0.629766
0.517233
0.628897
0.674444
0.636625
0.604994
0.569222
0.678771
0.602016
0.633556
0.643733
0.71945
0.723732
0.654181
0.717672
0.6429
0.656827
0.557531
0.626909
0.623105
0.560047
0.65807
0.587523
0.56
0.627818
0.591088
0.653022
0.629685
1.69815
1.63193
1.84683
1.63863
1.85741
1.67694
1.62594
1.8411
1.62395
1.83692
-1.74543
-1.73316
-1.65541
-1.77937
-1.7413
-1.65535
-1.78703
-1.81278
-1.94345
-1.91461
-2.02749
-1.92101
-1.82341
-1.92229
-1.82305
-1.95188
-1.85754
-2.08183
-1.82185
-1.94228
-1.87413
-2.03443
-2.03456
-2.07726
-2.16235
-2.06203
-2.00157
-2.06924
-2.06024
-2.10769
-2.06313
-2.07945
-2.04497
-2.08835
-2.07671
-2.03591
-2.03414
-2.14961
-2.07536
-2.05474
-2.02314
-2.07115
-1.9833
-2.02822
-1.96764
-2.05397
-1.97894
-1.96793
-2.04085
-2.02481
-2.10417
-2.05071
-2.07418
-2.03734
-2.0409
-2.07186
-2.00167
-2.02285
-2.10131
-2.07071
-2.00138
-2.0165
-2.06546
-2.17053
-2.34244
-2.27977
-2.1433
-2.15326
-2.34406
-2.14852
-2.16062
-2.10138
-2.09092
-2.22469
-2.1728
-2.09265
-2.22591
-2.22156
-2.19282
-2.22771
-2.35658
-2.16909
-2.24858
-2.32586
-2.18641
-2.79425
-2.42328
-2.52695
-2.36284
-2.33158
-2.51996
-2.10017
-2.23533
-2.339
-2.50442
-2.02638
-2.31645
-2.42053
-2.19244
-2.17504
-2.1071
-2.28634
-2.20039
-2.09654
-2.29682
-2.34245
-2.67757
-2.3473
-2.39386
-2.31918
-2.38027
-2.59454
-2.32153
-2.25875
-2.52637
-2.41154
-2.31003
-2.30394
-2.55945
-1.81611
-1.94524
-1.89964
-2.00397
-1.8143
-1.89551
-1.94284
-1.93627
-2.02107
-1.99579
-1.99916
-1.99742
-1.93647
-1.99434
-1.93271
-1.96148
-1.94898
-2.01648
-1.94101
-1.93417
-1.97696
-1.97288
-2.02702
-2.00571
-2.01181
-1.99191
-1.96155
-2.02404
-1.93422
-1.88264
-2.00706
-1.98544
-1.90408
-1.92077
-1.99379
-2.60662
-2.64106
-2.60362
-2.65784
-2.29686
-2.20246
-2.14539
-2.39219
-2.19463
-2.25769
-2.34529
-2.54976
-2.37036
-2.7369
-2.71598
-2.5077
-2.41693
-2.74979
-2.26977
-2.24976
-1.68918
-3.15141
-2.2896
-1.63313
-3.12418
-2.38279
-2.71207
-2.38681
-2.54555
-2.37361
-2.35651
-2.73902
-2.34069
-2.29566
-2.90145
-2.64546
-2.32311
-2.31108
-2.95243
-2.24227
-2.2103
-2.12943
-2.41842
-2.12174
-2.24322
-2.44636
-2.38241
-2.74237
-2.33681
-2.56126
-2.38337
-2.32917
-2.73676
-2.37468
-2.31632
-2.72924
-2.64204
-2.37811
-2.31209
-2.76439
-1.72623
-1.7854
-1.79731
-1.94741
-2.11549
-1.93559
-1.90493
-1.92898
0.61949
0.627121
0.551549
0.549425
0.559697
0.629005
0.603579
0.636318
0.772709
0.790305
0.669351
0.795623
0.634092
0.671993
0.588336
0.812941
0.813312
0.57021
0.583126
0.808265
0.81541
0.572684
0.624094
0.568989
0.552229
0.627874
0.563841
0.629099
0.628018
0.462392
0.540931
0.462117
0.462043
0.54062
0.461964
0.558306
0.773583
0.785041
0.558227
0.632292
0.76508
0.788919
0.66937
0.784603
0.633727
0.667433
0.637725
0.627798
0.576981
0.555139
0.577079
0.637924
0.628599
0.559895
0.804726
0.796412
0.56476
0.636815
0.57451
0.629009
0.554728
0.634544
0.576733
0.628498
1.19163
1.14785
1.27731
1.15011
1.27609
1.06302
1.05861
1.19394
1.15338
1.27829
1.15241
1.2745
1.05215
1.05527
0.925654
0.801881
0.978997
0.901715
0.924559
0.980187
0.804229
0.928679
0.989142
0.905872
0.814085
0.984227
0.932539
0.80885
1.3858
1.52795
1.23903
1.40012
1.23797
1.55036
1.3916
1.26201
1.52832
1.27455
1.42166
1.18179
1.14793
1.28725
1.14275
1.2791
1.04178
1.04201
1.17592
1.13642
1.26126
1.13711
1.26543
1.05295
1.04897
0.94375
0.841377
1.00698
0.923865
0.95277
0.999551
0.830496
0.939203
0.991331
0.918344
0.818473
0.995335
0.935168
0.825089
1.4631
1.6738
1.23869
1.47174
1.23977
1.65781
1.45715
1.25388
1.61837
1.24198
1.44562
1.64726
1.91263
1.83575
2.15847
1.84581
2.16756
-2.81112
-2.54478
-2.77334
-2.2261
-2.43006
-2.49283
-2.54188
-2.75541
-2.76979
-2.34797
-2.96137
-3.0836
-2.95772
-3.07513
-3.87592
-2.95141
-3.16961
-3.16259
-3.08046
-3.21514
-2.20269
-2.37425
-2.39936
-2.84425
1.88176
1.82202
2.14806
1.81176
2.13527
0.462832
0.540918
0.463298
0.463958
0.541432
0.463922
0.643035
0.626486
0.582768
0.553985
0.581164
0.645288
0.625047
0.566179
0.698327
0.567815
0.705439
0.636555
0.735862
0.752039
0.658142
0.748336
0.636453
0.657253
0.565675
0.720009
0.711744
0.564687
0.642853
0.580134
0.554387
0.625865
0.580675
0.642082
0.625694
0.561612
0.76379
0.561457
0.750457
0.638754
0.62677
0.577429
0.55411
0.638283
0.577697
0.626029
0.63495
0.742923
0.753951
0.657616
0.759372
0.634774
0.65948
0.5627
0.729111
0.740576
0.562871
0.63992
0.578303
0.554316
0.625103
0.578324
0.640203
0.625999
-1.66515
-1.67043
-1.83731
-1.65671
-1.83243
-1.98288
-2.09002
-1.9927
-1.97889
-2.06589
-1.98791
-1.9886
-1.99606
-1.98938
-2.09231
-2.03139
-2.03253
-2.01655
-1.99973
-2.00248
-1.97616
-2.0557
-2.00408
-2.06978
-2.03029
-2.04584
-2.03322
-2.0056
-2.01588
1.78351
1.72941
2.00244
1.71366
1.98922
-3.17118
1.81725
1.75819
2.01125
1.76867
2.02298
-0.00633948
0.00987485
0.00034634
-0.00964424
0.0111749
0.0046336
0.066078
0.0599346
0.0842992
0.0770185
0.0648515
0.0849327
0.061718
-0.00735986
0.00931793
0.00355096
-0.00740081
0.00959376
0.00334963
0.0686963
0.0830495
0.0678027
0.0807978
0.0679215
0.0873086
0.0651046
-0.0473424
0.0257929
0.0256109
-0.0465579
-0.0530502
-0.028108
0.0372456
0.0118498
-0.0497774
0.0337865
-0.0300956
-0.0107187
-0.0333577
-0.01465
-0.02581
-0.0130925
-0.0121628
-0.0248421
-0.0521855
0.03011
-0.048357
0.0220122
-0.0504594
0.0323405
0.00949863
-0.0301439
0.0329738
-0.0495367
-0.0300647
-0.011519
0.0121738
-0.000999315
-0.00619659
0.0127544
-0.00667302
0.0553118
0.0874194
0.0271939
0.11794
0.0211166
0.0865026
0.0911532
-0.0179242
0.0345466
0.0262285
0.0124436
-0.00904731
0.0663582
0.0826385
0.0769758
0.103001
0.0714061
0.0805965
0.0813418
-0.0477863
0.0233271
0.0241556
-0.0484125
-0.0519652
-0.0339609
0.0286126
0.00502247
-0.0511094
0.0295138
-0.0333651
-0.011848
-0.030362
-0.0160249
-0.0271699
-0.00164514
-0.0137821
-0.0268357
-0.0503713
0.0217188
-0.0498477
0.0220642
-0.0494251
0.0305763
0.00611482
-0.0311842
0.030735
-0.0512399
-0.0311571
0.0908306
0.0469342
0.0208236
0.0902277
0.0452402
0.0883141
0.0924895
0.0897446
0.084919
0.0419723
0.0186495
0.0436995
0.0883333
0.0864226
0.0683214
0.127106
0.14933
0.150847
0.0708603
-0.057097
-0.0116575
-0.0075118
-0.00169009
-0.0540027
-0.00438103
0.127458
0.150227
0.0740171
0.151472
0.0724753
0.268232
0.250537
0.227583
0.253993
0.269422
0.249664
0.253346
0.252809
0.297631
0.251174
0.298881
0.249955
0.316136
0.26638
0.311966
0.265401
0.250813
0.314842
0.268042
0.227094
0.248729
0.254026
0.248746
0.253634
0.268446
0.248767
0.264384
0.308174
0.310066
0.248846
0.264025
0.313133
0.0849339
0.0338971
0.015187
0.0773938
0.0379205
0.0816141
0.0811583
0.0862399
0.083788
0.0401337
0.0160649
0.0389437
0.0871486
0.0830969
0.0670498
0.145916
0.116308
0.0645345
0.14478
-0.0380629
0.0118997
0.00958246
0.00396564
-0.041633
0.0066652
0.115318
0.0597604
0.143305
0.062497
0.143686
0.0918165
0.0476466
0.0242542
0.091222
0.048153
0.0926536
0.0910662
0.0887657
0.0671442
0.0498412
0.0230698
0.0483797
0.0764981
0.0865848
0.111455
0.142631
0.0472418
0.144727
0.0567609
-0.0601425
-0.0616302
0.154737
0.10289
0.0899913
-0.0634759
-0.0701458
0.270434
0.252549
0.228489
0.256646
0.272103
0.250525
0.255673
0.254379
0.300362
0.254293
0.300705
0.25196
0.316564
0.266881
0.314966
0.251281
0.267622
0.317514
0.26955
0.227738
0.248775
0.254323
0.268704
0.249605
0.255087
0.252609
0.268365
0.31834
0.315299
0.253342
0.267981
0.318056
0.0594906
0.0711846
0.00921266
0.0861841
0.0594227
0.0731914
0.0124446
0.0588606
0.0279973
0.0655594
0.085406
0.070952
0.0646241
0.013878
0.147076
0.0685912
0.116306
0.0561952
0.144741
-0.0305604
0.0146166
0.0168032
0.0236401
-0.0304995
0.017651
0.114881
0.0582008
0.143262
0.0564352
0.14377
0.425769
0.273647
0.294285
0.436988
0.422987
0.296148
0.43646
0.460227
0.4578
0.553413
0.519547
0.460277
0.521771
0.45801
0.461845
0.524427
0.464866
0.555511
0.46243
0.462857
0.523219
0.420448
0.259966
0.289937
0.435327
0.419786
0.290788
0.434981
0.454955
0.456007
0.546784
0.518168
0.453987
0.456713
0.516512
0.453714
0.515011
0.449666
0.543803
0.452702
0.450916
0.515776
0.404308
0.225062
0.401697
0.283696
0.403867
0.402626
0.284745
0.439351
0.431172
0.532048
0.505218
0.430539
0.504573
0.440028
0.438496
0.50405
0.429058
0.531337
0.43829
0.429411
0.503962
0.408329
0.237224
0.409544
0.290235
0.408874
0.408632
0.289703
0.440997
0.431736
0.533065
0.505338
0.432381
0.440292
0.506055
0.441816
0.506214
0.433685
0.533749
0.441907
0.4335
0.506587
-1.2659
-1.38262
-1.43695
-1.3905
-1.4438
-1.44352
-1.38711
-1.38357
-1.31043
-1.2713
-1.33277
-1.31942
-1.31023
-1.26496
-1.3137
-1.31701
-1.34668
-1.26064
-1.3176
-1.33275
-1.30969
-1.26011
-1.37697
-1.44566
-1.43939
-1.39242
-1.44037
-1.38711
-1.37656
-1.48725
-1.46345
-1.44174
-1.48242
-1.49332
-1.43885
-1.47533
-1.64063
-1.69761
-1.64285
-1.69651
-1.54597
-1.42266
-1.41951
-1.42681
-1.54635
-1.61391
-1.68494
-1.61973
-1.68021
-1.3952
-1.43444
-1.39368
-1.42502
-1.39265
-1.39121
-1.43019
-1.3471
-1.30508
-1.30872
-1.3548
-1.34941
-1.3002
-1.3513
-1.34306
-1.34504
-1.26968
-1.27768
-1.34008
-1.33786
-1.28518
-1.39023
-1.40435
-1.38122
-1.40257
-1.38469
-1.41531
-1.38671
-1.3158
-1.31472
-1.30627
-1.3129
-1.30249
-1.23123
-1.25176
-1.25148
-1.28322
-1.25402
-1.21262
-1.2705
-1.25093
-1.24471
-1.24122
-1.08721
-1.18135
-1.13463
-1.08292
-1.0638
-1.06837
-1.07678
-1.0761
-1.07063
-1.07448
-1.067
-1.06614
-1.07897
-1.07876
-1.08938
-1.07186
-1.07451
-1.08709
-1.18562
-1.13749
-1.13835
-1.21073
-1.167
-1.22829
-1.22374
-1.16928
-1.20876
-1.2212
-1.26438
-1.29724
-1.27689
-1.29928
-1.2693
-1.28026
-1.29618
-1.21246
-1.22457
-1.16507
-1.22163
-1.16763
-1.21921
-1.21941
-1.26331
-1.27485
-1.29032
-1.30695
-1.25553
-1.28157
-1.2999
-1.21778
-1.16888
-1.23475
-1.23305
-1.24461
-1.17482
-1.2096
-1.2145
-1.25841
-1.27506
-1.28993
-1.25846
-1.21422
-1.27349
-1.23431
-1.23369
-1.29257
-1.28348
-1.23952
-1.23981
-1.28268
-1.08184
-1.09224
-1.17145
-1.08319
-1.08786
-1.08786
-1.06797
-1.07582
-1.10132
-1.0751
-1.09319
-1.10081
-1.08629
-1.09252
-1.08617
-1.07813
-1.08171
-1.08853
-1.09045
-1.08856
-1.15726
-1.10913
-1.10397
-1.08895
-1.10917
-1.21649
-1.23374
-1.22667
-1.21515
-1.22903
-1.22827
-1.24257
-1.20136
-1.15064
-1.26654
-1.25424
-1.28512
-1.28499
-1.28526
-1.28006
-1.29827
-1.20243
-1.27045
-1.26782
-1.11613
-1.11915
-1.13198
-1.1397
-1.11744
-1.11669
-1.13266
-1.0801
-1.05882
-1.018
-1.06249
-1.07466
-1.04222
-1.04779
-1.0228
-1.0216
-1.08118
-1.08206
-1.03122
-1.02194
-1.07885
-1.02278
-1.08075
-1.11294
-1.14327
-1.11333
-1.15071
-1.11553
-1.13705
-1.10809
-1.21851
-1.25082
-1.25586
-1.28589
-1.24999
-1.21774
-1.28889
-1.22086
-1.28634
-1.27033
-1.25925
-1.25121
-1.29774
-1.22308
-1.10519
-1.12014
-1.11676
-1.13098
-1.10961
-1.11361
-1.11779
-1.09348
-1.06504
-1.05982
-1.09716
-1.06285
-1.0963
-1.0941
-1.02244
-1.08652
-1.0877
-1.0556
-1.02244
-1.05549
-1.09101
-1.07962
-1.1044
-1.11135
-1.10816
-1.1119
-1.10595
-1.10662
-1.11103
-1.24206
-1.14945
-1.15266
-1.24389
-1.1471
-1.29702
-1.24939
-1.27048
-1.27456
-1.29871
-1.27882
-1.15456
-1.1878
-1.17262
-1.23775
-1.15659
-1.19316
-1.55913
-1.48436
-1.55053
-1.46799
-1.64935
-1.60914
-1.54011
-1.6484
-1.63699
-1.53773
-1.65749
-1.64231
-1.71245
-1.65228
-1.69946
-1.5563
-1.42169
-1.54506
-1.47074
-1.63416
-1.6516
-1.61036
-1.67211
-1.32312
-1.42249
-1.31306
-1.41343
-1.32815
-1.31163
-1.29643
-1.30755
-1.28321
-1.30345
-1.29966
-1.31119
-1.28885
-1.37357
-1.45856
-1.43878
-1.38915
-1.30988
-1.32197
-1.3217
-1.32426
-1.32423
-1.3299
-1.31577
-1.34792
-1.41551
-1.35084
-1.31865
-1.34927
-1.36495
-1.32737
-1.35233
-1.31192
-1.35708
-1.32173
-1.3569
-1.31639
-1.35009
-1.3706
-1.36922
-1.38102
-1.38624
-1.3859
-1.36209
-1.37279
-1.35144
-1.32573
-1.32899
-1.32049
-1.32469
-1.34976
-1.335
-1.39492
-1.43434
-1.40149
-1.30688
-1.37781
-1.37445
-1.36383
-1.31458
-1.36191
-1.45069
-1.4315
-1.42747
-1.35228
-1.4473
-1.40272
-1.36902
-1.42227
-1.35166
-1.35403
-1.32441
-1.27518
-1.33123
-1.35642
-1.31425
-1.35204
-1.27538
-1.35473
-1.44937
-1.42896
-1.34354
-1.42861
-1.35779
-1.35026
-1.32698
-1.3681
-1.35532
-1.27754
-1.35788
-1.33259
-1.27586
-1.51363
-1.4749
-1.48526
-1.55228
-1.53467
-1.45514
-1.53386
-1.57958
-1.63722
-1.58473
-1.64864
-1.58945
-1.56394
-1.64777
-1.50914
-1.43964
-1.43647
-1.52118
-1.44396
-1.52309
-1.49534
-1.57787
-1.59265
-1.63312
-1.63567
-1.59102
-1.58645
-1.63584
-1.38111
-1.35974
-1.33996
-1.3411
-1.34556
-1.34786
-1.34988
-1.36695
-1.33954
-1.3509
-1.33743
-1.39965
-1.41599
-1.41749
-1.42303
-1.34509
-1.39058
-1.3463
-1.43382
-1.44369
-1.40646
-1.43967
-1.39808
-1.34845
-1.44037
-1.22173
-1.17005
-1.16346
-1.19883
-1.17679
-1.20955
-1.21512
-1.20943
-1.18859
-1.21356
-1.21042
-1.21755
-1.206
-1.19765
-1.2125
-1.16446
-1.18632
-1.20766
-1.1683
-1.20549
-1.21761
-1.22936
-1.22622
-1.22352
-1.23099
-1.23095
-1.22593
-1.22741
-1.13618
-1.10528
-1.06239
-1.09871
-1.06427
-1.12831
-1.1166
-1.098
-1.03962
-1.04325
-1.09368
-1.1184
-1.12353
-1.12507
-1.10815
-1.1261
-1.10869
-1.11615
-1.12566
-1.13196
-1.10289
-1.06704
-1.1299
-1.0656
-1.12841
-1.12152
-1.12782
-1.1023
-1.06155
-1.10759
-1.11004
-1.12398
-1.06787
-1.11388
-1.11177
-1.09478
-1.09068
-1.03967
-1.03455
-1.09285
-1.11789
-1.10304
-1.10965
-1.11589
-1.11171
-1.11093
-1.15169
-1.06422
-1.10745
-1.06064
-1.10191
-1.19752
-1.16348
-1.19303
-1.13468
-1.20854
-1.12641
-1.18759
-1.13873
-1.13444
-1.23026
-1.26027
-1.25599
-1.22108
-1.22347
-1.25481
-1.22743
-1.12873
-1.23096
-1.22643
-1.23605
-1.25503
-1.2259
-1.22799
-1.25369
-1.20012
-1.12926
-1.13312
-1.17927
-1.12798
-1.18182
-1.20025
-1.21638
-1.20909
-1.19853
-1.18823
-1.20053
-1.21947
-1.20931
-1.21388
-1.20365
-1.21449
-1.21686
-1.20126
-1.21206
-1.20638
-1.19322
-1.19901
-1.25464
-1.18816
-1.19539
-1.22682
-1.1905
-1.19625
-1.21235
-1.22192
-1.20465
-1.21619
-1.11048
-1.106
-1.15304
-1.15629
-1.10665
-1.11406
-1.15178
-1.04913
-1.07626
-1.02911
-1.06
-1.05774
-1.07635
-1.04988
-1.04759
-1.06222
-1.05799
-1.05479
-1.04738
-1.05791
-1.026
-1.08258
-1.05475
-1.07613
-1.05578
-1.11247
-1.15236
-1.11013
-1.1509
-1.10857
-1.11108
-1.15248
-1.0712
-1.09002
-1.13931
-1.13939
-1.14633
-1.06987
-1.08351
-1.07826
-1.08149
-1.07429
-1.07594
-1.06676
-1.07496
-1.08156
-1.07944
-1.02853
-1.06549
-1.08446
-1.08068
-1.06379
-1.07872
-1.05767
-1.08868
-1.02602
-1.08357
-1.06421
-1.06138
-1.07744
-1.07793
-1.07552
-1.14021
-1.15225
-1.07974
-1.07877
-1.15231
-1.08325
-1.19982
-1.18448
-1.19858
-1.20137
-1.21844
-1.19106
-1.1797
-1.25768
-1.30502
-1.25476
-1.19059
-1.17926
-1.19235
-1.17161
-1.19116
-1.18904
-1.17348
-1.20169
-1.29504
-1.19056
-1.24701
-1.46391
-1.43334
-1.43694
-1.38218
-1.29421
-1.36866
-1.46288
-1.44302
-1.43592
-1.35645
-1.25168
-1.24318
-1.23826
-1.35645
-1.46192
-1.40932
-1.51033
-1.50009
-1.46396
-1.42096
-1.48438
-1.53307
-1.6282
-1.5668
-1.64853
-1.54875
-1.56662
-1.60984
-1.45956
-1.4719
-1.43071
-1.46829
-1.47151
-1.43462
-1.46968
-1.51804
-1.51213
-1.5889
-1.63124
-1.50459
-1.51343
-1.60152
-1.49975
-1.48663
-1.51196
-1.62349
-1.56823
-1.56001
-1.53594
-1.61539
-1.54753
-1.4757
-1.51302
-1.50637
-1.34139
-1.45595
-1.45022
-1.40771
-1.34578
-1.43337
-1.40766
-1.48592
-1.4924
-1.48728
-1.46153
-1.45285
-1.45639
-1.52047
-1.50787
-1.41909
-1.4432
-1.39098
-1.30103
-1.28344
-1.27793
-1.30196
-1.27182
-1.29815
-1.30891
-1.29145
-1.34781
-1.24772
-1.26148
-1.26653
-1.29559
-1.43477
-1.37686
-1.38524
-1.95349
-2.00164
-1.94829
-1.80723
-1.65632
-1.76304
-1.7478
-1.81933
-1.7593
-1.73944
-1.80971
-1.74524
-1.75439
-1.819
-1.89733
-1.84403
-1.88422
-2.05768
-1.81569
-2.01571
-1.95932
-1.81331
-1.76076
-1.83847
-1.74563
-1.89429
-1.93903
-1.8077
-1.8661
-1.89638
-1.80746
-1.99239
-1.95186
-1.92059
-1.94437
-1.94895
-1.88928
-1.89392
-1.84905
-1.83703
-1.88922
-1.89774
-1.84922
-1.88229
-1.91988
-1.97869
-1.89809
-2.06274
-1.89291
-1.8892
-2.08345
-1.95318
-2.10349
-2.08187
-1.9643
-1.92141
-1.93834
-1.85256
-1.86715
-1.92985
-1.85824
-1.91077
-1.94637
-1.90963
-2.11112
-1.90296
-1.93124
-1.92446
-1.91106
-1.91832
-1.88866
-1.89054
-1.95062
-1.88796
-1.94002
-1.91905
-1.96556
-2.00337
-1.9154
-2.07578
-1.92604
-1.95706
-2.07461
-1.90817
-1.92762
-1.87594
-1.87452
-1.87738
-1.92535
-1.91387
0.585575
0.635368
0.530416
0.553985
0.524903
0.587095
0.640746
0.799404
0.800337
0.603536
0.770968
0.748558
0.691119
0.744251
0.604465
0.68956
0.818497
0.808955
0.583027
0.516481
0.55258
0.638836
0.52099
0.580408
0.641701
0.445463
0.549851
0.446664
0.450407
0.545247
0.449729
0.834964
0.830817
0.606905
0.77538
0.754497
0.696332
0.754764
0.620274
0.691862
0.505972
0.58403
0.582893
0.501123
0.589773
0.825651
0.827758
0.509056
0.506237
0.624918
0.575461
0.584658
0.595776
2.03982
2.16121
2.2407
-2.77793
-2.39386
-2.76834
-2.27142
-2.48721
-2.26039
-2.5568
-2.78068
-2.39257
-2.62004
-2.68505
-2.40055
-1.09193
-1.68078
-1.85673
-2.39041
-1.50351
-1.77891
-3.26272
-1.50996
-2.0697
-3.49982
-3.08621
-2.15139
-2.29383
-3.00821
-2.14306
-2.94573
-3.12011
-3.24442
-2.7602
-2.33765
-3.09115
-2.94395
-2.27369
-2.27834
-3.2498
-2.2238
-2.83723
2.05785
2.09885
2.09482
-2.56651
-2.16326
-2.42671
-2.24726
-2.34088
-2.63821
-2.26069
-2.69462
-2.29613
-2.2392
-2.61421
-2.31922
-2.5906
-2.67262
-2.80387
-2.75615
-2.5656
-2.29349
-2.45235
-2.55001
1.22383
1.21169
1.20561
1.2086
1.20807
1.22307
1.2133
1.20004
1.20946
1.20387
1.05265
0.968694
1.07699
1.17352
1.16774
0.965263
1.05643
1.04954
1.15925
1.07408
0.957246
1.16478
1.04497
0.961921
1.62099
1.48327
1.50268
1.39798
1.49071
1.6103
1.51958
1.85323
1.92695
1.78261
2.03481
1.78636
1.84589
2.04856
1.79936
1.80356
1.79481
1.78975
1.62932
1.4048
1.50172
1.54098
1.49602
1.53152
1.63633
1.58822
1.37589
1.47726
1.48141
1.46161
1.47027
1.59992
1.76155
1.75335
1.829
1.91193
1.78075
2.01605
1.77824
1.83717
2.00681
1.57796
1.37023
1.42226
1.45974
1.56731
1.44179
1.46566
1.77039
1.77918
1.21867
1.20899
1.2292
1.21795
1.21295
1.23535
1.19327
1.2484
1.21335
1.22976
1.03472
0.941037
1.14252
1.05546
1.03111
1.1469
0.945168
1.03737
1.15393
1.05829
0.953197
1.1491
1.04147
0.948627
-1.8207
-1.67455
-1.76029
-1.79477
-1.84545
-1.69245
-1.77047
-1.73457
-1.7255
-1.81819
-1.98285
-1.8619
-1.94488
-2.07597
-1.87819
-1.96036
-2.09064
-1.69828
-1.98462
-2.09118
-1.90484
-1.95469
-1.98604
-1.8873
-2.09172
-1.97314
-1.95677
-1.96056
-1.96594
-2.0831
-1.96124
-2.09794
-1.9429
-1.98975
-1.93736
-1.97537
-1.97955
-1.94351
-1.98222
-1.95498
-1.95369
-1.92845
-1.89889
-1.92231
-1.95729
-1.90213
-1.92667
-1.95755
-1.99302
-2.03017
-1.99116
-2.09933
-1.96587
-2.08048
-2.00399
-1.93287
-1.95913
-1.92827
-1.93537
-1.91374
-1.95507
-1.9422
0.445261
0.550265
0.444256
0.441603
0.54853
0.442695
0.48747
0.568985
0.568189
0.484121
0.571427
0.871678
0.868506
0.689216
0.793674
0.790132
0.703644
0.796629
0.678413
0.706688
0.860031
0.864916
0.490042
0.570412
0.574318
0.491908
0.572987
0.841631
0.846091
0.497792
0.581751
0.579034
0.500108
0.579827
0.657733
0.785806
0.785648
0.703026
0.779293
0.668665
0.699973
0.85483
0.850015
0.495678
0.576937
0.576804
0.493862
0.578129
-3.17175
-3.03866
-2.35844
-2.13363
-2.09242
-2.2559
-2.3364
-2.19424
-2.24009
-2.51373
-2.09737
-2.2825
-2.28944
-2.22363
-2.23084
-2.53292
-2.87331
-2.39126
-2.3145
-2.79754
-2.42319
-2.50195
-2.20204
-2.34471
-2.43817
-2.26383
-2.43279
-2.3434
-2.65986
-2.82031
-2.81028
-2.57516
-3.52206
-3.92335
-3.45383
-3.7859
-3.49402
-1.39664
-0.857908
-1.54348
-3.54558
-2.76786
-2.11951
-2.40141
-2.99981
-2.04276
-3.0516
-2.76528
-3.03305
-1.3826
-1.08171
-2.92925
-1.43554
-2.36802
-2.63232
-1.81872
-2.38177
-2.20402
-1.92148
-2.71685
-4.47501
1.66111
0.562136
1.70719
2.07261
2.1408
2.1308
0.530446
1.82112
1.73731
1.60509
2.07632
2.14154
2.11541
1.40343
1.92336
-2.59547
-2.15827
-2.29627
-2.3193
-2.31249
-2.31294
-2.5921
-2.55388
-2.29294
-2.333
-2.61197
-2.33825
-2.64762
-2.48338
-2.45011
-2.41447
-2.3489
-2.37431
-2.35862
-2.44203
-2.38922
-1.99313
-1.9831
-2.00699
-1.95471
-1.81441
-1.72288
-1.7215
-1.86489
-1.72865
-1.83778
-1.81519
-1.79892
-1.85593
-1.67322
-1.70795
-1.80298
-1.70321
-1.84692
-1.94074
-2.01335
-1.87795
-2.0524
-1.93348
-1.90243
-1.90617
-1.93082
-1.93358
-1.90214
-1.85502
-1.84153
-1.8852
-1.79049
-1.86532
-1.86928
-1.83146
-1.95955
-2.12759
-1.96575
-2.13913
-1.9025
-1.92915
-1.92433
-1.90998
-1.97064
-2.20055
-1.96932
-2.17748
-1.91523
-1.93698
-1.92976
-1.91468
-1.98964
-2.22975
-1.97814
-2.23635
-1.92845
-1.92489
-1.93622
-1.92424
-1.98036
-2.24452
-1.98739
-2.23435
0.598277
0.581414
0.500205
0.583942
0.602886
0.726603
0.831979
0.874513
0.724598
0.877118
0.72246
0.727341
0.939905
0.940245
0.837047
0.961327
0.962988
0.833649
0.562165
0.507487
0.578701
0.552855
0.580119
0.409624
0.502837
0.405906
0.398559
0.497205
0.401356
0.91038
0.913746
0.769376
0.82191
0.853921
0.732588
0.848557
0.758697
0.733071
0.546934
0.573896
0.524216
0.538144
0.574926
0.926932
0.917849
0.5552
0.580107
0.51869
0.570833
0.575435
1.2044
1.11143
1.09496
1.2185
1.08383
1.09395
1.06647
0.975801
1.18864
1.10193
1.06352
1.19516
0.97828
1.07046
1.21784
1.11248
0.986563
1.2058
1.07783
0.981786
1.66795
1.52673
1.43508
1.5933
1.52055
1.68382
1.58773
1.87448
1.89008
1.77707
2.03547
1.7804
1.88348
2.03167
1.82344
1.82641
1.657
1.42869
1.51078
1.56134
1.51626
1.65054
1.57145
1.84324
1.85839
1.71075
1.4029
1.5349
1.64413
1.65215
1.54026
1.70183
1.89266
1.89744
1.90068
1.87232
1.77517
2.04517
1.77253
1.89334
2.05049
1.71819
1.41187
1.67117
1.55117
1.72421
1.66262
1.54505
1.88334
1.87445
1.25836
1.11683
1.33581
1.15517
1.3253
1.25179
1.18932
1.27845
1.16468
1.29736
1.09101
0.998216
1.2519
1.14409
1.0943
1.24688
0.995309
1.08815
1.23234
1.13861
0.989324
1.24117
1.08292
0.992758
-3.20561
-3.17444
0.121163
0.688375
0.100263
-1.0543
-1.05462
0.727105
0.0194518
1.56649
1.71999
2.1174
1.47368
2.10241
1.36985
1.76742
0.206233
-1.12641
0.111989
0.784234
-1.05956
0.754708
0.371415
-2.94237
-3.20531
-2.10654
-2.13834
-2.50952
-2.79718
-2.10951
-2.12795
-2.5189
-2.15732
-2.20161
-2.64152
-2.53665
-2.60298
-2.17043
-2.19583
-2.15103
-2.62274
-2.18555
-2.61434
-2.18356
-2.60474
-2.16336
-2.12677
-2.81217
-2.17441
-2.44444
-2.12871
-2.53704
-2.1855
-1.68987
-2.16942
-2.12778
-3.09635
-1.5464
-2.32762
-2.22421
-1.74724
-3.33789
-2.33719
-2.30015
-2.37273
-2.29019
-1.75624
-3.21795
-2.89027
1.90226
2.08118
1.48699
2.08369
1.6445
1.21902
-0.311871
-1.59079
1.14967
-1.68536
-1.16913
0.791443
-0.280435
1.1067
0.949849
-1.63098
-2.23998
-2.15198
-2.51377
-2.81048
-2.52485
-2.14814
-2.19032
-2.50575
-2.49886
-2.64596
-2.40803
-2.59151
-2.38613
-2.65982
-2.52873
-2.19722
-2.8133
-2.21863
-2.31318
-2.32298
-2.98414
-2.80895
-2.27684
-2.76709
-2.23284
-2.38959
0.412495
0.516597
0.416333
0.423729
0.521674
0.42038
0.481536
0.568148
0.562409
0.484593
0.565759
0.881157
0.883616
0.737461
0.802729
0.825123
0.718948
0.819707
0.744088
0.715783
0.891594
0.887993
0.483153
0.559631
0.566209
0.489286
0.565069
0.904528
0.901793
0.517305
0.572379
0.539946
0.526782
0.570725
0.752512
0.80963
0.827087
0.720115
0.83126
0.747672
0.723269
0.896008
0.898912
0.507791
0.544866
0.566908
0.498045
0.56911
-1.89446
-2.0442
-1.86671
-1.94687
-1.89038
-2.02828
-1.87904
-1.80827
-1.721
-1.75023
-1.87252
-1.71016
-1.81514
-1.8789
-1.81075
-1.89955
-1.69592
-1.7522
-1.80528
-1.7073
-1.89084
-1.88654
-1.94506
-2.01133
-1.86468
-1.89283
-2.01021
-1.8755
-1.86188
-1.87924
-1.92941
-1.92569
-1.8672
-1.87511
-1.92935
-1.90707
-2.03973
-2.26474
-1.99631
-2.01861
-2.00319
-1.91748
-1.90621
-1.99221
-2.03151
-2.24752
-2.01397
-1.92164
-1.99572
-1.86216
-1.92592
-1.86616
-1.92602
-1.86644
-1.93162
-1.86764
-1.9029
-1.88111
-1.92713
-1.92595
-1.92246
-1.90083
-1.87616
-1.94095
-2.19627
-1.94395
-2.22567
-1.91771
-2.18485
-1.96344
-1.91489
-1.94096
-1.91904
-1.92996
-1.9169
-1.9353
-1.91171
-1.95442
-1.98207
-2.19767
-2.03592
-2.11232
-1.96955
-1.9234
-2.54773
-2.68345
-2.69632
-2.5718
-2.18555
-2.09462
-2.20944
-1.95045
-2.1911
-2.18716
-2.06038
-2.85378
-2.45382
-2.82609
-2.48404
-2.32311
-2.02712
-2.04267
-2.16569
-2.06798
-2.182
-2.28182
-2.53746
-2.78486
-2.77315
-2.53994
-2.85813
-2.52788
-2.5074
-2.84739
1.6641
0.339767
1.5789
1.9879
1.95088
2.14067
1.99133
2.15244
0.306397
1.48613
1.54914
-2.01279
-3.38551
-2.802
-4.31175
-2.20363
-2.85277
-2.68501
-1.82418
-3.59645
-2.47762
-2.3751
-1.8005
-2.46348
-2.44116
1.95515
1.92264
2.13819
1.85891
2.12301
1.22992
-0.248843
-1.58832
1.28912
-1.54508
1.44047
-0.325545
1.30138
-1.98368
-2.38621
-2.68202
-2.57443
-2.4617
-2.65561
-2.56545
-2.57154
-2.65486
-2.72991
-2.61386
-2.59016
-2.86713
-2.32966
-3.29552
-2.40596
-2.38231
-2.44338
-0.0260021
-0.0318189
-0.0418226
0.00738779
-0.021106
-0.0463267
0.0019209
-0.0279214
-0.0255089
-0.0209489
-0.0538174
-0.0363327
-0.00479922
-0.0253556
-0.0307741
-0.0380344
-0.0523613
-0.0156642
-0.0376946
-0.0499952
-0.00562228
-0.0247206
0.00465955
-0.023645
-0.0545071
-0.0208447
0.000554565
-0.025316
-0.142209
-0.113682
-0.133537
-0.128259
-0.151774
-0.137308
-0.132843
-0.136224
-0.133721
-0.133014
-0.109404
-0.117597
-0.121377
-0.123619
-0.135996
-0.13967
-0.14391
-0.134656
-0.121084
-0.126191
-0.0135074
-0.0171655
-0.0377191
0.0118773
-0.0173512
-0.033287
0.0154772
-0.0115702
-0.0134874
0.018898
-0.0432444
-0.00774841
0.0152404
-0.0166938
-0.0105655
-0.0133813
-0.0252278
0.0224974
-0.00663766
-0.0297481
0.0189377
-0.0142103
0.00847836
-0.0213785
-0.0465232
-0.0176598
0.0118295
-0.0188031
-0.153826
-0.13491
-0.137469
-0.140334
-0.154783
-0.133608
-0.126855
-0.137715
-0.128512
-0.151958
-0.144086
-0.132423
-0.158026
-0.14015
-0.131444
-0.11514
-0.125401
-0.130783
-0.140525
-0.137664
0.0740098
0.0312846
0.155147
0.183657
0.181934
0.0307267
0.074524
-0.113958
-0.0069282
-0.00727728
-0.00828707
-0.108485
-0.00724336
0.0726062
0.15371
0.177566
0.0285221
0.179988
0.0706703
0.0297894
0.182999
0.207467
0.189851
0.203359
0.182245
0.208636
0.204123
0.269181
0.280508
0.268346
0.281183
0.191868
0.192649
0.190118
0.18959
0.18424
0.191359
0.211958
0.206882
0.210268
0.205338
0.185716
0.0764252
0.0327403
0.186222
0.159968
0.0331338
0.0759934
0.187826
-0.0885821
-0.00617641
-0.0076152
-0.00789266
-0.0945936
-0.00882437
0.0778598
0.161835
0.0357702
0.191801
0.03472
0.189996
0.0786778
0.0778594
0.167533
0.195248
0.0338794
0.195643
0.0334045
0.0781372
-0.0229704
-0.0811795
-0.0208804
0.0779684
0.168334
0.196878
0.0335987
0.196106
0.0780968
0.0336457
-0.0174737
-0.085101
-0.0198618
0.18845
0.217064
0.195811
0.210066
0.189198
0.215806
0.20948
0.274359
0.286627
0.275036
0.286026
0.19388
0.19339
0.195407
0.195884
0.187427
0.194814
0.212768
0.207579
0.186353
0.214292
0.208634
0.0775707
0.194125
0.0332714
0.165482
0.0337325
0.0772891
0.19369
-0.0992489
-0.0118585
-0.0145361
-0.0171514
-0.0956191
-0.0149056
0.0771424
0.164505
0.0341594
0.19219
0.07757
0.0333516
0.192825
0.390528
0.19558
0.274081
0.383508
0.390665
0.274684
0.381758
0.422842
0.407641
0.527136
0.490611
0.408985
0.491376
0.421868
0.424152
0.489337
0.407483
0.524077
0.422942
0.4108
0.491497
0.385107
0.190896
0.272205
0.370357
0.384504
0.27215
0.371545
0.420867
0.407217
0.527762
0.490261
0.406603
0.421499
0.489748
0.42019
0.488923
0.405274
0.527078
0.419776
0.405657
0.489274
0.365393
0.18037
0.344516
0.261315
0.364584
0.345433
0.261602
0.404647
0.391789
0.51542
0.47982
0.390836
0.478639
0.406135
0.403132
0.478079
0.389098
0.514133
0.402703
0.389107
0.478011
0.372952
0.183578
0.354993
0.266503
0.37401
0.353843
0.26609
0.40855
0.392801
0.517691
0.480283
0.393715
0.40723
0.481197
0.409848
0.481817
0.395394
0.518663
0.41053
0.395125
0.4817
-1.33531
-1.31477
-1.36359
-1.3736
-1.3234
-1.33038
-1.36864
-1.30897
-1.28529
-1.24637
-1.3047
-1.28885
-1.27476
-1.32275
-1.21973
-1.21854
-1.28692
-1.2656
-1.22619
-1.22566
-1.27505
-1.28862
-1.2239
-1.34373
-1.36752
-1.3445
-1.36847
-1.33385
-1.3679
-1.34848
-1.45096
-1.40573
-1.4049
-1.44843
-1.45376
-1.41164
-1.44242
-1.50023
-1.59107
-1.51515
-1.56395
-1.50492
-1.5108
-1.57922
-1.45555
-1.39976
-1.4553
-1.40851
-1.45216
-1.41191
-1.4612
-1.49948
-1.49326
-1.54858
-1.59685
-1.50273
-1.49582
-1.57876
-1.31029
-1.29685
-1.36493
-1.34726
-1.30424
-1.28685
-1.36742
-1.21596
-1.23536
-1.22067
-1.23612
-1.23076
-1.27798
-1.1915
-1.22031
-1.22156
-1.26454
-1.24142
-1.2418
-1.23
-1.23991
-1.22619
-1.21157
-1.23046
-1.22778
-1.2442
-1.30278
-1.33682
-1.2588
-1.33737
-1.2784
-1.35725
-1.25068
-1.4264
-1.3986
-1.4059
-1.44415
-1.39417
-1.42485
-1.44044
-1.48934
-1.48161
-1.65202
-1.47042
-1.4826
-1.41905
-1.39693
-1.39109
-1.41092
-1.38962
-1.42114
-1.41565
-1.49928
-1.46901
-1.63877
-1.61458
-1.46231
-1.49304
-1.19524
-1.20327
-1.11592
-1.15616
-1.15884
-1.19963
-1.18299
-1.19487
-1.22667
-1.18318
-1.23725
-1.18232
-1.20764
-1.27154
-1.20586
-1.18788
-1.18522
-1.21984
-1.19027
-1.18749
-1.20179
-1.19077
-1.18622
-1.20095
-1.20162
-1.11508
-1.16934
-1.19657
-1.16211
-1.19928
-1.21023
-1.18728
-1.19142
-1.24014
-1.26831
-1.18192
-1.18622
-1.26992
-1.04371
-0.973584
-0.980236
-0.985975
-0.979743
-0.991947
-1.10188
-1.14021
-1.1105
-1.1359
-1.09301
-1.13154
-1.07085
-1.13529
-1.06893
-1.0118
-1.11528
-1.12986
-1.02551
-0.990821
-0.985729
-0.981567
-0.999172
-0.978099
-0.994983
-0.998064
-1.07534
-1.14451
-1.13817
-1.08229
-1.1661
-1.18983
-1.11484
-1.1532
-1.1695
-1.18429
-1.1537
-1.17042
-1.16285
-1.1722
-1.16205
-1.22504
-1.27176
-1.21535
-1.26251
-1.2198
-1.21114
-1.27444
-1.16996
-1.16951
-1.1802
-1.16487
-1.16372
-1.11517
-1.16653
-1.16358
-1.16594
-1.17871
-1.15676
-1.23099
-1.20383
-1.27656
-1.26321
-1.22374
-1.20958
-1.28324
-1.24956
-1.23162
-1.19889
-1.16743
-1.22805
-1.24578
-1.15943
-1.22142
-1.18159
-1.21969
-1.17678
-1.26493
-1.25212
-1.25414
-1.26384
-1.2633
-1.16203
-1.1964
-1.24742
-1.23258
-1.16381
-1.26017
-1.23313
-1.15348
-1.17519
-1.22998
-1.02926
-1.00342
-1.0036
-1.02364
-1.00068
-1.02388
-1.03065
-1.04473
-1.04109
-1.05112
-1.06061
-1.03454
-1.05511
-1.05236
-1.04165
-1.05814
-1.03135
-1.04659
-1.03101
-1.04259
-1.05391
-1.01736
-1.00994
-1.11456
-1.02262
-1.00827
-1.10964
-1.02031
-1.00065
-1.00768
-1.02585
-1.00663
-1.00922
-1.03056
-1.02105
-1.05537
-1.03259
-1.01442
-1.10817
-1.02895
-1.26599
-1.25993
-1.24728
-1.27391
-1.23611
-1.16036
-1.16439
-1.22972
-1.25063
-1.16091
-1.25338
-1.20385
-1.2475
-1.2631
-1.16181
-1.23989
-1.16445
-1.23944
-1.16444
-1.3364
-1.35434
-1.34682
-1.33339
-1.3435
-1.33968
-1.34064
-1.32901
-1.28341
-1.31056
-1.28343
-1.32152
-1.30911
-1.31856
-1.34464
-1.36478
-1.34478
-1.35999
-1.34375
-1.34788
-1.35677
-1.3259
-1.32957
-1.2902
-1.32767
-1.31819
-1.32001
-1.3334
-1.42448
-1.50148
-1.50154
-1.56372
-1.62854
-1.57349
-1.45448
-1.50573
-1.51292
-1.57153
-1.61734
-1.56093
-1.31672
-1.33067
-1.33981
-1.31727
-1.32701
-1.31497
-1.3062
-1.33345
-1.31125
-1.29974
-1.30598
-1.32046
-1.31787
-1.32217
-1.29627
-1.39289
-1.31385
-1.29203
-1.31266
-1.34463
-1.33022
-1.32855
-1.31141
-1.33085
-1.33463
-1.33062
-1.36366
-1.33561
-1.47993
-1.34486
-1.47443
-1.55408
-1.67357
-1.55125
-1.38686
-1.36825
-1.3781
-1.41539
-1.40644
-1.36508
-1.41517
-1.57064
-1.66305
-1.56813
-1.33354
-1.23004
-1.29371
-1.28138
-1.31476
-1.23533
-1.30731
-1.2671
-1.2455
-1.25972
-1.2494
-1.29751
-1.3335
-1.32014
-1.30585
-1.29835
-1.27898
-1.27869
-1.31118
-1.33397
-1.29342
-1.23759
-1.34474
-1.24068
-1.32986
-1.33715
-1.48297
-1.3715
-1.39607
-1.43505
-1.45225
-1.39645
-1.48049
-1.53055
-1.59676
-1.53149
-1.59623
-1.5254
-1.52467
-1.59822
-1.47185
-1.37872
-1.46236
-1.41438
-1.45251
-1.47114
-1.40339
-1.54861
-1.51968
-1.60546
-1.63178
-1.53177
-1.5514
-1.62268
-1.26782
-1.29397
-1.2512
-1.28693
-1.28329
-1.2521
-1.29031
-1.26778
-1.25121
-1.26043
-1.26007
-1.26694
-1.27972
-1.2284
-1.19
-1.26278
-1.23074
-1.28062
-1.24506
-1.24214
-1.25216
-1.30862
-1.25428
-1.3462
-1.2548
-1.24894
-1.33375
-1.28151
-1.24024
-1.27066
-1.19155
-1.27516
-1.23735
-1.28954
-1.26862
-1.25908
-1.26571
-1.26804
-1.45012
-1.39324
-1.33693
-1.4241
-1.3407
-1.47334
-1.41329
-1.36218
-1.35821
-1.4187
-1.53557
-1.64969
-1.46967
-1.57714
-1.48579
-1.51484
-1.64737
-1.34648
-1.44713
-1.33347
-1.34632
-1.382
-1.34139
-1.40332
-1.3915
-1.54747
-1.51169
-1.64498
-1.5899
-1.55601
-1.50151
-1.64787
-0.954306
-1.14369
-1.18062
-1.18361
-1.14191
-1.18234
-1.14293
-1.14084
-1.11119
-1.08429
-1.11555
-1.11195
-1.10577
-1.13035
-1.11645
-1.15499
-1.14661
-1.19226
-1.19551
-1.19546
-1.15022
-1.15582
-0.989099
-1.01912
-0.992758
-0.946643
-0.999671
-0.949568
-0.987307
-1.0298
-1.03067
-1.11911
-1.09023
-1.02537
-1.09136
-1.02706
-1.04289
-1.10102
-1.06836
-1.13322
-1.06846
-1.04461
-1.09881
-1.05613
-1.07529
-1.12586
-1.10751
-1.07008
-1.105
-1.06191
-0.996794
-0.993839
-0.993261
-0.944332
-0.99206
-0.945826
-0.989249
-1.05276
-1.10247
-1.1308
-1.06812
-1.06397
-1.107
-1.04694
-1.15066
-1.1054
-1.12013
-1.10972
-1.14286
-1.13694
-1.11553
-1.16406
-1.21326
-1.20258
-1.14656
-1.20639
-1.14538
-1.1668
-1.16689
-1.14765
-1.19799
-1.20501
-1.20748
-1.15919
-1.15013
-1.11961
-1.16506
-1.14411
-1.13979
-1.12323
-1.12717
-1.12864
-1.17714
-1.21987
-1.22015
-1.17611
-1.12251
-1.11315
-1.13653
-1.12007
-1.11286
-1.12484
-1.12731
-1.02974
-0.994182
-0.981854
-1.0325
-0.983812
-1.03417
-1.0287
-1.06193
-1.05699
-1.06684
-1.07346
-1.06341
-1.05597
-1.08102
-1.0629
-1.09181
-1.06094
-1.07376
-1.05783
-1.06647
-1.08319
-1.06539
-1.07909
-1.11359
-1.11089
-1.07232
-1.06647
-1.10558
-1.01921
-0.952759
-0.981521
-1.03288
-0.968055
-1.01721
-1.02746
-1.06564
-1.10322
-1.11004
-1.07234
-1.06863
-1.10381
-1.07127
-1.22112
-1.22998
-1.2377
-1.20209
-1.20331
-1.1112
-1.11474
-1.20762
-1.11071
-1.19407
-1.11048
-1.10763
-1.17768
-1.10829
-1.30285
-1.32711
-1.30159
-1.32767
-1.2665
-1.20467
-1.20644
-1.26233
-1.32295
-1.30261
-1.23536
-1.3414
-1.32855
-1.23973
-1.33988
-1.30041
-1.32711
-1.32686
-1.29995
-1.43743
-1.41456
-1.3848
-1.30857
-1.38661
-1.43985
-1.40675
-1.49248
-1.59127
-1.5025
-1.44937
-1.44549
-1.57596
-1.51456
-1.50082
-1.64423
-1.49951
-1.66542
-1.43269
-1.3915
-1.3854
-1.4376
-1.42697
-1.38064
-1.43091
-1.38093
-1.48033
-1.43223
-1.5008
-1.5718
-1.44109
-1.46402
-1.57392
-1.4404
-1.30461
-1.3909
-1.40656
-1.38614
-1.40317
-1.45037
-1.39882
-1.32142
-1.40926
-1.3812
-1.40899
-1.37226
-1.42434
-1.42383
-1.35797
-1.40936
-1.36582
-1.51179
-1.6504
-1.45665
-1.54506
-1.51712
-1.44987
-1.64686
-1.52614
-1.52368
-1.38703
-1.34032
-1.36101
-1.37108
-1.38563
-1.37202
-1.3689
-1.42531
-1.37528
-1.37712
-1.42848
-1.45622
-1.43305
-1.53573
-1.63318
-1.4373
-1.45931
-1.62699
-1.22323
-1.11891
-1.19522
-1.13712
-1.25083
-1.2784
-1.33462
-1.33101
-1.25915
-1.28716
-1.32966
-1.29779
-1.32941
-1.93355
-2.01208
-2.00347
-2.07842
-2.39453
-2.10038
-1.91611
-1.95628
-1.96845
-2.14765
-2.42053
-2.12536
-1.70094
-1.79979
-1.83039
-1.74939
-1.81596
-1.74472
-1.70333
-1.98389
-1.89197
-1.95731
-1.76311
-1.69429
-1.92115
-1.94034
-1.76696
-1.96855
-1.68501
-1.92804
-1.75304
-1.90029
-1.925
-1.95402
-1.98948
-1.9058
-1.99213
-1.81659
-1.95557
-1.97378
-1.97242
-1.80259
-1.97369
-1.90671
-1.98628
-1.98732
-1.88575
-1.94889
-1.89054
-1.99386
-1.88659
-1.89617
-1.93709
-1.81439
-1.80665
-1.83373
-1.79613
-1.82495
-1.78608
-1.82866
-1.85138
-1.90843
-1.98693
-1.89961
-1.89192
-1.83829
-1.91856
-1.99932
-1.9154
-1.9904
-2.50975
-2.16662
-2.20768
-2.17431
-2.48652
-2.17772
-1.92908
-1.98143
-2.01014
0.628915
0.584455
0.477621
0.619431
0.584378
0.950711
0.954887
0.816076
0.837998
0.882737
0.755403
0.878732
0.821448
0.752624
0.969072
0.960897
0.638912
0.47202
0.587394
0.649156
0.586015
0.345597
0.432509
0.350082
0.357794
0.437507
0.354034
0.999454
0.992284
0.833086
0.845283
0.88699
0.75699
0.892126
0.826839
0.760315
0.680932
0.592032
0.449752
0.690713
0.591167
0.976952
0.985812
0.670187
0.588124
0.454566
0.659484
0.590009
-3.2149
-3.23563
-2.83471
-2.74655
-2.50752
-2.5283
-2.85559
-2.664
-3.18515
-2.77957
-2.7965
-1.98427
-3.22466
-2.40759
-2.52387
-0.0963904
0.675994
0.0514162
-1.05815
-1.05824
0.631615
-0.0128516
1.39084
1.61768
2.03358
1.13292
2.05856
1.20011
1.33526
-3.25403
-2.69235
-2.51475
-2.23337
-2.4078
-1.903
-2.37683
-2.0075
-2.30156
-2.19821
-2.24578
-2.19582
-2.52132
-2.60372
-2.18567
-2.40882
-2.24093
-2.26731
-2.55239
-2.13011
-2.43583
-2.134
-2.18142
-2.33463
-2.21886
-2.35258
-2.58754
-2.21995
-2.35992
-2.22716
-2.21731
-1.82405
-1.83522
-2.81408
-1.73375
-1.86487
1.45007
1.53742
2.00437
1.06271
1.93698
1.02784
1.46737
-1.95872
-2.72347
-1.78866
-1.84649
-2.00452
-3.93357
-3.13821
-3.95296
-2.02352
-1.80402
-2.31486
-2.05455
-2.1948
-2.1071
-1.73137
-2.01864
-2.0392
-2.19478
-2.05254
-2.08347
-2.07702
-1.96639
-2.10735
-2.3518
-2.41215
-2.17296
-2.26603
-2.16907
-2.16469
-1.95472
-2.03468
-2.07088
-1.63321
-2.09319
-1.69033
-1.88928
1.49889
1.34412
1.78745
1.76509
1.30962
1.48553
1.73328
1.25276
1.74706
1.28368
1.13523
1.05791
1.07657
1.16983
1.1721
1.05976
1.13507
1.13288
1.17421
1.0852
1.05759
1.1767
1.12968
1.05879
2.02812
2.03172
2.04571
2.01916
2.03467
2.04569
2.03231
2.05766
1.83035
1.63879
1.63323
1.87933
1.855
1.63061
1.84016
2.01905
2.13329
2.01715
2.11503
1.84772
1.61357
1.58981
1.90225
1.61031
1.82093
1.93413
1.82203
1.63141
1.82535
1.63362
1.81958
1.83668
1.63113
2.02356
2.0541
2.02558
2.09398
1.38687
1.83114
1.55567
1.41623
1.84451
1.56818
1.45814
1.86583
1.43705
1.85759
1.11383
1.0413
1.16964
1.09409
1.11274
1.16557
1.04338
1.1175
1.16294
1.08045
1.05933
1.15801
1.12418
1.04759
-1.88993
-1.8885
-1.88825
-2.07125
-2.31101
-2.04237
-1.90145
-1.95613
-1.92901
-2.32637
-2.05666
-1.7619
-1.88015
-1.79344
-1.87772
-1.766
-1.87271
-1.79116
-1.70781
-1.81581
-1.61786
-1.73163
-1.71256
-1.61423
-1.81466
-1.72027
-1.84051
-1.85066
-1.7656
-1.71052
-1.85979
-1.76813
-2.04415
-1.71924
-1.91215
-1.9009
-1.73169
-1.93593
-1.85516
-1.91019
-1.85069
-1.91103
-1.84279
-1.91739
-1.86306
-1.93327
-2.03288
-2.00195
-2.25498
-1.90809
-2.06999
-1.99436
-1.87273
-1.921
-1.85419
-1.92726
-1.86097
-1.85688
-1.92349
-1.91732
-1.99082
-2.25282
-2.06114
-2.05216
-1.99438
-1.92884
-2.03524
-1.91134
-1.99222
-1.78684
-1.94246
-1.91728
-1.91186
-1.76988
-1.90887
-1.90497
-1.98857
-1.97981
-1.84589
-1.82526
-1.87839
-1.83762
-1.84297
-1.83141
-1.82589
-1.92112
-1.98588
-1.91707
-2.05641
-1.92275
-2.00432
-1.92221
-1.84194
-1.84179
-1.85678
-1.81467
-1.85028
-1.8473
-1.81338
-1.94412
-1.98668
-2.19506
-2.02861
-2.06106
-2.00037
-1.90544
0.34363
0.419916
0.33973
0.338886
0.418652
0.33772
0.728706
0.610154
0.442815
0.734273
0.60601
0.962447
1.06196
1.06597
0.967286
0.821107
0.872109
0.956194
0.764493
0.964801
0.814729
0.767867
0.956413
1.05919
1.06506
0.9483
0.719384
0.438552
0.600151
0.708081
0.602436
1.01092
1.01978
0.712202
0.593994
0.435355
0.703877
0.593944
0.846671
0.858466
0.938805
0.763661
0.915007
0.811331
0.770971
1.05416
1.03231
0.945339
0.723753
0.435715
0.597856
0.69669
0.599057
-2.74223
-2.85129
-2.78875
-2.73753
-2.50896
-2.51901
-2.53405
-2.73478
-2.53608
-2.89115
-2.79215
-2.78714
-1.29101
-1.06774
-2.85463
-1.6677
-0.84854
-1.34823
-2.87097
0.495737
1.26438
0.728901
1.47939
0.69375
1.37187
0.587345
-0.324287
1.48421
1.59562
-0.327413
-0.265639
1.94295
0.0426615
-1.21152
-1.58404
-0.704961
-2.59857
-0.778462
-2.72737
-1.13889
-1.87946
-1.27985
-2.26285
-2.83176
-2.83275
-1.38637
-1.90622
1.18637
1.41228
0.795245
1.66315
0.860371
1.73522
1.04711
-1.90965
-2.31359
-2.95652
-1.6483
-1.97721
-2.8959
-1.43205
-1.883
-1.99108
-2.09374
-2.0437
-1.97359
-1.90427
-2.02321
-1.86423
-2.04612
-2.08319
-1.93324
-1.95292
-2.02544
-1.85598
-2.48886
-3.96206
-2.31585
-2.38067
-3.88444
-2.6559
-2.22665
-2.37674
-2.40498
-2.67319
-2.37404
-2.24577
-2.3638
-3.34038
-2.3861
-3.85738
-3.61178
-1.98415
-1.86456
-1.77992
-1.81525
-1.88202
-1.9434
-1.81815
-2.24088
-2.57753
-1.9109
-1.99972
-1.90899
-2.26777
-2.54948
-1.98304
-1.75972
-1.87996
-1.79962
-1.87293
-1.79984
-1.99847
-2.2339
-1.94603
-2.51004
-2.02178
-2.18893
-1.92954
-2.54605
-1.93715
-1.80974
-1.86544
-1.86045
-1.86476
-1.88231
-1.89074
-1.97326
-1.7341
-1.69863
-1.85661
-1.82123
-1.72639
-1.98989
-1.95524
-1.77637
-1.70319
-1.76757
-1.79353
-1.75675
-1.92722
-1.86549
-1.89575
-1.8678
-1.86165
-1.77425
-1.84598
-1.75315
-1.8493
-1.8659
-1.76311
-1.97523
-1.82751
-1.68403
-1.75094
-1.81289
-1.7517
-1.99012
-1.97061
-1.76585
-1.79204
-1.69411
-1.80649
-1.95009
-1.7637
-1.84316
-1.73301
-1.83824
-1.73778
-1.83604
-1.74363
-1.83777
-1.96095
-1.88837
-1.86953
-1.85774
-1.9205
-1.89098
-1.89982
-2.18548
-2.34831
-2.13589
-1.89467
-1.99433
-1.95718
-2.08544
-2.56699
-2.33723
-2.22779
-2.13792
0.859537
0.682839
0.592731
0.683493
0.871763
0.893525
0.912381
1.00927
0.8148
1.00781
0.891501
0.815578
0.911519
0.971747
0.978012
0.900372
0.921352
0.99779
0.988179
0.931635
0.84807
0.585185
0.67384
0.839462
0.677976
0.298397
0.402798
0.294231
0.285998
0.400014
0.289282
0.955748
1.02282
1.01737
0.966913
0.883591
0.907416
1.00908
0.814496
1.00319
0.889782
0.809606
0.810775
0.656334
0.551234
0.80137
0.660677
0.947038
1.00484
1.01043
0.939672
0.819307
0.670866
0.558981
0.830903
0.66455
1.62584
1.5563
1.92268
1.89734
1.57424
1.62679
1.90759
1.59516
1.89701
1.58511
1.13059
1.05925
1.17021
1.06696
1.13744
1.15979
1.05312
1.13259
1.17523
1.05631
1.05881
1.15394
1.14891
1.05164
2.04122
2.04473
2.03569
2.03705
2.03663
2.01508
2.02154
2.01816
1.94368
1.89137
2.18763
1.93981
2.17769
1.92831
1.95207
2.20214
2.01587
2.1595
1.99189
1.95749
1.60449
1.54617
1.9285
1.52668
1.90489
1.59726
1.48116
1.88887
1.50591
1.89923
1.15573
1.04279
1.24049
1.082
1.15157
1.21529
1.04909
1.15273
1.19875
1.08077
1.05517
1.2038
1.1547
1.04985
-2.56704
-1.89173
-1.83874
-1.39857
-1.9622
-1.8477
-2.53733
-3.00658
-2.92038
-2.49235
-2.38221
-1.97855
-1.98378
-1.95381
-2.38981
-2.48997
-2.85468
-2.88804
-2.48275
-1.95164
-1.9694
-2.35478
-1.93993
-2.48326
-2.36431
-2.60342
-1.45029
-2.22275
-1.95431
-2.03004
-1.87879
-2.70439
-2.16819
-1.72613
-1.82804
-1.20133
-2.36626
-1.49048
-1.73038
-3.91964
-2.50105
-2.61952
-3.35144
-2.24851
-2.12016
-2.03222
-1.93415
-1.96734
-2.22599
-2.24802
-3.81107
-2.55699
-3.74231
-2.65875
-2.21596
-1.99712
-2.23005
-2.01893
-2.29195
-1.96723
-2.2149
-2.11409
-1.15662
-1.34028
-1.56882
-1.44323
-1.68966
-1.95346
0.302613
0.406636
0.304682
0.310083
0.40788
0.308273
0.750838
0.616026
0.473261
0.745633
0.620209
0.981075
1.06237
0.977519
1.05544
0.847804
0.88088
0.980116
0.789683
0.97473
0.856051
0.783114
0.981603
1.04805
1.04851
0.987708
0.753927
0.481203
0.631846
0.760852
0.624203
0.986547
1.02307
0.974794
1.02981
0.77822
0.652124
0.521979
0.789823
0.646741
0.862006
0.889677
0.976865
0.790526
0.978539
0.857453
0.795406
0.991548
1.04114
1.03425
0.990876
0.770426
0.512692
0.635054
0.762492
0.641771
-1.99605
-1.74045
-1.87162
-1.79749
-1.86519
-1.78981
-2.01001
-2.29085
-2.56938
-1.91468
-2.00661
-2.26422
-2.60553
-1.91199
-2.00271
-1.74614
-1.86628
-1.79798
-1.98837
-1.87424
-1.79453
-2.29112
-1.92193
-2.00349
-2.63289
-2.60759
-1.90903
-2.31586
-1.79003
-1.7073
-1.80853
-1.70534
-1.70003
-1.79434
-1.8068
-1.91778
-1.76216
-1.61899
-1.67761
-1.68807
-1.81976
-1.87695
-1.93829
-1.70922
-1.6246
-1.81883
-1.69799
-1.82984
-1.95041
-1.7837
-1.70567
-1.69315
-1.79726
-1.69522
-1.8071
-1.77141
-1.81077
-1.71605
-1.71234
-1.82258
-1.81929
-1.71958
-1.81037
-1.98979
-1.8354
-1.66804
-1.74438
-1.84492
-1.98882
-1.73989
-1.97599
-1.72335
-1.6589
-1.84032
-1.83914
-1.73217
-1.97151
-1.82174
-1.71738
-1.82375
-1.72821
-1.82055
-1.82845
-1.72478
-1.99686
-1.85459
-1.81072
-1.74209
-1.99149
-1.85481
-1.80796
-2.30369
-2.38944
-2.04542
-1.97477
-2.52338
-1.95217
-2.24119
-2.29404
-1.94552
-2.56707
-2.04026
-2.54598
-2.28928
-1.94165
-2.0097
-1.7464
-1.84503
-1.83791
-1.85989
-1.81711
-1.98328
-2.91487
-1.98371
-2.48901
-1.6727
-2.47015
-2.88438
-2.00159
-2.60101
-2.44295
-1.98883
-1.98118
-2.45853
-2.58483
-1.98799
-2.6072
-2.0159
-2.49811
-2.01451
-2.48597
-2.5894
-2.00477
-2.90927
-1.65384
-2.38129
-1.9703
-2.88389
-2.44743
-1.98684
-1.06419
-0.659507
-1.36001
-2.09289
-0.647808
-0.892432
-2.37024
0.503099
1.10019
0.625273
1.17424
0.608638
1.19336
0.464622
-0.396106
1.48733
-0.346791
1.46772
-1.09259
-1.36332
-0.676196
-2.53947
-0.64092
-1.12108
-2.43364
-0.404127
-2.61332
1.39918
1.39446
-0.514225
-0.455878
1.4436
-2.29238
1.51577
-0.48254
-2.26414
-0.420615
-2.19483
1.61703
1.56776
-2.21793
-0.365942
-3.08264
-1.77881
-1.96982
-2.69447
-2.90283
-2.00251
-2.96051
-3.01153
-2.21102
-2.39293
-2.26359
-3.11684
-1.78852
-2.22986
-3.22493
-3.57442
-2.09756
-3.04336
-2.97495
-2.08521
-2.6354
-2.35753
-2.61187
-2.18977
-0.0954002
-0.143371
-0.133708
-0.0600983
-0.0942022
-0.134918
-0.0619393
-0.0967511
-0.145361
-0.137912
-0.0671092
-0.0987297
-0.136157
-0.0644218
-0.115428
-0.0953221
-0.0929973
-0.124667
-0.0864479
-0.120885
-0.121132
-0.125875
-0.211386
-0.118148
-0.197029
-0.116214
-0.123553
-0.210322
-0.116262
-0.0966737
-0.095843
-0.109964
-0.093221
-0.112936
-0.118911
-0.121597
-0.112963
-0.141863
-0.16056
-0.0962697
-0.178628
-0.131534
-0.206404
-0.142634
-0.144459
-0.206918
-0.232033
-0.177037
-0.207733
-0.227552
-0.137425
-0.193594
-0.237729
-0.191095
-0.0991424
-0.142556
-0.132233
-0.0594981
-0.0937267
-0.132562
-0.067005
-0.105352
-0.14532
-0.117373
-0.12629
-0.113238
-0.131869
-0.0866707
-0.126415
-0.104872
-0.0962828
-0.127583
-0.129482
-0.0985192
-0.124121
-0.137822
-0.163299
-0.124104
-0.152901
-0.140194
-0.16075
-0.121845
-0.128449
-0.107156
-0.133206
-0.103159
-0.130678
-0.131218
-0.100989
-0.135752
-0.11663
-0.150457
-0.157292
-0.158658
-0.119298
-0.133523
-0.206213
-0.145873
-0.147568
-0.203733
-0.243074
-0.201807
-0.208561
-0.152484
-0.150625
-0.196989
-0.242045
-0.198787
0.0736538
0.0409988
0.088961
0.097931
0.0978782
0.044408
0.062811
-0.0232198
-0.164298
-0.183535
-0.0206094
-0.170274
-0.0226228
-0.025903
-0.0193678
-0.0839797
-0.195932
-0.170873
-0.0490648
-0.0661424
0.0543164
0.0858613
0.0857951
0.0369177
0.0909383
0.0464312
0.0389215
0.196329
0.100455
0.124594
0.178512
0.194543
0.102005
0.180008
0.226769
0.166529
0.221959
0.225557
0.22285
0.210405
0.128156
0.126883
0.211721
0.208521
0.123704
0.207137
0.1249
0.197748
0.125876
0.105362
0.183166
0.103604
0.181323
0.199703
0.0663671
0.0406706
0.100187
0.0911754
0.0402493
0.0647674
0.102077
-0.0616921
-0.176237
-0.0957878
-0.0953416
-0.0576736
-0.0657391
-0.090728
-0.172268
-0.0950018
-0.0675341
0.068605
0.0925274
0.0423386
0.106071
0.0412144
0.104071
0.0708191
0.0857359
0.104094
0.116896
0.0507479
0.118413
0.0527337
0.0838518
-0.0297999
-0.0818776
-0.190801
-0.0268132
-0.0856267
0.0884714
0.106186
0.122983
0.0583926
0.120713
0.0909703
0.0554258
-0.0331419
-0.091501
-0.196886
-0.0892772
-0.0351405
0.204291
0.111511
0.131949
0.187827
0.205125
0.110429
0.187251
0.233539
0.173465
0.228646
0.234395
0.228352
0.214412
0.129799
0.213165
0.130923
0.216331
0.133848
0.217318
0.132899
0.202665
0.130349
0.106891
0.184426
0.201012
0.108507
0.185882
0.0782426
0.11381
0.0482621
0.099028
0.0469008
0.0803619
0.112216
-0.0489215
-0.191807
-0.0951911
-0.05311
-0.0951868
-0.0438541
-0.0937783
-0.195546
-0.0941861
-0.0397965
0.0753859
0.0971917
0.0437251
0.107981
0.0731463
0.0450621
0.109855
0.346398
0.168884
0.249624
0.325669
0.34732
0.249623
0.324568
0.385926
0.372485
0.503527
0.466926
0.373837
0.468235
0.384271
0.387247
0.468674
0.375483
0.504645
0.387686
0.375265
0.468954
0.341521
0.170018
0.283512
0.334231
0.345486
0.255114
0.316329
0.38342
0.372425
0.502948
0.467215
0.371655
0.383958
0.466843
0.383263
0.468435
0.375049
0.503119
0.385645
0.371612
0.466977
0.32314
0.223042
0.282086
0.289427
0.321866
0.284408
0.290388
0.367624
0.34271
0.483256
0.460462
0.339896
0.458133
0.369865
0.36608
0.45636
0.33435
0.480481
0.36491
0.33638
0.457103
0.330452
0.23094
0.299294
0.29602
0.330666
0.298257
0.295905
0.372571
0.3456
0.490364
0.4615
0.348146
0.371205
0.462586
0.374083
0.462826
0.352532
0.492709
0.374078
0.351511
0.463449
-1.21855
-1.19282
-1.20023
-1.19544
-1.2178
-1.20104
-1.19568
-1.23952
-1.21685
-1.25714
-1.25484
-1.26471
-1.23328
-1.22214
-1.24833
-1.2755
-1.23364
-1.26574
-1.24706
-1.27559
-1.23151
-1.39791
-1.42512
-1.33819
-1.35465
-1.34844
-1.41757
-1.40735
-1.50792
-1.81065
-1.57707
-1.56835
-1.78805
-1.38106
-1.32246
-1.33568
-1.43698
-1.34441
-1.37876
-1.41156
-1.22388
-1.20307
-1.20015
-1.2006
-1.22065
-1.19644
-1.20625
-1.26011
-1.24351
-1.29034
-1.3043
-1.3014
-1.24324
-1.26018
-1.26023
-1.28571
-1.23958
-1.28466
-1.25288
-1.30136
-1.24168
-1.45497
-1.30764
-1.31286
-1.29851
-1.47302
-1.5713
-1.80118
-1.57607
-1.79686
-1.3829
-1.30715
-1.31806
-1.43889
-1.29627
-1.37632
-1.42267
-1.15669
-1.19326
-1.20331
-1.11263
-1.21085
-1.12409
-1.14967
-1.17625
-1.17023
-1.18333
-1.16692
-1.19317
-1.16995
-1.17681
-1.16318
-1.12754
-1.20876
-1.21641
-1.21751
-1.12812
-1.16151
-1.00577
-1.03969
-1.04052
-0.958559
-1.04664
-0.954098
-1.01075
-1.02551
-1.02786
-1.12623
-1.0853
-1.03342
-1.02212
-1.08351
-1.02689
-1.06457
-1.059
-1.08425
-1.04459
-1.02841
-1.07195
-1.00732
-1.11227
-1.10494
-1.06473
-1.09988
-1.06133
-1.01044
-1.00632
-1.05898
-1.09988
-1.08077
-1.09238
-1.0601
-1.00578
-1.16713
-1.14292
-1.17559
-1.1626
-1.17126
-1.16638
-1.16428
-1.16329
-1.21409
-1.20881
-1.14228
-1.21405
-1.16356
-1.13933
-1.16375
-1.12951
-1.21364
-1.19585
-1.21244
-1.16073
-1.1349
-1.20397
-1.21229
-1.15073
-0.978129
-1.05064
-1.03948
-1.1039
-1.17533
-1.10176
-1.10093
-1.16612
-1.09868
-1.08474
-1.12324
-1.08645
-0.993302
-1.05836
-1.05087
-1.13271
-1.10666
-1.09219
-1.1967
-1.24908
-1.19081
-1.15057
-1.22604
-1.14963
-1.13849
-1.19223
-1.10865
-1.16477
-1.14374
-1.18769
-1.10571
-1.15848
-1.19901
-1.17705
-1.17627
-1.18188
-1.19065
-1.14957
-1.13402
-1.09641
-1.16685
-1.15046
-1.18444
-1.10406
-1.1184
-1.01114
-1.11079
-1.07096
-1.12689
-1.01403
-1.10719
-1.07245
-1.01485
-1.07842
-1.13391
-1.11175
-1.11247
-1.07519
-1.02107
-1.13321
-1.19064
-1.17323
-1.18187
-1.16252
-1.17432
-1.14351
-1.10052
-1.16886
-1.19871
-1.07353
-1.15785
-1.07294
-1.10473
-1.10146
-1.07714
-1.15435
-1.19095
-1.15327
-1.10976
-1.06982
-1.19907
-1.15594
-1.17361
-1.15655
-1.18478
-1.179
-1.18249
-1.22305
-1.21734
-1.24659
-1.24639
-1.23262
-1.20639
-1.25414
-1.20222
-1.31641
-1.15945
-1.22835
-1.19516
-1.1901
-1.25391
-1.53479
-1.5999
-1.42202
-1.52048
-1.42105
-1.52328
-1.61587
-1.44368
-1.38806
-1.43056
-1.39703
-1.5343
-1.67606
-1.55027
-1.66118
-1.45939
-1.41557
-1.40481
-1.4814
-1.53217
-1.40468
-1.51558
-1.6003
-1.41719
-1.51694
-1.60686
-1.1625
-1.14358
-1.16953
-1.15176
-1.17101
-1.15067
-1.1768
-1.25108
-1.33364
-1.2609
-1.32861
-1.19665
-1.32117
-1.14926
-1.14764
-1.19212
-1.31421
-1.49014
-1.31307
-1.46217
-1.38572
-1.58602
-1.70689
-1.57494
-1.72735
-1.49713
-1.411
-1.38694
-1.49651
-1.17614
-1.13659
-1.14178
-1.20972
-1.18867
-1.12931
-1.21291
-1.23611
-1.23964
-1.32221
-1.28803
-1.29973
-1.26065
-1.22556
-1.23673
-1.31144
-1.26656
-1.3277
-1.24868
-1.30221
-1.26848
-1.42185
-1.42622
-1.37519
-1.3575
-1.43276
-1.36589
-1.41789
-1.527
-1.85608
-1.55973
-1.66633
-1.53718
-1.56524
-1.69731
-1.43494
-1.38002
-1.37325
-1.44571
-1.37542
-1.4455
-1.4372
-1.21249
-1.19211
-1.15898
-1.21987
-1.20059
-1.16802
-1.22569
-1.25783
-1.24798
-1.31688
-1.30492
-1.26645
-1.3094
-1.24358
-1.26221
-1.3156
-1.25728
-1.31529
-1.25606
-1.3163
-1.25222
-1.43348
-1.47341
-1.39358
-1.3623
-1.37167
-1.47101
-1.42559
-1.52304
-1.77114
-1.56937
-1.63651
-1.53109
-1.58441
-1.62038
-1.43658
-1.37941
-1.39392
-1.4588
-1.37323
-1.4435
-1.46611
-1.20017
-1.25558
-1.19844
-1.14022
-1.17359
-1.16876
-1.25137
-1.20277
-1.19699
-0.931044
-0.932555
-1.01866
-0.928219
-1.0302
-1.10345
-1.18029
-1.10724
-1.09369
-1.18052
-1.10426
-1.08258
-1.1886
-1.08482
-0.964089
-0.942679
-0.940661
-0.973047
-0.93718
-0.961873
-0.968044
-1.18452
-1.07923
-1.08258
-1.10986
-1.15297
-1.15704
-1.19168
-1.24983
-1.20751
-1.19613
-1.24842
-1.20319
-1.08946
-1.18434
-1.18351
-1.13197
-1.19361
-1.08209
-1.13561
-1.08537
-1.1735
-1.18436
-1.12889
-1.175
-1.08107
-1.12864
-1.18725
-1.19215
-1.18521
-1.20327
-1.19789
-1.19014
-1.20559
-1.20311
-1.23841
-1.26791
-1.22537
-1.21151
-1.25032
-1.21844
-1.10936
-1.16998
-1.18694
-1.05813
-1.17082
-1.109
-1.05643
-1.12638
-1.15066
-1.11591
-1.16969
-1.1193
-1.16668
-1.12676
-1.10823
-1.06252
-1.18554
-1.18075
-1.17181
-1.05135
-1.11517
-1.11915
-1.13014
-1.11766
-1.15828
-1.12323
-1.15642
-1.12112
-1.10869
-1.17015
-1.07203
-1.19702
-1.10625
-1.17745
-1.07028
-1.11431
-1.06585
-1.17554
-1.19233
-1.17794
-1.11358
-1.07033
-1.09634
-1.20911
-1.2395
-1.27223
-1.28747
-1.21396
-1.23384
-1.25998
-1.16246
-1.18676
-1.16418
-1.19151
-1.16033
-1.16743
-1.17442
-1.19751
-1.24185
-1.26532
-1.18813
-1.18471
-1.24932
-1.19568
-1.48732
-1.88338
-1.65162
-1.58905
-1.6598
-1.49209
-1.58615
-1.36573
-1.44313
-1.31759
-1.27713
-1.45881
-1.28355
-1.36003
-1.37534
-1.2969
-1.47431
-1.33363
-1.47484
-1.384
-1.28785
-1.41188
-1.47407
-1.34916
-1.38283
-1.41537
-1.47964
-1.33849
-1.50022
-1.85403
-1.64824
-1.59191
-1.6357
-1.4976
-1.59233
-1.40405
-1.31203
-1.36823
-1.48035
-1.47661
-1.3255
-1.39607
-1.18416
-1.19269
-1.1639
-1.20417
-1.15833
-1.20688
-1.18034
-1.21
-1.23882
-1.214
-1.23062
-1.21944
-1.2196
-1.22112
-1.20487
-1.22511
-1.1911
-1.2163
-1.21159
-1.19553
-1.21876
-2.16744
-1.91948
-1.90681
-2.16448
-1.81499
-1.78855
-1.75759
-1.61615
-1.78737
-1.70832
-1.81575
-2.52188
-2.39012
-2.41191
-2.54411
-1.73779
-1.66498
-1.67493
-1.73156
-1.66341
-1.68664
-1.74391
-2.25021
-1.95006
-1.95521
-2.26796
-1.82572
-1.60291
-1.5723
-1.77643
-1.79215
-1.6389
-1.82382
-1.82225
-2.00989
-2.01032
-1.84172
-1.76355
-1.77679
-1.77528
-1.76401
-1.75273
-1.7897
-1.76681
-1.7652
-1.75093
-1.79427
-1.77289
-1.76903
-1.65326
-1.67017
-1.51906
-1.58284
-1.65406
-1.57581
-1.66449
-1.84838
-1.98643
-1.97429
-1.83523
-1.62701
-1.61942
-1.64089
-1.61846
-1.62378
-1.60324
-1.64151
-1.76919
-1.78319
-1.79775
-1.75797
-2.55755
-2.37902
-2.17377
-2.63121
-2.28645
-1.9638
-1.9571
-2.29072
-2.26278
-1.96834
-2.30489
-1.93827
0.910188
0.693563
0.599583
0.904634
0.694075
0.901596
0.883412
0.954198
0.901951
0.977225
0.830149
0.96929
0.957819
0.82581
0.869068
0.873793
0.91374
0.605795
0.703138
0.912484
0.697602
0.242065
0.475893
0.24534
0.246226
0.463297
0.24635
0.859852
0.863599
0.95441
0.91135
0.973388
0.829109
0.976602
0.953028
0.832606
0.896098
0.715277
0.64241
0.893314
0.712065
0.873786
0.867279
0.9019
0.704377
0.63496
0.904407
0.709381
-2.77042
-1.55773
-1.7433
-2.68541
-1.77888
-2.92237
-2.55348
-2.88789
-2.562
-2.80316
-1.76772
-1.51818
-1.79314
-2.76708
-1.77983
-1.50123
-1.88527
-1.69248
-1.81134
-1.44037
-1.85362
-3.05954
-2.56264
-2.86919
-2.93875
-3.17872
-2.40442
-3.37742
-2.2985
-1.97776
-2.11867
-1.80276
-2.0063
-2.139
-1.71795
-2.18232
-3.08444
-1.93818
-2.79799
-2.23319
-1.8754
-1.56284
-1.99802
-1.91654
-1.8282
-1.64698
-2.11267
1.7814
1.68158
2.24202
2.2479
1.67361
1.77979
2.25217
1.65942
2.254
1.66482
1.26706
1.04633
1.75867
1.75495
1.01658
1.28278
1.25757
1.75853
0.966742
1.76053
1.2448
0.994348
1.39855
0.787769
0.792726
1.58478
0.827154
1.65551
1.36469
1.43439
1.81485
0.924389
1.17504
0.87236
1.47234
1.74953
1.52168
1.03654
1.93902
1.40954
0.9997
1.54295
1.90529
1.50918
1.83906
1.37735
0.939418
0.974879
1.88245
1.48476
1.70329
2.24442
1.79623
1.72773
2.22637
0.417904
1.8065
1.80455
2.18064
1.76572
2.21444
1.2239
0.937877
1.70544
1.2197
1.7251
0.936407
1.22727
1.7485
0.946304
1.73443
1.23502
0.937178
-1.80495
-1.73725
-1.73407
-1.7816
-1.80035
-1.73188
-1.78356
-2.43487
-2.5336
-2.49841
-2.40462
-2.13335
-1.91204
-2.14341
-1.90818
-1.83797
-1.7879
-1.78229
-1.71235
-1.81515
-1.82398
-1.79494
-1.7619
-1.71958
-1.68692
-1.75096
-1.74873
-1.69813
-1.75836
-2.11455
-1.86522
-2.04799
-1.89947
-1.89584
-1.84774
-1.92936
-1.78517
-1.88214
-1.92344
-1.83341
-1.7703
-1.69152
-1.66223
-1.77168
-1.66748
-1.79796
-1.742
-1.83876
-1.76442
-1.66261
-1.60337
-1.66096
-1.85645
-1.75925
-1.96397
-1.85519
-1.88744
-1.89712
-1.76764
-1.70969
-1.68126
-1.79443
-1.6866
-1.76705
-1.79258
-1.81329
-1.6272
-1.58941
-1.69806
-1.64003
-1.7157
-1.75296
-1.78864
-1.79879
-1.81247
-1.77634
-1.90417
-1.74135
-1.81276
-1.80842
-1.87129
-1.8404
-1.7937
-2.70164
-2.47661
-2.18408
-2.35681
-1.94982
-2.04628
-2.23057
-2.32946
-1.9555
-1.96204
-1.75896
-1.8462
-1.81956
-1.98512
-1.84138
-1.82718
-2.01431
-1.84275
-1.97311
-1.8563
-2.17697
-1.91318
-2.14833
-1.98068
-2.30386
-2.11769
-1.91615
-1.69058
-1.64527
-1.67756
-1.70515
-1.69821
-1.64738
-1.69587
-1.77458
-1.79692
-1.77188
-1.80067
-1.68554
-1.67566
-1.52168
-1.59098
-1.6799
-1.67755
-1.59454
-1.88042
-1.86902
-1.88836
-1.87804
-1.7083
-1.60663
-1.52867
-1.69079
-1.69325
-1.60489
-1.7157
-1.66521
-1.66262
-1.65641
-1.63079
-1.6562
-1.66775
-1.63544
-1.77785
-1.79518
-1.80374
-1.77067
0.246163
0.466667
0.210233
0.210688
0.4639
0.209667
0.881493
0.760927
0.79664
0.617885
0.801512
0.878728
0.760621
0.873826
0.869055
0.948429
0.926281
0.98556
0.840574
0.985481
0.950359
0.840757
0.863834
0.868246
0.885789
0.812046
0.613324
0.75893
0.808271
0.887865
0.759751
0.86226
0.859312
0.903485
0.720146
0.606528
0.898288
0.827089
0.741435
0.952793
0.92203
0.985287
0.840587
0.983375
0.951821
0.838584
0.857317
0.857237
0.889977
0.814953
0.598526
0.758151
0.814045
0.889319
0.752109
-1.7805
-2.31992
-1.93672
-1.68659
-1.70153
-2.23901
-1.76257
-1.99816
-2.43678
-1.90992
-1.8014
-2.17667
-2.68198
-1.90578
-1.89775
-1.91164
-2.27271
-1.79677
-2.04147
-2.18425
-1.78168
-1.80733
-1.91037
-1.75495
-1.75562
-1.76156
-1.75718
-1.76255
-1.75944
-1.75296
-1.74382
-1.76464
-1.65085
-1.75731
-1.7611
-1.62288
-1.6395
-1.74803
-1.63543
-1.68561
-1.92531
-1.743
-1.81831
-1.70354
-1.75184
-1.79372
-1.69505
-1.77014
-1.76848
-1.78169
-1.70534
-1.75154
-1.76513
-2.40119
-2.01393
-2.002
-2.28264
-2.22337
-1.93401
-2.22163
-1.94023
-2.21537
-1.90879
-2.13294
-1.9395
0.795891
0.737057
0.634973
0.694618
0.698618
0.749231
0.792949
0.875801
0.942822
0.993112
0.834984
1.00054
0.881408
0.83653
1.08875
1.065
1.01115
1.03681
0.804056
0.713108
0.636473
0.753122
0.706725
0.811265
0.752805
0.345665
0.597861
0.358579
0.383334
0.593409
0.370783
0.9123
0.929334
0.894058
0.932397
0.986816
0.835251
0.980433
0.887447
0.833886
0.834322
0.755412
0.73724
0.640848
0.732123
0.840511
0.754881
0.978964
0.954588
0.82625
0.718673
0.754376
0.639852
0.818349
0.725282
0.754386
1.8455
2.03966
2.04239
2.02358
2.04784
-1.22174
1.67386
0.0162873
-1.47795
1.65627
1.84546
2.01216
2.05713
2.01318
2.05354
1.73903
0.118246
1.68815
1.30297
1.07337
1.76814
1.29586
1.76361
1.09751
1.31019
1.75828
1.14643
1.75717
1.32357
1.11824
1.34818
0.830581
1.59084
0.714659
0.801966
1.3702
1.56788
1.30495
1.46621
0.764566
0.726156
0.778155
1.27953
1.49788
1.21391
0.721578
1.34008
0.643013
0.707955
1.18732
1.36729
1.23631
1.44474
0.697192
0.754161
0.730836
1.40683
1.26267
1.83265
2.01385
2.0441
1.98912
2.06932
2.28736
0.0941549
1.89502
1.83108
1.87072
2.21112
1.94291
2.12757
1.75259
0.174517
1.79352
1.35711
1.23665
1.776
1.36841
1.76844
1.21706
1.34773
1.76281
1.17113
1.76544
1.33486
1.19762
0.331022
0.591284
0.316798
0.287668
0.583677
0.302787
0.872194
0.761753
0.793555
0.627593
0.786668
0.877126
0.759695
0.879754
0.881008
0.929181
0.928793
0.977444
0.83763
0.978591
0.925628
0.838461
0.88327
0.879235
0.866084
0.770925
0.630359
0.758927
0.777597
0.861984
0.759524
0.89999
0.896527
0.848141
0.755853
0.741805
0.639222
0.844322
0.748709
0.756516
0.91745
0.926402
0.975171
0.835719
0.973339
0.921012
0.83453
0.88981
0.893732
0.85329
0.763782
0.637087
0.757709
0.757051
0.857264
0.756953
-1.75692
-2.32709
-1.67344
-2.02003
-1.756
-2.35869
-1.67335
-1.7697
-2.37691
-2.36171
-1.75409
-1.76608
-2.38162
-1.76493
-1.75125
-1.66789
-2.01947
-2.38084
-2.35905
-1.66688
-1.75341
-1.59479
-1.9032
-1.63501
-1.76829
-1.62812
-1.77159
-1.60117
-1.57961
-1.73684
-1.79114
-1.58089
-1.73559
-1.57884
-1.5804
-1.58435
-1.59144
-1.73606
-1.79453
-1.74226
-1.59169
-1.58256
-1.60949
-1.74304
-1.60462
-1.78935
-1.61399
-1.75207
-1.60239
-1.61119
-1.9246
-1.64164
-1.78115
-1.64621
-1.77897
-1.60731
-1.60058
-1.59343
-1.78457
-1.74849
-1.74385
-1.59492
-1.59688
-1.74146
-2.26756
-2.30311
-1.74538
-1.70494
-2.30529
-1.76417
-1.7416
-2.41187
-2.0475
-1.66038
-2.40193
-1.65715
-1.74117
-1.74412
-1.66952
-2.36837
-2.04616
-2.39598
-1.75745
-1.65932
-0.228751
-0.307559
-0.31528
-0.389133
-0.233018
-0.26109
-0.321545
-0.232122
-0.161984
-0.270719
-0.188222
-0.26703
-0.1843
-0.235053
-0.236108
-0.240695
-0.23866
-0.252418
-0.246341
-0.234765
-0.240344
-0.230983
-0.158155
-0.259258
-0.181244
-0.262803
-0.229919
-0.182854
-0.237916
-0.263018
-0.25248
-0.241258
-0.255411
-0.240516
-0.240643
-0.222965
-0.253567
-0.25003
-0.289378
-0.289152
-0.236432
-0.279777
-0.270823
-0.216946
-0.245427
-0.244705
-0.28489
-0.23292
-0.262117
-0.282662
-0.266181
-0.238684
-0.17026
-0.272685
-0.190577
-0.192859
-0.271135
-0.237124
-0.251076
-0.260251
-0.315811
-0.257057
-0.264788
-0.251267
-0.2739
-0.240276
-0.171421
-0.198659
-0.233301
-0.237548
-0.195163
-0.266338
-0.246223
-0.266282
-0.253114
-0.243143
-0.246974
-0.265793
-0.243237
-0.236841
-0.258633
-0.263986
-0.252711
-0.304545
-0.235966
-0.299258
-0.254356
-0.242029
-0.273971
-0.269576
-0.289071
-0.234515
-0.258721
-0.294091
-0.256455
0.020039
0.00678078
0.0425767
0.0130075
0.0118084
0.00615919
0.0210254
0.0294115
0.0285701
-0.0117646
-0.0815894
-0.107979
-0.0403675
-0.0818991
-0.0127638
-0.0397906
-0.0108095
-0.0381021
-0.107302
-0.0815441
-0.0817023
-0.0389487
-0.0101143
0.0188262
0.0415444
0.0084202
0.00433085
0.0106092
0.0173008
0.00538411
0.0281763
0.0291857
0.157682
0.063574
0.173208
0.155068
0.174739
0.142338
0.106179
0.108213
0.141621
0.142832
0.110963
0.143869
0.109433
0.023303
0.00731924
0.0142102
0.0443751
0.00825683
0.0224034
0.0148156
-0.00719208
-0.0789787
-0.101102
-0.032889
-0.0794557
-0.0342552
-0.00671965
0.0256225
0.0271273
-0.00815179
-0.0370223
-0.103166
-0.0807258
-0.0802999
-0.0358347
-0.00892094
0.0282575
0.0276015
0.0239855
0.0450193
0.0100779
0.0141484
0.00935532
0.0148285
0.0240196
0.0198348
0.0503218
0.017077
0.0163146
0.0173943
0.0169456
0.0187934
0.0222706
0.0226579
-0.005147
-0.0820349
-0.0227417
-0.0975694
0.00871191
-0.0800804
-0.0259279
0.0212951
0.0507572
0.0193977
0.0190526
0.017788
0.0255189
0.0172256
0.0242381
0.0231636
-0.00774355
-0.025929
-0.092547
-0.0798028
-0.0796564
-0.0254731
-0.00898523
0.142377
0.113126
0.105793
0.142539
0.142418
0.111686
0.143608
0.176061
0.0904848
0.186412
0.178266
0.185039
0.141433
0.104277
0.141172
0.103849
0.140943
0.107651
0.144505
0.1076
0.019072
0.0172299
0.0163181
0.0486009
0.0148559
0.0187898
0.0162629
-0.0070312
-0.0793495
-0.0951203
-0.03126
-0.0788024
-0.00738964
-0.0294617
0.0226652
0.0223632
0.0259135
0.0266483
-0.00892725
-0.0262057
-0.0932235
-0.0792364
-0.0793764
-0.0274915
-0.00891671
0.0226846
0.0457144
0.0107034
0.0122675
0.0227117
0.0123611
0.0131272
0.302143
0.195307
0.274389
0.243493
0.302353
0.274174
0.240067
0.345266
0.287183
0.480172
0.447854
0.291615
0.447007
0.344742
0.345969
0.445347
0.297874
0.479448
0.345692
0.295389
0.446872
0.298509
0.18859
0.269185
0.227631
0.298688
0.269716
0.230954
0.348171
0.289257
0.492095
0.450051
0.291671
0.346222
0.454765
0.34918
0.458543
0.292741
0.493398
0.350573
0.293687
0.456336
0.289504
0.103541
0.124476
0.253244
0.28913
0.130806
0.254276
0.350582
0.275219
0.503921
0.453321
0.276011
0.452671
0.350333
0.350933
0.452081
0.278078
0.503376
0.351564
0.276948
0.452368
0.292383
0.134733
0.172557
0.260985
0.292485
0.165082
0.2603
0.349881
0.274934
0.503947
0.453882
0.275776
0.3502
0.454289
0.349498
0.454338
0.276751
0.503299
0.348723
0.276272
0.454526
-1.38427
-1.50607
-1.44996
-1.44487
-1.39864
-1.44598
-1.43569
-1.31099
-1.23085
-1.30131
-1.3653
-1.22422
-1.3258
-1.35862
-1.3378
-1.38585
-1.25736
-1.33353
-1.24715
-1.33784
-1.38956
-1.41108
-1.5602
-1.45984
-1.45121
-1.40411
-1.47459
-1.46209
-1.33402
-1.23202
-1.327
-1.37332
-1.23568
-1.33021
-1.38238
-1.05868
-1.05993
-1.15333
-1.08427
-1.004
-1.15432
-1.05809
-1.00084
-1.1564
-1.04973
-1.01044
-1.05744
-1.06302
-1.12785
-1.07607
-1.05574
-1.13998
-1.05872
-1.06204
-0.96456
-0.880631
-0.907073
-0.943369
-0.909148
-0.960963
-0.939984
-1.02461
-0.99166
-1.03214
-1.09498
-1.08993
-0.991248
-1.03385
-1.01817
-1.10717
-0.997665
-1.03648
-1.0152
-1.09641
-0.993037
-1.03802
-1.01139
-1.12548
-1.06029
-1.04357
-1.12343
-1.00799
-0.945435
-0.88412
-0.898996
-0.941188
-0.892499
-0.950821
-0.942605
-1.02477
-1.11046
-1.05246
-0.996692
-1.11623
-1.01348
-1.00229
-1.04633
-1.06756
-1.04856
-1.03097
-1.04687
-1.05383
-1.02906
-1.0648
-1.05648
-1.05432
-1.11066
-1.11577
-1.05189
-1.06962
-1.06852
-1.12738
-1.0619
-1.05868
-1.07457
-1.12133
-1.05562
-1.19367
-1.20068
-1.20379
-1.25481
-1.28205
-1.24755
-1.23874
-1.27578
-1.24335
-1.30824
-1.45351
-1.31139
-1.4313
-1.45957
-1.18469
-1.20201
-1.19799
-1.23165
-1.26716
-1.23689
-1.23836
-1.26119
-1.23256
-1.40945
-1.31716
-1.41278
-1.71596
-1.72946
-1.30533
-1.40563
-1.40111
-1.17049
-1.25761
-1.2199
-1.28526
-1.16266
-1.26334
-1.22991
-1.17259
-1.23697
-1.27423
-1.28951
-1.26643
-1.17622
-1.2358
-1.32884
-1.43761
-1.2657
-1.27899
-1.3432
-1.37408
-1.27194
-1.43798
-1.88879
-1.63454
-1.55441
-1.64387
-1.44026
-1.54926
-1.31958
-1.28358
-1.29792
-1.36432
-1.36526
-1.27574
-1.32389
-1.21221
-1.23972
-1.23188
-1.27659
-1.21463
-1.25362
-1.24111
-1.18521
-1.23898
-1.27072
-1.27786
-1.26128
-1.18225
-1.23717
-1.33714
-1.41055
-1.28509
-1.32567
-1.34832
-1.38575
-1.28716
-1.41928
-1.84682
-1.55674
-1.53322
-1.55599
-1.41885
-1.52974
-1.33529
-1.28615
-1.32317
-1.36313
-1.37433
-1.29047
-1.3236
-1.22662
-1.2733
-1.26813
-1.26119
-1.32145
-1.28943
-1.30711
-1.3322
-1.2978
-1.53961
-1.4131
-1.52517
-1.81367
-1.64312
-1.65592
-1.39237
-1.47421
-1.4887
-1.18406
-1.2708
-1.2672
-1.30675
-1.35619
-1.31386
-1.31484
-1.36081
-1.31972
-1.40324
-1.35733
-1.43356
-1.83764
-1.63062
-1.61957
-1.36805
-1.46189
-1.45005
-1.32639
-1.44636
-1.41791
-1.3888
-1.33004
-1.41927
-1.39275
-1.03505
-1.01427
-1.01721
-1.01237
-1.03054
-1.02689
-1.02001
-1.04306
-1.0519
-1.0358
-1.04267
-1.04139
-1.03947
-1.04892
-1.04251
-1.04729
-1.02063
-1.02662
-1.03978
-1.04448
-1.02728
-0.877061
-0.877638
-0.970979
-0.853085
-0.868226
-0.917202
-0.867162
-0.976999
-0.918339
-1.04962
-0.985836
-1.10302
-1.02908
-1.03722
-1.11469
-0.984427
-0.876726
-0.873792
-1.06056
-1.12688
-0.985054
-1.03
-1.07027
-1.12363
-0.985117
-1.09039
-0.971075
-1.08982
-1.01074
-1.08932
-1.10239
-0.978527
-0.897305
-0.885374
-0.990571
-0.847411
-0.86955
-0.91434
-0.873431
-0.982477
-0.915496
-0.874071
-0.876092
-1.08655
-1.12085
-1.01861
-0.981562
-1.11368
-1.07762
-0.982195
-1.05153
-1.05831
-1.04467
-1.04758
-1.04609
-1.05262
-1.05488
-1.05835
-1.0473
-1.09871
-1.04163
-1.06266
-1.08606
-1.04248
-1.05709
-1.05956
-1.03526
-1.03884
-1.05085
-1.07342
-1.04209
-1.14303
-1.10555
-1.27303
-1.18663
-1.26367
-1.15081
-1.11694
-1.09863
-1.07103
-1.0715
-1.10335
-1.07072
-1.10084
-1.09973
-1.15074
-1.23218
-1.18582
-1.13824
-1.25207
-1.14646
-1.13381
-1.57606
-1.76371
-1.74316
-1.6783
-1.44606
-1.27044
-1.34325
-1.35903
-1.46951
-1.63461
-1.41215
-1.56892
-1.28204
-1.40371
-1.54906
-1.59956
-1.3825
-1.60378
-1.65444
-1.76981
-1.78387
-1.41528
-1.37414
-1.56436
-1.59503
-1.11066
-1.07112
-1.07258
-1.09876
-1.07698
-1.10241
-1.10491
-1.15323
-1.15095
-1.19847
-1.21526
-1.21529
-1.15445
-1.16068
-1.15193
-1.22256
-1.13556
-1.19074
-1.14122
-1.23174
-1.14655
-1.09612
-1.06412
-1.07671
-1.05504
-1.07048
-1.06455
-1.09404
-1.15401
-1.10903
-1.28388
-1.12895
-1.15486
-1.17438
-1.20533
-1.28198
-1.13773
-1.55405
-1.43951
-1.57419
-1.76845
-1.72403
-1.72547
-1.44649
-1.59511
-1.58979
-1.10194
-1.05786
-1.10039
-1.06004
-1.11423
-1.06552
-1.10003
-1.30093
-1.35967
-1.27585
-1.23844
-1.3527
-1.24156
-1.60233
-1.42284
-1.59992
-1.72722
-1.7419
-1.75041
-1.42085
-1.58252
-1.5861
-1.61401
-1.8987
-1.69584
-1.64985
-1.63854
-1.68726
-1.65202
-1.50736
-1.44011
-1.4898
-1.19081
-1.24309
-1.46064
-1.541
-1.58025
-1.58634
-1.6219
-1.55324
-1.61635
-1.5407
-1.61068
-1.49707
-1.49228
-1.48268
-1.49351
-1.47667
-1.50067
-1.48534
-1.52778
-1.45446
-1.4724
-1.54182
-1.54185
-1.46401
-1.52512
-1.53547
-1.54979
-1.49497
-1.50796
-1.53674
-1.55041
-1.48772
-1.5643
-1.66543
-1.62597
-1.59407
-1.59228
-1.58191
-1.57168
-1.52223
-1.55172
-1.48924
-1.51253
-1.50209
-1.50789
-1.54771
-1.5609
-1.5603
-1.57614
-1.51348
-1.58248
-1.54453
-1.55128
-1.37557
-1.34683
-1.4673
-1.15478
-1.08837
-1.43254
-1.45967
-1.44224
-1.43168
-1.48524
-1.55761
-1.55775
-1.4523
-1.42988
-1.50271
-1.57062
-1.51781
-1.53148
-1.51846
-1.57126
-1.49547
-3.15712
0.741967
0.719252
0.676746
0.754782
0.715368
1.11936
1.13623
0.841073
0.955143
1.03457
0.833169
1.02961
0.835171
0.834216
1.16008
1.15217
0.731923
0.678119
0.712115
0.723714
0.713338
0.435605
0.601011
0.437536
0.441957
0.602763
0.440315
1.21512
1.20607
0.829566
0.956039
1.03849
0.830575
1.04274
0.833987
0.830099
0.710062
0.707398
0.676957
0.703629
0.708178
1.18462
1.19498
0.716944
0.709854
0.67805
0.723318
0.708801
1.88674
1.59842
2.03597
1.34551
1.39413
1.85378
2.04365
-0.106449
-2.54652
-1.27957
-1.4406
-0.0193218
1.87949
1.6163
1.52313
2.04177
1.91041
1.48132
2.03707
1.83509
2.04105
1.33266
1.56767
1.85351
2.03054
1.30906
0.00344384
-2.42342
-1.24727
-1.24627
0.0261663
1.82058
1.55704
1.99422
1.27155
2.0212
1.29063
1.80824
1.54472
1.40937
2.12861
1.53575
2.15765
1.41554
1.55133
2.19754
1.42741
2.17327
1.55807
1.42125
-1.76073
-1.74796
-1.85341
-1.52825
-1.47281
-1.90254
-1.78519
-1.78014
-2.06487
-1.69107
-1.90923
-1.73161
-2.12007
-1.70614
-1.79131
-1.70497
-2.18772
-1.96506
-2.20707
-1.80196
-1.70594
-1.58855
-1.7287
-1.58011
-1.76851
-1.57415
-1.71035
-1.60761
-1.56881
-1.82735
-1.59649
-1.71046
-1.5881
-1.72704
-1.58637
-1.57123
-1.62724
-1.77336
-1.69038
-1.70877
-1.59148
-1.59651
-1.78411
-1.80681
-1.86666
-1.59735
-1.60361
-1.98516
-1.83923
-1.80571
-2.4038
-1.66535
-2.01842
-1.74671
-2.33313
-1.70659
-1.79493
-1.73422
-2.18991
-2.0204
-2.32207
-1.84453
-1.69183
-1.58271
-1.69038
-1.60865
-1.73176
-1.57233
-1.67234
-1.61546
-1.56714
-1.75336
-1.57248
-1.70021
-1.56822
-1.70094
-1.56526
-1.58373
-1.60524
-1.76
-1.68786
-1.69589
-1.61253
-1.57707
-2.62125
-2.13388
-2.38617
-2.64971
-2.37203
-2.34118
-2.17853
-2.3542
-2.35778
-1.70159
-1.70411
-1.70328
-1.77883
-1.95862
-1.77831
-1.76743
-1.94955
-1.77192
0.436034
0.599586
0.434928
0.432061
0.598528
0.433284
0.681218
0.709734
0.676354
0.674751
0.707784
1.35786
1.32811
0.806748
0.966242
1.06842
0.827934
1.07531
0.808021
0.830363
1.28516
1.30098
0.68292
0.675644
0.705197
0.686866
0.706193
-1.7388
-1.85726
-1.73712
-1.71854
-1.70496
-1.71051
-1.90739
-1.76122
-1.7581
-2.69905
-2.38383
-2.40215
-2.26586
-2.20984
-2.29691
-2.33902
-2.21215
-2.31074
1.23188
1.24247
0.696699
0.706253
0.676059
0.701775
0.705952
0.810978
0.961303
1.0634
0.828452
1.05932
0.807723
0.82823
1.26529
1.25449
0.692004
0.675547
0.705676
0.686923
0.70571
-1.45034
-1.43192
-1.42058
-1.40387
-1.43389
-1.43008
-1.41869
-1.49508
-1.4464
-1.52799
-1.45125
-1.51357
-1.50236
-1.43395
-1.48058
-1.4477
-1.41487
-1.44623
-1.4541
-1.48423
-1.4204
-1.36222
-1.43047
-1.53884
-1.4681
-1.40759
-1.50111
-1.41567
-1.33692
-1.4311
-1.42587
-1.4785
-1.29472
-1.47666
-1.42837
-2.00469
-2.33436
-1.96317
-2.98339
-1.3308
-2.12905
-1.60686
-2.24434
-2.86158
-1.77114
-2.19882
-1.72487
-1.80965
0.754609
0.776049
0.664119
0.67028
0.669194
0.772255
0.768445
1.0518
1.02148
1.1999
0.890682
1.21663
1.0289
0.898228
1.51161
1.49598
1.46431
1.47865
0.745857
0.660812
0.657253
0.762514
0.663567
0.745299
0.766124
0.446708
0.586083
0.450738
0.458657
0.590142
0.454346
-1.58527
-1.6499
-1.62833
-1.755
-1.91771
-1.7512
-1.80337
-1.95036
-1.76507
-1.82075
-2.11616
-1.82663
-1.62659
-1.65069
-1.6564
-2.05783
-1.8027
-1.80338
1.41748
1.42519
0.984022
1.01132
1.18646
0.888469
1.17456
1.00351
0.884735
0.746419
0.759352
0.647977
0.641993
0.648278
0.748484
0.759957
1.44128
1.43264
0.743247
0.649675
0.762144
0.646199
0.739764
0.649247
0.761269
-2.5099
-1.08234
-2.07115
-1.57392
-1.96218
-2.89403
-1.46501
-2.4792
-1.59362
-1.94822
-1.63518
-2.45994
-2.56814
-1.74887
-2.00216
-1.73623
1.3368
1.38291
1.7981
1.1764
1.12225
1.42813
1.69052
-0.27753
-1.42217
-1.88216
-0.531039
-0.435717
-0.335033
-1.89204
1.45435
1.9851
1.4161
2.00658
1.30475
1.35323
1.07019
1.62554
1.27033
1.09624
1.6544
1.49073
2.09536
1.57554
2.0281
1.62875
1.50442
1.84197
1.17938
1.47891
1.89782
1.21309
-0.314844
-1.72848
-1.94103
-0.64009
-0.793722
-0.314537
-1.53433
2.27082
2.16391
1.65926
1.52408
1.97451
1.26821
1.75298
1.91921
1.22982
2.14229
1.89303
2.15869
-2.01671
-2.37887
-2.06147
-2.11601
-2.30921
-2.26046
-2.41337
-2.21653
-2.19261
-1.67313
-1.66854
-1.68071
-1.7776
-1.97874
-1.77039
-1.76999
-1.99441
-1.77285
0.440039
0.575747
0.436602
0.429286
0.575332
0.434672
0.675521
0.713472
0.67648
0.680704
0.709875
1.41832
1.34112
0.837787
0.981447
1.10925
0.853078
1.09833
0.8533
0.846745
1.35619
1.34877
0.681181
0.674988
0.714904
0.67948
0.712354
-1.82494
-2.1047
-1.81571
-1.66918
-1.69179
-1.68903
-2.11549
-1.81308
-1.82229
-2.39329
-2.36499
-2.37414
-2.24328
-2.23514
-2.221
-2.20602
-2.2595
-2.20466
1.4035
1.39653
0.741826
0.757677
0.643302
0.636162
0.743842
0.644281
0.755684
0.894091
0.99403
1.12052
0.860693
1.12504
0.887766
0.862346
1.38151
1.38655
0.736781
0.645101
0.634237
0.735079
0.641888
0.736593
0.749968
-0.27849
-0.280596
-0.279803
-0.289551
-0.298585
-0.289004
-0.277047
-0.279394
-0.280427
-0.286019
-0.296432
-0.287039
-0.26091
-0.280824
-0.253185
-0.260578
-0.255255
-0.262309
-0.278364
-0.261574
-0.26688
-0.271008
-0.280852
-0.261649
-0.279248
-0.264932
-0.566595
-0.311589
-0.351639
-0.353363
-0.569647
-0.36118
-0.179315
-0.292012
-0.184186
-0.364042
-0.262342
-0.197034
-0.568759
-0.309898
-0.387824
-0.602144
-0.35732
-0.364889
-0.258037
-0.18491
-0.205599
-0.258434
-0.367157
-0.202536
-0.270014
-0.285847
-0.280632
-0.282739
-0.272146
-0.28413
-0.27697
-0.268709
-0.270076
-0.279922
-0.281626
-0.283323
-0.273859
-0.266605
-0.597399
-0.303598
-0.353896
-0.356401
-0.58091
-0.358869
-0.208789
-0.26273
-0.190537
-0.355281
-0.261799
-0.208287
-0.61562
-0.301309
-0.362162
-0.633237
-0.359682
-0.362039
-0.259229
-0.18907
-0.20686
-0.260293
-0.365508
-0.207456
-0.0426838
-0.0329697
0.0297073
0.0388467
0.0415449
-0.0291871
-0.0681919
0.0132472
0.0664651
0.0700672
0.0122677
-0.143432
-0.162401
-0.139714
-0.093361
-0.159758
-0.143573
-0.0913321
-0.0877949
-0.141088
-0.0823083
-0.13855
-0.137678
-0.157335
-0.0897623
-0.0981784
-0.0232159
0.0285325
0.0343597
-0.0255837
0.0357121
-0.0191296
-0.0258651
0.0190728
0.0706921
0.083533
-0.0186366
0.143713
0.0512414
0.0400534
0.21199
0.144552
0.0394055
0.213254
0.134428
0.11318
0.112704
0.13447
0.134221
0.111412
0.134241
0.111893
-0.0725845
-0.0333797
0.0385969
0.0297792
-0.0339163
-0.0709745
0.0382471
-0.0823931
-0.124099
-0.132669
-0.0776395
-0.125689
-0.0787711
-0.0811423
-0.0252742
0.0705198
0.0700319
-0.02486
-0.0845751
-0.0807684
-0.134642
-0.131264
-0.129022
-0.0802215
-0.0867819
-0.0261009
0.0691663
-0.0248997
0.069163
-0.0721077
0.0304381
-0.0323726
0.0397113
-0.0332081
0.0389278
-0.0713296
-0.0643537
0.0368244
0.0446692
-0.0275344
0.0459328
-0.026224
-0.0658904
-0.0178414
0.0782907
0.077051
-0.0164819
-0.070525
-0.106391
-0.0659213
-0.121766
-0.0670721
-0.112561
-0.0684222
-0.0627523
0.0380234
0.0493326
-0.022836
0.0471902
-0.0602961
-0.0249415
-0.0196706
0.0745294
0.0756227
-0.0209755
-0.0730334
-0.0716074
-0.123339
-0.118579
-0.116128
-0.0699878
-0.0750291
0.139862
0.0708883
0.0365046
0.219193
0.139284
0.0339451
0.218358
0.134611
0.1135
0.134518
0.114168
0.135213
0.116306
0.135572
0.115421
-0.0686206
0.0434539
-0.0285107
0.0338423
-0.0295671
-0.0676928
0.0423773
-0.0790046
-0.123045
-0.12893
-0.0763827
-0.122123
-0.0800935
-0.0752546
-0.0238415
0.0708897
-0.0245336
0.0715935
-0.0223355
0.0738251
-0.0213559
0.0729737
-0.0776585
-0.0728594
-0.127695
-0.119871
-0.120891
-0.074135
-0.0764878
-0.0695958
0.0331779
-0.0313279
0.0402812
-0.0704087
-0.0303556
0.0412758
0.275735
0.0596527
0.249795
0.0785988
0.278608
0.243181
0.0725476
0.335706
0.257307
0.496543
0.432066
0.260304
0.433812
0.333885
0.337079
0.436705
0.266722
0.498292
0.339387
0.263074
0.435062
0.27079
0.0403746
0.240957
0.0536445
0.270776
0.240317
0.056838
0.331515
0.25507
0.491959
0.430954
0.252833
0.332735
0.429704
0.330807
0.428552
0.249311
0.490738
0.330549
0.250869
0.428957
0.275493
-0.0462045
0.164006
0.209673
0.276174
0.152268
0.213219
0.342115
0.2783
0.502162
0.442392
0.283925
0.444492
0.340957
0.343012
0.44918
0.296323
0.506096
0.344874
0.289809
0.446463
0.274258
0.0279458
0.0876641
0.232865
0.27256
0.0958523
0.231011
0.338686
0.273073
0.490467
0.440654
0.267764
0.340221
0.438426
0.337718
0.433344
0.257219
0.488287
0.334613
0.2636
0.436592
-0.83652
-0.899087
-0.892808
-0.845845
-0.913268
-0.916604
-0.892722
-0.891644
-0.928673
-0.915322
-0.876199
-0.926585
-0.898962
-0.896639
-0.945603
-0.909075
-0.94016
-0.897411
-0.906601
-0.991927
-0.838867
-0.901464
-0.8469
-0.893622
-0.895671
-0.931387
-0.912869
-0.906404
-0.926483
-0.906983
-0.901743
-0.910869
-0.971514
-0.911782
-0.998701
-1.00422
-0.999193
-1.003
-0.962296
-0.954442
-0.960922
-0.959001
-0.961002
-0.840694
-0.878368
-0.938167
-0.944577
-0.845721
-0.953208
-0.963334
-0.968478
-0.963602
-0.964875
-0.961211
-0.950824
-0.854669
-0.883325
-0.967676
-0.946795
-0.847214
-0.997548
-0.996688
-0.999873
-0.995936
-1.00029
-1.00638
-1.00682
-1.00003
-0.952574
-0.91116
-0.962014
-0.914426
-0.956578
-0.955696
-0.900697
-0.975597
-0.99935
-0.980528
-0.988893
-0.999486
-1.00934
-1.00043
-1.00773
-0.970553
-0.973733
-0.981834
-0.96729
-0.970487
-0.958567
-0.904406
-0.858126
-0.956606
-0.973212
-0.869418
-0.832645
-0.894846
-0.834921
-0.894239
-0.910975
-0.921666
-0.914132
-0.929997
-0.906222
-0.916798
-0.922646
-0.906843
-0.899352
-0.893184
-0.912161
-0.918708
-0.903906
-0.899871
-0.893672
-0.933285
-0.941862
-0.881547
-0.903868
-0.922824
-0.907628
-0.898431
-0.902964
-0.919902
-0.90599
-0.893956
-0.959191
-0.897205
-0.950172
-0.835896
-0.891741
-0.8945
-0.831231
-1.13072
-1.04738
-1.08936
-1.09065
-1.09162
-1.12754
-1.08485
-1.18109
-1.12372
-1.16765
-1.2601
-1.25401
-1.12534
-1.18519
-1.18044
-1.24725
-1.13335
-1.16974
-1.17827
-1.25196
-1.12842
-1.50789
-1.42055
-1.32484
-1.26747
-1.51311
-1.32793
-1.35741
-1.69293
-1.36508
-1.37166
-1.48322
-1.68562
-1.39771
-1.49482
-1.52756
-1.35799
-1.25293
-1.31713
-1.34604
-1.54359
-1.33149
-1.12567
-1.06909
-1.08681
-1.09476
-1.08636
-1.12628
-1.10174
-1.16826
-1.1596
-1.22146
-1.19676
-1.16391
-1.22794
-1.15031
-1.17628
-1.24465
-1.13813
-1.18745
-1.17765
-1.24025
-1.1463
-1.56569
-1.29647
-1.23444
-1.39244
-1.38203
-1.30027
-1.57556
-1.66122
-1.29894
-1.35932
-1.47729
-1.67063
-1.34478
-1.47516
-1.56038
-1.36547
-1.23574
-1.31093
-1.37559
-1.55023
-1.30338
-1.13176
-0.997337
-1.04098
-1.04295
-1.05126
-1.06403
-1.12648
-1.18933
-1.1188
-1.16014
-1.26215
-1.11465
-1.18543
-1.26803
-1.18794
-1.27352
-1.10058
-1.15446
-1.10677
-1.18994
-1.26758
-1.63514
-1.2601
-1.20565
-1.45819
-1.26309
-1.44558
-1.65112
-1.57154
-1.22948
-1.27939
-1.43476
-1.27446
-1.57844
-1.43278
-1.62939
-1.42933
-1.21291
-1.27084
-1.26963
-1.44147
-1.61426
-1.10374
-0.968776
-1.02917
-1.03774
-1.01711
-1.02697
-1.11708
-1.17116
-1.05666
-1.12788
-1.27751
-1.06569
-1.27438
-1.16733
-1.02026
-1.01306
-1.18416
-1.27248
-1.08999
-1.13848
-1.07938
-1.18548
-1.27802
-1.59639
-1.28967
-1.22722
-1.39977
-1.28677
-1.5838
-1.41117
-1.60425
-1.24951
-1.29085
-1.44807
-1.29647
-1.597
-1.44843
-1.59931
-1.42636
-1.22181
-1.27811
-1.27964
-1.41509
-1.61139
-0.831088
-0.877435
-0.878408
-0.827303
-0.882153
-0.848225
-0.893843
-0.819171
-0.87342
-0.905243
-0.847518
-0.904671
-0.917514
-0.889481
-0.934269
-0.903099
-0.88522
-0.938976
-0.846277
-0.901693
-0.843036
-0.900837
-0.82418
-0.870208
-0.821204
-0.872555
-0.889394
-0.909378
-0.822983
-0.857022
-0.912909
-0.887631
-0.853583
-0.856182
-0.907415
-0.856041
-0.909364
-0.985094
-0.966202
-0.98609
-0.96947
-0.954878
-0.950979
-0.948042
-0.956175
-0.94615
-0.837039
-0.9328
-0.863636
-0.947795
-0.931366
-0.840123
-0.955307
-0.942516
-0.944984
-0.956892
-0.99048
-0.99114
-0.992437
-0.985166
-0.974899
-0.954719
-0.949094
-0.977411
-0.950117
-0.920855
-0.949905
-0.926966
-0.973992
-0.941062
-0.973924
-0.944701
-0.950879
-0.93501
-0.931948
-0.951131
-0.828343
-0.882462
-0.828689
-0.883615
-0.907778
-0.931024
-0.898083
-0.934466
-0.907504
-0.906961
-0.931204
-0.896671
-0.892637
-0.907349
-0.870136
-0.895098
-0.908559
-0.886393
-0.87432
-0.931551
-0.875943
-0.927111
-0.833323
-0.889859
-0.830391
-0.889889
-0.892017
-0.918193
-0.865739
-0.843872
-0.89277
-0.914879
-0.875053
-0.865492
-0.911985
-0.862143
-0.913988
-1.10553
-1.25558
-1.31848
-1.08621
-1.04055
-1.00564
-1.16289
-1.05372
-1.15764
-1.03848
-1.00704
-1.00004
-0.947487
-0.944761
-1.01066
-1.00244
-0.92646
-0.960967
-0.963814
-0.95655
-1.01493
-0.968551
-1.00241
-0.943513
-0.944163
-1.00317
-1.10721
-1.34643
-1.34461
-1.12322
-1.05108
-1.15286
-1.05351
-1.01202
-1.15001
-1.07172
-1.00889
-1.46839
-1.49434
-1.43323
-1.39698
-1.44047
-1.37954
-1.31431
-1.20348
-1.37256
-1.21347
-1.31443
-1.29676
-1.20832
-1.36621
-1.17427
-1.13983
-1.1863
-1.25349
-1.18468
-1.24282
-1.48205
-1.57328
-1.42915
-1.32452
-1.19502
-1.13684
-1.44776
-1.31584
-1.19012
-1.74596
-1.48118
-1.48038
-1.61507
-1.60704
-1.6266
-1.24368
-1.43606
-1.15789
-1.44699
-1.62967
-1.2344
-1.34605
-1.21296
-1.3382
-1.21408
-1.31533
-1.33406
-1.22386
-1.5913
-1.36607
-1.15252
-1.20905
-1.42912
-1.53693
-1.22692
-1.08201
-1.19348
-1.06078
-1.22297
-1.00006
-0.880797
-0.959132
-0.950108
-0.956085
-0.998778
-0.950183
-1.00431
-0.948073
-0.940931
-1.01235
-1.04718
-1.01201
-1.07433
-1.09657
-1.13058
-1.01048
-1.02224
-1.00591
-0.934249
-0.942698
-0.992434
-1.06391
-1.14411
-1.00509
-1.06873
-1.05606
-1.1581
-1.01027
-1.08385
-1.2432
-1.22286
-1.09694
-1.13891
-0.993658
-0.949366
-0.961456
-0.963047
-0.966027
-0.973021
-0.992332
-1.05467
-1.00182
-1.08083
-1.22842
-1.00517
-1.04803
-1.23506
-1.01631
-0.952618
-0.949288
-1.02523
-1.06553
-1.24779
-1.01775
-1.08783
-1.01182
-1.11418
-1.23797
-1.03243
-0.960405
-0.961962
-1.03496
-1.13093
-1.15208
-1.66291
-1.25733
-1.46148
-1.19774
-1.65402
-1.25808
-1.46846
-1.49195
-1.209
-1.3697
-1.25113
-1.38843
-1.24752
-1.46445
-1.66438
-1.47403
-1.19611
-1.26227
-1.25918
-1.47168
-1.65872
-0.999086
-0.952079
-0.9645
-0.958622
-0.971707
-0.95151
-0.997006
-1.13521
-1.04663
-1.27264
-1.10917
-1.15117
-1.03873
-1.2706
-1.12761
-1.02156
-1.00075
-1.13546
-1.26677
-1.02324
-1.10337
-1.03052
-1.13163
-1.26923
-1.09639
-0.966822
-0.975635
-1.05859
-1.62626
-1.24896
-1.18331
-1.45388
-1.25523
-1.63573
-1.45313
-1.42578
-1.22277
-1.35274
-1.24407
-1.35965
-1.24619
-1.43221
-1.63421
-1.45702
-1.18896
-1.25588
-1.25839
-1.45993
-1.63002
-2.35969
-0.915212
-1.62562
-1.24762
-1.57304
-2.39158
-1.21876
-2.13731
-1.21281
-1.3032
-1.97899
-1.94761
-1.27293
-2.18378
-0.738122
-2.1875
-1.99112
-1.3099
-1.31318
-2.18676
-1.9866
-1.2918
0.83555
0.782471
0.698473
0.665689
0.698337
0.811771
0.787606
1.57185
1.58604
1.16069
1.04271
1.30111
0.941893
1.29102
1.1578
0.932582
1.62301
1.60266
0.865396
0.695238
0.665849
0.806332
0.696365
0.903402
0.793926
-1.76643
-1.6198
-2.17797
-1.45934
-1.85342
-2.04455
-1.41848
-1.62813
-1.38049
-1.52037
-1.3278
-1.54129
-1.60645
-1.38136
-1.81097
-2.06066
-1.42175
-1.36135
-2.05918
-1.81259
-1.40161
0.585111
0.661084
0.575107
0.554294
0.652676
0.565415
-2.46734
-1.01911
-1.6745
-1.26926
-1.76254
-2.42999
-1.31215
-2.23365
-1.50329
-2.28138
-1.42838
-2.23739
-2.08297
-1.38352
-2.21646
-2.0212
-1.3251
-1.38328
-2.20579
-2.0438
-1.35825
-1.82337
-1.31277
-1.35112
-2.10193
-2.0664
-1.3309
-1.84708
-1.6055
-1.29975
-1.5114
-1.31404
-1.51117
-1.59922
-1.29892
-1.82778
-2.05302
-1.35653
-1.34955
-2.07304
-1.81087
-1.33695
1.56223
1.77876
1.74037
1.59087
1.08899
1.04254
1.32703
0.949114
1.32935
1.11781
0.944481
0.876445
0.839252
0.604231
0.696398
0.618094
0.890801
0.835857
1.51526
1.64453
1.68416
1.52502
0.855475
0.63268
0.824052
0.691791
0.865682
0.621163
0.829267
-2.20704
-1.17803
-1.2357
-1.97402
-1.16332
-2.18735
-1.98737
-2.05366
-0.55825
-0.913177
-0.928266
-0.945717
-0.962197
-1.97741
-0.413603
-0.418487
-2.17373
-1.95493
-1.22013
-1.12477
-1.14171
-1.96187
-2.14839
-0.442186
-0.419204
-1.63294
-1.22486
-1.48707
-1.22868
-1.49063
-1.23044
-1.61923
-1.89976
-1.26604
-2.05186
-1.27217
-1.92008
-1.26951
-2.06063
-1.90868
-2.1261
-1.26751
-1.27547
-1.27103
-1.89316
-2.10822
0.436939
0.434331
0.605216
0.667959
0.591753
0.598933
0.672334
0.597349
1.02254
0.868962
0.665202
0.699946
0.636937
1.0396
0.865878
1.70095
1.9036
1.7296
1.93221
1.16062
1.05407
1.3795
0.970097
1.38123
1.15501
0.97464
1.68897
1.90547
1.91923
1.68017
1.00967
0.587732
0.70012
0.85889
0.609918
0.994564
0.864171
-1.88086
-1.29721
-1.30462
-2.12172
-1.29009
-1.85758
-2.15509
-1.61202
-1.24342
-1.49704
-1.23731
-1.49363
-1.24025
-1.62217
-1.88083
-2.15688
-1.29228
-1.27567
-1.27774
-2.15407
-1.89557
-1.77368
-0.494137
-0.889379
-0.894132
-0.876895
-0.832504
-1.88098
-1.92417
-1.05894
-1.85496
-1.19778
-1.83549
-1.08979
-1.86319
-1.87518
-0.47489
-1.67824
-0.577709
-2.06947
-1.93182
-1.1076
-1.20054
-1.10362
-2.1001
-1.92091
-0.462411
-0.476534
1.64235
1.81688
1.62454
1.8431
0.931505
0.845148
0.598507
0.695269
0.912872
0.586439
0.847534
1.13613
1.04765
1.37532
0.966676
1.369
1.1462
0.962443
1.65641
1.88555
1.86644
1.66655
0.953598
0.577729
0.696101
0.855069
0.581408
0.97519
0.851194
-0.435806
-0.320198
-0.33574
-0.527271
-0.421894
-0.335651
-0.538722
-0.28801
-0.295721
-0.289985
-0.451214
-0.324113
-0.337554
-0.563697
-0.465686
-0.336608
-0.5515
-0.297663
-0.29743
-0.292917
-0.564754
-0.361689
-0.662396
-0.356809
-0.654845
-0.357856
-0.557015
-0.363207
-0.248892
-0.302471
-0.232799
-0.362544
-0.303874
-0.250783
-0.567755
-0.3565
-0.634643
-0.354226
-0.644113
-0.571875
-0.356235
-0.366248
-0.303086
-0.234329
-0.259771
-0.305086
-0.363832
-0.256767
-0.546889
-0.371928
-0.67145
-0.355321
-0.354978
-0.680898
-0.553313
-0.366716
-0.290546
-0.300333
-0.232815
-0.36693
-0.298982
-0.289293
-0.543929
-0.376255
-0.358071
-0.702574
-0.540353
-0.356309
-0.692313
-0.366203
-0.299564
-0.23185
-0.282596
-0.298229
-0.369163
-0.287754
0.0664621
0.11862
0.123509
0.0684844
-0.124717
-0.267568
-0.18879
-0.114642
-0.267522
-0.124275
-0.11362
-0.0302094
-0.148106
-0.147757
-0.0315932
-0.125694
-0.111318
-0.18742
-0.267611
-0.267934
-0.112289
-0.125775
0.0636825
0.124437
0.124018
0.060794
0.0740198
-0.0683525
0.0973254
-0.246517
0.0661431
0.0985546
-0.236854
0.073395
-0.188919
0.153258
-0.205628
0.145599
0.0812678
0.0651953
0.12258
-0.233107
0.0557608
-0.218427
0.13522
-0.126703
-0.266193
-0.183072
-0.106995
-0.267301
-0.108483
-0.125299
-0.0348662
-0.148924
-0.149018
-0.0334404
0.0509157
0.120764
0.122457
0.0476827
-0.126353
-0.110671
-0.184176
-0.267551
-0.267242
-0.109605
-0.126361
0.0542096
0.124015
0.0575508
0.123649
0.0355627
0.094446
0.100274
0.0314192
-0.173507
-0.190522
-0.118294
-0.173564
-0.172
-0.192324
-0.118539
-0.0760351
-0.0654798
0.0367467
0.108567
0.103022
0.0425902
-0.174332
-0.11657
-0.174112
-0.208063
-0.197759
-0.118197
-0.170204
0.108003
-0.143838
0.11001
-0.169862
0.113734
0.108544
-0.181891
0.0908366
-0.169945
0.15407
-0.147173
0.086509
0.151556
0.0943325
0.145121
-0.103931
0.0976026
-0.125468
0.148616
-0.12336
-0.265368
-0.180585
-0.106842
-0.263539
-0.124708
-0.106827
-0.0405564
-0.149424
-0.157092
-0.0377194
0.0440855
0.11823
0.0453714
0.115451
0.0449543
0.112964
0.0554294
0.113651
-0.12636
-0.111188
-0.180687
-0.253906
-0.262708
-0.108624
-0.146631
0.245265
-0.00950005
0.154973
0.248431
0.242735
0.15802
0.251599
0.279535
0.00259983
0.192973
0.209595
0.282751
0.19252
0.203484
-0.823758
-0.769136
-0.818661
-0.791502
-0.841331
-0.897352
-0.838621
-0.898495
-0.84031
-0.849999
-0.847304
-0.827731
-0.836137
-0.897536
-0.817228
-0.89991
-0.794791
-0.882148
-0.789394
-0.820322
-0.879086
-0.801204
-0.786434
-0.783673
-0.765654
-0.807796
-0.854965
-0.85159
-0.767388
-0.782841
-0.782204
-0.841162
-0.803018
-0.770046
-0.842612
-0.766669
-0.786731
-0.796408
-0.825838
-0.893282
-0.785575
-0.888534
-0.78713
-0.795529
-0.80684
-0.749059
-0.874033
-0.781238
-0.79079
-0.860087
-0.801912
-0.797842
-0.780694
-0.798986
-0.794907
-0.79731
-0.779475
-0.831219
-0.811055
-0.722004
-0.841074
-0.821056
-0.819842
-0.797589
-0.851553
-0.793479
-0.835508
-0.793627
-0.77161
-0.774288
-0.832436
-0.789348
-0.732487
-0.759378
-0.681535
-0.767765
-0.740412
-0.766515
-0.695255
-0.719589
-0.817588
-0.678
-0.688909
-0.833593
-0.708938
-0.78064
-0.887736
-0.790396
-0.867628
-0.722735
-0.783413
-0.771329
-0.738057
-0.768832
-0.732903
-0.740085
-1.1527
-1.32405
-1.14976
-1.32924
-1.08388
-0.975957
-0.980107
-1.07407
-0.947643
-0.903929
-1.01565
-1.02314
-1.02689
-0.91832
-0.947706
-1.08343
-0.976873
-0.979983
-1.07835
-0.954406
-1.0436
-0.932511
-1.0272
-0.962778
-1.03644
-0.923122
-1.15598
-1.33825
-1.33372
-1.15538
-1.55308
-1.53616
-1.52961
-1.537
-1.36446
-1.39049
-1.38793
-1.37233
-1.17956
-1.16183
-1.17669
-1.12603
-1.20805
-1.15426
-1.15389
-1.11558
-1.16904
-1.07626
-1.15592
-1.08917
-1.10184
-1.16526
-1.35523
-1.3805
-1.38463
-1.34556
-1.56913
-1.51261
-1.58815
-1.52084
-1.15891
-1.1297
-1.11669
-1.13588
-1.1392
-1.14469
-1.14521
-1.13908
-1.31675
-1.14548
-1.30749
-1.02944
-0.957482
-0.956318
-1.02617
-0.990199
-1.00538
-1.09077
-1.066
-1.01291
-1.0703
-0.989259
-1.06383
-0.975153
-0.973055
-1.07455
-1.1256
-1.28231
-1.1207
-1.29387
-0.981772
-1.05041
-0.9376
-1.05356
-0.969744
-1.05836
-0.954255
-1.49902
-1.54032
-1.54189
-1.51914
-1.10069
-1.10025
-1.07985
-1.09221
-1.09935
-1.1099
-1.08886
-1.07543
-1.14036
-1.06553
-1.15049
-1.05076
-1.08991
-1.13979
-1.30694
-1.35355
-1.35932
-1.29613
-1.32206
-1.37435
-1.3688
-1.33419
-1.11781
-1.12107
-1.09107
-1.13046
-1.11175
-1.13192
-1.12005
-1.47443
-1.52934
-1.53914
-1.44702
-1.18161
-1.39961
-1.1849
-1.3964
-1.04779
-0.963723
-0.960995
-1.05578
-1.04973
-0.966929
-0.964282
-1.05183
-1.18089
-1.38813
-1.18194
-1.39605
-1.29434
-1.51434
-1.51617
-1.31438
-1.27442
-1.41644
-1.42063
-1.2676
-1.26327
-1.39647
-1.41024
-1.26929
-0.893678
-0.965469
-0.997752
-1.07241
-1.00666
-0.952964
-0.909611
-1.34042
-1.61542
-1.58487
-1.33825
-1.18696
-1.40313
-1.18777
-1.40469
-1.05232
-0.93177
-0.949904
-1.04828
-1.05668
-0.966892
-0.964383
-1.05482
-1.18003
-1.42189
-1.41025
-1.18086
-1.39063
-1.52823
-1.53951
-1.35189
-1.04228
-1.08357
-1.0158
-1.07638
-1.08395
-1.0641
-1.06178
-0.922634
-1.0701
-0.867592
-1.0774
-0.89089
-1.11251
-0.894994
-1.2707
-1.35184
-1.3336
-1.28986
-1.25243
-1.32307
-1.32627
-1.23115
-0.993668
-1.0075
-1.01602
-1.08968
-1.07916
-1.03455
-0.956509
-1.40985
-1.5386
-1.43099
-1.53879
-0.772424
-0.791713
-0.784073
-0.748202
-0.783095
-0.773181
-0.752141
-0.767699
-0.772595
-0.718933
-0.713555
-0.778808
-0.7141
-0.757837
-0.779218
-0.797038
-0.788707
-0.764224
-0.784466
-0.786629
-0.76195
-0.754053
-0.695367
-0.741782
-0.697469
-0.754287
-0.699092
-0.740438
-0.797669
-0.901216
-0.828173
-0.789209
-0.905662
-0.797781
-0.787991
-0.781881
-0.765717
-0.80732
-0.85868
-0.859906
-0.76274
-0.784301
-0.782684
-0.860139
-0.807364
-0.761312
-0.862204
-0.76268
-0.782272
-0.796059
-0.824647
-0.899059
-0.789105
-0.90195
-0.798535
-0.785758
-0.793407
-0.827012
-0.900879
-0.787024
-0.785733
-0.897407
-0.795322
-0.778337
-0.756147
-0.856933
-0.804154
-0.778109
-0.756866
-0.859598
-0.793808
-0.829098
-0.788139
-0.888244
-0.79365
-0.787409
-0.89437
-0.778441
-0.861332
-0.804351
-0.759112
-0.757403
-0.860226
-0.780069
-0.766413
-0.784933
-0.785547
-0.74302
-0.774901
-0.781794
-0.740776
-0.726438
-0.752294
-0.703743
-0.746024
-0.707364
-0.699291
-0.741722
-0.75643
-0.778062
-0.779462
-0.739387
-0.752848
-0.776504
-0.731034
-0.741269
-0.698244
-0.728078
-0.723612
-0.75265
-0.705863
-0.737087
-1.11488
-1.32496
-1.42169
-1.42278
-1.42364
-1.11795
-0.908547
-0.801236
-0.851716
-1.11021
-0.815653
-1.1113
-0.921356
-0.902892
-0.980923
-0.82475
-0.846455
-0.840345
-1.02888
-0.917241
-1.16763
-1.44817
-1.43289
-1.18496
-1.16313
-1.36211
-1.151
-1.32132
-1.00918
-0.882204
-1.44272
-1.22365
-1.24728
-0.905951
-0.919595
-1.10559
-1.48965
-1.20618
-1.40132
-1.00553
-1.10597
-1.17677
-1.39264
-1.24098
-1.41522
-1.28293
-1.1229
-1.23924
-1.42361
-1.46316
-1.2067
-1.1995
-1.35826
-1.35382
-1.20671
-1.1916
-1.28948
-1.3396
-1.15977
-1.24665
-1.5155
-1.48608
-1.25898
-1.10743
-1.28051
-1.39536
-1.12231
-1.27964
-1.3523
-0.948187
-0.862548
-0.820212
-0.946797
-0.873982
-0.950412
-0.930761
-0.944541
-0.979069
-0.860281
-0.82532
-0.867426
-0.936132
-0.987039
-1.08357
-1.5953
-1.16365
-1.23283
-1.18292
-1.27219
-1.05113
-1.19486
-1.47326
-1.20315
-1.4643
-0.995241
-0.8035
-0.926384
-1.10554
-0.808998
-0.935487
-0.998472
-0.815833
-0.920696
-0.80457
-1.01
-1.19805
-1.4482
-1.17969
-1.46799
-1.30173
-1.61013
-1.62408
-1.29094
-1.24917
-1.40716
-1.4071
-1.25413
-1.2326
-1.38115
-1.38638
-1.22285
-1.31417
-1.62785
-1.32231
-1.63102
-1.20178
-1.46678
-1.19696
-1.46347
-1.0388
-0.903715
-1.0444
-0.897483
-1.1956
-1.43704
-1.18795
-1.45212
-1.02874
-0.820256
-0.886298
-1.00228
-1.2726
-1.60016
-1.57309
-1.28875
-1.22309
-1.35618
-1.38599
-1.20525
-1.20971
-1.38765
-1.37514
-1.22345
-1.2816
-1.52621
-1.26013
-1.5636
-0.673929
-0.475321
-0.425795
-0.804416
-0.665196
-0.430608
-0.811078
-0.5494
-0.49157
-0.396688
-0.377598
-0.55649
-0.484955
-0.392653
-0.682852
-0.479394
-0.440089
-0.825032
-0.691697
-0.435161
-0.818035
-0.542053
-0.384753
-0.470313
-0.374905
-0.534803
-0.477573
-0.388852
-0.478575
-0.458028
-0.694712
-0.390683
-0.700979
-0.390076
-0.476079
-0.381225
-0.337874
-0.321558
-0.259833
-0.382661
-0.32224
-0.335761
-0.195533
-0.20067
-0.481217
-0.456274
-0.712697
-0.38791
-0.70733
-0.482947
-0.388987
-0.378944
-0.323151
-0.260423
-0.330372
-0.322954
-0.376871
-0.332974
-0.470844
-0.462501
-0.687909
-0.391556
-0.392377
-0.681537
-0.473322
-0.369587
-0.317983
-0.325957
-0.262113
-0.366496
-0.325074
-0.321643
-0.191478
-0.187447
-0.467767
-0.464239
-0.394618
-0.668839
-0.464767
-0.393489
-0.675124
-0.372627
-0.323674
-0.261506
-0.327687
-0.324292
-0.37458
-0.325507
-0.224139
-0.286803
-0.271514
-0.235856
-0.111382
-0.148486
-0.213177
-0.162809
-0.149054
-0.111369
-0.159494
-0.173417
-0.140915
-0.156208
-0.162519
-0.112109
-0.154605
-0.210583
-0.151729
-0.151168
-0.157237
-0.111497
-0.212938
-0.239926
-0.257181
-0.19922
-0.0316502
0.257348
0.0947097
0.0792446
-0.0324149
0.0949235
0.0709115
-0.202558
-0.494071
-0.202462
-0.478749
-0.218406
-0.20422
-0.206578
-0.251985
-0.436526
-0.21108
-0.460272
-0.234978
-0.11176
-0.157347
-0.201383
-0.146423
-0.156133
-0.149104
-0.111649
-0.14136
-0.126178
-0.111232
-0.15215
-0.160452
-0.174422
-0.19172
-0.146507
-0.111391
-0.15305
-0.203653
-0.153477
-0.154234
-0.151132
-0.111812
-0.173187
-0.224709
-0.186846
-0.20776
-0.0699326
-0.08277
-0.092676
-0.0596667
-0.101697
-0.172901
-0.130597
-0.189435
-0.0986654
-0.171756
-0.133084
-0.0437976
-0.0678178
-0.0698644
-0.0572803
-0.0794313
-0.111966
-0.101812
-0.0901047
-0.10322
-0.136389
-0.190764
-0.16724
-0.169164
-0.135397
-0.105302
-0.0417689
0.258531
0.08428
-0.00166802
-0.0415497
0.084934
0.0189004
-0.191955
-0.530875
-0.187414
-0.552445
-0.1983
-0.170168
-0.1874
-0.146409
-0.54395
-0.179483
-0.554477
-0.158117
-0.111178
-0.159522
-0.195
-0.144186
-0.161049
-0.112079
-0.142289
-0.0852969
-0.0665145
-0.065621
-0.0709768
-0.122676
-0.161379
-0.136216
-0.145065
-0.111781
-0.121242
-0.100021
-0.133194
-0.110662
-0.138104
-0.193602
-0.165124
-0.164188
-0.140405
-0.107432
-0.764264
-0.811358
-0.760779
-0.812304
-0.808346
-0.761286
-0.763771
-0.770001
-0.773382
-0.800314
-0.797376
-0.770466
-0.804472
-0.772348
-0.762009
-0.810735
-0.804466
-0.76094
-0.76273
-0.807249
-0.759646
-0.772468
-0.813781
-0.80163
-0.772977
-0.807461
-0.77167
-0.774404
-0.736107
-0.856952
-0.747302
-0.827844
-0.854767
-0.74169
-0.743319
-0.702696
-0.661572
-0.773158
-0.835294
-0.851716
-0.667584
-0.695756
-0.709524
-0.866381
-0.783555
-0.67348
-0.862309
-0.669158
-0.71553
-0.729163
-0.826165
-0.841691
-0.733379
-0.848173
-0.73788
-0.722293
-0.750338
-0.824635
-0.85906
-0.751932
-0.753131
-0.858707
-0.747076
-0.730618
-0.696109
-0.873113
-0.808169
-0.735224
-0.690669
-0.872502
-0.751406
-0.823749
-0.75488
-0.859921
-0.754749
-0.752764
-0.859758
-0.727543
-0.867097
-0.798235
-0.679646
-0.686942
-0.869203
-0.721816
-0.758389
-0.757156
-0.811107
-0.815641
-0.760439
-0.75418
-0.813939
-0.763392
-0.762095
-0.812734
-0.817381
-0.815233
-0.76415
-0.761163
-0.76692
-0.813151
-0.769092
-0.813475
-0.76833
-0.816621
-0.767765
-0.754476
-0.814502
-0.74638
-0.814148
-0.749762
-0.81252
-0.751871
-0.916622
-1.23775
-0.975058
-1.46604
-1.24667
-0.923362
-0.966106
-0.848979
-0.79786
-0.839664
-1.01349
-0.801531
-1.00926
-0.845408
-0.849356
-1.00461
-0.842249
-0.808322
-0.802172
-1.00809
-0.855553
-0.916001
-1.46909
-1.26207
-0.957775
-1.25211
-0.963764
-0.912119
-0.927805
-1.1816
-1.34125
-0.971219
-1.19083
-0.994697
-0.912056
-0.885276
-0.881785
-1.43934
-1.18284
-1.1785
-0.878768
-0.898562
-0.87757
-1.1836
-1.44646
-0.876246
-1.18194
-0.87772
-0.870583
-0.952516
-1.37844
-1.25857
-1.16465
-1.20527
-1.05069
-1.02532
-0.945134
-1.23
-1.46472
-0.982665
-0.927723
-1.22881
-1.00421
-0.876853
-0.854865
-0.831344
-0.97718
-0.825537
-0.917962
-0.980545
-0.873428
-1.00023
-0.810525
-0.845895
-0.824555
-0.858215
-0.999946
-0.95431
-1.46462
-1.19911
-1.14912
-1.0174
-1.20697
-1.02316
-0.893668
-1.17366
-0.960072
-1.28541
-0.947786
-0.904181
-1.17057
-0.85674
-0.858834
-1.46581
-1.20044
-0.867767
-1.19169
-0.848333
-0.859187
-1.18465
-0.876796
-1.46643
-0.869594
-0.867196
-1.19021
-0.889175
-1.26898
-0.932154
-1.16304
-0.94198
-1.16383
-0.879515
-0.908976
-0.933437
-1.28623
-1.45319
-1.2781
-0.904035
-0.943081
-0.843446
-0.797086
-0.837052
-1.01619
-0.795096
-0.845336
-1.02436
-0.845233
-1.03869
-0.838913
-0.794272
-0.79671
-1.02815
-0.842521
-0.908756
-1.47529
-1.2693
-0.955285
-0.912016
-1.27917
-0.947739
-0.828392
-1.17225
-0.888705
-1.23032
-1.17814
-0.881172
-0.835435
-0.788482
-0.772804
-1.54916
-1.27429
-1.26759
-0.779219
-0.78317
-0.796419
-1.25453
-1.55289
-0.794408
-1.26868
-0.787774
-0.802241
-0.819434
-1.21883
-1.17119
-0.864536
-1.17074
-0.871693
-0.812834
-0.893892
-0.921751
-1.28605
-1.4163
-0.896959
-0.914683
-1.29474
-0.831126
-0.781898
-0.847733
-1.05234
-0.784124
-1.04696
-0.828423
-0.835792
-1.04007
-0.789676
-0.847797
-0.788092
-0.837502
-1.0474
-0.88799
-1.39844
-0.89841
-1.30168
-0.905468
-1.2946
-0.884222
-0.858299
-1.18184
-0.901343
-1.23758
-0.911272
-0.848041
-1.16611
-0.8336
-0.854038
-1.49242
-1.20609
-0.838663
-0.843968
-1.21628
-0.826062
-1.25789
-0.807922
-1.50591
-0.824107
-0.814455
-1.22936
-0.863844
-1.24281
-0.926564
-1.15976
-0.873746
-0.916946
-1.16253
-0.720718
-0.796905
-0.714896
-0.802165
-0.710532
-0.723654
-0.802894
-0.727641
-0.731929
-0.809296
-0.813058
-0.724336
-0.807646
-0.732959
-0.712596
-0.788571
-0.69477
-0.797827
-0.707927
-0.701149
-0.799238
-0.734073
-0.808057
-0.738804
-0.814899
-0.736112
-0.810044
-0.737631
-0.839468
-0.752929
-0.858471
-0.748454
-0.889566
-0.749563
-0.869449
-0.704541
-0.808837
-0.812021
-0.708056
-0.819463
-0.698508
-0.714627
-0.68649
-0.656639
-0.717405
-0.836002
-0.835703
-0.655069
-0.689119
-0.683674
-0.819316
-0.713164
-0.655904
-0.827975
-0.654115
-0.682136
-0.710706
-0.820632
-0.836287
-0.726514
-0.831781
-0.714941
-0.722209
-0.687497
-0.789768
-0.784615
-0.698933
-0.694378
-0.780655
-0.690732
-0.669689
-0.661116
-0.733122
-0.699019
-0.665631
-0.661756
-0.74654
-0.681656
-0.774947
-0.67961
-0.733213
-0.673895
-0.685117
-0.76741
-0.673617
-0.766249
-0.698296
-0.657879
-0.662176
-0.756587
-0.675472
-0.735498
-0.806837
-0.723308
-0.807195
-0.731282
-0.728714
-0.807072
-0.752762
-0.757175
-0.814392
-0.816761
-0.756007
-0.815782
-0.754188
-0.742467
-0.812588
-0.740073
-0.811184
-0.746045
-0.736043
-0.811745
-0.746595
-0.812419
-0.74502
-0.812824
-0.742911
-0.811359
-0.748577
-0.84495
-1.31701
-1.19143
-0.832152
-0.837655
-1.30884
-0.841746
-0.796635
-0.749203
-0.866967
-1.05378
-0.75032
-1.05907
-0.795576
-0.793528
-1.05838
-0.864076
-0.743667
-0.746679
-1.052
-0.791102
-0.847849
-1.21904
-0.84185
-1.31403
-0.841228
-1.31883
-0.847145
-0.780053
-1.07631
-0.812389
-1.07251
-1.07752
-0.787753
-0.805736
-0.758477
-0.701837
-1.24869
-1.15148
-1.17015
-0.719146
-0.749464
-0.765032
-1.18432
-1.27525
-0.751302
-1.17616
-0.731733
-0.77728
-0.776692
-1.06535
-1.0676
-0.801698
-1.07593
-0.802813
-0.773068
-0.79227
-1.09741
-1.09408
-0.813163
-0.817691
-1.09503
-0.787582
-0.783338
-0.752805
-1.43431
-1.2392
-0.761899
-1.2498
-0.776805
-0.788849
-1.22363
-1.39295
-0.75816
-0.771619
-1.2297
-0.779996
-0.789494
-1.11272
-0.817034
-1.10426
-0.818427
-1.11013
-0.785402
-0.835329
-1.3094
-0.829404
-1.14572
-0.840281
-1.31808
-0.822423
-0.780434
-0.72649
-0.870697
-1.05236
-0.729975
-1.053
-0.779007
-0.784158
-1.05226
-0.740121
-0.873883
-0.734692
-0.788902
-1.05702
-0.832702
-1.12896
-1.31572
-0.818063
-1.31698
-0.818768
-0.832753
-0.854413
-0.857439
-1.32566
-1.30522
-0.855532
-0.854524
-1.33101
-0.798256
-0.754018
-0.85756
-1.0586
-0.753066
-0.800592
-1.06026
-0.801749
-1.05906
-0.75778
-0.858222
-0.756825
-0.802679
-1.06274
-0.850433
-1.28345
-0.849795
-1.32301
-0.85311
-0.848555
-1.32835
-0.792521
-1.15265
-1.18572
-0.833181
-1.1531
-0.840157
-0.786248
-0.773652
-0.767018
-1.55469
-1.27322
-1.27993
-0.762824
-0.777266
-0.769825
-1.28652
-1.55294
-0.752956
-1.27808
-0.758795
-0.765329
-0.799041
-1.1991
-1.16338
-0.855295
-1.1629
-0.804775
-0.848465
-0.867419
-1.34501
-0.866373
-1.32412
-0.862502
-0.873574
-1.31228
-0.819561
-0.776881
-1.05161
-0.855949
-0.823059
-0.773743
-1.05686
-0.873755
-1.36228
-0.889205
-1.30261
-0.877933
-0.882224
-1.31068
-0.813734
-1.06103
-0.764073
-0.852885
-0.768076
-0.809211
-1.05497
-0.780488
-1.14242
-0.825078
-1.16101
-0.823412
-0.780085
-1.14013
-0.76551
-0.756267
-1.54034
-1.25122
-0.746863
-0.778161
-1.28277
-0.764647
-1.28477
-0.750229
-1.56699
-0.75065
-0.762261
-1.28891
-0.779563
-1.14892
-0.823319
-1.11467
-0.788945
-0.819205
-1.13391
-0.87803
-0.558358
-0.575597
-0.736123
-0.874025
-0.57911
-0.724454
-0.771198
-0.660601
-0.551881
-0.513905
-0.778615
-0.655638
-0.547109
-0.882112
-0.558142
-0.586041
-0.700897
-0.886416
-0.582173
-0.712698
-0.763746
-0.538671
-0.644527
-0.510237
-0.756389
-0.650095
-0.54311
-0.355291
-0.498558
-0.476072
-0.430314
-0.481517
-0.428889
-0.354566
-0.371371
-0.233648
-0.369826
-0.308998
-0.362891
-0.372248
-0.248899
-0.409
-0.342398
-0.422721
-0.335556
-0.359125
-0.497864
-0.496361
-0.427322
-0.486867
-0.365918
-0.428051
-0.374067
-0.375049
-0.309684
-0.261641
-0.373566
-0.374456
-0.257546
-0.368977
-0.498548
-0.471105
-0.431312
-0.432818
-0.465557
-0.360177
-0.383043
-0.27131
-0.38017
-0.315684
-0.387046
-0.378241
-0.269224
-0.443622
-0.349519
-0.434034
-0.356882
-0.378161
-0.497723
-0.435708
-0.454254
-0.387504
-0.43361
-0.459984
-0.380014
-0.375986
-0.314828
-0.265038
-0.377646
-0.376751
-0.267754
-0.52275
-0.545535
-0.538457
-0.529309
-0.446904
-0.400688
-0.400308
-0.442865
-0.517355
-0.524419
-0.53232
-0.510497
0.0485584
0.0908959
0.15244
0.0287844
0.0482118
0.150737
0.0355294
-0.0808512
-0.0530481
-0.315836
-0.320904
-0.0625023
-0.323894
-0.0830239
-0.0796972
-0.334559
-0.0660574
-0.304764
-0.0819224
-0.0622755
-0.327508
-0.213681
-0.233452
-0.26928
-0.216237
-0.235579
-0.207622
-0.211314
-0.4275
-0.397684
-0.391481
-0.437772
-0.477929
-0.480637
-0.495218
-0.462398
-0.491525
-0.517313
-0.503113
-0.505663
-0.395539
-0.497232
-0.453926
-0.410475
-0.180496
-0.187269
-0.208874
-0.269822
-0.157036
-0.207052
-0.209579
-0.341169
-0.329591
-0.322563
-0.349711
-0.3989
-0.434114
-0.431536
-0.407711
-0.194305
-0.213327
-0.269441
-0.224889
-0.218909
-0.211634
-0.201196
0.0250431
0.158341
0.115197
0.0991365
0.0193241
0.121333
0.086391
-0.0904655
-0.0432739
-0.358495
-0.320583
-0.0328662
-0.0866237
-0.320064
-0.0954849
-0.327311
-0.00951415
-0.372692
-0.10196
-0.0202125
-0.322784
-0.210607
-0.235601
-0.274965
-0.218345
-0.233661
-0.2128
-0.216901
-0.364671
-0.336069
-0.343355
-0.356204
-0.436795
-0.467589
-0.449325
-0.455258
-0.424578
-0.436321
-0.413778
-0.444579
-0.208623
-0.213933
-0.274298
-0.229046
-0.232145
-0.216611
-0.205252
-0.665929
-0.633624
-0.647426
-0.637962
-0.643197
-0.647554
-0.666266
-0.689228
-0.705402
-0.677578
-0.691439
-0.684346
-0.673754
-0.711596
-0.666314
-0.649141
-0.663699
-0.645194
-0.662128
-0.660349
-0.648355
-0.688791
-0.649602
-0.672276
-0.709558
-0.655012
-0.689101
-0.710156
-0.712202
-0.716397
-0.71767
-0.757399
-0.743196
-0.759164
-0.715927
-0.718839
-0.721751
-0.752091
-0.743372
-0.754776
-0.594727
-0.601577
-0.623193
-0.604767
-0.595041
-0.600442
-0.618481
-0.559049
-0.504078
-0.555915
-0.562904
-0.573933
-0.516285
-0.539662
-0.564981
-0.590355
-0.561846
-0.523411
-0.582835
-0.517542
-0.571243
-0.589217
-0.597834
-0.576721
-0.605324
-0.586964
-0.614785
-0.574836
-0.746973
-0.716877
-0.744754
-0.8669
-0.785007
-0.787863
-0.788928
-0.863822
-0.788133
-0.713844
-0.738782
-0.742832
-0.722657
-0.74936
-0.746691
-0.770771
-0.844459
-0.785396
-0.725761
-0.73979
-0.749182
-0.789316
-0.848741
-0.784437
-0.605421
-0.6249
-0.610953
-0.625506
-0.626329
-0.616003
-0.603627
-0.582068
-0.544773
-0.62282
-0.594295
-0.584905
-0.537057
-0.61841
-0.608377
-0.63918
-0.626244
-0.632722
-0.608655
-0.628114
-0.629361
-0.57776
-0.600181
-0.583425
-0.526981
-0.530918
-0.605622
-0.575014
-0.661846
-0.645842
-0.629289
-0.614164
-0.665275
-0.641874
-0.62402
-0.6843
-0.700687
-0.651835
-0.62784
-0.632172
-0.704614
-0.680086
-0.68521
-0.64137
-0.70891
-0.655086
-0.688517
-0.636335
-0.705303
-0.660452
-0.608347
-0.632611
-0.614023
-0.639401
-0.619085
-0.655409
-0.803646
-1.12604
-0.814188
-0.976012
-1.07355
-0.811084
-0.807511
-0.749393
-0.73621
-0.79598
-0.844022
-0.71865
-0.901445
-0.761424
-0.75607
-0.98973
-0.805074
-0.709066
-0.717434
-0.9313
-0.75934
-0.786371
-0.94333
-0.921815
-0.762348
-1.01554
-0.778676
-0.782945
-0.801599
-0.922088
-0.959169
-0.82813
-0.962906
-0.823651
-0.783818
-0.765279
-0.692118
-0.972066
-1.12917
-1.05848
-0.686136
-0.747337
-0.749393
-0.802642
-0.778787
-0.620632
-0.965111
-0.651173
-0.709337
-0.792962
-1.00742
-1.05225
-0.802558
-1.01902
-0.77343
-0.815832
-1.47665
-1.36984
-1.25863
-1.13163
-1.35448
-1.32171
-1.39916
-1.16962
-1.34816
-1.13284
-1.21623
-1.19077
-0.900487
-1.09604
-1.11149
-0.894962
-1.09065
-1.25981
-1.40586
-0.829956
-1.16874
-1.02328
-0.831217
-0.828205
-1.21939
-0.82797
-0.776654
-0.720669
-0.861821
-1.04552
-0.720595
-0.774992
-1.0389
-0.770177
-1.00486
-0.712281
-0.85857
-0.714451
-0.770105
-1.02197
-0.835051
-1.0657
-1.29791
-0.818057
-0.83122
-1.26871
-0.826823
-0.717724
-0.845622
-0.806165
-0.914953
-0.785956
-0.74657
-0.769367
-0.636856
-0.54047
-0.579579
-0.617824
-0.560588
-0.647021
-0.628108
-0.653124
-0.698361
-0.599578
-0.603637
-0.580066
-0.672396
-0.666421
-0.691763
-0.80158
-0.731833
-0.649556
-0.746957
-0.684537
-0.684544
-0.755461
-0.731944
-0.715129
-0.688209
-0.727872
-0.747995
-0.739739
-0.754806
-0.734198
-0.719629
-0.75378
-0.739708
-0.752657
-0.751156
-0.749677
-0.721668
-0.70092
-0.734022
-0.736764
-0.730219
-0.743905
-0.760444
-0.70669
-0.77687
-0.744142
-0.763008
-0.753171
-0.741856
-0.678272
-0.608496
-0.718257
-0.625233
-0.597411
-0.708792
-0.690873
-0.614745
-0.405789
-0.411301
-0.519761
-0.537846
-0.427082
-0.59592
-0.625007
-0.565106
-0.422175
-0.46032
-0.54776
-0.439915
-0.642495
-0.671253
-0.61958
-0.577706
-0.694917
-0.590878
-0.704239
-0.657701
-1.1131
-1.03045
-1.09587
-1.00437
-1.13581
-1.14342
-1.13877
-0.997822
-1.14214
-1.02416
-1.06323
-1.08112
-1.19381
-1.07281
-1.19784
-1.12302
-1.34382
-1.33632
-1.27736
-1.09773
-1.31122
-1.07723
-1.20035
-1.20075
-1.12993
-1.05389
-1.14745
-0.955917
-1.08228
-1.11685
-1.13275
-0.967976
-1.12322
-1.06754
-1.2072
-1.17314
-0.737188
-0.728407
-0.704092
-0.658481
-0.744577
-0.720062
-0.694079
-0.733166
-0.722812
-0.681463
-0.696832
-0.727097
-0.702963
-0.727997
-0.735018
-0.713599
-0.732696
-0.684264
-0.728179
-0.74121
-0.707215
-0.734654
-0.651998
-0.709697
-0.678176
-0.71694
-0.687225
-0.728652
-0.699326
-0.615248
-0.721918
-0.648858
-0.728407
-0.695717
-0.620469
-0.632239
-0.522621
-0.482065
-0.603702
-0.515957
-0.620876
-0.59017
-0.654105
-0.57437
-0.472111
-0.46355
-0.490545
-0.650138
-0.581597
-0.685435
-0.660801
-0.723721
-0.636984
-0.67891
-0.724796
-0.629571
-0.622512
-0.57747
-0.60156
-0.600264
-0.586568
-0.631932
-0.592092
-0.64832
-0.668429
-0.594477
-0.621426
-0.640807
-0.601464
-0.674266
-0.613173
-0.570465
-0.552337
-0.573691
-0.603037
-0.565653
-0.584012
-0.654176
-0.614962
-0.683615
-0.62724
-0.660815
-0.607942
-0.678338
-0.685007
-0.682024
-0.679474
-0.687703
-0.699692
-0.691525
-0.707241
-0.698411
-0.693596
-0.707058
-0.706319
-0.700884
-0.532179
-0.574596
-0.582686
-0.574514
-0.567457
-0.526238
-0.581335
-0.540803
-0.579951
-0.559473
-0.594765
-0.563116
-0.550333
-0.585804
-0.703894
-0.73553
-0.734843
-0.783517
-0.868535
-0.782966
-0.704661
-0.735985
-0.734502
-0.786
-0.869084
-0.784092
-0.504777
-0.558887
-0.568011
-0.565597
-0.542315
-0.552383
-0.520595
-0.642337
-0.597908
-0.609116
-0.608933
-0.637733
-0.61511
-0.611729
-0.671641
-0.69848
-0.62639
-0.647816
-0.677476
-0.626016
-0.693039
-0.645286
-0.59603
-0.626578
-0.611165
-0.651828
-0.618799
-0.610318
-0.66862
-0.62433
-0.687587
-0.649086
-0.665236
-0.627528
-0.689839
-0.701991
-0.734757
-0.734889
-0.794162
-0.883592
-0.792958
-0.707946
-0.737598
-0.737907
-0.786487
-0.877141
-0.788587
-0.659457
-0.52293
-0.492827
-0.626448
-0.626823
-0.545252
-0.670563
-0.674903
-0.684337
-0.615959
-0.622142
-0.674731
-0.608831
-0.685246
-0.668129
-0.580174
-0.604634
-0.6645
-0.666824
-0.593964
-0.67238
-0.668233
-0.512055
-0.663658
-0.57896
-0.641626
-0.56356
-0.682586
-0.910367
-0.944468
-0.902585
-0.979992
-0.965602
-0.980337
-1.00268
-0.979749
-0.988125
-0.957343
-0.917256
-0.906996
-1.11354
-1.04916
-1.11625
1.01674
-0.914275
-1.07807
-1.04335
-1.0078
-0.864813
-1.02358
-1.03306
-1.11877
-1.10742
-0.439686
-0.409011
-0.462536
-0.534547
-0.580192
-0.421453
-0.375575
-0.465854
-0.473471
-0.632722
-0.45203
-0.602953
-0.430684
-0.497168
-0.908542
-0.948688
-0.9283
-0.980768
-1.04622
-1.02928
-1.00553
-0.9823
-1.0217
-0.944679
-0.94799
-0.932445
-0.674138
-0.467861
-0.590622
-0.404859
-0.67659
-0.44903
-0.57957
-0.657506
-0.639239
-0.533567
-0.45486
-0.644582
-0.491178
-0.649963
-0.669621
-0.53615
-0.660241
-0.554128
-0.654542
-0.673478
-0.516204
-0.656103
-0.396567
-0.415813
-0.487891
-0.4321
-0.56065
-0.604441
-0.710725
-0.711408
-0.616188
-0.548326
-0.717667
-0.704192
-0.604382
-0.700122
-0.690648
-0.640354
-0.631867
-0.696668
-0.692361
-0.638324
-0.705401
-0.654719
-0.706168
-0.646887
-0.700944
-0.711663
-0.645472
-0.703455
-0.544318
-0.677934
-0.590195
-0.69253
-0.693954
-0.59686
-0.62594
-0.483544
-0.574053
-0.696039
-0.520108
-0.678274
-0.63015
-0.571619
-0.395116
-0.374213
-0.509093
-0.493371
-0.381267
-0.585194
-0.547328
-0.419394
-0.337324
-0.276259
-0.447261
-0.344171
-0.497815
-0.639063
-0.594445
-0.568362
-0.689841
-0.557311
-0.649547
-0.684109
-1.00978
-1.00938
-1.02083
-1.12779
-1.0046
-1.1089
-0.999391
-1.04972
-1.02834
-1.07779
-0.998207
-1.08907
-1.18373
-1.05343
-1.16536
0.6191
-1.16946
-1.12564
-1.17891
-1.26064
-1.27206
-1.23232
-1.04932
-1.13815
-1.15212
-0.717337
-0.617374
-0.708708
-0.641958
-0.720399
-0.698666
-0.657065
-0.719984
-0.720381
-0.69378
-0.676208
-0.725041
-0.715045
-0.689824
-0.721167
-0.629086
-0.705967
-0.672356
-0.725392
-0.70215
-0.666309
-0.715862
-0.673576
-0.709795
-0.675326
-0.711069
-0.715875
-0.684238
-0.556102
-0.459048
-0.702102
-0.491122
-0.689855
-0.585491
-0.444382
-0.54237
-0.495966
-0.652242
-0.46325
-0.51725
-0.674884
-0.453235
-0.998184
-0.986405
-0.988145
-0.998409
-1.06077
-1.07268
-1.0725
-0.996724
-1.07315
-0.977732
-0.963699
-0.977293
-0.822966
-0.576481
-0.616308
-0.661954
-0.829814
-0.614854
-0.662358
-0.891304
-0.766275
-0.621344
-0.596966
-0.898241
-0.758976
-0.61905
-0.814315
-0.573146
-0.611425
-0.673811
-0.808834
-0.611956
-0.671804
-0.887002
-0.616017
-0.753555
-0.594887
-0.878688
-0.756443
-0.618034
-0.5201
-0.538707
-0.572343
-0.485853
-0.569791
-0.486295
-0.520683
-0.621558
-0.618095
-0.341813
-0.276686
-0.426824
-0.358224
-0.340604
-0.428816
-0.278216
-0.491748
-0.46126
-0.493019
-0.459813
-0.51921
-0.537618
-0.565991
-0.484046
-0.567765
-0.518317
-0.485551
-0.623731
-0.624069
-0.343103
-0.429028
-0.359183
-0.28222
-0.429443
-0.34481
-0.27996
-0.517878
-0.535797
-0.576262
-0.484441
-0.482432
-0.590026
-0.519971
-0.350987
-0.293293
-0.431268
-0.357404
-0.351882
-0.429482
-0.293946
-0.53441
-0.659621
-0.536309
-0.654144
-0.490515
-0.460102
-0.490829
-0.460932
-0.484504
-0.534322
-0.476113
-0.625659
-0.447918
-0.478659
-0.627244
-0.614343
-0.617806
-0.349429
-0.428318
-0.356034
-0.287783
-0.427123
-0.348887
-0.289107
-0.729253
-0.437211
-0.324037
-0.442049
-0.719994
-0.712163
-0.554931
-0.573575
-0.699878
-0.736021
-0.452166
-0.323193
-0.446289
-0.742994
0.106157
0.221365
0.233578
-0.0860145
0.115489
0.225272
-0.0837346
-0.0207168
-0.104644
-0.167543
-0.190501
-0.109788
-0.175811
-0.0325559
-0.0108937
-0.159334
-0.117262
-0.165593
-0.00274462
-0.114133
-0.166296
-0.675125
-0.538939
-0.525296
-0.687946
-0.72472
-0.357623
-0.461806
-0.459529
-0.714687
-0.733323
-0.454209
-0.347456
-0.741259
-0.455915
-0.68072
-0.580584
-0.572243
-0.663847
-0.597282
-0.509418
-0.507568
-0.604827
-0.694573
-0.548712
-0.561858
-0.70829
0.0359221
0.19642
0.139528
-0.0165883
0.0072894
0.1685
-0.0598964
-0.0640373
-0.10367
-0.217953
-0.245868
-0.110687
-0.0492536
-0.293309
-0.0860244
-0.340185
-0.0816776
-0.233327
-0.110408
-0.123834
-0.318038
-0.619478
-0.508318
-0.510023
-0.608906
-0.715033
-0.483201
-0.722887
-0.485009
-0.71763
-0.528036
-0.712862
-0.50777
-0.684699
-0.640731
-0.642075
-0.630383
-0.624076
-0.625929
-0.683699
-0.644742
-0.643283
-0.616606
-0.613513
-0.622015
-0.748221
-0.718253
-0.745271
-0.951122
-0.820824
-0.820989
-0.820844
-0.95145
-0.821341
-0.710675
-0.738215
-0.741838
-0.734614
-0.751911
-0.757796
-0.83177
-0.950524
-0.827227
-0.734653
-0.773378
-0.765106
-0.821903
-0.950569
-0.824246
-1.04472
-1.10811
-1.02192
-0.995078
-0.954639
-0.965685
-1.04122
-1.04335
-1.02224
-1.09612
-0.973089
-0.998431
-1.1354
-1.18908
-1.09939
1.43017
0.551464
-0.357733
-0.798154
0.475542
-0.804479
-0.907627
0.253932
-0.4557
0.28537
-0.857935
-1.17079
-1.04175
-1.05982
-1.04554
-1.12796
-1.05039
-1.07477
-1.02135
-1.03018
-1.03878
-1.07588
-1.03964
-1.11226
-1.03878
-1.04353
-0.543708
-0.615894
-0.481925
-0.429263
-0.567144
-0.608027
-0.447753
-0.994068
-0.970895
-0.984371
-1.04482
-0.956822
-0.962057
-0.972644
-1.05276
-0.968361
-0.949197
-0.950534
-0.967191
-0.793965
-1.02364
-0.838669
1.50021
-0.366475
0.89842
-0.152167
-0.784086
0.762464
-0.687183
-0.324946
-0.551789
0.803646
-0.063864
-0.299569
0.802395
-0.594465
-1.06402
-1.00133
-0.911126
-1.00158
-1.01958
-1.00951
-1.06775
-1.01108
-0.997868
-0.979209
-1.06795
-0.988286
-1.04306
-1.03127
-1.01806
-0.625065
-0.614123
-0.600112
-0.635142
-0.56511
-0.50548
-0.465137
-0.601393
-0.583187
-0.509058
-0.613327
-0.574271
-0.587723
-0.557404
-0.59944
-0.472955
-0.595541
-0.544302
-0.680779
-0.723175
-0.727874
-0.821144
-0.952869
-0.821284
-0.686869
-0.735076
-0.731565
-0.819312
-0.951444
-0.820352
-0.653276
-0.718313
-0.708853
-0.795289
-0.940256
-0.81201
-0.64728
-0.690915
-0.706804
-0.816598
-0.938224
-0.810249
-0.698138
-0.424408
-0.266679
-0.708521
-0.70644
-0.352492
-0.721466
-0.782716
-0.858822
-0.653336
-0.438787
-0.673727
-0.503301
-0.816845
-0.611896
-0.685663
-0.539376
-0.904835
-0.681862
-0.251904
-0.67869
-0.309511
-0.693901
-0.658225
-0.32939
-0.27819
-0.0548658
-0.226832
-0.52542
-0.274149
-0.0799633
-0.525168
1.37035
1.97361
1.61944
1.98203
1.55286
0.243474
0.775362
0.272351
0.0533225
0.642889
0.0805543
0.299907
0.287126
0.138988
0.676813
0.284784
0.305968
0.657755
0.11303
-0.324275
-0.262282
-0.149853
-0.574326
-0.116157
-0.583237
-0.310335
-0.953644
-0.493364
-0.385955
-0.749696
-0.563038
-0.872295
-0.779967
-0.854462
-0.744214
-0.727468
-0.640109
-0.805514
-0.67177
-0.461529
-0.612014
-0.938057
-0.6091
-0.966748
-0.847802
-0.867803
-0.895468
-0.952527
-1.02264
-0.945898
-0.875786
-0.937124
-0.919261
-0.922792
-1.01217
-0.935156
-0.378836
-0.392701
-0.505948
-0.877205
-0.440115
-0.308647
-0.752577
1.65277
1.2305
1.2809
0.217902
0.810569
0.163537
-0.0135747
0.826102
0.319967
-0.0857322
0.161154
-0.173815
0.825715
0.140173
0.140413
0.814445
-0.124601
-0.344514
-0.469627
-0.219304
-0.59447
-0.295261
-0.277123
-0.698162
-0.823091
-0.679232
-0.787737
-0.953256
-0.784536
-0.858938
-0.900445
-0.964179
-0.878391
-0.655966
-0.669309
-1.01389
-0.764036
-0.766737
-0.580268
-0.629063
-0.677305
-0.768722
-0.627358
-0.671938
-0.920896
-1.01928
-0.651057
-0.681838
-0.928454
-1.02392
-0.660835
-0.629861
-0.758746
-0.681539
-0.775139
-0.578576
-0.61807
-0.626246
-0.808767
-0.623946
-0.664931
-0.931243
-0.668053
-1.02431
-0.684971
-0.938153
-1.02836
-0.666386
-0.687561
-0.6824
-0.410486
-0.537481
-0.480328
-0.473641
-0.481867
-0.475239
-0.41041
-0.571003
-0.555208
-0.565691
-0.559546
-0.642359
-0.75297
-0.656204
-0.736871
-0.410712
-0.536173
-0.488481
-0.47397
-0.484852
-0.411572
-0.474363
-0.580056
-0.587937
-0.576043
-0.590359
-0.417202
-0.536884
-0.480363
-0.473485
-0.474708
-0.481247
-0.41302
-0.6104
-0.601742
-0.611831
-0.612656
-0.674125
-0.764138
-0.665427
-0.775321
-0.421052
-0.537455
-0.476231
-0.479012
-0.423731
-0.475404
-0.481841
-0.605596
-0.598431
-0.608071
-0.598126
-0.499263
-0.476048
-0.324262
-0.40119
-0.319763
-0.496923
-0.46374
-0.65809
-0.904997
-0.917182
-0.666793
-0.502491
-0.295745
-0.398768
-0.438168
-0.311189
-0.446152
-0.501533
0.210276
0.548455
0.315077
0.379303
0.218399
0.294805
0.312544
0.0928301
-0.028766
-0.354445
-0.0588996
-0.0113618
-0.0725222
0.106547
0.0858613
-0.103154
0.0345352
-0.362387
0.0721316
-1.25668e-05
-0.083827
-0.673268
-0.889059
-0.875888
-0.665199
-0.477354
-0.484782
-0.424394
-0.205708
-0.501559
-0.214891
-0.479226
-0.470471
-0.234357
-0.523984
-0.432999
-0.513475
-0.470223
-0.22159
-0.532486
-0.306995
-0.357783
-0.270611
-0.506767
-0.449626
-0.795771
-0.85082
-0.840658
-0.787991
-0.519155
-0.205578
-0.35206
-0.448442
-0.214468
-0.439337
-0.514193
0.240015
0.586124
0.338323
0.175687
0.235214
0.341378
0.1884
0.114254
-0.0699784
-0.349998
-0.0513521
-0.0789029
0.11136
-0.0455687
0.114149
-0.0450306
-0.0986961
-0.335308
0.110474
-0.0857236
-0.044124
-0.754859
-0.856999
-0.863276
-0.772289
-0.484333
-0.507275
-0.404118
-0.199565
-0.488277
-0.479499
-0.196484
-0.494657
-0.201476
-0.459059
-0.388256
-0.472375
-0.504558
-0.198347
1.87737
1.85024
1.7977
1.90592
1.86242
1.86031
1.96459
1.9626
1.85398
1.96946
1.84528
1.84739
1.67421
1.81975
1.7442
1.88184
1.97722
1.85726
1.96384
1.89909
1.9748
1.85091
1.58672
1.74857
1.49356
1.81368
1.3848
1.11583
0.979352
1.49876
1.20536
0.998734
0.976143
1.06957
1.0504
1.13893
1.12313
1.40535
1.30217
1.58925
1.35775
1.46406
1.54749
1.26033
1.25058
0.808425
0.900834
1.10616
1.66619
1.87745
1.73965
1.85619
1.35754
1.45198
1.17543
1.32806
1.29111
1.51227
1.22605
1.24913
1.68797
1.59664
1.39424
1.13956
0.982936
1.24677
1.17097
1.0821
1.31319
1.01711
0.833459
0.22045
0.70211
0.474298
1.03328
0.827146
0.940002
1.01939
0.873236
1.09781
0.963911
1.12851
1.40499
1.01301
1.51707
0.903922
0.728474
0.592739
1.00711
1.18717
1.42098
1.21596
1.1396
1.35656
1.25351
1.08461
1.92663
1.87288
1.91357
1.90422
1.90587
1.84434
1.96624
1.94163
1.89201
1.98382
1.85459
1.93354
1.99791
1.92303
1.91645
1.92939
1.90694
1.97823
1.8572
1.95051
1.90217
1.98058
1.85768
1.77489
1.89104
1.82935
1.72228
1.77752
1.88362
1.72469
1.78905
1.83459
1.95531
1.92525
1.83216
1.92616
1.78754
1.80788
1.93639
1.81819
1.95882
1.83011
1.80607
1.93155
1.90657
1.85679
1.91712
1.88463
1.70515
1.75293
1.77723
1.73972
1.70834
1.74794
1.73048
1.60099
1.54095
1.6119
1.53159
1.69521
1.76264
1.72857
1.71082
1.73635
1.72053
1.68594
1.77738
1.89831
1.85806
1.72523
1.77814
1.90753
1.72845
1.79179
1.75388
1.95989
1.95634
1.77263
1.78569
1.95562
1.79644
1.94329
1.80853
1.95875
1.78805
1.80368
1.94557
1.77635
1.87126
1.92952
1.73217
1.77496
1.9249
1.73073
1.89648
1.82126
1.88567
1.81425
1.89517
1.90267
1.77682
1.82742
1.93796
1.91667
1.82064
1.78115
1.8992
1.77841
1.88366
1.82378
1.93608
1.82231
1.77825
1.88979
1.73935
1.69724
1.80767
1.68996
1.79735
1.80236
1.87382
1.8208
1.73044
1.66627
1.76564
1.68482
1.77988
1.86321
1.85328
1.63884
1.65906
1.73495
1.68274
1.62396
1.67477
1.69354
1.53821
1.40281
1.48605
1.52318
1.48778
1.5742
1.56119
1.65667
1.73121
1.71567
1.70051
1.67167
1.70176
1.6919
1.7695
1.80496
1.8447
1.90053
1.7589
1.81549
1.85786
1.77512
1.87595
1.82233
1.91784
1.82043
1.77741
1.8685
1.70569
1.81779
1.7736
1.82771
1.71849
1.88844
1.87405
1.8805
1.77405
1.8842
1.83575
1.49376
1.40939
1.40653
1.50732
1.49957
1.40478
1.50024
1.4704
1.38609
1.38538
1.48574
1.46443
1.37607
1.48828
1.55299
1.60236
1.43279
1.54261
1.61577
1.43924
1.53377
1.39747
1.40262
1.50897
1.41726
1.49865
1.5431
1.60479
1.72854
1.61294
1.72571
1.53592
1.38895
1.40228
1.51311
1.39322
1.54091
1.51453
1.53882
1.52342
1.40911
1.4099
1.54452
1.40151
1.51974
-2.72419
-1.81235
-2.47894
-1.93959
-2.54367
-2.24689
-2.82218
-3.82579
-3.30131
-3.40705
-2.01818
-2.67168
-2.83879
-2.52551
-2.96684
-3.14057
-3.16895
-3.21624
-2.90085
-3.05005
0.193661
0.690113
-0.280808
0.195015
0.248115
-0.419875
0.599074
0.198047
-0.89994
0.459467
-0.291434
0.122073
-0.781384
0.543328
-2.58253
-1.34597
-2.31578
-1.8541
-1.65054
-2.15321
-2.67956
-3.05509
-1.88917
-2.21498
-3.04525
-1.86181
-3.25697
-3.1705
-2.53661
-2.71616
-3.29006
-3.15868
-2.5496
-3.22262
-2.98893
-2.90314
-3.36097
-2.72819
-3.7419
-3.06696
-2.92328
-2.76389
-2.14086
0.950967
0.748563
1.28989
1.17555
0.864832
0.883786
1.23756
0.665421
0.345289
-0.453164
0.674239
0.267843
0.496801
0.745974
0.628701
-0.176792
0.222008
-0.498374
0.272101
0.539896
0.268923
0.998403
1.36766
1.05733
1.33218
0.940797
1.27602
1.07144
-3.62776
-1.02562
-1.26974
-3.7068
-0.750933
-0.235989
0.562165
-1.41073
-1.50509
-3.57625
-1.35263
1.96675
1.96956
1.93175
1.98032
1.92265
1.97456
1.94525
1.9931
1.97771
1.98351
1.94283
1.98
1.46898
1.43542
1.35537
1.72545
1.67833
1.3078
1.50201
1.43565
1.35963
1.59456
1.20396
1.64091
1.3873
1.25848
0.786844
1.06395
0.734927
1.14547
0.833624
0.691023
1.09141
0.692445
0.987056
0.449199
0.980077
0.646391
0.560423
1.02756
0.473542
-0.211351
0.2342
-0.221246
0.208545
0.510901
-0.221118
-1.99471
-1.40248
-1.99195
1.54753
1.65639
1.37926
1.75013
1.42374
1.79325
1.51909
1.56682
1.71384
1.49301
1.85068
1.45218
1.81905
1.5925
1.21876
1.48983
1.32564
1.70364
1.28473
1.23539
1.4446
0.861229
0.338304
0.183262
0.840749
0.408373
0.782285
0.973467
0.94364
0.945771
0.726336
0.227554
0.594128
1.03802
0.869732
1.17095
1.6545
1.13983
1.36227
1.10821
1.23339
1.41058
1.69329
1.93566
1.62842
1.91963
1.92875
1.65774
1.675
1.70554
1.94895
1.93345
1.69974
1.93237
1.71713
1.67929
2.00489
2.00134
1.91818
1.97675
1.90901
1.98187
1.91635
1.9888
1.99845
1.98399
1.90985
1.90891
1.98422
1.91505
1.38593
1.86048
1.52067
1.43816
1.32662
1.56406
1.57243
1.20578
0.998683
1.31389
0.914272
1.26486
0.923857
1.23564
1.42876
1.8967
1.63084
1.77221
1.47931
1.59667
1.6774
1.15887
1.05134
0.782923
0.871976
0.868783
1.08857
1.16495
1.64194
1.60687
1.86746
1.9156
1.57488
1.66241
1.89763
1.62691
1.84383
1.51447
1.86018
1.60427
1.55018
1.88479
1.78834
1.79271
1.71257
1.54869
1.61595
1.62608
1.70434
1.81469
1.87156
1.86381
1.78068
1.88342
1.78788
1.80597
1.71999
1.64183
1.56168
1.72723
1.63309
1.83057
1.79393
1.92614
1.87301
1.83674
1.91997
1.79063
1.74934
1.73587
1.68489
1.48231
1.60555
1.69296
1.59596
1.78922
1.85862
1.84481
1.77638
1.85357
1.79537
1.77391
1.67927
1.58855
1.54339
1.46119
1.65579
1.58854
1.78304
1.76798
1.8417
1.84369
1.77425
1.84853
1.77228
1.92193
1.97291
1.88717
1.79561
1.98424
1.80273
1.91808
1.86804
1.69597
1.76935
1.75837
1.87513
1.92418
1.81469
1.99612
1.89357
1.92597
1.99313
1.80936
1.86629
1.74214
1.68713
1.85979
1.75226
1.64223
1.56174
1.62829
1.71967
1.54982
1.71154
1.64975
1.63633
1.69572
1.52668
1.61775
1.5388
1.62762
1.70557
1.92393
1.9712
1.86289
1.79502
1.9567
1.92658
1.78685
1.90666
1.78944
1.89209
1.81056
1.92251
1.76828
1.92805
1.84795
1.91573
1.94138
1.77991
1.91613
1.82816
1.92407
1.8183
1.71044
1.68229
1.76791
1.79229
1.78394
1.67106
1.71836
1.70143
1.76424
1.75938
1.64691
1.77397
1.65902
1.69245
1.66823
1.57711
1.70717
1.72736
1.60536
1.6613
1.73544
1.67559
1.75415
1.72301
1.63339
1.61945
1.74333
1.68435
1.80436
1.85885
1.92474
1.89504
1.88978
1.85111
1.81312
1.80065
1.88647
1.91927
1.83556
1.8875
1.84386
1.79711
1.91272
1.59326
1.84877
1.64248
1.87083
1.86905
1.61962
1.96102
1.96157
1.89736
1.66328
1.28245
1.57017
1.58831
1.53549
1.92397
1.87655
1.47455
1.41516
1.24866
1.80922
1.51549
1.50575
1.95192
1.99062
1.96609
1.92631
1.65938
1.87826
1.66615
1.87538
1.64406
1.93586
1.78534
1.77775
1.87824
1.87881
1.78855
1.88188
1.77988
1.78794
1.88222
1.82061
1.88587
1.80351
1.79376
1.88522
1.73708
1.6971
1.80028
1.80558
1.81767
1.70812
1.72891
1.74182
1.83924
1.82018
1.7299
1.83167
1.72031
1.74768
1.94453
1.71781
1.87531
1.68443
1.9502
1.87383
1.705
1.94697
1.94516
1.9467
1.69775
1.42352
1.59149
1.7637
1.92685
1.62206
1.95828
1.66916
1.86642
1.46283
1.97019
1.81603
1.64443
1.93486
1.9413
1.93796
1.67893
1.87137
1.67716
1.93135
1.87205
1.69299
1.76496
1.7612
1.8421
1.8659
1.75305
1.77053
1.86105
1.76005
1.84886
1.73831
1.83733
1.74533
1.75395
1.8551
1.86664
1.88955
1.92253
1.95549
1.93837
1.84732
1.87742
1.97203
1.95012
1.96497
1.94512
1.88356
1.56891
1.39601
1.75878
1.46213
1.6331
1.34968
1.72404
0.555912
1.16713
0.635727
0.750064
1.03106
0.647168
1.0998
1.09743
1.81594
1.96222
1.97882
1.76121
1.18077
1.17702
0.917612
0.708859
1.3275
0.625115
1.11632
1.92211
2.00301
1.94043
1.99797
1.53181
1.43786
1.25104
1.65434
1.31401
1.68705
1.44938
1.88059
1.97432
1.97042
1.96569
1.97634
1.87964
1.88508
1.98296
1.95675
1.95934
1.88659
1.9822
1.31832
1.11413
1.55396
1.34711
1.27061
1.15644
1.58716
0.848406
-0.269135
0.760845
-0.19132
1.01037
0.634616
0.655684
1.00403
0.591607
1.06225
0.962403
1.65035
1.96897
1.72079
1.95576
0.959975
0.884907
0.499513
0.620655
0.906858
0.548469
0.928742
1.57434
1.92618
1.48714
1.94645
1.36107
1.3666
1.22442
1.64124
1.41152
1.18529
1.60915
1.89312
2.03086
1.96545
1.96077
2.01873
1.90323
1.88803
1.96371
2.00534
1.96118
2.01155
1.88403
1.88668
1.99214
1.97863
1.99963
1.88618
1.97513
1.88489
1.9625
2.00233
2.00251
1.97101
1.88162
1.65729
2.00279
1.38649
1.75243
1.42594
1.63956
2.01552
1.66993
1.50153
1.80913
2.03435
1.45969
2.02003
1.69124
0.658608
0.190855
1.37629
1.26146
0.124011
1.28015
0.643005
0.557221
1.17131
0.321066
1.36496
0.509175
0.37422
1.21836
1.74269
2.04919
1.95393
1.65134
2.03705
1.65089
1.77442
1.72326
1.53283
2.03168
1.93587
2.03866
1.70097
1.57966
1.92751
2.06632
2.0005
1.98903
2.0759
1.92776
1.91691
1.89191
2.05758
1.9627
2.07475
1.88835
-0.184033
-1.59135
-0.605151
-1.36789
-0.141736
-0.377239
-1.25863
0.83459
0.771771
1.32526
0.631521
1.42299
0.890596
1.56538
0.986016
1.47118
1.79717
2.02933
2.00919
1.67946
2.03511
1.77881
1.73491
1.80811
1.82575
2.0464
2.01946
2.03632
1.83694
1.77026
0.0498271
-0.0176115
0.0475026
-0.00680287
0.0473694
-0.00363802
0.0426169
-0.0118139
-0.00163507
-0.00214855
-0.0350164
-0.00213241
-0.0158834
-0.030681
0.0450345
0.0196995
0.0296923
0.0264194
0.0356945
0.0313989
0.0216992
0.00168363
-0.00413797
0.00485452
-0.00727328
0.00970392
-0.00634437
0.0107417
0.000123263
-0.00962832
-0.00385625
-0.00777846
-0.0057835
-0.0193933
-0.00859153
0.0908346
0.0988902
-0.0223406
0.0231393
0.0970197
0.0982247
0.0200753
-0.0174523
-0.0264016
-0.0163798
-0.0374432
-0.0224218
-0.0351789
-0.020498
-0.0155763
-0.0219853
-0.0137794
-0.031591
-0.0185367
-0.0293883
-0.0153433
-0.00295803
-0.0150302
-0.0145156
-0.0183625
-0.0211002
-0.00836035
-0.0363061
-0.00861053
-0.00622788
-0.00727382
-0.00745227
-0.00581312
-0.00502843
-0.00537181
-0.260672
-0.274299
-0.296683
-0.280184
-0.012678
-0.0167577
-0.00981721
-0.0203043
-0.0115769
-0.0155636
-0.00854119
-0.011416
-0.00454936
-0.0103293
-0.00655297
-0.00838457
-0.00359995
-0.00779324
-0.0227404
-0.0227989
-0.0156003
-0.0309794
-0.021662
-0.019893
-0.0142897
-0.0145368
-0.0242347
-0.0141141
-0.00984099
-0.00523489
-0.0117541
-0.0059951
-0.00231067
-0.00718945
-0.00106965
-0.00649232
0.00266152
-0.00397672
0.00259063
-0.0136551
-0.0166483
-0.00848195
0.00853026
-0.0105835
0.00612476
-0.00702302
-1.09465
-1.1001
-0.911277
-0.904358
-0.0129593
-0.0192456
-0.0109267
-0.0116403
-0.00603622
-0.010833
-0.00527574
-0.477363
-0.337233
-0.397355
-0.256305
-0.606021
-0.510478
-0.552047
-0.119885
-0.206122
-0.199744
-0.115384
0.249113
0.342647
0.23027
0.274604
0.215503
0.200464
0.259155
0.0484226
0.00547855
0.0238985
0.012006
0.036208
0.00902783
0.0196627
-0.00721712
0.00531468
-0.00691986
0.0193487
0.00113939
0.00912202
1.81506e-05
0.0226282
0.0318509
0.0636355
0.0423755
0.0368858
0.0307552
0.0582239
0.0454078
0.0672485
0.0427543
0.0509924
0.0684164
0.0791265
0.0388193
-0.0403985
-0.0123521
-0.0212249
-0.0420167
-0.0141802
-0.0380931
-0.0412054
-0.0419653
-0.0215968
-0.0163666
-0.0401383
-0.0148982
-0.0405061
-0.0429978
1.39507
1.18863
1.19141
1.0493
1.40037
1.18315
1.18388
0.481166
0.653202
0.558674
0.426865
0.663352
0.469077
0.438159
0.44434
0.644557
0.416554
0.524129
0.40397
0.457569
0.631778
0.386683
0.538903
0.459877
0.337363
0.350673
0.557458
0.370869
-0.0136586
-0.0391031
0.00325053
-0.0115494
-0.0234179
-0.0302209
0.00785911
0.2673
0.168591
0.242751
0.140064
0.297087
0.137017
0.220172
0.00233426
0.00523755
0.0219471
-0.0140759
0.0186689
-0.0100749
-0.0022783
0.0194254
0.0137203
0.0117546
0.00107297
0.0344739
0.0320126
0.00147515
0.0502383
0.047557
0.0303968
0.0275707
0.0227526
0.0261728
0.0497532
0.0494992
-0.00107747
-0.00714276
0.0130183
0.024527
0.0211635
0.0175739
-0.0714474
-0.0841751
-0.067827
-0.0805891
-0.0828312
-0.0789843
-0.0694251
-0.0663615
-0.0782477
-0.0775055
-0.0720558
-0.0662297
-0.0659509
-0.0726539
-0.0713925
-0.102097
-0.105987
-0.0694206
-0.0488459
-0.0511293
-0.0660573
-0.0775717
-0.0657683
-0.0774863
-0.0717436
-0.06556
-0.0719575
-0.0651665
0.0386162
0.0302547
0.0262371
0.0358423
0.0485338
0.0442176
0.0402243
-0.0973051
-0.0635883
-0.0937218
-0.0600327
-0.046904
-0.0622305
-0.045412
-0.221059
-0.223906
-0.174823
-0.181407
-0.0616801
-0.0860261
-0.0896001
-0.0579317
-0.0431597
-0.0446878
-0.0571214
0.0340342
0.0503605
0.0375791
0.0488683
0.0535242
0.0446178
0.0582967
0.0420257
0.0276277
0.0342892
0.041331
0.042602
0.0481153
0.0338156
-0.219757
-0.217639
-0.190552
-0.187392
-0.0812471
-0.0514078
-0.079391
-0.0533066
-0.0423404
-0.054936
-0.0399526
-0.239355
-0.229785
-0.225368
-0.23095
0.0137537
0.0256888
0.00317599
-0.00275685
0.0250538
0.0208007
0.00663789
-0.0239657
-0.0296794
-0.0136038
-0.036473
-0.0180918
-0.043035
-0.016292
-0.0148542
-0.0148392
-0.0198094
-0.0180034
-0.00909006
-0.0115223
-0.014298
-0.0260233
-0.0387691
-0.0409205
-0.0130125
-0.0490751
-0.0166897
-0.0219693
-0.0594289
-0.0484831
-0.0679449
-0.0562697
-0.0365696
-0.0497894
-0.038603
-0.0660709
-0.07258
-0.0437241
-0.06162
-0.0572533
-0.0864144
-0.0473096
-0.772812
-0.686122
-0.637626
-0.722227
-0.0497778
-0.0654013
-0.070806
-0.0586641
-0.0363439
-0.0394699
-0.0539852
-0.0695961
-0.0639716
-0.0817409
-0.0437018
-0.0916393
-0.0484111
-0.0645695
-0.101555
-0.0755904
-0.0509186
-0.101132
-0.0583765
-0.0605629
-0.0516594
-1.12696
-1.25931
-0.924393
-0.902456
-0.0737046
-0.0940802
-0.0979981
-0.0602081
-0.0487777
-0.051392
-0.0585058
-0.0139223
-0.00430821
-0.00520274
0.00901513
-0.00351244
-0.00583067
0.007191
-0.0890222
-0.061147
-0.0826538
-0.0537247
-0.046666
-0.0565729
-0.0441916
-0.888045
-0.919638
-0.769511
-0.737024
-0.0554632
-0.0630168
-0.0738354
-0.0489948
-0.0344696
-0.040695
-0.0421525
-2.59513
-3.59337
-2.68384
-3.23334
-3.04779
-2.50165
-2.56174
-3.24294
-3.10602
-2.4905
-2.68599
-2.78306
-1.05767
-0.771895
-0.237557
-0.85657
-0.208364
-0.277987
-0.293266
0.396572
0.265382
0.284161
0.241927
0.284948
0.299008
0.227465
-0.0133414
-0.00318411
-0.00465465
-0.0154569
-0.0187223
-0.00889218
-0.00366593
-0.0314523
-0.00751036
0.00838826
-0.0363691
-0.033334
0.000475448
-0.0350264
1.4145
1.1181
1.20107
1.28714
1.30775
1.4087
1.20434
1.3947
1.09074
1.19995
1.27394
1.25625
1.40295
1.18539
0.00345487
0.0581206
0.00676779
0.027252
0.0195877
0.0230212
0.0304555
0.0565618
0.0143738
0.00664603
0.0222795
0.0299828
0.0293887
0.0268345
0.0326622
0.0182375
0.026916
0.0479054
-0.0105728
0.0510223
-0.000634838
0.0545409
0.048128
0.0618113
0.0656635
0.0438314
0.0555654
0.0537656
0.0180051
0.0870156
0.0586918
0.0723813
0.0752966
-0.0353587
-0.0220588
-0.0191859
0.00923002
-0.00993094
-0.00936694
0.00684819
0.077333
-0.0201461
0.0940591
0.0294887
0.0918959
0.0270346
0.0734733
-0.103969
-0.103567
-0.102183
-0.0347778
-0.0131211
-0.0150014
0.0140787
-0.00810097
0.0167638
-0.00742802
0.00969265
0.0436531
0.0382271
0.00795763
0.0336863
0.00277449
-0.000793954
0.0224678
0.0051878
0.0311916
-0.00297596
0.0587879
0.0133418
0.0123401
-0.0112925
0.00406015
0.127171
-0.128325
-0.261758
-0.0983367
-0.102949
-0.0825048
-1.03606
-0.106376
-0.0980618
-0.124163
-0.107527
-0.0719673
-0.0898936
-0.0834554
-0.48071
-0.430528
-0.428203
-0.470243
-0.111448
-0.156906
-0.142017
-0.123287
-0.101637
-0.0948714
-0.134278
-0.117297
-0.111094
-0.0829949
-0.103324
-0.0993987
-0.134195
-0.0961751
-0.133293
-0.168264
-0.116824
-0.118206
-0.153903
-0.108814
-0.145902
-0.285767
-0.221525
-0.16306
-0.285983
-0.200508
-0.202515
-0.163722
-0.937393
-0.945111
-0.220579
-0.282485
-0.284357
-0.202695
-0.16231
-0.164088
-0.201986
-0.252147
-0.193042
-0.240107
-0.183957
-0.151018
-0.192278
-0.145662
-1.07392
-1.08488
-0.919471
-0.917193
-0.186371
-0.218057
-0.22942
-0.175995
-0.13486
-0.140852
-0.16655
0.0967733
0.431385
0.149904
0.456734
0.154285
0.080978
0.207687
0.124035
0.36833
0.163076
0.455962
0.165283
0.357588
0.123709
-0.163273
-0.13096
-0.142393
-0.110636
0.307195
0.0390616
0.0325548
0.0170788
0.0533658
0.0627074
0.0271051
0.14125
-0.00614407
-0.0250572
-0.0248206
0.0210744
0.0131284
-0.00826086
-0.333189
-0.298648
-0.0447473
-0.064574
-0.302673
-0.131583
-0.122752
-1.21604
-1.99122
-2.1314
0.386582
0.478018
0.438229
0.22326
0.271704
0.260973
0.244401
0.325354
0.199889
0.215777
0.188468
0.233003
0.246452
0.176024
-0.00773589
0.00185261
0.00128528
0.0072015
0.0118007
0.00796443
0.0111675
0.00598214
0.0166368
0.0116235
0.0156976
0.0248071
0.00943287
0.0334742
0.00980707
0.0287702
0.0204426
0.016052
0.0249127
0.0216064
0.0271438
0.0488598
0.0181604
0.00661609
0.0154015
0.0264096
0.0279141
0.0542492
0.0235927
0.0452799
0.0384295
0.0355023
0.03426
0.0448877
0.0249543
-0.0845382
-0.0990243
-0.0824119
-0.104204
-0.0787058
-0.0970131
-0.0925363
0.0463245
0.0446038
0.0678241
0.0778356
0.0675581
0.0830617
0.0456451
0.0441566
0.0408858
0.064832
0.0652574
0.0628052
0.0430826
0.0634694
-0.107859
-0.103114
-0.104104
-0.024428
0.0186024
0.0399708
0.0538373
0.0126183
0.128773
0.0969971
0.0932524
0.115908
0.105988
0.119366
0.0958048
-0.0243495
-0.034294
-0.0262615
0.00311985
-0.0102362
0.00499816
-0.0103162
0.216132
-0.34765
-0.422315
0.227455
0.327363
0.326976
0.231576
0.0144421
0.0446175
0.0482057
-0.0336486
-0.0239205
-0.0275631
0.00128859
-0.0113178
0.00588515
-0.0110326
1.57656
1.69852
1.64196
1.75845
1.64071
1.59103
1.7028
-0.299317
-0.724381
-1.26644
-0.310145
-0.286414
-0.21119
-1.35242
0.367714
0.372461
-0.048847
0.104817
-0.109347
-0.0215538
-0.124136
-0.0303076
0.103813
0.446721
0.433762
-0.14897
0.102276
-0.0760252
-0.06156
-0.0257542
-0.135189
0.105722
0.237143
0.181625
0.181433
0.317144
0.374871
0.366673
0.319099
0.679723
0.458762
0.502134
0.490525
0.569301
0.670703
0.447491
0.187683
0.118569
0.251591
0.186899
0.288684
0.289992
0.260905
0.368488
0.363519
0.285137
0.286053
0.134501
0.275497
0.272206
0.282003
0.276571
0.181662
0.268962
0.181616
0.322863
0.383805
0.321344
0.391702
0.434251
0.511919
0.60342
0.38319
0.394001
0.619259
0.422581
0.184777
0.354355
0.182822
0.314588
0.392102
0.392466
0.314812
0.292277
0.205204
0.204099
0.349532
0.458357
0.457922
0.351519
0.398384
0.471838
0.589475
0.373223
0.361031
0.572861
0.411772
0.185701
0.375294
0.186565
0.313842
0.390946
0.391167
0.31455
0.160907
0.303391
0.309385
0.119645
0.592229
0.57364
0.407961
0.711342
0.702991
0.121771
0.614598
0.628896
0.203328
0.275302
0.203941
0.3524
0.455164
0.350398
0.455335
0.196335
0.252387
0.191953
0.365329
0.55308
0.542507
0.371412
0.261792
0.267712
0.260009
0.406489
0.597736
0.589056
0.414422
0.200067
0.252083
0.198936
0.371768
0.562093
0.562638
0.375287
0.446358
0.708008
0.710675
1.05577
1.27866
1.24197
1.46432
2.05489
1.40973
1.38728
2.0511
1.14789
1.31304
1.33758
-0.0551895
-0.0255727
-0.027515
0.0422457
-0.0147472
-0.00262034
0.0328729
0.268407
0.265958
0.269808
0.414169
0.596956
0.415444
0.596423
1.59504
2.07081
1.43513
2.07352
1.45085
-0.0460135
-0.0120572
0.00333593
0.0550378
-0.0206708
0.0397046
-0.00878884
2.10177
1.46491
2.12543
1.63189
1.2695
1.60928
1.27607
2.08661
1.44087
2.05888
1.56694
1.25581
1.59254
1.24381
-2.0785
-2.14984
0.467868
0.513759
0.555565
0.318864
0.286103
0.281443
0.311378
-0.172191
-0.164353
-0.167134
-0.142977
-0.146174
-0.145067
-0.146051
-0.0307526
-0.0158316
-0.0299677
-0.0331397
-0.00840763
-0.0113562
-0.0332062
-0.143322
-0.130374
-0.138454
-0.108655
-0.106667
-0.112517
-0.104468
-0.113728
-0.113096
-0.114185
-0.1062
-0.104575
-0.106083
-0.104901
-0.136733
-0.12785
-0.136363
-0.12775
-0.135333
-0.126136
-0.126452
-0.111348
-0.109712
-0.11022
-0.101772
-0.102868
-0.102983
-0.101426
-0.0986493
-0.101641
-0.0962875
-0.0780376
-0.0865274
-0.0806859
-0.0845839
-0.00423665
0.00345673
0.0390413
0.01548
0.0466761
-0.0059632
-0.0011265
-0.0012465
0.0065028
0.0126614
0.0431497
0.0409152
0.00430884
0.00188805
-0.00398019
-0.0217349
-0.00160295
0.00464232
-0.000359477
-0.0265025
-0.00348913
-0.0534562
-0.0444541
-0.0522091
-0.0369603
-0.00383613
-0.00565604
-0.0364703
-0.0580799
-0.040554
-0.054591
-0.0342111
-0.00768722
-0.00197989
-0.0411032
0.0201368
0.0447079
0.0706327
0.0126061
-0.00392513
0.0379415
0.037132
0.0176725
-0.00366982
0.006816
0.0215403
0.00683739
0.0183478
-0.00212152
0.0132485
0.0328765
0.0725759
-0.0105906
-0.00472953
0.00928456
0.0399571
0.0391203
0.0412109
0.0432289
0.034988
0.0739118
0.0755309
0.0406118
0.019403
0.0477047
0.0282817
0.0311754
0.0499573
0.0220603
0.0201798
0.0149357
0.00708042
0.0453611
0.0275875
0.0501058
0.0104386
0.013052
-0.058223
-0.0696718
-0.0697386
-0.0629649
-0.0559019
-0.0628241
-0.0558271
0.134258
0.156433
0.134555
0.167398
0.130507
0.136367
0.171994
-0.0586647
-0.069802
-0.0700657
-0.0634103
-0.0562754
-0.0630444
-0.0567369
0.119223
0.131459
0.158575
0.135609
0.1254
0.127364
0.152141
0.108582
-0.154065
-0.056248
-0.0991939
0.139392
0.108595
-0.158524
-0.0619016
-0.0843299
-0.109799
-0.106726
-0.0484007
-0.0585912
-0.0798067
-0.138642
-0.193807
-0.198386
-0.150956
-0.102494
-0.107374
-0.145299
-0.102047
-0.0449214
-0.0713155
-0.0496874
-0.0545596
-0.0759368
-0.0960759
-0.172183
0.213994
0.146722
-0.185729
0.143424
-0.141805
-0.276487
-0.167852
-0.121033
-0.174368
-0.121977
-0.0849413
-0.0887429
-0.115284
-0.187986
-0.125158
-0.181177
-0.129811
-0.0978987
-0.137992
-0.0930173
-0.0803688
-0.0667538
-0.0427184
-0.0331865
-0.0356135
-0.0883846
-0.0621592
-0.20451
0.154272
0.002716
0.294678
0.175304
-0.209407
0.247412
-0.0730813
-0.0548582
-0.0296466
-0.0245474
-0.0296214
-0.0581812
-0.0671909
-0.0320217
-0.0381936
-0.0442723
-0.0357368
-0.0228464
-0.0301772
-0.0283611
0.0724695
0.104536
0.104767
0.158991
0.105708
0.076371
0.0234996
-0.0162428
-0.0326383
-0.0277688
-0.0193649
-0.0170588
-0.024716
-0.0105865
0.0781713
0.0946958
0.101831
0.147215
0.0980227
0.0769422
0.079169
-0.161783
-0.111381
-0.156718
-0.104927
-0.0819999
-0.109314
-0.0797732
-0.161021
-0.164277
-0.144177
-0.140207
-0.109644
-0.14902
-0.152309
-0.101406
-0.078153
-0.078659
-0.0985639
-0.0553563
-0.05162
-0.0248978
-0.0153305
-0.0141821
-0.0504071
-0.0524182
-0.0577122
-0.0523059
-0.0241124
-0.0167595
-0.0145145
-0.0611985
-0.0507282
0.167151
-0.392608
0.169256
0.226853
0.175945
-0.390449
0.161206
-0.158855
-0.161041
-0.132552
-0.134529
-0.138855
-0.105477
-0.141221
-0.093709
-0.0763965
-0.0769405
-0.0929064
-0.146323
-0.106315
-0.144226
-0.095767
-0.0774427
-0.0967728
-0.0770915
0.14084
-0.423308
0.168845
0.202344
0.16595
-0.671878
0.157702
0.0813946
0.0650372
0.0641461
0.0768463
0.0963962
0.0774482
0.0923852
0.0950855
0.0662588
0.0663381
0.0779466
0.103347
0.0783559
0.107868
-0.13536
-0.0997531
-0.134737
-0.0915039
-0.0770025
-0.0913247
-0.0758962
-0.218121
-0.220282
-0.204892
-0.203692
-0.215807
-0.213286
-0.200381
-0.202129
-0.149875
-0.117561
-0.106743
-0.140797
-0.0431894
-0.0355371
-0.0285713
-0.0625113
-0.030031
-0.0593712
-0.0379641
-0.0552511
-0.0971143
-0.053021
-0.0766757
-0.0805771
-0.0470519
-0.0649451
-0.181229
-0.179131
-0.173347
-0.173073
-0.0539439
-0.0369271
-0.0632022
-0.0531232
-0.0269831
-0.0462674
-0.0325674
-0.0554852
-0.0376353
-0.0621038
-0.0528258
-0.0342724
-0.0487035
-0.0340174
-0.0759218
-0.116675
-0.1015
-0.0472129
-0.0688146
-0.0569926
-0.122583
-0.075566
-0.110509
-0.0583601
-0.101488
-0.0720107
-0.0585353
-0.120573
-0.567407
-0.589698
-0.511225
-0.527853
-0.153945
-0.131156
-0.168336
-0.143334
-0.10018
-0.131607
-0.108012
-0.167734
-0.131955
-0.171842
-0.144906
-0.108449
-0.14313
-0.108489
-0.159137
-0.174348
-0.139728
-0.109039
-0.148228
-0.184519
-0.121602
-0.159617
-0.1769
-0.124045
-0.140267
-0.15565
-0.182397
-0.123707
1.92574
1.89413
1.57971
1.95645
1.87912
1.94262
1.50968
1.26166
1.45696
1.4887
1.9045
1.48578
0.235187
1.12056
0.464859
0.486941
0.196525
1.86652
1.5277
1.44183
1.27103
1.89111
1.53885
1.41951
0.00650167
-0.0200149
0.00390652
0.0705693
-0.0248089
0.0648677
0.0155555
-0.955147
-0.950381
-0.262742
-0.210978
-0.271116
-0.19511
-0.154147
-0.190237
-0.158167
-0.279539
-0.213797
-0.27637
-0.198397
-0.161162
-0.20034
-0.159925
0.0807807
0.374909
0.479457
0.15569
0.154837
0.0855219
0.301855
0.0787299
-0.0488654
0.156575
0.44284
0.156157
0.0776157
-0.0150373
-0.0978134
-0.0527755
-0.0890492
-0.0291368
-0.0385199
-0.0320163
-0.0391986
-0.0474964
-0.0716234
-0.0796829
-0.0198947
-0.0235136
-0.0273729
-0.0140429
0.0481834
-0.00328482
0.0169618
0.0827938
-0.004765
0.0489919
0.0872134
0.189719
0.418175
1.22288
0.420938
2.12675
0.150096
0.0412232
-0.0140547
0.0159913
0.0821478
-0.0078712
0.031449
0.0874313
0.33636
1.87667
0.40853
1.01027
0.419885
1.92034
0.331243
-0.039015
-0.0306516
-0.0459392
0.00063873
-0.0117375
0.00163625
-0.0144855
-0.0618835
-0.0337537
-0.0534751
-0.00232446
-0.0202304
-0.00717602
-0.016253
-1.07015
-1.0688
-0.915477
-0.915167
-0.150684
-0.144639
-0.171564
-0.13053
-0.0973993
-0.113883
-0.110521
-0.204144
-0.157136
-0.188895
-0.143049
-0.128299
-0.155872
-0.119516
-2.38359
-2.35113
-2.37405
-2.63597
-2.43947
-2.43006
-2.71613
0.359263
0.118021
0.363981
0.288155
0.186427
0.278889
0.42047
-0.0907857
-0.101542
-0.102098
-0.104814
-0.087598
-0.0898247
-0.091028
-0.0744648
-0.0894054
-0.0730344
-0.090367
-0.0737336
-0.071082
-0.0877909
0.113487
-1.23636
-1.44058
-0.210809
-0.296733
-1.22156
0.162782
-0.00873006
-0.000533754
-0.00174159
0.0113209
0.00459532
0.0148812
0.00249549
0.0842713
0.194498
0.211972
0.177231
0.0940679
0.173282
0.192211
0.34762
0.212313
0.218921
0.181578
0.159539
0.17321
0.175768
0.0644621
0.096651
0.0656372
0.081403
0.0223329
0.0186795
0.0816242
-0.424675
-0.38121
-0.397478
-0.431339
-0.166417
-0.209426
-0.207502
-0.194389
-0.157379
-0.15141
-0.196684
-0.113928
-0.314882
-0.118456
-0.159174
-0.358345
-0.103338
-0.134393
-0.128994
-0.208272
-0.170715
-0.170977
-0.262135
-0.164824
-0.151292
-0.573085
-0.420251
-0.383711
-0.573295
-0.520019
-0.520692
-0.384395
-0.930904
-0.902843
-0.771308
-0.779419
-0.911798
-0.421123
-0.569023
-0.572933
-0.520638
-0.384818
-0.385643
-0.51685
-0.345178
-0.380467
-0.477985
-0.478566
-0.279337
-0.346063
-0.380874
-0.478274
-0.346388
-0.279943
-0.376674
-0.347507
-0.474505
-0.380091
-0.824996
-0.941349
-0.831637
-0.938219
-0.573761
-0.401723
-0.569625
-0.533603
-0.363433
-0.536513
-0.362187
-1.0813
-1.11665
-0.924673
-0.914375
-0.397516
-0.565895
-0.571095
-0.533718
-0.353155
-0.357689
-0.529913
-0.916
-0.899071
-0.899947
-0.919522
-0.940325
-0.946683
-0.932843
-0.947857
0.00870548
-0.0166907
-0.0670815
-0.0618428
0.0553403
-0.0486671
-0.0254072
-2.18837
-2.01516
-1.89247
-1.94044
-1.81288
-1.522
-1.58256
-1.51926
-1.05794
-1.20029
-0.399077
-0.374812
-0.379206
-0.400611
-2.74729
-3.26411
-2.70269
-2.72123
-2.19665
-2.24563
-2.65451
0.776156
0.848828
0.0795725
0.268455
0.814099
0.806647
0.262667
1.13581
0.90827
1.0995
1.46057
0.918661
1.11386
1.48615
1.15397
1.53238
1.10509
0.940304
0.928493
1.50563
1.18077
0.754156
0.0890526
0.74763
0.256931
0.729329
0.780266
0.259473
1.06678
0.903128
1.42855
1.07932
1.09268
0.891196
1.39744
1.04712
1.35035
1.07132
0.86875
0.880358
1.37444
1.02352
0.803045
0.748879
0.929088
1.01087
0.751965
0.777276
1.04942
0.817682
1.10469
0.933575
0.766489
0.757615
1.07118
0.839179
-1.65363
-1.07033
-2.17458
-2.01497
-1.24718
-1.12986
-0.983527
-2.87664
-2.79543
-3.87386
-3.08961
-2.85833
-2.45011
-2.30987
-3.59988
-3.82299
-3.18049
-0.182442
-0.17648
-0.182036
-0.166467
-0.164567
-0.166896
-0.163713
-0.118725
-0.121344
-0.123315
-0.12232
-0.121383
-0.112417
-0.105916
-0.104278
-0.113033
-0.112866
-0.140539
-0.138823
-0.109166
-0.131909
-0.106069
-0.103369
-0.10463
-0.0756716
-0.0389214
-0.0734996
-0.0711108
-0.0400236
-0.0344606
-0.0735556
-0.104963
-0.102272
-0.102536
-0.106307
-0.0998293
-0.102822
-0.103889
-0.111833
-0.11507
-0.113222
-0.0855256
-0.103634
-0.0833838
-0.105158
-0.117264
-0.116246
-0.114646
-0.0877761
-0.107146
-0.0910745
-0.107215
-0.111129
-0.112477
-0.110064
-0.0802498
-0.100622
-0.0814211
-0.100671
-0.109016
-0.104841
-0.107746
-0.078343
-0.096156
-0.099498
-0.0767372
-0.074941
-0.0799929
-0.0757292
-0.0479387
-0.0550053
-0.0463604
-0.0602599
-0.0839753
-0.0797078
-0.0812177
-0.0709152
-0.0980584
-0.0741092
-0.0947423
-0.072352
-0.0643456
-0.0706719
-0.0494088
-0.0425048
-0.0495654
-0.0382533
-0.0765493
-0.071675
-0.076143
-0.069594
-0.0738049
-0.0771274
-0.0666942
-0.00565954
0.0204717
0.00832299
0.0214752
0.0133525
-0.00190076
0.0190275
-0.00557774
0.00153096
0.00744951
0.0167155
-0.0110763
0.0111603
0.0187824
-0.0336534
-0.0284809
-0.0303805
-0.0117154
-0.00416385
-0.00154707
-0.00327747
-0.0299847
-0.193873
-0.0331562
0.0413207
0.0252275
0.0410251
0.0175281
-0.105533
-0.101787
-0.0754693
-0.185085
-0.0832201
-0.174718
-0.0269498
-0.068943
-0.0254175
0.0497224
0.0298539
0.0446347
0.0384228
0.0463401
0.0130477
-0.0146757
0.0793503
0.0768101
0.0750439
0.0846367
0.0774098
0.0715145
0.068047
0.0446203
0.0392241
0.0533537
0.0261638
0.0838432
0.0887317
0.0820455
0.051307
0.0379128
0.0532927
0.0438685
0.0929412
0.0520928
0.0677593
0.0420202
0.0601197
0.0478107
0.0341421
0.0995767
0.108442
0.147379
0.118483
0.102438
0.120572
0.115084
0.187912
0.101744
0.10506
0.112381
0.108607
0.110736
0.11117
0.0973155
0.14669
0.0919297
0.107076
0.102827
0.10951
0.100055
-0.103452
-0.0438256
-0.0600936
-0.0574425
-0.0798436
-0.0999477
-0.0418981
-0.0583869
-0.0725217
-0.0737866
-0.0691951
-0.0571336
-0.0584949
-0.0677757
-0.043097
-0.0752626
-0.0599084
-0.0297171
-0.0643994
-0.0321635
-0.040594
-0.0643088
-0.0747497
-0.0753281
-0.06963
-0.0626968
-0.0634988
-0.0688956
-0.0621304
-0.0764036
-0.0819972
-0.0625522
-0.0750916
-0.0628766
-0.0615501
-0.0551751
-0.0622576
-0.0502842
-0.0673966
-0.0644016
-0.0533029
-0.0525136
0.174509
0.166468
0.164327
0.121559
0.0654085
0.113806
0.064967
0.194036
0.224973
0.173662
0.146411
0.115507
0.160643
0.08794
-0.225241
-0.276386
-0.279005
-0.244477
-0.195764
-0.198834
-0.241598
-0.171886
-0.174317
-0.210537
-0.208878
-0.142635
-0.169976
-0.172042
-0.206454
-0.166474
-0.139986
-0.163554
-0.167212
-0.169631
-0.203324
-0.202536
-0.173688
-0.209793
-0.157852
-0.136192
-0.151345
-0.140193
-0.224054
-0.177979
-0.217031
-0.16648
-0.149921
-0.175584
-0.144631
-0.116827
-0.117047
-0.0840559
-0.0816697
-0.123895
-0.112178
-0.0794551
-0.050869
-0.0239031
-0.0499453
-0.0249386
-0.0896225
-0.0578899
-0.0856749
-0.0557054
-0.11142
-0.104757
-0.077756
-0.0714412
-0.108321
-0.108253
-0.074925
0.0430014
0.121074
0.041124
0.0554164
0.0769242
0.0739849
0.0565823
0.0424037
0.113123
0.0483724
0.0574964
0.0760987
0.0542867
0.0671138
-0.0575709
-0.0656589
-0.0697618
-0.0633194
-0.0530953
-0.0561785
-0.0594004
-0.0617061
-0.0765003
-0.0622828
-0.0841402
-0.0624098
-0.0760026
-0.0615392
-0.048791
-0.0565513
-0.0423584
-0.0665918
-0.0609256
-0.0445724
-0.0468598
0.0279937
0.00668894
0.00958633
0.0177448
0.0286198
0.0295814
0.0144003
0.0852233
0.0942542
0.092614
0.103997
0.0974891
0.0860627
0.091921
0.0590062
0.0533907
0.0648929
0.0647348
0.0707652
0.0581529
0.053615
0.0614709
0.100909
0.0521408
0.075644
0.0270949
0.0803212
0.0410636
-0.194906
-0.162779
-0.188974
-0.143515
-0.133267
-0.146368
-0.130595
-0.274101
-0.216138
-0.204797
-0.160596
-0.181092
-0.18399
-0.14138
-0.127502
-0.12893
-0.140226
-0.102344
-0.0955893
-0.064102
-0.0605593
-0.0974628
-0.100364
-0.0627052
-0.046368
-0.020715
-0.0457422
-0.0207337
-0.104687
-0.102142
-0.0667965
-0.0683743
-0.106311
-0.0994682
-0.0656601
-0.0366845
-0.00603451
-0.0343609
-0.00902144
-0.221043
-0.22355
-0.122533
-0.118052
-0.174968
-0.152528
-0.174693
-0.138165
-0.116192
-0.139747
-0.117349
-0.17564
-0.154029
-0.175869
-0.135445
-0.119902
-0.134114
-0.118803
-0.0175899
-0.00245628
-0.00519914
-0.0142068
-0.0262678
-0.00957041
-0.0108444
-0.0259091
0.068562
0.0544712
0.0508805
0.0661604
0.0828084
0.0797369
0.0695181
0.110322
0.106376
0.112582
0.135756
0.12403
0.100058
0.121828
0.161016
0.192189
0.188946
0.24913
0.188768
0.197027
0.161833
0.0661283
0.0581678
0.0554165
0.0635475
0.0747999
0.0715216
0.0663259
0.135077
0.0864319
0.17586
0.120589
0.123217
0.188449
0.101609
0.130608
0.138182
0.156767
0.158459
0.159004
0.137609
0.128921
-0.1737
-0.151608
-0.174276
-0.141457
-0.114392
-0.138957
-0.11763
-0.222771
-0.220917
-0.195406
-0.198481
-0.00257345
0.00239044
0.0118276
-0.00969123
0.0190268
-0.00390054
0.0611158
-0.0165359
-0.204801
-0.206207
-0.200683
-0.198315
-0.0477119
-0.317029
0.0772997
-0.46277
-0.049126
0.0808853
-0.296021
-0.0352673
-0.0218428
0.00521144
-0.0379992
0.00812848
-0.0506046
-0.0262495
-0.0916382
-0.0864083
-0.0936313
-0.0969291
-0.0381927
-0.0257584
-0.0304769
-0.0549529
-0.0607802
-0.0364228
-0.0377534
-0.0498983
-0.190168
-0.0613982
-0.0851359
-0.154248
-0.0689479
-0.0487684
-0.308868
-0.36696
-0.352918
-0.298603
-0.169823
-0.0911586
-0.16869
-0.147841
-0.076818
-0.14481
-0.0840706
-0.151906
-0.094635
-0.162602
-0.142689
-0.0873831
-0.137011
-0.0855145
-0.144176
-0.318659
-0.104564
-0.230852
-0.249388
-0.157936
-0.115268
-0.148369
-0.296756
-0.133678
-0.214693
-0.299576
-0.163999
-0.122482
-0.534425
-0.617074
-0.592289
-0.517485
-0.305788
-0.265004
-0.310006
-0.278359
-0.216218
-0.272862
-0.229013
-0.322726
-0.270401
-0.319554
-0.281881
-0.237162
-0.286271
-0.232295
-0.28178
-0.331473
-0.215067
-0.274254
-0.268436
-0.303224
-0.232888
-0.286088
-0.257767
-0.243586
-0.266431
-0.315927
-0.284759
-0.237585
0.573277
1.0431
1.41287
0.576563
0.567916
0.570441
1.0277
1.21426
0.519005
0.524402
0.515908
0.866989
0.508492
0.894464
1.03502
0.215211
0.221323
0.225527
0.459177
0.477362
0.217474
0.51798
1.12852
0.516658
0.500351
0.850911
0.504298
0.83132
-1.31915
-1.24238
-0.920289
-0.942151
-0.548913
-0.413544
-0.545345
-0.49519
-0.371959
-0.505198
-0.380555
-0.551788
-0.414983
-0.547216
-0.496913
-0.383583
-0.499872
-0.381508
-0.44529
-0.343225
-0.269782
-0.348461
-0.447991
-0.342086
-0.345625
-0.889414
-0.905702
-0.900611
-0.894226
-0.443171
-0.332463
-0.268917
-0.331856
-0.439576
-0.342053
-0.342404
-0.890404
-0.884326
-0.888709
-0.887984
0.29227
0.048243
0.0555058
0.087029
0.265839
0.272887
0.0802586
0.0673776
0.296822
0.0611452
0.0925864
0.287493
0.279916
0.098753
-0.327058
-0.132863
-0.323009
-0.313914
-0.132354
-0.318491
-0.124002
-0.12908
-0.314746
-0.318424
-0.309107
-0.110262
-0.119768
-0.306957
-0.267634
-0.0931372
-0.167702
-0.0738565
-0.104123
-0.267426
-0.165322
-0.273853
-0.118384
-0.0811909
-0.18668
-0.281166
-0.109464
-0.173412
-0.193543
-0.0812453
-0.210137
-0.192486
-0.062601
-0.176343
-0.0666098
-0.235406
-0.0855824
-0.225461
-0.207993
-0.0754962
-0.217952
-0.0711504
-0.147223
-0.0510143
-0.012005
-0.0559951
-0.158243
-0.0466509
-0.045656
0.099608
0.0911706
-0.130791
-0.0392921
-0.0101265
-0.017222
-0.116883
-0.0426793
-0.0300112
0.209609
0.635074
0.202653
0.205593
0.465066
0.212621
0.45117
0.180378
0.602978
0.193286
0.195798
0.405051
0.182496
0.431427
-1.0149
-1.00643
-0.862979
-0.871522
-0.355363
-0.282734
-0.390612
-0.372925
-0.232357
-0.34031
-0.24891
-0.448914
-0.298819
-0.421
-0.398827
-0.279397
-0.424635
-0.263597
-0.819437
-0.759005
-0.789218
-0.787751
-0.873833
-0.852992
-0.846882
-0.879826
0.0389963
0.273534
0.034078
0.0680144
0.261079
0.0742457
0.251228
0.0274163
0.270377
0.0313692
0.0633288
0.233687
0.243795
0.0576081
1.76742
1.54471
1.76922
1.71263
1.49507
1.50987
1.72133
1.52477
1.48138
1.60065
1.50176
1.35336
1.40085
1.41343
-0.00671281
0.561163
0.116151
0.455372
-0.05383
0.0394379
0.617964
0.771817
0.685769
0.959703
0.745117
0.463059
0.94026
0.92574
-2.25894
-2.08033
-2.40081
-1.77206
-1.35935
-1.64411
-1.47814
-0.0257797
-0.0463138
-0.0404865
-0.0228555
-0.0251709
-0.0428077
-0.0241915
-0.0846233
-0.0908844
-0.0940914
-0.0932383
-0.077838
-0.0801032
-0.0805204
-0.00878128
-0.0238465
-0.0286245
-0.0294318
-0.0117048
-0.0255212
-0.0105131
-0.0669935
-0.0868298
-0.0922964
-0.0674247
-0.0697423
-0.0669349
-0.0857209
-0.0777972
-0.0182319
-0.0180198
-0.00419118
-0.00628444
-0.0203916
-0.0156849
-0.00628692
-0.0263974
-0.00967635
-0.018188
-0.0176847
0.0014154
-0.0041937
-0.0242683
-0.0750426
-0.0786335
-0.078281
-0.058726
-0.0408164
-0.0545384
-0.0457717
-0.0925444
-0.0945849
-0.0790214
-0.0826111
-0.0794303
-0.0824386
-0.0775417
-0.0815964
-0.0736041
-0.0758616
-0.00672797
-0.0179261
-0.0180346
-0.0142251
-0.00358468
-0.0152417
0.000897638
-0.0126509
-0.00848236
-0.0161483
-0.0144416
0.00643057
-0.0138867
0.0011042
-0.0872244
-0.085326
-0.0751449
-0.0775528
-0.0595624
-0.0611537
-0.0639151
-0.0386181
-0.0411582
-0.0428968
-0.0367743
-0.0677198
-0.0473517
-0.0610467
-0.0656395
-0.0408159
-0.0436993
-0.0455232
-0.00244437
-0.0210029
-0.0140304
-0.0133539
-0.00229827
-0.0186984
-0.00315631
-0.0655995
-0.0659944
-0.0687386
-0.0552752
-0.0483671
-0.049364
-0.0525775
-0.0568053
-0.056852
-0.0536836
-0.0409956
-0.046821
-0.0489276
-0.0439555
-0.0445824
-0.0485877
-0.0453641
-0.0243231
-0.012339
-0.0284165
-0.00528473
-0.0835671
-0.0654408
-0.0436593
-0.0311782
-0.0401862
-0.0324906
-0.0733212
-0.052444
-0.0653144
-0.0247771
-0.029653
-0.025287
-0.0302112
-1.79506
-2.78036
-0.950378
-0.635112
-0.665172
-2.95797
-1.53589
-2.64194
-2.54933
-2.92117
-2.71093
-2.08701
-3.79643
-2.06524
-3.5702
-2.04931
-1.97051
-2.21033
-1.78376
-2.65244
-2.15986
-1.79895
-1.47704
-1.47052
-2.27689
-1.56649
-1.57694
-1.61222
-1.61739
-1.19147
-1.14599
-2.39327
-2.76981
-1.75793
-1.75715
-2.50749
-1.50614
-1.47528
-3.16811
-2.06926
-3.14329
-1.94885
-3.04511
-1.64422
-1.79806
-1.9934
-1.47779
-1.55151
-1.25739
-1.47954
-0.977833
-1.09645
-0.354616
-0.0168771
-0.379174
-0.0334797
-0.417992
-0.182338
-0.150492
1.45346
1.61817
1.39848
1.45509
1.40045
1.30953
1.30908
-0.0150436
0.111216
0.0064529
0.0764357
0.0275236
0.106798
-0.0251453
-0.00834011
0.0632163
0.07929
0.114207
0.0399116
0.108726
0.0148636
0.111317
0.0995493
0.0863406
0.11653
0.0922663
0.119097
0.110779
0.105449
0.0833168
0.113773
0.0906062
0.101974
0.0435422
0.122914
0.0739716
0.085901
0.08611
0.0911889
0.0723199
0.0902413
0.0740065
0.0472791
0.0893488
0.0971004
0.0854432
0.088922
0.0930802
-0.00391028
0.0119849
0.0336621
0.0825398
0.0200494
0.0483399
-0.0141772
0.0132124
0.0431676
0.0883964
0.077423
0.0298187
0.0650771
0.0330245
0.0425202
0.0343646
0.0480923
0.087677
0.0787488
0.0778962
0.0828782
-0.0521952
-0.0394828
-0.0341384
0.0322804
0.0466773
0.0490633
0.0853431
0.0680422
0.0726385
0.0817823
0.244721
0.217542
0.162849
0.124508
0.142904
0.270554
0.204214
0.203856
0.153363
0.135914
0.0984152
0.127345
0.210655
0.152165
0.0289269
0.01523
0.0299116
0.0502817
0.0417851
0.0452032
0.0438525
-0.0228755
-0.00614796
-0.00837882
0.0187763
0.0385009
0.033486
0.0566162
0.0565017
0.0510216
0.0642243
0.226588
0.153825
0.14465
0.138847
0.161644
0.213682
0.174679
0.153883
0.0467812
0.037688
0.020766
0.0382262
0.0283261
0.0336687
0.135347
0.0110506
-0.0242662
-0.0165611
-0.0464654
0.0102288
-0.0323996
-0.465619
-0.424624
-0.437947
-0.467772
-0.271387
-0.218424
-0.252654
-0.239619
-0.20177
-0.19304
-0.251645
-0.222054
-0.20393
-0.236001
-0.224052
-0.169951
-0.211739
-0.179309
-0.232869
-0.23639
-0.205542
-0.222732
-0.215037
-0.22403
-0.246921
-0.215035
-0.206035
-0.188627
-0.196967
-0.19383
-0.201648
-0.216911
-0.933838
-0.929668
-0.564184
-0.42017
-0.56316
-0.509448
-0.386256
-0.386027
-0.508436
-0.564829
-0.419571
-0.563291
-0.512104
-0.385162
-0.514337
-0.385284
-0.468734
-0.346744
-0.375713
-0.276792
-0.472839
-0.34661
-0.372343
-0.860796
-0.910054
-0.916708
-0.866727
-0.842571
-0.942169
-0.837047
-0.943103
-0.462367
-0.346812
-0.275908
-0.361281
-0.347166
-0.366357
-0.458171
-0.949073
-0.640071
-0.63631
-0.954617
-0.633726
-0.888545
-0.901501
-0.628874
-0.585223
-0.691657
-0.769972
-0.777454
-0.715747
-0.563165
-0.613221
-0.874636
-0.859848
-0.622724
-1.08422
-1.08491
-0.915929
-0.914218
-0.533584
-0.373562
-0.544229
-0.509674
-0.327519
-0.33329
-0.501078
-0.561065
-0.379397
-0.551408
-0.515923
-0.347679
-0.52581
-0.339254
-0.923018
-0.921211
-0.915943
-0.927173
-0.918568
-0.930224
-0.921508
-0.913599
-0.530498
-0.537534
-0.706001
-0.720802
-0.54223
-0.717886
0.111809
0.454705
0.229745
0.161658
0.15889
0.116895
0.224576
-0.552658
-0.735053
-0.410671
-0.738834
-0.540074
-0.454857
-0.455871
-0.171981
-0.511558
-0.685051
-0.45237
-0.685888
-0.194047
0.123537
0.450835
0.280296
0.163363
0.164777
0.11983
0.325903
-0.468534
-0.722884
-0.610941
-0.34001
-0.698572
-0.505509
-0.312351
0.0977016
0.0217206
0.0322005
0.182673
-0.0158784
0.0576288
-3.02487
-3.39756
-4.2549
-2.99669
-2.33104
-2.53903
-2.77549
0.623186
0.0264232
0.383626
0.62645
0.182902
0.469372
0.698668
-1.31324
-1.7304
-1.42239
-0.714195
-0.652879
-0.697492
-0.670123
-1.62063
-1.84844
-1.5085
-0.744838
-0.761445
-0.774988
-0.740796
-3.6007
-2.7354
-3.37405
-2.67786
-2.10289
-2.54159
-2.10526
0.31291
0.0333828
0.587759
0.266576
0.532285
0.404971
-0.015822
0.255914
0.429355
-0.0478896
0.240293
0.490181
-0.0216119
0.165309
-1.29222
-1.01591
-1.21934
-0.333888
-0.444579
-0.416341
-0.347107
-2.9126
-1.16368
-3.27509
-1.19207
-1.37802
-1.25989
0.581292
0.559249
0.536705
0.224895
0.361191
0.324984
0.246217
-3.39593
-2.61479
-1.02003
-2.33032
-0.96216
-0.778526
-1.05472
-0.0714555
0.10974
-0.0027319
0.0626662
-0.0154387
0.108067
-0.0427112
-0.127294
-0.0163638
0.062187
0.115084
-0.0334622
0.109527
-0.0393559
0.0168222
0.028124
0.0230123
0.0619559
0.0524588
0.0112886
0.0282622
0.00728031
-0.0181753
0.0367013
0.0123196
0.045524
-0.00346568
-0.00377726
-0.0759394
0.0050343
-0.0401291
-0.0319548
-0.0407075
0.0118786
-0.0644343
-0.0231451
-0.0270338
-0.0330519
0.0289863
0.0202837
-0.0127426
-0.0491836
-0.0123839
-0.00904907
0.00194799
-0.011824
-0.0301975
-0.0187867
-0.0224935
0.00298444
0.0457753
0.0566055
0.107926
0.0666918
0.0546767
-0.00704172
-0.0503393
-0.177167
-0.18226
-0.17082
0.0295624
-0.158125
-0.0434739
-0.0488434
-0.0357538
-0.0434117
-0.05035
-0.0445777
-0.053654
-0.0438427
-0.0407426
0.085825
0.037394
0.0427553
0.0178297
0.0248864
-0.0212453
0.051589
0.0472397
0.0688052
0.0722701
0.0825607
0.0663656
0.0399832
0.0600258
0.083695
0.0983679
0.0781873
0.0930705
0.0774753
0.0655235
0.0640833
0.0737624
0.0690435
0.0895258
0.0805092
0.093274
0.0592425
0.0668603
0.0851889
0.0990034
0.0753656
0.0835208
0.0974471
0.0673885
0.0396529
0.0591085
0.0822982
0.0543174
0.0520595
0.0709231
0.0508087
-0.0851981
-0.0626416
-0.065773
-0.0653467
-0.0775328
-0.0798122
-0.0720373
-0.0619944
-0.0580578
-0.0738261
0.102125
0.0571631
0.109327
0.0845757
0.0571772
0.0714968
0.0970385
0.125052
0.078148
0.0900539
0.115719
0.086344
0.107316
0.101142
0.0518364
0.063214
0.0491994
0.0780748
0.05695
0.0924763
0.0369339
0.241034
-0.524311
0.249092
0.267166
-0.845168
0.0153817
-0.00108066
0.0104462
0.0305695
0.0257763
0.0388162
0.0279646
0.0104725
-0.00247597
0.00803646
0.0243184
0.0234077
0.0187598
0.0241039
0.0279151
0.00932496
0.0258655
0.0315519
0.0380152
0.0343689
0.0358402
0.0771752
0.169447
0.111537
0.00703072
0.0185198
0.0227457
0.0298697
0.0301115
0.0333198
0.0289224
1.73185
1.80071
1.58584
1.99269
1.58877
1.71033
2.03536
1.74025
1.79526
1.59894
1.98973
1.59121
1.74637
2.02999
0.693489
-0.723901
0.184603
0.928493
-0.728994
0.959046
0.64796
-0.306602
-0.738469
-1.43823
-0.287582
-0.283672
-0.302639
-1.38796
-0.840356
-1.13353
-1.0729
-0.829375
-0.778862
-0.760288
-1.04186
-1.10199
-0.798495
-0.816091
-0.73937
-0.988039
-1.01516
-0.714165
-0.807319
-0.407828
-0.647607
-0.626336
-0.388746
-0.787691
-0.39149
-0.599405
-0.718568
-0.343132
-0.348862
-0.760226
-0.570553
-0.369633
0.38912
0.383443
-1.13664
-1.19742
-1.13964
-1.17933
-1.18266
-1.1867
-1.16125
-1.4255
-1.23181
-1.42924
-1.61208
-1.27777
-1.60781
-1.27012
1.01083
1.72014
1.28957
1.26912
1.14978
1.66716
0.987143
1.71467
0.245307
0.906456
0.881063
0.00448453
1.40998
0.250796
0.881103
0.0577972
0.893867
0.276693
0.84643
0.956525
0.281499
1.24596
1.13249
1.58006
0.951941
1.21329
1.62286
0.96968
-1.47563
-1.20675
-1.22304
-1.4726
-1.64604
-1.64994
-1.22539
0.388813
0.395406
0.984594
1.34949
1.18194
1.19078
1.05175
1.32589
0.983436
-1.24822
-1.42687
-1.41973
-1.58577
-1.28455
-1.29864
-1.59721
-0.782735
-0.48319
-1.26357
-1.21504
-0.41401
-0.749403
-0.453341
-0.711078
-0.925201
-0.723179
-0.618836
-0.753612
-0.800611
-0.596839
-0.774634
-0.999767
-0.750834
-0.651771
-0.934684
-0.683856
-0.880235
-0.509025
-0.659688
-0.330063
-0.25957
-0.540567
-0.60782
-0.308714
-0.479612
-0.507869
-0.232828
-0.252455
-0.553995
-0.288878
-0.436566
0.184956
0.18225
0.181474
0.306959
0.319286
0.326406
0.305629
0.575924
0.760177
0.832983
0.628083
0.631833
0.754975
0.574559
0.575865
0.738586
0.63568
0.832422
0.634306
0.746965
0.5748
0.161038
0.182704
0.183776
0.302574
0.310858
0.305116
0.303478
0.699707
0.630082
0.562966
0.566828
0.822723
0.698763
0.634303
0.57011
0.727494
0.828523
0.636855
0.714955
0.573665
0.635304
-0.677639
-0.849461
-0.652716
-0.503083
-0.624036
-0.518535
-0.585947
-1.11065
-1.19252
-1.10016
-1.1053
-1.17053
-1.11854
-1.17457
0.314488
0.327125
-1.12659
-1.00952
-1.02903
-1.0189
-1.05603
-1.07741
-0.994851
0.940634
0.81965
1.23173
1.03184
1.2595
0.922415
0.833428
0.959016
1.3229
0.857867
1.04408
0.987819
1.28625
0.845713
-0.711941
-0.845652
-0.705712
-0.554967
-0.7331
-0.567582
-0.71653
-0.66971
-0.836219
-0.694995
-0.541612
-0.646559
-0.514326
-0.695655
0.31274
0.299611
-1.06808
-0.97177
-0.949343
-0.948649
-0.989015
-0.917173
-0.972232
0.188083
0.275042
0.276193
-0.672566
-0.168087
0.4541
0.0710721
0.444567
-0.727743
-0.15226
-0.647049
-0.115113
0.0761171
0.422415
0.43517
-0.134648
-0.574916
0.892257
0.811549
1.2155
0.986229
0.909615
1.19608
0.798427
0.877618
1.1433
0.775455
0.972537
0.858177
1.17654
0.786937
0.176557
0.179979
-0.597888
-0.184968
0.0595858
0.434101
-0.222377
-0.792645
0.37336
-0.655214
-0.247647
0.054716
0.400469
-0.927685
-0.242356
0.373762
0.31659
0.181428
0.182325
0.328506
0.415686
0.415651
0.327248
0.570385
0.767169
0.624142
0.828775
0.618917
0.572867
0.77081
0.569379
0.773571
0.610686
0.826361
0.615092
0.775531
0.567376
0.333542
0.181667
0.180431
0.325274
0.415337
0.415429
0.326999
0.561713
0.763271
0.81295
0.590076
0.766507
0.597519
0.556829
0.562827
0.768184
0.605861
0.817057
0.764917
0.564485
0.601825
0.302205
0.194894
0.204509
0.348874
0.435106
0.463094
0.341892
0.530684
0.716329
0.745692
0.532929
0.545065
0.73094
0.523037
0.535617
0.7479
0.55981
0.755783
0.552726
0.739642
0.54024
0.378165
0.193344
0.193675
0.332334
0.408604
0.412907
0.33457
0.551349
0.764913
0.793553
0.585565
0.763016
0.555227
0.579464
0.549337
0.755038
0.566233
0.786903
0.76613
0.543693
0.573858
0.0794135
0.335765
0.315767
-0.130532
-0.0152928
0.0984457
0.384008
0.379074
-0.0387541
-0.106618
-0.128547
-0.109809
0.0934903
0.415171
0.391626
-0.492972
-0.0579319
0.097919
0.392846
0.424119
0.0713937
-0.00205604
0.117519
0.38322
0.000267111
-0.0507283
0.380294
0.133597
0.00664903
0.117923
0.379178
-0.000676891
0.380708
0.143797
0.507244
0.848964
0.897909
0.254954
0.0416954
0.366302
0.131116
0.368085
0.240638
0.038632
0.294478
0.766957
0.710723
0.196694
0.0325286
0.126047
0.367073
0.0260667
0.217945
0.36739
0.167412
0.0148335
0.124852
0.376111
0.152625
0.0209392
0.369811
0.256033
0.197392
0.195259
0.343554
0.465536
0.449461
0.353102
0.24947
0.188587
0.181818
0.348062
0.491246
0.501125
0.353717
0.23702
0.235965
0.241942
0.391062
0.575955
0.576736
0.388148
0.264842
0.230651
0.2273
0.386431
0.578544
0.588342
0.38699
0.611437
0.908957
0.816553
0.814185
0.991837
1.04856
1.20324
2.19778
1.2173
2.21882
1.26179
0.185031
-0.0350688
0.172874
0.278446
0.0554206
0.0472589
0.285585
0.0902245
-0.04908
0.12987
0.261921
0.0180564
0.239287
0.0370127
0.874328
2.40801
1.14895
2.20873
1.08005
-0.0511294
0.0724091
0.0844147
0.293194
0.038265
0.070111
0.259729
0.283573
0.292279
0.290018
0.420849
0.607167
0.613873
0.420286
0.260923
0.295299
0.296918
0.419626
0.608352
0.610645
0.420777
0.203008
-0.00478982
0.195021
0.283837
0.0677467
0.292581
0.0707737
1.68746
2.43503
1.92872
1.43368
1.97324
1.47856
1.43909
2.26606
2.22941
1.74623
1.32025
1.80201
1.30765
1.49786
1.7747
1.91597
1.45622
1.26965
1.39228
1.2533
-1.4369
-1.26414
-1.57157
-0.401406
-0.464008
-0.446312
-0.378142
0.62729
0.671729
0.691521
0.297434
0.375307
0.259466
0.404391
0.819563
0.703074
0.755455
0.327851
0.464259
0.388417
0.42589
-0.538563
-0.602653
0.0167198
-0.533502
0.0114649
-0.186435
-0.200223
-0.086512
-0.108325
-0.084464
-0.086456
-0.107508
-0.108408
-0.087401
-0.105746
-0.0915481
-0.0991526
-0.0959307
-0.0633469
-0.0387402
-0.0324207
-0.0627974
-0.034609
-0.0711962
-0.0650404
-0.100349
-0.185088
-0.196646
-0.195071
-0.175083
-0.177327
-0.124951
-0.123203
-0.106121
-0.104635
-0.122909
-0.106769
-0.124883
-0.107887
-0.110154
-0.126021
-0.121439
-0.11469
-0.113182
-0.106543
-0.112329
-0.112979
-0.114615
-0.115627
-0.0329389
-0.0628097
-0.0596626
-0.0586814
-0.0356149
-0.0299794
-0.0611749
-0.090467
-0.090848
-0.105684
-0.0997427
-0.0964608
-0.105846
-0.0965677
-0.0981888
-0.102367
-0.0882054
-0.103766
-0.0891552
-0.100079
-0.089007
-0.100467
-0.0884906
-0.0638134
-0.019317
-0.0209302
-0.0412883
-0.023552
-0.0435213
-0.0433785
-0.0681779
-0.0311545
-0.0542768
-0.0269193
-0.0260409
-0.0710526
-0.0471917
-0.15946
-0.1593
-0.140013
-0.143578
-0.155881
-0.140834
-0.140576
-0.122899
-0.124195
-0.107182
-0.11048
-0.122634
-0.124879
-0.10828
-0.0634217
-0.0726172
-0.0910419
-0.0899648
-0.0727826
-0.0880929
-0.0659043
-0.0528509
-0.0331142
-0.0301042
-0.0720195
-0.0291137
-0.0682101
-0.058089
-0.0723773
-0.0709627
-0.0877258
-0.093003
-0.0651671
-0.0893374
-0.0789959
-0.0506866
-0.0493331
-0.030788
-0.0244159
-0.0282124
-0.0540131
-0.0487495
-0.0884266
-0.0802933
-0.0787799
-0.0798817
-0.0901619
-0.0895318
-0.080808
-0.168128
-0.15628
-0.168154
-0.157428
-0.167894
-0.15774
-0.157154
-0.162099
-0.155742
-0.158182
-0.142429
-0.141632
-0.142957
-0.140816
-0.108135
-0.111211
-0.111805
-0.112676
-0.105388
-0.108383
-0.109622
-0.124828
-0.108009
-0.125687
-0.107856
-0.129521
-0.109621
-0.122891
-0.0161727
-0.0435469
-0.0523184
-0.0353869
-0.0101092
-0.015855
-0.0311881
-0.0825234
-0.0835385
-0.0918804
-0.0821815
-0.0951774
-0.0660395
-0.0806724
-0.0550569
-0.0845799
-0.0597171
-0.0863431
-0.0589153
-0.0679103
-0.0869082
-0.0881436
-0.133718
-0.084439
-0.125642
-0.114716
-0.116561
-0.0948572
-0.0856622
-0.0916498
-0.0884284
-0.0718346
-0.0917779
-0.0822309
-0.0842664
-0.0852753
-0.0664585
-0.0731324
-0.0882423
-0.0759825
-0.0812768
-0.0646716
-0.106092
-0.081304
-0.0591702
-0.0583398
-0.0659346
-0.0832067
-0.118894
-0.111979
-0.110419
-0.0856307
-0.0859443
-0.0718511
-0.059121
-0.0836105
-0.0857339
-0.0692004
-0.0818923
-0.0531791
-0.023596
-0.023741
-0.0309312
-0.0639442
-0.0685288
-0.0759938
-0.0655057
-0.0448264
-0.0819573
-0.0675221
-0.0856583
-0.0608156
-0.0802401
-0.0746004
-0.0645212
-0.046491
-0.0814241
-0.124463
-0.12193
-0.123792
-0.115372
-0.113783
-0.115606
-0.113624
-0.070364
-0.0828034
-0.076337
-0.0372317
-0.0457123
-0.0800019
-0.0672331
-0.117095
-0.119633
-0.11758
-0.109634
-0.110416
-0.109013
-0.111225
-0.0548212
-0.0698092
-0.0340707
-0.0419146
-0.0248107
-0.0608984
-0.0621975
-0.125745
-0.1242
-0.126202
-0.106903
-0.102114
-0.100878
-0.107683
-0.102225
-0.103595
-0.103725
-0.0968109
-0.0959071
-0.096397
-0.0959169
-0.118549
-0.116197
-0.114794
-0.123013
-0.107602
-0.107414
-0.121089
-0.104383
-0.104533
-0.10432
-0.0969709
-0.0964402
-0.0972253
-0.0968734
-0.0464828
-0.0421041
-0.0182381
-0.0133465
-0.0154222
-0.0483822
-0.0385127
0.0106876
0.000318226
0.0148017
0.0193361
0.00608061
0.0071807
0.026451
-0.0954533
-0.0906527
-0.0892225
-0.0701963
-0.0773993
-0.0767107
-0.0717377
-0.0449575
-0.051855
-0.012906
-0.0294794
-0.0503313
-0.0473932
-0.0112217
-0.0990176
-0.0923897
-0.0940308
-0.0761436
-0.0809136
-0.0825073
-0.0741384
-0.0539758
-0.0647671
-0.016582
-0.0385624
-0.0572472
-0.0619678
-0.0104425
-0.0530174
-0.0586116
-0.0120371
-0.0419222
-0.0607047
-0.0504495
-0.0159135
-0.118579
-0.120605
-0.123002
-0.124186
-0.100648
-0.106847
-0.105828
-0.106155
-0.105345
-0.106481
-0.111299
-0.108788
-0.11109
-0.109242
-0.0701908
-0.0156372
0.00250125
-0.0803271
0.00148616
-0.0685076
-0.0535394
-0.00971169
0.0278022
-0.0915066
0.00446981
-0.0411829
-0.0609434
-0.0165019
-0.00920535
-0.0768802
-0.0558846
-0.0035333
-0.0648243
-0.0273625
0.00487891
0.0277307
-0.0556824
0.00465071
-0.0326522
-0.0511738
-0.0538426
-0.0270951
-0.0329109
-0.0580885
-0.0467308
-0.0193477
-0.048982
-0.0427737
-0.0300705
-0.0120427
-0.0464366
-0.015906
-0.0450135
-0.106996
-0.0864817
-0.0981069
-0.083204
-0.103982
-0.0996914
-0.103017
-0.100658
-0.105285
-0.105585
-0.0959186
-0.0154817
-0.0146515
0.0284144
0.000878258
-0.00428268
-0.022067
-0.00749798
-0.0349296
-0.0267713
-0.00171585
0.0296138
-0.0577187
-0.00281494
-0.0303411
-0.0869436
-0.0938463
-0.0905307
-0.0822792
-0.10258
-0.0782542
-0.105625
-0.050129
-0.0542141
-0.0795173
-0.0964859
-0.0927475
0.0275791
-0.00392998
0.0273471
0.0334593
-0.0259111
0.026248
0.0309128
-0.102206
-0.0970069
-0.0919064
-0.1004
-0.0996718
-0.104037
-0.0918223
-0.0426791
-0.0410388
-0.0340781
-0.0308005
-0.0406735
-0.0203283
0.00741614
0.00295494
-0.00704709
-0.041815
-0.0413413
-0.0304239
-0.0314583
0.0448087
0.0316015
0.0156757
0.043931
0.0290674
0.0433759
0.0397355
0.0486206
0.00783055
0.0215018
0.0390399
0.0373253
0.0407141
0.043152
-0.031867
-0.0271042
-0.0310522
-0.00636302
-0.022789
-0.0219944
-0.00437864
-0.0676193
-0.061126
-0.0638079
-0.0545778
-0.0631419
-0.0594528
-0.0579063
-0.0854538
-0.0700879
-0.0511717
-0.216256
-0.0915728
-0.0464845
-0.0485513
-0.0370375
-0.0384469
0.0425575
0.0385429
0.0425634
0.025549
0.0390126
0.0490204
0.0530477
-0.0362149
-0.0403606
-0.0449278
-0.0255052
-0.0308302
-0.0125313
-0.049461
-0.105071
-0.105463
-0.0924173
-0.19491
-0.0877971
-0.204745
-0.0163655
-0.064116
-0.0196633
0.0210183
0.00665865
0.00317042
0.0267148
-0.0368603
-0.0197431
-0.0195881
0.0259476
-0.0246746
-0.0261667
0.0244206
-0.0783456
-0.0874339
-0.066252
-0.0435087
-0.199161
-0.0622097
-0.171777
-0.0353273
-0.0191146
-0.0204186
0.0234062
-0.0200642
-0.0203982
0.0264488
-0.0118047
-0.0246086
-4.4521e-05
0.0324858
0.0049187
0.0108271
0.0276096
0.0398912
0.0684344
0.0231735
0.0980685
0.0921397
0.0907031
0.0970162
0.040515
0.0668195
0.00165525
0.0807069
0.0771099
0.0797013
0.0696304
0.0284375
0.0338273
0.0287067
0.0652592
0.0313726
0.025831
0.0632717
0.0280918
0.0314069
0.0273804
0.0696894
0.019258
0.068733
0.0243505
-0.00863874
-0.0195612
0.0116688
0.0133269
-0.0454827
-0.0176906
-0.00661646
0.122085
0.137691
0.160638
0.130697
0.154683
0.127472
0.123245
0.0204824
-0.045339
-0.00879665
0.00248023
-0.0101754
0.0214337
0.00261558
-0.0569984
-0.0720255
-0.0718086
-0.0663647
-0.0561968
-0.0670106
-0.0556961
-0.0344774
-0.0433543
-0.0252417
-0.0408793
-0.0241053
-0.0351412
-0.0433098
-0.0368349
-0.0557196
-0.0277524
-0.0558625
-0.0386889
-0.025767
-0.0522363
0.136738
0.161072
0.169909
0.136619
0.175271
0.132743
0.139996
0.0141898
-0.0221833
-0.010665
-0.0375104
-0.00886238
0.0104949
-0.0171722
0.0219058
-0.00803576
0.00162648
-0.0467686
0.0216619
-0.00723207
-5.88062e-05
-0.0620556
-0.0740986
-0.0732089
-0.0671382
-0.0618329
-0.0681289
-0.0608563
-0.0379529
-0.0441759
-0.0271605
-0.043196
-0.0364269
-0.0294945
-0.0454329
-0.0492437
-0.0599925
-0.0481523
-0.0594743
-0.0514739
-0.0454959
-0.0576106
-0.0521495
-0.107888
-0.091981
-0.0605869
-0.0591877
-0.102917
-0.0541785
-0.0379303
-0.0453048
-0.0716954
-0.0710931
-0.0478121
-0.0351828
-0.0739688
0.00112146
-0.0266755
-0.0134339
-0.0370242
0.00605904
-0.0169074
-0.0271327
0.0736047
0.125069
0.109513
0.030511
0.122374
0.0636216
0.0406591
-0.0287697
-0.0429215
-0.0628398
-0.0680075
-0.0397478
-0.0325819
-0.0643696
-0.0186799
-0.0521682
-0.0499695
-0.0476157
-0.016084
-0.0190309
-0.049193
-0.13317
-0.0831349
-0.0918402
-0.0874488
-0.111891
-0.130223
-0.07999
-0.0832786
-0.109121
-0.0748297
-0.122011
-0.126476
-0.0775058
-0.0805231
-0.170633
0.213606
-0.326777
0.147848
-0.309793
0.142845
-0.201703
-0.0470989
-0.0149212
-0.0458044
-0.0203592
-0.0193743
-0.0474655
-0.048702
-0.258549
-0.212063
-0.26397
-0.227271
-0.179279
-0.184457
-0.220621
-0.272932
-0.2158
-0.268968
-0.233207
-0.192605
-0.237745
-0.188687
-0.193731
-0.16309
-0.158481
-0.128197
-0.199024
-0.158727
-0.151981
-0.186483
-0.148162
-0.123055
-0.132763
-0.153993
-0.14302
-0.178053
-0.0755859
-0.0724653
-0.116321
-0.0980546
-0.0782416
-0.109564
-0.069134
-0.246066
0.221852
-0.414482
0.146921
-0.414052
0.148686
-0.240058
-0.0670952
-0.0683349
-0.0436133
0.0015945
-0.00466745
-0.0315385
-0.00764822
-0.0372829
-0.0353874
-0.0489753
-0.0442977
-0.019168
-0.00947322
-0.0152002
-0.0501767
-0.0414198
-0.0714592
-0.0933879
-0.0939928
-0.0598618
-0.101698
-0.0651902
-0.0663368
-0.252208
-0.198188
-0.245708
-0.204243
-0.173919
-0.212687
-0.167828
-0.231724
-0.193149
-0.23851
-0.194852
-0.155578
-0.185703
-0.16185
-0.144885
-0.122497
-0.0910143
-0.0973705
-0.133881
-0.129022
-0.0991712
-0.0798822
-0.0686576
-0.0851461
-0.0821929
-0.15679
-0.142148
-0.103585
-0.120844
-0.167837
-0.135379
-0.109603
-0.00745147
-0.051884
-0.025964
-0.0521377
-0.0451193
-0.0156294
-0.0200575
0.0301847
0.00220742
0.000480778
0.0319007
0.2183
0.281427
-0.189167
0.33769
0.337807
-0.172905
0.214632
0.0417205
0.0716143
0.044563
0.0149276
0.0657587
0.0161339
0.0507943
0.000559239
-0.029825
-0.0253632
-0.00478073
0.0349832
0.00616184
0.0587941
0.0403167
0.0633956
0.0271337
0.0114956
-0.000550648
-0.0474962
-0.0342691
-0.0107049
-0.039021
-0.0148232
0.00547018
-0.0357849
-0.0598993
-0.0320276
-0.0690627
-0.0679617
-0.0394342
-0.0252917
-0.0838477
-0.0578263
-0.0833161
-0.0607705
-0.009622
0.0128871
0.0156732
-0.024815
0.0262641
-0.0234063
-0.0165476
0.199312
0.287009
-0.185311
0.339528
0.329431
-0.190071
0.211137
-0.0256188
-0.0406699
-0.0537809
-0.0143222
0.0055656
0.000104554
0.0250042
0.0517906
0.0410682
-0.00799765
0.0175046
-0.0476425
-0.0752074
-0.0852609
-0.0539494
-0.0578407
-0.0767581
-0.0466676
-0.0488154
-0.0632785
-0.0590498
-0.0529189
-0.0508618
-0.0570206
-0.0474181
-0.00840525
0.000926205
0.00440379
-0.0102
-0.00319526
-0.00120813
-0.0106074
-0.0362206
-0.0520781
-0.0386572
-0.0516258
-0.0410865
-0.0335933
-0.047069
-0.0535638
-0.110115
-0.0605692
-0.0960405
-0.0597453
-0.0544425
-0.109921
0.0497948
0.187277
0.102468
-0.0431526
0.0981034
0.0578241
-0.125523
-0.0334681
-0.0381006
-0.0748408
-0.0771425
-0.0429458
-0.0279041
-0.0830171
0.017494
-0.019332
0.0113441
-0.0140164
0.00389215
0.0249358
-0.02444
0.0696608
0.15858
0.104216
-0.015006
0.106511
0.0637981
0.0198249
-0.0176902
-0.0340641
-0.0588052
-0.0718932
-0.0286964
-0.0235926
-0.0660281
0.0240338
0.00334854
-0.000631839
0.0074902
0.0285215
0.0109842
0.0291143
0.0128505
0.0130989
0.0112556
0.0150813
0.00570404
0.0186237
0.0206133
0.0429984
0.0482812
0.0592535
0.048216
0.0484815
0.0530391
0.0436672
0.0392306
-0.011442
0.0178695
0.00822852
0.0311359
0.0257665
0.00266277
0.0891591
0.1514
0.110993
0.16834
0.106666
0.0962321
0.138531
0.0833551
0.0713202
0.0517261
0.0616344
0.0913229
0.0643581
0.0548544
-0.257512
-0.247701
-0.183569
-0.186897
-0.177281
-0.156538
-0.17775
-0.136464
-0.123497
-0.12432
-0.135479
-0.179093
-0.157119
-0.178315
-0.137411
-0.126452
-0.138692
-0.125577
-0.0964011
-0.0940533
-0.0584716
-0.0595774
-0.0980664
-0.0928102
-0.0556944
-0.0191554
0.0112148
0.00999349
-0.0173182
-0.0292164
-0.00261465
-0.0313051
0.000217866
-0.0963572
-0.0893948
-0.0550692
-0.0609083
-0.090646
-0.0590478
-0.096032
0.0012833
0.00462352
-0.0307346
-0.0240051
-0.0258263
0.00343018
0.00243965
0.0357902
0.00567653
0.00648056
0.0348905
0.184931
0.315602
0.232021
-0.341574
0.251067
-0.299976
0.180195
0.00288555
-0.0337453
-0.0323497
-0.00283942
-0.0299752
0.0027138
0.0011361
0.0493332
0.0229244
0.0190713
0.0546369
0.00655902
0.00540645
-0.0231297
-0.0325906
-0.0230123
-0.000231144
0.00469632
0.0747202
0.0424745
0.0423664
0.0749557
0.172679
0.227805
0.200683
-0.437528
0.18643
-0.405003
0.176847
0.0650975
0.027177
0.0314693
0.0600636
-0.21128
-0.19956
-0.118611
-0.116398
-0.176567
-0.15611
-0.17623
-0.133447
-0.122511
-0.134115
-0.122291
-0.175877
-0.155962
-0.175913
-0.133202
-0.122426
-0.132745
-0.122074
-0.0949903
-0.0917903
-0.0658927
-0.0541745
-0.0976054
-0.0882532
-0.0641079
-0.0134883
0.0143578
-0.0138527
0.0147829
-0.0233354
-0.00795577
-0.0258434
-0.00353176
-0.0939898
-0.0878948
-0.0525523
-0.0620668
-0.0939161
-0.0877403
-0.0628371
0.0776703
0.0428514
0.0756763
0.0433043
0.10435
0.17915
-0.131998
0.145188
0.14915
-0.266372
0.100367
0.0296135
0.007075
0.0212405
0.0135253
0.0733842
0.0563107
0.0570047
0.0716146
0.0839625
0.0711376
0.0837445
0.133837
0.148454
0.151228
0.153505
0.153737
0.13046
0.156427
0.153307
0.180032
0.181906
0.191235
0.174183
0.158311
0.169585
0.0786688
0.0603263
0.0623469
0.070716
0.0784009
0.0685961
0.0820474
0.12643
0.142247
0.148928
0.133004
0.146881
0.128217
0.136865
0.126926
0.13751
0.155543
0.146446
0.152972
0.128054
0.134898
-0.223431
-0.224606
-0.202802
-0.200204
-0.0434089
0.0520483
-0.0441422
-0.0327254
-0.0425315
-0.00524892
-0.0757233
-0.0734964
-0.0951872
-0.054907
-0.204637
-0.205043
-0.196827
-0.197111
0.00771711
0.0450784
-0.0630132
-0.0256439
-0.0163951
0.0480736
0.00155594
-0.0154566
-0.00120146
0.0040302
-0.0354927
0.00245196
-0.0200373
0.0135337
-0.0888512
-0.0856311
-0.0935334
-0.0953344
-0.110031
-0.235881
-0.147759
-0.10414
-0.239549
-0.0959219
-0.11968
-0.0986161
-0.194876
-0.0743074
-0.139147
-0.0858399
-0.241924
-0.084914
-0.260393
-0.230813
-0.224783
-0.251521
-0.103451
-0.0879416
-0.114912
-0.108593
-0.0777736
-0.0973467
-0.0802911
-0.137796
-0.0917737
-0.125661
-0.11824
-0.084823
-0.127275
-0.0840732
-0.136186
-0.235763
-0.113162
-0.170562
-0.12732
-0.119088
-0.221132
-0.147726
-0.269115
-0.13106
-0.182864
-0.158144
-0.127605
-0.223118
-0.494748
-0.473769
-0.459261
-0.479587
-0.288886
-0.252578
-0.299478
-0.270397
-0.214241
-0.264861
-0.220181
-0.31613
-0.262188
-0.307938
-0.278163
-0.232212
-0.280882
-0.229873
-0.263582
-0.243859
-0.231418
-0.218068
-0.25877
-0.222271
-0.232919
-0.269937
-0.238808
-0.23879
-0.226512
-0.275773
-0.216567
-0.238552
0.167734
-0.0404888
0.00314363
0.0180886
0.054117
0.177354
-0.0281972
1.61409
2.07068
1.72621
1.77871
2.06739
0.0388662
0.0614674
-0.00849796
0.203561
0.188763
-0.0185514
0.0637435
2.06456
1.37489
1.81254
1.75236
1.62248
1.69446
2.30099
0.179338
0.27781
0.0405261
0.100719
0.269471
0.0300077
0.189934
0.16047
0.00975543
0.242948
0.0931725
0.257346
0.138754
0.0201092
0.0385311
0.0207892
-0.149724
-0.0392559
-0.131349
0.0241552
0.0299239
0.232359
1.12969
0.471804
0.477155
0.20892
0.0531168
-0.031598
-0.0785669
0.0352906
-0.113512
0.0394077
0.0934693
0.00740224
-0.0701225
0.0107246
-0.162661
-0.170554
-0.0020484
0.0141658
0.20089
0.284098
0.0496659
0.122585
0.286489
0.198775
0.0603013
0.122176
1.26408
0.455803
0.456148
0.204823
-0.973822
-0.977802
-0.563409
-0.420712
-0.562648
-0.505849
-0.386133
-0.507041
-0.386181
-0.556289
-0.42042
-0.561058
-0.504764
-0.384686
-0.501607
-0.385908
-0.451574
-0.344306
-0.272959
-0.349321
-0.448445
-0.345852
-0.352997
-0.876526
-0.907079
-0.872136
-0.902021
-0.453042
-0.346289
-0.273673
-0.357553
-0.455211
-0.3462
-0.355091
-0.894276
-0.888897
-0.894006
-0.888497
-0.536329
-0.599975
-0.720028
-0.710836
-0.552144
-0.584312
0.0798694
0.471375
0.142514
0.155573
0.15477
0.272196
0.0783866
-0.542578
-0.723678
-0.605415
-0.723345
-0.606899
-0.541282
-0.555125
-0.685566
-0.768059
-0.559863
-0.687202
-0.76074
0.0800771
0.45468
0.0876534
0.156895
0.156745
0.0143062
0.0810574
-0.535808
-0.728608
-0.644071
-0.654617
-0.731849
-0.534701
-0.288056
-0.105389
-0.295654
-0.285592
-0.0901475
-0.0929104
-0.276053
-0.309582
-0.109034
-0.30361
-0.295309
-0.103497
-0.302589
-0.0968637
-0.253411
-0.0847504
-0.165943
-0.0401686
-0.263848
-0.076427
-0.153055
-0.239466
-0.0678975
-0.0339744
-0.121281
-0.0713812
-0.136322
-0.225989
0.170761
-0.00480848
-0.0213836
0.0650059
-0.00160017
0.0590544
0.168179
0.212533
1.20666
2.19142
0.421152
0.420768
2.1568
0.262053
0.163809
-0.0306234
-0.0328079
0.0369977
-0.011063
0.141432
0.0528104
0.165873
-0.00545851
0.0126489
0.0690879
0.00421854
0.0761952
0.164453
0.342346
1.03842
1.99147
0.428553
0.43213
1.87264
0.321856
0.157712
0.0175065
0.0208565
0.0727387
0.0140071
0.0758871
0.149407
-0.276759
-0.0980864
-0.267861
-0.252301
-0.0871089
-0.262802
-0.0847953
-0.246658
-0.0953605
-0.255578
-0.238598
-0.0790569
-0.2294
-0.0817193
-0.180124
-0.054637
-0.0194985
-0.0673881
-0.170481
-0.0574565
-0.0743645
-0.196005
-0.0640646
-0.0225717
-0.103769
-0.209374
-0.0609709
-0.089762
-1.02832
-1.03685
-0.891583
-0.885129
-0.520641
-0.349997
-0.506383
-0.4757
-0.319832
-0.490297
-0.311373
-0.470292
-0.340692
-0.488058
-0.457827
-0.290649
-0.442007
-0.301978
-0.928204
-0.92333
-0.925201
-0.927152
-0.899592
-0.864745
-0.869807
-0.896257
-1.32432
-1.14841
-0.00555653
0.0874632
-1.06866
0.0618202
-2.55394
-0.325035
0.410762
0.548831
0.34914
0.347661
0.104204
0.172421
-2.69592
-2.62421
-2.94057
-3.10699
-3.25428
1.02713
1.07084
1.09887
0.935961
0.872911
0.93656
0.857693
1.4764
1.3592
1.3845
1.21689
1.32289
1.34297
1.2538
1.01185
1.25299
1.02332
0.952625
1.14515
1.13649
0.941367
1.21985
0.967764
1.00524
0.919812
1.02321
1.09729
0.872306
0.805225
0.84595
0.595328
0.748478
0.929367
0.750448
0.656233
0.864499
1.00406
0.807058
0.745127
0.982942
0.747235
0.857934
-2.02385
-2.4047
-2.30526
-1.86177
-1.67054
-1.54721
-2.01651
-2.64055
-2.60129
-3.07292
-3.19493
-0.994039
-1.34739
0.0133415
0.0212182
-1.07919
-1.16906
-0.0765693
0.780423
0.976726
0.830471
0.691103
0.747213
0.81899
0.637244
1.03907
0.936292
0.888782
0.778629
0.95416
0.874327
0.833735
0.652372
0.778754
0.525444
0.553712
0.699691
0.70803
0.503074
-2.59185
-2.56358
-2.59874
-3.1053
-2.77584
-2.75359
-3.15155
1.01462
0.919034
0.9479
0.752518
0.822776
0.765063
0.830776
-0.842583
-0.748181
0.019928
-0.0310255
-0.841599
-0.786558
0.0917974
-0.979489
-0.899419
0.309509
0.0175513
-2.97207
-0.813946
0.158112
-0.175014
0.0774497
0.121892
0.408641
0.068664
0.0760305
0.369988
-0.0849654
-0.0820841
-0.0944658
-0.0904591
-0.0894991
-0.0843506
-0.0829938
-0.058482
-0.0442295
-0.0498607
-0.054665
-0.053129
-0.0477179
-0.0560109
-0.0323218
-0.0363601
-0.0589945
-0.0690499
-0.0413321
-0.0762214
-0.0530734
-0.030373
-0.0489815
-0.0321314
-0.0438943
-0.0262452
-0.0534342
-0.256704
-0.247191
-0.245278
-0.247495
-0.253357
-0.249128
-0.246583
1.50028
1.69054
1.6321
1.60256
1.58136
1.53711
1.62749
-1.27562
-2.61365
-0.616128
-0.702829
-1.4594
-0.541913
-1.91258
-0.204482
-0.859379
0.0265638
0.478709
-1.04752
0.599297
-0.49524
1.84485
1.62387
1.91731
1.67103
1.6222
1.84089
1.93215
1.84632
1.67698
1.61493
1.95464
1.61891
1.94497
1.84522
1.86142
1.61532
1.6964
1.99927
1.61532
1.84953
2.00467
1.86601
1.69296
1.61657
1.98088
1.6181
1.85891
1.99803
0.613152
-0.701053
0.902695
0.176123
-0.657449
0.623081
0.851525
-0.313033
-0.29163
-0.313953
-0.334635
-0.32608
-0.367856
-0.303741
-0.40433
-0.348066
-0.435923
-0.36972
-0.435453
-1.01682
-0.698243
-0.660596
-1.01689
-0.854445
-0.844649
-0.663617
-0.709916
-0.817776
-0.83007
-0.716567
-0.701487
-1.01795
-1.01733
-0.83555
-0.668841
-0.666427
-0.827607
-0.623243
-0.564456
-0.765715
-0.762521
-0.580819
-0.625927
-0.564243
-0.759421
-0.630561
-0.582492
-0.564111
-0.628414
-0.756784
-0.564113
-0.843459
-0.729635
-0.855921
-0.723514
-0.706564
-0.703364
-0.694009
-0.636728
-0.679412
-0.644693
-0.686541
-1.10711
-1.10324
-0.915475
-0.917588
-0.701178
-0.676375
-0.685731
-0.630819
-0.683622
-0.68611
-0.62067
-0.576797
-0.661475
-0.596507
-0.520833
-0.666273
-0.564396
-0.534346
-0.819969
-0.781484
-0.817224
-0.784397
-0.580987
-0.657088
-0.600415
-0.543494
-0.587705
-0.667085
-0.537141
-0.82405
-0.793021
-0.825514
-0.79004
-0.120781
-0.227832
-0.181625
-0.0703106
-0.0969504
0.165707
0.175984
0.16464
0.120251
0.14108
0.142698
0.122564
0.0128229
0.00204481
0.0131322
0.041035
0.0202508
0.0365557
0.0335836
-0.00752301
0.0102569
0.00992529
0.0407723
0.0466377
0.0432621
0.0406055
-0.0738348
-0.0736939
-0.0766707
-0.0747414
-0.0746477
-0.0712801
-0.0713891
-0.0654327
-0.0795383
-0.08085
-0.0767519
-0.0646353
-0.0666422
-0.0751078
-0.0722314
-0.0709392
-0.0656257
-0.0663077
-0.0680771
-0.0686274
-0.0702483
-0.0666307
-0.0769584
-0.0777392
-0.0722525
-0.0655649
-0.0661364
-0.0714955
-0.0680245
-0.0670648
-0.0677263
-0.06605
-0.066781
-0.0685263
-0.0655651
-0.0681793
-0.0661399
-0.0647812
-0.0674944
-0.0668052
-0.0674219
-0.0656066
-0.348701
-0.307169
-0.2909
-0.348674
-0.332129
-0.330594
-0.289851
-0.306246
-0.348281
-0.348576
-0.328915
-0.287462
-0.288728
-0.327062
-0.262154
-0.268218
-0.295558
-0.294127
-0.245938
-0.261387
-0.267267
-0.292502
-0.265031
-0.245119
-0.259295
-0.260395
-0.266209
-0.290745
-0.292557
-0.230692
-0.293136
-0.257355
-0.188758
-0.252194
-0.195787
-0.293451
-0.235152
-0.293345
-0.260845
-0.207479
-0.262307
-0.201948
-0.227436
-0.171977
-0.184292
-0.131441
-0.230165
-0.166282
-0.185254
-0.170278
-0.218469
-0.155061
-0.130584
-0.143633
-0.20496
-0.160395
-0.17986
-0.0647334
-0.0755176
-0.0765863
-0.0707151
-0.0626701
-0.0639787
-0.0694924
-0.067439
-0.0664132
-0.0653275
-0.0670016
-0.0677811
-0.0659295
-0.0648673
-0.066298
-0.0631671
-0.0621006
-0.0655863
-0.0646229
-0.0649342
-0.0636176
0.0357619
0.0192123
0.0233125
0.0325497
0.0370698
0.0406377
0.0281532
0.0446885
0.0562035
0.0595614
0.0595443
0.0511819
0.0494838
0.0542321
0.0409308
0.0426488
0.0448651
0.0544335
0.0468083
0.0361845
0.0499883
-0.291862
-0.21407
-0.2895
-0.23587
-0.182685
-0.247237
-0.176325
-0.209633
-0.282496
-0.288615
-0.239316
-0.172126
-0.173503
-0.236013
-0.163998
-0.144692
-0.130202
-0.130676
-0.145624
-0.155626
-0.13055
-0.201684
-0.165453
-0.154342
-0.169831
-0.153557
-0.126836
-0.137661
-0.205285
-0.147887
-0.129302
-0.194668
-0.133377
-0.187418
-0.13776
-0.224552
-0.224336
-0.165148
-0.154021
-0.205588
-0.183084
-0.20671
-0.186823
-0.130883
-0.185849
-0.132496
-0.20381
-0.185135
-0.205683
-0.18444
-0.138845
-0.179998
-0.134208
-0.0690271
-0.0320058
-0.0768289
-0.0379476
-0.0668414
-0.0507786
-0.0689686
-0.043923
0.0547647
0.0444955
0.0412067
0.0532235
0.0683882
0.0636784
0.0572644
0.0594958
0.0620899
0.065284
0.0796778
0.0544595
0.0679596
0.0713408
0.0646701
0.0804924
0.0838408
0.0879719
0.0745686
0.0696342
0.0776274
0.0474671
0.0442977
0.0393072
0.0471095
0.0588349
0.0538071
0.0522827
0.0490739
0.0525754
0.0722047
0.0521677
0.0583794
0.0408751
0.0600607
0.0552456
0.069382
0.0709764
0.0789954
0.0643151
0.0604222
0.066161
-0.205643
-0.178552
-0.204117
-0.1855
-0.130036
-0.186656
-0.130517
-0.217536
-0.217699
-0.19181
-0.19222
-0.176645
-0.19899
-0.203156
-0.184451
-0.135897
-0.130159
-0.18073
-0.0984384
-0.0269465
-0.0871207
-0.0222842
-0.110133
-0.0190516
-0.122053
-0.0201725
-0.21615
-0.222451
-0.219525
-0.213762
-0.216236
-0.194801
-0.215317
-0.197979
-0.212164
-0.186191
-0.206752
-0.192611
0.0172735
0.00531679
-0.00232183
-0.00450718
0.0416424
0.0198172
-0.00312487
-0.0081201
0.0257062
0.0325573
0.000901003
0.029558
-0.00318357
0.000101681
-0.00510509
0.0451399
-0.0363671
0.0355674
0.0423358
-0.0124707
-0.00185254
-0.269107
-0.179512
-0.268901
-0.257685
-0.163204
-0.257326
-0.171489
-0.285889
-0.187145
-0.277044
-0.26982
-0.184735
-0.273228
-0.17924
-0.267603
-0.176798
-0.193353
-0.160308
-0.245665
-0.17622
-0.309665
0.179718
-0.829074
-0.235957
-0.159751
-0.150909
-0.223342
-0.236839
-0.167903
-0.237854
-0.68058
-0.659576
-0.611768
-0.629258
-0.428641
-0.476819
-0.424981
-0.399534
-0.439895
-0.401563
-0.441081
-0.464252
-0.471397
-0.435206
-0.408506
-0.437217
-0.425257
-0.437806
-0.36895
-0.400395
-0.346071
-0.34298
-0.380696
-0.400034
-0.329034
-0.57175
-0.518404
-0.642309
-0.47236
-0.361545
-0.399369
-0.347941
-0.316511
-0.361211
-0.402003
-0.323829
-0.552562
-0.462934
-0.571845
-0.456444
-0.563995
-0.422265
-0.429729
-0.567216
-0.546572
-0.543285
-0.419944
-0.412405
-0.559369
-0.562662
-0.533011
-0.402292
-0.40781
-0.529759
-0.428345
-0.536571
-0.533034
-0.534093
-0.410189
-0.418158
-0.541087
-0.525406
-0.398253
-0.394937
-0.533134
-0.404225
-0.524122
-0.532738
-0.47717
-0.317699
-0.469659
-0.474864
-0.307837
-0.47693
-0.309846
-0.46965
-0.319874
-0.475098
-0.486937
-0.315102
-0.483254
-0.312515
-0.486882
-0.306082
-0.505802
-0.289117
-0.486614
-0.302773
-0.510562
-0.473892
-0.297027
-0.286578
-0.51029
-0.480805
-0.299958
-0.498748
-1.24872
-1.2523
-0.927224
-0.925562
-0.769519
-0.706829
-0.822573
-0.674476
-0.669585
-0.662407
-0.662438
-0.849354
-0.706043
-0.837674
-0.682614
-0.658676
-0.688109
-0.660059
-0.622863
-0.633415
-0.600197
-0.573754
-0.626526
-0.634137
-0.570604
-0.835631
-0.790884
-0.827443
-0.792476
-0.614375
-0.643634
-0.598211
-0.552257
-0.603544
-0.635464
-0.561031
-0.838401
-0.789576
-0.836012
-0.793547
-0.466247
-0.307946
-0.465871
-0.456553
-0.306992
-0.458862
-0.297413
-0.30676
-0.45189
-0.457073
-0.449123
-0.288994
-0.296268
-0.446545
-0.458401
-0.278336
-0.494528
-0.274567
-0.286141
-0.457239
-0.493428
-0.464781
-0.297812
-0.274798
-0.494233
-0.464331
-0.28706
-0.497793
-0.294709
-0.177132
-0.303536
-0.326758
-0.161677
-0.317273
-0.166223
-0.320444
-0.185602
-0.31422
-0.337862
-0.180453
-0.343155
-0.174434
-0.381859
-0.171197
-0.476872
-0.16076
-0.385265
-0.1654
-0.475726
-0.370437
-0.153495
-0.15322
-0.451181
-0.359878
-0.157507
-0.463432
-0.96479
-0.945684
-0.7983
-0.819937
-0.455672
-0.531829
-0.475896
-0.439203
-0.503148
-0.419728
-0.524944
-0.515052
-0.553001
-0.49711
-0.459651
-0.56202
-0.477941
-0.545404
-0.399645
-0.544439
-0.44866
-0.368769
-0.419149
-0.528103
-0.349338
-0.656319
-0.584187
-0.629215
-0.609502
-0.381362
-0.490395
-0.433566
-0.318614
-0.363919
-0.509521
-0.33386
-0.681034
-0.651122
-0.702201
-0.632282
-2.65623
-3.38522
-3.75897
-3.00966
-2.59385
-3.5487
-2.99416
-1.96388
-2.68055
-2.13116
-2.53716
-2.55286
-2.53875
-2.90101
-2.75371
-3.19936
-2.59356
-2.79152
-3.03162
-2.29356
-3.25729
-2.25139
-2.553
-2.86505
-2.59486
-3.14298
-2.54164
-2.66943
-2.53887
-2.85207
-2.1506
-2.7981
-2.3995
-1.78747
-2.4391
-1.77127
-0.0393324
-0.0446851
-0.0396623
-0.0245422
-0.0255687
-0.0260201
-0.0249928
-0.0434273
-0.0435125
-0.0266002
-0.0241674
-0.0393347
-0.0252867
-0.026534
-0.00478853
0.0123341
0.0151617
0.0437338
0.0487416
0.045422
0.052231
-0.107474
-0.0938863
-0.106681
0.0549302
0.0738409
0.0683192
0.0747223
0.0681258
0.0613784
0.0820484
-0.116804
-0.131512
-0.119889
-0.130923
-0.12058
-0.121612
0.0702656
0.0478478
0.0662354
0.0778789
0.0584066
0.0589472
0.0790736
-0.0920037
-0.100197
-0.106277
0.0811726
0.0741355
0.100463
0.0880764
0.0674122
0.0883077
0.0930578
-0.0140616
-0.0307473
-0.0164699
-0.0359043
-0.0209263
-0.0254239
-0.0360054
0.0255716
0.0949209
0.0872255
0.0811101
0.0983412
-0.0258674
-0.0147896
-0.0211508
-0.0512483
-0.0540142
-0.0482412
-0.04913
-0.0774222
-0.0542693
-0.110272
-0.0134374
-0.0409526
-0.0818048
-0.103296
0.0838182
0.0555714
0.0943295
0.0799835
0.0696572
0.0666165
0.0987823
0.0927991
0.0830011
0.107617
0.100591
0.0777614
0.0968397
0.106456
-0.057968
-0.00480864
0.00453754
-0.0611054
-0.0410203
-0.0234652
-0.0823435
0.0944988
0.0917105
0.0990286
0.131094
0.125101
0.125234
0.128465
-0.102693
-0.0893808
-0.107248
0.0938786
0.114016
0.105532
0.140263
0.13833
0.132779
0.155697
0.17839
0.189744
0.231656
0.273666
0.181097
0.219901
0.194735
-0.12826
-0.0847442
-0.509233
0.0640715
-0.124766
-0.085976
-0.399551
0.15868
0.170477
0.23651
0.174005
0.150605
0.174279
0.180353
-0.439867
-0.117258
0.141123
0.102798
-0.120195
-0.609073
-0.12847
0.0270114
0.057967
0.0290039
0.0561112
0.110273
0.0598466
0.100187
0.00677093
0.0202319
0.0307686
0.0539694
0.0299225
0.0294465
0.0489744
0.0899649
0.0930574
0.0452212
0.0634049
0.0607221
0.0356574
0.0242645
0.0175992
0.0199612
0.0433854
-0.32006
-0.0710824
-0.093711
-0.0801652
-0.328223
-0.300895
-0.0595344
-0.403461
-0.411525
-0.411114
-0.404678
-0.37827
-0.350776
-0.36365
-0.330062
-0.337254
-0.34381
-0.327034
-0.33012
-0.334804
-0.34558
-0.316881
-0.301253
-0.305688
-0.313173
-0.286239
-0.29106
-0.260724
-0.273103
-0.277266
-0.300869
-0.267379
-0.469168
-0.443569
-0.509589
-0.427361
-0.450224
-0.42196
-0.44228
-0.421902
-0.29718
-0.320595
-0.283376
-0.288747
-0.310537
-0.312012
-0.278324
-0.939433
-0.938444
-1.00905
-0.683911
-1.0094
-0.882404
-0.649711
-0.880708
-0.649332
-1.01301
-0.682602
-1.01093
-0.878858
-0.646857
-0.875756
-0.64799
-0.671145
-0.616031
-0.580929
-0.591151
-0.668044
-0.616372
-0.584831
-0.798305
-0.752603
-0.802122
-0.748958
-0.79736
-0.743137
-0.794421
-0.7471
-0.67558
-0.617012
-0.591211
-0.590086
-0.675103
-0.616944
-0.590092
0.214602
-0.217701
-0.0483664
-0.0563796
-0.162842
0.214499
-0.222531
-0.0601319
-0.143954
-0.220819
0.232175
0.219166
-0.223062
-0.0588015
0.15198
0.374776
-0.0560093
-0.00505163
0.365832
0.167721
-0.0190337
0.128756
-0.0724572
-0.0903251
0.442034
0.339506
-0.0495984
0.109823
-1.0862
-1.08686
-0.91972
-0.918317
-0.623293
-0.68085
-0.629671
-0.586971
-0.66882
-0.582589
-0.669884
-0.639209
-0.683461
-0.634084
-0.59094
-0.674169
-0.595639
-0.672368
-0.537501
-0.652418
-0.497772
-0.566732
-0.54318
-0.650269
-0.490745
-0.84269
-0.798499
-0.841732
-0.804738
-0.843269
-0.812755
-0.841865
-0.810845
-0.533367
-0.647436
-0.563412
-0.479935
-0.528772
-0.648022
-0.485768
-0.0078768
-0.138135
-0.100446
-0.0166081
1.98343
1.95198
1.96875
1.88827
1.28489
1.8258
1.94789
1.922
1.95101
1.18758
1.68259
1.76672
1.61447
1.12905
1.24166
1.6667
1.41096
1.29998
0.813557
-0.357359
0.628466
-1.62883
0.37596
-1.31454
-0.320363
0.556684
-1.36653
-2.76313
-2.06925
-2.81192
-1.68533
-1.29884
-1.71249
-1.23435
-3.68658
-0.632133
-3.7999
-0.60463
-1.43329
-1.49122
0.0483575
0.530872
-0.141972
-0.535935
0.196193
-0.656308
0.136329
-2.73833
-1.922
-1.01682
-1.69243
-1.01356
-0.731654
-0.707157
0.104481
0.1013
0.102392
0.149661
0.1403
0.153727
0.138331
0.0111261
0.100895
0.105811
0.134804
0.142962
0.14495
0.13514
0.00244851
0.0803786
0.118444
0.150938
0.154297
0.160306
0.148025
0.281193
0.167306
0.181246
0.157927
0.247998
0.134112
0.163146
0.173109
0.16831
0.218399
0.126885
0.143439
0.120605
0.15367
0.015933
0.0239046
0.0303721
0.0256564
0.00703542
0.0161171
0.0167212
-0.0877957
-0.0835267
-0.0745644
-0.0861648
-0.0621344
-0.0678872
-0.0520404
-0.0541333
-0.0594746
0.0347463
0.0369013
0.0521224
0.0374196
0.046035
0.0258709
0.0389475
-0.0793838
-0.0625573
-0.0679592
0.0233151
0.00571653
0.0137775
0.025807
0.0159484
0.0127851
0.0257601
-0.0335852
-0.0634145
-0.0356638
-0.10255
-0.150544
-0.120846
-0.112145
-0.0973298
-0.0954291
-0.137979
-0.0763941
-0.0643753
-0.0717227
-0.0884369
-0.0774199
-0.0857036
-0.0792441
-0.00600864
0.0232399
-0.00699727
-0.0642194
-0.0385287
-0.0359772
0.0242872
-0.00775009
-0.00669062
-0.101667
-0.0888163
-0.0787091
-0.106812
-0.0879229
-0.122872
-0.090383
-0.107795
-0.104241
-0.104395
0.0912215
0.0861508
0.0898826
0.120892
0.123008
0.122024
0.121959
0.0875105
0.0840036
0.0878432
0.11944
0.120191
0.119462
0.12045
0.147352
0.168214
0.240798
0.177756
0.148035
0.16807
0.17651
-0.123675
-0.0834195
-0.512649
0.0312267
-0.120971
-0.0852278
-0.528857
0.14794
0.169294
0.240388
0.174697
0.148205
0.168788
0.175633
-0.125593
-0.0882503
-0.551286
0.0284944
-0.0864949
-0.129269
-0.535542
0.00119129
0.00278534
0.0121992
0.018987
-0.00124307
-0.00159498
0.0196998
-0.0413106
-0.0200805
-0.0301876
-0.0112036
-0.0427109
0.0195538
0.0441441
0.0320552
0.0507205
0.0650769
0.0464089
0.0687536
0.0736274
0.115798
0.163113
0.139032
0.091243
0.0962817
0.108807
-0.0440308
0.036667
0.0297837
0.0378019
0.0312298
0.0063419
-0.205814
0.0206277
0.0200511
0.0953974
-0.0251212
-0.0102568
0.0510371
0.0197505
-0.129952
-0.0288497
-0.537498
0.0559209
-0.0121802
-0.178954
-0.471474
0.219034
-0.584464
-0.495349
0.206329
0.319285
0.323936
0.152649
-0.0109228
0.0549812
-0.0171529
0.11899
0.124646
0.119652
0.126717
-0.103344
0.048311
-0.0296207
0.120909
0.117168
0.0987435
0.126119
0.0264396
0.084399
0.0236718
0.0410892
0.154247
0.0469564
0.164262
0.0197457
0.0617368
0.0525344
0.0842723
0.0157088
0.0198794
0.0361348
0.162134
0.162722
0.0324255
1.13831
1.16891
1.23696
1.13481
1.20181
1.23748
1.19931
1.7009
1.88073
2.15012
1.86622
1.68841
1.62767
1.63862
1.8406
1.6562
2.14019
1.85362
1.67241
1.61487
1.59935
1.61581
2.09492
1.81025
1.81061
1.6232
1.58264
1.57765
1.82293
2.1006
1.64
1.81297
1.63119
1.58717
1.59192
0.383062
2.15596
0.684669
0.874508
1.63875
1.7201
0.773687
1.87491
0.991277
2.39021
0.933617
0.746527
0.947098
1.84687
1.72487
1.91296
2.24345
1.92052
1.73126
1.65125
1.65066
1.92128
2.24985
1.73529
1.92499
1.73785
1.65054
1.64375
1.76024
2.09123
1.74639
1.5925
1.74585
1.78089
1.58342
1.91203
2.14502
1.73821
1.73107
1.61368
1.85641
1.63278
0.376519
0.372279
0.383268
0.397476
0.401469
0.431673
0.406414
0.413929
0.408298
0.418412
0.587542
0.623981
0.568604
0.533847
0.591339
0.550132
0.226316
0.180992
0.181823
0.315754
0.35073
0.359478
0.313029
0.127042
0.186247
0.184636
0.29169
0.282512
0.27012
0.296862
0.354809
0.362776
0.370739
0.360492
0.352736
0.32781
0.352808
0.341184
0.285471
0.270847
0.358273
0.590389
0.344361
0.322242
0.54183
0.321705
0.137522
0.269064
0.268806
0.558635
0.732001
1.40936
0.533346
1.39331
0.484113
1.36047
0.718036
0.508353
1.3755
0.267153
0.266985
0.363597
0.689344
0.368282
0.388192
0.708532
0.370496
0.279579
0.182215
0.181381
0.324229
0.405786
0.398222
0.326442
0.349885
0.182211
0.181761
0.318085
0.409844
0.39967
0.322315
0.294541
0.205542
0.203808
0.34908
0.463037
0.45991
0.351599
0.380064
0.188863
0.186142
0.313105
0.396445
0.38778
0.317261
0.156688
0.315254
0.312437
0.598636
1.48803
0.777125
0.625423
1.50862
0.667079
1.58982
0.799393
0.649444
1.54392
0.113415
0.523812
0.549365
0.755049
0.749467
2.16713
1.0025
0.739965
2.13681
0.752821
0.719375
2.0817
0.992441
0.72977
2.11558
0.417418
0.954949
0.770146
-1.25231
-0.708468
-0.764499
-1.27446
-0.937711
-0.833457
-0.167479
2.02182
0.470551
-0.155602
1.95011
2.04967
1.0281
1.15035
1.7331
1.01883
2.08087
1.72734
2.05954
1.12851
1.85032
1.20835
1.08545
1.77362
-0.0928747
0.472631
1.86043
-0.126345
1.89084
0.142313
0.647085
0.641482
-0.642676
0.730671
0.762193
2.19709
1.02951
0.769614
2.22772
0.719225
0.779953
2.2734
1.03568
0.776514
2.24612
0.271936
0.20398
0.204158
0.354029
0.454678
0.454424
0.354194
0.25269
0.188283
0.190201
0.362602
0.529607
0.536905
0.360983
0.257686
0.253174
0.259096
0.406815
0.571452
0.597353
0.399867
0.250457
0.207696
0.202165
0.371219
0.567669
0.56286
0.374189
-1.1276
-0.643467
-0.608572
0.467538
0.725089
0.717792
-1.00337
-0.526306
-0.564611
-0.0136047
0.483816
1.79631
-0.0261459
1.81927
2.13259
1.01967
1.74607
1.13975
2.11383
1.01445
1.75412
-0.0534668
0.488522
1.85414
-0.0406643
1.83341
2.14808
1.00992
1.76806
1.13725
1.01246
2.16117
1.76227
-0.93008
-0.269065
-0.301072
0.954115
1.1642
1.19948
-0.95311
-0.363271
-0.331337
1.91823
1.21534
1.54244
1.14349
1.23191
1.92213
1.53289
1.42392
2.06942
1.34072
1.36893
2.1182
1.64194
-0.218975
1.63268
1.40087
0.333732
1.39556
0.334975
1.59515
-0.25793
1.60631
1.41294
0.269044
1.47816
0.324676
-0.923777
-0.218974
-0.28727
1.1945
1.40141
1.37426
-1.22806
2.70379
-0.249378
-0.283484
2.36236
0.267564
0.274281
0.27157
0.41283
0.597261
0.595841
0.413278
0.28396
0.295942
0.28659
0.396968
0.614096
0.618428
0.411109
1.70227
-0.187861
1.69935
1.39128
0.335347
1.40734
0.325222
1.63015
2.05917
1.48141
1.46503
2.02458
-0.149418
1.40965
1.74305
1.37239
0.31636
0.325018
1.26368
1.4599
2.16515
2.142
1.6499
1.28807
1.28235
1.67421
1.44333
2.01519
2.03922
1.54904
1.23658
1.238
1.52828
-3.08459
-2.62337
-3.28406
-1.80541
-1.37766
-1.78824
-1.42301
-2.32202
0.0705861
0.69154
0.197534
-0.594184
0.199583
-0.676852
0.235753
-2.72438
-3.2571
-3.27586
-2.06608
-2.00163
-1.59704
-2.58742
0.562269
0.71447
0.252183
-0.641034
0.327111
0.000324844
0.221577
1.40368
1.05867
0.964068
-3.56187
1.35065
1.57931
0.722386
0.897311
-0.633597
-1.45879
-0.0191771
-0.102926
0.0569398
-1.28883
-0.837326
-0.48269
0.176952
-1.1436
-0.127417
-0.515094
0.113415
-1.28732
-0.180455
-0.169357
-0.161591
-0.160606
-0.165175
-0.156407
-0.152336
-0.148371
-0.150626
-0.151491
-0.150116
-0.0376085
-0.0686298
-0.0360862
-0.0656671
-0.0414866
-0.0669115
-0.0338868
-0.0352057
-0.0654201
-0.067484
-0.0290006
-0.031385
-0.0680287
-0.0318825
-0.162239
-0.163561
-0.147769
-0.149673
-0.174432
-0.166246
-0.16596
-0.155083
-0.158275
-0.158046
-0.155595
-0.155039
-0.139113
-0.15332
-0.158875
-0.162728
-0.15626
-0.145164
-0.153603
-0.147622
-0.151658
-0.151681
-0.137448
-0.150792
-0.137238
-0.15192
-0.135845
-0.148812
-0.14745
-0.141139
-0.148413
-0.138629
-0.148215
-0.138457
-0.14742
-0.0560391
-0.0325163
-0.0311048
-0.05527
-0.0354835
-0.029266
-0.052954
-0.122316
-0.121475
-0.128155
-0.123961
-0.117453
-0.128126
-0.104788
-0.106938
-0.104382
-0.0974797
-0.118963
-0.0957524
-0.112963
-0.0954142
-0.0909937
-0.11882
-0.0928974
-0.0485306
-0.0217831
-0.0491988
-0.0199882
-0.0449017
-0.0169293
-0.0192552
-0.0481963
-0.0305189
-0.0416127
-0.012741
-0.0111636
-0.00814463
-0.0165359
-0.113975
-0.114934
-0.107147
-0.107774
-0.106434
-0.0887362
-0.0982153
-0.095917
-0.0915039
-0.0889811
-0.0978841
-0.0966128
-0.0912418
-0.0993367
-0.100838
-0.0928955
-0.0988792
-0.0929802
-0.0895239
-0.00782877
-0.0150122
-0.0175544
0.00156895
-0.00193209
-0.00479218
0.00388609
-0.0247499
-0.00437894
-0.0175249
0.000790903
-0.00817923
-0.00443052
-0.00493452
-0.118441
-0.109714
-0.117982
-0.116665
-0.108438
-0.117221
-0.108058
-0.134241
-0.131209
-0.133383
-0.124286
-0.122986
-0.12453
-0.122288
-0.115214
-0.106917
-0.114389
-0.105342
-0.115583
-0.106704
-0.113667
-0.0261162
-0.0238928
-0.0240886
-0.00254639
-0.0291973
-0.000290526
-0.0236061
-0.0202769
-0.0254382
-0.0279259
-0.000220776
-0.013932
-0.0237094
0.0079603
-0.0176551
-0.00344136
-0.0128344
0.0149979
-0.0133297
-0.00836047
0.00872532
-0.101719
-0.10428
-0.0976346
-0.0960996
-0.106116
-0.105568
-0.0993275
-0.100497
-0.0952335
-0.0899811
-0.0956335
-0.0900645
-0.0946729
-0.0916579
-0.0933683
-0.0913052
-0.108517
-0.10792
-0.108822
-0.100507
-0.0992336
-0.100268
-0.0997319
-0.0933256
-0.0939357
-0.0861771
-0.0845104
-0.0944331
-0.092771
-0.0849963
-0.0923661
-0.0914241
-0.0841935
-0.0838942
-0.0919324
-0.0919129
-0.0844277
-0.0128438
0.00590071
-0.00475411
0.00942419
-0.000633538
0.00344191
0.00641926
0.00363694
0.0105591
0.0151286
-1.55532e-05
0.0100076
0.00973351
0.0094408
-0.100289
-0.100917
-0.100789
-0.0945986
-0.0955052
-0.0953212
-0.0948984
-0.0990442
-0.0967061
-0.098807
-0.0923689
-0.0899358
-0.092386
-0.0895509
-0.0863466
-0.0830584
-0.0839022
-0.0748877
-0.0869512
-0.0820487
-0.0823545
-0.0898677
-0.0921957
-0.0903394
-0.09321
-0.092656
-0.0907361
-0.0882869
-0.0782315
-0.0742631
-0.0808382
-0.0710323
-0.0662125
-0.0692648
-0.0676216
-0.0836532
-0.0829824
-0.0803674
-0.0713334
-0.0781945
-0.0749838
-0.0752354
-0.0583004
-0.0736515
-0.0368637
-0.0599291
-0.0633489
-0.0689222
-0.0273522
-0.0568623
-0.0578951
-0.0513659
-0.0307226
-0.054134
-0.0615962
-0.0318572
0.020658
0.0160244
0.00313978
0.00905055
0.0145493
0.0132067
0.0223136
0.00465534
0.0177939
0.00962886
0.0125979
0.018805
0.0209574
0.0137753
0.03873
0.0774454
0.0538952
0.0371723
0.0628932
0.0583066
0.0276103
-0.00683653
-0.0275848
0.0269432
0.124153
0.0613162
0.117042
0.070288
0.0940163
0.0616855
0.0648154
0.0985455
0.099838
0.054995
0.09983
0.0670313
0.0795411
0.0656399
0.0690673
0.102606
0.100147
0.0793359
0.113826
0.110631
0.0737152
0.084951
0.110619
0.0664408
0.119387
0.0244244
0.0559892
0.0455155
0.0622077
0.0880263
0.043531
0.0950908
-0.0880936
0.0822484
0.0704846
0.133081
0.135399
0.129529
0.139758
-0.0138177
-0.0184171
-0.0425685
-0.0583879
0.0487729
0.0462673
-0.0117489
0.0708243
-0.0301212
0.019363
-0.0117936
-0.0214409
-0.00181598
0.0768588
-0.0146212
-0.0607261
0.0458302
-0.0924101
-0.0544025
-0.0746962
0.0463769
0.00587062
0.025478
-0.011187
0.00472443
0.0860525
0.0232462
0.0793675
0.0445879
0.0618399
0.0959953
0.0944143
0.0495266
0.0503495
0.0607355
0.0997678
0.106223
0.145435
0.0946302
0.0924153
0.134624
0.109089
0.0805867
0.0554264
0.0590734
0.0738213
0.0681851
0.0578644
0.0826587
-0.0577374
-0.0716118
-0.0694682
-0.0628801
-0.0550153
-0.0554381
-0.064322
-0.0571883
-0.0542662
-0.0521213
-0.0517945
-0.0570999
-0.0541103
-0.0520947
-0.0571555
-0.05358
-0.0526867
-0.0517763
-0.0538958
-0.0580735
-0.0520533
0.137285
0.161528
0.17792
0.140803
0.139479
0.176606
0.13861
0.102421
0.0979903
0.0698449
0.0702037
0.099246
0.100029
0.0729201
0.104801
0.0764446
0.10429
0.0733469
0.102689
0.106031
0.075162
-0.0590565
-0.070943
-0.0703641
-0.0638647
-0.0580702
-0.0573297
-0.0645571
-0.0579217
-0.0547566
-0.0526088
-0.0532893
-0.0574418
-0.0553549
-0.0532347
-0.0585512
-0.0570879
-0.0551176
-0.0543206
-0.0561533
-0.0593895
-0.0540779
0.0780404
-0.101533
-0.125819
0.013874
-0.0920257
0.082349
0.0145561
0.069049
0.0157297
-0.102001
-0.0629267
-0.0778414
0.0146083
0.0646339
0.0888561
0.0936292
0.0659595
0.0513756
0.0951315
0.0857881
0.0608973
0.11036
0.129619
0.135055
0.086212
0.112991
0.1444
0.0967242
0.0807568
0.0456476
0.0435607
0.0488408
0.0722007
0.0550662
0.0684568
0.087039
-0.028956
0.0737559
0.0885072
-0.082109
-0.00205245
-0.0713442
-0.0720851
0.0633352
-0.08069
0.00533604
-0.116054
-0.0374672
-0.0986007
-0.0634699
-0.058552
-0.102796
-0.0273791
-0.0640887
-0.0556494
-0.0230137
-0.102257
-0.105311
-0.0240834
-0.0648198
-0.102073
0.138059
-0.13953
0.113273
0.110965
-0.147655
-0.102017
-0.0780104
0.0644613
0.00544787
-0.069617
-0.0764019
0.00475011
-0.0777591
-0.0385962
0.0769011
0.093851
0.0916221
-0.0460788
-0.325718
-0.283448
-0.328976
-0.295627
-0.260217
-0.292243
-0.263317
-0.33571
-0.286405
-0.332588
-0.299401
-0.269334
-0.302652
-0.266508
-0.264975
-0.246986
-0.241565
-0.223964
-0.267774
-0.244112
-0.239126
-0.261659
-0.237549
-0.22036
-0.233746
-0.258761
-0.240801
-0.236199
-0.0886291
-0.0249675
-0.114572
-0.0568281
-0.0988563
-0.107665
-0.0177187
-0.192268
0.218682
-0.339726
0.146847
0.145659
-0.300429
-0.209019
-0.142884
0.104387
0.0834752
-0.110357
0.106231
-0.122494
-0.127971
-0.0453009
0.0190184
0.123119
0.0510121
-0.0233143
-0.00948063
0.0419643
-0.0603613
0.028611
-0.0333238
0.120454
-0.021157
-0.0720005
0.0353963
-0.161646
-0.152354
0.110764
0.0875398
0.108999
-0.172863
-0.145919
-0.0721716
-0.0491922
-0.0753473
0.00143629
-0.0533978
-0.0915169
-0.00928013
-0.321914
-0.274488
-0.318658
-0.284918
-0.256714
-0.288283
-0.253414
-0.311887
-0.271158
-0.314956
-0.2811
-0.246268
-0.277974
-0.249731
-0.249323
-0.222349
-0.224783
-0.202727
-0.246967
-0.226241
-0.226525
-0.252523
-0.233811
-0.207782
-0.230767
-0.255285
-0.230227
-0.228815
0.1598
0.170674
0.111443
0.125234
0.131499
0.13612
0.171924
0.216721
-0.591545
-0.301086
0.132344
-0.539272
0.21345
0.137537
0.352803
0.333923
0.328388
0.0815862
0.252831
0.327148
0.255388
0.233102
0.138863
-0.210534
-0.263476
-0.374581
0.154212
0.189308
0.00972989
0.0569047
-0.000179059
-0.00235578
-0.0213342
0.0392473
0.0374757
-0.0872533
0.101187
0.0524866
-0.103482
0.093591
-0.118345
-0.0801132
0.0236357
0.0541217
0.140797
0.057849
-0.00482247
0.104927
0.0698635
-0.183562
0.28749
0.272499
-0.0322508
0.138954
0.27597
-0.0416375
0.0454116
0.0972891
0.143525
0.126617
0.118208
0.0804778
0.0789183
-0.0611891
-0.0153387
0.0409327
0.00745368
0.0702052
-0.0524826
-0.00662304
-0.0123038
-0.0157919
-0.0613418
0.011352
-0.036362
-0.041129
0.0254314
-0.0344795
-0.0502989
-0.0472084
-0.0391962
-0.0365313
-0.0317461
-0.0429901
-0.029052
-0.018466
-0.0174499
-0.0204875
-0.0235169
-0.0247683
-0.0233352
-0.0329403
-0.0345391
-0.0326078
-0.0261876
-0.0293044
-0.0372133
-0.0278091
0.0878236
-0.106958
0.0145093
-0.150497
0.0843348
-0.10463
0.0164775
0.0900157
0.0245773
-0.146722
-0.0918873
-0.101818
0.0193886
0.0946795
-0.00928965
-0.0162013
-0.0223591
-0.0136928
0.00513042
-0.00287263
-0.00745677
-0.012121
-0.011607
-0.0114553
0.00358474
-0.0178944
-0.00406267
-0.00520713
-0.00628474
0.0141244
0.00724582
0.0140919
0.00473656
1.70464e-05
0.000894976
0.0868727
0.0907123
0.0824053
0.105943
0.0895082
0.099149
0.110681
0.0667167
0.0815537
0.0700998
0.0750053
0.0928287
0.100347
0.0915396
-0.201049
-0.180396
-0.151103
-0.158066
-0.200303
-0.20223
-0.201834
-0.176328
-0.17653
-0.173454
-0.177447
-0.20187
-0.200911
-0.207032
-0.1829
-0.179693
-0.179916
-0.179455
-0.152112
-0.152997
-0.12101
-0.118684
-0.151665
-0.15049
-0.120837
-0.126456
-0.101386
-0.124997
-0.102206
-0.129447
-0.107663
-0.132998
-0.104431
-0.147132
-0.145016
-0.1153
-0.11713
-0.145366
-0.147179
-0.117525
0.195919
-0.617461
0.128254
-0.367637
0.202176
-0.610267
0.123966
0.19183
0.121868
-0.35485
-0.568602
-0.601539
0.122682
0.190094
-0.165362
-0.159142
-0.128477
-0.126901
-0.201246
-0.20538
-0.202069
-0.169819
-0.174835
-0.171429
-0.173592
-0.197641
-0.2053
-0.198004
-0.16556
-0.170587
-0.164184
-0.171728
-0.1393
-0.136369
-0.115082
-0.10431
-0.138187
-0.137861
-0.115511
-0.119714
-0.0991234
-0.121366
-0.0983349
-0.115902
-0.0943187
-0.112805
-0.0958276
-0.142442
-0.142056
-0.106223
-0.117029
-0.143596
-0.140046
-0.117252
0.0186248
0.0190882
0.0778999
-0.405252
0.0724453
0.0200773
0.0178848
0.0788855
0.0774256
0.0785195
0.0620984
0.063072
0.0759508
0.0868666
0.0890021
0.0751601
0.0888952
0.111372
0.100211
0.122247
0.0890329
0.105665
0.101283
0.0883174
0.0989577
0.101698
0.116318
0.101474
0.0878289
0.101487
0.101037
0.244866
0.115699
0.136783
0.129707
0.118882
0.215823
0.138674
0.284614
0.129243
0.14885
0.29604
0.151234
0.209112
0.140865
0.166492
0.142414
0.15662
0.225803
0.154893
0.230981
0.14067
0.179724
0.142278
0.159021
0.240851
0.157285
0.237364
0.101536
0.067566
0.0677308
0.0778065
0.0982182
0.106546
0.0763759
0.0878016
0.117383
0.0986292
0.117071
0.0892087
0.114491
0.0955852
0.0864003
0.0999942
0.0910556
0.11099
0.107144
0.0845232
0.0931957
0.0815862
0.243759
0.0965732
0.0913561
0.0907066
0.119517
0.0802154
0.117805
0.204447
0.10794
0.105867
0.144818
0.116138
0.136259
0.137382
0.129169
0.133444
0.143702
0.2159
0.148708
0.208527
0.124616
0.134424
0.128515
0.134317
0.172186
0.127364
0.189832
-0.224301
-0.222756
-0.206388
-0.206626
-0.198982
-0.179024
-0.198045
-0.171749
-0.200365
-0.154015
-0.200092
-0.164011
0.0179142
0.00998548
0.0367276
-0.207142
0.0689704
-0.0336381
-0.0184314
0.00316427
0.0209814
0.0601729
0.0539262
0.0239191
-0.244988
0.0351277
0.0300028
0.0959547
0.18973
0.187888
0.0982439
-0.00406672
-0.176936
0.0218035
0.0965593
0.114753
0.176437
0.0734479
-0.209091
-0.211003
-0.198917
-0.197999
-0.194634
-0.18514
-0.196623
-0.188762
-0.192335
-0.193625
-0.191585
-0.190335
0.00184765
0.210919
0.0142283
0.05741
0.0937398
0.115486
0.0448146
0.0317042
0.0379823
0.0230295
0.0742618
0.140402
0.125398
0.0828065
-0.0999641
0.036617
0.0393332
0.0960112
0.185264
0.178879
0.0957351
0.0380951
-0.0885738
0.0383634
0.0902571
0.163856
0.168989
0.0920096
-0.0780576
-0.0921286
-0.0900948
-0.0889463
-0.104326
-0.121213
-0.128775
-0.107886
-0.0999743
-0.0997975
-0.100745
-0.101244
-0.188688
-0.181824
-0.176741
-0.184225
-0.161582
-0.129016
-0.159036
-0.154434
-0.104947
-0.154509
-0.124488
-0.170594
-0.142887
-0.163656
-0.159417
-0.148969
-0.166208
-0.137856
-0.152016
-0.144024
-0.12804
-0.153446
-0.15811
-0.134079
-0.14667
-0.163454
-0.142457
-0.161692
-0.146403
-0.147745
-0.105756
-0.117785
-0.13948
-0.148424
-0.122226
-0.141067
-0.166397
-0.166733
-0.173854
-0.152873
-0.456479
-0.560211
-0.482104
-0.453681
-0.389993
-0.373287
-0.430486
-0.37329
-0.345152
-0.356873
-0.350806
-0.384533
-0.379537
-0.446317
-0.379012
-0.359546
-0.367551
-0.356639
-0.333544
-0.339224
-0.305368
-0.304944
-0.329926
-0.336858
-0.308053
-0.518426
-0.458315
-0.554769
-0.425314
-0.332699
-0.328572
-0.299359
-0.302303
-0.325362
-0.332401
-0.305316
-0.480868
-0.383636
-0.46067
-0.398259
-0.481778
-0.359188
-0.48417
-0.47943
-0.347939
-0.478176
-0.352415
-0.491566
-0.362379
-0.488471
-0.482701
-0.360155
-0.484469
-0.355659
-0.490966
-0.355252
-0.514412
-0.342888
-0.491424
-0.350659
-0.516181
-0.488731
-0.342789
-0.339835
-0.518738
-0.488964
-0.347381
-0.515914
-0.42137
0.0104399
-0.201361
-0.186214
-0.112995
-0.40649
0.0202049
-0.170378
-0.102745
0.0356681
-0.375143
-0.389188
0.0284588
-0.158076
1.58932
1.84957
2.00281
1.97982
1.86724
0.118765
0.0667421
-0.311638
-0.0509753
-0.287091
0.0918185
0.0799637
1.7938
1.74308
1.95947
1.26479
1.53921
1.56319
1.48125
1.50455
2.01359
1.74255
1.69899
0.149382
-0.0410291
-0.234598
0.105185
0.181828
-0.258315
0.0913382
-0.478217
-0.348383
-0.475643
-0.474267
-0.344976
-0.475715
-0.34112
-0.471655
-0.346547
-0.47269
-0.473083
-0.338578
-0.473441
-0.339218
-0.489121
-0.333801
-0.32706
-0.528706
-0.491329
-0.334233
-0.526153
-0.488197
-0.339889
-0.3286
-0.520501
-0.488042
-0.335869
-0.523036
0.247805
0.199187
0.0279469
-0.210688
-0.178688
0.153189
0.209075
1.82882
1.85647
1.85146
1.27051
1.3869
1.5536
1.54493
1.40639
1.82754
0.228951
0.00712327
-0.207514
0.117487
0.209834
-0.19372
0.134644
1.90913
1.87544
-0.959717
-0.963164
-1.00899
-0.687712
-1.00851
-0.879559
-0.650362
-0.880175
-0.651725
-1.00534
-0.688756
-1.00747
-0.878981
-0.65332
-0.87764
-0.652452
-0.676776
-0.619628
-0.593256
-0.594063
-0.675989
-0.61912
-0.594608
-0.808269
-0.755856
-0.805403
-0.758794
-0.676411
-0.617298
-0.593054
-0.591501
-0.675745
-0.61875
-0.593498
-0.811351
-0.764109
-0.813381
-0.762131
-0.391734
-0.254026
-0.396415
-0.406801
-0.237548
-0.403071
-0.240278
-0.409597
-0.260096
-0.403882
-0.413366
-0.249094
-0.418086
-0.246244
-0.438339
-0.235543
-0.502416
-0.221915
-0.442217
-0.233393
-0.500459
-0.432578
-0.225335
-0.216978
-0.495513
-0.429751
-0.22768
-0.496484
-0.385076
-0.243156
-0.380496
-0.393698
-0.232641
-0.397333
-0.230181
-0.369023
-0.238519
-0.373795
-0.387847
-0.223359
-0.383774
-0.225766
-0.417177
-0.21279
-0.207167
-0.486843
-0.413894
-0.214602
-0.4885
-0.422261
-0.220754
-0.210704
-0.492738
-0.424959
-0.218756
-0.492027
0.03571
0.0415218
0.185578
1.77859
1.86289
0.174402
0.00584005
0.0276277
0.187618
2.08803
0.192048
1.87183
-0.0108072
0.218147
-0.00895972
0.211743
0.00243144
-0.00813441
0.212429
2.36598
0.192469
-1.06193
-1.06464
-0.912639
-0.911885
-0.618795
-0.671727
-0.614314
-0.573623
-0.66528
-0.578143
-0.661242
-0.604018
-0.665334
-0.609592
-0.569797
-0.648863
-0.565117
-0.655057
-0.514008
-0.626651
-0.546474
-0.457939
-0.51027
-0.633159
-0.461167
-0.838132
-0.789153
-0.83864
-0.782603
-0.517342
-0.644207
-0.552645
-0.473076
-0.52335
-0.639395
-0.465118
-0.834528
-0.767194
-0.833898
-0.772859
-0.0241241
-0.139563
-0.0311966
0.0458814
0.64329
0.659934
0.0433833
-0.0551177
-0.178908
-0.0437446
0.0436603
0.574195
0.649581
0.0433638
0.571226
-0.0840701
-0.362225
0.0460208
-0.0777191
0.0481498
0.649508
-0.063265
-0.344362
-0.0680227
0.0561814
0.549227
0.615539
0.0447992
-2.39094
-2.85051
-2.43706
-2.47416
-2.78082
-2.94013
-2.68267
-2.58423
-2.60654
-2.20009
-2.53931
-2.81259
-2.48591
-2.22854
-2.48604
-2.74387
-2.5252
-2.47838
0.638978
0.516852
0.624757
0.498959
0.626662
0.491987
0.491356
-2.21197
-2.40653
-2.09931
-1.98397
-1.65367
-1.87381
-1.56904
0.747925
0.778417
0.705508
0.697602
0.608118
0.61867
0.568775
-0.476977
0.89374
0.982344
-0.607558
0.342684
0.260344
0.916859
0.842489
-0.744235
-0.665942
0.254668
0.841293
0.889333
0.215922
-0.139768
-0.131076
-0.143379
-0.13348
-0.141149
-0.128577
-0.131309
-0.0470636
-0.0412924
-0.0450245
-0.0263042
-0.0274714
-0.0304053
-0.0236773
-0.0428499
-0.041263
-0.0461109
-0.0235179
-0.0184658
-0.0207554
-0.0200719
-0.0750484
-0.0816389
-0.0805717
-0.0664962
-0.0681631
-0.0876323
-0.0556243
-0.0799382
-0.0794244
-0.057726
-0.05878
-0.0797151
-0.0761547
-0.0493714
-0.0696514
-0.0512823
-0.0594326
-0.0691083
-0.0651053
-0.0703689
-0.0667373
-0.0597535
-0.0555168
-0.0637962
-0.0996105
0.0813741
0.0797863
0.147798
0.147096
0.14308
0.151694
-0.0914656
0.0781004
0.0784861
0.144334
0.13435
0.139016
0.141131
-0.132754
0.0831088
0.0846879
0.161488
0.151478
0.159285
0.156891
-0.10473
0.0821497
0.0830676
0.15972
0.161167
0.157276
0.159394
-0.946089
-1.17898
-0.945222
-1.16175
-0.924532
-1.0514
-1.07729
0.578642
0.316795
-1.24411
0.571596
-1.2653
-0.177153
-0.0948291
-1.85808
1.0978
0.234679
0.599318
-1.39758
-0.335653
-0.582421
1.41118
-2.13736
1.32362
-2.04589
-0.486553
-0.576668
-1.97876
1.16229
1.26067
-2.02377
-0.605138
-0.631546
0.663246
-0.203904
-1.19847
0.663177
-1.12643
-0.0458703
-0.0585388
-0.890463
0.551479
-0.223459
0.653498
-1.08166
-0.0441656
-0.0748517
1.49612
2.25059
2.25973
1.46516
1.57629
1.59235
2.21739
1.43834
2.24004
1.56594
1.4486
1.57185
1.53804
2.12628
1.85201
1.87692
1.51685
1.57447
1.59339
1.82409
1.90344
1.55745
1.83444
1.53386
1.56006
1.56535
1.60601
1.80354
2.05449
1.80142
1.59686
1.56567
1.572
1.80868
2.0371
1.57867
1.79796
1.58642
1.563
1.56407
0.453782
2.03417
0.406362
0.741415
1.60512
0.774263
1.56409
0.359035
2.00214
0.385676
0.722408
1.51214
0.70079
1.5386
1.77215
2.02863
1.80042
1.56409
1.6137
1.655
1.55078
2.04729
1.80103
1.80145
1.57068
1.69026
1.67468
1.57446
0.214174
1.84987
0.237302
0.629873
1.38755
1.42773
0.60638
0.335613
1.89828
0.297698
0.65611
1.49237
0.684225
1.45979
1.77393
2.07054
1.78168
1.57924
1.73511
1.58244
1.71849
2.06725
1.79586
1.78981
1.57721
1.69812
1.70852
1.57619
-0.878812
0.433146
-0.64959
0.126457
-0.681065
0.299119
0.0165923
1.51
1.5616
1.65389
1.66859
1.50808
1.60451
1.58933
1.68645
1.57034
1.51539
1.67589
1.50673
1.62057
1.61155
0.0986127
-0.0173308
0.0975672
0.20786
0.180287
0.188099
0.207113
0.00173081
0.0917107
0.0965203
0.207634
0.203264
0.191156
0.20812
0.0711009
0.0571192
0.0804601
0.125938
0.0898107
0.0954583
0.120184
0.10155
0.0662275
0.0888837
0.129093
0.10809
0.133656
0.097981
0.100683
0.103951
0.163235
0.227108
0.209034
0.217379
0.215996
0.217385
0.167011
0.119022
0.167455
0.125042
0.170498
0.165001
0.353168
0.205409
0.218009
0.183338
0.165799
0.177748
0.174785
-0.339338
-0.365663
-0.391358
-0.36364
-0.268148
-0.198825
-0.251293
-0.234787
-0.221197
-0.180419
-0.249952
-0.435112
-0.475107
-0.475536
-0.460599
-0.436182
-0.468427
-0.404675
-0.487029
-0.211123
-0.210902
-0.157191
-0.209127
-0.166968
-0.19933
-0.223005
-1.01228
-0.698871
-1.01146
-0.844861
-0.658543
-0.665431
-0.883818
-1.01912
-0.704841
-1.01741
-0.826626
-0.670182
-0.824547
-0.669162
-0.751756
-0.631522
-0.564468
-0.587177
-0.75533
-0.630885
-0.56479
-0.871496
-0.721227
-0.73965
-0.791265
-0.868095
-0.734673
-0.864657
-0.738105
-0.749308
-0.622432
-0.588087
-0.562528
-0.628682
-0.566222
-0.710295
-0.673222
-0.679717
-0.686353
-0.679363
-0.485058
-0.485252
-0.445313
-0.447986
-0.55136
-0.486613
-0.486885
-0.450479
-0.552775
-0.489283
-0.489094
-0.48802
-0.488181
-0.452469
-0.788141
-0.925102
-0.79789
-0.918963
-0.693448
-0.691128
-0.685572
-0.700421
-0.459638
-0.490892
-0.558083
-0.490327
-0.493917
-0.455202
-0.493439
-0.718789
-0.699739
-0.703257
-0.721127
-0.816557
-0.929736
-0.807223
-0.934013
-0.71318
-0.696039
-0.700102
-0.707041
-0.463796
-0.558768
-0.498697
-0.495708
-0.497226
-0.494126
-0.46648
-1.11145
-1.11442
-0.923143
-0.920953
-0.652514
-0.696665
-0.662176
-0.610178
-0.681503
-0.683618
-0.604417
-0.671624
-0.696718
-0.664536
-0.611761
-0.684127
-0.616261
-0.683944
-0.556732
-0.662056
-0.516246
-0.588643
-0.559828
-0.66311
-0.514027
-0.834023
-0.804233
-0.803676
-0.832117
-0.831357
-0.797112
-0.828682
-0.800407
-0.555491
-0.659164
-0.58652
-0.506486
-0.662486
-0.51248
-0.550374
-0.856428
-0.814382
-0.824701
-0.846358
-0.922429
-0.931835
-0.927132
-0.927915
-0.858134
-0.835321
-0.830354
-0.858774
-0.861552
-0.83631
-0.840219
-0.857698
-0.939361
-0.941352
-0.934015
-0.948085
-0.861093
-0.839632
-0.841217
-0.859969
-3.20558
-2.58271
-2.72057
-2.12859
-2.25316
-2.01392
-2.45957
0.0528194
-0.0242611
0.0407934
0.0983019
-0.00719362
-0.118414
0.113953
0.0581122
-0.0344885
0.0449437
0.103107
0.0027872
0.11483
-0.070323
0.100355
-0.0792229
0.0993274
0.20763
0.180558
0.20875
0.178969
-0.0910397
0.0678872
0.1011
0.205521
0.0315929
0.160345
0.133507
0.0665243
0.0256131
0.0619104
0.116316
0.0894385
0.119889
0.0846975
0.0576427
0.017004
0.061746
0.11766
0.0374176
0.112155
0.0753694
0.046493
0.0762386
0.19257
-0.516193
0.1189
0.0157966
0.0630141
0.0795737
0.188268
-0.111962
-0.307461
0.138987
-3.21093
-3.5441
-3.10526
-3.10321
-2.63918
-2.8216
-1.26107
-2.82628
-2.65848
-2.00223
-1.03692
-1.02661
-2.16955
-1.73986
-1.76476
-2.9023
-3.32675
-2.67224
-1.47173
-3.03347
-2.67409
-2.48231
-3.02921
-3.07001
-2.73655
-2.3326
-3.36619
-3.41772
-2.96632
-2.9802
-1.60643
-3.17906
-3.08062
-2.46963
-1.11318
-1.23198
-2.3863
-0.139184
-0.14375
-0.139387
-0.141976
-0.146872
-0.140794
-0.145055
-0.138817
-0.138887
-0.137641
-0.127199
-0.123502
-0.126119
-0.12894
-0.124218
-0.130944
-0.127568
-0.125821
-0.123578
-0.125402
-0.140194
-0.191362
-0.191874
-0.176927
-0.171676
-0.151119
-0.150107
-0.141109
-0.138628
-0.141149
-0.151088
-0.149948
-0.151385
-0.136088
-0.150063
-0.121588
-0.1248
-0.123659
-0.123966
-0.121739
-0.124565
-0.123906
-0.132235
-0.128805
-0.119979
-0.122309
-0.123487
-0.138926
-0.136703
-0.140452
-0.126002
-0.123743
-0.101185
-0.108677
-0.126009
-0.122844
-0.124506
-0.103949
-0.117689
-0.106071
-0.113871
-0.122159
-0.126205
-0.109997
-0.0817186
-0.0747976
-0.0772888
-0.0520781
-0.0749428
-0.0564699
-0.0666494
-0.0761065
-0.0769203
-0.0788961
-0.0665627
-0.0851919
-0.062737
-0.0897821
-0.0707203
-0.0755248
-0.0726739
-0.0548763
-0.0629112
-0.058473
-0.0570355
-0.031075
-0.043137
-0.0170306
-0.0267285
-0.0381308
-0.0094946
-0.0337098
-0.0292858
-0.0334458
-0.00428598
-0.0190821
-0.0316028
-0.00504059
-0.029032
-0.0843344
-0.0797997
-0.0802614
-0.0699565
-0.0730914
-0.065169
-0.078818
-0.0515165
-0.0802895
-0.0078348
-0.0070548
-0.00678085
-0.0764294
-0.0493522
-0.0501662
-0.0572653
-0.00731894
-0.0115797
-0.0420655
-0.0086656
-0.0729896
-0.0668378
-0.0485839
0.00738075
-0.0799701
-0.0230668
-0.0428156
-0.0847479
-0.0989885
-0.0710552
-0.147455
-0.0533449
-0.170711
-0.0516176
0.0382931
-0.00943941
0.0575062
0.0505889
0.0642163
0.0432926
0.146143
0.104772
0.103179
0.119214
0.108658
0.114591
0.119023
0.189418
0.105859
0.106573
0.114355
0.110355
0.111097
0.115208
0.147929
0.0898297
0.0887143
0.105636
0.106887
0.105263
0.098609
-0.0902474
-0.0704453
-0.0664821
-0.0635834
-0.0789685
-0.0678425
-0.0846767
-0.0545072
-0.0800467
-0.0859847
-0.037992
-0.0514775
-0.0931646
-0.0400114
-0.0605777
-0.0746333
-0.062317
-0.0751305
-0.064917
-0.0577638
-0.0796412
-0.0596072
-0.0774795
-0.0752216
-0.0706789
-0.0621227
-0.0729212
-0.0600603
-0.0638974
-0.0566986
-0.0592934
-0.0574865
-0.0593975
-0.0584411
-0.0622351
-0.0655706
-0.0627835
-0.0637907
-0.0618324
-0.0679023
-0.0612913
-0.0604309
-0.0455498
-0.0790389
-0.0781901
-0.0361674
-0.0485773
-0.0707158
-0.0340958
-0.0499136
-0.058014
-0.0601936
-0.0527956
-0.0549198
-0.0615578
-0.0475644
-0.0521748
-0.0596472
-0.0702352
-0.0634704
-0.0549815
-0.0569937
-0.0657774
-0.0649974
-0.076458
-0.0759283
-0.0703421
-0.0650073
-0.070966
-0.0643145
-0.0652696
-0.0626124
-0.0634472
-0.0610653
-0.0621499
-0.0636072
-0.0643818
-0.0661004
-0.0654353
-0.0640528
-0.0646437
-0.0668353
-0.0631503
-0.0645876
-0.0628871
-0.0717218
-0.0687607
-0.0641281
-0.0636047
-0.0708639
-0.0634916
-0.0614009
-0.0793072
-0.0711593
-0.0584142
-0.0599525
-0.0733904
-0.0603285
-0.0624737
-0.062461
-0.0681962
-0.0682189
-0.0634394
-0.0612795
-0.0698211
-0.0573517
-0.0611806
-0.0629806
-0.0579958
-0.059318
-0.0629803
-0.055748
-0.0568352
-0.0700614
-0.0688614
-0.0564703
-0.0584836
-0.0666099
-0.0544819
-0.058771
-0.0615845
-0.0644479
-0.0665378
-0.0604901
-0.0601326
-0.0647884
0.209493
0.161763
0.167446
0.126221
0.0835645
0.0835081
0.122721
0.221562
0.160832
0.163487
0.135906
0.086746
0.0863063
0.124737
-0.177263
-0.188237
-0.194486
-0.19508
-0.171375
-0.188294
-0.178379
-0.236023
-0.206903
-0.213985
-0.214141
-0.225184
-0.235779
-0.20675
-0.21404
-0.224601
-0.234725
-0.205878
-0.235287
-0.206352
-0.213904
-0.195416
-0.171141
-0.187715
-0.18028
-0.188027
-0.195774
-0.179287
-0.345266
-0.301229
-0.346169
-0.320199
-0.281248
-0.2829
-0.31773
-0.347794
-0.302754
-0.34714
-0.322767
-0.286018
-0.324976
-0.284635
-0.28668
-0.263639
-0.25792
-0.241913
-0.288737
-0.262317
-0.256562
-0.284249
-0.259001
-0.240398
-0.25318
-0.260614
-0.254808
-0.281926
-0.213195
-0.233864
-0.20506
-0.222095
-0.213479
-0.233076
-0.20435
-0.196281
-0.185031
-0.167415
-0.184098
-0.185305
-0.18389
-0.19662
-0.196248
-0.186982
-0.181157
-0.168922
-0.195878
-0.186378
-0.182649
-0.21252
-0.220769
-0.230831
-0.201986
-0.231884
-0.203169
-0.212006
-0.297539
-0.249727
-0.296209
-0.264951
-0.226626
-0.222523
-0.265637
-0.294351
-0.24614
-0.294899
-0.264139
-0.21256
-0.263872
-0.217594
-0.237288
-0.17845
-0.197494
-0.14873
-0.234516
-0.185396
-0.206675
-0.238958
-0.197408
-0.155626
-0.21438
-0.1917
-0.210197
-0.239815
-0.087539
-0.12153
-0.104764
-0.0872662
-0.117513
-0.08554
-0.0899911
-0.0847877
-0.124148
-0.130762
-0.0822199
-0.0552675
-0.0336121
-0.0658741
-0.0275508
-0.0649324
-0.0349564
-0.0726844
-0.0473212
-0.0750925
-0.0649781
-0.0366565
-0.0900859
-0.129341
-0.132652
-0.104468
-0.0864487
-0.104314
-0.10405
-0.0933886
-0.109375
-0.0917147
-0.0897934
-0.0672954
-0.0767444
-0.0471826
-0.0523262
-0.0714579
-0.0762973
-0.040351
-0.0984337
-0.156747
-0.115444
-0.0867052
-0.164599
-0.0887181
-0.0907894
-0.0984408
-0.0700567
-0.0575008
-0.0751702
-0.0663957
-0.0740887
-0.0743293
-0.0586471
-0.0753032
-0.0359014
-0.0673668
-0.0437337
-0.102097
-0.104879
-0.102097
-0.120282
-0.179055
-0.0987556
-0.165025
-0.09223
-0.138762
-0.072192
-0.0758621
-0.0653042
-0.0484854
-0.0759077
-0.0696731
-0.052973
-0.0598747
-0.0740602
-0.0720458
-0.065613
-0.0607115
-0.0678305
-0.0585351
-0.0584256
-0.0529594
-0.0562185
-0.0512122
-0.0550434
-0.0561266
-0.054591
-0.0607296
-0.0610367
-0.0600976
-0.0590804
-0.0631194
-0.0574954
-0.0586848
-0.0622894
-0.0715042
-0.0634661
-0.0683357
-0.0629246
-0.0629091
-0.0709588
-0.0601344
-0.082214
-0.071954
-0.0572404
-0.0579569
-0.0742605
-0.0598101
-0.060834
-0.0598873
-0.0668273
-0.0673463
-0.0615775
-0.0589147
-0.0693465
-0.050545
-0.0536378
-0.0564326
-0.0482702
-0.0522623
-0.0576624
-0.0464015
-0.0519019
-0.071284
-0.0686874
-0.0541688
-0.055271
-0.0650307
-0.0503814
-0.0534142
-0.0577152
-0.0596449
-0.0644847
-0.0549
-0.0564862
-0.0612854
0.0288823
0.0162057
0.0125571
0.0210016
0.0341851
0.0248913
0.0317825
0.0250095
0.030914
0.0382549
0.0285616
0.0326402
0.0330903
0.0212994
0.0284609
0.0390671
0.0408887
0.0418322
0.0325945
0.0364138
0.0360366
0.0748117
0.085279
0.0685808
0.0698571
0.0639811
0.0777279
0.0812261
0.0799662
0.0863597
0.0737572
0.0864901
0.0922978
0.074067
0.0794042
0.0697507
0.0538425
0.0627684
0.0658125
0.0593076
0.0639914
0.0713508
0.0497427
0.047105
0.0444186
0.0361625
0.0406105
0.0512567
0.0448434
0.0637775
0.0703631
0.0683277
0.0815525
0.0758425
0.0692337
0.0633521
0.0541932
0.0495154
0.0485993
0.0606269
0.044692
0.0593599
0.0559862
-0.225067
-0.239195
-0.226558
-0.195289
-0.269894
-0.179442
-0.167717
-0.165341
-0.173215
-0.27177
-0.196702
-0.276317
-0.188985
-0.167907
-0.196711
-0.165863
-0.151427
-0.146124
-0.13514
-0.136595
-0.149457
-0.149696
-0.132177
-0.157704
-0.117141
-0.118248
-0.153035
-0.16097
-0.129265
-0.177437
-0.119749
-0.152423
-0.155353
-0.136786
-0.134126
-0.151947
-0.131902
-0.157834
-0.0827388
-0.115439
-0.109412
-0.088839
-0.110184
-0.0919915
-0.0803912
-0.0737147
-0.112697
-0.108855
-0.0739596
-0.0578424
-0.0296297
-0.0690512
-0.0312967
-0.0595391
-0.0648995
-0.0279387
-0.0436211
-0.0161995
-0.0426401
-0.0177682
-0.088216
-0.113383
-0.110046
-0.0945696
-0.113239
-0.0880963
-0.0938536
-0.0693291
-0.0958512
-0.0985637
-0.0682153
-0.0529887
-0.0564837
-0.0267655
-0.0222734
-0.0609175
-0.0506588
-0.0241938
-0.0752641
-0.111007
-0.112717
-0.0855828
-0.105333
-0.0815984
-0.0800286
-0.0636714
-0.0889947
-0.0898742
-0.062143
-0.0449352
-0.0168063
-0.0413899
-0.00898654
-0.0445341
-0.0440174
-0.0179141
-0.0385574
-0.0145042
-0.0413248
-0.0115537
-0.0646399
-0.0946301
-0.0905156
-0.0672894
-0.0730211
-0.110315
-0.102947
-0.074747
-0.103016
-0.0780921
-0.0724143
-0.0466836
-0.0522324
-0.0123041
-0.0220588
-0.0480348
-0.0500046
-0.0194974
-0.225026
-0.223966
-0.132069
-0.143419
-0.200061
-0.199265
-0.199296
-0.162207
-0.161306
-0.160215
-0.162642
-0.200979
-0.196826
-0.199434
-0.16312
-0.156199
-0.16539
-0.158097
-0.132989
-0.123915
-0.115064
-0.0720229
-0.127897
-0.11893
-0.120653
-0.0814313
-0.078514
-0.0727554
-0.0870288
-0.0768099
-0.0593159
-0.072943
-0.0662564
-0.134462
-0.12113
-0.0722011
-0.126815
-0.120085
-0.122894
-0.136599
-0.0297132
-0.0294257
-0.0364281
-0.0251247
-0.0199357
-0.0081138
-0.00648371
-0.0220299
-0.0332574
-0.0470119
-0.0419811
-0.0361696
-0.0428486
-0.0623125
-0.0600717
-0.0433404
-0.0254787
-0.00977208
-0.0106584
-0.0241345
-0.0412737
-0.052468
-0.0567062
-0.0391355
0.0665721
0.0480859
0.0502269
0.0645314
0.0731651
0.0613528
0.0773875
0.0805408
0.095776
0.110936
0.0998702
0.0971513
0.0933914
0.0836243
0.0783437
0.0861624
0.0895406
0.108054
0.0743764
0.0944067
0.0908243
0.0973605
0.0953607
0.0763588
0.0928688
0.0835854
0.0886508
0.107189
0.121794
0.164759
0.162421
0.154352
0.137866
0.134741
0.141684
0.106785
0.0990261
0.103559
0.135607
0.0911812
0.116885
0.121472
0.137794
0.158981
0.13278
0.117892
0.115468
0.160515
0.139621
0.155167
0.239088
0.179795
0.168378
0.17972
0.145848
0.19118
0.133337
0.106017
0.129433
0.147902
0.112025
0.125762
0.156385
0.0617466
0.0485772
0.0522665
0.0603015
0.0637628
0.0566451
0.0676682
0.0717237
0.0829902
0.0939363
0.0830889
0.080693
0.0806599
0.0746524
0.0683358
0.0741353
0.0746929
0.0918272
0.0646994
0.0777779
0.0775657
0.10168
0.0780785
0.0851917
0.0676314
0.0763254
0.0911872
0.0919004
0.144119
0.138055
0.124441
0.198765
0.201378
0.145538
0.11565
0.109393
0.0873938
0.0943654
0.111602
0.0828747
0.113023
0.103726
0.110841
0.127109
0.11041
0.0933982
0.0927797
0.125873
0.10985
0.133149
0.159078
0.129922
0.170704
0.162813
0.137557
0.134855
0.111723
0.0899292
0.108754
0.117843
0.091727
0.112366
0.122653
-0.219244
-0.220084
-0.193897
-0.19318
-0.150923
-0.0741986
-0.0528258
-0.164263
-0.140674
-0.0241612
-0.131307
-0.0371912
-0.0131116
-0.0222068
-0.014411
-0.0197971
0.00538281
0.0381603
0.0262036
0.0134619
-0.0070217
-0.00272662
-0.00856381
-0.0004603
0.00551262
-0.0124571
-0.00142207
-0.0121965
0.0251716
0.0462902
0.0639178
0.0189653
0.00834385
0.000592724
0.00137396
0.00441693
-0.211941
-0.208071
-0.20344
-0.208388
-0.194015
-0.188347
-0.183013
-0.193791
-0.19484
-0.178619
-0.200404
-0.173397
-0.113742
-0.294321
-0.225114
-0.158366
-0.158868
-0.115065
-0.264449
-0.041823
-0.439459
-0.217563
0.0770667
0.0871381
-0.267376
-0.0391016
-0.107447
-0.144944
-0.212362
-0.204323
-0.152951
-0.237738
-0.100246
-0.0698922
-0.116096
-0.159912
-0.128088
-0.159717
-0.0605831
-0.0437246
-0.0585345
-0.146643
0.030772
0.0142053
-0.0929941
-0.0430022
-0.0817527
-0.135631
-0.194693
-0.162167
-0.139439
-0.131451
-0.0929451
-0.00633787
-0.0601544
-0.0790033
-0.0531764
-0.100451
-0.105849
-0.102341
-0.102041
-0.0925605
-0.0862678
-0.0702196
-0.097501
-0.419644
-0.372703
-0.231749
-0.199641
-0.260332
-0.241611
-0.194022
-0.192788
-0.222227
-0.292076
-0.203004
-0.29294
-0.270008
-0.188085
-0.273171
-0.193045
-0.240272
-0.175449
-0.161871
-0.166487
-0.215339
-0.182051
-0.219949
-0.353296
-0.273444
-0.351752
-0.282537
-0.361057
-0.16167
-0.189595
-0.388146
-0.225787
-0.186679
-0.172149
-0.207651
-0.185269
-0.223012
-0.208462
-0.749927
-0.733969
-0.6905
-0.696724
-0.42681
-0.448626
-0.448267
-0.412198
-0.407999
-0.420596
-0.395846
-0.48019
-0.461769
-0.473212
-0.430949
-0.43442
-0.436463
-0.430781
-0.3799
-0.397541
-0.347081
-0.346977
-0.387056
-0.395192
-0.34721
-0.558949
-0.399329
-0.443036
-0.499092
-0.640562
-0.502411
-0.641965
-0.502337
-0.36221
-0.377905
-0.339698
-0.323531
-0.387212
-0.332435
-0.348724
-0.522492
-0.391962
-0.531129
-0.510863
-0.381472
-0.385386
-0.50572
-0.548941
-0.396561
-0.541268
-0.51721
-0.394876
-0.521953
-0.390119
-0.51419
-0.390315
-0.528268
-0.375698
-0.517702
-0.385215
-0.525905
-0.509637
-0.37646
-0.37104
-0.520613
-0.380316
-0.523043
-0.505831
-0.893845
-0.435038
-0.745626
-0.765444
-0.420435
-0.420331
-0.871778
-0.555988
-0.412496
-0.612591
-0.63267
-0.406746
-0.566328
-0.406801
-0.629861
-0.390265
-0.562602
-0.382297
-0.559651
-0.389471
-0.635906
-0.76169
-0.396872
-0.390492
-0.84151
-0.400082
-0.766206
-0.851357
-0.640367
-0.560394
-0.371125
-0.375187
-0.560014
-0.637619
-0.370526
-0.774949
-0.792809
-0.371304
-0.362927
-0.373995
-0.775319
-0.811635
-0.644598
-0.366861
-0.559916
-0.364635
-0.559884
-0.367068
-0.647902
-0.770687
-0.382817
-0.831893
-0.368269
-0.76832
-0.377774
-0.821622
-0.466169
-0.3301
-0.470058
-0.483738
-0.325935
-0.323839
-0.477769
-0.472467
-0.326806
-0.467496
-0.481688
-0.318532
-0.487086
-0.320531
-0.499465
-0.310572
-0.514483
-0.300197
-0.49813
-0.313532
-0.513106
-0.506181
-0.320245
-0.304658
-0.522029
-0.317521
-0.521772
-0.501
-0.740337
-0.580763
-0.285352
-0.290932
-0.590371
-0.725762
-0.288564
-0.762295
-0.438252
-0.256188
-0.191438
-0.266038
-0.769228
-0.4004
-0.726512
-0.283156
-0.595882
-0.279485
-0.579526
-0.286269
-0.741549
-0.789635
-0.27213
-0.426734
-0.195546
-0.77798
-0.269589
-0.427923
-0.716806
-0.586524
-0.29588
-0.294938
-0.581586
-0.29729
-0.727003
-0.77231
-0.485537
-0.286147
-0.212837
-0.282353
-0.760918
-0.477381
-0.716505
-0.300108
-0.581006
-0.304011
-0.586449
-0.300683
-0.704725
-0.7714
-0.276379
-0.208073
-0.446329
-0.278933
-0.780461
-0.456822
1.39326
0.54977
0.563037
0.563567
0.985119
0.551338
1.01133
1.26079
0.547389
0.527084
0.523806
0.963794
0.539831
0.92362
-1.24869
-1.2469
-0.923492
-0.926085
-0.930175
-0.704897
-0.873897
-0.71185
-0.659432
-0.657964
-0.773708
-0.856125
-0.706162
-0.865716
-0.700548
-0.658134
-0.693558
-0.658227
-0.634776
-0.633103
-0.577343
-0.601479
-0.630813
-0.632587
-0.580225
-0.828846
-0.776175
-0.781728
-0.818859
-0.832821
-0.788762
-0.836042
-0.785085
-0.639441
-0.629003
-0.601159
-0.585654
-0.631839
-0.582356
-0.649618
-0.509027
-0.562266
-0.537102
-0.490022
-0.534575
-0.487368
-0.511348
-0.82626
-0.798251
-0.790274
-0.834248
-0.890989
-0.891852
-0.888018
-0.896084
-0.504249
-0.557054
-0.527186
-0.458768
-0.527697
-0.50337
-0.480987
-0.829157
-0.783592
-0.789332
-0.824879
-0.516808
-0.539981
-0.565651
-0.491009
-0.542729
-0.492544
-0.513831
-0.813934
-0.765999
-0.772232
-0.807814
-0.889966
-0.892415
-0.890476
-0.889829
-0.818072
-0.781412
-0.776429
-0.823072
-0.518044
-0.565666
-0.545507
-0.493389
-0.5439
-0.494013
-0.519664
-0.437518
-0.291744
-0.436076
-0.436207
-0.27429
-0.278986
-0.439772
-0.444216
-0.293065
-0.441639
-0.440647
-0.285949
-0.441384
-0.280798
-0.454434
-0.274959
-0.493306
-0.256992
-0.453513
-0.269256
-0.496942
-0.451489
-0.26123
-0.253689
-0.506896
-0.266813
-0.496528
-0.457829
-0.720554
-0.590365
-0.272981
-0.266569
-0.585822
-0.724724
-0.274681
-0.714086
-0.40955
-0.266433
-0.177001
-0.723456
-0.248616
-0.397267
-0.722193
-0.272397
-0.579542
-0.28846
-0.58696
-0.716156
-0.273776
-0.69994
-0.239672
-0.377631
-0.177605
-0.691376
-0.248758
-0.384751
-0.737297
-0.593192
-0.254845
-0.262247
-0.601082
-0.253894
-0.728022
-0.676071
-0.397207
-0.200275
-0.135035
-0.212011
-0.688482
-0.368729
-0.742015
-0.250537
-0.620122
-0.238275
-0.604533
-0.247316
-0.759914
-0.679544
-0.233378
-0.148104
-0.367431
-0.222166
-0.682079
-0.36359
-0.34097
-0.211489
-0.336204
-0.354315
-0.205829
-0.201029
-0.358095
-0.325707
-0.205188
-0.331453
-0.351055
-0.188685
-0.34625
-0.194733
-0.387447
-0.180146
-0.470848
-0.18355
-0.384534
-0.18638
-0.470944
-0.388555
-0.197514
-0.189804
-0.468481
-0.192652
-0.468491
-0.391063
-0.704742
-0.634492
-0.156593
-0.139011
-0.632028
-0.127976
-0.710856
-0.41678
-0.297575
-0.056323
-0.0139918
-0.40251
-0.297518
-0.0583805
0.13472
0.0646862
-0.681901
-0.14883
-0.601422
-0.116665
-0.616005
-0.665457
-0.119406
-0.435691
-0.0784654
-0.017919
-0.278991
-0.302511
-0.0665418
-0.419203
-0.715393
-0.626945
-0.188205
-0.161992
-0.627238
-0.176539
-0.706239
-0.406479
-0.210229
-0.135944
-0.0604095
-0.212476
-0.13021
-0.41023
-0.710343
-0.195215
-0.616734
-0.190786
-0.620839
-0.185115
-0.704992
-0.401526
-0.105645
-0.0522539
-0.219574
-0.212763
-0.121178
-0.386144
-0.982523
-0.994383
-0.850627
-0.838564
-0.571161
-0.610007
-0.560969
-0.522412
-0.608481
-0.599246
-0.532925
-0.533066
-0.597399
-0.547012
-0.508951
-0.576848
-0.49556
-0.587349
-0.450476
-0.557588
-0.384964
-0.483086
-0.436674
-0.566511
-0.398258
-0.759551
-0.709874
-0.699252
-0.773537
-0.741724
-0.670501
-0.724419
-0.68466
-0.463735
-0.58643
-0.493209
-0.42264
-0.577294
-0.410223
-0.475772
-0.73636
-0.634764
-0.70905
-0.660762
-0.839658
-0.820872
-0.807905
-0.852225
-0.756373
-0.698733
-0.682167
-0.770467
-0.798777
-0.745821
-0.737588
-0.805243
-0.867873
-0.832777
-0.838881
-0.863233
-0.790709
-0.714884
-0.725905
-0.783411
1.96037
1.95884
1.92138
1.92797
1.54139
1.73174
1.76
1.68779
1.47753
1.64401
1.50242
1.94404
1.94793
1.9022
1.90257
1.64567
1.44976
1.37697
1.57637
1.53781
1.46101
1.67398
1.60597
1.4108
1.39965
1.35578
1.54956
1.48823
1.44738
1.77927
1.8184
1.50864
1.69357
1.64634
1.56485
1.47802
1.62814
1.44744
1.89533
1.85468
1.33812
1.22496
0.895298
1.14836
1.04549
1.19672
1.30198
1.43076
1.39386
1.33842
1.2006
1.53067
1.18688
1.34582
0.453261
0.711804
0.615921
0.978636
0.786287
0.182843
0.788704
-1.06844
-1.3539
-1.31018
-1.24723
0.263998
0.458275
0.0522792
0.729833
0.46547
-0.155729
0.649521
-1.16408
-1.47858
-0.280851
0.610188
1.03143
1.03305
0.924903
0.894324
0.785512
0.83464
1.0831
1.11787
1.25887
1.44122
1.37264
1.10563
1.2324
0.704731
0.725027
0.141938
0.81307
0.544662
0.356813
0.910356
0.968259
1.13199
1.23155
0.990027
1.28827
0.839211
1.07547
-2.58604
-3.63814
-3.34351
-3.14226
-2.86451
-2.57057
-2.54359
-2.59537
-3.26456
-2.81666
-3.19217
-2.88025
-2.53637
-3.52855
-2.83225
-2.84299
-2.56264
-2.17094
-1.95325
-2.98841
-2.52953
-2.34358
-3.05386
-2.95024
-2.80362
-2.16179
-2.75154
-2.51276
-0.55611
-2.38329
-0.645089
-0.373691
-2.31149
-1.91262
-0.485089
-2.54131
-0.531489
-0.68488
-0.386121
-1.6283
-1.84856
-0.366331
-0.0917955
-0.0878357
-0.0917079
-0.077721
-0.0819826
-0.07821
-0.0802307
-0.0841582
-0.0895569
-0.0873042
-0.0752768
-0.0852688
-0.0790633
-0.0801273
-0.0641516
-0.0454176
-0.0603624
-0.0578422
-0.0533642
-0.0468954
-0.0579101
-0.0861998
-0.0901761
-0.0821431
-0.0713848
-0.0653993
-0.0683135
-0.0674121
-0.0587141
-0.0694678
-0.0640001
-0.080675
-0.0787285
-0.0699956
-0.0691924
-0.063028
-0.0681123
-0.0904709
-0.0873531
-0.0784998
-0.0808339
-0.0793174
-0.0574093
-0.0693214
-0.051777
-0.0695381
-0.0717867
-0.074523
-0.0549558
-0.0693139
-0.0611869
-0.0737357
-0.0573349
-0.0622355
-0.0579006
-0.0669537
-0.0646394
-0.0539025
-0.0606606
-0.0477674
-0.037357
-0.0142793
-0.0146289
-0.0270096
-0.0170923
-0.0302115
-0.0122393
-0.0522223
-0.0451945
-0.0573395
-0.0561017
-0.077329
-0.0917427
-0.0887609
-0.0924673
-0.0767899
-0.0764727
-0.0752669
-0.0771228
-0.0869944
-0.0865353
-0.0871004
-0.0780894
-0.0768032
-0.0781794
-0.0761819
-0.0667301
-0.0654153
-0.0509714
-0.0442721
-0.0675534
-0.0508546
-0.0636786
-0.0570474
-0.0523574
-0.0608505
-0.0544636
-0.0594694
-0.0662527
-0.0443846
-0.0619521
-0.043487
-0.0510083
-0.0618319
-0.0679855
-0.0715269
-0.0429611
-0.0656274
-0.0590869
-0.0342244
-0.0621401
-0.0367266
-0.0831723
-0.0759138
-0.0835315
-0.0765447
-0.0826845
-0.0733247
-0.0737708
-0.0422076
-0.0690907
-0.0639422
-0.0587042
-0.0370076
-0.0362154
-0.062047
-0.0742754
-0.0822293
-0.0850965
-0.0743878
-0.0728656
-0.052
-0.0604241
-0.0428151
-0.0625474
-0.0417698
-0.0710591
-0.0467054
-0.0624606
-0.0374085
-0.0630495
-0.0406652
-0.0733087
-0.0770934
-0.0716694
-0.0475099
-0.0633599
-0.0518581
-0.0619718
-0.0780168
-0.0712961
-0.0720079
-0.0518946
-0.0650747
-0.0691725
-0.0464922
-0.0656422
-0.0645675
-0.0678111
-0.0540018
-0.0495011
-0.0494092
-0.0532227
-0.0674295
-0.05541
-0.0394613
-0.0413769
-0.0545146
-0.066889
-0.0807461
-0.0506249
-0.0451745
-0.0468782
-0.04275
-0.0291708
-0.0314285
-0.0260224
-0.0226114
-0.0216042
-0.0339998
-0.0283893
-0.076225
-0.0614935
-0.0607761
-0.0847533
-0.0672555
-0.0657307
-0.0634617
-0.0638015
-0.0597047
-0.0503254
-0.0532332
-0.0548509
-0.0633526
-0.0621476
-0.0601862
-0.0778962
-0.0501914
-0.0428182
-0.0201215
-0.0344642
-0.0245882
-0.0414198
-0.0238545
-0.035553
-0.0702321
-0.0719892
-0.0652203
-0.0385336
-0.050959
-0.0429462
-0.0466285
-0.0729401
-0.0908305
-0.0402891
-0.0389209
-0.0517573
-0.0367386
-0.0669714
-0.0917853
-0.0698247
-0.0400591
-0.0437799
-0.0432122
-0.0396727
-0.0627467
-0.0599769
-0.0718813
-0.0375942
-0.03167
-0.0336457
-0.0344227
-0.0683523
-0.0467186
-0.0461479
-0.0439312
-0.0468821
-0.0546422
-0.0471878
-0.0395293
-0.0218646
-0.0233107
-0.0227306
-0.0215435
-0.0613989
-0.0480556
-0.0569074
-0.0207639
-0.021659
-0.022665
-0.0193097
0.0585291
0.0142702
0.064992
0.131574
0.00555882
0.126756
0.0153464
0.0803142
0.0239041
0.0720359
0.139289
0.0366178
0.144978
0.0266415
-0.0583322
-0.489588
-0.0308778
-0.0405443
-0.0408176
-0.549853
-0.0242757
-0.041745
-0.106867
-0.591551
-0.00244499
0.112463
0.129683
0.0971098
0.179509
0.109209
0.178189
0.135231
0.0929964
0.0775267
0.102254
0.174355
0.0686362
0.167418
0.106506
0.0237877
0.00831753
0.0549235
0.0741169
-0.0168373
-0.00361226
0.0407783
0.0210222
-1.6837
-1.68953
-2.57393
-2.74848
-2.28291
-1.51941
-2.50706
-2.52997
-2.59155
-2.53417
-1.60592
-2.5703
-2.6033
-2.10186
-1.25177
-1.32208
-2.03316
-2.4601
-2.16899
-3.52002
-2.24579
-2.44807
-2.47468
-1.0998
-2.38322
-1.51645
-0.75162
-0.899225
-1.40345
-2.42636
-1.50563
-2.25918
-1.74594
-1.18723
-1.93497
-1.08403
-2.61509
-2.0379
-1.76428
-2.10907
-1.78906
-1.46507
-1.42699
-2.3186
-1.84959
-1.73281
-1.67499
-1.65077
-1.24018
-1.35847
-2.75994
-1.69505
-2.80249
-1.6803
-2.68698
-1.48644
-1.50625
-0.749473
-2.08667
-1.96406
-1.0812
-0.518341
-0.523667
-1.11505
-3.25599
-1.80799
-2.8834
-1.9227
-3.01715
-1.59477
-1.53111
-2.29892
-0.96257
-2.26493
-1.24705
-0.630924
-1.28602
-0.598115
-2.1651
-0.904505
-2.22566
-1.19809
-0.530037
-1.14421
-0.563906
0.0707254
0.0786157
0.0821744
0.0892114
0.0717991
0.0868328
0.0736357
-0.139046
-0.103403
-0.12334
-0.139603
-0.13619
-0.135034
-0.131552
-0.11545
-0.123375
0.0917101
0.0752449
0.0953656
0.100114
0.0988373
0.0887324
0.0778659
-0.0649271
-0.0855004
-0.112859
-0.105052
-0.0653685
-0.0325514
0.0921304
0.0769205
0.101762
0.0987054
0.0915508
0.100899
0.0776223
-1.46072
-0.0632057
-0.114
-0.119124
-0.847647
0.100291
0.143268
0.0781086
0.106822
0.0914012
0.0891139
0.165075
-0.074562
-0.0178076
-0.033813
0.137756
0.120959
0.121608
0.197744
0.11187
0.15088
0.189998
-0.597563
-0.0460206
-0.0993033
-0.123809
-0.117929
0.00896462
-0.684966
0.139965
0.197978
0.111934
0.136489
0.115129
0.136655
0.198074
-0.522037
-0.0895477
-0.20805
0.0344336
-0.190126
0.0221287
-0.443248
0.142027
0.119686
0.134304
0.195755
0.117931
0.144375
0.196872
0.0414232
0.100713
0.0908525
0.100311
0.0936245
-0.0977287
-0.0217244
-0.097354
-0.0514572
-0.0120093
-0.0885928
-0.0301549
-0.0465268
-0.0504578
-0.047633
-0.0753157
-0.0631552
-0.0599026
-0.123047
-0.0910393
-0.0656939
-0.114489
0.0969651
0.0754384
0.0921148
0.0986436
0.0847607
0.0990561
0.0821064
-0.0729379
-0.0623172
-0.0707293
-0.117326
-0.0443007
-0.0590873
-0.125842
0.0987491
0.0847495
0.103136
0.100092
0.0981976
0.100083
0.08509
0.196314
0.158143
-0.285049
0.0282062
-0.265211
0.142863
0.177423
0.231401
0.167968
0.13652
0.147898
0.15493
0.169476
0.233219
0.230501
0.152719
0.140386
0.18054
0.157436
0.212696
0.177024
0.21356
0.0439726
-0.198739
0.189433
-0.235821
0.182433
0.225371
-0.302309
0.117919
-0.0216763
-0.246107
-0.156954
0.0789634
-0.0395712
0.137652
0.194463
0.108026
0.134794
0.131394
0.113963
0.193522
-0.359656
-0.0395246
-0.184717
0.0429752
-0.409899
-0.172258
0.0577903
0.136782
0.130227
0.134437
0.183713
0.117204
0.1564
0.186853
-0.0599137
-0.0626956
-0.0400593
0.0946657
0.0911473
0.111964
0.158311
0.124044
0.133544
0.132008
0.117707
0.0953839
0.118591
0.165189
0.138365
0.160905
0.137752
0.238285
0.188026
0.214727
0.25701
0.225703
0.188057
0.25127
-0.68676
-0.151052
0.092295
0.148122
0.131865
-1.04601
-0.0952307
0.236609
0.177015
0.213545
0.256595
0.185801
0.253051
0.198834
-0.652341
-0.0799688
0.131334
0.144487
-0.630889
0.112349
-0.0763237
-0.0143592
0.0117534
0.00180005
0.0694774
0.0635916
0.0514443
0.0650543
0.109983
0.0895786
0.100217
0.0331932
0.0577952
0.0397276
0.0528131
0.0908606
0.0470312
0.0941159
-0.00528869
-0.114668
0.103095
-0.126372
0.0237983
0.0917601
0.156221
0.186269
0.154195
0.124097
0.143456
0.12352
-0.400297
-0.403887
-0.411883
-0.404297
-0.287007
-0.279674
-0.297115
-0.27827
-0.246196
-0.267659
-0.26367
-0.317682
-0.294024
-0.30705
-0.287168
-0.289091
-0.296036
-0.277693
-0.260248
-0.279644
-0.24675
-0.251417
-0.26854
-0.268798
-0.245259
-0.476099
-0.477512
-0.491445
-0.462417
-0.251166
-0.237054
-0.233002
-0.22493
-0.239637
-0.254839
-0.235211
-0.448827
-0.426801
-0.441178
-0.439929
-0.93509
-0.935511
-1.00933
-0.681473
-1.01303
-0.871861
-0.650892
-0.873033
-0.648045
-1.0139
-0.680637
-1.01417
-0.872781
-0.646527
-0.873331
-0.646698
-0.661946
-0.616579
-0.592584
-0.575704
-0.664154
-0.616888
-0.571965
-0.787478
-0.730819
-0.786686
-0.733257
-0.659953
-0.619518
-0.593384
-0.565802
-0.66761
-0.618084
-0.566944
-0.790231
-0.739342
-0.791226
-0.737266
-0.507957
-0.495515
-0.527803
-0.558806
-0.534353
-0.499321
-0.496353
-0.758827
-0.733327
-0.728536
-0.765773
-0.862949
-0.943671
-0.85897
-0.936367
-0.75457
-0.719305
-0.725253
-0.746845
-0.51447
-0.558418
-0.540842
-0.492227
-0.541319
-0.495397
-0.513152
-0.484259
-0.561338
-0.496909
-0.5206
-0.515042
-0.497676
-0.491227
-0.729209
-0.703427
-0.725287
-0.705935
-0.850633
-0.946181
-0.854943
-0.947376
-0.476234
-0.562716
-0.504168
-0.497696
-0.471457
-0.508057
-0.498082
-0.736314
-0.714243
-0.711106
-0.740725
-0.48664
-0.327446
-0.496217
-0.496894
-0.410429
-0.332048
-0.495486
-0.634774
-0.943232
-0.953222
-0.635014
-0.496908
-0.411658
-0.334726
-0.506421
-0.333921
-0.496846
-0.502209
-0.0548835
0.318956
-0.202043
-0.0314863
-0.212497
-0.0418214
0.281483
-0.0587509
-0.219236
0.245064
-0.0678777
-0.0586824
-0.217212
0.260194
-0.635076
-0.929824
-0.914699
-0.635497
-0.494099
-0.501437
-0.331976
-0.387959
-0.335317
-0.491296
-0.504863
-0.495983
-0.335796
-0.506785
-0.400127
-0.497014
-0.336131
-0.509126
-0.372126
-0.590299
-0.457287
-0.173719
-0.185571
-0.595824
-0.321788
-0.588107
-0.818047
-0.801761
-0.579614
-0.419457
-0.243114
-0.515107
-0.621255
-0.216702
-0.434992
-0.701199
-0.00982776
0.361991
-0.19632
0.112053
-0.027449
-0.181542
0.395312
0.0117507
-0.12164
0.417957
0.155273
0.0626016
-0.166019
0.427472
-0.607153
-0.831918
-0.84902
-0.589808
-0.489898
-0.472872
-0.333435
-0.332837
-0.493244
-0.326912
-0.469672
-0.492269
-0.288531
-0.485307
-0.321153
-0.468743
-0.321919
-0.459642
-1.08762
-1.08597
-0.916943
-0.918998
-0.651288
-0.693459
-0.649277
-0.603575
-0.681713
-0.604658
-0.679847
-0.643205
-0.69004
-0.646677
-0.602056
-0.67569
-0.599213
-0.677093
-0.549193
-0.653313
-0.573046
-0.501579
-0.546649
-0.654367
-0.504144
-0.83673
-0.805211
-0.832976
-0.809762
-0.549744
-0.659588
-0.576402
-0.505295
-0.550637
-0.657096
-0.50437
-0.838881
-0.81435
-0.842034
-0.811737
-0.85783
-0.814881
-0.816858
-0.859037
-0.919932
-0.905784
-0.915657
-0.911088
-0.857784
-0.821786
-0.819874
-0.856131
-0.858185
-0.832725
-0.854744
-0.833067
-0.915709
-0.905732
-0.916505
-0.906614
-0.857633
-0.827541
-0.829809
-0.858508
-0.291239
-0.228467
-0.104687
-0.0153568
-0.103508
-0.301954
-0.375769
-0.568491
-0.733517
-0.549728
-0.734438
-0.565822
-0.59018
-0.361203
-0.176134
0.0327134
-0.232856
-0.188814
-0.349529
-0.291643
-0.562707
-0.740323
-0.523455
-0.743668
-0.565891
-0.498421
-0.339483
-0.115816
-0.152789
0.1796
-0.165817
-0.32749
-0.150201
-0.349515
-0.169481
-0.206006
0.158661
-0.349728
-0.172301
-0.186182
-0.286984
0.156723
0.487303
-0.0741131
-0.0834996
-0.279176
0.121019
-0.456644
-0.544475
-0.68556
-0.237705
-0.685766
-0.457577
-0.218411
-0.290839
-0.096001
0.449157
0.0513672
-0.0902071
-0.294868
0.0849226
-0.458901
-0.599919
-0.685594
-0.266165
-0.688415
-0.457099
-0.286248
-0.306519
-0.0658123
-0.136058
0.284087
-0.319456
-0.123308
-0.0469096
-0.299026
-0.103084
0.0140975
0.320726
-0.296025
-0.109226
-0.0154658
-3.98047
-2.55974
-2.70447
-3.43215
-0.838944
-3.27147
-0.795927
-2.5353
-0.923021
-0.408889
0.552953
-0.495277
0.416481
-0.490333
-0.459877
-3.08657
-2.11284
-0.586926
-0.916639
-2.15396
-3.26283
-0.858861
1.91031
1.76652
1.83021
1.92443
1.90724
1.87135
1.61803
0.854507
1.51954
1.32377
0.703647
1.42794
1.54702
1.17431
1.35663
1.31511
1.18804
1.48001
1.12139
1.28572
1.13863
1.37701
1.03569
1.43931
1.08647
1.24604
-3.41131
-3.23899
-2.45743
-2.58106
-0.540732
-0.139593
-0.554742
-2.95694
-0.3024
-0.770614
-0.662791
-2.70134
0.566185
0.966453
0.681212
0.644568
0.881084
0.531133
0.915837
0.607321
0.830572
0.45108
0.825634
0.501523
0.876045
0.571168
1.17777
1.34855
0.984403
0.981567
1.28564
1.21734
0.932425
1.13835
1.15695
0.90863
0.825075
1.23109
0.874935
1.09677
1.85633
1.73198
1.65394
1.83271
1.48424
1.59106
0.966113
-0.09984
1.10741
1.26576
0.12835
1.15823
-3.35865
-3.38171
-2.59858
-3.05893
-3.21569
-2.48938
-2.39083
-3.08806
-2.78929
-2.04682
-1.85037
-1.73888
-2.2754
-4.16621
-3.53308
-2.7169
-2.89084
-1.66353
-2.23783
-0.480897
-0.554176
-2.08026
-1.78305
-0.44246
-3.31034
-2.64295
-3.39076
-3.39398
-2.56197
-1.91687
-2.00517
-2.47838
-3.07902
-3.06212
-1.99519
-2.16376
-0.656883
-0.477241
-2.32399
-1.80627
-0.653566
-2.51277
-0.39972
-0.787322
-2.82825
-0.762754
1.03008
1.12093
0.702653
0.801548
1.07463
1.04691
0.765159
-3.6513
-0.577399
-3.79021
-1.06571
-1.54589
-1.48878
-3.47668
-2.14853
-1.04651
-2.26486
-1.01193
-0.753181
-0.725426
-0.0059789
0.0164471
0.0101173
-0.00157811
-0.00122034
0.00743798
-0.0100791
-0.080971
-0.0517474
-0.0545162
-0.0829024
-0.0581482
-0.0561516
-0.0454175
-0.0328598
-0.0390117
-0.0190743
-0.0327698
-0.0154742
-0.0323545
-0.0221132
-0.0211666
-0.0289339
-0.00798394
-0.00326467
0.00205077
-0.00594914
0.00220969
-0.0130046
-0.00900323
-0.0267775
-0.0249762
-0.0330377
-0.0155655
-0.0442373
-0.017093
0.0501314
0.102351
0.0607648
0.0523187
0.0442235
0.0738231
0.0767774
-0.0498561
-0.0154778
-0.0172249
0.0295152
0.0148144
0.0388172
0.0469007
0.0285241
0.0610672
0.0121143
-0.0107548
-0.0265768
-0.00533491
-0.031248
0.00654619
-0.00469697
-0.0386751
0.0166522
-0.0240029
-0.0423482
-0.0927049
0.131476
0.0607917
-0.0816693
0.0534909
0.0121396
0.11314
0.0806961
0.0709932
0.073949
0.0619136
0.0206568
0.0456738
0.129703
-0.066745
-0.0753284
0.0492349
-0.0177244
0.00196213
0.00493763
0.0366112
0.0257275
-0.0100312
-0.00350319
-0.0186239
0.0115057
0.00191195
-0.0678939
-0.0414676
-0.0699597
-0.0368013
-0.067711
-0.0367153
-0.0445575
-0.0187832
0.0437708
-0.00334766
-0.00284015
-0.0146285
-0.0219368
0.0468945
-0.0708472
-0.0670601
-0.066938
-0.035822
-0.0507589
-0.046063
-0.0352132
-0.00293063
-0.0158341
-0.0238329
0.0371953
-0.0233862
0.0453971
-0.00935143
-0.0823597
-0.165044
-0.163677
-0.156302
-0.0936164
-0.158855
-0.0758694
-0.530066
0.114729
0.179684
-0.512746
0.114395
0.0936048
0.0616413
0.0940636
0.0630233
0.0884181
0.0938948
-0.148992
0.0353307
-0.0208261
-0.0927092
-0.140343
-0.0348797
-0.116455
-0.142468
-0.085665
-0.134797
-0.0555208
-0.148421
-0.0675486
-0.124439
0.187943
0.117247
-0.456076
-0.525154
0.116641
-0.0547171
-0.0569445
-0.0489698
-0.0595552
-0.0697272
-0.0698393
-0.0604059
-0.07485
-0.0511839
-0.0476779
-0.0730983
-0.0411632
-0.0449584
-0.00785103
0.0169308
-0.0126346
-0.0539723
-0.04438
-0.0468447
-0.0481922
-0.0520628
-0.0448103
-0.0605995
-0.0663561
-0.0702366
-0.0919367
-0.0566442
-0.0788884
-0.0598818
-0.0760733
-0.0221244
0.00790466
-0.0164599
-0.0698367
-0.0872083
-0.0643376
-0.0186395
-0.0795193
-0.0262971
-0.0796709
-0.0637153
-0.0846956
-0.0639358
-0.0161348
-0.0714142
-0.0187878
-0.0762547
0.0728931
0.0330882
0.0554616
-0.0654798
0.074627
-0.0119199
-0.127769
-0.0181295
0.0115665
-0.1175
-0.0713833
-0.00357095
-0.0387441
-0.0579033
-0.0157387
-0.0563964
-0.0758119
-0.104547
0.150008
0.069357
-0.137441
0.0820303
-0.0898282
-0.120051
-0.0456357
-0.0504218
-0.0282334
-0.115957
-0.0970377
0.106121
-0.504901
0.174363
-0.172448
0.10261
0.0184653
0.0227941
0.0372763
-0.0968492
-0.101366
-0.0950428
0.0813068
0.0737867
0.0827785
0.115345
0.113215
0.115637
0.11383
0.0855713
0.0781
0.0853516
0.117744
0.11868
0.118002
0.118159
0.146788
0.167791
0.178256
0.24021
0.147042
0.168007
0.178959
-0.207536
-0.0653938
0.0299975
-0.543243
-0.0796236
-0.54995
-0.220156
-0.140911
-0.0880757
-0.557791
0.0222156
-0.131366
-0.087838
-0.559905
0.144168
0.164887
0.239022
0.178384
0.166637
0.177903
0.143238
-0.0743302
-0.0659694
-0.043352
-0.0585374
-0.0523383
0.0766269
0.0604818
0.0727841
0.104995
0.107993
0.109284
0.102151
0.0576529
0.052529
0.0646776
0.0955267
0.0814503
0.0863275
0.0925838
0.125668
0.133857
0.157025
0.222022
0.116693
0.145689
0.165005
-0.219067
-0.0592183
0.0376899
-0.548202
-0.0549377
-0.218548
-0.558448
-0.213983
-0.0412199
-0.559015
0.0411888
-0.203887
-0.0495392
-0.560286
0.135873
0.160642
0.230676
0.175917
0.139113
0.155204
0.174209
0.244212
0.169295
0.150541
0.139256
0.227981
0.233508
0.16959
0.243853
0.123681
-0.159182
0.19158
-0.0842127
0.233579
0.193159
0.301201
-0.803104
-1.01039
-0.0412393
0.339913
0.119857
0.332649
-0.0838599
0.0162967
-0.107466
-0.133496
0.0976487
0.0972081
-0.209829
-0.185816
-0.00313064
-0.244564
-0.00361628
0.110385
0.0757868
0.0945873
0.0566499
0.0724845
0.090689
-0.030676
0.0635871
-0.0144763
-0.00201448
0.128259
-0.0510137
0.143737
0.00937656
0.0725238
-0.000268604
0.0161618
0.158791
0.0264531
0.153512
0.376279
0.380983
0.48606
0.456135
0.473866
0.444572
0.442461
0.462493
-1.53964
-1.52747
-1.80553
-1.80971
-1.1998
-1.33917
-1.17377
-1.22548
-1.25233
-1.4678
-1.19922
-1.51192
-1.50702
-1.76963
-1.81964
-2.09753
-1.8566
-2.33236
-1.79674
-1.18588
-1.13561
-1.03896
-1.06347
-1.09296
-1.14284
-1.15494
-1.25222
-1.2287
-1.28115
-1.0681
-1.51655
-1.14399
-1.16521
-2.05203
-1.77907
-1.78741
-2.01001
-1.23656
-1.42388
-1.40299
-1.56788
-1.25666
-1.5824
-1.27315
-2.23786
-2.33831
-1.79289
-1.32181
-1.61303
-1.25427
-1.60202
-1.7815
-1.30668
-1.70979
-1.26331
-1.39928
-1.215
-1.65221
-1.51233
-1.2994
-1.83693
-2.08856
-2.15409
-1.78742
-0.972806
-0.804333
-1.42447
-1.09647
-1.38095
-1.01365
-0.77354
-1.27165
-0.272213
1.59744
-0.241843
-1.31872
-1.2177
1.56724
-0.245996
-0.237672
-1.1883
-1.95824
-2.43643
-2.46287
-2.01858
-0.925615
-1.13568
-1.05289
-0.716113
-1.25635
-0.894028
-0.746367
1.3641
0.852671
0.622768
1.19796
1.17018
0.848655
1.37924
2.02106
1.74708
1.99924
1.75346
2.02671
2.00707
1.75583
2.02043
1.75438
1.9966
1.35267
1.11348
0.621834
0.841137
1.14038
1.34025
0.845132
1.30001
0.828705
1.00983
0.62211
1.03308
1.28553
0.829389
1.93994
1.7346
2.07518
1.74325
1.90642
1.96242
2.0647
1.75228
1.7488
1.97831
1.31063
1.08358
0.620562
0.836845
1.05646
1.32735
0.83199
-1.6472
-1.97936
-1.95137
-1.70364
-0.80117
-0.550736
-0.905231
-1.00162
-1.03203
-0.629562
-0.753002
-1.07413
-0.225196
1.40044
-0.256013
-1.02602
-1.11999
-0.249993
1.43804
-0.258387
-1.15064
-0.832395
-1.09347
-0.938891
-0.68907
-1.06495
-0.860445
-0.660053
-1.58276
-1.9494
-1.93985
-1.5432
-1.21328
-1.45168
-1.47254
-1.66019
-1.26935
-1.23797
-1.62985
-1.26703
-2.02266
-1.92485
-1.9241
-1.2487
-1.26787
-1.98045
-1.92929
-1.32162
-1.25669
-1.78907
-1.28277
-1.86144
-1.93967
0.405773
0.399399
0.491619
0.513237
0.504444
0.525301
0.529314
0.513037
0.870963
0.704479
1.05215
1.07635
0.679732
0.72827
0.854495
1.76416
1.5759
1.48533
2.38386
1.66311
1.5216
2.37518
1.67343
1.65537
1.55671
1.17609
0.64758
0.880729
0.81601
0.846718
1.21443
0.816623
-1.24449
-1.431
-1.44574
-1.62136
-1.27708
-1.29093
-1.59923
-1.76226
-1.33548
-1.35549
-1.61041
-1.36085
-1.76247
-1.6395
-1.82592
-1.33448
-1.70837
-1.35032
-1.35129
-1.80442
-1.72604
-1.04171
-1.84167
-1.80324
-1.76246
-1.16306
-1.01441
-1.81492
-0.442311
-1.58224
-1.49542
-0.414778
-2.65228
-1.15733
-0.398369
-0.691561
-0.388666
-0.727872
-0.419301
-1.02255
-1.72158
-1.17061
-1.59428
-1.02606
-1.0095
-1.7862
-1.57146
-1.37577
-0.387815
-0.344893
-1.32559
-2.87022
-2.7378
-1.18892
-0.845155
-1.25044
-1.45527
-0.922917
-1.06544
-1.52667
-1.53907
-0.326504
2.24284
-1.40346
-0.365567
-1.3436
-1.51202
-1.28215
-0.982797
-0.969076
-1.56116
-1.40165
-2.30908
-2.43278
-2.10423
-2.62675
-1.80609
-0.422736
2.26187
-0.421405
-1.77536
1.26276
0.825948
0.980525
0.636174
1.26927
0.963192
0.830423
1.75784
1.7268
2.31395
1.84654
1.73191
1.692
1.69506
2.31682
1.71953
1.62625
1.25584
0.915528
0.636869
0.822125
0.94372
1.23618
0.828422
0.194593
0.181621
0.180748
0.308409
0.342792
0.311423
0.333591
0.153206
0.18505
0.184768
0.301292
0.290739
0.299202
0.298333
-1.55581
-1.56546
-1.83377
-1.82463
-1.18392
-1.0746
-1.08727
-1.09163
-1.14522
-1.07483
-1.16417
-1.57516
-1.57144
-1.83904
-1.84098
-1.95482
-1.86293
-1.92873
-1.86617
-1.078
-1.11512
-0.994742
-0.912785
-1.09707
-0.97288
-1.11791
-1.97633
-1.84266
-1.99598
-1.86331
-1.06333
-1.07778
-0.935142
-0.895385
-1.03754
-0.962271
-1.1051
0.347255
0.334744
0.305297
0.353505
0.310759
0.321404
0.340621
0.312993
-1.1449
-1.06533
-1.05006
-1.04513
-1.13296
-1.06451
-1.10555
-1.56785
-1.57388
-1.83553
-1.83111
-1.57599
-1.57866
-1.84296
-1.83918
-1.87623
-1.8514
-1.8978
-1.85101
-0.975978
-0.918816
-0.765768
-0.855004
-0.885488
-0.985228
-0.951714
-0.998848
-1.0614
-0.922089
-0.805869
-1.02425
-0.899475
-1.02482
-1.84303
-1.91183
-1.84054
-1.8558
-1.3947
-2.10715
-2.06781
-1.48411
-1.27805
-2.07867
-0.214438
-2.03677
-1.10492
1.41339
0.858435
1.23622
0.622743
1.26328
1.39892
0.860986
2.06452
1.74725
1.8577
1.74415
2.05689
2.07571
1.83205
1.74752
1.74565
2.08242
1.42611
1.32041
0.624284
0.869827
1.29281
1.44091
0.864413
-1.63386
-2.14547
-2.17144
-1.56063
-1.69954
-2.14229
-1.67573
-2.19013
1.48413
0.894425
1.41964
0.651181
1.40519
1.50068
0.887624
2.11104
1.68016
1.70302
2.18316
1.7341
1.98154
2.0994
1.74091
1.75027
1.74625
2.09596
1.47025
1.35306
0.640787
0.87514
1.3798
1.45546
0.88229
-1.74898
-1.74349
-2.04809
-2.0431
-1.7036
-1.72232
-2.03464
-2.03101
-1.92753
-2.0892
-1.97699
-2.01204
-1.88556
-1.76406
-1.93797
-1.80985
0.283568
0.292584
0.307862
0.418202
0.304305
0.308792
0.44329
0.30684
-1.57108
-1.57515
-1.88172
-1.85571
-1.67099
-1.65135
-1.98996
-2.01999
-2.0122
-2.12252
-2.0033
-2.13321
-1.99351
-2.05352
-1.96273
-2.11903
-0.956246
-2.15301
0.728823
-2.18522
-0.927778
0.670934
-0.987873
-2.14718
0.464239
-1.01191
-2.19431
0.616433
2.12616
1.41499
1.00581
1.22457
0.787667
1.22029
1.41439
0.97946
1.80013
1.51454
1.43334
1.80881
1.51579
1.84276
1.80166
1.85293
1.96298
1.46218
1.53152
1.52705
1.906
1.88978
2.06673
2.08432
1.50622
1.50561
0.757105
0.951379
1.2985
1.63524
0.960252
-0.878316
-2.09895
0.740182
-1.97711
-0.907618
0.674411
-0.814233
-1.41557
0.0905948
-1.80888
0.618097
-0.648504
1.57889
0.904368
1.46778
0.685706
1.54274
1.48684
0.91128
1.91685
1.60267
2.03944
1.5559
1.93338
1.57135
2.00438
1.91477
1.9683
1.53192
1.54359
1.55889
1.99242
1.90103
1.612
1.51331
0.696417
0.93607
1.50547
1.64153
0.918606
0.175741
0.272039
0.275395
0.412742
1.29439
0.678307
1.31327
0.425061
0.464506
1.34521
0.686216
1.33136
0.443826
-0.886592
-1.7189
-0.89894
-0.831694
-1.52486
-1.53726
-0.825697
-1.74958
-1.19021
-0.942876
-0.866083
-1.66253
-1.5769
-1.01958
-0.777508
-1.56284
-0.648303
-1.3753
-1.53941
-0.819689
-0.618262
-0.758255
-1.50163
-1.32043
-0.58731
-1.51411
-0.600339
-0.754005
-1.56899
-1.55743
-1.50719
-1.5352
-1.39337
-1.52739
-1.44201
-2.1986
-1.24191
-1.10475
-1.69729
-1.56739
-0.693382
-1.83782
-0.962721
-0.741867
-1.16773
-1.83907
-1.61884
-0.820026
-1.84232
-0.779484
-1.19825
1.93259
1.57147
1.93677
1.55172
1.52264
1.01729
0.970524
1.73676
1.70912
1.02645
1.5429
1.57912
1.29466
1.14193
1.31215
1.31363
1.33353
1.56343
1.58752
1.35999
1.33675
1.15216
1.32389
1.59862
1.34264
1.50985
1.65903
0.966745
1.02584
1.68395
1.49874
1.02782
1.92945
1.52339
1.537
1.94453
1.94207
1.58491
1.60635
1.93643
1.46596
1.02376
1.53992
0.94913
1.57484
1.45086
1.02275
1.63193
1.40579
1.21685
1.4476
1.37488
1.41253
1.66334
1.61833
1.37204
1.19745
1.34582
1.35944
1.39184
1.60543
1.94694
1.66142
1.6277
1.96446
1.47825
1.63301
0.952226
1.02485
1.60619
1.489
1.02287
-1.75048
-1.74904
-1.9999
-2.03466
-1.68982
-1.70545
-1.88273
-1.81059
-1.47708
-2.03784
-1.25461
-1.37014
-1.39859
-1.65875
-1.62727
-1.7433
-1.53726
0.192349
0.180708
0.366299
1.25748
0.659888
1.19762
0.342671
0.33495
1.18097
0.646902
1.15381
0.320229
-1.58551
-1.65485
-1.67471
-1.58252
-1.69238
-1.6658
-1.71185
-1.78131
-1.2999
-1.23105
-1.88094
-1.352
-1.15081
-1.30422
-1.94319
-2.12473
-0.981487
-1.29413
-1.08193
2.12372
2.125
1.41204
1.01133
1.2318
0.847132
1.23867
1.41377
1.01347
1.81886
1.51729
1.79268
1.37614
1.81281
1.51708
1.76666
2.11631
2.10644
1.82495
1.72413
1.36146
1.51535
1.51737
1.7474
1.8257
1.41366
1.2734
0.858874
1.01841
1.2503
1.41303
1.01527
2.12355
2.12923
1.42261
1.02124
1.48623
0.93985
1.4296
1.40715
1.02587
1.76786
1.44457
1.50374
1.30272
1.72695
1.47144
1.57777
2.1156
1.70343
2.00826
1.99265
1.80747
1.71121
1.31488
1.5109
1.49471
1.67955
1.82381
1.40292
1.29239
0.9206
1.02258
1.32812
1.40977
1.02229
0.310239
0.181854
0.182419
0.328677
0.410728
0.327477
0.415363
0.337684
0.181093
0.180753
0.324648
0.412568
0.324146
0.413627
0.298445
0.206153
0.205992
0.351228
0.465743
0.351976
0.466128
0.387007
0.190587
0.19017
0.327507
0.407302
0.325423
0.409309
-0.889805
-1.71963
-0.889262
-0.827862
-1.48698
-1.47113
-0.827407
-1.73561
-0.89464
-0.893151
-0.843513
-1.52915
-1.52038
-0.851765
-0.781903
-1.57897
-1.0713
-0.615107
-1.5301
-0.803105
-0.590503
-0.749064
-1.44735
-1.04553
-0.571938
-1.43169
-0.749567
-0.564495
0.107887
0.320897
0.321514
0.611072
1.85558
0.878741
1.85279
0.613531
0.668452
1.64093
0.86229
1.77512
0.650196
-0.86454
-1.67605
-0.878185
-0.827828
-1.46386
-1.47017
-0.812026
-0.895407
-1.71076
-0.88398
-0.835198
-1.51372
-0.851977
-1.49387
-0.774321
-1.56423
-0.615754
-1.03457
-0.802696
-1.53095
-0.578032
-0.761573
-1.47874
-0.989395
-0.533179
-1.49873
-0.559573
-0.739491
1.95797
1.32532
1.66435
1.35939
1.91397
1.99234
1.49969
1.99314
1.48131
1.85432
1.31717
1.62022
1.29939
1.89436
1.82395
1.50558
2.16176
1.21721
2.33672
1.23915
1.78187
-0.719768
-1.56986
-0.731697
-0.62409
-1.46403
-1.49414
-0.606925
-1.60378
-0.756721
-0.744946
-0.640772
-1.53945
-1.52587
-0.658182
-0.476711
-1.46446
-0.225123
-0.427641
-1.43616
-0.500948
-0.202094
-0.457197
-1.3621
-0.414326
-0.171941
-1.39936
-0.18944
-0.435282
0.106635
0.492393
0.460051
0.667201
0.64929
1.93528
0.93421
1.98362
0.668996
0.7052
2.04726
0.952422
2.01394
0.687947
-0.853767
-1.61019
-0.827309
-0.759261
-1.44507
-0.796835
-1.4401
-0.77567
-1.61532
-0.799668
-0.717845
-1.57209
-0.683111
-1.50058
-0.594783
-1.52456
-0.266264
-0.584527
-0.536199
-1.48239
-0.342642
-0.661715
-1.43692
-0.766742
-0.497796
-0.715386
-1.43491
-0.430314
1.52834
0.994962
1.0013
2.02203
1.99864
0.977869
1.55073
1.51509
0.992566
1.96532
0.951051
1.98545
0.965691
1.49823
1.61227
1.09505
1.00525
2.03369
2.07478
1.05278
1.56951
1.6502
1.28413
2.12909
1.15107
1.68922
2.10541
1.10692
0.568949
0.949344
0.937714
-1.44514
-1.39871
-1.18734
-1.24842
-0.2592
0.391888
2.02686
-0.312941
2.0542
1.00659
1.8952
1.17646
1.85282
1.06622
-0.318106
0.385652
2.03895
-0.342004
1.9655
1.11503
1.864
1.18416
1.87293
1.09768
-0.594854
-0.9309
-0.617927
-0.399364
-0.409888
-0.457319
-0.373483
-0.965398
-0.65823
-0.63449
-0.419141
-0.637167
-0.504489
-0.436028
-0.647611
-1.08267
-0.66118
-0.48616
-0.862154
-0.844542
-0.478812
-1.06146
-0.664867
-0.679772
-0.486483
-0.764189
-0.817727
-0.454843
-0.246244
-0.298939
0.0985611
-0.0684307
-0.279191
-0.0500454
-0.263145
1.26629
0.774539
1.70905
0.825974
1.57346
0.821049
1.35651
-0.709685
-1.47113
-0.69967
-0.579747
-1.42011
-1.37737
-0.593349
-1.43175
-0.675101
-0.689367
-0.568064
-1.25769
-1.32729
-0.546429
-0.390546
-0.898134
-0.323888
-0.134006
-1.13347
-0.3707
-0.141897
-0.402173
-1.30364
-0.372336
-0.160471
-1.23488
-0.418268
-0.150419
0.248443
0.660513
0.677328
-1.44149
-0.482283
0.493296
-0.474439
0.909808
2.07338
1.05938
2.35746
0.838364
-0.300826
0.444719
2.26437
-0.390227
0.78939
2.30522
1.04985
2.34298
0.803892
-0.65767
-1.26702
-0.653534
-0.513639
-1.00625
-0.509569
-1.08748
-0.66679
-1.32793
-0.662034
-0.523975
-1.17744
-0.53135
-1.13852
-0.344514
-0.759028
-0.129619
-0.0621365
-0.355404
-0.714935
-0.12495
-0.325428
-0.494698
-0.0280236
-0.0983616
-0.306454
-0.635835
-0.110636
1.44627
0.919601
0.850949
1.86018
1.90717
0.897551
1.41368
1.46734
0.94348
1.95768
0.940345
1.93122
1.48917
0.918548
1.36706
0.770153
0.83311
1.83555
1.79223
0.81168
1.39449
1.35181
0.751065
1.78681
0.812815
1.37541
1.7557
0.801889
0.258764
0.201442
0.196894
0.3437
0.448915
0.351143
0.448871
0.249795
0.187024
0.18204
0.350249
0.524243
0.358199
0.509596
0.227971
0.248874
0.245203
0.389892
0.564346
0.394515
0.568164
0.260549
0.212249
0.21985
0.382266
0.57129
0.376738
0.581495
-0.579627
-0.696734
-0.568763
-0.351341
-0.371028
-0.337132
-0.357025
-0.565105
-0.527222
-0.546425
-0.335414
-0.264383
-0.296153
-0.317094
0.553188
0.742149
0.761992
-0.923007
-0.530738
-0.381353
-0.945611
-0.483102
-0.436853
0.00743373
0.479366
1.78085
0.0363969
1.73744
2.22805
1.06935
1.67305
1.12175
1.76681
2.00107
1.03018
0.0775395
0.487811
1.59191
0.0587792
1.6842
2.07123
2.18918
1.01095
1.77585
1.12689
2.17955
1.77479
1.00772
-0.429091
-0.445374
-0.461933
-0.253555
-0.113601
-0.186705
-0.21875
-0.508039
-0.476523
-0.486076
-0.279263
-0.243301
-0.30058
-0.221248
0.850783
1.12969
1.09356
-1.00035
-0.523099
-0.444551
-1.02629
-0.398005
-0.435559
1.93796
1.12741
1.60338
1.13237
1.95521
1.57527
1.16146
1.74682
0.101701
0.557766
1.45387
1.80271
0.163779
1.3923
1.9303
1.19922
1.54891
1.13408
1.92303
1.56187
1.18223
-0.401048
-0.328628
-0.349011
-0.134541
-0.0921761
-0.191715
-0.0652771
1.26613
2.18515
1.32025
2.16472
1.29278
-0.540246
1.83278
0.0679492
0.132277
1.88853
-0.456468
1.79964
0.193634
1.7016
0.158044
0.890233
2.26977
1.39185
1.18183
-0.962054
2.2695
-0.00884243
1.9742
-0.0747982
-1.11631
2.33465
-0.192921
2.40593
-0.120043
0.278678
0.278185
0.283228
0.417881
0.601698
0.414714
0.606684
0.259939
0.29872
0.298773
0.419067
0.614771
0.416535
0.612714
1.71346
1.95939
1.49276
2.00106
1.49488
1.44268
2.1792
2.2073
1.71981
1.29252
1.6917
1.29795
1.47353
1.99576
1.96035
1.48429
1.23777
1.51171
1.24429
-3.09852
-2.71898
-2.46123
-2.18751
-2.9203
1.03887
0.91966
0.929127
-0.00564653
0.450339
0.376426
-0.0186657
-2.82404
-2.85666
-2.18641
-2.98624
-2.19076
0.69064
0.883542
0.820955
0.0114345
0.315779
-0.0149597
0.347097
-3.30839
-3.8356
-3.04525
-2.2538
-3.01208
-2.89906
-2.43175
-3.56195
-2.65317
-2.88042
-2.07659
-2.58915
-2.73036
-1.96543
-3.71296
-2.94035
-3.10917
1.07204
1.11991
1.17916
-0.0488144
0.605838
-0.159626
0.685598
-3.3595
-3.5882
1.32386
1.17181
1.27777
0.0675463
0.670227
0.169555
0.724293
-0.680978
-1.26098
0.163331
-0.0435042
-0.6861
-1.22815
0.306365
-0.681696
-1.15643
0.232376
-0.0737797
-0.734671
-1.14535
0.286658
-2.2625
-2.81565
-2.388
-1.64569
-1.84489
-1.53964
-2.04718
-2.42552
-2.82765
-2.43208
-1.72582
-2.28848
-1.77977
-2.25802
-0.0955087
-0.106232
-0.0970011
-0.103643
-0.0937775
-0.0988398
-0.0965576
-0.108633
-0.100166
-0.111775
-0.098807
-0.0990679
-0.0884453
-0.078501
-0.0803758
-0.0848286
-0.0805888
-0.0864503
-0.0778808
-0.0704024
-0.0791947
-0.0958319
-0.0947998
-0.0996645
-0.0811907
-0.0858336
-0.0804794
-0.0816872
-0.0410586
-0.0412628
-0.0652669
-0.062298
-0.0686507
-0.0392792
-0.0411489
-0.0436324
-0.0712593
-0.0671234
-0.0442557
-0.0697185
-0.0461702
-0.042767
-0.089107
-0.089977
-0.0838042
-0.0825175
-0.0904581
-0.0885736
-0.0839321
-0.102842
-0.108571
-0.106245
-0.0998891
-0.100661
-0.101234
-0.0866827
-0.0876494
-0.0825985
-0.0812475
-0.0812641
-0.0898421
-0.0998054
-0.10155
-0.107729
-0.101143
-0.0878489
-0.0845017
-0.0831211
-0.0841999
-0.186504
-0.187743
-0.186154
-0.17155
-0.169287
-0.171752
-0.170678
-0.154867
-0.132337
-0.136527
-0.161643
-0.154003
-0.151314
-0.139552
-0.142054
-0.153851
-0.151591
-0.141751
-0.150803
-0.160493
-0.139815
-0.132248
-0.154811
-0.134444
-0.158227
-0.110298
-0.0999307
-0.104602
-0.0981645
-0.10738
-0.106724
-0.10206
-0.123866
-0.125752
-0.122505
-0.118598
-0.122306
-0.128269
-0.119259
-0.12122
-0.137231
-0.137365
-0.112508
-0.111504
-0.103185
-0.111605
-0.108683
-0.10773
-0.102167
-0.106976
-0.10676
-0.109963
-0.109504
-0.1052
-0.12421
-0.133718
-0.141324
-0.120502
-0.140344
-0.120941
-0.119618
-0.134544
-0.134972
-0.118366
-0.136
-0.122201
-0.116582
-0.110729
-0.108882
-0.107912
-0.127789
-0.118198
-0.113388
-0.162996
-0.162061
-0.165934
-0.157414
-0.15258
-0.154657
-0.155042
-0.14912
-0.145598
-0.140243
-0.150271
-0.147842
-0.146362
-0.146142
-0.179113
-0.175155
-0.163887
-0.169728
-0.173218
-0.167823
-0.173889
-0.170962
-0.166317
-0.173321
-0.165721
-0.152155
-0.150211
-0.141251
-0.149695
-0.142167
-0.143735
-0.148814
-0.140927
-0.144891
-0.141439
-0.142583
-0.150965
-0.1465
-0.145101
-0.146979
-0.144352
-0.122031
-0.124712
-0.132304
-0.132113
-0.132692
-0.130822
-0.12099
-0.120725
-0.127691
-0.131868
-0.119183
-0.128717
-0.123216
-0.115135
-0.116002
-0.122279
-0.130123
-0.116978
-0.106678
-0.1182
-0.114114
-0.120131
-0.127534
-0.130083
-0.129936
-0.119769
-0.130609
-0.127694
-0.109025
-0.106821
-0.108415
-0.107859
-0.106617
-0.105986
-0.11035
-0.111343
-0.113831
-0.105079
-0.105871
-0.111481
-0.114497
-0.104958
-0.116055
-0.119919
-0.116048
-0.130533
-0.110336
-0.126875
-0.120014
-0.0768369
-0.0768057
-0.0741782
-0.0790328
-0.0780534
-0.0790117
-0.0759209
-0.10389
-0.0923264
-0.0967976
-0.091849
-0.0790326
-0.0751094
-0.0820707
-0.0819306
-0.0787382
-0.0797717
-0.0818524
-0.0840502
-0.0788283
-0.0810231
-0.0883665
-0.080828
-0.0794884
-0.10676
-0.102482
-0.0938332
-0.0979045
-0.10418
-0.0970489
-0.0798414
-0.0759229
-0.0769629
-0.0744724
-0.078135
-0.0985234
-0.097771
-0.0832898
-0.0778132
-0.0788397
-0.0838106
-0.0862935
-0.0760171
-0.0809188
-0.0726871
-0.0786589
-0.0741155
-0.0770553
-0.0774686
-0.0769811
-0.0723115
-0.0648456
-0.0769531
-0.0691803
-0.0768915
-0.0801105
-0.0874023
-0.0949692
-0.0969427
-0.0868208
-0.0693962
-0.0755051
-0.0681547
-0.0787333
-0.0735825
-0.0741697
-0.0752612
-0.0785328
-0.0732111
-0.0735757
-0.079525
-0.0812806
-0.0706119
-0.0883
-0.0965025
-0.0949869
-0.0876816
-0.0954234
-0.0878987
-0.0886455
-0.0913034
-0.0947358
-0.0960398
-0.0969719
-0.0960026
-0.0921627
-0.0931057
-0.0789491
-0.074814
-0.0811753
-0.0694662
-0.0804345
-0.0692353
-0.0797621
-0.0918714
-0.0954433
-0.0878447
-0.097046
-0.0933659
-0.0965241
-0.0872765
-0.0788191
-0.0711677
-0.0715362
-0.0799705
-0.0806343
-0.0665246
-0.0788266
-0.0707141
-0.068107
-0.0785521
-0.0663683
-0.0749582
-0.0673487
-0.0758215
-0.0897516
-0.0988793
-0.0948685
-0.0869453
-0.0903693
-0.0958151
-0.096336
-0.0953499
-0.0963213
-0.090156
-0.0950117
-0.0748399
-0.0709475
-0.0779103
-0.0674688
-0.0813034
-0.0698146
-0.0803812
-0.0843055
-0.0740671
-0.0812028
-0.0825641
-0.0709723
-0.0635718
-0.0721745
-0.0704853
-0.0657694
-0.0574546
-0.0701877
-0.168296
-0.16679
-0.158502
-0.16738
-0.157664
-0.156293
-0.150872
-0.147097
-0.148881
-0.148709
-0.141728
-0.149896
-0.146593
-0.151077
-0.150177
-0.150051
-0.142726
-0.151716
-0.149248
-0.122214
-0.129555
-0.122467
-0.1212
-0.128655
-0.129788
-0.123296
-0.128843
-0.122053
-0.121583
-0.112843
-0.112785
-0.104994
-0.112401
-0.105613
-0.122947
-0.140582
-0.136133
-0.1233
-0.13648
-0.122556
-0.114575
-0.106433
-0.117991
-0.106076
-0.121102
-0.114078
-0.106327
-0.116609
-0.130201
-0.119638
-0.120213
-0.128404
-0.117145
-0.1309
-0.114289
-0.110769
-0.119853
-0.106537
-0.121509
-0.132289
-0.133476
-0.122636
-0.0729062
-0.0667365
-0.0725832
-0.0682334
-0.0679548
-0.0680473
-0.081717
-0.0667411
-0.0730395
-0.076616
-0.0838553
-0.0780232
-0.0817127
-0.095752
-0.0895517
-0.096543
-0.096391
-0.0945513
-0.0709383
-0.081409
-0.0836896
-0.0929058
-0.0945896
-0.0862873
-0.095869
-0.0957143
-0.0864971
-0.0925834
-0.0717105
-0.0760886
-0.0667469
-0.071989
-0.0643146
-0.0831288
-0.0920771
-0.093658
-0.0805268
-0.0842987
-0.0780953
-0.0829763
-0.0822023
-0.0681656
-0.0599585
-0.0779318
-0.0695944
-0.0805539
-0.0790943
-0.0818232
-0.0870467
-0.0840528
-0.0960692
-0.0908645
-0.0787645
-0.0861797
-0.125384
-0.121202
-0.124873
-0.125856
-0.115305
-0.115982
-0.12819
-0.121536
-0.133278
-0.126996
-0.114055
-0.120017
-0.124625
-0.113373
-0.0857251
-0.0850158
-0.102996
-0.0838075
-0.0883488
-0.0863996
-0.097045
-0.0980738
-0.0831336
-0.0849441
-0.0952381
-0.0822095
-0.0926038
-0.095878
-0.0814157
-0.0870033
-0.0865255
-0.0728199
-0.078614
-0.0822446
-0.0839083
-0.0862989
-0.128538
-0.119496
-0.118899
-0.115044
-0.115843
-0.110381
-0.101708
-0.0918512
-0.113507
-0.106639
-0.0998865
-0.108061
-0.0975064
-0.0992319
-0.114638
-0.104079
-0.111385
-0.132636
-0.130731
-0.132058
-0.114853
-0.133639
-0.119967
-0.119692
-0.134926
-0.132124
-0.132348
-0.114417
-0.118684
-0.113609
-0.11815
-0.0809925
-0.0863544
-0.0811664
-0.0911541
-0.0877894
-0.0790226
-0.0821386
-0.0663307
-0.0717959
-0.0664045
-0.0700559
-0.0878316
-0.104869
-0.0881972
-0.0634864
-0.060103
-0.0572394
-0.0696205
-0.0624136
-0.0692574
-0.0636769
-0.0653149
-0.0749054
-0.0728172
-0.0604924
-0.0680662
-0.070843
-0.070237
-0.0787378
-0.0780168
-0.0741394
-0.0793827
-0.0756978
-0.0807278
-0.0761426
-0.111616
-0.117733
-0.108828
-0.109629
-0.100852
-0.105755
-0.0996902
-0.104161
-0.0952805
-0.102637
-0.0982485
-0.101354
-0.0983318
-0.101637
-0.0948924
-0.101988
-0.137185
-0.118785
-0.120087
-0.115442
-0.105887
-0.117975
-0.10884
-0.113548
-0.112986
-0.114854
-0.11838
-0.11663
-0.117829
-0.117687
-0.108574
-0.110822
-0.0880293
-0.0929368
-0.110996
-0.108196
-0.0869473
-0.108234
-0.105297
-0.0934073
-0.0877372
-0.110797
-0.0873119
-0.10459
-0.131913
-0.129013
-0.125787
-0.121895
-0.124162
-0.122196
-0.121934
-0.116609
-0.114418
-0.119228
-0.11867
-0.112614
-0.116067
-0.116541
-0.10347
-0.0982323
-0.10606
-0.0904969
-0.09872
-0.104072
-0.0927497
-0.103097
-0.100728
-0.10547
-0.0918101
-0.103141
-0.0998542
-0.0921331
-0.0656014
-0.067538
-0.0850564
-0.065812
-0.0662353
-0.0765659
-0.0684073
-0.0839002
-0.0811508
-0.0844406
-0.0740372
-0.0724562
-0.0988517
-0.0291459
-0.0528809
-0.061981
-0.0342165
-0.071513
-0.0489803
-0.0295158
-0.0410104
-0.0660078
-0.035178
-0.0536768
-0.075158
-0.0581468
-0.0632638
-0.0485707
-0.042031
-0.0360857
-0.0642177
-0.05627
-0.0818804
-0.0866384
-0.0808547
-0.0872538
-0.079844
-0.0895292
-0.0842063
-0.0788202
-0.0723658
-0.095132
-0.0704387
-0.0743411
-0.0677789
-0.0840834
-0.0877187
-0.0796866
-0.080844
-0.0626214
-0.0742502
-0.0586743
-0.0716222
-0.076822
-0.0764793
-0.0401007
-0.0623038
-0.0578116
-0.0836284
-0.0638965
-0.0824191
-0.082849
-0.0784759
-0.0819392
-0.0814628
-0.080574
-0.0793092
-0.0766119
-0.0677855
-0.0568188
-0.0566588
-0.0695902
-0.0733378
-0.0695727
-0.0881692
-0.0806442
-0.0810426
-0.0942411
-0.100708
-0.0930562
-0.0895998
-0.0996439
-0.0989757
-0.0915924
-0.0730714
-0.0665346
-0.0782895
-0.0411115
-0.0463949
-0.0803609
-0.0702122
-0.0880797
-0.098339
-0.0969893
-0.0887572
-0.0978534
-0.0902563
-0.0861069
-0.127223
-0.128337
-0.126407
-0.118069
-0.12076
-0.119799
-0.118459
-0.106865
-0.105819
-0.099114
-0.0991659
-0.107248
-0.100714
-0.105197
-0.109753
-0.112618
-0.103994
-0.104428
-0.111602
-0.110605
-0.103947
-0.0680889
-0.0696385
-0.0774767
-0.0425522
-0.0400102
-0.0772749
-0.0697603
-0.085906
-0.0875313
-0.105496
-0.093641
-0.0869736
-0.0995275
-0.0837429
-0.0846586
-0.0966321
-0.0875674
-0.109718
-0.0868363
-0.0856302
-0.10057
-0.100516
-0.102661
-0.0939575
-0.0957677
-0.1012
-0.102572
-0.0932602
-0.0731926
-0.0825003
-0.0863087
-0.0882812
-0.0768323
-0.078902
-0.0837435
-0.10261
-0.103645
-0.124022
-0.125296
-0.126409
-0.10792
-0.102634
-0.101331
-0.110345
-0.103993
-0.106262
-0.102817
-0.0777883
-0.0994259
-0.0906713
-0.103388
-0.0888546
-0.0904001
-0.103594
-0.104966
-0.105078
-0.0981744
-0.097761
-0.106216
-0.105675
-0.0992336
-0.100441
-0.0935305
-0.0919515
-0.0955499
-0.0921704
-0.0894628
-0.0872864
-0.0836585
-0.0776653
-0.0833123
-0.08929
-0.0860031
-0.0915111
-0.0847383
-0.0866335
-0.0908169
-0.119619
-0.110918
-0.114688
-0.12302
-0.104379
-0.107836
-0.115783
-0.113007
-0.113312
-0.120321
-0.116971
-0.114065
-0.114583
-0.121445
-0.118663
-0.109216
-0.081709
-0.0803243
-0.107103
-0.0827593
-0.10897
-0.0808709
-0.0841584
-0.0835177
-0.106535
-0.061789
-0.0785495
-0.0839459
-0.0785762
-0.0804096
-0.0821416
-0.0592638
-0.0653787
-0.0857572
-0.0817987
-0.0744218
-0.0823556
-0.0891363
-0.0614023
-0.0452917
-0.0741629
-0.0755215
-0.043399
-0.0486492
-0.0816196
-0.0785424
-0.0556487
-0.056344
-0.0748588
-0.0792478
-0.0436778
-0.0514382
-0.0355864
-0.0741091
-0.0602864
-0.0694979
-0.0614059
-0.028209
-0.0129539
-0.00892026
-0.0386503
-0.00465206
-0.0264864
-0.0442231
-0.00285668
-0.0607838
-0.0775469
-0.078579
-0.0763818
-0.111175
-0.0656428
-0.0141682
-0.0509779
-0.000128975
0.00454194
-0.0391672
-0.0167011
-0.00182234
-0.0398416
-0.0523526
-0.0599006
-0.0342058
-0.0577738
-0.0331082
-0.0357111
-0.0511432
-0.0721443
-0.0753575
-0.0632102
-0.064941
-0.0567177
-0.066098
-0.0478096
-0.0580408
-0.0591842
-0.0600574
-0.0609535
-0.0620923
-0.0459228
-0.137394
-0.136888
-0.106184
-0.102261
-0.102947
-0.106403
-0.126732
-0.130857
-0.103988
-0.10188
-0.101646
-0.102369
-0.103046
-0.09993
-0.0981492
-0.0944463
-0.104141
-0.0961184
-0.0955784
-0.10453
-0.103031
-0.109063
-0.0880374
-0.107223
-0.103488
-0.0936299
-0.105235
-0.106623
-0.105938
-0.0982495
-0.0982386
-0.0986854
-0.0975692
-0.105511
-0.105603
-0.0980935
-0.0981742
-0.0902034
-0.0883453
-0.0846505
-0.0822022
-0.0902108
-0.0844779
-0.0893758
-0.0910826
-0.0852016
-0.0912104
-0.0851573
-0.0909899
-0.0907318
-0.0838381
-0.0825531
-0.0911818
-0.0839618
-0.0901098
-0.111155
-0.131565
-0.110189
-0.103861
-0.130677
-0.132148
-0.113452
-0.114103
-0.0864692
-0.0863525
-0.0902005
-0.0895771
-0.089301
-0.0841763
-0.0900661
-0.0861845
-0.0867123
-0.0905627
-0.0850428
-0.0857825
-0.0849764
-0.0907838
-0.0616293
-0.0785857
-0.084815
-0.0766697
-0.0824263
-0.0643103
-0.0705983
-0.0588084
-0.0848011
-0.0819392
-0.0675128
-0.0599369
-0.0826025
-0.0661535
-0.0758678
-0.0842202
-0.0842972
-0.0660338
-0.0623355
-0.0774293
-0.0749582
-0.0767332
-0.0668912
-0.0601739
-0.124335
-0.0237216
-0.0757924
-0.0360488
-0.0246558
-0.0958175
-0.0804963
-0.0742014
-0.0853972
-0.0814265
-0.0699309
-0.0383385
-0.0437923
-0.0396529
-0.0746598
-0.067776
-0.0776217
-0.0750529
-0.0594319
-0.077391
-0.067576
-0.0606977
-0.0699849
-0.077867
-0.079712
-0.0846622
-0.0803816
-0.068796
-0.084616
-0.0796969
-0.0673042
-0.0758087
-0.0359352
-0.0774741
-0.0711467
-0.0646351
-0.0795744
-0.0456536
-0.0955789
-0.0106375
-0.0507334
-0.0141871
-0.0165563
-0.0604496
-0.0507711
-0.0772592
-0.0796587
-0.0629001
-0.0688451
-0.0810736
-0.0623621
-0.0661798
-0.0256197
-0.0418393
-0.0338843
-0.056527
-0.0680977
-0.0774777
-0.0729904
-0.0584556
-0.0777721
-0.0674242
-0.0557514
-0.104887
-0.121775
-0.122305
-0.12237
-0.115733
-0.114512
-0.113186
-0.115083
-0.0908691
-0.104943
-0.0942301
-0.0972768
-0.0925604
-0.098293
-0.106805
-0.0872432
-0.097155
-0.0938191
-0.102411
-0.0870528
-0.0852796
-0.103339
-0.080223
-0.0936847
-0.0931412
-0.0928797
-0.0847228
-0.0851848
-0.0852338
-0.0847396
-0.0944223
-0.0936726
-0.093187
-0.0852172
-0.0872258
-0.0869415
-0.0858415
-0.0767746
-0.0798071
-0.0716022
-0.0709282
-0.078745
-0.0782972
-0.06747
-0.0761293
-0.0796663
-0.0722316
-0.0638401
-0.0787039
-0.0657356
-0.0762483
-0.110003
-0.120071
-0.109612
-0.111899
-0.114745
-0.112634
-0.113171
-0.107204
-0.0963274
-0.0939565
-0.107109
-0.100367
-0.0816972
-0.0863242
-0.103643
-0.0909208
-0.103991
-0.10696
-0.100703
-0.103027
-0.0853745
-0.104725
-0.0935539
-0.0963628
-0.08312
-0.0883973
-0.0938668
-0.0918495
-0.0921834
-0.0814075
-0.0832592
-0.0839052
-0.0803191
-0.0879342
-0.089777
-0.0914456
-0.0815403
-0.0818394
-0.0786526
-0.0816106
-0.0721463
-0.0783337
-0.0865794
-0.0379045
-0.0671969
-0.0822069
-0.0499571
-0.0731822
-0.0794498
-0.0753525
-0.0628222
-0.0754641
-0.0790587
-0.0596428
-0.0832602
-0.0760857
-0.0752156
-0.111977
-0.0867212
-0.0857705
-0.0858403
-0.0858418
-0.0837053
-0.0788285
-0.0763555
-0.0741671
-0.0621618
-0.0704767
-0.0818593
-0.0696949
-0.0735798
-0.065975
-0.077092
-0.0762757
-0.0683272
-0.0841215
-0.0839666
-0.0757805
-0.0742924
-0.0835205
-0.083726
-0.0772375
-0.0705631
-0.0602324
-0.0700562
-0.118885
-0.0894795
-0.0855768
-0.0904603
-0.0853091
-0.0893052
-0.0811662
-0.0820389
-0.0784604
-0.0861998
-0.0833985
-0.0926971
-0.0947944
-0.0764285
-0.0679438
-0.0976423
-0.0914655
-0.0770061
-0.0734984
-0.0746941
-0.0851544
-0.0835048
-0.0722882
-0.0721345
-0.0869013
-0.0826294
-0.0739733
-0.0107423
-0.125151
-0.0340456
-0.00697547
-0.0337125
-0.0152842
-0.0105597
-0.0214937
-0.0649478
-0.0707788
-0.0358442
-0.0553673
-0.0504639
-0.0328102
-0.039312
-0.0474269
-0.0244393
-0.0283165
-0.0403063
-0.030923
-0.00143351
0.00229144
0.00212093
0.00325344
0.00517445
0.00416814
-0.00385398
0.00599923
-0.0683512
0.00249842
-0.034977
-0.0893802
-0.00226066
0.0151404
-0.0222579
-0.0535157
-0.0549598
-0.0231613
-0.022557
-0.0629192
-0.0259231
0.00368379
0.0035781
0.00329128
0.00514439
0.00440862
0.000308322
0.009039
0.00239661
-0.0361673
0.0137583
-0.120555
0.021449
-0.0195878
-0.0678661
-0.0633453
-0.0659862
-0.0624614
-0.0554698
-0.0539955
-0.0647815
-0.0780769
-0.0612189
-0.0624535
-0.0647781
-0.0650397
-0.0606864
-0.0531636
-0.0527981
-0.0603263
-0.0501027
-0.0348136
-0.0306224
0.00979385
-0.0343393
-0.0495926
-0.0320558
-0.0506139
-0.0413075
-0.0560215
-0.0736243
-0.0466678
-0.0610545
-0.0531317
-0.0373815
0.00612532
-0.047605
-0.0360183
-0.040527
-0.0564693
-0.0754803
-0.0832113
-0.087528
-0.0695964
-0.0662168
-0.067676
-0.0642583
-0.0626718
-0.0593537
-0.0654976
-0.0652806
-0.0642312
-0.06628
-0.0632966
-0.0543777
-0.0611069
-0.0574576
-0.0560953
-0.0360356
-0.0305397
-0.00108418
-0.0509212
-0.0409797
-0.0474174
-0.0929954
-0.0805261
-0.154707
-0.088193
-0.208751
-0.0770735
-0.0655871
-0.0821952
-0.0574533
-0.0473118
-0.00321461
-0.048981
-0.0432364
-0.0484671
-0.0586129
-0.0807688
-0.0774577
-0.0788211
-0.100026
-0.0880534
-0.0896875
-0.0806841
-0.0786737
-0.0790466
-0.0703903
-0.0552815
-0.0710772
-0.0610668
-0.0656157
-0.0621996
-0.0591293
-0.0632663
-0.0620621
-0.0587993
-0.0711092
-0.0577837
-0.0716864
-0.0604824
-0.0629491
-0.0569129
-0.0573523
-0.0613422
-0.0627372
-0.056808
-0.100044
-0.0858491
-0.0957956
-0.0720448
-0.0745289
-0.0743414
-0.0706649
-0.0663462
-0.0683214
-0.070463
-0.0758517
-0.0755076
-0.0725962
-0.0768984
-0.0732825
-0.0648365
-0.0696626
-0.0564135
-0.0651441
-0.0833695
-0.095999
-0.0631199
-0.136061
-0.0952455
-0.0981607
-0.0645771
-0.0690479
-0.0601457
-0.0884199
-0.0666193
-0.0940236
-0.0633155
-0.0525292
-0.0493747
-0.0726302
-0.0625695
-0.0580188
-0.0950002
-0.0714651
-0.0741918
-0.0917514
-0.0687708
-0.0573118
-0.0573529
-0.0659978
-0.0648481
-0.08154
-0.0680967
-0.0553923
-0.0724153
-0.0677428
-0.0851705
-0.066676
-0.0468921
-0.0558007
-0.0551244
-0.0665784
-0.0267608
-0.00104059
0.0100832
-0.0371409
-0.0464502
-0.0371005
-0.044309
-0.0174298
-0.0402138
-0.166737
-0.0961944
-0.0310891
0.00282852
0.000181917
-0.0309815
-0.0770253
-0.0620222
-0.0631114
-0.0384674
0.00080494
-0.0578113
-0.0395075
-0.0576121
-0.0737276
-0.0541635
-0.0450132
-0.0351256
-0.0475966
-0.0370765
-0.0370151
-0.0399343
-0.0226163
-0.0147518
-0.0189079
-0.0196697
-0.0558197
-0.0428734
-0.0460111
-0.0301019
-0.0380331
-0.0436857
-0.0262383
-0.0030135
-0.0172887
0.00434507
0.0369294
-0.0273701
-0.00238525
0.0126047
-0.00242607
-0.190895
0.0296114
0.0460885
-0.140276
0.0387522
-0.00566983
-0.0110133
-0.0915038
0.0157355
0.0275059
-0.125957
-0.0552766
0.0321883
0.00547961
0.00864579
0.0361133
0.0181004
0.00476103
0.012284
0.00807001
-0.0345137
-0.0455471
-0.0370172
-0.0257583
-0.0422125
-0.0396677
-0.0269908
-0.0568136
-0.0569313
-0.0602108
-0.0501578
-0.0479494
-0.0458421
-0.0528298
-0.0555413
-0.0610212
-0.0414592
-0.0396242
-0.052128
-0.0502846
-0.0369798
-0.0374429
-0.00503785
0.0334674
-0.029427
-0.0137723
0.0320641
-0.059098
-0.0751911
-0.0592652
-0.0469074
-0.205799
-0.0813394
-0.119674
-0.0976686
-0.104376
-0.0937082
-0.229908
-0.0925447
-0.208582
-0.0348679
-0.010432
-0.0114756
0.0259182
-0.0160615
-0.00624593
0.0200629
-0.0376972
-0.0136451
-0.019306
0.0207318
-0.0315906
-0.0335773
0.0213286
-0.0702813
-0.0346106
-0.0518418
-0.0212041
-0.032449
-0.113104
0.00636501
-0.0363858
-0.0269374
-0.0217702
0.0227549
-0.0232385
-0.0187916
0.0156328
0.0654801
0.00429032
0.0137393
0.0977188
0.0855886
0.0937351
0.0890695
0.0621779
-0.00283901
-0.00659026
0.0853255
0.0818304
0.0909101
0.0766123
0.0494656
0.0494904
0.0382471
0.0389846
0.0517632
0.0489893
0.0523892
0.0148447
-0.0453593
-0.0144086
-0.00214725
-0.0161218
0.0164736
-0.00422827
0.0397456
0.0547837
0.0487434
0.0591146
0.0482421
0.0406926
0.0560168
0.117735
0.126661
0.147107
0.102026
0.112328
0.152099
0.112654
0.0940779
0.0987145
0.0714857
0.0689128
0.0679641
0.0985423
0.0936269
0.0900525
0.0612978
0.0799538
0.0650535
0.0854603
0.0647875
0.0868184
0.0195854
-0.0454663
-0.0129939
6.00243e-05
-0.0113571
0.0179537
0.00167279
0.0445182
0.0683177
0.0565662
0.0607437
0.0541514
0.0458132
0.0668756
0.0434577
0.0499943
0.0622123
0.0590217
0.041868
0.0521866
0.0647494
-0.0557969
-0.0739521
-0.0724822
-0.0660961
-0.0558464
-0.0662618
-0.054102
-0.0602144
-0.0552843
-0.0561384
-0.053937
-0.0611612
-0.054928
-0.054516
-0.0594941
-0.0542245
-0.0537387
-0.0522212
-0.059453
-0.0539776
-0.0530584
-0.0414097
-0.0458169
-0.0471058
-0.0487429
-0.0469662
-0.0417674
-0.0456579
-0.0340731
-0.0417434
-0.0232702
-0.0448658
-0.0342874
-0.023345
-0.0438774
-0.0412194
-0.0474086
-0.0488899
-0.0465637
-0.0469022
-0.0415855
-0.0459791
-0.0441113
-0.054697
-0.0512331
-0.0530042
-0.0457783
-0.0498097
-0.0520974
-0.0355224
-0.0497225
-0.0235387
-0.0469157
-0.034811
-0.0243722
-0.0487921
-0.0428812
-0.0482897
-0.0508031
-0.0481611
-0.0487176
-0.0422763
-0.049326
0.138746
0.16337
0.179075
0.141778
0.139434
0.178141
0.141646
0.105116
0.102491
0.0740025
0.0765116
0.102117
0.0762673
0.104686
0.106463
0.0773119
0.105382
0.0771288
0.106829
0.0771916
0.105599
0.0401487
0.0450231
0.0517116
0.0563167
0.0552259
0.0357086
0.0518331
0.0170332
-0.0404249
-0.00716099
-0.00849352
-0.00765023
0.0190808
-0.0124921
0.043356
0.0595231
0.0603918
0.0622366
0.0578534
0.0456256
0.0575881
0.0475491
0.0689772
0.0582514
0.0652652
0.0465435
0.0600255
0.0687394
0.0215503
-0.0473976
-0.00685447
-0.00528855
-0.0069288
0.0207487
-0.00217688
0.0478315
0.0607146
0.0658141
0.0654676
0.0607669
0.0473169
0.0678062
-0.0613124
-0.07157
-0.0725596
-0.066371
-0.0589675
-0.0653107
-0.0599844
-0.0623615
-0.0615623
-0.0599944
-0.059573
-0.0634846
-0.0586775
-0.0604276
-0.0614588
-0.0581854
-0.0562415
-0.058226
-0.060296
-0.0575745
-0.0593567
-0.0437259
-0.046547
-0.0477305
-0.0504735
-0.0485131
-0.0426492
-0.047608
-0.0399809
-0.0466331
-0.0360851
-0.0498666
-0.0422953
-0.0326032
-0.0476639
-0.0451566
-0.0508177
-0.0517768
-0.0510302
-0.0495595
-0.0468303
-0.0492656
-0.0522648
-0.0592789
-0.0566906
-0.0582667
-0.0541634
-0.0551185
-0.0572876
-0.0471179
-0.0563256
-0.0394858
-0.0524585
-0.0446674
-0.0427863
-0.0550447
-0.0505353
-0.0521733
-0.0565791
-0.053099
-0.0537486
-0.048587
-0.0551936
-0.0395764
-0.121516
-0.116018
-0.0187935
-0.0164307
-0.113717
-0.0421817
-0.0494635
-0.0876793
-0.0548611
-0.0889206
-0.0573112
-0.0462363
-0.0959374
-0.0361729
-0.00999151
-0.0969289
-0.0914643
-0.0134545
-0.0322893
-0.102252
0.0545324
-0.0349915
0.0179583
-0.0521499
0.0166226
0.0526363
-0.0433986
0.0567347
0.0160892
-0.0515412
-0.0587621
0.0596346
0.016362
-0.0462092
-0.0403438
-0.0748223
-0.0523866
-0.0824016
-0.0500231
-0.0431025
-0.0775611
-0.0236323
-0.0710497
-0.000123723
-0.0528896
-0.0031148
-0.0208594
-0.0722861
-0.0259225
-0.00716041
-0.0818098
-0.0596042
-0.0287807
-0.00503458
-0.0754836
0.0238165
0.0355635
0.0477095
0.0472836
0.0445716
0.0302173
0.0290831
-0.00528436
-0.043882
-0.0272437
-0.0492601
-0.0217462
-0.0127554
-0.0415842
0.0143178
0.0310228
0.039206
-0.0347943
0.0392712
0.00600908
-0.0159599
0.0778274
0.127815
0.129317
0.0612398
0.0857151
0.124574
0.048642
0.0444614
-0.0124056
0.0175917
-0.0185901
0.0407559
0.0224343
-0.000470287
0.0492389
0.036466
0.0262765
-0.00568707
0.0577111
0.0280802
0.0111579
-0.0245966
-0.0590058
-0.03206
-0.0554878
-0.0363825
-0.0190492
-0.0600397
-0.0138836
-0.0693417
0.00240482
-0.023139
-0.0183061
0.00790867
-0.0665831
-0.00882785
0.0224197
-0.0505494
-0.0102415
-0.00170522
0.0140786
-0.0609782
0.0434657
0.0644408
0.0451203
-0.162992
-0.136989
-0.15237
-0.154857
-0.154262
-0.164915
-0.136
-0.134408
-0.117842
-0.14503
-0.146585
-0.0877923
-0.131911
-0.115073
-0.147871
-0.0839071
-0.10809
-0.125448
-0.131373
-0.112217
-0.147619
-0.157344
-0.153741
-0.132472
-0.168902
-0.166818
-0.134583
-0.15988
0.0672883
0.0491954
0.0471383
-0.0930576
-0.0239416
-0.0701071
-0.0499395
-0.0743766
-0.0293693
-0.0775079
-0.154977
0.173843
-0.149221
0.118803
-0.130469
-0.259241
0.128311
-0.0908695
-0.0630816
0.08528
0.00717909
-0.061975
0.00674393
-0.0967512
-0.130258
0.110221
0.0896885
-0.117158
0.106875
-0.0695908
-0.173109
-0.0905768
0.00547552
-0.0653004
0.075764
-0.0837465
-0.0694281
0.00428887
-0.113028
-0.0393695
0.0972241
0.0863967
-0.0912944
0.101329
-0.0557229
-0.100698
-0.0520555
-0.0356005
-0.0967196
-0.0319435
-0.0834675
-0.114246
-0.146226
-0.104155
-0.113763
-0.0744184
-0.145463
-0.101229
-0.119299
-0.162541
-0.17568
-0.147681
-0.119209
-0.174982
-0.12353
-0.160085
0.053194
0.0781371
-0.0604526
0.0536495
-0.162914
-0.130041
-0.170618
-0.150139
-0.173036
-0.16118
-0.127386
0.0517077
0.0758706
0.0532838
-0.140993
-0.0752727
-0.0938658
-0.0876723
-0.0974434
-0.118301
-0.12969
-0.344076
-0.296168
-0.342986
-0.312236
-0.279182
-0.314913
-0.277127
-0.33895
-0.293964
-0.341246
-0.309119
-0.272177
-0.306129
-0.274674
-0.273591
-0.249876
-0.232597
-0.244345
-0.270892
-0.252384
-0.246589
-0.27659
-0.256934
-0.235067
-0.251062
-0.279172
-0.254877
-0.24909
-0.203999
-0.221453
-0.187777
-0.20393
-0.219485
-0.205583
-0.183054
-0.187018
-0.151325
-0.123962
-0.143501
-0.152517
-0.163893
-0.18193
-0.190651
-0.166235
-0.177094
-0.131988
-0.193216
-0.159711
-0.170222
-0.202063
-0.199667
-0.215604
-0.17095
-0.217275
-0.177485
-0.200484
-0.208382
-0.213288
-0.223869
-0.191849
-0.225687
-0.195218
-0.207254
-0.196626
-0.185756
-0.182029
-0.15902
-0.196612
-0.179543
-0.18616
-0.210021
-0.21581
-0.229253
-0.20015
-0.210982
-0.227783
-0.198108
-0.195526
-0.17174
-0.154281
-0.182076
-0.176025
-0.194785
-0.184285
-0.120987
-0.0309962
-0.122665
-0.0663703
-0.110149
-0.0361753
-0.126692
-0.242551
0.22232
-0.362419
0.148548
-0.224749
-0.393122
0.149133
-0.0982938
-0.0635601
0.101599
0.00943174
-0.0598331
-0.0998759
0.012664
-0.200972
0.111452
0.0929489
-0.133638
0.11277
-0.195041
-0.144471
-0.0939763
0.0227604
-0.0418538
0.106649
-0.0828425
-0.0539552
0.0166116
-0.203775
-0.164777
0.112367
0.092806
-0.188479
0.113022
-0.170655
-0.121914
-0.0645065
-0.0380538
-0.114577
-0.121092
-0.0378034
-0.120102
-0.0918365
-0.112602
-0.0834758
-0.0779165
-0.113963
-0.087849
-0.0829996
-0.10506
0.0201795
0.0655176
-0.1084
-0.124866
0.0281075
-0.101278
-0.0643654
-0.0804197
-0.11826
-0.100855
-0.0841785
-0.128949
-0.0876187
-0.0739922
-0.103069
-0.125661
0.0707344
0.0412324
-0.138166
0.0351328
-0.0796369
-0.0853072
-0.0983287
-0.150871
-0.106646
-0.132881
-0.124845
-0.0915005
-0.100379
-0.0746185
-0.0928923
-0.0820151
-0.104823
-0.0843945
-0.0961539
-0.0922788
-0.113655
-0.0760706
-0.0846169
-0.0871524
-0.102132
-0.0913871
-0.150932
-0.175508
-0.115517
-0.13566
-0.158686
-0.173176
-0.110079
0.0523307
0.0791809
-0.0735588
0.0513756
-0.0846164
-0.0683771
-0.123717
0.0787061
0.0473539
0.0499908
-0.119089
-0.0754438
-0.128522
-0.0743531
-0.092685
-0.0926356
-0.132689
-0.0919793
-0.0951183
-0.135333
-0.100931
-0.129562
-0.162859
-0.167361
-0.104701
-0.134304
-0.300092
-0.258435
-0.302365
-0.268773
-0.231127
-0.267203
-0.234836
-0.308394
-0.261785
-0.305587
-0.271796
-0.242389
-0.274488
-0.238849
-0.243043
-0.217787
-0.185304
-0.222916
-0.244531
-0.213401
-0.221889
-0.24108
-0.203566
-0.178501
-0.218089
-0.240547
-0.208382
-0.219669
-0.188439
-0.206894
-0.177072
-0.136632
-0.209399
-0.182019
-0.146515
-0.0658828
-0.168557
-0.132631
-0.134159
-0.0969038
-0.174312
-0.125069
-0.129442
-0.194012
-0.183876
-0.21312
-0.163722
-0.211543
-0.197167
-0.155821
-0.155645
-0.104424
-0.0782148
-0.0912489
-0.138783
-0.114773
-0.11825
-0.165013
-0.15357
-0.203547
-0.127922
-0.199339
-0.118022
-0.176266
-0.0860568
-0.0613089
-0.0787218
-0.0679493
-0.0824554
-0.0837407
-0.0589724
-0.0693641
-0.0745022
-0.148833
-0.144793
-0.189682
-0.103201
-0.148164
-0.193359
-0.108982
-0.125857
-0.0973274
-0.0705194
-0.0724043
-0.0918663
-0.135889
-0.0638698
0.0425577
0.0331827
0.070669
0.0872946
0.0794646
0.0351264
0.0438821
0.0653699
-0.132385
0.0983265
0.100159
0.0660956
0.0279402
-0.00704575
-0.001873
0.0219851
0.017403
-0.00641581
-0.0145391
0.0275263
-0.00838137
0.0198085
0.0194061
0.0140069
0.00156771
-0.0189546
-0.0214785
-0.0121262
0.00691914
0.0105411
0.0652401
0.0989688
-0.112054
0.106424
0.0587079
0.043604
0.119426
0.0670536
0.0679901
0.0686372
0.058501
0.0446972
0.109948
0.163393
0.0984445
0.0986802
0.121444
0.0873019
0.156704
0.225813
0.284922
0.34121
-0.0979011
0.23925
0.33931
-0.153445
0.138243
-0.101331
-0.0867856
0.0963707
-0.102155
0.104127
0.132422
0.150175
0.127473
-0.117207
-0.0951843
0.166951
-0.105042
0.115173
0.100127
0.0903412
0.0698359
0.143289
0.0770345
0.149949
0.0945891
0.0209489
0.0252458
0.0624106
0.0541607
0.0164706
0.0286722
0.0533892
-0.0137453
-0.0399149
-0.0485934
-0.0295
-0.0374306
-0.0216625
-0.0186244
0.00952969
-0.0102385
-0.0166328
0.0169446
0.0334795
-0.0814112
0.0636948
0.072052
0.026181
-0.00499078
-0.00538932
-0.0427724
-0.0226898
-0.0287197
-0.0136065
0.00162574
0.043174
0.0915968
-0.0839481
0.0519649
0.0820708
0.0114465
0.0454116
-0.000169223
0.0361326
0.00812256
0.0433965
0.00502623
-0.0644183
-0.0306631
-0.0379914
-0.0552729
-0.0458254
-0.0534991
-0.0658549
-0.0857008
0.00869583
0.0240901
-0.100077
-0.077767
0.000102932
-0.103211
-0.0736796
-0.0768097
-0.0635343
-0.0682881
-0.0788553
-0.0773356
-0.0820296
-0.0811851
-0.0748538
-0.0717166
-0.0809747
-0.0645567
-0.0275385
0.0111822
-0.0521159
-0.0492838
-0.0796765
-0.0495028
-0.0824315
-0.0790693
-0.0634804
-0.0934166
-0.0736501
-0.0694683
-0.070807
-0.0590084
-0.0759028
-0.0626344
-0.0643288
-0.0766099
0.0884362
0.0748786
0.0256421
0.0445359
0.0695631
0.043313
0.0928041
0.189905
0.29602
0.292735
-0.162933
0.143515
0.313655
-0.184748
0.112324
-0.0910717
-0.0624631
0.0864828
-0.0840616
0.124902
0.0732366
0.140683
0.113935
0.133674
0.15895
0.115516
0.149858
0.123942
0.102531
0.0306754
-0.0453364
-0.0486402
0.0662239
-0.0702991
0.0592894
0.0808713
0.0614818
0.0607882
0.135091
0.0870146
0.0508357
0.123342
-0.0239269
-0.00961839
-0.0431845
0.00321483
-0.0306336
-0.0360618
0.00554834
-0.036697
-0.0455505
-0.0626602
-0.0379004
-0.0512336
-0.0266228
-0.0471617
-0.0339584
-0.0676286
-0.0569906
-0.0495987
0.00328838
-0.0554439
0.0528137
0.0156443
0.0396819
-0.00822426
0.00322064
-0.0427972
-0.0267019
0.0259388
-0.0429857
-0.0636035
-0.0655735
-0.0598599
-0.0533328
-0.0549536
-0.0526626
-0.0157489
0.0164332
-0.00925394
0.0264645
-0.004345
-0.0197609
0.0150423
-0.0457979
-0.0533746
-0.0561871
-0.0498425
-0.0405036
-0.0465386
-0.0440655
-0.0480653
-0.0503827
-0.0486731
-0.0458483
-0.0521586
-0.0444981
-0.0467584
-0.0448158
-0.0390311
-0.0368956
-0.0417157
-0.0411226
-0.0409901
-0.0430497
-0.0126721
-0.00305182
-0.0114455
-0.0161492
-0.0176914
-0.00596846
-0.0125074
-0.0144628
-0.0214874
-0.0169935
-0.0280381
-0.0209198
-0.00990177
-0.019838
-0.0182629
-0.028005
-0.0229544
-0.0278153
-0.0226873
-0.0241843
-0.02048
-0.0384446
-0.0496255
-0.0453376
-0.0449606
-0.0431248
-0.0409504
-0.0450045
-0.0317919
-0.0455288
-0.0229234
-0.0352952
-0.0263893
-0.0288352
-0.0414777
-0.0342914
-0.032673
-0.0403587
-0.0343279
-0.0371761
-0.0293001
-0.0399141
-0.0416462
-0.125034
-0.0189169
-0.132102
-0.0175483
-0.0426236
-0.124847
-0.0513946
-0.0938435
-0.0548237
-0.102855
-0.057843
-0.0477179
-0.107291
-0.0391768
-0.00960042
-0.127397
-0.115541
-0.0146763
-0.034787
-0.121522
-0.0382695
-0.0803962
-0.0513292
-0.0968194
-0.0469712
-0.0435332
-0.0899472
-0.0178461
-0.0821142
0.0184423
-0.0799433
0.00994244
-0.0111705
-0.0889081
-0.023642
-0.00428878
-0.107608
-0.0935824
-0.0299836
0.00306175
-0.0980982
0.0379746
-0.0310789
0.0894379
-0.0403799
0.081416
0.0455267
-0.0369902
0.00973922
-0.024857
-0.0109967
-0.0398927
-0.0032008
0.00140754
-0.0303396
0.0280778
0.0509521
-0.0417966
-0.0440384
0.0603616
0.0196849
-0.0399261
-0.0122873
-0.0521963
-0.0172757
-0.0505151
-0.0236556
-0.00534177
-0.0588861
9.73252e-05
-0.0772836
0.0239547
-0.0642905
-0.00646665
0.0313312
-0.0713778
0.00581358
0.0445743
-0.0535395
-0.0549096
0.0131155
0.0372935
-0.0635518
0.0140164
-0.0111308
-0.00525943
0.00334091
0.0139004
-0.00234216
0.0236664
0.0139561
0.0289913
0.0244992
0.0305471
0.0175547
0.0205064
0.0290924
0.0103225
0.0240661
0.0120688
0.029826
0.00517015
0.0167659
0.0291044
0.00776877
0.00854062
-0.00516326
0.0122674
0.00148592
0.000711213
0.0201601
0.0190309
0.0224518
0.0332634
0.0290829
0.0257186
0.0255195
0.0249683
0.0139181
0.0137868
0.0236914
0.029258
0.00768226
0.0199973
0.0272183
0.03518
0.0426725
0.0318057
0.0341427
0.0400955
0.0273916
0.0388421
0.0377493
0.0423524
0.040073
0.0340378
0.0315131
0.047069
0.0386781
0.0305004
0.0183817
0.0314433
0.0316441
0.0232663
0.024999
0.0348049
0.0568204
-0.021967
0.0899778
-0.0194377
0.0915225
0.0501114
-0.0017546
0.0470468
0.0203715
0.0418859
0.0337215
0.0333184
0.0562993
0.0207691
0.0644328
0.104615
0.0138986
0.0406347
0.0937947
0.0744498
0.0251918
0.0753293
0.0450702
0.0498548
0.0428327
0.057624
0.0664152
0.0473911
0.11006
0.0647097
0.171325
0.0524927
0.119167
0.161185
0.0573256
0.0999724
0.133891
0.0489693
0.0375368
0.0894043
0.147213
0.0485819
-0.208668
-0.232795
-0.176004
-0.161242
-0.217673
-0.188606
-0.20736
-0.176539
-0.171308
-0.174771
-0.17451
-0.199214
-0.190515
-0.198882
-0.181849
-0.179717
-0.178629
-0.177806
-0.158056
-0.155495
-0.129011
-0.122251
-0.152709
-0.157472
-0.126756
-0.141693
-0.112811
-0.142932
-0.112523
-0.155432
-0.15687
-0.132025
-0.128373
-0.154858
-0.157715
-0.126614
-0.139521
-0.108022
-0.133425
-0.111396
-0.0655912
-0.0923948
-0.05499
-0.0863421
-0.0921685
-0.0659189
-0.052579
-0.0473571
-0.074077
-0.0750424
-0.0461577
-0.0209338
0.00670123
-0.0232116
0.00859583
-0.0396836
-0.021042
0.0334489
-0.0225137
-0.0157199
-0.0253487
-0.0356617
-0.0492475
-0.0801747
-0.0771548
-0.0518763
-0.0413193
-0.0183748
-0.027474
0.0335307
-0.0417584
-0.0168371
-0.0274217
-0.0642055
-0.0833626
-0.0903444
-0.0476684
-0.089967
-0.0499001
-0.0651238
-0.0687096
-0.0963698
-0.0931885
-0.0580055
-0.0962391
-0.0619016
-0.0666415
-0.0579149
-0.0862926
-0.0593576
-0.085696
-0.0406821
-0.0146511
-0.0377041
0.00133129
-0.0413012
-0.0337478
-0.0143099
-0.0274349
0.0048862
-0.024795
0.00227835
-0.0679957
-0.100294
-0.0980446
-0.0707328
-0.0689307
-0.0963596
-0.066934
-0.0561741
-0.0812267
-0.0842815
-0.0532869
-0.0437086
-0.0213056
0.0225892
-0.0287841
-0.0258344
-0.0425351
-0.0290905
0.0544321
0.077705
0.146039
0.0845649
0.0776146
0.0823182
0.0606242
0.0681885
0.0978273
-0.125624
0.0966718
0.0677809
0.0258357
-0.00145422
0.00234496
0.0332117
0.000357834
0.0240521
0.038085
0.038472
0.0113747
0.00953147
0.0404626
0.0289023
0.0480946
0.00683746
0.00530398
0.00374269
0.0427856
0.0297294
0.0507757
0.143849
0.0718346
0.0743903
0.0736356
0.049022
0.0789239
0.0702496
0.0988002
-0.11746
0.0974697
0.0729282
0.0153379
0.00737947
0.0287014
0.0830336
0.00620707
0.0818265
0.0160204
0.0453324
0.0129154
0.015966
0.0418636
0.0857401
-0.0665114
0.126134
0.112629
0.0936497
0.0150514
0.071464
0.0257361
0.00321483
0.00499256
0.0797088
0.0143637
0.080513
0.0996324
-0.0776896
0.0762671
0.10521
0.107761
-0.0323739
0.147495
0.147582
0.108259
0.0745031
0.0403097
0.041706
0.0739511
0.108165
0.1523
-0.0210107
0.149344
0.10894
0.0263633
0.00993873
0.0272101
0.0834776
0.0156221
0.0190011
0.0754335
0.0697897
0.0381836
0.0355286
0.0721662
0.105105
-0.0744948
0.141508
0.100009
0.149926
0.106586
0.153116
-0.0566263
0.108178
0.151244
-0.174678
-0.188613
-0.122526
-0.12343
-0.199528
-0.20352
-0.19803
-0.162338
-0.163015
-0.162803
-0.164778
-0.198635
-0.205208
-0.199539
-0.163128
-0.169132
-0.163203
-0.167929
-0.136597
-0.134314
-0.0990413
-0.114431
-0.13685
-0.132377
-0.114955
-0.0967822
-0.0823418
-0.0913623
-0.0856084
-0.137908
-0.123447
-0.0821886
-0.128091
-0.137812
-0.126485
-0.127596
-0.102927
-0.0909659
-0.106986
-0.0889963
-0.0830011
-0.0939605
-0.0696158
-0.0238923
-0.0939663
-0.0829023
-0.0234442
-0.0441348
-0.07236
-0.0719605
-0.0444506
-0.0132758
0.012115
-0.0151006
0.0148949
-0.0433336
-0.0702437
-0.070476
-0.0439723
-0.0828854
-0.0711425
-0.0930206
-0.0288763
-0.0945652
-0.0790859
-0.0241715
-0.0796745
-0.0740569
-0.0934264
-0.0249104
-0.0897525
-0.0333879
-0.0828007
-0.0437089
-0.0643969
-0.0443881
-0.0652221
-0.0207627
0.00796779
-0.0170117
0.00144653
-0.0450167
-0.068778
-0.0680239
-0.0440158
0.115311
-0.058968
0.149222
0.158611
0.110291
0.0791436
0.0394835
0.0435206
0.0730734
0.120293
0.174357
0.17688
0.110182
0.0406829
0.0319555
0.0210469
0.0580336
0.0492624
0.0893678
0.0393006
0.100008
0.0629943
0.151215
0.0875935
0.115797
0.0748258
0.061127
0.0598862
0.073527
0.0851164
0.074217
0.0848203
0.0853407
0.0964178
0.100851
0.11094
0.0849995
0.100853
0.095988
0.0867015
0.0970514
0.101381
0.110958
0.0870422
0.101557
0.0967367
0.121897
0.143174
0.108789
0.139528
0.111831
0.11787
0.151104
0.137538
0.162993
0.16042
0.168715
0.156803
0.141435
0.164936
0.125366
0.115268
0.134253
0.148978
0.11368
0.12856
0.153218
0.136136
0.153356
0.118254
0.128166
0.138586
0.117478
0.147776
0.149294
0.183492
0.164234
0.165746
0.168673
0.144839
0.164882
0.133962
0.115954
0.12701
0.14484
0.117124
0.130921
0.145042
0.0840689
0.0657939
0.0643361
0.072749
0.0910284
0.074306
0.0861769
0.0790244
0.0857131
0.0848975
0.0984111
0.0770001
0.0863407
0.0884883
0.0809481
0.0951674
0.0891071
0.10062
0.0824768
0.0878039
0.0917195
0.112375
0.13673
0.105702
0.123062
0.101979
0.114916
0.132194
0.125626
0.128943
0.145041
0.130939
0.145478
0.125081
0.133076
0.11106
0.0974819
0.119562
0.127546
0.0994666
0.110004
0.129612
0.109028
0.127625
0.0939213
0.112247
0.109374
0.0943992
0.127181
0.125655
0.135991
0.145453
0.130285
0.148881
0.124708
0.131813
0.108967
0.0959038
0.113221
0.126405
0.0951094
0.109072
0.126631
-0.225087
-0.224815
-0.20426
-0.206226
-0.188446
-0.094529
-0.175729
-0.115734
-0.195424
-0.144307
-0.199245
-0.130976
-0.0397945
-0.118907
-0.10979
-0.0305172
-0.0548326
-0.0388561
-0.0638311
-0.0518184
-0.0616886
-0.0480545
-0.0827176
-0.0976512
-0.0515026
-0.0473222
-0.0247863
-0.0329117
-0.0374931
-0.0814301
-0.098191
-0.103112
-0.0765958
-0.0533243
-0.0686721
-0.0507394
-0.0552805
-0.207213
-0.206038
-0.196961
-0.197133
-0.192778
-0.190791
-0.192965
-0.192702
-0.19229
-0.193262
-0.191603
-0.193126
-0.0420608
-0.126425
-0.126604
-0.0401394
0.00214903
-0.0599289
0.0177293
-0.00815181
-0.0153374
0.00536383
-0.00982379
-0.0130899
-0.13099
-0.0269696
-0.121393
0.00335675
-0.0180071
-0.0426668
-0.104712
-0.155904
-0.0519567
-0.0877122
-0.150483
-0.011906
-0.0259815
0.0260285
-0.00211305
0.00103399
0.0229749
-0.00975962
-0.0325265
-0.136575
-0.044916
-0.0661977
-0.143694
-0.0231456
-0.0790207
-0.0826286
-0.0918515
-0.0905908
-0.10477
-0.113592
-0.103358
-0.120516
-0.102467
-0.101491
-0.101273
-0.106445
-0.199092
-0.212577
-0.208059
-0.194876
-0.217701
-0.188886
-0.204906
-0.196708
-0.188228
-0.208466
-0.18072
-0.179957
-0.17723
-0.191608
-0.185194
-0.160108
-0.174894
-0.169872
-0.174726
-0.154169
-0.152381
-0.162438
-0.165906
-0.162819
-0.171247
-0.212262
-0.231527
-0.235402
-0.211013
-0.184484
-0.179912
-0.161338
-0.192134
-0.194747
-0.172623
-0.181996
-0.196913
-0.180112
-0.184142
-0.194695
-0.45813
-0.461513
-0.447807
-0.445524
-0.413699
-0.40432
-0.404658
-0.377991
-0.393882
-0.385395
-0.382702
-0.390804
-0.393323
-0.396917
-0.371938
-0.3657
-0.367984
-0.372586
-0.331966
-0.34478
-0.314792
-0.307649
-0.33013
-0.350036
-0.307365
-0.458021
-0.383476
-0.471441
-0.377726
-0.335968
-0.366532
-0.322335
-0.314589
-0.340671
-0.358173
-0.312707
-0.451204
-0.377042
-0.45173
-0.374801
-0.51614
-0.378564
-0.509321
-0.497572
-0.377385
-0.502418
-0.372053
-0.497505
-0.375025
-0.502168
-0.492122
-0.363716
-0.489118
-0.368601
-0.496568
-0.35878
-0.355344
-0.516024
-0.494929
-0.363767
-0.515826
-0.50064
-0.372379
-0.358158
-0.520366
-0.50411
-0.367047
-0.518277
-0.691979
-0.571326
-0.352226
-0.342816
-0.577822
-0.681486
-0.349026
-0.777293
-0.633027
-0.314866
-0.340683
-0.346671
-0.651254
-0.777088
-0.782459
-0.35531
-0.691692
-0.321488
-0.783005
-0.350487
-0.67363
-0.698294
-0.3403
-0.587902
-0.342505
-0.581613
-0.346847
-0.704509
-0.663875
-0.3533
-0.568536
-0.353704
-0.564074
-0.357159
-0.6742
-0.775467
-0.775182
-0.367905
-0.346449
-0.775469
-0.36337
-0.754175
-0.657384
-0.355228
-0.562222
-0.361585
-0.652955
-0.56294
-0.357754
-0.778732
-0.357916
-0.342866
-0.713844
-0.362436
-0.784638
-0.732429
-0.741032
-0.343866
-0.64058
-0.628806
-0.378167
-0.712452
-0.315849
-0.655043
-0.279963
-0.647311
-0.640058
-0.204845
-0.63392
-0.263286
-0.629451
-0.193131
-0.242441
-0.587402
-0.608675
-0.251167
-0.622805
-0.618262
-0.356496
-0.290001
-0.677665
-0.691194
-0.300177
-0.612642
-0.122372
0.0418033
-0.360367
-0.0813618
-0.143263
-0.344588
0.048157
1.61721
1.83631
2.02734
1.8118
2.04918
-0.090086
-0.0752333
-0.318417
0.0570398
-0.342306
0.0590331
0.0211639
-0.612761
-0.235808
-0.566897
-0.171484
-0.617213
-0.232089
-0.548012
-0.607677
-0.637918
-0.322261
-0.272489
-0.647658
-0.274145
-0.604716
-0.603074
-0.282587
-0.664786
-0.3275
-0.652472
-0.607745
-0.277583
-0.623194
-0.168612
-0.229846
-0.546167
-0.229923
-0.549654
-0.626224
-0.630185
-0.516252
-0.212985
-0.140216
-0.489321
-0.640275
-0.204109
-0.584585
-0.562717
-0.273375
-0.223855
-0.573479
-0.23437
-0.577631
-0.596416
-0.250054
-0.599171
-0.280771
-0.588613
-0.60336
-0.241632
-0.615168
-0.130706
-0.434212
-0.185043
-0.458315
-0.196268
-0.606118
0.0130461
0.0501891
-0.340701
-0.0916898
0.0583325
-0.371144
0.0247478
2.04618
1.35098
1.56164
1.647
2.03643
1.58495
1.68844
-0.00493424
-0.0949014
-0.356882
0.0344053
0.0404963
-0.393632
0.0219627
-0.656314
-0.54588
-0.217547
-0.170012
-0.225737
-0.652249
-0.569689
-0.620554
-0.639011
-0.30695
-0.269447
-0.632105
-0.618113
-0.263934
-0.615545
-0.254753
-0.303681
-0.613009
-0.621282
-0.262704
-0.612852
-0.662242
-0.171043
-0.229009
-0.583359
-0.652941
-0.22553
-0.593516
-0.470861
-0.33869
-0.468677
-0.476246
-0.329439
-0.480931
-0.331878
-0.470544
-0.342539
-0.471695
-0.477642
-0.339523
-0.474438
-0.335753
-0.500007
-0.334776
-0.321685
-0.532255
-0.494842
-0.330833
-0.536801
-0.499469
-0.323898
-0.316462
-0.533772
-0.505079
-0.326608
-0.533135
-0.702994
-0.327064
-0.326966
-0.5958
-0.598541
-0.330279
-0.699031
-0.773586
-0.6111
-0.335923
-0.285621
-0.774803
-0.328033
-0.590836
-0.702942
-0.328998
-0.591794
-0.339315
-0.595532
-0.704209
-0.333396
-0.774671
-0.317092
-0.277135
-0.552643
-0.323136
-0.767806
-0.574761
-0.700328
-0.317952
-0.324082
-0.59243
-0.591133
-0.317274
-0.698064
-0.758746
-0.513197
-0.289263
-0.23056
-0.769211
-0.2938
-0.519937
-0.698694
-0.311752
-0.589113
-0.306972
-0.709285
-0.584937
-0.310684
-0.763225
-0.310908
-0.241882
-0.548877
-0.302011
-0.764222
-0.541428
-0.424063
-0.0117588
-0.275947
0.103652
-0.254384
-0.427268
-0.010136
-0.499311
-0.508451
-0.134714
-0.066577
-0.457389
-0.0779206
-0.581978
-0.518727
-0.0869524
-0.470341
-0.140272
-0.4811
-0.505998
-0.0859778
-0.410174
0.112862
-0.424671
0.00880542
-0.248851
0.000727848
-0.551789
-0.46745
-0.0149323
0.0915151
-0.302709
-0.020413
-0.446665
-0.328283
-0.530081
-0.495229
-0.155876
-0.105272
-0.495354
-0.0992456
-0.529913
-0.516402
-0.0906379
-0.151297
-0.479204
-0.482395
-0.0948854
-0.511898
-0.496794
0.0853531
-0.0335782
-0.385914
-0.0258768
-0.361986
-0.512423
-0.578988
-0.0665716
-0.115602
-0.35537
-0.369244
-0.142862
-0.552599
-0.558546
-0.547467
-0.214025
-0.239843
-0.565518
-0.535367
-0.198961
-0.585253
-0.085144
-0.405007
-0.174051
-0.387862
-0.591449
-0.157507
-0.555342
-0.167552
-0.229734
-0.513464
-0.528563
-0.187333
-0.537095
-0.603804
-0.0854642
0.0318336
-0.472071
-0.0652752
-0.587911
-0.52337
-0.551395
-0.516725
-0.173672
-0.108524
-0.513784
-0.555626
-0.11627
-0.566058
-0.146315
-0.186445
-0.523989
-0.5279
-0.130067
-0.555544
-0.573202
0.0553307
-0.0373535
-0.448226
-0.560298
-0.0480043
-0.475954
-0.970677
-0.966397
-0.977002
-0.695673
-0.986608
-0.858474
-0.659506
-0.838453
-0.656157
-1.00262
-0.694168
-0.997838
-0.870039
-0.654416
-0.875654
-0.655783
-0.672604
-0.620489
-0.595314
-0.594216
-0.675349
-0.621784
-0.593091
-0.819985
-0.77575
-0.822836
-0.772062
-0.667795
-0.625628
-0.595863
-0.588358
-0.660136
-0.622643
-0.591661
-0.817678
-0.766659
-0.815617
-0.769067
-0.522398
-0.560169
-0.548074
-0.494011
-0.548605
-0.495423
-0.521969
-0.777322
-0.737536
-0.741388
-0.77184
-0.882124
-0.894495
-0.886182
-0.899199
-0.519427
-0.560028
-0.542717
-0.491459
-0.546533
-0.514392
-0.495101
-0.78359
-0.748463
-0.745786
-0.78792
-0.522755
-0.561239
-0.548733
-0.493917
-0.548405
-0.494307
-0.522722
-0.801879
-0.764002
-0.806525
-0.759303
-0.893485
-0.891074
-0.890441
-0.88851
-0.522785
-0.561447
-0.545808
-0.492434
-0.519944
-0.54833
-0.493255
-0.797209
-0.751844
-0.755162
-0.792786
-0.300511
-0.28605
-0.115819
0.0497962
-0.114701
-0.309401
-0.291187
-0.539955
-0.715968
-0.585684
-0.716218
-0.585164
-0.539183
-0.302193
-0.117639
0.0314636
-0.32981
-0.116015
-0.308978
-0.302066
-0.540025
-0.719608
-0.594716
-0.720845
-0.598486
-0.540123
-0.302443
-0.42507
-0.0973263
-0.122188
-0.408245
-0.124045
-0.299057
-0.302623
-0.120452
-0.35773
-0.0592347
-0.381596
-0.302938
-0.122857
-0.309641
-0.585164
-0.164645
-0.412385
-0.157928
-0.31343
-0.583915
-0.551195
-0.688875
-0.747617
-0.688457
-0.754937
-0.546199
-0.306971
-0.146674
-0.390295
-0.575203
-0.153067
-0.580485
-0.303282
-0.537966
-0.682732
-0.741611
-0.668347
-0.735458
-0.542288
-0.295295
-0.472655
-0.228349
-0.119125
-0.50779
-0.293136
-0.125564
-0.297418
-0.140725
-0.561544
-0.276083
-0.537469
-0.300747
-0.13212
-0.430134
-0.27817
-0.428948
-0.434108
-0.268338
-0.433556
-0.263811
-0.417708
-0.272596
-0.421796
-0.42806
-0.254808
-0.425125
-0.258065
-0.45023
-0.241145
-0.230393
-0.506633
-0.448328
-0.244197
-0.506419
-0.455218
-0.254856
-0.235876
-0.503728
-0.452747
-0.250021
-0.509241
-0.767171
-0.632256
-0.215202
-0.221177
-0.63384
-0.766534
-0.217647
-0.591529
-0.288634
-0.0913119
-0.172919
-0.173259
-0.303397
-0.575024
-0.610888
-0.172941
-0.347248
-0.0936468
-0.628101
-0.176161
-0.323484
-0.764278
-0.217276
-0.63483
-0.214943
-0.632904
-0.214661
-0.764025
-0.763979
-0.226496
-0.632716
-0.218701
-0.628978
-0.219563
-0.767231
-0.672471
-0.398508
-0.189845
-0.103491
-0.674246
-0.182281
-0.405337
-0.764329
-0.231461
-0.618965
-0.230072
-0.755507
-0.628407
-0.22413
-0.659569
-0.176633
-0.0991769
-0.377569
-0.177624
-0.647086
-0.395716
-0.371479
0.00702389
-0.182822
0.0509884
-0.198457
-0.350284
0.00742039
-0.51821
-0.480008
-0.124055
-0.0965065
-0.467242
-0.549732
-0.066177
-0.500905
-0.0607385
-0.453395
-0.124402
-0.45736
-0.492782
-0.0650391
-0.414606
0.0361716
-0.374315
-0.0373498
-0.246985
-0.503925
0.0023778
-0.271743
0.0233007
-0.14253
0.10957
0.0655078
-0.305905
-0.0935129
-0.513923
-0.519958
-0.0742931
0.0222798
-0.46935
0.00390572
-0.598873
1.44275
1.07316
-0.468216
-0.0489814
-0.0913391
-0.445335
-0.446839
-0.0215329
-0.473471
-0.305014
0.152157
0.130294
0.110467
0.103597
0.0290385
-0.38227
-0.110345
0.313088
0.175754
0.227117
0.345425
-0.186437
0.160808
0.362435
1.37937
1.35808
0.360665
-0.292365
-0.299217
-0.0119632
0.0742474
-0.258854
-0.324706
0.0754461
0.357596
1.35717
1.29759
0.30394
-0.33637
0.0793212
-0.407004
-0.0137407
-0.359081
-0.406737
0.0762307
-0.0800661
0.218121
0.368301
0.15265
0.360822
-0.0648465
0.155009
-0.319207
0.299501
0.178592
0.260125
0.173837
-0.262257
0.286724
-0.613913
-0.52846
-0.0405703
0.0340651
-0.534681
-0.617423
0.0446523
1.71388
1.70641
1.71176
1.69865
-0.567972
0.0628347
-0.0347276
-0.470014
-0.513326
0.0518744
-0.496627
-0.366245
0.249596
0.148605
0.211857
-0.385305
0.166164
0.263376
-0.346626
-0.224757
-0.351481
-0.367522
-0.210482
-0.362973
-0.213555
-0.36265
-0.228462
-0.358344
-0.374297
-0.219096
-0.378069
-0.216729
-0.405984
-0.208879
-0.201988
-0.483706
-0.409022
-0.206977
-0.481911
-0.399324
-0.201856
-0.200242
-0.471053
-0.39513
-0.204395
-0.475031
-0.760492
-0.211433
-0.210793
-0.637628
-0.636782
-0.210248
-0.759391
-0.542039
-0.274987
-0.170366
-0.0878687
-0.262535
-0.557903
-0.169288
-0.763504
-0.214282
-0.635406
-0.212949
-0.637811
-0.762915
-0.213157
-0.523782
-0.165615
-0.0828519
-0.240346
-0.247449
-0.165056
-0.509506
-0.74698
-0.207723
-0.207437
-0.636896
-0.635001
-0.203676
-0.756193
-0.44223
-0.211211
-0.140365
-0.0711699
-0.209367
-0.422047
-0.145614
-0.723994
-0.205726
-0.617809
-0.195012
-0.708658
-0.6242
-0.198578
-0.472296
-0.161487
-0.0792118
-0.235344
-0.217738
-0.154646
-0.494628
-1.05331
-1.04731
-0.901816
-0.905175
-0.578484
-0.636336
-0.587672
-0.550419
-0.617178
-0.540862
-0.625542
-0.599748
-0.64332
-0.591614
-0.554005
-0.640651
-0.562148
-0.632573
-0.49945
-0.618041
-0.523424
-0.456534
-0.508664
-0.609286
-0.446805
-0.804334
-0.726673
-0.793058
-0.734469
-0.496043
-0.594192
-0.517734
-0.432171
-0.484878
-0.602744
-0.443524
-0.81978
-0.754117
-0.825897
-0.748156
-0.855695
-0.809505
-0.806584
-0.856425
-0.922763
-0.915054
-0.919965
-0.921151
-0.849717
-0.795854
-0.799084
-0.84806
-0.823703
-0.761223
-0.820534
-0.766081
-0.911646
-0.890785
-0.883932
-0.907649
-0.836743
-0.783292
-0.780141
-0.83606
-2.38537
-2.45791
-2.42093
-2.54736
-2.91559
-2.59711
-2.82401
-2.58721
-2.56308
-2.61301
-3.11357
-2.69629
-2.87269
-2.97669
-2.48227
-3.08139
-2.96613
-2.53155
-2.75813
-3.02396
-3.31153
-2.84024
-2.53908
-2.34767
-2.79161
-2.63195
-2.74879
-2.70308
-0.945767
-1.0819
-2.97188
-2.27786
-1.16985
-2.65987
-0.794578
-1.28674
-1.41716
-1.44604
-2.76552
-1.55295
-1.48657
-2.68658
-1.08594
-2.73456
-1.36475
-1.18661
-1.71436
-0.273668
0.559943
-0.268032
0.329874
0.38678
0.0217043
-0.252102
-1.73084
-1.72911
-1.67973
-1.60051
-2.56595
-1.63202
-1.37944
-1.6232
-2.52004
-3.2804
-3.27891
-2.73487
-2.37898
-2.69748
-2.80652
-2.94585
-2.92136
-3.27395
-2.57244
-3.06024
-2.99052
-3.09468
0.865482
0.969573
0.640046
0.54059
1.11682
1.23086
1.16043
1.00639
1.05467
1.06811
0.990456
1.29264
1.1268
0.767265
0.853695
0.371042
-0.134811
0.47466
-0.350062
0.745572
0.729345
0.623645
0.446985
0.525558
0.789914
0.658297
0.828167
0.914962
0.687126
0.705338
0.880927
0.620913
0.853628
0.176864
-0.650033
-0.622055
-0.10991
1.75957
1.69593
1.31642
1.27818
1.32081
1.12409
1.12023
1.08282
1.20191
1.41437
1.64836
0.974371
0.992413
0.0462085
0.633953
0.279385
0.973993
1.19452
0.84317
0.959623
1.1265
0.75427
1.11763
1.11728
1.04565
0.467269
0.895722
0.9755
0.716096
0.897221
0.858911
0.750832
1.05535
-0.827383
-0.731929
-0.429013
-0.964516
0.411707
0.687385
0.599561
0.795832
0.329267
0.622929
0.602619
-1.06269
-0.882107
-2.78024
-1.00189
-0.82414
-0.969778
0.372937
-0.721632
-0.258451
-0.867893
-3.03961
-2.75306
-0.580646
-3.29743
-0.889717
-0.682102
0.373088
0.529537
0.729308
0.478379
0.585129
0.315401
0.53905
-0.852477
-0.827139
-3.28814
-0.767519
-1.00753
-0.71189
-2.51023
-0.773296
-3.23886
-0.800838
-0.625488
-2.52405
-2.4839
-2.50215
-2.65584
-3.09175
-2.9726
-2.70771
-2.59235
-2.50027
-2.52628
-2.75601
-2.6696
-2.95951
-2.55278
-2.6707
-2.54385
-2.63761
-2.95998
-3.09337
-3.24245
-2.7573
-2.82845
-2.73912
-3.25583
-2.7826
-2.6
-2.75652
-2.83589
-2.29598
-2.8888
-3.02871
-2.61187
-2.42152
-3.52803
-2.95416
-3.10865
-2.91145
-2.47839
-3.55824
-2.73317
-2.67067
-3.28778
-3.16055
-3.02696
-3.40568
-3.03055
-2.2734
-2.98185
-2.45475
-2.92714
-2.58153
-2.52731
-1.99834
-2.5724
-2.844
-2.34864
-3.30989
-2.9444
-2.70581
0.801316
0.678488
0.240356
0.433208
0.861951
0.781383
0.871561
0.664248
0.645659
0.695236
0.559642
0.45643
0.589586
-0.0692777
-0.404343
-0.493056
-2.88339
-2.89563
-0.519433
-0.679776
-0.563671
-0.530667
-3.08374
-0.675589
-0.422003
-0.759458
-2.6086
-2.61823
-2.53456
-2.76345
-3.09984
-2.71239
-3.23613
-2.60745
-2.67388
-2.5493
-2.79048
-3.33634
-3.2588
-2.9852
-2.54153
-2.95226
-2.49575
-2.11317
-2.87976
-2.72235
-2.03661
-0.427864
-0.376911
-0.716632
-2.61714
-0.674953
-2.92663
0.34157
-0.0859311
-0.59681
-0.462431
-0.737363
-2.66461
-2.0075
-0.373598
-2.81259
-0.674427
-0.421262
2.02548
1.6061
1.38812
2.01042
1.6544
1.63465
1.34324
1.56674
1.956
1.99686
1.62532
1.28206
1.32132
1.6018
-0.493757
0.460547
-0.744574
0.146132
0.601298
0.713573
0.132888
-0.785705
0.560806
-0.760652
0.163726
0.807589
0.195266
0.755946
1.71843
1.31956
1.82346
1.52958
1.06627
1.16507
1.47337
1.9341
1.394
1.87418
1.55882
1.25804
1.59152
1.20849
1.72047
1.17756
1.61682
1.40063
0.990401
1.44498
0.956355
1.0575
1.56409
1.53662
1.36718
0.953052
0.952869
1.35395
-0.000277073
-0.00218881
-0.00445675
-0.00658152
-0.00634748
-0.00403464
-0.00837197
-0.0152833
-0.0163703
-0.0130491
-0.0295429
-0.0197422
-0.0205878
-0.0146215
-0.00186956
-0.00362619
-0.00295638
-0.00315201
0.0010397
-0.00185341
-0.00059933
-0.00526276
-0.00612341
-0.00341793
-0.0078963
0.00390843
-0.00054645
-0.00218008
-0.844437
-0.793141
-0.695186
-0.649496
-0.00880591
-0.0124424
-0.00663716
-0.00937228
-0.00440224
-0.00762328
-0.00330935
0.00246502
-0.00181381
-0.00276023
0.00110885
0.0108401
0.0018448
0.00224869
-0.017326
-0.0138112
-0.0117533
-0.00496401
-0.0106018
-0.00613004
-0.00675345
0.187357
0.268739
0.171301
0.151215
0.22163
0.165789
0.20183
0.0540086
-0.0135002
0.089395
0.0385598
0.0883714
0.0586147
0.0182662
0.330159
0.522053
0.325142
0.416372
0.30323
0.35462
0.506883
0.0412756
0.104373
0.102172
0.0565633
0.00941647
0.0149708
0.0672336
0.062807
0.0648386
0.131249
0.110426
0.0823469
0.070184
0.0699512
0.0259536
0.0232902
0.0279102
0.0493006
0.016
0.0036873
0.0449373
0.0213852
0.0376979
0.0278677
0.0261922
0.0141287
0.0181977
0.0330107
-0.0135825
-0.00850353
-0.0105373
-0.00186291
-0.00875078
0.000603347
-0.00110376
-0.251985
-0.266846
-0.240391
-0.251467
-0.0547825
-0.037266
-0.0454717
-0.0351969
-0.0338761
-0.0382524
-0.0316209
-0.0139276
-0.00690957
-0.0124052
0.00178688
-0.00131651
0.0171778
0.00437761
-0.0530107
-0.0323555
-0.030062
-0.0455357
-0.0374166
-0.0325613
-0.0247069
-0.0532063
-0.0363684
-0.0529856
-0.0353425
-0.0217294
-0.0183122
-0.0231981
0.259333
0.0919315
0.0930727
0.0926341
0.174176
0.183325
0.0965091
0.0616655
0.106015
0.103167
0.0761161
0.106276
0.0571711
0.078588
0.0647889
-0.0148389
0.0939409
0.0229428
0.0945799
0.068152
0.0215608
-0.0130247
0.103104
-0.0964688
-0.00414069
0.106804
-0.0291648
-0.0873358
0.265875
0.398327
0.589476
0.253427
0.259456
0.270007
0.563279
0.00687996
-0.00831241
0.0137313
0.00403399
-0.0127714
0.000449132
0.0117705
0.0225474
0.00862153
0.0178294
0.0246205
0.00911283
0.00447284
0.0305693
0.108741
0.248483
0.151485
0.112282
0.207381
0.107455
0.116561
0.0995165
0.154138
0.161698
0.126536
-0.0365473
0.0908616
0.132924
0.119571
0.239851
0.113881
0.133959
0.118637
0.110056
0.207521
0.0830901
0.197664
0.129933
0.115245
0.116895
0.10335
0.176114
1.34921
1.353
1.10841
1.11037
1.34056
1.30145
1.12169
0.0506466
-0.00142206
0.0811715
0.0175495
0.0509457
0.00129003
0.0782241
0.273098
1.00881
0.786323
0.273375
0.306883
1.089
0.240031
1.86531
0.401485
0.332738
0.331472
0.933719
0.393776
1.80148
0.0474725
0.00191162
0.0158015
0.0615234
0.0402587
0.00129548
0.0722814
0.0993169
0.358179
0.374563
0.112307
0.125475
0.386456
0.08981
0.385372
0.163244
0.125859
0.125962
0.452199
0.162121
0.398924
-0.00641028
0.00139231
0.00215349
0.00725977
0.00235445
-0.0061769
-0.000596649
-0.324378
0.325101
0.210057
0.236942
-0.281992
0.238464
0.324928
-0.129356
-0.0906019
-0.0867685
-0.114778
-0.0994182
-0.0856434
-0.0703486
-0.146359
-0.0928292
-0.126827
-0.0922439
-0.0684224
-0.0861519
-0.0680286
0.118531
0.064798
0.0540318
0.0800049
0.0754062
0.0458765
0.102264
0.663187
0.268672
0.145932
0.680264
0.670795
0.256358
0.641949
0.681511
0.127759
0.71626
0.255493
0.705246
0.692122
0.252782
-0.0271224
-0.0250316
0.000533292
-0.00402529
-0.0324393
-0.0203962
0.00615948
-0.0235262
-0.0117454
-0.00129464
0.0129595
-0.0177582
-0.018392
0.00908893
0.0551667
0.0739149
0.0901476
0.0265226
0.0250721
0.0426403
0.0257283
0.107526
0.0531064
0.0506705
0.0577714
0.0573855
0.064078
0.0588858
0.103431
0.0497973
0.0519897
0.0750068
0.0444111
0.0735733
0.0470924
0.956443
0.513671
0.521145
0.488481
0.674388
0.719432
0.498466
-0.0423186
-0.0430463
-0.0429676
-0.027175
-0.00370347
-0.00793159
-0.0219061
0.114572
0.0830165
0.0675964
0.0803664
0.114682
0.0728009
0.0766299
0.218615
0.185523
0.129994
0.146441
0.15723
0.174747
0.2062
-0.015298
-0.0184535
-0.0173184
-0.00443409
-0.0147603
-0.00808474
0.00216998
-0.0869759
-0.0678843
-0.0794696
-0.0583782
-0.0525975
-0.0634274
-0.0528209
-0.0317266
-0.0189918
-0.0101044
-0.0315303
0.0010564
-0.00601066
-0.00853912
-0.100348
-0.0331076
-0.0524555
-0.0216992
-0.034019
-0.0451626
-0.0118534
-0.136922
-0.150691
-0.146354
-0.138065
-0.147427
-0.138432
-0.135937
0.0675228
0.103705
0.113688
0.0769831
0.110468
0.0693028
0.080039
0.158682
0.109262
0.111552
0.0209725
0.115462
0.0842265
0.167071
0.175659
0.197162
0.13329
0.108035
0.189686
0.195371
0.122334
0.170463
0.157397
0.112158
0.102512
0.189951
0.117776
0.164393
0.495939
0.67687
0.514542
0.650386
0.492269
0.509285
0.663361
0.4918
0.707343
0.494988
0.643762
0.486856
0.655938
0.499854
0.817901
1.0929
0.676265
0.811034
0.816897
0.665701
1.06787
0.817358
1.06221
0.674611
0.803596
0.80221
0.665151
1.05517
0.00246013
0.179306
0.171819
0.273806
0.0845978
0.0750669
0.275609
-0.0429616
-0.0632351
-0.0645981
-0.062036
-0.0359246
-0.0395624
-0.0597102
-0.0378094
-0.0196368
-0.0131531
-0.0408422
-0.0166218
-0.0367359
-0.0400678
0.0120859
0.0350585
0.0161004
0.0179198
0.0128252
0.0285239
0.0168227
-0.00871752
-0.0143655
-0.000130878
0.0375401
-0.0116379
-0.00940864
0.00669705
-0.00650877
-0.00283777
0.0119695
0.0395157
-0.00777986
0.00515944
0.0090035
0.00908204
0.0302301
0.0265314
0.0218607
0.00467991
0.0370586
0.029297
0.0456287
0.0457033
0.0229072
0.058849
0.0478849
0.0561951
0.0406884
1.49248
1.16838
1.28676
1.45248
1.24395
1.56294
1.37851
0.2166
0.27105
0.143787
0.104419
0.280655
0.103436
0.222962
0.215536
0.0875674
0.283704
0.14047
0.283088
0.211919
0.0955195
1.62243
1.23961
1.3027
1.46984
1.5873
1.49198
1.32574
0.209723
0.0799025
0.127375
0.283462
0.288661
0.0708365
0.210482
-1.20516
-0.903289
-0.0894509
-0.0478503
-1.00666
-1.08801
0.000685872
-0.890514
-0.919155
-0.0269426
-0.158709
-0.986721
-0.109634
-0.839087
-0.0558116
-0.042407
-0.0351696
-0.0473641
-0.0448892
-0.0538929
-0.0463385
0.163762
0.183558
0.19035
0.0818966
0.117489
0.0932928
0.107711
0.0462199
0.0753834
0.0410128
0.0489006
0.0750348
0.0682368
0.0439926
-0.312347
-0.203623
-0.21203
-0.271989
-0.300416
-0.249036
-0.176888
-0.35733
-0.19687
-0.246075
-0.203843
-0.247486
-0.357037
-0.159729
-0.710927
-0.74231
-0.681952
-0.634421
-0.160655
-0.19858
-0.258007
-0.0767137
-0.31027
-0.122951
-0.105616
0.160379
0.179275
0.164729
0.118489
0.132673
0.11094
0.140022
0.0567346
0.0766087
0.059552
0.0467095
0.0608021
0.0607214
0.039524
0.469685
0.129091
0.148539
0.146717
0.278064
0.32884
0.128028
0.171989
0.511675
0.161256
0.385535
0.172852
0.161473
0.360602
0.221599
0.0167869
0.0210863
0.0434171
0.159895
0.189836
0.0370128
0.0262696
0.243954
0.0236945
0.225588
0.0542766
0.0494583
0.209643
0.0938123
0.178055
0.163363
0.0793898
-0.330407
0.0278774
0.0623917
-0.0808365
0.156692
0.0752415
-0.0421726
0.0638873
0.153068
0.106203
0.0883131
0.0556832
0.133162
0.0469738
-0.0169876
-0.0230489
-0.0319393
-0.0207593
0.00312451
-0.0135989
-0.0129055
-0.00623765
0.0206347
0.0138679
0.0125207
-0.00728375
0.0136675
-0.0019686
-0.338878
0.0633381
-0.0513667
-0.0441246
-0.500248
0.0558731
-0.346782
-0.323503
-0.101236
-0.0929277
-0.0810696
-0.106369
-0.429475
-0.0826322
-0.0737958
-0.100353
-0.0876847
-0.0470868
-0.130867
-0.0520972
-0.0659158
-0.167249
-0.0687113
-0.0580756
-0.138016
-0.149371
-0.116364
-0.0534073
-0.318446
-0.0999427
-0.161771
-0.169438
-0.251387
-0.362402
-0.0904891
0.122405
0.116395
-0.0352268
-0.00479958
-0.0956034
-0.0714767
-0.00585426
-0.0312876
0.00144443
-0.168225
-0.21407
-0.661303
-0.0327966
-0.416871
-0.0755033
-0.0755912
-0.160982
0.0965638
0.175815
0.195055
-0.19264
0.100012
0.169983
-0.145187
0.113113
0.184241
0.193204
0.103303
-0.127191
0.175572
1.6871
0.181606
0.53321
1.33326
0.187445
1.70078
1.31674
1.91631
1.26766
1.51492
1.14517
1.91082
1.25049
1.52605
1.67382
0.206953
0.530732
1.28344
1.65086
0.195201
1.30365
1.89128
1.28442
1.50339
1.15527
1.90383
1.29531
1.4793
1.58545
0.229447
0.596031
1.25849
1.62146
0.256824
1.20166
1.85952
1.31313
1.39459
1.15195
1.30816
1.79994
1.43592
-0.0323764
-0.0620947
-0.0501256
-0.0281891
-0.0307827
-0.0567089
-0.0310665
0.0961026
0.116157
0.110571
0.132712
0.0976914
0.0983311
0.136563
0.11209
0.1849
0.100641
0.106164
0.155191
0.196478
0.115456
0.0774059
0.0701782
0.0686882
0.0838009
0.098012
0.105037
0.0752317
0.0063009
0.00435051
0.0204112
0.0222741
-0.116601
0.138826
0.0995016
0.0998473
0.177035
-0.0573748
0.137233
0.00361174
0.00160751
0.0164219
0.0142719
0.124441
0.144576
0.13579
0.154552
0.115894
0.144228
0.143353
0.126316
0.107206
0.115275
0.18929
0.122609
0.119896
0.175445
0.223866
0.322876
0.222848
0.283587
0.379527
0.285849
0.437348
0.177533
0.14866
0.179937
0.222053
0.147255
0.220316
0.151664
0.210965
0.203837
0.201478
0.24506
0.26497
0.256135
0.206455
0.180401
0.20824
0.18164
0.184778
0.272893
0.185637
0.276399
0.174648
0.130624
0.172485
0.214278
0.141037
0.216463
0.135989
0.180908
0.188481
0.178599
0.196284
0.26951
0.19315
0.246616
0.0110654
0.0226087
0.0357298
0.0251282
0.0760433
0.101938
0.114181
0.179737
0.120222
0.195871
0.0699134
0.0416883
0.178192
-0.203204
-1.62354
-2.72794
-0.170839
-0.205343
-0.0159292
-0.0313183
0.0858656
-0.380084
-0.434441
0.0930321
-0.117067
-0.209815
-0.123886
-0.0554422
-1.77887
-0.866664
-0.151636
0.0562764
-0.147305
0.0627495
0.151699
0.238889
0.242338
0.152382
-0.143246
-0.00601954
0.00458589
0.0992153
-0.341227
-0.293966
0.095166
0.0538563
-0.191003
0.0481384
0.149764
0.23175
0.179009
0.157545
0.689076
0.187511
0.386042
0.404104
0.336792
0.690284
0.194549
0.42111
0.338247
0.203763
0.689445
0.690901
0.199907
0.434443
0.0246185
0.057783
0.0633749
0.141339
0.0641772
0.143213
0.0630257
0.10397
0.0963098
0.334051
0.329014
0.287656
0.833936
0.35325
1.2349
0.329839
0.307977
1.14601
0.0231991
0.0829631
0.0726146
0.140925
0.0531103
0.0584271
0.134194
-0.0433918
-0.0416173
0.243502
0.235595
0.0248908
0.0501724
0.0507343
0.152237
0.0664293
0.07136
0.143991
0.331279
0.914637
0.372897
1.28432
0.386516
0.325038
1.78929
0.0240418
0.0323638
0.0730149
0.15172
0.0408854
0.15159
0.073215
-0.0444659
-0.0489463
0.136297
0.198095
-0.525243
-0.0707503
-0.541027
-0.261231
0.1992
-0.256688
0.182663
0.102263
0.392189
0.390646
0.139801
0.133017
0.394417
0.106033
-0.593821
-0.252968
-0.593326
-0.285385
-0.0219568
0.025433
-0.285792
-0.142551
-0.684702
-0.414526
-0.449711
-0.682173
-0.44286
-0.121857
0.126016
0.446439
0.381736
0.14588
0.158914
0.404852
0.109105
-0.579105
-0.45538
-0.58127
-0.28874
-0.118843
-0.186425
-0.27305
-2.40409
-2.26984
-1.99483
-2.26134
-2.27236
-2.26955
-2.42975
-0.0141785
-0.0431779
-0.0307822
-0.0307327
-0.0159401
-0.0155283
-0.0412424
0.317248
0.261552
0.237811
0.286575
0.267386
0.277283
0.290399
0.214615
0.0622886
0.185849
0.15733
0.137037
0.174536
0.150643
-0.124833
-0.129069
-0.129891
-0.128333
-0.125896
-0.12796
-0.125701
1.10133
0.512266
0.520058
0.496779
0.791536
0.490556
0.814137
-0.0423833
-0.0412095
-0.0266067
-0.0216015
-0.0441766
-0.0418347
-0.0246885
-0.0652363
-0.0533114
-0.0619741
-0.0380186
-0.0261287
-0.0299137
-0.0329815
-0.0528828
-0.0604792
-0.0600437
-0.0381196
-0.0335275
-0.0303729
-0.0391908
0.0580238
0.161736
0.0188034
0.130535
0.13617
0.0731472
0.0719006
0.106895
0.0287038
0.163865
0.127943
0.0494473
0.135211
0.0867898
0.120548
0.0745097
0.170527
0.151815
0.136231
0.0628481
0.141747
-0.0961705
0.126786
0.17551
0.0457915
0.174338
0.0769869
-0.282452
0.0535927
-0.0995644
0.119313
-0.117082
0.0412036
-2.73322
-2.04781
-0.957316
-0.596607
-1.81979
-3.37345
-0.857765
0.027201
0.132841
0.0447298
-0.0320616
0.0443347
0.0430538
0.131145
-0.0618157
-0.0480008
0.0433135
0.172549
0.274054
0.196454
0.213203
0.255489
0.225614
0.161335
-0.0836891
0.194168
0.209483
0.174577
0.159083
-0.0455883
0.193074
-0.0993101
0.123602
0.186931
0.209093
-0.116158
0.141452
0.193426
-0.554355
0.227399
0.900907
0.609491
0.0899857
0.949208
-0.350945
-0.64256
0.856014
0.0550755
0.894652
0.0505773
-0.669471
0.867724
-0.774452
-0.0960645
0.987927
0.847398
0.0365329
-0.841534
0.82528
-0.729987
0.834305
0.0522156
0.956467
0.048653
-0.700253
0.834481
1.58896
1.00292
1.79918
0.973197
1.81927
1.57901
1.00317
1.59288
1.85139
0.984046
1.01151
1.83863
1.58919
1.00631
1.54216
1.85058
1.0292
1.01662
1.84506
1.5781
1.03716
1.72546
0.173121
0.547288
1.3446
1.70647
0.166428
1.36652
1.74715
1.30902
1.37608
1.16221
1.7692
1.36013
1.27358
1.04003
0.0997106
1.28245
1.15936
0.410829
0.362319
1.11312
1.3892
0.0405959
1.33455
1.19294
0.328542
1.23239
0.341576
-0.0865236
-0.0778665
-0.0803735
-0.0896084
-0.0778794
-0.0864473
-0.0884922
-0.043856
-0.0688176
-0.0436651
-0.0688162
-0.0473651
-0.0681615
-0.0403196
-0.0174405
0.0104289
0.0119769
-0.0397171
-0.0481726
0.0119398
-0.0162126
-0.0177374
-0.0524254
0.0077447
0.0106493
-0.0169809
-0.051905
0.0102083
-0.0497044
-0.0144991
-0.0249786
-0.0370589
-0.0240217
-0.0476515
-0.0386021
-0.0483016
-0.00835454
-0.0256784
-0.0367721
-0.0212493
-0.0478944
-0.035606
-0.0215003
-0.0173154
-0.0560978
-0.0540791
-0.0205522
-0.067635
-0.0230859
0.0279249
-0.0419597
-0.0201919
0.0165867
0.016143
-0.0257321
0.0293607
0.0287733
-0.0909242
0.00117
0.0309401
-0.030532
0.0263144
0.0270876
-0.018746
-0.039355
0.0228155
-0.00072313
0.0162939
-0.0264527
-0.0384161
0.0107182
-0.0300753
0.0127602
-0.031518
-0.0499839
5.17579e-06
-0.0153636
-0.0380878
0.00296469
-0.0425768
-0.00882733
-0.00432232
0.0397118
0.0464284
-0.0786968
0.0527002
-0.00196555
-0.0133585
0.0386696
0.00585996
-0.00954698
0.0450493
-0.00362743
0.0375763
-0.029541
-0.00504225
0.0337714
0.451945
0.665291
0.337147
0.196347
0.66722
0.214351
0.45779
0.45968
0.207398
0.687652
0.340982
0.448504
0.68334
0.211186
-1.11304
-2.7112
-1.97174
-0.982024
-2.34414
-0.937238
-1.31228
-0.742475
-3.07572
-1.94635
-0.572341
-2.52779
-0.895165
-0.605733
-0.597439
-1.98997
-1.84839
-0.421848
-0.438972
-2.45781
-0.416029
-0.427997
-0.439025
-0.471945
-0.40019
-0.393239
-0.368441
-0.434443
-0.557357
-0.701452
-0.571627
-0.501619
-0.552101
-0.594946
-0.560092
-0.519106
-0.39765
-0.312025
-0.358696
-0.330732
-0.32369
-0.392572
-0.283771
-0.461848
-0.299867
-0.341365
-0.322896
-0.370752
-0.42745
-0.285716
-0.295751
-0.308755
-0.335612
-0.239474
-0.386448
-0.260848
-0.263414
-0.508173
-0.503728
-0.494352
-0.484552
0.0471709
0.0432127
0.0320482
0.0229812
0.0543448
0.0419549
0.033623
0.0244708
0.00131785
0.00293584
0.00730882
0.0339088
0.0320898
0.0050323
0.0112452
0.0632609
0.00890691
0.0144631
0.0383865
0.02185
0.00569051
-0.17045
-0.217088
-0.228505
-0.377117
-0.161317
-0.333196
-0.283802
-0.262788
-0.292192
-0.242358
-0.60053
-0.171533
-0.16928
-0.251271
-0.278599
-0.156995
-0.153965
-0.265036
-0.29856
-0.28192
-0.149501
-0.153721
-0.222421
-0.242888
-0.254756
-0.121956
-0.146762
-0.22561
-0.146005
-0.422743
-0.337404
-0.315893
-0.140376
-0.143172
-0.39123
-0.279796
-0.117803
-0.135493
-0.269232
-0.140679
-0.239678
-0.335124
0.0835091
0.0156162
0.0911669
0.127601
0.145855
0.14575
0.126383
-0.390066
0.21858
0.219749
0.332591
0.276325
0.282786
0.329367
0.226705
-0.377733
0.223016
0.339352
0.288167
0.290642
0.343693
-0.480597
0.21939
0.231915
0.313189
0.25519
0.223678
0.324687
0.242196
-0.784958
0.268894
0.307299
0.211974
0.207956
0.284747
-0.0628829
0.24238
-0.00452108
0.462686
0.347162
0.434479
0.354082
1.8104
1.66522
1.67925
1.64974
1.51305
1.38054
1.10581
1.17473
1.34033
1.33157
1.1409
1.41831
1.71659
1.63942
1.63491
1.75406
0.243553
0.165462
0.060708
0.501183
0.260898
0.563527
0.339336
0.0640723
0.347171
0.0613337
0.233372
0.642233
0.235649
0.601756
0.059745
0.327694
0.0610226
0.230034
0.553184
0.574195
0.229018
0.3789
0.003532
-0.0384817
0.174057
0.384548
0.0105908
0.17906
0.0219532
-0.0284757
0.405387
0.390392
0.0151483
0.182063
0.187839
2.09026
2.05974
2.12217
1.57707
1.71556
1.62101
1.57414
2.09673
2.09058
2.0979
1.55576
1.6073
1.59252
1.54892
1.90775
1.19769
1.1931
1.05096
1.38736
1.41457
1.04471
1.24373
1.93899
1.1764
1.0568
1.43157
1.43706
1.09607
0.207934
-0.224011
-0.261363
0.246164
0.324789
0.32346
0.258563
-0.294037
-0.262351
-0.282853
-0.213219
-0.165631
-0.168746
-0.195211
-0.327142
-0.317573
-0.303394
-0.230146
-0.194705
-0.248855
-0.185351
-0.214883
-0.383121
-0.377796
-0.280249
-0.176835
-0.176479
-0.285215
-0.351164
-0.22982
-0.37041
-0.270814
-0.178529
-0.259727
-0.175002
-0.0143107
0.622816
-0.143521
-0.0225764
0.0431616
0.0212068
0.356058
-0.18362
-0.120039
-0.114528
-0.0791352
-0.157784
-0.150171
-0.0872975
-0.0887082
-0.16697
-0.104833
-0.0663267
-0.113234
-0.136087
-0.0402999
-0.325381
-0.310821
-0.302235
-0.241879
-0.261033
-0.263837
-0.233089
-0.146874
-0.280771
-0.358691
-0.246367
-0.253742
-0.214875
-0.256014
-0.334244
-0.241534
-0.27613
-0.223535
-0.245358
-0.260998
-0.214578
-0.207021
-0.351129
-0.287896
-0.223616
-0.259521
-0.202836
-0.271625
-0.406129
-0.310226
-0.401494
-0.355826
-0.263454
-0.26348
-0.350386
-0.411013
-0.3003
-0.401768
-0.354269
-0.267875
-0.262231
-0.357837
-0.294187
-0.380128
-0.400532
-0.34284
-0.23764
-0.253219
-0.330876
-0.422002
-0.331993
-0.422106
-0.35489
-0.267859
-0.269506
-0.35538
0.991971
0.51212
0.51238
0.771368
0.487009
0.486502
0.743548
0.0620977
0.0597538
0.0711444
0.0473368
0.0661985
0.0619017
0.0222963
-0.0263896
0.0464512
0.0185491
-0.0278518
0.00969215
0.00107974
-0.0277184
-0.22936
-0.391158
-0.384157
-0.304996
-0.209758
-0.205967
-0.307448
-0.37708
-0.227312
-0.379292
-0.29935
-0.19805
-0.297318
-0.201016
-0.386951
-0.209121
-0.384605
-0.291266
-0.180401
-0.291436
-0.183257
-0.376615
-0.21594
-0.380097
-0.293643
-0.191639
-0.292768
-0.189156
0.039788
1.76151
0.0192587
0.168116
0.138284
1.07752
0.215773
1.36471
1.5507
0.599932
0.205902
0.578349
1.30459
1.48104
0.245442
0.224348
0.58174
1.2155
1.27305
0.617595
0.126746
-0.696577
-0.389326
-0.421151
0.126239
-0.0361694
-0.0205511
-0.717901
-0.478593
0.11157
-0.447209
0.125945
-0.0466179
-0.0724408
0.126055
-0.363074
-0.631543
-0.344747
0.120787
-0.00464861
-0.0111331
-0.608725
-0.323167
0.127728
-0.332253
0.121494
-0.00181147
-0.00101983
-0.813928
-0.572199
0.090472
-0.726632
0.0206082
-0.287287
-0.358327
-0.764061
-0.55302
0.0356521
-0.623283
0.118626
-0.192863
-0.128964
-0.786044
-0.857166
0.0788518
-1.00198
0.0894734
-0.436994
-0.386253
-0.857252
-1.22021
0.138457
-0.49768
-1.13185
0.120391
-0.456732
-0.466714
-0.320982
0.134993
-0.328713
0.18342
-0.0440482
-0.0135823
-0.11111
-0.101014
-0.109607
-0.111872
-0.099225
-0.100899
-0.0999371
-0.0717252
-0.042577
-0.0697831
-0.0455102
-0.0711774
-0.0511963
-0.0490539
-0.0337471
-0.0578771
-0.0565032
-0.0341609
-0.0539234
-0.0363322
-0.0357345
-0.0372319
-0.0686475
-0.0599173
-0.0646123
-0.0364172
-0.0391407
-0.0364878
-0.0685833
-0.0454954
-0.0718143
-0.0433307
-0.06974
-0.0412362
-0.0426225
-0.0668379
-0.0731361
-0.0770367
-0.0470568
-0.04843
-0.0479354
-0.0478097
-0.0606927
-0.0444126
-0.0699631
-0.0673565
-0.0472217
-0.0489596
-0.0453166
-0.0251882
-0.0506109
-0.0415915
-0.0252715
-0.0250111
-0.0443116
-0.024555
-0.0481194
-0.0283626
-0.0524206
-0.0262912
-0.0265652
-0.0465781
-0.0257407
-0.0985243
-0.0920687
-0.0780659
-0.121636
-0.076044
-0.147105
-0.0743452
-0.0868796
-0.0873813
-0.0472171
-0.070847
-0.137016
-0.0782196
-0.0592604
-0.0693131
-0.042855
-0.0506264
-0.0834002
-0.0244522
-0.0863748
-0.0876864
-0.14607
-0.0775528
-0.0733817
-0.0569362
-0.109888
-0.0958837
-0.0864958
-0.05874
-0.121476
-0.0745017
-0.0936994
-0.0579962
-0.057841
-0.0573807
-0.043841
-0.0587383
-0.0463352
-0.0637724
-0.0620873
-0.055262
-0.0507648
-0.0144695
-0.0490424
-0.0436125
-0.0209375
-0.0600306
-0.0433811
-0.0388516
-0.047584
-0.0173632
-0.0480404
-0.0137321
-0.0583266
-0.0425814
-0.0390919
-0.0409224
-0.0333645
-0.0135701
-0.0169824
-0.0155145
-0.0317047
-0.0440981
0.0388771
0.0302009
0.0252135
0.0424082
-0.0467516
-0.0205598
0.0176943
-0.0466948
0.0311486
0.035363
0.022462
0.0332396
-0.0122372
0.0218242
0.0402571
0.033312
0.0351375
0.0439263
0.0527211
-0.0816763
0.0430554
0.105117
0.0498085
0.110386
-0.0330355
0.0292309
-0.0838138
-0.106024
0.0968793
0.036446
0.101555
-0.0619995
0.0588502
0.00328272
0.0663867
0.117701
0.10123
0.113532
0.130101
0.0780829
0.0129778
0.0715398
0.120014
0.142849
0.124549
0.137216
-0.23613
0.16482
0.1354
0.199419
-0.0111209
-0.390773
0.234845
0.118545
-0.545445
-0.261876
0.184166
0.125212
0.190783
-0.478052
-0.440352
0.208836
0.223082
0.343618
0.207277
0.273547
0.323042
0.228134
-0.421378
0.225838
0.343996
0.285227
0.345917
0.279283
-0.155432
0.16119
0.168744
0.235981
0.194882
0.183936
0.230244
0.202828
-0.190223
0.181136
0.246509
0.191443
0.262176
0.181401
-0.231653
-0.1529
-0.145928
-0.126855
-0.197801
-0.194947
-0.133808
-0.138659
-0.233848
-0.140557
-0.119314
-0.191295
-0.192026
-0.114419
-0.126443
-0.216099
-0.13413
-0.0999125
-0.16407
-0.0946404
-0.173638
-0.135695
-0.261561
-0.137788
-0.105383
-0.187634
-0.186737
-0.108051
-0.161847
-0.225023
-0.165698
-0.148163
-0.201516
-0.142488
-0.199889
-0.176451
-0.217838
-0.17023
-0.155805
-0.202018
-0.161826
-0.201025
-0.218158
-0.25082
-0.205072
-0.189858
-0.229902
-0.199315
-0.220683
-0.184317
-0.22848
-0.19315
-0.178403
-0.206285
-0.171108
-0.209922
-0.394921
-0.237606
-0.384699
-0.306298
-0.215778
-0.310886
-0.214475
-0.364738
-0.228682
-0.373617
-0.304786
-0.211088
-0.214122
-0.301088
-0.368213
-0.227895
-0.362407
-0.311258
-0.22506
-0.317707
-0.21912
-0.360507
-0.213286
-0.35897
-0.304565
-0.212152
-0.211629
-0.303505
0.225863
-0.106768
-0.142341
0.404343
0.344157
0.419031
0.340097
1.46907
1.14646
1.19465
1.34356
1.44095
1.21999
1.35891
1.81988
1.73886
1.88869
1.66063
0.219476
-0.225119
-0.183438
0.377851
0.323941
0.334828
0.334738
1.79874
1.63424
1.77442
1.64174
0.250583
0.152291
-0.377654
0.319859
-0.438
0.273512
0.277716
1.37219
1.52566
1.72875
1.64892
1.24835
1.49627
1.34296
2.04019
1.86523
2.02727
1.85953
0.182682
-0.304743
-0.352272
0.304201
0.318169
0.311356
0.298646
1.89179
2.18175
2.039
1.85299
0.193417
0.0479184
0.0488629
0.21684
0.449576
0.489066
0.211938
0.0564346
0.241671
0.0523084
0.221369
0.53558
0.225634
0.518111
0.068537
0.0502187
0.0448447
0.205221
0.430829
0.43564
0.208344
0.0290942
0.426324
0.052939
0.0390178
0.202162
0.194922
0.43948
2.195
1.60586
1.81162
1.42448
1.57406
1.61159
1.3248
2.09961
2.17757
2.10469
1.51779
1.62153
1.5457
1.62476
1.88767
1.49541
1.43944
1.21302
1.54199
1.43343
1.29373
1.37774
1.8719
1.41527
1.18367
1.40979
1.1503
1.41165
-2.16461
-2.03324
-1.34764
-1.86227
-1.12876
-0.925068
-0.980254
-2.54253
-2.19321
-0.72108
-0.46878
-1.91386
-0.607114
-0.466169
-0.600872
-0.670349
-0.615781
-0.557007
-0.5955
-0.255859
-0.367888
-0.505047
-0.469558
-0.551342
-0.44879
-0.50928
-0.458723
0.0605554
0.0572417
0.077645
0.0626302
0.0531591
0.0454919
0.0451753
0.0653784
0.0197249
0.00940881
0.0856433
0.0982012
0.0532196
0.0242049
0.044615
0.0367206
0.0167838
0.00318583
0.0303283
0.0325025
0.0235383
-0.330826
-0.153255
-0.110971
-0.0912918
-0.329579
-0.124035
-0.327785
-0.0467043
-0.541148
-0.268999
0.0190101
0.0217393
-0.38002
-0.0362184
-0.0774855
-0.319476
-0.09756
-0.151046
-0.107772
-0.304228
-0.0555673
-0.282347
-0.0503309
-0.367262
-0.335082
-0.0118456
-0.275924
-0.0528449
-0.565442
-0.109675
-0.62473
-0.571369
-0.135504
-0.518372
-0.108452
-0.455708
-0.12545
-0.307239
-0.0779817
-0.425298
-0.0970383
-0.310173
-0.276345
0.123168
0.0518418
-0.272878
-0.0100657
-0.0485143
-0.152367
-0.218086
-0.0489212
-0.213312
-0.0454249
-0.0480913
-0.048519
-0.0248802
-0.0166373
-0.022572
-0.0187066
-0.0395156
-0.0474048
-0.039843
-0.0188178
-0.0134947
-0.0202154
-0.0130193
0.0912511
0.0999134
0.105559
0.127463
0.0923709
0.121774
0.0956432
0.163455
0.0925122
0.108665
0.206473
0.21359
0.102274
0.164858
0.156642
0.0974441
0.202891
0.100299
0.205927
0.150933
0.0997712
0.0761799
0.0949335
0.089069
0.110514
0.0870484
0.116604
0.081578
0.0724558
0.178715
0.126319
0.133881
0.0787235
0.186625
0.0795796
0.139409
0.0916929
0.0858021
0.197354
0.145552
0.191803
0.0862976
0.00313604
0.00443044
0.0198328
0.0166888
0.0504141
0.136795
0.105119
0.0612967
0.0437988
0.0894447
0.0996602
0.0359675
0.00177207
0.00125151
0.0138093
0.0146738
0.0839821
0.0336389
0.0316444
0.0827088
0.0311916
0.0855882
0.0326924
0.0827098
0.188594
0.16977
0.150287
0.169412
0.306101
0.194467
0.207878
0.178834
0.117053
0.204138
0.13662
0.20254
0.171144
0.142271
0.192473
0.407332
0.20433
0.143902
0.198331
0.220412
0.240445
0.304356
0.187932
0.204051
0.239901
0.36591
0.217048
0.396687
0.232494
0.449803
0.212051
0.214376
0.23509
0.219758
0.350108
0.156953
0.185811
0.182777
0.225784
0.163444
0.227065
0.158327
0.190591
0.190438
0.195002
0.236372
0.175202
0.233429
0.18873
0.208436
0.186059
0.183427
0.185124
0.270085
0.187048
0.275579
0.127825
0.169696
0.170466
0.211102
0.134851
0.208805
0.132915
0.154788
0.169066
0.173948
0.197617
0.135682
0.201656
0.167627
0.0632523
0.0482951
0.102375
0.123532
0.0519125
0.150465
-0.188254
0.13164
0.064703
0.0325853
-1.31158
0.139311
-0.237077
0.127053
-0.179257
0.0741943
0.141486
-0.0228581
0.0823069
-0.0874147
-1.03231
0.188355
0.10276
-0.912355
-0.168724
0.173446
-0.228252
-0.08327
-0.0468946
0.0809498
-0.589314
-0.485209
0.0733309
-0.184876
-0.107329
-0.117738
0.0371241
-0.663912
-0.790148
0.0537602
-0.106036
0.0980603
0.073534
0.148779
0.267367
0.243995
0.143294
-0.128285
0.0228656
0.010843
0.102173
-0.218216
-0.26621
0.10937
-0.136907
0.0308253
0.0407182
0.130199
-0.174767
0.033397
0.113799
-0.109086
0.0370958
-0.104764
0.0629064
0.0821511
0.0566311
0.0862035
0.0589947
0.0666833
0.311821
0.311218
0.0433457
-0.137721
-0.110189
0.0505653
0.106602
0.101891
0.0396122
0.221542
0.157102
0.290005
0.177894
0.29587
0.150636
0.206537
0.762333
1.8194
0.734131
0.767452
0.748152
0.753988
0.790996
1.84146
0.778225
0.756413
-0.188073
0.0116809
-0.177371
0.00841434
0.0876791
0.0939468
-0.00695062
0.023406
-0.00144677
0.27759
0.296794
0.019352
-0.154941
-0.164898
0.0234499
0.101294
0.0986634
0.0333509
0.205955
0.155915
0.195576
0.293112
0.158652
0.206564
0.300793
0.736439
0.827644
1.93313
0.826568
0.735777
0.195477
0.149122
0.197566
0.292961
0.156361
0.302512
0.177677
0.748856
0.801352
1.89866
0.753267
0.812298
1.39767
0.376339
0.392729
1.39548
-0.275816
0.0750555
-0.0100819
-0.225517
-0.255528
-0.193448
0.0740056
-0.0274626
-0.0518094
0.376686
0.153985
-0.0450056
-0.0133396
0.218899
0.386327
0.155233
-0.00471168
-0.201057
-0.228005
-0.167075
0.0668607
0.073021
-0.131424
0.0429866
0.216948
0.150461
0.397975
0.388984
0.156297
0.0991691
0.346226
1.32041
1.35938
0.394553
-0.191692
-0.000106097
-0.187048
-0.054583
0.0826649
-0.0232613
0.0776115
0.0241145
-0.0453043
-0.00388923
-0.184578
-0.172115
-0.069746
0.0686627
0.0744375
-0.101681
0.141145
0.150994
0.210423
0.40686
0.152046
0.12392
0.387641
0.406287
0.880521
2.35921
0.602846
1.00652
0.124411
0.145306
0.201122
0.304171
0.152021
0.1467
0.329955
0.389211
1.31346
2.38424
0.402234
1.18021
-0.107166
-0.565467
-0.555792
-0.267937
0.130106
0.156274
-0.272372
-0.0463291
0.642377
0.662981
0.0941316
0.106986
-0.0509306
0.632282
-0.0484232
0.575915
0.112428
0.664665
0.111315
0.606774
-0.0506789
-0.210122
-0.575365
-0.582494
-0.279711
0.0970084
0.067789
-0.277351
-0.0588538
0.379106
0.608234
0.106992
0.44566
0.111344
-0.0624927
-0.0539142
0.536695
0.112288
0.6371
0.498211
-0.0538563
0.115811
0.19559
-0.065161
-0.273282
-0.263055
0.606872
-0.0555738
0.226067
-0.377511
-0.671939
-0.677294
-0.433727
-0.0919538
-0.0994313
-0.414889
-0.251167
0.634483
0.271384
-0.0159772
-0.0442251
0.25358
-0.223514
-0.507254
-0.634744
-0.596008
-0.315105
-0.0808442
-0.228624
-0.372717
-0.0849111
0.257484
0.51137
0.108462
0.138448
-0.05641
0.0867736
-0.116381
0.283075
0.0195307
0.609482
0.121278
-0.178747
0.0674934
0.235827
-0.160929
0.0526829
0.28274
0.319628
0.261369
0.308903
0.00563139
-0.0183822
-5.9555e-05
0.0119732
-0.0143343
-0.00325953
0.00291267
-0.0589034
-0.030813
0.0273429
-0.0212568
-0.0147439
-0.0450987
-0.0299256
0.897425
0.241183
0.216476
0.173777
0.480528
0.202878
0.665734
0.00164741
0.0499408
0.0314851
0.0167483
0.0103753
0.000748091
0.0316594
0.00944283
0.00759637
0.0958185
0.0308481
0.0429967
0.00899486
0.0354436
0.0590278
0.12745
0.137278
0.14029
0.110692
0.0852358
0.104197
-0.0363669
-0.0371566
-0.0153745
-0.00777723
-0.0406955
-0.0324256
-0.00788908
0.0110007
0.0396425
0.0223825
0.0248222
0.0375304
0.0307653
0.00806255
0.0812584
0.132603
0.116541
0.180074
0.133688
0.0742135
0.128729
0.0909705
0.133272
0.179019
0.199623
0.112295
0.134577
0.148429
0.0791125
0.13428
0.183036
0.115703
0.0747099
0.137044
0.115398
0.0422361
0.133489
0.0867639
0.0789417
0.0969822
0.0912817
0.0299818
-0.0192207
-0.0150198
-0.0502491
-0.0420018
-0.0236334
-0.0114198
-0.0461368
-0.0129984
-0.0391671
-0.038671
-0.004985
-0.00782893
-0.0423538
-0.00318832
-0.00442195
-0.0254919
0.0146715
0.0173809
-0.0168071
0.0217236
-0.0121744
-0.0264709
-0.0314117
0.0116554
-0.0113487
-0.0214332
0.00726403
-0.0371764
0.0696166
0.446934
0.0647523
0.205028
0.655248
0.224624
0.691199
0.107329
0.181217
0.0715307
0.220168
0.106385
0.0781753
0.135615
-0.49852
0.222561
0.0411247
-0.448908
-0.241211
-0.218094
0.214239
-0.107319
-0.0349375
-0.0543326
-0.00981045
0.0192119
-0.000972898
0.0255918
0.117593
0.0929624
0.328522
0.284606
0.0849422
0.0488176
0.0200611
0.0671094
0.126859
0.0999978
0.0451581
-0.712598
0.0119226
0.00597998
0.0805488
0.12198
0.292738
0.0582983
0.0804173
0.22548
0.195409
0.206302
0.221546
0.206949
0.208676
0.167096
0.00303806
0.178436
0.211011
0.216329
0.215083
0.212374
1.20355
1.37421
1.84273
1.0428
1.19799
1.03611
1.35479
1.82546
1.16171
1.1824
1.02559
1.31961
1.33965
1.01423
-0.406935
-0.269461
-0.397959
-0.390125
-0.345513
-0.328236
-0.274521
-0.435394
-0.381439
-0.387208
-0.315237
-0.242012
-0.293254
-0.275044
-0.458231
-0.271596
-0.370822
-0.212188
-0.149917
-0.189243
-0.143627
-0.369262
-0.362479
-0.376822
-0.24862
-0.214308
-0.274979
-0.200917
-0.24187
-0.160757
-0.344924
-0.217658
-0.178334
-0.156414
-0.157399
-0.334169
-0.154525
-0.190284
-0.1365
-0.1374
-0.14957
-0.10873
-0.351538
-0.262813
-0.326186
-0.368821
-0.238443
-0.230473
-0.259578
-0.344562
-0.491218
-0.425541
-0.233913
-0.249814
-0.258852
-0.233513
-0.607363
-0.159305
-0.308884
-0.128036
-0.241306
-0.246326
-0.0534501
-0.66011
-0.523191
-0.753738
-0.231548
-0.250695
-0.255817
-0.254329
0.157116
0.198605
-0.0976764
0.224436
0.157886
0.222892
0.207154
-0.0819021
0.163094
0.158726
0.219183
0.217359
0.217688
0.209577
1.16283
1.73024
1.10671
1.013
1.30549
1.0127
1.26627
-0.0717114
-0.218191
-0.351192
-0.178919
0.0032113
-0.122346
0.148614
-0.0962314
0.0329857
0.0851657
-0.0953592
0.0644098
0.0552107
0.0768154
0.705269
0.751968
0.713988
1.67064
0.63849
-0.218774
0.0555684
0.216969
-0.0150595
0.0256874
-0.0538782
-0.0663852
0.0540506
0.0573399
0.0651529
0.0271314
0.654854
1.52553
0.409369
0.549491
0.433471
0.311703
0.0965468
0.080665
0.0516543
0.221166
0.0664223
0.243482
0.00679607
0.0279325
-0.00212194
0.0126339
0.0172552
0.00137162
0.0173375
-0.0400318
-0.0415917
-0.0389374
-0.0324003
-0.0269764
-0.0435972
-0.0403604
0.0109605
0.0778747
-0.00300916
0.124648
0.0275047
0.0136043
0.0736343
0.0377314
0.0237458
0.0268907
0.042645
0.0337794
0.0424634
0.0152713
-0.0418872
-0.0321733
-0.0328168
-0.0254451
-0.0191733
-0.0601912
-0.0159187
0.12653
0.30993
0.189435
0.126519
0.156609
0.341609
0.0970715
0.657674
0.0878413
-0.0455009
-0.0450793
0.559596
0.0733805
0.632589
-0.036106
0.473965
0.45045
0.0530656
0.0613601
-0.0290785
0.568869
-0.100932
-0.224553
-0.596866
0.00564758
-0.00544987
0.0700747
-0.152636
0.00708104
0.270163
0.16975
0.143704
0.182745
0.0284948
0.213168
)
;
boundaryField
{
outlet
{
type fixedValue;
value uniform 0;
}
inlet
{
type zeroGradient;
}
right
{
type cyclic;
}
left
{
type cyclic;
}
innerWall
{
type zeroGradient;
}
outerWall
{
type zeroGradient;
}
blade
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"brennankharris@gmail.com"
] | brennankharris@gmail.com | |
1cb67701654204375fa55e8cec3ace72c00b7b2d | ebb1e564c8a11e5af453f3749dcba1b66e2f3931 | /torch/csrc/jit/codegen/cuda/python_frontend/python_bindings.cpp | fe24497276490b5929fe7ea91781e256c8b508d6 | [
"BSD-2-Clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"BSL-1.0",
"Apache-2.0"
] | permissive | jjsjann123/pytorch | 06c3aee8dd3565664ac2e2fda0306432cf62dd7c | de9b3fb3e5eb54660190cbd20b6592fc5cbda547 | refs/heads/master | 2023-08-25T00:22:02.568347 | 2022-07-27T18:50:20 | 2022-07-27T22:38:28 | 152,169,545 | 0 | 1 | NOASSERTION | 2022-08-11T07:55:44 | 2018-10-09T01:33:17 | C++ | UTF-8 | C++ | false | false | 64,774 | cpp | #include <torch/csrc/jit/codegen/cuda/python_frontend/python_bindings.h>
#ifdef USE_CUDA
#include <c10/util/ArrayRef.h>
#include <c10/util/irange.h>
#include <torch/csrc/jit/codegen/cuda/arith.h>
#include <torch/csrc/jit/codegen/cuda/ir_all_nodes.h>
#include <torch/csrc/jit/codegen/cuda/ir_builder.h>
#include <torch/csrc/jit/codegen/cuda/python_frontend/fusion_definition.h>
#include <torch/csrc/jit/codegen/cuda/python_frontend/fusion_record.h>
#include <torch/csrc/jit/codegen/cuda/python_frontend/python_bindings.h>
#include <torch/csrc/jit/python/pybind_utils.h>
#include <iostream>
namespace torch {
namespace jit {
void initNvFuserPythonBindings(PyObject* module) {
auto m = py::handle(module).cast<py::module>();
//! Top Level nvFuser Python submodule
auto nvfuser = m.def_submodule("_nvfuser");
//! DataTypes supported by nvFuser in the FusionDefinition
py::enum_<NvfDataType>(nvfuser, "DataType")
.value("Double", NvfDataType::Double)
.value("Float", NvfDataType::Float)
.value("Half", NvfDataType::Half)
.value("Int", NvfDataType::Int)
.value("Int32", NvfDataType::Int32)
.value("Bool", NvfDataType::Bool)
.value("BFloat16", NvfDataType::BFloat16)
.value("ComplexFloat", NvfDataType::ComplexFloat)
.value("ComplexDouble", NvfDataType::ComplexDouble)
.value("Null", NvfDataType::Null);
//! Binding an object that owns a FusionExecutorCache instance and provides
//! an interface
//! \todo This object will be removed when a FusionManager is added
//! containing a cache.
py::class_<nvfuser::FusionOwner> fusion(nvfuser, "Fusion");
fusion.def(py::init<>())
.def(
"execute",
[](nvfuser::FusionOwner& self, const py::iterable& iter) {
std::vector<IValue> inputs;
for (py::handle obj : iter) {
inputs.push_back(toIValue(obj, c10::AnyType::get()));
}
return self.execute(inputs);
},
py::return_value_policy::reference)
.def("print_ir", [](nvfuser::FusionOwner& self) { self.printIr(); })
.def("print_kernel", [](nvfuser::FusionOwner& self) {
self.printKernel();
});
//! These are the FusionDefinition supported object types that are either
//! defined as inputs or the output of an operation.
py::class_<nvfuser::Tensor>(nvfuser, "Tensor");
py::class_<nvfuser::Scalar>(nvfuser, "Scalar");
//! The FusionDefinition is a context manager in Python where the user will
//! define the set the operations and connections between operations for
//! nvFuser to create.
py::class_<nvfuser::FusionDefinition> fusion_def(nvfuser, "FusionDefinition");
fusion_def.def(py::init<nvfuser::FusionOwner*>())
.def_readwrite("ops", &nvfuser::FusionDefinition::ops)
.def(
"__enter__",
[](nvfuser::FusionDefinition& self) -> nvfuser::FusionDefinition* {
return self.enter();
})
.def(
"__exit__",
[](nvfuser::FusionDefinition& self,
void* exc_type,
void* exc_value,
void* traceback) { self.exit(); })
.def(
"add_output",
[](nvfuser::FusionDefinition& self, nvfuser::Scalar* output) {
self.defineRecord(
new nvfuser::OutputRecord<NvfVal>({output->index}));
})
.def(
"add_output",
[](nvfuser::FusionDefinition& self, nvfuser::Tensor* output) {
self.defineRecord(
new nvfuser::OutputRecord<NvfTensorView>({output->index}));
})
.def(
"define_tensor",
[](nvfuser::FusionDefinition& self,
size_t ndims,
NvfDataType dtype = NvfDataType::Float) -> nvfuser::Tensor* {
std::vector<int64_t> maybe_symbolic_sizes(ndims, -1);
;
std::vector<bool> contig_info(ndims, false);
nvfuser::Tensor* out = self.defineTensor();
self.defineRecord(new nvfuser::InputTensorRecord(
{out->index},
std::move(maybe_symbolic_sizes),
std::move(contig_info),
dtype));
return out;
},
py::arg("ndims"),
py::arg("dtype") = torch::jit::fuser::cuda::DataType::Float,
py::return_value_policy::reference)
.def(
"define_tensor",
[](nvfuser::FusionDefinition& self,
std::vector<int64_t> sizes,
std::vector<int64_t> strides,
NvfDataType dtype = NvfDataType::Float) -> nvfuser::Tensor* {
TORCH_CHECK(
sizes.size() == strides.size(),
"The number of sizes does not match the number of strides.",
sizes.size(),
strides.size());
// TensorViewBuilder assumes any dim with a compile time constant
// size == 1 is a "maybe broadcast" axis, symbolic sizes are
// identified by -1, and size == 0 is not supported.
// Translate to TensorViewBuilder's view of the world.
std::vector<int64_t> maybe_symbolic_sizes;
maybe_symbolic_sizes.reserve(sizes.size());
for (const auto i : c10::irange(sizes.size())) {
TORCH_INTERNAL_ASSERT(
sizes[i] > 0,
"Size of ",
sizes[i],
" is not supported in nvFuser. Expected size > 0.");
if (sizes[i] == 1) {
maybe_symbolic_sizes.push_back(1);
} else {
maybe_symbolic_sizes.push_back(-1);
}
}
std::vector<bool> contig_info(strides.size(), false);
for (int i = contig_info.size() - 1; i >= 0; --i) {
if (i == static_cast<int>(contig_info.size() - 1)) {
contig_info[i] = (strides[i] == 1);
} else {
contig_info[i] =
(strides[i] == (strides[i + 1] * sizes[i + 1]));
}
}
nvfuser::Tensor* out = self.defineTensor();
self.defineRecord(new nvfuser::InputTensorRecord(
{out->index},
std::move(maybe_symbolic_sizes),
std::move(contig_info),
dtype));
return out;
},
py::arg("sizes"),
py::arg("strides"),
py::arg("dtype") = NvfDataType::Float,
py::return_value_policy::reference)
.def(
"define_constant",
[](nvfuser::FusionDefinition& self, double val) -> nvfuser::Scalar* {
nvfuser::Scalar* out = self.defineScalar();
self.defineRecord(
new nvfuser::
ConstantRecord<torch::jit::fuser::cuda::Double, double>(
{out->index}, val));
return out;
},
py::return_value_policy::reference)
.def(
"define_constant",
[](nvfuser::FusionDefinition& self,
c10::complex<double> val) -> nvfuser::Scalar* {
nvfuser::Scalar* out = self.defineScalar();
self.defineRecord(new nvfuser::ConstantRecord<
torch::jit::fuser::cuda::ComplexDouble,
c10::complex<double>>({out->index}, val));
return out;
},
py::return_value_policy::reference)
.def(
"define_constant",
[](nvfuser::FusionDefinition& self, bool val) -> nvfuser::Scalar* {
nvfuser::Scalar* out = self.defineScalar();
self.defineRecord(
new nvfuser::
ConstantRecord<torch::jit::fuser::cuda::Bool, bool>(
{out->index}, val));
return out;
},
py::return_value_policy::reference)
.def(
"define_constant",
[](nvfuser::FusionDefinition& self, int64_t val) -> nvfuser::Scalar* {
nvfuser::Scalar* out = self.defineScalar();
self.defineRecord(
new nvfuser::
ConstantRecord<torch::jit::fuser::cuda::Int, int64_t>(
{out->index}, val));
return out;
},
py::return_value_policy::reference)
.def(
"define_scalar",
[](nvfuser::FusionDefinition& self,
NvfDataType dtype = torch::jit::fuser::cuda::DataType::Double)
-> nvfuser::Scalar* {
nvfuser::Scalar* out = self.defineScalar();
self.defineRecord(new nvfuser::ScalarRecord({out->index}, dtype));
return out;
},
py::arg("dtype") = torch::jit::fuser::cuda::DataType::Double,
py::return_value_policy::reference);
//! The Operators class is a nested class of FusionDefinition to allow the
//! user to query the class for the list of operators.
//!
//! Example:
//! help(FusionDefinition.Operators)
//!
//! Additional operators are expected to be defined below as needed. They
//! may require defining a new RecordFunctor child class if they are unique.
py::class_<nvfuser::FusionDefinition::Operators> nvf_ops(
fusion_def, "Operators");
nvf_ops.def(py::init<nvfuser::FusionDefinition*>());
// ******************** INSERT OP BINDINGS BELOW HERE ********************
#define NVFUSER_PYTHON_BINDING_UNARY_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* input) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfTensorView*, NvfTensorView*>( \
{input->index}, \
{output->index}, \
static_cast<NvfTensorView* (*)(NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* input) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfVal*, NvfVal*>( \
{input->index}, \
{output->index}, \
static_cast<NvfVal* (*)(NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_UNARY_OP("abs", abs)
NVFUSER_PYTHON_BINDING_UNARY_OP("acos", acos)
NVFUSER_PYTHON_BINDING_UNARY_OP("asin", asin)
NVFUSER_PYTHON_BINDING_UNARY_OP("atan", atan)
NVFUSER_PYTHON_BINDING_UNARY_OP("atanh", atanh)
NVFUSER_PYTHON_BINDING_UNARY_OP("ceil", ceil)
NVFUSER_PYTHON_BINDING_UNARY_OP("cos", cos)
NVFUSER_PYTHON_BINDING_UNARY_OP("cosh", cosh)
NVFUSER_PYTHON_BINDING_UNARY_OP("exp", exp)
NVFUSER_PYTHON_BINDING_UNARY_OP("expm1", expm1)
NVFUSER_PYTHON_BINDING_UNARY_OP("erf", erf)
NVFUSER_PYTHON_BINDING_UNARY_OP("erfc", erfc)
NVFUSER_PYTHON_BINDING_UNARY_OP("floor", floor)
NVFUSER_PYTHON_BINDING_UNARY_OP("frac", frac)
NVFUSER_PYTHON_BINDING_UNARY_OP("lgamma", lgamma)
NVFUSER_PYTHON_BINDING_UNARY_OP("log", log)
NVFUSER_PYTHON_BINDING_UNARY_OP("log10", log10)
NVFUSER_PYTHON_BINDING_UNARY_OP("log1p", log1p)
NVFUSER_PYTHON_BINDING_UNARY_OP("log2", log2)
NVFUSER_PYTHON_BINDING_UNARY_OP("neg", neg)
NVFUSER_PYTHON_BINDING_UNARY_OP("bitwise_not", bitwise_not)
NVFUSER_PYTHON_BINDING_UNARY_OP("relu", relu)
NVFUSER_PYTHON_BINDING_UNARY_OP("rand_like", randlike)
NVFUSER_PYTHON_BINDING_UNARY_OP("reciprocal", reciprocal)
NVFUSER_PYTHON_BINDING_UNARY_OP("round", round)
NVFUSER_PYTHON_BINDING_UNARY_OP("rsqrt", rsqrt)
NVFUSER_PYTHON_BINDING_UNARY_OP("set", set)
NVFUSER_PYTHON_BINDING_UNARY_OP("sigmoid", sigmoid)
NVFUSER_PYTHON_BINDING_UNARY_OP("silu", silu)
NVFUSER_PYTHON_BINDING_UNARY_OP("sin", sin)
NVFUSER_PYTHON_BINDING_UNARY_OP("sinh", sinh)
NVFUSER_PYTHON_BINDING_UNARY_OP("sqrt", sqrt)
NVFUSER_PYTHON_BINDING_UNARY_OP("tan", tan)
NVFUSER_PYTHON_BINDING_UNARY_OP("tanh", tanh)
NVFUSER_PYTHON_BINDING_UNARY_OP("trunc", trunc)
NVFUSER_PYTHON_BINDING_UNARY_OP("isfinite", isfinite)
NVFUSER_PYTHON_BINDING_UNARY_OP("isinf", isinf)
NVFUSER_PYTHON_BINDING_UNARY_OP("isnan", isnan)
NVFUSER_PYTHON_BINDING_UNARY_OP("isneginf", isneginf)
NVFUSER_PYTHON_BINDING_UNARY_OP("isposinf", isposinf)
NVFUSER_PYTHON_BINDING_UNARY_OP("isreal", isreal)
NVFUSER_PYTHON_BINDING_UNARY_OP("real", real)
NVFUSER_PYTHON_BINDING_UNARY_OP("imag", imag)
#undef NVFUSER_PYTHON_BINDING_UNARY_OP
#define NVFUSER_PYTHON_BINDING_BINARY_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Tensor* arg2) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*>( \
{arg1->index, arg2->index}, \
{output->index}, \
static_cast<NvfTensorView* (*)(NvfTensorView*, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfTensorView*, NvfTensorView*, NvfVal*>( \
{arg1->index, arg2->index}, \
{output->index}, \
static_cast<NvfTensorView* (*)(NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Tensor* arg2) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfTensorView*, NvfVal*, NvfTensorView*>( \
{arg1->index, arg2->index}, \
{output->index}, \
static_cast<NvfTensorView* (*)(NvfVal*, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfVal*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index}, \
{output->index}, \
static_cast<NvfVal* (*)(NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_BINARY_OP("add", add)
NVFUSER_PYTHON_BINDING_BINARY_OP("atan2", atan2)
NVFUSER_PYTHON_BINDING_BINARY_OP("div", div)
NVFUSER_PYTHON_BINDING_BINARY_OP("fmod", fmod)
NVFUSER_PYTHON_BINDING_BINARY_OP("mul", mul)
NVFUSER_PYTHON_BINDING_BINARY_OP("pow", pow)
NVFUSER_PYTHON_BINDING_BINARY_OP("remainder", remainder)
NVFUSER_PYTHON_BINDING_BINARY_OP("sub", sub)
NVFUSER_PYTHON_BINDING_BINARY_OP("mod", mod)
NVFUSER_PYTHON_BINDING_BINARY_OP("eq", eq)
NVFUSER_PYTHON_BINDING_BINARY_OP("ge", ge)
NVFUSER_PYTHON_BINDING_BINARY_OP("gt", gt)
NVFUSER_PYTHON_BINDING_BINARY_OP("le", le)
NVFUSER_PYTHON_BINDING_BINARY_OP("lt", lt)
NVFUSER_PYTHON_BINDING_BINARY_OP("ne", ne)
NVFUSER_PYTHON_BINDING_BINARY_OP("bitwise_and", bitwise_and)
NVFUSER_PYTHON_BINDING_BINARY_OP("bitwise_or", bitwise_or)
NVFUSER_PYTHON_BINDING_BINARY_OP("bitwise_xor", bitwise_xor)
NVFUSER_PYTHON_BINDING_BINARY_OP("bitwise_left_shift", bitwise_left_shift)
NVFUSER_PYTHON_BINDING_BINARY_OP("bitwise_right_shift", bitwise_left_shift)
#undef NVFUSER_PYTHON_BINDING_BINARY_OP
#define NVFUSER_PYTHON_BINDING_BINARY_WITH_ALPHA_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfTensorView*, NvfTensorView*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfTensorView*, NvfVal*, NvfTensorView*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfVal*, NvfVal*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast<NvfVal* (*)(NvfVal*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_BINARY_WITH_ALPHA_OP("add_alpha", add_alpha)
NVFUSER_PYTHON_BINDING_BINARY_WITH_ALPHA_OP("sub_alpha", sub_alpha)
#undef NVFUSER_PYTHON_BINDING_BINARY_WITH_ALPHA_OP
#define NVFUSER_PYTHON_BINDING_TERNARY_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfVal*, NvfVal*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast<NvfVal* (*)(NvfVal*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Tensor* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfTensorView*, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Tensor* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*, \
NvfTensorView*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfVal*, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Tensor* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfVal*, \
NvfTensorView*, \
NvfTensorView*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfTensorView*, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Tensor* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfTensorView*, NvfVal*, NvfVal*, NvfTensorView*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfVal*, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfTensorView*, NvfTensorView*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfTensorView*, NvfVal*, NvfTensorView*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_TERNARY_OP("lerp", lerp)
NVFUSER_PYTHON_BINDING_TERNARY_OP("where", where)
#undef NVFUSER_PYTHON_BINDING_TERNARY_OP
#define NVFUSER_PYTHON_BINDING_THRESHOLD_LIKE_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser::OpRecord<NvfVal*, NvfVal*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast<NvfVal* (*)(NvfVal*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfTensorView*, NvfTensorView*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_THRESHOLD_LIKE_OP("clamp", clamp)
NVFUSER_PYTHON_BINDING_THRESHOLD_LIKE_OP("threshold", threshold)
#undef NVFUSER_PYTHON_BINDING_THRESHOLD_LIKE_OP
#define NVFUSER_PYTHON_BINDING_TERNARY_WITH_ALPHA_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser:: \
OpRecord<NvfVal*, NvfVal*, NvfVal*, NvfVal*, NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfVal* (*)(NvfVal*, NvfVal*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Tensor* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfTensorView*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Scalar* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfTensorView*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Tensor* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*, \
NvfTensorView*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfVal*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Tensor* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfVal*, \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfTensorView*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Tensor* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfVal*, \
NvfVal*, \
NvfTensorView*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfVal*, NvfTensorView*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg1, \
nvfuser::Scalar* arg2, \
nvfuser::Scalar* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfTensorView*, \
NvfVal*, \
NvfVal*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfTensorView*, NvfVal*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg1, \
nvfuser::Tensor* arg2, \
nvfuser::Scalar* arg3, \
nvfuser::Scalar* arg4) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::OpRecord< \
NvfTensorView*, \
NvfVal*, \
NvfTensorView*, \
NvfVal*, \
NvfVal*>( \
{arg1->index, arg2->index, arg3->index, arg4->index}, \
{output->index}, \
static_cast< \
NvfTensorView* (*)(NvfVal*, NvfTensorView*, NvfVal*, NvfVal*)>( \
torch::jit::fuser::cuda::op_name))); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_TERNARY_WITH_ALPHA_OP("addcmul", addcmul)
#undef NVFUSER_PYTHON_BINDING_TERNARY_WITH_ALPHA_OP
#define NVFUSER_PYTHON_BINDING_REDUCTION_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg, \
const std::vector<int>& axes, \
bool keep_dim, \
NvfDataType dtype) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord(new nvfuser::ReductionOpRecord( \
{arg->index}, \
{output->index}, \
torch::jit::fuser::cuda::op_name, \
axes, \
keep_dim, \
dtype)); \
return output; \
}, \
py::arg("arg"), \
py::arg("axes"), \
py::arg("keep_dim"), \
py::arg("dtype") = torch::jit::fuser::cuda::DataType::Null, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_REDUCTION_OP("sum", sum)
NVFUSER_PYTHON_BINDING_REDUCTION_OP("max", max)
NVFUSER_PYTHON_BINDING_REDUCTION_OP("min", min)
#undef NVFUSER_PYTHON_BINDING_REDUCTION_OP
#define NVFUSER_PYTHON_BINDING_CAST_OP(op_str, op_name) \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Tensor* arg, \
NvfDataType dtype) -> nvfuser::Tensor* { \
nvfuser::Tensor* output = self.fusion_definition->defineTensor(); \
self.fusion_definition->defineRecord( \
new nvfuser::CastOpRecord<NvfTensorView*, NvfTensorView*>( \
{arg->index}, \
{output->index}, \
static_cast<NvfTensorView* (*)(NvfDataType, NvfTensorView*)>( \
torch::jit::fuser::cuda::op_name), \
dtype)); \
return output; \
}, \
py::return_value_policy::reference); \
nvf_ops.def( \
op_str, \
[](nvfuser::FusionDefinition::Operators& self, \
nvfuser::Scalar* arg, \
NvfDataType dtype) -> nvfuser::Scalar* { \
nvfuser::Scalar* output = self.fusion_definition->defineScalar(); \
self.fusion_definition->defineRecord( \
new nvfuser::CastOpRecord<NvfVal*, NvfVal*>( \
{arg->index}, \
{output->index}, \
static_cast<NvfVal* (*)(NvfDataType, NvfVal*)>( \
torch::jit::fuser::cuda::op_name), \
dtype)); \
return output; \
}, \
py::return_value_policy::reference);
NVFUSER_PYTHON_BINDING_CAST_OP("cast", castOp)
#undef NVFUSER_PYTHON_BINDING_CAST_OP
nvf_ops.def(
"var",
[](nvfuser::FusionDefinition::Operators& self,
nvfuser::Tensor* arg,
std::vector<int>& axes,
int64_t correction,
bool keepdim) -> nvfuser::Tensor* {
nvfuser::Tensor* output = self.fusion_definition->defineTensor();
self.fusion_definition->defineRecord(new nvfuser::VarianceOpRecord(
{arg->index}, {output->index}, axes, correction, keepdim));
return output;
},
py::return_value_policy::reference);
nvf_ops.def(
"broadcast_in_dim",
[](nvfuser::FusionDefinition::Operators& self,
nvfuser::Tensor* arg,
std::vector<int64_t>& output_shape,
std::vector<int64_t>& broadcast_dims) -> nvfuser::Tensor* {
nvfuser::Tensor* output = self.fusion_definition->defineTensor();
self.fusion_definition->defineRecord(new nvfuser::BroadcastOpRecord(
{arg->index}, {output->index}, output_shape, broadcast_dims));
return output;
},
py::return_value_policy::reference);
}
} // namespace jit
} // namespace torch
#else
namespace torch {
namespace jit {
void initNvFuserPythonBindings(PyObject* module) {}
} // namespace jit
} // namespace torch
#endif // USE_CUDA
| [
"pytorchmergebot@users.noreply.github.com"
] | pytorchmergebot@users.noreply.github.com |
c7198470a3e8a03b6d5ac568b889f3ab60d1f670 | 76415d6b016ad102c3252d77817be7153b7cc941 | /src/opcode.h | c6ff9cb46d05f8bc97cdb5387c1754d733917a33 | [] | no_license | bossiernesto/yukon | ede80ccacabe0e4a0956bad33b0eb6bdda4c61ef | 3a326e88b3f0ed3210ab0d054f91462c12ef2874 | refs/heads/master | 2020-04-05T22:43:00.978655 | 2015-04-11T04:41:10 | 2015-04-11T04:41:10 | 33,412,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,027 | h | //
// Created by ernesto on 4/1/15.
//
#ifndef YUKON_OPCODE_H
#define YUKON_OPCODE_H
#include <string>
using namespace std;
#pragma once
extern string OpcodeDesc[];
#define nop 0
#define aconst_null 1 /*(0x1)*/
#define iconst_m1 2 /*(0x2)*/
#define iconst_0 3 /*(0x3)*/
#define iconst_1 4 /*(0x4)*/
#define iconst_2 5 /*(0x5)*/
#define iconst_3 6 /*(0x6)*/
#define iconst_4 7 /*(0x7)*/
#define iconst_5 8 /*(0x8)*/
#define bipush 16 /*(0x10)*/
#define sipush 17 /*(0x11)*/
#define lconst_0 9 /*(0x9)*/
#define lconst_1 10 /*(0xa)*/
#define ldc 18 /* (0x12) */
#define ldc2_w 20 /*(0x14)*/
#define iload 21 /*(0x15)*/
#define lload 22 /*(0x16)*/
#define aload 25 /*(0x19)*/
#define iload_0 26 /*(0x1a)*/
#define iload_1 27 /*(0x1b)*/
#define iload_2 28 /*(0x1c)*/
#define iload_3 29 /*(0x1d)*/
#define lload_0 30 /*(0x1e) */
#define lload_1 31 /*(0x1f) */
#define lload_2 32 /*(0x20) */
#define lload_3 33 /*(0x21) */
#define fload_0 34 /*(0x22)*/
#define fload_1 35 /*(0x23) */
#define fload_2 36 /*(0x24) */
#define fload_3 37 /*(0x25)*/
#define aload_0 42 /* (0x2a) */
#define aload_1 43 /*(0x2b) */
#define aload_2 44 /*(0x2c) */
#define aload_3 45 /*(0x2d)*/
#define iaload 46 /*(0x2e)*/
#define aaload 50
#define istore 54 /*(0x36)*/
#define astore 58 /*(0x3a)*/
#define istore_0 59 /*(0x3b)*/
#define istore_1 60 /*(0x3c) */
#define istore_2 61 /*(0x3d) */
#define istore_3 62 /*(0x3e)*/
#define lstore_0 63 /*(0x3f) */
#define lstore_1 64 /*(0x40) */
#define lstore_2 65 /*(0x41) */
#define lstore_3 66 /*(0x42) */
#define fstore_0 67 /*(0x43) */
#define fstore_1 68 /*(0x44) */
#define fstore_2 69 /*(0x45) */
#define fstore_3 70 /*(0x46) */
#define astore_0 75 /*(0x4b) */
#define astore_1 76 /*(0x4c) */
#define astore_2 77 /*(0x4d) */
#define astore_3 78 /*(0x4e)*/
#define iastore 79 /*(0x4f)*/
#define aastore 83 /*(0x53)*/
#define dup 89 /*(0x59)*/
#define dup_x1 90 /*(0x5a)*/
#define dup_x2 91 /*(0x5b)*/
#define iadd 96 /*(0x60)*/
#define ladd 97 /*(0x61)*/
#define isub 100 /*(0x64)*/
#define imul 104 /*(0x68)*/
#define iinc 132 /*(0x84)*/
#define ifeq 153 /*(0x99) */
#define ifne 154 /*(0x9a) */
#define iflt 155 /*(0x9b) */
#define ifge 156 /*(0x9c) */
#define ifgt 157 /*(0x9d) */
#define ifle 158 /*(0x9e)*/
#define if_icmpeq 159 /*(0x9f) */
#define if_icmpne 160 /*(0xa0) */
#define if_icmplt 161 /*(0xa1) */
#define if_icmpge 162 /*(0xa2) */
#define if_icmpgt 163 /*(0xa3) */
#define if_icmple 164 /*(0xa4)*/
#define _goto 167 /*(0xa7)*/
#define ireturn 172 /*(0xac)*/
#define _return 177 /*(0xb1)*/
#define getfield 180 /*(0xb4)*/
#define putfield 181 /*(0xb5)*/
#define invokevirtual 182 /*(0xb6)*/
#define invokespecial 183 /*(0xb7) */
#define invokestatic 184
#define _new 187 /*(0xbb)*/
#define newarray 188 /*(0xbc)*/
#define anewarray 189 /*(0xbd)*/
#define athrow 191 /* (0xbf) */
#define checkcast 192 /* (0xc0) */
#define instanceof 193 /* (0xc1) */
#define monitorenter 194 /* (0xc2) */
#define monitorexit 195 /* (0xc3) */
#endif //YUKON_OPCODE_H
| [
"bossi.ernestog@gmail.com"
] | bossi.ernestog@gmail.com |
f8ce936a0504a5ff3615c87e094cf0ad493f3361 | dcbaf5fd71f1ddecb8cf70ee7cf54bed0d9acc3d | /DisplayInfo/Amlogic/PlatformImplementation.cpp | 610910d5c344f46c78c8e30a27185594255d7e11 | [
"Apache-2.0",
"BSD-2-Clause"
] | permissive | venkataprasadk/rdkservices | 07b95ced3735b3e4946751df5bb0c40f2347549b | 388ea5ab2f5d4ba034d0fd5da98c7d5d44697b77 | refs/heads/sprint/2009 | 2023-01-19T14:13:47.829283 | 2020-11-10T14:29:18 | 2020-11-10T14:29:18 | 295,765,377 | 0 | 0 | Apache-2.0 | 2020-09-15T17:34:27 | 2020-09-15T15:08:52 | null | UTF-8 | C++ | false | false | 13,426 | cpp | /*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
*
* Copyright 2020 RDK Management
*
* 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.
*/
#include "../Module.h"
#include <interfaces/IDisplayInfo.h>
#include <interfaces/IDRM.h>
#include "amlDrmUtils.h"
#define AML_HDRSTANDARD_DolbyVision 4
#define AML_HDCP_VERSION_1X 0
#define AML_HDCP_VERSION_2X 1
#define AML_TOTAL_MEM_PARAM_STR "CmaTotal:"
#define AML_FREE_MEM_PARAM_STR "CmaFree:"
#ifdef AMLOGIC_E2
static pthread_mutex_t drmFD_lock = PTHREAD_MUTEX_INITIALIZER;
drmModeConnector *hdmiConn;
drmModeRes *res;
int openDefaultDRMDevice() {
int drmFD = -1;
pthread_mutex_lock(&drmFD_lock);
if (drmFD < 0) {
drmFD = open(DEFUALT_DRM_DEVICE, O_RDWR | O_CLOEXEC);
// Re-check if open successfully or not
if (drmFD < 0) {
printf("%s:%d cannot open %s\n", __FUNCTION__, __LINE__, DEFUALT_DRM_DEVICE);
}
}
pthread_mutex_unlock(&drmFD_lock);
return drmFD;
}
int getSupportedDRMResolutions(drmModeConnector *conn, drmConnectorModes *drmResolution) {
for (int i =0; i < conn->count_modes; i++) {
if(!strcmp(conn->modes[i].name,"720x480i")) {
drmResolution[i] = drmMode_480i;
}
else if(!strcmp(conn->modes[i].name,"720x480")) {
drmResolution[i] = drmMode_480p;
}
else if(!strcmp(conn->modes[i].name,"1280x720")) {
drmResolution[i] = drmMode_720p;
}
else if(!strcmp(conn->modes[i].name,"1920x1080i")) {
drmResolution[i] = drmMode_1080i;
}
else if(!strcmp(conn->modes[i].name,"1920x1080")) {
if(conn->modes[i].vrefresh == 60) {
drmResolution[i] = drmMode_1080p;
}
else if(conn->modes[i].vrefresh == 24) {
drmResolution[i] = drmMode_1080p24;
}
else if(conn->modes[i].vrefresh == 25) {
drmResolution[i] = drmMode_1080p25;
}
else if(conn->modes[i].vrefresh == 30) {
drmResolution[i] = drmMode_1080p30;
}
else if(conn->modes[i].vrefresh == 50) {
drmResolution[i] = drmMode_1080p50;
}
else {
drmResolution[i] = drmMode_Unknown;
}
}
else if(!strcmp(conn->modes[i].name,"3840x2160")) {
if(conn->modes[i].vrefresh == 24) {
drmResolution[i] = drmMode_3840x2160p24;
}
else if(conn->modes[i].vrefresh == 25) {
drmResolution[i] = drmMode_3840x2160p25;
}
else if(conn->modes[i].vrefresh == 30) {
drmResolution[i] = drmMode_3840x2160p30;
}
else if(conn->modes[i].vrefresh == 50) {
drmResolution[i] = drmMode_3840x2160p50;
}
else if(conn->modes[i].vrefresh == 60) {
drmResolution[i] = drmMode_3840x2160p60;
}
else {
drmResolution[i] = drmMode_Unknown;
}
}
else if(!strcmp(conn->modes[i].name,"4096x2160")) {
if(conn->modes[i].vrefresh == 24) {
drmResolution[i] = drmMode_4096x2160p24;
}
else if(conn->modes[i].vrefresh == 25) {
drmResolution[i] = drmMode_4096x2160p25;
}
else if(conn->modes[i].vrefresh == 30) {
drmResolution[i] = drmMode_4096x2160p30;
}
else if(conn->modes[i].vrefresh == 50) {
drmResolution[i] = drmMode_4096x2160p50;
}
else if(conn->modes[i].vrefresh == 60) {
drmResolution[i] = drmMode_4096x2160p60;
}
else {
drmResolution[i] = drmMode_Unknown;
}
}
}
return 0;
}
int amsysfs_get_sysfs_str(const char *path, char *valstr, int size)
{
int fd;
fd = open(path, O_RDONLY);
if (fd >= 0) {
memset(valstr, 0, size);
read(fd, valstr, size - 1);
valstr[strlen(valstr)] = '\0';
close(fd);
} else {
printf("%s:%d unable to open file %s,err: %s\n", __FUNCTION__, __LINE__, path, strerror(errno));
sprintf(valstr, "%s", "fail");
return -1;
};
return 0;
}
#endif
namespace WPEFramework {
namespace Plugin {
class DisplayInfoImplementation : public Exchange::IGraphicsProperties, public Exchange::IConnectionProperties {
public:
DisplayInfoImplementation()
: _width(0)
, _height(0)
, _connected(false)
, _verticalFreq(0)
, _hdcpprotection(HDCPProtectionType::HDCP_Unencrypted)
, _type(HDR_OFF)
, _totalGpuRam(0)
, _audioPassthrough(false)
, _adminLock()
, _activity(*this) {
UpdateTotalMem(_totalGpuRam);
UpdateDisplayInfo(_connected, _width, _height, _type, _verticalFreq);
UpdateAudioPassthrough(_audioPassthrough);
UpdateDisplayInfoHDCP(_hdcpprotection);
RegisterCallback();
}
DisplayInfoImplementation(const DisplayInfoImplementation&) = delete;
DisplayInfoImplementation& operator= (const DisplayInfoImplementation&) = delete;
virtual ~DisplayInfoImplementation()
{
}
public:
// Graphics Properties interface
uint64_t TotalGpuRam() const override
{
return _totalGpuRam;
}
uint64_t FreeGpuRam() const override
{
return GetMemInfo(AML_FREE_MEM_PARAM_STR);
}
// Connection Properties interface
uint32_t Register(INotification* notification) override
{
_adminLock.Lock();
// Make sure a sink is not registered multiple times.
ASSERT(std::find(_observers.begin(), _observers.end(), notification) == _observers.end());
_observers.push_back(notification);
notification->AddRef();
_adminLock.Unlock();
return (Core::ERROR_NONE);
}
uint32_t Unregister(INotification* notification) override
{
_adminLock.Lock();
std::list<IConnectionProperties::INotification*>::iterator index(std::find(_observers.begin(), _observers.end(), notification));
// Make sure you do not unregister something you did not register !!!
ASSERT(index != _observers.end());
if (index != _observers.end()) {
(*index)->Release();
_observers.erase(index);
}
_adminLock.Unlock();
return (Core::ERROR_NONE);
}
bool IsAudioPassthrough () const override
{
return _audioPassthrough;
}
bool Connected() const override
{
return _connected;
}
uint32_t Width() const override
{
return _width;
}
uint32_t Height() const override
{
return _height;
}
uint32_t VerticalFreq() const override
{
return _verticalFreq;
}
HDRType Type() const override
{
return _type;
}
HDCPProtectionType HDCPProtection() const override
{
return _hdcpprotection;
}
void Dispatch() const
{
_adminLock.Lock();
std::list<IConnectionProperties::INotification*>::const_iterator index = _observers.begin();
if (index != _observers.end()) {
(*index)->Updated();
}
_adminLock.Unlock();
}
BEGIN_INTERFACE_MAP(DisplayInfoImplementation)
INTERFACE_ENTRY(Exchange::IGraphicsProperties)
INTERFACE_ENTRY(Exchange::IConnectionProperties)
END_INTERFACE_MAP
private:
static uint64_t parseLine(const char * line)
{
string str(line);
uint64_t val = 0;
size_t begin = str.find_first_of("0123456789");
size_t end = std::string::npos;
if (std::string::npos != begin)
end = str.find_first_not_of("0123456789", begin);
if (std::string::npos != begin && std::string::npos != end)
{
str = str.substr(begin, end);
val = strtoul(str.c_str(), NULL, 10);
}
else
{
printf("%s:%d Failed to parse value from %s", __FUNCTION__, __LINE__,line);
}
return val;
}
static uint64_t GetMemInfo(const char * param)
{
uint64_t memVal = 0;
FILE *meminfoFile = fopen("/proc/meminfo", "r");
if (NULL == meminfoFile)
{
printf("%s:%d : Failed to open /proc/meminfo:%s", __FUNCTION__, __LINE__, strerror(errno));
}
else
{
std::vector <char> buf;
buf.resize(1024);
while (fgets(buf.data(), buf.size(), meminfoFile))
{
if ( strstr(buf.data(), param ) == buf.data())
{
memVal = parseLine(buf.data()) * 1000;
break;
}
}
fclose(meminfoFile);
}
return memVal;
}
void UpdateTotalMem(uint64_t& totalRam)
{
totalRam = GetMemInfo(AML_TOTAL_MEM_PARAM_STR);
}
inline void UpdateAudioPassthrough(bool& audioPassthrough)
{
audioPassthrough = false;
}
void UpdateDisplayInfo(bool& connected, uint32_t& width, uint32_t& height, HDRType& type, uint32_t& verticalFreq)
{
#ifdef AMLOGIC_E2
char strStatus[13] = {'\0'};
amsysfs_get_sysfs_str("/sys/class/drm/card0-HDMI-A-1/status",strStatus, sizeof(strStatus));
if(strncmp(strStatus,"connected",9) == 0) {
connected = true;
}
else {
connected = false;
}
#else
connected = true; //Display always connected for Panel
verticalFreq = 60;
#endif
#ifdef AMLOGIC_E2
amlError_t ret = amlERR_NONE;
bool drmInitialized = false;
int drmFD = -1;
if(!drmInitialized) {
bool acquiredConnector = false;
drmFD = openDefaultDRMDevice();
if (drmFD < 0) {
ret = amlERR_GENERAL;
}
/* retrieve resources */
res = drmModeGetResources(drmFD);
if (!res) {
fprintf(stderr, "cannot retrieve DRM resources (%d): %m\n",
errno);
ret = amlERR_GENERAL;
}
while(!acquiredConnector) {
for (int i = 0; i < res->count_connectors; ++i) {
/* get information for each connector */
hdmiConn = drmModeGetConnector(drmFD, res->connectors[i]);
if (!hdmiConn) {
fprintf(stderr, "cannot retrieve DRM connector %u:%u (%d): %m\n",
i, res->connectors[i], errno);
continue;
}
if (hdmiConn->connector_type == DRM_MODE_CONNECTOR_HDMIA) { //Save connector pointer for HDMI Tx
acquiredConnector = true;
break;
}
continue;
}
}
}
drmConnectorModes supportedModes[drmMode_Max] = {drmMode_Unknown};
getSupportedDRMResolutions(hdmiConn, supportedModes);
for(int i = 0; i<drmMode_Max; i++ ) {
switch(supportedModes[i]) {
case drmMode_3840x2160p24:
case drmMode_3840x2160p25:
case drmMode_3840x2160p30:
case drmMode_3840x2160p50:
case drmMode_4096x2160p24:
case drmMode_4096x2160p25:
case drmMode_4096x2160p30:
case drmMode_4096x2160p50:
height = 2160;
width = 4096;
break;
case drmMode_3840x2160p60:
case drmMode_4096x2160p60:
height = 2160;
width = 4096;
break;
default:
break;
}
}
#else
height = 2160;
width = 4096;
#endif
// Read HDR status
type = HDR_DOLBYVISION;
// Read display width and height
}
void UpdateDisplayInfoHDCP(HDCPProtectionType hdcpprotection) const
{
hdcpprotection = HDCPProtectionType::HDCP_2X;
}
void RegisterCallback()
{
}
static void Callback(void *cbData, int param)
{
DisplayInfoImplementation* platform = static_cast<DisplayInfoImplementation*>(cbData);
switch (param) {
case 0:
case 1: {
platform->UpdateDisplayInfo();
break;
}
default:
break;
}
}
void UpdateDisplayInfo()
{
_adminLock.Lock();
UpdateDisplayInfo(_connected, _width, _height, _type, _verticalFreq);
_adminLock.Unlock();
_activity.Submit();
}
private:
uint32_t _width;
uint32_t _height;
bool _connected;
uint32_t _verticalFreq;
HDCPProtectionType _hdcpprotection;
HDRType _type;
uint64_t _totalGpuRam;
bool _audioPassthrough;
std::list<IConnectionProperties::INotification*> _observers;
mutable Core::CriticalSection _adminLock;
Core::WorkerPool::JobType<DisplayInfoImplementation&> _activity;
};
SERVICE_REGISTRATION(DisplayInfoImplementation, 1, 0);
}
}
| [
"akhil.babu@sky.uk"
] | akhil.babu@sky.uk |
f2a7721596ce2314958ffc090cf50939a65f3ada | ff683d648b34e836830c3e25f86e07b17093ac3b | /libraries/src/ssd.cpp | 81d2e359b90859adde3e9244397526cf4df496f1 | [] | no_license | comesanha/embsis | ec6b2f6c0d0e9214347b4d064293bb3c269fe8cd | fb82fd81a035956ea6a7bfa96705b2c17ef5e80c | refs/heads/master | 2020-12-15T01:28:53.410950 | 2020-11-26T20:10:38 | 2020-11-26T20:10:38 | 234,945,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,496 | cpp | #include "ssd.h"
#include "io.h"
#include "so.h"
//vetor para armazenar a conversao do display
//0gfedcba
//static const char valor[] = {0x3F, 0x06, 0x5B, 0x4F, 0x66, 0x6D, 0x7D, 0x07, 0x7F, 0x6F, 0x77, 0x7C, 0x39, 0x5E, 0x79, 0x71};
//ed0cgafb
static const char valor[] = {
0xD7, 0x11, 0xCD, 0x5D, 0x1B, 0x5E, 0xDE, 0x15, 0xDF, 0x5F, 0x9F, 0xDA, 0xC6, 0xD9, 0xCE, 0x8E};
//armazena qual e o display disponivel
static char display;
//armazena o valor a ser enviado ao display
static char v0, v1, v2, v3;
void ssdDigit(char position, char value){
if (position == 0){ v0 = value; }
if (position == 1){ v1 = value; }
if (position == 2){ v2 = value; }
if (position == 3){ v3 = value; }
}
void ssdUpdate(void){
//desliga todos os displays
digitalWrite(DISP_1_PIN,LOW);
digitalWrite(DISP_2_PIN,LOW);
digitalWrite(DISP_3_PIN,LOW);
digitalWrite(DISP_4_PIN,LOW);
switch(display){ //liga apenas o display da vez
case 0:
soWrite(valor[v0]);
digitalWrite(DISP_1_PIN,HIGH);
display = 1;
break;
case 1:
soWrite(valor[v1]);
digitalWrite(DISP_2_PIN,HIGH);
display = 2;
break;
case 2:
soWrite(valor[v2]);
digitalWrite(DISP_3_PIN,HIGH);
display = 3;
break;
case 3:
soWrite(valor[v3]);
digitalWrite(DISP_4_PIN,HIGH);
display = 0;
break;
default:
display = 0;
break;
}
}
void ssdInit(void){
soInit();
pinMode(DISP_1_PIN,OUTPUT);
pinMode(DISP_2_PIN,OUTPUT);
pinMode(DISP_3_PIN,OUTPUT);
pinMode(DISP_4_PIN,OUTPUT);
v0 = 0;
v1 = 1;
v2 = 2;
v3 = 3;
}
| [
"raphael.comesanha@gmail.com"
] | raphael.comesanha@gmail.com |
ce9247f84c01b5c024a5ec2b48785fa4d82acfa5 | 35217b604e87f78a09954236bf74c37ae01bdce1 | /src/NN/pca.hpp | 302664ed1f135f0ec762d903ac7b333d89604c19 | [] | no_license | fengbingchun/NN_Test | f3e771a70a72414823854fd8717024da82054f2e | dcb1b600eb1c6637d41a9ef5bfe68b9cd81d95dd | refs/heads/master | 2023-05-27T22:59:04.502548 | 2023-05-21T04:36:54 | 2023-05-21T04:36:54 | 53,240,908 | 358 | 302 | null | null | null | null | UTF-8 | C++ | false | false | 2,464 | hpp | #ifndef FBC_NN_PCA_HPP_
#define FBC_NN_PCA_HPP_
// Blog: http://blog.csdn.net/fengbingchun/article/details/79235028
#include <vector>
#include <string>
namespace ANN {
template<typename T = float>
class PCA {
public:
PCA() = default;
int load_data(const std::vector<std::vector<T>>& data, const std::vector<T>& labels);
int set_max_components(int max_components);
int set_retained_variance(double retained_variance);
int load_model(const std::string& model);
int train(const std::string& model);
// project into the eigenspace, thus the image becomes a "point"
int project(const std::vector<T>& vec, std::vector<T>& result) const;
// re-create the image from the "point"
int back_project(const std::vector<T>& vec, std::vector<T>& result) const;
private:
// width,height,eigen_vectors;width,height,eigen_values;width,height,means
int save_model(const std::string& model) const;
void calculate_covariance_matrix(std::vector<std::vector<T>>& covar, bool scale = false); // calculate covariance matrix
int eigen(const std::vector<std::vector<T>>& mat, bool sort_ = true); // calculate eigen vectors and eigen values
// generalized matrix multiplication: dst = alpha*src1.t()*src2 + beta*src3.t()
int gemm(const std::vector<std::vector<T>>& src1, const std::vector<std::vector<T>>& src2, double alpha,
const std::vector<std::vector<T>>& src3, double beta, std::vector<std::vector<T>>& dst, int flags = 0) const;
int gemm(const std::vector<T>& src1, const std::vector<std::vector<T>>& src2, double alpha,
const std::vector<T>& src3, double beta, std::vector<T>& dst, int flags = 0) const; // GEMM_2_T: flags = 1
int normalize(T* dst, int length);
int computeCumulativeEnergy() const;
int subtract(const std::vector<T>& vec1, const std::vector<T>& vec2, std::vector<T>& result) const;
typedef struct Size_ {
int width;
int height;
} Size_;
std::vector<std::vector<T>> data;
std::vector<T> labels;
int samples_num = 0;
int features_length = 0;
double retained_variance = -1.; // percentage of variance that PCA should retain
int max_components = -1; // maximum number of components that PCA should retain
std::vector<std::vector<T>> eigen_vectors; // eigenvectors of the covariation matrix
std::vector<T> eigen_values; // eigenvalues of the covariation matrix
std::vector<T> mean;
int covar_flags = 0; // when features_length > samples_num, covar_flags is 0, otherwise is 1
};
} // namespace ANN
#endif // FBC_NN_PCA_HPP_
| [
"fengbingchun@163.com"
] | fengbingchun@163.com |
28bd771699a1f14fc127e0cb5984f14e278b2e39 | aee5753c5e49eb6e6778a539ddea204515fc3828 | /main.cpp | 2f4f5c6da3d5ae238f0e01c2fd561f90ad2f2483 | [] | no_license | Andrey8/GeometryBuilder | 21d85eb3353be92055c7183b79be350ec5dfd118 | 611d38fa31d57ededa49bb2a9aa5771acf8e1c16 | refs/heads/master | 2022-11-09T05:13:22.231901 | 2020-06-12T10:23:03 | 2020-06-12T10:23:03 | 268,571,203 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | cpp | #include "Widgets/mainwindow.h"
#include "polygonalgorithms.h"
#include <QApplication>
//#include <QDesktopWidget>
//#include <QRect>
#include <QDebug>
int main( int argc, char * argv[] )
{
//PolygonAlgorithms::Tests();
//Math::Tests();
QApplication app( argc, argv );
MainWindow mw;
mw.show();
return app.exec();
}
| [
"andrey.drobah.and@mail.ru"
] | andrey.drobah.and@mail.ru |
9757efad4b5cdcd28ec789d242ef037e5526f0d9 | 0b0d4fb48fcc60d574e9b0ab599f0826a6cee25e | /src/kaguya/material/PatinaMaterial.cpp | 6a003d638443e185f9db7c37a9b283869a11c1f1 | [] | no_license | StormPhoenix/kaguya | fa8337cf5648a211a867d22aaad0d8385bed0386 | bab3d634a24527524c87722e2e41885c52d091d4 | refs/heads/master | 2023-05-03T07:10:29.852816 | 2021-05-19T07:04:23 | 2021-05-19T07:04:23 | 302,261,135 | 11 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,661 | cpp | //
// Created by Storm Phoenix on 2021/5/10.
//
#include <kaguya/material/PatinaMaterial.h>
#include <kaguya/core/bsdf/microfacet/BeckmannDistribution.h>
#include <kaguya/core/bsdf/microfacet/GGXDistribution.h>
#include <kaguya/core/bsdf/BXDFGlossyDiffuseReflection.h>
namespace kaguya {
namespace material {
using core::bsdf::BXDFGlossyDiffuseReflection;
using core::bsdf::microfacet::GGXDistribution;
using core::bsdf::microfacet::BeckmannDistribution;
using core::bsdf::microfacet::MicrofacetDistribution;
PatinaMaterial::PatinaMaterial(const Texture<Spectrum>::Ptr Kd, const Texture<Spectrum>::Ptr Ks,
const Texture<Float>::Ptr alpha) :
_Kd(Kd), _Ks(Ks), _alpha(alpha) {
ASSERT(_alpha != nullptr, "CoatingMaterial parameter Alpha is nullptr. ");
ASSERT(_Kd != nullptr, "CoatingMaterial parameter Kd is nullptr. ");
ASSERT(_Ks != nullptr, "CoatingMaterial parameter Ks is nullptr. ");
}
void PatinaMaterial::computeScatteringFunctions(SurfaceInteraction &insect, MemoryArena &memoryArena,
TransportMode mode) {
Float alpha = _alpha->evaluate(insect);
Spectrum Rd = _Kd->evaluate(insect);
Spectrum Rs = _Ks->evaluate(insect);
insect.bsdf = ALLOC(memoryArena, BSDF)(insect);
const MicrofacetDistribution *distribution = ALLOC(memoryArena, GGXDistribution)(alpha);
insect.bsdf->addBXDF(ALLOC(memoryArena, BXDFGlossyDiffuseReflection)(Rd, Rs, distribution));
}
}
} | [
"stormphoenix.hzau@hotmail.com"
] | stormphoenix.hzau@hotmail.com |
795643d29c3ac4ed7b5f19e353ed6ab8cd9c986c | 443de09f7b9722041baea0822b1c29b182d052c9 | /analyzers/ZeeTiming.h | 7599a528cc079b4586fdbcd691d4b816bddba685 | [] | no_license | dgawerc/RazorAnalyzer | 3fdff4b0c46f2a1660c2440af72e9022b56048e5 | 80d58f00371286defbf0ef28d760d62cb45df5d3 | refs/heads/master | 2021-06-30T06:45:56.434771 | 2017-09-11T15:45:22 | 2017-09-11T15:45:22 | 103,127,832 | 0 | 0 | null | 2017-09-11T12:44:32 | 2017-09-11T11:31:34 | C++ | UTF-8 | C++ | false | false | 914 | h | #ifndef DEF_ZeeTiming
#define DEF_ZeeTiming
#include "RazorAnalyzer.h"
class ZeeTiming: public RazorAnalyzer {
public:
uint start_run_tmp;
uint end_run_tmp;
uint start_time_tmp;
uint end_time_tmp;
vector <float> *IC_time_all;
vector <float> *rms_G12_all;
vector <float> *rms_G1_all;
vector <float> *rms_G6_all;
vector <int> *detID_all;
const double N_EB = 38.1; //ns
const double C_EB = 0.2439; //ns
ZeeTiming(TTree *tree=0): RazorAnalyzer(tree) { }
void Analyze(bool isData, int option, string outputFileName, string label);
float getTimeCalibConstant(TTree *tree, vector <uint> & start_run, vector <uint> & end_run, uint run, uint detID);
float getPedestalNoise(TTree *tree, vector <uint> & start_run, vector <uint> & end_run, uint run, uint detID);
float getADCToGeV( uint run, int isEBOrEE);
};
#endif
| [
"Si.Xie@cern.ch"
] | Si.Xie@cern.ch |
bb1031b15c60091398dbd843f409320445ff3a10 | e221df659c887604b9afe99fe2a17aa015364edb | /labs/lab9v2/lab.cpp | c1e1ce257501bbd24407ad835885b0b05eaa52c0 | [] | no_license | pvonleh/Programming-Languages | 057cc98c7673940e50a74a4ff37ed0701589e3ce | 77c46e2cdc514f81162d2243544cffe6b4c93303 | refs/heads/master | 2020-03-10T03:46:36.386581 | 2018-04-12T01:26:40 | 2018-04-12T01:26:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,581 | cpp |
#include <iostream>
#include <sstream>
#include <stdlib.h>
using namespace std;
int main()
{
int *Iarr = (int*)malloc(100*sizeof(int));
double *Darr = (double*)malloc(100*sizeof(double));
char *Carr = (char*)malloc(100*sizeof(char));
string Sarr[100];
string aString;
int Icount = 0, Dcount = 0, Ccount = 0,Scount = 0;
//int Dcount = 0;
//int Ccount = 0;
//int Scount = 0;
// ch = Carr[1][0]
while(true)
{
cout<<"\nEnter your input: ";
cin >> aString;
std::stringstream ss;
ss << aString;
int n;
double d;
char c;
char *ep = NULL;
const char *cstr = aString.c_str();
d = strtod (cstr, &ep);
if (!ep || *ep || aString.find('.') == std::string::npos)
{
// cout<<"If"<<endl;
ss>>n;
//cout << n << "\nINTEGER\n";
if(ss.fail())
{
// cout<<"Df"<<endl;
ss>>c;
//cout << c << "\nCHARACTER\n";
//Carr[Ccount++] = c;
if(ss.fail())
{
//cout<<"Cf"<<endl;
Sarr[Scount++] = aString;
cout << aString << "\nSTRING\n";
}
else
{
cout << "doesn't hit else";
Carr[Ccount++] = c;
cout << c << "\nCHARACTER\n";
}
}
else
{
//prints integer
Iarr[Icount++] = n;
}
}
else
{
Darr[Dcount++] = d;
}
cout<<"\nString List: ";
for(int i=0;i<Scount;i++)
cout<<Sarr[i]<<" ";
cout<<"\nInteger List : ";
for(int i=0;i<Icount;i++)
cout<<Iarr[i]<<" ";
cout<<"\nDouble List: ";
for(int i=0;i<Dcount;i++)
cout<<Darr[i]<<" ";
cout<<"\nCharacter List: ";
for(int i=0;i<Ccount;i++)
cout<<Carr[i]<<" ";
}
}
| [
"pvonleh@gmail.com"
] | pvonleh@gmail.com |
8743fbef39bd207a2d606719082cf145e5cbe6f5 | 59215e2eb694b0a0ce629a2fe19cc7af84047b47 | /WebSocketCPP_Beast/common/ssl_stream.hpp | ffbe495ce9e5f605dcdbdf1c79dd15955729dfe1 | [
"MIT"
] | permissive | EdFuentetaja/WebSockets | 3d83d06722c2dafcd11e83fcbab1c1c7fd0ae12d | c6241a291b74754356560e1ccad3a536980e0847 | refs/heads/master | 2021-01-24T02:17:24.395701 | 2018-07-21T08:08:28 | 2018-07-21T08:08:28 | 122,841,865 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,947 | hpp | //
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// 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)
//
// Official repository: https://github.com/boostorg/beast
//
#ifndef BOOST_BEAST_EXAMPLE_COMMON_SSL_STREAM_HPP
#define BOOST_BEAST_EXAMPLE_COMMON_SSL_STREAM_HPP
// This include is necessary to work with `ssl::stream` and `boost::beast::websocket::stream`
#include <boost/beast/websocket/ssl.hpp>
#include <boost/asio/ip/tcp.hpp>
#include <boost/asio/ssl/stream.hpp>
#include <cstddef>
#include <memory>
#include <type_traits>
#include <utility>
/** C++11 enabled SSL socket wrapper
This wrapper provides an interface identical to `boost::asio::ssl::stream`,
with the following additional properties:
@li Satisfies @b MoveConstructible
@li Satisfies @b MoveAssignable
@li Constructible from a moved socket.
*/
template<class NextLayer>
class ssl_stream
: public boost::asio::ssl::stream_base
{
// only works for boost::asio::ip::tcp::socket
// for now because of the move limitations
static_assert(std::is_same<NextLayer, boost::asio::ip::tcp::socket>::value,
"NextLayer requirements not met");
using stream_type = boost::asio::ssl::stream<NextLayer>;
std::unique_ptr<stream_type> p_;
boost::asio::ssl::context* ctx_;
public:
/// The native handle type of the SSL stream.
using native_handle_type = typename stream_type::native_handle_type;
/// Structure for use with deprecated impl_type.
using impl_struct = typename stream_type::impl_struct;
/// The type of the next layer.
using next_layer_type = typename stream_type::next_layer_type;
/// The type of the lowest layer.
using lowest_layer_type = typename stream_type::lowest_layer_type;
/// The type of the executor associated with the object.
using executor_type = typename stream_type::executor_type;
ssl_stream(
boost::asio::ip::tcp::socket socket,
boost::asio::ssl::context& ctx)
: p_(new stream_type{
socket.get_executor().context(), ctx})
, ctx_(&ctx)
{
p_->next_layer() = std::move(socket);
}
ssl_stream(ssl_stream&& other)
: p_(new stream_type(
other.get_executor().context(), *other.ctx_))
, ctx_(other.ctx_)
{
using std::swap;
swap(p_, other.p_);
}
ssl_stream& operator=(ssl_stream&& other)
{
std::unique_ptr<stream_type> p(new stream_type{
other.get_executor().context(), other.ctx_});
using std::swap;
swap(p_, p);
swap(p_, other.p_);
ctx_ = other.ctx_;
return *this;
}
executor_type
get_executor() noexcept
{
return p_->get_executor();
}
native_handle_type
native_handle()
{
return p_->native_handle();
}
next_layer_type const&
next_layer() const
{
return p_->next_layer();
}
next_layer_type&
next_layer()
{
return p_->next_layer();
}
lowest_layer_type&
lowest_layer()
{
return p_->lowest_layer();
}
lowest_layer_type const&
lowest_layer() const
{
return p_->lowest_layer();
}
void
set_verify_mode(boost::asio::ssl::verify_mode v)
{
p_->set_verify_mode(v);
}
boost::system::error_code
set_verify_mode(boost::asio::ssl::verify_mode v,
boost::system::error_code& ec)
{
return p_->set_verify_mode(v, ec);
}
void
set_verify_depth(int depth)
{
p_->set_verify_depth(depth);
}
boost::system::error_code
set_verify_depth(
int depth, boost::system::error_code& ec)
{
return p_->set_verify_depth(depth, ec);
}
template<class VerifyCallback>
void
set_verify_callback(VerifyCallback callback)
{
p_->set_verify_callback(callback);
}
template<class VerifyCallback>
boost::system::error_code
set_verify_callback(VerifyCallback callback,
boost::system::error_code& ec)
{
return p_->set_verify_callback(callback, ec);
}
void
handshake(handshake_type type)
{
p_->handshake(type);
}
boost::system::error_code
handshake(handshake_type type,
boost::system::error_code& ec)
{
return p_->handshake(type, ec);
}
template<class ConstBufferSequence>
void
handshake(
handshake_type type, ConstBufferSequence const& buffers)
{
p_->handshake(type, buffers);
}
template<class ConstBufferSequence>
boost::system::error_code
handshake(handshake_type type,
ConstBufferSequence const& buffers,
boost::system::error_code& ec)
{
return p_->handshake(type, buffers, ec);
}
template<class HandshakeHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(HandshakeHandler,
void(boost::system::error_code))
async_handshake(handshake_type type,
BOOST_ASIO_MOVE_ARG(HandshakeHandler) handler)
{
return p_->async_handshake(type,
BOOST_ASIO_MOVE_CAST(HandshakeHandler)(handler));
}
template<class ConstBufferSequence, class BufferedHandshakeHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(BufferedHandshakeHandler,
void (boost::system::error_code, std::size_t))
async_handshake(handshake_type type, ConstBufferSequence const& buffers,
BOOST_ASIO_MOVE_ARG(BufferedHandshakeHandler) handler)
{
return p_->async_handshake(type, buffers,
BOOST_ASIO_MOVE_CAST(BufferedHandshakeHandler)(handler));
}
void
shutdown()
{
p_->shutdown();
}
boost::system::error_code
shutdown(boost::system::error_code& ec)
{
return p_->shutdown(ec);
}
template<class ShutdownHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(ShutdownHandler,
void (boost::system::error_code))
async_shutdown(BOOST_ASIO_MOVE_ARG(ShutdownHandler) handler)
{
return p_->async_shutdown(
BOOST_ASIO_MOVE_CAST(ShutdownHandler)(handler));
}
template<class ConstBufferSequence>
std::size_t
write_some(ConstBufferSequence const& buffers)
{
return p_->write_some(buffers);
}
template<class ConstBufferSequence>
std::size_t
write_some(ConstBufferSequence const& buffers,
boost::system::error_code& ec)
{
return p_->write_some(buffers, ec);
}
template<class ConstBufferSequence, class WriteHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(WriteHandler,
void (boost::system::error_code, std::size_t))
async_write_some(ConstBufferSequence const& buffers,
BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
{
return p_->async_write_some(buffers,
BOOST_ASIO_MOVE_CAST(WriteHandler)(handler));
}
template<class MutableBufferSequence>
std::size_t
read_some(MutableBufferSequence const& buffers)
{
return p_->read_some(buffers);
}
template<class MutableBufferSequence>
std::size_t
read_some(MutableBufferSequence const& buffers,
boost::system::error_code& ec)
{
return p_->read_some(buffers, ec);
}
template<class MutableBufferSequence, class ReadHandler>
BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler,
void(boost::system::error_code, std::size_t))
async_read_some(MutableBufferSequence const& buffers,
BOOST_ASIO_MOVE_ARG(ReadHandler) handler)
{
return p_->async_read_some(buffers,
BOOST_ASIO_MOVE_CAST(ReadHandler)(handler));
}
template<class SyncStream>
friend
void
teardown(boost::beast::websocket::role_type,
ssl_stream<SyncStream>& stream,
boost::system::error_code& ec);
template<class AsyncStream, class TeardownHandler>
friend
void
async_teardown(boost::beast::websocket::role_type,
ssl_stream<AsyncStream>& stream, TeardownHandler&& handler);
};
// These hooks are used to inform boost::beast::websocket::stream on
// how to tear down the connection as part of the WebSocket
// protocol specifications
template<class SyncStream>
inline
void
teardown(
boost::beast::websocket::role_type role,
ssl_stream<SyncStream>& stream,
boost::system::error_code& ec)
{
// Just forward it to the wrapped ssl::stream
using boost::beast::websocket::teardown;
teardown(role, *stream.p_, ec);
}
template<class AsyncStream, class TeardownHandler>
inline
void
async_teardown(
boost::beast::websocket::role_type role,
ssl_stream<AsyncStream>& stream,
TeardownHandler&& handler)
{
// Just forward it to the wrapped ssl::stream
using boost::beast::websocket::async_teardown;
async_teardown(role,
*stream.p_, std::forward<TeardownHandler>(handler));
}
#endif
| [
"ed.fuentetaja@gmail.com"
] | ed.fuentetaja@gmail.com |
a5db59e1790ed665d940eb4c09938ab5d4fe3f9c | 1866d4046ced94b01e953bea65b1c361557fc9ea | /zkj_stl_alloc.h | 58ebbd3f3c4da5f369cb8480891b7d1311490448 | [] | no_license | zhuokaijia/zkj_stl | 0693d1df8773ba58de2a4aba646820acc44bfafe | c6eb4116db07b216c0198c7591b1c9c04882b309 | refs/heads/master | 2021-01-17T13:01:02.367095 | 2016-06-14T16:19:33 | 2016-06-14T16:19:33 | 57,869,957 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,715 | h | /* NOTE:This is an internal header file,included by other header file.
* you should not attempt to use it directly
*/
#ifndef _ZKJ_STL_ALLOC_H_
#define _ZKJ_STL_ALLOC_H_
#include <cassert>
#include <cstdlib>
#include <cstdio>
#include <cstring> //for memcpy
namespace zkj_stl{
template<class T,class Alloc=fl_malloc>
class simple_alloc{
static T* allocate(size_t _n){
return (0 == _n) ? 0 : static_cast<T*>(Alloc::allocate(n*sizeof(T));
}
static T* allocate(){
return (0 == _n) ? 0 : static_cast<T*>(Alloc::allocate(sizeof(T));
}
static void deallocate(T* _p, size_t _n){
if (0 != _n){
Alloc::deallocate(_p, _n*sizeof(T));
}
}
static void deallocate(T*_p){
Alloc::deallocate(_p, sizeof(T));
}
};
const int ALIGN = 8;
const int MAX_BYTES = 128;
const int NFLISTS = MAX_BYTES / ALIGN;
// if the client request an object of size > MAX_BYTES
// the object will be obtained directly by malloc
class general_alloc{
public:
static void* allocate(size_t _n){
void* res = malloc(_n);
assert(res != nullptr);
return res;
}
static void* deallocate(void* _p, size_t){
free(_p);
_p = nullptr;
}
static void* reallocate(void* _p, size_t,size_t _n){
void* res = realloc(_p, _n);
assert(res != nullptr);
return res;
}
};
// if the client request an object of size <= MAX_BYTES
// the object will be obtained by fl_malloc
class fl_malloc{ //free-list-malloc
private:
static inline size_t round_up(size_t _n){
return (_n + ALIGN - 1)& (~(ALIGN - 1));
}
union obj{
union obj* fl_link;
char data[1];
};
// free-lists
static obj* free_list[NFLISTS];
// from 0 to NFLISTS - 1
static size_t fl_index(size_t _n){
return (_n + ALIGN - 1) / ALIGN - 1;
}
static void* refill(size_t _n);
// _nobjs pass by reference
static char* chunk_alloc(size_t _n, size_t& _nobjs);
//change in chunk_alloc function
static char* head_free;
static char* end_free;
public:
static void* allocate(size_t _n);
static void deallocate(void* _p, size_t _n);
static void* reallocate(void* _P, size_t _o,size_t _n);
};
}//namespace zkj_stl
//mode:c++
#endif | [
"946114150@qq.com"
] | 946114150@qq.com |
54ccbfc2d94718b6861a40f7bf64507e1bebfc1b | d472b26153e913bcf74e5a7582bb14c66c9f9299 | /src/server.cpp | 9fe21f414a13e6a9b988580dc76e63dd209fd27b | [] | no_license | mrnsapple/Zia | 73c7b4bffc28157fa6424f02945f279de8312e0b | d08c35e7853bfdd75aeab5c2148d37df2912e5bb | refs/heads/master | 2022-12-16T04:16:14.522200 | 2020-09-21T17:19:42 | 2020-09-21T17:19:42 | 297,409,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 419 | cpp | /*
** EPITECH PROJECT, 2020
** CPP_zia_2019
** File description:
** server
*/
#include "../include/server.hpp"
void create_session(t_socket client, int server_port)
{
session s(client, server_port);
s.do_read();
}
void server::continous_listen()
{
t_socket client;
while (1) {
client = socket_.do_accept();
std::thread(&create_session, client, socket_.local_port()).detach();
}
} | [
"oriol.manzano@epitech.eu"
] | oriol.manzano@epitech.eu |
c339d25e92e864d43b4814779274c34f50c3c2e6 | cd8abfb87e558f05b13fce74dbc27ea6375e45af | /fboss/agent/platforms/common/sandia/SandiaPlatformMapping.h | 507d5460a9aa9e30beca2a44034258d52f5e69a3 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | nanWave/fboss | 4e355915e6ae80452c579104b534397812e1b42b | b920e54c6919800f915222b6ba7a63757ecdc8bf | refs/heads/master | 2022-08-13T22:44:10.869514 | 2022-07-25T05:30:57 | 2022-07-25T05:30:57 | 105,797,491 | 0 | 0 | null | 2017-10-04T17:31:02 | 2017-10-04T17:31:02 | null | UTF-8 | C++ | false | false | 774 | h | /*
* Copyright (c) 2004-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#pragma once
#include "fboss/agent/platforms/common/PlatformMapping.h"
namespace facebook {
namespace fboss {
class SandiaPlatformMapping : public PlatformMapping {
public:
SandiaPlatformMapping();
private:
// Forbidden copy constructor and assignment operator
SandiaPlatformMapping(SandiaPlatformMapping const&) = delete;
SandiaPlatformMapping& operator=(SandiaPlatformMapping const&) = delete;
};
} // namespace fboss
} // namespace facebook
| [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
f81495b093c57736c3ddd4c61328e1f7cc719014 | ebc00ddf4c8c5f5076471e8b8d56c2b634c51230 | /src/hash.h | 7fce72ed7b01ff458a9d98e09e95327113a045f8 | [
"MIT"
] | permissive | BlockMechanic/rain | 584a9e245cfb7ab5fb1add97b699b86833bfbc5b | e8818b75240ff9277b0d14d38769378f05d0b525 | refs/heads/master | 2021-07-03T03:48:53.977665 | 2021-03-04T01:28:20 | 2021-03-04T01:28:20 | 228,412,343 | 0 | 0 | MIT | 2019-12-16T15:03:28 | 2019-12-16T15:03:27 | null | UTF-8 | C++ | false | false | 10,074 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2020 The Rain Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef RAIN_HASH_H
#define RAIN_HASH_H
#include <crypto/common.h>
#include <crypto/ripemd160.h>
#include <crypto/sha256.h>
#include <prevector.h>
#include <serialize.h>
#include <uint256.h>
#include <version.h>
#include <vector>
typedef uint256 ChainCode;
/** A hasher class for Rain's 256-bit hash (double SHA-256). */
class CHash256 {
private:
CSHA256 sha;
public:
static const size_t OUTPUT_SIZE = CSHA256::OUTPUT_SIZE;
void Finalize(unsigned char hash[OUTPUT_SIZE]) {
unsigned char buf[CSHA256::OUTPUT_SIZE];
sha.Finalize(buf);
sha.Reset().Write(buf, CSHA256::OUTPUT_SIZE).Finalize(hash);
}
CHash256& Write(const unsigned char *data, size_t len) {
sha.Write(data, len);
return *this;
}
CHash256& Reset() {
sha.Reset();
return *this;
}
};
/** A hasher class for Rain's 160-bit hash (SHA-256 + RIPEMD-160). */
class CHash160 {
private:
CSHA256 sha;
public:
static const size_t OUTPUT_SIZE = CRIPEMD160::OUTPUT_SIZE;
void Finalize(unsigned char hash[OUTPUT_SIZE]) {
unsigned char buf[CSHA256::OUTPUT_SIZE];
sha.Finalize(buf);
CRIPEMD160().Write(buf, CSHA256::OUTPUT_SIZE).Finalize(hash);
}
CHash160& Write(const unsigned char *data, size_t len) {
sha.Write(data, len);
return *this;
}
CHash160& Reset() {
sha.Reset();
return *this;
}
};
/** Compute the 256-bit hash of an object. */
template<typename T1>
inline uint256 Hash(const T1 pbegin, const T1 pend)
{
static const unsigned char pblank[1] = {};
uint256 result;
CHash256().Write(pbegin == pend ? pblank : (const unsigned char*)&pbegin[0], (pend - pbegin) * sizeof(pbegin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 256-bit hash of the concatenation of two objects. */
template<typename T1, typename T2>
inline uint256 Hash(const T1 p1begin, const T1 p1end,
const T2 p2begin, const T2 p2end) {
static const unsigned char pblank[1] = {};
uint256 result;
CHash256().Write(p1begin == p1end ? pblank : (const unsigned char*)&p1begin[0], (p1end - p1begin) * sizeof(p1begin[0]))
.Write(p2begin == p2end ? pblank : (const unsigned char*)&p2begin[0], (p2end - p2begin) * sizeof(p2begin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 256-bit hash of the concatenation of three objects. */
template<typename T1, typename T2, typename T3>
inline uint256 Hash(const T1 p1begin, const T1 p1end,
const T2 p2begin, const T2 p2end,
const T3 p3begin, const T3 p3end) {
static const unsigned char pblank[1] = {};
uint256 result;
CHash256().Write(p1begin == p1end ? pblank : (const unsigned char*)&p1begin[0], (p1end - p1begin) * sizeof(p1begin[0]))
.Write(p2begin == p2end ? pblank : (const unsigned char*)&p2begin[0], (p2end - p2begin) * sizeof(p2begin[0]))
.Write(p3begin == p3end ? pblank : (const unsigned char*)&p3begin[0], (p3end - p3begin) * sizeof(p3begin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 256-bit hash of the concatenation of three objects. */
template<typename T1, typename T2, typename T3, typename T4>
inline uint256 Hash(const T1 p1begin, const T1 p1end,
const T2 p2begin, const T2 p2end,
const T3 p3begin, const T3 p3end,
const T4 p4begin, const T4 p4end) {
static const unsigned char pblank[1] = {};
uint256 result;
CHash256().Write(p1begin == p1end ? pblank : (const unsigned char*)&p1begin[0], (p1end - p1begin) * sizeof(p1begin[0]))
.Write(p2begin == p2end ? pblank : (const unsigned char*)&p2begin[0], (p2end - p2begin) * sizeof(p2begin[0]))
.Write(p3begin == p3end ? pblank : (const unsigned char*)&p3begin[0], (p3end - p3begin) * sizeof(p3begin[0]))
.Write(p4begin == p4end ? pblank : (const unsigned char*)&p4begin[0], (p4end - p4begin) * sizeof(p4begin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 256-bit hash of the concatenation of three objects. */
template<typename T1, typename T2, typename T3, typename T4, typename T5>
inline uint256 Hash(const T1 p1begin, const T1 p1end,
const T2 p2begin, const T2 p2end,
const T3 p3begin, const T3 p3end,
const T4 p4begin, const T4 p4end,
const T5 p5begin, const T5 p5end) {
static const unsigned char pblank[1] = {};
uint256 result;
CHash256().Write(p1begin == p1end ? pblank : (const unsigned char*)&p1begin[0], (p1end - p1begin) * sizeof(p1begin[0]))
.Write(p2begin == p2end ? pblank : (const unsigned char*)&p2begin[0], (p2end - p2begin) * sizeof(p2begin[0]))
.Write(p3begin == p3end ? pblank : (const unsigned char*)&p3begin[0], (p3end - p3begin) * sizeof(p3begin[0]))
.Write(p4begin == p4end ? pblank : (const unsigned char*)&p4begin[0], (p4end - p4begin) * sizeof(p4begin[0]))
.Write(p5begin == p5end ? pblank : (const unsigned char*)&p5begin[0], (p5end - p5begin) * sizeof(p5begin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 256-bit hash of the concatenation of three objects. */
template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
inline uint256 Hash(const T1 p1begin, const T1 p1end,
const T2 p2begin, const T2 p2end,
const T3 p3begin, const T3 p3end,
const T4 p4begin, const T4 p4end,
const T5 p5begin, const T5 p5end,
const T6 p6begin, const T6 p6end) {
static const unsigned char pblank[1] = {};
uint256 result;
CHash256().Write(p1begin == p1end ? pblank : (const unsigned char*)&p1begin[0], (p1end - p1begin) * sizeof(p1begin[0]))
.Write(p2begin == p2end ? pblank : (const unsigned char*)&p2begin[0], (p2end - p2begin) * sizeof(p2begin[0]))
.Write(p3begin == p3end ? pblank : (const unsigned char*)&p3begin[0], (p3end - p3begin) * sizeof(p3begin[0]))
.Write(p4begin == p4end ? pblank : (const unsigned char*)&p4begin[0], (p4end - p4begin) * sizeof(p4begin[0]))
.Write(p5begin == p5end ? pblank : (const unsigned char*)&p5begin[0], (p5end - p5begin) * sizeof(p5begin[0]))
.Write(p6begin == p6end ? pblank : (const unsigned char*)&p6begin[0], (p6end - p6begin) * sizeof(p6begin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 160-bit hash an object. */
template<typename T1>
inline uint160 Hash160(const T1 pbegin, const T1 pend)
{
static unsigned char pblank[1] = {};
uint160 result;
CHash160().Write(pbegin == pend ? pblank : (const unsigned char*)&pbegin[0], (pend - pbegin) * sizeof(pbegin[0]))
.Finalize((unsigned char*)&result);
return result;
}
/** Compute the 160-bit hash of a vector. */
inline uint160 Hash160(const std::vector<unsigned char>& vch)
{
return Hash160(vch.begin(), vch.end());
}
/** Compute the 160-bit hash of a vector. */
template<unsigned int N>
inline uint160 Hash160(const prevector<N, unsigned char>& vch)
{
return Hash160(vch.begin(), vch.end());
}
/** A writer stream (for serialization) that computes a 256-bit hash. */
class CHashWriter
{
private:
CHash256 ctx;
const int nType;
const int nVersion;
public:
CHashWriter(int nTypeIn, int nVersionIn) : nType(nTypeIn), nVersion(nVersionIn) {}
int GetType() const { return nType; }
int GetVersion() const { return nVersion; }
void write(const char *pch, size_t size) {
ctx.Write((const unsigned char*)pch, size);
}
// invalidates the object
uint256 GetHash() {
uint256 result;
ctx.Finalize((unsigned char*)&result);
return result;
}
/**
* Returns the first 64 bits from the resulting hash.
*/
inline uint64_t GetCheapHash() {
unsigned char result[CHash256::OUTPUT_SIZE];
ctx.Finalize(result);
return ReadLE64(result);
}
template<typename T>
CHashWriter& operator<<(const T& obj) {
// Serialize to this stream
::Serialize(*this, obj);
return (*this);
}
};
/** Reads data from an underlying stream, while hashing the read data. */
template<typename Source>
class CHashVerifier : public CHashWriter
{
private:
Source* source;
public:
explicit CHashVerifier(Source* source_) : CHashWriter(source_->GetType(), source_->GetVersion()), source(source_) {}
void read(char* pch, size_t nSize)
{
source->read(pch, nSize);
this->write(pch, nSize);
}
void ignore(size_t nSize)
{
char data[1024];
while (nSize > 0) {
size_t now = std::min<size_t>(nSize, 1024);
read(data, now);
nSize -= now;
}
}
template<typename T>
CHashVerifier<Source>& operator>>(T&& obj)
{
// Unserialize from this stream
::Unserialize(*this, obj);
return (*this);
}
};
/** Compute the 256-bit hash of an object's serialization. */
template<typename T>
uint256 SerializeHash(const T& obj, int nType=SER_GETHASH, int nVersion=PROTOCOL_VERSION)
{
CHashWriter ss(nType, nVersion);
ss << obj;
return ss.GetHash();
}
unsigned int MurmurHash3(unsigned int nHashSeed, const std::vector<unsigned char>& vDataToHash);
void BIP32Hash(const ChainCode &chainCode, unsigned int nChild, unsigned char header, const unsigned char data[32], unsigned char output[64]);
int univHash(const uint256 &x);
#endif // RAIN_HASH_H
| [
"blockmecha@gmail.com"
] | blockmecha@gmail.com |
684c2f159b5de11c4f22f88cf97ad7c2b2ba1449 | e23cf10c9dee3c854c58e06dae5d9d024aff6ac5 | /2019/s2/oop/workshop-12/hunter.cpp | bc162af9d341042a19c3df37b66f0361f302fa95 | [] | no_license | bkoh1782291/bkoh1782291 | fbdb2ac23eb30359e1cd29bd7b8582766ce3b079 | ae328c1270c88f4adf5b0cc9ac1a9bcefc4cb783 | refs/heads/main | 2023-06-23T09:43:22.109038 | 2023-06-09T13:43:19 | 2023-06-09T13:43:19 | 350,210,138 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | cpp | #include <iostream>
#include <string>
#include "hunter.h"
using namespace std;
int hunter::nextID = 1000;
hunter::hunter(string n, int v) : animal(n, v){
name = n;
volume = v;
id = nextID++;
}
string hunter::get_name(){
return "Hunter: " + name;
}
int hunter::get_kills(){
return kills;
}
void hunter::set_kills(int hKills){
kills = hKills;
} | [
"kohbrian88@gmail.com"
] | kohbrian88@gmail.com |
0f68d9ac99d01c47e3ecd5aae0f135b59d465c12 | 8c72abc8fba1aceb32264315e86718cb347e52b2 | /Sortera/Sortera/IStack.h | ac40f733ece8288d94b32943f5a1152231d2ad6b | [] | no_license | AweZen/Skola | d6616a5963e7b2f8e69ab9686227e0490f8b8516 | 694f829d6b2119dd58e9f6fbdc8cbd3871c64f30 | refs/heads/master | 2021-04-27T09:34:29.274726 | 2018-03-02T07:22:24 | 2018-03-02T07:22:24 | 122,517,786 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 238 | h | #pragma once
template<typename T>
class IStack
{
public:
virtual ~IStack() = 0 {};
virtual void push(const T& element) = 0;
virtual T pop() noexcept(false) = 0;
virtual T peek()const throw(...)= 0;
virtual bool isEmpty()const = 0;
}; | [
"erik.eli@live.se"
] | erik.eli@live.se |
69c8342a4be7d723d78a89c40ddba4ba7bbeffc2 | 0c4bd1b977cc714a8a6b2839f51c4247ecfd32b1 | /C++/lbann/src/layers/regularizers/batch_normalization.cpp | c93130f8442f9cfde708413758b9a8f01253c30e | [
"Apache-2.0"
] | permissive | ishine/neuralLOGIC | 281d498b40159308815cee6327e6cf79c9426b16 | 3eb3b9980e7f7a7d87a77ef40b1794fb5137c459 | refs/heads/master | 2020-08-14T14:11:54.487922 | 2019-10-14T05:32:53 | 2019-10-14T05:32:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,016 | cpp | ////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2014-2019, Lawrence Livermore National Security, LLC.
// Produced at the Lawrence Livermore National Laboratory.
// Written by the LBANN Research Team (B. Van Essen, et al.) listed in
// the CONTRIBUTORS file. <lbann-dev@llnl.gov>
//
// LLNL-CODE-697807.
// All rights reserved.
//
// This file is part of LBANN: Livermore Big Artificial Neural Network
// Toolkit. For details, see http://software.llnl.gov/LBANN or
// https://github.com/LLNL/LBANN.
//
// Licensed under the Apache License, Version 2.0 (the "Licensee"); 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.
////////////////////////////////////////////////////////////////////////////////
#include "lbann/layers/regularizers/batch_normalization.hpp"
#include "lbann/execution_contexts/sgd_execution_context.hpp"
namespace lbann {
template <>
void batch_normalization_layer<data_layout::DATA_PARALLEL, El::Device::CPU>::fp_compute() {
constexpr DataType zero = 0;
constexpr DataType one = 1;
const bool is_training = this->m_model->get_execution_context().get_execution_mode() == execution_mode::training;
// Matrices
const auto& input = get_prev_activations();
const auto& local_input = input.LockedMatrix();
auto& local_output = get_local_activations();
// Matrix parameters
const auto& width = input.Width();
const auto& local_width = local_input.Width();
const auto& output_dims = get_output_dims();
const auto& num_channels = output_dims[0];
const auto& channel_size = get_output_size() / num_channels;
// Compute statistics
if (is_training) {
// Local matrices
auto& local_mean = m_mean_v->Matrix();
auto& local_var = m_var_v->Matrix();
auto& local_running_mean = this->m_weights[2]->get_values().Matrix();
auto& local_running_var = this->m_weights[3]->get_values().Matrix();
// Compute sums and sums of squares
LBANN_OMP_PARALLEL_FOR
for (El::Int channel = 0; channel < num_channels; ++channel) {
DataType sum = zero;
DataType sqsum = zero;
const auto& row_start = channel * channel_size;
const auto& row_end = (channel+1) * channel_size;
for (El::Int col = 0; col < local_width; ++col) {
for (El::Int row = row_start; row < row_end; ++row) {
const auto& x = local_input(row, col);
sum += x;
sqsum += x * x;
}
}
local_mean(channel, 0) = sum;
local_var(channel, 0) = sqsum;
}
El::Int num_per_sum;
if (m_statistics_group_size == 0) {
// Global statistics aggregation; allreduce on fused buffer.
m_comm->allreduce(*m_mean_and_var, m_mean_and_var->RedundantComm(),
El::mpi::SUM);
num_per_sum = channel_size * width;
} else if (m_statistics_group_size == 1) {
// Local aggregation, no allreduce needed.
num_per_sum = channel_size * local_width;
} else {
// Grouped batchnorm. Allreduce on fused buffer.
m_comm->allreduce(*m_mean_and_var,
m_comm->get_packed_group_comm(m_statistics_group_size),
El::mpi::SUM);
if (m_num_per_sum_cache.count(width) == 0) {
num_per_sum = channel_size * local_width;
num_per_sum = m_comm->allreduce(
num_per_sum, m_comm->get_packed_group_comm(m_statistics_group_size));
m_num_per_sum_cache[width] = num_per_sum;
} else {
num_per_sum = m_num_per_sum_cache[width];
}
}
// Compute minibatch statistics
if (num_per_sum <= 1) {
El::Fill(local_var, one);
} else {
LBANN_OMP_PARALLEL_FOR
for (El::Int channel = 0; channel < num_channels; ++channel) {
const auto& mean = local_mean(channel, 0) / num_per_sum;
const auto& sqmean = local_var(channel, 0) / num_per_sum;
auto var = num_per_sum * (sqmean - mean * mean) / (num_per_sum - 1);
var = std::max(var, m_epsilon);
local_mean(channel, 0) = mean;
local_var(channel, 0) = var;
auto& running_mean = local_running_mean(channel, 0);
auto& running_var = local_running_var(channel, 0);
running_mean = m_decay * running_mean + (one - m_decay) * mean;
running_var = m_decay * running_var + (one - m_decay) * var;
}
}
}
// Get matrices
const auto& local_scale = this->m_weights[0]->get_values().LockedMatrix();
const auto& local_bias = this->m_weights[1]->get_values().LockedMatrix();
const auto& local_mean = (is_training ?
m_mean_v->LockedMatrix() :
this->m_weights[2]->get_values().LockedMatrix());
const auto& local_var = (is_training ?
m_var_v->LockedMatrix() :
this->m_weights[3]->get_values().LockedMatrix());
// Iterate through channels
LBANN_OMP_PARALLEL_FOR
for (El::Int channel = 0; channel < num_channels; ++channel) {
// Get channel parameters
const auto& mean = local_mean(channel, 0);
const auto& var = local_var(channel, 0);
const DataType inv_stdev = 1 / std::sqrt(var + m_epsilon);
const auto& scale = local_scale(channel, 0);
const auto& bias = local_bias(channel, 0);
// Apply batch normalization to inputs in channel
const auto& row_start = channel * channel_size;
const auto& row_end = (channel+1) * channel_size;
for (El::Int col = 0; col < local_width; ++col) {
for (El::Int row = row_start; row < row_end; ++row) {
const auto& x = local_input(row, col);
const auto& xhat = (x - mean) * inv_stdev;
auto& y = local_output(row, col);
y = scale * xhat + bias;
}
}
}
}
template <>
void batch_normalization_layer<data_layout::DATA_PARALLEL, El::Device::CPU>::bp_compute() {
constexpr DataType one = 1;
const bool is_training = this->m_model->get_execution_context().get_execution_mode() == execution_mode::training;
// Matrices
const auto& local_scale = this->m_weights[0]->get_values().LockedMatrix();
const auto& local_mean = (is_training ?
m_mean_v->LockedMatrix() :
this->m_weights[2]->get_values().LockedMatrix());
const auto& local_var = (is_training ?
m_var_v->LockedMatrix() :
this->m_weights[3]->get_values().LockedMatrix());
const auto& input = get_prev_activations();
const auto& local_input = input.LockedMatrix();
const auto& local_gradient_wrt_output = get_local_prev_error_signals();
auto& local_gradient_wrt_input = get_local_error_signals();
auto& local_mean_gradient = m_mean_gradient_v->Matrix();
auto& local_var_gradient = m_var_gradient_v->Matrix();
auto& local_scale_gradient = m_scale_gradient->Matrix();
auto& local_bias_gradient = m_bias_gradient->Matrix();
// Matrix parameters
const auto& c = static_cast<sgd_execution_context&>(this->m_model->get_execution_context());
const auto effective_mini_batch_size = c.get_effective_mini_batch_size();
const auto& width = input.Width();
const auto& local_width = local_input.Width();
const auto& output_dims = get_output_dims();
const auto& num_channels = output_dims[0];
const auto& channel_size = get_output_size() / num_channels;
// Compute local gradients
LBANN_OMP_PARALLEL_FOR
for (El::Int channel = 0; channel < num_channels; ++channel) {
// Initialize channel parameters and gradients
const auto& mean = local_mean(channel, 0);
const auto& var = local_var(channel, 0);
const auto& scale = local_scale(channel, 0);
const DataType inv_stdev = 1 / std::sqrt(var + m_epsilon);
const auto& dvar_factor = inv_stdev * inv_stdev * inv_stdev / 2;
DataType dmean = 0;
DataType dvar = 0;
DataType dscale = 0;
DataType dbias = 0;
// Compute gradient contributions from local entries
const auto& row_start = channel * channel_size;
const auto& row_end = (channel+1) * channel_size;
for (El::Int col = 0; col < local_width; ++col) {
for (El::Int row = row_start; row < row_end; ++row) {
const auto& x = local_input(row, col);
const auto& xhat = (x - mean) * inv_stdev;
const auto& dy = local_gradient_wrt_output(row, col);
dscale += dy * xhat;
dbias += dy;
const auto& dxhat = dy * scale;
dmean += - dxhat * inv_stdev;
dvar += - dxhat * (x - mean) * dvar_factor;
}
}
local_mean_gradient(channel, 0) = dmean;
local_var_gradient(channel, 0) = dvar;
local_scale_gradient(channel, 0) = dscale;
local_bias_gradient(channel, 0) = dbias;
}
// Accumulate gradients
if (is_training) {
if (m_statistics_group_size == 0) {
// Global aggregation; allreduce on fused buffer.
m_comm->allreduce(*m_mean_and_var_gradient,
m_mean_and_var_gradient->RedundantComm(),
El::mpi::SUM);
} else if (m_statistics_group_size > 1) {
// Grouped batchnorm; allreduce on fused buffer.
m_comm->allreduce(*m_mean_and_var_gradient,
m_comm->get_packed_group_comm(m_statistics_group_size),
El::mpi::SUM);
}
} else {
// Zero fused buffer.
El::Zero(*m_mean_and_var_gradient);
}
optimizer* scale_optimizer = m_weights[0]->get_optimizer();
if (scale_optimizer != nullptr) {
scale_optimizer->add_to_gradient(*m_scale_gradient,
one / effective_mini_batch_size,
true);
}
optimizer* bias_optimizer = m_weights[1]->get_optimizer();
if (bias_optimizer != nullptr) {
bias_optimizer->add_to_gradient(*m_bias_gradient,
one / effective_mini_batch_size,
true);
}
// Compute error signal
El::Int num_per_sum;
if (m_statistics_group_size == 0) {
// Global statistics aggregation.
num_per_sum = channel_size * width;
} else if (m_statistics_group_size == 1) {
// Local aggregation.
num_per_sum = channel_size * local_width;
} else {
// Grouped batchnorm.
num_per_sum = m_num_per_sum_cache[width]; // This was computed in FP.
}
if (num_per_sum <= 1) {
El::Zero(local_gradient_wrt_input);
} else {
LBANN_OMP_PARALLEL_FOR
for (El::Int channel = 0; channel < num_channels; ++channel) {
// Initialize channel parameters and gradients
const auto& mean = local_mean(channel, 0);
const auto& var = local_var(channel, 0);
const auto& scale = local_scale(channel, 0);
const auto& dmean = local_mean_gradient(channel, 0);
const auto& dvar = local_var_gradient(channel, 0);
// Compute useful constants
const DataType inv_stdev = 1 / std::sqrt(var + m_epsilon);
const auto& dmean_term = dmean / num_per_sum;
const auto& dvar_term = dvar * 2 / (num_per_sum - 1);
// Compute error signal for current channel
const auto& row_start = channel * channel_size;
const auto& row_end = (channel+1) * channel_size;
for (El::Int col = 0; col < local_width; ++col) {
for (El::Int row = row_start; row < row_end; ++row) {
const auto& x = local_input(row, col);
const auto& dy = local_gradient_wrt_output(row, col);
const auto& dxhat = dy * scale;
auto& dx = local_gradient_wrt_input(row, col);
dx = dxhat * inv_stdev + dmean_term + dvar_term * (x - mean);
}
}
}
}
}
} // namespace lbann
| [
"the.new.horizon@outlook.com"
] | the.new.horizon@outlook.com |
212886a605f0e72bdfc309caf259fc658cfac109 | 679b6414bc832e81edb7ebf16bb0d7b779c40005 | /test.cpp | b7a77a077c0d4711306bef971f10900946096ed2 | [] | no_license | tfiedor/memory-repo | fd368281e7de3d34115f1bdbfefc0e52d2e812fd | 74288675e4074f1ad5bbb0d3b3253911ab42267a | refs/heads/master | 2021-01-22T23:48:33.453444 | 2017-03-24T07:13:36 | 2017-03-24T07:13:36 | 85,670,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 770 | cpp | /*
* File: test.cpp
* Project: Library for Profiling and Visualization of Memory Consumption
* of C/C++ Programs, Bachelor's thesis
* Date: 29.2.2017
* Author: Podola Radim, xpodol06@stud.fit.vutbr.cz
* Description: Testing file for injected malloc.so library.
TODO: Test for all allocation functions, use assert?
*/
#include <iostream> // std::cout
#include <new> // ::operator new
struct MyClass {
int data[100];
MyClass(){(int*)calloc(1, sizeof(int)); }
};
int main () {
MyClass* p1 = new MyClass();
// allocates memory by calling: operator new (sizeof(MyClass))
// and then constructs an object at the newly allocated space
int *i = new int;
delete(i);
delete(p1);
return 0;
}
| [
"ifiedortom@fit.vutbr.cz"
] | ifiedortom@fit.vutbr.cz |
30a0a66d7d9be820994fd3edf989e0cca28856d8 | 58ef72f1d3bd0ce696506e49e620fd554e0faf63 | /libzxplayer/src/main/cpp/common/WlQueue.h | 507f04aae76fc71a80a0fd5e7b5c21dd727959e6 | [] | no_license | KimHyoungChul/ffmpeg_Player_new | bcf6e8e61bd03183c0bea32cf920a22b26e91a26 | 0cb343d6d1fb5ec9a273902111054e0adec5c34b | refs/heads/master | 2020-06-12T07:47:53.975997 | 2018-08-16T02:08:05 | 2018-08-16T02:08:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 902 | h | //
// Created by ywl on 2017-12-3.
//
#ifndef WLPLAYER_QUEUE_H
#define WLPLAYER_QUEUE_H
#include "queue"
#include "../WlPlayStatus.h"
extern "C"
{
#include <libavcodec/avcodec.h>
#include "pthread.h"
};
class WlQueue {
public:
std::queue<AVPacket*> queuePacket;
std::queue<AVFrame*> queueFrame;
pthread_mutex_t mutexFrame;
pthread_cond_t condFrame;
pthread_mutex_t mutexPacket;
pthread_cond_t condPacket;
WlPlayStatus *wlPlayStatus = NULL;
public:
WlQueue(WlPlayStatus *playStatus);
~WlQueue();
int putAvpacket(AVPacket *avPacket);
int getAvpacket(AVPacket *avPacket);
int clearAvpacket();
int clearToKeyFrame();
int putAvframe(AVFrame *avFrame);
int getAvframe(AVFrame *avFrame);
int clearAvFrame();
void release();
int getAvPacketSize();
int getAvFrameSize();
int noticeThread();
};
#endif //WLPLAYER_QUEUE_H
| [
"xiao244164200@qq.com"
] | xiao244164200@qq.com |
1c13f5f3ff912e6322510a9b9a156a36059e7803 | 44611973ae357ec3cb078f0c0d95b8efd84c9eff | /Arduino/PragProg/ultrasonic/simple/simple.ino | 65bcf0720e9995aa9561c6126b07dcf97a4b3689 | [] | no_license | LeipeLeon/interactive | 29e9fe5afb7dd81e9c1b3970310422ac76f007eb | 642273fe10f51dfd40e14295792873bd047a1849 | refs/heads/master | 2021-01-01T18:34:37.042065 | 2012-01-06T18:38:36 | 2012-01-06T18:38:36 | 1,372,775 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,027 | ino | const unsigned int PING_SENSOR_IO_PIN = 7;
const unsigned int BAUD_RATE = 9600;
void setup() {
Serial.begin(BAUD_RATE);
}
void loop() {
pinMode(PING_SENSOR_IO_PIN, OUTPUT); // <label id="code.input.start_init_pin"/>
digitalWrite(PING_SENSOR_IO_PIN, LOW);
delayMicroseconds(2); // <label id="code.input.end_init_pin"/>
digitalWrite(PING_SENSOR_IO_PIN, HIGH); // <label id="code.input.start_send_chirp"/>
delayMicroseconds(5);
digitalWrite(PING_SENSOR_IO_PIN, LOW); // <label id="code.input.end_send_chirp"/>
pinMode(PING_SENSOR_IO_PIN, INPUT);
const unsigned long duration = pulseIn(PING_SENSOR_IO_PIN, HIGH); // <label id="code.input.read_duration"/>
if (duration == 0) {
Serial.println("Warning: We did not get a pulse from sensor.");
} else {
Serial.print("Distance to nearest object: ");
Serial.print(microseconds_to_cm(duration));
Serial.println(" cm");
}
delay(100);
}
unsigned long microseconds_to_cm(const unsigned long microseconds) {
return microseconds / 29 / 2;
}
| [
"leipeleon@gmail.com"
] | leipeleon@gmail.com |
32ef379068837799fd30896cbe336ff782ca9834 | ddf9fe457bc20001b562de86b94ab373826e7649 | /Programming Assignment 6 by Joseph Cunningham/Joseph Cunningham-03-24-2017-00-53-44/122 PA 6/BSTNode.cpp | 0fe7f06dbf81b1a96bef0ad021fe757233dc8a57 | [] | no_license | Jham109/CS-122 | 02547985b6789c86af26e48691f790568d7a11c8 | 0a86ef92767976bd22c3d0167feb384f7948f112 | refs/heads/master | 2021-01-16T14:14:18.863392 | 2020-02-26T02:30:59 | 2020-02-26T02:30:59 | 243,149,812 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 624 | cpp | #include "BSTNode.h"
Node::Node(string newCode, char newChar)
{
mCode = newCode;
mChar = newChar;
mLeft = nullptr;
mRight = nullptr;
}
Node::~Node()
{
//the destructor of Node
}
string Node::getCode() const
{
return mCode;
}
char Node::getChar() const
{
return mChar;
}
Node *& Node::getLeft()
{
return mLeft;
}
Node *& Node::getRight()
{
return mRight;
}
void Node::setChar(const char newChar)
{
mChar = newChar;
}
void Node::setCode(const string newData)
{
mCode = newData;
}
void Node::setLeft(Node * const newLeft)
{
mLeft = newLeft;
}
void Node::setRight(Node * const newRight)
{
mRight = newRight;
} | [
"joseph.cunningham@wsu.edu"
] | joseph.cunningham@wsu.edu |
7617dbd123c1e8b8d26f318a6d4083cc39693096 | b71b8bd385c207dffda39d96c7bee5f2ccce946c | /testcases/CWE127_Buffer_Underread/s03/CWE127_Buffer_Underread__new_wchar_t_loop_15.cpp | 11025ea1cf2a212d1b277ccbd0d7ae41d4b34ede | [] | no_license | Sporknugget/Juliet_prep | e9bda84a30bdc7938bafe338b4ab2e361449eda5 | 97d8922244d3d79b62496ede4636199837e8b971 | refs/heads/master | 2023-05-05T14:41:30.243718 | 2021-05-25T16:18:13 | 2021-05-25T16:18:13 | 369,334,230 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,382 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE127_Buffer_Underread__new_wchar_t_loop_15.cpp
Label Definition File: CWE127_Buffer_Underread__new.label.xml
Template File: sources-sink-15.tmpl.cpp
*/
/*
* @description
* CWE: 127 Buffer Under-read
* BadSource: Set data pointer to before the allocated memory buffer
* GoodSource: Set data pointer to the allocated memory buffer
* Sink: loop
* BadSink : Copy data to string using a loop
* Flow Variant: 15 Control flow: switch(6)
*
* */
#include "std_testcase.h"
#include <wchar.h>
namespace CWE127_Buffer_Underread__new_wchar_t_loop_15
{
#ifndef OMITBAD
void bad()
{
wchar_t * data;
data = NULL;
{
wchar_t * dataBuffer = new wchar_t[100];
wmemset(dataBuffer, L'A', 100-1);
dataBuffer[100-1] = L'\0';
/* FLAW: Set data pointer to before the allocated memory buffer */
data = dataBuffer - 8;
}
{
size_t i;
wchar_t dest[100];
wmemset(dest, L'C', 100-1); /* fill with 'C's */
dest[100-1] = L'\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copy from a memory location located before the source buffer */
for (i = 0; i < 100; i++)
{
dest[i] = data[i];
}
/* Ensure null termination */
dest[100-1] = L'\0';
printWLine(dest);
/* INCIDENTAL CWE-401: Memory Leak - data may not point to location
* returned by new [] so can't safely call delete [] on it */
}
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B1() - use goodsource and badsink by changing the switch to switch(5) */
static void goodG2B1()
{
wchar_t * data;
data = NULL;
{
wchar_t * dataBuffer = new wchar_t[100];
wmemset(dataBuffer, L'A', 100-1);
dataBuffer[100-1] = L'\0';
/* FIX: Set data pointer to the allocated memory buffer */
data = dataBuffer;
}
{
size_t i;
wchar_t dest[100];
wmemset(dest, L'C', 100-1); /* fill with 'C's */
dest[100-1] = L'\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copy from a memory location located before the source buffer */
for (i = 0; i < 100; i++)
{
dest[i] = data[i];
}
/* Ensure null termination */
dest[100-1] = L'\0';
printWLine(dest);
/* INCIDENTAL CWE-401: Memory Leak - data may not point to location
* returned by new [] so can't safely call delete [] on it */
}
}
/* goodG2B2() - use goodsource and badsink by reversing the blocks in the switch */
static void goodG2B2()
{
wchar_t * data;
data = NULL;
{
wchar_t * dataBuffer = new wchar_t[100];
wmemset(dataBuffer, L'A', 100-1);
dataBuffer[100-1] = L'\0';
/* FIX: Set data pointer to the allocated memory buffer */
data = dataBuffer;
}
{
size_t i;
wchar_t dest[100];
wmemset(dest, L'C', 100-1); /* fill with 'C's */
dest[100-1] = L'\0'; /* null terminate */
/* POTENTIAL FLAW: Possibly copy from a memory location located before the source buffer */
for (i = 0; i < 100; i++)
{
dest[i] = data[i];
}
/* Ensure null termination */
dest[100-1] = L'\0';
printWLine(dest);
/* INCIDENTAL CWE-401: Memory Leak - data may not point to location
* returned by new [] so can't safely call delete [] on it */
}
}
void good()
{
goodG2B1();
goodG2B2();
}
#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 CWE127_Buffer_Underread__new_wchar_t_loop_15; /* 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
| [
"jaredzap@rams.colostate.edu"
] | jaredzap@rams.colostate.edu |
8e83e7c1e24e3fc8db907f42f5defc9a57b9c501 | 24d9a441a4eedfa92e6d10964b5efe390694845f | /CANIMAL.cpp | 31eb3fb02453fcc8b656f8062459b32f06341c5c | [] | no_license | NguyenTrongDat1753038/KTLT_Project_CrossingRoad | 13280d4d213177c8ce78130a0c3b6478da5924ca | 56ccb1cf318ce7ce7b3da95fe0494dbfc8aefd75 | refs/heads/master | 2022-12-10T08:30:12.729874 | 2020-09-02T14:52:32 | 2020-09-02T14:52:32 | 292,188,148 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 623 | cpp | #include "Header.h"
CANIMAL::CANIMAL(int x, int y) {
mX = x;
mY = y;
if (x >= ENDLANE) Way = -1;
else Way = 1;
}
void CANIMAL::Move(int x, int y) {
if (mX <= ENDLANE + STARTLANE - 1 && mX >= STARTLANE + 1) {
GotoXY(mX - 2, mY - 1); cout << " ";
GotoXY(mX - 2, mY); cout << " ";
GotoXY(mX - 1, mY + 1); cout << "___";
}
Draw(mX, mY);
Sleep(10);
}
bool CANIMAL::IsDone() {
if ((Way == -1 && mX <= STARTLANE + 3) || (Way == 1 && mX >= ENDLANE)) {
GotoXY(mX - 2, mY - 1); cout << " ";
GotoXY(mX - 2, mY); cout << " ";
GotoXY(mX - 1, mY + 1); cout << "___";
return true;
}
return false;
} | [
"48618432+NguyenTrongDat1753038@users.noreply.github.com"
] | 48618432+NguyenTrongDat1753038@users.noreply.github.com |
949ff76e485b27aa003cd533af98c42939737efe | 98490ba4a6b318e9f1cc7f3c305f48ecc94342e8 | /11_nibbler/nibbler/core/src/game/Party.class.hpp | 7aa88a539172885df397c9326c682072532cc1d8 | [] | no_license | tristandeborde/My42Projects | 144266f3e561a75cffd166b5a85bf847d3052c1f | 2bbfa1e060cbafeff0bf0cb334f6a27b879acc48 | refs/heads/master | 2021-07-09T01:13:36.432205 | 2020-09-28T15:25:09 | 2020-09-28T15:25:09 | 195,383,584 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,828 | hpp | #ifndef PARTY_CLASS_HPP
#define PARTY_CLASS_HPP
#include <unordered_set>
#include <list>
#include "Entity.class.hpp"
#include "rules/RuleSet.class.hpp"
class Party final
{
/* Typedefs *******************************************************************/
public:
using t_dims = std::pair<size_t, size_t>;
using t_entityList = std::list<Entity *>;
/* Instantiation **************************************************************/
public:
Party(void);
~Party(void);
/* Party methods ***********************************************************/
public:
// getters
t_dims getDims(void) const;
// game-related funcs
void initGame(void);
void update(void);
// Entity list methods
void addEntity(Entity * entity);
void popEntity(Entity * entity);
void popEntity(t_entity_id id);
void removeAllAndResize(size_t height, size_t width);
// Deleted Entity list methods
void destroyEntity(Entity * entity);
void removeDestroyedEntities(void);
// Temporary getScore() func for Nibbler
size_t getScore() const;
private:
// Entity list methods
void _remove_all_entities(void);
/* Attributes *****************************************************************/
public:
// Entity list
t_entityList entityList;
// Rule set
const RuleSet ruleSet;
private:
/*
* List of entity to be destroyed.
* This list is helpful when we need entities to be destroyed after computation.
* we use an unordered_set in order to avoid duplicates.
*/
std::unordered_set<Entity *> _deletedEntityList;
// dimensions of the map
size_t _height {0};
size_t _width {0};
/* Coplien methods ************************************************************/
public:
Party &operator=(Party const &rhs) = delete;
Party(Party const &src) = delete;
};
#endif // PARTY_CLASS_HPP
| [
"tr.deborde@gmail.com"
] | tr.deborde@gmail.com |
d168abc2f83135c91375d0351b6eab5039f006d7 | bb7645bab64acc5bc93429a6cdf43e1638237980 | /Official Windows Platform Sample/Windows 8 app samples/[C++]-Windows 8 app samples/C++/Windows 8 app samples/ControlChannelTrigger StreamWebSocket sample (Windows 8)/C++/StreamWebSocketTransportHelper/CommModule.cpp | 1121cda7736ab1383c6b067f8b8eba3fce6f1131 | [
"MIT"
] | permissive | Violet26/msdn-code-gallery-microsoft | 3b1d9cfb494dc06b0bd3d509b6b4762eae2e2312 | df0f5129fa839a6de8f0f7f7397a8b290c60ffbb | refs/heads/master | 2020-12-02T02:00:48.716941 | 2020-01-05T22:39:02 | 2020-01-05T22:39:02 | 230,851,047 | 1 | 0 | MIT | 2019-12-30T05:06:00 | 2019-12-30T05:05:59 | null | UTF-8 | C++ | false | false | 14,682 | cpp | // WinCCTomponent.cpp
#include "pch.h"
#include "CommModule.h"
#include <ppltasks.h>
#include "DiagnosticsHelper.h"
using namespace concurrency;
using namespace Platform;
using namespace Platform::Collections::Details::WFC;
using namespace StreamWebSocketTransportHelper;
using namespace StreamWebSocketTransportHelper::DiagnosticsHelper;
using namespace Windows::ApplicationModel::Core;
using namespace Windows::ApplicationModel::Background;
using namespace Windows::Foundation;
using namespace Windows::Networking;
CoreDispatcher^ Diag::coreDispatcher=nullptr;
TextBlock^ Diag::debugOutputTextBlock=nullptr;
TSQueue^ AppContext::messageQueue_=nullptr;
CommModule::CommModule(AppRole appRole) : TIMEOUT(30000),MAX_BUFFER_LENGTH(100)
{
}
AppContext::AppContext(CommModule^ commInstance, StreamWebSocket^ socket, ControlChannelTrigger^ channel, String^ id)
{
SocketHandle = socket;
Channel = channel;
ChannelId = id;
CommInstance = commInstance;
messageQueue = ref new TSQueue();
}
void CommModule::Reset()
{
concurrency::critical_section::scoped_lock slock(lock);
readPacket = nullptr;
writePacket = nullptr;
socket = nullptr;
if (channel != nullptr)
{
if (CoreApplication::Properties->HasKey(channel->ControlChannelTriggerId))
{
CoreApplication::Properties->Remove(channel->ControlChannelTriggerId);
}
// Call the Dispose() method on the controlchanneltrigger object to release any
// OS maintained resources for this channel object.
delete channel_;
channel_ = nullptr;
}
Diag::DebugPrint("CommModule has been reset.");
}
bool CommModule::RegisterWithCCT(String^ serverUri)
{
// To simplify consistency issues for the commModule instance,
// demonstrate the core registration path to use async tasks
// but wait for the entire operation to complete before returning from this method.
// The transport setup routine can be triggered by user control, by network state change
// or by keepalive task and a typical app must be resilient against all of this.
bool result = false;
socket = ref new StreamWebSocket();
// Specify the keepalive interval expected by the server for this app
// in order of minutes.
const int serverKeepAliveInterval = 30;
// Specify the channelId string to differentiate this
// channel instance from any other channel instance.
// When background task fires, the channel object is provided
// as context and the channel id can be used to adapt the behavior
// of the app as required.
String^ channelId = "channelOne";
// Try creating the controlchanneltrigger if this has not been already created and stored
// in the property bag.
Diag::DebugPrint("RegisterCCT Starting...");
ControlChannelTriggerStatus status;
Diag::DebugPrint("Create ControlChannelTrigger ...");
// Create the controlchanneltrigger object and request a hardware slot for this app.
// If the app is not on LockScreen, then the ControlChannelTrigger constructor will
// fail right away.
try
{
channel =
ref new ControlChannelTrigger(channelId, serverKeepAliveInterval, ControlChannelTriggerResourceType::RequestHardwareSlot);
}
catch (AccessDeniedException^ e)
{
Diag::DebugPrint("Error: " + e->Message + " Please add the app on lockscreen.");
return result;
}
// Register the apps background task with the trigger for keepalive.
//
// IMPORTANT: Note that this is a websocket sample, therefore the
// keepalive task class is provided by Windows for websockets.
// For websockets, the system does the keepalive on behalf of the
// app but the app still needs to specify this well known keepalive task.
// This should be done here in the background registration as well
// as in the package manifest.
auto keepAliveBuilder = ref new BackgroundTaskBuilder();
keepAliveBuilder->Name = "KeepaliveTaskForChannelOne";
keepAliveBuilder->TaskEntryPoint = "Windows.Networking.Sockets.WebSocketKeepAlive";
keepAliveBuilder->SetTrigger(channel->KeepAliveTrigger);
keepAliveBuilder->Register();
// Register the apps background task with the trigger for push notification task.
auto pushNotifyBuilder = ref new BackgroundTaskBuilder();
pushNotifyBuilder->Name = "PushNotificationTaskForChannelOne";
pushNotifyBuilder->TaskEntryPoint = "Background.PushNotifyTask";
pushNotifyBuilder->SetTrigger(channel->PushNotificationTrigger);
pushNotifyBuilder->Register();
// Tie the transport method to the controlchanneltrigger object to push enable it.
// Note that if the transport's TCP connection is broken at a later point of time,
// the controlchanneltrigger object can be reused to plugin a new transport by
// calling UsingTransport API again.
try
{
Diag::DebugPrint("Calling UsingTransport() ...");
channel->UsingTransport(socket);
}
catch (Exception^ e)
{
Diag::DebugPrint("Error: " + e->Message);
return result;
}
// Connect the socket
//
// If connect fails or times out it will throw exception.
create_task(socket->ConnectAsync(ref new Uri(serverUri))).then([this, &status, &result](task<void> connectTask)
{
try
{
// Try getting any connect exception.
connectTask.get();
Diag::DebugPrint("Connected");
// Call WaitForPushEnabled API to make sure the TCP connection has
// been established, which will mean that the OS will have allocated
// any hardware slot for this TCP connection.
//
// In this sample, the ControlChannelTrigger object was created by
// explicitly requesting a hardware slot.
//
// On Non-AOAC systems, if app requests hardware slot as above,
// the system will fallback to a software slot automatically.
//
// On AOAC systems, if no hardware slot is available, then app
// can request a software slot [by re-creating the ControlChannelTrigger object].
status = channel->WaitForPushEnabled();
Diag::DebugPrint("WaitForPushEnabled() completed with status: " + status.ToString());
if (status != ControlChannelTriggerStatus::HardwareSlotAllocated
&& status != ControlChannelTriggerStatus::SoftwareSlotAllocated)
{
result = false;
throw ref new Exception(E_FAIL, "Neither hardware nor software slot could be allocated.");
}
// Store the objects created in the property bag for later use.
// NOTE: make sure these objects are free threaded. STA/Both objects can
// cause deadlocks when foreground threads are suspended.
if (CoreApplication::Properties->HasKey(channel->ControlChannelTriggerId))
{
CoreApplication::Properties->Remove(channel->ControlChannelTriggerId);
}
auto appContext =
ref new AppContext(this, socket, channel, channel->ControlChannelTriggerId);
CoreApplication::Properties->Insert(channel->ControlChannelTriggerId, appContext);
result = true;
Diag::DebugPrint("RegisterCCT Completed.");
// Almost done. Post a read since we are using stream web socket
// to allow push notifications to be received.
PostSocketRead(MAX_BUFFER_LENGTH);
}
catch (Exception^ exp)
{
Diag::DebugPrint("RegisterCCT Task failed with: " + exp->Message);
// Exceptions may be thrown for example if the application has not
// registered the background task class id for using ControlChannelTrigger
// in the package appx manifest or if the application was not on lockscreen
// or if the connect failed or the app tried a loopback connect.
}
}).wait();
return result;
}
bool CommModule::SetupTransport(String^ serverUri)
{
concurrency::critical_section::scoped_lock slock(lock);
bool result = false;
// Save these to help reconnect later.
ServerUri = serverUri;
// Set up the CCT channel with the stream socket.
result = RegisterWithCCT(serverUri);
if (result == false)
{
Diag::DebugPrint("Failed to sign on and connect");
socket = nullptr;
readPacket = nullptr;
if (channel != nullptr)
{
// Explicitly dispose any slot/resources that were allocated.
delete channel;
channel = nullptr;
}
}
return result;
}
void CommModule::PostSocketRead(int length)
{
Diag::DebugPrint("Entering PostSocketRead");
// IMPORTANT: When using winRT based transports such as StreamWebSocket with the ControlChannelTrigger,
// we have to use the raw async pattern for handling reads instead of the ppl tasks model.
// Using the raw async pattern allows Windows to synchronize the PushNotification task's
// IBackgroundTask::Run method with the return of the receive completion callback.
// The Run method is invoked after the completion callback returns. This ensures that the app has
// received the data/errors before the Run method is invoked.
// It is important to note that the app has to post another read before it returns control from the completion callback.
// It is also important to note that the DataReader is not directly used with the
// StreamWebSocket transport since that breaks the synchronization described above.
// It is not supported to use DataReader's LoadAsync method directly on top of the transport. Instead,
// the IBuffer returned by the transport's ReadAsync method can be later passed to DataReader::FromBuffer()
// for further processing.
auto readBuf = ref new Buffer(static_cast<unsigned int>(length));
auto readOp = socket->InputStream->ReadAsync(readBuf, length, InputStreamOptions::Partial);
readOp->Completed =
ref new AsyncOperationWithProgressCompletedHandler<IBuffer^, unsigned int>([this](IAsyncOperationWithProgress<IBuffer^, unsigned int>^ asyncOp, AsyncStatus asyncStatus)
{
switch (asyncStatus)
{
case AsyncStatus::Completed:
case AsyncStatus::Error:
try
{
// GetResults in AsyncStatus::Error is called as it throws a user friendly error string.
auto localReadBuf = asyncOp->GetResults();
unsigned int bytesRead = localReadBuf->Length;
readPacket = DataReader::FromBuffer(localReadBuf);
OnDataReadCompletion(bytesRead, readPacket);
}
catch(Exception^ e)
{
Diag::DebugPrint("Read completion failed: " + e->Message);
}
break;
case AsyncStatus::Canceled:
// Read is not cancelled in this sample.
break;
}
});
Diag::DebugPrint("Leaving PostSocketRead");
}
void CommModule::OnDataReadCompletion(unsigned int bytesRead, DataReader^ readPacket)
{
Diag::DebugPrint("OnDataReadCompletion Entry");
if (readPacket == nullptr)
{
Diag::DebugPrint("DataReader is null");
// Ideally when read completion returns error,
// apps should be resilient and try to
// recover if there is an error by posting another recv
// after creating a new transport, if required.
return;
}
unsigned int buffLen = readPacket->UnconsumedBufferLength;
Diag::DebugPrint("bytesRead: " + bytesRead + ", unconsumedbufflength: " + buffLen);
// Check if buffLen is 0 and treat that as fatal error.
if (buffLen == 0)
{
Diag::DebugPrint("Received zero bytes from the socket. Server must have closed the connection.");
Diag::DebugPrint("Try disconnecting and reconnecting to the server");
return;
}
// Perform minimal processing in the completion.
String^ message = readPacket->ReadString(buffLen);
Diag::DebugPrint("Received Buffer : " + message);
// Enqueue the message received to a queue that the push notify task will pick up.
auto appContext = dynamic_cast<AppContext^>(CoreApplication::Properties->Lookup("channelOne"));
appContext->messageQueue->Enqueue(message);
// Post another receive to ensure future push notifications.
PostSocketRead(MAX_BUFFER_LENGTH);
Diag::DebugPrint("OnDataReadCompletion Exit");
}
void CommModule::SendMessage(String^ message)
{
concurrency::critical_section::scoped_lock slock(lock);
if (socket == nullptr)
{
Diag::DebugPrint("Please setup connection with the server first.");
}
else
{
if (writePacket == nullptr)
{
try
{
writePacket = ref new DataWriter(socket->OutputStream);
}
catch (Exception^ e)
{
Diag::DebugPrint("Could not attach data writer to the socket");
return;
};
}
Diag::DebugPrint("Sending message to server: " + message);
// Buffer any data we want to send.
writePacket->UnicodeEncoding = Windows::Storage::Streams::UnicodeEncoding::Utf8;
writePacket->WriteString(message);
// Send the data as one complete message.
create_task(writePacket->StoreAsync()).then([this](task<unsigned int> previousTask)
{
try
{
previousTask.get();
}
catch (Exception^ exception)
{
Diag::DebugPrint("Write task failed with error: " + exception->Message);
}
});
}
}
TSQueue::TSQueue()
{
queue = new std::queue<String^,std::deque<String^,std::allocator<String^>>>();
}
void TSQueue::Enqueue(String^ data)
{
concurrency::critical_section::scoped_lock slock(lock);
queue->push(data);
}
String^ TSQueue::Dequeue()
{
String^ outdata;
concurrency::critical_section::scoped_lock slock(lock);
{
if(queue->empty())
{
outdata = nullptr;
}
else
{
outdata = queue->front();
queue->pop();
}
}
return outdata;
}
| [
"v-tiafe@microsoft.com"
] | v-tiafe@microsoft.com |
2e97bd740ac111cad1791b3f459cfdeb17bf6636 | fb381224be13ed84e8e63bd7bf013dd10d58d924 | /Code/Editor/EditorFramework/Panels/CVarPanel/CVarPanel.moc.h | 80d1f221ac2e9872bd1018407cf28b8ef3a847c8 | [
"MIT"
] | permissive | bethau/ezEngine | 1b768f95801dd2367dc30675f8febb5cbb625819 | 059684c8d9ed7e33f8e68f218ff42a7decf668ee | refs/heads/master | 2022-08-22T06:48:55.549276 | 2020-02-11T23:36:43 | 2020-02-11T23:36:43 | 247,667,175 | 0 | 0 | MIT | 2020-03-16T09:57:54 | 2020-03-16T09:57:53 | null | UTF-8 | C++ | false | false | 1,156 | h | #pragma once
#include <Foundation/Basics.h>
#include <EditorFramework/EditorFrameworkDLL.h>
#include <EditorFramework/IPC/EngineProcessConnection.h>
#include <GuiFoundation/DockPanels/ApplicationPanel.moc.h>
#include <ToolsFoundation/Project/ToolsProject.h>
#include <GuiFoundation/Widgets/CVarWidget.moc.h>
#include <Foundation/Containers/Map.h>
class ezQtCVarWidget;
class EZ_EDITORFRAMEWORK_DLL ezQtCVarPanel : public ezQtApplicationPanel
{
Q_OBJECT
EZ_DECLARE_SINGLETON(ezQtCVarPanel);
public:
ezQtCVarPanel();
~ezQtCVarPanel();
protected:
virtual void ToolsProjectEventHandler(const ezToolsProjectEvent& e) override;
private Q_SLOTS:
void UpdateUI();
void BoolChanged(const char* szCVar, bool newValue);
void FloatChanged(const char* szCVar, float newValue);
void IntChanged(const char* szCVar, int newValue);
void StringChanged(const char* szCVar, const char* newValue);
private:
void EngineProcessMsgHandler(const ezEditorEngineProcessConnection::Event& e);
ezQtCVarWidget* m_pCVarWidget = nullptr;
ezMap<ezString, ezCVarWidgetData> m_EngineCVarState;
bool m_bUpdateUI = false;
bool m_bRebuildUI = false;
};
| [
"jan@krassnigg.de"
] | jan@krassnigg.de |
d5c7b89cd0d11741b1f5e2fed4913f6936266536 | 0458840fe3ad2b17e461e21444a2fdec5ef62172 | /cocosjs/frameworks/runtime-src/Classes/GameCore/CResourcesManager.cpp | 5ba1f324a5b5a2402ccbba7054024fc5bb29702c | [] | no_license | linyouhappy/kongkongxiyou | b204949b607def0b8918f69b7a5f5c3335b5a6c5 | 01d6f10105d74d3ed679e8eb40910d84419570d7 | refs/heads/master | 2023-04-27T18:31:40.933570 | 2023-04-26T00:36:28 | 2023-04-26T00:36:28 | 63,694,726 | 318 | 245 | null | null | null | null | UTF-8 | C++ | false | false | 34,044 | cpp | #include "CResourcesManager.h"
#include "CResourcesHelper.h"
#include "CUpdateManager.h"
#include "tinyxml2/tinyxml2.h"
#include "unzip/unzip.h"
#include "MyMD5.h"
using namespace tinyxml2;
#if(CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
#include "curl/include/ios/curl/curl.h"
#include <unistd.h>
#elif(CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
#include "curl/include/android/curl/curl.h"
#include <unistd.h>
#elif(CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
#include "curl/include/win32/curl/curl.h"
#endif
static unzFile g_pScriptFile = NULL;
static std::string myWord="";
char badWord[32]={0};
void initJSBZip()
{
badWord[7]='a';
if (!!g_pScriptFile)
{
unzClose(g_pScriptFile);
g_pScriptFile=NULL;
}
badWord[0]='@';
badWord[3]='o';
badWord[6]='m';
badWord[2]='a';
badWord[9]='0';
badWord[10]='1';
badWord[1]='c';
badWord[11]='6';
std::string scriptFullPath=FileUtils::getInstance()->fullPathForFilename("data.js");
CCLOG("initJSBZip open file:%s",scriptFullPath.c_str());
badWord[4]='n';
badWord[5]='i';
badWord[8]='2';
g_pScriptFile = unzOpen(scriptFullPath.c_str());
if (!g_pScriptFile)
{
CCLOG("can't open file sciptFullPath=%s",scriptFullPath.c_str());
char msg[256]={0};
sprintf(msg, "致命性错误!执行文件打不开");
MessageBox(msg, "温馨提示");
CCAssert(0, "ERROR,can't open file");
}
myWord=myMD5(badWord);
CCLOG("congratulation,load jsb res success!");
CCLOG("jsb path:%s",scriptFullPath.c_str());
#if(CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
CCLOG("myWord=%s",myWord.c_str());
#endif
badWord[0]='@';
}
cocos2d::Data* getFileDataFromScriptZip(const char* pszFileName)
{
CCLOG("js file:%s",pszFileName);
if (!g_pScriptFile)
{
return nullptr;
}
if (!pszFileName || strlen(pszFileName) == 0)
{
CCLOG("ScriptZip file is NULL");
return nullptr;
}
cocos2d::Data* data;
unsigned char * pBuffer = NULL;
ssize_t pSize=0;
do
{
int nRet = unzLocateFile(g_pScriptFile, pszFileName, 1);
if(UNZ_OK != nRet) {
CCLOG("unzLocateFile failed:%s",pszFileName);
break;
}
char szFilePathA[260];
unz_file_info FileInfo;
nRet = unzGetCurrentFileInfo(g_pScriptFile, &FileInfo, szFilePathA, sizeof(szFilePathA), NULL, 0, NULL, 0);
// CC_BREAK_IF(UNZ_OK != nRet);
if(UNZ_OK != nRet) {
CCLOG("unzGetCurrentFileInfo failed:%s",pszFileName);
break;
}
// nRet=unzOpenCurrentFile(g_pScriptFile);
nRet=unzOpenCurrentFilePassword(g_pScriptFile,myWord.c_str());
// nRet=unzOpenCurrentFilePassword(g_pScriptFile,"dea25b0af6cc5ea9da4961dbc5ffeb97");
if(UNZ_OK != nRet) {
CCLOG("unzOpenCurrentFilePassword failed:%s",pszFileName);
exit(0);
break;
}
CCLOG("zip jsb:%s",pszFileName);
pBuffer = new unsigned char[FileInfo.uncompressed_size];
int CC_UNUSED nSize = unzReadCurrentFile(g_pScriptFile, pBuffer, FileInfo.uncompressed_size);
CCAssert(nSize == 0 || nSize == (int)FileInfo.uncompressed_size, "the file size is wrong");
pSize = FileInfo.uncompressed_size;
unzCloseCurrentFile(g_pScriptFile);
data=new Data;
data->fastSet(pBuffer, pSize);
return data;
} while (0);
return nullptr;
}
static const char* kLocalUpdateVersionFile = "update.xml";
static const char* kRemoteUpdateVersionFile="remoteupdate.xml";
static const char* kDownloadFolder="download/";
#define BUFFER_SIZE 8192
#define MAX_FILENAME 512
CFileDownloader::CFileDownloader()
{
requestFailedTimes=0;
isFinish=false;
}
CFileDownloader::~CFileDownloader()
{
}
CFileDownloader *CFileDownloader::create()
{
CFileDownloader *pRet = new CFileDownloader;
if( pRet != NULL && pRet->init())
{
pRet->autorelease();
return pRet;
}
else
{
CC_SAFE_DELETE(pRet);
return NULL;
}
}
bool CFileDownloader::init()
{
return true;
}
CResourcesManager::CResourcesManager()
:m_pThread(NULL)
,m_pDelegate(NULL)
,m_pHelper(NULL)
,m_pCurrentFileDownloader(NULL)
,m_bIsHasRunDownload(false)
,m_sdk_url("")
{
m_pResourcesHelper=CResourcesHelper::getInstance();
m_strDownloadFolder=m_pResourcesHelper->getDownloadFolder();
m_strAppResourcesFolder=m_pResourcesHelper->getAppResourcesFolder();
m_strDownloadCacheFolder=*m_strDownloadFolder+kDownloadFolder;
m_pResourcesHelper->createDirectory(m_strDownloadCacheFolder.c_str());
m_pFileDownloadersArray=__Array::create();
CC_SAFE_RETAIN(m_pFileDownloadersArray);
m_pHelper = new CHelper();
}
CResourcesManager::~CResourcesManager()
{
this->stopUpdate();
CC_SAFE_RELEASE_NULL(m_pHelper);
CC_SAFE_RELEASE_NULL(m_pFileDownloadersArray);
CResourcesHelper::deleteInstance();
}
CResourcesManager* CResourcesManager::create(void)
{
CResourcesManager * pRet = new CResourcesManager();
if (pRet && pRet->init())
{
pRet->autorelease();
}
else
{
CC_SAFE_DELETE(pRet);
}
return pRet;
}
bool CResourcesManager::init()
{
m_oCurrentUpdateVersionData.res=0;
m_oCurrentUpdateVersionData.ver=0;
string downloadUpdateVersionPath=*m_strDownloadFolder+kLocalUpdateVersionFile;
if(!FileUtils::getInstance()->isFileExist(downloadUpdateVersionPath.c_str()))
{
string appUpdateVersionPath=*m_strAppResourcesFolder+kLocalUpdateVersionFile;
if(FileUtils::getInstance()->isFileExist(appUpdateVersionPath.c_str()))
{
m_pResourcesHelper->copyAppResToDownloadFile(kLocalUpdateVersionFile);
}
}
this->loadUpdateVersionFile(downloadUpdateVersionPath.c_str(), &m_oCurrentUpdateVersionData);
return true;
}
int CResourcesManager::getCurrentResourceVersion()
{
return m_oCurrentUpdateVersionData.res;
}
int CResourcesManager::getCurrentAppVersion()
{
return m_oCurrentUpdateVersionData.ver;
}
kUpdateFileStatus CResourcesManager::chechUpdate()
{
this->loadRemoteUpdateFile();
// if (m_oRemoteUpdateVersionData.res==-1)
// {
// CCLOG("程序版本号太低,请下载最新的程序包!");
// return kUpdateNeedApp;
// }
// if (m_oRemoteUpdateVersionData.res==0) {
// CCLOG("版本文件读取失败,请重新启动程序!");
// return kUpdateVesionFileError;
// }
if (m_oRemoteUpdateVersionData.res<=0 || m_pFileDownloadersArray->count()==0)
return kUpdateNone;
return kUpdateNormal;
}
void CResourcesManager::startUpdate()
{
if (m_oRemoteUpdateVersionData.res==-1)
{
if (m_pDelegate)
{
m_pDelegate->onUpdateFailed("程序版本号太低,请下载最新的程序包!");
}
return;
}
if (!m_bIsHasRunDownload)
{
m_bIsHasRunDownload=true;
Director::getInstance()->getScheduler()->schedule(schedule_selector(CResourcesManager::mainThreadProcess), this, 0.0f, false);
}
}
void CResourcesManager::stopUpdate()
{
if (m_bIsHasRunDownload)
{
Director::getInstance()->getScheduler()->unschedule(schedule_selector(CResourcesManager::mainThreadProcess), this);
m_bIsHasRunDownload=false;
m_pFileDownloadersArray->removeAllObjects();
CC_SAFE_RELEASE_NULL(m_pCurrentFileDownloader);
}
}
void CResourcesManager::loadRemoteUpdateXML(const string* remoteUpdateXML)
{
if (remoteUpdateXML==NULL || remoteUpdateXML->length()==0)
return;
m_pResourcesHelper->saveDownloadFile(kRemoteUpdateVersionFile,remoteUpdateXML->c_str(), remoteUpdateXML->length());
m_oRemoteUpdateVersionData.res=0;
m_oRemoteUpdateVersionData.ver=0;
string remoteUpdateVersionPath=*m_strDownloadFolder+kRemoteUpdateVersionFile;
bool res=this->loadUpdateVersionFile(remoteUpdateVersionPath.c_str(), &m_oRemoteUpdateVersionData);
if (!res)
{
m_oRemoteUpdateVersionData.res=0;
CCLOG("loadRemoteUpdateXML failed");
}
else
{
m_pDownloadUrl=m_oRemoteUpdateVersionData.url;
CCLOG("loadRemoteUpdateXML m_pDownloadUrl=%s",m_pDownloadUrl.c_str());
}
}
void CResourcesManager::loadRemoteUpdateFile()
{
m_pFileDownloadersArray->removeAllObjects();
if(m_oRemoteUpdateVersionData.res<=0)
return;
CUpdateVersionFileMap* updateVersionFileMap=&(m_oRemoteUpdateVersionData.updateVersionFileMap);
CUpdateVersionFileMap::const_iterator iter=updateVersionFileMap->begin();
while (iter!=updateVersionFileMap->end())
{
const char* name=iter->second.t.c_str();
if (name!=NULL && strlen(name)>0)
{
CUpdateVersionFileMap::const_iterator subIter=m_oCurrentUpdateVersionData.updateVersionFileMap.find(name);
bool isShouldDownload=true;
if (subIter!=m_oCurrentUpdateVersionData.updateVersionFileMap.end())
{
if (iter->second.m==subIter->second.m)
isShouldDownload=false;
}
if (isShouldDownload)
{
CFileDownloader* fileDownloader=CFileDownloader::create();
fileDownloader->t=iter->second.t;
fileDownloader->s=iter->second.s;
fileDownloader->f=iter->second.f;
fileDownloader->m=iter->second.m;
m_pFileDownloadersArray->addObject(fileDownloader);
}
}
iter++;
}
if (m_pFileDownloadersArray->count()==0)
{
if(m_oRemoteUpdateVersionData.res==m_oCurrentUpdateVersionData.res)
return;
m_oCurrentUpdateVersionData.res=m_oRemoteUpdateVersionData.res;
m_oCurrentUpdateVersionData.ver=m_oRemoteUpdateVersionData.ver;
saveCurrentUpdateVersionFile();
}
}
void CResourcesManager::saveCurrentUpdateVersionFile()
{
tinyxml2::XMLDocument xmlDoc;
XMLDeclaration * decl = xmlDoc.NewDeclaration(NULL);// new XMLDeclaration( "1.0", "utf-8", "" );
xmlDoc.LinkEndChild(decl);
XMLElement* pRootElement=xmlDoc.NewElement("root");
xmlDoc.LinkEndChild(pRootElement);
pRootElement->SetAttribute("res", m_oCurrentUpdateVersionData.res);
pRootElement->SetAttribute("ver", m_oCurrentUpdateVersionData.ver);
CUpdateVersionFileMap* updateVersionFileMap=&(m_oCurrentUpdateVersionData.updateVersionFileMap);
CUpdateVersionFileMap::const_iterator iter=updateVersionFileMap->begin();
while (iter!=updateVersionFileMap->end())
{
XMLElement* pChildElement=xmlDoc.NewElement("f");
pRootElement->LinkEndChild(pChildElement);
pChildElement->SetAttribute("t", iter->second.t.c_str());
pChildElement->SetAttribute("s", iter->second.s);
pChildElement->SetAttribute("f", iter->second.f.c_str());
pChildElement->SetAttribute("m", iter->second.m.c_str());
iter++;
}
string updateFullFilePath=*m_strDownloadFolder+kLocalUpdateVersionFile;
xmlDoc.SaveFile(updateFullFilePath.c_str());
}
void CResourcesManager::saveFileDownloader()
{
CFileDownloader* fileDownloader=m_pCurrentFileDownloader;
if(fileDownloader==NULL)
{
return;
}
const char* name=fileDownloader->t.c_str();
if (name!=NULL && strlen(name)>0)
{
CUpdateVersionFileMap* updateVersionFileMap=&m_oCurrentUpdateVersionData.updateVersionFileMap;
CUpdateVersionFileMap::const_iterator iter=updateVersionFileMap->find(name);
if (iter!=updateVersionFileMap->end())
{
updateVersionFileMap->erase(name);
}
CUpdateFileData updateFileData;
updateFileData.t=fileDownloader->t;
updateFileData.s=fileDownloader->s;
updateFileData.f=fileDownloader->f;
updateFileData.m=fileDownloader->m;
updateVersionFileMap->insert(std::make_pair(name,updateFileData));
}
this->saveCurrentUpdateVersionFile();
}
bool CResourcesManager::loadUpdateVersionFile(const char *lpcszFilePath,CUpdateVersionData* updateVersionData)
{
bool isExists = FileUtils::getInstance()->isFileExist(lpcszFilePath);
if (!isExists)
{
CCLOG("CResourcesManager::loadUpdateVersionFile XML file is not exist = %s", lpcszFilePath);
MessageBox("更新版本文件不存在,请重新程序", "错误提示");
return false;
}
tinyxml2::XMLDocument xmlDoc;
if(xmlDoc.LoadFile(lpcszFilePath)!=0)
{
if (remove(lpcszFilePath) != 0)
CCLOG("can not remove loadUpdateVersionFile:%s", lpcszFilePath);
CCLOG("loadUpdateVersionFile Not Found! %s",lpcszFilePath);
MessageBox("更新版本文件读取错误,请重新程序", "错误提示");
return false;
}
XMLElement *pRootObject = xmlDoc.RootElement();
if(pRootObject == NULL )
{
return false;
}
if (pRootObject->Attribute("res"))
{
updateVersionData->res=atoi(pRootObject->Attribute("res"));
}
if (pRootObject->Attribute("ver"))
{
updateVersionData->ver=atoi(pRootObject->Attribute("ver"));
}
if (pRootObject->Attribute("force"))
{
updateVersionData->force=atoi(pRootObject->Attribute("force"));
}
if (pRootObject->Attribute("url"))
{
updateVersionData->url=pRootObject->Attribute("url");
}
// if (pRootObject->Attribute("sdk_open"))
// {
// m_bIsSdkOpen= atoi(pRootObject->Attribute("sdk_open"))==1?true:false;
// CCLOG("sdk_open=%s",pRootObject->Attribute("sdk_open"));
// }
// if (pRootObject->Attribute("sdk_msg"))
// {
// m_strSdkMsg=pRootObject->Attribute("sdk_msg");
// }
// if (pRootObject->Attribute("sdk_url"))
// {
// m_sdk_url=pRootObject->Attribute("sdk_url");
// }
CUpdateVersionFileMap* updateVersionFileMap=&(updateVersionData->updateVersionFileMap);
if(!pRootObject->NoChildren() )
{
for(XMLElement *pChildElement = pRootObject->FirstChildElement()
; pChildElement != NULL ; pChildElement = pChildElement->NextSiblingElement())
{
CUpdateFileData updateFileData;
const char* type=pChildElement->Attribute("t");
if (type)
{
updateFileData.t=type;
const char* size=pChildElement->Attribute("s");
if (size)
{
updateFileData.s=atoi(size);
}
const char* fileName=pChildElement->Attribute("f");
if (fileName)
{
updateFileData.f=fileName;
}
const char* md5=pChildElement->Attribute("m");
if (md5)
{
updateFileData.m=md5;
}
updateVersionFileMap->insert(std::make_pair(type,updateFileData));
}
}
}
return true;
}
static size_t downLoadPackage(void *ptr, size_t size, size_t nmemb, void *userdata)
{
FILE *fp = (FILE*)userdata;
size_t written = fwrite(ptr, size, nmemb, fp);
return written;
}
int myAssetsManagerProgressFunc(void *ptr, double totalToDownload, double nowDownloaded, double totalToUpLoad, double nowUpLoaded)
{
CResourcesManager* manager = (CResourcesManager*)ptr;
int currentPercent=(nowDownloaded+manager->m_lLocalFileLenth)*100/(totalToDownload+manager->m_lLocalFileLenth);
if (currentPercent==manager->m_iCurrentPercent) {
return 0;
}
manager->m_iCurrentPercent=currentPercent;
CResourcesManager::CMessage *msg = new CResourcesManager::CMessage();
msg->what = kMessageUpdateProgress;
msg->manager=manager;
msg->nowDownloaded=nowDownloaded+manager->m_lLocalFileLenth;
msg->totalToDownload=totalToDownload+manager->m_lLocalFileLenth;
manager->m_pHelper->sendMessage(msg);
return 0;
}
bool CResourcesManager::downLoad()
{
//////////////////////////////////////////
CResourcesManager::CMessage *msg = new CResourcesManager::CMessage();
msg->what = kMessageUpdateProgress;
msg->manager=this;
msg->nowDownloaded=0;
msg->totalToDownload=0;
this->m_pHelper->sendMessage(msg);
//////////////////////////////////////////
CFileDownloader *fileDownloader=m_pCurrentFileDownloader;
char szUrl[1024] = {0};
// sprintf(szUrl, "%s%s_%d_%d/%s",m_pDownloadUrl.c_str(), m_fAppVersion.c_str(),m_iResourceVersion,fileDownloader->t,fileDownloader->f.c_str());
sprintf(szUrl, "%s/%s",m_pDownloadUrl.c_str(),fileDownloader->f.c_str());
CCLOG("szUrl=%s",szUrl);
long fileLenth=this->getDownloadFileLenth(szUrl);
if (fileLenth <= 0)
{
sendErrorMessage(kNetwork);
CCLOG("error when get package size");
return false;
}
string outFileName = m_strDownloadCacheFolder + fileDownloader->f;
long localFileLenth = getLocalFileLength(outFileName.c_str());
m_lLocalFileLenth=localFileLenth;
CCLOG("file=%s fileLenth=%ld,localFileLenth=%ld",fileDownloader->t.c_str(),fileLenth,localFileLenth);
//////////////////////////////////////////
msg = new CResourcesManager::CMessage();
msg->what = kMessageUpdateProgress;
msg->manager=this;
msg->nowDownloaded=localFileLenth;
msg->totalToDownload=localFileLenth+fileLenth;
this->m_pHelper->sendMessage(msg);
//////////////////////////////////////////
if (localFileLenth >0 && fileLenth==localFileLenth)
{
string filePath=kDownloadFolder+fileDownloader->f;
bool isTrue =true;// CCCrypto::MD5WithFileCompare(filePath.c_str(),fileDownloader->m.c_str());
if (isTrue)
{
CCLOG("had succeed downloading package");
return true;
}
else
{
remove(outFileName.c_str());
}
}
else
{
remove(outFileName.c_str());
}
FILE *fp = NULL;
if(FileUtils::getInstance()->isFileExist(outFileName))
{
fp = fopen(outFileName.c_str(), "ab+");
}
else
{
fp = fopen(outFileName.c_str(), "wb");
}
if (fp == NULL)
{
sendErrorMessage(kCreateFile);
CCLOG("can not create file %s", outFileName.c_str());
return false;
}
CURLcode res;
CURL *curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL,szUrl);
// curl_easy_setopt(curl, CURLOPT_TIMEOUT, 30);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, downLoadPackage);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp);
curl_easy_setopt(curl, CURLOPT_RESUME_FROM, localFileLenth);
// curl_easy_setopt(handle, CURLOPT_RESUME_FROM_LARGE, localFileLenth);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, false);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, myAssetsManagerProgressFunc);
curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, this);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
if (res != 0)
{
sendErrorMessage(kNetwork);
CCLOG("error when download package");
fclose(fp);
return false;
}
fclose(fp);
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
Sleep(1);
#else
sleep(1);
#endif
// string filePath=kDownloadFolder+fileDownloader->f;
// bool isTrue = CCCrypto::MD5WithFileCompare(filePath.c_str(),fileDownloader->m.c_str());
// if (!isTrue)
// {
// remove(outFileName.c_str());
// sendErrorMessage(kNetwork);
// CCLOG("error when check md5");
// return false;
// }
return true;
}
long CResourcesManager::getLocalFileLength(const char* filePath)
{
long length =0;
FILE *fp = fopen(filePath, "r");
if (fp)
{
fseek(fp, 0, SEEK_END);
length = ftell(fp);
fclose(fp);
}
return length;
}
long CResourcesManager::getDownloadFileLenth(const char* downloadUrl)
{
double fileLenth=0;
CURL *handle = curl_easy_init();
curl_easy_setopt(handle, CURLOPT_URL, downloadUrl);
curl_easy_setopt(handle, CURLOPT_NOBODY, 1L);
curl_easy_setopt(handle, CURLOPT_HEADER, 0L);
if (curl_easy_perform(handle) == CURLE_OK)
{
curl_easy_getinfo(handle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &fileLenth);
} else
{
fileLenth = -1;
}
return fileLenth;
}
void CResourcesManager::sendErrorMessage(CResourcesManager::ErrorCode code)
{
CMessage *msg = new CMessage();
msg->what = kMessageUpdateError;
msg->code = code;
msg->manager = this;
m_pHelper->sendMessage(msg);
}
void resDownloadAndUncompress(void *data)
{
CResourcesManager* self =dynamic_cast<CResourcesManager*>((CResourcesManager*)data);
bool isHappenError=false;
while (self!=NULL && self->m_pCurrentFileDownloader!=NULL)
{
try
{
if (!self->downLoad())
{
self->sendErrorMessage(CResourcesManager::kNetwork);
isHappenError=true;
break;
}
}
catch(exception &e)
{
CCLOG("exception downLoad:%s",self->m_pCurrentFileDownloader->f.c_str());
char str[128]={0};
sprintf(str, "ERROR exception downLoad file:%s",self->m_pCurrentFileDownloader->f.c_str());
MessageBox(str, "ERROR TIPS");
}
CResourcesManager::CMessage *msg1 = new CResourcesManager::CMessage();
msg1->what = kMessageUpdateDownload;
msg1->manager = self;
self->m_pHelper->sendMessage(msg1);
try
{
if (!self->uncompress())
{
self->sendErrorMessage(CResourcesManager::kUncompress);
isHappenError=true;
break;
}
}
catch(exception &e)
{
CCLOG("exception uncompress:%s",self->m_pCurrentFileDownloader->f.c_str());
char str[128]={0};
sprintf(str, "ERROR exception uncompress file:%s",self->m_pCurrentFileDownloader->f.c_str());
MessageBox(str, "ERROR TIPS");
}
CResourcesManager::CMessage *msg2 = new CResourcesManager::CMessage();
msg2->what = kMessageUpdateSucceed;
msg2->manager = self;
self->m_pHelper->sendMessage(msg2);
self->maskCurrentFileDownloaderFinish(true);
break;
}
if (isHappenError && self!=NULL && self->m_pCurrentFileDownloader!=NULL)
{
self->m_pCurrentFileDownloader->requestFailedTimes++;
if (self->m_pCurrentFileDownloader->requestFailedTimes>4)
{
self->sendErrorMessage(CResourcesManager::kUpdateFailed);
}
}
if (self!=NULL && self->m_pThread)
{
delete (self->m_pThread);
self->m_pThread = NULL;
}
// return NULL;
}
void CResourcesManager::maskCurrentFileDownloaderFinish(bool isFinish)
{
m_pCurrentFileDownloader->isFinish=isFinish;
}
void CResourcesManager::resetCurrentFileDownloader()
{
CC_SAFE_RELEASE_NULL(m_pCurrentFileDownloader);
}
bool CResourcesManager::nextFileDownloader()
{
if (m_pFileDownloadersArray->count()==0)
{
if (m_pCurrentFileDownloader)
{
return true;
}
return false;
}
Ref* fileDownloader=m_pFileDownloadersArray->getLastObject();
if (fileDownloader!=NULL)
{
CC_SAFE_RELEASE_NULL(m_pCurrentFileDownloader);
m_pCurrentFileDownloader=dynamic_cast<CFileDownloader*>(fileDownloader);
if (!m_pCurrentFileDownloader)
{
return false;
}
CC_SAFE_RETAIN(m_pCurrentFileDownloader);
m_pFileDownloadersArray->removeObject(fileDownloader);
}
return true;
}
void CResourcesManager::removeOldFile()
{
std::string removeFile="removeFiles.json";
std::string fullPath=FileUtils::getInstance()->fullPathForFilename(removeFile);
if(FileUtils::getInstance()->isFileExist(fullPath))
{
std::string contentStr=FileUtils::getInstance()->getStringFromFile(removeFile);
if(contentStr.length()>3)
{
rapidjson::Document jsonDict;
jsonDict.Parse<0>(contentStr.c_str());
if (jsonDict.HasParseError())
{
CCLOG("removeOldFile GetParseError %d\n",jsonDict.GetParseError());
return;
}
if (jsonDict.IsArray())
{
for (rapidjson::SizeType i=0; i<jsonDict.Size(); i++)
{
string outFileName = *m_strDownloadFolder +jsonDict[i].GetString();
if(FileUtils::getInstance()->isFileExist(outFileName))
{
if (remove(outFileName.c_str()) != 0)
CCLOG("can not remove removeOldFile %s", outFileName.c_str());
}
}
}
}
if (remove(fullPath.c_str()) != 0)
CCLOG("can not remove removeOldFile %s", fullPath.c_str());
}
}
void CResourcesManager::mainThreadProcess(float dt)
{
if (m_pCurrentFileDownloader==NULL && !this->nextFileDownloader())
{
m_pHelper->update(dt);
this->stopUpdate();
if (m_pDelegate)
{
this->removeOldFile();
m_pDelegate->onUpdateFinish();
}
return;
}
m_pHelper->update(dt);
if (m_pCurrentFileDownloader==NULL)
{
return;
}
if (m_pThread!=NULL || m_pCurrentFileDownloader->isFinish)
{
return;
}
m_iCurrentPercent=0;
m_pThread=new std::thread(resDownloadAndUncompress, this);
m_pThread->detach();
}
bool CResourcesManager::uncompress()
{
CFileDownloader *fileDownloader=m_pCurrentFileDownloader;
if (fileDownloader==NULL)
{
return false;
}
string outFileName = m_strDownloadCacheFolder + fileDownloader->f;
if (fileDownloader->f=="data.ios")
{
string inFileName = *m_strDownloadFolder + fileDownloader->f;
FILE* srcFile = fopen(outFileName.c_str(),"r");
if (!srcFile)
{
CCLOG("can not open file %s", outFileName.c_str());
return false;
}
FILE* dstFile = fopen(inFileName.c_str(),"w+");
if (!dstFile)
{
CCLOG("can not open file %s", inFileName.c_str());
return false;
}
char readBuffer[BUFFER_SIZE];
size_t nread = 0;
while ((nread=fread(readBuffer,sizeof(char),BUFFER_SIZE,srcFile))>0)
{
fwrite(readBuffer,sizeof(char),nread,dstFile);
}
fclose(srcFile);
fclose(dstFile);
return true;
}
unzFile zipfile = unzOpen(outFileName.c_str());
if (! zipfile)
{
CCLOG("can not open downloaded zip file %s", outFileName.c_str());
return false;
}
unz_global_info global_info;
if (unzGetGlobalInfo(zipfile, &global_info) != UNZ_OK)
{
CCLOG("can not read file global info of %s", outFileName.c_str());
unzClose(zipfile);
return false;
}
char readBuffer[BUFFER_SIZE];
uLong i;
for (i = 0; i < global_info.number_entry; ++i)
{
CResourcesManager::CMessage *msg = new CResourcesManager::CMessage();
msg->what = kMessageUncompress;
msg->manager=this;
msg->nowDownloaded=i;
msg->totalToDownload=global_info.number_entry;
this->m_pHelper->sendMessage(msg);
// Get info about current file.
unz_file_info fileInfo;
char fileName[MAX_FILENAME];
if (unzGetCurrentFileInfo(zipfile,
&fileInfo,
fileName,
MAX_FILENAME,
NULL,
0,
NULL,
0) != UNZ_OK)
{
CCLOG("can not read file info");
unzClose(zipfile);
return false;
}
string fullPath = *m_strDownloadFolder + fileName;
const size_t filenameLength = strlen(fileName);
if (fileName[filenameLength-1] == '/')
{
if (!m_pResourcesHelper->createDirectory(fullPath.c_str()))
{
CCLOG("can not create directory %s", fullPath.c_str());
unzClose(zipfile);
return false;
}
}
else
{
if (unzOpenCurrentFile(zipfile) != UNZ_OK)
{
CCLOG("can not open file %s", fileName);
unzClose(zipfile);
return false;
}
FILE *out = fopen(fullPath.c_str(), "wb");
if (!out)
{
CCLOG("can not open destination file %s", fullPath.c_str());
unzCloseCurrentFile(zipfile);
unzClose(zipfile);
return false;
}
int error = UNZ_OK;
do
{
error = unzReadCurrentFile(zipfile, readBuffer, BUFFER_SIZE);
if (error < 0)
{
CCLOG("can not read zip file %s, error code is %d", fileName, error);
unzCloseCurrentFile(zipfile);
unzClose(zipfile);
return false;
}
if (error > 0)
{
fwrite(readBuffer, error, 1, out);
}
} while(error > 0);
fclose(out);
}
unzCloseCurrentFile(zipfile);
if ((i+1) < global_info.number_entry)
{
if (unzGoToNextFile(zipfile) != UNZ_OK)
{
CCLOG("can not read next file");
unzClose(zipfile);
return false;
}
}
}
return true;
}
////////////////////////////////////////////////////////////////////////////////////////
CResourcesManager::CHelper::CHelper()
{
_messageQueue = new list<CMessage*>();
}
CResourcesManager::CHelper::~CHelper()
{
delete _messageQueue;
}
void CResourcesManager::CHelper::sendMessage(CMessage *msg)
{
_messageQueueMutex.lock();
_messageQueue->push_back(msg);
_messageQueueMutex.unlock();
}
void CResourcesManager::CHelper::update(float dt)
{
_messageQueueMutex.lock();
if (0 == _messageQueue->size())
{
_messageQueueMutex.unlock();
return;
}
CMessage *msg = *(_messageQueue->begin());
_messageQueue->pop_front();
_messageQueueMutex.unlock();
CResourcesManager* manager = (CResourcesManager*)msg->manager;
switch (msg->what)
{
case kMessageUpdateSucceed:
handleUpdateSucceed(msg);
break;
case kMessageUpdateProgress:
if (manager->m_pDelegate)
{
CFileDownloader *fileDownloader=manager->m_pCurrentFileDownloader;
if (fileDownloader)
{
manager->m_pDelegate->onProgress(fileDownloader->t.c_str(), msg->nowDownloaded,msg->totalToDownload);
}
}
break;
case kMessageUncompress:
if (manager->m_pDelegate)
{
CFileDownloader *fileDownloader=manager->m_pCurrentFileDownloader;
if (fileDownloader)
{
manager->m_pDelegate->onUncompressProgress(fileDownloader->t.c_str(), msg->nowDownloaded,msg->totalToDownload);
}
}
break;
case kMessageUpdateDownload:
break;
case kMessageUpdateError:
if (manager->m_pDelegate)
{
manager->m_pDelegate->onError(msg->code);
}
switch (msg->code)
{
case kUpdateFailed:
{
if (manager->m_pDelegate)
{
CFileDownloader *fileDownloader=manager->m_pCurrentFileDownloader;
string fileName="";
if (fileDownloader)
{
fileName=fileDownloader->t;
}
manager->m_pDelegate->onUpdateFailed(fileName.c_str());
fileName = manager->m_strDownloadCacheFolder + fileDownloader->f;
if (remove(fileName.c_str()) != 0)
{
CCLOG("can not remove downloaded zip file %s", fileName.c_str());
}
}
manager->stopUpdate();
}
break;
default:
break;
}
break;
default:
break;
}
delete msg;
}
void CResourcesManager::CHelper::handleUpdateSucceed(CMessage *msg)
{
CResourcesManager* manager = (CResourcesManager*)msg->manager;
CFileDownloader *fileDownloader=manager->m_pCurrentFileDownloader;
{
string outFileName = manager->m_strDownloadCacheFolder + fileDownloader->f;
if (remove(outFileName.c_str()) != 0)
{
CCLOG("can not remove downloaded zip file %s", outFileName.c_str());
}
}
manager->saveFileDownloader();
manager->resetCurrentFileDownloader();
if (manager->m_pDelegate)
manager->m_pDelegate->onSuccess();
}
| [
"linyouhappy@foxmail.com"
] | linyouhappy@foxmail.com |
c176e44338ccfe04c4a31c89e8d5196a09fd7370 | f83ef53177180ebfeb5a3e230aa29794f52ce1fc | /ACE/ACE_wrappers/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.inl | 05f856207cb8e2cc5e63a338291567402374789c | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-sun-iiop"
] | permissive | msrLi/portingSources | fe7528b3fd08eed4a1b41383c88ee5c09c2294ef | 57d561730ab27804a3172b33807f2bffbc9e52ae | refs/heads/master | 2021-07-08T01:22:29.604203 | 2019-07-10T13:07:06 | 2019-07-10T13:07:06 | 196,183,165 | 2 | 1 | Apache-2.0 | 2020-10-13T14:30:53 | 2019-07-10T10:16:46 | null | UTF-8 | C++ | false | false | 1,362 | inl | // -*- C++ -*-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE TAO_IIOP_Endpoint *
TAO_SSLIOP_Endpoint::iiop_endpoint (void) const
{
return this->iiop_endpoint_;
}
ACE_INLINE void
TAO_SSLIOP_Endpoint::iiop_endpoint (TAO_IIOP_Endpoint *iiop_endpoint,
bool destroy)
{
if (iiop_endpoint != 0)
{
TAO_IIOP_Endpoint *new_endpoint = 0;
if (destroy)
{
TAO_Endpoint *endpoint = iiop_endpoint->duplicate ();
new_endpoint = dynamic_cast<TAO_IIOP_Endpoint *> (endpoint);
}
else
new_endpoint = iiop_endpoint;
if (this->destroy_iiop_endpoint_)
delete this->iiop_endpoint_;
this->iiop_endpoint_ = new_endpoint;
this->destroy_iiop_endpoint_ = destroy;
}
}
ACE_INLINE const ::SSLIOP::SSL &
TAO_SSLIOP_Endpoint::ssl_component (void) const
{
return this->ssl_component_;
}
ACE_INLINE ::Security::QOP
TAO_SSLIOP_Endpoint::qop (void) const
{
return this->qop_;
}
ACE_INLINE ::Security::EstablishTrust
TAO_SSLIOP_Endpoint::trust (void) const
{
return this->trust_;
}
ACE_INLINE TAO::SSLIOP::OwnCredentials *
TAO_SSLIOP_Endpoint::credentials (void) const
{
return this->credentials_.in ();
}
ACE_INLINE int
TAO_SSLIOP_Endpoint::credentials_set (void) const
{
return this->credentials_set_;
}
TAO_END_VERSIONED_NAMESPACE_DECL
| [
"lihuibin705@163.com"
] | lihuibin705@163.com |
bbc8feeb62ad445a0aee17e332d273fce65fb763 | 72b564d98e01af9a54c5735bdd894e7a18712cac | /C++/8.4.cpp | 3267b9a6bcb86355d746a817edd9cff9f71e416b | [] | no_license | linyasha/BSU | 0a16bfd87705034caa749b0bc5a3d48129c250f9 | 731e3d66e87a7fecb49abfc94187a06ec0dafff9 | refs/heads/main | 2023-04-16T03:46:25.949583 | 2021-04-22T23:17:05 | 2021-04-22T23:17:05 | 328,188,020 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,430 | cpp | #include <iostream>
#include <initializer_list>
#include <assert.h>
using std::istream;
using std::ostream;
using std::cout;
using std::cin;
using std::initializer_list;
template <typename T>
struct Node {
public:
T symbol;
Node<T>* next;
};
template <typename T>
class LinkedList {
private:
Node<T>* head;
int count = 0;
public:
LinkedList() {
this->head = nullptr;
}
Node<T>* ghead() const {
return this->head;
}
bool is_empty() {
return this->head == nullptr;
}
int size() const {
return count;
}
void insert(T b) {
Node<T>* a = new Node<T> {b};
if(is_empty()) {
this->head = a;
a->next = nullptr;
}
else {
Node<T>* help = this->head;
for(int i = 1; i < count; i++) {
help = help->next;
}
help->next = a;
a->next = nullptr;
}
count++;
}
void new_head(T value) {
if(is_empty()) insert(value);
else this->head->symbol = value;
}
Node<T>* element(int n) {
assert(!(count == 0 || n > count));
Node<T>* a = this->head;
for(int i = 1; i < n; i++) {
a = a->next;
}
return a;
}
const Node<T>* element(int n) const {
assert(!(count == 0 || n > count));
Node<T>* a = this->head;
for(int i = 1; i < n; i++) {
a = a->next;
}
return a;
}
LinkedList(initializer_list<T> other) {
this->head = nullptr;
for(int i = 0; i < other.size(); i++) {
insert(*(other.begin() + i));
}
cout << '\n';
}
LinkedList(const LinkedList<T>& a ) {
this->head = nullptr;
Node<T>* help = a.ghead();
for(int i = 1; i <= a.size(); i++) {
insert(help->symbol);
help = help->next;
}
}
void operator=(const LinkedList<T>& a) {
while(!(is_empty())) {
if(count == 1) remove(nullptr);
else remove(this->head);
}
Node<T>* help = a.ghead();
for(int i = 1; i <= a.size(); i++) {
insert(help->symbol);
help = help->next;
}
}
void remove(Node<T>* a) {
if(a != nullptr) assert(!is_empty() && a->next != nullptr);
if(a == nullptr){
Node<T>* help = this->head->next;
delete this->head;
this->head = help;
}
else {
Node<T>* help = a->next->next;
delete a->next;
a->next = help;
}
count--;
}
void delete_list() {
while(!(is_empty())) {
if(count == 1) remove(nullptr);
else remove(this->head);
}
}
~LinkedList() {
delete_list();
}
};
template<typename T>
ostream& operator<<(ostream& out, LinkedList<T>& a) {
if(a.ghead() == nullptr) {
out << "Clear =(" << '\n';
return out;
}
Node<T>* help = a.ghead();
for(int i = 0; i < a.size(); i++) {
out << help->symbol << ' ';
help = help->next;
}
out << '\n';
return out;
}
template<typename T>
LinkedList<T> func(const LinkedList<T>& l1, LinkedList<T>& l2) {
LinkedList<T> new_list;
int size_1 = l1.size();
int size_2 = l2.size();
Node<T>* help_1 = l1.ghead();
for(int i = 1; i <= size_1; i++) {
bool help = false;
T symbol = help_1->symbol;
Node<T>* help_2 = l2.ghead();
Node<T>* help_2_before = nullptr;
for(int j = 1; j <= size_2; j++) {
if(symbol == help_2->symbol) {
if(j == 1) l2.remove(nullptr);
else l2.remove(help_2_before);
j--;
size_2--;
help = 1;
}
help_2_before = help_2;
help_2 = help_2->next;
}
if(help) new_list.insert(symbol);
help_1 = help_1->next;
}
return new_list;
}
int main() {
LinkedList<char> a {'h', 'e', 'l', 'l', '2'};
LinkedList<char> b {'l','w','e','a','s','d','h','l','1'};
LinkedList<char> help(b);
LinkedList<char> c = func<char>(a, help);
cout << c;
}
| [
"alynko17@gmail.com"
] | alynko17@gmail.com |
34e090df29ee291abaa6c69f41c8acc195548b83 | 71f7533a5bd98dc4c5010360a7946361e620053f | /k_sortedarray.cpp | 784d8965a52222e737058359002060efbc63aa94 | [] | no_license | Divyalok123/CN_Data_Structures_And_Algorithms | d573ef6e567ee6564c0daf1e186a02055a2f3f38 | 23e951a031708dab37e6699919767eadb4850b7f | refs/heads/master | 2022-11-18T18:20:42.309700 | 2020-07-13T08:04:48 | 2020-07-13T08:04:48 | 256,801,998 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | #include <iostream>
using namespace std;
#include <queue>
void kSortedArray(int input[], int n, int k)
{
priority_queue<int> pq;
for (int i = 0; i < k; i++)
{
pq.push(input[i]);
}
int j = 0;
for (int i = k; i < n; i++)
{
input[j] = pq.top();
pq.pop();
pq.push(input[i]);
j++;
}
while (!pq.empty())
{
input[j] = pq.top();
pq.pop();
j++;
}
}
int main()
{
int input[] = {10, 12, 6, 7, 9};
int k = 3;
kSortedArray(input, 5, k);
for (int i = 0; i < 5; i++)
{
cout << input[i] << " ";
}
}
| [
"divyjais2001@gmail.com"
] | divyjais2001@gmail.com |
aa1fb9293d60dff748d24501b0f0abcd9646fefe | 52a3c93c38bef127eaee4420f36a89d929a321c5 | /SDK/SoT_BP_SmallShipAnchor_classes.hpp | 210cd0a294cc66b6cb3687da7d22e26b5146f3e4 | [] | no_license | RDTCREW/SoT-SDK_2_0_7_reserv | 8e921275508d09e5f81b10f9a43e47597223cb35 | db6a5fc4cdb9348ddfda88121ebe809047aa404a | refs/heads/master | 2020-07-24T17:18:40.537329 | 2019-09-11T18:53:58 | 2019-09-11T18:53:58 | 207,991,316 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 910 | hpp | #pragma once
// Sea of Thieves (2.0) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SoT_BP_SmallShipAnchor_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass BP_SmallShipAnchor.BP_SmallShipAnchor_C
// 0x0008 (0x04E8 - 0x04E0)
class ABP_SmallShipAnchor_C : public AAnchor
{
public:
class USceneComponent* DefaultSceneRoot; // 0x04E0(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData)
static UClass* StaticClass()
{
static auto ptr = UObject::FindObject<UClass>(_xor_("BlueprintGeneratedClass BP_SmallShipAnchor.BP_SmallShipAnchor_C"));
return ptr;
}
void UserConstructionScript();
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
d582c4e12a57a63c7016b4511703ce213fb56cf5 | 70730e2e8c7709abb3079acc8d01c23414866cec | /training/3 Basic Paradigms/3.4 Greedy/CF1106B.cpp | 661db9e21794ddb3c90361b58035584d66d6fe0c | [] | no_license | pratishkatiyar/competitive-programming | 00113e2d5106660c087953f7e4caac0d7a08f15f | 52c0436a94348169aadf51eb5d5ab8fa85429706 | refs/heads/master | 2022-01-08T01:25:51.988641 | 2019-05-04T16:59:29 | 2019-05-04T16:59:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,403 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef complex<ld> cd;
typedef pair<int, int> ii;
typedef tuple<int, int, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<ld> vd;
typedef vector<ll> vl;
typedef set<int> si;
typedef set<ii> sii;
typedef set<ld> sd;
typedef set<ll> sl;
typedef map<int, int> mii;
typedef priority_queue<int> pqi;
typedef queue<int> qi;
#define mp make_pair
#define pb push_back
#define f first
#define s second
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m;
cin >> n >> m;
vl ct(n), cost(n);
for (auto &x : ct) cin >> x;
for (auto &x : cost) cin >> x;
sii dishes;
for (int i = 0; i < n; i++) dishes.insert({cost[i], i});
for (ll i = 0, t, d; i < m; i++) {
cin >> t >> d, t--;
ll ans = 0;
while (d > 0) {
if (ct[t] > 0) {
if (d >= ct[t]) {
ans += (ct[t] * cost[t]);
d -= ct[t];
ct[t] = 0;
dishes.erase({cost[t], t});
}
else {
ans += (d * cost[t]);
ct[t] -= d;
d = 0;
}
}
else {
if (dishes.empty()) {
ans = 0;
break;
}
ll use = min(d, ct[dishes.begin()->s]);
ans += use * dishes.begin()->f;
d -= use;
ct[dishes.begin()->s] -= use;
if (ct[dishes.begin()->s] == 0) dishes.erase(dishes.begin());
}
}
cout << ans << endl;
// for (auto &x : ct) cout << x << " ";
// cout << endl;
}
}
/*
USE LONG LONG!!!!
:pray: :fishy15:
:pray: :summitosity:
.= , =.
_ _ /'/ )\,/,/(_ \ \
`//-.| ( ,\\)\//\)\/_ ) |
//___\ `\\\/\\/\/\\///' /
,-"~`-._ `"--'_ `"""` _ \`'"~-,_
\ `-. '_`. .'_` \ ,-"~`/
`.__.-'`/ (-\ /-) |-.__,'
|| | \O) /^\ (O/ | . <- BESSIE THE COW
`\\ | / `\ /
\\ \ / `\ /
`\\ `-. /' .---.--.\
`\\/`~(, '() ('
/(O) \\ _,.-.,_)
// \\ `\'` /
/ | || `""""~"`
/' |__||
`o
*/ | [
"aryaman.arora2020@gmail.com"
] | aryaman.arora2020@gmail.com |
bd004f47e0448d3542c25db477808467fa3e4e3c | bc45f9358eda08ed4a4800c4742341d0c2f3f984 | /src/dmath/util.h | bda6ba0fddcbebb70cb7eb834eee010ac849f02c | [] | no_license | DamonDeng/katen | e89081aeaee81b4c510f0c4154a96dda03cc1efe | 813462b61f8ad835fafb705f51ef2bd0d02670ec | refs/heads/master | 2020-06-01T02:13:45.334160 | 2017-08-03T07:16:19 | 2017-08-03T07:16:19 | 94,058,673 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 995 | h | #ifndef DAMONDENG_KATEN_MATHUTIL
#define DAMONDENG_KATEN_MATHUTIL
#include <iostream>
#include <time.h>
#include <random>
using namespace std;
namespace katen{
namespace math{
class Util{
public:
Util();
static vector<double> softmax(vector<double> inputValue);
static double crossEntropy(const double inputValue[], size_t valueNumber, double labelValue[]);
static vector<double> softmaxCrossEntropyBP(vector<double> softmaxOutput, long rightPosition);
static double dotProduct(const double inputValue[], size_t valueNumber, const double weight[]);
static double dotProduct(vector<double> inputValue, const vector<double> weight);
//static int dotProductBP(const double inputValue[], double gradient[]);
//static double randomDouble(double min, double max);
private:
//static std::default_random_engine random(time(NULL));
//static std::uniform_real_distribution<double> dis(-1.0, 1.0);
};
}
}
#endif | [
"dengmingxuan@hotmail.com"
] | dengmingxuan@hotmail.com |
3e6c7872c5478a899ff20bfaf0e3553d8b7f885a | 29a8a6f51b2a94f6b1c1fcfa60e0058d5cd478fc | /sim/ReflectingBorder.hh | 9f8da3d63fb72021fb139f0276410911fcfa46cf | [] | no_license | szczk/reflecting_absorbing | 2b3670f0afee525a063fd0ceac287d192f57cebb | d5a5ba5d269d7af3a18c4551b1dbb721184e911a | refs/heads/master | 2020-09-22T11:45:48.704471 | 2015-10-07T10:40:10 | 2015-10-07T10:40:10 | 225,180,400 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 313 | hh | #ifndef __REFLECTING_BORDER__
#define __REFLECTING_BORDER__
#include "Border.hh"
class ReflectingBorder : public Border {
public:
ReflectingBorder ( double position );
virtual ~ReflectingBorder();
virtual const char * toString();
virtual bool operator() ( Particle * );
};
#endif
| [
"krzysztof.sc@gmail.com"
] | krzysztof.sc@gmail.com |
8e24ebe86f3a8d8b946ba2ea80095c2ffd8cd11e | 604835ee6216507bdebfdc6e13bf068f6710ff3e | /IOSTEST/Classes/Native/AssemblyU2DCSharpU2Dfirstpass_Valve_VR_IVRSettings3538756002.h | 15e2cdb573bfe9663fb070b1c07c13ad5f2cbf25 | [
"MIT"
] | permissive | pickettd/OpenBrushVR | d174c86a2364c2cd5b79e927c2f2686825211531 | 7f3aa4bc1f12bd5b4f6d5f7cc15a1a6af5d48dbe | refs/heads/master | 2020-03-30T02:55:09.435323 | 2019-01-30T22:48:39 | 2019-01-30T22:48:39 | 150,658,280 | 2 | 0 | null | 2018-09-27T23:14:34 | 2018-09-27T23:14:34 | null | UTF-8 | C++ | false | false | 847 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_MulticastDelegate3201952435.h"
#include "mscorlib_System_Int322071877448.h"
#include "AssemblyU2DCSharpU2Dfirstpass_Valve_VR_EVRSettings4124928198.h"
// System.String
struct String_t;
// System.IAsyncResult
struct IAsyncResult_t1999651008;
// System.AsyncCallback
struct AsyncCallback_t163412349;
// System.Object
struct Il2CppObject;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Valve.VR.IVRSettings/_GetInt32
struct _GetInt32_t3538756002 : public MulticastDelegate_t3201952435
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"andrew.nakas@gmail.com"
] | andrew.nakas@gmail.com |
9b42875c893db2ca76c90e85c4a8d0bf4591208e | 53459785cde3f53732dcdb42ad96b65f7aa1fccc | /source/Network/NetworkAPI/Translator.h | 7913c16a5355ea98e3c9ccf56ad6feed7052f8c1 | [] | no_license | dean11/NoEdge | 7f33f775c8083b9ba2861d45b68082059da3f870 | 2cc8a59b8155acd3a3f939716da339e5a90cc5db | refs/heads/master | 2021-01-18T03:01:10.586525 | 2015-01-15T21:38:13 | 2015-01-15T21:38:13 | 29,315,116 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,426 | h | #ifndef NETWORK_DEPENDENCIES_TRANSLATOR_H
#define NETWORK_DEPENDENCIES_TRANSLATOR_H
//////////////////////////////////
// Created by Sam Svensson 2013 //
// ----------------------------//
// Packs our dynamic protocols //
//////////////////////////////////
/*
It packs a header in front of the actual message.
Header looks like this:
- Size of the entire package
- String containing all the types of data that is packed in the package.
*/
/*
Possible optimizing:
If there are several of the same type of data in a row,
we can instead of saving a character for each type we can instead save a number and the character.
Example:
If we are packing 100 floats.
"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF..."
Instead of that we can do this:
"100F"
*/
#include "NetworkAPI_Preprocessor.h"
namespace Oyster
{
namespace Network
{
extern "C"
{
class OysterByte;
class CustomNetProtocol;
class NET_API_EXPORT Translator
{
public:
Translator ();
~Translator();
Translator(const Translator& obj);
const Translator& operator=(const Translator& obj);
void Pack(OysterByte &bytes, CustomNetProtocol& protocol);
//Returns false if it discovers any faulty stuff with the package.
bool Unpack(CustomNetProtocol& protocol, OysterByte &bytes);
private:
struct PrivateData;
PrivateData* privateData;
};
}
}
}
#endif | [
"carl.dennis.andersen@gmail.com"
] | carl.dennis.andersen@gmail.com |
66d374d3710f81bd9d763bcc52ce69fb87a71414 | 51ffd7b19109630911956fbf36cfd2ee5acc074c | /test/cpp/end2end/xds_end2end_test.cc | b876e062426acb78d2c126f6821d97acbd1e890e | [
"Apache-2.0"
] | permissive | zpdeng28/grpc | 4022508cd0f4ee46de1d39347401ddc79eaaa58b | e39e7bc7c1df9f630c812ff1891e04cbd7c0829f | refs/heads/master | 2022-12-01T20:05:39.798552 | 2019-05-20T07:01:07 | 2019-05-20T07:01:07 | 187,572,968 | 1 | 1 | Apache-2.0 | 2022-11-16T14:50:06 | 2019-05-20T05:26:19 | C++ | UTF-8 | C++ | false | false | 55,736 | cc | /*
*
* Copyright 2017 gRPC authors.
*
* 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.
*
*/
#include <memory>
#include <mutex>
#include <set>
#include <sstream>
#include <thread>
#include <grpc/grpc.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
#include <grpc/support/time.h>
#include <grpcpp/channel.h>
#include <grpcpp/client_context.h>
#include <grpcpp/create_channel.h>
#include <grpcpp/server.h>
#include <grpcpp/server_builder.h>
#include "src/core/ext/filters/client_channel/backup_poller.h"
#include "src/core/ext/filters/client_channel/parse_address.h"
#include "src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h"
#include "src/core/ext/filters/client_channel/server_address.h"
#include "src/core/lib/gpr/env.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"
#include "src/core/lib/iomgr/sockaddr.h"
#include "src/core/lib/security/credentials/fake/fake_credentials.h"
#include "src/cpp/client/secure_credentials.h"
#include "src/cpp/server/secure_server_credentials.h"
#include "test/core/util/port.h"
#include "test/core/util/test_config.h"
#include "test/cpp/end2end/test_service_impl.h"
#include "src/proto/grpc/lb/v1/load_balancer.grpc.pb.h"
#include "src/proto/grpc/testing/echo.grpc.pb.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
// TODO(dgq): Other scenarios in need of testing:
// - Send a serverlist with faulty ip:port addresses (port > 2^16, etc).
// - Test reception of invalid serverlist
// - Test against a non-LB server.
// - Random LB server closing the stream unexpectedly.
//
// Findings from end to end testing to be covered here:
// - Handling of LB servers restart, including reconnection after backing-off
// retries.
// - Destruction of load balanced channel (and therefore of xds instance)
// while:
// 1) the internal LB call is still active. This should work by virtue
// of the weak reference the LB call holds. The call should be terminated as
// part of the xds shutdown process.
// 2) the retry timer is active. Again, the weak reference it holds should
// prevent a premature call to \a glb_destroy.
using std::chrono::system_clock;
using grpc::lb::v1::LoadBalanceRequest;
using grpc::lb::v1::LoadBalanceResponse;
using grpc::lb::v1::LoadBalancer;
namespace grpc {
namespace testing {
namespace {
template <typename ServiceType>
class CountedService : public ServiceType {
public:
size_t request_count() {
grpc::internal::MutexLock lock(&mu_);
return request_count_;
}
size_t response_count() {
grpc::internal::MutexLock lock(&mu_);
return response_count_;
}
void IncreaseResponseCount() {
grpc::internal::MutexLock lock(&mu_);
++response_count_;
}
void IncreaseRequestCount() {
grpc::internal::MutexLock lock(&mu_);
++request_count_;
}
void ResetCounters() {
grpc::internal::MutexLock lock(&mu_);
request_count_ = 0;
response_count_ = 0;
}
protected:
grpc::internal::Mutex mu_;
private:
size_t request_count_ = 0;
size_t response_count_ = 0;
};
using BackendService = CountedService<TestServiceImpl>;
using BalancerService = CountedService<LoadBalancer::Service>;
const char g_kCallCredsMdKey[] = "Balancer should not ...";
const char g_kCallCredsMdValue[] = "... receive me";
class BackendServiceImpl : public BackendService {
public:
BackendServiceImpl() {}
Status Echo(ServerContext* context, const EchoRequest* request,
EchoResponse* response) override {
// Backend should receive the call credentials metadata.
auto call_credentials_entry =
context->client_metadata().find(g_kCallCredsMdKey);
EXPECT_NE(call_credentials_entry, context->client_metadata().end());
if (call_credentials_entry != context->client_metadata().end()) {
EXPECT_EQ(call_credentials_entry->second, g_kCallCredsMdValue);
}
IncreaseRequestCount();
const auto status = TestServiceImpl::Echo(context, request, response);
IncreaseResponseCount();
AddClient(context->peer());
return status;
}
void Shutdown() {}
std::set<grpc::string> clients() {
grpc::internal::MutexLock lock(&clients_mu_);
return clients_;
}
private:
void AddClient(const grpc::string& client) {
grpc::internal::MutexLock lock(&clients_mu_);
clients_.insert(client);
}
grpc::internal::Mutex mu_;
grpc::internal::Mutex clients_mu_;
std::set<grpc::string> clients_;
};
grpc::string Ip4ToPackedString(const char* ip_str) {
struct in_addr ip4;
GPR_ASSERT(inet_pton(AF_INET, ip_str, &ip4) == 1);
return grpc::string(reinterpret_cast<const char*>(&ip4), sizeof(ip4));
}
struct ClientStats {
size_t num_calls_started = 0;
size_t num_calls_finished = 0;
size_t num_calls_finished_with_client_failed_to_send = 0;
size_t num_calls_finished_known_received = 0;
std::map<grpc::string, size_t> drop_token_counts;
ClientStats& operator+=(const ClientStats& other) {
num_calls_started += other.num_calls_started;
num_calls_finished += other.num_calls_finished;
num_calls_finished_with_client_failed_to_send +=
other.num_calls_finished_with_client_failed_to_send;
num_calls_finished_known_received +=
other.num_calls_finished_known_received;
for (const auto& p : other.drop_token_counts) {
drop_token_counts[p.first] += p.second;
}
return *this;
}
void Reset() {
num_calls_started = 0;
num_calls_finished = 0;
num_calls_finished_with_client_failed_to_send = 0;
num_calls_finished_known_received = 0;
drop_token_counts.clear();
}
};
class BalancerServiceImpl : public BalancerService {
public:
using Stream = ServerReaderWriter<LoadBalanceResponse, LoadBalanceRequest>;
using ResponseDelayPair = std::pair<LoadBalanceResponse, int>;
explicit BalancerServiceImpl(int client_load_reporting_interval_seconds)
: client_load_reporting_interval_seconds_(
client_load_reporting_interval_seconds) {}
Status BalanceLoad(ServerContext* context, Stream* stream) override {
// TODO(juanlishen): Clean up the scoping.
gpr_log(GPR_INFO, "LB[%p]: BalanceLoad", this);
{
grpc::internal::MutexLock lock(&mu_);
if (serverlist_done_) goto done;
}
{
// Balancer shouldn't receive the call credentials metadata.
EXPECT_EQ(context->client_metadata().find(g_kCallCredsMdKey),
context->client_metadata().end());
LoadBalanceRequest request;
std::vector<ResponseDelayPair> responses_and_delays;
if (!stream->Read(&request)) {
goto done;
}
IncreaseRequestCount();
gpr_log(GPR_INFO, "LB[%p]: received initial message '%s'", this,
request.DebugString().c_str());
{
LoadBalanceResponse initial_response;
initial_response.mutable_initial_response()
->mutable_client_stats_report_interval()
->set_seconds(client_load_reporting_interval_seconds_);
stream->Write(initial_response);
}
{
grpc::internal::MutexLock lock(&mu_);
responses_and_delays = responses_and_delays_;
}
for (const auto& response_and_delay : responses_and_delays) {
SendResponse(stream, response_and_delay.first,
response_and_delay.second);
}
{
grpc::internal::MutexLock lock(&mu_);
serverlist_cond_.WaitUntil(&mu_, [this] { return serverlist_done_; });
}
if (client_load_reporting_interval_seconds_ > 0) {
request.Clear();
if (stream->Read(&request)) {
gpr_log(GPR_INFO, "LB[%p]: received client load report message '%s'",
this, request.DebugString().c_str());
GPR_ASSERT(request.has_client_stats());
// We need to acquire the lock here in order to prevent the notify_one
// below from firing before its corresponding wait is executed.
grpc::internal::MutexLock lock(&mu_);
client_stats_.num_calls_started +=
request.client_stats().num_calls_started();
client_stats_.num_calls_finished +=
request.client_stats().num_calls_finished();
client_stats_.num_calls_finished_with_client_failed_to_send +=
request.client_stats()
.num_calls_finished_with_client_failed_to_send();
client_stats_.num_calls_finished_known_received +=
request.client_stats().num_calls_finished_known_received();
for (const auto& drop_token_count :
request.client_stats().calls_finished_with_drop()) {
client_stats_
.drop_token_counts[drop_token_count.load_balance_token()] +=
drop_token_count.num_calls();
}
load_report_ready_ = true;
load_report_cond_.Signal();
}
}
}
done:
gpr_log(GPR_INFO, "LB[%p]: done", this);
return Status::OK;
}
void add_response(const LoadBalanceResponse& response, int send_after_ms) {
grpc::internal::MutexLock lock(&mu_);
responses_and_delays_.push_back(std::make_pair(response, send_after_ms));
}
void Shutdown() {
grpc::internal::MutexLock lock(&mu_);
NotifyDoneWithServerlistsLocked();
responses_and_delays_.clear();
client_stats_.Reset();
gpr_log(GPR_INFO, "LB[%p]: shut down", this);
}
static LoadBalanceResponse BuildResponseForBackends(
const std::vector<int>& backend_ports,
const std::map<grpc::string, size_t>& drop_token_counts) {
LoadBalanceResponse response;
for (const auto& drop_token_count : drop_token_counts) {
for (size_t i = 0; i < drop_token_count.second; ++i) {
auto* server = response.mutable_server_list()->add_servers();
server->set_drop(true);
server->set_load_balance_token(drop_token_count.first);
}
}
for (const int& backend_port : backend_ports) {
auto* server = response.mutable_server_list()->add_servers();
server->set_ip_address(Ip4ToPackedString("127.0.0.1"));
server->set_port(backend_port);
static int token_count = 0;
char* token;
gpr_asprintf(&token, "token%03d", ++token_count);
server->set_load_balance_token(token);
gpr_free(token);
}
return response;
}
const ClientStats& WaitForLoadReport() {
grpc::internal::MutexLock lock(&mu_);
load_report_cond_.WaitUntil(&mu_, [this] { return load_report_ready_; });
load_report_ready_ = false;
return client_stats_;
}
void NotifyDoneWithServerlists() {
grpc::internal::MutexLock lock(&mu_);
NotifyDoneWithServerlistsLocked();
}
void NotifyDoneWithServerlistsLocked() {
if (!serverlist_done_) {
serverlist_done_ = true;
serverlist_cond_.Broadcast();
}
}
private:
void SendResponse(Stream* stream, const LoadBalanceResponse& response,
int delay_ms) {
gpr_log(GPR_INFO, "LB[%p]: sleeping for %d ms...", this, delay_ms);
if (delay_ms > 0) {
gpr_sleep_until(grpc_timeout_milliseconds_to_deadline(delay_ms));
}
gpr_log(GPR_INFO, "LB[%p]: Woke up! Sending response '%s'", this,
response.DebugString().c_str());
IncreaseResponseCount();
stream->Write(response);
}
const int client_load_reporting_interval_seconds_;
std::vector<ResponseDelayPair> responses_and_delays_;
grpc::internal::Mutex mu_;
grpc::internal::CondVar load_report_cond_;
bool load_report_ready_ = false;
grpc::internal::CondVar serverlist_cond_;
bool serverlist_done_ = false;
ClientStats client_stats_;
};
class XdsEnd2endTest : public ::testing::Test {
protected:
XdsEnd2endTest(size_t num_backends, size_t num_balancers,
int client_load_reporting_interval_seconds)
: server_host_("localhost"),
num_backends_(num_backends),
num_balancers_(num_balancers),
client_load_reporting_interval_seconds_(
client_load_reporting_interval_seconds) {
// Make the backup poller poll very frequently in order to pick up
// updates from all the subchannels's FDs.
GPR_GLOBAL_CONFIG_SET(grpc_client_channel_backup_poll_interval_ms, 1);
}
void SetUp() override {
response_generator_ =
grpc_core::MakeRefCounted<grpc_core::FakeResolverResponseGenerator>();
lb_channel_response_generator_ =
grpc_core::MakeRefCounted<grpc_core::FakeResolverResponseGenerator>();
// Start the backends.
for (size_t i = 0; i < num_backends_; ++i) {
backends_.emplace_back(new ServerThread<BackendServiceImpl>("backend"));
backends_.back()->Start(server_host_);
}
// Start the load balancers.
for (size_t i = 0; i < num_balancers_; ++i) {
balancers_.emplace_back(new ServerThread<BalancerServiceImpl>(
"balancer", client_load_reporting_interval_seconds_));
balancers_.back()->Start(server_host_);
}
ResetStub();
}
void TearDown() override {
ShutdownAllBackends();
for (auto& balancer : balancers_) balancer->Shutdown();
}
void StartAllBackends() {
for (auto& backend : backends_) backend->Start(server_host_);
}
void StartBackend(size_t index) { backends_[index]->Start(server_host_); }
void ShutdownAllBackends() {
for (auto& backend : backends_) backend->Shutdown();
}
void ShutdownBackend(size_t index) { backends_[index]->Shutdown(); }
void ResetStub(int fallback_timeout = 0,
const grpc::string& expected_targets = "") {
ChannelArguments args;
// TODO(juanlishen): Add setter to ChannelArguments.
if (fallback_timeout > 0) {
args.SetInt(GRPC_ARG_XDS_FALLBACK_TIMEOUT_MS, fallback_timeout);
}
args.SetPointer(GRPC_ARG_FAKE_RESOLVER_RESPONSE_GENERATOR,
response_generator_.get());
if (!expected_targets.empty()) {
args.SetString(GRPC_ARG_FAKE_SECURITY_EXPECTED_TARGETS, expected_targets);
}
std::ostringstream uri;
uri << "fake:///" << kApplicationTargetName_;
// TODO(dgq): templatize tests to run everything using both secure and
// insecure channel credentials.
grpc_channel_credentials* channel_creds =
grpc_fake_transport_security_credentials_create();
grpc_call_credentials* call_creds = grpc_md_only_test_credentials_create(
g_kCallCredsMdKey, g_kCallCredsMdValue, false);
std::shared_ptr<ChannelCredentials> creds(
new SecureChannelCredentials(grpc_composite_channel_credentials_create(
channel_creds, call_creds, nullptr)));
call_creds->Unref();
channel_creds->Unref();
channel_ = ::grpc::CreateCustomChannel(uri.str(), creds, args);
stub_ = grpc::testing::EchoTestService::NewStub(channel_);
}
void ResetBackendCounters() {
for (auto& backend : backends_) backend->service_.ResetCounters();
}
ClientStats WaitForLoadReports() {
ClientStats client_stats;
for (auto& balancer : balancers_) {
client_stats += balancer->service_.WaitForLoadReport();
}
return client_stats;
}
bool SeenAllBackends(size_t start_index = 0, size_t stop_index = 0) {
if (stop_index == 0) stop_index = backends_.size();
for (size_t i = start_index; i < stop_index; ++i) {
if (backends_[i]->service_.request_count() == 0) return false;
}
return true;
}
void SendRpcAndCount(int* num_total, int* num_ok, int* num_failure,
int* num_drops) {
const Status status = SendRpc();
if (status.ok()) {
++*num_ok;
} else {
if (status.error_message() == "Call dropped by load balancing policy") {
++*num_drops;
} else {
++*num_failure;
}
}
++*num_total;
}
std::tuple<int, int, int> WaitForAllBackends(int num_requests_multiple_of = 1,
size_t start_index = 0,
size_t stop_index = 0) {
int num_ok = 0;
int num_failure = 0;
int num_drops = 0;
int num_total = 0;
while (!SeenAllBackends(start_index, stop_index)) {
SendRpcAndCount(&num_total, &num_ok, &num_failure, &num_drops);
}
while (num_total % num_requests_multiple_of != 0) {
SendRpcAndCount(&num_total, &num_ok, &num_failure, &num_drops);
}
ResetBackendCounters();
gpr_log(GPR_INFO,
"Performed %d warm up requests (a multiple of %d) against the "
"backends. %d succeeded, %d failed, %d dropped.",
num_total, num_requests_multiple_of, num_ok, num_failure,
num_drops);
return std::make_tuple(num_ok, num_failure, num_drops);
}
void WaitForBackend(size_t backend_idx) {
do {
(void)SendRpc();
} while (backends_[backend_idx]->service_.request_count() == 0);
ResetBackendCounters();
}
grpc_core::ServerAddressList CreateLbAddressesFromPortList(
const std::vector<int>& ports) {
grpc_core::ServerAddressList addresses;
for (int port : ports) {
char* lb_uri_str;
gpr_asprintf(&lb_uri_str, "ipv4:127.0.0.1:%d", port);
grpc_uri* lb_uri = grpc_uri_parse(lb_uri_str, true);
GPR_ASSERT(lb_uri != nullptr);
grpc_resolved_address address;
GPR_ASSERT(grpc_parse_uri(lb_uri, &address));
std::vector<grpc_arg> args_to_add;
grpc_channel_args* args = grpc_channel_args_copy_and_add(
nullptr, args_to_add.data(), args_to_add.size());
addresses.emplace_back(address.addr, address.len, args);
grpc_uri_destroy(lb_uri);
gpr_free(lb_uri_str);
}
return addresses;
}
void SetNextResolution(const std::vector<int>& ports,
const char* service_config_json = nullptr,
grpc_core::FakeResolverResponseGenerator*
lb_channel_response_generator = nullptr) {
grpc_core::ExecCtx exec_ctx;
grpc_core::Resolver::Result result;
result.addresses = CreateLbAddressesFromPortList(ports);
if (service_config_json != nullptr) {
grpc_error* error = GRPC_ERROR_NONE;
result.service_config =
grpc_core::ServiceConfig::Create(service_config_json, &error);
GRPC_ERROR_UNREF(error);
}
grpc_arg arg = grpc_core::FakeResolverResponseGenerator::MakeChannelArg(
lb_channel_response_generator == nullptr
? lb_channel_response_generator_.get()
: lb_channel_response_generator);
result.args = grpc_channel_args_copy_and_add(nullptr, &arg, 1);
response_generator_->SetResponse(std::move(result));
}
void SetNextResolutionForLbChannelAllBalancers(
const char* service_config_json = nullptr,
grpc_core::FakeResolverResponseGenerator* lb_channel_response_generator =
nullptr) {
std::vector<int> ports;
for (size_t i = 0; i < balancers_.size(); ++i) {
ports.emplace_back(balancers_[i]->port_);
}
SetNextResolutionForLbChannel(ports, service_config_json,
lb_channel_response_generator);
}
void SetNextResolutionForLbChannel(
const std::vector<int>& ports, const char* service_config_json = nullptr,
grpc_core::FakeResolverResponseGenerator* lb_channel_response_generator =
nullptr) {
grpc_core::ExecCtx exec_ctx;
grpc_core::Resolver::Result result;
result.addresses = CreateLbAddressesFromPortList(ports);
if (service_config_json != nullptr) {
grpc_error* error = GRPC_ERROR_NONE;
result.service_config =
grpc_core::ServiceConfig::Create(service_config_json, &error);
GRPC_ERROR_UNREF(error);
}
if (lb_channel_response_generator == nullptr) {
lb_channel_response_generator = lb_channel_response_generator_.get();
}
lb_channel_response_generator->SetResponse(std::move(result));
}
void SetNextReresolutionResponse(const std::vector<int>& ports) {
grpc_core::ExecCtx exec_ctx;
grpc_core::Resolver::Result result;
result.addresses = CreateLbAddressesFromPortList(ports);
response_generator_->SetReresolutionResponse(std::move(result));
}
const std::vector<int> GetBackendPorts(size_t start_index = 0,
size_t stop_index = 0) const {
if (stop_index == 0) stop_index = backends_.size();
std::vector<int> backend_ports;
for (size_t i = start_index; i < stop_index; ++i) {
backend_ports.push_back(backends_[i]->port_);
}
return backend_ports;
}
void ScheduleResponseForBalancer(size_t i,
const LoadBalanceResponse& response,
int delay_ms) {
balancers_[i]->service_.add_response(response, delay_ms);
}
Status SendRpc(EchoResponse* response = nullptr, int timeout_ms = 1000,
bool wait_for_ready = false) {
const bool local_response = (response == nullptr);
if (local_response) response = new EchoResponse;
EchoRequest request;
request.set_message(kRequestMessage_);
ClientContext context;
context.set_deadline(grpc_timeout_milliseconds_to_deadline(timeout_ms));
if (wait_for_ready) context.set_wait_for_ready(true);
Status status = stub_->Echo(&context, request, response);
if (local_response) delete response;
return status;
}
void CheckRpcSendOk(const size_t times = 1, const int timeout_ms = 1000,
bool wait_for_ready = false) {
for (size_t i = 0; i < times; ++i) {
EchoResponse response;
const Status status = SendRpc(&response, timeout_ms, wait_for_ready);
EXPECT_TRUE(status.ok()) << "code=" << status.error_code()
<< " message=" << status.error_message();
EXPECT_EQ(response.message(), kRequestMessage_);
}
}
void CheckRpcSendFailure() {
const Status status = SendRpc();
EXPECT_FALSE(status.ok());
}
template <typename T>
struct ServerThread {
template <typename... Args>
explicit ServerThread(const grpc::string& type, Args&&... args)
: port_(grpc_pick_unused_port_or_die()),
type_(type),
service_(std::forward<Args>(args)...) {}
void Start(const grpc::string& server_host) {
gpr_log(GPR_INFO, "starting %s server on port %d", type_.c_str(), port_);
GPR_ASSERT(!running_);
running_ = true;
grpc::internal::Mutex mu;
// We need to acquire the lock here in order to prevent the notify_one
// by ServerThread::Serve from firing before the wait below is hit.
grpc::internal::MutexLock lock(&mu);
grpc::internal::CondVar cond;
thread_.reset(new std::thread(
std::bind(&ServerThread::Serve, this, server_host, &mu, &cond)));
cond.Wait(&mu);
gpr_log(GPR_INFO, "%s server startup complete", type_.c_str());
}
void Serve(const grpc::string& server_host, grpc::internal::Mutex* mu,
grpc::internal::CondVar* cond) {
// We need to acquire the lock here in order to prevent the notify_one
// below from firing before its corresponding wait is executed.
grpc::internal::MutexLock lock(mu);
std::ostringstream server_address;
server_address << server_host << ":" << port_;
ServerBuilder builder;
std::shared_ptr<ServerCredentials> creds(new SecureServerCredentials(
grpc_fake_transport_security_server_credentials_create()));
builder.AddListeningPort(server_address.str(), creds);
builder.RegisterService(&service_);
server_ = builder.BuildAndStart();
cond->Signal();
}
void Shutdown() {
if (!running_) return;
gpr_log(GPR_INFO, "%s about to shutdown", type_.c_str());
service_.Shutdown();
server_->Shutdown(grpc_timeout_milliseconds_to_deadline(0));
thread_->join();
gpr_log(GPR_INFO, "%s shutdown completed", type_.c_str());
running_ = false;
}
const int port_;
grpc::string type_;
T service_;
std::unique_ptr<Server> server_;
std::unique_ptr<std::thread> thread_;
bool running_ = false;
};
const grpc::string server_host_;
const size_t num_backends_;
const size_t num_balancers_;
const int client_load_reporting_interval_seconds_;
std::shared_ptr<Channel> channel_;
std::unique_ptr<grpc::testing::EchoTestService::Stub> stub_;
std::vector<std::unique_ptr<ServerThread<BackendServiceImpl>>> backends_;
std::vector<std::unique_ptr<ServerThread<BalancerServiceImpl>>> balancers_;
grpc_core::RefCountedPtr<grpc_core::FakeResolverResponseGenerator>
response_generator_;
grpc_core::RefCountedPtr<grpc_core::FakeResolverResponseGenerator>
lb_channel_response_generator_;
const grpc::string kRequestMessage_ = "Live long and prosper.";
const grpc::string kApplicationTargetName_ = "application_target_name";
const grpc::string kDefaultServiceConfig_ =
"{\n"
" \"loadBalancingConfig\":[\n"
" { \"does_not_exist\":{} },\n"
" { \"xds_experimental\":{ \"balancerName\": \"fake:///lb\" } }\n"
" ]\n"
"}";
};
class SingleBalancerTest : public XdsEnd2endTest {
public:
SingleBalancerTest() : XdsEnd2endTest(4, 1, 0) {}
};
TEST_F(SingleBalancerTest, Vanilla) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
const size_t kNumRpcsPerAddress = 100;
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(GetBackendPorts(), {}),
0);
// Make sure that trying to connect works without a call.
channel_->GetState(true /* try_to_connect */);
// We need to wait for all backends to come online.
WaitForAllBackends();
// Send kNumRpcsPerAddress RPCs per server.
CheckRpcSendOk(kNumRpcsPerAddress * num_backends_);
// Each backend should have gotten 100 requests.
for (size_t i = 0; i < backends_.size(); ++i) {
EXPECT_EQ(kNumRpcsPerAddress, backends_[i]->service_.request_count());
}
balancers_[0]->service_.NotifyDoneWithServerlists();
// The balancer got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
// Check LB policy name for the channel.
EXPECT_EQ("xds_experimental", channel_->GetLoadBalancingPolicyName());
}
TEST_F(SingleBalancerTest, SameBackendListedMultipleTimes) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
// Same backend listed twice.
std::vector<int> ports;
ports.push_back(backends_[0]->port_);
ports.push_back(backends_[0]->port_);
const size_t kNumRpcsPerAddress = 10;
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(ports, {}), 0);
// We need to wait for the backend to come online.
WaitForBackend(0);
// Send kNumRpcsPerAddress RPCs per server.
CheckRpcSendOk(kNumRpcsPerAddress * ports.size());
// Backend should have gotten 20 requests.
EXPECT_EQ(kNumRpcsPerAddress * 2, backends_[0]->service_.request_count());
// And they should have come from a single client port, because of
// subchannel sharing.
EXPECT_EQ(1UL, backends_[0]->service_.clients().size());
balancers_[0]->service_.NotifyDoneWithServerlists();
}
TEST_F(SingleBalancerTest, SecureNaming) {
// TODO(juanlishen): Use separate fake creds for the balancer channel.
ResetStub(0, kApplicationTargetName_ + ";lb");
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannel({balancers_[0]->port_});
const size_t kNumRpcsPerAddress = 100;
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(GetBackendPorts(), {}),
0);
// Make sure that trying to connect works without a call.
channel_->GetState(true /* try_to_connect */);
// We need to wait for all backends to come online.
WaitForAllBackends();
// Send kNumRpcsPerAddress RPCs per server.
CheckRpcSendOk(kNumRpcsPerAddress * num_backends_);
// Each backend should have gotten 100 requests.
for (size_t i = 0; i < backends_.size(); ++i) {
EXPECT_EQ(kNumRpcsPerAddress, backends_[i]->service_.request_count());
}
// The balancer got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
}
TEST_F(SingleBalancerTest, SecureNamingDeathTest) {
::testing::FLAGS_gtest_death_test_style = "threadsafe";
// Make sure that we blow up (via abort() from the security connector) when
// the name from the balancer doesn't match expectations.
ASSERT_DEATH(
{
ResetStub(0, kApplicationTargetName_ + ";lb");
SetNextResolution({},
"{\n"
" \"loadBalancingConfig\":[\n"
" { \"does_not_exist\":{} },\n"
" { \"xds_experimental\":{ \"balancerName\": "
"\"fake:///wrong_lb\" } }\n"
" ]\n"
"}");
SetNextResolutionForLbChannel({balancers_[0]->port_});
channel_->WaitForConnected(grpc_timeout_seconds_to_deadline(1));
},
"");
}
TEST_F(SingleBalancerTest, InitiallyEmptyServerlist) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
const int kServerlistDelayMs = 500 * grpc_test_slowdown_factor();
const int kCallDeadlineMs = kServerlistDelayMs * 2;
// First response is an empty serverlist, sent right away.
ScheduleResponseForBalancer(0, LoadBalanceResponse(), 0);
// Send non-empty serverlist only after kServerlistDelayMs
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(GetBackendPorts(), {}),
kServerlistDelayMs);
const auto t0 = system_clock::now();
// Client will block: LB will initially send empty serverlist.
CheckRpcSendOk(1, kCallDeadlineMs, true /* wait_for_ready */);
const auto ellapsed_ms =
std::chrono::duration_cast<std::chrono::milliseconds>(
system_clock::now() - t0);
// but eventually, the LB sends a serverlist update that allows the call to
// proceed. The call delay must be larger than the delay in sending the
// populated serverlist but under the call's deadline (which is enforced by
// the call's deadline).
EXPECT_GT(ellapsed_ms.count(), kServerlistDelayMs);
balancers_[0]->service_.NotifyDoneWithServerlists();
// The balancer got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent two responses.
EXPECT_EQ(2U, balancers_[0]->service_.response_count());
}
TEST_F(SingleBalancerTest, AllServersUnreachableFailFast) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
const size_t kNumUnreachableServers = 5;
std::vector<int> ports;
for (size_t i = 0; i < kNumUnreachableServers; ++i) {
ports.push_back(grpc_pick_unused_port_or_die());
}
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(ports, {}), 0);
const Status status = SendRpc();
// The error shouldn't be DEADLINE_EXCEEDED.
EXPECT_EQ(StatusCode::UNAVAILABLE, status.error_code());
balancers_[0]->service_.NotifyDoneWithServerlists();
// The balancer got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
}
TEST_F(SingleBalancerTest, Fallback) {
const int kFallbackTimeoutMs = 200 * grpc_test_slowdown_factor();
const int kServerlistDelayMs = 500 * grpc_test_slowdown_factor();
const size_t kNumBackendsInResolution = backends_.size() / 2;
ResetStub(kFallbackTimeoutMs);
SetNextResolution(GetBackendPorts(0, kNumBackendsInResolution),
kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
// Send non-empty serverlist only after kServerlistDelayMs.
ScheduleResponseForBalancer(
0,
BalancerServiceImpl::BuildResponseForBackends(
GetBackendPorts(kNumBackendsInResolution /* start_index */), {}),
kServerlistDelayMs);
// Wait until all the fallback backends are reachable.
WaitForAllBackends(1 /* num_requests_multiple_of */, 0 /* start_index */,
kNumBackendsInResolution /* stop_index */);
gpr_log(GPR_INFO, "========= BEFORE FIRST BATCH ==========");
CheckRpcSendOk(kNumBackendsInResolution);
gpr_log(GPR_INFO, "========= DONE WITH FIRST BATCH ==========");
// Fallback is used: each backend returned by the resolver should have
// gotten one request.
for (size_t i = 0; i < kNumBackendsInResolution; ++i) {
EXPECT_EQ(1U, backends_[i]->service_.request_count());
}
for (size_t i = kNumBackendsInResolution; i < backends_.size(); ++i) {
EXPECT_EQ(0U, backends_[i]->service_.request_count());
}
// Wait until the serverlist reception has been processed and all backends
// in the serverlist are reachable.
WaitForAllBackends(1 /* num_requests_multiple_of */,
kNumBackendsInResolution /* start_index */);
gpr_log(GPR_INFO, "========= BEFORE SECOND BATCH ==========");
CheckRpcSendOk(backends_.size() - kNumBackendsInResolution);
gpr_log(GPR_INFO, "========= DONE WITH SECOND BATCH ==========");
// Serverlist is used: each backend returned by the balancer should
// have gotten one request.
for (size_t i = 0; i < kNumBackendsInResolution; ++i) {
EXPECT_EQ(0U, backends_[i]->service_.request_count());
}
for (size_t i = kNumBackendsInResolution; i < backends_.size(); ++i) {
EXPECT_EQ(1U, backends_[i]->service_.request_count());
}
// The balancer got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
}
TEST_F(SingleBalancerTest, FallbackUpdate) {
const int kFallbackTimeoutMs = 200 * grpc_test_slowdown_factor();
const int kServerlistDelayMs = 500 * grpc_test_slowdown_factor();
const size_t kNumBackendsInResolution = backends_.size() / 3;
const size_t kNumBackendsInResolutionUpdate = backends_.size() / 3;
ResetStub(kFallbackTimeoutMs);
SetNextResolution(GetBackendPorts(0, kNumBackendsInResolution),
kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
// Send non-empty serverlist only after kServerlistDelayMs.
ScheduleResponseForBalancer(
0,
BalancerServiceImpl::BuildResponseForBackends(
GetBackendPorts(kNumBackendsInResolution +
kNumBackendsInResolutionUpdate /* start_index */),
{}),
kServerlistDelayMs);
// Wait until all the fallback backends are reachable.
WaitForAllBackends(1 /* num_requests_multiple_of */, 0 /* start_index */,
kNumBackendsInResolution /* stop_index */);
gpr_log(GPR_INFO, "========= BEFORE FIRST BATCH ==========");
CheckRpcSendOk(kNumBackendsInResolution);
gpr_log(GPR_INFO, "========= DONE WITH FIRST BATCH ==========");
// Fallback is used: each backend returned by the resolver should have
// gotten one request.
for (size_t i = 0; i < kNumBackendsInResolution; ++i) {
EXPECT_EQ(1U, backends_[i]->service_.request_count());
}
for (size_t i = kNumBackendsInResolution; i < backends_.size(); ++i) {
EXPECT_EQ(0U, backends_[i]->service_.request_count());
}
SetNextResolution(GetBackendPorts(kNumBackendsInResolution,
kNumBackendsInResolution +
kNumBackendsInResolutionUpdate),
kDefaultServiceConfig_.c_str());
// Wait until the resolution update has been processed and all the new
// fallback backends are reachable.
WaitForAllBackends(1 /* num_requests_multiple_of */,
kNumBackendsInResolution /* start_index */,
kNumBackendsInResolution +
kNumBackendsInResolutionUpdate /* stop_index */);
gpr_log(GPR_INFO, "========= BEFORE SECOND BATCH ==========");
CheckRpcSendOk(kNumBackendsInResolutionUpdate);
gpr_log(GPR_INFO, "========= DONE WITH SECOND BATCH ==========");
// The resolution update is used: each backend in the resolution update should
// have gotten one request.
for (size_t i = 0; i < kNumBackendsInResolution; ++i) {
EXPECT_EQ(0U, backends_[i]->service_.request_count());
}
for (size_t i = kNumBackendsInResolution;
i < kNumBackendsInResolution + kNumBackendsInResolutionUpdate; ++i) {
EXPECT_EQ(1U, backends_[i]->service_.request_count());
}
for (size_t i = kNumBackendsInResolution + kNumBackendsInResolutionUpdate;
i < backends_.size(); ++i) {
EXPECT_EQ(0U, backends_[i]->service_.request_count());
}
// Wait until the serverlist reception has been processed and all backends
// in the serverlist are reachable.
WaitForAllBackends(1 /* num_requests_multiple_of */,
kNumBackendsInResolution +
kNumBackendsInResolutionUpdate /* start_index */);
gpr_log(GPR_INFO, "========= BEFORE THIRD BATCH ==========");
CheckRpcSendOk(backends_.size() - kNumBackendsInResolution -
kNumBackendsInResolutionUpdate);
gpr_log(GPR_INFO, "========= DONE WITH THIRD BATCH ==========");
// Serverlist is used: each backend returned by the balancer should
// have gotten one request.
for (size_t i = 0;
i < kNumBackendsInResolution + kNumBackendsInResolutionUpdate; ++i) {
EXPECT_EQ(0U, backends_[i]->service_.request_count());
}
for (size_t i = kNumBackendsInResolution + kNumBackendsInResolutionUpdate;
i < backends_.size(); ++i) {
EXPECT_EQ(1U, backends_[i]->service_.request_count());
}
// The balancer got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
}
TEST_F(SingleBalancerTest, FallbackEarlyWhenBalancerChannelFails) {
const int kFallbackTimeoutMs = 10000 * grpc_test_slowdown_factor();
ResetStub(kFallbackTimeoutMs);
// Return an unreachable balancer and one fallback backend.
SetNextResolution({backends_[0]->port_}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannel({grpc_pick_unused_port_or_die()});
// Send RPC with deadline less than the fallback timeout and make sure it
// succeeds.
CheckRpcSendOk(/* times */ 1, /* timeout_ms */ 1000,
/* wait_for_ready */ false);
}
TEST_F(SingleBalancerTest, FallbackEarlyWhenBalancerCallFails) {
const int kFallbackTimeoutMs = 10000 * grpc_test_slowdown_factor();
ResetStub(kFallbackTimeoutMs);
// Return one balancer and one fallback backend.
SetNextResolution({backends_[0]->port_}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
// Balancer drops call without sending a serverlist.
balancers_[0]->service_.NotifyDoneWithServerlists();
// Send RPC with deadline less than the fallback timeout and make sure it
// succeeds.
CheckRpcSendOk(/* times */ 1, /* timeout_ms */ 1000,
/* wait_for_ready */ false);
}
TEST_F(SingleBalancerTest, FallbackModeIsExitedWhenBalancerSaysToDropAllCalls) {
// Return an unreachable balancer and one fallback backend.
SetNextResolution({backends_[0]->port_}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannel({grpc_pick_unused_port_or_die()});
// Enter fallback mode because the LB channel fails to connect.
WaitForBackend(0);
// Return a new balancer that sends an empty serverlist.
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends({}, {}), 0);
SetNextResolutionForLbChannelAllBalancers();
// Send RPCs until failure.
gpr_timespec deadline = gpr_time_add(
gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_millis(5000, GPR_TIMESPAN));
do {
auto status = SendRpc();
if (!status.ok()) break;
} while (gpr_time_cmp(gpr_now(GPR_CLOCK_REALTIME), deadline) < 0);
CheckRpcSendFailure();
}
TEST_F(SingleBalancerTest, FallbackModeIsExitedAfterChildRready) {
// Return an unreachable balancer and one fallback backend.
SetNextResolution({backends_[0]->port_}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannel({grpc_pick_unused_port_or_die()});
// Enter fallback mode because the LB channel fails to connect.
WaitForBackend(0);
// Return a new balancer that sends a dead backend.
ShutdownBackend(1);
ScheduleResponseForBalancer(
0,
BalancerServiceImpl::BuildResponseForBackends({backends_[1]->port_}, {}),
0);
SetNextResolutionForLbChannelAllBalancers();
// The state (TRANSIENT_FAILURE) update from the child policy will be ignored
// because we are still in fallback mode.
gpr_timespec deadline = gpr_time_add(
gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_millis(5000, GPR_TIMESPAN));
// Send 5 seconds worth of RPCs.
do {
CheckRpcSendOk();
} while (gpr_time_cmp(gpr_now(GPR_CLOCK_REALTIME), deadline) < 0);
// After the backend is restarted, the child policy will eventually be READY,
// and we will exit fallback mode.
StartBackend(1);
WaitForBackend(1);
// We have exited fallback mode, so calls will go to the child policy
// exclusively.
CheckRpcSendOk(100);
EXPECT_EQ(0U, backends_[0]->service_.request_count());
EXPECT_EQ(100U, backends_[1]->service_.request_count());
}
TEST_F(SingleBalancerTest, BackendsRestart) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(GetBackendPorts(), {}),
0);
WaitForAllBackends();
// Stop backends. RPCs should fail.
ShutdownAllBackends();
CheckRpcSendFailure();
// Restart all backends. RPCs should start succeeding again.
StartAllBackends();
CheckRpcSendOk(1 /* times */, 2000 /* timeout_ms */,
true /* wait_for_ready */);
}
class UpdatesTest : public XdsEnd2endTest {
public:
UpdatesTest() : XdsEnd2endTest(4, 3, 0) {}
};
TEST_F(UpdatesTest, UpdateBalancersButKeepUsingOriginalBalancer) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
const std::vector<int> first_backend{GetBackendPorts()[0]};
const std::vector<int> second_backend{GetBackendPorts()[1]};
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(first_backend, {}), 0);
ScheduleResponseForBalancer(
1, BalancerServiceImpl::BuildResponseForBackends(second_backend, {}), 0);
// Wait until the first backend is ready.
WaitForBackend(0);
// Send 10 requests.
gpr_log(GPR_INFO, "========= BEFORE FIRST BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH FIRST BATCH ==========");
// All 10 requests should have gone to the first backend.
EXPECT_EQ(10U, backends_[0]->service_.request_count());
// Balancer 0 got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
EXPECT_EQ(0U, balancers_[1]->service_.request_count());
EXPECT_EQ(0U, balancers_[1]->service_.response_count());
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
gpr_log(GPR_INFO, "========= ABOUT TO UPDATE 1 ==========");
SetNextResolutionForLbChannel({balancers_[1]->port_});
gpr_log(GPR_INFO, "========= UPDATE 1 DONE ==========");
EXPECT_EQ(0U, backends_[1]->service_.request_count());
gpr_timespec deadline = gpr_time_add(
gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_millis(10000, GPR_TIMESPAN));
// Send 10 seconds worth of RPCs
do {
CheckRpcSendOk();
} while (gpr_time_cmp(gpr_now(GPR_CLOCK_REALTIME), deadline) < 0);
// The current LB call is still working, so xds continued using it to the
// first balancer, which doesn't assign the second backend.
EXPECT_EQ(0U, backends_[1]->service_.request_count());
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
EXPECT_EQ(0U, balancers_[1]->service_.request_count());
EXPECT_EQ(0U, balancers_[1]->service_.response_count());
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
}
TEST_F(UpdatesTest, UpdateBalancerName) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
const std::vector<int> first_backend{GetBackendPorts()[0]};
const std::vector<int> second_backend{GetBackendPorts()[1]};
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(first_backend, {}), 0);
ScheduleResponseForBalancer(
1, BalancerServiceImpl::BuildResponseForBackends(second_backend, {}), 0);
// Wait until the first backend is ready.
WaitForBackend(0);
// Send 10 requests.
gpr_log(GPR_INFO, "========= BEFORE FIRST BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH FIRST BATCH ==========");
// All 10 requests should have gone to the first backend.
EXPECT_EQ(10U, backends_[0]->service_.request_count());
// Balancer 0 got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
EXPECT_EQ(0U, balancers_[1]->service_.request_count());
EXPECT_EQ(0U, balancers_[1]->service_.response_count());
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
std::vector<int> ports;
ports.emplace_back(balancers_[1]->port_);
auto new_lb_channel_response_generator =
grpc_core::MakeRefCounted<grpc_core::FakeResolverResponseGenerator>();
SetNextResolutionForLbChannel(ports, nullptr,
new_lb_channel_response_generator.get());
gpr_log(GPR_INFO, "========= ABOUT TO UPDATE BALANCER NAME ==========");
SetNextResolution({},
"{\n"
" \"loadBalancingConfig\":[\n"
" { \"does_not_exist\":{} },\n"
" { \"xds_experimental\":{ \"balancerName\": "
"\"fake:///updated_lb\" } }\n"
" ]\n"
"}",
new_lb_channel_response_generator.get());
gpr_log(GPR_INFO, "========= UPDATED BALANCER NAME ==========");
// Wait until update has been processed, as signaled by the second backend
// receiving a request.
EXPECT_EQ(0U, backends_[1]->service_.request_count());
WaitForBackend(1);
backends_[1]->service_.ResetCounters();
gpr_log(GPR_INFO, "========= BEFORE SECOND BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH SECOND BATCH ==========");
// All 10 requests should have gone to the second backend.
EXPECT_EQ(10U, backends_[1]->service_.request_count());
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
EXPECT_EQ(1U, balancers_[1]->service_.request_count());
EXPECT_EQ(1U, balancers_[1]->service_.response_count());
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
}
// Send an update with the same set of LBs as the one in SetUp() in order to
// verify that the LB channel inside xds keeps the initial connection (which
// by definition is also present in the update).
TEST_F(UpdatesTest, UpdateBalancersRepeated) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannelAllBalancers();
const std::vector<int> first_backend{GetBackendPorts()[0]};
const std::vector<int> second_backend{GetBackendPorts()[0]};
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(first_backend, {}), 0);
ScheduleResponseForBalancer(
1, BalancerServiceImpl::BuildResponseForBackends(second_backend, {}), 0);
// Wait until the first backend is ready.
WaitForBackend(0);
// Send 10 requests.
gpr_log(GPR_INFO, "========= BEFORE FIRST BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH FIRST BATCH ==========");
// All 10 requests should have gone to the first backend.
EXPECT_EQ(10U, backends_[0]->service_.request_count());
// Balancer 0 got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
EXPECT_EQ(0U, balancers_[1]->service_.request_count());
EXPECT_EQ(0U, balancers_[1]->service_.response_count());
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
std::vector<int> ports;
ports.emplace_back(balancers_[0]->port_);
ports.emplace_back(balancers_[1]->port_);
ports.emplace_back(balancers_[2]->port_);
gpr_log(GPR_INFO, "========= ABOUT TO UPDATE 1 ==========");
SetNextResolutionForLbChannel(ports);
gpr_log(GPR_INFO, "========= UPDATE 1 DONE ==========");
EXPECT_EQ(0U, backends_[1]->service_.request_count());
gpr_timespec deadline = gpr_time_add(
gpr_now(GPR_CLOCK_REALTIME), gpr_time_from_millis(10000, GPR_TIMESPAN));
// Send 10 seconds worth of RPCs
do {
CheckRpcSendOk();
} while (gpr_time_cmp(gpr_now(GPR_CLOCK_REALTIME), deadline) < 0);
// xds continued using the original LB call to the first balancer, which
// doesn't assign the second backend.
EXPECT_EQ(0U, backends_[1]->service_.request_count());
ports.clear();
ports.emplace_back(balancers_[0]->port_);
ports.emplace_back(balancers_[1]->port_);
gpr_log(GPR_INFO, "========= ABOUT TO UPDATE 2 ==========");
SetNextResolutionForLbChannel(ports);
gpr_log(GPR_INFO, "========= UPDATE 2 DONE ==========");
EXPECT_EQ(0U, backends_[1]->service_.request_count());
deadline = gpr_time_add(gpr_now(GPR_CLOCK_REALTIME),
gpr_time_from_millis(10000, GPR_TIMESPAN));
// Send 10 seconds worth of RPCs
do {
CheckRpcSendOk();
} while (gpr_time_cmp(gpr_now(GPR_CLOCK_REALTIME), deadline) < 0);
// xds continued using the original LB call to the first balancer, which
// doesn't assign the second backend.
EXPECT_EQ(0U, backends_[1]->service_.request_count());
}
TEST_F(UpdatesTest, UpdateBalancersDeadUpdate) {
SetNextResolution({}, kDefaultServiceConfig_.c_str());
SetNextResolutionForLbChannel({balancers_[0]->port_});
const std::vector<int> first_backend{GetBackendPorts()[0]};
const std::vector<int> second_backend{GetBackendPorts()[1]};
ScheduleResponseForBalancer(
0, BalancerServiceImpl::BuildResponseForBackends(first_backend, {}), 0);
ScheduleResponseForBalancer(
1, BalancerServiceImpl::BuildResponseForBackends(second_backend, {}), 0);
// Start servers and send 10 RPCs per server.
gpr_log(GPR_INFO, "========= BEFORE FIRST BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH FIRST BATCH ==========");
// All 10 requests should have gone to the first backend.
EXPECT_EQ(10U, backends_[0]->service_.request_count());
// Kill balancer 0
gpr_log(GPR_INFO, "********** ABOUT TO KILL BALANCER 0 *************");
balancers_[0]->Shutdown();
gpr_log(GPR_INFO, "********** KILLED BALANCER 0 *************");
// This is serviced by the existing child policy.
gpr_log(GPR_INFO, "========= BEFORE SECOND BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH SECOND BATCH ==========");
// All 10 requests should again have gone to the first backend.
EXPECT_EQ(20U, backends_[0]->service_.request_count());
EXPECT_EQ(0U, backends_[1]->service_.request_count());
// Balancer 0 got a single request.
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
// and sent a single response.
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
EXPECT_EQ(0U, balancers_[1]->service_.request_count());
EXPECT_EQ(0U, balancers_[1]->service_.response_count());
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
gpr_log(GPR_INFO, "========= ABOUT TO UPDATE 1 ==========");
SetNextResolutionForLbChannel({balancers_[1]->port_});
gpr_log(GPR_INFO, "========= UPDATE 1 DONE ==========");
// Wait until update has been processed, as signaled by the second backend
// receiving a request. In the meantime, the client continues to be serviced
// (by the first backend) without interruption.
EXPECT_EQ(0U, backends_[1]->service_.request_count());
WaitForBackend(1);
// This is serviced by the updated RR policy
backends_[1]->service_.ResetCounters();
gpr_log(GPR_INFO, "========= BEFORE THIRD BATCH ==========");
CheckRpcSendOk(10);
gpr_log(GPR_INFO, "========= DONE WITH THIRD BATCH ==========");
// All 10 requests should have gone to the second backend.
EXPECT_EQ(10U, backends_[1]->service_.request_count());
EXPECT_EQ(1U, balancers_[0]->service_.request_count());
EXPECT_EQ(1U, balancers_[0]->service_.response_count());
// The second balancer, published as part of the first update, may end up
// getting two requests (that is, 1 <= #req <= 2) if the LB call retry timer
// firing races with the arrival of the update containing the second
// balancer.
EXPECT_GE(balancers_[1]->service_.request_count(), 1U);
EXPECT_GE(balancers_[1]->service_.response_count(), 1U);
EXPECT_LE(balancers_[1]->service_.request_count(), 2U);
EXPECT_LE(balancers_[1]->service_.response_count(), 2U);
EXPECT_EQ(0U, balancers_[2]->service_.request_count());
EXPECT_EQ(0U, balancers_[2]->service_.response_count());
}
// The re-resolution tests are deferred because they rely on the fallback mode,
// which hasn't been supported.
// TODO(juanlishen): Add TEST_F(UpdatesTest, ReresolveDeadBackend).
// TODO(juanlishen): Add TEST_F(UpdatesWithClientLoadReportingTest,
// ReresolveDeadBalancer)
// The drop tests are deferred because the drop handling hasn't been added yet.
// TODO(roth): Add TEST_F(SingleBalancerTest, Drop)
// TODO(roth): Add TEST_F(SingleBalancerTest, DropAllFirst)
// TODO(roth): Add TEST_F(SingleBalancerTest, DropAll)
class SingleBalancerWithClientLoadReportingTest : public XdsEnd2endTest {
public:
SingleBalancerWithClientLoadReportingTest() : XdsEnd2endTest(4, 1, 3) {}
};
// The client load reporting tests are deferred because the client load
// reporting hasn't been supported yet.
// TODO(vpowar): Add TEST_F(SingleBalancerWithClientLoadReportingTest, Vanilla)
// TODO(roth): Add TEST_F(SingleBalancerWithClientLoadReportingTest,
// BalancerRestart)
// TODO(roth): Add TEST_F(SingleBalancerWithClientLoadReportingTest, Drop)
} // namespace
} // namespace testing
} // namespace grpc
int main(int argc, char** argv) {
grpc_init();
grpc::testing::TestEnvironment env(argc, argv);
::testing::InitGoogleTest(&argc, argv);
const auto result = RUN_ALL_TESTS();
grpc_shutdown();
return result;
}
| [
"dzp_whu@163.com"
] | dzp_whu@163.com |
15cc173e38d70f18b2c0bf5ad3610b259b628133 | 045a72f9f0bbb81488f433c6e6d4b9973b8fe38a | /src/converter/lattice.cpp | 00265939697237a0d76e72c46c5d543a7c1db125 | [] | no_license | yoriyuki/tkd53 | 2597e7f3ecb54e024de2c29c98db3007f60091d9 | a56d0da48c7a51ec59d3d3e52c2f2edac8a9a78d | refs/heads/master | 2021-01-13T06:50:59.711273 | 2016-04-11T18:19:05 | 2016-04-11T18:19:05 | 55,995,936 | 0 | 0 | null | 2016-04-11T18:14:24 | 2016-04-11T18:14:24 | null | UTF-8 | C++ | false | false | 759 | cpp | #include <iostream>
#include "lattice.hpp"
namespace lime {
namespace converter {
Lattice::Lattice(size_t column_count,
unique_ptr<vector<shared_ptr<Node> > > nodes,
unique_ptr<vector<vector<shared_ptr<Node> > > > begin_nodes,
unique_ptr<vector<vector<shared_ptr<Node> > > > end_nodes)
: column_count_(column_count),
nodes_(move(nodes)),
begin_nodes_(move(begin_nodes)),
end_nodes_(move(end_nodes)) {
}
size_t Lattice::GetColumnCount() const {
return column_count_;
}
vector<shared_ptr<Node> > &Lattice::GetBeginNodes(size_t pos) {
return (*begin_nodes_)[pos];
}
vector<shared_ptr<Node> > &Lattice::GetEndNodes(size_t pos) {
return (*end_nodes_)[pos];
}
} // converter
} // lime
| [
"hirokuni.maeta+github@gmail.com"
] | hirokuni.maeta+github@gmail.com |
84cb8b059cfa00ad10664674ce7427e862a62732 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/ThirdParty/CEF3/cef_binary_3.2623.1395.g3034273_linux64/include/base/cef_scoped_ptr.h | ed6c706f785d9491ed84f2b9dfbc9e2a3e7277aa | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 24,795 | h | // Copyright (c) 2014 Marshall A. Greenblatt. Portions copyright (c) 2012
// Google 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 Google Inc. nor the name Chromium Embedded
// Framework 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.
// Scopers help you manage ownership of a pointer, helping you easily manage a
// pointer within a scope, and automatically destroying the pointer at the end
// of a scope. There are two main classes you will use, which correspond to the
// operators new/delete and new[]/delete[].
//
// Example usage (scoped_ptr<T>):
// {
// scoped_ptr<Foo> foo(new Foo("wee"));
// } // foo goes out of scope, releasing the pointer with it.
//
// {
// scoped_ptr<Foo> foo; // No pointer managed.
// foo.reset(new Foo("wee")); // Now a pointer is managed.
// foo.reset(new Foo("wee2")); // Foo("wee") was destroyed.
// foo.reset(new Foo("wee3")); // Foo("wee2") was destroyed.
// foo->Method(); // Foo::Method() called.
// foo.get()->Method(); // Foo::Method() called.
// SomeFunc(foo.release()); // SomeFunc takes ownership, foo no longer
// // manages a pointer.
// foo.reset(new Foo("wee4")); // foo manages a pointer again.
// foo.reset(); // Foo("wee4") destroyed, foo no longer
// // manages a pointer.
// } // foo wasn't managing a pointer, so nothing was destroyed.
//
// Example usage (scoped_ptr<T[]>):
// {
// scoped_ptr<Foo[]> foo(new Foo[100]);
// foo.get()->Method(); // Foo::Method on the 0th element.
// foo[10].Method(); // Foo::Method on the 10th element.
// }
//
// These scopers also implement part of the functionality of C++11 unique_ptr
// in that they are "movable but not copyable." You can use the scopers in
// the parameter and return types of functions to signify ownership transfer
// in to and out of a function. When calling a function that has a scoper
// as the argument type, it must be called with the result of an analogous
// scoper's Pass() function or another function that generates a temporary;
// passing by copy will NOT work. Here is an example using scoped_ptr:
//
// void TakesOwnership(scoped_ptr<Foo> arg) {
// // Do something with arg
// }
// scoped_ptr<Foo> CreateFoo() {
// // No need for calling Pass() because we are constructing a temporary
// // for the return value.
// return scoped_ptr<Foo>(new Foo("new"));
// }
// scoped_ptr<Foo> PassThru(scoped_ptr<Foo> arg) {
// return arg.Pass();
// }
//
// {
// scoped_ptr<Foo> ptr(new Foo("yay")); // ptr manages Foo("yay").
// TakesOwnership(ptr.Pass()); // ptr no longer owns Foo("yay").
// scoped_ptr<Foo> ptr2 = CreateFoo(); // ptr2 owns the return Foo.
// scoped_ptr<Foo> ptr3 = // ptr3 now owns what was in ptr2.
// PassThru(ptr2.Pass()); // ptr2 is correspondingly NULL.
// }
//
// Notice that if you do not call Pass() when returning from PassThru(), or
// when invoking TakesOwnership(), the code will not compile because scopers
// are not copyable; they only implement move semantics which require calling
// the Pass() function to signify a destructive transfer of state. CreateFoo()
// is different though because we are constructing a temporary on the return
// line and thus can avoid needing to call Pass().
//
// Pass() properly handles upcast in initialization, i.e. you can use a
// scoped_ptr<Child> to initialize a scoped_ptr<Parent>:
//
// scoped_ptr<Foo> foo(new Foo());
// scoped_ptr<FooParent> parent(foo.Pass());
//
// PassAs<>() should be used to upcast return value in return statement:
//
// scoped_ptr<Foo> CreateFoo() {
// scoped_ptr<FooChild> result(new FooChild());
// return result.PassAs<Foo>();
// }
//
// Note that PassAs<>() is implemented only for scoped_ptr<T>, but not for
// scoped_ptr<T[]>. This is because casting array pointers may not be safe.
#ifndef CEF_INCLUDE_BASE_CEF_MEMORY_SCOPED_PTR_H_
#define CEF_INCLUDE_BASE_CEF_MEMORY_SCOPED_PTR_H_
#pragma once
#if defined(BASE_MEMORY_SCOPED_PTR_H_)
// Do nothing if the Chromium header has already been included.
// This can happen in cases where Chromium code is used directly by the
// client application. When using Chromium code directly always include
// the Chromium header first to avoid type conflicts.
#elif defined(BUILDING_CEF_SHARED)
// When building CEF include the Chromium header directly.
#include "base/memory/scoped_ptr.h"
#else // !BUILDING_CEF_SHARED
// The following is substantially similar to the Chromium implementation.
// If the Chromium implementation diverges the below implementation should be
// updated to match.
// This is an implementation designed to match the anticipated future TR2
// implementation of the scoped_ptr class.
#include <assert.h>
#include <stddef.h>
#include <stdlib.h>
#include <algorithm> // For std::swap().
#include "include/base/cef_basictypes.h"
#include "include/base/cef_build.h"
#include "include/base/cef_macros.h"
#include "include/base/cef_move.h"
#include "include/base/cef_template_util.h"
namespace base {
namespace subtle {
class RefCountedBase;
class RefCountedThreadSafeBase;
} // namespace subtle
// Function object which deletes its parameter, which must be a pointer.
// If C is an array type, invokes 'delete[]' on the parameter; otherwise,
// invokes 'delete'. The default deleter for scoped_ptr<T>.
template <class T>
struct DefaultDeleter {
DefaultDeleter() {}
template <typename U> DefaultDeleter(const DefaultDeleter<U>& other) {
// IMPLEMENTATION NOTE: C++11 20.7.1.1.2p2 only provides this constructor
// if U* is implicitly convertible to T* and U is not an array type.
//
// Correct implementation should use SFINAE to disable this
// constructor. However, since there are no other 1-argument constructors,
// using a COMPILE_ASSERT() based on is_convertible<> and requiring
// complete types is simpler and will cause compile failures for equivalent
// misuses.
//
// Note, the is_convertible<U*, T*> check also ensures that U is not an
// array. T is guaranteed to be a non-array, so any U* where U is an array
// cannot convert to T*.
enum { T_must_be_complete = sizeof(T) };
enum { U_must_be_complete = sizeof(U) };
COMPILE_ASSERT((base::is_convertible<U*, T*>::value),
U_ptr_must_implicitly_convert_to_T_ptr);
}
inline void operator()(T* ptr) const {
enum { type_must_be_complete = sizeof(T) };
delete ptr;
}
};
// Specialization of DefaultDeleter for array types.
template <class T>
struct DefaultDeleter<T[]> {
inline void operator()(T* ptr) const {
enum { type_must_be_complete = sizeof(T) };
delete[] ptr;
}
private:
// Disable this operator for any U != T because it is undefined to execute
// an array delete when the static type of the array mismatches the dynamic
// type.
//
// References:
// C++98 [expr.delete]p3
// http://cplusplus.github.com/LWG/lwg-defects.html#938
template <typename U> void operator()(U* array) const;
};
template <class T, int n>
struct DefaultDeleter<T[n]> {
// Never allow someone to declare something like scoped_ptr<int[10]>.
COMPILE_ASSERT(sizeof(T) == -1, do_not_use_array_with_size_as_type);
};
// Function object which invokes 'free' on its parameter, which must be
// a pointer. Can be used to store malloc-allocated pointers in scoped_ptr:
//
// scoped_ptr<int, base::FreeDeleter> foo_ptr(
// static_cast<int*>(malloc(sizeof(int))));
struct FreeDeleter {
inline void operator()(void* ptr) const {
free(ptr);
}
};
namespace cef_internal {
template <typename T> struct IsNotRefCounted {
enum {
value = !base::is_convertible<T*, base::subtle::RefCountedBase*>::value &&
!base::is_convertible<T*, base::subtle::RefCountedThreadSafeBase*>::
value
};
};
// Minimal implementation of the core logic of scoped_ptr, suitable for
// reuse in both scoped_ptr and its specializations.
template <class T, class D>
class scoped_ptr_impl {
public:
explicit scoped_ptr_impl(T* p) : data_(p) { }
// Initializer for deleters that have data parameters.
scoped_ptr_impl(T* p, const D& d) : data_(p, d) {}
// Templated constructor that destructively takes the value from another
// scoped_ptr_impl.
template <typename U, typename V>
scoped_ptr_impl(scoped_ptr_impl<U, V>* other)
: data_(other->release(), other->get_deleter()) {
// We do not support move-only deleters. We could modify our move
// emulation to have base::subtle::move() and base::subtle::forward()
// functions that are imperfect emulations of their C++11 equivalents,
// but until there's a requirement, just assume deleters are copyable.
}
template <typename U, typename V>
void TakeState(scoped_ptr_impl<U, V>* other) {
// See comment in templated constructor above regarding lack of support
// for move-only deleters.
reset(other->release());
get_deleter() = other->get_deleter();
}
~scoped_ptr_impl() {
if (data_.ptr != NULL) {
// Not using get_deleter() saves one function call in non-optimized
// builds.
static_cast<D&>(data_)(data_.ptr);
}
}
void reset(T* p) {
// This is a self-reset, which is no longer allowed: http://crbug.com/162971
if (p != NULL && p == data_.ptr)
abort();
// Note that running data_.ptr = p can lead to undefined behavior if
// get_deleter()(get()) deletes this. In order to prevent this, reset()
// should update the stored pointer before deleting its old value.
//
// However, changing reset() to use that behavior may cause current code to
// break in unexpected ways. If the destruction of the owned object
// dereferences the scoped_ptr when it is destroyed by a call to reset(),
// then it will incorrectly dispatch calls to |p| rather than the original
// value of |data_.ptr|.
//
// During the transition period, set the stored pointer to NULL while
// deleting the object. Eventually, this safety check will be removed to
// prevent the scenario initially described from occuring and
// http://crbug.com/176091 can be closed.
T* old = data_.ptr;
data_.ptr = NULL;
if (old != NULL)
static_cast<D&>(data_)(old);
data_.ptr = p;
}
T* get() const { return data_.ptr; }
D& get_deleter() { return data_; }
const D& get_deleter() const { return data_; }
void swap(scoped_ptr_impl& p2) {
// Standard swap idiom: 'using std::swap' ensures that std::swap is
// present in the overload set, but we call swap unqualified so that
// any more-specific overloads can be used, if available.
using std::swap;
swap(static_cast<D&>(data_), static_cast<D&>(p2.data_));
swap(data_.ptr, p2.data_.ptr);
}
T* release() {
T* old_ptr = data_.ptr;
data_.ptr = NULL;
return old_ptr;
}
private:
// Needed to allow type-converting constructor.
template <typename U, typename V> friend class scoped_ptr_impl;
// Use the empty base class optimization to allow us to have a D
// member, while avoiding any space overhead for it when D is an
// empty class. See e.g. http://www.cantrip.org/emptyopt.html for a good
// discussion of this technique.
struct Data : public D {
explicit Data(T* ptr_in) : ptr(ptr_in) {}
Data(T* ptr_in, const D& other) : D(other), ptr(ptr_in) {}
T* ptr;
};
Data data_;
DISALLOW_COPY_AND_ASSIGN(scoped_ptr_impl);
};
} // namespace cef_internal
} // namespace base
// A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
// automatically deletes the pointer it holds (if any).
// That is, scoped_ptr<T> owns the T object that it points to.
// Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object.
// Also like T*, scoped_ptr<T> is thread-compatible, and once you
// dereference it, you get the thread safety guarantees of T.
//
// The size of scoped_ptr is small. On most compilers, when using the
// DefaultDeleter, sizeof(scoped_ptr<T>) == sizeof(T*). Custom deleters will
// increase the size proportional to whatever state they need to have. See
// comments inside scoped_ptr_impl<> for details.
//
// Current implementation targets having a strict subset of C++11's
// unique_ptr<> features. Known deficiencies include not supporting move-only
// deleteres, function pointers as deleters, and deleters with reference
// types.
template <class T, class D = base::DefaultDeleter<T> >
class scoped_ptr {
MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr, RValue)
COMPILE_ASSERT(base::cef_internal::IsNotRefCounted<T>::value,
T_is_refcounted_type_and_needs_scoped_refptr);
public:
// The element and deleter types.
typedef T element_type;
typedef D deleter_type;
// Constructor. Defaults to initializing with NULL.
scoped_ptr() : impl_(NULL) { }
// Constructor. Takes ownership of p.
explicit scoped_ptr(element_type* p) : impl_(p) { }
// Constructor. Allows initialization of a stateful deleter.
scoped_ptr(element_type* p, const D& d) : impl_(p, d) { }
// Constructor. Allows construction from a scoped_ptr rvalue for a
// convertible type and deleter.
//
// IMPLEMENTATION NOTE: C++11 unique_ptr<> keeps this constructor distinct
// from the normal move constructor. By C++11 20.7.1.2.1.21, this constructor
// has different post-conditions if D is a reference type. Since this
// implementation does not support deleters with reference type,
// we do not need a separate move constructor allowing us to avoid one
// use of SFINAE. You only need to care about this if you modify the
// implementation of scoped_ptr.
template <typename U, typename V>
scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
COMPILE_ASSERT(!base::is_array<U>::value, U_cannot_be_an_array);
}
// Constructor. Move constructor for C++03 move emulation of this type.
scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
// operator=. Allows assignment from a scoped_ptr rvalue for a convertible
// type and deleter.
//
// IMPLEMENTATION NOTE: C++11 unique_ptr<> keeps this operator= distinct from
// the normal move assignment operator. By C++11 20.7.1.2.3.4, this templated
// form has different requirements on for move-only Deleters. Since this
// implementation does not support move-only Deleters, we do not need a
// separate move assignment operator allowing us to avoid one use of SFINAE.
// You only need to care about this if you modify the implementation of
// scoped_ptr.
template <typename U, typename V>
scoped_ptr& operator=(scoped_ptr<U, V> rhs) {
COMPILE_ASSERT(!base::is_array<U>::value, U_cannot_be_an_array);
impl_.TakeState(&rhs.impl_);
return *this;
}
// Reset. Deletes the currently owned object, if any.
// Then takes ownership of a new object, if given.
void reset(element_type* p = NULL) { impl_.reset(p); }
// Accessors to get the owned object.
// operator* and operator-> will assert() if there is no current object.
element_type& operator*() const {
assert(impl_.get() != NULL);
return *impl_.get();
}
element_type* operator->() const {
assert(impl_.get() != NULL);
return impl_.get();
}
element_type* get() const { return impl_.get(); }
// Access to the deleter.
deleter_type& get_deleter() { return impl_.get_deleter(); }
const deleter_type& get_deleter() const { return impl_.get_deleter(); }
// Allow scoped_ptr<element_type> to be used in boolean expressions, but not
// implicitly convertible to a real bool (which is dangerous).
//
// Note that this trick is only safe when the == and != operators
// are declared explicitly, as otherwise "scoped_ptr1 ==
// scoped_ptr2" will compile but do the wrong thing (i.e., convert
// to Testable and then do the comparison).
private:
typedef base::cef_internal::scoped_ptr_impl<element_type, deleter_type>
scoped_ptr::*Testable;
public:
operator Testable() const { return impl_.get() ? &scoped_ptr::impl_ : NULL; }
// Comparison operators.
// These return whether two scoped_ptr refer to the same object, not just to
// two different but equal objects.
bool operator==(const element_type* p) const { return impl_.get() == p; }
bool operator!=(const element_type* p) const { return impl_.get() != p; }
// Swap two scoped pointers.
void swap(scoped_ptr& p2) {
impl_.swap(p2.impl_);
}
// Release a pointer.
// The return value is the current pointer held by this object.
// If this object holds a NULL pointer, the return value is NULL.
// After this operation, this object will hold a NULL pointer,
// and will not own the object any more.
element_type* release() WARN_UNUSED_RESULT {
return impl_.release();
}
// C++98 doesn't support functions templates with default parameters which
// makes it hard to write a PassAs() that understands converting the deleter
// while preserving simple calling semantics.
//
// Until there is a use case for PassAs() with custom deleters, just ignore
// the custom deleter.
template <typename PassAsType>
scoped_ptr<PassAsType> PassAs() {
return scoped_ptr<PassAsType>(Pass());
}
private:
// Needed to reach into |impl_| in the constructor.
template <typename U, typename V> friend class scoped_ptr;
base::cef_internal::scoped_ptr_impl<element_type, deleter_type> impl_;
// Forbidden for API compatibility with std::unique_ptr.
explicit scoped_ptr(int disallow_construction_from_null);
// Forbid comparison of scoped_ptr types. If U != T, it totally
// doesn't make sense, and if U == T, it still doesn't make sense
// because you should never have the same object owned by two different
// scoped_ptrs.
template <class U> bool operator==(scoped_ptr<U> const& p2) const;
template <class U> bool operator!=(scoped_ptr<U> const& p2) const;
};
template <class T, class D>
class scoped_ptr<T[], D> {
MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr, RValue)
public:
// The element and deleter types.
typedef T element_type;
typedef D deleter_type;
// Constructor. Defaults to initializing with NULL.
scoped_ptr() : impl_(NULL) { }
// Constructor. Stores the given array. Note that the argument's type
// must exactly match T*. In particular:
// - it cannot be a pointer to a type derived from T, because it is
// inherently unsafe in the general case to access an array through a
// pointer whose dynamic type does not match its static type (eg., if
// T and the derived types had different sizes access would be
// incorrectly calculated). Deletion is also always undefined
// (C++98 [expr.delete]p3). If you're doing this, fix your code.
// - it cannot be NULL, because NULL is an integral expression, not a
// pointer to T. Use the no-argument version instead of explicitly
// passing NULL.
// - it cannot be const-qualified differently from T per unique_ptr spec
// (http://cplusplus.github.com/LWG/lwg-active.html#2118). Users wanting
// to work around this may use implicit_cast<const T*>().
// However, because of the first bullet in this comment, users MUST
// NOT use implicit_cast<Base*>() to upcast the static type of the array.
explicit scoped_ptr(element_type* array) : impl_(array) { }
// Constructor. Move constructor for C++03 move emulation of this type.
scoped_ptr(RValue rvalue) : impl_(&rvalue.object->impl_) { }
// operator=. Move operator= for C++03 move emulation of this type.
scoped_ptr& operator=(RValue rhs) {
impl_.TakeState(&rhs.object->impl_);
return *this;
}
// Reset. Deletes the currently owned array, if any.
// Then takes ownership of a new object, if given.
void reset(element_type* array = NULL) { impl_.reset(array); }
// Accessors to get the owned array.
element_type& operator[](size_t i) const {
assert(impl_.get() != NULL);
return impl_.get()[i];
}
element_type* get() const { return impl_.get(); }
// Access to the deleter.
deleter_type& get_deleter() { return impl_.get_deleter(); }
const deleter_type& get_deleter() const { return impl_.get_deleter(); }
// Allow scoped_ptr<element_type> to be used in boolean expressions, but not
// implicitly convertible to a real bool (which is dangerous).
private:
typedef base::cef_internal::scoped_ptr_impl<element_type, deleter_type>
scoped_ptr::*Testable;
public:
operator Testable() const { return impl_.get() ? &scoped_ptr::impl_ : NULL; }
// Comparison operators.
// These return whether two scoped_ptr refer to the same object, not just to
// two different but equal objects.
bool operator==(element_type* array) const { return impl_.get() == array; }
bool operator!=(element_type* array) const { return impl_.get() != array; }
// Swap two scoped pointers.
void swap(scoped_ptr& p2) {
impl_.swap(p2.impl_);
}
// Release a pointer.
// The return value is the current pointer held by this object.
// If this object holds a NULL pointer, the return value is NULL.
// After this operation, this object will hold a NULL pointer,
// and will not own the object any more.
element_type* release() WARN_UNUSED_RESULT {
return impl_.release();
}
private:
// Force element_type to be a complete type.
enum { type_must_be_complete = sizeof(element_type) };
// Actually hold the data.
base::cef_internal::scoped_ptr_impl<element_type, deleter_type> impl_;
// Disable initialization from any type other than element_type*, by
// providing a constructor that matches such an initialization, but is
// private and has no definition. This is disabled because it is not safe to
// call delete[] on an array whose static type does not match its dynamic
// type.
template <typename U> explicit scoped_ptr(U* array);
explicit scoped_ptr(int disallow_construction_from_null);
// Disable reset() from any type other than element_type*, for the same
// reasons as the constructor above.
template <typename U> void reset(U* array);
void reset(int disallow_reset_from_null);
// Forbid comparison of scoped_ptr types. If U != T, it totally
// doesn't make sense, and if U == T, it still doesn't make sense
// because you should never have the same object owned by two different
// scoped_ptrs.
template <class U> bool operator==(scoped_ptr<U> const& p2) const;
template <class U> bool operator!=(scoped_ptr<U> const& p2) const;
};
// Free functions
template <class T, class D>
void swap(scoped_ptr<T, D>& p1, scoped_ptr<T, D>& p2) {
p1.swap(p2);
}
template <class T, class D>
bool operator==(T* p1, const scoped_ptr<T, D>& p2) {
return p1 == p2.get();
}
template <class T, class D>
bool operator!=(T* p1, const scoped_ptr<T, D>& p2) {
return p1 != p2.get();
}
// A function to convert T* into scoped_ptr<T>
// Doing e.g. make_scoped_ptr(new FooBarBaz<type>(arg)) is a shorter notation
// for scoped_ptr<FooBarBaz<type> >(new FooBarBaz<type>(arg))
template <typename T>
scoped_ptr<T> make_scoped_ptr(T* ptr) {
return scoped_ptr<T>(ptr);
}
#endif // !BUILDING_CEF_SHARED
#endif // CEF_INCLUDE_BASE_CEF_MEMORY_SCOPED_PTR_H_
| [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
228d7628a84fda5e9f4bb32ee0a9238028dc8521 | 39719ced2451b97c266568e2d9364bfe90ab3498 | /Source/zzExamples/CRagdoll.cpp | 06a1727bb8d83b4a9700a7e5e1e0f7b0ece38a0e | [
"MIT"
] | permissive | shanefarris/CoreGameEngine | 74ae026cdc443242fa80fe9802f5739c1064fb66 | 5bef275d1cd4e84aa059f2f4f9e97bfa2414d000 | refs/heads/master | 2020-05-07T12:19:23.055995 | 2019-04-11T14:10:16 | 2019-04-11T14:10:16 | 180,496,793 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 15,311 | cpp | #include "CRagdoll.h"
#include "Nxp.h"
#include "NxActor.h"
using namespace Core;
using namespace Core::Physics;
CRagdoll::CRagdoll(String fileName, SceneNode *characterSN, String id, NxOgre::Scene *PHXScene, f32 bodyDensity)
{
m_CharacterNode = characterSN;
m_PHYSScene=PHXScene;
m_CharacterID=id;
m_PositionControllingBone=NULL;
m_BodyDensity=bodyDensity;
m_BonesCounter=0;
ConfigFile mRagDollCfgFile;
mRagDollCfgFile.loadFromResourceSystem(fileName, "General");
ConfigFile::SectionIterator seci = mRagDollCfgFile.getSectionIterator();
String secName, paramName, valueName;
while (seci.hasMoreElements())
{
secName = seci.peekNextKey();
ConfigFile::SettingsMultiMap *settings = seci.getNext();
ConfigFile::SettingsMultiMap::iterator i;
std::map<String, String> sectionData;
for (i = settings->begin(); i != settings->end(); ++i)
{
paramName = i->first;
valueName = i->second;
sectionData[paramName]=valueName;
}
if (secName!="")
{
_parseSectionData(secName, sectionData);
}
}
if (m_BonesCounter==15)
{
setControlToBones();
setAllBonesToManualControll(true);
setRagdollBindPose();
setAllBonesToManualControll(false);
addJoints();
//...as we dont have root bone attached to Bone Actor, we use Pelvis BA instead
if (!m_PositionControllingBone)
m_PositionControllingBone=getBoneBoneActorBindByName("Pelvis");
}
else
LogManager::getSingleton().logMessage( "Not enough bones declared in file: " + fileName + ". CRagdoll was not created!" );
}
void CRagdoll::_parseSectionData( String secName, std::map<String, String> section )
{
Vector3 dimensions = StringConverter::parseVector3( section["dimensions"] );
Vector3 offset = StringConverter::parseVector3( section["offset"] );
Entity* ent = ( Entity* ) m_CharacterNode->getAttachedObject( 0 );
m_BoneBoneActorBind[m_BonesCounter].name = secName;
m_BoneBoneActorBind[m_BonesCounter].bone = ent->getSkeleton()->getBone( section["boneName"] );
m_BoneBoneActorBind[m_BonesCounter].BAoffset = offset;
NxOgre::RigidBodyDescription desc;
//desc.reset();
desc.mMass = 0.0;
desc.mDensity = m_BodyDensity;
desc.mType = NxOgre::Enums::RigidBodyType_Dynamic;
desc.mBodyFlags = NxOgre::Enums::ActorFlags_DisableCollision;
NxOgre::Actor* actor = NULL;
if (section["actorShape"]==String("sphere"))
{
actor = m_BoneBoneActorBind[m_BonesCounter].BoneActor = m_PHYSScene->createActor(
new NxOgre::Sphere(dimensions.x), Matrix44_Identity,
desc);
actor->setAngularDamping(actor->getAngularDamping() * 2);
actor->setLinearDamping(actor->getLinearDamping() * 2);
actor->setSleepAngularVelocity(actor->getSleepAngularVelocity() * 2);
actor->setSleepLinearVelocity(actor->getSleepLinearVelocity() * 2);
}
if (section["actorShape"]==String("cube"))
{
actor = m_BoneBoneActorBind[m_BonesCounter].BoneActor = m_PHYSScene->createActor(
new NxOgre::Box(dimensions.x,dimensions.y,dimensions.z), Matrix44_Identity,
desc);
actor->setAngularDamping(actor->getAngularDamping() * 2);
actor->setLinearDamping(actor->getLinearDamping() * 2);
actor->setSleepAngularVelocity(actor->getSleepAngularVelocity() * 2);
actor->setSleepLinearVelocity(actor->getSleepLinearVelocity() * 2);
}
if (section["actorShape"]==String("capsule"))
{
actor = m_BoneBoneActorBind[m_BonesCounter].BoneActor = m_PHYSScene->createActor(
new NxOgre::Capsule(dimensions.x,dimensions.y), Matrix44_Identity,
desc);
actor->setAngularDamping(actor->getAngularDamping() * 2);
actor->setLinearDamping(actor->getLinearDamping() * 2);
actor->setSleepAngularVelocity(actor->getSleepAngularVelocity() * 2);
actor->setSleepLinearVelocity(actor->getSleepLinearVelocity() * 2);
}
//he have found a root bone - use it for character positioning
if (!m_BoneBoneActorBind[m_BonesCounter].bone->getParent())
m_PositionControllingBone=&m_BoneBoneActorBind[m_BonesCounter];
else
{
String test = m_BoneBoneActorBind[m_BonesCounter].bone->getParent()->getName();
test = m_BoneBoneActorBind[m_BonesCounter].bone->getName();
int i = 0;
}
m_BonesCounter++;
}
void CRagdoll::setControlToBones()
{
m_ControlToBones=true;
m_ControlToBoneActors=false;
_setControlToBones();
}
void CRagdoll::setControlToBoneActors()
{
m_ControlToBoneActors=true;
m_ControlToBones=false;
_setControlToBoneActors();
}
void CRagdoll::_setControlToBones()
{
for (int i=0; i<15; i++)
{
m_BoneBoneActorBind[i].BoneActor->getNxActor()->raiseActorFlag( NX_AF_DISABLE_COLLISION );
m_BoneBoneActorBind[i].BoneActor->getNxActor()->raiseBodyFlag( NX_BF_KINEMATIC );
m_BoneBoneActorBind[i].BoneActor->putToSleep();
}
}
void CRagdoll::_setControlToBoneActors()
{
updateBoneActors();
setAllBonesToManualControll(true);
resetAllBones();
//disabling all animations
Entity* e = ( Entity* ) m_CharacterNode->getAttachedObject( 0 );
AnimationStateSet* set = e->getAllAnimationStates();
AnimationStateIterator it = set->getAnimationStateIterator();
AnimationState *anim;
while( it.hasMoreElements() )
{
anim = it.getNext();
anim->setTimePosition( 0 );
anim->setEnabled( false );
anim->setWeight( 0 );
}
for( int i = 0; i < 15; i++ )
{
m_BoneBoneActorBind[i].BoneActor->getNxActor()->clearActorFlag(NX_AF_DISABLE_COLLISION);
m_BoneBoneActorBind[i].BoneActor->getNxActor()->clearBodyFlag(NX_BF_KINEMATIC);
m_BoneBoneActorBind[i].BoneActor->wakeUp(Real(20.0 * 0.02));
m_BoneBoneActorBind[i].BoneActor->setAngularDamping(1.0);
m_BoneBoneActorBind[i].BoneActor->setLinearDamping(1.0);
}
}
void CRagdoll::updateBoneActors()
{
Vector3 OgrePosition;
Quaternion PhysxRotation, OgreGlobalQuat;
for( int i = 0; i < 15; i++ )
{
//Get parent and child Positions
Vector3 bonePos = m_BoneBoneActorBind[i].bone->_getDerivedPosition();
Vector3 nextBonePos = m_BoneBoneActorBind[i].bone->getChild(0)->_getDerivedPosition();
//get vector difference between parent and child
Vector3 difference = nextBonePos - bonePos;
Vector3 forward = difference.normalisedCopy();
//Get bone Orientation and re-align
Quaternion new_orient = Vector3::UNIT_Y.getRotationTo( forward );
//mid point of bone
Vector3 pos = bonePos + ( forward * ( difference.length() * 0.5f ) );
//adjust Bone Actor placement
pos.x += m_BoneBoneActorBind[i].BAoffset.x;
pos.y += m_BoneBoneActorBind[i].BAoffset.y;
pos.z += m_BoneBoneActorBind[i].BAoffset.z;
//update Bone Actor
m_BoneBoneActorBind[i].BoneActor->setGlobalPosition( pos + m_CharacterNode->_getDerivedPosition());
m_BoneBoneActorBind[i].BoneActor->setGlobalOrientation( NxOgre::Matrix33(new_orient) );
}
}
void CRagdoll::updateBones()
{
Quaternion PhysxRotation, OgreGlobalQuat, NodeRotationInverse = m_CharacterNode->getParentSceneNode()->getOrientation().Inverse();
// Loop through all bones
for( int i = 0; i < 15; i++ )
{
PhysxRotation = m_BoneBoneActorBind[i].BoneActor->getGlobalOrientationQuat().as<Quaternion>() * m_BoneBoneActorBind[i].BoneActorGlobalBindOrientationInverse;
Ogre::Quaternion ParentInverse = NodeRotationInverse;
if ( m_BoneBoneActorBind[i].bone->getParent() )
ParentInverse = m_BoneBoneActorBind[i].bone->getParent()->_getDerivedOrientation().Inverse() * NodeRotationInverse;
else
{
reVector3Df pos = m_BoneBoneActorBind[i].BoneActor->getGlobalPosition().as<reVector3Df>() -
m_CharacterNode->getParentSceneNode()->getOrientation() *
m_BoneBoneActorBind[i].bone->getPosition();
m_CharacterNode->getParentSceneNode()->setPosition( pos);
}
OgreGlobalQuat = PhysxRotation * m_BoneBoneActorBind[i].BoneGlobalBindOrientation;
m_BoneBoneActorBind[i].bone->setOrientation( ParentInverse * OgreGlobalQuat );
}
Ogre::Vector3 newPos = m_PositionControllingBone->BoneActor->getGlobalPosition().as<reVector3Df>() -
m_CharacterNode->getParentSceneNode()->getOrientation() *
m_PositionControllingBone->bone->getPosition() - m_PositionControllingBone->BAoffset;
m_CharacterNode->getParentSceneNode()->setPosition( newPos );
}
void CRagdoll::update()
{
if (m_ControlToBones)
updateBoneActors();
if (m_ControlToBoneActors)
updateBones();
}
void CRagdoll::addJoints()
{
NxOgre::RevoluteJointDescription rjd;
NxOgre::JointLimitPairDescription rjdLimit;
NxOgre::JointLimitDescription limit1;
limit1.mValue = -0.75*NxPi;
NxOgre::JointLimitDescription limit2;
limit2.mValue = 0;
rjdLimit.first = limit1;
rjdLimit.second = limit2;
rjd.mLimit = rjdLimit;
rjd.mJointFlags = 0;
NxOgre::SphericalJointDescription sjd;
sjd.mJointFlags = 0;
NxOgre::JointLimitDescription limit3;
limit3.mValue = -(NxReal)0.025*NxPi;
limit3.mRestitution = 0.5;
NxOgre::JointLimitDescription limit4;
limit4.mValue = (NxReal)0.025*NxPi;
limit4.mRestitution = 1;
sjd.mTwistLimit.first = limit3;
sjd.mTwistLimit.second = limit4;
sjd.mSwingLimit.mValue = (NxReal)0.15*NxPi;
sjd.mSwingLimit.mRestitution = 0.5;
sjd.mTwistSpring.mDamper = 1;
sjd.mTwistSpring.mSpring = 0.5;
sjd.mSwingSpring.mDamper = 1;
sjd.mSwingSpring.mSpring = 0.5;
sjd.mProjectionDistance = 0.15;
sjd.mProjectionMode = NxOgre::Enums::JointProjectionMode_Point_MiniumDistance;
NxOgre::SphericalJointDescription sjd2 = sjd;
sjd2.mSwingLimit.mValue = 0.45*NxPi;
NxOgre::JointLimitDescription limit5;
limit5.mValue = -(NxReal)0.15*NxPi;
NxOgre::JointLimitDescription limit6;
limit6.mValue = (NxReal)0.15*NxPi;
sjd2.mTwistLimit.first = limit5;
sjd2.mTwistLimit.second = limit6;
NxOgre::JointDescription chestDesc;
chestDesc.mJointFlags = 0;
NxOgre::Joint* joint = NULL;
//Neck
joint = m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("Head")->BoneActor,
getBoneBoneActorBindByName("Torso")->BoneActor, sjd /*,pos ,sphJointParam*/);
joint->setGlobalAxis(Vector3::UNIT_Y);
//Chest
joint = m_PHYSScene->createFixedJoint(
getBoneBoneActorBindByName("Torso")->BoneActor,
getBoneBoneActorBindByName("Pelvis")->BoneActor, chestDesc);
//joint->setGlobalAxis(Vector3::UNIT_Y);
//Left Leg
joint=m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("Pelvis")->BoneActor,
getBoneBoneActorBindByName("LeftUpLeg")->BoneActor, sjd /*,pos,sphJointParam*/);
joint->setGlobalAxis(Vector3::NEGATIVE_UNIT_Y);
//Left knee
joint = m_PHYSScene->createRevoluteJoint(
getBoneBoneActorBindByName("LeftUpLeg")->BoneActor,
getBoneBoneActorBindByName("LeftLoLeg")->BoneActor, rjd/*,-Vector3::UNIT_X,pos,jp*/);
//Left ankle
joint = m_PHYSScene->createRevoluteJoint(
getBoneBoneActorBindByName("LeftLoLeg")->BoneActor,
getBoneBoneActorBindByName("LeftFoot")->BoneActor, rjd/*,Vector3::UNIT_X,pos,jp*/);
//Right Leg
joint = m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("Pelvis")->BoneActor,
getBoneBoneActorBindByName("RightUpLeg")->BoneActor, sjd /*,pos,sphJointParam*/);
joint->setGlobalAxis(Vector3::NEGATIVE_UNIT_Y);
//Right knee
joint = m_PHYSScene->createRevoluteJoint(
getBoneBoneActorBindByName("RightUpLeg")->BoneActor,
getBoneBoneActorBindByName("RightLoLeg")->BoneActor, rjd /*,-Vector3::UNIT_X,pos,jp*/);
//Right ankle
joint = m_PHYSScene->createRevoluteJoint(
getBoneBoneActorBindByName("RightLoLeg")->BoneActor,
getBoneBoneActorBindByName("RightFoot")->BoneActor, rjd /*,Vector3::UNIT_X,pos,jp*/);
//Left shoulder
joint = m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("Torso")->BoneActor,
getBoneBoneActorBindByName("LeftUpArm")->BoneActor, sjd2 /*, pos, sphJointParam2*/);
joint->setGlobalAxis(Vector3::UNIT_X);
//Left elbow
joint = m_PHYSScene->createRevoluteJoint(
getBoneBoneActorBindByName("LeftUpArm")->BoneActor,
getBoneBoneActorBindByName("LeftLoArm")->BoneActor, rjd /*,Vector3::UNIT_Y,pos,jp*/);
//Left hand
joint = m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("LeftLoArm")->BoneActor,
getBoneBoneActorBindByName("LeftHand")->BoneActor, sjd /*, pos, sphJointParam*/);
//Right shoulder
joint = m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("Torso")->BoneActor,
getBoneBoneActorBindByName("RightUpArm")->BoneActor, sjd2 /*, pos, sphJointParam2*/);
joint->setGlobalAxis(Vector3::NEGATIVE_UNIT_X);
//Right elbow
joint = m_PHYSScene->createRevoluteJoint(
getBoneBoneActorBindByName("RightUpArm")->BoneActor,
getBoneBoneActorBindByName("RightLoArm")->BoneActor, rjd /*,Vector3::UNIT_Y,pos,jp*/);
//Right hand
joint = m_PHYSScene->createSphericalJoint(
getBoneBoneActorBindByName("RightLoArm")->BoneActor,
getBoneBoneActorBindByName("RightHand")->BoneActor, sjd /*, pos,sphJointParam*/);
}
void CRagdoll::setRagdollBindPose()
{
updateBoneActors();
for (int i=0; i<15; i++)
{
m_BoneBoneActorBind[i].BoneGlobalBindOrientation = m_BoneBoneActorBind[i].bone->_getDerivedOrientation();
m_BoneBoneActorBind[i].BoneActorGlobalBindOrientationInverse =
NxOgre::Quat::invert(m_BoneBoneActorBind[i].BoneActor->getGlobalOrientationQuat()).as<Quaternion>();
}
}
void CRagdoll::setAllBonesToManualControll(bool manual)
{
Entity* e = (Entity*) m_CharacterNode->getAttachedObject( 0 );
SkeletonInstance* skeletonInst = e->getSkeleton();
Skeleton::BoneIterator boneI=skeletonInst->getBoneIterator();
while(boneI.hasMoreElements())
boneI.getNext()->setManuallyControlled(manual);
}
void CRagdoll::resetAllBones()
{
Entity* e = (Entity*) m_CharacterNode->getAttachedObject( 0 );
SkeletonInstance* skeletonInst = e->getSkeleton();
Skeleton::BoneIterator boneI=skeletonInst->getBoneIterator();
while(boneI.hasMoreElements())
boneI.getNext()->reset();
}
BoneBind* CRagdoll::getBoneBoneActorBindByName(String n)
{
for (int i=0; i<15; i++)
{
if (m_BoneBoneActorBind[i].name==n)
return &m_BoneBoneActorBind[i];
}
return NULL;
}
void CRagdoll::setCharacterPositionControllingBone(String n)
{
m_PositionControllingBone=getBoneBoneActorBindByName(n);
}
CRagdoll::CRagdoll(String outFileName, SceneNode* characterSN)
{
std::ofstream file(outFileName.c_str());
if (file)
{
Entity* e=(Entity*)characterSN->getAttachedObject(0);
SkeletonInstance* skeletonInst = e->getSkeleton();
Skeleton::BoneIterator boneI=skeletonInst->getBoneIterator();
file<<"Creating bone lenght information from:\n";
file<<"Mesh name: "<<e->getMesh()->getName()<<"\n";
file<<"Skeleton name: "<<skeletonInst->getName()<<"\n\n";
while(boneI.hasMoreElements())
{
Bone* bone=boneI.getNext();
String bName=bone->getName();
if (bone->getChild(0))
{
Vector3 curr = bone->_getDerivedPosition();
Vector3 next = bone->getChild(0)->_getDerivedPosition();
Vector3 difference = next-curr;
//length of bone
f32 lenght = difference.length();
file<<bName<<"\t\t\t=\t"<<StringConverter::toString(lenght,3)<<"\n";
if (!bone->getParent())
file<<bName<<" is a Root Bone!\n";
}
}
}
} | [
"farris.shane@gmail.com"
] | farris.shane@gmail.com |
808abb58068a806a711dd57f02ade77b104d9b62 | 8df64af68085e3bd3eeb99ab6679eb074e80842b | /opensimAD-install/sdk/include/OpenSim/Common/Object.h | 712724f3d7ae8011267cdd50043b6b541bc17d18 | [
"Apache-2.0"
] | permissive | VDB-Bram/opensimAD | ace0a9db6a844ffde7f03f18f9c0a31d3b39bf40 | 7afad33dc669f3540fdffb54e8e93374dceb3624 | refs/heads/main | 2023-08-13T09:10:35.158779 | 2021-10-02T01:59:30 | 2021-10-02T01:59:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 68,566 | h | #ifndef OPENSIM_OBJECT_H_
#define OPENSIM_OBJECT_H_
/* -------------------------------------------------------------------------- *
* OpenSim: Object.h *
* -------------------------------------------------------------------------- *
* The OpenSim API is a toolkit for musculoskeletal modeling and simulation. *
* See http://opensim.stanford.edu and the NOTICE file for more information. *
* OpenSim is developed at Stanford University and supported by the US *
* National Institutes of Health (U54 GM072970, R24 HD065690) and by DARPA *
* through the Warrior Web program. *
* *
* Copyright (c) 2005-2017 Stanford University and the Authors *
* Author(s): Frank C. Anderson, Ayman Habib, Ajay Seth, Michael A. Sherman *
* *
* 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. *
* -------------------------------------------------------------------------- */
/* Note: This code was originally developed by Realistic Dynamics Inc.
* Author: Frank C. Anderson
*/
#ifdef _WIN32
#pragma warning( disable : 4251 )
#pragma warning( disable : 4786 )
#pragma warning( disable : 4660 )
#endif
// INCLUDES
#include "osimCommonDLL.h"
#include "PropertySet.h"
#include "PropertyTable.h"
#include "Property.h"
#include <cstring>
#include <cassert>
#include "osim_adouble.h"
// DISABLES MULTIPLE INSTANTIATION WARNINGS
// EXPORT LINE FOR MICROSOFT VISUAL C++
#ifdef _WIN32
#ifndef SWIG
template class OSIMCOMMON_API OpenSim::ArrayPtrs<OpenSim::Object>;
#endif
#endif
#ifdef SWIG
#ifdef OSIMCOMMON_API
#undef OSIMCOMMON_API
#endif
#define OSIMCOMMON_API
#ifdef SWIGJAVA
#define SWIG_DECLARE_EXCEPTION throw(OpenSim::Exception)
#else
#define SWIG_DECLARE_EXCEPTION
#endif
#else
#define SWIG_DECLARE_EXCEPTION
#endif
// Forward-declare SimTK types.
namespace SimTK {
// Needed for Object_GetClassName<SimTK::SpatialVec>, defined in this file.
typedef Vec<2, Vec3> SpatialVec;
}
namespace OpenSim {
// CONSTANTS
const char ObjectDEFAULT_NAME[] = "default";
class XMLDocument;
//==============================================================================
// OBJECT
//==============================================================================
/** This is the base class for all %OpenSim objects that are serializable
(meaning they can be written to and read back from files). In particular, all
ModelComponent objects derive from %Object. It provides a common base class
from which to derive serializable objects and also some basic functionality,
such as writing to files in XML format, managing properties, and the equality,
less than, and output operators.
An %Object maintains a table of "properties" that know how to read themselves
from XML and write themselves to XML. The available Property types are
-# Primitive data types (int, bool, double, std::string, ...)
-# Properties that contain other Objects,
-# Properties containing lists of either of the previous 2 categories
It is important to note that Objects and Properties together form a recursive
tree structure that is the representation of an %OpenSim Model. See the
documentation for the OpenSim::Property class for more information.
<h3>%Object declaration</h3>
The declaration of every class derived from %Object \e must have its first line
(that is, immediately after the "{" in the class declaration) one of four
standard "boilerplate" macros:
@code
OpenSim_DECLARE_CONCRETE_OBJECT (ClassName, SuperclassName);
OpenSim_DECLARE_CONCRETE_OBJECT_T(ClassName, T, SuperclassName);
OpenSim_DECLARE_ABSTRACT_OBJECT (ClassName, SuperclassName);
OpenSim_DECLARE_ABSTRACT_OBJECT_T(ClassName, T, SuperclassName);
@endcode
("Superclass" means the immediate class from which the class derives; that
terminology is borrowed from Java. It is often called the "Parent" class but
we'll use "Super" which is more precise.) The "_T" variants of the above macros
are used for objects that are templatized, like Set\<T>.
These macros provide a standardized set of declarations for every object,
including
@code
typedef ClassName Self; // for all classes
typedef SuperclassName Super; // for all classes
static const std::string& getClassName(); // for all classes
const std::string& getConcreteClassName(); // for concrete classes only
ClassName* clone() const; // see below
@endcode
getClassName() is a static method that returns the name of the %Object-derived
class for which it is invoked. For example, ModelComponent::getClassName()
returns "ModelComponent". In contrast, getConcreteClassName() is a pure virtual
method of %Object that returns the class name of the actual concrete object
being referenced through the abstract base class. This method is implemented
only in concrete classes.
Note that getClassName() and getConcreteClassName() will return the same string
only if the referenced class is concrete. For example,
@code
Function* funcp = new LinearFunction(...);
std::cout << funcp->getClassName(); // output: "Function"
std::cout << funcp->getConcreteClassName(); // output: "LinearFunction"
@endcode
For concrete objects, the class name is used as the "object type tag", the tag
string that will appear in XML files. Also, when a Property\<T> has no name
(allowed for properties that contain just a single object) the object class
name T (which may be abstract like Function or ModelComponent) is used to
select the property. See OpenSim::Property for more information.
The standard clone() method produces a duplicate of a concrete object and thus
is implemented only for concrete classes. However, the return type must
always match the type of the invoking object (this is called a "covariant type"
and does not change the method's identity). It is therefore redeclared even in
abstract classes, but remains pure virtual in those cases. That means if you
invoke Function::clone() you'll get back a Function* rather than an Object*;
this avoids many unnecessary invocations of the awkward and expensive
dynamic_cast operator.
<h3>%Object registration and renaming</h3>
An %Object type needs to be "registered" by calling Object::registerType() with
an instance of a concrete object so that the serialization infrastructure knows
what kind of %Object to create when it encounters a specific XML tag. This
associates the concrete object's class name (object type tag) with a default
instance of that object. The registration process is normally done during
dynamic library (DLL) loading, that is, as part of the static initializer
execution that occurs before program execution.
For backwards compatibility, we support a renaming mechanism in which
now-deprecated class names can be mapped to their current equivalents. This
is done via a string-to-string table mapping the old names to the new ones;
only the current names appear in the registered objects table. Specification of
these aliases is done immediately after registration in the DLL static
initializer.
<h3>Defaults mechanism</h3>
When an %Object is registered (either programmatically, or
overridden in the defaults section of a document), a copy of it is maintained
in a dictionary as a "default" object of its class. When new instances of this
class are requested, the contents of the default object are used to populate the
new instance before deserialization. This allows for specifying default values
that will be commonly used in one place in the XML file rather than with each
object which leads to smaller files that are easier to read. Property values
that obtain their values from the defaults and are not subsequently overridden
are marked as being default values, allowing us to avoid writing
them back out when serializing.
@author Frank C. Anderson, Ayman Habib, Ajay Seth, Michael Sherman
@see OpenSim::Property
**/
class OSIMCOMMON_API Object
{
//------------------------------------------------------------------------------
// PUBLIC METHODS
//------------------------------------------------------------------------------
public:
// Constructors are protected.
/**
* Virtual destructor for cleanup
*/
virtual ~Object();
/** Create a new heap-allocated copy of the concrete object to which this
%Object refers. It is up to the caller to delete the returned object
when no longer needed. Every concrete object deriving from %Object
implements this pure virtual method automatically, via the declaration
macro it invokes (e.g., OpenSim_DECLARE_CONCRETE_OBJECT()). Note that the
concrete class overrides modify the return type to be a pointer to the
\e concrete object; that still overrides the base class method because the
return type is covariant with (that is, derives from) %Object. **/
virtual Object* clone() const = 0;
/** Returns the class name of the concrete %Object-derived class of the
actual object referenced by this %Object, as a string. This is the
string that is used as the tag for this concrete object in an XML file.
Every concrete class derived from %Object automatically overrides this
method via the declaration macro it uses. See getClassName() to get the
class name of the referencing (possibly abstract) class rather than the
concrete object.
@see getClassName() **/
virtual const std::string& getConcreteClassName() const = 0;
/// @cond
// This is an assignment operator for use in Java.
virtual void assign(Object &aObject) = 0;
/// @endcond
//--------------------------------------------------------------------------
// OPERATORS
//--------------------------------------------------------------------------
/**
* Equality operator wrapper for use from languages not supporting operator
* overloading.
*/
bool isEqualTo(const Object &aObject) const
{
return ((*this)==aObject);
}
#ifndef SWIG
/** Copy assignment copies he base class fields, including the
properties. **/
Object& operator=(const Object &aObject);
/** Determine if two objects are equal. They are equal if all the simple
base class members are equal, both objects have the same number of
properties and corresponding properties are equal, and if the objects
are the same concrete type and the concrete class says they are equal.
Concrete object classes must override this if they have any fields to
compare, but be sure to invoke the base class operator too. **/
virtual bool operator==(const Object &aObject) const;
/** Provide an ordering for objects so they can be put in sorted
containers. **/
virtual bool operator<(const Object &aObject) const;
/** Write the type and name of this object into the given output stream. **/
friend std::ostream& operator<<(std::ostream &aOut,
const Object &aObject) {
aOut << aObject.getConcreteClassName() << " " << aObject.getName();
return(aOut);
};
#endif
//--------------------------------------------------------------------------
// GET AND SET
//--------------------------------------------------------------------------
/** %Set the name of the Object. */
void setName(const std::string& name);
/** Get the name of this Object. */
const std::string& getName() const;
/** %Set description, a one-liner summary. */
void setDescription(const std::string& description);
/** Get description, a one-liner summary. */
const std::string& getDescription() const;
/** Get Authors of this Object */
const std::string& getAuthors() const { return _authors; };
/** %Set Authors of this object. Call this method in your constructor if needed. */
void setAuthors(const std::string& authors) { _authors=authors; };
/** Get references or publications to cite if using this object. */
const std::string& getReferences() const { return _references; };
/** %Set references or publications to cite if using this object. */
void setReferences(const std::string& references)
{ _references=references; };
//--------------------------------------------------------------------------
// PUBLIC ACCESS TO PROPERTIES
//--------------------------------------------------------------------------
/** @name Public access to properties
Methods in this section are for public access to the properties maintained
by this OpenSim %Object. Properties are normally accessed through methods
of the concrete %Object-derived classes that are generated by the
Property declaration macros; see OpenSim::Property for information.
However, when dealing with Objects from "the outside", as is done in the
GUI, these methods allow access to properties via the property
base class AbstractProperty to support various type-independent property
services. That is particularly useful for %Object-containing properties
since the objects can be obtained without knowing their concrete types.
For simple types (e.g. int, std::string) you can only obtain the values if
you know the expected type. For those types, or when you know the
expected %Object type, you can use the templatized methods to deal with
the concrete values. **/
/**@{**/
/** Determine how many properties are stored with this %Object. These
are numbered 0..n-1 in the order they were created. **/
// Note: new properties come first, deprecated ones afterwards.
int getNumProperties() const;
/** Get a const reference to a property by its index number, returned as
an AbstractProperty. **/
const AbstractProperty& getPropertyByIndex(int propertyIndex) const;
/** Get a writable reference to a property by its index number, returned as
an AbstractProperty. **/
AbstractProperty& updPropertyByIndex(int propertyIndex);
/** Return true if this %Object has a property of any type with the
given \a name, which must not be empty. **/
bool hasProperty(const std::string& name) const;
/** Get a const reference to a property by its name, returned as
an AbstractProperty. An exception is thrown if no property by this name
is present in this %Object. **/
const AbstractProperty& getPropertyByName(const std::string& name) const;
/** Get a writable reference to a property by its name, returned as
an AbstractProperty. An exception is thrown if no property by this name
is present in this %Object. **/
AbstractProperty& updPropertyByName(const std::string& name);
/** Return true if this %Object contains an unnamed, one-object property
that contains objects of the given template type T. The type must match
exactly the type used when this property was created with
addProperty<T>(). **/
template <class T> bool hasProperty() const;
/** Get property of known type Property\<T> as a const reference;
the property must be present and have the right type. This is primarily
used by the Property declaration macros for fast access to properties. **/
template <class T> const Property<T>&
getProperty(const PropertyIndex& index) const;
/** Get property of known type Property\<T> as a writable reference;
the property must be present and have the right type. This is primarily
used by the Property declaration macros for fast access to properties. **/
template <class T> Property<T>&
updProperty(const PropertyIndex& index);
/** Returns \c true if no property's value has changed since the last time
setObjectIsUpToDateWithProperties() was called. **/
bool isObjectUpToDateWithProperties() const {return _objectIsUpToDate;}
/** Dump formatted property information to a given output stream, useful
for creating a "help" facility for registered objects. Object name,
property name, and property comment are output. Input is a
class name and property name. If the property name is the empty string or
just "*", then information for all properties in the class is printed. If
the class name is empty, information in all properties of all registered
classes is printed.
@param os
Output stream to which info is printed.
@param classNameDotPropertyName
A string combining the class name and property name. The two names
should be separated by a period (ClassName.PropertyName). If
PropertyName is empty or "*", the information for all properties in the
class is printed. If ClassName is empty, the information for the
properties of all registered classes is printed.
@param printFlagInfo
Print to the ostream some instructions for using the -PropertyInfo
command line flag.
Returns false if the provided names do not match known classes or
properties; otherwise, returns true. **/
static bool PrintPropertyInfo(std::ostream& os,
const std::string& classNameDotPropertyName,
bool printFlagInfo = true);
/** Same as the other signature but the class name and property name are
provided as two separate strings.
Returns false if the provided names do not match known classes or
properties; otherwise, returns true. **/
static bool PrintPropertyInfo(std::ostream& os,
const std::string& className,
const std::string& propertyName,
bool printFlagInfo = true);
/**@}**/
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
// REGISTRATION OF TYPES AND DEFAULT OBJECTS
//--------------------------------------------------------------------------
/** @name Registration of types and default objects
Methods in this section deal with the requirement that all %OpenSim
types derived from %Object must be registered and a default instance
provided. This enables reading these objects from XML files. You can also
recognize now-obsolete names for objects and have them quietly mapped to
their modern names using the renameType() method. Rename can also be used
programmatically to replace one registered type with another, because
renaming occurs prior to object lookup. **/
/**@{**/
/** Register an instance of a class; if the class is already registered it
will be replaced. This is normally called as part of the static
initialization of a dynamic library (DLL). The supplied object's concrete
class name will be used as a key, and a \e copy (via clone()) of the
supplied %Object is used as the default value for objects of this type when
created (typically during the deserialization process when reading an
XML file). **/
static void registerType(const Object& defaultObject);
/** Support versioning by associating the current %Object type with an
old name. This is only allowed if \a newTypeName has already been
registered with registerType(). Renaming is applied first prior to lookup
so can be used both for translating now-obsolete names to their new names
and for overriding one registered type with another. **/
static void renameType(const std::string& oldTypeName,
const std::string& newTypeName);
/** Return a pointer to the default instance of the registered (concrete)
%Object whose class name is given, or NULL if the type is not registered.
Note that this refers to the default %Object instance that is stored with
the %Object class; do not delete it! If you want a copy of this object
instead, use newInstanceOfType(). The given \a concreteClassName will be
mapped through the renamed type table if necessary but the returned object
will always have the new type name, which may differ from the supplied
one. Note that renaming is applied first, prior to looking up the name
in the registered objects table.
@see registerType(), renameType() **/
static const Object*
getDefaultInstanceOfType(const std::string& concreteClassName);
/** Return true if the given concrete object type represents a subclass of
the template object type T, and thus could be referenced with a T*. The
object type to be tested is given by its class name as a string.
For this to work the name must represent an already-registered object
type. If necessary \a concreteClassName will be mapped through the renamed
type table, so we'll return true if the class it maps to satisfies the
condition. Note that renaming is applied first, prior to looking up the name
in the registered objects table.
@see registerType(), renameType() **/
template <class T> static bool
isObjectTypeDerivedFrom(const std::string& concreteClassName) {
const Object* defObj = getDefaultInstanceOfType(concreteClassName);
if (defObj == NULL) return false;
return dynamic_cast<const T*>(defObj) != NULL;
}
/** Create a new instance of the concrete %Object type whose class name is
given as \a concreteClassName. The instance is initialized to the default
object of corresponding type, possibly after renaming to the current class
name. Writes a message to stderr and returns null if the tag isn't
registered. **/
static Object* newInstanceOfType(const std::string& concreteClassName);
/** Retrieve all the typenames registered so far. This is done by traversing
the registered objects map, so only concrete classes that have registered
instances are returned; renamed types will not appear unless they were
separately registered. (Note that even if one registered type has been
renamed to another, both will appear in the returned list.) The result
returned in \a typeNames should not be cached while more shared libraries
or plugins are loaded, because more types may be registered as a result.
Instead the list should be reconstructed whenever in doubt. **/
static void getRegisteredTypenames(Array<std::string>& typeNames);
/** Return an array of pointers to the default instances of all registered
(concrete) %Object types that derive from a given %Object-derived type
that does not have to be concrete. This is useful, for example, to find
all Joints, Constraints, ModelComponents, Analyses, etc. **/
template<class T> static void
getRegisteredObjectsOfGivenType(ArrayPtrs<T>& rArray) {
rArray.setSize(0);
rArray.setMemoryOwner(false);
for(int i=0; i<_registeredTypes.getSize(); i++) {
T* obj = dynamic_cast<T*>(_registeredTypes[i]);
if (obj) rArray.append(obj);
}
}
/**@}**/
//--------------------------------------------------------------------------
// XML
//--------------------------------------------------------------------------
/** @name XML reading and writing
These methods deal with writing out in-memory objects to XML files
(serializing) and reading XML files to reconstruct in-memory objects
(deserializing). **/
/**@{**/
/** Create an %OpenSim object whose type is based on the tag at the root
node of the XML file passed in. This is useful since the constructor of
%Object doesn't have the proper type info. This works by using the defaults
table so that %Object does not need to know about its derived classes. It
uses the defaults table to get an instance. **/
//static Object* makeObjectFromFile(const std::string& fileName);
/** We're given an XML element from which we are to populate this %Object.
If the element has a \c file attribute, we'll instead read the %Object from
that file. Otherwise we'll invoke updateFromXMLNode() to read the %Object
directly from the supplied element. Note that a relative file name will
be interpreted relative to the current working directory, but that will
normally have been set earlier to the directory containing the top-level
(root) %Object, such as the Model file. **/
//void readObjectFromXMLNodeOrFile
// (SimTK::Xml::Element& objectElement,
// int versionNumber);
/** Use this method to deserialize an object from a SimTK::Xml::Element. The
element is assumed to be in the format consistent with the passed-in
\a versionNumber. If there is a file attribute in \a objectElement it
will be ignored; if you want it processed you should call
readObjectFromXMLNodeOrFile() instead. **/
//virtual void updateFromXMLNode(SimTK::Xml::Element& objectElement,
// int versionNumber);
/** Serialize this object into the XML node that represents it.
@param parent
Parent XML node of this object. Sending in a parent node allows an XML
node to be generated for this object if it doesn't already have one. If
no parent node is supplied and this object doesn't already have an XML
node, this object will become the root node for a new XML document. If
this object already has an XML node associated with it, no new nodes
are ever generated and the parent node is not used.
**/
//virtual void updateXMLNode(SimTK::Xml::Element& parent) const;
/** Inlined means an in-memory Object that is not associated with
an XMLDocument. **/
//bool getInlined() const;
/** Mark this as inlined or not and optionally provide a file name
to associate with the new XMLDocument for the non-inline case. If
there was already a document associated with this object it is
deleted. **/
//void setInlined(bool aInlined, const std::string &aFileName="");
protected:
/** When an object is initialized using the current values of its
properties, it can set a flag indicating that it is up to date. This
flag is automatically cleared when any property is modified. This allows
objects to avoid expensive reinitialization if it is unnecessary (that is,
whenever this %Object hands out writable access to a property). Note
that use of this flag is entirely optional; most %Object classes don't
have any expensive initialization to worry about.
This flag is cleared automatically but if you want to clear it manually
for testing or debugging, see clearObjectIsUpToDateWithProperties(). **/
void setObjectIsUpToDateWithProperties() {
_objectIsUpToDate = true;
}
/** For testing or debugging purposes, manually clear the "object is up to
date with respect to properties" flag. This is normally done automatically
when a property is modified. Setting the flag is always done manually,
however, see setObjectIsUpToDateWithProperties(). **/
void clearObjectIsUpToDateWithProperties() {
_objectIsUpToDate = false;
}
/** Use this method only if you're deserializing from a file and the object
is at the top level; that is, primarily in constructors that take a file
name as input. **/
//void updateFromXMLDocument();
/** Unconditionally set the XMLDocument associated with this object.
Use carefully -- if there was already a document its heap space is
lost here. **/
//void setDocument(XMLDocument* doc) {_document=doc;}
/** Get a const pointer to the document (if any) associated with this
object. **/
//const XMLDocument* getDocument() const {return _document;}
/** Get a writable pointer to the document (if any) associated with this
object. **/
//XMLDocument* updDocument() {return _document;}
public:
/** If there is a document associated with this object then return the
file name maintained by the document. Otherwise return an empty string. **/
//std::string getDocumentFileName() const;
void setAllPropertiesUseDefault(bool aUseDefault);
/** Write this %Object into an XML file of the given name; conventionally
the suffix to use is ".osim". This is useful for writing out a Model that
has been created programmatically, and also very useful for testing and
debugging. **/
//bool print(const std::string& fileName) const;
/** dump the XML representation of this %Object into an std::string and return it.
Mainly intended for debugging and for use by the XML browser in the GUI. **/
//std::string dump(bool dumpName=false);
/**@}**/
//--------------------------------------------------------------------------
// ADVANCED/OBSCURE/QUESTIONABLE/BUGGY
//--------------------------------------------------------------------------
/** @name Advanced/Obscure
Methods in this section are for specialized purposes not of interest to
most OpenSim API users. For example, some of these are services needed by
the OpenSim GUI which is written in Java. **/
/**@{**/
/** Return the name of this class as a string; i.e., "Object". See
getConcreteClassName() if you want the class name of the underlying concrete
object instead. Note that this method is automatically supplied for
every class declaration that derives from Object via the standard macro
provided for that purpose. See introductory text for this Object class
for more information. **/
static const std::string& getClassName()
{ static std::string name ("Object"); return name; }
/** Static function to control whether all registered objects and
their properties are written to the defaults section of output files rather
than only those values for which the default was explicitly overwritten
when read in from an input file or set programmatically. **/
static void setSerializeAllDefaults(bool shouldSerializeDefaults)
{
_serializeAllDefaults = shouldSerializeDefaults;
}
/** Report the value of the "serialize all defaults" flag. **/
static bool getSerializeAllDefaults()
{
return _serializeAllDefaults;
}
/** Returns true if the passed-in string is "Object"; each %Object-derived
class defines a method of this name for its own class name. **/
static bool isKindOf(const char *type)
{
return (strcmp("Object",type)==0);
}
/** The default implementation returns true only if the supplied string
is "Object"; each %Object-derived class overrides this to match its own
class name. **/
virtual bool isA(const char *type) const
{
return this->isKindOf(type);
}
/** %Set the debug level to get verbose output. Zero means no debugging. **/
static void setDebugLevel(int newLevel) {
_debugLevel=newLevel;
};
/** Get current setting of debug level. **/
static int getDebugLevel() {
return _debugLevel;
};
/** Wrapper to be used on Java side to display objects in tree; this returns
just the object's name. **/
const std::string& toString() const;
#ifndef SWIG
/** OBSOLETE: Get a reference to the PropertySet maintained by the
Object. **/
PropertySet& getPropertySet() { return _propertySet; }
const PropertySet& getPropertySet() const { return _propertySet; }
#endif
/** Use the clone() method to duplicate the given object unless the pointer
is null in which case null is returned. **/
static Object* SafeCopy(const Object *aObject)
{ return aObject ? aObject->clone() : 0; }
/** OBSOLETE alternate name for registerType(). **/
static void RegisterType(const Object& defaultObject)
{ registerType(defaultObject); }
/** OBSOLETE alternate name for renameType(). **/
static void RenameType(const std::string& oldName,
const std::string& newName)
{ renameType(oldName, newName); }
/**@}**/
//--------------------------------------------------------------------------
//------------------------------------------------------------------------------
// PROTECTED METHODS
//------------------------------------------------------------------------------
protected:
/** The default constructor is only for use by constructors of
derived types. Initializes all base class data members to innocuous
values. **/
Object();
/** Constructor from a file, to be called from other constructors that
take a file as input. **/
explicit Object(const std::string& fileName,
bool aUpdateFromXMLNode = true) SWIG_DECLARE_EXCEPTION;
/** Copy constructor is invoked automatically by derived classes with
default copy constructors; otherwise it must be invoked explicitly. **/
Object(const Object& source);
/** Construct the base class portion of an %Object from a given Xml
element that describes this Object. Assumes latest XML file format; there
is no provision for version numbering. **/
//explicit Object(SimTK::Xml::Element& aElement);
/** Define a new single-value property of known type T, with the given
\a name, associated \a comment, and initial \a value. The name must be
unique within this %Object's property table.
If T is an object type (i.e., derived from %Object), it is permissible for
the property to be unnamed; pass an empty string for \a name. You will then
be able to select the property using the object class name (that is,
T::getClassName()) as though it were the property's name. An %Object can
thus only have one unnamed property of any particular object type.
@returns Reference to the new Property object stored in this object's
property table.
@see addOptionalProperty(), addListProperty() **/
template <class T> PropertyIndex
addProperty(const std::string& name,
const std::string& comment,
const T& value);
/** Add an optional property, meaning it can contain either no value or
a single value. Here no initial value is provided. The
property must have a name (the empty string is not acceptable), and that
name must be unique within this %Object's property table.
@returns Reference to the new Property object stored in this object's
property table.
@see addProperty(), addListProperty() **/
template <class T> PropertyIndex
addOptionalProperty(const std::string& name,
const std::string& comment);
/** Add an optional property, meaning it can contain either no value or
a single value. Here an initial value is provided. The
property must have a name (the empty string is not acceptable), and that
name must be unique within this %Object's property table.
@returns Reference to the new Property object stored in this object's
property table.
@see addProperty(), addListProperty() **/
template <class T> PropertyIndex
addOptionalProperty(const std::string& name,
const std::string& comment,
const T& value);
/** Define a new list-valued property of known type T, with the given
\a name, associated \a comment, minimum (==0) and maximum (>0) allowable
list lengths, and a zero-length initial value. The
property must have a name (the empty string is not acceptable), and that
name must be unique within this %Object's property table.
@returns The PropertyIndex of this property in the property table for this
object.
@see addProperty(), addOptionalProperty() **/
template <class T> PropertyIndex
addListProperty(const std::string& name,
const std::string& comment,
int minSize, int maxSize);
/** Define a new list-valued property as above, but assigning an initial
value via some templatized container class that supports size() and
indexing. Here the minimum size may be greater than zero, provided that
the initial value has at least that many element (and no more than the
allowed maximum).
@returns The PropertyIndex of this property in the property table for this
object.
@see addProperty(), addOptionalProperty() **/
template <class T, template<class> class Container> PropertyIndex
addListProperty(const std::string& name,
const std::string& comment,
int minSize, int maxSize,
const Container<T>& valueList);
/** Look up a property by name and return its PropertyIndex if it is
found. If no property of that name is present, the returned index
will be invalid; check with isValid(). **/
// Note: only works for new properties.
PropertyIndex getPropertyIndex(const std::string& name) const
{ const int ix = _propertyTable.findPropertyIndex(name);
if (ix >= 0) return PropertyIndex(ix);
return PropertyIndex();
}
/** Look up an unnamed property by the type of object it contains,
and return its PropertyIndex if it is found. If no unnamed property of that
type is present, the returned index will be invalid; check with
isValid(). **/
// Note: only works for new properties.
template <class T> PropertyIndex getPropertyIndex() const
{ const int ix = _propertyTable.findPropertyIndex(T::getClassName());
if (ix >= 0) return PropertyIndex(ix);
return PropertyIndex();
}
//--------------------------------------------------------------------------
// PRIVATE METHODS
//--------------------------------------------------------------------------
private:
void setNull();
// Functions to support deserialization.
//void generateXMLDocument();
//void updateDefaultObjectsFromXMLNode();
//void updateDefaultObjectsXMLNode(SimTK::Xml::Element& aParent);
//==============================================================================
// DATA
//==============================================================================
public:
#ifndef SWIG
/** Name used for default objects when they are serialized. */
static const std::string DEFAULT_NAME;
#endif
protected:
/** OBSOLETE: Property_Deprecated set for serializable member variables of
this and derived classes. */
PropertySet _propertySet;
private:
// Array holding a default value for each of the registered object types.
// Each object type only appears once in this array. Renamed types usually
// do not have separate registered objects; they are just used to locate
// one of the current ones.
static ArrayPtrs<Object> _registeredTypes;
// Map from concrete object class name string to a default object of that
// type kept in the above array of registered types. Renamed types are *not*
// normally entered here; the names are mapped separately using the map
// below.
static std::map<std::string,Object*> _mapTypesToDefaultObjects;
// Map types that have been renamed to their new names, which can
// then be used to find them in the default object map. This lets us
// recognize the old names while converting to the new ones internally
// so that they will be updated when written out. It also allows one
// to map one registered type to a different one programmatically, because
// we'll look up the name in the rename table first prior to searching
// the registered types list.
static std::map<std::string,std::string> _renamedTypesMap;
// Global flag to indicate if all registered objects are to be written in
// a "defaults" section.
static bool _serializeAllDefaults;
// Debug level:
// 0: Hides non fatal warnings
// 1: Shows illegal tags
// 2: level 1 + registration troubleshooting
// 3: 2 + more verbose troubleshooting of Object (de)serialization. When
// used from Java wrapping in GUI/Matlab this catches all exceptions
// thrown by the low-level libraries which is slower but helpful in
// troubleshooting.
static int _debugLevel;
// The name of this object.
std::string _name;
// A short description of the object.
std::string _description;
// List of authors who contributed to the implementation of concrete object.
std::string _authors;
// List of references that should be cited when using this concrete object.
std::string _references;
// Property table for serializable properties of this and derived classes.
PropertyTable _propertyTable;
// This flag is cleared automatically whenever a property is changed. It
// is initialized to false and is only set manually.
bool _objectIsUpToDate;
// The XML document, if any, associated with this object.
// This is mutable since it's cached on deserialization and is
// kept up to date to maintain "defaults" and document file path
//TODO: why does an Object need to know where it was last written? Seems flaky and should be revisited
mutable XMLDocument *_document;
// Flag indicating whether the object is serialized to this _document or
// to another fresh document, also cached for subsequent printing/writing.
mutable bool _inlined;
//==============================================================================
}; // END of class Object
//==============================================================================
// OBJECT TEMPLATE METHOD IMPLEMENTATION
//==============================================================================
// This only works for the new properties -- it won't see deprecated ones.
template <class T> bool Object::
hasProperty() const {
// Look it up by T's object class name if that's allowed.
if (Property<T>::TypeHelper::IsObjectType) {
return _propertyTable.hasProperty
(Property<T>::TypeHelper::getTypeName());
}
throw OpenSim::Exception
("hasProperty<T>(): nameless property lookup by object class name "
"only allowed when T is an Object-derived type, but T="
+ std::string(SimTK::NiceTypeName<T>::name()) + ". For lookup by "
"property name instead, use hasProperty(\"prop_name\").");
return false;
}
template <class T> const Property<T>& Object::
getProperty(const PropertyIndex& index) const {
return _propertyTable.getProperty<T>(index);
}
template <class T> Property<T>& Object::
updProperty(const PropertyIndex& index) {
_objectIsUpToDate = false; // property may be changed
return _propertyTable.updProperty<T>(index);
}
template <class T> PropertyIndex Object::
addProperty(const std::string& name,
const std::string& comment,
const T& value)
{
// Restrict to exactly one value. If there is no name, this will throw
// an exception if T is a simple (non-object) type.
Property<T>* p = Property<T>::TypeHelper::create(name, true);
p->setComment(comment);
p->appendValue(value);
p->setValueIsDefault(true);
// Note that an unnamed, one-object property will use the object class name
// as a name for lookup purposes.
return PropertyIndex(_propertyTable.adoptProperty(p));
}
template <class T> PropertyIndex Object::
addOptionalProperty(const std::string& name,
const std::string& comment,
const T& value)
{
if (name.empty())
throw OpenSim::Exception(
"Object::addOptionalProperty(): an optional property must have "
"a name. (Object " + getName() + ").");
Property<T>* p = Property<T>::TypeHelper::create(name, false);
p->setAllowableListSize(0,1);
p->setComment(comment);
p->appendValue(value);
p->setValueIsDefault(true);
return PropertyIndex(_propertyTable.adoptProperty(p));
}
template <class T> PropertyIndex Object::
addOptionalProperty(const std::string& name,
const std::string& comment)
{
if (name.empty())
throw OpenSim::Exception(
"Object::addOptionalProperty(): an optional property must have "
"a name. (Object " + getName() + ").");
Property<T>* p = Property<T>::TypeHelper::create(name, false);
p->setAllowableListSize(0,1);
p->setComment(comment);
p->setValueIsDefault(true);
return PropertyIndex(_propertyTable.adoptProperty(p));
}
template <class T> PropertyIndex Object::
addListProperty(const std::string& name,
const std::string& comment,
int minSize, int maxSize)
{
if (name.empty())
throw OpenSim::Exception(
"Object::addListProperty(): a list property must have a name. "
"(Object " + getName() + ").");
if (minSize > 0)
throw OpenSim::Exception(
"Object::addListProperty(): list property " + name
+ " has a minimum list size of " + SimTK::String(minSize)
+ " so must be given an initial value of at least that size "
"(Object " + getName() + ").");
Property<T>* p = Property<T>::TypeHelper::create(name, false);
p->setAllowableListSize(minSize, maxSize);
p->setComment(comment);
p->setValueIsDefault(true);
return PropertyIndex(_propertyTable.adoptProperty(p));
}
template <class T, template<class> class Container> PropertyIndex Object::
addListProperty(const std::string& name,
const std::string& comment,
int minSize, int maxSize,
const Container<T>& valueList)
{
if (name.empty())
throw OpenSim::Exception(
"Object::addListProperty(): a list property must have a name. "
"(Object " + getName() + ").");
if (valueList.size() < minSize || valueList.size() > maxSize)
throw OpenSim::Exception(
"Object::addListProperty(): list property " + name
+ " has allowable list size " + SimTK::String(minSize) + ".."
+ SimTK::String(maxSize) + " but initial value had size "
+ SimTK::String(valueList.size()) + ".");
Property<T>* p = Property<T>::TypeHelper::create(name, false);
p->setAllowableListSize(minSize, maxSize);
p->setComment(comment);
for (int i=0; i < (int)valueList.size(); ++i)
p->appendValue(valueList[i]);
p->setValueIsDefault(true);
return PropertyIndex(_propertyTable.adoptProperty(p));
}
//==============================================================================
// DERIVED OBJECT BOILERPLATE MACROS
//==============================================================================
/** @name Object Declaration Macros
One of these macros must appear as the first line of any class declaration
that derives directly or indirectly from %OpenSim's Object class. In almost
all cases, the right macro to use is \c OpenSim_DECLARE_CONCRETE_OBJECT().
Use of these macros provides:
- a public typedef Super that is the immediate parent class,
- implementation of required Object pure virtual methods, including
the clone() method that will create a new heap-allocated copy of any
concrete Object,
- uniform treatment of class names, which are used as tags in XML and for
interfacing with Java using class names as strings to identify C++
objects. The static getClassName() returns the name of any class, and
the member getConcreteClassName() returns the class name of the concrete
object being referenced, and
- an assortment of methods used only for interfacing with Java.
**/
/**@{**/
/** Macro to be included as the first line of the class declaration for
any non-templatized, concrete class that derives from OpenSim::Object. You
should use this for any such class, even if you intend to derive more specific
concrete objects from it. Don't use this for a still-abstract class, or a
templatized concrete class like Set\<T>.
@relates OpenSim::Object **/
#define OpenSim_DECLARE_CONCRETE_OBJECT(ConcreteClass, SuperClass) \
OpenSim_OBJECT_ANY_DEFS(ConcreteClass, SuperClass); \
OpenSim_OBJECT_NONTEMPLATE_DEFS(ConcreteClass, SuperClass); \
OpenSim_OBJECT_CONCRETE_DEFS(ConcreteClass);
/** Macro to be included as the first line of the class declaration for
any still-abstract class that derives from OpenSim::Object. These are classes
that represent categories of objects, like Function and ModelComponent. This
macro leaves Object pure virtuals clone() and getConcreteClassName() unimplemented,
however it does redeclare the return type of clone() to be ConcreteClass*.
@relates OpenSim::Object **/
#define OpenSim_DECLARE_ABSTRACT_OBJECT(ConcreteClass, SuperClass) \
OpenSim_OBJECT_ANY_DEFS(ConcreteClass, SuperClass); \
OpenSim_OBJECT_NONTEMPLATE_DEFS(ConcreteClass, SuperClass); \
OpenSim_OBJECT_ABSTRACT_DEFS(ConcreteClass);
/** Macro to be included as the first line of the class declaration for
any templatized, concrete class that derives from OpenSim::Object,
like Set\<T>.
@relates OpenSim::Object **/
#define OpenSim_DECLARE_CONCRETE_OBJECT_T(ConcreteClass, TArg, SuperClass) \
OpenSim_OBJECT_ANY_DEFS(ConcreteClass, SuperClass); \
OpenSim_OBJECT_TEMPLATE_DEFS(ConcreteClass, TArg, SuperClass); \
OpenSim_OBJECT_CONCRETE_DEFS(ConcreteClass);
/** Macro to be included as the first line of the class declaration for
any templatized, still-abstract class that derives from OpenSim::Object.
@relates OpenSim::Object **/
#define OpenSim_DECLARE_ABSTRACT_OBJECT_T(ConcreteClass, TArg, SuperClass) \
OpenSim_OBJECT_ANY_DEFS(ConcreteClass, SuperClass); \
OpenSim_OBJECT_TEMPLATE_DEFS(ConcreteClass, TArg, SuperClass); \
OpenSim_OBJECT_ABSTRACT_DEFS(ConcreteClass);
/**@}**/
// Hide helper macros from Doxygen -- they do not appear in code anywhere
// but right here. They are used to construct the macros that are used in
// various circumstances without duplicating any definitions.
// This class allows us to get the class name for template arguments using
// getClassName() when it is available, otherwise a specialization.
template <class T> struct Object_GetClassName
{ static const std::string& name() {return T::getClassName();} };
template <> struct Object_GetClassName<bool>
{ static const std::string name() {return "bool";} };
template <> struct Object_GetClassName<signed char>
{ static const std::string name() {return "char";} };
template <> struct Object_GetClassName<unsigned char>
{ static const std::string name() {return "char";} };
template <> struct Object_GetClassName<char>
{ static const std::string name() {return "char";} };
template <> struct Object_GetClassName<short int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<unsigned short int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<unsigned int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<long int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<unsigned long int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<long long int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<unsigned long long int>
{ static const std::string name() {return "int";} };
template <> struct Object_GetClassName<float>
{ static const std::string name() {return "float";} };
//template <> struct Object_GetClassName<double>
//{ static const std::string name() {return "double";} };
template <> struct Object_GetClassName<Recorder>
{
static const std::string name() { return "double"; }
};
template <> struct Object_GetClassName<long double>
{ static const std::string name() {return "double";} };
template <> struct Object_GetClassName<std::string>
{ static const std::string name() {return "string";} };
template <> struct Object_GetClassName<SimTK::Vec2>
{ static const std::string name() {return "Vec2";} };
template <> struct Object_GetClassName<SimTK::Vec3>
{ static const std::string name() {return "Vec3";} };
template <> struct Object_GetClassName<SimTK::Vec6>
{ static const std::string name() {return "Vec6";} };
template <> struct Object_GetClassName<SimTK::Vector_<SimTK::Real>>
{ static const std::string name() {return "Vector"; } };
template <> struct Object_GetClassName<SimTK::Vector_<SimTK::Vec3>>
{ static const std::string name() {return "Vector_<Vec3>";} };
template <> struct Object_GetClassName<SimTK::Vector_<SimTK::Vec6>>
{ static const std::string name() {return "Vector_<Vec6>";} };
template <> struct Object_GetClassName<SimTK::Vector_<SimTK::SpatialVec>>
{ static const std::string name() {return "Vector_<SpatialVec>";} };
template <> struct Object_GetClassName<SimTK::SpatialVec>
{ static const std::string name() {return "SpatialVec";} };
template <> struct Object_GetClassName<SimTK::Transform>
{ static const std::string name() {return "Transform";} };
#define OpenSim_OBJECT_ANY_DEFS(ConcreteClass, SuperClass) \
public: \
/** @cond developer **/ \
/** This typedef might be useful within the member functions of this class. */ \
/** \internal This is generated by the `OpenSim_DECLARE_*_OBJECT` macros. */ \
typedef ConcreteClass Self; \
/** Use this typedef to refer to the superclass of this class. */ \
/** Avoid using the explicit type name of the superclass; this would */ \
/** introduce bugs if the superclass is changed. */ \
/** \internal This is generated by the `OpenSim_DECLARE_*_OBJECT` macros. */ \
typedef SuperClass Super; \
/** @endcond **/ \
OpenSim_OBJECT_JAVA_DEFS(ConcreteClass);
// For non-template classes, the class name is identical to the supplied
// ConcreteClass argument.
#define OpenSim_OBJECT_NONTEMPLATE_DEFS(ConcreteClass, SuperClass) \
/** @name Auto-generated functions */ \
/** @{ */ \
/** This returns "##ConcreteClass##" */ \
/** See getConcreteClassName() if you want the class name of the underlying */ \
/** concrete object instead. */ \
/** \internal This is generated by the `OpenSim_DECLARE_*_OBJECT` macros. */ \
static const std::string& getClassName() \
{ static std::string name(#ConcreteClass); return name; } \
/** @}*/
// For template classes ConcreteClass<TemplateArg>, we construct the class
// name by assembling the pieces.
#define OpenSim_OBJECT_TEMPLATE_DEFS(ConcreteClass, TArg, SuperClass) \
/** @name Auto-generated functions */ \
/** @{ */ \
/** This returns "##ConcreteClass##_<T>_". */ \
/** T is the template argument for this class. */ \
/** See getConcreteClassName() if you want the class name of the underlying */ \
/** concrete object instead. */ \
/** \internal This is generated by the `OpenSim_DECLARE_*_OBJECT` macros. */ \
static const std::string& getClassName() \
{ static std::string name = #ConcreteClass "_" \
+ Object_GetClassName<TArg>::name() \
+ "_"; \
return name; } \
/** @}*/
// This provides definitions for the two Object pure virtuals clone() and
// getConcreteClassName().
#define OpenSim_OBJECT_CONCRETE_DEFS(ConcreteClass) \
/** @name Auto-generated functions */ \
/** @{ */ \
ConcreteClass* clone() const override {return new ConcreteClass(*this);} \
const std::string& getConcreteClassName() const override \
{ return getClassName(); } \
/** @}*/ \
private:
// This leaves the two Object pure virtuals clone() and getConcreteClassName()
// unimplemented, but changes the return type of clone() to ConcreteClass*,
// which allows it to be invoked ConcreteClass::clone() and return the correct
// pointer type.
#define OpenSim_OBJECT_ABSTRACT_DEFS(ConcreteClass) \
/** @name Auto-generated functions */ \
/** @{ */ \
ConcreteClass* clone() const override = 0; \
const std::string& getConcreteClassName() const override = 0; \
/** @}*/ \
private:
// Add public static method declaration in class to assist in downcasting
// arbitrary objects to the new type to support dynamic casting across JNI.
#define OpenSim_OBJECT_JAVA_DEFS(thisClass) \
public: \
/** @name Auto-generated functions */ \
/** @{ */ \
/** For use in MATLAB and Python to access the concrete class. */ \
/** Example: `cObj = %##thisClass##.safeDownCast(obj)`. */ \
/** This is equivalent to `dynamic_cast<##thisClass##*>(obj)` in C++. */ \
static thisClass* safeDownCast(OpenSim::Object *obj) \
{ \
return dynamic_cast<thisClass *>(obj); \
} \
/** @cond developer */ \
/** This allows copy assignment in the Java GUI. */ \
/** @throws Exception if the argument is not of type thisClass##. */ \
void assign(Object &aObject) override \
{ \
if (safeDownCast(&aObject)!=0) { \
*this = *((thisClass*)(&aObject)); \
} else { \
throw OpenSim::Exception(std::string(#thisClass)+ \
"::copy() called with object (name = " + aObject.getName() \
+ ", type = " + aObject.getConcreteClassName()+").", \
__FILE__,__LINE__); \
} \
} \
/** @endcond */ \
/** @}*/
//==============================================================================
// OBJECT PROPERTY IMPLEMENTATION
//==============================================================================
// These methods of ObjectProperty are defined here because they depend on
// methods of Object. See Property.h for ObjectProperty's declaration.
/** @cond **/ // Not for Doxygen.
template <class T> inline std::string
ObjectProperty<T>::toString() const {
if (objects.empty()) return "(No Objects)";
std::string out;
if (!this->isOneValueProperty()) out += '(';
for (int i=0; i < objects.size(); ++i) {
if (i != 0) out += ' ';
out += objects[i]->getConcreteClassName();
}
if (!this->isOneValueProperty()) out += ')';
return out;
}
template <class T> inline bool
ObjectProperty<T>::isAcceptableObjectTag
(const std::string& objectTypeTag) const {
return Object::isObjectTypeDerivedFrom<T>(objectTypeTag);
}
template <class T> inline bool
ObjectProperty<T>::isEqualTo(const AbstractProperty& other) const {
// Check here rather than in base class because the old
// Property_Deprecated implementation can't copy this flag right.
if (this->getValueIsDefault() != other.getValueIsDefault())
return false;
assert(this->size() == other.size()); // base class checked
const ObjectProperty& otherO = ObjectProperty::getAs(other);
for (int i=0; i<objects.size(); ++i) {
const T* const thisp = objects[i].get();
const T* const otherp = otherO.objects[i].get();
if (thisp == otherp)
continue; // same object or both null
if (!(thisp && otherp))
return false; // only one is null; they are different
if (!(*thisp == *otherp)) // delegate to object's operator==()
return false;
}
return true;
}
// Property element is a compound element, consisting of subelements
// each of which is one of the object values.
//template <class T> inline void
//ObjectProperty<T>::readFromXMLElement
// (SimTK::Xml::Element& propertyElement,
// int versionNumber)
//{
// clearValues();
// // LOOP THROUGH PROPERTY ELEMENT'S CHILD ELEMENTS
// // Each element is expected to be an Object of some type given
// // by the element's tag; that type must be derived from O or we
// // can't store it in this property.
// int objectsFound = 0;
// SimTK::Xml::element_iterator iter = propertyElement.element_begin();
// for (; iter != propertyElement.element_end(); ++iter) {
// const SimTK::String& objTypeTag = iter->getElementTag();
//
// const Object* registeredObj =
// Object::getDefaultInstanceOfType(objTypeTag);
//
// if (!registeredObj) {
// std::cerr
// << "Encountered unrecognized Object typename "
// << objTypeTag << " while reading property " << this->getName()
// << ". There is no registered Object of this type; ignoring.\n";
// continue;
// }
//
// // Check that the object type found is derived from T.
// if (!dynamic_cast<const T*>(registeredObj)) {
// std::cerr << "Object type " << objTypeTag
// << " wrong for " << objectClassName
// << " property " << this->getName()
// << "; ignoring.\n";
// continue;
// }
// ++objectsFound;
//
// if (objectsFound > this->getMaxListSize())
// continue; // ignore this one
//
// // Create an Object of the element tag's type.
// Object* object = Object::newInstanceOfType(objTypeTag);
// assert(object); // we just checked above
// object->readObjectFromXMLNodeOrFile(*iter, versionNumber);
//
// T* objectT = dynamic_cast<T*>(object);
// assert(objectT); // should have worked by construction
// adoptAndAppendValueVirtual(objectT); // don't copy
// }
//
// if (objectsFound < this->getMinListSize()) {
// std::cerr << "Got " << objectsFound
// << " object values for Property "
// << this->getName() << " but the minimum is "
// << this->getMinListSize() << ". Continuing anyway.\n";
// }
// if (objectsFound > this->getMaxListSize()) {
// std::cerr << "Got " << objectsFound
// << " object values for Property "
// << this->getName() << " but the maximum is "
// << this->getMaxListSize() << ". Ignoring the rest.\n";
// }
//}
// Each object value serializes itself into a subelement of the given
// property element.
//template <class T> inline void
//ObjectProperty<T>::writeToXMLElement
// (SimTK::Xml::Element& propertyElement) const
//{
// for (int i=0; i < objects.size(); ++i)
// (objects[i])->updateXMLNode(propertyElement);
//}
template <class T> inline void
ObjectProperty<T>::setValueAsObject(const Object& obj, int index) {
if (index < 0 && this->getMaxListSize()==1)
index = 0;
T* newObjT = dynamic_cast<T*>(obj.clone());
if (newObjT == NULL)
throw OpenSim::Exception
("ObjectProperty<T>::setValueAsObject(): the supplied object"
+ obj.getName() + " was of type " + obj.getConcreteClassName()
+ " which can't be stored in this " + objectClassName
+ " property " + this->getName());
objects[index] = newObjT;
}
/** @endcond **/
//==============================================================================
// ABSTRACT PROPERTY TEMPLATE METHODS
//==============================================================================
// TODO: these are defined here in order to provide support for the old
// deprecated property system under the AbstractProperty umbrella. Move to
// Property.h when the deprecated code is removed.
template <class T> inline const T& AbstractProperty::
getValue(int index) const {
//TODO: temporary support for obsolete properties
const Property_Deprecated* pd =
dynamic_cast<const Property_Deprecated*>(this);
if (pd) {
if (pd->isArrayProperty()) {
return pd->getValueArray<T>()[index];
} else {
return pd->getValue<T>();
}
}
const Property<T>* p = dynamic_cast<const Property<T>*>(this);
if (p == NULL)
throw Exception("AbstractProperty::getValue(): property "
+ getName() + " is not of type "
+ std::string(SimTK::NiceTypeName<T>::name()));
return p->getValue(index);
}
template <class T> inline T& AbstractProperty::
updValue(int index) {
setValueIsDefault(false); // assume it is being changed
//TODO: temporary support for obsolete properties
Property_Deprecated* pd = dynamic_cast<Property_Deprecated*>(this);
if (pd) {
return pd->isArrayProperty()
? pd->getValueArray<T>()[index]
: pd->getValue<T>();
}
Property<T>* p = dynamic_cast<Property<T>*>(this);
if (p == NULL)
throw Exception("AbstractProperty::updValue(): property "
+ getName() + " is not of type "
+ std::string(SimTK::NiceTypeName<T>::name()));
return p->updValue(index);
}
template <class T> inline int AbstractProperty::
appendValue(const T& value) {
setValueIsDefault(false);
//TODO: temporary support for obsolete properties
Property_Deprecated* pd = dynamic_cast<Property_Deprecated*>(this);
if (pd) {
if (!pd->isArrayProperty())
throw Exception
("AbstractProperty::appendValue(): deprecated property "
+ getName() + " is not an Array property; can't append.");
pd->getValueArray<T>().append(value);
return pd->getNumValues()-1;
}
Property<T>* p = dynamic_cast<Property<T>*>(this);
if (p == NULL)
throw Exception("AbstractProperty::appendValue(): property "
+ getName() + " is not of type "
+ std::string(SimTK::NiceTypeName<T>::name()));
return p->appendValue(value);
}
}; //namespace
#endif // OPENSIM_OBJECT_H_
| [
"antoinefalisse@gmail.com"
] | antoinefalisse@gmail.com |
5b17ab633a5e3e1eb14bbd63afd63a1ac278dd5f | a66f43ebb6bebfe509f8aaeff3989c6153668de8 | /LIGHTOJ/1202 - Bishops.cpp | 23eda54eff9d9306654c005cff0e331bb7839485 | [] | no_license | ShikariSohan/Problems-Solving | e6cbeaaa9a8a091364aee12cc28cce06165cf84d | 26809bddfcb357ca232be5e8016ef1e705a94f9a | refs/heads/master | 2023-02-24T08:05:27.161840 | 2021-01-26T12:44:55 | 2021-01-26T12:44:55 | 283,302,951 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,588 | cpp | /*
"""Bismillahir Rahmanur Rahim"""
*/
#include<bits/stdc++.h>
using namespace std;
#define pi 2*acos(0.0)
#define ll long long int
#define pb push_back
#define pf push_front
const ll sz = 1000001;
#define mp make_pair
#define ses '\n'
#define stm istringstream
#define ghora ios_base::sync_with_stdio(0);cin.tie(0);
#define gcd __gcd
ll lcm(ll x,ll y){return (x*y)/gcd(x,y);}
#define tin ll T;cin>>T; for(ll o=1;o<=T;o++)
#define tout cout<<"Case "<<o<<": ";
ll a,b,c,d,p,q,w;
int main()
{
// freopen ("input.txt","r",stdin);
// freopen ("output.txt","w",stdout);
tin
{
scanf("%lld %lld %lld %lld",&a,&b,&c,&d);
p=(a+b)%2;
q=(c+d)%2;
tout;
if(p!=q)
{
cout<<"impossible"<<ses;continue;
}
p=abs(a-c);
q=abs(b-d);
if(p==q)
cout<<"1"<<ses;
else cout<<"2"<<ses;
}
return 0;
}
/* --------------------
| ~SOHAN~ |
| ~Chandler68~ |
--------------------
|| VALAR MORGULIS||==|| ALL MEN MUST DIE ||
\\ Power Is Power//
|| I Can Do This All day ||
// We are on a Break \\ // How you doin'? \\
|| Say My Name || ~~ || I Am The Who Knocks ||
// I Am Ted Mosby Architect \\
|| It Is Legen --wait for it -- dary ,Legendary ||
\\ Penny - Penny - Penny // -- Bazinga
*/
| [
"moksedur.rahman.sohan@gmail.com"
] | moksedur.rahman.sohan@gmail.com |
fa24ce45b4cade70f92c8c0ee5d569570be0f414 | 1f530350dd396f64b20f0b47ebe1c447945d3502 | /src/Shader.hpp | 520e4985f538db5877257160f28d5887cf9abf5e | [] | no_license | MrTraan/minecrouft | b2831336e721bd02a7d64293158ee535d40f9685 | 08808ac5578bbf53fdd36f2060cd486012ca5c82 | refs/heads/master | 2022-02-05T01:33:47.749410 | 2020-06-11T12:09:11 | 2020-06-11T12:09:11 | 123,191,914 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,368 | hpp | #pragma once
#include <GL/gl3w.h>
#include <glm/glm.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "ngLib/nglib.h"
#include "packer.h"
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
class Shader {
public:
u32 ID = 0;
bool CompileFromPath( const char * vertexPath, const char * fragmentPath );
bool CompileFromCode( const char * vertexCode, int vertexSize, const char * fragmentCode, int fragmentSize );
bool CompileFromResource( const PackerResourceID & vertex, const PackerResourceID & frag );
void Use() { glUseProgram( this->ID ); }
void SetBool( const char * name, bool value ) const {
glUniform1i( glGetUniformLocation( this->ID, name ), ( int )value );
}
void SetInt( const char * name, int value ) const { glUniform1i( glGetUniformLocation( this->ID, name ), value ); }
void SetFloat( const char * name, float value ) const {
glUniform1f( glGetUniformLocation( this->ID, name ), value );
}
void SetVector( const char * name, const glm::vec3 & v ) const {
glUniform3f( glGetUniformLocation( this->ID, name ), v.x, v.y, v.z );
}
void SetMatrix( const char * name, const glm::mat4x4 & mat ) const {
glUniformMatrix4fv( glGetUniformLocation( ID, name ), 1, GL_FALSE, glm::value_ptr( mat ) );
}
private:
int checkCompileErrors( unsigned int shader );
int checkLinkErrors( unsigned int shader );
}; | [
"nathan.grasset@gmail.com"
] | nathan.grasset@gmail.com |
42e71c700761ec1b5bdc961c65e7d5f7aadc5a62 | f3a2948ff49b11723f37123a11eedbdae171f7a4 | /src/consumer/DefaultMQPushConsumer.cpp | e14da6866537ce3b90ddb9df9a1384928d39103b | [
"Apache-2.0"
] | permissive | hooligan520/rocketmq-client4cpp-linux | 1656aed9f3de0e0c1b2a54d945ff560ab272cd5d | 2f891c979229dfd78707150fa626ca3822f2d006 | refs/heads/master | 2021-01-11T05:12:45.678389 | 2017-05-08T03:58:49 | 2017-05-08T03:58:49 | 81,163,610 | 22 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 10,090 | cpp | /**
* Copyright (C) 2013 kangliqiang ,kangliq@163.com
*
* 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.
*/
#include "DefaultMQPushConsumer.h"
#include <list>
#include <string>
#include "DefaultMQPushConsumerImpl.h"
#include "MessageQueue.h"
#include "MessageExt.h"
#include "ClientConfig.h"
#include "ConsumerStatManage.h"
#include "MixAll.h"
#include "AllocateMessageQueueStrategyInner.h"
namespace rmq
{
class AllocateMessageQueueStrategy;
DefaultMQPushConsumer::DefaultMQPushConsumer()
{
m_consumerGroup = MixAll::DEFAULT_CONSUMER_GROUP;
m_messageModel = CLUSTERING;
m_consumeFromWhere = CONSUME_FROM_LAST_OFFSET;
m_pAllocateMessageQueueStrategy = new AllocateMessageQueueAveragely();
m_pMessageListener = NULL;
m_consumeThreadMin = 5;
m_consumeThreadMax = 25;
m_consumeConcurrentlyMaxSpan = 2000;
m_pullThresholdForQueue = 1000;
m_pullInterval = 0;
m_consumeMessageBatchMaxSize = 1;
m_pullBatchSize = 32;
m_postSubscriptionWhenPull = false;
m_unitMode = false;
m_maxReconsumeTimes = 16;
m_suspendCurrentQueueTimeMillis = 1000;
m_consumeTimeout = 15;
m_pOffsetStore = NULL;
m_pDefaultMQPushConsumerImpl = new DefaultMQPushConsumerImpl(this);
}
DefaultMQPushConsumer::DefaultMQPushConsumer(const std::string& consumerGroup)
{
m_consumerGroup = consumerGroup;
m_messageModel = CLUSTERING;
m_consumeFromWhere = CONSUME_FROM_LAST_OFFSET;
m_pAllocateMessageQueueStrategy = new AllocateMessageQueueAveragely();
m_pMessageListener = NULL;
m_consumeThreadMin = 5;
m_consumeThreadMax = 25;
m_consumeConcurrentlyMaxSpan = 2000;
m_pullThresholdForQueue = 1000;
m_pullInterval = 0;
m_consumeMessageBatchMaxSize = 1;
m_pullBatchSize = 32;
m_postSubscriptionWhenPull = false;
m_unitMode = false;
m_maxReconsumeTimes = 16;
m_suspendCurrentQueueTimeMillis = 1000;
m_consumeTimeout = 15;
m_pOffsetStore = NULL;
m_pDefaultMQPushConsumerImpl = new DefaultMQPushConsumerImpl(this);
}
DefaultMQPushConsumer::~DefaultMQPushConsumer()
{
delete m_pAllocateMessageQueueStrategy;
// memleak: 释放有可能core
delete m_pDefaultMQPushConsumerImpl;
}
//MQAdmin
void DefaultMQPushConsumer::createTopic(const std::string& key, const std::string& newTopic, int queueNum)
{
m_pDefaultMQPushConsumerImpl->createTopic(key, newTopic, queueNum);
}
long long DefaultMQPushConsumer::searchOffset(const MessageQueue& mq, long long timestamp)
{
return m_pDefaultMQPushConsumerImpl->searchOffset(mq, timestamp);
}
long long DefaultMQPushConsumer::maxOffset(const MessageQueue& mq)
{
return m_pDefaultMQPushConsumerImpl->maxOffset(mq);
}
long long DefaultMQPushConsumer::minOffset(const MessageQueue& mq)
{
return m_pDefaultMQPushConsumerImpl->minOffset(mq);
}
long long DefaultMQPushConsumer::earliestMsgStoreTime(const MessageQueue& mq)
{
return m_pDefaultMQPushConsumerImpl->earliestMsgStoreTime(mq);
}
MessageExt* DefaultMQPushConsumer::viewMessage(const std::string& msgId)
{
return m_pDefaultMQPushConsumerImpl->viewMessage(msgId);
}
QueryResult DefaultMQPushConsumer::queryMessage(const std::string& topic,
const std::string& key,
int maxNum,
long long begin,
long long end)
{
return m_pDefaultMQPushConsumerImpl->queryMessage(topic, key, maxNum, begin, end);
}
// MQadmin end
AllocateMessageQueueStrategy* DefaultMQPushConsumer::getAllocateMessageQueueStrategy()
{
return m_pAllocateMessageQueueStrategy;
}
void DefaultMQPushConsumer::setAllocateMessageQueueStrategy(AllocateMessageQueueStrategy* pAllocateMessageQueueStrategy)
{
m_pAllocateMessageQueueStrategy = pAllocateMessageQueueStrategy;
}
int DefaultMQPushConsumer::getConsumeConcurrentlyMaxSpan()
{
return m_consumeConcurrentlyMaxSpan;
}
void DefaultMQPushConsumer::setConsumeConcurrentlyMaxSpan(int consumeConcurrentlyMaxSpan)
{
m_consumeConcurrentlyMaxSpan = consumeConcurrentlyMaxSpan;
}
ConsumeFromWhere DefaultMQPushConsumer::getConsumeFromWhere()
{
return m_consumeFromWhere;
}
void DefaultMQPushConsumer::setConsumeFromWhere(ConsumeFromWhere consumeFromWhere)
{
m_consumeFromWhere = consumeFromWhere;
}
int DefaultMQPushConsumer::getConsumeMessageBatchMaxSize()
{
return m_consumeMessageBatchMaxSize;
}
void DefaultMQPushConsumer::setConsumeMessageBatchMaxSize(int consumeMessageBatchMaxSize)
{
m_consumeMessageBatchMaxSize = consumeMessageBatchMaxSize;
}
std::string DefaultMQPushConsumer::getConsumerGroup()
{
return m_consumerGroup;
}
void DefaultMQPushConsumer::setConsumerGroup(const std::string& consumerGroup)
{
m_consumerGroup = consumerGroup;
}
int DefaultMQPushConsumer::getConsumeThreadMax()
{
return m_consumeThreadMax;
}
void DefaultMQPushConsumer::setConsumeThreadMax(int consumeThreadMax)
{
m_consumeThreadMax = consumeThreadMax;
}
int DefaultMQPushConsumer::getConsumeThreadMin()
{
return m_consumeThreadMin;
}
void DefaultMQPushConsumer::setConsumeThreadMin(int consumeThreadMin)
{
m_consumeThreadMin = consumeThreadMin;
}
DefaultMQPushConsumerImpl* DefaultMQPushConsumer::getDefaultMQPushConsumerImpl()
{
return m_pDefaultMQPushConsumerImpl;
}
MessageListener* DefaultMQPushConsumer::getMessageListener()
{
return m_pMessageListener;
}
void DefaultMQPushConsumer::setMessageListener(MessageListener* pMessageListener)
{
m_pMessageListener = pMessageListener;
}
MessageModel DefaultMQPushConsumer::getMessageModel()
{
return m_messageModel;
}
void DefaultMQPushConsumer::setMessageModel(MessageModel messageModel)
{
m_messageModel = messageModel;
}
int DefaultMQPushConsumer::getPullBatchSize()
{
return m_pullBatchSize;
}
void DefaultMQPushConsumer::setPullBatchSize(int pullBatchSize)
{
m_pullBatchSize = pullBatchSize;
}
long DefaultMQPushConsumer::getPullInterval()
{
return m_pullInterval;
}
void DefaultMQPushConsumer::setPullInterval(long pullInterval)
{
m_pullInterval = pullInterval;
}
int DefaultMQPushConsumer::getPullThresholdForQueue()
{
return m_pullThresholdForQueue;
}
void DefaultMQPushConsumer::setPullThresholdForQueue(int pullThresholdForQueue)
{
m_pullThresholdForQueue = pullThresholdForQueue;
}
std::map<std::string, std::string>& DefaultMQPushConsumer::getSubscription()
{
return m_subscription;
}
void DefaultMQPushConsumer::setSubscription(const std::map<std::string, std::string>& subscription)
{
m_subscription = subscription;
}
//MQConsumer
void DefaultMQPushConsumer::sendMessageBack(MessageExt& msg, int delayLevel)
{
m_pDefaultMQPushConsumerImpl->sendMessageBack(msg, delayLevel, "");
}
void DefaultMQPushConsumer::sendMessageBack(MessageExt& msg, int delayLevel, const std::string brokerName)
{
m_pDefaultMQPushConsumerImpl->sendMessageBack(msg, delayLevel, brokerName);
}
std::set<MessageQueue>* DefaultMQPushConsumer::fetchSubscribeMessageQueues(const std::string& topic)
{
return m_pDefaultMQPushConsumerImpl->fetchSubscribeMessageQueues(topic);
}
void DefaultMQPushConsumer::start()
{
m_pDefaultMQPushConsumerImpl->start();
}
void DefaultMQPushConsumer::shutdown()
{
m_pDefaultMQPushConsumerImpl->shutdown();
}
//MQConsumer end
//MQPushConsumer
void DefaultMQPushConsumer::registerMessageListener(MessageListener* pMessageListener)
{
m_pMessageListener = pMessageListener;
m_pDefaultMQPushConsumerImpl->registerMessageListener(pMessageListener);
}
void DefaultMQPushConsumer::subscribe(const std::string& topic, const std::string& subExpression)
{
m_pDefaultMQPushConsumerImpl->subscribe(topic, subExpression);
}
void DefaultMQPushConsumer::unsubscribe(const std::string& topic)
{
m_pDefaultMQPushConsumerImpl->unsubscribe(topic);
}
void DefaultMQPushConsumer::updateCorePoolSize(int corePoolSize)
{
m_pDefaultMQPushConsumerImpl->updateCorePoolSize(corePoolSize);
}
void DefaultMQPushConsumer::suspend()
{
m_pDefaultMQPushConsumerImpl->suspend();
}
void DefaultMQPushConsumer::resume()
{
m_pDefaultMQPushConsumerImpl->resume();
}
//MQPushConsumer end
OffsetStore* DefaultMQPushConsumer::getOffsetStore()
{
return m_pOffsetStore;
}
void DefaultMQPushConsumer::setOffsetStore(OffsetStore* pOffsetStore)
{
m_pOffsetStore = pOffsetStore;
}
std::string DefaultMQPushConsumer::getConsumeTimestamp() {
return m_consumeTimestamp;
}
void DefaultMQPushConsumer::setConsumeTimestamp(std::string consumeTimestamp) {
m_consumeTimestamp = consumeTimestamp;
}
bool DefaultMQPushConsumer::isPostSubscriptionWhenPull()
{
return m_postSubscriptionWhenPull;
}
void DefaultMQPushConsumer::setPostSubscriptionWhenPull(bool postSubscriptionWhenPull)
{
m_postSubscriptionWhenPull = postSubscriptionWhenPull;
}
bool DefaultMQPushConsumer::isUnitMode()
{
return m_unitMode;
}
void DefaultMQPushConsumer::setUnitMode(bool isUnitMode)
{
m_unitMode = isUnitMode;
}
int DefaultMQPushConsumer::getMaxReconsumeTimes()
{
return m_maxReconsumeTimes;
}
void DefaultMQPushConsumer::setMaxReconsumeTimes(int maxReconsumeTimes)
{
m_maxReconsumeTimes = maxReconsumeTimes;
}
int DefaultMQPushConsumer::getSuspendCurrentQueueTimeMillis()
{
return m_suspendCurrentQueueTimeMillis;
}
void DefaultMQPushConsumer::setSuspendCurrentQueueTimeMillis(int suspendCurrentQueueTimeMillis)
{
m_suspendCurrentQueueTimeMillis = suspendCurrentQueueTimeMillis;
}
int DefaultMQPushConsumer::getConsumeTimeout()
{
return m_consumeTimeout;
}
void DefaultMQPushConsumer::setConsumeTimeout(int consumeTimeout)
{
m_consumeTimeout = consumeTimeout;
}
}
| [
"79015166@qq.com"
] | 79015166@qq.com |
26e4cef6795d48838cbac069a34f5ef946574f34 | 4fee29b4de44c68559e1e084151dc9b12f161287 | /windows/resources.hpp | 96bd5cf8bdd917fe15375c6ac5213ba4c31b9fd7 | [
"MIT"
] | permissive | kristjanbb/libui | 6e68b6f4f3a7115c9c5f735c7317d2a5bc675acb | d88233a0fb81524bff507b04fd710eb297b668ba | refs/heads/master | 2021-01-18T13:00:18.504385 | 2016-05-29T08:53:49 | 2016-05-29T08:53:49 | 59,950,378 | 3 | 0 | null | 2016-05-29T15:33:30 | 2016-05-29T15:33:29 | null | UTF-8 | C++ | false | false | 761 | hpp | // 30 may 2015
#define rcTabPageDialog 100
#define rcFontDialog 101
#define rcColorDialog 102
#define rcFontFamilyCombobox 1000
#define rcFontStyleCombobox 1001
#define rcFontSizeCombobox 1002
#define rcFontSamplePlacement 1003
#define rcColorSVChooser 1100
#define rcColorHSlider 1101
#define rcPreview 1102
#define rcOpacitySlider 1103
#define rcH 1104
#define rcS 1105
#define rcV 1106
#define rcRDouble 1107
#define rcRInt 1108
#define rcGDouble 1109
#define rcGInt 1110
#define rcBDouble 1111
#define rcBInt 1112
#define rcADouble 1113
#define rcAInt 1114
#define rcHex 1115
#define rcHLabel 1116
#define rcSLabel 1117
#define rcVLabel 1118
#define rcRLabel 1119
#define rcGLabel 1120
#define rcBLabel 1121
#define rcALabel 1122
#define rcHexLabel 1123
| [
"pietro10@mac.com"
] | pietro10@mac.com |
461d5bb9867eff4b40fa6d755ed7a6a3dcfac310 | da5fcf2b56a3b8e6417e1560650ce13fbae12f73 | /Main.cpp | 318d804d2963f1924869ada7d6716bae92b5419d | [] | no_license | gjbr5/airodump | 8446de9dc5898c1a22883a41326fb8adb771e3eb | e980c27ccce22aae70cb0f8f175363055226de0a | refs/heads/master | 2021-01-02T06:00:43.868707 | 2020-02-10T13:49:41 | 2020-02-10T13:49:41 | 239,520,281 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 526 | cpp | #include "Parser.h"
#include <pcap.h>
int main(int argc, char* argv[])
{
const char* file = "C:\\Users\\gjbr5\\Desktop\\80211.pcapng";
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t* handle = pcap_open_offline(file, errbuf);
if (!handle) {
std::cout << "File Open Failed.\n";
return 0;
}
Parser parser;
while (true) {
struct pcap_pkthdr* header;
const uint8_t* packet;
if (pcap_next_ex(handle, &header, &packet) < 0) break;
parser.parse80211(packet, header->caplen);
}
pcap_close(handle);
parser.print();
} | [
"wlwogud02@naver.com"
] | wlwogud02@naver.com |
5b236fa686bb6dd64ba04aba7d3fcd477f229d43 | 73ee941896043f9b3e2ab40028d24ddd202f695f | /external/chromium_org/media/filters/decrypting_audio_decoder.cc | f516674a50ebcbaa8a61263b181c263e2f65faa4 | [
"BSD-3-Clause"
] | permissive | CyFI-Lab-Public/RetroScope | d441ea28b33aceeb9888c330a54b033cd7d48b05 | 276b5b03d63f49235db74f2c501057abb9e79d89 | refs/heads/master | 2022-04-08T23:11:44.482107 | 2016-09-22T20:15:43 | 2016-09-22T20:15:43 | 58,890,600 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 14,877 | 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 "media/filters/decrypting_audio_decoder.h"
#include <cstdlib>
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/message_loop/message_loop_proxy.h"
#include "media/base/audio_buffer.h"
#include "media/base/audio_decoder_config.h"
#include "media/base/audio_timestamp_helper.h"
#include "media/base/bind_to_loop.h"
#include "media/base/buffers.h"
#include "media/base/decoder_buffer.h"
#include "media/base/decryptor.h"
#include "media/base/demuxer_stream.h"
#include "media/base/pipeline.h"
namespace media {
const int DecryptingAudioDecoder::kSupportedBitsPerChannel = 16;
static inline bool IsOutOfSync(const base::TimeDelta& timestamp_1,
const base::TimeDelta& timestamp_2) {
// Out of sync of 100ms would be pretty noticeable and we should keep any
// drift below that.
const int64 kOutOfSyncThresholdInMilliseconds = 100;
return std::abs(timestamp_1.InMilliseconds() - timestamp_2.InMilliseconds()) >
kOutOfSyncThresholdInMilliseconds;
}
DecryptingAudioDecoder::DecryptingAudioDecoder(
const scoped_refptr<base::MessageLoopProxy>& message_loop,
const SetDecryptorReadyCB& set_decryptor_ready_cb)
: message_loop_(message_loop),
weak_factory_(this),
state_(kUninitialized),
demuxer_stream_(NULL),
set_decryptor_ready_cb_(set_decryptor_ready_cb),
decryptor_(NULL),
key_added_while_decode_pending_(false),
bits_per_channel_(0),
channel_layout_(CHANNEL_LAYOUT_NONE),
samples_per_second_(0) {
}
void DecryptingAudioDecoder::Initialize(
DemuxerStream* stream,
const PipelineStatusCB& status_cb,
const StatisticsCB& statistics_cb) {
DVLOG(2) << "Initialize()";
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kUninitialized) << state_;
DCHECK(stream);
weak_this_ = weak_factory_.GetWeakPtr();
init_cb_ = BindToCurrentLoop(status_cb);
const AudioDecoderConfig& config = stream->audio_decoder_config();
if (!config.IsValidConfig()) {
DLOG(ERROR) << "Invalid audio stream config.";
base::ResetAndReturn(&init_cb_).Run(PIPELINE_ERROR_DECODE);
return;
}
// DecryptingAudioDecoder only accepts potentially encrypted stream.
if (!config.is_encrypted()) {
base::ResetAndReturn(&init_cb_).Run(DECODER_ERROR_NOT_SUPPORTED);
return;
}
DCHECK(!demuxer_stream_);
demuxer_stream_ = stream;
statistics_cb_ = statistics_cb;
state_ = kDecryptorRequested;
set_decryptor_ready_cb_.Run(BindToCurrentLoop(
base::Bind(&DecryptingAudioDecoder::SetDecryptor, weak_this_)));
}
void DecryptingAudioDecoder::Read(const ReadCB& read_cb) {
DVLOG(3) << "Read()";
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK(state_ == kIdle || state_ == kDecodeFinished) << state_;
DCHECK(!read_cb.is_null());
CHECK(read_cb_.is_null()) << "Overlapping decodes are not supported.";
read_cb_ = BindToCurrentLoop(read_cb);
// Return empty (end-of-stream) frames if decoding has finished.
if (state_ == kDecodeFinished) {
base::ResetAndReturn(&read_cb_).Run(kOk, AudioBuffer::CreateEOSBuffer());
return;
}
if (!queued_audio_frames_.empty()) {
base::ResetAndReturn(&read_cb_).Run(kOk, queued_audio_frames_.front());
queued_audio_frames_.pop_front();
return;
}
state_ = kPendingDemuxerRead;
ReadFromDemuxerStream();
}
void DecryptingAudioDecoder::Reset(const base::Closure& closure) {
DVLOG(2) << "Reset() - state: " << state_;
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK(state_ == kIdle ||
state_ == kPendingConfigChange ||
state_ == kPendingDemuxerRead ||
state_ == kPendingDecode ||
state_ == kWaitingForKey ||
state_ == kDecodeFinished) << state_;
DCHECK(init_cb_.is_null()); // No Reset() during pending initialization.
DCHECK(reset_cb_.is_null());
reset_cb_ = closure;
decryptor_->ResetDecoder(Decryptor::kAudio);
// Reset() cannot complete if the read callback is still pending.
// Defer the resetting process in this case. The |reset_cb_| will be fired
// after the read callback is fired - see DecryptAndDecodeBuffer() and
// DeliverFrame().
if (state_ == kPendingConfigChange ||
state_ == kPendingDemuxerRead ||
state_ == kPendingDecode) {
DCHECK(!read_cb_.is_null());
return;
}
if (state_ == kWaitingForKey) {
DCHECK(!read_cb_.is_null());
pending_buffer_to_decode_ = NULL;
base::ResetAndReturn(&read_cb_).Run(kAborted, NULL);
}
DCHECK(read_cb_.is_null());
DoReset();
}
int DecryptingAudioDecoder::bits_per_channel() {
DCHECK(message_loop_->BelongsToCurrentThread());
return bits_per_channel_;
}
ChannelLayout DecryptingAudioDecoder::channel_layout() {
DCHECK(message_loop_->BelongsToCurrentThread());
return channel_layout_;
}
int DecryptingAudioDecoder::samples_per_second() {
DCHECK(message_loop_->BelongsToCurrentThread());
return samples_per_second_;
}
DecryptingAudioDecoder::~DecryptingAudioDecoder() {
}
void DecryptingAudioDecoder::SetDecryptor(Decryptor* decryptor) {
DVLOG(2) << "SetDecryptor()";
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kDecryptorRequested) << state_;
DCHECK(!init_cb_.is_null());
DCHECK(!set_decryptor_ready_cb_.is_null());
set_decryptor_ready_cb_.Reset();
if (!decryptor) {
base::ResetAndReturn(&init_cb_).Run(DECODER_ERROR_NOT_SUPPORTED);
// TODO(xhwang): Add kError state. See http://crbug.com/251503
state_ = kDecodeFinished;
return;
}
decryptor_ = decryptor;
const AudioDecoderConfig& input_config =
demuxer_stream_->audio_decoder_config();
AudioDecoderConfig config;
config.Initialize(input_config.codec(),
kSampleFormatS16,
input_config.channel_layout(),
input_config.samples_per_second(),
input_config.extra_data(),
input_config.extra_data_size(),
input_config.is_encrypted(),
false);
state_ = kPendingDecoderInit;
decryptor_->InitializeAudioDecoder(
config,
BindToCurrentLoop(base::Bind(
&DecryptingAudioDecoder::FinishInitialization, weak_this_)));
}
void DecryptingAudioDecoder::FinishInitialization(bool success) {
DVLOG(2) << "FinishInitialization()";
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kPendingDecoderInit) << state_;
DCHECK(!init_cb_.is_null());
DCHECK(reset_cb_.is_null()); // No Reset() before initialization finished.
DCHECK(read_cb_.is_null()); // No Read() before initialization finished.
if (!success) {
base::ResetAndReturn(&init_cb_).Run(DECODER_ERROR_NOT_SUPPORTED);
state_ = kDecodeFinished;
return;
}
// Success!
UpdateDecoderConfig();
decryptor_->RegisterNewKeyCB(
Decryptor::kAudio, BindToCurrentLoop(base::Bind(
&DecryptingAudioDecoder::OnKeyAdded, weak_this_)));
state_ = kIdle;
base::ResetAndReturn(&init_cb_).Run(PIPELINE_OK);
}
void DecryptingAudioDecoder::FinishConfigChange(bool success) {
DVLOG(2) << "FinishConfigChange()";
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kPendingConfigChange) << state_;
DCHECK(!read_cb_.is_null());
if (!success) {
base::ResetAndReturn(&read_cb_).Run(kDecodeError, NULL);
state_ = kDecodeFinished;
if (!reset_cb_.is_null())
base::ResetAndReturn(&reset_cb_).Run();
return;
}
// Config change succeeded.
UpdateDecoderConfig();
if (!reset_cb_.is_null()) {
base::ResetAndReturn(&read_cb_).Run(kAborted, NULL);
DoReset();
return;
}
state_ = kPendingDemuxerRead;
ReadFromDemuxerStream();
}
void DecryptingAudioDecoder::ReadFromDemuxerStream() {
DCHECK_EQ(state_, kPendingDemuxerRead) << state_;
DCHECK(!read_cb_.is_null());
demuxer_stream_->Read(
base::Bind(&DecryptingAudioDecoder::DecryptAndDecodeBuffer, weak_this_));
}
void DecryptingAudioDecoder::DecryptAndDecodeBuffer(
DemuxerStream::Status status,
const scoped_refptr<DecoderBuffer>& buffer) {
DVLOG(3) << "DecryptAndDecodeBuffer()";
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kPendingDemuxerRead) << state_;
DCHECK(!read_cb_.is_null());
DCHECK_EQ(buffer.get() != NULL, status == DemuxerStream::kOk) << status;
if (status == DemuxerStream::kConfigChanged) {
DVLOG(2) << "DecryptAndDecodeBuffer() - kConfigChanged";
const AudioDecoderConfig& input_config =
demuxer_stream_->audio_decoder_config();
AudioDecoderConfig config;
config.Initialize(input_config.codec(),
kSampleFormatS16,
input_config.channel_layout(),
input_config.samples_per_second(),
input_config.extra_data(),
input_config.extra_data_size(),
input_config.is_encrypted(),
false);
state_ = kPendingConfigChange;
decryptor_->DeinitializeDecoder(Decryptor::kAudio);
decryptor_->InitializeAudioDecoder(
config, BindToCurrentLoop(base::Bind(
&DecryptingAudioDecoder::FinishConfigChange, weak_this_)));
return;
}
if (!reset_cb_.is_null()) {
base::ResetAndReturn(&read_cb_).Run(kAborted, NULL);
DoReset();
return;
}
if (status == DemuxerStream::kAborted) {
DVLOG(2) << "DecryptAndDecodeBuffer() - kAborted";
state_ = kIdle;
base::ResetAndReturn(&read_cb_).Run(kAborted, NULL);
return;
}
DCHECK_EQ(status, DemuxerStream::kOk);
// Initialize the |next_output_timestamp_| to be the timestamp of the first
// non-EOS buffer.
if (timestamp_helper_->base_timestamp() == kNoTimestamp() &&
!buffer->end_of_stream()) {
timestamp_helper_->SetBaseTimestamp(buffer->timestamp());
}
pending_buffer_to_decode_ = buffer;
state_ = kPendingDecode;
DecodePendingBuffer();
}
void DecryptingAudioDecoder::DecodePendingBuffer() {
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kPendingDecode) << state_;
int buffer_size = 0;
if (!pending_buffer_to_decode_->end_of_stream()) {
buffer_size = pending_buffer_to_decode_->data_size();
}
decryptor_->DecryptAndDecodeAudio(
pending_buffer_to_decode_,
BindToCurrentLoop(base::Bind(
&DecryptingAudioDecoder::DeliverFrame, weak_this_, buffer_size)));
}
void DecryptingAudioDecoder::DeliverFrame(
int buffer_size,
Decryptor::Status status,
const Decryptor::AudioBuffers& frames) {
DVLOG(3) << "DeliverFrame() - status: " << status;
DCHECK(message_loop_->BelongsToCurrentThread());
DCHECK_EQ(state_, kPendingDecode) << state_;
DCHECK(!read_cb_.is_null());
DCHECK(pending_buffer_to_decode_.get());
DCHECK(queued_audio_frames_.empty());
bool need_to_try_again_if_nokey_is_returned = key_added_while_decode_pending_;
key_added_while_decode_pending_ = false;
scoped_refptr<DecoderBuffer> scoped_pending_buffer_to_decode =
pending_buffer_to_decode_;
pending_buffer_to_decode_ = NULL;
if (!reset_cb_.is_null()) {
base::ResetAndReturn(&read_cb_).Run(kAborted, NULL);
DoReset();
return;
}
DCHECK_EQ(status == Decryptor::kSuccess, !frames.empty());
if (status == Decryptor::kError) {
DVLOG(2) << "DeliverFrame() - kError";
state_ = kDecodeFinished;
base::ResetAndReturn(&read_cb_).Run(kDecodeError, NULL);
return;
}
if (status == Decryptor::kNoKey) {
DVLOG(2) << "DeliverFrame() - kNoKey";
// Set |pending_buffer_to_decode_| back as we need to try decoding the
// pending buffer again when new key is added to the decryptor.
pending_buffer_to_decode_ = scoped_pending_buffer_to_decode;
if (need_to_try_again_if_nokey_is_returned) {
// The |state_| is still kPendingDecode.
DecodePendingBuffer();
return;
}
state_ = kWaitingForKey;
return;
}
// The buffer has been accepted by the decoder, let's report statistics.
if (buffer_size) {
PipelineStatistics statistics;
statistics.audio_bytes_decoded = buffer_size;
statistics_cb_.Run(statistics);
}
if (status == Decryptor::kNeedMoreData) {
DVLOG(2) << "DeliverFrame() - kNeedMoreData";
if (scoped_pending_buffer_to_decode->end_of_stream()) {
state_ = kDecodeFinished;
base::ResetAndReturn(&read_cb_).Run(kOk, AudioBuffer::CreateEOSBuffer());
return;
}
state_ = kPendingDemuxerRead;
ReadFromDemuxerStream();
return;
}
DCHECK_EQ(status, Decryptor::kSuccess);
DCHECK(!frames.empty());
EnqueueFrames(frames);
state_ = kIdle;
base::ResetAndReturn(&read_cb_).Run(kOk, queued_audio_frames_.front());
queued_audio_frames_.pop_front();
}
void DecryptingAudioDecoder::OnKeyAdded() {
DCHECK(message_loop_->BelongsToCurrentThread());
if (state_ == kPendingDecode) {
key_added_while_decode_pending_ = true;
return;
}
if (state_ == kWaitingForKey) {
state_ = kPendingDecode;
DecodePendingBuffer();
}
}
void DecryptingAudioDecoder::DoReset() {
DCHECK(init_cb_.is_null());
DCHECK(read_cb_.is_null());
timestamp_helper_->SetBaseTimestamp(kNoTimestamp());
state_ = kIdle;
base::ResetAndReturn(&reset_cb_).Run();
}
void DecryptingAudioDecoder::UpdateDecoderConfig() {
const AudioDecoderConfig& config = demuxer_stream_->audio_decoder_config();
bits_per_channel_ = kSupportedBitsPerChannel;
channel_layout_ = config.channel_layout();
samples_per_second_ = config.samples_per_second();
timestamp_helper_.reset(new AudioTimestampHelper(samples_per_second_));
}
void DecryptingAudioDecoder::EnqueueFrames(
const Decryptor::AudioBuffers& frames) {
queued_audio_frames_ = frames;
for (Decryptor::AudioBuffers::iterator iter = queued_audio_frames_.begin();
iter != queued_audio_frames_.end();
++iter) {
scoped_refptr<AudioBuffer>& frame = *iter;
DCHECK(!frame->end_of_stream()) << "EOS frame returned.";
DCHECK_GT(frame->frame_count(), 0) << "Empty frame returned.";
base::TimeDelta current_time = timestamp_helper_->GetTimestamp();
if (IsOutOfSync(current_time, frame->timestamp())) {
DVLOG(1) << "Timestamp returned by the decoder ("
<< frame->timestamp().InMilliseconds() << " ms)"
<< " does not match the input timestamp and number of samples"
<< " decoded (" << current_time.InMilliseconds() << " ms).";
}
frame->set_timestamp(current_time);
frame->set_duration(
timestamp_helper_->GetFrameDuration(frame->frame_count()));
timestamp_helper_->AddFrames(frame->frame_count());
}
}
} // namespace media
| [
"ProjectRetroScope@gmail.com"
] | ProjectRetroScope@gmail.com |
de601ae75765ebbfd2b2c58b2bfd149b880de721 | ee93f5b1f47a9e4407099469fe573d3487931f17 | /release/moc_contextview.cpp | aac39488b7a831d3e0412732ab979b64ea447413 | [] | no_license | blaquee/QtSlothEmu | d149f417247fbc4c72087a78d6b6c15583432c89 | 3d24ff1e85d2d598441c52bc0af7b7db9db9fd80 | refs/heads/master | 2021-03-16T05:12:41.814041 | 2017-09-21T14:52:42 | 2017-09-21T14:52:42 | 103,222,749 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,589 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'contextview.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.6.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../contextview.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'contextview.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.6.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_ContextView_t {
QByteArrayData data[4];
char stringdata0[64];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_ContextView_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_ContextView_t qt_meta_stringdata_ContextView = {
{
QT_MOC_LITERAL(0, 0, 11), // "ContextView"
QT_MOC_LITERAL(1, 12, 23), // "on_onDoneButton_clicked"
QT_MOC_LITERAL(2, 36, 0), // ""
QT_MOC_LITERAL(3, 37, 26) // "on_onUseCurContext_clicked"
},
"ContextView\0on_onDoneButton_clicked\0"
"\0on_onUseCurContext_clicked"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_ContextView[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
2, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: name, argc, parameters, tag, flags
1, 0, 24, 2, 0x08 /* Private */,
3, 0, 25, 2, 0x08 /* Private */,
// slots: parameters
QMetaType::Void,
QMetaType::Void,
0 // eod
};
void ContextView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
ContextView *_t = static_cast<ContextView *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->on_onDoneButton_clicked(); break;
case 1: _t->on_onUseCurContext_clicked(); break;
default: ;
}
}
Q_UNUSED(_a);
}
const QMetaObject ContextView::staticMetaObject = {
{ &QDialog::staticMetaObject, qt_meta_stringdata_ContextView.data,
qt_meta_data_ContextView, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *ContextView::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *ContextView::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_ContextView.stringdata0))
return static_cast<void*>(const_cast< ContextView*>(this));
return QDialog::qt_metacast(_clname);
}
int ContextView::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QDialog::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 2)
qt_static_metacall(this, _c, _id, _a);
_id -= 2;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 2)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 2;
}
return _id;
}
QT_END_MOC_NAMESPACE
| [
"1324227+blaquee@users.noreply.github.com"
] | 1324227+blaquee@users.noreply.github.com |
a273bf3e4195be4391760b8e66b9dfc77410b92c | c8358d07a468647ab80685e539cda1f195341d3b | /src/opencl_exclusive_scan.hpp | 8ffe102809082239f351a3df5fdc27a7de00002f | [] | no_license | foduguay/exclusive_scan | ddcd73151607b6b91b8a29aa5238412b57534b37 | f586c91786e3bac1c07e1cac8923617cc6a031fe | refs/heads/main | 2023-02-13T20:22:52.783204 | 2021-01-16T12:00:45 | 2021-01-16T12:00:45 | 329,964,472 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,765 | hpp | #ifndef OPENCL_EXCLUSIVE_SCAN
#define OPENCL_EXCLUSIVE_SCAN
#define CL_TARGET_OPENCL_VERSION 120
#include <CL/cl.h>
#define MAX_SOURCE_SIZE 100000
static char* value;
static size_t valueSize;
static cl_uint maxComputeUnits;
static cl_platform_id platform_id[1];
static cl_device_id device_id[1];
static cl_uint ret_num_devices;
static cl_uint ret_num_platforms;
static cl_int ret;
static cl_context context;
static cl_command_queue command_queue;
static cl_mem in_mem;
static cl_mem out_mem;
static cl_mem jump_mem;
static cl_mem length;
static cl_program program;
static cl_kernel kernel, kernel_copy;
static bool once = false;
template<class IN_TYPE, class OUT_TYPE>
bool exclusive_scan(const IN_TYPE* in, OUT_TYPE* out, int size) {
// TODO make class
if (!once) {
once = true;
ret = clGetPlatformIDs(1, platform_id, &ret_num_platforms);
for (int i = 0; i < ret_num_platforms; i++) {
ret = clGetDeviceIDs( platform_id[i], CL_DEVICE_TYPE_DEFAULT, 1,
device_id, &ret_num_devices);
// for each device print critical attributes
for (int j = 0; j < ret_num_devices; j++) {
// print device name
clGetDeviceInfo(device_id[j], CL_DEVICE_NAME, 0, NULL, &valueSize);
value = (char*) malloc(valueSize);
clGetDeviceInfo(device_id[j], CL_DEVICE_NAME, valueSize, value, NULL);
printf("%d. Device: %s\n", j+1, value);
free(value);
clGetDeviceInfo(device_id[j], CL_DEVICE_VERSION, 0, NULL, &valueSize);
value = (char*) malloc(valueSize);
clGetDeviceInfo(device_id[j], CL_DEVICE_VERSION, valueSize, value, NULL);
printf(" %d.%d Hardware version: %s\n", j+1, 1, value);
free(value);
clGetDeviceInfo(device_id[j], CL_DRIVER_VERSION, 0, NULL, &valueSize);
value = (char*) malloc(valueSize);
clGetDeviceInfo(device_id[j], CL_DRIVER_VERSION, valueSize, value, NULL);
printf(" %d.%d Software version: %s\n", j+1, 2, value);
free(value);
clGetDeviceInfo(device_id[j], CL_DEVICE_OPENCL_C_VERSION, 0, NULL, &valueSize);
value = (char*) malloc(valueSize);
clGetDeviceInfo(device_id[j], CL_DEVICE_OPENCL_C_VERSION, valueSize, value, NULL);
printf(" %d.%d OpenCL C version: %s\n", j+1, 3, value);
free(value);
clGetDeviceInfo(device_id[j], CL_DEVICE_MAX_COMPUTE_UNITS,
sizeof(maxComputeUnits), &maxComputeUnits, NULL);
printf(" %d.%d Parallel compute units: %d\n", j+1, 4, maxComputeUnits);
}
}
context = clCreateContext( NULL, 1, device_id, NULL, NULL, &ret);
command_queue = clCreateCommandQueue(context, device_id[0], 0, &ret);
// Create memory buffers on the device for each vector
in_mem = clCreateBuffer(context, CL_MEM_READ_ONLY,
32 * 1024 * 1024 * sizeof(int64_t), NULL, &ret);
out_mem = clCreateBuffer(context, CL_MEM_READ_WRITE,
32 * 1024 * 1024 * sizeof(int64_t), NULL, &ret);
jump_mem = clCreateBuffer(context, CL_MEM_READ_ONLY,
sizeof(int), NULL, &ret);
length = clCreateBuffer(context, CL_MEM_READ_ONLY,
sizeof(int), NULL, &ret);
FILE *fp;
char *source_str;
size_t source_size;
fp = fopen("src/opencl_exclusive_scan.cl", "r");
if (!fp) {
fprintf(stderr, "Failed to load kernel.\n");
exit(1);
}
source_str = (char*)malloc(MAX_SOURCE_SIZE);
source_size = fread( source_str, 1, MAX_SOURCE_SIZE, fp);
fclose( fp );
program = clCreateProgramWithSource(context, 1,
(const char **)&source_str, (const size_t *)&source_size, &ret);
ret = clBuildProgram(program, 1, device_id, NULL, NULL, NULL);
assert(ret == CL_SUCCESS);
auto kernel_name_copy = std::string("exclusive_copy_") + std::to_string(sizeof(IN_TYPE)) + "_" + std::to_string(sizeof(OUT_TYPE));
auto kernel_name = std::string("exclusive_scan_") + std::to_string(sizeof(IN_TYPE)) + "_" + std::to_string(sizeof(OUT_TYPE));
std::cout << kernel_name << std::endl;
kernel_copy = clCreateKernel(program, kernel_name_copy.data(), &ret);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel_copy, 0, sizeof(cl_mem), (void *)&in_mem);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel_copy, 1, sizeof(cl_mem), (void *)&out_mem);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel_copy, 2, sizeof(cl_mem), (void *)&jump_mem);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel_copy, 3, sizeof(cl_mem), (void *)&length);
assert(ret == CL_SUCCESS);
kernel = clCreateKernel(program, kernel_name.data(), &ret);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *)&in_mem);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel, 1, sizeof(cl_mem), (void *)&out_mem);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel, 2, sizeof(cl_mem), (void *)&jump_mem);
assert(ret == CL_SUCCESS);
ret = clSetKernelArg(kernel, 3, sizeof(cl_mem), (void *)&length);
assert(ret == CL_SUCCESS);
}
ret = clEnqueueWriteBuffer(command_queue, in_mem, CL_FALSE, 0,
size * sizeof(IN_TYPE), in, 0, NULL, NULL);
assert(ret == CL_SUCCESS);
ret = clEnqueueWriteBuffer(command_queue, length, CL_FALSE, 0,
sizeof(int), &size, 0, NULL, NULL);
assert(ret == CL_SUCCESS);
size_t local_item_size = 960;
size_t global_item_size = local_item_size * ((local_item_size - 1 + size) / local_item_size);
ret = clEnqueueNDRangeKernel(command_queue, kernel_copy, 1, NULL,
&global_item_size, &local_item_size, 0, NULL, NULL);
assert(ret == CL_SUCCESS);
for (int jump = 1; jump < size; jump *= 2) {
ret = clEnqueueWriteBuffer(command_queue, jump_mem, CL_FALSE, 0,
sizeof(int), &jump, 0, NULL, NULL);
assert(ret == CL_SUCCESS);
ret = clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL,
&global_item_size, &local_item_size, 0, NULL, NULL);
assert(ret == CL_SUCCESS);
}
ret = clEnqueueReadBuffer(command_queue, out_mem, CL_TRUE, 0,
size * sizeof(OUT_TYPE), out, 0, NULL, NULL);
assert(ret == CL_SUCCESS);
return true;
}
#endif // OPENCL_EXCLUSIVE_SCAN | [
"foduguay@gmail.com"
] | foduguay@gmail.com |
e94163abd6c66a86135e241fc3190fcc7781b0d4 | 5753afcc204f5bc091768e70616dc641313062df | /tests/pxScene2d/test_utf8.cpp | e9d3650c57c47c8a66f088f1b62534aff5732ef8 | [
"Apache-2.0"
] | permissive | spackianathan/pxCore | 17cbf51cf834a316fd68689c858f435d30f2a854 | 1f3864a5fb7f3dbe108563afe75db87090c88bb2 | refs/heads/master | 2020-03-15T08:53:43.589044 | 2018-04-19T02:15:35 | 2018-04-19T02:15:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,923 | cpp | #include <sstream>
#include <string.h>
#include <unistd.h>
extern "C"
{
#include <utf8.h>
}
#include "test_includes.h" // Needs to be included last
using namespace std;
class UTF8Test : public testing::Test
{
public:
virtual void SetUp()
{
}
virtual void TearDown()
{
}
void lengthTest()
{
char *str = "\x46\x6F\x6F\x20\xC2";
EXPECT_TRUE (u8_strlen(str) == 5);
}
void printTest()
{
char *str = "\x46\x6F\x6F";
EXPECT_TRUE (u8_printf("%s",str) == 3);
}
void charToUTF8Test()
{
char dest;
u8_wc_toutf8(&dest,65);
EXPECT_TRUE (dest == 'A');
}
void charToByteOffsetTest()
{
char *str = "\x46\x6F\x6E";
EXPECT_TRUE(1 == u8_offset(str,1));
}
void byteOffsetTocharNumTest()
{
char *str = "\x46\x6F\x6E";
EXPECT_TRUE(2 == u8_charnum(str,2));
}
void isLocaleUTF8TrueTest()
{
EXPECT_TRUE (1 == u8_is_locale_utf8(".UTF-8"));
}
void isLocaleUTF8FalseTest()
{
EXPECT_TRUE (0 == u8_is_locale_utf8("UTF-8"));
}
void strcharPresentTest()
{
char *str = "\x46\x6F\x6E";
int index = -1;
char* ptr = NULL;
ptr = u8_strchr(str,70, &index);
EXPECT_TRUE (NULL != ptr);
EXPECT_TRUE (0 == index);
}
void strcharAbsentTest()
{
char *str = "\x46\x6F\x6E";
int index = -1;
char* ptr = NULL;
ptr = u8_strchr(str,65, &index);
EXPECT_TRUE (NULL == ptr);
EXPECT_TRUE (3 == index);
}
void memcharPresentTest()
{
char *str = "\x46\x6F\x6E";
int index = -1;
char* ptr = NULL;
ptr = u8_memchr(str,70, 2, &index);
EXPECT_TRUE (NULL != ptr);
EXPECT_TRUE (0 == index);
}
void memcharAbsentTest()
{
char *str = "\x46\x6F\x6E";
int index = -1;
char* ptr = NULL;
ptr = u8_memchr(str,70, 0,&index);
EXPECT_TRUE (NULL == ptr);
EXPECT_TRUE (0 == index);
}
void octalDigitTest()
{
EXPECT_TRUE (octal_digit('7') == 1);
}
void hexDigitTest()
{
EXPECT_TRUE (hex_digit('F') == 1);
}
void convertUTFToAsciiTest()
{
char *str = "\x46\x6F\x6E";
char buffer[10];
memset (buffer, 0, sizeof(buffer));
EXPECT_TRUE (3 == u8_escape(buffer, 3, str, 0));
}
void convertAsciiToUTF8Test()
{
char *str = "Foo";
char buffer[20];
memset (buffer, 0, sizeof(buffer));
EXPECT_TRUE (3 == u8_toutf8(buffer, 20, (u_int32_t*)str, 3));
}
void unescapeTest()
{
char *str = "\\u:";
char buffer[20];
memset (buffer, 0, sizeof(buffer));
int ret = u8_unescape(buffer,sizeof(str),str);
EXPECT_TRUE (2 == ret);
}
void seqLengthTest()
{
char *str = "Foo";
EXPECT_TRUE (1 == u8_seqlen(str));
}
void u8EscapeWcharTest()
{
char buffer[100];
memset(buffer,0,100);
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\n'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\t'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\r'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\b'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\f'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\f'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\v'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\a'));
EXPECT_TRUE (2 == u8_escape_wchar(buffer, 100, L'\\'));
}
void toUTF8Test()
{
char dest[100];
u_int32_t src1 = 35;
memset(dest,0,sizeof(dest));
EXPECT_TRUE (1 == u8_toutf8(dest, sizeof(dest), &src1,1));
EXPECT_TRUE (0 == u8_toutf8(dest, 0, &src1,1));
src1 = 131;
EXPECT_TRUE (1 == u8_toutf8(dest, sizeof(dest), &src1,1));
EXPECT_TRUE (0 == u8_toutf8(dest, 0, &src1,1));
src1 = 65535;
EXPECT_TRUE (1 == u8_toutf8(dest, sizeof(dest), &src1,1));
EXPECT_TRUE (0 == u8_toutf8(dest, 0, &src1,1));
src1 = 65537;
EXPECT_TRUE (1 == u8_toutf8(dest, sizeof(dest), &src1,1));
EXPECT_TRUE (0 == u8_toutf8(dest, 0, &src1,1));
}
void wctoUTF8Test()
{
char dest[100];
u_int32_t src1 = 131;
memset(dest,0,sizeof(dest));
EXPECT_TRUE (2 == u8_wc_toutf8(dest, src1));
src1 = 65530;
EXPECT_TRUE (3 == u8_wc_toutf8(dest, src1));
src1 = 65537;
EXPECT_TRUE (4 == u8_wc_toutf8(dest, src1));
src1 = 1120000;
EXPECT_TRUE (0 == u8_wc_toutf8(dest, src1));
}
void readEscapeSequenceTest()
{
u_int32_t dest;
char str[1];
str[0] = 'n';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE (10 == dest);
str[0] = 't';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE ((uint32_t)('\t') == dest);
str[0] = 'r';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE ((uint32_t)('\r') == dest);
str[0] = 'b';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE ((uint32_t)('\b') == dest);
str[0] = 'f';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE ((uint32_t)('\f') == dest);
str[0] = 'v';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE ((uint32_t)('\v') == dest);
str[0] = 'a';
u8_read_escape_sequence(str, &dest);
EXPECT_TRUE ((uint32_t)('\a') == dest);
}
};
TEST_F(UTF8Test, UTF8Tests)
{
lengthTest();
printTest();
charToUTF8Test();
charToByteOffsetTest();
byteOffsetTocharNumTest();
isLocaleUTF8TrueTest();
isLocaleUTF8FalseTest();
strcharPresentTest();
strcharAbsentTest();
memcharPresentTest();
memcharAbsentTest();
octalDigitTest();
hexDigitTest();
convertUTFToAsciiTest();
convertAsciiToUTF8Test();
unescapeTest();
seqLengthTest();
u8EscapeWcharTest();
toUTF8Test();
wctoUTF8Test();
readEscapeSequenceTest();
}
| [
"madanagopal123@gmail.com"
] | madanagopal123@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.